debian/0000755000000000000000000000000012173466755007206 5ustar debian/source/0000755000000000000000000000000012173466755010506 5ustar debian/source/format0000644000000000000000000000001412173466026011703 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000101412173466026010251 0ustar #!/usr/bin/make -f MODULE_DIR = usr/lib/$(shell pyversions -d)/site-packages/hgext/ build: clean: dh clean find $(CURDIR) -type f -name '*\.py[co]' -delete install: build dh_installdirs $(MODULE_DIR)/hgsubversion cp hgsubversion/ -r debian/hgsubversion/$(MODULE_DIR) binary-indep: install dh binary-indep --with python2 binary-arch: build-arch: build build-indep: build binary: binary-indep binary-arch patch unpatch: dh_quilt_$(@) .PHONY: build clean binary-indep binary-arch binary install patch unpatch debian/watch0000644000000000000000000000015512173466026010227 0ustar version=3 https://bitbucket.org/durin42/hgsubversion/downloads /durin42/hgsubversion/get/([0-9\.]*)\.tar\.gz debian/control0000644000000000000000000000200512173466026010575 0ustar Source: hgsubversion Section: vcs Priority: extra Maintainer: Qijiang Fan Build-Depends: debhelper (>= 7.0.50~), python (>= 2.6.6-3~) Standards-Version: 3.9.3 Homepage: http://bitbucket.org/durin42/hgsubversion Vcs-Svn: svn://svn.debian.org/svn/collab-maint/deb-maint/hgsubversion Vcs-Browser: http://svn.debian.org/viewsvn/collab-maint/deb-maint/hgsubversion Package: hgsubversion Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, mercurial (>= 1.9.1-1~), subversion(>=1.5), python-subvertpy(>= 0.7.4) | python-subversion Description: Subversion client as Mercurial extension hgsubversion is an extension for Mercurial that allows using Mercurial as a Subversion client. . At this point, hgsubversion is usable by users reasonably familiar with Mercurial as a VCS. It's not recommended to dive into hgsubversion as an introduction to Mercurial, since hgsubversion "bends the rules" a little and violates some of the typical assumptions of early Mercurial users. debian/compat0000644000000000000000000000000212173466026010373 0ustar 7 debian/changelog0000644000000000000000000000313412173466026011050 0ustar hgsubversion (1.5-1) unstable; urgency=low * Move to debian sid from experimental. -- Qijiang Fan Sat, 20 Jul 2013 18:17:11 +0800 hgsubversion (1.5-1~exp1) experimental; urgency=low * New upstream release. -- Qijiang Fan Thu, 15 Nov 2012 17:11:37 +0800 hgsubversion (1.4-1) unstable; urgency=low * New upstream release. * Bump standards-version to 3.9.3. No changes needed. -- Qijiang Fan Fri, 08 Jun 2012 17:42:38 +0800 hgsubversion (1.3-1) unstable; urgency=low * New upstream release. -- Qijiang Fan Tue, 25 Oct 2011 12:37:40 +0800 hgsubversion (1.2.1-2.1) unstable; urgency=low * Non-maintainer upload. * Convert to dh_python2 (closes: #637399). Thanks to Javi Merino for the bug report. + Build depend on python (>= 2.6.6-3) instead of python-support. + Add ‘--with python2’ to dh call in debian/rules. + Bump minimum required version of mercurial to 1.9.1-1, which is the first version using dh_python2. + Remove python-support from Depends, add ${python:Depends} there. * Backport two patches from upstream VCS to fix compatibility with Mercurial 1.9. -- Jakub Wilk Sat, 17 Sep 2011 23:30:14 +0200 hgsubversion (1.2.1-2) unstable; urgency=medium * Delete README.source. * Wrong dependencies fixed (Closes: #633418). -- Qijiang Fan Sun, 10 Jul 2011 14:36:53 +0800 hgsubversion (1.2.1-1) unstable; urgency=low * Initial release (Closes: #577560). -- Qijiang Fan Tue, 10 May 2011 13:35:26 +0800 debian/copyright0000644000000000000000000000065212173466026011133 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: hgsubversion Source: http://bitbucket.org/durin42/hgsubversion Files: * Copyright: 2011, Augie Fackler License: GPL-2 Files: debian/* Copyright: 2011, Qijiang Fan License: GPL-2 License: GPL-2 On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2" debian/README.Debian0000644000000000000000000000037312173466026011241 0ustar hgsubversion for Debian ----------------------- This extension is disabled by default. To enable the extension, add the following lines to your hgrc: [extensions] hgsubversion= -- Qijiang Fan Tue, 10 May 2011 13:35:26 +0800 debian/postinst0000644000000000000000000000210012173466026010774 0ustar #!/bin/sh # postinst script for #PACKAGE# # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) echo 'hgsubversion extension is disabled by default.' echo 'You can follow the instructions in /usr/share/doc/hgsubversion/README.Debian to enable it.' ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/docs0000644000000000000000000000000712173466026010045 0ustar README