7c4cd69
%global         srcname  acme
7c4cd69
Nick Bebout 2cb2ed0
%if (0%{?fedora}) || (0%{?rhel} && 0%{?rhel} >= 8)
da0cfb5
%bcond_without python3
da0cfb5
%else
da0cfb5
%bcond_with python3
da0cfb5
%endif
da0cfb5
1639c2c
%if (0%{?fedora} && 0%{?fedora} >= 30) || (0%{?rhel} && 0%{?rhel} >= 8)
030069e
%bcond_with python2
030069e
%global         SPHINXBUILD sphinx-build-3
030069e
%else
030069e
%bcond_without python2
030069e
%global         SPHINXBUILD sphinx-build
030069e
%endif
030069e
7c4cd69
Name:           python-acme
dae3ea5
Version:        1.11.0
dae3ea5
Release:        1%{?dist}
7c4cd69
Summary:        Python library for the ACME protocol
7c4cd69
License:        ASL 2.0
7c4cd69
URL:            https://pypi.python.org/pypi/acme
f45e78a
Source0:        %{pypi_source}
873b2a8
Source1:        %{pypi_source}.asc
f45e78a
# Key mentioned in https://certbot.eff.org/docs/install.html#certbot-auto
f45e78a
# Keyring generation steps as follows:
f45e78a
#   gpg2 --keyserver pool.sks-keyservers.net --recv-key A2CFB51FA275A7286234E7B24D17C995CD9775F2
f45e78a
#   gpg2 --export --export-options export-minimal A2CFB51FA275A7286234E7B24D17C995CD9775F2 > gpg-A2CFB51FA275A7286234E7B24D17C995CD9775F2.gpg
873b2a8
Source2:        gpg-A2CFB51FA275A7286234E7B24D17C995CD9775F2.gpg
7c4cd69
5cb048f
# When running tests argparse is not recognised as provided by core
5cb048f
0a56dad
Patch0:         epel7-setup.patch
6d5bb6d
# see https://github.com/certbot/certbot/issues/8110
6d5bb6d
Patch1:         %{name}-lower-pyopenssl-requirement-epel7.patch
0f7ca9b
030069e
%if %{with python2}
7c4cd69
BuildRequires:  python2-devel
4cab238
BuildRequires:  python2-sphinx
4908706
%if 0%{?fedora}
4cab238
BuildRequires:  python2-sphinx_rtd_theme
4908706
%endif
4cab238
BuildRequires:  python2-cryptography
5b60d9c
BuildRequires:  python2-mock
e479da6
BuildRequires:  python2-requests >= 2.6.0
4cab238
BuildRequires:  python2-pyrfc3339
375b952
BuildRequires:  python2-josepy >= 1.1.0
030069e
%endif
7c4cd69
da0cfb5
%if %{with python3}
7c4cd69
BuildRequires:  python3-devel
b4ac0b5
BuildRequires:  python3-sphinx
030069e
BuildRequires:  python3-sphinx_rtd_theme
7c4cd69
BuildRequires:  python3-cryptography
e479da6
BuildRequires:  python3-requests >= 2.6.0
6d5bb6d
BuildRequires:  python3-pyOpenSSL >= 0.15.1
fcbbe3a
BuildRequires:  python3-requests-toolbelt
6d5bb6d
BuildRequires:  python3-setuptools
7c4cd69
BuildRequires:  python3-pyrfc3339
375b952
BuildRequires:  python3-josepy >= 1.1.0
da0cfb5
%endif
7c4cd69
030069e
%if %{with python2}
5b60d9c
%if 0%{?fedora} >= 28
5b60d9c
# Fedora 28 added versioned names for this package
5b60d9c
BuildRequires:  python2-pytz
5b60d9c
%else
5b60d9c
BuildRequires:  pytz
5b60d9c
%endif
5b60d9c
5b60d9c
%if 0%{?rhel} && 0%{?rhel} <= 7
5b60d9c
# EL7 has unversioned names for these packages
fcbbe3a
BuildRequires:  pytest
5b60d9c
BuildRequires:  python-ndg_httpsclient
fcbbe3a
BuildRequires:  python-requests-toolbelt
6d5bb6d
BuildRequires:  python-setuptools
f0db378
BuildRequires:  pyOpenSSL >= 0.13.1
5b60d9c
%else
4cab238
BuildRequires:  python2-ndg_httpsclient
fcbbe3a
BuildRequires:  python2-pytest
fcbbe3a
BuildRequires:  python2-requests-toolbelt
6d5bb6d
BuildRequires:  python2-setuptools
f0db378
BuildRequires:  python2-pyOpenSSL >= 0.13.1
5b60d9c
%endif
030069e
%endif
7c4cd69
da0cfb5
%if %{with python3}
7c4cd69
BuildRequires:  python3-ndg_httpsclient
fcbbe3a
BuildRequires:  python3-pytest
e1ac23f
BuildRequires:  python3-pytz
da0cfb5
%endif
7c4cd69
f45e78a
# Used to verify OpenPGP signature
f45e78a
BuildRequires:  gnupg2
1639c2c
%if 0%{?rhel} && 0%{?rhel} == 8
1639c2c
# "gpgverify" macro, not in COPR buildroot by default
1639c2c
BuildRequires:  epel-rpm-macros >= 8-5
1639c2c
%endif
f45e78a
7c4cd69
BuildArch:      noarch
7c4cd69
030069e
%description
030069e
Python libraries implementing the Automatic Certificate Management Environment
030069e
(ACME) protocol. It is used by the Let's Encrypt project.
030069e
030069e
%if %{with python2}
7c4cd69
%package -n python2-acme
4cab238
Requires: python2-cryptography
4cab238
Requires: python2-pyasn1
4cab238
Requires: python2-pyrfc3339
e479da6
Requires: python2-requests >= 2.6.0
4cab238
Requires: python2-six
375b952
Requires: python2-josepy >= 1.1.0
5b60d9c
5b60d9c
%if 0%{?fedora} >= 28
5b60d9c
# Fedora 28 added versioned names for this package
5b60d9c
Requires:       python2-pytz
5b60d9c
%else
5b60d9c
Requires:       pytz
5b60d9c
%endif
5b60d9c
5b60d9c
%if 0%{?rhel} && 0%{?rhel} <= 7
5b60d9c
# EL7 has unversioned names for these packages
5b60d9c
Requires:       python-ndg_httpsclient
fcbbe3a
Requires:       python-requests-toolbelt
f0db378
Requires:       pyOpenSSL >= 0.13.1
5b60d9c
%else
5b60d9c
Requires:       python2-ndg_httpsclient
fcbbe3a
Requires:       python2-requests-toolbelt
f0db378
Requires:       python2-pyOpenSSL >= 0.13.1
5b60d9c
%endif
5b60d9c
da0cfb5
%if %{with python3}
da0cfb5
# Recommends not supported by rpm on EL7
29af95f
#Recommends: python-acme-doc
da0cfb5
%endif
7c4cd69
Summary:        %{summary}
7c4cd69
%{?python_provide:%python_provide python2-acme}
7c4cd69
7c4cd69
7c4cd69
%description -n python2-acme
7c4cd69
Python 2 library for use of the Automatic Certificate Management Environment
7c4cd69
protocol as defined by the IETF. It's used by the Let's Encrypt project.
030069e
%endif
7c4cd69
da0cfb5
%if %{with python3}
7c4cd69
%package -n python3-acme
7c4cd69
Requires: python3-cryptography
7c4cd69
Requires: python3-ndg_httpsclient
7c4cd69
Requires: python3-pyasn1
7c4cd69
Requires: python3-pyOpenSSL
7c4cd69
Requires: python3-pyrfc3339
7c4cd69
Requires: python3-pytz
e479da6
Requires: python3-requests >= 2.6.0
fcbbe3a
Requires: python3-requests-toolbelt
7c4cd69
Requires: python3-six
375b952
Requires: python3-josepy >= 1.1.0
29af95f
#Recommends: python-acme-doc
7c4cd69
Summary:        %{summary}
7c4cd69
%{?python_provide:%python_provide python3-acme}
7c4cd69
7c4cd69
%description -n python3-acme
7c4cd69
Python 3 library for use of the Automatic Certificate Management Environment
7c4cd69
protocol as defined by the IETF. It's used by the Let's Encrypt project.
da0cfb5
%endif
7c4cd69
1821f6b
%if 0%{?fedora}
3837207
%package doc
0b67118
# CSS uses @font-face … src:local("fontawesome/FontAwesome") format("truetype")
0b67118
Requires: fontawesome-fonts
3837207
Summary:  Documentation for python-acme libraries
7c4cd69
3837207
%description doc
3837207
Documentation for the ACME python libraries
1821f6b
%endif
7c4cd69
7c4cd69
%prep
873b2a8
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
34c9abb
%setup -n %{srcname}-%{version}
34c9abb
%if 0%{?rhel} && 0%{?rhel} == 7
34c9abb
%patch0 -p1
6d5bb6d
%patch1 -p1
34c9abb
%endif
3ade2a9
# Remove bundled egg-info
3ade2a9
rm -rf %{srcname}.egg-info
7c4cd69
7c4cd69
7c4cd69
%build
030069e
%if %{with python2}
7c4cd69
%py2_build
030069e
%endif
da0cfb5
%if %{with python3}
7c4cd69
%py3_build
da0cfb5
%endif
35c99af
7c4cd69
%install
030069e
%if %{with python2}
855bf57
%py2_install
030069e
%endif
da0cfb5
%if %{with python3}
7c4cd69
%py3_install
da0cfb5
%endif
95774c2
95774c2
# Doc generation is currently broken on EL7, see bz#1492884
95774c2
%if 0%{?fedora}
3837207
# man page is pretty useless but api pages are decent
3837207
# Issue opened upstream for improving man page
3837207
# Need to cd as parent makefile tries to build libraries
030069e
(  cd docs && make html SPHINXBUILD=%{SPHINXBUILD} )
3837207
# Clean up stuff we don't need for docs
3837207
rm -rf docs/_build/html/{.buildinfo,man,_sources}
95774c2
%endif
7c4cd69
7c4cd69
%check
030069e
%if %{with python2}
7c4cd69
%{__python2} setup.py test
030069e
%endif
64ccdbe
da0cfb5
%if %{with python3}
9022806
PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version} -v
da0cfb5
%endif
7c4cd69
030069e
%if %{with python2}
7c4cd69
%files -n python2-acme
010ec4b
%license LICENSE.txt
867c0c2
%doc README.rst
7c4cd69
%{python2_sitelib}/%{srcname}
7c4cd69
%{python2_sitelib}/%{srcname}-%{version}*.egg-info
030069e
%endif
7c4cd69
da0cfb5
%if %{with python3}
7c4cd69
%files -n python3-acme
010ec4b
%license LICENSE.txt
867c0c2
%doc README.rst
7c4cd69
%{python3_sitelib}/%{srcname}
7c4cd69
%{python3_sitelib}/%{srcname}-%{version}*.egg-info
da0cfb5
%endif
7c4cd69
1821f6b
%if 0%{?fedora}
3837207
%files doc
010ec4b
%license LICENSE.txt
3837207
%doc README.rst
3837207
%doc docs/_build/html
95774c2
%endif
7c4cd69
7c4cd69
%changelog
dae3ea5
* Tue Jan  5 2021 Felix Schwarz <fschwarz@fedoraproject.org> - 1.11.0-1
dae3ea5
- update to 1.11.0 (#1913050)
dae3ea5
0b67118
* Fri Dec 25 2020 Felix Schwarz <fschwarz@fedoraproject.org> - 1.10.1-2
0b67118
- "docs" subpackage only requires fontawesome-fonts now
0b67118
e0e5eaf
* Thu Dec  3 2020 Felix Schwarz <fschwarz@fedoraproject.org> - 1.10.1-1
e0e5eaf
- Update to 1.10.1
e0e5eaf
863c2ca
* Wed Dec 02 2020 Felix Schwarz <fschwarz@fedoraproject.org> - 1.10.0-1
863c2ca
- Update to 1.10.0 (#1903306)
863c2ca
Nick Bebout 14674ff
* Wed Oct 07 2020 Nick Bebout <nb@fedoraproject.org> - 1.9.0-1
Nick Bebout 14674ff
- Update to 1.9.0
Nick Bebout 14674ff
Nick Bebout ee5bf46
* Tue Oct 06 2020 Nick Bebout <nb@fedoraproject.org> - 1.8.0-1
Nick Bebout ee5bf46
- Update to 1.8.0
Nick Bebout ee5bf46
796dc08
* Sun Aug 16 2020 Felix Schwarz <fschwarz@fedoraproject.org> - 1.7.0-1
796dc08
- Update to 1.7.0 (#1866070)
796dc08
873b065
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-2
873b065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
873b065
6d5bb6d
* Tue Jul 07 2020 Felix Schwarz <fschwarz@fedoraproject.org> - 1.6.0-1
6d5bb6d
- Update to 1.6.0 (#1854594)
6d5bb6d
9022806
* Sat Jun 06 2020 Felix Schwarz <fschwarz@fedoraproject.org> - 1.5.0-1
9022806
- Update to 1.5.0 (#1843199)
9022806
8d935fe
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.4.0-2
8d935fe
- Rebuilt for Python 3.9
2e16742
- EPEL 8: disable failing test case (rhbz #1834530)
64ccdbe
e97702f
* Sat May 09 2020 Felix Schwarz <fschwarz@fedoraproject.org> - 1.4.0-1
e97702f
- Update to 1.4.0 (#1831912)
e97702f
18d0735
* Wed Mar 04 2020 Felix Schwarz <felix.schwarz@oss.schwarz.eu> - 1.3.0-1
18d0735
- Update to 1.3.0 (#1809794)
18d0735
4e04fc6
* Fri Feb 07 2020 Felix Schwarz <fschwarz@fedoraproject.org> - 1.2.0-1
4e04fc6
- Update to 1.2.0 (#1791073)
4e04fc6
fe1a024
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2
fe1a024
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
fe1a024
3e683ad
* Thu Jan 23 2020 Felix Schwarz <fschwarz@fedoraproject.org> 1.1.0-1
3e683ad
- Update to 1.1.0
3e683ad
1639c2c
* Thu Dec 05 2019 Felix Schwarz <fschwarz@fedoraproject.org> 1.0.0-2
1639c2c
- adapt conditions for EPEL8
ab2e54d
- remove runtime dependency on mock
1639c2c
3ade2a9
* Thu Dec 05 2019 Eli Young <elyscape@gmail.com> - 1.0.0-1
3ade2a9
- Update to 1.0.0 (#1769084)
3ade2a9
873b2a8
* Thu Nov 21 2019 Felix Schwarz <fschwarz@fedoraproject.org> 0.39.0-2
f45e78a
- Verify source OpenPGP signature
873b2a8
0cd1f0b
* Tue Oct 01 2019 Eli Young <elyscape@gmail.com> - 0.39.0-1
0cd1f0b
- Update to 0.39.0 (#1757606)
0cd1f0b
3ad1527
* Tue Sep 10 2019 Eli Young <elyscape@gmail.com> - 0.38.0-1
3ad1527
- Update to 0.38.0 (#1748611)
3ad1527
4921d6b
* Mon Aug 26 2019 Eli Young <elyscape@gmail.com> - 0.37.2-1
4921d6b
- Update to 0.37.2 (#1742576)
4921d6b
d6e8b76
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.36.0-3
d6e8b76
- Rebuilt for Python 3.8
d6e8b76
6ad9f0d
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.36.0-2
6ad9f0d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
6ad9f0d
56e67c5
* Fri Jul 19 2019 Eli Young <elyscape@gmail.com> - 0.36.0-1
56e67c5
- Update to 0.36.0
56e67c5
4645ccf
* Sun Jun 30 2019 Miro Hrončok <mhroncok@redhat.com> - 0.35.1-2
4645ccf
- Rebuilt to update automatic Python dependencies
4645ccf
0ee164d
* Fri Jun 21 2019 Eli Young <elyscape@gmail.com> - 0.35.1-1
0ee164d
- Update to 0.35.1 (#1717675)
0ee164d
375b952
* Tue May 28 2019 Eli Young <elyscape@gmail.com> - 0.34.2-1
375b952
- Update to 0.34.2 (#1686201)
375b952
f0db378
* Fri Feb 08 2019 Eli Young <elyscape@gmail.com> - 0.31.0-1
f0db378
- Update to 0.31.0 (#1673768)
f0db378
6203544
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.2-2
6203544
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
6203544
31b21b5
* Mon Jan 28 2019 Eli Young <elyscape@gmail.com> - 0.30.2-1
31b21b5
- Update to 0.30.2 (#1669312)
31b21b5
bbc1c66
* Tue Dec 11 2018 Eli Young <elyscape@gmail.com> - 0.29.1-1
bbc1c66
- Update to 0.29.1
030069e
- Remove Python 2 package in Fedora 30+ (#1654016)
bbc1c66
bbc675f
* Wed Nov 14 2018 Eli Young <elyscape@gmail.com> - 0.28.0-1
bbc675f
- Update to 0.28.0
bbc675f
e03de1f
* Mon Sep 10 2018 Eli Young <elyscape@gmail.com> - 0.27.1-1
e03de1f
- Update to 0.27.1 (#1625793)
e03de1f
4d71ce6
* Tue Jul 17 2018 Eli Young <elyscape@gmail.com> - 0.26.1-1
4d71ce6
- Update to 0.26.1 (#1600290)
4d71ce6
1e91909
* Thu Jul 12 2018 Eli Young <elyscape@gmail.com> - 0.26.0-1
1e91909
- Update to 0.26.0 (#1600290)
1e91909
5dba928
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.25.1-2
5dba928
- Rebuilt for Python 3.7
5dba928
0ed3481
* Wed Jun 13 2018 Eli Young <elyscape@gmail.com> - 0.25.1-1
0ed3481
- Update to 0.25.1 (#1591030)
0ed3481
fcbbe3a
* Thu Jun 07 2018 Eli Young <elyscape@gmail.com> - 0.25.0-1
fcbbe3a
- Update to 0.25.0 (#1588214)
fcbbe3a
d458d4d
* Wed May 02 2018 Eli Young <elyscape@gmail.com> - 0.24.0-1
d458d4d
- Update to 0.24.0 (#1574138)
f9b86b0
- Remove unnecessary build dependencies and patches
d458d4d
905dda0
* Thu Apr 05 2018 Eli Young <elyscape@gmail.com> - 0.23.0-1
905dda0
- Update to 0.23.0 (#1563878)
905dda0
9497dec
* Tue Mar 20 2018 Eli Young <elyscape@gmail.com> - 0.22.2-1
9497dec
- Update to 0.22.2 (#1558275)
9497dec
73e79f2
* Sat Mar 10 2018 Eli Young <elyscape@gmail.com> - 0.22.0-1
73e79f2
- Update to 0.22.0 (#1552951)
73e79f2
4cab238
* Thu Mar 08 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.21.1-4
4cab238
- Update Python 2 dependency declarations to new packaging standards
4cab238
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
4cab238
90bec6b
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.21.1-3
90bec6b
- Escape macros in %%changelog
90bec6b
7427ebc
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.21.1-2
7427ebc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
7427ebc
fcf2224
* Thu Jan 18 2018 Eli Young <elyscape@gmail.com> - 0.21.1-1
fcf2224
- Update to 0.21.1 (#1535990)
fcf2224
3a1b3ed
* Wed Dec 20 2017 Eli Young <elyscape@gmail.com> - 0.20.0-1
3a1b3ed
- Update to 0.20.0
3a1b3ed
bb63f89
* Fri Oct 06 2017 Eli Young <elyscape@gmail.com> - 0.19.0-1
bb63f89
- Update to 0.19.0 (bz#1499366)
bb63f89
350abad
* Fri Sep 22 2017 Nick Bebout <nb@fedoraproject.org> - 0.18.2-1
350abad
- Update to 0.18.2
350abad
1821f6b
* Mon Sep 18 2017 Eli Young <elyscape@gmail.com> - 0.18.1-2
1821f6b
- Disable doc package entirely for EPEL7
1821f6b
95774c2
* Mon Sep 18 2017 Eli Young <elyscape@gmail.com> - 0.18.1-1
95774c2
- Disable doc generation for EPEL7
95774c2
394322b
* Sun Sep 10 2017 Nick Bebout <nb@fedoraproject.org> - 0.18.1-1
Nick Bebout 2c4a4dd
- Update to 0.18.1
Nick Bebout 2c4a4dd
bb58440
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.1-2
bb58440
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
bb58440
9780c4d
* Tue May 16 2017 James Hogarth <james.hogarth@gmail.com> - 0.14.1-1
9780c4d
- Update to 0.14.1
9780c4d
0a56dad
* Fri May 12 2017 James Hogarth <james.hogarth@gmail.com> - 0.14.0-1
0a56dad
- Update to 0.14.0
0a56dad
82d3a65
* Wed Apr 19 2017 James Hogarth <james.hogarth@gmail.com> - 0.13.0-1
82d3a65
- Update to 0.13.0
82d3a65
82d3a65
* Fri Mar 03 2017 James Hogarth <james.hogarth@gmail.com> - 0.12.0-3
d98ecc0
- upstream request not to use py3 yet so switch jws to py2
d98ecc0
- include a py3 option for testing
d98ecc0
82d3a65
* Fri Mar 03 2017 James Hogarth <james.hogarth@gmail.com> - 0.12.0-2
000950c
- Build for python rpm macro change
000950c
82d3a65
* Fri Mar 03 2017 James Hogarth <james.hogarth@gmail.com> - 0.12.0-1
855bf57
- Update to 0.12.0
90bec6b
- Change %%{_bindir}/jws to be python3 on Fedora
855bf57
634e7c0
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.1-2
634e7c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
634e7c0
d14a512
* Sat Feb 04 2017 James Hogarth <james.hogarth@gmail.com> - 0.11.1-1
d14a512
- Upgrade to 0.11.1
d14a512
3837207
* Thu Jan 05 2017 Adam Williamson <awilliam@redhat.com> - 0.9.3-2
3837207
- Backport upstream fix for tests with OpenSSL 1.1
3837207
- Backport upstream removal of sphinxcontrib-programoutput usage
3837207
- Re-enable doc generation
3837207
3837207
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com>
6cd0260
- Rebuild for Python 3.6
29af95f
- Removing the docs subpackage for now until the dependency works in rawhide
6cd0260
5a491f5
* Fri Oct 14 2016 Nick Bebout <nb@fedoraproject.org> - 0.9.3-1
5a491f5
- Upgrade to 0.9.3
acc9eff
* Thu Oct 13 2016 Nick Bebout <nb@fedoraproject.org> - 0.9.2-1
acc9eff
- Upgrade to 0.9.2
acc9eff
* Fri Oct 07 2016 Nick Bebout <nb@fedoraproject.org> - 0.9.1-1
acc9eff
- Upgrade to 0.9.1
f96600b
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-2
f96600b
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
67db378
* Wed Jun 15 2016 Nick Bebout <nb@fedoraproject.org> - 0.8.1-1
67db378
- Upgrade to 0.8.1
5cb10b6
* Fri Jun 03 2016 James Hogarth <james.hogarth@gmail.com> - 0.8.0-1
5cb10b6
- update to 0.8.0 release
Nick Bebout dda17ca
* Mon May 30 2016 Nick Bebout <nb@fedoraproject.org> - 0.7.0-1
Nick Bebout dda17ca
- Upgrade to 0.7.0
54215da
* Thu May 12 2016 Nick Bebout <nb@fedoraproject.org> - 0.6.0-1
54215da
- Upgrade to 0.6.0
3065406
* Wed Apr 06 2016 Nick Bebout <nb@fedoraproject.org> - 0.5.0-1
3065406
- Upgrade to 0.5.0
d70e9ea
* Sat Mar 05 2016 Robert Buchholz <rbu@fedoraproject.org> - 0.4.2-3
d70e9ea
- Package does not require python-werkzeug anymore, upstream #2453
0f7ca9b
* Fri Mar 04 2016 Robert Buchholz <rbu@fedoraproject.org> - 0.4.2-2
0f7ca9b
- Fix build on EL7 where no newer setuptools is available
14dcc0a
* Fri Mar 04 2016 Robert Buchholz <rbu@fedoraproject.org> - 0.4.2-1
14dcc0a
- Upgrade to 0.4.2
4c34430
* Tue Mar 1 2016 Nick Le Mouton <nick@noodles.net.nz> - 0.4.1-1
4c34430
- Upgrade to 0.4.1
e0a671f
* Thu Feb 11 2016 Nick Bebout <nb@fedoraproject.org> - 0.4.0-1
e0a671f
- Upgrade to 0.4.0
fff0eec
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0-2
fff0eec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5936b08
* Thu Jan 28 2016 Nick Bebout <nb@fedoraproject.org> - 0.3.0-1
5936b08
- Upgrade to 0.3.0
d953ce8
* Thu Jan 21 2016 Nick Bebout <nb@fedoraproject.org> - 0.2.0-1
cb0197d
- Upgrade to 0.2.0
d325eb6
* Wed Dec 16 2015 Nick Bebout <nb@fedoraproject.org> - 0.1.1-1
d325eb6
- Upgrade to 0.1.1
b4ac0b5
* Fri Dec 04 2015 James Hogarth <james.hogarth@gmail.com> - 0.1.0-3
b4ac0b5
- Restore missing dependencies causing a FTBFS with py3 tests
b4ac0b5
- Add the man pages
6577877
* Thu Dec 03 2015 Robert Buchholz <rbu@goodpoint.de> - 0.1.0-4
6577877
- Specify more of the EPEL dependencies
da0cfb5
* Thu Dec 03 2015 Robert Buchholz <rbu@goodpoint.de> - 0.1.0-3
da0cfb5
- epel7: Only build python2 package
36758fd
* Thu Dec 03 2015 James Hogarth <james.hogarth@gmail.com> - 0.1.0-2
36758fd
- Fix up the removal of the dev release snapshot
e229c91
* Thu Dec 03 2015 James Hogarth <james.hogarth@gmail.com> - 0.1.0-1
e229c91
- Update to new upstream release for the open beta
7c4cd69
* Mon Nov 30 2015 James Hogarth <james.hogarth@gmail.com> - 0.0.0-3-dev20151123
7c4cd69
- Update spec with comments from review
7c4cd69
* Sat Nov 28 2015 James Hogarth <james.hogarth@gmail.com> - 0.0.0-2.dev20151123
7c4cd69
- Update spec with comments from review
7c4cd69
- Add python3 library
7c4cd69
* Fri Nov 27 2015 James Hogarth <james.hogarth@gmail.com> - 0.0.0-1.dev20151123
7c4cd69
- initial packaging