lists.crux.nu
Sign In
Sign Up
Manage this list
Sign In
Sign Up
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
CRUX
Thread
Start a new thread
Download
Threads by
month
----- 2024 -----
October
September
August
July
June
May
April
March
February
January
----- 2023 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2022 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2021 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2020 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2019 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2018 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2017 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2016 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2015 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2014 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2013 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2012 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2011 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2010 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2009 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2008 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2007 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2006 -----
December
November
October
September
August
July
June
May
April
March
February
crux@lists.crux.nu
February 2012
5 participants
13 discussions
ports/opt (2.7): [notify] mathopd: update to 1.5p7
by crux@crux.nu
03 Feb '12
03 Feb '12
commit 2a2cb63ef76761bf1527e6ddc3091c7f1a650215 Author: Juergen Daubert <jue(a)jue.li> Date: Fri Feb 3 11:50:00 2012 +0100 [notify] mathopd: update to 1.5p7 Security fix, see
http://www.mathopd.org/security.html
diff --git a/mathopd/.md5sum b/mathopd/.md5sum index 7a3f0f9..2ec5e00 100644 --- a/mathopd/.md5sum +++ b/mathopd/.md5sum @@ -1,8 +1,7 @@ ec0d71c0c75986c1c4974320788945cc dir_cgi-1.1.tar.gz 56ed28d0c582903a2c29c9c5f9153e57 mathopd -421d71cfad7e659c1d3a384752371c6d mathopd-1.5p6.tar.gz +8b9efeac6f2abf17eabcfff6152cb346 mathopd-1.5p7.tar.gz 3e318e6add3583d90373cc335e5ea75e mathopd-config.patch -3b2ecf96fd1b882eb5ee1ac27844019f mathopd-getline.patch dd645079a41380fbb301da6d5559de84 mathopd.8.gz 2f0f28b786a555bbd800c0cbcf0d7057 mathopd.conf 11092a3c42c38d8a851a7807b6576349 mathopd.conf.5.gz diff --git a/mathopd/Pkgfile b/mathopd/Pkgfile index a2eb243..a02bde6 100644 --- a/mathopd/Pkgfile +++ b/mathopd/Pkgfile @@ -3,20 +3,18 @@ # Maintainer: Juergen Daubert, jue at crux dot nu name=mathopd -version=1.5p6 -release=2 +version=1.5p7 +release=1
source=(http://www.mathopd.org/dist/$name-$version.tar.gz
\
http://jue.li/misc/dir_cgi/dir_cgi-1.1.tar.gz
\
http://www.mathopd.org/doc/mathopd.8.gz
\
http://www.mathopd.org/doc/mathopd.conf.5.gz
\ - mathopd-config.patch mathopd.conf mathopd \ - mathopd-getline.patch) + mathopd-config.patch mathopd.conf mathopd) build () { cd $name-$version/src patch -p2 -i $SRC/mathopd-config.patch - patch -p2 -i $SRC/mathopd-getline.patch make diff --git a/mathopd/mathopd-getline.patch b/mathopd/mathopd-getline.patch deleted file mode 100644 index c5bdeb2..0000000 --- a/mathopd/mathopd-getline.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff -Nru mathopd-1.5p6.orig/src/request.c mathopd-1.5p6/src/request.c ---- mathopd-1.5p6.orig/src/request.c 2009-08-24 16:32:23.822054573 +0200 -+++ mathopd-1.5p6/src/request.c 2009-08-24 16:34:53.672062355 +0200 -@@ -210,7 +210,7 @@ - return buf; - } - --static char *getline(struct pool *p, int fold) -+static char *get_line(struct pool *p, int fold) - { - char *s, *olds, *sp, *end; - int f; -@@ -247,7 +247,7 @@ - break; - } - } -- log_d("getline: fallen off the end"); -+ log_d("get_line: fallen off the end"); - return 0; - } - -@@ -1172,7 +1172,7 @@ - unsigned long cl; - - do { -- l = getline(&r->cn->header_input, 0); -+ l = get_line(&r->cn->header_input, 0); - if (l == 0) - return -1; - } while (*l == 0); -@@ -1201,7 +1201,7 @@ - if (r->protocol_major && r->protocol_minor) - r->cn->keepalive = 1; - n = 0; -- while ((l = getline(&r->cn->header_input, 1)) != 0) { -+ while ((l = get_line(&r->cn->header_input, 1)) != 0) { - s = strchr(l, ':'); - if (s == 0) - continue;
1
0
0
0
ports/opt (2.7): [notify] unbound: update to 1.4.16
by crux@crux.nu
03 Feb '12
03 Feb '12
commit 165eb4cec598c8f157b7a608f9a32011f73fe2a2 Author: Juergen Daubert <jue(a)jue.li> Date: Fri Feb 3 11:56:03 2012 +0100 [notify] unbound: update to 1.4.16 Incompatible configuration change, see README diff --git a/unbound/.footprint b/unbound/.footprint index eef3d15..19dc8f1 100644 --- a/unbound/.footprint +++ b/unbound/.footprint @@ -2,7 +2,6 @@ drwxr-xr-x root/root etc/ drwxr-xr-x root/root etc/rc.d/ -rwxr-xr-x root/root etc/rc.d/unbound drwxr-xr-x root/root etc/unbound/ --rw-r--r-- unbound/root etc/unbound/root.key (EMPTY) -rw-r--r-- root/root etc/unbound/unbound.conf drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/man/ @@ -22,3 +21,6 @@ drwxr-xr-x root/root usr/sbin/ -rwxr-xr-x root/root usr/sbin/unbound-control -rwxr-xr-x root/root usr/sbin/unbound-control-setup -rwxr-xr-x root/root usr/sbin/unbound-host +drwxr-xr-x root/root var/ +drwxr-xr-x root/root var/lib/ +drwxr-xr-x unbound/unbound var/lib/unbound/ diff --git a/unbound/.md5sum b/unbound/.md5sum index 721a2ba..63a8235 100644 --- a/unbound/.md5sum +++ b/unbound/.md5sum @@ -1,3 +1,3 @@ e7428ed0d19baed02459e2c55660c9b3 ldns-1.6.12.tar.gz 20a8c112ea3ce0049dfe16f92614185e unbound -99173a6548e0e2ec9bfac7a5d025f79e unbound-1.4.15.tar.gz +5158d03d2ab0a8e60925c7a9b9903631 unbound-1.4.16.tar.gz diff --git a/unbound/Pkgfile b/unbound/Pkgfile index 7e72289..2c2c4c1 100644 --- a/unbound/Pkgfile +++ b/unbound/Pkgfile @@ -4,7 +4,7 @@ # Depends on: openssl expat name=unbound -version=1.4.15 +version=1.4.16 release=1
source=(http://www.unbound.net/downloads/$name-$version.tar.gz
http://www.nlnetlabs.nl/downloads/ldns/ldns-1.6.12.tar.gz
@@ -20,6 +20,7 @@ build () { --mandir=/usr/man \ --sysconfdir=/etc \ --with-pidfile=/var/run/unbound.pid \ + --with-rootkey-file=/var/lib/unbound/root.key \ --disable-shared \ --with-username=unbound \ --with-ldns=../ldns-1.6.12 @@ -29,8 +30,6 @@ build () { rm -r $PKG/usr/{lib,include,man/man3} - touch $PKG/etc/unbound/root.key - chown unbound $PKG/etc/unbound/root.key - + install -d -o unbound -g unbound $PKG/var/lib/unbound/ install -D -m 755 $SRC/unbound $PKG/etc/rc.d/unbound } diff --git a/unbound/README b/unbound/README index 0239d0b..6089402 100644 --- a/unbound/README +++ b/unbound/README @@ -13,8 +13,10 @@ PRE/POST-INSTALL PRECAUTION +To enable DNSSEC validation all you have to do is to enable the +"auto-trust-anchor-file" option in /etc/unbound/unbound.conifg. The effective user unbound is running as (default: unbound) needs -write access for /etc/unbound/root.key to update the trust anchor -for DNSSEC validation. Adjust the user of that file if you run +write access to /var/lib/unbound to update the trust anchor for +DNSSEC validation. Adjust the owner of that directory if you run unbound as a different user.
1
0
0
0
ports/opt (2.7): [notify] apache: update to 2.2.22
by crux@crux.nu
01 Feb '12
01 Feb '12
commit 0dadb9b8e66d21bc2ee12c43a05694551bff6824 Author: Juergen Daubert <jue(a)jue.li> Date: Wed Feb 1 16:41:10 2012 +0100 [notify] apache: update to 2.2.22 Several security fixes, see
http://www.apache.org/dist/httpd/CHANGES_2.2.22
diff --git a/apache/.footprint b/apache/.footprint index 9f240ee..842a5b0 100644 --- a/apache/.footprint +++ b/apache/.footprint @@ -163,17 +163,18 @@ drwxr-xr-x root/root usr/lib/apache/build/ -rwxr-xr-x root/root usr/lib/apache/mod_vhost_alias.so drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/ab.1.gz +-rw-r--r-- root/root usr/man/man1/apxs.1.gz -rw-r--r-- root/root usr/man/man1/dbmmanage.1.gz -rw-r--r-- root/root usr/man/man1/htdbm.1.gz -rw-r--r-- root/root usr/man/man1/htdigest.1.gz -rw-r--r-- root/root usr/man/man1/htpasswd.1.gz +-rw-r--r-- root/root usr/man/man1/httxt2dbm.1.gz +-rw-r--r-- root/root usr/man/man1/logresolve.1.gz drwxr-xr-x root/root usr/man/man8/ --rw-r--r-- root/root usr/man/man8/ab.8.gz -rw-r--r-- root/root usr/man/man8/apachectl.8.gz --rw-r--r-- root/root usr/man/man8/apxs.8.gz -rw-r--r-- root/root usr/man/man8/htcacheclean.8.gz -rw-r--r-- root/root usr/man/man8/httpd.8.gz --rw-r--r-- root/root usr/man/man8/logresolve.8.gz -rw-r--r-- root/root usr/man/man8/rotatelogs.8.gz -rw-r--r-- root/root usr/man/man8/suexec.8.gz drwxr-xr-x root/root usr/sbin/ diff --git a/apache/.md5sum b/apache/.md5sum index d5d50a4..b34ba9c 100644 --- a/apache/.md5sum +++ b/apache/.md5sum @@ -1,4 +1,4 @@ e0514e5840c0e58cc4e7982a7e14fc4b apache 75a919be7ff65f443287b094eaf6a162 apache-ssl_cert.patch bd931fee9d102c361e95ad318d199674 crux.layout -1696ae62cd879ab1d4dd9ff021a470f2 httpd-2.2.21.tar.bz2 +9fe3093194c8a57f085ff7c3fc43715f httpd-2.2.22.tar.bz2 diff --git a/apache/Pkgfile b/apache/Pkgfile index 845ff79..b4fab33 100644 --- a/apache/Pkgfile +++ b/apache/Pkgfile @@ -5,7 +5,7 @@ # Group: apache name=apache -version=2.2.21 +version=2.2.22 release=1
source=(http://www.apache.org/dist/httpd/httpd-$version.tar.bz2
\ $name-ssl_cert.patch crux.layout apache) @@ -28,7 +28,7 @@ build(){ --enable-cache --enable-{disk,file,mem}-cache \ --with-mpm=prefork make - make DESTDIR=$PKG install + make -j1 DESTDIR=$PKG install mkdir -p $PKG/etc/ssl/{keys,certs} touch $PKG/etc/ssl/keys/apache.key
1
0
0
0
← Newer
1
2
Older →
Jump to page:
1
2
Results per page:
10
25
50
100
200