diff --git a/README.md b/README.md new file mode 100644 index 0000000..55b5753 --- /dev/null +++ b/README.md @@ -0,0 +1,70 @@ +# Photons RPM Packages + +[Photons is an asynchronous Python3.6+ framework](https://photons.delfick.com) +for interacting with [LIFX](https://www.lifx.com.au) devices. + +[Packages are avaialble from COPR](https://copr.fedorainfracloud.org/coprs/djelibeybi/photons/) +for Fedora Rawhide, Fedora 33 and EL8-derivatives, e.g. RHEL8, CentOS Stream +and Oracle Linux 8 for both `x86_64` and `aarch64` architectures. + +## Installation + +1. [Enable the `djelibeybi/photons` COPR repository](https://docs.pagure.org/copr.copr/how_to_enable_repo.html#how-to-enable-repo) +1. Run `dnf install python3-lifx-photons-core` to install the core framework and `lifx` command-line utility. +1. (Optional) run `dnf install python3-lifx-photons-arranger` to install the LIFX Tile arranger tool. +1. (Optional) run `dnf install python3-lifx-photons-interactor` to install Photons Interactor, a + Photons powered server that provides a JSON API for interacting with LIFX devices on the local network. + +## Configuration + +To allow discovery of LIFX devices, run: + +```shell +# firewall-cmd --permanent --add-service=lifx-discovery +# firewall-cmd --reload +``` + +To allow incoming connections to Photons Interactor (if installed), run: + +```shell +# firewall-cmd --permanent --add-service=photons-interactor +# firewall-cmd --reload +``` + +To enable and start Photons Interactor after installation, run: + +```shell +# systemctl enable --now photons-interactor +``` + +## License + +Each RPM `.spec` file is released under the same license as the upstream package: + +* [Apache 2.0 Licence][Apache-2.0] + * [`python-aiohttp.spec`](python-aiohttp/python-aiohttp.spec) + * [`python-tornado.spec`](python-tornado/python-tornado.spec) + +* [ISC License][ISC] + * [`python-kdtree.spec`](python-kdtree/python-kdtree.spec) + +* [MIT License][MIT] + * [`python-delfick-project.spec`](python-delfick-project/python-delfick-project.spec) + * [`python-lifx-photons-arranger.spec`](python-lifx-photons-arranger/python-lifx-photons-arranger.spec) + * [`python-lifx-photons-core.spec`](python-lifx-photons-core/python-lifx-photons-core.spec) + * [`python-lifx-photons-interactor.spec`](python-lifx-photons-interactor/python-lifx-photons-interactor.spec) + * [`python-lru-dict.spec`](python-lru-dict/python-lru-dict.spec) + * [`python-ruamel-yaml.spec`](python-ruamel-yaml/python-ruamel-yaml.spec) + * [`python-whirlwind-web.spec`](python-whirlwind-web/python-whirlwind-web.spec) + +* [Python Software Foundation License][PSFL] + * [`python-bitarray.spec`](python-bitarray/python-bitarray.spec) + +* [Unlicense][UNLICENSE] + * [`python-rainbow_logging_handler.spec`](python-rainbow_logging_handler/python-rainbow_logging_handler.spec) + +[Apache-2.0]: https://choosealicense.com/licenses/apache-2.0/ +[ISC]: https://choosealicense.com/licenses/isc/ +[MIT]: https://choosealicense.com/licenses/mit/ +[PSFL]: https://github.com/ilanschnell/bitarray/blob/master/LICENSE +[UNLICENSE]: https://choosealicense.com/licenses/unlicense/ diff --git a/python-aiohttp/aiohttp-3.7.3.tar.gz b/python-aiohttp/aiohttp-3.7.3.tar.gz new file mode 100644 index 0000000..ff16c67 Binary files /dev/null and b/python-aiohttp/aiohttp-3.7.3.tar.gz differ diff --git a/python-aiohttp/python-aiohttp.spec b/python-aiohttp/python-aiohttp.spec new file mode 100644 index 0000000..bac2398 --- /dev/null +++ b/python-aiohttp/python-aiohttp.spec @@ -0,0 +1,364 @@ +%global srcname aiohttp +%global debug_package %{nil} + +Name: python-%{srcname} +Version: 3.7.3 +Release: 1%{?dist} +Summary: Python HTTP client/server for asyncio + +License: ASL 2.0 +URL: https://github.com/aio-libs/aiohttp +Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz +# Unbundle http-parser +Patch0: unbundle-http-parser.patch + +BuildRequires: gcc +BuildRequires: http-parser-devel + +# EPEL8 is utilizing the CentOS Devel repo for some packages. However, this is +# not available for s390x, so exclude it. +# https://fedoraproject.org/wiki/EPEL/FAQ#RHEL_8.2B_has_binaries_in_the_release.2C_but_is_missing_some_corresponding_-devel_package._How_do_I_build_a_package_that_needs_that_missing_-devel_package.3F +%if %{defined el8} +ExcludeArch: s390x +%endif + +%description +Python HTTP client/server for asyncio which supports both the client and the +server side of the HTTP protocol, client and server websocket, and webservers +with middlewares and pluggable routing. + +%package -n python3-%{srcname} +Summary: %{summary} + +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-Cython + +Recommends: python%{python3_version}dist(aiodns) +%{?python_provide:%python_provide python3-%{srcname}} + +%description -n python3-%{srcname} +Python HTTP client/server for asyncio which supports both the client and the +server side of the HTTP protocol, client and server websocket, and webservers +with middlewares and pluggable routing. + +%prep +%autosetup -p 1 -n %{srcname}-%{version} + +%build +%py3_build + +%install +%py3_install + +%files -n python3-%{srcname} +%doc CHANGES.rst CONTRIBUTING.rst CONTRIBUTORS.txt HISTORY.rst README.rst +%license LICENSE.txt +%{python3_sitearch}/%{srcname}-*.egg-info/ +%{python3_sitearch}/%{srcname}/ + +%changelog +* Fri Dec 11 2020 Fabian Affolter - 3.7.3-1 +- Update to latest upstream release 3.7.3 + +* Wed Dec 09 2020 Fabian Affolter - 3.7.2-1 +- Update to latest upstream release 3.7.2 + +* Mon Oct 26 2020 Fabian Affolter - 3.7.1-1 +- Update to new upstream version 3.7.1 + +* Wed Oct 14 2020 Fabian Affolter - 3.6.3-1 +- Update to new upstream version 3.6.3 + +* Tue Jul 28 2020 Fedora Release Engineering - 3.6.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun May 24 2020 Miro Hrončok - 3.6.2-4 +- Rebuilt for Python 3.9 + +* Wed Apr 08 2020 Carl George - 3.6.2-3 +- Don't build for s390x on EL8 + +* Thu Jan 30 2020 Fedora Release Engineering - 3.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Fri Oct 25 2019 Fabian Affolter - 3.6.2-1 +- Update to new upstream version 3.6.2 + +* Sat Sep 21 2019 Fabian Affolter - 3.6.1-1 +- Update to new upstream version 3.6.1 + +* Wed Sep 18 2019 Fabian Affolter - 3.6.0-1 +- Update to new upstream version 3.6.0 + +* Mon Aug 19 2019 Miro Hrončok - 3.5.4-5 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 3.5.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Jun 01 2019 Fabian Affolter - 3.5.4-3 +- Remove dep generator + +* Sat Feb 02 2019 Fedora Release Engineering - 3.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jan 12 2019 Fabian Affolter - 3.5.4-1 +- Update to new upstream version 3.5.4 + +* Fri Jan 11 2019 Fabian Affolter - 3.5.3-1 +- Update to new upstream version 3.5.3 + +* Thu Jan 10 2019 Fabian Affolter - 3.5.2-1 +- Update to new upstream version 3.5.2 + +* Wed Dec 26 2018 Fabian Affolter - 3.5.1-1 +- Update to new upstream version 3.5.1 + +* Thu Sep 06 2018 Fabian Affolter - 3.4.4-1 +- Update to new upstream version 3.4.4 (rhbz#1625634) + +* Wed Sep 05 2018 Igor Gnatenko - 3.4.3-1 +- Update to 3.4.3 + +* Sun Sep 02 2018 Igor Gnatenko - 3.4.2-1 +- Update to 3.4.2 + +* Mon Aug 27 2018 Igor Gnatenko - 3.4.0-4 +- Unbundle http-parser (rhbz#1622508) + +* Mon Aug 27 2018 Fabian Affolter - 3.4.0-3 +- Fix rhbz#1622310 + +* Sat Aug 25 2018 Igor Gnatenko - 3.4.0-2 +- Recommend aiodns + +* Sat Aug 25 2018 Fabian Affolter - 3.4.0-1 +- Update to new upstream version 3.4.0 (rhbz#1622288) + +* Fri Jul 13 2018 Fedora Release Engineering - 3.3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jun 19 2018 Miro Hrončok - 3.3.2-2 +- Rebuilt for Python 3.7 + +* Tue Jun 12 2018 Fabian Affolter - 3.3.2-1 +- Update to new upstream version 3.3.2 + +* Wed Jun 06 2018 Fabian Affolter - 3.3.1-1 +- Update to new upstream version 3.3.1 + +* Fri Jun 01 2018 Fabian Affolter - 3.3.0-1 +- Update to new upstream version 3.3.0 (rhbz#1585170) + +* Thu May 10 2018 Fabian Affolter - 3.2.1-1 +- Update to new upstream version 3.2.1 (rhbz#1576796) + +* Mon May 07 2018 Fabian Affolter - 3.2.0-1 +- Update to new upstream version 3.2.0 (rhbz#1575435) + +* Sat Apr 14 2018 Fabian Affolter - 3.1.3-1 +- Update to new upstream version 3.1.3 (rhbz#1567093) + +* Fri Apr 06 2018 Fabian Affolter - 3.1.2-1 +- Update to new upstream version 3.1.2 + +* Tue Mar 27 2018 Fabian Affolter - 3.1.1-1 +- Update to new upstream version 3.1.1 + +* Fri Mar 23 2018 Fabian Affolter - 3.1.0-1 +- Update to new upstream version 3.1.0 + +* Thu Mar 15 2018 Fabian Affolter - 3.0.9-1 +- Update to new upstream version 3.0.9 (rhbz#1556612) + +* Tue Mar 13 2018 Fabian Affolter - 3.0.8-1 +- Update to new upstream version 3.0.8 + +* Fri Mar 09 2018 Fabian Affolter - 3.0.7-1 +- Update to new upstream version 3.0.7 (rhbz#1548601) + +* Tue Mar 06 2018 Fabian Affolter - 3.0.6-1 +- Update to new upstream version 3.0.6 (rhbz#1548601) + +* Wed Feb 28 2018 Fabian Affolter - 3.0.5-1 +- Update to new upstream version 3.0.5 (rhbz#1548601) + +* Mon Feb 12 2018 Fabian Affolter - 3.0.1-1 +- Update to new upstream version 3.0.1 + +* Mon Feb 12 2018 Fabian Affolter - 3.0.0-1 +- Update to new upstream version 3.0.0 (rhbz#1544413) + +* Fri Feb 09 2018 Fedora Release Engineering - 2.3.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Feb 02 2018 Fabian Affolter - 2.3.10-1 +- Update to new upstream version 2.3.10 (rhbz#1541369) + +* Fri Jan 19 2018 Igor Gnatenko - 2.3.9-2 +- Enable usage of dependency generator + +* Wed Jan 17 2018 Igor Gnatenko - 2.3.9-1 +- Update to 2.3.9 + +* Mon Jan 15 2018 Fabian Affolter - 2.3.8-1 +- Update to new upstream version 2.3.8 + +* Wed Dec 27 2017 Fabian Affolter - 2.3.7-1 +- Update to new upstream version 2.3.7 (rhbz#1529275) + +* Mon Dec 04 2017 Fabian Affolter - 2.3.6-1 +- Update to new upstream version 2.3.6 + +* Fri Dec 01 2017 Fabian Affolter - 2.3.5-1 +- Update to new upstream version 2.3.5 + +* Fri Nov 17 2017 Fabian Affolter - 2.3.3-1 +- Update to new upstream version 2.3.3 (rhbz#1514434) + +* Thu Nov 02 2017 Igor Gnatenko - 2.3.2-1 +- Update to 2.3.2 + +* Fri Oct 20 2017 Fabian Affolter - 2.3.1-1 +- Update to new upstream version 2.3.1 (rhbz#1504339) + +* Wed Oct 18 2017 Fabian Affolter - 2.3.0-1 +- Update to new upstream version 2.3.0 + +* Fri Aug 04 2017 Fabian Affolter - 2.2.5-1 +- Update to new upstream version 2.2.5 + +* Thu Aug 03 2017 Fabian Affolter - 2.2.4-1 +- Update to new upstream version 2.2.4 + +* Thu Aug 03 2017 Fedora Release Engineering - 2.2.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 2.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Jul 06 2017 Fabian Affolter - 2.2.3-1 +- Update to new upstream version 2.2.3 (rhbz#1467742) + +* Mon Jul 03 2017 Fabian Affolter - 2.2.2-1 +- Update to new upstream version 2.2.2 + +* Mon Jul 03 2017 Fabian Affolter - 2.2.1-1 +- Update to new upstream version 2.2.1 (rhbz#1467114) + +* Tue Jun 20 2017 Fabian Affolter - 2.2.0-1 +- Update to new upstream version 2.2.0 (rhbz#1463234) + +* Sat May 27 2017 Fabian Affolter - 2.1.0-1 +- Update URL +- Update to new upstream version 2.1.0 (rhbz#1456063) + +* Fri Apr 14 2017 Igor Gnatenko - 2.0.7-1 +- Update to 2.0.7 + +* Fri Apr 07 2017 Igor Gnatenko - 2.0.6-1 +- Update to 2.0.6 + +* Thu Mar 30 2017 Igor Gnatenko - 2.0.5-1 +- Update to 2.0.5 + +* Tue Mar 28 2017 Igor Gnatenko - 2.0.4-1 +- Update to 2.0.4 + +* Sat Mar 25 2017 Fabian Affolter - 2.0.3-1 +- Update to new upstream version 2.0.3 (rhbz#1435844) + +* Thu Mar 23 2017 Igor Gnatenko - 2.0.2-3 +- Specify proper yarl version + +* Thu Mar 23 2017 Igor Gnatenko - 2.0.2-2 +- Fix requires + +* Thu Mar 23 2017 Fabian Affolter - 2.0.2-1 +- Update to new upstream version 2.0.2 (rhbz#1432690) + +* Wed Mar 15 2017 Igor Gnatenko - 1.3.4-1 +- Update to 1.3.4 + +* Mon Feb 20 2017 Fabian Affolter - 1.3.3-1 +- Update to new upstream version 1.3.3 (rhbz#1423053) + +* Thu Feb 09 2017 Igor Gnatenko - 1.3-1 +- Update to 1.3 + +* Sun Jan 22 2017 Fabian Affolter - 1.2-1 +- Update to new upstream version 1.2 +- Add new requirement +- Add real description + +* Sun Jan 01 2017 Igor Gnatenko - 1.0.5-3 +- Add missing dependency on async-timeout (RHBZ #1391287) + +* Mon Dec 19 2016 Miro Hrončok - 1.0.5-2 +- Rebuild for Python 3.6 + +* Mon Oct 31 2016 Fabian Affolter - 1.0.5-1 +- Update to new upstream version 1.0.5 + +* Tue Aug 30 2016 Fabian Affolter - 0.22.5-1 +- Update to new upstream version 0.22.5 + +* Wed Aug 10 2016 Igor Gnatenko - 0.21.6-4 +- Move requires under real subpackage + +* Tue Jul 19 2016 Fedora Release Engineering - 0.21.6-3 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Jun 23 2016 Igor Gnatenko - 0.21.6-2 +- Add missing Requires: python3-multidict (RHBZ #1349576) + +* Thu May 12 2016 Igor Gnatenko - 0.21.6-1 +- Update to 0.21.6 + +* Tue Mar 22 2016 Fabian Affolter - 0.21.5-1 +- Update to new upstream version 0.21.5 + +* Sat Mar 05 2016 Fabian Affolter - 0.21.2-1 +- Update to new upstream version 0.21.2 + +* Sun Feb 14 2016 Fabian Affolter - 0.21.1-1 +- Add requirements (rhbz#1300186) +- Update to new upstream version 0.21.1 + +* Thu Feb 04 2016 Fabian Affolter - 0.21.0-1 +- Update to new upstream version 0.21.0 + +* Thu Feb 04 2016 Fedora Release Engineering - 0.19.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Nov 27 2015 Fabian Affolter - 0.19.0-1 +- Update py3 +- Update to new upstream version 0.19.0 + +* Tue Nov 10 2015 Fedora Release Engineering - 0.17.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Fri Oct 16 2015 Fabian Affolter - 0.17.4-1 +- Update to new upstream version 0.17.4 + +* Sat Aug 01 2015 Fabian Affolter - 0.16.6-2 +- Fix license + +* Sat Aug 01 2015 Fabian Affolter - 0.16.6-1 +- Update to lastest upstream release 0.16.6 (rhbz#1231670) + +* Thu Jun 18 2015 Fedora Release Engineering - 0.16.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Jun 15 2015 Fabian Affolter - 0.16.5-1 +- Update to lastest upstream release 0.16.5 (rhbz#1231670) + +* Wed Nov 26 2014 Fabian Affolter - 0.10.2-1 +- Update to lastest upstream release 0.10.2 + +* Wed Oct 08 2014 Fabian Affolter - 0.9.1-2 +- Build only a py3 package + +* Wed Feb 26 2014 Fabian Affolter - 0.9.1-1 +- Initial package for Fedora diff --git a/python-aiohttp/unbundle-http-parser.patch b/python-aiohttp/unbundle-http-parser.patch new file mode 100644 index 0000000..d2b5f87 --- /dev/null +++ b/python-aiohttp/unbundle-http-parser.patch @@ -0,0 +1,23 @@ +diff -Nur aiohttp-3.7.1/aiohttp/_cparser.pxd aiohttp-3.7.1-new/aiohttp/_cparser.pxd +--- aiohttp-3.7.1/aiohttp/_cparser.pxd 2020-10-25 08:26:45.000000000 +0100 ++++ aiohttp-3.7.1-new/aiohttp/_cparser.pxd 2020-10-26 09:07:05.024487885 +0100 +@@ -1,7 +1,7 @@ + from libc.stdint cimport uint16_t, uint32_t, uint64_t + + +-cdef extern from "../vendor/http-parser/http_parser.h": ++cdef extern from "http_parser.h": + ctypedef int (*http_data_cb) (http_parser*, + const char *at, + size_t length) except -1 +diff -Nur aiohttp-3.7.1/setup.py aiohttp-3.7.1-new/setup.py +--- aiohttp-3.7.1/setup.py 2020-10-25 08:26:45.000000000 +0100 ++++ aiohttp-3.7.1-new/setup.py 2020-10-26 09:07:05.024487885 +0100 +@@ -27,7 +27,6 @@ + "aiohttp._http_parser", + [ + "aiohttp/_http_parser.c", +- "vendor/http-parser/http_parser.c", + "aiohttp/_find_header.c", + ], + define_macros=[("HTTP_PARSER_STRICT", 0)], diff --git a/python-bitarray/bitarray-1.6.1.tar.gz b/python-bitarray/bitarray-1.6.1.tar.gz new file mode 100644 index 0000000..682f2d4 Binary files /dev/null and b/python-bitarray/bitarray-1.6.1.tar.gz differ diff --git a/python-bitarray/python-bitarray.spec b/python-bitarray/python-bitarray.spec new file mode 100644 index 0000000..d0828a9 --- /dev/null +++ b/python-bitarray/python-bitarray.spec @@ -0,0 +1,178 @@ +%global srcname bitarray +%global sum Efficient Array of Booleans --C Extensions + +Name: python-%{srcname} +Version: 1.6.1 +Release: 1%{?dist} +Summary: %{sum} + +License: Python +URL: https://pypi.python.org/pypi/%{srcname}/ +Source0: https://pypi.python.org/packages/source/b/%{srcname}/%{srcname}-%{version}.tar.gz + +BuildRequires: gcc +BuildRequires: python%{python3_pkgversion}-devel +BuildRequires: python%{python3_pkgversion}-setuptools + + +%description +Bitarrays are sequence types and behave very much like usual lists. +Eight bits are represented by one byte in contiguous block of memory. +The user can select between two representations; little-endian and big-endian. +Most of the functionality is implemented in C.Methods for accessing the machine +representation are provided. This can be useful when bit level access to binary +files is required, such as portable bitmap image files (.pbm). Also, when +dealing with compressed data which uses variable bit length encoding +you may find this module useful. + + +%package -n python%{python3_pkgversion}-%{srcname} +Summary: %{sum} +%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} + +%description -n python%{python3_pkgversion}-%{srcname} +Bitarrays are sequence types and behave very much like usual lists. +Eight bits are represented by one byte in contiguous block of memory. +The user can select between two representations; little-endian and big-endian. +Most of the functionality is implemented in C.Methods for accessing the machine +representation are provided. This can be useful when bit level access to binary +files is required, such as portable bitmap image files (.pbm). Also, when +dealing with compressed data which uses variable bit length encoding +you may find this module useful. +This is Python 3 version. + + +%prep +%setup -q -n %{srcname}-%{version} + +%build +%py3_build + + +%install +%py3_install + + +%files -n python%{python3_pkgversion}-%{srcname} +%{python3_sitearch}/%{srcname}* + + +%changelog +* Fri Nov 06 2020 Fedora Release Monitoring - 1.6.1-1 +- Update to 1.6.1 (#1853987) + +* Tue Jul 28 2020 Fedora Release Engineering - 1.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun Jun 21 2020 Sérgio Basto - 1.2.2-1 +- Update python-bitarray to 1.2.2 (#1837147) + +* Tue May 26 2020 Miro Hrončok - 1.2.1-3 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Jan 06 2020 Fedora Release Monitoring - 1.2.1-1 +- Update to 1.2.1 (#1771103) + +* Tue Sep 03 2019 Sérgio Basto - 1.0.1-1 +- Update to 1.0.1 + +* Mon Aug 19 2019 Miro Hrončok - 0.9.3-3 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 0.9.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Thu Jun 13 2019 Sérgio Basto - 0.9.3-1 +- Update to 0.9.3 + +* Sat Feb 02 2019 Fedora Release Engineering - 0.8.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Tue Jan 22 2019 Miro Hrončok - 0.8.3-4 +- Subpackage python2-bitarray has been removed + See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal + +* Mon Jul 23 2018 Nick Bebout - 0.8.3-3 +- Add gcc to BuildRequires + +* Fri Jul 13 2018 Fedora Release Engineering - 0.8.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Mon Jul 9 2018 Nick Bebout - 0.8.3-1 +- Update to 0.8.3 + +* Tue Jun 19 2018 Miro Hrončok - 0.8.1-10 +- Rebuilt for Python 3.7 + +* Fri Feb 09 2018 Fedora Release Engineering - 0.8.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 0.8.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.8.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 0.8.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 0.8.1-5 +- Rebuild for Python 3.6 + +* Tue Oct 04 2016 Sérgio Basto - 0.8.1-4 +- Clean trailing whitespaces +- Add support to epel 7 and 6, disable python3 in el6 + +* Tue Jul 19 2016 Fedora Release Engineering - 0.8.1-3 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Sun Jul 03 2016 Sérgio Basto - 0.8.1-2 +- Replace python-bitarray with python2-bitarray + https://fedoraproject.org/wiki/Packaging:Guidelines#Renaming.2FReplacing_Existing_Packages + +* Thu Jun 30 2016 Sérgio Basto - 0.8.1-1 +- Clean up the spec + +* Thu Jun 09 2016 Dominika Krejci +- Add Python 3 +- Upgrade to version 0.8.1 + +* Thu Feb 04 2016 Fedora Release Engineering - 0.3.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jun 18 2015 Fedora Release Engineering - 0.3.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sun Aug 17 2014 Fedora Release Engineering - 0.3.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 0.3.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Aug 04 2013 Fedora Release Engineering - 0.3.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Feb 14 2013 Fedora Release Engineering - 0.3.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Jul 21 2012 Fedora Release Engineering - 0.3.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Jan 14 2012 Fedora Release Engineering - 0.3.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Feb 08 2011 Fedora Release Engineering - 0.3.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Jul 21 2010 David Malcolm - 0.3.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Sun Jul 26 2009 Fedora Release Engineering - 0.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Apr 08 2009 Ramakrishna Reddy Yekulla 0.3.5-1 +- Initial RPM release + diff --git a/python-delfick-project/delfick_project-0.7.8.tar.gz b/python-delfick-project/delfick_project-0.7.8.tar.gz new file mode 100644 index 0000000..7705de6 Binary files /dev/null and b/python-delfick-project/delfick_project-0.7.8.tar.gz differ diff --git a/python-delfick-project/python-delfick-project.spec b/python-delfick-project/python-delfick-project.spec new file mode 100644 index 0000000..c088ed5 --- /dev/null +++ b/python-delfick-project/python-delfick-project.spec @@ -0,0 +1,61 @@ +# Created by pyp2rpm-3.3.5 +%global pypi_name delfick-project + +Name: python-%{pypi_name} +Version: 0.7.8 +Release: 1%{?dist} +Summary: Common code I use in all my projects + +License: MIT +URL: https://github.com/delfick/delfick_project +Source0: https://files.pythonhosted.org/packages/source/d/%{pypi_name}/delfick_project-%{version}.tar.gz +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3dist(setuptools) + +%description +Project helpers This is a collection of code that I use in nearly all my +projects: +* Mainline helper +* Custom python exception class +* Logging helpers +* Option merging +* Validation and Normalisation of data +* Module addon system + +%package -n python3-%{pypi_name} +Summary: %{summary} +%{?python_provide:%python_provide python3-%{pypi_name}} + +Requires: python3dist(rainbow-logging-handler) = 2.2.2 +%description -n python3-%{pypi_name} +Project helpers This is a collection of code that I use in nearly all my +projects: +* Mainline helper +* Custom python exception class +* Logging helpers +* Option merging +* Validation and Normalisation of data +* Module addon system + +%prep +%autosetup -n delfick_project-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +%install +%py3_install + +%files -n python3-%{pypi_name} +%license LICENSE +%doc README.rst +%{python3_sitelib}/delfick_project +%{python3_sitelib}/delfick_project-%{version}-py%{python3_version}.egg-info + +%changelog +* Wed Jan 06 2021 Avi Miller - 0.7.8-1 +- Initial packaging of delfick-project from PyPi. diff --git a/python-kdtree/kdtree-0.16.tar.gz b/python-kdtree/kdtree-0.16.tar.gz new file mode 100644 index 0000000..6e91a8f Binary files /dev/null and b/python-kdtree/kdtree-0.16.tar.gz differ diff --git a/python-kdtree/python-kdtree.spec b/python-kdtree/python-kdtree.spec new file mode 100644 index 0000000..ac705bc --- /dev/null +++ b/python-kdtree/python-kdtree.spec @@ -0,0 +1,50 @@ +# Created by pyp2rpm-3.3.5 +%global pypi_name kdtree + +Name: python-%{pypi_name} +Version: 0.16 +Release: 1%{?dist} +Summary: A Python implemntation of a kd-tree + +License: ISC license +URL: https://github.com/stefankoegl/kdtree +Source0: %{pypi_source} +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3dist(setuptools) + +%description +This package provides a simple implementation of a kd-tree in Python. + +%package -n python3-%{pypi_name} +Summary: %{summary} +%{?python_provide:%python_provide python3-%{pypi_name}} + +%description -n python3-%{pypi_name} +This package provides a simple implementation of a kd-tree in Python. + + +%prep +%autosetup -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +%install +%py3_install + +%check +%{__python3} setup.py test + +%files -n python3-%{pypi_name} +%license LICENSE +%doc readme.md +%pycached %{python3_sitelib}/%{pypi_name}.py +%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info + +%changelog +* Wed Jan 06 2021 Avi Miller - 0.16-1 +- Initial packaging of kdtree from PyPi. diff --git a/python-lifx-photons-arranger/lifx-photons-arranger-0.5.9.tar.gz b/python-lifx-photons-arranger/lifx-photons-arranger-0.5.9.tar.gz new file mode 100644 index 0000000..c04eba5 Binary files /dev/null and b/python-lifx-photons-arranger/lifx-photons-arranger-0.5.9.tar.gz differ diff --git a/python-lifx-photons-arranger/python-lifx-photons-arranger.spec b/python-lifx-photons-arranger/python-lifx-photons-arranger.spec new file mode 100644 index 0000000..339cfb2 --- /dev/null +++ b/python-lifx-photons-arranger/python-lifx-photons-arranger.spec @@ -0,0 +1,54 @@ +%global pypi_name lifx-photons-arranger + +Name: python-%{pypi_name} +Version: 0.5.9 +Release: 1%{?dist} +Summary: A web interface for changing the user co-ordinates of LIFX tiles + +License: MIT +URL: http://github.com/delfick/photons/apps/arranger +Source0: %{pypi_source} +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3dist(setuptools) + +%global _description %{expand: +This is a web UI for arranging the positions of a number of LIFX Tiles relative +to each other.} + +%description %_description + +%package -n python3-%{pypi_name} +Summary: %{summary} + +Provides: lifx-photons-arranger +Provides: photons-arranger +%{?python_provide:%python_provide python3-%{pypi_name}} + +Requires: python3dist(lifx-photons-core) >= 0.32.5 +Requires: python3dist(setuptools) +Requires: python3dist(tornado) >= 5.1.1 +Requires: python3dist(whirlwind-web) >= 0.9 +%description -n python3-%{pypi_name} %_description + +%prep +%autosetup -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +%install +%py3_install + +%files -n python3-%{pypi_name} +%license LICENSE +%doc README.rst +%{python3_sitelib}/arranger +%{python3_sitelib}/lifx_photons_arranger-%{version}-py%{python3_version}.egg-info + +%changelog +* Wed Jan 06 2021 Avi Miller - 0.5.9-1 +- Initial packaging of lifx-photons-arranger from PyPi. diff --git a/python-lifx-photons-core/lifx-discovery.xml b/python-lifx-photons-core/lifx-discovery.xml new file mode 100644 index 0000000..5039196 --- /dev/null +++ b/python-lifx-photons-core/lifx-discovery.xml @@ -0,0 +1,6 @@ + + + LIFX discovery + The LIFX discovery protocol uses UDP broadcasts to discover LIFX devices on the local network. + + diff --git a/python-lifx-photons-core/lifx-photons-core-0.32.5.tar.gz b/python-lifx-photons-core/lifx-photons-core-0.32.5.tar.gz new file mode 100644 index 0000000..01a0de9 Binary files /dev/null and b/python-lifx-photons-core/lifx-photons-core-0.32.5.tar.gz differ diff --git a/python-lifx-photons-core/python-lifx-photons-core.spec b/python-lifx-photons-core/python-lifx-photons-core.spec new file mode 100644 index 0000000..0216985 --- /dev/null +++ b/python-lifx-photons-core/python-lifx-photons-core.spec @@ -0,0 +1,82 @@ +%global pypi_name lifx-photons-core + +Name: python-%{pypi_name} +Version: 0.32.5 +Release: 1%{?dist} +Summary: Photons core modules + +License: MIT +URL: http://github.com/delfick/photons +Source0: %{pypi_source} +Source1: lifx-discovery.xml +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3dist(bitarray) = 1.6.1 +BuildRequires: python3dist(delfick-project) = 0.7.8 +BuildRequires: python3dist(kdtree) = 0.16 +BuildRequires: python3dist(lru-dict) = 1.1.6 +BuildRequires: python3dist(rainbow-logging-handler) = 2.2.2 +BuildRequires: python3dist(ruamel.yaml) = 0.16.12 +BuildRequires: python3dist(setuptools) + +%global _description %{expand: +Photons is Python 3.6+ framework for interacting with LIFX products.} + +%description %_description + +%package -n python3-%{pypi_name} +Summary: %{summary} + +Provides: lifx-photons-core +Provides: photons-core +%{?python_provide:%python_provide python3-%{pypi_name}} + +Requires: firewalld-filesystem +Requires: python3dist(bitarray) = 1.6.1 +Requires: python3dist(delfick-project) = 0.7.8 +Requires: python3dist(kdtree) = 0.16 +Requires: python3dist(lru-dict) = 1.1.6 +Requires: python3dist(rainbow-logging-handler) = 2.2.2 +Requires: python3dist(ruamel.yaml) = 0.16.12 +Requires: python3dist(setuptools) + +%description -n python3-%{pypi_name} %_description + +%prep +%autosetup -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +%install +%py3_install + +mkdir -p %{buildroot}%{_usr}/lib/firewalld/services +install -m 644 %{SOURCE1} %{buildroot}%{_usr}/lib/firewalld/services + +%post -n python3-%{pypi_name} +%firewalld_reload + +%files -n python3-%{pypi_name} +%license LICENSE +%doc README.rst +%{_bindir}/lifx +%{_bindir}/run_photons_core_tests +%{_usr}/lib/firewalld/services/lifx-discovery.xml +%pycached %{python3_sitelib}/photons_core.py +%pycached %{python3_sitelib}/photons_pytest.py +%{python3_sitelib}/photons_app +%{python3_sitelib}/photons_canvas +%{python3_sitelib}/photons_control +%{python3_sitelib}/photons_messages +%{python3_sitelib}/photons_products +%{python3_sitelib}/photons_protocol +%{python3_sitelib}/photons_transport +%{python3_sitelib}/lifx_photons_core-%{version}-py%{python3_version}.egg-info + +%changelog +* Wed Jan 06 2021 Avi Miller - 0.32.5-1 +- Initial packaging of lifx-photons-core from PyPi. diff --git a/python-lifx-photons-interactor/lifx-photons-interactor-0.8.1.tar.gz b/python-lifx-photons-interactor/lifx-photons-interactor-0.8.1.tar.gz new file mode 100644 index 0000000..42be763 Binary files /dev/null and b/python-lifx-photons-interactor/lifx-photons-interactor-0.8.1.tar.gz differ diff --git a/python-lifx-photons-interactor/photons-interactor.service b/python-lifx-photons-interactor/photons-interactor.service new file mode 100644 index 0000000..bc16a6e --- /dev/null +++ b/python-lifx-photons-interactor/photons-interactor.service @@ -0,0 +1,15 @@ +[Unit] +Description=A server for interacting with LIFX lights over the LAN +Documentation=https://photons.delfick.com +After=network.target + +[Service] +User=photons +Environment=PYTHONUNBUFFERED=1 +Environment=LIFX_CONFIG=/etc/photons/interactor.yml +ExecStart=/usr/bin/lifx lan:interactor +KillMode=process +Restart=on-failure + +[Install] +WantedBy=multi-user.target diff --git a/python-lifx-photons-interactor/photons-interactor.sysusers b/python-lifx-photons-interactor/photons-interactor.sysusers new file mode 100644 index 0000000..b4028b7 --- /dev/null +++ b/python-lifx-photons-interactor/photons-interactor.sysusers @@ -0,0 +1 @@ +u photons - "Photons Interactor" /var/lib/photons diff --git a/python-lifx-photons-interactor/photons-interactor.xml b/python-lifx-photons-interactor/photons-interactor.xml new file mode 100644 index 0000000..241588f --- /dev/null +++ b/python-lifx-photons-interactor/photons-interactor.xml @@ -0,0 +1,6 @@ + + + Photons Interactor + A server for interacting with LIFX lights over the LAN. + + diff --git a/python-lifx-photons-interactor/photons-interactor.yml b/python-lifx-photons-interactor/photons-interactor.yml new file mode 100644 index 0000000..ce3e75c --- /dev/null +++ b/python-lifx-photons-interactor/photons-interactor.yml @@ -0,0 +1,12 @@ +interactor: + # The server has no authentication, so it's highly recommended that you + # host it behind a VPN or firewall + host: 0.0.0.0 + + # The port used by the server + port: 6100 + + database: + # Scenes use a sqlite3 database and one will be created when the server + # starts up if one does not already exist + uri: "/var/lib/photons/interactor.db" diff --git a/python-lifx-photons-interactor/python-lifx-photons-interactor.spec b/python-lifx-photons-interactor/python-lifx-photons-interactor.spec new file mode 100644 index 0000000..f16ccd8 --- /dev/null +++ b/python-lifx-photons-interactor/python-lifx-photons-interactor.spec @@ -0,0 +1,111 @@ +%global pypi_name lifx-photons-interactor +%global short_name photons-interactor + +Name: python-%{pypi_name} +Version: 0.8.1 +Release: 1%{?dist} +Summary: A Photons powered server for interacting with LIFX lights + +License: MIT +URL: https://photons.delfick.com +Source0: %{pypi_source} +Source1: %{short_name}.service +Source2: %{short_name}.yml +Source3: %{short_name}.xml +Source4: %{short_name}.sysusers + +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3dist(setuptools) + +BuildRequires: systemd +BuildRequires: systemd-rpm-macros + +%{?systemd_requires} +%{?sysusers_requires_compat} + +# Bypass the strict dependencies declared upstream +%{?python_disable_dependency_generator} + +%global _description %{expand: +A Photons powered server for interacting with LIFX lights over the lan. +The server allows us to do continuous discovery and information gathering +so that all commands are super fast.} + +%description %_description + +%package -n python3-%{pypi_name} +Summary: %{summary} + +Provides: lifx-photons-interactor +Provides: photons-interactor +%{?python_provide:%python_provide python3-%{pypi_name}} + +Requires: firewalld-filesystem +Requires: python3dist(aiohttp) >= 3.7.2 +Requires: python3dist(alembic) >= 1.3.2 +Requires: python3dist(lifx-photons-core) >= 0.32.5 +Requires: python3dist(setuptools) +Requires: python3dist(sqlalchemy) > 1.3.3 +Requires: python3dist(tornado) >= 6.1 +Requires: python3dist(whirlwind-web) >= 0.9 + +%description -n python3-%{pypi_name} %_description + +%prep +%autosetup -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +%install +%py3_install + +mkdir -p %{buildroot}%{_unitdir} \ + %{buildroot}%{_sysconfdir}/photons \ + %{buildroot}%{_sysusersdir} \ + %{buildroot}%{_usr}/lib/firewalld/services \ + %{buildroot}%{_var}/lib/photons + +install -m 644 %SOURCE1 %{buildroot}%{_unitdir} +install -m 644 %SOURCE2 %{buildroot}%{_sysconfdir}/photons/interactor.yml +install -m 644 %SOURCE4 %{buildroot}%{_sysusersdir}/%{short_name}.conf +install -m 644 %SOURCE3 %{buildroot}%{_usr}/lib/firewalld/services + +%pre -n python3-%{pypi_name} +%sysusers_create_package %{short_name} %SOURCE4 + +%post -n python3-%{pypi_name} +%systemd_post %{short_name}.service +%firewalld_reload + +%preun -n python3-%{pypi_name} +%systemd_preun %{short_name}.service + +%postun -n python3-%{pypi_name} +%systemd_postun_with_restart %{short_name}.service + +%files -n python3-%{pypi_name} +%license LICENSE +%doc README.rst + +%dir %{_sysconfdir}/photons +%config(noreplace) %{_sysconfdir}/photons/interactor.yml + +%attr(755,photons,-) %dir %{_var}/lib/photons +%attr(644,photons,-) %ghost %{_var}/lib/photons/interactor.db + +# systemd and firewalld configuration files +%{_sysusersdir}/%{short_name}.conf +%{_usr}/lib/firewalld/services/photons-interactor.xml +%{_unitdir}/photons-interactor.service + +%{python3_sitelib}/interactor +%{python3_sitelib}/lifx_photons_interactor-%{version}-py%{python3_version}.egg-info + +%changelog +* Wed Jan 06 2021 Avi Miller - 0.8.1-1 +- Initial packaging of lifx-photons-interactor from PyPi. diff --git a/python-lru-dict/lru-dict-1.1.6.tar.gz b/python-lru-dict/lru-dict-1.1.6.tar.gz new file mode 100644 index 0000000..b21fdc0 Binary files /dev/null and b/python-lru-dict/lru-dict-1.1.6.tar.gz differ diff --git a/python-lru-dict/python-lru-dict.spec b/python-lru-dict/python-lru-dict.spec new file mode 100644 index 0000000..de8680a --- /dev/null +++ b/python-lru-dict/python-lru-dict.spec @@ -0,0 +1,53 @@ +# Created by pyp2rpm-3.3.5 +%global pypi_name lru-dict + +Name: python-%{pypi_name} +Version: 1.1.6 +Release: 1%{?dist} +Summary: An Dict like LRU container + +License: MIT +URL: https://github.com/amitdev/lru-dict +Source0: %{pypi_source} + +BuildRequires: gcc +BuildRequires: python3-devel +BuildRequires: python3dist(setuptools) + +%description +A fixed size dict like container which evicts Least Recently Used (LRU) items +once size limit is exceeded. There are many python implementations available +which does similar things. This is a fast and efficient C implementation. + +%package -n python3-%{pypi_name} +Summary: %{summary} +%{?python_provide:%python_provide python3-%{pypi_name}} + +%description -n python3-%{pypi_name} +A fixed size dict like container which evicts Least Recently Used (LRU) items +once size limit is exceeded. There are many python implementations available +which does similar things. This is a fast and efficient C implementation. + +%prep +%autosetup -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +%install +%py3_install + +%check +%{__python3} setup.py test + +%files -n python3-%{pypi_name} +%license LICENSE +%doc README.rst +%{python3_sitearch}/lru.cpython-* +%{python3_sitearch}/lru_dict-%{version}-py%{python3_version}.egg-info + +%changelog +* Wed Jan 06 2021 Avi Miller - 1.1.6-1 +- Initial packaging of lru-dict from PyPi. diff --git a/python-nose-cov/nose-cov-1.6.tar.gz b/python-nose-cov/nose-cov-1.6.tar.gz new file mode 100644 index 0000000..755fb5d Binary files /dev/null and b/python-nose-cov/nose-cov-1.6.tar.gz differ diff --git a/python-nose-cov/python-nose-cov.spec b/python-nose-cov/python-nose-cov.spec new file mode 100644 index 0000000..382eafa --- /dev/null +++ b/python-nose-cov/python-nose-cov.spec @@ -0,0 +1,112 @@ +Name: python-nose-cov +Version: 1.6 +Release: 21%{?dist} +Summary: nose plugin for coverage reporting, including subprocesses and multiprocessing +Source0: https://pypi.python.org/packages/source/n/nose-cov/nose-cov-%{version}.tar.gz +License: MIT +BuildArch: noarch +Url: http://bitbucket.org/memedough/nose-cov/overview + +BuildRequires: python3-devel +BuildRequires: python3-setuptools + +%description +This plugin produces coverage reports and supports coverage of subprocesses. + +%package -n python3-nose-cov +Summary: nose plugin for coverage reporting, including subprocesses and multiprocessing +Requires: python3-nose +Requires: python3-cov-core +%{?python_provide:%python_provide python3-nose-cov} +%description -n python3-nose-cov +This plugin produces coverage reports and supports coverage of subprocesses. + +%prep +%setup -q -n nose-cov-%{version} +rm -rf nose_cov.egg-info + + +%build +%py3_build + + +%install +%py3_install + + +%files -n python3-nose-cov +%doc README.txt +%doc LICENSE.txt +%{python3_sitelib}/nose_cov*.egg-info +%{python3_sitelib}/nose_cov.py* +%{python3_sitelib}/__pycache__/* + + +%changelog +* Wed Jul 29 2020 Fedora Release Engineering - 1.6-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri May 22 2020 Miro Hrončok - 1.6-20 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 1.6-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Oct 03 2019 Miro Hrončok - 1.6-18 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Sat Aug 17 2019 Miro Hrončok - 1.6-17 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 1.6-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Feb 02 2019 Fedora Release Engineering - 1.6-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 14 2018 Fedora Release Engineering - 1.6-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jun 19 2018 Miro Hrončok - 1.6-13 +- Rebuilt for Python 3.7 + +* Thu Mar 22 2018 John Dulaney - 1.6-13 +- Drop python2 subpackage + +* Fri Feb 09 2018 Fedora Release Engineering - 1.6-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Jan 26 2018 Iryna Shcherbina - 1.6-11 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Thu Jul 27 2017 Fedora Release Engineering - 1.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 1.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 1.6-8 +- Rebuild for Python 3.6 + +* Tue Jul 19 2016 Fedora Release Engineering - 1.6-7 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Feb 04 2016 Fedora Release Engineering - 1.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Nov 19 2015 John Dulaney - 1.6-5 +- Update spec file to new standards + +* Tue Nov 10 2015 Fedora Release Engineering - 1.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Fri Jul 10 2015 John Dulaney - 1.6-3 +- Python 3 + +* Thu Jun 18 2015 Fedora Release Engineering - 1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Sep 29 2014 John Dulaney - 1.6-1 +- Initial packaging +- Spec based on python-nose diff --git a/python-rainbow_logging_handler/python-rainbow_logging_handler.spec b/python-rainbow_logging_handler/python-rainbow_logging_handler.spec new file mode 100644 index 0000000..aa7c809 --- /dev/null +++ b/python-rainbow_logging_handler/python-rainbow_logging_handler.spec @@ -0,0 +1,61 @@ +# Created by pyp2rpm-3.3.5 +%global pypi_name rainbow_logging_handler + +Name: python-%{pypi_name} +Version: 2.2.2 +Release: 1%{?dist} +Summary: Ultimate Python colorized logger with user-custom color + +License: LICENSE.txt +URL: https://github.com/laysakura/rainbow_logging_handler +Source0: %{pypi_source %{pypi_name} %{version} zip} +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3dist(colorama) +BuildRequires: python3dist(coverage) +BuildRequires: python3dist(logutils) +BuildRequires: python3dist(nose) +BuildRequires: python3dist(nose-cov) +BuildRequires: python3dist(setuptools) + +%description +rainbow_logging_handler Ultimate Python colorized logger... contents:: +:local:Usage Generic usage example This script runs like above screenshot... +code-block:: python import sys + +%package -n python3-%{pypi_name} +Summary: %{summary} +%{?python_provide:%python_provide python3-%{pypi_name}} + +Requires: python3dist(colorama) +Requires: python3dist(logutils) +%description -n python3-%{pypi_name} +rainbow_logging_handler Ultimate Python colorized logger... contents:: +:local:Usage Generic usage example This script runs like above screenshot... +code-block:: python import sys + + +%prep +%autosetup -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +%install +%py3_install + +%check +%{__python3} setup.py test + +%files -n python3-%{pypi_name} +%license LICENSE.txt +%doc README.rst +%{python3_sitelib}/%{pypi_name} +%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info + +%changelog +* Wed Jan 06 2021 Avi Miller - 2.2.2-1 +- Initial packaging of rainbow_logging_handler from PyPi. diff --git a/python-rainbow_logging_handler/rainbow_logging_handler-2.2.2.zip b/python-rainbow_logging_handler/rainbow_logging_handler-2.2.2.zip new file mode 100644 index 0000000..fc907cf Binary files /dev/null and b/python-rainbow_logging_handler/rainbow_logging_handler-2.2.2.zip differ diff --git a/python-ruamel-yaml-clib/python-ruamel-yaml-clib.spec b/python-ruamel-yaml-clib/python-ruamel-yaml-clib.spec new file mode 100644 index 0000000..ba983f2 --- /dev/null +++ b/python-ruamel-yaml-clib/python-ruamel-yaml-clib.spec @@ -0,0 +1,73 @@ +%global pypi_name ruamel.yaml.clib +%global pname ruamel-yaml-clib + +# This means version 0.1.2: +%global hash 955989c1f022b95ca1f92bf0abd761ef8aa0b940 + +Name: python-%{pname} +Version: 0.1.2 +Release: 5%{?dist} +Summary: C version of reader, parser and emitter for ruamel.yaml derived from libyaml + +License: MIT +URL: https://bitbucket.org/ruamel/yaml.clib +Source0: https://sourceforge.net/code-snapshots/hg/r/ru/ruamel-yaml-clib/code/ruamel-yaml-clib-code-%{hash}.zip + +BuildRequires: gcc +BuildRequires: libyaml-devel + +%description +It is the C based reader/scanner and emitter for ruamel.yaml. + +%package -n python3-%{pname} +Summary: %{summary} +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-Cython + +Requires: python3-setuptools +Requires: python3-ruamel-yaml + +%description -n python3-%{pname} +It is the C based reader/scanner and emitter for ruamel.yaml. + +%prep +%autosetup -n %{pname}-code-%{hash} +# Force regenerating C files from Cython sources +rm -v $(grep -rl '/\* Generated by Cython') + +%build +# cython refuses to cythonize a file in a directory that cannot be a Python module ¯\_(ツ)_/¯ +mkdir ruamel.yaml.clib +mv *.pyx ruamel.yaml.clib +cythonize ruamel.yaml.clib/*.pyx +mv ruamel.yaml.clib/* . +rmdir ruamel.yaml.clib + +%py3_build + +%install +%{__python3} setup.py install --single-version-externally-managed --skip-build --root $RPM_BUILD_ROOT + +%files -n python3-%{pname} +%license LICENSE +%doc README.rst +%{python3_sitearch}/_ruamel_yaml.cpython-* +%{python3_sitearch}/%{pypi_name}-%{version}-py%{python3_version}.egg-info + +%changelog +* Thu Nov 12 2020 Miro Hrončok - 0.1.2-5 +- Force regenerating C files from Cython sources +- Require python3-ruamel-yaml + +* Wed Jul 29 2020 Fedora Release Engineering - 0.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue May 26 2020 Miro Hrončok - 0.1.2-3 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 0.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Fri Aug 30 2019 Chandan Kumar - 0.1.2-1 +- Initial package diff --git a/python-ruamel-yaml-clib/ruamel-yaml-clib-code-955989c1f022b95ca1f92bf0abd761ef8aa0b940.zip b/python-ruamel-yaml-clib/ruamel-yaml-clib-code-955989c1f022b95ca1f92bf0abd761ef8aa0b940.zip new file mode 100644 index 0000000..474d1d9 Binary files /dev/null and b/python-ruamel-yaml-clib/ruamel-yaml-clib-code-955989c1f022b95ca1f92bf0abd761ef8aa0b940.zip differ diff --git a/python-ruamel-yaml/python-ruamel-yaml.spec b/python-ruamel-yaml/python-ruamel-yaml.spec new file mode 100644 index 0000000..15e7b6f --- /dev/null +++ b/python-ruamel-yaml/python-ruamel-yaml.spec @@ -0,0 +1,153 @@ +%global pypi_name ruamel.yaml +%global pname ruamel-yaml +%global debug_package %{nil} + +Name: python-%{pname} +Version: 0.16.12 +Release: 1%{?dist} +Summary: YAML 1.2 loader/dumper package for Python + +License: MIT +URL: https://bitbucket.org/ruamel/yaml +# Use bitbucket sources so we can run the tests +Source0: %{pypi_source} + +%description +ruamel.yaml is a YAML 1.2 loader/dumper package for Python. +It is a derivative of Kirill Simonov’s PyYAML 3.11 + +%package -n python%{python3_pkgversion}-%{pname} +Summary: YAML 1.2 loader/dumper package for Python +BuildRequires: python%{python3_pkgversion}-devel +BuildRequires: python%{python3_pkgversion}-setuptools +# For tests +BuildRequires: python%{python3_pkgversion}-pytest +# typing was added in Python 3.5 +%if %{python3_pkgversion} == 34 +BuildRequires: python%{python3_pkgversion}-typing +%endif +%{?python_provide:%python_provide python%{python3_pkgversion}-%{pypi_name}} + +Requires: python%{python3_pkgversion}-ruamel-yaml-clib +Requires: python%{python3_pkgversion}-setuptools +%if %{python3_pkgversion} == 34 +Requires: python%{python3_pkgversion}-typing +%endif + +%description -n python%{python3_pkgversion}-%{pname} +ruamel.yaml is a YAML 1.2 loader/dumper package for Python. +It is a derivative of Kirill Simonov’s PyYAML 3.11 + +%prep +%autosetup -n %{pypi_name}-%{version} +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +%install +%{__python3} setup.py install --single-version-externally-managed --skip-build --root $RPM_BUILD_ROOT + +%files -n python%{python3_pkgversion}-%{pname} +%license LICENSE +%doc README.rst +%{python3_sitelib}/ruamel +%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}-*.pth +%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info + +%changelog +* Thu Jan 07 2021 Avi Miller - 0.16.12-1 +- Update to 0.16.12 for lifx-photons-core + +* Wed Jul 29 2020 Fedora Release Engineering - 0.16.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue May 26 2020 Miro Hrončok - 0.16.6-3 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 0.16.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Jan 20 2020 Jason Montleon - 0.16.6-1 +- Update to 0.16.6 + +* Thu Oct 03 2019 Miro Hrončok - 0.16.5-3 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Fri Aug 30 2019 Chandan Kumar - 0.16.5-2 +- Added ruamel-yaml-clib as Requires + +* Tue Aug 27 2019 Chedi Toueiti - 0.16.5-1 +- Update to 0.16.5 + +* Mon Aug 19 2019 Miro Hrončok - 0.15.41-6 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 0.15.41-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Feb 02 2019 Fedora Release Engineering - 0.15.41-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Mon Jan 14 2019 Miro Hrončok - 0.15.41-3 +- Subpackage python2-ruamel-yaml has been removed + See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal + +* Sat Jul 14 2018 Fedora Release Engineering - 0.15.41-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Jun 29 2018 Miro Hrončok - 0.15.41-1 +- Update to 0.15.41 +- Add patch not to require ruamel.std.pathlib + +* Tue Jun 19 2018 Miro Hrončok - 0.13.14-4 +- Rebuilt for Python 3.7 + +* Fri Feb 09 2018 Iryna Shcherbina - 0.13.14-3 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Fri Feb 09 2018 Fedora Release Engineering - 0.13.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Aug 9 2017 Orion Poplawski - 0.13.14-1 +- Update to 0.13.14 + +* Thu Aug 03 2017 Fedora Release Engineering - 0.13.13-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.13.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Feb 13 2017 Jan Chaloupka - 0.13.13-3 +- The ruamel.yaml needs at least typing >= 3.5.2.2 + related: #1386563 + +* Sat Feb 11 2017 Fedora Release Engineering - 0.13.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Jan 31 2017 Orion Poplawski - 0.13.13-1 +- Update to 0.13.13 + +* Tue Jan 31 2017 Orion Poplawski - 0.12.14-7 +- Add patch to support pytest 2.7 in EPEL7 + +* Mon Dec 19 2016 Miro Hrončok - 0.12.14-6 +- Rebuild for Python 3.6 + +* Wed Oct 26 2016 Orion Poplawski - 0.12.14-5 +- Require python34-typing on EPEL +- Ignore python2 test failure due to old pytest on EPEL7 + +* Wed Oct 26 2016 Orion Poplawski - 0.12.14-4 +- Build python3 package +- Run tests + +* Tue Oct 25 2016 Chandan Kumar - 0.12.14-3 +- Disabling python3 as python3-ruamel-ordereddict not available + +* Mon Oct 24 2016 Chandan Kumar - 0.12.14-2 +- Fixed python2-typing runtime dependency issue + +* Fri Oct 14 2016 Chandan Kumar - 0.12.14-1 +- Initial package. diff --git a/python-ruamel-yaml/ruamel.yaml-0.16.12.tar.gz b/python-ruamel-yaml/ruamel.yaml-0.16.12.tar.gz new file mode 100644 index 0000000..cff7ef6 Binary files /dev/null and b/python-ruamel-yaml/ruamel.yaml-0.16.12.tar.gz differ diff --git a/python-tornado/Do-not-turn-DeprecationWarning-into-Exception.patch b/python-tornado/Do-not-turn-DeprecationWarning-into-Exception.patch new file mode 100644 index 0000000..7633f35 --- /dev/null +++ b/python-tornado/Do-not-turn-DeprecationWarning-into-Exception.patch @@ -0,0 +1,11 @@ +diff -Nur tornado-6.0.4/tornado/test/runtests.py tornado-6.0.4-new/tornado/test/runtests.py +--- tornado-6.0.4/tornado/test/runtests.py 2020-03-02 20:21:37.000000000 +0100 ++++ tornado-6.0.4-new/tornado/test/runtests.py 2020-09-14 09:21:31.818678680 +0200 +@@ -126,7 +126,6 @@ + # Tornado generally shouldn't use anything deprecated, but some of + # our dependencies do (last match wins). + warnings.filterwarnings("ignore", category=DeprecationWarning) +- warnings.filterwarnings("error", category=DeprecationWarning, module=r"tornado\..*") + warnings.filterwarnings("ignore", category=PendingDeprecationWarning) + warnings.filterwarnings( + "error", category=PendingDeprecationWarning, module=r"tornado\..*" diff --git a/python-tornado/python-tornado.spec b/python-tornado/python-tornado.spec new file mode 100644 index 0000000..c627e54 --- /dev/null +++ b/python-tornado/python-tornado.spec @@ -0,0 +1,313 @@ +%global srcname tornado + +Name: python-%{srcname} +Version: 6.1.0 +Release: 1%{?dist} +Summary: Scalable, non-blocking web server and tools + +License: ASL 2.0 +URL: http://www.tornadoweb.org +Source0: https://github.com/tornadoweb/tornado/archive/v%{version}/%{srcname}-%{version}.tar.gz + +# Do not turn DeprecationWarning in tornado module into Exception +# fixes FTBFS with Python 3.8 +Patch1: Do-not-turn-DeprecationWarning-into-Exception.patch + +BuildRequires: gcc + +BuildRequires: python%{python3_pkgversion}-setuptools +BuildRequires: python%{python3_pkgversion}-devel + +%description +Tornado is an open source version of the scalable, non-blocking web +server and tools. + +The framework is distinct from most mainstream web server frameworks +(and certainly most Python frameworks) because it is non-blocking and +reasonably fast. Because it is non-blocking and uses epoll, it can +handle thousands of simultaneous standing connections, which means it is +ideal for real-time web services. + +%package -n python%{python3_pkgversion}-%{srcname} +Summary: Scalable, non-blocking web server and tools +%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} +Requires: python%{python3_pkgversion}-pycurl + +%description -n python%{python3_pkgversion}-%{srcname} +Tornado is an open source version of the scalable, non-blocking web +server and tools. + +The framework is distinct from most mainstream web server frameworks +(and certainly most Python frameworks) because it is non-blocking and +reasonably fast. Because it is non-blocking and uses epoll, it can +handle thousands of simultaneous standing connections, which means it is +ideal for real-time web services. + +%package doc +Summary: Examples for %{name} +Obsoletes: python%{python3_pkgversion}-%{srcname}-doc < 4.2.1-3 +Provides: python%{python3_pkgversion}-%{srcname}-doc = %{version}-%{release} + +%description doc +Tornado is an open source version of the scalable, non-blocking web +server and and tools. This package contains some example applications. + +%prep +%autosetup -p1 -n %{srcname}-%{version} +# Remove shebang from files +%{__sed} -i.orig -e '/^#!\//, 1d' *py tornado/*.py tornado/*/*.py + +%build +%py3_build + +%install +%py3_install + +%check +export ASYNC_TEST_TIMEOUT=10 +%{__python3} -m tornado.test.runtests --verbose + +%files -n python%{python3_pkgversion}-%{srcname} +%license LICENSE +%doc README.rst +%{python3_sitearch}/%{srcname}/ +%{python3_sitearch}/%{srcname}-*.egg-info/ + +%files doc +%license LICENSE +%doc demos + +%changelog +* Tue Nov 03 2020 Fabian Affolter -6.1.0-1 +- Update to latest upstream release 6.1.0 (#1883858) + +* Sun Sep 13 2020 Fabian Affolter - 6.0.4-1 +- Update to latest upstream release 6.0.3 (#1809858) + +* Wed Jul 29 2020 Fedora Release Engineering - 6.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sat May 23 2020 Miro Hrončok - 6.0.3-2 +- Rebuilt for Python 3.9 + +* Mon Feb 24 2020 Peter Robinson - 6.0.3-1 +- Update to 6.0.3 + +* Thu Jan 30 2020 Fedora Release Engineering - 6.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Oct 03 2019 Miro Hrončok - 6.0.2-4 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Thu Aug 15 2019 Miro Hrončok - 6.0.2-3 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 6.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Mon Jun 03 2019 Miro Hrončok - 6.0.2-1 +- Update to 6.0.2 (#1600318) + +* Thu May 16 2019 Lumír Balhar - 5.1.1-2 +- New patch to not turn DeprecationWarning in tornado module into Exception +- Fixes FTBFS with Python 3.8 + +* Wed Mar 27 2019 Miro Hrončok - 5.1.1-1 +- Update to 5.1.1 +- Fix SyntaxWarnings (turned into SyntaxErrors) on Python 3.8 + +* Sat Feb 02 2019 Fedora Release Engineering - 5.0.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 14 2018 Fedora Release Engineering - 5.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Jun 15 2018 Miro Hrončok - 5.0.2-3 +- Rebuilt for Python 3.7 + +* Sat May 19 2018 Miro Hrončok - 5.0.2-2 +- Require python2-futures + +* Fri May 18 2018 Charalampos Stratakis - 5.0.2-1 +- Update to 5.0.2 + +* Thu Apr 26 2018 Lumír Balhar - 4.5.2-5 +- New conditionals for Python 2 +- Drop Python 3 conditional + +* Mon Feb 12 2018 Iryna Shcherbina - 4.5.2-4 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Fri Feb 09 2018 Fedora Release Engineering - 4.5.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Tue Nov 07 2017 Charalampos Stratakis - 4.5.2-2 +- Fix dist tag and bump release for rebuild + +* Tue Nov 07 2017 Charalampos Stratakis - 4.5.2-1 +- Update to 4.5.2 + +* Fri Sep 29 2017 Troy Dawson - 4.5.1-4 +- Cleanup spec file conditionals + +* Thu Aug 03 2017 Fedora Release Engineering - 4.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 4.5.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Apr 20 2017 Orion Poplawski - 4.5.1-1 +- Update to 4.5.1 + +* Mon Apr 17 2017 Orion Poplawski - 4.5-1 +- Update to 4.5 + +* Sat Feb 11 2017 Fedora Release Engineering - 4.4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Dec 13 2016 Stratakis Charalampos - 4.4.2-2 +- Rebuild for Python 3.6 +- Added patch to fix Python 3.6 test failures + +* Sun Oct 2 2016 Orion Poplawski - 4.4.2-1 +- Update to 4.4.2 + +* Thu Sep 15 2016 Orion Poplawski - 4.4.1-1 +- Update to 4.4.1 +- Drop requires patch, fixed upstream + +* Thu Sep 15 2016 Orion Poplawski - 4.3-5 +- Remove backports.ssl_match_hostname from python2-tornado egg requires (bug #1372887) + +* Thu Sep 15 2016 Orion Poplawski - 4.3-4 +- Remove certifi from python2-tornado egg requires (bug #1372886) + +* Tue Jul 19 2016 Fedora Release Engineering - 4.3-3 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Mon Feb 22 2016 Orion Poplawski - 4.3-2 +- Properly build python2-tornado + +* Thu Feb 18 2016 Orion Poplawski - 4.3-1 +- Update to 4.3 +- Drop upstream patches + +* Thu Feb 04 2016 Fedora Release Engineering - 4.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Nov 10 2015 Orion Poplawski - 4.2.1-3 +- Build python2 packages, drop separate python3 doc package + +* Wed Oct 14 2015 Robert Kuska - 4.2.1-2 +- Rebuilt for Python3.5 rebuild +- Add patch to use getfullargspec on python3 +- Add patch to fix failing tests with python3.5 + +* Fri Sep 18 2015 Orion Poplawski - 4.2.1-1 +- Update to 4.2.1 +- Modernize spec + +* Fri Jul 10 2015 Orion Poplawski - 4.1-3 +- Do not require python-backports-ssl_match_hostname for F22+ (bug #1231368) + +* Thu Jun 18 2015 Fedora Release Engineering - 4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sun Mar 1 2015 Orion Poplawski - 4.1-1 +- Update to 4.1 +- Modernize spec + +* Fri Dec 5 2014 Orion Poplawski - 3.2.1-4 +- Drop requires python-simplejson + +* Sun Aug 17 2014 Fedora Release Engineering - 3.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 3.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu May 22 2014 Thomas Spura - 3.2.1-1 +- update to 3.2.1 +- no noarch anymore +- remove defattr + +* Wed May 14 2014 Bohuslav Kabrda - 2.2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Sun Aug 04 2013 Fedora Release Engineering - 2.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Jun 14 2013 Thomas Spura - 2.2.1-5 +- remove rhel conditional for with_python3: + https://fedorahosted.org/fpc/ticket/200 + +* Thu Feb 14 2013 Fedora Release Engineering - 2.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Aug 04 2012 David Malcolm - 2.2.1-3 +- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3 + +* Sat Jul 21 2012 Fedora Release Engineering - 2.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sun May 20 2012 Thomas Spura - 2.2.1-1 +- update to upstream release 2.2.1 (fixes CVE-2012-2374) +- fix typo for epel6 macro bug #822972 (Florian La Roche) + +* Thu Feb 9 2012 Ionuț C. Arțăriși - 2.2-1 +- upgrade to upstream release 2.2 + +* Thu Feb 9 2012 Ionuț C. Arțăriși - 2.1.1-4 +- remove python3-simplejson dependency + +* Fri Jan 27 2012 Thomas Spura - 2.1.1-3 +- build python3 package + +* Sat Jan 14 2012 Fedora Release Engineering - 2.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Oct 25 2011 Ionuț C. Arțăriși - 2.1.1-1 +- new upstream version 2.1.1 +- remove double word in description and rearrange it (#715272) +- fixed removal of shebangs +- added %%check section to run unittests during package build + +* Tue Mar 29 2011 Ionuț C. Arțăriși - 1.2.1-1 +- new upstream version 1.2.1 + +* Wed Feb 09 2011 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Sep 8 2010 Ionuț C. Arțăriși - 1.1-1 +- new upstream release 1.1 + +* Tue Aug 17 2010 Ionuț Arțăriși - 1.0.1-1 +- new upstream bugfix release: 1.0.1 + +* Wed Aug 4 2010 Ionuț C. Arțăriși - 1.0-2 +- changed upstream source url + +* Wed Aug 4 2010 Ionuț C. Arțăriși - 1.0-1 +- new upstream release 1.0 +- there's no longer a problem with spurious permissions, so remove that fix + +* Thu Jul 22 2010 David Malcolm - 0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Wed Oct 21 2009 Ionuț Arțăriși - 0.2-3 +- changed -doc package group to Documentation +- use global instead of define + +* Tue Oct 20 2009 Ionuț Arțăriși - 0.2-2 +- create -doc package for examples +- altered description to not include references to FriendFeed +- rename to python-tornado + +* Fri Sep 25 2009 Ionuț Arțăriși - 0.2-1 +- New upstream version +- Fixed macro usage and directory ownership in spec + +* Thu Sep 10 2009 Ionuț Arțăriși - 0.1-1 +- Initial release + diff --git a/python-tornado/tornado-6.1.0.tar.gz b/python-tornado/tornado-6.1.0.tar.gz new file mode 100644 index 0000000..5b89d44 Binary files /dev/null and b/python-tornado/tornado-6.1.0.tar.gz differ diff --git a/python-whirlwind-web/python-whirlwind-web.spec b/python-whirlwind-web/python-whirlwind-web.spec new file mode 100644 index 0000000..d694756 --- /dev/null +++ b/python-whirlwind-web/python-whirlwind-web.spec @@ -0,0 +1,54 @@ +# Created by pyp2rpm-3.3.5 +%global pypi_name whirlwind-web + +Name: python-%{pypi_name} +Version: 0.10.0 +Release: 1%{?dist} +Summary: Wrapper around the tornado web server library + +License: MIT +URL: http://github.com/delfick/whirlwind +Source0: %{pypi_source} +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3dist(setuptools) + +# Bypass the strict dependencies declared upstream +%{?python_disable_dependency_generator} + +%description +Whirlwind A wrapper around the tornado web server. + +%package -n python3-%{pypi_name} +Summary: %{summary} +%{?python_provide:%python_provide python3-%{pypi_name}} + +Requires: python3dist(aiohttp) >= 3.7 +Requires: python3dist(delfick-project) >= 0.5 +Requires: python3dist(setuptools) +Requires: python3dist(tornado) >= 5.1.1 +%description -n python3-%{pypi_name} +Whirlwind A wrapper around the tornado web server. + + +%prep +%autosetup -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%py3_build + +%install +%py3_install + +%files -n python3-%{pypi_name} +%doc README.rst +%{_bindir}/run_whirlwind_pytest +%{python3_sitelib}/whirlwind +%{python3_sitelib}/whirlwind_web-%{version}-py%{python3_version}.egg-info + +%changelog +* Wed Jan 06 2021 Avi Miller - 0.10.0-1 +- Initial packaging of whirlwind-web from PyPi. diff --git a/python-whirlwind-web/whirlwind-web-0.10.0.tar.gz b/python-whirlwind-web/whirlwind-web-0.10.0.tar.gz new file mode 100644 index 0000000..d720d93 Binary files /dev/null and b/python-whirlwind-web/whirlwind-web-0.10.0.tar.gz differ