summaryrefslogtreecommitdiff
path: root/lang/python27 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* lang/python*: sort pkg-plistsDmitry Marakasov2021-07-141-4/+4
| | | | | | | Sort pkg-plists to reduce diff between existing and future versions of python. Approved by: portmgr blanket (cosmetic change)
* Mk: switch from PYTHON_PORTVERSION to PYTHON_DISTVERSIONDmitry Marakasov2021-05-253-9/+9
| | | | | | | | | | | This brings python framework in consistense with handbook recommendations to prefer DISTVERSION and simplifies adding prerelease versions of python PR: 255013 Differential Revision: https://reviews.freebsd.org/D29418 Exp-run by: antoine Approved by: wen@, no objection from python@ or portmgr@
* *: Remove unnecessary 'port' argument from USES=readlineYasuhiro Kimura2021-05-151-1/+1
| | | | | PR: 248459 Exp-run by: antoine
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-062-2/+0
|
* Chanse update of devel/libffiNiclas Zeising2020-07-041-0/+1
| | | | | | | | | | Chase the devel/libffi update Bump portrevision of all dependent ports to chace shard library version bump in libffi. Update LIB_DEPENDS lines where needed to not require a specific version of libffi.so. PR: 247028 (for tracking)
* - Update to 2.7.18 [1]Wen Heping2020-05-054-6/+9
| | | | | | | | | | | | (include security fix) - Fix build with OPTION of DEBUG THREADS [2] PR: 245776 Submitted by: vvd@unislabs.com [1], takefu@airport.fm [2] Exp-run by: antoine@ [1] MFH: 2020Q2 Security: CVE-2019-18348, CVE-2020-8492
* Deprecate python2Antoine Brodin2020-01-011-0/+3
| | | | With hat: portmgr
* lang/python{27,35,36,37,38}: Add closefrom(2) supportKubilay Kocak2019-11-292-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A single close(fd) syscall is cheap, but when MAXFDS (maximum file descriptor number) is high, the loop calling close(fd) on each file descriptor can take several milliseconds. The default value of subprocess.Popen "close_fds" parameter changed to True in Python 3. Compared to Python 2, close_fds=True can make Popen 10x slower: see bpo-37790 [1] The present workaround on FreeBSD to improve performance is to load and mount the fdescfs kernel module, but this is not enabled by default. This change adds minimum viable (and upstreamable) closefrom(2) syscall support to Python's subprocess and posix modules, improving performance significantly for loads that involve working with many processes, such as diffoscope, ansible, and many others. For additional optimizations, upstream recently (3.8) landed posix_spawn(2) support [3] and has stated that they will adopt close_range(2) after Linux merges it [4]. Linux/FreeBSD developers are already collaborating on ensuring compatible implementations, with FreeBSD's implementation pending in D21627. [5] Thank you emaste, cem, kevans for providing analysis, input, clarifications, comms/upstream support and patches. [1] https://bugs.python.org/issue37790 [2] https://bugs.python.org/issue38061 [3] https://bugs.python.org/issue35537 [4] https://lwn.net/Articles/789023/ [5] https://reviews.freebsd.org/D21627 Additional References: https://bugs.python.org/issue8052 https://bugs.python.org/issue11284 https://bugs.python.org/issue13788 https://bugs.python.org/issue1663329 https://www.python.org/dev/peps/pep-0446/ PR: 242274, 221700 Submitted by: kevans (emaste, cem) Approved by: koobs (python (maintainer), santa)
* - Update lang/python27 to 2.7.17Wen Heping2019-10-244-7/+8
| | | | | | PR: 241357 Submitted by: wen@ Exp-run by: antoine@
* Drop the ipv6 virtual category for l* category as it is not relevant anymoreBaptiste Daroussin2019-10-091-1/+1
|
* In various places in the ports tree, tests against ARCH are iteratedMark Linimon2019-10-041-1/+1
| | | | | | | | | one-by-one when a pattern test would be more robust. This consolidates the tests for 64-bit functionality. PR: 239163 Approved by: sunpoet (python, maintainer)
* onvert to UCL & cleanup pkg-message (categories l-m)Mathieu Arnold2019-08-131-4/+6
|
* Update devel/readline to 8.0Sunpoet Po-Chuan Hsieh2019-04-091-0/+1
| | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://tiswww.case.edu/php/chet/readline/CHANGES PR: 236156 Exp-run by: antoine
* Add note to update python documentation (lang/python-doc-*)Sunpoet Po-Chuan Hsieh2019-03-291-0/+2
|
* - Update python27 to 2.7.16Wen Heping2019-03-113-11/+17
| | | | | | PR: 236318 Submitted by: wen@(myself) Exp-run by: antoine@FreeBSD.org
* Remove compatibility code for FreeBSD < 11.2 from all ports.Rene Ladan2018-11-021-7/+0
| | | | | | | Simplify some ports where DragonFlyBSD no longer needs to be special-cased. Submitted by: rene Reviewed by: bapt, jbeich Differential Revision: https://reviews.freebsd.org/D17724
* lang/python27,35+: Remove MAKE_JOBS_UNSAFEKubilay Kocak2018-10-171-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | ports r393217 via bug 200622 [1] originally set MAKE_JOBS_UNSAFE=yes due to incorrect uses of recursive make [2], causing intermittent build failures when run with multiple jobs (-jN). Upstream committed a fix for the issue in default (3.6, at the time), 3.5 and 2.7 which are now contained in all released lang/python?? port versions. 3.4 did not receieve a backport merge. lang/python3.5+ ports inadvertently inherited MAKE_JOBS_UNSAFE=yes, via repocopies from lang/python34 on their creation, when they were infact safe to use with -j. Remove MAKE_JOBS_UNSAFE in all lang/python?? ports except python34 accordingly. [1] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200622 [2] https://bugs.python.org/issue22359 PR: 232308 Reported by: cem Reviewed by: cem Approved by: koobs (python) MFH: 2018Q4 Differential Revision: D17579
* - Update to 2.7.15(include security fix)Wen Heping2018-05-116-219/+7
| | | | | | | PR: 228028 Submitted by: wen@(myself) Exp-run by: antoine@ MFH: 2018Q2
* lang/python27: Fix build with LibreSSL 2.7Bernard Spil2018-04-281-0/+83
| | | | | | | PR: 226883 Submitted by: Charlie Li <ml+freebsd vishwin info> Approved by: python (koobs) Differential Revision: https://reviews.freebsd.org/D14837
* Revert r462630, it introduced regressionsAntoine Brodin2018-03-021-2/+0
| | | | | PR: 226135 With hat: portmgr
* Revert r463321, it breaks lang/python27 on at least vanilla FreeBSD 10.xAntoine Brodin2018-03-021-11/+5
| | | | | Reported by: pkg-fallout With hat: portmgr
* lang/python27: Fix build regressionKubilay Kocak2018-03-011-5/+11
| | | | | | | | | | | | | | | | | | | r462630 added OpenSSL include/library paths to CFLAGS/LIBS which caused the _elementtree and pyexpat modules to fail to build. Adding paths to CFLAGS is known to cause issues [1]. Accordingly: - Switch to using CPPFLAGS for OpenSSL include/library paths (like NLS). - Move the comment describing why this is necessary to the top of the port with reasonable warning about what can happen and why. [1] https://svnweb.freebsd.org/ports?view=revision&revision=326729 PR: 226135, 222795) Reported by: many Reviewed by: sunpoet (python) Approved by: koobs (python)
* Fix build with OpenSSL 1.1.0 (security/openssl-devel)Sunpoet Po-Chuan Hsieh2018-02-221-0/+2
| | | | | | This is a follow up commit of r461915. MFH: 2018Q1
* Clean up ARCH statementSunpoet Po-Chuan Hsieh2018-02-161-1/+1
| | | | | | PR: 223985 Submitted by: linimon MFH: 2018Q1
* Fix build with OpenSSL 1.1.0 (security/openssl-devel)Sunpoet Po-Chuan Hsieh2018-02-152-2/+128
| | | | | | | | | | - Remove BROKEN_SSL=openssl-devel Reference: https://bugs.python.org/issue30622 https://github.com/python/cpython/commit/b2d096bd2a5ff86e53c25d00ee5fa097b36bf1d8 PR: 222795 Submitted by: brnrd MFH: 2018Q1
* Silence patch messagesSunpoet Po-Chuan Hsieh2018-02-121-2/+2
|
* Set PORTNAME to python and add PKGNAMESUFFIXSunpoet Po-Chuan Hsieh2018-02-112-11/+9
| | | | | | - Sort USES - Remove CPE_*: all of them are default values - Update http:// links in Makefile comments and patch files
* When cross-compiling with qemu, recompile _sysconfigdata.py after patching itAntoine Brodin2017-10-151-0/+7
| | | | | Reported by: rene@ With hat: portmgr
* - Update to 2.7.14(include security fix)Wen Heping2017-09-244-8/+31
| | | | | | | PR: 222398 Submitted by: wen@(myself) Exp-run by: antoine@ MFH: 2017Q3
* Add a code block for the qemu-user enabled cross build environment. When usingSean Bruno2017-08-021-1/+12
| | | | | | | | | | this environment in poudriere, CC is not set to the default of /usr/bin/cc and a cross-compile toolchain is used. We need to hand edit this so that the run time configuration for python matches what the FreeBSD base system provides. PR: 208282 Submitted by: manu Approved by: portmgr (mat)
* lang/python{27,33,34,35,36}: Make Python curses module work with UnicodeDanilo G. Baio2017-06-281-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use readline from ports (USES= readline:port) and patch setup.py to ignore readline from base. The patch is necessary for FreeBSD < 1100000, as after this the readline library became an INTERNALLIB, see base r268461 [1] Link devel/readline against termcapw instead of termcap is part of this change, see ports r444463 [2] Note that this is the **ports** approach for getting Python curses module working with Unicode. The other way is splitting libncurses into separate libncurses and libtinfo in base, for which an open issue exists [3]. Apart from Python language ports, at least www/rtv and sysutils/py-ranger ports have been tested to work correctly (display Unicode) after this change. [1] https://svnweb.freebsd.org/changeset/base/268461 [2] https://svnweb.freebsd.org/changeset/ports/444463 [3] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197317 PR: 171246, 197317 Reported by: Vitaly Magerya <vmagerya gmail com> Reviewed by: garga, koobs, miwi, sunpoet Approved by: garga (mentor), sunpoet (python, with hat) Differential Revision: https://reviews.freebsd.org/D11127
* Update devel/readline to 7.0 patch 3Sunpoet Po-Chuan Hsieh2017-06-271-1/+1
| | | | | | | | | | | - Bump PORTREVISION for shlib change Changes: https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES https://lists.gnu.org/archive/html/bug-bash/2016-09/msg00107.html https://lists.gnu.org/archive/html/bug-readline/2017-01/msg00002.html Differential Revision: https://reviews.freebsd.org/D11172 PR: 219947 Exp-run by: antoine
* lang/python{27,33,34,35,36}: Install GDB debugging scriptKubilay Kocak2017-06-062-1/+4
| | | | | | | | | | | | | | | | | | | | Users with a GDB that supports [1] Python extensions will automatically load the extra debugging extensions when debugging programs that are linked with libpythonX.Y.so.foo. This enables extensions like 'py-bt' and 'py-frame' as described in the Fedora Wiki Article: Easier Python Debugging [2], which can be useful for debugging Python program state from crashes in C extensions, for example. [1] PYTHON option enabled in devel/gdb [2] https://fedoraproject.org/wiki/Features/EasierPythonDebugging PR: 203021 Submitted by: cem Reviewed by: mat, koobs (python) Approved by: koobs (python) Differential Revision: D10398
* - Remove SEM option by making it always avalibleMartin Wilke2017-04-233-56/+10
| | | | | | | | | | | | | | Since FreeBSD 8.x EOL in 2015-08-01 the option doesn't have any value beyond footshooting[1]. sem_open() and sem_init(pshared=1) always work FreeBSD 9.0 or later after base r201546. [1] https://lists.freebsd.org/pipermail/freebsd-ports/2017-April/108116.html PR: 218641 Reported by: jbeich Exp-run: antoine MFH: 2017Q2 Differential Revision: https://reviews.freebsd.org/D10446
* Use BROKEN_SSL and update WWWSunpoet Po-Chuan Hsieh2017-04-162-8/+4
|
* - Fix shebangMartin Wilke2017-04-141-2/+11
| | | | Thanks to: amdmi3
* - Fix the pkg-plist when build with WITHOUT_NIS=yesWen Heping2016-12-262-1/+2
|
* - Update to 2.7.13Wen Heping2016-12-266-1562/+1507
| | | | | | PR: 215375 Submitted by: wen@ Exp-run by: antoine@
* Mark some ports as not openssl-devel ready.Mathieu Arnold2016-11-291-1/+7
| | | | Sponsored by: Absolight
* Remove no-op patch.Tijl Coosemans2016-11-021-11/+0
| | | | | | | | This patch was submitted to upstream libffi and from there to upstream libtool, but it doesn't do anything. The original patch committed in r158131 did do something but when it was no longer needed it was changed into something that doesn't make sense in r221521 instead of being removed. Remove it now before it causes more confusion.
* Use USES=pathfix where applicable.Mathieu Arnold2016-10-211-2/+2
| | | | | | | | PR: 213195 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D8093
* - Update to version 2.7.12Wen Heping2016-07-035-39/+24
| | | | | | | | | | | | - Remove patch that is included upstream - Switch USE_OPENSSL to USES= ssl [1] - Update documentation for python27 - Don't set CPE_VERSION, default is PORTVERSION [1] PR: 210685 Submitted by: wen@(myself), brnrd@ [1] Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D6994
* lang/python[xx]: backport upstream fix for CVE-2016-5636Ruslan Makhmatkhanov2016-06-172-1/+18
| | | | | | | | | | | | | | Add patch for integer overflow in zipimport module to all our python ports. While I'm here, get rid of -f flag in ${RM} invocation, because ${RM} already expands to rm -f, so in result we are getting something like: /bin/rm -f -f /wrkdirs/usr/ports/lang/python35/work/stage/usr/local/lib/libpython3.so PR: 210325 Submitted by: Vladimir Krstulja <vlad-fbsd@acheronmedia.com> Security: 1d0f6852-33d8-11e6-a671-60a44ce6887b With hat: python
* Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled ↵Dmitry Marakasov2016-05-231-1/+1
| | | | | | by default anyway and don't need to be listed Approved by: portmgr blanket
* For the various lang/python* ports, improve the __FreeBSD_versionDimitry Andric2016-04-252-1/+14
| | | | | | | | | | | | | check in pyport.h for working around a very old ctype issue. If the workaround for this issue is enabled, pyport.h redefines toupper() and some other ctype macros, and this wreaks havoc when including newer libc++ headers (or any other system header which tries to declare those functions). Approved by: portmgr (antoine) PR: 208486 MFH: 2016Q2
* Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.Mathieu Arnold2016-04-011-1/+1
| | | | | With hat: portmgr Sponsored by: Absolight
* lang/python{27,3*}: Backport patch in upstream issue20397Kubilay Kocak2016-01-083-0/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | In certain situations, file references (.py[co]) for Python files that fail to compile with compileall() are still added to distutils --record output. This output is used for pkg-plist generation and must only contain references to files that will be installed. One example of a failure condition is when a Python 2/3 compatible package containing a file containing Python 3.x only code is built with Python 2.x, such as Gunicorn's _gaiohttp.py [1] This change backports patches submitted against upstream issue 20397 [2] that has not yet been committed. - For Python 2.7 and 3.5, backport both install_lib and test - For Python 3.2, 3.3 and 3.4, only backport install_lib [1] https://svnweb.freebsd.org/changeset/ports/404558 [2] https://bugs.python.org/issue20397 Thank you to Brendan Molloy for producing and submitting the patches against upstream sources. Reviewed by: sbz (python) MFH: 2016Q1 Differential Revision: D4832
* lang/python27(3*), Mk/Uses/python.mk: remove make spawnJohn Marino2015-12-292-1/+6
| | | | | | | | | | | | | | There are some inefficiencies in python.mk that significantly slow down full tree scanning. The use of bmake to obtain the current version of a specific python is responsible for the majority of the slow done. This commit splits out the PYTHON_PORTVERSION definition (which is the same as the lang/python* PORTVERSION) into separate files. With this change, python.mk can simple include the makefile fragment instead of spawning a new instance of make. Different Revision: https://reviews.freebsd.org/D4660 Approved by: antoine (python), mva (python)
* - Switch regression-test to TEST_TARGEDMartin Wilke2015-12-241-3/+4
| | | | | Discussed in: D4695 Reviewed by: koobs