[Python-apps-commits] r3722 - in packages/synopsis/trunk/debian (changelog control rules)

chaica-guest at users.alioth.debian.org chaica-guest at users.alioth.debian.org
Sun Sep 13 22:49:24 UTC 2009


    Date: Sunday, September 13, 2009 @ 22:49:23
  Author: chaica-guest
Revision: 3722

  * debian/control
    - Using dh7.
    - Small typo correction on short description fields.
  * debian/rules
    - Remove the hardcoded python version.

Modified:
  packages/synopsis/trunk/debian/changelog
  packages/synopsis/trunk/debian/control
  packages/synopsis/trunk/debian/rules

Modified: packages/synopsis/trunk/debian/changelog
===================================================================
--- packages/synopsis/trunk/debian/changelog	2009-09-12 20:51:31 UTC (rev 3721)
+++ packages/synopsis/trunk/debian/changelog	2009-09-13 22:49:23 UTC (rev 3722)
@@ -1,19 +1,23 @@
 synopsis (0.12-4) unstable; urgency=low
 
   * debian/control
+    - Using dh7.
     - Bump Standards-Version to 3.8.3
     - Set Maintainer to Carl Chenet <chaica at ohmytux.com> (Closes: #491017)
     - Add Vcs-Browser and Vcs-Svn fields.
     - Add ${Misc:Depends} because of debhelper.
     - Added Homepage field for the source package.
     - Removed Suggest, Conflict outdated fields.
+    - small typo correction on short description fields.
+  * debian/rules
+    - Remove the hardcoded python version.
   * debian/copyright
     - Fixed path to license: LGPL to LGPL-2.1
   * debian/synopsis-idl.copyright
     - - Fixed path to license: GPL to GPL-2
   * Added README.source for dpatch
 
- -- Carl Chenet <chaica at ohmytux.com>  Thu, 10 Sep 2009 23:24:57 +0200
+ -- Carl Chenet <chaica at ohmytux.com>  Mon, 14 Sep 2009 00:17:42 +0200
 
 synopsis (0.12-3) unstable; urgency=low
 

Modified: packages/synopsis/trunk/debian/control
===================================================================
--- packages/synopsis/trunk/debian/control	2009-09-12 20:51:31 UTC (rev 3721)
+++ packages/synopsis/trunk/debian/control	2009-09-13 22:49:23 UTC (rev 3722)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Carl Chenet <chaica at ohmytux.com>
 Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>> 5.0.37.2), dpatch, python-dev, python, python-central (>= 0.5), xutils-dev, libgc-dev, pkg-config, graphviz, bison, flex
+Build-Depends: debhelper (>= 7), python-support, dpatch, python-dev, python, python-central (>= 0.5), xutils-dev, libgc-dev, pkg-config, graphviz, bison, flex
 XS-Python-Version: current
 Standards-Version: 3.8.3
 Homepage: http://synopsis.fresco.org/
@@ -14,7 +14,7 @@
 Architecture: any
 XB-Python-Version: ${python:Versions}
 Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}, cpp, graphviz, gsfonts
-Description: A Source-code Introspection Tool
+Description: source-code Introspection Tool
  Synopsis is a multi-language source code introspection tool that
  provides a variety of representations for the parsed code to enable
  further processing such as documentation extraction, reverse
@@ -29,7 +29,7 @@
 Architecture: any
 XB-Python-Version: ${python:Versions}
 Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}, synopsis (= ${binary:Version})
-Description: The IDL parser for synopsis
+Description: IDL parser for synopsis
  Synopsis is a multi-language source code introspection tool that
  provides a variety of representations for the parsed code to enable
  further processing such as documentation extraction, reverse
@@ -64,7 +64,7 @@
 Section: libs
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: The runtime library for Synopsis
+Description: runtime library for Synopsis
  Synopsis is a multi-language source code introspection tool that
  provides a variety of representations for the parsed code to enable
  further processing such as documentation extraction, reverse
@@ -81,7 +81,7 @@
 Section: libdevel
 Architecture: any
 Depends: ${misc:Depends}, libsynopsis0.12 (= ${binary:Version})
-Description: The runtime library for Synopsis (development files)
+Description: runtime library for Synopsis (development files)
  Synopsis is a multi-language source code introspection tool that
  provides a variety of representations for the parsed code to enable
  further processing such as documentation extraction, reverse

Modified: packages/synopsis/trunk/debian/rules
===================================================================
--- packages/synopsis/trunk/debian/rules	2009-09-12 20:51:31 UTC (rev 3721)
+++ packages/synopsis/trunk/debian/rules	2009-09-13 22:49:23 UTC (rev 3722)
@@ -12,15 +12,13 @@
 export ROOTSYNOPSIS=$(CURDIR)/debian/synopsis
 export ROOTSYNOPSISDOC=$(CURDIR)/debian/synopsis-doc
 
-PYDEF=$(shell pyversions -d)
-
 configure: configure-stamp
 configure-stamp: patch-stamp
 	rm -f $@
 	dh_testdir
 
 	# configure the package
-	$(PYDEF) setup.py config --prefix=/usr --with-gc-prefix=/usr
+	python setup.py config --prefix=/usr --with-gc-prefix=/usr
 
 	touch $@
 
@@ -28,7 +26,7 @@
 build-stamp:
 	rm -f $@
 	dh_testdir
-	$(PYDEF) setup.py build
+	python setup.py build
 
         # Build the reference manual
 #	cd build/lib.* && mkdir -p share
@@ -48,7 +46,7 @@
 	rm -f build-stamp configure-stamp
 
 	# Add here commands to clean up after the build process.
-	-$(PYDEF) setup.py clean
+	python setup.py clean
 	find Synopsis -name '*.py?' | xargs rm
 
 	# The build directory is not completely cleaned by the python setup script
@@ -66,7 +64,7 @@
 	rm -rf $(PKG_TMP)
 
 	# Install the package into the temporary directory
-	$(PYDEF) setup.py install --root=$(PKG_TMP) --prefix=/usr
+	python setup.py install --root=$(PKG_TMP) --prefix=/usr
 	find $(PKG_TMP) -name '*.py?' | xargs rm
 
 	# set correct directory name for documentation




More information about the Python-apps-commits mailing list