From mboxrd@z Thu Jan 1 00:00:00 1970 From: git@ipfire.org To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. efccb4330333aa4460475fa96539e1613697896b Date: Sat, 07 May 2016 14:10:44 +0100 Message-ID: <20160507131045.0E3B71078E81@git01.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8391835451531123013==" List-Id: --===============8391835451531123013== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via efccb4330333aa4460475fa96539e1613697896b (commit) via 86eda7b5521f04fbf3648534a35f89409a94837a (commit) via fb196971e9bac3b8055547f8273e4bad786f896d (commit) via 03306ff6a25238e01a1f2b39fbb929cf56615934 (commit) from be700f1806ed83225923dbd85b4574b8220db698 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit efccb4330333aa4460475fa96539e1613697896b Author: Matthias Fischer Date: Sat May 7 13:01:58 2016 +0200 squid: Update to 3.5.18 =20 Removed unecessary quotations and two configure-options, see: ftp://ftp.fu-berlin.de/unix/www/squid/archive/3.1/squid-3.1.0.16-RELEASEN= OTES.html =20 --with-aio Deprecated. POSIX AIO is now auto-detected and enabled. Use --without-aio to disable, but only if you really have to. =20 --with-pthreads Deprecated. pthreads library is now auto-detected and enabled. Use --without-pthreads to disable, but only if you really have to. =20 Signed-off-by: Matthias Fischer Signed-off-by: Michael Tremer commit 86eda7b5521f04fbf3648534a35f89409a94837a Author: Michael Tremer Date: Sat May 7 13:23:28 2016 +0100 tor: Update to 0.2.7.6 =20 Fixes #11117 =20 Signed-off-by: Michael Tremer commit fb196971e9bac3b8055547f8273e4bad786f896d Merge: 03306ff be700f1 Author: Michael Tremer Date: Sat May 7 12:32:27 2016 +0100 Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next commit 03306ff6a25238e01a1f2b39fbb929cf56615934 Author: Michael Tremer Date: Tue May 3 22:50:53 2016 +0100 general-functions.pl: Allow underscores in domain names =20 Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: config/cfgroot/general-functions.pl | 13 ++++--------- lfs/squid | 12 +++++------- lfs/tor | 6 +++--- 3 files changed, 12 insertions(+), 19 deletions(-) Difference in files: diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-fun= ctions.pl index f3a2e47..d3d7251 100644 --- a/config/cfgroot/general-functions.pl +++ b/config/cfgroot/general-functions.pl @@ -633,15 +633,10 @@ sub validdomainname # Each part should be no more than 63 characters in length if (length ($part) < 1 || length ($part) > 63) { return 0;} - # Only valid characters are a-z, A-Z, 0-9 and - - if ($part !~ /^[a-zA-Z0-9-]*$/) { - return 0;} - # First character can only be a letter or a digit - if (substr ($part, 0, 1) !~ /^[a-zA-Z0-9]*$/) { - return 0;} - # Last character can only be a letter or a digit - if (substr ($part, -1, 1) !~ /^[a-zA-Z0-9]*$/) { - return 0;} + # Only valid characters are a-z, A-Z, 0-9, _ and - + if ($part !~ /^[a-zA-Z0-9_-]*$/) { + return 0; + } } return 1; } diff --git a/lfs/squid b/lfs/squid index 66ad875..a7edc9d 100644 --- a/lfs/squid +++ b/lfs/squid @@ -24,7 +24,7 @@ =20 include Config =20 -VER =3D 3.5.17 +VER =3D 3.5.18 =20 THISAPP =3D squid-$(VER) DL_FILE =3D $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects =3D $(DL_FILE) =20 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) =20 -$(DL_FILE)_MD5 =3D 2dc73cc01e77b1bd16d9070780ae79b1 +$(DL_FILE)_MD5 =3D 9ae3843c341e8a142e963ab937c51cdd =20 install : $(TARGET) =20 @@ -92,10 +92,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --disable-ipv6 \ --enable-poll \ --enable-ident-lookups \ - --enable-storeio=3D"aufs,diskd,ufs" \ + --enable-storeio=3Daufs,diskd,ufs \ --enable-underscores \ --enable-http-violations \ - --enable-removal-policies=3D"heap,lru" \ + --enable-removal-policies=3Dheap,lru \ --enable-delay-pools \ --enable-linux-netfilter \ --enable-snmp \ @@ -119,11 +119,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --enable-kill-parent-hack \ --enable-icap-client \ --enable-zph-qos \ - --with-pthreads \ --with-dl \ --with-filedescriptors=3D$$(( 16384 * 64 )) \ - --with-large-files \ - --with-aio + --with-large-files =20 cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install diff --git a/lfs/tor b/lfs/tor index 91eab09..4cecf23 100644 --- a/lfs/tor +++ b/lfs/tor @@ -24,7 +24,7 @@ =20 include Config =20 -VER =3D 0.2.6.9 +VER =3D 0.2.7.6 =20 THISAPP =3D tor-$(VER) DL_FILE =3D $(THISAPP).tar.gz @@ -32,7 +32,7 @@ DL_FROM =3D $(URL_IPFIRE) DIR_APP =3D $(DIR_SRC)/$(THISAPP) TARGET =3D $(DIR_INFO)/$(THISAPP) PROG =3D tor -PAK_VER =3D 15 +PAK_VER =3D 16 =20 DEPS =3D "" =20 @@ -44,7 +44,7 @@ objects =3D $(DL_FILE) =20 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) =20 -$(DL_FILE)_MD5 =3D 4a1b334c30d7b37ea72fa33425220d5d +$(DL_FILE)_MD5 =3D cc19107b57136a68e8c563bf2d35b072 =20 install : $(TARGET) =20 hooks/post-receive -- IPFire 2.x development tree --===============8391835451531123013==--