release JCL 0.1 beta2
This commit is contained in:
6
debian/changelog
vendored
6
debian/changelog
vendored
@@ -1,3 +1,9 @@
|
||||
jcl (0.1b2) unstable; urgency=low
|
||||
|
||||
* JCL v0.1 beta 2
|
||||
|
||||
-- David Rousselie <dax@happycoders.org> Tue, 11 May 2010 07:45:54 +0200
|
||||
|
||||
jcl (0.1b1) unstable; urgency=low
|
||||
|
||||
* JCL v0.1 beta 1
|
||||
|
||||
2
debian/compat
vendored
2
debian/compat
vendored
@@ -1 +1 @@
|
||||
4
|
||||
7
|
||||
|
||||
11
debian/control
vendored
11
debian/control
vendored
@@ -2,15 +2,12 @@ Source: jcl
|
||||
Maintainer: David Rousselie <dax@happycoders.org>
|
||||
Section: python
|
||||
Priority: optional
|
||||
Build-Depends: python-setuptools (>= 0.6b3-1), python-all-dev (>= 2.3.5-11), debhelper (>= 5.0.38), python-central (>= 0.5.6)
|
||||
Standards-Version: 3.7.2
|
||||
XS-Python-Version: all
|
||||
Build-Depends: debhelper (>=7.0.50~), python-support (>= 0.6), cdbs (>= 0.4.49), python-all-dev
|
||||
Standards-Version: 3.8.4
|
||||
|
||||
Package: python-jcl
|
||||
Architecture: all
|
||||
Depends: ${python:Depends}, python-sqlobject (>= 0.8), python-pyxmpp (>= 1.0), python-pysqlite2 (>= 2.0)
|
||||
Suggests:
|
||||
XB-Python-Version: ${python:Versions}
|
||||
Depends: ${python:Depends}, python-sqlobject (>= 0.8), python-pyxmpp (>= 1.0.1), python-pysqlite2 (>= 2.0)
|
||||
Suggests:
|
||||
Provides: ${python:Provides}
|
||||
Description: Jabber Component Library
|
||||
|
||||
|
||||
11465
debian/patches/debian-changes-0.1b2
vendored
Normal file
11465
debian/patches/debian-changes-0.1b2
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
debian/patches/series
vendored
Normal file
1
debian/patches/series
vendored
Normal file
@@ -0,0 +1 @@
|
||||
debian-changes-0.1b2
|
||||
1
debian/pyversions
vendored
Normal file
1
debian/pyversions
vendored
Normal file
@@ -0,0 +1 @@
|
||||
2.4-2.6
|
||||
76
debian/rules
vendored
76
debian/rules
vendored
@@ -1,76 +1,10 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
# This file was automatically generated by stdeb 0.2.a1 at
|
||||
# Mon, 12 Nov 2007 08:09:57 +0100
|
||||
DEB_PYTHON_SYSTEM := pysupport
|
||||
|
||||
PACKAGE_NAME=python-jcl
|
||||
MODULE_NAME=jcl
|
||||
DEB_UPSTREAM_VERSION=0.1b1
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
include /usr/share/cdbs/1/class/python-distutils.mk
|
||||
|
||||
PYVERS=$(shell pyversions -vr)
|
||||
|
||||
build: build-stamp
|
||||
build-stamp: $(PYVERS:%=build-python%)
|
||||
touch $@
|
||||
build-python%:
|
||||
# Force setuptools, but reset sys.argv[0] to 'setup.py' because setup.py files expect that.
|
||||
python$* -c "import setuptools,sys;f='setup.py';sys.argv[0]=f;execfile(f,{'__file__':f,'__name__':'__main__'})" build
|
||||
touch $@
|
||||
clean:
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
rm -f *-stamp
|
||||
rm -rf dist build
|
||||
-find -name '*.py[co]' | xargs rm -f
|
||||
# find . -name *.pyc -exec rm {} \;
|
||||
clean::
|
||||
rm -rf build build-stamp configure-stamp MANIFEST
|
||||
dh_clean
|
||||
|
||||
install: build install-prereq $(PYVERS:%=install-python%)
|
||||
install-prereq:
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_clean -k
|
||||
|
||||
install-python%:
|
||||
# Force setuptools, but reset sys.argv[0] to 'setup.py' because setup.py files expect that.
|
||||
python$* -c "import setuptools,sys;f='setup.py';sys.argv[0]=f;execfile(f,{'__file__':f,'__name__':'__main__'})" install --no-compile --single-version-externally-managed --root $(CURDIR)/debian/${PACKAGE_NAME}
|
||||
mv debian/${PACKAGE_NAME}/usr/lib/python$*/site-packages/${MODULE_NAME}-${DEB_UPSTREAM_VERSION}-py$*.egg-info debian/${PACKAGE_NAME}/usr/lib/python$*/site-packages/${MODULE_NAME}.egg-info
|
||||
|
||||
binary-arch:
|
||||
|
||||
binary-indep: build install
|
||||
dh_testdir -i
|
||||
dh_testroot -i
|
||||
dh_pycentral -i
|
||||
dh_installdocs -i
|
||||
dh_installdirs -i
|
||||
dh_installexamples -i
|
||||
dh_strip -i
|
||||
dh_compress -i -X.py
|
||||
dh_fixperms -i
|
||||
: # Replace all '#!' calls to python with $(PYTHON)
|
||||
: # and make them executable
|
||||
for i in \
|
||||
`find debian/python-jcl/usr/bin -type f` \
|
||||
`find debian/python-jcl/usr/lib -type f`; \
|
||||
do \
|
||||
case "$$i" in *-[0-9].[0-9]) continue; esac; \
|
||||
sed '1s,#!.*python[^ ]*\(.*\),#! /usr/bin/python\1,' \
|
||||
$$i > $$i.temp; \
|
||||
if cmp --quiet $$i $$i.temp; then \
|
||||
rm -f $$i.temp; \
|
||||
else \
|
||||
mv -f $$i.temp $$i; \
|
||||
chmod 755 $$i; \
|
||||
echo "fixed interpreter: $$i"; \
|
||||
fi; \
|
||||
done
|
||||
dh_installdeb -i
|
||||
dh_gencontrol -i
|
||||
dh_md5sums -i
|
||||
dh_builddeb -i
|
||||
|
||||
binary: binary-indep binary-arch
|
||||
|
||||
|
||||
.PHONY: build clean binary-indep binary-arch binary install configure
|
||||
|
||||
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
||||
Reference in New Issue
Block a user