[Python-apps-commits] r2788 - in packages/archmage/trunk/debian (8 files)

dottedmag-guest at users.alioth.debian.org dottedmag-guest at users.alioth.debian.org
Sun Apr 26 08:30:51 UTC 2009


    Date: Sunday, April 26, 2009 @ 08:30:50
  Author: dottedmag-guest
Revision: 2788

archmage: new upstream release.

Added:
  packages/archmage/trunk/debian/archmage.preinst
Modified:
  packages/archmage/trunk/debian/changelog
  packages/archmage/trunk/debian/control
  packages/archmage/trunk/debian/copyright
  packages/archmage/trunk/debian/patches/series
  packages/archmage/trunk/debian/rules
Deleted:
  packages/archmage/trunk/debian/patches/html_to_text.py-is-not-executable.diff
  packages/archmage/trunk/debian/patches/missing-import-error-msg.diff

Added: packages/archmage/trunk/debian/archmage.preinst
===================================================================
--- packages/archmage/trunk/debian/archmage.preinst	                        (rev 0)
+++ packages/archmage/trunk/debian/archmage.preinst	2009-04-26 08:30:50 UTC (rev 2788)
@@ -0,0 +1,11 @@
+#!/bin/sh
+# TODO: remove this file after releasing Squeeze
+set -e
+if [ "$1" = upgrade ]
+then
+        if dpkg --compare-versions "$2" lt 1:0.2-1; then
+                pycentral pkgremove archmage
+        fi
+fi
+
+#DEBHELPER#

Modified: packages/archmage/trunk/debian/changelog
===================================================================
--- packages/archmage/trunk/debian/changelog	2009-04-25 18:02:41 UTC (rev 2787)
+++ packages/archmage/trunk/debian/changelog	2009-04-26 08:30:50 UTC (rev 2788)
@@ -1,7 +1,15 @@
-archmage (1:0.1.9-4) unstable; urgency=low
+archmage (1:0.2-1) unstable; urgency=low
 
-  * Fixed traceback on error path if destination directory already exists
-    (Closes: #521042)
+  * New upstream release.
+    - Fixes traceback on error path if destination directory already
+      exists (Closes: #521042).
+    - Removed html_to_text.py-is-not-executable.diff patch, no longer
+      relevant.
+  * Standards-Version bumped to 3.8.1, no changes required.
+  * Switched to python-support.
+    - added preinst script to de-register from pycentral.
+  * python-all-dev build-dependency relaxed to python, as no binary
+    modules are built.
 
  -- Mikhail Gusarov <dottedmag at dottedmag.net>  Thu, 02 Apr 2009 15:55:49 +0700
 

Modified: packages/archmage/trunk/debian/control
===================================================================
--- packages/archmage/trunk/debian/control	2009-04-25 18:02:41 UTC (rev 2787)
+++ packages/archmage/trunk/debian/control	2009-04-26 08:30:50 UTC (rev 2788)
@@ -3,9 +3,9 @@
 Priority: optional
 Maintainer: Mikhail Gusarov <dottedmag at dottedmag.net>
 Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 5.0.37.2), cdbs (>= 0.4.41), python-all-dev (>= 2.3.5-11), python-central (>= 0.6), quilt
-Standards-Version: 3.8.0
-XS-Python-Version: all
+Build-Depends: debhelper (>= 5.0.37.2), cdbs (>= 0.4.41), python, quilt
+Build-Depends-Indep: python-support (>= 0.6.4)
+Standards-Version: 3.8.1
 Vcs-Svn: svn://svn.debian.org/python-apps/packages/archmage/trunk/
 Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/archmage/trunk/
 Homepage: http://archmage.sf.net
@@ -13,7 +13,6 @@
 Package: archmage
 Architecture: all
 Depends: ${python:Depends}, ${misc:Depends}, python-chm
-XB-Python-Version: ${python:Versions}
 Suggests: libapache2-mod-python
 Description: CHM(Compiled HTML) Decompressor
  arCHMage is a reader and decompiler for files in the CHM format. This is the

Modified: packages/archmage/trunk/debian/copyright
===================================================================
--- packages/archmage/trunk/debian/copyright	2009-04-25 18:02:41 UTC (rev 2787)
+++ packages/archmage/trunk/debian/copyright	2009-04-26 08:30:50 UTC (rev 2788)
@@ -8,7 +8,7 @@
 Copyright Holders:
 
 Copyright (c) 2003 Eugeny Korekin <az at ftc.ru>
-Copyright (c) 2005-2007 Basil Shubin <basil.shubin at gmail.com>
+Copyright (c) 2005-2009 Basil Shubin <basil.shubin at gmail.com>
 
 License:
 

Deleted: packages/archmage/trunk/debian/patches/html_to_text.py-is-not-executable.diff
===================================================================
--- packages/archmage/trunk/debian/patches/html_to_text.py-is-not-executable.diff	2009-04-25 18:02:41 UTC (rev 2787)
+++ packages/archmage/trunk/debian/patches/html_to_text.py-is-not-executable.diff	2009-04-26 08:30:50 UTC (rev 2788)
@@ -1,10 +0,0 @@
-htmltotext.py is not executable, so the shebang is not needed.
-Index: archmage-0.1.9/archmod/htmltotext.py
-===================================================================
---- archmage-0.1.9.orig/archmod/htmltotext.py	2007-07-12 01:00:23.000000000 +0700
-+++ archmage-0.1.9/archmod/htmltotext.py	2007-07-12 01:00:26.000000000 +0700
-@@ -1,4 +1,3 @@
--#!/usr/bin/env python
- # htmltotext
- 
- import sys

Deleted: packages/archmage/trunk/debian/patches/missing-import-error-msg.diff
===================================================================
--- packages/archmage/trunk/debian/patches/missing-import-error-msg.diff	2009-04-25 18:02:41 UTC (rev 2787)
+++ packages/archmage/trunk/debian/patches/missing-import-error-msg.diff	2009-04-26 08:30:50 UTC (rev 2788)
@@ -1,12 +0,0 @@
-error_msg is used in CHM.py, but was not imported from another module.
---- archmod/CHM.py.orig	2009-04-02 15:52:34.000000000 +0700
-+++ archmod/CHM.py	2009-04-02 15:52:35.000000000 +0700
-@@ -18,7 +18,7 @@
- # import PyCHM bindings
- from chm import chmlib
- 
--from archmod import message
-+from archmod import message, error_msg
- 
- from archmod.htmltotext import htmltotext
- 

Modified: packages/archmage/trunk/debian/patches/series
===================================================================
--- packages/archmage/trunk/debian/patches/series	2009-04-25 18:02:41 UTC (rev 2787)
+++ packages/archmage/trunk/debian/patches/series	2009-04-26 08:30:50 UTC (rev 2788)
@@ -1,3 +1 @@
 python-interpreter.diff
-html_to_text.py-is-not-executable.diff
-missing-import-error-msg.diff

Modified: packages/archmage/trunk/debian/rules
===================================================================
--- packages/archmage/trunk/debian/rules	2009-04-25 18:02:41 UTC (rev 2787)
+++ packages/archmage/trunk/debian/rules	2009-04-26 08:30:50 UTC (rev 2788)
@@ -1,6 +1,6 @@
 #!/usr/bin/make -f
 
-DEB_PYTHON_SYSTEM=pycentral
+DEB_PYTHON_SYSTEM=pysupport
 
 include /usr/share/cdbs/1/rules/debhelper.mk                                   
 include /usr/share/cdbs/1/rules/patchsys-quilt.mk




More information about the Python-apps-commits mailing list