Commit Graph

7599 Commits

Author SHA1 Message Date
Thomas Penteker
dc5bf4f453 pinentry: 0.8.1 -> 0.8.3 2013-04-29 15:27:13 +02:00
bc379659b1 squid: update to 3.3.4 2013-04-28 13:03:29 +02:00
Danny Rawlins
bc66575395 wine: 1.5.28 -> 1.5.29 2013-04-27 20:54:25 +10:00
Danny Rawlins
f7ed966df6 netpbm: 10.57.00 -> 10.61.00 2013-04-26 21:06:50 +10:00
7ecead34d6 imagemagick: update to 6.8.4 2013-04-24 18:09:29 +02:00
47ed508075 nfs-utils: update to 1.2.8 2013-04-24 18:08:32 +02:00
5801628dfc msmtp: update to 1.4.31 2013-04-24 18:07:09 +02:00
eb949d535b fetchmail: update to 6.3.26 2013-04-24 18:06:45 +02:00
Thomas Penteker
a484ceecf3 qemu-all: 1.4.0 -> 1.4.1 2013-04-24 16:09:48 +02:00
Thomas Penteker
5ac1618cba qemu: 1.4.0 -> 1.4.1 2013-04-24 16:06:49 +02:00
Thomas Penteker
43ab16082d libgcrypt: 1.5.1 -> 1.5.2 2013-04-24 16:06:48 +02:00
Danny Rawlins
10dc1ac7f6 gkrellm: add missing dependency xorg-libxdamage 2013-04-24 08:43:49 +10:00
Fredrik Rinnestam
eaa36074f7 harfbuzz: updated to 0.9.16 2013-04-23 12:24:40 +02:00
Matt Housh
e61a0d8a1b alsa-utils: updated to version 1.0.27 2013-04-22 08:23:26 -05:00
Matt Housh
b361ffd69e alsa-lib: updated to version 1.0.27 2013-04-22 08:23:11 -05:00
9f837470f9 gnuplot: update to 4.6.3 2013-04-21 19:18:18 +02:00
3ccfeb5795 libxml2-python: update to 2.9.1 2013-04-21 11:56:49 +02:00
e9a824426b libxml2: update to 2.9.1 2013-04-21 11:56:39 +02:00
e4ac9ed306 mysql: update to 5.5.31 2013-04-21 11:56:16 +02:00
b514894f5d python: fix issue with man-page symlink
0) Problem: Some people have an additional link to the python man-page:

is the python footprint mismatch something I can fix or am I missing anything important?
NEW       lrwxrwxrwx      root/root       usr/man/man1/python.1.gz -> python2.1.gz

1) the relevant part of Makefile.pre.in:

maninstall:     altmaninstall
        -rm -f $(DESTDIR)$(MANDIR)/man1/python2.1
        (cd $(DESTDIR)$(MANDIR)/man1; $(LN) -s python$(VERSION).1 python2.1)
        -rm -f $(DESTDIR)$(MANDIR)/man1/python.1
        (cd $(DESTDIR)$(MANDIR)/man1; $(LN) -s python2.1 python.1)

2) after 'make install' we have the following chain of symlinks:

lrwxrwxrwx  1 juergen users     9 Apr 21 09:13 python.1 -> python2.1
lrwxrwxrwx  1 juergen users    11 Apr 21 09:13 python2.1 -> python2.7.1
-rw-r--r--  1 juergen users 14582 Apr 21 09:12 python2.7.1

3) the compress_manpages function of our pkgmk:

compress_manpages() {
        local FILE DIR TARGET

        cd $PKG

        find . -type f -path "*/man/man*/*" | while read FILE; do
                if [ "$FILE" = "${FILE%%.gz}" ]; then
                        gzip -9 "$FILE"
                fi
        done

        find . -type l -path "*/man/man*/*" | while read FILE; do
                TARGET=`readlink -n "$FILE"`
                TARGET="${TARGET##*/}"
                TARGET="${TARGET%%.gz}.gz"
                rm -f "$FILE"
                FILE="${FILE%%.gz}.gz"
                DIR=`dirname "$FILE"`

                if [ -e "$DIR/$TARGET" ]; then
                        ln -sf "$TARGET" "$FILE"
                fi
        done
}

