14
0

- Regenerate spec file with py2pack;

- Add README and RELEASE-NOTES files as documentation.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-lockfile?expand=0&rev=3
This commit is contained in:
Alexandre Rogoski
2011-04-16 00:18:45 +00:00
committed by Git OBS Bridge
parent 78fc04f7dc
commit 1b42ad25c8
2 changed files with 44 additions and 29 deletions

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sat Apr 16 00:09:30 UTC 2011 - alexandre@exatati.com.br
- Regenerate spec file with py2pack;
- Add README and RELEASE-NOTES files as documentation.
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Sep 19 23:21:20 UTC 2010 - alexandre@exatati.com.br Sun Sep 19 23:21:20 UTC 2010 - alexandre@exatati.com.br

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-lockfile (Version 0.9.1) # spec file for package python-lockfile
# #
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -11,49 +11,58 @@
# case the license is the MIT License). An "Open Source License" is a # case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9) # license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative. # published by the Open Source Initiative.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via http://bugs.opensuse.org/
# #
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Name: python-lockfile %define mod_name lockfile
Name: python-%{mod_name}
Version: 0.9.1 Version: 0.9.1
Release: 1 Release: 0
License: MIT Url: http://code.google.com/p/pylockfile/
Summary: Platform-independent file locking module Summary: Platform-independent file locking module
Url: http://smontanaro.dyndns.org/python License: MIT License
Group: Development/Libraries/Python Group: Development/Languages/Python
Source: lockfile-%{version}.tar.bz2 Source: %{mod_name}-%{version}.tar.bz2
BuildRequires: python-devel
BuildRequires: python-setuptools
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires} BuildRequires: python-devel
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1} %if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
BuildArch: noarch BuildArch: noarch
%endif %endif
%endif
%description %description
The lockfile module exports a FileLock class which provides a simple API for locking files. The lockfile package exports a LockFile class which provides a simple API for
Unlike the Windows msvcrt.locking function, the Unix fcntl.flock, fcntl.lockf and the locking files. Unlike the Windows msvcrt.locking function, the fcntl.lockf
deprecated posixfile module, the API is identical across both Unix (including Linux and and flock functions, and the deprecated posixfile module, the API is
Mac) and Windows platforms. The lock mechanism relies on the atomic nature of the link identical across both Unix (including Linux and Mac) and Windows platforms.
(on Unix) and mkdir (on Windows) system calls. The lock mechanism relies on the atomic nature of the link (on Unix) and
mkdir (on Windows) system calls. An implementation based on SQLite is also
Author: provided, more as a demonstration of the possibilities it provides than as
-------- production-quality code.
Skip Montanaro <skip@pobox.com>
%prep %prep
%setup -q -n lockfile-%{version} %setup -q -n %{mod_name}-%{version}
%build %build
%{__python} setup.py build export CFLAGS="%{optflags}"
python setup.py build
%install %install
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%clean
rm -rf %{buildroot}
%files -f INSTALLED_FILES %files
%defattr(-,root,root) %defattr(-,root,root,-)
%doc README RELEASE-NOTES
%python_sitelib/%{mod_name}*
%changelog