14
0

Initial package (0.8) for openSUSE.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-lockfile?expand=0&rev=1
This commit is contained in:
Alexandre Rogoski
2009-09-24 14:28:42 +00:00
committed by Git OBS Bridge
commit b9eef1b65b
5 changed files with 75 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
lockfile-0.8.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e6e20ec66ceaea2cf81c675216d68f11b3d15a855fe6c64a26ef983b399afd7a
size 8825

4
python-lockfile.changes Normal file
View File

@@ -0,0 +1,4 @@
-------------------------------------------------------------------
Thu Sep 24 13:53:08 UTC 2009 - alexandre@exatati.com.br
- Initial package (0.8) for openSUSE.

44
python-lockfile.spec Normal file
View File

@@ -0,0 +1,44 @@
# norootforbuild
Name: python-lockfile
Version: 0.8
Release: 1
Summary: Platform-independent file locking module
License: MIT
Group: Development/Libraries/Python
Source: lockfile-%{version}.tar.gz
URL: http://smontanaro.dyndns.org/python
BuildRequires: python-devel, python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires}
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
BuildArch: noarch
%endif
%description
The lockfile module exports a FileLock class which provides a simple API for locking files.
Unlike the Windows msvcrt.locking function, the Unix fcntl.flock, fcntl.lockf and the
deprecated posixfile module, the API is identical across both Unix (including Linux and
Mac) and Windows platforms. The lock mechanism relies on the atomic nature of the link
(on Unix) and mkdir (on Windows) system calls.
Author:
--------
Skip Montanaro <skip@pobox.com>
%prep
%setup -q -n lockfile-%{version}
%build
%{__python} setup.py build
%install
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
%files -f INSTALLED_FILES
%defattr(-,root,root)