Code

Initial commit.
authorSebastian Harl <sh@tokkee.org>
Fri, 28 Jul 2006 11:34:09 +0000 (11:34 +0000)
committerSebastian Harl <sh@tokkee.org>
Fri, 28 Jul 2006 11:34:09 +0000 (11:34 +0000)
Added git-completion-0+20060722-1.

debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/rules [new file with mode: 0755]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..c5e4355
--- /dev/null
@@ -0,0 +1,6 @@
+git-completion (0+20060722-1) unstable; urgency=low
+
+  * Initial release (Closes: #379857).
+
+ -- Sebastian Harl <sh@tokkee.org>  Thu, 27 Jul 2006 15:48:18 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..c7d621f
--- /dev/null
@@ -0,0 +1,15 @@
+Source: git-completion
+Section: shells
+Priority: optional
+Maintainer: Sebastian Harl <sh@tokkee.org>
+Build-Depends: debhelper (>= 4.0.0)
+Standards-Version: 3.6.1
+
+Package: git-completion
+Architecture: all
+Description: content addressable filesystem (bash completion)
+ git is a stupid (but extremely fast) directory content manager. It doesn't do
+ a whole lot, but what it 'does' do is track directory contents efficiently.
+ .
+ This package contains the bash completion for git, cogito and stg.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..49f1a73
--- /dev/null
@@ -0,0 +1,44 @@
+This package was debianized by Sebastian Harl <sh@tokkee.org> on
+Thu, 27 Jul 2006 15:48:18 +0200.
+
+It was downloaded from the git repository at
+<http://git.hawaga.org.uk/gitcompletion>.
+
+Upstream Authors:
+       Ben Clifford <benc@hawaga.org.uk>
+       Paolo Giarrusso
+
+Copyright Holders:
+       Ben Clifford <benc@hawaga.org.uk>
+       Paolo Giarrusso
+
+License:
+
+       File stg-compl:
+       Copyright (C) 2005 Paolo Giarrusso
+
+       All other files:
+       Copyright (C) 2005 Paolo Giarrusso
+       Copyright (C) 2005 Ben Clifford
+
+       This package is free software; you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation; only version 2 of the license is 
+       applicable.
+
+       This package is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this package; if not, write to the Free Software
+       Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
+       USA.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2006, Sebastian Harl <sh@tokkee.org> and
+is licensed under the GPL, see above.
+
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..e13a047
--- /dev/null
@@ -0,0 +1,60 @@
+#!/usr/bin/make -f
+# debian/rules for git-completion
+#
+# Written by Sebastian Harl <sh@tokkee.org>
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+completion_dir="$(CURDIR)/debian/git-completion/etc/bash_completion.d"
+
+configure: configure-stamp
+
+configure-stamp:
+       dh_testdir
+       touch configure-stamp
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+       dh_testdir
+       touch build-stamp
+
+clean:
+       dh_testdir
+       dh_testroot
+       rm -f build-stamp configure-stamp
+       dh_clean 
+
+install: build
+       dh_testdir
+       dh_testroot
+       dh_clean -k 
+       dh_installdirs
+       
+       install -d -m 0755 $(completion_dir)
+       
+       for file in cg git gitk stg; do \
+               install -m 0644 $(CURDIR)/$$file-compl $(completion_dir)/$$file; \
+       done
+       
+       install -m 0644 $(CURDIR)/git-compl-lib $(completion_dir)/git-common
+
+binary-indep: build install
+       dh_testdir
+       dh_testroot
+       dh_installchangelogs 
+       dh_installdocs
+       dh_compress
+       dh_fixperms
+       dh_installdeb
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary-arch: build install
+       # nothing to do here
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
+