]> git.donarmstrong.com Git - dactyl.git/commitdiff
New upstream version 1.0+hg6923
authorMichael Schutte <michi@uiae.at>
Tue, 7 May 2013 09:42:47 +0000 (11:42 +0200)
committerMichael Schutte <michi@uiae.at>
Tue, 7 May 2013 09:42:47 +0000 (11:42 +0200)
1  2 
debian/changelog
debian/rules

index 4df568db29e377490fc921bdf2d60f71537427ee,0000000000000000000000000000000000000000..9746a1b64d178936b1a1835fc4210913bfe9f2dc
mode 100644,000000..100644
--- /dev/null
@@@ -1,39 -1,0 +1,47 @@@
++dactyl (1.0+hg6923-1) UNRELEASED; urgency=low
++
++  * New upstream revision 6923 from the upstream Mercurial repository at
++    <https://code.google.com/p/dactyl/>.
++    - Supports Iceweasel/Firefox versions up to 22.0a1, closes: #706990.
++
++ -- Michael Schutte <michi@debian.org>  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 <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 200263cd610951de60a2aff730fcdea32a9f6e49,0000000000000000000000000000000000000000..fecd4efe41312230f895046df506d95f9f0b4f20
mode 100755,000000..100755
--- /dev/null
@@@ -1,49 -1,0 +1,50 @@@
- UPSTREAM_REVISION=pentadactyl-1.0
 +#!/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
-               -X .hgtags -X common/javascript.vim \
++UPSTREAM_REVISION=6923
 +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 )