From: Michael Schutte Date: Sun, 1 Dec 2013 11:14:09 +0000 (+0100) Subject: New upstream version 1.0+hg6976, closes: #723678 X-Git-Tag: debian/1.0+hg6976-1~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=205a9e35484fed6fc69161897a59f51110ba708d;p=dactyl.git New upstream version 1.0+hg6976, closes: #723678 --- 205a9e35484fed6fc69161897a59f51110ba708d diff --cc debian/changelog index 0716d45,0000000..d0d379d mode 100644,000000..100644 --- a/debian/changelog +++ b/debian/changelog @@@ -1,63 -1,0 +1,72 @@@ ++dactyl (1.0+hg6976-2) UNRELEASED; urgency=low ++ ++ * New upstream revision 6976 from the upstream Mercurial repository at ++ . ++ - Fixes smooth scrolling with recent versions of Iceweasel/Firefox, ++ closes: #723678. ++ ++ -- Michael Schutte Sun, 01 Dec 2013 12:11:59 +0100 ++ +dactyl (1.0+hg6948-1) unstable; urgency=low + + * New upstream revision 6948 from the upstream Mercurial repository at + . + - Supports Iceweasel/Firefox versions up to 24, closes: #720447. + + -- Michael Schutte Mon, 09 Sep 2013 17:04:25 +0200 + +dactyl (1.0+hg6924-1) unstable; urgency=low + + * Upload to unstable. + * 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 Fri, 10 May 2013 23:07:00 +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 7fe16fc,0000000..7f92eb0 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=6948 ++UPSTREAM_REVISION=6976 +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 )