summaryrefslogtreecommitdiff
path: root/python
AgeCommit message (Collapse)Author
2021-02-27[notify] python: patch 3 security issues: CVE-2019-20907, CVE-2020-26116, ↵Danny Rawlins
and CVE-2021-3177
2020-06-06move several https: to https: URLsJuergen Daubert
2020-05-24[notify] python: removed 2to3, now provided by python3Juergen Daubert
2020-04-26python: update to 2.7.18Juergen Daubert
2019-10-20python: update to 2.7.17Juergen Daubert
2019-03-08python: cleanup, remove all test stuffJuergen Daubert
2019-03-08python: update to 2.7.16Juergen Daubert
2018-08-24opt: remove all .md5sumJuergen Daubert
2018-05-05[notify] python: update to 2.7.15, closes FS#1655Juergen Daubert
several security fixes, see https://github.com/python/cpython/blob/2.7/Misc/NEWS.d/2.7.15rc1.rst
2018-03-05python: add patchJuergen Daubert
2018-03-05[notify] python: security fix for CVE-2018-1000030, closes FS#1593Juergen Daubert
see https://nvd.nist.gov/vuln/detail/CVE-2018-1000030
2017-09-18python: update to 2.7.14Juergen Daubert
2016-12-24updated signaturesFredrik Rinnestam
2016-12-24Merge branch '3.2' into 3.3Fredrik Rinnestam
2016-12-20python: update to 2.7.13Juergen Daubert
2016-10-15add opt signaturesJuergen Daubert
2016-07-01python: update to 2.7.12Juergen Daubert
2015-12-06python: update to 2.7.11Juergen Daubert
2015-06-12python: update to 2.7.10Juergen Daubert
2014-12-11python: update to 2.7.9Juergen Daubert
2014-07-04python: update to 2.7.8Juergen Daubert
2014-06-02python: update to 2.7.7Juergen Daubert
2013-11-11python: explicit set permission mode of pyconfig.h to prevent footprint ↵Juergen Daubert
errors with unusual umask
2013-11-11python: update to 2.7.6Juergen Daubert
2013-05-16python: update to 2.7.5Juergen Daubert
2013-04-21python: fix issue with man-page symlinkJuergen 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-07python: update to 2.7.4Juergen Daubert
2013-02-02removed Arch MaintainersFredrik Rinnestam
2012-11-22Initial consolidation of opt ports for CRUX 3.0Matt Housh
2012-08-08python: disable unmaintained Berkely DB, use the python-bsddb module insteadJuergen Daubert
2012-04-10python: footprint fixJuergen Daubert
2012-04-10python: update to 2.7.3Juergen Daubert
2011-12-02python: build fix for Linux 3.xJuergen Daubert
2011-06-13python: update to 2.7.2Juergen Daubert
2011-02-02new maintainer email addressJuergen Daubert
2010-11-29python: footprint fixJuergen Daubert
2010-11-29python: update to 2.7.1Juergen Daubert
2010-08-31python: wrong descriptionJuergen Daubert
2010-07-06python: update to 2.7Juergen Daubert
2010-06-22python: update to 2.7rc2Juergen Daubert
2010-06-06python: update to 2.7rc1Juergen Daubert
2010-06-03python: update to 2.7b2Juergen Daubert
2010-03-20python: update to 2.6.5Juergen Daubert
2009-10-26python: update to 2.6.4Juergen Daubert
2009-10-20python: update to 2.6.4rc2Juergen Daubert
2009-10-08python: update to 2.6.4rc1, fix for ticket #503Juergen Daubert
2009-10-02python: update to 2.6.3Juergen Daubert
2009-04-15python: update to 2.6.2Juergen Daubert
2008-12-05python: update to 2.6.1release-2.52.5-rc2Juergen Daubert
2008-10-16python: fixed md5sum, thanks sepenJuergen Daubert

Generated by cgit