[Python-modules-commits] r14951 - in packages/hachoir-urwid/trunk/debian (7 files)

mca-guest at users.alioth.debian.org mca-guest at users.alioth.debian.org
Sun Nov 21 22:56:23 UTC 2010


    Date: Sunday, November 21, 2010 @ 22:56:21
  Author: mca-guest
Revision: 14951

Switch to dpkg-source 3.0 (quilt) format
remove outdated URL from man page, fix Homepage: in control
fix Depends and Build-Depends, patch upstream for outdated URL

Added:
  packages/hachoir-urwid/trunk/debian/patches/
  packages/hachoir-urwid/trunk/debian/patches/fix-project-url.patch
  packages/hachoir-urwid/trunk/debian/patches/series
Modified:
  packages/hachoir-urwid/trunk/debian/changelog
  packages/hachoir-urwid/trunk/debian/control
  packages/hachoir-urwid/trunk/debian/hachoir-urwid.1
  packages/hachoir-urwid/trunk/debian/source/format

Modified: packages/hachoir-urwid/trunk/debian/changelog
===================================================================
--- packages/hachoir-urwid/trunk/debian/changelog	2010-11-21 17:01:40 UTC (rev 14950)
+++ packages/hachoir-urwid/trunk/debian/changelog	2010-11-21 22:56:21 UTC (rev 14951)
@@ -1,10 +1,23 @@
 hachoir-urwid (1.1-2) UNRELEASED; urgency=low
 
+  [ Sandro Tosi ]
   * debian/control
     - switch Vcs-Browser field to viewsvn
 
- -- Sandro Tosi <morph at debian.org>  Mon, 03 Nov 2008 22:13:14 +0100
+  [ Michel Casabona ]
+  * control: 
+    - fix URL in Homepage:
+    - Build-Depends-Indep: python-all instead of python-all-dev
+    - add ${misc:Depends} to Depends: 
+  * remove outdated URL from man page
+    Thanks to Mike Hommey (Closes: #604040)
+  * bump Standards-Version to 3.9.1
+    - reference GPL-2 in the copyright file
+  * Switch to dpkg-source 3.0 (quilt) format
+  * fix-project-url.patch: fix URL in README and version.py
 
+ -- Michel Casabona <michel.casabona at free.fr>  Sun, 21 Nov 2010 23:46:36 +0100
+
 hachoir-urwid (1.1-1) unstable; urgency=low
 
   [ Michel Casabona ]

Modified: packages/hachoir-urwid/trunk/debian/control
===================================================================
--- packages/hachoir-urwid/trunk/debian/control	2010-11-21 17:01:40 UTC (rev 14950)
+++ packages/hachoir-urwid/trunk/debian/control	2010-11-21 22:56:21 UTC (rev 14951)
@@ -4,15 +4,15 @@
 Maintainer: Michel Casabona <michel.casabona at free.fr>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Build-Depends: debhelper (>=5), python (>= 2.4), cdbs (>= 0.4.43), python-support (>= 0.4)
-Build-Depends-Indep: python-all-dev (>= 2.4)
-Standards-Version: 3.8.0
-Homepage: http://hachoir.org/wiki/hachoir-urwid
+Build-Depends-Indep: python-all (>= 2.4)
+Standards-Version: 3.9.1
+Homepage: http://bitbucket.org/haypo/hachoir/wiki/hachoir-urwid
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/hachoir-urwid/trunk/
 Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/hachoir-urwid/trunk/
 
 Package: python-hachoir-urwid
 Architecture: all
-Depends: ${python:Depends}, python-hachoir-parser (>= 1.0), python-urwid (>= 0.9.4)
+Depends: ${python:Depends}, ${misc:Depends}, python-hachoir-parser (>= 1.0), python-urwid (>= 0.9.4)
 Suggests: python-profiler
 Description: Binary file explorer using Hachoir and urwid libraries
  hachoir-urwid is a binary file explorer based on Hachoir library to parse the

Modified: packages/hachoir-urwid/trunk/debian/hachoir-urwid.1
===================================================================
--- packages/hachoir-urwid/trunk/debian/hachoir-urwid.1	2010-11-21 17:01:40 UTC (rev 14950)
+++ packages/hachoir-urwid/trunk/debian/hachoir-urwid.1	2010-11-21 22:56:21 UTC (rev 14951)
@@ -8,9 +8,9 @@
 .TP
 \fB\-h\fR, \fB\-\-help\fR
 show this help message and exit
-.IP
+.TP
 Urwid:
-.IP
+.TP
 Option of urwid explorer
 .TP
 \fB\-\-preload\fR=\fIPRELOAD\fR
@@ -61,7 +61,3 @@
 .TP
 \fB\-\-debug\fR
 Debug mode
-.PP
-Hachoir library version 1.0.1
-.PP
-Website: http://hachoir.org/wiki/hachoir\-urwid

Added: packages/hachoir-urwid/trunk/debian/patches/fix-project-url.patch
===================================================================
--- packages/hachoir-urwid/trunk/debian/patches/fix-project-url.patch	                        (rev 0)
+++ packages/hachoir-urwid/trunk/debian/patches/fix-project-url.patch	2010-11-21 22:56:21 UTC (rev 14951)
@@ -0,0 +1,21 @@
+fix project URL (copied from upstream trunk)
+--- a/README
++++ b/README
+@@ -5,7 +5,7 @@
+ useful when you would like to compare hexadecimal data and Hachoir
+ reprensentation.
+ 
+-Website: http://hachoir.org/wiki/hachoir-urwid
++Website: http://bitbucket.org/haypo/hachoir/wiki/hachoir-urwid
+ 
+ Startup options
+ ===============
+--- a/hachoir_urwid/version.py
++++ b/hachoir_urwid/version.py
+@@ -1,5 +1,5 @@
+ VERSION = "1.1"
+ PACKAGE = "hachoir-urwid"
+-WEBSITE = 'http://hachoir.org/wiki/hachoir-urwid'
++WEBSITE = 'http://bitbucket.org/haypo/hachoir/wiki/hachoir-urwid'
+ LICENSE = 'GNU GPL v2'
+ 

Added: packages/hachoir-urwid/trunk/debian/patches/series
===================================================================
--- packages/hachoir-urwid/trunk/debian/patches/series	                        (rev 0)
+++ packages/hachoir-urwid/trunk/debian/patches/series	2010-11-21 22:56:21 UTC (rev 14951)
@@ -0,0 +1 @@
+fix-project-url.patch

Modified: packages/hachoir-urwid/trunk/debian/source/format
===================================================================
--- packages/hachoir-urwid/trunk/debian/source/format	2010-11-21 17:01:40 UTC (rev 14950)
+++ packages/hachoir-urwid/trunk/debian/source/format	2010-11-21 22:56:21 UTC (rev 14951)
@@ -1 +1 @@
-1.0
+3.0 (quilt)




More information about the Python-modules-commits mailing list