[Python-modules-commits] r22416 - in packages/webhelpers/trunk/debian (changelog control rules)
piotr at users.alioth.debian.org
piotr at users.alioth.debian.org
Sun Jul 8 20:45:37 UTC 2012
Date: Sunday, July 8, 2012 @ 20:45:34
Author: piotr
Revision: 22416
* Remove WebHelpers.egg-info in clean target (to make it build twice in a row with DEB_BUILD_OPTIONS=nocheck, closes: 671532)
* Add (now empty) build-arch and build-indep targets to debian/rules
* Update Homepage field (closes: 637886)
* Standards-Version bumped to 3.9.3 (no other changes needed)
Modified:
packages/webhelpers/trunk/debian/changelog
packages/webhelpers/trunk/debian/control
packages/webhelpers/trunk/debian/rules
Modified: packages/webhelpers/trunk/debian/changelog
===================================================================
--- packages/webhelpers/trunk/debian/changelog 2012-07-08 19:18:59 UTC (rev 22415)
+++ packages/webhelpers/trunk/debian/changelog 2012-07-08 20:45:34 UTC (rev 22416)
@@ -1,3 +1,13 @@
+webhelpers (1.3-4) unstable; urgency=low
+
+ * Remove WebHelpers.egg-info in clean target (to make it build twice in a
+ row with DEB_BUILD_OPTIONS=nocheck, closes: 671532)
+ * Add (now empty) build-arch and build-indep targets to debian/rules
+ * Update Homepage field (closes: 637886)
+ * Standards-Version bumped to 3.9.3 (no other changes needed)
+
+ -- Piotr Ożarowski <piotr at debian.org> Sun, 08 Jul 2012 22:27:47 +0200
+
webhelpers (1.3-3) unstable; urgency=low
* Handle API change in WebOb 1.1.1 (thanks to Colin Watson for the patch
Modified: packages/webhelpers/trunk/debian/control
===================================================================
--- packages/webhelpers/trunk/debian/control 2012-07-08 19:18:59 UTC (rev 22415)
+++ packages/webhelpers/trunk/debian/control 2012-07-08 20:45:34 UTC (rev 22416)
@@ -6,10 +6,10 @@
Build-Depends: debhelper (>= 5)
Build-Depends-Indep: python-all (>= 2.6.6-3), python-setuptools (>= 0.6b3), python-markupsafe,
python-nose, python-routes, python-webob, python-pylons, python-sqlalchemy
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
Vcs-Svn: svn://svn.debian.org/python-modules/packages/webhelpers/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/webhelpers/trunk/
-Homepage: http://pylonshq.com/WebHelpers/
+Homepage: http://docs.pylonsproject.org/projects/webhelpers/dev/
X-Python-Version: >= 2.4
Package: python-webhelpers
Modified: packages/webhelpers/trunk/debian/rules
===================================================================
--- packages/webhelpers/trunk/debian/rules 2012-07-08 19:18:59 UTC (rev 22415)
+++ packages/webhelpers/trunk/debian/rules 2012-07-08 20:45:34 UTC (rev 22416)
@@ -11,20 +11,16 @@
SITEDIR = $(call py_sitename, $(PYDEFAULT))
clean:
- rm -f build-*
dh_testdir
dh_testroot
- rm -rf build
+ rm -rf build WebHelpers.egg-info
find . -name *\.py[co] -exec rm -f {} \;
- dh_clean
+ dh_clean build-*
-build: build-stamp
+build:
+build-arch:
+build-indep:
-build-stamp:
- dh_testdir
- python setup.py build
- touch $@
-
test: $(PYVERS:%=test-python%)
test-python%:
@@ -33,28 +29,26 @@
python$* setup.py nosetests
endif
-install: build
+install:
dh_testdir
dh_testroot
- dh_clean -k
+ dh_prep
dh_installdirs
python setup.py install \
--no-compile \
--single-version-externally-managed \
--root $(CURDIR)/debian/$(package) --install-layout=deb
-binary-indep: build install test
+binary-indep: install test
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_installexamples
dh_compress -X.py
- dh_link
dh_python2
dh_fixperms
dh_installdeb
- dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
@@ -62,4 +56,4 @@
binary-arch:
binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure test
+.PHONY: clean build build-arch build-indep binary-arch binary-indep binary install test
More information about the Python-modules-commits
mailing list