[Python-apps-commits] r6391 - in packages/hg-git/trunk/debian (8 files)

fqj1994-guest at users.alioth.debian.org fqj1994-guest at users.alioth.debian.org
Mon Dec 13 12:46:11 UTC 2010


    Date: Monday, December 13, 2010 @ 12:46:09
  Author: fqj1994-guest
Revision: 6391

hg-git_0.2.5

Added:
  packages/hg-git/trunk/debian/hg-git.rc
  packages/hg-git/trunk/debian/postinst
  packages/hg-git/trunk/debian/prerm
Modified:
  packages/hg-git/trunk/debian/changelog
  packages/hg-git/trunk/debian/control
  packages/hg-git/trunk/debian/docs
  packages/hg-git/trunk/debian/rules
Deleted:
  packages/hg-git/trunk/debian/README.Debian

Deleted: packages/hg-git/trunk/debian/README.Debian
===================================================================
--- packages/hg-git/trunk/debian/README.Debian	2010-12-13 03:04:35 UTC (rev 6390)
+++ packages/hg-git/trunk/debian/README.Debian	2010-12-13 12:46:09 UTC (rev 6391)
@@ -1,13 +0,0 @@
-hg-git for Debian
------------------
-
-To enable the extension, add the following lines to your hgrc::
-
-   [extensions]
-   hgext.bookmarks =
-   hgext.git =
-
-Hg-git uses bookmarks [1]_ (rather than branches) to track git branches.
-
-.. [1] http://mercurial.selenic.com/wiki/BookmarksExtension
-

Modified: packages/hg-git/trunk/debian/changelog
===================================================================
--- packages/hg-git/trunk/debian/changelog	2010-12-13 03:04:35 UTC (rev 6390)
+++ packages/hg-git/trunk/debian/changelog	2010-12-13 12:46:09 UTC (rev 6391)
@@ -1,10 +1,8 @@
-hg-git (0.2.4-1) experimental; urgency=low
+hg-git (0.2.5) unstable; urgency=low
 
   * New upstream release.
-  * Fix a typo in package description.
-  * Bump standards version to 3.9.1 (no changes needed).
 
- -- Jakub Wilk <jwilk at debian.org>  Fri, 03 Sep 2010 12:56:04 +0200
+ -- Qijiang Fan <fqj1994 at gmail.com> Sun, 5 Dec 2010 12:12:00 +0800
 
 hg-git (0.2.3-1) unstable; urgency=low
 

Modified: packages/hg-git/trunk/debian/control
===================================================================
--- packages/hg-git/trunk/debian/control	2010-12-13 03:04:35 UTC (rev 6390)
+++ packages/hg-git/trunk/debian/control	2010-12-13 12:46:09 UTC (rev 6391)
@@ -1,19 +1,15 @@
 Source: hg-git
 Section: vcs
 Priority: optional
-Maintainer: Jakub Wilk <jwilk at debian.org>
-Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 7.0.8), python-support (>= 0.90)
-Standards-Version: 3.9.1
-XS-Python-Version: >= 2.5
+Maintainer: Qijiang Fan <fqj1994 at gmail.com>
+Build-Depends: debhelper (>= 7.0.50~), python-support (>= 0.90)
+Standards-Version: 3.8.4
 Homepage: http://hg-git.github.com/
-Vcs-Svn: svn://svn.debian.org/python-apps/packages/hg-git/trunk/
-Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/hg-git/trunk/
 
 Package: mercurial-git
 Architecture: all
 Depends: ${misc:Depends}, ${python:Depends}, mercurial (>= 1.1), python-dulwich (>= 0.6)
-Description: Git plugin for Mercurial
+Description: Git plugin for Mercurial 
  The Hg-Git plugin for Mercurial adds the ability to push and pull to/from
  a Git server repository. This means you can collaborate on Git based
  projects from Mercurial, or use a Git server as a collaboration point
@@ -23,3 +19,4 @@
  another, so you can push via a Mercurial repository and another
  Mercurial client can pull it and their changeset node ids will be
  identical - Mercurial data does not get lost in translation.
+

Modified: packages/hg-git/trunk/debian/docs
===================================================================
--- packages/hg-git/trunk/debian/docs	2010-12-13 03:04:35 UTC (rev 6390)
+++ packages/hg-git/trunk/debian/docs	2010-12-13 12:46:09 UTC (rev 6391)
@@ -1,3 +1,2 @@
 DESIGN.txt
 README.md
-TODO.txt

Added: packages/hg-git/trunk/debian/hg-git.rc
===================================================================
--- packages/hg-git/trunk/debian/hg-git.rc	                        (rev 0)
+++ packages/hg-git/trunk/debian/hg-git.rc	2010-12-13 12:46:09 UTC (rev 6391)
@@ -0,0 +1,3 @@
+[extensions]
+hgext.bookmarks=
+hgext.git=

Added: packages/hg-git/trunk/debian/postinst
===================================================================
--- packages/hg-git/trunk/debian/postinst	                        (rev 0)
+++ packages/hg-git/trunk/debian/postinst	2010-12-13 12:46:09 UTC (rev 6391)
@@ -0,0 +1,11 @@
+#!/bin/sh
+# postinst script for hg-git
+#
+# see: dh_installdeb(1)
+
+set -e
+
+if which update-python-modules >/dev/null 2>&1; then
+	update-python-modules  mercurial-git.public
+fi
+

Added: packages/hg-git/trunk/debian/prerm
===================================================================
--- packages/hg-git/trunk/debian/prerm	                        (rev 0)
+++ packages/hg-git/trunk/debian/prerm	2010-12-13 12:46:09 UTC (rev 6391)
@@ -0,0 +1,10 @@
+#!/bin/sh
+# prerm script for hg-git
+#
+# see: dh_installdeb(1)
+
+set -e
+
+if which update-python-modules >/dev/null 2>&1; then
+	update-python-modules -c  mercurial-git.public
+fi

Modified: packages/hg-git/trunk/debian/rules
===================================================================
--- packages/hg-git/trunk/debian/rules	2010-12-13 03:04:35 UTC (rev 6390)
+++ packages/hg-git/trunk/debian/rules	2010-12-13 12:46:09 UTC (rev 6391)
@@ -11,7 +11,9 @@
 install: build
 	dh install --until dh_prep
 	dh_installdirs $(MODULE_DIR)
+	dh_installdirs etc/mercurial/hgrc.d
 	cp -r hggit/*.py debian/mercurial-git/$(MODULE_DIR)/
+	cp debian/hg-git.rc debian/mercurial-git/etc/mercurial/hgrc.d/
 	dh install --after dh_install
 
 # Build architecture-independent files here.




More information about the Python-apps-commits mailing list