You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(6) |
Jul
(14) |
Aug
(156) |
Sep
(35) |
Oct
(48) |
Nov
(55) |
Dec
(16) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(24) |
Feb
(154) |
Mar
(139) |
Apr
(175) |
May
(87) |
Jun
(34) |
Jul
(42) |
Aug
(68) |
Sep
(41) |
Oct
(76) |
Nov
(77) |
Dec
(50) |
2008 |
Jan
(98) |
Feb
(43) |
Mar
(102) |
Apr
(27) |
May
(55) |
Jun
(13) |
Jul
(58) |
Aug
(62) |
Sep
(61) |
Oct
(43) |
Nov
(87) |
Dec
(134) |
2009 |
Jan
(175) |
Feb
(106) |
Mar
(58) |
Apr
(41) |
May
(74) |
Jun
(123) |
Jul
(252) |
Aug
(192) |
Sep
(69) |
Oct
(38) |
Nov
(117) |
Dec
(95) |
2010 |
Jan
(146) |
Feb
(76) |
Mar
(90) |
Apr
(60) |
May
(23) |
Jun
(19) |
Jul
(208) |
Aug
(140) |
Sep
(103) |
Oct
(114) |
Nov
(50) |
Dec
(47) |
2011 |
Jan
(59) |
Feb
(47) |
Mar
(61) |
Apr
(58) |
May
(41) |
Jun
(11) |
Jul
(17) |
Aug
(49) |
Sep
(34) |
Oct
(166) |
Nov
(38) |
Dec
(70) |
2012 |
Jan
(87) |
Feb
(37) |
Mar
(28) |
Apr
(25) |
May
(29) |
Jun
(30) |
Jul
(43) |
Aug
(27) |
Sep
(46) |
Oct
(27) |
Nov
(51) |
Dec
(70) |
2013 |
Jan
(92) |
Feb
(34) |
Mar
(58) |
Apr
(37) |
May
(46) |
Jun
(9) |
Jul
(38) |
Aug
(22) |
Sep
(28) |
Oct
(42) |
Nov
(44) |
Dec
(34) |
2014 |
Jan
(63) |
Feb
(39) |
Mar
(48) |
Apr
(31) |
May
(21) |
Jun
(43) |
Jul
(36) |
Aug
(69) |
Sep
(53) |
Oct
(56) |
Nov
(46) |
Dec
(49) |
2015 |
Jan
(63) |
Feb
(35) |
Mar
(30) |
Apr
(38) |
May
(27) |
Jun
(42) |
Jul
(42) |
Aug
(63) |
Sep
(18) |
Oct
(45) |
Nov
(65) |
Dec
(71) |
2016 |
Jan
(54) |
Feb
(79) |
Mar
(59) |
Apr
(38) |
May
(32) |
Jun
(46) |
Jul
(42) |
Aug
(30) |
Sep
(58) |
Oct
(33) |
Nov
(98) |
Dec
(59) |
2017 |
Jan
(79) |
Feb
(12) |
Mar
(43) |
Apr
(32) |
May
(76) |
Jun
(59) |
Jul
(44) |
Aug
(14) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <abe...@us...> - 2015-07-10 16:50:29
|
Revision: 7146 http://sourceforge.net/p/astlinux/code/7146 Author: abelbeck Date: 2015-07-10 16:50:26 +0000 (Fri, 10 Jul 2015) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2015-07-10 16:49:02 UTC (rev 7145) +++ branches/1.0/docs/ChangeLog.txt 2015-07-10 16:50:26 UTC (rev 7146) @@ -41,7 +41,7 @@ ** Web Interface --- No Change +-- System tab, Configuration/File Backup: exclude /stat/var/www/cache/ files from unionfs backup. Additions for AstLinux 1.2.3: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-10 16:49:05
|
Revision: 7145 http://sourceforge.net/p/astlinux/code/7145 Author: abelbeck Date: 2015-07-10 16:49:02 +0000 (Fri, 10 Jul 2015) Log Message: ----------- web interface, exclude /stat/var/www/cache/ files from unionfs backup Modified Paths: -------------- branches/1.0/package/webinterface/altweb/admin/system.php branches/1.0/package/webinterface/altweb/common/version.php Modified: branches/1.0/package/webinterface/altweb/admin/system.php =================================================================== --- branches/1.0/package/webinterface/altweb/admin/system.php 2015-07-09 14:28:18 UTC (rev 7144) +++ branches/1.0/package/webinterface/altweb/admin/system.php 2015-07-10 16:49:02 UTC (rev 7145) @@ -223,6 +223,7 @@ $excludecmd = 'find /oldroot/mnt/asturw/ -type f | sed -e "s:^/oldroot/mnt/asturw/::" | sed -n'; $excludecmd .= ' -e "s:^stat/var/lib/asterisk/sounds/.*$:&:p"'; $excludecmd .= ' -e "s:^stat/var/lib/asterisk/moh/.*$:&:p"'; + $excludecmd .= ' -e "s:^stat/var/www/cache/.*$:&:p"'; $excludecmd .= ' -e "s:^stat/var/packages/.*$:&:p"'; $excludecmd .= ' -e "s:^usr/lib/locale/.*$:&:p"'; shell($excludecmd.' >'.$excludefile.' 2>/dev/null', $status); Modified: branches/1.0/package/webinterface/altweb/common/version.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/version.php 2015-07-09 14:28:18 UTC (rev 7144) +++ branches/1.0/package/webinterface/altweb/common/version.php 2015-07-10 16:49:02 UTC (rev 7145) @@ -1,6 +1,6 @@ <?php // version.php for AstLinux Alternate Web Interface -$GUI_VERSION = '1.8.33'; +$GUI_VERSION = '1.8.34'; ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-09 14:28:20
|
Revision: 7144 http://sourceforge.net/p/astlinux/code/7144 Author: abelbeck Date: 2015-07-09 14:28:18 +0000 (Thu, 09 Jul 2015) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2015-07-09 14:25:23 UTC (rev 7143) +++ branches/1.0/docs/ChangeLog.txt 2015-07-09 14:28:18 UTC (rev 7144) @@ -25,6 +25,8 @@ ** Networking +-- OpenSSL, version bump to 1.0.1p, security fix: CVE-2015-1793 + -- ntpd/sntp, version bump to 4.2.8p3 -- openldap, version bump to 2.4.41 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-09 14:25:24
|
Revision: 7143 http://sourceforge.net/p/astlinux/code/7143 Author: abelbeck Date: 2015-07-09 14:25:23 +0000 (Thu, 09 Jul 2015) Log Message: ----------- openssl, version bump to 1.0.1p, security fix: CVE-2015-1793 Modified Paths: -------------- branches/1.0/package/openssl/openssl-do-not-build-docs.patch branches/1.0/package/openssl/openssl.mk Modified: branches/1.0/package/openssl/openssl-do-not-build-docs.patch =================================================================== --- branches/1.0/package/openssl/openssl-do-not-build-docs.patch 2015-07-06 17:11:54 UTC (rev 7142) +++ branches/1.0/package/openssl/openssl-do-not-build-docs.patch 2015-07-09 14:25:23 UTC (rev 7143) @@ -1,6 +1,6 @@ --- openssl-1.0.1h/Makefile.org.orig 2014-06-05 11:36:09.000000000 -0500 +++ openssl-1.0.1h/Makefile.org 2014-06-05 11:36:17.000000000 -0500 -@@ -528,7 +528,7 @@ +@@ -529,7 +529,7 @@ dist_pem_h: (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean) Modified: branches/1.0/package/openssl/openssl.mk =================================================================== --- branches/1.0/package/openssl/openssl.mk 2015-07-06 17:11:54 UTC (rev 7142) +++ branches/1.0/package/openssl/openssl.mk 2015-07-09 14:25:23 UTC (rev 7143) @@ -4,7 +4,7 @@ # ############################################################# -OPENSSL_VERSION = 1.0.1o +OPENSSL_VERSION = 1.0.1p OPENSSL_SITE = http://www.openssl.org/source OPENSSL_INSTALL_STAGING = YES OPENSSL_DEPENDENCIES = zlib This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-06 17:11:56
|
Revision: 7142 http://sourceforge.net/p/astlinux/code/7142 Author: abelbeck Date: 2015-07-06 17:11:54 +0000 (Mon, 06 Jul 2015) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2015-07-06 16:58:44 UTC (rev 7141) +++ branches/1.0/docs/ChangeLog.txt 2015-07-06 17:11:54 UTC (rev 7142) @@ -5,13 +5,50 @@ === docs/ChangeLog.txt ========================================================= -Additions for AstLinux 1.2.3: +Additions for AstLinux 1.2.4: ============================= Released **TBD** ** System +-- perl, version 5.20.2 using perlcross 0.9.7 + +-- lm-sensors, version bump to 3.4.0 + +-- nano, version bump to 2.4.2 + +-- dosfstools, version bump to 3.0.28 + +-- parse-csv, new command, parse a comma-seperated-value string like an Asterisk CDR line and output each value + followed by a new-line. Fields may be quoted with double-quotes and a quoted quote is encoded as two double-quotes. + +** Networking + +-- ntpd/sntp, version bump to 4.2.8p3 + +-- openldap, version bump to 2.4.41 + +** Asterisk + +-- Asterisk 1.8.32.3 (no change), 11.18.0 (no change) and 13.4.0 (no change) + +-- DAHDI, dahdi-linux 2.8.0.1 (no change) and dahdi-tools 2.8.0 (no change) + +-- pjsip 2.4 (no change) + +** Web Interface + +-- No Change + + +Additions for AstLinux 1.2.3: +============================= + +Released 2015-07-06 + +** System + -- Linux patch, crypto: aesni - fix memory usage in GCM decryption, Security fix: CVE-2015-3331 -- igb, version 5.3.2, Intel Gigabit Ethernet Network Driver This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-06 16:58:47
|
Revision: 7141 http://sourceforge.net/p/astlinux/code/7141 Author: abelbeck Date: 2015-07-06 16:58:44 +0000 (Mon, 06 Jul 2015) Log Message: ----------- nano, version bump to 2.4.2 Modified Paths: -------------- branches/1.0/package/nano/nano.mk Modified: branches/1.0/package/nano/nano.mk =================================================================== --- branches/1.0/package/nano/nano.mk 2015-07-06 16:40:18 UTC (rev 7140) +++ branches/1.0/package/nano/nano.mk 2015-07-06 16:58:44 UTC (rev 7141) @@ -4,7 +4,7 @@ # ############################################################# -NANO_VERSION = 2.4.1 +NANO_VERSION = 2.4.2 NANO_SITE = http://www.nano-editor.org/dist/v2.4 NANO_MAKE_ENV = CURSES_LIB="-lncurses" NANO_CONF_ENV = ac_cv_prog_NCURSESW_CONFIG=false This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-06 16:40:21
|
Revision: 7140 http://sourceforge.net/p/astlinux/code/7140 Author: abelbeck Date: 2015-07-06 16:40:18 +0000 (Mon, 06 Jul 2015) Log Message: ----------- ntp, drop unneeded uClibc workaround for refclock_pcf.c Ref: http://git.buildroot.net/buildroot/commit/package/ntp/ntp.mk?id=0cbe4bc52d5f1cea7d2c085e40f948a5a78183b9 Modified Paths: -------------- branches/1.0/package/ntp/ntp.mk Modified: branches/1.0/package/ntp/ntp.mk =================================================================== --- branches/1.0/package/ntp/ntp.mk 2015-07-03 17:30:44 UTC (rev 7139) +++ branches/1.0/package/ntp/ntp.mk 2015-07-06 16:40:18 UTC (rev 7140) @@ -21,10 +21,6 @@ NTP_CONF_OPT += --without-crypto endif -define NTP_PATCH_FIXUPS - $(SED) "s,^#if.*__GLIBC__.*_BSD_SOURCE.*$$,#if 0," $(@D)/ntpd/refclock_pcf.c -endef - NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTP_KEYGEN) += util/ntp-keygen NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTP_WAIT) += scripts/ntp-wait/ntp-wait NTP_INSTALL_FILES_$(BR2_PACKAGE_NTP_NTPDATE) += ntpdate/ntpdate @@ -47,6 +43,4 @@ rm $(TARGET_DIR)/etc/init.d/ntpd endef -NTP_POST_PATCH_HOOKS += NTP_PATCH_FIXUPS - $(eval $(call AUTOTARGETS,package,ntp)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-03 17:30:46
|
Revision: 7139 http://sourceforge.net/p/astlinux/code/7139 Author: abelbeck Date: 2015-07-03 17:30:44 +0000 (Fri, 03 Jul 2015) Log Message: ----------- dosfstools, version bump to 3.0.28, new maintainer Modified Paths: -------------- branches/1.0/package/dosfstools/Config.in branches/1.0/package/dosfstools/dosfstools.mk Modified: branches/1.0/package/dosfstools/Config.in =================================================================== --- branches/1.0/package/dosfstools/Config.in 2015-07-03 17:09:06 UTC (rev 7138) +++ branches/1.0/package/dosfstools/Config.in 2015-07-03 17:30:44 UTC (rev 7139) @@ -6,7 +6,7 @@ help Tools for creating and checking DOS FAT filesystems. - http://www.daniel-baumann.ch/software/dosfstools/ + https://github.com/dosfstools/dosfstools config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS bool "mkdosfs" Modified: branches/1.0/package/dosfstools/dosfstools.mk =================================================================== --- branches/1.0/package/dosfstools/dosfstools.mk 2015-07-03 17:09:06 UTC (rev 7138) +++ branches/1.0/package/dosfstools/dosfstools.mk 2015-07-03 17:30:44 UTC (rev 7139) @@ -3,9 +3,9 @@ # dosfstools # ############################################################# -DOSFSTOOLS_VERSION = 3.0.26 -DOSFSTOOLS_SOURCE = dosfstools-$(DOSFSTOOLS_VERSION).tar.gz -DOSFSTOOLS_SITE = http://daniel-baumann.ch/files/software/dosfstools +DOSFSTOOLS_VERSION = 3.0.28 +DOSFSTOOLS_SOURCE = dosfstools-$(DOSFSTOOLS_VERSION).tar.xz +DOSFSTOOLS_SITE = https://github.com/dosfstools/dosfstools/releases/download/v$(DOSFSTOOLS_VERSION) ifneq ($(BR2_ENABLE_LOCALE),y) DOSFSTOOLS_DEPENDENCIES += libiconv This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-03 17:09:09
|
Revision: 7138 http://sourceforge.net/p/astlinux/code/7138 Author: abelbeck Date: 2015-07-03 17:09:06 +0000 (Fri, 03 Jul 2015) Log Message: ----------- lm-sensors, version bump to 3.4.0 Modified Paths: -------------- branches/1.0/package/lm-sensors/lm-sensors.mk Modified: branches/1.0/package/lm-sensors/lm-sensors.mk =================================================================== --- branches/1.0/package/lm-sensors/lm-sensors.mk 2015-07-03 16:45:35 UTC (rev 7137) +++ branches/1.0/package/lm-sensors/lm-sensors.mk 2015-07-03 17:09:06 UTC (rev 7138) @@ -3,7 +3,7 @@ # lm-sensors # ############################################################# -LM_SENSORS_VERSION = 3.3.5 +LM_SENSORS_VERSION = 3.4.0 LM_SENSORS_SOURCE = lm_sensors-$(LM_SENSORS_VERSION).tar.bz2 LM_SENSORS_SITE = http://dl.lm-sensors.org/lm-sensors/releases LM_SENSORS_INSTALL_STAGING = YES This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-03 16:45:37
|
Revision: 7137 http://sourceforge.net/p/astlinux/code/7137 Author: abelbeck Date: 2015-07-03 16:45:35 +0000 (Fri, 03 Jul 2015) Log Message: ----------- perl, perl-cross version bump to 0.9.7 Modified Paths: -------------- branches/1.0/package/perl/perl.mk Modified: branches/1.0/package/perl/perl.mk =================================================================== --- branches/1.0/package/perl/perl.mk 2015-07-03 16:24:54 UTC (rev 7136) +++ branches/1.0/package/perl/perl.mk 2015-07-03 16:45:35 UTC (rev 7137) @@ -15,7 +15,7 @@ PERL_MODULES = constant version Carp Errno Fcntl PathTools POSIX Digest Socket IO XSLoader Exporter File-Find PERL_MODULES += Digest/MD5 Digest/SHA Getopt/Long Time/Local File/Glob Sys/Hostname -PERL_CROSS_VERSION = 0.9.6 +PERL_CROSS_VERSION = 0.9.7 PERL_CROSS_BASE_VERSION = 5.$(PERL_VERSION_MAJOR).2 #PERL_CROSS_SITE = http://raw.github.com/arsv/perl-cross/releases PERL_CROSS_SITE = http://files.astlinux.org This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-03 16:24:56
|
Revision: 7136 http://sourceforge.net/p/astlinux/code/7136 Author: abelbeck Date: 2015-07-03 16:24:54 +0000 (Fri, 03 Jul 2015) Log Message: ----------- ntp, version bump to 4.2.8p3 Modified Paths: -------------- branches/1.0/package/ntp/ntp.mk Modified: branches/1.0/package/ntp/ntp.mk =================================================================== --- branches/1.0/package/ntp/ntp.mk 2015-07-03 16:15:00 UTC (rev 7135) +++ branches/1.0/package/ntp/ntp.mk 2015-07-03 16:24:54 UTC (rev 7136) @@ -3,7 +3,7 @@ # ntp # ############################################################# -NTP_VERSION = 4.2.8p2 +NTP_VERSION = 4.2.8p3 NTP_SOURCE = ntp-$(NTP_VERSION).tar.gz NTP_SITE = http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2 NTP_DEPENDENCIES = host-bison host-flex host-pkg-config This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-03 16:15:02
|
Revision: 7135 http://sourceforge.net/p/astlinux/code/7135 Author: abelbeck Date: 2015-07-03 16:15:00 +0000 (Fri, 03 Jul 2015) Log Message: ----------- openldap, version bump to 2.4.41 Modified Paths: -------------- branches/1.0/package/openldap/openldap.mk Modified: branches/1.0/package/openldap/openldap.mk =================================================================== --- branches/1.0/package/openldap/openldap.mk 2015-07-03 15:55:35 UTC (rev 7134) +++ branches/1.0/package/openldap/openldap.mk 2015-07-03 16:15:00 UTC (rev 7135) @@ -4,7 +4,7 @@ # ############################################################# -OPENLDAP_VERSION = 2.4.40 +OPENLDAP_VERSION = 2.4.41 OPENLDAP_SOURCE = openldap-$(OPENLDAP_VERSION).tgz OPENLDAP_SITE = ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release OPENLDAP_INSTALL_STAGING = YES This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-03 15:55:38
|
Revision: 7134 http://sourceforge.net/p/astlinux/code/7134 Author: abelbeck Date: 2015-07-03 15:55:35 +0000 (Fri, 03 Jul 2015) Log Message: ----------- parse-csv, new command, parse a comma-seperated-value string like an Asterisk CDR line and output each value followed by a new-line. Fields may be quoted with double-quotes and a quoted quote is encoded as two double-quotes as per RFC specs. Added Paths: ----------- branches/1.0/project/astlinux/target_skeleton/usr/bin/parse-csv Added: branches/1.0/project/astlinux/target_skeleton/usr/bin/parse-csv =================================================================== --- branches/1.0/project/astlinux/target_skeleton/usr/bin/parse-csv (rev 0) +++ branches/1.0/project/astlinux/target_skeleton/usr/bin/parse-csv 2015-07-03 15:55:35 UTC (rev 7134) @@ -0,0 +1,21 @@ +#!/usr/bin/php -qC +<?php +if (! isset($argv)) { + $argv = $_SERVER['argv']; +} + +$str = $argv[1]; + +if ($str == '') { + echo "Usage: parse-csv csv_string\n"; + exit(1); +} + +$csv = str_getcsv($str, ',', '"', '""'); + +foreach ($csv as $line) { + echo "$line\n"; +} + +exit(0); +?> Property changes on: branches/1.0/project/astlinux/target_skeleton/usr/bin/parse-csv ___________________________________________________________________ Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-01 19:45:49
|
Revision: 7133 http://sourceforge.net/p/astlinux/code/7133 Author: abelbeck Date: 2015-07-01 19:45:47 +0000 (Wed, 01 Jul 2015) Log Message: ----------- return to release 'svn' Modified Paths: -------------- branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release Modified: branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release =================================================================== --- branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release 2015-07-01 19:45:43 UTC (rev 7132) +++ branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release 2015-07-01 19:45:47 UTC (rev 7133) @@ -1 +1 @@ -astlinux-1.2.3 +svn This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-01 19:45:44
|
Revision: 7132 http://sourceforge.net/p/astlinux/code/7132 Author: abelbeck Date: 2015-07-01 19:45:43 +0000 (Wed, 01 Jul 2015) Log Message: ----------- create 1.2.3 tag Added Paths: ----------- tags/1.2.3/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-07-01 19:45:37
|
Revision: 7131 http://sourceforge.net/p/astlinux/code/7131 Author: abelbeck Date: 2015-07-01 19:45:35 +0000 (Wed, 01 Jul 2015) Log Message: ----------- mark release 'astlinux-1.2.3' Modified Paths: -------------- branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release Modified: branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release =================================================================== --- branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release 2015-06-25 12:13:21 UTC (rev 7130) +++ branches/1.0/project/astlinux/target_skeleton/etc/astlinux-release 2015-07-01 19:45:35 UTC (rev 7131) @@ -1 +1 @@ -svn +astlinux-1.2.3 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-06-25 12:13:24
|
Revision: 7130 http://sourceforge.net/p/astlinux/code/7130 Author: abelbeck Date: 2015-06-25 12:13:21 +0000 (Thu, 25 Jun 2015) Log Message: ----------- pcre, add another upstream security fix, revision 1571 Ref: http://vcs.pcre.org/pcre/code/trunk/?view=log Revision Links: -------------- http://sourceforge.net/p/astlinux/code/1571 Modified Paths: -------------- branches/1.0/package/pcre/pcre-pre-8.38-security-fixes.patch Modified: branches/1.0/package/pcre/pcre-pre-8.38-security-fixes.patch =================================================================== --- branches/1.0/package/pcre/pcre-pre-8.38-security-fixes.patch 2015-06-23 23:32:15 UTC (rev 7129) +++ branches/1.0/package/pcre/pcre-pre-8.38-security-fixes.patch 2015-06-25 12:13:21 UTC (rev 7130) @@ -332,6 +332,18 @@ if (*ptr != (pcre_uchar)terminator) { +--- pcre-8.37/pcre_compile.c 2015/06/22 09:38:41 1570 ++++ pcre-8.37/pcre_compile.c 2015/06/23 16:34:53 1571 +@@ -9427,7 +9427,7 @@ + exceptional ones forgo this. We scan the pattern to check that they are fixed + length, and set their lengths. */ + +-if (cd->check_lookbehind) ++if (errorcode == 0 && cd->check_lookbehind) + { + pcre_uchar *cc = (pcre_uchar *)codestart; + + --- pcre-8.37/pcre_exec.c 2015/06/09 16:33:27 1564 +++ pcre-8.37/pcre_exec.c 2015/06/09 16:46:52 1565 @@ -6685,7 +6685,8 @@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-06-23 23:32:18
|
Revision: 7129 http://sourceforge.net/p/astlinux/code/7129 Author: abelbeck Date: 2015-06-23 23:32:15 +0000 (Tue, 23 Jun 2015) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2015-06-23 23:31:05 UTC (rev 7128) +++ branches/1.0/docs/ChangeLog.txt 2015-06-23 23:32:15 UTC (rev 7129) @@ -14,7 +14,7 @@ -- Linux patch, crypto: aesni - fix memory usage in GCM decryption, Security fix: CVE-2015-3331 --- igb, version 5.2.18, Intel Gigabit Ethernet Network Driver +-- igb, version 5.3.2, Intel Gigabit Ethernet Network Driver -- e1000e version bump to 3.2.4.2 Intel PCI-Express PRO/1000 Ethernet Linux driver This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-06-23 23:31:08
|
Revision: 7128 http://sourceforge.net/p/astlinux/code/7128 Author: abelbeck Date: 2015-06-23 23:31:05 +0000 (Tue, 23 Jun 2015) Log Message: ----------- igb, version bump to 5.3.2 Modified Paths: -------------- branches/1.0/package/igb/igb.mk Modified: branches/1.0/package/igb/igb.mk =================================================================== --- branches/1.0/package/igb/igb.mk 2015-06-22 23:35:19 UTC (rev 7127) +++ branches/1.0/package/igb/igb.mk 2015-06-23 23:31:05 UTC (rev 7128) @@ -4,7 +4,7 @@ # ############################################################# -IGB_VERSION = 5.2.18 +IGB_VERSION = 5.3.2 IGB_SOURCE:=igb-$(IGB_VERSION).tar.gz IGB_SITE = http://downloads.sourceforge.net/project/e1000/igb%20stable/$(IGB_VERSION) IGB_DEPENDENCIES = linux This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-06-22 23:35:21
|
Revision: 7127 http://sourceforge.net/p/astlinux/code/7127 Author: abelbeck Date: 2015-06-22 23:35:19 +0000 (Mon, 22 Jun 2015) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2015-06-22 23:32:35 UTC (rev 7126) +++ branches/1.0/docs/ChangeLog.txt 2015-06-22 23:35:19 UTC (rev 7127) @@ -30,6 +30,8 @@ -- e2fsprogs, version bump to 1.42.13, many bug fixes and security fix: CVE-2015-1572 +-- tiff, version bump to 4.0.4, security fix: CVE-2014-8128 + -- Monit, version bump to 5.14, added IPv6 support -- zabbix, version bump to 2.2.9 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-06-22 23:32:38
|
Revision: 7126 http://sourceforge.net/p/astlinux/code/7126 Author: abelbeck Date: 2015-06-22 23:32:35 +0000 (Mon, 22 Jun 2015) Log Message: ----------- tiff, version bump to 4.0.4, security fix: CVE-2014-8128 Modified Paths: -------------- branches/1.0/package/tiff/tiff.mk Modified: branches/1.0/package/tiff/tiff.mk =================================================================== --- branches/1.0/package/tiff/tiff.mk 2015-06-22 23:12:45 UTC (rev 7125) +++ branches/1.0/package/tiff/tiff.mk 2015-06-22 23:32:35 UTC (rev 7126) @@ -3,7 +3,7 @@ # tiff # ############################################################# -TIFF_VERSION = 4.0.3 +TIFF_VERSION = 4.0.4 TIFF_SITE = http://download.osgeo.org/libtiff TIFF_SOURCE = tiff-$(TIFF_VERSION).tar.gz TIFF_INSTALL_STAGING = YES This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-06-22 23:12:47
|
Revision: 7125 http://sourceforge.net/p/astlinux/code/7125 Author: abelbeck Date: 2015-06-22 23:12:45 +0000 (Mon, 22 Jun 2015) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2015-06-22 23:10:01 UTC (rev 7124) +++ branches/1.0/docs/ChangeLog.txt 2015-06-22 23:12:45 UTC (rev 7125) @@ -128,7 +128,9 @@ -- Status and Network tab, change NAT-PMP to NAT-PMP/PCP labels adding 'Port Control Protocol' support. +-- CDR Log tab, new "Export CDR.csv" button which exports the CDR data currently displayed with any search criteria applied. + Additions for AstLinux 1.2.2: ============================= This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-06-22 23:10:04
|
Revision: 7124 http://sourceforge.net/p/astlinux/code/7124 Author: abelbeck Date: 2015-06-22 23:10:01 +0000 (Mon, 22 Jun 2015) Log Message: ----------- web interface, CDR Log tab, new 'Export CDR.csv' button Modified Paths: -------------- branches/1.0/package/webinterface/altweb/admin/cdrlog.php Modified: branches/1.0/package/webinterface/altweb/admin/cdrlog.php =================================================================== --- branches/1.0/package/webinterface/altweb/admin/cdrlog.php 2015-06-19 18:03:15 UTC (rev 7123) +++ branches/1.0/package/webinterface/altweb/admin/cdrlog.php 2015-06-22 23:10:01 UTC (rev 7124) @@ -1,6 +1,6 @@ <?php session_start(); -// Copyright (C) 2008-2009 Lonnie Abelbeck +// Copyright (C) 2008-2015 Lonnie Abelbeck // This is free software, licensed under the GNU General Public License // version 3 as published by the Free Software Foundation; you can // redistribute it and/or modify it under the terms of the GNU @@ -17,6 +17,7 @@ // 10-02-2008, Add optional last column CDR value // 07-20-2009, Add David Kerr's code and ideas for multiple page support // 02-13-2010, Add multiple *.csv CDR Database suport +// 06-22-2015, Add "Export CDR.csv" button // // cdr_custom.conf Master.csv definition for "Special cdr-custom" option // Master.csv => "${CDR(start)}","${CDR(clid)}","${CDR(dst)}","${CDR(dcontext)}","${CDR(billsec)}" @@ -133,6 +134,49 @@ return($cidtokens); } +// Function: exportCDRline +// +function exportCDRline($data) { + + $str = '"'.$data['time'].'"'; + $str .= ',"'.$data['cidname'].'"'; + $str .= ',"'.$data['cidnum'].'"'; + $str .= ',"'.$data['ext'].'"'; + $str .= ',"'.$data['context'].'"'; + if (isset($data['channel'])) { + $str .= ',"'.$data['channel'].'"'; + } + if (isset($data['dstchannel'])) { + $str .= ',"'.$data['dstchannel'].'"'; + } + if (isset($data['disposition'])) { + $str .= ',"'.$data['disposition'].'"'; + } + $str .= ',"['.secs2hourminsec($data['billsec']).']"'; + $str .= ',"'.$data['billsec'].'"'; + + if (isset($data['lastapp'])) { + $str .= ',"'.$data['lastapp'].'"'; + } + if (isset($data['lastdata'])) { + $str .= ',"'.$data['lastdata'].'"'; + } + if (isset($data['amaflags'])) { + $str .= ',"'.$data['amaflags'].'"'; + } + if (isset($data['accountcode'])) { + $str .= ',"'.$data['accountcode'].'"'; + } + if (isset($data['uniqueid'])) { + $str .= ',"'.$data['uniqueid'].'"'; + } + if (isset($data['userfield'])) { + $str .= ',"'.$data['userfield'].'"'; + } + + return($str); +} + // Function: parseCDRline // function parseCDRline($line, $format, $match, $map) { @@ -507,6 +551,23 @@ exit; } } + } elseif (isset($_POST['submit_export'])) { + if (($n = count($db['data'])) > 0) { + $search = isset($_POST['current_search']) ? $_POST['current_search'] : ''; + $key = isset($_POST['current_key']) ? $_POST['current_key'] : ''; + $name = 'CDR'.(($key === '') ? '' : '-'.$key).(($search === '') ? '' : '-'.rawurlencode($search)).'.csv'; + header('Content-Type: application/octet-stream'); + header('Content-Disposition: attachment; filename="'.$name.'"'); + header('Content-Transfer-Encoding: binary'); + ob_clean(); + flush(); + for ($i = 0; $i < $n; $i++) { + echo exportCDRline($db['data'][$i]), "\n"; + } + exit; + } else { + $result = 0; + } } elseif (isset($_POST['submit_backup'])) { if (($fp = @fopen($db['logfile'],"rb")) === FALSE) { $result = 5; @@ -675,6 +736,8 @@ putHtml('<option value="channel"'.$sel.'>Match Src Channel:</option>'); putHtml('</select>'); putHtml('<input type="text" value="'.htmlspecialchars($search).'" size="18" maxlength="64" name="list_type_val" />'); +putHtml('<input type="hidden" name="current_search" value="'.htmlspecialchars($search).'" />'); +putHtml('<input type="hidden" name="current_key" value="'.$fkey.'" />'); putHtml('</td><td style="text-align: center;">'); putHtml('<select name="format_dl">'); @@ -711,6 +774,7 @@ </select> </td></tr><tr><td style="text-align: center;"> <input type="submit" value="Refresh CDR Display" name="submit_cdrlog" /> + <input type="submit" value="Export CDR.csv" name="submit_export" /> </td><td style="text-align: center;"> <input type="submit" value="Download CDR.csv" name="submit_backup" /> </td></tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-06-19 18:03:17
|
Revision: 7123 http://sourceforge.net/p/astlinux/code/7123 Author: abelbeck Date: 2015-06-19 18:03:15 +0000 (Fri, 19 Jun 2015) Log Message: ----------- pcre, add more upstream security fixes, revisions 1563-1566 http://vcs.pcre.org/pcre/code/trunk/?view=log Modified Paths: -------------- branches/1.0/package/pcre/pcre-pre-8.38-security-fixes.patch Modified: branches/1.0/package/pcre/pcre-pre-8.38-security-fixes.patch =================================================================== --- branches/1.0/package/pcre/pcre-pre-8.38-security-fixes.patch 2015-06-19 14:29:09 UTC (rev 7122) +++ branches/1.0/package/pcre/pcre-pre-8.38-security-fixes.patch 2015-06-19 18:03:15 UTC (rev 7123) @@ -295,3 +295,53 @@ /* For caseless UTF-8 mode when UCP support is available, check whether this character has more than one other case. If so, generate a special +--- pcre-8.37/pcre_compile.c 2015/06/03 16:51:59 1562 ++++ pcre-8.37/pcre_compile.c 2015/06/09 17:45:25 1566 +@@ -204,7 +204,7 @@ + /* 78 */ 0, '`', ':', '#', '@', '\'', '=', '"', + /* 80 */ 0, 7, -ESC_b, 0, -ESC_d, ESC_e, ESC_f, 0, + /* 88 */-ESC_h, 0, 0, '{', 0, 0, 0, 0, +-/* 90 */ 0, 0, -ESC_k, 'l', 0, ESC_n, 0, -ESC_p, ++/* 90 */ 0, 0, -ESC_k, 0, 0, ESC_n, 0, -ESC_p, + /* 98 */ 0, ESC_r, 0, '}', 0, 0, 0, 0, + /* A0 */ 0, '~', -ESC_s, ESC_tee, 0,-ESC_v, -ESC_w, 0, + /* A8 */ 0,-ESC_z, 0, 0, 0, '[', 0, 0, +@@ -2487,7 +2487,7 @@ + if (c == OP_BRA || c == OP_BRAPOS || + c == OP_CBRA || c == OP_CBRAPOS || + c == OP_ONCE || c == OP_ONCE_NC || +- c == OP_COND) ++ c == OP_COND || c == OP_SCOND) + { + BOOL empty_branch; + if (GET(code, 1) == 0) return TRUE; /* Hit unclosed bracket */ +@@ -7353,7 +7353,15 @@ + + recno = 0; + while(IS_DIGIT(*ptr)) ++ { ++ if (recno > INT_MAX / 10 - 1) /* Integer overflow */ ++ { ++ while (IS_DIGIT(*ptr)) ptr++; ++ *errorcodeptr = ERR61; ++ goto FAILED; ++ } + recno = recno * 10 + *ptr++ - CHAR_0; ++ } + + if (*ptr != (pcre_uchar)terminator) + { + +--- pcre-8.37/pcre_exec.c 2015/06/09 16:33:27 1564 ++++ pcre-8.37/pcre_exec.c 2015/06/09 16:46:52 1565 +@@ -6685,7 +6685,8 @@ + register int *iend = iptr - re->top_bracket; + if (iend < md->offset_vector + 2) iend = md->offset_vector + 2; + while (--iptr >= iend) *iptr = -1; +- md->offset_vector[0] = md->offset_vector[1] = -1; ++ if (offsetcount > 0) md->offset_vector[0] = -1; ++ if (offsetcount > 1) md->offset_vector[1] = -1; + } + + /* Set up the first character to match, if available. The first_char value is + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-06-19 14:29:12
|
Revision: 7122 http://sourceforge.net/p/astlinux/code/7122 Author: abelbeck Date: 2015-06-19 14:29:09 +0000 (Fri, 19 Jun 2015) Log Message: ----------- update ChangeLog Modified Paths: -------------- branches/1.0/docs/ChangeLog.txt Modified: branches/1.0/docs/ChangeLog.txt =================================================================== --- branches/1.0/docs/ChangeLog.txt 2015-06-19 14:27:08 UTC (rev 7121) +++ branches/1.0/docs/ChangeLog.txt 2015-06-19 14:29:09 UTC (rev 7122) @@ -89,7 +89,8 @@ -- libpcap / tcpdump, version bump to 1.7.3 / 4.7.4, security and build fixes. --- libcurl (curl) version bump to 7.42.1, security fixes: CVE-2015-3144, CVE-2015-3145, CVE-2015-3148, CVE-2015-3143, CVE-2015-3153 +-- libcurl (curl) version bump to 7.43.0, security fixes: CVE-2015-3144, CVE-2015-3145, CVE-2015-3148, CVE-2015-3143, + CVE-2015-3153, CVE-2015-3236, CVE-2015-3237 -- OpenVPN, version bump to 2.3.7 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |