rcs-blame (1.3.1-1) debian-dir only changes

Summary

 debian/changelog         |    6 +++
 debian/compat            |    1 
 debian/control           |   17 ++++++++
 debian/copyright         |   22 +++++++++++
 debian/docs              |    2 +
 debian/lintian-overrides |    1 
 debian/rules             |   92 +++++++++++++++++++++++++++++++++++++++++++++++
 debian/watch             |   10 +++++
 8 files changed, 151 insertions(+)

    
download this patch

Patch contents

--- rcs-blame-1.3.1.orig/debian/watch
+++ rcs-blame-1.3.1/debian/watch
@@ -0,0 +1,10 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# See uscan(1) for format
+
+# Compulsory line, this is a version 3 file
+version=3
+
+# Uncomment to find new files on sourceforge, for devscripts >= 2.9
+http://sf.net/blame/blame-(.*)\.tar\.gz
--- rcs-blame-1.3.1.orig/debian/copyright
+++ rcs-blame-1.3.1/debian/copyright
@@ -0,0 +1,22 @@
+This package was debianized by Andrew Pollock <apollock@debian.org> on
+Thu, 15 Oct 2009 23:25:35 -0700.
+
+It was downloaded from <http://blame.sourceforge.net/>
+
+Upstream Author:
+
+    Michael Chapman <foonly@users.sourceforge.net>
+
+Copyright:
+
+    Copyright (C) 2004  Michael Chapman
+
+License:
+
+    GPL-2
+
+The Debian packaging is (C) 2009, Andrew Pollock <apollock@debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+date.c:
+    Copyright 1993, 1994, 1995 Paul Eggert
--- rcs-blame-1.3.1.orig/debian/docs
+++ rcs-blame-1.3.1/debian/docs
@@ -0,0 +1,2 @@
+NEWS
+README
--- rcs-blame-1.3.1.orig/debian/compat
+++ rcs-blame-1.3.1/debian/compat
@@ -0,0 +1 @@
+7
--- rcs-blame-1.3.1.orig/debian/rules
+++ rcs-blame-1.3.1/debian/rules
@@ -0,0 +1,92 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
+CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
+else
+CROSS= --build $(DEB_BUILD_GNU_TYPE)
+endif
+
+
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
+	./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+build: build-stamp
+
+build-stamp:  config.status 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+
+	touch $@
+
+clean: 
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	# Add here commands to clean up after the build process.
+	[ ! -f Makefile ] || $(MAKE) distclean
+	rm -f config.sub config.guess
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_prep
+	dh_installdirs
+
+	# Add here commands to install the package into debian/rcs-blame.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/rcs-blame install
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installexamples
+	dh_installman
+	dh_lintian
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
--- rcs-blame-1.3.1.orig/debian/changelog
+++ rcs-blame-1.3.1/debian/changelog
@@ -0,0 +1,6 @@
+rcs-blame (1.3.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #551210)
+
+ -- Andrew Pollock <apollock@debian.org>  Thu, 15 Oct 2009 23:25:35 -0700
+
--- rcs-blame-1.3.1.orig/debian/lintian-overrides
+++ rcs-blame-1.3.1/debian/lintian-overrides
@@ -0,0 +1 @@
+rcs-blame: manpage-has-bad-whatis-entry usr/share/man/man1/blame.1.gz
--- rcs-blame-1.3.1.orig/debian/control
+++ rcs-blame-1.3.1/debian/control
@@ -0,0 +1,17 @@
+Source: rcs-blame
+Section: devel
+Priority: optional
+Maintainer: Andrew Pollock <apollock@debian.org>
+Build-Depends: debhelper (>= 7), autotools-dev, flex, bison
+Standards-Version: 3.8.3
+Homepage: http://blame.sourceforge.net/
+
+Package: rcs-blame
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Enhances: rcs
+Description: display the last modification for each line in an RCS file
+ Blame is the equivalent for CVS's annotate command.
+ .
+ An annotated RCS file describes the revision and date in which each line was
+ added to the file, and the author of each line.