[Python-modules-commits] r10240 - in packages/stepic/trunk/debian (5 files)
kitterma-guest at users.alioth.debian.org
kitterma-guest at users.alioth.debian.org
Mon Nov 2 03:14:00 UTC 2009
Date: Monday, November 2, 2009 @ 03:13:57
Author: kitterma-guest
Revision: 10240
* debian/rules
- Convert to dh 7 rules style (fixes dh_compress failure to compress man
page)
- Remove all of the un-needed /usr/share/doc/stepic/ instead of just the
redundant copying file
* debian/control
- Adjust versioned build-depends on python for correct python.mk
- Bump debhelper version requirement to 7
- Bump standards version to 3.8.3 without further change
- Add
- Add XS-Python-Verson
- Fix path to DPMT svn repo
* debian/copyright
- Use correct copyright symbol
* debian/compat
- Change compat to 7
Modified:
packages/stepic/trunk/debian/changelog
packages/stepic/trunk/debian/compat
packages/stepic/trunk/debian/control
packages/stepic/trunk/debian/copyright
packages/stepic/trunk/debian/rules
Modified: packages/stepic/trunk/debian/changelog
===================================================================
--- packages/stepic/trunk/debian/changelog 2009-11-01 18:59:41 UTC (rev 10239)
+++ packages/stepic/trunk/debian/changelog 2009-11-02 03:13:57 UTC (rev 10240)
@@ -1,10 +1,29 @@
-stepic (0.3-2) UNRELEASED; urgency=low
+stepic (0.3-2) unstable; urgency=low
+ [ Sandro Tosi ]
* debian/control
- - switch Vcs-Browser field to viewsvn
+ - Switch Vcs-Browser field to viewsvn
- -- Sandro Tosi <morph at debian.org> Mon, 03 Nov 2008 22:16:37 +0100
+ [ Scott Kitterman ]
+ * debian/rules
+ - Convert to dh 7 rules style (fixes dh_compress failure to compress man
+ page)
+ - Remove all of the un-needed /usr/share/doc/stepic/ instead of just the
+ redundant copying file
+ * debian/control
+ - Adjust versioned build-depends on python for correct python.mk
+ - Bump debhelper version requirement to 7
+ - Bump standards version to 3.8.3 without further change
+ - Add ${misc:Depends}
+ - Add XS-Python-Verson
+ - Fix path to DPMT svn repo
+ * debian/copyright
+ - Use correct copyright symbol
+ * debian/compat
+ - Change compat to 7
+ -- Scott Kitterman <scott at kitterman.com> Sun, 01 Nov 2009 21:30:08 -0500
+
stepic (0.3-1) unstable; urgency=low
* Initial release (Closes: #450734)
Modified: packages/stepic/trunk/debian/compat
===================================================================
--- packages/stepic/trunk/debian/compat 2009-11-01 18:59:41 UTC (rev 10239)
+++ packages/stepic/trunk/debian/compat 2009-11-02 03:13:57 UTC (rev 10240)
@@ -1 +1 @@
-5
+7
Modified: packages/stepic/trunk/debian/control
===================================================================
--- packages/stepic/trunk/debian/control 2009-11-01 18:59:41 UTC (rev 10239)
+++ packages/stepic/trunk/debian/control 2009-11-02 03:13:57 UTC (rev 10240)
@@ -3,16 +3,17 @@
Priority: optional
Maintainer: Scott Kitterman <scott at kitterman.com>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 5)
-Build-Depends-Indep: python (>= 2.3.5-11), python-support (>= 0.6.4)
-Standards-Version: 3.7.3
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: python (>= 2.5.4-2~), python-support (>= 0.6.4)
+Standards-Version: 3.8.3
Homepage: http://domnit.org/stepic/doc/
-Vcs-Svn: svn://svn.debian.org/python-modules/packages/stepic/trunk/
+XS-Python-Version: all
+Vcs-Svn: svn://svn.debian.org/svn/python-modules/packages/stepic/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/stepic/trunk/
Package: python-stepic
Architecture: all
-Depends: ${python:Depends}, python-imaging
+Depends: ${python:Depends}, ${misc:Depends}, python-imaging
Description: Python Steganography in Images
A Python module and command line tool for hiding arbitrary data within images
by slightly modifying the colors. These modifications are generally
Modified: packages/stepic/trunk/debian/copyright
===================================================================
--- packages/stepic/trunk/debian/copyright 2009-11-01 18:59:41 UTC (rev 10239)
+++ packages/stepic/trunk/debian/copyright 2009-11-02 03:13:57 UTC (rev 10240)
@@ -9,7 +9,7 @@
Copyright:
- Copyright (C) 2007 Lenny Domnitser
+ Copyright © 2007 Lenny Domnitser
License:
@@ -18,6 +18,6 @@
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
-The Debian packaging is (C) 2008, Scott Kitterman <scott at kitterman.com> and
+The Debian packaging is © 2008, Scott Kitterman <scott at kitterman.com> and
is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Modified: packages/stepic/trunk/debian/rules
===================================================================
--- packages/stepic/trunk/debian/rules 2009-11-01 18:59:41 UTC (rev 10239)
+++ packages/stepic/trunk/debian/rules 2009-11-02 03:13:57 UTC (rev 10240)
@@ -1,63 +1,12 @@
#!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# This file was originally written by Joey Hess and Craig Small.
-# As a special exception, when this file is copied by dh-make into a
-# dh-make output file, you may use that output file without restriction.
-# This special exception was added by Craig Small in version 0.37 of dh-make.
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+%:
+ dh $@
-build: build-stamp
+binary: binary-indep
+binary-indep:
+ dh $@ --before dh_installchangelogs
+ rm -rf $(CURDIR)/debian/python-stepic/usr/share/doc/stepic
+ dh_installchangelogs
+ dh $@ --after dh_installchangelogs
-build-stamp:
- dh_testdir
-
- # Add here commands to compile the package.
- python setup.py build
-
- touch $@
-
-clean:
- dh_testdir
- dh_testroot
- rm -f build-stamp
-
- # Add here commands to clean up after the build process.
- rm -Rf $(CURDIR)/debian/build
-
- dh_clean
-
-install: build
- dh_testdir
- dh_testroot
- dh_clean -k
- dh_installdirs
-
- # Add here commands to install the package into debian/stepic.
- python setup.py install --root $(CURDIR)/debian/python-stepic
-
-
-# Build architecture-independent files here.
-binary-indep: build install
-
- dh_testdir -i
- dh_testroot -i
- rm $(CURDIR)/debian/python-stepic/usr/share/doc/stepic/COPYING
- dh_installchangelogs -i
- dh_compress
- dh_installdocs -i
- dh_pysupport -i
- dh_installman -i
- dh_installdeb -i
- dh_gencontrol -i
- dh_md5sums -i
- dh_builddeb -i
-
-# Build architecture-dependent files here.
-binary-arch: build install
-# Nothing to do
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
More information about the Python-modules-commits
mailing list