Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-12-20 | python: update to 2.7.13 | Juergen Daubert | |
2016-07-01 | python: update to 2.7.12 | Juergen Daubert | |
2015-12-06 | python: update to 2.7.11 | Juergen Daubert | |
2015-06-12 | python: update to 2.7.10 | Juergen Daubert | |
2014-12-11 | python: update to 2.7.9 | Juergen Daubert | |
2014-07-04 | python: update to 2.7.8 | Juergen Daubert | |
2014-06-02 | python: update to 2.7.7 | Juergen Daubert | |
2013-11-11 | python: explicit set permission mode of pyconfig.h to prevent footprint ↵ | Juergen Daubert | |
errors with unusual umask | |||
2013-11-11 | python: update to 2.7.6 | Juergen Daubert | |
2013-05-16 | python: update to 2.7.5 | Juergen Daubert | |
2013-04-21 | python: fix issue with man-page symlink | Juergen Daubert | |
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-07 | python: update to 2.7.4 | Juergen Daubert | |
2013-02-02 | removed Arch Maintainers | Fredrik Rinnestam | |
2012-11-22 | Initial consolidation of opt ports for CRUX 3.0 | Matt Housh | |
2012-08-08 | python: disable unmaintained Berkely DB, use the python-bsddb module instead | Juergen Daubert | |
2012-04-10 | python: footprint fix | Juergen Daubert | |
2012-04-10 | python: update to 2.7.3 | Juergen Daubert | |
2011-12-02 | python: build fix for Linux 3.x | Juergen Daubert | |
2011-06-13 | python: update to 2.7.2 | Juergen Daubert | |
2011-02-02 | new maintainer email address | Juergen Daubert | |
2010-11-29 | python: footprint fix | Juergen Daubert | |
2010-11-29 | python: update to 2.7.1 | Juergen Daubert | |
2010-08-31 | python: wrong description | Juergen Daubert | |
2010-07-06 | python: update to 2.7 | Juergen Daubert | |
2010-06-22 | python: update to 2.7rc2 | Juergen Daubert | |
2010-06-06 | python: update to 2.7rc1 | Juergen Daubert | |
2010-06-03 | python: update to 2.7b2 | Juergen Daubert | |
2010-03-20 | python: update to 2.6.5 | Juergen Daubert | |
2009-10-26 | python: update to 2.6.4 | Juergen Daubert | |
2009-10-20 | python: update to 2.6.4rc2 | Juergen Daubert | |
2009-10-08 | python: update to 2.6.4rc1, fix for ticket #503 | Juergen Daubert | |
2009-10-02 | python: update to 2.6.3 | Juergen Daubert | |
2009-04-15 | python: update to 2.6.2 | Juergen Daubert | |
2008-12-05 | python: update to 2.6.1release-2.52.5-rc2 | Juergen Daubert | |
2008-10-16 | python: fixed md5sum, thanks sepen | Juergen Daubert | |
2008-10-02 | python: update to 2.6 | Juergen Daubert | |
2008-10-01 | python: update to 2.6rc2, new dependency sqlite3 | Juergen Daubert | |
2008-08-07 | [nofify] python: update for multiple vulnerabilities | Juergen Daubert | |
See http://lwn.net/Vulnerabilities/292410/ for an overview of the issue. Thanks to Jonathan Schleifer for the notification. Patches shameless stolen from gentoo. | |||
2008-07-11 | deumlautify | Juergen Daubert | |
2008-07-08 | python: symlink python library into config directory, FS#322 | Juergen Daubert | |
2008-03-12 | python: update to 2.5.2 | Juergen Daubert | |
2007-04-19 | python: update to 2.5.1 | Juergen Daubert | |
2007-01-04 | python: fix for linker problem, reported by Matt | Juergen Daubert | |
2006-11-25 | python: update to 2.5 | Juergen Daubert | |
2006-10-20 | python: update to 2.4.4 | Juergen Daubert | |
2006-08-28 | python: keep the test stuff because Zope needs it. Thanks to Gunter Coelle ↵ | Juergen Daubert | |
for the hint | |||
2006-03-30 | python: update to 2.4.3 | Juergen Daubert | |
2006-02-24 | python: added patch for bdb 4.4.x | Juergen Daubert | |
2006-02-23 | create branch for 2.2 | Johannes Winkelmann | |