14
0

- Replace %fdupes -s with plain %fdupes; hardlinks are better.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pylibacl?expand=0&rev=9
This commit is contained in:
2019-10-14 14:15:50 +00:00
committed by Git OBS Bridge
parent 5a818b0356
commit 8f501096ab
2 changed files with 17 additions and 16 deletions

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Oct 14 14:15:19 UTC 2019 - Matej Cepl <mcepl@suse.com>
- Replace %fdupes -s with plain %fdupes; hardlinks are better.
-------------------------------------------------------------------
Sun Oct 18 16:07:28 UTC 2015 - ecsos@opensuse.org

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-pylibacl
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,28 +12,26 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%endif
Name: python-pylibacl
Version: 0.5.3
Release: 0
Summary: Python POSIX.1e ACL module
License: LGPL-2.1+
Group: Development/Libraries/Python
Url: http://pylibacl.k1024.org/
License: LGPL-2.1-or-later
URL: https://pylibacl.k1024.org/
Source: https://github.com/iustin/pylibacl/releases/download/pylibacl-v%{version}/pylibacl-%{version}.tar.gz
BuildRequires: fdupes
BuildRequires: libacl-devel
BuildRequires: python-devel
BuildRequires: python-setuptools
# Documentation requirements:
BuildRequires: python-Sphinx
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%endif
BuildRequires: python-devel
BuildRequires: python-setuptools
%description
This Python 2.4+ extension module allows you to manipulate the POSIX.1e Access
@@ -42,7 +40,6 @@ top of the systems's acl C library - see acl(5).
%package doc
Summary: Python POSIX.1e ACL module
Group: Development/Libraries/Python
Requires: %{name} = %{version}
%description doc
@@ -59,18 +56,17 @@ python setup.py build_sphinx
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%fdupes -s %{buildroot}/%{_prefix}
%fdupes %{buildroot}/%{_prefix}
%check
python setup.py test
%files
%defattr(-,root,root)
%doc COPYING NEWS README
%license COPYING
%doc NEWS README
%{python_sitearch}/*
%files doc
%defattr(-,root,root)
%doc build/sphinx/html
%changelog