Compare commits
10 Commits
acb54dce52
...
4f1cb98ab8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4f1cb98ab8 | ||
|
|
9222fa4b01 | ||
|
|
ca22291e9a | ||
|
|
0029e0549e | ||
|
|
a5b746c160 | ||
|
|
2efa6c900c | ||
|
|
ef930ea0d6 | ||
|
|
46a55974ca | ||
|
|
9097df239d | ||
|
|
83997dd27c |
Binary file not shown.
BIN
fasteners-0.19.tar.gz
Normal file
BIN
fasteners-0.19.tar.gz
Normal file
Binary file not shown.
@ -1,30 +0,0 @@
|
||||
diff -uNr fasteners-0.14.1.orig/fasteners/_utils.py fasteners-0.14.1/fasteners/_utils.py
|
||||
--- fasteners-0.14.1.orig/fasteners/_utils.py 2015-11-13 07:46:46.000000000 +0100
|
||||
+++ fasteners-0.14.1/fasteners/_utils.py 2018-01-17 17:42:58.715726344 +0100
|
||||
@@ -19,7 +19,10 @@
|
||||
import logging
|
||||
import time
|
||||
|
||||
-from monotonic import monotonic as now # noqa
|
||||
+try:
|
||||
+ from time import monotonic as now
|
||||
+except ImportError:
|
||||
+ from monotonic import monotonic as now
|
||||
|
||||
# log level for low-level debugging
|
||||
BLATHER = 5
|
||||
diff -uNr fasteners-0.14.1.orig/setup.py fasteners-0.14.1/setup.py
|
||||
--- fasteners-0.14.1.orig/setup.py 2015-11-13 07:46:46.000000000 +0100
|
||||
+++ fasteners-0.14.1/setup.py 2018-01-17 17:50:26.654085344 +0100
|
||||
@@ -26,8 +26,10 @@
|
||||
|
||||
install_requires = [
|
||||
'six',
|
||||
- 'monotonic>=0.1',
|
||||
]
|
||||
+import sys
|
||||
+if sys.version_info < (3, 3, 0):
|
||||
+ install_requires += ['monotonic>=0.1']
|
||||
|
||||
setup(
|
||||
name='fasteners',
|
||||
@ -1,62 +1,56 @@
|
||||
%global pypi_name fasteners
|
||||
%global _empty_manifest_terminate_build 0
|
||||
Name: python-fasteners
|
||||
Version: 0.19
|
||||
Release: 1
|
||||
Summary: A python package that provides useful locks
|
||||
License: ASL 2.0
|
||||
URL: https://github.com/harlowja/fasteners
|
||||
Source0: https://files.pythonhosted.org/packages/5f/d4/e834d929be54bfadb1f3e3b931c38e956aaa3b235a46a3c764c26c774902/fasteners-0.19.tar.gz
|
||||
BuildArch: noarch
|
||||
|
||||
#%%if 0%{?rhel} >= 8
|
||||
%bcond_with pytests
|
||||
#%%else
|
||||
#%%bcond_without pytests
|
||||
#%%endif
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 0.14.1
|
||||
Release: 20%{?dist}
|
||||
Summary: A python package that provides useful locks
|
||||
|
||||
License: ASL 2.0
|
||||
URL: https://github.com/harlowja/fasteners
|
||||
Source0: https://codeload.github.com/harlowja/fasteners/tar.gz/%{version}#/%{pypi_name}-%{version}.tar.gz
|
||||
Patch0: fasteners-monotonic.patch
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
A python package that provides useful locks.
|
||||
|
||||
|
||||
%package -n python3-%{pypi_name}
|
||||
Summary: A python package that provides useful locks
|
||||
%{?python_provide:%python_provide python3-%{pypi_name}}
|
||||
|
||||
BuildRequires: python3-six
|
||||
BuildRequires: python3-devel
|
||||
# tests
|
||||
BuildRequires: python3-testtools
|
||||
BuildRequires: python3-nose
|
||||
Requires: python3-six
|
||||
|
||||
%description -n python3-%{pypi_name}
|
||||
A python package that provides useful locks.
|
||||
Cross-platform locks for threads and processes.
|
||||
|
||||
%package -n python3-fasteners
|
||||
Summary: A python package that provides useful locks
|
||||
Provides: python-fasteners = %{version}-%{release}
|
||||
Obsoletes: python-fasteners-help <= %{version}
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools python3-pip python3-wheel
|
||||
%description -n python3-fasteners
|
||||
Cross-platform locks for threads and processes.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{pypi_name}-%{version}
|
||||
|
||||
%autosetup -n fasteners-%{version}
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
|
||||
%pyproject_build
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
|
||||
%check
|
||||
nosetests-%{python3_version}
|
||||
|
||||
%files -n python3-%{pypi_name}
|
||||
%doc README.rst
|
||||
%license LICENSE
|
||||
%{python3_sitelib}/%{pypi_name}/
|
||||
%{python3_sitelib}/%{pypi_name}-*.egg-info/
|
||||
%pyproject_install
|
||||
|
||||
%files -n python3-fasteners
|
||||
%{python3_sitelib}/*
|
||||
%doc CHANGELOG.md
|
||||
%doc README.md
|
||||
|
||||
%changelog
|
||||
* Fri Oct 30 2020 jiangxinyu <jiangxinyu@kylinos.cn> - 0.14.1-21
|
||||
* Tue Dec 05 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 0.19-1
|
||||
- Update package to version 0.19
|
||||
|
||||
* Thu Apr 27 2023 wangkai <13474090681@163.com> - 0.18-3
|
||||
- Fix Obsoletes version
|
||||
|
||||
* Wed Apr 26 2023 wangkai <13474090681@163.com> - 0.18-2
|
||||
- Compling package with pyproject
|
||||
- Obsoletes subpackage python-fasteners-help
|
||||
|
||||
* Thu Sep 29 2022 guozhengxin <guozhengxin@kylinos.cn> - 0.18-1
|
||||
- Upgrade package to version 0.18
|
||||
|
||||
* Tue Feb 15 2022 liqiuyu <liqiuyu@kylinos.cn> - 0.14.1-21
|
||||
- change the BuildRequires:python3-nose to python3-nose2
|
||||
|
||||
* Fri Oct 30 2020 jiangxinyu <jiangxinyu@kylinos.cn> - 0.14.1-20
|
||||
- Init python3-fasteners project
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user