--- pyxine-0.1alpha2.orig/debian/changelog +++ pyxine-0.1alpha2/debian/changelog @@ -0,0 +1,12 @@ +pyxine (0.1alpha2-1ubuntu1) hoary; urgency=low + + * Rebuild for python2.4 + * Standards Version 3.6.1.1 + + -- Charles Majola Thu, 17 Feb 2005 12:05:59 +0200 + +pyxine (0.1alpha2-1) unstable; urgency=low + + * Initial Release. (Closes: #220304) + + -- Joe Wreschnig Tue, 11 Nov 2003 12:13:24 -0600 --- pyxine-0.1alpha2.orig/debian/compat +++ pyxine-0.1alpha2/debian/compat @@ -0,0 +1 @@ +4 --- pyxine-0.1alpha2.orig/debian/copyright +++ pyxine-0.1alpha2/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Joe Wreschnig on +Tue, 11 Nov 2003 12:13:24 -0600. + +It was downloaded from http://pyxine.sourceforge.net + +Upstream Author: Geoffrey T. Dairiki + +Copyright: + +Pyxine is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2 of the License, or (at your option) +any later version. + +The GNU GPL is available at /usr/share/common-licenses/GPL on Debian systems. --- pyxine-0.1alpha2.orig/debian/control +++ pyxine-0.1alpha2/debian/control @@ -0,0 +1,46 @@ +Source: pyxine +Section: python +Priority: optional +Maintainer: Joe Wreschnig +Build-Depends: debhelper (>= 4.0.0), libxine-dev, python, python2.3-dev, python2.4-dev +Standards-Version: 3.6.1.1 + +Package: python-pyxine +Section: python +Architecture: all +Depends: ${python:Depends} +Description: interface to the xine media player for Python + Pyxine provides Python bindings for libxine, the backend of the xine + media player. Using Pyxine, it is possible to write simple (or complex) + user-interfaces to xine. This makes it much easier for one to write custom + xine UIs. Pyxine can also be used as a generic audio and video playing + library for Python. + . + This package depends on Pyxine for Debian's default Python version, + which is currently Python 2.4. + +Package: python2.3-pyxine +Section: python +Architecture: any +Depends: ${shlibs:Depends}, python2.3 +Description: interface to the xine media player library for Python + Pyxine provides Python bindings for libxine, the backend of the xine + media player. Using Pyxine, it is possible to write simple (or complex) + user-interfaces to xine. This makes it much easier for one to write custom + xine UIs. Pyxine can also be used as a generic audio and video playing + library for Python. + . + This package is for using Pyxine with Python 2.3. + +Package: python2.4-pyxine +Section: python +Architecture: any +Depends: ${shlibs:Depends}, python2.4 +Description: interface to the xine media player library for Python + Pyxine provides Python bindings for libxine, the backend of the xine + media player. Using Pyxine, it is possible to write simple (or complex) + user-interfaces to xine. This makes it much easier for one to write custom + xine UIs. Pyxine can also be used as a generic audio and video playing + library for Python. + . + This package is for using Pyxine with Python 2.4. --- pyxine-0.1alpha2.orig/debian/rules +++ pyxine-0.1alpha2/debian/rules @@ -0,0 +1,88 @@ +#!/usr/bin/make -f +# Support for multiple Python versions inspired by python-pygame by +# Ed Boraas. + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +PY3 = 2.3 +PY4 = 2.4 + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + +build: build-stamp4 build-stamp3 +build-stamp4: configure-stamp + dh_testdir + python$(PY4) setup.py build + touch build-stamp4 +build-stamp3: configure-stamp + dh_testdir + python$(PY3) setup.py build + touch build-stamp3 + +clean: + dh_testdir + dh_testroot + rm -f build-stamp[43] configure-stamp + -python$(PY4) setup.py clean + -python$(PY3) setup.py clean + -rm -rf build + -rm -f */*.pyc + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + python$(PY4) setup.py install --no-compile --root=`pwd`/debian/python$(PY4)-pyxine + python$(PY3) setup.py install --no-compile --root=`pwd`/debian/python$(PY3)-pyxine + +binary-indep: build install + dh_testdir -i + dh_testroot -i + dh_installdocs -i + dh_python -i + dh_installchangelogs -i ChangeLog + dh_link -i + dh_strip -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_shlibdeps -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installdocs -a + dh_installchangelogs -a ChangeLog + dh_installdocs -a + dh_installexamples -a examples/* + dh_link -a + dh_strip -a + dh_compress -a -Xexamples + dh_fixperms -a + dh_python -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- pyxine-0.1alpha2.orig/debian/docs +++ pyxine-0.1alpha2/debian/docs @@ -0,0 +1,4 @@ +README +TODO +PKG-INFO +HINTS