Update of /cvsroot/fxpy/FXPy/debian
In directory sc8-pr-cvs1:/tmp/cvs-serv12097/debian
Modified Files:
changelog control rules
Log Message:
add a Python 2.3 package
Index: changelog
===================================================================
RCS file: /cvsroot/fxpy/FXPy/debian/changelog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- changelog 26 Jun 2003 22:38:29 -0000 1.12
+++ changelog 1 Jul 2003 16:18:28 -0000 1.13
@@ -1,3 +1,10 @@
+fxpy (1.0.42-0.1) unstable; urgency=low
+
+ * Built with FOX 1.0.42
+ * Add Python 2.3 package
+
+ -- Bastian Kleineidam <ca...@de...> Tue, 1 Jul 2003 17:49:39 +0200
+
fxpy (1.0.41-0.1) unstable; urgency=low
* Rebuilt with FOX 1.0.41
Index: control
===================================================================
RCS file: /cvsroot/fxpy/FXPy/debian/control,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- control 26 Jun 2003 22:38:53 -0000 1.8
+++ control 1 Jul 2003 16:18:28 -0000 1.9
@@ -2,7 +2,7 @@
Section: devel
Priority: optional
Maintainer: Bastian Kleineidam <ca...@de...>
-Build-Depends: debhelper (>= 4), python2.1-dev, python2.2-dev, libfox1.0-dev
+Build-Depends: debhelper (>= 4), python2.1-dev, python2.2-dev, python2.3-dev, libfox1.0-dev
Standards-Version: 3.5.10.0
Package: fxpy-python2.1
@@ -21,6 +21,15 @@
Suggests: fxpy-doc
Description: Python bindings for the FOX C++ GUI toolkit
a Python 2.2 extension module which provides an interface to the
+ FOX C++ GUI library.
+
+Package: fxpy-python2.3
+Architecture: any
+Depends: libfox1.0, python2.3
+Conflicts: libfox0.99
+Suggests: fxpy-doc
+Description: Python bindings for the FOX C++ GUI toolkit
+ a Python 2.3 extension module which provides an interface to the
FOX C++ GUI library.
Package: fxpy-doc
Index: rules
===================================================================
RCS file: /cvsroot/fxpy/FXPy/debian/rules,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- rules 26 Jun 2003 22:38:15 -0000 1.7
+++ rules 1 Jul 2003 16:18:28 -0000 1.8
@@ -4,6 +4,7 @@
PACKAGE21=fxpy-python2.1
PACKAGE22=fxpy-python2.2
+PACKAGE23=fxpy-python2.3
ROOT=$(CURDIR)/debian/
DOC=$(ROOT)/fxpy-doc/usr/share/doc/fxpy-doc
@@ -13,8 +14,6 @@
configure: configure-stamp
configure-stamp:
dh_testdir
- python2.1 setup.py config
- python2.2 setup.py config
touch configure-stamp
build: configure-stamp build-stamp
@@ -22,6 +21,7 @@
dh_testdir
python2.1 setup.py build_ext --include-dirs=/usr/include/fox --library-dirs=/usr/lib:/usr/lib/X11R6 build
python2.2 setup.py build_ext --include-dirs=/usr/include/fox --library-dirs=/usr/lib:/usr/lib/X11R6 build
+ python2.3 setup.py build_ext --include-dirs=/usr/include/fox --library-dirs=/usr/lib:/usr/lib/X11R6 build
touch build-stamp
clean:
@@ -30,6 +30,7 @@
rm -f build-stamp configure-stamp
python2.1 setup.py clean --all
python2.2 setup.py clean --all
+ python2.3 setup.py clean --all
dh_clean
install: build
@@ -39,6 +40,7 @@
dh_installdirs
python2.1 setup.py install --root=$(ROOT)/$(PACKAGE21) --no-compile
python2.2 setup.py install --root=$(ROOT)/$(PACKAGE22) --no-compile
+ python2.3 setup.py install --root=$(ROOT)/$(PACKAGE23) --no-compile
dh_installdocs
dh_installexamples -pfxpy-doc
cp examples/icons/*.png $(DOC)/examples/icons
|