Compare commits
17 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
234821293a | ||
|
ad35423f76 | ||
|
7384206c16 | ||
|
12b4715d42 | ||
|
0006860a33 | ||
|
50564dfb55 | ||
|
18f5682471 | ||
|
3e276b5ca8 | ||
|
f8ee99bc22 | ||
|
a0ff80559a | ||
|
507d66ce22 | ||
|
7223a24629 | ||
|
a267d0ccdd | ||
|
6110f96141 | ||
|
bb591a2e06 | ||
|
024452834a | ||
|
6414747578 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -21,3 +21,7 @@
|
||||
/pypy3.9-v7.3.8rc2-src.tar.bz2
|
||||
/pypy3.9-v7.3.8-src.tar.bz2
|
||||
/pypy3.9-v7.3.9-src.tar.bz2
|
||||
/pypy3.9-v7.3.11-src.tar.bz2
|
||||
/pypy3.9-v7.3.12-src.tar.bz2
|
||||
/pypy3.9-v7.3.13-src.tar.bz2
|
||||
/pypy3.9-v7.3.15-src.tar.bz2
|
||||
|
25
010-fix-pointers.patch
Normal file
25
010-fix-pointers.patch
Normal file
@ -0,0 +1,25 @@
|
||||
From 2d689b133337084a6f00982462b58486bf6bd3a4 Mon Sep 17 00:00:00 2001
|
||||
From: mattip <matti.picus@gmail.com>
|
||||
Date: Tue, 19 Mar 2024 08:45:03 +0200
|
||||
Subject: [PATCH] fix 'const' in signature of Tcl_Merge (issue 4926)
|
||||
|
||||
---
|
||||
lib_pypy/_tkinter/tklib_build.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/lib_pypy/_tkinter/tklib_build.py b/lib_pypy/_tkinter/tklib_build.py
|
||||
index 0e4e93c..44c1d10 100644
|
||||
--- a/lib_pypy/_tkinter/tklib_build.py
|
||||
+++ b/lib_pypy/_tkinter/tklib_build.py
|
||||
@@ -171,7 +171,7 @@ int Tcl_ListObjGetElements(Tcl_Interp *interp, Tcl_Obj *listPtr, int *objcPtr, T
|
||||
int Tcl_ListObjLength(Tcl_Interp* interp, Tcl_Obj* listPtr, int* intPtr);
|
||||
int Tcl_ListObjIndex(Tcl_Interp* interp, Tcl_Obj* listPtr, int index, Tcl_Obj** objPtrPtr);
|
||||
int Tcl_SplitList(Tcl_Interp* interp, char* list, int* argcPtr, const char*** argvPtr);
|
||||
-char* Tcl_Merge(int argc, char** argv);
|
||||
+char* Tcl_Merge(int argc, const char * const* argv);
|
||||
|
||||
int Tcl_Eval(Tcl_Interp* interp, const char* script);
|
||||
int Tcl_EvalFile(Tcl_Interp* interp, const char* filename);
|
||||
--
|
||||
2.43.2
|
||||
|
@ -1,61 +0,0 @@
|
||||
diff --git a/lib-python/3/ensurepip/__init__.py b/lib-python/3/ensurepip/__init__.py
|
||||
index e510cc7..8b736b8 100644
|
||||
--- a/lib-python/3/ensurepip/__init__.py
|
||||
+++ b/lib-python/3/ensurepip/__init__.py
|
||||
@@ -1,3 +1,5 @@
|
||||
+import distutils.version
|
||||
+import glob
|
||||
import os
|
||||
import os.path
|
||||
import sys
|
||||
@@ -6,13 +8,28 @@ import tempfile
|
||||
import subprocess
|
||||
from importlib import resources
|
||||
|
||||
-from . import _bundled
|
||||
|
||||
+__all__ = ["version", "bootstrap"]
|
||||
|
||||
+_WHEEL_DIR = "/usr/share/python-wheels/"
|
||||
+
|
||||
+_wheels = {}
|
||||
+
|
||||
+def _get_most_recent_wheel_version(pkg):
|
||||
+ prefix = os.path.join(_WHEEL_DIR, "{}-".format(pkg))
|
||||
+ _wheels[pkg] = {}
|
||||
+ for suffix in "-py2.py3-none-any.whl", "-py3-none-any.whl":
|
||||
+ pattern = "{}*{}".format(prefix, suffix)
|
||||
+ for path in glob.glob(pattern):
|
||||
+ version_str = path[len(prefix):-len(suffix)]
|
||||
+ _wheels[pkg][version_str] = os.path.basename(path)
|
||||
+ return str(max(_wheels[pkg], key=distutils.version.LooseVersion))
|
||||
+
|
||||
+
|
||||
+_SETUPTOOLS_VERSION = _get_most_recent_wheel_version("setuptools")
|
||||
+
|
||||
+_PIP_VERSION = _get_most_recent_wheel_version("pip")
|
||||
|
||||
-__all__ = ["version", "bootstrap"]
|
||||
-_SETUPTOOLS_VERSION = "58.1.0"
|
||||
-_PIP_VERSION = "22.0.4"
|
||||
_PROJECTS = [
|
||||
("setuptools", _SETUPTOOLS_VERSION, "py3"),
|
||||
("pip", _PIP_VERSION, "py3"),
|
||||
@@ -101,13 +118,10 @@ def _bootstrap(*, root=None, upgrade=False, user=False,
|
||||
# additional paths that need added to sys.path
|
||||
additional_paths = []
|
||||
for project, version, py_tag in _PROJECTS:
|
||||
- wheel_name = "{}-{}-{}-none-any.whl".format(project, version, py_tag)
|
||||
- whl = resources.read_binary(
|
||||
- _bundled,
|
||||
- wheel_name,
|
||||
- )
|
||||
- with open(os.path.join(tmpdir, wheel_name), "wb") as fp:
|
||||
- fp.write(whl)
|
||||
+ wheel_name = _wheels[project][version]
|
||||
+ with open(os.path.join(_WHEEL_DIR, wheel_name), "rb") as sfp:
|
||||
+ with open(os.path.join(tmpdir, wheel_name), "wb") as fp:
|
||||
+ fp.write(sfp.read())
|
||||
|
||||
additional_paths.append(os.path.join(tmpdir, wheel_name))
|
||||
|
@ -1,117 +0,0 @@
|
||||
From c3caa02fe5e48e02a2ff2c0f409317022b05d34f Mon Sep 17 00:00:00 2001
|
||||
From: Petr Viktorin <encukou@gmail.com>
|
||||
Date: Fri, 3 Jun 2022 11:43:35 +0200
|
||||
Subject: [PATCH] 00382: CVE-2015-20107
|
||||
|
||||
Make mailcap refuse to match unsafe filenames/types/params (GH-91993)
|
||||
|
||||
Upstream: https://github.com/python/cpython/issues/68966
|
||||
|
||||
Tracker bug: https://bugzilla.redhat.com/show_bug.cgi?id=2075390
|
||||
---
|
||||
lib-python/3/mailcap.py | 26 ++++++++++++++++++++++++--
|
||||
lib-python/3/test/test_mailcap.py | 8 ++++++--
|
||||
2 files changed, 30 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/lib-python/3/mailcap.py b/lib-python/3/mailcap.py
|
||||
index ae416a8..444c640 100644
|
||||
--- a/lib-python/3/mailcap.py
|
||||
+++ b/lib-python/3/mailcap.py
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
import os
|
||||
import warnings
|
||||
+import re
|
||||
|
||||
__all__ = ["getcaps","findmatch"]
|
||||
|
||||
@@ -13,6 +14,11 @@ def lineno_sort_key(entry):
|
||||
else:
|
||||
return 1, 0
|
||||
|
||||
+_find_unsafe = re.compile(r'[^\xa1-\U0010FFFF\w@+=:,./-]').search
|
||||
+
|
||||
+class UnsafeMailcapInput(Warning):
|
||||
+ """Warning raised when refusing unsafe input"""
|
||||
+
|
||||
|
||||
# Part 1: top-level interface.
|
||||
|
||||
@@ -165,15 +171,22 @@ def findmatch(caps, MIMEtype, key='view', filename="/dev/null", plist=[]):
|
||||
entry to use.
|
||||
|
||||
"""
|
||||
+ if _find_unsafe(filename):
|
||||
+ msg = "Refusing to use mailcap with filename %r. Use a safe temporary filename." % (filename,)
|
||||
+ warnings.warn(msg, UnsafeMailcapInput)
|
||||
+ return None, None
|
||||
entries = lookup(caps, MIMEtype, key)
|
||||
# XXX This code should somehow check for the needsterminal flag.
|
||||
for e in entries:
|
||||
if 'test' in e:
|
||||
test = subst(e['test'], filename, plist)
|
||||
+ if test is None:
|
||||
+ continue
|
||||
if test and os.system(test) != 0:
|
||||
continue
|
||||
command = subst(e[key], MIMEtype, filename, plist)
|
||||
- return command, e
|
||||
+ if command is not None:
|
||||
+ return command, e
|
||||
return None, None
|
||||
|
||||
def lookup(caps, MIMEtype, key=None):
|
||||
@@ -206,6 +219,10 @@ def subst(field, MIMEtype, filename, plist=[]):
|
||||
elif c == 's':
|
||||
res = res + filename
|
||||
elif c == 't':
|
||||
+ if _find_unsafe(MIMEtype):
|
||||
+ msg = "Refusing to substitute MIME type %r into a shell command." % (MIMEtype,)
|
||||
+ warnings.warn(msg, UnsafeMailcapInput)
|
||||
+ return None
|
||||
res = res + MIMEtype
|
||||
elif c == '{':
|
||||
start = i
|
||||
@@ -213,7 +230,12 @@ def subst(field, MIMEtype, filename, plist=[]):
|
||||
i = i+1
|
||||
name = field[start:i]
|
||||
i = i+1
|
||||
- res = res + findparam(name, plist)
|
||||
+ param = findparam(name, plist)
|
||||
+ if _find_unsafe(param):
|
||||
+ msg = "Refusing to substitute parameter %r (%s) into a shell command" % (param, name)
|
||||
+ warnings.warn(msg, UnsafeMailcapInput)
|
||||
+ return None
|
||||
+ res = res + param
|
||||
# XXX To do:
|
||||
# %n == number of parts if type is multipart/*
|
||||
# %F == list of alternating type and filename for parts
|
||||
diff --git a/lib-python/3/test/test_mailcap.py b/lib-python/3/test/test_mailcap.py
|
||||
index c08423c..920283d 100644
|
||||
--- a/lib-python/3/test/test_mailcap.py
|
||||
+++ b/lib-python/3/test/test_mailcap.py
|
||||
@@ -121,7 +121,8 @@ class HelperFunctionTest(unittest.TestCase):
|
||||
(["", "audio/*", "foo.txt"], ""),
|
||||
(["echo foo", "audio/*", "foo.txt"], "echo foo"),
|
||||
(["echo %s", "audio/*", "foo.txt"], "echo foo.txt"),
|
||||
- (["echo %t", "audio/*", "foo.txt"], "echo audio/*"),
|
||||
+ (["echo %t", "audio/*", "foo.txt"], None),
|
||||
+ (["echo %t", "audio/wav", "foo.txt"], "echo audio/wav"),
|
||||
(["echo \\%t", "audio/*", "foo.txt"], "echo %t"),
|
||||
(["echo foo", "audio/*", "foo.txt", plist], "echo foo"),
|
||||
(["echo %{total}", "audio/*", "foo.txt", plist], "echo 3")
|
||||
@@ -205,7 +206,10 @@ class FindmatchTest(unittest.TestCase):
|
||||
('"An audio fragment"', audio_basic_entry)),
|
||||
([c, "audio/*"],
|
||||
{"filename": fname},
|
||||
- ("/usr/local/bin/showaudio audio/*", audio_entry)),
|
||||
+ (None, None)),
|
||||
+ ([c, "audio/wav"],
|
||||
+ {"filename": fname},
|
||||
+ ("/usr/local/bin/showaudio audio/wav", audio_entry)),
|
||||
([c, "message/external-body"],
|
||||
{"plist": plist},
|
||||
("showexternal /dev/null default john python.org /tmp foo bar", message_entry))
|
||||
--
|
||||
2.35.3
|
||||
|
@ -1,98 +0,0 @@
|
||||
From e42be9b593f1d5e83a947f73058b919395398424 Mon Sep 17 00:00:00 2001
|
||||
From: Julian Berman <Julian+Hg@GrayVines.com>
|
||||
Date: Fri, 23 Sep 2022 11:30:55 +0200
|
||||
Subject: [PATCH] Pull in the http.server vulnerability fix from
|
||||
python/cpython#87389
|
||||
|
||||
Fixes an open redirection vulnerability for paths starting with `//`.
|
||||
|
||||
Closes: #3812
|
||||
|
||||
--HG--
|
||||
branch : http_server_vuln_fix
|
||||
---
|
||||
lib-python/3/http/server.py | 7 ++++
|
||||
lib-python/3/test/test_httpservers.py | 49 +++++++++++++++++++++++++++
|
||||
2 files changed, 56 insertions(+)
|
||||
|
||||
diff --git a/lib-python/3/http/server.py b/lib-python/3/http/server.py
|
||||
index 38f7accad7..39de35458c 100644
|
||||
--- a/lib-python/3/http/server.py
|
||||
+++ b/lib-python/3/http/server.py
|
||||
@@ -332,6 +332,13 @@ class BaseHTTPRequestHandler(socketserver.StreamRequestHandler):
|
||||
return False
|
||||
self.command, self.path = command, path
|
||||
|
||||
+ # gh-87389: The purpose of replacing '//' with '/' is to protect
|
||||
+ # against open redirect attacks possibly triggered if the path starts
|
||||
+ # with '//' because http clients treat //path as an absolute URI
|
||||
+ # without scheme (similar to http://path) rather than a path.
|
||||
+ if self.path.startswith('//'):
|
||||
+ self.path = '/' + self.path.lstrip('/') # Reduce to a single /
|
||||
+
|
||||
# Examine the headers and look for a Connection directive.
|
||||
try:
|
||||
self.headers = http.client.parse_headers(self.rfile,
|
||||
diff --git a/lib-python/3/test/test_httpservers.py b/lib-python/3/test/test_httpservers.py
|
||||
index c5b833723e..97dae7a7ce 100644
|
||||
--- a/lib-python/3/test/test_httpservers.py
|
||||
+++ b/lib-python/3/test/test_httpservers.py
|
||||
@@ -416,6 +416,55 @@ class SimpleHTTPServerTestCase(BaseTestCase):
|
||||
self.check_status_and_reason(response, HTTPStatus.OK,
|
||||
data=support.TESTFN_UNDECODABLE)
|
||||
|
||||
+ def test_get_dir_redirect_location_domain_injection_bug(self):
|
||||
+ """Ensure //evil.co/..%2f../../X does not put //evil.co/ in Location.
|
||||
+
|
||||
+ //netloc/ in a Location header is a redirect to a new host.
|
||||
+ https://github.com/python/cpython/issues/87389
|
||||
+
|
||||
+ This checks that a path resolving to a directory on our server cannot
|
||||
+ resolve into a redirect to another server.
|
||||
+ """
|
||||
+ os.mkdir(os.path.join(self.tempdir, 'existing_directory'))
|
||||
+ url = f'/python.org/..%2f..%2f..%2f..%2f..%2f../%0a%0d/../{self.tempdir_name}/existing_directory'
|
||||
+ expected_location = f'{url}/' # /python.org.../ single slash single prefix, trailing slash
|
||||
+ # Canonicalizes to /tmp/tempdir_name/existing_directory which does
|
||||
+ # exist and is a dir, triggering the 301 redirect logic.
|
||||
+ response = self.request(url)
|
||||
+ self.check_status_and_reason(response, HTTPStatus.MOVED_PERMANENTLY)
|
||||
+ location = response.getheader('Location')
|
||||
+ self.assertEqual(location, expected_location, msg='non-attack failed!')
|
||||
+
|
||||
+ # //python.org... multi-slash prefix, no trailing slash
|
||||
+ attack_url = f'/{url}'
|
||||
+ response = self.request(attack_url)
|
||||
+ self.check_status_and_reason(response, HTTPStatus.MOVED_PERMANENTLY)
|
||||
+ location = response.getheader('Location')
|
||||
+ self.assertFalse(location.startswith('//'), msg=location)
|
||||
+ self.assertEqual(location, expected_location,
|
||||
+ msg='Expected Location header to start with a single / and '
|
||||
+ 'end with a / as this is a directory redirect.')
|
||||
+
|
||||
+ # ///python.org... triple-slash prefix, no trailing slash
|
||||
+ attack3_url = f'//{url}'
|
||||
+ response = self.request(attack3_url)
|
||||
+ self.check_status_and_reason(response, HTTPStatus.MOVED_PERMANENTLY)
|
||||
+ self.assertEqual(response.getheader('Location'), expected_location)
|
||||
+
|
||||
+ # If the second word in the http request (Request-URI for the http
|
||||
+ # method) is a full URI, we don't worry about it, as that'll be parsed
|
||||
+ # and reassembled as a full URI within BaseHTTPRequestHandler.send_head
|
||||
+ # so no errant scheme-less //netloc//evil.co/ domain mixup can happen.
|
||||
+ attack_scheme_netloc_2slash_url = f'https://pypi.org/{url}'
|
||||
+ expected_scheme_netloc_location = f'{attack_scheme_netloc_2slash_url}/'
|
||||
+ response = self.request(attack_scheme_netloc_2slash_url)
|
||||
+ self.check_status_and_reason(response, HTTPStatus.MOVED_PERMANENTLY)
|
||||
+ location = response.getheader('Location')
|
||||
+ # We're just ensuring that the scheme and domain make it through, if
|
||||
+ # there are or aren't multiple slashes at the start of the path that
|
||||
+ # follows that isn't important in this Location: header.
|
||||
+ self.assertTrue(location.startswith('https://pypi.org/'), msg=location)
|
||||
+
|
||||
def test_get(self):
|
||||
#constructs the path relative to the root directory of the HTTPServer
|
||||
response = self.request(self.base_url + '/test')
|
||||
--
|
||||
GitLab
|
||||
|
489
changelog
Normal file
489
changelog
Normal file
@ -0,0 +1,489 @@
|
||||
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.13-3.3.9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.13-2.3.9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Oct 04 2023 Miro Hrončok <mhroncok@redhat.com> - 7.3.13-1.3.9
|
||||
- Update to 7.3.13
|
||||
- Fixes: rhbz#2241298
|
||||
|
||||
* Tue Aug 22 2023 Miro Hrončok <mhroncok@redhat.com> - 7.3.12-2.3.9
|
||||
- Make PyPy 3.10 the main PyPy 3 on Fedora 39+
|
||||
|
||||
* Wed Jul 26 2023 Miro Hrončok <mhroncok@redhat.com> - 7.3.12-1.3.9
|
||||
- Update to 7.3.12
|
||||
- Fixes: rhbz#2203423
|
||||
|
||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.11-5.3.9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Mon May 29 2023 Charalampos Stratakis <cstratak@redhat.com> - 7.3.11-4.3.9
|
||||
- Security fix for CVE-2023-24329
|
||||
Resolves: rhbz#2174020
|
||||
|
||||
* Fri Feb 17 2023 Miro Hrončok <mhroncok@redhat.com> - 7.3.11-3.3.9
|
||||
- On Fedora 38+, obsolete the pypy3.8 package which is no longer available
|
||||
|
||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.11-2.3.9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Fri Dec 30 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.11-1.3.9
|
||||
- Update to 7.3.11
|
||||
- Fixes: rhbz#2147520
|
||||
|
||||
* Fri Dec 02 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.9-5.3.9
|
||||
- On Fedora 37+, obsolete the pypy3.7 package which is no longer available
|
||||
|
||||
* Mon Oct 10 2022 Lumír Balhar <lbalhar@redhat.com> - 7.3.9-4.3.9
|
||||
- Backport fix for CVE-2021-28861
|
||||
Resolves: rhbz#2120789
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.9-3.3.9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Tue Jun 28 2022 Charalampos Stratakis <cstratak@redhat.com> - 7.3.9-2.3.9
|
||||
- Security fix for CVE-2015-20107
|
||||
- Fixes: rhbz#2075390
|
||||
|
||||
* Wed Mar 30 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.9-1.3.9
|
||||
- Update to 7.3.9
|
||||
- Fixes: rhbz#2069873
|
||||
|
||||
* Tue Mar 01 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.8-1.3.9
|
||||
- Include the Python version in Release to workaround debuginfo conflicts
|
||||
and make same builds of different PyPy sort in a predictable way (e.g. wrt Obsoletes)
|
||||
- Namespace the debugsources to fix installation conflict with other PyPys
|
||||
- Fixes: rhbz#2053880
|
||||
- This is now the main PyPy 3 on Fedora 36+
|
||||
- Fixes: rhbz#2059670
|
||||
|
||||
* Tue Feb 22 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.8-1
|
||||
- Update to 7.3.8 final
|
||||
|
||||
* Fri Feb 11 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.8~rc2-1
|
||||
- Update to 7.3.8rc2
|
||||
|
||||
* Wed Jan 26 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.8~rc1-1
|
||||
- Update to 7.3.8rc1
|
||||
- Move to a CPython-like installation layout
|
||||
- Stop requiring pypy3.9 from pypy3.9-libs
|
||||
- Split tests into pypy3.9-test
|
||||
|
||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Sat Jan 08 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34
|
||||
|
||||
* Thu Nov 11 2021 Miro Hrončok <mhroncok@redhat.com> - 7.3.7-1
|
||||
- Initial pypy3.8 package
|
||||
- Supplement tox
|
||||
|
||||
* Tue Oct 26 2021 Tomáš Hrnčiar <thrnciar@redhat.com> - 7.3.6-1
|
||||
- Update to 7.3.6
|
||||
- Remove windows executable binaries
|
||||
- Fixes: rhbz#2003682
|
||||
|
||||
* Mon Sep 20 2021 Miro Hrončok <mhroncok@redhat.com> - 7.3.5-2
|
||||
- Explicitly buildrequire OpenSSL 1.1, as Python 3.7 is not compatible with OpenSSL 3.0
|
||||
|
||||
* Mon Aug 16 2021 Miro Hrončok <mhroncok@redhat.com> - 7.3.5-1
|
||||
- Update to 7.3.5
|
||||
- Fixes: rhbz#1992600
|
||||
|
||||
* Mon Aug 09 2021 Tomas Hrnciar <thrnciar@redhat.com> - 7.3.4-4
|
||||
- Rename pypy3 to pypy3.7
|
||||
- pypy-stackless was removed
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Tomas Hrnciar <thrnciar@redhat.com> - 7.3.4-2
|
||||
- Replace removed /usr/lib/rpm/brp-python-bytecompile with %%py_byte_compile macros
|
||||
- Fixes: rhbz#1976656
|
||||
|
||||
* Tue May 25 2021 Miro Hrončok <mhroncok@redhat.com> - 7.3.4-1
|
||||
- Update to 7.3.4
|
||||
- pypy3 is now Python 3.7
|
||||
- Fixes rhbz#1961933
|
||||
|
||||
* Tue May 25 2021 Miro Hrončok <mhroncok@redhat.com> - 7.3.1-6
|
||||
- Provide missing bundled library information
|
||||
|
||||
* Wed May 19 2021 Charalampos Stratakis <cstratak@redhat.com> - 7.3.1-5
|
||||
- Add virtual provides for the bundled libmpdec (rhbz#1943359)
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.1-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Apr 15 2020 Tomas Hrnciar <thrnciar@redhat.com> - 7.3.1-1
|
||||
- Update to 7.3.1
|
||||
|
||||
* Wed Feb 12 2020 Miro Hrončok <mhroncok@redhat.com> - 7.3.0-3
|
||||
- Update the ensurepip module to work with setuptools >= 45
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Dec 28 2019 Miro Hrončok <mhroncok@redhat.com> - 7.3.0-1
|
||||
- Update to 7.3.0
|
||||
|
||||
* Wed Oct 23 2019 Miro Hrončok <mhroncok@redhat.com> - 7.2.0-2
|
||||
- Enable JIT on aarch64
|
||||
|
||||
* Mon Oct 14 2019 Miro Hrončok <mhroncok@redhat.com> - 7.2.0-1
|
||||
- Update to 7.2.0 (#1757707)
|
||||
- Enable aarch64 (without JIT)
|
||||
- Enable power64 (with JIT)
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.1.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri May 24 2019 Miro Hrončok <mhroncok@redhat.com> - 7.1.1-1
|
||||
- Update to 7.1.1 (#1689198)
|
||||
- pypy3 is now Python 3.6
|
||||
|
||||
* Thu May 16 2019 Miro Hrončok <mhroncok@redhat.com> - 7.0.0-2
|
||||
- Show the version as 7.0.0
|
||||
|
||||
* Thu Feb 28 2019 Miro Hrončok <mhroncok@redhat.com> - 7.0.0-1
|
||||
- Update to 7.0.0 (#1673127)
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Jan 14 2019 Björn Esser <besser82@fedoraproject.org> - 6.0.0-4
|
||||
- Rebuilt for libcrypt.so.2 (#1666033)
|
||||
|
||||
* Tue Aug 21 2018 Miro Hrončok <mhroncok@redhat.com> - 6.0.0-3
|
||||
- Use RPM packaged wheels
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Apr 25 2018 Miro Hrončok <mhroncok@redhat.com> - 6.0.0-1
|
||||
- Fix failing taskotron check
|
||||
- New release 6.0.0 (#1571489)
|
||||
- Fix multiprocessing regression on newer glibcs (#1569933)
|
||||
|
||||
* Wed Apr 11 2018 Miro Hrončok <mhroncok@redhat.com> - 5.10.1-7
|
||||
- Provide pypy3(abi) = 5.10
|
||||
|
||||
* Wed Apr 11 2018 Miro Hrončok <mhroncok@redhat.com> - 5.10.1-6
|
||||
- RPM macros improvements
|
||||
|
||||
* Tue Apr 10 2018 Michal Cyprian <mcyprian@redhat.com> - 5.10.1-5
|
||||
- Remove the rightmost version number from the path
|
||||
- rhbz#1516885: https://bugzilla.redhat.com/show_bug.cgi?id=1516885
|
||||
|
||||
* Thu Mar 29 2018 Michal Cyprian <mcyprian@redhat.com> - 5.10.1-4
|
||||
- Add patch for libxcrypt
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.10.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 5.10.1-2
|
||||
- Rebuilt for switch to libxcrypt
|
||||
|
||||
* Fri Jan 12 2018 Miro Hrončok <mhroncok@redhat.com> - 5.10.1-1
|
||||
- Update to 5.10.1 (#1533689)
|
||||
- Removed two upstreamed patches
|
||||
|
||||
* Fri Dec 29 2017 Miro Hrončok <mhroncok@redhat.com> - 5.10.0-3
|
||||
- Remove never used InstallPyPy function
|
||||
- Actually call execstack as originally intended
|
||||
- Use execstack on all arches (it's available now)
|
||||
- Don't ship the debug binaries
|
||||
- On power, use cpython2 to build pypy3
|
||||
|
||||
* Thu Dec 28 2017 Miro Hrončok <mhroncok@redhat.com> - 5.10.0-2
|
||||
- Fixed upstream issues #2717 and #2718 (re-enable test_socket)
|
||||
- Use pypy2 when building (it's faster and works this time)
|
||||
|
||||
* Mon Dec 25 2017 Miro Hrončok <mhroncok@redhat.com> - 5.10.0-1
|
||||
- Update to 5.10 (#1528841)
|
||||
- Use pypy2 and python2-pycparser (note the twos)
|
||||
- Enable JIT on power and s390x
|
||||
- Temporarily skip test_socket on ix86
|
||||
|
||||
* Fri Oct 20 2017 Miro Hrončok <mhroncok@redhat.com> - 5.9.0-1
|
||||
- Update to 5.9 (#1504427)
|
||||
- Remove merged patches
|
||||
- Reindex the patches to match the filenames
|
||||
- Rebase the faulthandler Patch11
|
||||
- BR python-pycparser
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sun Nov 13 2016 Dan Horák <dan[at]danny.cz> - 5.5.0-3
|
||||
- set z10 as the base CPU for s390(x) build
|
||||
|
||||
* Sat Nov 12 2016 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 5.5.0-2
|
||||
- Also build on arm and s390*
|
||||
|
||||
* Sat Oct 15 2016 Miro Hrončok <mhroncok@redhat.com> - 5.5.0-1
|
||||
- PyPy 3.3 5.5.0
|
||||
- On Fedora 26+, BR compat-openssl10-devel
|
||||
|
||||
* Sat Jul 02 2016 Miro Hrončok <mhroncok@redhat.com> - 5.2.0-0.1.alpha1
|
||||
- First alpha build of PyPy 3.3
|
||||
|
||||
* Fri Jul 01 2016 Miro Hrončok <mhroncok@redhat.com> - 2.4.0-3
|
||||
- Fix for: CVE-2016-0772 python: smtplib StartTLS stripping attack
|
||||
- Raise an error when STARTTLS fails
|
||||
- rhbz#1303647: https://bugzilla.redhat.com/show_bug.cgi?id=1303647
|
||||
- rhbz#1351680: https://bugzilla.redhat.com/show_bug.cgi?id=1351680
|
||||
- Fixed upstream: https://hg.python.org/cpython/rev/d590114c2394
|
||||
- Fix for: CVE-2016-5699 python: http protocol steam injection attack
|
||||
- rhbz#1303699: https://bugzilla.redhat.com/show_bug.cgi?id=1303699
|
||||
- rhbz#1351687: https://bugzilla.redhat.com/show_bug.cgi?id=1351687
|
||||
- Fixed upstream: https://hg.python.org/cpython/rev/bf3e1c9b80e9
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Sep 10 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.4.0-1
|
||||
- Update to 2.4.0
|
||||
|
||||
* Tue Sep 02 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.3.1-4
|
||||
- Move devel subpackage requires so that it gets picked up by rpm
|
||||
|
||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Mon Jul 7 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2.3.1-2
|
||||
- ARMv7 is supported for JIT
|
||||
- no prelink on aarch64/ppc64le
|
||||
|
||||
* Sun Jun 08 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.3.1-1
|
||||
- Update to 2.3.1
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue May 27 2014 Dennis Gilmore <dennis@ausil.us> - 2.3-4
|
||||
- valgrind is available everywhere except 31 bit s390
|
||||
|
||||
* Wed May 21 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 2.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
|
||||
|
||||
* Thu May 15 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.3-2
|
||||
- Rebuilt (f21-python)
|
||||
|
||||
* Tue May 13 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.3-1
|
||||
- Updated to 2.3
|
||||
|
||||
* Mon Mar 10 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.2.1-3
|
||||
- Put RPM macros in proper location
|
||||
|
||||
* Thu Jan 16 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.2.1-2
|
||||
- Fixed errors due to missing __pycache__
|
||||
|
||||
* Thu Dec 05 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.2.1-1
|
||||
- Updated to 2.2.1
|
||||
- Several bundled modules (tkinter, sqlite3, curses, syslog) were
|
||||
not bytecompiled properly during build, that is now fixed
|
||||
- prepared new tests, not enabled yet
|
||||
|
||||
* Thu Nov 14 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.2.0-1
|
||||
- Updated to 2.2.0
|
||||
|
||||
* Thu Aug 15 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.1-1
|
||||
- Updated to 2.1.0
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Mon Jun 24 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.0.2-4
|
||||
- Patch1 fix
|
||||
|
||||
* Mon Jun 24 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.0.2-3
|
||||
- Yet another Sources fix
|
||||
|
||||
* Mon Jun 24 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.0.2-2
|
||||
- Fixed Source URL
|
||||
|
||||
* Mon Jun 24 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.0.2-1
|
||||
- 2.0.2, patch 8 does not seem necessary anymore
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-0.2.b1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Tue Dec 11 2012 David Malcolm <dmalcolm@redhat.com> - 2.0-0.1.b1
|
||||
- 2.0b1 (drop upstreamed patch 9)
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Tue Jul 10 2012 David Malcolm <dmalcolm@redhat.com> - 1.9-3
|
||||
- log all output from "make" (patch 6)
|
||||
- disable the MOTD at startup (patch 7)
|
||||
- hide symbols from the dynamic linker (patch 8)
|
||||
- add PyInt_AsUnsignedLongLongMask (patch 9)
|
||||
- capture the Makefile, the typeids.txt, and the dynamic-symbols file within
|
||||
the debuginfo package
|
||||
|
||||
* Mon Jun 18 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.9-2
|
||||
- Compile with PIC, fixes FTBFS on ARM
|
||||
|
||||
* Fri Jun 8 2012 David Malcolm <dmalcolm@redhat.com> - 1.9-1
|
||||
- 1.9
|
||||
|
||||
* Fri Feb 10 2012 David Malcolm <dmalcolm@redhat.com> - 1.8-2
|
||||
- disable C readability patch for now (patch 4)
|
||||
|
||||
* Thu Feb 9 2012 David Malcolm <dmalcolm@redhat.com> - 1.8-1
|
||||
- 1.8; regenerate config patch (patch 0); drop selinux patch (patch 2);
|
||||
regenerate patch 5
|
||||
|
||||
* Tue Jan 31 2012 David Malcolm <dmalcolm@redhat.com> - 1.7-4
|
||||
- fix an incompatibility with virtualenv (rhbz#742641)
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Fri Dec 16 2011 David Malcolm <dmalcolm@redhat.com> - 1.7-2
|
||||
- use --gcrootfinder=shadowstack, and use standard Fedora compilation flags,
|
||||
with -Wno-unused (rhbz#666966 and rhbz#707707)
|
||||
|
||||
* Mon Nov 21 2011 David Malcolm <dmalcolm@redhat.com> - 1.7-1
|
||||
- 1.7: refresh patch 0 (configuration) and patch 4 (readability of generated
|
||||
code)
|
||||
|
||||
* Tue Oct 4 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-7
|
||||
- skip test_multiprocessing
|
||||
|
||||
* Tue Sep 13 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-6
|
||||
- don't ship the emacs JIT-viewer on el5 and el6 (missing emacs-filesystem;
|
||||
missing _emacs_bytecompile macro on el5)
|
||||
|
||||
* Mon Sep 12 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-5
|
||||
- build using python26 on el5 (2.4 is too early)
|
||||
* Thu Aug 25 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-4
|
||||
- fix SkipTest function to avoid corrupting the name of "test_gdbm"
|
||||
|
||||
* Thu Aug 25 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-3
|
||||
- add rpm macros file to the devel subpackage (source 2)
|
||||
- skip some tests that can't pass yet
|
||||
|
||||
* Sat Aug 20 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-2
|
||||
- work around test_subprocess failure seen in koji (patch 5)
|
||||
|
||||
* Thu Aug 18 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-1
|
||||
- 1.6
|
||||
- rewrite the %%check section, introducing per-test timeouts
|
||||
|
||||
* Tue Aug 2 2011 David Malcolm <dmalcolm@redhat.com> - 1.5-2
|
||||
- add pypytrace-mode.el to the pypy-libs subpackage, for viewing JIT trace
|
||||
logs in emacs
|
||||
|
||||
* Mon May 2 2011 David Malcolm <dmalcolm@redhat.com> - 1.5-1
|
||||
- 1.5
|
||||
|
||||
* Wed Apr 20 2011 David Malcolm <dmalcolm@redhat.com> - 1.4.1-10
|
||||
- build a /usr/bin/pypy (but without the JIT compiler) on architectures that
|
||||
don't support the JIT, so that they do at least have something that runs
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Fri Jan 14 2011 David Malcolm <dmalcolm@redhat.com> - 1.4.1-8
|
||||
- disable self-hosting for now, due to fatal error seen JIT-compiling the
|
||||
translator
|
||||
|
||||
* Fri Jan 14 2011 David Malcolm <dmalcolm@redhat.com> - 1.4.1-7
|
||||
- skip test_ioctl for now
|
||||
|
||||
* Thu Jan 13 2011 David Malcolm <dmalcolm@redhat.com> - 1.4.1-6
|
||||
- add a "pypy-devel" subpackage, and install the header files there
|
||||
- in %%check, re-run failed tests in verbose mode
|
||||
|
||||
* Fri Jan 7 2011 Dan Horák <dan[at]danny.cz> - 1.4.1-5
|
||||
- valgrind available only on selected architectures
|
||||
|
||||
* Wed Jan 5 2011 David Malcolm <dmalcolm@redhat.com> - 1.4.1-4
|
||||
- rebuild pypy using itself, for speed, with a boolean to break this cycle in
|
||||
the build-requirement graph (falling back to using "python-devel" aka CPython)
|
||||
- add work-in-progress patch to try to make generated c more readable
|
||||
(rhbz#666963)
|
||||
- capture the RPython source code files from the build within the debuginfo
|
||||
package (rhbz#666975)
|
||||
|
||||
* Wed Dec 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.1-3
|
||||
- try to respect the FHS by installing libraries below libdir, rather than
|
||||
datadir; patch app_main.py to look in this installation location first when
|
||||
scanning for the pypy library directories.
|
||||
- clarifications and corrections to the comments in the specfile
|
||||
|
||||
* Wed Dec 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.1-2
|
||||
- remove .svn directories
|
||||
- disable verbose logging
|
||||
- add a %%check section
|
||||
- introduce %%goal_dir variable, to avoid repetition
|
||||
- remove shebang line from demo/bpnn.py, as we're treating this as a
|
||||
documentation file
|
||||
- regenerate patch 2 to apply without generating a .orig file
|
||||
|
||||
* Tue Dec 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.1-1
|
||||
- 1.4.1; fixup %%setup to reflect change in toplevel directory in upstream
|
||||
source tarball
|
||||
- apply SELinux fix to the bundled test_commands.py (patch 2)
|
||||
|
||||
* Wed Dec 15 2010 David Malcolm <dmalcolm@redhat.com> - 1.4-4
|
||||
- rename the jit build and subpackge to just "pypy", and remove the nojit and
|
||||
sandbox builds, as upstream now seems to be focussing on the JIT build (with
|
||||
only stackless called out in the getting-started-python docs); disable
|
||||
stackless for now
|
||||
- add a verbose_logs specfile boolean; leave it enabled for now (whilst fixing
|
||||
build issues)
|
||||
- add more comments, and update others to reflect 1.2 -> 1.4 changes
|
||||
- re-enable debuginfo within CFLAGS ("-g")
|
||||
- add the LICENSE and README to all subpackages
|
||||
- ensure the built binaries don't have the "I need an executable stack" flag
|
||||
- remove DOS batch files during %%prep (idlelib.bat)
|
||||
- remove shebang lines from .py files that aren't executable, and remove
|
||||
executability from .py files that don't have a shebang line (taken from
|
||||
our python3.spec)
|
||||
- bytecompile the .py files into .pyc files in pypy's bytecode format
|
||||
|
||||
* Sun Nov 28 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-3
|
||||
- BuildRequire valgrind-devel
|
||||
- Install pypy library from the new directory
|
||||
- Disable building with our CFLAGS for now because they are causing a build failure.
|
||||
- Include site-packages directory
|
||||
|
||||
* Sat Nov 27 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-2
|
||||
- Add patch to configure the build to use our CFLAGS and link libffi
|
||||
dynamically
|
||||
|
||||
* Sat Nov 27 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-1
|
||||
- Update to 1.4
|
||||
- Drop patch for py2.6 that's in this build
|
||||
- Switch to building pypy with itself once pypy is built once as recommended by
|
||||
upstream
|
||||
- Remove bundled, prebuilt java libraries
|
||||
- Fix license tag
|
||||
- Fix source url
|
||||
- Version pypy-libs Req
|
||||
|
||||
* Tue May 4 2010 David Malcolm <dmalcolm@redhat.com> - 1.2-2
|
||||
- cherrypick r72073 from upstream SVN in order to fix the build against
|
||||
python 2.6.5 (patch 2)
|
||||
|
||||
* Wed Apr 28 2010 David Malcolm <dmalcolm@redhat.com> - 1.2-1
|
||||
- initial packaging
|
527
pypy3.9.spec
527
pypy3.9.spec
@ -1,5 +1,5 @@
|
||||
%global basever 7.3
|
||||
%global micro 9
|
||||
%global micro 15
|
||||
#global pre ...
|
||||
%global pyversion 3.9
|
||||
Name: pypy%{pyversion}
|
||||
@ -10,7 +10,7 @@ Version: %{basever}.%{micro}%{?pre:~%{pre}}
|
||||
# by Python version as well.
|
||||
# This potentially allows tags like Obsoletes: pypy3 < %%{version}-%%{release}.
|
||||
# https://bugzilla.redhat.com/2053880
|
||||
%global baserelease 4
|
||||
%global baserelease %{autorelease -n}
|
||||
Release: %{baserelease}.%{pyversion}%{?dist}
|
||||
Summary: Python %{pyversion} implementation with a Just-In-Time compiler
|
||||
|
||||
@ -27,12 +27,10 @@ Summary: Python %{pyversion} implementation with a Just-In-Time compiler
|
||||
# before building). If we restore those we'll have to work out the new
|
||||
# licensing terms
|
||||
License: MIT and Python and UCD and BSD and (ASL 2.0 or BSD)
|
||||
URL: http://pypy.org/
|
||||
URL: https://www.pypy.org/
|
||||
|
||||
# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
||||
%if 0%{?fedora} >= 37 || 0%{?rhel} >= 10
|
||||
ExcludeArch: %{ix86}
|
||||
%endif
|
||||
|
||||
# High-level configuration of the build:
|
||||
|
||||
@ -70,7 +68,7 @@ ExcludeArch: %{ix86}
|
||||
# We refer to this subdir of the source tree in a few places during the build:
|
||||
%global goal_dir pypy/goal
|
||||
|
||||
%if 0%{?fedora} >= 36
|
||||
%if 0%{?fedora} < 39
|
||||
# REMINDER: When updating the main pypy3 version for a certain Fedora release
|
||||
# make sure to update the python-classroom group in https://pagure.io/fedora-comps/
|
||||
# 1. locate comps-fXX.xml.in for each affected Fedora release
|
||||
@ -115,26 +113,11 @@ Patch7: 007-remove-startup-message.patch
|
||||
# https://fedoraproject.org/wiki/Changes/Replace_glibc_libcrypt_with_libxcrypt
|
||||
Patch9: 009-add-libxcrypt-support.patch
|
||||
|
||||
# Instead of bundled wheels, use our RPM packaged wheels from
|
||||
# /usr/share/python-wheels
|
||||
# We conditionally apply this, but we use autosetup, so we use Source here
|
||||
Source189: 189-use-rpm-wheels.patch
|
||||
|
||||
# 00382 #
|
||||
# CVE-2015-20107
|
||||
#
|
||||
# Make mailcap refuse to match unsafe filenames/types/params (GH-91993)
|
||||
#
|
||||
# Upstream: https://github.com/python/cpython/issues/68966
|
||||
#
|
||||
# Tracker bug: https://bugzilla.redhat.com/show_bug.cgi?id=2075390
|
||||
Patch382: 382-cve-2015-20107.patch
|
||||
|
||||
# 00386 #
|
||||
# CVE-2021-28861: open redirection in http.server
|
||||
# Upstream: https://foss.heptapod.net/pypy/pypy/-/commit/e42be9b593f1d5e83a947f73058b919395398424.patch
|
||||
# Tracker bug: https://bugzilla.redhat.com/show_bug.cgi?id=2120642
|
||||
Patch386: 386-cve-2021-28861.patch
|
||||
# Fix function signatures uncovered by GCC 14 enforcement of
|
||||
# -Wincompatible-pointer-types
|
||||
# Resolved upstream:
|
||||
# https://github.com/pypy/pypy/commit/8831ebf1cd4af225c2212dbade45624f9305a8f0
|
||||
Patch10: 010-fix-pointers.patch
|
||||
|
||||
# Build-time requirements:
|
||||
|
||||
@ -215,6 +198,10 @@ Provides: pypy3%{?_isa} = %{version}-%{release}
|
||||
Obsoletes: pypy3 < 7.3.4-4
|
||||
# This is when pypy3 was provided by pypy3.8:
|
||||
Conflicts: pypy3 < %{version}-%{release}
|
||||
Obsoletes: pypy3.7 < 7.3.9-20
|
||||
%if 0%{?fedora} >= 38
|
||||
Obsoletes: pypy3.8 < 7.3.11-20
|
||||
%endif
|
||||
%endif
|
||||
|
||||
# This prevents ALL subpackages built from this spec to require
|
||||
@ -251,14 +238,18 @@ Requires: emacs-filesystem >= %{_emacs_version}
|
||||
Provides: pypy3-libs = %{version}-%{release}
|
||||
Provides: pypy3-libs%{?_isa} = %{version}-%{release}
|
||||
Obsoletes: pypy3-libs < 7.3.4-4
|
||||
Obsoletes: pypy3.7-libs < 7.3.9-20
|
||||
%if 0%{?fedora} >= 38
|
||||
Obsoletes: pypy3.8-libs < 7.3.11-20
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if %{with rpmwheels}
|
||||
Requires: python-setuptools-wheel
|
||||
Requires: python-pip-wheel
|
||||
%else
|
||||
Provides: bundled(python3dist(pip)) = 22.0.4
|
||||
Provides: bundled(python3dist(setuptools)) = 58.1.0
|
||||
Provides: bundled(python3dist(pip)) = 23.0.1
|
||||
Provides: bundled(python3dist(setuptools)) = 65.5.0
|
||||
%endif
|
||||
|
||||
# Provides for the bundled libmpdec
|
||||
@ -267,8 +258,8 @@ Provides: bundled(mpdecimal) = %{libmpdec_version}
|
||||
Provides: bundled(libmpdec) = %{libmpdec_version}
|
||||
}
|
||||
|
||||
# Find the version in lib_pypy/cffi.dist-info/METADATA
|
||||
Provides: bundled(python3dist(cffi)) = 1.15.0
|
||||
# Find the version in lib_pypy/cffi-XXX.dist-info/METADATA
|
||||
Provides: bundled(python3dist(cffi)) = 1.16.0
|
||||
|
||||
# Find the version in lib_pypy/cffi/_pycparser/__init__.py
|
||||
Provides: bundled(python3dist(pycparser)) = 2.21
|
||||
@ -279,8 +270,8 @@ Provides: bundled(python3dist(ply)) = 3.9
|
||||
# Find the version in lib_pypy/_cffi_ssl/cryptography/__about__.py
|
||||
Provides: bundled(python3dist(cryptography)) = 2.7
|
||||
|
||||
# Find the version in lib_pypy/hpy.dist-info/METADATA
|
||||
Provides: bundled(python3dist(hpy)) = 0.0.3
|
||||
# Find the version in lib_pypy/hpy-XXX.dist-info/METADATA
|
||||
Provides: bundled(python3dist(hpy)) = 0.9.0
|
||||
|
||||
%description libs
|
||||
Libraries required by the various PyPy implementations of Python %{pyversion}.
|
||||
@ -294,6 +285,10 @@ Requires: pypy%{pyversion}-libs%{?_isa} = %{version}-%{release}
|
||||
%if %{with main_pypy3}
|
||||
Provides: pypy3-test = %{version}-%{release}
|
||||
Provides: pypy3-test%{?_isa} = %{version}-%{release}
|
||||
Obsoletes: pypy3.7-test < 7.3.9-20
|
||||
%if 0%{?fedora} >= 38
|
||||
Obsoletes: pypy3.8-test < 7.3.11-20
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%description test
|
||||
@ -310,6 +305,10 @@ Requires: pypy%{pyversion}-libs%{?_isa} = %{version}-%{release}
|
||||
Provides: pypy3-devel = %{version}-%{release}
|
||||
Provides: pypy3-devel%{?_isa} = %{version}-%{release}
|
||||
Obsoletes: pypy3-devel < 7.3.4-4
|
||||
Obsoletes: pypy3.7-devel < 7.3.9-20
|
||||
%if 0%{?fedora} >= 38
|
||||
Obsoletes: pypy3.8-devel < 7.3.11-20
|
||||
%endif
|
||||
%endif
|
||||
|
||||
Supplements: tox
|
||||
@ -325,8 +324,8 @@ Header files for building C extension modules against PyPy%{pyversion}.
|
||||
%{?!apply_patch:%define apply_patch(qp:m:) {%__apply_patch %**}}
|
||||
|
||||
%if %{with rpmwheels}
|
||||
%apply_patch -m %(basename %{SOURCE189}) %{SOURCE189}
|
||||
rm lib-python/3/ensurepip/_bundled/*.whl
|
||||
echo "build_time_vars['WHEEL_PKG_DIR'] = '%{python_wheel_dir}'" >> lib_pypy/_sysconfigdata.py
|
||||
%endif
|
||||
|
||||
|
||||
@ -776,9 +775,9 @@ CheckPyPy pypy%{pyversion}-c
|
||||
%doc README.rst
|
||||
%license %{pypylibdir}/LICENSE
|
||||
%license %{pypylibdir}/_cffi_ssl/LICENSE
|
||||
%license %{pypylibdir}/cffi.dist-info/LICENSE
|
||||
%license %{pypylibdir}/cffi-*.dist-info/LICENSE
|
||||
%license %{pypylibdir}/cffi/_pycparser/ply/LICENSE
|
||||
%license %{pypylibdir}/hpy.dist-info/LICENSE
|
||||
%license %{pypylibdir}/hpy-*.dist-info/LICENSE
|
||||
%{pypylibdir}/
|
||||
%if %{with rpmwheels}
|
||||
%exclude %{pypylibdir}/ensurepip/_bundled
|
||||
@ -797,7 +796,7 @@ CheckPyPy pypy%{pyversion}-c
|
||||
%exclude %{pypylibdir}/_ctypes_test.*
|
||||
%exclude %{pypylibdir}/_pypy_testcapi.*
|
||||
%exclude %{pypylibdir}/_test*
|
||||
%exclude %{pypylibdir}/__pycache__/_ctypes_test.*
|
||||
%exclude %{pypylibdir}/__pycache__/_ctypes_test*
|
||||
%exclude %{pypylibdir}/__pycache__/_pypy_testcapi.*
|
||||
%exclude %{pypylibdir}/__pycache__/_test*
|
||||
%exclude %{pypylibdir}/test/
|
||||
@ -817,7 +816,7 @@ CheckPyPy pypy%{pyversion}-c
|
||||
%{pypylibdir}/_ctypes_test.*
|
||||
%{pypylibdir}/_pypy_testcapi.*
|
||||
%{pypylibdir}/_test*
|
||||
%{pypylibdir}/__pycache__/_ctypes_test.*
|
||||
%{pypylibdir}/__pycache__/_ctypes_test*
|
||||
%{pypylibdir}/__pycache__/_pypy_testcapi.*
|
||||
%{pypylibdir}/__pycache__/_test*
|
||||
%{pypylibdir}/test/
|
||||
@ -842,456 +841,4 @@ CheckPyPy pypy%{pyversion}-c
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Oct 10 2022 Lumír Balhar <lbalhar@redhat.com> - 7.3.9-4.3.9
|
||||
- Backport fix for CVE-2021-28861
|
||||
Resolves: rhbz#2120789
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.9-3.3.9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Tue Jun 28 2022 Charalampos Stratakis <cstratak@redhat.com> - 7.3.9-2.3.9
|
||||
- Security fix for CVE-2015-20107
|
||||
- Fixes: rhbz#2075390
|
||||
|
||||
* Wed Mar 30 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.9-1.3.9
|
||||
- Update to 7.3.9
|
||||
- Fixes: rhbz#2069873
|
||||
|
||||
* Tue Mar 01 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.8-1.3.9
|
||||
- Include the Python version in Release to workaround debuginfo conflicts
|
||||
and make same builds of different PyPy sort in a predictable way (e.g. wrt Obsoletes)
|
||||
- Namespace the debugsources to fix installation conflict with other PyPys
|
||||
- Fixes: rhbz#2053880
|
||||
- This is now the main PyPy 3 on Fedora 36+
|
||||
- Fixes: rhbz#2059670
|
||||
|
||||
* Tue Feb 22 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.8-1
|
||||
- Update to 7.3.8 final
|
||||
|
||||
* Fri Feb 11 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.8~rc2-1
|
||||
- Update to 7.3.8rc2
|
||||
|
||||
* Wed Jan 26 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.8~rc1-1
|
||||
- Update to 7.3.8rc1
|
||||
- Move to a CPython-like installation layout
|
||||
- Stop requiring pypy3.9 from pypy3.9-libs
|
||||
- Split tests into pypy3.9-test
|
||||
|
||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Sat Jan 08 2022 Miro Hrončok <mhroncok@redhat.com> - 7.3.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34
|
||||
|
||||
* Thu Nov 11 2021 Miro Hrončok <mhroncok@redhat.com> - 7.3.7-1
|
||||
- Initial pypy3.8 package
|
||||
- Supplement tox
|
||||
|
||||
* Tue Oct 26 2021 Tomáš Hrnčiar <thrnciar@redhat.com> - 7.3.6-1
|
||||
- Update to 7.3.6
|
||||
- Remove windows executable binaries
|
||||
- Fixes: rhbz#2003682
|
||||
|
||||
* Mon Sep 20 2021 Miro Hrončok <mhroncok@redhat.com> - 7.3.5-2
|
||||
- Explicitly buildrequire OpenSSL 1.1, as Python 3.7 is not compatible with OpenSSL 3.0
|
||||
|
||||
* Mon Aug 16 2021 Miro Hrončok <mhroncok@redhat.com> - 7.3.5-1
|
||||
- Update to 7.3.5
|
||||
- Fixes: rhbz#1992600
|
||||
|
||||
* Mon Aug 09 2021 Tomas Hrnciar <thrnciar@redhat.com> - 7.3.4-4
|
||||
- Rename pypy3 to pypy3.7
|
||||
- pypy-stackless was removed
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Tomas Hrnciar <thrnciar@redhat.com> - 7.3.4-2
|
||||
- Replace removed /usr/lib/rpm/brp-python-bytecompile with %%py_byte_compile macros
|
||||
- Fixes: rhbz#1976656
|
||||
|
||||
* Tue May 25 2021 Miro Hrončok <mhroncok@redhat.com> - 7.3.4-1
|
||||
- Update to 7.3.4
|
||||
- pypy3 is now Python 3.7
|
||||
- Fixes rhbz#1961933
|
||||
|
||||
* Tue May 25 2021 Miro Hrončok <mhroncok@redhat.com> - 7.3.1-6
|
||||
- Provide missing bundled library information
|
||||
|
||||
* Wed May 19 2021 Charalampos Stratakis <cstratak@redhat.com> - 7.3.1-5
|
||||
- Add virtual provides for the bundled libmpdec (rhbz#1943359)
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.1-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Apr 15 2020 Tomas Hrnciar <thrnciar@redhat.com> - 7.3.1-1
|
||||
- Update to 7.3.1
|
||||
|
||||
* Wed Feb 12 2020 Miro Hrončok <mhroncok@redhat.com> - 7.3.0-3
|
||||
- Update the ensurepip module to work with setuptools >= 45
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.3.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Dec 28 2019 Miro Hrončok <mhroncok@redhat.com> - 7.3.0-1
|
||||
- Update to 7.3.0
|
||||
|
||||
* Wed Oct 23 2019 Miro Hrončok <mhroncok@redhat.com> - 7.2.0-2
|
||||
- Enable JIT on aarch64
|
||||
|
||||
* Mon Oct 14 2019 Miro Hrončok <mhroncok@redhat.com> - 7.2.0-1
|
||||
- Update to 7.2.0 (#1757707)
|
||||
- Enable aarch64 (without JIT)
|
||||
- Enable power64 (with JIT)
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.1.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri May 24 2019 Miro Hrončok <mhroncok@redhat.com> - 7.1.1-1
|
||||
- Update to 7.1.1 (#1689198)
|
||||
- pypy3 is now Python 3.6
|
||||
|
||||
* Thu May 16 2019 Miro Hrončok <mhroncok@redhat.com> - 7.0.0-2
|
||||
- Show the version as 7.0.0
|
||||
|
||||
* Thu Feb 28 2019 Miro Hrončok <mhroncok@redhat.com> - 7.0.0-1
|
||||
- Update to 7.0.0 (#1673127)
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Jan 14 2019 Björn Esser <besser82@fedoraproject.org> - 6.0.0-4
|
||||
- Rebuilt for libcrypt.so.2 (#1666033)
|
||||
|
||||
* Tue Aug 21 2018 Miro Hrončok <mhroncok@redhat.com> - 6.0.0-3
|
||||
- Use RPM packaged wheels
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Apr 25 2018 Miro Hrončok <mhroncok@redhat.com> - 6.0.0-1
|
||||
- Fix failing taskotron check
|
||||
- New release 6.0.0 (#1571489)
|
||||
- Fix multiprocessing regression on newer glibcs (#1569933)
|
||||
|
||||
* Wed Apr 11 2018 Miro Hrončok <mhroncok@redhat.com> - 5.10.1-7
|
||||
- Provide pypy3(abi) = 5.10
|
||||
|
||||
* Wed Apr 11 2018 Miro Hrončok <mhroncok@redhat.com> - 5.10.1-6
|
||||
- RPM macros improvements
|
||||
|
||||
* Tue Apr 10 2018 Michal Cyprian <mcyprian@redhat.com> - 5.10.1-5
|
||||
- Remove the rightmost version number from the path
|
||||
- rhbz#1516885: https://bugzilla.redhat.com/show_bug.cgi?id=1516885
|
||||
|
||||
* Thu Mar 29 2018 Michal Cyprian <mcyprian@redhat.com> - 5.10.1-4
|
||||
- Add patch for libxcrypt
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.10.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 5.10.1-2
|
||||
- Rebuilt for switch to libxcrypt
|
||||
|
||||
* Fri Jan 12 2018 Miro Hrončok <mhroncok@redhat.com> - 5.10.1-1
|
||||
- Update to 5.10.1 (#1533689)
|
||||
- Removed two upstreamed patches
|
||||
|
||||
* Fri Dec 29 2017 Miro Hrončok <mhroncok@redhat.com> - 5.10.0-3
|
||||
- Remove never used InstallPyPy function
|
||||
- Actually call execstack as originally intended
|
||||
- Use execstack on all arches (it's available now)
|
||||
- Don't ship the debug binaries
|
||||
- On power, use cpython2 to build pypy3
|
||||
|
||||
* Thu Dec 28 2017 Miro Hrončok <mhroncok@redhat.com> - 5.10.0-2
|
||||
- Fixed upstream issues #2717 and #2718 (re-enable test_socket)
|
||||
- Use pypy2 when building (it's faster and works this time)
|
||||
|
||||
* Mon Dec 25 2017 Miro Hrončok <mhroncok@redhat.com> - 5.10.0-1
|
||||
- Update to 5.10 (#1528841)
|
||||
- Use pypy2 and python2-pycparser (note the twos)
|
||||
- Enable JIT on power and s390x
|
||||
- Temporarily skip test_socket on ix86
|
||||
|
||||
* Fri Oct 20 2017 Miro Hrončok <mhroncok@redhat.com> - 5.9.0-1
|
||||
- Update to 5.9 (#1504427)
|
||||
- Remove merged patches
|
||||
- Reindex the patches to match the filenames
|
||||
- Rebase the faulthandler Patch11
|
||||
- BR python-pycparser
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.5.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sun Nov 13 2016 Dan Horák <dan[at]danny.cz> - 5.5.0-3
|
||||
- set z10 as the base CPU for s390(x) build
|
||||
|
||||
* Sat Nov 12 2016 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 5.5.0-2
|
||||
- Also build on arm and s390*
|
||||
|
||||
* Sat Oct 15 2016 Miro Hrončok <mhroncok@redhat.com> - 5.5.0-1
|
||||
- PyPy 3.3 5.5.0
|
||||
- On Fedora 26+, BR compat-openssl10-devel
|
||||
|
||||
* Sat Jul 02 2016 Miro Hrončok <mhroncok@redhat.com> - 5.2.0-0.1.alpha1
|
||||
- First alpha build of PyPy 3.3
|
||||
|
||||
* Fri Jul 01 2016 Miro Hrončok <mhroncok@redhat.com> - 2.4.0-3
|
||||
- Fix for: CVE-2016-0772 python: smtplib StartTLS stripping attack
|
||||
- Raise an error when STARTTLS fails
|
||||
- rhbz#1303647: https://bugzilla.redhat.com/show_bug.cgi?id=1303647
|
||||
- rhbz#1351680: https://bugzilla.redhat.com/show_bug.cgi?id=1351680
|
||||
- Fixed upstream: https://hg.python.org/cpython/rev/d590114c2394
|
||||
- Fix for: CVE-2016-5699 python: http protocol steam injection attack
|
||||
- rhbz#1303699: https://bugzilla.redhat.com/show_bug.cgi?id=1303699
|
||||
- rhbz#1351687: https://bugzilla.redhat.com/show_bug.cgi?id=1351687
|
||||
- Fixed upstream: https://hg.python.org/cpython/rev/bf3e1c9b80e9
|
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Sep 10 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.4.0-1
|
||||
- Update to 2.4.0
|
||||
|
||||
* Tue Sep 02 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.3.1-4
|
||||
- Move devel subpackage requires so that it gets picked up by rpm
|
||||
|
||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Mon Jul 7 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2.3.1-2
|
||||
- ARMv7 is supported for JIT
|
||||
- no prelink on aarch64/ppc64le
|
||||
|
||||
* Sun Jun 08 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.3.1-1
|
||||
- Update to 2.3.1
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue May 27 2014 Dennis Gilmore <dennis@ausil.us> - 2.3-4
|
||||
- valgrind is available everywhere except 31 bit s390
|
||||
|
||||
* Wed May 21 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 2.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
|
||||
|
||||
* Thu May 15 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.3-2
|
||||
- Rebuilt (f21-python)
|
||||
|
||||
* Tue May 13 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.3-1
|
||||
- Updated to 2.3
|
||||
|
||||
* Mon Mar 10 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.2.1-3
|
||||
- Put RPM macros in proper location
|
||||
|
||||
* Thu Jan 16 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.2.1-2
|
||||
- Fixed errors due to missing __pycache__
|
||||
|
||||
* Thu Dec 05 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.2.1-1
|
||||
- Updated to 2.2.1
|
||||
- Several bundled modules (tkinter, sqlite3, curses, syslog) were
|
||||
not bytecompiled properly during build, that is now fixed
|
||||
- prepared new tests, not enabled yet
|
||||
|
||||
* Thu Nov 14 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.2.0-1
|
||||
- Updated to 2.2.0
|
||||
|
||||
* Thu Aug 15 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.1-1
|
||||
- Updated to 2.1.0
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Mon Jun 24 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.0.2-4
|
||||
- Patch1 fix
|
||||
|
||||
* Mon Jun 24 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.0.2-3
|
||||
- Yet another Sources fix
|
||||
|
||||
* Mon Jun 24 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.0.2-2
|
||||
- Fixed Source URL
|
||||
|
||||
* Mon Jun 24 2013 Matej Stuchlik <mstuchli@redhat.com> - 2.0.2-1
|
||||
- 2.0.2, patch 8 does not seem necessary anymore
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-0.2.b1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Tue Dec 11 2012 David Malcolm <dmalcolm@redhat.com> - 2.0-0.1.b1
|
||||
- 2.0b1 (drop upstreamed patch 9)
|
||||
|
||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Tue Jul 10 2012 David Malcolm <dmalcolm@redhat.com> - 1.9-3
|
||||
- log all output from "make" (patch 6)
|
||||
- disable the MOTD at startup (patch 7)
|
||||
- hide symbols from the dynamic linker (patch 8)
|
||||
- add PyInt_AsUnsignedLongLongMask (patch 9)
|
||||
- capture the Makefile, the typeids.txt, and the dynamic-symbols file within
|
||||
the debuginfo package
|
||||
|
||||
* Mon Jun 18 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.9-2
|
||||
- Compile with PIC, fixes FTBFS on ARM
|
||||
|
||||
* Fri Jun 8 2012 David Malcolm <dmalcolm@redhat.com> - 1.9-1
|
||||
- 1.9
|
||||
|
||||
* Fri Feb 10 2012 David Malcolm <dmalcolm@redhat.com> - 1.8-2
|
||||
- disable C readability patch for now (patch 4)
|
||||
|
||||
* Thu Feb 9 2012 David Malcolm <dmalcolm@redhat.com> - 1.8-1
|
||||
- 1.8; regenerate config patch (patch 0); drop selinux patch (patch 2);
|
||||
regenerate patch 5
|
||||
|
||||
* Tue Jan 31 2012 David Malcolm <dmalcolm@redhat.com> - 1.7-4
|
||||
- fix an incompatibility with virtualenv (rhbz#742641)
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Fri Dec 16 2011 David Malcolm <dmalcolm@redhat.com> - 1.7-2
|
||||
- use --gcrootfinder=shadowstack, and use standard Fedora compilation flags,
|
||||
with -Wno-unused (rhbz#666966 and rhbz#707707)
|
||||
|
||||
* Mon Nov 21 2011 David Malcolm <dmalcolm@redhat.com> - 1.7-1
|
||||
- 1.7: refresh patch 0 (configuration) and patch 4 (readability of generated
|
||||
code)
|
||||
|
||||
* Tue Oct 4 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-7
|
||||
- skip test_multiprocessing
|
||||
|
||||
* Tue Sep 13 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-6
|
||||
- don't ship the emacs JIT-viewer on el5 and el6 (missing emacs-filesystem;
|
||||
missing _emacs_bytecompile macro on el5)
|
||||
|
||||
* Mon Sep 12 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-5
|
||||
- build using python26 on el5 (2.4 is too early)
|
||||
* Thu Aug 25 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-4
|
||||
- fix SkipTest function to avoid corrupting the name of "test_gdbm"
|
||||
|
||||
* Thu Aug 25 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-3
|
||||
- add rpm macros file to the devel subpackage (source 2)
|
||||
- skip some tests that can't pass yet
|
||||
|
||||
* Sat Aug 20 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-2
|
||||
- work around test_subprocess failure seen in koji (patch 5)
|
||||
|
||||
* Thu Aug 18 2011 David Malcolm <dmalcolm@redhat.com> - 1.6-1
|
||||
- 1.6
|
||||
- rewrite the %%check section, introducing per-test timeouts
|
||||
|
||||
* Tue Aug 2 2011 David Malcolm <dmalcolm@redhat.com> - 1.5-2
|
||||
- add pypytrace-mode.el to the pypy-libs subpackage, for viewing JIT trace
|
||||
logs in emacs
|
||||
|
||||
* Mon May 2 2011 David Malcolm <dmalcolm@redhat.com> - 1.5-1
|
||||
- 1.5
|
||||
|
||||
* Wed Apr 20 2011 David Malcolm <dmalcolm@redhat.com> - 1.4.1-10
|
||||
- build a /usr/bin/pypy (but without the JIT compiler) on architectures that
|
||||
don't support the JIT, so that they do at least have something that runs
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Fri Jan 14 2011 David Malcolm <dmalcolm@redhat.com> - 1.4.1-8
|
||||
- disable self-hosting for now, due to fatal error seen JIT-compiling the
|
||||
translator
|
||||
|
||||
* Fri Jan 14 2011 David Malcolm <dmalcolm@redhat.com> - 1.4.1-7
|
||||
- skip test_ioctl for now
|
||||
|
||||
* Thu Jan 13 2011 David Malcolm <dmalcolm@redhat.com> - 1.4.1-6
|
||||
- add a "pypy-devel" subpackage, and install the header files there
|
||||
- in %%check, re-run failed tests in verbose mode
|
||||
|
||||
* Fri Jan 7 2011 Dan Horák <dan[at]danny.cz> - 1.4.1-5
|
||||
- valgrind available only on selected architectures
|
||||
|
||||
* Wed Jan 5 2011 David Malcolm <dmalcolm@redhat.com> - 1.4.1-4
|
||||
- rebuild pypy using itself, for speed, with a boolean to break this cycle in
|
||||
the build-requirement graph (falling back to using "python-devel" aka CPython)
|
||||
- add work-in-progress patch to try to make generated c more readable
|
||||
(rhbz#666963)
|
||||
- capture the RPython source code files from the build within the debuginfo
|
||||
package (rhbz#666975)
|
||||
|
||||
* Wed Dec 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.1-3
|
||||
- try to respect the FHS by installing libraries below libdir, rather than
|
||||
datadir; patch app_main.py to look in this installation location first when
|
||||
scanning for the pypy library directories.
|
||||
- clarifications and corrections to the comments in the specfile
|
||||
|
||||
* Wed Dec 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.1-2
|
||||
- remove .svn directories
|
||||
- disable verbose logging
|
||||
- add a %%check section
|
||||
- introduce %%goal_dir variable, to avoid repetition
|
||||
- remove shebang line from demo/bpnn.py, as we're treating this as a
|
||||
documentation file
|
||||
- regenerate patch 2 to apply without generating a .orig file
|
||||
|
||||
* Tue Dec 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.4.1-1
|
||||
- 1.4.1; fixup %%setup to reflect change in toplevel directory in upstream
|
||||
source tarball
|
||||
- apply SELinux fix to the bundled test_commands.py (patch 2)
|
||||
|
||||
* Wed Dec 15 2010 David Malcolm <dmalcolm@redhat.com> - 1.4-4
|
||||
- rename the jit build and subpackge to just "pypy", and remove the nojit and
|
||||
sandbox builds, as upstream now seems to be focussing on the JIT build (with
|
||||
only stackless called out in the getting-started-python docs); disable
|
||||
stackless for now
|
||||
- add a verbose_logs specfile boolean; leave it enabled for now (whilst fixing
|
||||
build issues)
|
||||
- add more comments, and update others to reflect 1.2 -> 1.4 changes
|
||||
- re-enable debuginfo within CFLAGS ("-g")
|
||||
- add the LICENSE and README to all subpackages
|
||||
- ensure the built binaries don't have the "I need an executable stack" flag
|
||||
- remove DOS batch files during %%prep (idlelib.bat)
|
||||
- remove shebang lines from .py files that aren't executable, and remove
|
||||
executability from .py files that don't have a shebang line (taken from
|
||||
our python3.spec)
|
||||
- bytecompile the .py files into .pyc files in pypy's bytecode format
|
||||
|
||||
* Sun Nov 28 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-3
|
||||
- BuildRequire valgrind-devel
|
||||
- Install pypy library from the new directory
|
||||
- Disable building with our CFLAGS for now because they are causing a build failure.
|
||||
- Include site-packages directory
|
||||
|
||||
* Sat Nov 27 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-2
|
||||
- Add patch to configure the build to use our CFLAGS and link libffi
|
||||
dynamically
|
||||
|
||||
* Sat Nov 27 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-1
|
||||
- Update to 1.4
|
||||
- Drop patch for py2.6 that's in this build
|
||||
- Switch to building pypy with itself once pypy is built once as recommended by
|
||||
upstream
|
||||
- Remove bundled, prebuilt java libraries
|
||||
- Fix license tag
|
||||
- Fix source url
|
||||
- Version pypy-libs Req
|
||||
|
||||
* Tue May 4 2010 David Malcolm <dmalcolm@redhat.com> - 1.2-2
|
||||
- cherrypick r72073 from upstream SVN in order to fix the build against
|
||||
python 2.6.5 (patch 2)
|
||||
|
||||
* Wed Apr 28 2010 David Malcolm <dmalcolm@redhat.com> - 1.2-1
|
||||
- initial packaging
|
||||
|
||||
%autochangelog
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (pypy3.9-v7.3.9-src.tar.bz2) = 83f8a6a2da351c190d2d224242cbc35e35529c7a8e8d842eaf5c945cbce2e172b02a340f32af3d49df8d5288370d794d5bc95fc12dd4a13d817c925abf06198a
|
||||
SHA512 (pypy3.9-v7.3.15-src.tar.bz2) = 64faca74c507ef3e8dd2df34ad81874c24bc336e79ecf53bbbb43c21adebdea60efafe6ad38bdbf15bc2a677980d7db2c2c0affa04beb7e7e1b739d85e17f333
|
||||
|
Loading…
Reference in New Issue
Block a user