Your message dated Sun, 02 Dec 2012 03:47:33 +0000
with message-id <[email protected]>
and subject line Bug#689707: fixed in tortoisehg 2.6-1
has caused the Debian Bug report #689707,
regarding please upload 2.5.1 into experimental
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
689707: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689707
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: tortoisehg
Version: 2.4-2
Severity: normal

Please upload 2.5.1 version into experimental to match the latest
Mercurial. After uscan/uupdate the following patch needs to be applied.
It bumps some dependencies and drops an old patch already applied
upstream. Also, it adds dh_clean call absent for some reason from the rules 
file.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.5-trunk-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_GB.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages tortoisehg depends on:
ii  mercurial           2.3.1-1
ii  python              2.7.2-9
ii  python-gobject      3.0.3-3
ii  python-qscintilla2  2.6.2-3
ii  python-qt4          4.9.5-1
ii  python2.6           2.6.7-4
ii  python2.7           2.7.2-9

Versions of packages tortoisehg recommends:
ii  libjs-jquery      1.7-1
ii  libjs-underscore  1.3.3-1
ii  python-iniparse   0.4-2.1
ii  python-pygments   1.5+dfsg-1

Versions of packages tortoisehg suggests:
pn  tortoisehg-nautilus  <none>
diff -Nru tortoisehg-2.4/debian/changelog tortoisehg-2.5.1/debian/changelog
--- tortoisehg-2.4/debian/changelog	2012-09-16 22:48:11.000000000 +0200
+++ tortoisehg-2.5.1/debian/changelog	2012-10-05 11:45:18.000000000 +0200
@@ -1,3 +1,9 @@
+tortoisehg (2.5.1-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Maintainer <email@here>  Fri, 05 Oct 2012 11:45:18 +0200
+
 tortoisehg (2.4-2) unstable; urgency=medium
 
   * Add fix-config-path.patch to fix crash on new installations of
diff -Nru tortoisehg-2.4/debian/control tortoisehg-2.5.1/debian/control
--- tortoisehg-2.4/debian/control	2012-05-29 10:16:16.000000000 +0200
+++ tortoisehg-2.5.1/debian/control	2012-10-05 12:39:20.000000000 +0200
@@ -14,7 +14,7 @@
 
 Package: tortoisehg
 Architecture: all
-Depends: mercurial (>= 2.1~), mercurial (<< 2.3~), python-gobject (>= 2.12.1),
- python-qt4 (>= 4.7), python-qscintilla2, ${shlibs:Depends}, ${misc:Depends},
+Depends: mercurial (>= 2.3~), mercurial (<< 2.4~), python-gobject (>= 2.12.1),
+ python-qt4 (>= 4.9.5), python-qscintilla2 (>= 2.6.2), ${shlibs:Depends}, ${misc:Depends},
  ${python:Depends}
 Recommends: libjs-jquery, libjs-underscore, python-iniparse, python-pygments
diff -Nru tortoisehg-2.4/debian/patches/fix-config-path.patch tortoisehg-2.5.1/debian/patches/fix-config-path.patch
--- tortoisehg-2.4/debian/patches/fix-config-path.patch	2012-09-16 22:38:53.000000000 +0200
+++ tortoisehg-2.5.1/debian/patches/fix-config-path.patch	1970-01-01 01:00:00.000000000 +0100
@@ -1,49 +0,0 @@
-Description: fix configuration path (and crash on startup)
-Origin: https://bitbucket.org/tortoisehg/thg/changeset/9635693f3b973702fdee4e8fa487afb4d93959be
-Bug-Debian: http://bugs.debian.org/678558
-
-# HG changeset patch
-# User Jairo Llopis <[email protected]>
-# Date 1342020308 -7200
-# Node ID 9635693f3b973702fdee4e8fa487afb4d93959be
-# Parent  b73053f7cacb5ca8679d09b81363cd62473f5496
-nautilus: Fix issue #869 [1]. Nautilus extension now works.
-
-The nautilus extension now uses $XDG_CONFIG_HOME like the rest of thg.
-
-Links:
-    [1] https://bitbucket.org/tortoisehg/thg/issue/869/tortoisehg-nautilus-doesnt-work-at-all
-
-Index: tortoisehg-2.4/contrib/nautilus-thg.py
-===================================================================
---- tortoisehg-2.4.orig/contrib/nautilus-thg.py	2012-09-16 22:35:49.904065810 +0200
-+++ tortoisehg-2.4/contrib/nautilus-thg.py	2012-09-16 22:36:23.272376213 +0200
-@@ -66,10 +66,25 @@
-         from tortoisehg.util import menuthg
-         self.hgtk = paths.find_in_path(thg_main)
-         self.menu = menuthg.menuThg()
--        self.notify = os.path.expanduser('~/.tortoisehg/notify')
- 
--        f = open(self.notify, 'w')
--        f.close()
-+        # Get the configuration directory path
-+        try:
-+            self.notify = os.environ['XDG_CONFIG_HOME']
-+        except KeyError:
-+            self.notify = os.path.join('$HOME', '.config')
-+
-+        self.notify = os.path.expandvars(os.path.join(
-+            self.notify,
-+            'TortoiseHg'))
-+
-+        # Create folder if it does not exist
-+        if not os.path.isdir(self.notify):
-+            os.makedirs(self.notify)
-+
-+        # Create the notify file
-+        self.notify = os.path.join(self.notify, 'notify')
-+        open(self.notify, 'w').close()
-+
-         self.gmon = Gio.file_new_for_path(self.notify).monitor(Gio.FileMonitorFlags.NONE, None)
-         self.gmon.connect('changed', self.notified)
- 
diff -Nru tortoisehg-2.4/debian/patches/series tortoisehg-2.5.1/debian/patches/series
--- tortoisehg-2.4/debian/patches/series	2012-09-16 22:36:02.000000000 +0200
+++ tortoisehg-2.5.1/debian/patches/series	2012-10-05 11:47:02.000000000 +0200
@@ -1,2 +1 @@
 add-config-file.patch
-fix-config-path.patch
diff -Nru tortoisehg-2.4/debian/rules tortoisehg-2.5.1/debian/rules
--- tortoisehg-2.4/debian/rules	2012-05-29 10:16:16.000000000 +0200
+++ tortoisehg-2.5.1/debian/rules	2012-10-05 12:38:54.000000000 +0200
@@ -23,6 +23,7 @@
 	rm -f debian/pycompat
 	rm -f debian/thg.1
 	rm -fr locale doc/build
+	dh_clean
 
 override_dh_installdocs:
 	dh_installdocs --exclude=nautilus-thg.py --exclude=mergetools.rc
diff -Nru tortoisehg-2.4/debian/tortoisehg-nautilus.install tortoisehg-2.5.1/debian/tortoisehg-nautilus.install
--- tortoisehg-2.4/debian/tortoisehg-nautilus.install	2012-05-29 10:16:16.000000000 +0200
+++ tortoisehg-2.5.1/debian/tortoisehg-nautilus.install	2012-10-05 12:26:30.000000000 +0200
@@ -1 +1 @@
-usr/lib/nautilus/extensions-2.0/python/nautilus-thg.py usr/share/nautilus-python/extensions
+usr/share/nautilus-python/extensions/*


--- End Message ---
--- Begin Message ---
Source: tortoisehg
Source-Version: 2.6-1

We believe that the bug you reported is fixed in the latest version of
tortoisehg, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ludovico Cavedon <[email protected]> (supplier of updated tortoisehg package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sat, 01 Dec 2012 19:25:02 -0800
Source: tortoisehg
Binary: tortoisehg tortoisehg-nautilus
Architecture: source all
Version: 2.6-1
Distribution: experimental
Urgency: low
Maintainer: Ludovico Cavedon <[email protected]>
Changed-By: Ludovico Cavedon <[email protected]>
Description: 
 tortoisehg - Graphical tool for working with Mercurial
 tortoisehg-nautilus - Graphical tool for working with Mercurial (Nautilus 
extension)
Closes: 689707
Changes: 
 tortoisehg (2.6-1) experimental; urgency=low
 .
   * Imported Upstream version 2.6 (Closes: #689707).
   * Remove fix-config-path.patch (applied upstream).
   * Update copyright.
   * Update mercurial version dependency.
   * Update location of nautilus extension.
   * Fix linking to system JS libraries.
   * Symlink duplicated email1.png file.
Checksums-Sha1: 
 1e4e1b1acb8568225a8bde036b933c5651cfac74 2050 tortoisehg_2.6-1.dsc
 69d7e1e64bd4809ff816148b460ba0827ae01748 9794047 tortoisehg_2.6.orig.tar.gz
 fc51ed3694d1a85336fa91457167baaceb5579e7 19852 tortoisehg_2.6-1.debian.tar.gz
 0b46ab08a0f803587fe4839521c3106ba4da87af 3757312 tortoisehg_2.6-1_all.deb
 d2582a57bbf21f75bd15a54e3288b16c79fa4ff3 15026 
tortoisehg-nautilus_2.6-1_all.deb
Checksums-Sha256: 
 030963e5324c3b7effca1c34e6007fe37882b83647dadf2aa00b22630f8a99c7 2050 
tortoisehg_2.6-1.dsc
 50ca1c490feaeb112409ad4de9383b2fef34743eb0c65c7dc3f0d7a40b49c895 9794047 
tortoisehg_2.6.orig.tar.gz
 b38f6b4f13addb0606609c15ee165ba6f853c55ed0a71e37a6ff8daea1112209 19852 
tortoisehg_2.6-1.debian.tar.gz
 f3dc81cf00bd74843285651c24c7a344c3a06e3ab43da8ffc07924a8250bf167 3757312 
tortoisehg_2.6-1_all.deb
 78674460451de784e6f27906445c60e2b6a81af803b5e4ee4011725d07fd3164 15026 
tortoisehg-nautilus_2.6-1_all.deb
Files: 
 a91731ed91106ae2c656cd716c53dbee 2050 vcs optional tortoisehg_2.6-1.dsc
 601725a885db9cb53d7ba2aa6188654c 9794047 vcs optional 
tortoisehg_2.6.orig.tar.gz
 fc3e280f27c62d7dc7b9038b17a539a7 19852 vcs optional 
tortoisehg_2.6-1.debian.tar.gz
 008c135ed238aeb0ac2d38adef492e7e 3757312 vcs optional tortoisehg_2.6-1_all.deb
 d727abee76aff77a32703b55b9d83972 15026 vcs optional 
tortoisehg-nautilus_2.6-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCgAGBQJQus1XAAoJEBPAtWZ6OLCwd7QP/Arv2YHV8wUxw4DZZ5VuVF75
OjF5QXYqBM4JYga2MgcnY9mtLnb3P1bD4+c+orCi85OLafTnSXkpRAJkX4Yw4sF6
phHLiQng+j9Tl0dwwqyQqBNvRmaiBmgap+NK0G1OIIGzj2NpsAv8q2I1q71ShUfF
6h9pgZ8aipBmmWy+FosDnRuVEd61gzyvn7e2QHNd3q/p9nJzMzoSjivFsqw1j4LJ
sT/bWrKeonq1HDpXQsX1gyrxmJP0O9ie3MbomgpNzLC1PUlJiiA0ZkTOVGKqA7vR
2aRFQvOFnEOfg3uEE0ASMVcqskjqhKnIy/nCVR4/sAVyhJ2X/hD2WpDAh3KLOEGk
fIDXzUxVxBmDOYBT73zYmUo4/YR3jXwt8RutpJVJQDKvJGLeSI25YuyNh2k2/hHc
xsniraXNEb2cOgvIrQOkeZWkGGFJIFp1Zq2nuOpOPiplkgQs8R86dkPNZNC2q2LR
zrAn4PcRubvTYapphVpRdfjLIDlzjxRKD511n8jXjUM+QvieO0KYS0J3c5FYyPpt
eL9yw4Hwazr5EcXNm6uakjzUM/m1LSvHLs2Ooc3cw3ioDJHeNwX+zn0ErwC1/v1/
qzrMmGl+PNU03hVQU0jS5GoJpJZGkecvZA7/PNNSsN3Uqa0X6w6l9z4AluGurCZz
RML2R/0pn83q2cjSl93l
=adN6
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to