]> git.madduck.net Git - code/myrepos.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Use debhelper v7, rules file minimisation.
authorJoey Hess <joey@kodama.kitenet.net>
Thu, 24 Apr 2008 01:36:24 +0000 (21:36 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Thu, 24 Apr 2008 01:36:24 +0000 (21:36 -0400)
Add a Makefile.

Makefile [new file with mode: 0644]
debian/changelog
debian/clean [new file with mode: 0644]
debian/compat
debian/control
debian/docs [new file with mode: 0644]
debian/examples [new file with mode: 0644]
debian/install [new file with mode: 0644]
debian/manpages [new file with mode: 0644]
debian/rules

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..ea439ec
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+build:
+       pod2man -c mr mr > mr.1
+
+test:
+       (echo "[]"; echo "checkout=") > mrconfig.tmp
+       ./mr -c mrconfig.tmp ed | grep -q "horse"
+       rm -f mrconfig.tmp
index bb57d3a6fa0659cf490016ed2fd3a0fdd614b7bd..87812608ef3324210decc70e2ccd60f5d23c5b2c 100644 (file)
@@ -1,3 +1,10 @@
+mr (0.28) UNRELEASED; urgency=low
+
+  * Use debhelper v7, rules file minimisation.
+  * Add a Makefile.
+
+ -- Joey Hess <joeyh@debian.org>  Wed, 23 Apr 2008 21:06:08 -0400
+
 mr (0.27) unstable; urgency=low
 
   * Ignore exit code from darcs whatsnew, which can be nonzero if there
diff --git a/debian/clean b/debian/clean
new file mode 100644 (file)
index 0000000..fa6cfb8
--- /dev/null
@@ -0,0 +1 @@
+mr.1
index 7ed6ff82de6bcc2a78243fc9c54d3ef5ac14da69..7f8f011eb73d6043d2e6db9d2c101195ae2801f2 100644 (file)
@@ -1 +1 @@
-5
+7
index e19e55602574950492d8f12bd977bb2101125862..b1c606c12cfb6257954b391e4e10b0fcc169d5d0 100644 (file)
@@ -1,7 +1,7 @@
 Source: mr
 Section: utils
 Priority: optional
-Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.9.0)
+Build-Depends: debhelper (>= 7), dpkg-dev (>= 1.9.0)
 Maintainer: Joey Hess <joeyh@debian.org>
 Standards-Version: 3.7.3
 Homepage: http://kitenet.net/~joey/code/mr/
diff --git a/debian/docs b/debian/docs
new file mode 100644 (file)
index 0000000..2a6769e
--- /dev/null
@@ -0,0 +1 @@
+README TODO
diff --git a/debian/examples b/debian/examples
new file mode 100644 (file)
index 0000000..3e7cc29
--- /dev/null
@@ -0,0 +1 @@
+mrconfig mrconfig.complex
diff --git a/debian/install b/debian/install
new file mode 100644 (file)
index 0000000..5c29193
--- /dev/null
@@ -0,0 +1,2 @@
+mr usr/bin
+lib/* usr/share/mr
diff --git a/debian/manpages b/debian/manpages
new file mode 100644 (file)
index 0000000..f7e585b
--- /dev/null
@@ -0,0 +1 @@
+*.1
index 1cc28dbb5f4ec1d2cc39c5c0a8e3ce34448ca81c..d688d4baba447803dc05005f25b9dbe021d873ed 100755 (executable)
@@ -1,39 +1,7 @@
 #!/usr/bin/make -f
-
-build:
-       pod2man -c mr mr > mr.1
-       (echo "[]"; echo "checkout=") > mrconfig.tmp
-       ./mr -c mrconfig.tmp ed | grep -q "horse"
-       rm -f mrconfig.tmp
-
-clean:
-       dh_testdir
-       dh_testroot
-       dh_clean mr.1
-
-binary-arch: build
-
-binary-indep: build
-       dh_testdir
-       dh_testroot
-       dh_clean -k
-       dh_install mr usr/bin
-       dh_installdocs README TODO
-       dh_installexamples mrconfig mrconfig.complex
-       dh_install lib/* usr/share/mr
-       dh_installman *.1
-       dh_installchangelogs
-       dh_compress
-       dh_fixperms
-       dh_perl
-       dh_installdeb
-       dh_gencontrol
-       dh_md5sums
-       dh_builddeb
+%:
+       dh $@
 
 # Not intended for use by anyone except the author.
 announcedir:
        @echo ${HOME}/src/joeywiki/code/mr/news
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary