Skip to content

Commit 4b5e8df

Browse files
committed
make -> Makefile, update debian/rules
1 parent 994b3f4 commit 4b5e8df

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

make renamed to Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
URL_AUTH=svn+ssh://${ALIOTH_USER}@svn.debian.org/svn/python-modules/packages/doublex/trunk
55
URL_ANON=svn://svn.debian.org/svn/python-modules/packages/doublex/trunk
6+
GITHUB[email protected]:davidvilla/python-doublex.git
67

78
debian:
89
if [ ! -z "$${ALIOTH_USER}" ]; then \
@@ -28,7 +29,9 @@ wiki:
2829

2930
push:
3031
git push
31-
git push --tags [email protected]:davidvilla/python-doublex.git
32+
git push ${GITHUB}
33+
git push --tags ${GITHUB}
34+
3235

3336
clean:
3437
find . -name *.pyc -delete

debian/rules

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,16 @@ build-python%:
2020
python$* setup.py build
2121

2222
override_dh_auto_build: $(PYTHON3:%=build-python%)
23-
dh_auto_build
23+
python setup.py build --force
2424

2525
install-python%:
2626
python$* setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb
2727

28-
2928
override_dh_auto_install: $(PYTHON3:%=install-python%)
30-
dh_auto_install
29+
python setup.py install --force --root=./debian/tmp --no-compile -O0 --install-layout=deb
3130

3231
override_dh_auto_clean:
33-
dh_auto_clean
32+
python setup.py clean -a
3433
rm -rf build
3534
rm -rf *.egg-info
3635

0 commit comments

Comments
 (0)