From: Michael Schutte Date: Fri, 10 May 2013 20:37:30 +0000 (+0200) Subject: Update to upstream r6924 X-Git-Tag: debian/1.0+hg6924-1~1 X-Git-Url: https://git.donarmstrong.com/?p=dactyl.git;a=commitdiff_plain;h=c20724e79b383deb6f396f5f1ceb82b9008e6d69 Update to upstream r6924 --- c20724e79b383deb6f396f5f1ceb82b9008e6d69 diff --cc debian/changelog index d1197a7,0000000..17e1af9 mode 100644,000000..100644 --- a/debian/changelog +++ b/debian/changelog @@@ -1,54 -1,0 +1,54 @@@ - dactyl (1.0+hg6923-1) UNRELEASED; urgency=low ++dactyl (1.0+hg6924-1) UNRELEASED; urgency=low + - * New upstream revision 6923 from the upstream Mercurial repository at ++ * New upstream revision 6924 from the upstream Mercurial repository at + . + - Supports Iceweasel/Firefox versions up to 22.0a1, closes: #706990. + * Use Git URLs with an anonscm.debian.org host part for the VCS pointers in + debian/control. + * Bump Standards-Version: to 3.9.4; no changes necessary. + * Update debian/copyright: Set Format: correctly, bump years and add a + stanza for binary/*. + * Increase debian/compat to 9 and change the build-dependency on debhelper + accordingly. + + -- Michael Schutte Tue, 07 May 2013 11:41:31 +0200 + +dactyl (1.0-1) experimental; urgency=low + + * New upstream version. + * Bump Standards-Version to 3.9.3, no changes required. + * Add myself to Uploaders. + + -- Jérémy Bobbio Sat, 28 Jul 2012 16:29:46 +0200 + +dactyl (1.0~rc1-1) unstable; urgency=low + + * New upstream version. + - Supports Iceweasel/Firefox versions up to 11.*, closes: #653433. + * debian/copyright: Do not combine license text with references in the + License: line. + * debian/rules: Add an explicitly .PHONY “binary” rule so make does not get + confused by the new binary/ directory introduced by upstream. + + -- Michael Schutte Wed, 28 Dec 2011 21:23:42 +0100 + +dactyl (1.0~b7.1-1) unstable; urgency=low + + * New upstream version; supports Iceweasel/Firefox versions up to 8.*. + * No source changes needed for this upload, drop debian/patches/. + * debian/copyright: Add Mozilla Foundation copyright on Mozmill. + + -- Michael Schutte Sat, 08 Oct 2011 19:41:36 +0200 + +dactyl (1.0~b6-2) unstable; urgency=low + + * Ship NEWS in /usr/share/xul-ext/pentadactyl/. :help needs this to + generate the dactyl://help/versions page, closes: #637919. + + -- Michael Schutte Sun, 21 Aug 2011 09:40:32 +0200 + +dactyl (1.0~b6-1) unstable; urgency=low + + * Initial release, closes: #634847. Only build pentadactyl for now. + + -- Michael Schutte Tue, 26 Jul 2011 12:03:07 +0200 diff --cc debian/rules index fecd4ef,0000000..078f3f6 mode 100755,000000..100755 --- a/debian/rules +++ b/debian/rules @@@ -1,50 -1,0 +1,50 @@@ +#!/usr/bin/make -f + +PACKAGES=pentadactyl # teledactyl melodactyl +VERSION=$(shell dpkg-parsechangelog | \ + sed -n -e '/^Version:/ { s/^Version:\s*//; s/[^a-z0-9]/_/g; p }') + +%: + dh $@ --with xul-ext + +# this silliness is needed due to the binary/ directory in the project root +.PHONY: binary +binary: + dh binary --with xul-ext + +override_dh_auto_build: + make DIRS=$(PACKAGES) MANGLE=chrome XPI_FILES='bootstrap.js NEWS' xpi + +override_dh_auto_install: + for PACKAGE in $(PACKAGES); \ + do install-xpi -p xul-ext-$$PACKAGE downloads/$$PACKAGE-*.xpi; \ + done + +override_dh_auto_clean: + make DIRS=$(PACKAGES) clean + for PACKAGE in $(PACKAGES); \ + do rm -f $$PACKAGE/chrome.zip; \ + done + +override_dh_installchangelogs: + for PACKAGE in $(PACKAGES); \ + do dh_installchangelogs -p xul-ext-$$PACKAGE $$PACKAGE/NEWS; \ + done + +UPSTREAM_REPO=../upstream - UPSTREAM_REVISION=6923 ++UPSTREAM_REVISION=6924 +UPSTREAM_DEST=$(shell pwd)/dactyl.tar.gz + +get-orig-source: + rm -f .hg-repo-created + test -d $(UPSTREAM_REPO) || ( cd `dirname $(UPSTREAM_REPO)` && \ + hg clone http://dactyl.googlecode.com/hg/ `basename $(UPSTREAM_REPO)` && \ + touch .hg-repo-created ) + hg --cwd $(UPSTREAM_REPO) pull + hg --cwd $(UPSTREAM_REPO) update + hg --cwd $(UPSTREAM_REPO) archive \ + -r $(UPSTREAM_REVISION) -p dactyl \ + -X .hgtags -X .hgsub -X .hgsubstate -X .hgignore \ + -X common/javascript.vim \ + -t tgz $(UPSTREAM_DEST) + test ! -f .hg-repo-created || ( rm -rf $(UPSTREAM_REPO); rm -f .hg-repo-created )