--- dh-make-drupal-0.4.orig/debian/compat +++ dh-make-drupal-0.4/debian/compat @@ -0,0 +1 @@ +7 --- dh-make-drupal-0.4.orig/debian/gbp.conf +++ dh-make-drupal-0.4/debian/gbp.conf @@ -0,0 +1,6 @@ +# Git-buildpackage configuration +[git-buildpackage] +export-dir = ../build-area +tarball-dir = ../build-area +git-upstream-branch = master +git-debian-branch = debian --- dh-make-drupal-0.4.orig/debian/copyright +++ dh-make-drupal-0.4/debian/copyright @@ -0,0 +1,16 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=440 +Upstream-Name: dh-make-drupal +Upstream-Maintainer: Gunnar Wolf +Upstream-Source: http://www.github.com/gwolf/dh-make-drupal + +Files: * +Copyright: Copyright 2009, Gunnar Wolf +License: GPL-3 + On Debian systems the full text of the GNU General Public License can be + found in the `/usr/share/common-licenses/GPL-3' file. + +Files: debian/* +Copyright: Copyright 2009, Gunnar Wolf +License: GPL-3 + On Debian systems the full text of the GNU General Public License can be + found in the `/usr/share/common-licenses/GPL-3' file. --- dh-make-drupal-0.4.orig/debian/dirs +++ dh-make-drupal-0.4/debian/dirs @@ -0,0 +1,2 @@ +/usr/bin +/usr/share/man/man1/ --- dh-make-drupal-0.4.orig/debian/changelog +++ dh-make-drupal-0.4/debian/changelog @@ -0,0 +1,35 @@ +dh-make-drupal (0.4-1) unstable; urgency=low + + * Auto-building manpage (via help2man, added to build-dependencies) + instead of keeping it in sync by hand + * Use the DEBEMAIL and DEBFULLNAME variables if they are found (Closes: + #529310) + * Fixed bug which caused packages whose names include underscores to + be built as debian-native packages + * Properly mangles -dev, -alpha, -beta, -rc version numbers with "~" + character (double ~ for -dev) to properly sort them on Debian + (Closes: #529317) + * Bumped up standards-version to 3.8.2 (no changes needed) + + -- Gunnar Wolf Fri, 26 Jun 2009 13:36:34 -0500 + +dh-make-drupal (0.3-1) unstable; urgency=low + + * New upstream release + * Updated manpage reflecting upstream changes + + -- Gunnar Wolf Fri, 27 Feb 2009 19:00:21 -0600 + +dh-make-drupal (0.2-1) unstable; urgency=low + + * New upstream release + * Fixes changes in the upstream webpage layout which rendered the + package useless + + -- Gunnar Wolf Thu, 19 Feb 2009 18:30:59 -0600 + +dh-make-drupal (0.1-1) unstable; urgency=low + + * Initial release. (Closes: #514786) + + -- Gunnar Wolf Mon, 16 Feb 2009 11:22:31 -0600 --- dh-make-drupal-0.4.orig/debian/rules +++ dh-make-drupal-0.4/debian/rules @@ -0,0 +1,30 @@ +#!/usr/bin/make -f + +PACKAGE = dh-make-drupal +BUILDDIR = "$(CURDIR)/debian/$(PACKAGE)" + +build: build-stamp +build-stamp: + dh build + touch build-stamp + +clean: + dh clean + +install: build install-stamp +install-stamp: + dh install + install dh-make-drupal $(BUILDDIR)/usr/bin + help2man -s 1 -N ./dh-make-drupal \ + --name='Builds a Debian package for the requested Drupal project' \ + > $(BUILDDIR)/usr/share/man/man1/dh-make-drupal.1 + touch install-stamp + +binary-arch: install + dh binary-arch + +binary-indep: install + dh_compress + dh binary-indep + +binary: binary-arch binary-indep --- dh-make-drupal-0.4.orig/debian/watch +++ dh-make-drupal-0.4/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://githubredir.debian.net/github/gwolf/dh-make-drupal /(\d.*).tar.gz --- dh-make-drupal-0.4.orig/debian/control +++ dh-make-drupal-0.4/debian/control @@ -0,0 +1,22 @@ +Source: dh-make-drupal +Section: web +Priority: extra +Maintainer: Gunnar Wolf +Build-Depends: debhelper (>= 7), help2man +Standards-Version: 3.8.2 +Homepage: http://www.github.com/gwolf/dh-make-drupal +Vcs-Svn: git://github.com/gwolf/dh-make-drupal.git +Vcs-Browser: http://www.github.com/gwolf/dh-make-drupal + +Package: dh-make-drupal +Architecture: all +Depends: ${misc:Depends}, ruby, libruby, libcommandline-ruby, libhpricot-ruby +Suggests: drupal6 | drupal5 +Description: Create Debian packages from Drupal modules and themes + The purpose of this program is to generate Debian packages for any Drupal + projects (that is, modules or themes). + . + Given that Drupal developers publish their work through the main Drupal + site (http://drupal.org), this program fetches the information for the + latest available versions (for the right Drupal release, and with the + specified stability level), and prepares a Debian package from it.