Blame SPECS/python-daemon.spec

rdobuilder a10373
## START: Set by rpmautospec
rdobuilder a10373
## (rpmautospec version 0.2.6)
rdobuilder a10373
%define autorelease(e:s:pb:) %{?-p:0.}%{lua:
rdobuilder a10373
    release_number = 1;
rdobuilder a10373
    base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
rdobuilder a10373
    print(release_number + base_release_number - 1);
rdobuilder a10373
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{?dist}
rdobuilder a10373
## END: Set by rpmautospec
rdobuilder a10373
rdobuilder a10373
%bcond_without tests
rdobuilder a10373
rdobuilder a10373
Name:           python-daemon
rdobuilder a10373
Version:        2.3.1
rdobuilder a10373
Release:        %autorelease
rdobuilder a10373
Summary:        Library to implement a well-behaved Unix daemon process
rdobuilder a10373
rdobuilder a10373
# Some build scripts and test franework are licensed GPLv3+ but those aren't shipped
rdobuilder a10373
License:        ASL 2.0
rdobuilder a10373
URL:            https://pagure.io/python-daemon
rdobuilder a10373
Source0:        %pypi_source
rdobuilder a10373
# Downstream-only patch, twine is unnecessary to build
rdobuilder a10373
# https://pagure.io/python-daemon/c/cc9e6a0321a547aacd568aa1e8c7d94a000d5d11
rdobuilder a10373
Patch0:         remove-twine-dependency.patch
rdobuilder a10373
rdobuilder a10373
BuildArch:      noarch
rdobuilder a10373
BuildRequires:  python%{python3_pkgversion}-devel
rdobuilder a10373
BuildRequires:  python%{python3_pkgversion}-setuptools
rdobuilder a10373
BuildRequires:  python%{python3_pkgversion}-docutils
rdobuilder a10373
rdobuilder a10373
%if %{with tests}
rdobuilder a10373
BuildRequires:  python%{python3_pkgversion}-testscenarios
rdobuilder a10373
BuildRequires:  python%{python3_pkgversion}-lockfile
rdobuilder a10373
BuildRequires:  python%{python3_pkgversion}-mock
rdobuilder a10373
BuildRequires:  python%{python3_pkgversion}-testtools
rdobuilder a10373
BuildRequires:  python%{python3_pkgversion}-extras
rdobuilder a10373
%endif
rdobuilder a10373
rdobuilder a10373
%global _description\
rdobuilder a10373
This library implements the well-behaved daemon specification of PEP 3143,\
rdobuilder a10373
"Standard daemon process library".\
rdobuilder a10373
rdobuilder a10373
%description %_description
rdobuilder a10373
rdobuilder a10373
%package -n python%{python3_pkgversion}-daemon
rdobuilder a10373
Summary:        Library to implement a well-behaved Unix daemon process
rdobuilder a10373
rdobuilder a10373
%description -n python%{python3_pkgversion}-daemon %_description
rdobuilder a10373
rdobuilder a10373
This is the python3 version of the library.
rdobuilder a10373
rdobuilder a10373
%prep
rdobuilder a10373
%autosetup -p1
rdobuilder a10373
rdobuilder a10373
%build
rdobuilder a10373
%py3_build
rdobuilder a10373
rdobuilder a10373
%install
rdobuilder a10373
%py3_install
rdobuilder a10373
rm -fr %{buildroot}%{python3_sitelib}/tests
rdobuilder a10373
rdobuilder a10373
%if %{with tests}
rdobuilder a10373
# Test suite requires minimock and lockfile
rdobuilder a10373
%check
rdobuilder a10373
PYTHONPATH=$(pwd) %{__python3} -m unittest discover
rdobuilder a10373
%endif
rdobuilder a10373
rdobuilder a10373
%files -n python%{python3_pkgversion}-daemon
rdobuilder a10373
%license LICENSE.ASF-2
rdobuilder a10373
%{python3_sitelib}/daemon/
rdobuilder a10373
%{python3_sitelib}/python_daemon-%{version}-py%{python3_version}.egg-info/
rdobuilder a10373
rdobuilder a10373
%changelog
rdobuilder a10373
* Tue Aug 16 2022 Mikel Olasagasti Uranga <mikel@olasagasti.info> 2.3.1-1
rdobuilder a10373
- Update to 2.3.1 - Closes rhbz#2108452
rdobuilder a10373
- Remove upstreamed python-daemon-safe_hasattr.patch
rdobuilder a10373
- Remove upstreamed tests-remove-duplicate-mocking.patch
rdobuilder a10373
rdobuilder a10373
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-6
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Wed Jun 15 2022 Python Maint <python-maint@redhat.com> - 2.3.0-5
rdobuilder a10373
- Rebuilt for Python 3.11
rdobuilder a10373
rdobuilder a10373
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-4
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-3
rdobuilder a10373
- Second attempt - Rebuilt for
rdobuilder a10373
  https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Thu Jun 03 2021 Python Maint <python-maint@redhat.com> - 2.3.0-2
rdobuilder a10373
- Rebuilt for Python 3.10
rdobuilder a10373
rdobuilder a10373
* Mon Feb 22 2021 Kevin Fenzi <kevin@scrye.com> - 2.3.0-1
rdobuilder a10373
- Update to 2.3.0. Fixes rhbz#1931165
rdobuilder a10373
rdobuilder a10373
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.4-4
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.4-3
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 2.2.4-2
rdobuilder a10373
- Rebuilt for Python 3.9
rdobuilder a10373
rdobuilder a10373
* Sun Mar 22 2020 Carl George <carl@george.computer> - 2.2.4-1
rdobuilder a10373
- Latest upstream rhbz#1765895
rdobuilder a10373
rdobuilder a10373
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.3-8
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.2.3-7
rdobuilder a10373
- Rebuilt for Python 3.8.0rc1 (#1748018)
rdobuilder a10373
rdobuilder a10373
* Wed Aug 28 2019 Miro Hrončok <mhroncok@redhat.com> - 2.2.3-6
rdobuilder a10373
- Subpackage python2-daemon has been removed
rdobuilder a10373
  See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
rdobuilder a10373
rdobuilder a10373
* Tue Aug 20 2019 Pierre-Yves Chibon <pingou@pingoured.fr> - 2.2.3-5
rdobuilder a10373
- Patch the test suite so it passes with py2
rdobuilder a10373
rdobuilder a10373
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 2.2.3-4
rdobuilder a10373
- Rebuilt for Python 3.8
rdobuilder a10373
rdobuilder a10373
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.3-3
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Sat Jun 29 2019 Kevin Fenzi <kevin@scrye.com> - 2.2.3-2
rdobuilder a10373
- Add patch for socket tests in python 3.8. Fixes bug #1695802
rdobuilder a10373
rdobuilder a10373
* Tue Feb 12 2019 Alfredo Moralejo <amoralej@redhat.com> - 2.2.3-1
rdobuilder a10373
- Update to 2.2.3
rdobuilder a10373
rdobuilder a10373
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-11
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-10
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 2.1.2-9
rdobuilder a10373
- Rebuilt for Python 3.7
rdobuilder a10373
rdobuilder a10373
* Mon Feb 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.1.2-8
rdobuilder a10373
- Update Python 2 dependency declarations to new packaging standards
rdobuilder a10373
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
rdobuilder a10373
rdobuilder a10373
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-7
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Sun Dec 17 2017 Kevin Fenzi <kevin@scrye.com> - 2.1.2-6
rdobuilder a10373
- Add dep on python2-docutils. Fixes bug #1478196
rdobuilder a10373
rdobuilder a10373
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.1.2-5
rdobuilder a10373
- Python 2 binary package renamed to python2-daemon
rdobuilder a10373
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
rdobuilder a10373
rdobuilder a10373
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-4
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-3
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 2.1.2-2
rdobuilder a10373
- Rebuild for Python 3.6
rdobuilder a10373
rdobuilder a10373
* Wed Nov 09 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.2-1
rdobuilder a10373
- Update to 2.1.2. Fixes bug #1389593
rdobuilder a10373
rdobuilder a10373
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-2
rdobuilder a10373
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
rdobuilder a10373
rdobuilder a10373
* Sun Apr 10 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.1-1
rdobuilder a10373
- Update to 2.1.1. Fixes bug #1234933
rdobuilder a10373
rdobuilder a10373
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-2
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Mon Nov 30 2015 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.1.0-1
rdobuilder a10373
- Update to newer upstream.
rdobuilder a10373
- Create a python3 subpackage since upstream supports it
rdobuilder a10373
- Note that newer upstream has relicensed to Apache 2.0
rdobuilder a10373
rdobuilder a10373
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-8
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Mon Aug  4 2014 Thomas Spura <tomspur@fedoraproject.org> - 1.6-7
rdobuilder a10373
- enable tests again as lockfile was fixed
rdobuilder a10373
rdobuilder a10373
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-6
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-5
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-4
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-3
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Thu Jul 14 2011 Kushal Das <kushal@fedoraproject.org> - 1.6-1
rdobuilder a10373
- New release of source
rdobuilder a10373
rdobuilder a10373
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.2-3
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.5.2-2
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
rdobuilder a10373
rdobuilder a10373
* Wed Dec 23 2009 Thomas Spura <tomspur@fedoraproject.org> - 1.5.2-1
rdobuilder a10373
- add missing BR: python-nose
rdobuilder a10373
- also add lockfile as R (bug #513546)
rdobuilder a10373
- update to 1.5.2
rdobuilder a10373
rdobuilder a10373
* Wed Dec 23 2009 Thomas Spura <tomspur@fedoraproject.org> - 1.5.1-2
rdobuilder a10373
- add missing BR: minimock and lockfile -> testsuite works again
rdobuilder a10373
- remove patch, use sed instead
rdobuilder a10373
rdobuilder a10373
* Wed Oct 07 2009 Luke Macken <lmacken@redhat.com> - 1.5.1-1
rdobuilder a10373
- Update to 1.5.1
rdobuilder a10373
- Remove conflicting files (#512760)
rdobuilder a10373
rdobuilder a10373
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.6-2
rdobuilder a10373
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
rdobuilder a10373
rdobuilder a10373
* Wed Jun 24 2009 Kushal Das <kushal@fedoraproject.org> 1.4.6-1
rdobuilder a10373
- Initial release
rdobuilder a10373