Initial import
This commit is contained in:
parent
77274d43de
commit
c0de6debaf
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/pycups-1.9.52.tar.bz2
|
59
python-cups.spec
Normal file
59
python-cups.spec
Normal file
@ -0,0 +1,59 @@
|
||||
%{?filter_setup:
|
||||
%filter_provides_in %{python_sitearch}/.*\.so$
|
||||
%filter_setup
|
||||
}
|
||||
|
||||
Summary: Python bindings for CUPS
|
||||
Name: python-cups
|
||||
Version: 1.9.52
|
||||
Release: 2%{?dist}
|
||||
URL: http://cyberelk.net/tim/software/pycups/
|
||||
Source: http://cyberelk.net/tim/data/pycups/pycups-%{version}.tar.bz2
|
||||
License: GPLv2+
|
||||
Group: Development/Languages
|
||||
BuildRequires: cups-devel
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: epydoc
|
||||
|
||||
%description
|
||||
This package provides Python bindings for the CUPS API,
|
||||
known as pycups. It was written for use with
|
||||
system-config-printer, but can be put to other uses as well.
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for python-cups
|
||||
Group: Documentation
|
||||
|
||||
%description doc
|
||||
Documentation for python-cups.
|
||||
|
||||
%prep
|
||||
%setup -q -n pycups-%{version}
|
||||
|
||||
%build
|
||||
CFLAGS="%{optflags} -fno-strict-aliasing" %{__python} setup.py build
|
||||
|
||||
rm -rf html
|
||||
epydoc -o html --html build/lib*/cups.so
|
||||
|
||||
%install
|
||||
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
|
||||
chmod 755 %{buildroot}%{python_sitearch}/cups.so
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc COPYING ChangeLog README NEWS TODO
|
||||
%{python_sitearch}/cups.so
|
||||
%{python_sitearch}/pycups*.egg-info
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root,-)
|
||||
%doc examples html
|
||||
|
||||
%changelog
|
||||
* Wed Nov 17 2010 Jiri Popelka <jpopelka@redhat.com> - 1.9.52-2
|
||||
- Fixed rpmlint errors/warnings (#648986)
|
||||
- doc subpackage
|
||||
|
||||
* Mon Nov 01 2010 Jiri Popelka <jpopelka@redhat.com> - 1.9.52-1
|
||||
- Initial RPM spec file
|
Loading…
Reference in New Issue
Block a user