From 3d5a0bbd295ca8a5f2eabc72d5a07daa99274428 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Thu, 28 Sep 2006 14:57:42 +0000 Subject: [PATCH 1/1] Initial commit. --- debian/changelog | 6 +++++ debian/compat | 1 + debian/control | 23 ++++++++++++++++++ debian/copyright | 35 +++++++++++++++++++++++++++ debian/rules | 63 ++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 128 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..3eaff6e --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +tig (0.5-1) unstable; urgency=low + + * Initial release (Closes: #389926). + + -- Sebastian Harl Thu, 28 Sep 2006 13:09:36 +0200 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..00c530d --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: tig +Section: utils +Priority: optional +Maintainer: Sebastian Harl +Build-Depends: debhelper (>= 5), libncurses5-dev, asciidoc, xmlto, + docbook-utils +Standards-Version: 3.7.2 + +Package: tig +Architecture: any +Depends: git-core, ${shlibs:Depends} +Description: content addressable filesystem (CLI repository browser) + 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 a command line repository browser capable of displaying + a summerized revision log and showing commit log messages, diffstats and + diffs. + . + tig may also be used as a pager. It reads input from stdin and colorizes it. + . + Homepage: http://jonas.nitro.dk/tig/ + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..f0181d1 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,35 @@ +This package was debianized by Sebastian Harl on +Thu, 28 Sep 2006 13:09:36 +0200. + +It was downloaded from . + +Upstream Author: + Jonas Fonseca + +Copyright Holder: + Jonas Fonseca + +License: + + Copyright (C) 2006 Jonas Fonseca + + 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; either version 2 of the License, or + (at your option) any later version. + + 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..7b9f7bd --- /dev/null +++ b/debian/rules @@ -0,0 +1,63 @@ +#!/usr/bin/make -f +# debian/ruls for tig +# +# Written by Sebastian Harl + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp + +build-stamp: + dh_testdir + + $(MAKE) all doc + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install install-doc DESTDIR=$(CURDIR)/debian/tig \ + prefix=/usr mandir=/usr/share/man + +binary-indep: + # nothing to do here + +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs BUGS TODO manual.pdf + 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 + -- 2.30.2