[Python-modules-commits] r21132 - in packages/python-easygui/trunk/debian (4 files)

anoteng-guest at users.alioth.debian.org anoteng-guest at users.alioth.debian.org
Sun Apr 8 23:34:12 UTC 2012


    Date: Sunday, April 8, 2012 @ 23:34:10
  Author: anoteng-guest
Revision: 21132

Some minor changes according to Stefanos review

Modified:
  packages/python-easygui/trunk/debian/changelog
  packages/python-easygui/trunk/debian/control
  packages/python-easygui/trunk/debian/python-easygui.doc-base
  packages/python-easygui/trunk/debian/rules

Modified: packages/python-easygui/trunk/debian/changelog
===================================================================
--- packages/python-easygui/trunk/debian/changelog	2012-04-08 23:03:52 UTC (rev 21131)
+++ packages/python-easygui/trunk/debian/changelog	2012-04-08 23:34:10 UTC (rev 21132)
@@ -7,21 +7,19 @@
 
   [Charlie Smotherman]
   * debian/rules
-    - changed to dh $@ --with python2,python3.
-    - added rules to build python3 package.
+    - changed to dh $@ --with python2,python3
+    - added rules to build python3 package
   * debian/control
-    - increased min python version to (>=2.6.6-3).
-    - changed XS-P-V to X-P-V >=2.6.6-3.
+    - increased min python version to (>=2.6.6-3)
+    - changed XS-P-V to X-P-V >=2.5
     - removed ${python:Breaks}
-    - wrapped text in Description.
-    - bumped standards version to 3.9.2, no changes needed.
-    - added python3-all to B-D
-    - increased debhelper to (>= 7.0.50~), this was added to quiet lintian
-      about dh overrides.
+    - wrapped text in Description
+    - added python3-all (>= 3.1.2-6~) to B-D
+    - increased debhelper to (>= 7.0.50~), because we use dh overrides.
     - added X-Python3-Version: >= 3.0.
     - added python3-easygui binary stanza.
 
- -- Andreas Noteng <andreas at noteng.no>  Fri, 30 Mar 2012 06:49:24 +0200
+ -- Andreas Noteng <andreas at noteng.no>  Mon, 09 Apr 2012 01:18:21 +0200
 
 python-easygui (0.96-1) unstable; urgency=low
 

Modified: packages/python-easygui/trunk/debian/control
===================================================================
--- packages/python-easygui/trunk/debian/control	2012-04-08 23:03:52 UTC (rev 21131)
+++ packages/python-easygui/trunk/debian/control	2012-04-08 23:34:10 UTC (rev 21132)
@@ -16,9 +16,9 @@
 Architecture: all
 Depends: ${python:Depends}, ${misc:Depends}
 Recommends: python-imaging-tk
-Description: module for very simple, very easy GUI programming in python
- This package provides the python modules EasyGUI. Experienced Pythonistas
- need support for quick and dirty GUI features. New python programmers need
+Description: module for very simple, very easy GUI programming in Python
+ This package provides the Python modules EasyGUI. Experienced Pythonistas
+ need support for quick and dirty GUI features. New Python programmers need
  GUI capabilities that don't require any knowledge of Tkinter, frames,
  widgets, callbacks or lambda. This is what EasyGUI provides. Using EasyGUI,
  all GUI interactions are invoked by simple function calls.
@@ -26,9 +26,9 @@
 Package: python3-easygui
 Architecture: all
 Depends: ${python3:Depends}, ${misc:Depends}
-Description: module for very simple, very easy GUI programming in python3
- This package provides the python3 modules EasyGUI. Experienced Pythonistas
- need support for quick and dirty GUI features. New python programmers need
+Description: module for very simple, very easy GUI programming in Python3
+ This package provides the Python3 modules EasyGUI. Experienced Pythonistas
+ need support for quick and dirty GUI features. New Python programmers need
  GUI capabilities that don't require any knowledge of Tkinter, frames,
  widgets, callbacks or lambda. This is what EasyGUI provides. Using EasyGUI,
  all GUI interactions are invoked by simple function calls.

Modified: packages/python-easygui/trunk/debian/python-easygui.doc-base
===================================================================
--- packages/python-easygui/trunk/debian/python-easygui.doc-base	2012-04-08 23:03:52 UTC (rev 21131)
+++ packages/python-easygui/trunk/debian/python-easygui.doc-base	2012-04-08 23:34:10 UTC (rev 21132)
@@ -1,9 +1,9 @@
 Document: python-easygui
 Title: EasyGUI Manual
 Author: Steve Ferg
-Abstract: This manual describes what EasyGUI is
+Abstract: This manual describes what EasyGUI is, and how to use it to create
+ simple GUIs for your Python scripts.
 Section: Programming/Python
-
 Format: HTML
 Index: /usr/share/doc/python-easygui/easygui_pydoc.html
-Files: /usr/share/doc/python-easygui/easygui_version_info.html
+Files: /usr/share/doc/python-easygui/*

Modified: packages/python-easygui/trunk/debian/rules
===================================================================
--- packages/python-easygui/trunk/debian/rules	2012-04-08 23:03:52 UTC (rev 21131)
+++ packages/python-easygui/trunk/debian/rules	2012-04-08 23:34:10 UTC (rev 21132)
@@ -7,18 +7,18 @@
 	dh $@ --with python2,python3
 
 override_dh_auto_build:
-	set -e; \
+	set -ex; \
 	for py in $(PYVERS) $(PY3VERS); do \
 		$$py setup.py build; \
 	done
 
 override_dh_auto_install:
-	set -e; \
+	set -ex; \
 	for py in $(PYVERS); do \
 		$$py setup.py install --skip-build --root debian/python-easygui \
 			--install-layout deb; \
 	done
-	set -e; \
+	set -ex; \
 	for py in $(PY3VERS); do \
 		$$py setup.py install --skip-build --root debian/python3-easygui \
 			--install-layout deb; \
@@ -31,3 +31,6 @@
 
 override_dh_auto_clean:
 	rm -rf build *.egg.info
+	rm -rf easygui_py3doc.html
+	rm -rf py3_easygui_version_info.html
+	dh_auto_clean




More information about the Python-modules-commits mailing list