From: Sebastian Harl Date: Fri, 28 Jul 2006 11:34:09 +0000 (+0000) Subject: Initial commit. X-Git-Tag: git-completion-0+20060722-1~4 X-Git-Url: https://git.tokkee.org/?p=pkg-git-completion.git;a=commitdiff_plain;h=570b6479bd3988bea82e225a7f017e400dfa9645 Initial commit. Added git-completion-0+20060722-1. --- 570b6479bd3988bea82e225a7f017e400dfa9645 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..c5e4355 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +git-completion (0+20060722-1) unstable; urgency=low + + * Initial release (Closes: #379857). + + -- Sebastian Harl Thu, 27 Jul 2006 15:48:18 +0200 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..c7d621f --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: git-completion +Section: shells +Priority: optional +Maintainer: Sebastian Harl +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 index 0000000..49f1a73 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,44 @@ +This package was debianized by Sebastian Harl on +Thu, 27 Jul 2006 15:48:18 +0200. + +It was downloaded from the git repository at +. + +Upstream Authors: + Ben Clifford + Paolo Giarrusso + +Copyright Holders: + Ben Clifford + 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 and +is licensed under the GPL, see above. + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..e13a047 --- /dev/null +++ b/debian/rules @@ -0,0 +1,60 @@ +#!/usr/bin/make -f +# debian/rules for git-completion +# +# Written by Sebastian Harl + +# 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 +