14
0
forked from pool/python-pycdio
Pascal Bleser
2010-04-16 23:52:52 +00:00
committed by Git OBS Bridge
commit 8535c6b77f
5 changed files with 84 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
pycdio-0.16.tar.bz2 Normal file
View File

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

5
python-pycdio.changes Normal file
View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Fri Apr 16 23:51:13 UTC 2010 - pascal.bleser@opensuse.org
- initial package (0.16)

52
python-pycdio.spec Normal file
View File

@@ -0,0 +1,52 @@
# norootforbuild
%{!?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-pycdio
Version: 0.16
Release: 0
Summary: Python Bindings for the CDIO Library
# http://pypi.python.org/packages/source/p/pycdio/pycdio-%{version}.tar.gz
Source: pycdio-%{version}.tar.bz2
URL: http://pypi.python.org/pypi/pycdio/
Group: Development/Libraries/Python
License: GNU General Public License version 2 or later (GPL v2 or later)
BuildRoot: %{_tmppath}/build-%{name}-%{version}
BuildRequires: python python-devel python-setuptools
BuildRequires: libcdio-devel pkgconfig gcc glibc-devel swig
%py_requires
%description
pycdio is a Python interface to the CD Input and Control library (libcdio).
The pycdio (and libcdio) libraries encapsulate CD-ROM reading and control.
Python programs wishing to be oblivious of the OS- and device-dependent
properties of a CD-ROM can use this library.
%debug_package
%prep
%setup -q -n "pycdio-%{version}"
%build
%__python ./setup.py build
%install
%__python ./setup.py install \
--prefix="%{_prefix}" \
--root="%{buildroot}" \
--record-rpm=files.lst
%clean
%{?buildroot:%__rm -rf "%{buildroot}"}
%files -f files.lst
%defattr(-,root,root)
%doc README.txt
%changelog
# vim: set sw=3 ts=3 noet:
# Local Variables:
# mode: rpm-spec
# tab-width: 3
# End: