]> git.donarmstrong.com Git - dactyl.git/commitdiff
New upstream version 1.0+hg6976, closes: #723678
authorMichael Schutte <michi@uiae.at>
Sun, 1 Dec 2013 11:14:09 +0000 (12:14 +0100)
committerMichael Schutte <michi@uiae.at>
Sun, 1 Dec 2013 11:14:09 +0000 (12:14 +0100)
1  2 
debian/changelog
debian/rules

index 0716d459846ac57cf0d89d0df6ae174db5c5a019,0000000000000000000000000000000000000000..d0d379d422da0d6dc566de0e44ce48630a82497d
mode 100644,000000..100644
--- /dev/null
@@@ -1,63 -1,0 +1,72 @@@
++dactyl (1.0+hg6976-2) UNRELEASED; urgency=low
++
++  * New upstream revision 6976 from the upstream Mercurial repository at
++    <https://code.google.com/p/dactyl/>.
++    - Fixes smooth scrolling with recent versions of Iceweasel/Firefox,
++      closes: #723678.
++
++ -- Michael Schutte <michi@debian.org>  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
 +    <https://code.google.com/p/dactyl/>.
 +    - Supports Iceweasel/Firefox versions up to 24, closes: #720447.
 +
 + -- Michael Schutte <michi@debian.org>  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
 +    <https://code.google.com/p/dactyl/>.
 +    - 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 <michi@debian.org>  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 <lunar@debian.org>  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 <michi@debian.org>  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 <michi@debian.org>  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 <michi@debian.org>  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 <michi@debian.org>  Tue, 26 Jul 2011 12:03:07 +0200
diff --cc debian/rules
index 7fe16fc56f9be239fbc343357f19c66681023c0a,0000000000000000000000000000000000000000..7f92eb0183f71c1e93376656d19bea8cb2b61c4b
mode 100755,000000..100755
--- /dev/null
@@@ -1,50 -1,0 +1,50 @@@
- UPSTREAM_REVISION=6948
 +#!/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=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 )