From 1fe2dc02ee5d424952d29743f8cdba88d03486b7 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 7 Nov 2015 08:22:24 +0100 Subject: Adding debian version 1.6~pre1-1. Signed-off-by: Daniel Baumann --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 30 +++++++++++++++++++++++++ debian/copyright | 40 +++++++++++++++++++++++++++++++++ debian/lzip.docs | 2 ++ debian/rules | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 145 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/lzip.docs create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..49d2862 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +lzip (1.6~pre1-1) unstable; urgency=low + + * Initial release. + + -- Daniel Baumann Thu, 30 Apr 2009 15:31:00 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..343fa8a --- /dev/null +++ b/debian/control @@ -0,0 +1,30 @@ +Source: lzip +Section: utils +Priority: optional +Maintainer: Daniel Baumann +Build-Depends: debhelper (>= 7), autotools-dev, texinfo +Standards-Version: 3.8.1 +Homepage: http://www.nongnu.org/lzip/lzip.html +Vcs-Browser: http://git.debian.net/?p=debian/lzip.git +Vcs-Git: git://git.debian.net/git/debian/lzip.git + +Package: lzip +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: data compressor based on the LZMA algorithm + Lzip is a lossless data compressor based on the LZMA algorithm, with very safe + integrity checking and a user interface similar to the one of gzip or bzip2. + . + Lzip decompresses almost as fast as gzip and compresses better than bzip2, + which makes it well suited for software distribution and data archiving. + +Package: lzip-dbg +Section: debug +Priority: extra +Architecture: any +Depends: lzip (= ${binary:Version}) +Description: data compressor based on the LZMA algorithm (debug) + Lzip is a lossless data compressor based on the LZMA algorithm, with very safe + integrity checking and a user interface similar to the one of gzip or bzip2. + . + This package contains the debugging symbols. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c6929a8 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,40 @@ +Author: Antonio Diaz Diaz +Download: http://www.nongnu.org/lzip/lzip.html + +Files: * +Copyright: (C) 2006-2009 Antonio Diaz Diaz +License: GPL-3+ + This program 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 3 of the License, or + (at your option) any later version. + . + This program 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 program. If not, see . + . + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-3 file. + +Files: debian/* +Copyright: (C) 2009 Daniel Baumann +License: GPL-3+ + This program 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 3 of the License, or + (at your option) any later version. + . + This program 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 program. If not, see . + . + On Debian systems, the complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-3 file. diff --git a/debian/lzip.docs b/debian/lzip.docs new file mode 100644 index 0000000..50bd824 --- /dev/null +++ b/debian/lzip.docs @@ -0,0 +1,2 @@ +NEWS +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b111ab9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,67 @@ +#!/usr/bin/make -f + +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 + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + rm -f config.sub config.guess + + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +config.status: configure + dh_testdir + +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +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 + + $(MAKE) + + touch build-stamp + +install: build + dh_testdir + dh_testroot + dh_prep + + $(MAKE) prefix=$(CURDIR)/debian/lzip/usr install + +binary: binary-arch + +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_strip --dbg-package=lzip-dbg + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-indep: + +.PHONY: clean build install binary binary-arch binary-indep -- cgit v1.2.3