4) How it works:

We search for real man-pages in $PKG and compress them, breaking all
symlinks to these man-pages, which we repair afterwards. Fixing is done by
adding a .gz extension to all targets of the symlinks.

However, we do a test if $TARGET exists before we do the actual link,
which is not the case if we have chained symlink and we do not process
in the right order.
For a "normal" collating we have the order python.1 before python2.1, so
python2.1.gz does not exits at the time we process python.1
2013-04-21 11:48:33 +02:00
07ef81ee5d whois: update to 5.0.24 2013-04-19 17:16:21 +02:00
02d127fc4f dropbear: update to 2013.58 2013-04-19 17:15:57 +02:00
4b54bd2dc7 dovecot: update to 2.2.1 2013-04-19 17:15:33 +02:00
922a7fd2e7 dnsmasq: update to 2.66 2013-04-19 17:15:15 +02:00
Jose V Beneyto
6c8ec546a6 jdk: updated to 1.7.0_21 2013-04-17 10:36:30 +02:00
a810d3c49e dovecot: update to 2.2.0 2013-04-17 10:15:10 +02:00
cfd9feff39 [notify] jre: update to 1.7.0_21
Update contains 42 new security fixes, see
- http://www.oracle.com/technetwork/topics/security/javacpuapr2013-1928497.html
- http://www.oracle.com/technetwork/java/javase/7u21-relnotes-1932873.html
2013-04-17 09:39:49 +02:00
c4b01a044d qpdf: update to 4.1.0 2013-04-17 09:22:08 +02:00
f468f7e42b dropbear: update to 2013.57 2013-04-17 09:21:40 +02:00
Fredrik Rinnestam
cbd481c3c0 glib: updated to 2.36.1 2013-04-16 20:51:17 +02:00
Fredrik Rinnestam
54f69e8e83 gdk-pixbuf: updated to 2.28.1 2013-04-16 20:51:17 +02:00
Jose V Beneyto
97383b80e7 bash-completion: removed package tools from other systems rather than CRUX (thanks to horrorStruck) 2013-04-15 15:03:25 +02:00
33b7872eef sqlite3: update to 3.7.16.2 2013-04-13 15:46:54 +02:00
8a2954f438 poppler-qt4: update to 0.22.3 2013-04-13 15:46:30 +02:00
bb27df702e poppler-glib: update to 0.22.3 2013-04-13 15:46:20 +02:00
82244273f5 poppler: update to 0.22.3 2013-04-13 15:46:00 +02:00
Jose V Beneyto
2738b1f422 sharutils: updated to 4.13.5 2013-04-13 10:26:09 +02:00
Jose V Beneyto
0954dc64dc chromium: fixed issue with libpng 2013-04-13 10:26:09 +02:00
Danny Rawlins
3fc7fafe72 wine: 1.5.27 -> 1.5.28 2013-04-13 12:04:48 +10:00
16ac54ab4f php-sqlite3: update to 5.4.14 2013-04-12 17:18:59 +02:00
da6568cf0f php-mysql: update to 5.4.14 2013-04-12 17:18:47 +02:00
9215c50d6a mod_php: update to 5.4.14 2013-04-12 17:18:28 +02:00
aeeff7f511 php-fpm: update to 5.4.14 2013-04-12 17:18:05 +02:00
fd658fbee2 php-fcgi: update to 5.4.14 2013-04-12 17:17:54 +02:00
0c9008908e php: update to 5.4.14 2013-04-12 17:17:43 +02:00
8651415194 scite: update to 3.3.1 2013-04-12 17:16:33 +02:00
2ff66d7c53 cups-filters: update to 1.0.34 2013-04-12 17:16:11 +02:00
Thomas Penteker
c265e00350 git: 1.8.1.5 -> 1.8.2.1 2013-04-12 10:10:03 +02:00
Jose V Beneyto
d30910971b chromium: updated to 26.0.1410.63 and added speech-dispatcher as dependency 2013-04-12 02:15:13 +02:00
Jose V Beneyto
6c3c045b03 speech-dispatcher: initial import 2013-04-12 02:15:13 +02:00