Code

Initial commit.
authorSebastian Harl <sh@tokkee.org>
Thu, 28 Sep 2006 14:57:42 +0000 (14:57 +0000)
committerSebastian Harl <sh@tokkee.org>
Thu, 28 Sep 2006 14:57:42 +0000 (14:57 +0000)
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..3eaff6e
--- /dev/null
@@ -0,0 +1,6 @@
+tig (0.5-1) unstable; urgency=low
+
+  * Initial release (Closes: #389926).
+
+ -- Sebastian Harl <sh@tokkee.org>  Thu, 28 Sep 2006 13:09:36 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..00c530d
--- /dev/null
@@ -0,0 +1,23 @@
+Source: tig
+Section: utils
+Priority: optional
+Maintainer: Sebastian Harl <sh@tokkee.org>
+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 (file)
index 0000000..f0181d1
--- /dev/null
@@ -0,0 +1,35 @@
+This package was debianized by Sebastian Harl <sh@tokkee.org> on
+Thu, 28 Sep 2006 13:09:36 +0200.
+
+It was downloaded from <http://jonas.nitro.dk/tig/releases/>.
+
+Upstream Author:
+       Jonas Fonseca <fonseca@diku.dk>
+
+Copyright Holder:
+       Jonas Fonseca <fonseca@diku.dk>
+
+License:
+
+       Copyright (C) 2006 Jonas Fonseca <fonseca@diku.dk>
+
+       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 <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..7b9f7bd
--- /dev/null
@@ -0,0 +1,63 @@
+#!/usr/bin/make -f
+# debian/ruls for tig
+#
+# Written by Sebastian Harl <sh@tokkee.org>
+
+# 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
+