|
|
|
%global commit 252a308f2844f16f9ad77fd5a4e9da4c3f5f4c3c
|
|
|
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
|
|
%global srcname filelock
|
|
|
|
%global sum A platform independent file lock
|
|
|
|
|
|
|
|
Name: python-%{srcname}
|
|
|
|
Version: 2.0.8
|
|
|
|
Release: 5%{?dist}
|
|
|
|
Summary: %{sum}
|
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: Unlicense
|
|
|
|
URL: https://github.com/benediktschmitt/py-%{srcname}
|
|
|
|
Source0: https://github.com/benediktschmitt/py-%{srcname}/archive/%{commit}.tar.gz#/%{srcname}-%{shortcommit}.tar.gz
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description
|
|
|
|
This package contains a single module, which implements a platform independent
|
|
|
|
file locking mechanism for Python.
|
|
|
|
|
|
|
|
The lock includes a lock counter and is thread safe. This means, when locking
|
|
|
|
the same lock object twice, it will not block.
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
Summary: Documentation for %{srcname}, %{sum}
|
|
|
|
BuildRequires: python2-sphinx
|
|
|
|
BuildRequires: python2-sphinx_rtd_theme
|
|
|
|
Requires: fontawesome-fonts
|
|
|
|
Requires: google-roboto-slab-fonts
|
|
|
|
Requires: lato-fonts
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
Documentation for %{srcname}, %{sum}
|
|
|
|
|
|
|
|
%package -n python2-%{srcname}
|
|
|
|
Summary: %{sum}
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
%{?python_provide:%python_provide python2-%{srcname}}
|
|
|
|
Recommends: %{name}-doc
|
|
|
|
|
|
|
|
%description -n python2-%{srcname}
|
|
|
|
This package contains a single module, which implements a platform independent
|
|
|
|
file locking mechanism for Python.
|
|
|
|
|
|
|
|
The lock includes a lock counter and is thread safe. This means, when locking
|
|
|
|
the same lock object twice, it will not block.
|
|
|
|
|
|
|
|
%package -n python3-%{srcname}
|
|
|
|
Summary: %{sum}
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
%{?python_provide:%python_provide python3-%{srcname}}
|
|
|
|
Recommends: %{name}-doc
|
|
|
|
|
|
|
|
%description -n python3-%{srcname}
|
|
|
|
This package contains a single module, which implements a platform independent
|
|
|
|
file locking mechanism for Python.
|
|
|
|
|
|
|
|
The lock includes a lock counter and is thread safe. This means, when locking
|
|
|
|
the same lock object twice, it will not block.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup -n py-%{srcname}-%{commit}
|
|
|
|
|
|
|
|
sed -i '1{\@^#!/usr/bin/python@d}' %{srcname}.py
|
|
|
|
|
|
|
|
%build
|
|
|
|
%py2_build
|
|
|
|
%py3_build
|
|
|
|
|
|
|
|
make -C docs html man
|
|
|
|
rm docs/build/html/.buildinfo
|
|
|
|
|
|
|
|
# Unbundle fonts
|
|
|
|
ln -sf %{_datadir}/fonts/fontawesome/fontawesome-webfont.eot docs/build/html/_static/fonts/fontawesome-webfont.eot
|
|
|
|
ln -sf %{_datadir}/fonts/fontawesome/fontawesome-webfont.svg docs/build/html/_static/fonts/fontawesome-webfont.svg
|
|
|
|
ln -sf %{_datadir}/fonts/fontawesome/fontawesome-webfont.ttf docs/build/html/_static/fonts/fontawesome-webfont.ttf
|
|
|
|
ln -sf %{_datadir}/fonts/fontawesome/fontawesome-webfont.woff docs/build/html/_static/fonts/fontawesome-webfont.woff
|
|
|
|
ln -sf %{_datadir}/fonts/google-roboto-slab/RobotoSlab-Bold.ttf docs/build/html/_static/fonts/RobotoSlab-Bold.ttf
|
|
|
|
ln -sf %{_datadir}/fonts/google-roboto-slab/RobotoSlab-Regular.ttf docs/build/html/_static/fonts/RobotoSlab-Regular.ttf
|
|
|
|
ln -sf %{_datadir}/fonts/lato/Lato-Bold.ttf docs/build/html/_static/fonts/Lato-Bold.ttf
|
|
|
|
ln -sf %{_datadir}/fonts/lato/Lato-Regular.ttf docs/build/html/_static/fonts/Lato-Regular.ttf
|
|
|
|
|
|
|
|
%install
|
|
|
|
%py2_install
|
|
|
|
%py3_install
|
|
|
|
|
|
|
|
install -p -m0644 -D docs/build/man/py-%{srcname}.1 %{buildroot}%{_mandir}/man1/py-%{srcname}.1
|
|
|
|
|
|
|
|
%check
|
|
|
|
%{__python2} test.py
|
|
|
|
%{__python3} test.py
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
%doc docs/build/html
|
|
|
|
%license LICENSE.rst
|
|
|
|
|
|
|
|
%files -n python2-%{srcname}
|
|
|
|
%doc README.rst
|
|
|
|
%license LICENSE.rst
|
|
|
|
%{_mandir}/man1/py-%{srcname}.1.gz
|
|
|
|
%{python2_sitelib}/%{srcname}.py
|
|
|
|
%{python2_sitelib}/%{srcname}.py[co]
|
|
|
|
%{python2_sitelib}/%{srcname}-%{version}-py?.?.egg-info
|
|
|
|
|
|
|
|
%files -n python3-%{srcname}
|
|
|
|
%doc README.rst
|
|
|
|
%license LICENSE.rst
|
|
|
|
%{_mandir}/man1/py-%{srcname}.1.gz
|
|
|
|
%{python3_sitelib}/%{srcname}.py
|
|
|
|
%{python3_sitelib}/%{srcname}-%{version}-py?.?.egg-info
|
|
|
|
%{python3_sitelib}/__pycache__/%{srcname}*.py[co]
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
* Mon Feb 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.0.8-5
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.8-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.8-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sat Feb 04 2017 Scott K Logan <logans@cottsay.net> - 2.0.8-1
|
|
|
|
- Update to version 2.0.8
|
|
|
|
|
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 2.0.6-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
|
|
|
* Sun May 01 2016 Scott K Logan <logans@cottsay.net> - 2.0.6-1
|
|
|
|
- Initial package
|