From f0c907df3e00ffd67b828e8e534ff798fc23ef1e Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Thu, 14 May 2015 11:40:40 -0400 Subject: [PATCH 1/7] Run tests on RHEL --- python-cryptography.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/python-cryptography.spec b/python-cryptography.spec index 7653d11..5ce86c2 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -99,7 +99,6 @@ popd %check -%if 0%{?fedora} > 20 %{__python} setup.py test %if 0%{?with_python3} @@ -107,7 +106,6 @@ pushd %{py3dir} %{__python3} setup.py test popd %endif -%endif %files From 4aafbf0864a3d9bf2a1c51d80733702287c1b4e7 Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Thu, 14 May 2015 10:46:26 -0400 Subject: [PATCH 2/7] New upstream release --- .gitignore | 1 + python-cryptography.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e34fbe3..df36abc 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /cryptography-0.7.2.tar.gz /cryptography-0.8.tar.gz /cryptography-0.8.2.tar.gz +/cryptography-0.9.tar.gz diff --git a/python-cryptography.spec b/python-cryptography.spec index 5ce86c2..576718b 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -6,7 +6,7 @@ %endif Name: python-cryptography -Version: 0.8.2 +Version: 0.9 Release: 1%{?dist} Summary: PyCA's cryptography library @@ -121,6 +121,9 @@ popd %changelog +* Thu May 14 2015 Nathaniel McCallum - 0.9-1 +- New upstream release + * Fri Apr 17 2015 Nathaniel McCallum - 0.8.2-1 - New upstream release - Add python3-pyasn1 Requires (#1211073) diff --git a/sources b/sources index 5b85fec..8873985 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7d33499e851300c194cbb0396de72462 cryptography-0.8.2.tar.gz +7d5db511852f70ab6548c72b42b0c2f3 cryptography-0.9.tar.gz From 2119ae47146b7eb93e8d4b1db6454f3a4d7252b8 Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Thu, 14 May 2015 11:40:40 -0400 Subject: [PATCH 3/7] Run tests on RHEL --- python-cryptography.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/python-cryptography.spec b/python-cryptography.spec index 576718b..69b133a 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -123,6 +123,7 @@ popd %changelog * Thu May 14 2015 Nathaniel McCallum - 0.9-1 - New upstream release +- Run tests on RHEL * Fri Apr 17 2015 Nathaniel McCallum - 0.8.2-1 - New upstream release From 81b259f345e8d34ee93cf989e9f81d4363ea5b9f Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Fri, 15 May 2015 11:02:01 -0400 Subject: [PATCH 4/7] Add deps: python-idna, python-ipaddress --- python-cryptography.spec | 36 +++++++++++------------------------- 1 file changed, 11 insertions(+), 25 deletions(-) diff --git a/python-cryptography.spec b/python-cryptography.spec index 69b133a..8f84978 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -5,6 +5,9 @@ %{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")} %endif +%global reqs() %1-idna %1-pyasn1 %1-six >= 1.4.1 %1-cffi >= 0.8 +%global breqs() %1-setuptools %1-pretend %1-iso8601 %1-cryptography-vectors = %{version} + Name: python-cryptography Version: 0.9 Release: 1%{?dist} @@ -16,35 +19,19 @@ URL: https://cryptography.io/en/latest/ Source0: https://pypi.python.org/packages/source/c/cryptography/cryptography-%{version}.tar.gz BuildRequires: openssl-devel -BuildRequires: python-enum34 +Requires: openssl BuildRequires: python2-devel -BuildRequires: python-setuptools -BuildRequires: python-cffi >= 0.8 -BuildRequires: python-six -BuildRequires: python-cryptography-vectors = %{version} -BuildRequires: python-pyasn1 -BuildRequires: python-iso8601 -BuildRequires: python-pretend -BuildRequires: pytest +BuildRequires: pytest %breqs python +BuildRequires: python-enum34 python-ipaddress %reqs python +Requires: python-enum34 python-ipaddress %reqs python %if 0%{?with_python3} BuildRequires: python3-devel -BuildRequires: python3-setuptools -BuildRequires: python3-cffi >= 0.8 -BuildRequires: python3-six -BuildRequires: python3-cryptography-vectors = %{version} -BuildRequires: python3-pyasn1 -BuildRequires: python3-iso8601 -BuildRequires: python3-pretend -BuildRequires: python3-pytest +BuildRequires: python3-pytest %breqs python3 +BuildRequires: %reqs python3 %endif -Requires: openssl -Requires: python-enum34 -Requires: python-cffi >= 0.8 -Requires: python-six >= 1.6.1 -Requires: python-pyasn1 %description cryptography is a package designed to expose cryptographic primitives and @@ -56,9 +43,7 @@ Group: Development/Libraries Summary: PyCA's cryptography library Requires: openssl -Requires: python3-cffi >= 0.8 -Requires: python3-six >= 1.6.1 -Requires: python3-pyasn1 +Requires: %reqs python3 %description -n python3-cryptography cryptography is a package designed to expose cryptographic primitives and @@ -124,6 +109,7 @@ popd * Thu May 14 2015 Nathaniel McCallum - 0.9-1 - New upstream release - Run tests on RHEL +- New deps: python-idna, python-ipaddress * Fri Apr 17 2015 Nathaniel McCallum - 0.8.2-1 - New upstream release From e23f70c1b7bbcf385ee767b463ddea82db3581f7 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 18:51:14 +0000 Subject: [PATCH 5/7] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- python-cryptography.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python-cryptography.spec b/python-cryptography.spec index 8f84978..8896f53 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -10,7 +10,7 @@ Name: python-cryptography Version: 0.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: PyCA's cryptography library Group: Development/Libraries @@ -106,6 +106,9 @@ popd %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Thu May 14 2015 Nathaniel McCallum - 0.9-1 - New upstream release - Run tests on RHEL From 8e1b032776e43aeb44a9d934b86a468dba28c6e7 Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Thu, 13 Aug 2015 13:23:27 -0400 Subject: [PATCH 6/7] Update to 1.0 --- .gitignore | 1 + python-cryptography.spec | 9 ++++++--- sources | 1 + 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index df36abc..51b5a28 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /cryptography-0.8.tar.gz /cryptography-0.8.2.tar.gz /cryptography-0.9.tar.gz +/cryptography-1.0.tar.gz diff --git a/python-cryptography.spec b/python-cryptography.spec index 8896f53..018f9c8 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -5,12 +5,12 @@ %{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")} %endif -%global reqs() %1-idna %1-pyasn1 %1-six >= 1.4.1 %1-cffi >= 0.8 +%global reqs() %1-idna >= 2.0 %1-pyasn1 %1-six >= 1.4.1 %1-cffi >= 0.8 %global breqs() %1-setuptools %1-pretend %1-iso8601 %1-cryptography-vectors = %{version} Name: python-cryptography -Version: 0.9 -Release: 2%{?dist} +Version: 1.0 +Release: 1%{?dist} Summary: PyCA's cryptography library Group: Development/Libraries @@ -106,6 +106,9 @@ popd %changelog +* Wed Aug 12 2015 Nathaniel McCallum - 1.0-1 +- New upstream release + * Thu Jun 18 2015 Fedora Release Engineering - 0.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 8873985..2739c29 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ 7d5db511852f70ab6548c72b42b0c2f3 cryptography-0.9.tar.gz +3f2608eb94dcc6e616c3cc2e182181b0 cryptography-1.0.tar.gz From f0e7d0f89c9e85e68022a212109b6928e46a1cb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Wed, 30 Sep 2015 17:45:39 +0200 Subject: [PATCH 7/7] New upstream release (fix #1267548) --- .gitignore | 1 + python-cryptography.spec | 5 ++++- sources | 3 +-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 51b5a28..450e371 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /cryptography-0.8.2.tar.gz /cryptography-0.9.tar.gz /cryptography-1.0.tar.gz +/cryptography-1.0.2.tar.gz diff --git a/python-cryptography.spec b/python-cryptography.spec index 018f9c8..35655fc 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -9,7 +9,7 @@ %global breqs() %1-setuptools %1-pretend %1-iso8601 %1-cryptography-vectors = %{version} Name: python-cryptography -Version: 1.0 +Version: 1.0.2 Release: 1%{?dist} Summary: PyCA's cryptography library @@ -106,6 +106,9 @@ popd %changelog +* Wed Sep 30 2015 Matěj Cepl - 1.0.2-1 +- New upstream release (fix #1267548) + * Wed Aug 12 2015 Nathaniel McCallum - 1.0-1 - New upstream release diff --git a/sources b/sources index 2739c29..aceb3ad 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -7d5db511852f70ab6548c72b42b0c2f3 cryptography-0.9.tar.gz -3f2608eb94dcc6e616c3cc2e182181b0 cryptography-1.0.tar.gz +6a8627da0c6199fca941dc8170f9b583 cryptography-1.0.2.tar.gz