2019-04-26 11:40:16 by Roy Marples | Files touched by this commit (53) | |
Log message:
Wave bye-bye to python34 and python35.
Discussed on pkgsrc-users@
|
2019-04-25 19:44:22 by Leonardo Taccari | Files touched by this commit (6) |
Log message:
python3*: improve the comment in patch-Python_pylifecycle.c
The PR have (and probably will have further) relevant information,
reference it too.
|
2019-04-25 17:59:54 by Roy Marples | Files touched by this commit (10) |
Log message:
python: Don't install nis_failed.so if no yp headers
Because python won't even try to build it.
You only see nis_failed.so if there is an error building it, when
it wanted to build it, and that should be fixed accordingly.
In a nutshell, if the yp headers are installed, python will build
the nis module, otherwise it won't.
On netbsd systems at least, if you have the yp headers installed and
subsequently re-install over the top with MKYP=no you get into the state
where the headers are installed, but the functions are no longer in libc.
This is an error with *your* system - either rebuild with MKYP=yes OR
remove the yp headers from include/rpc and include/rpcsvc.
Follow on fix for PR pkg/53673.
|
2019-04-09 20:47:25 by Adam Ciarcinski | Files touched by this commit (6) |
Log message:
python3[567]: fix #53229
|
2019-04-03 15:17:28 by Maya Rashish | Files touched by this commit (5) |
Log message:
python*: rework logic used to determine if PLIST.nis is used.
Match the logic used by setup.py: it looks for two headers in the default
include path. This helps newer glibc linux.
Omit PLIST.dll on python3* because it doesn't appear in the PLIST.
Make PLIST.dll true on all non-IRIX.
tested: NetBSD-current, FreeBSD 11.2, Ubuntu 18.10, CentOS 6.9, Source Mage
From Dr. Thomas Orgis, myself, and with pointers to a change from leot.
PR pkg/53673
|
2019-03-20 20:27:47 by Adam Ciarcinski | Files touched by this commit (4) | |
Log message:
python35: updated to 3.5.7
Python 3.5.7 final
Security
bpo-36216: Changes urlsplit() to raise ValueError when the URL contains \
characters that decompose under IDNA encoding (NFKC-normalization) into \
characters that affect how the URL is parsed.
bpo-35121: Don’t send cookies of domain A without Domain attribute to domain B \
when domain A is a suffix match of domain B while using a cookiejar with \
http.cookiejar.DefaultCookiePolicy policy.
Library
bpo-35121: Don’t set cookie for a request when the request path is a prefix \
match of the cookie’s path attribute but doesn’t end with “/”.
Python 3.5.7 release candidate 1
Security
bpo-35746: [CVE-2019-5010] Fix a NULL pointer deref in ssl module. The cert \
parser did not handle CRL distribution points with empty DP or URI correctly. A \
malicious or buggy certificate can result into segfault. Vulnerability \
(TALOS-2018-0758).
bpo-34791: The xml.sax and xml.dom.domreg no longer use environment variables to \
override parser implementations when sys.flags.ignore_environment is set by -E \
or -I arguments.
bpo-34623: CVE-2018-14647: The C accelerated _elementtree module now initializes \
hash randomization salt from _Py_HashSecret instead of libexpat’s default \
CSPRNG.
Library
bpo-33329: Fix multiprocessing regression on newer glibcs
bpo-33127: The ssl module now compiles with LibreSSL 2.7.1.
|
2019-03-02 14:23:36 by Adam Ciarcinski | Files touched by this commit (18) |
Log message:
python3[4567]: find_library() fixes; remove -stack_size from LDFLAGS on Darwin.
PkgSrc changes:
* Make find_library() consitant for all Python versions:
- Fallback to clang, when gcc is not installed.
- Find libraries in PkgSrc prefix.
* Do not use -stack_size; it ends up in 'pythonNN-config --ldflags', and some
modules fail to build.
|
2018-08-07 10:44:02 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
python35: updated to 3.5.6
3.5.6:
Bug fix release for Python 3.5.
|
2018-06-17 21:31:50 by Adam Ciarcinski | Files touched by this commit (4) |
Log message:
python: Fix PLIST.SunOS
|
2018-06-17 21:21:22 by Adam Ciarcinski | Files touched by this commit (63) |
Log message:
python: pkgsrc changes
- Fix buidling curses (consistent across platforms)
- Fix finding libraries with ctypes.util.find_library
- Enable spwd module on Linux
- Cleanup
|