From 39481e1ae00f31be7b7f1d8802f2f1dedb688147 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 7 Nov 2015 16:08:37 +0100 Subject: Adding debian version 0.1-1. Signed-off-by: Daniel Baumann --- debian/README.source | 37 +++++++++++++++++++++++++++++++++++++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 30 ++++++++++++++++++++++++++++++ debian/copyright | 44 ++++++++++++++++++++++++++++++++++++++++++++ debian/rules | 13 +++++++++++++ 6 files changed, 130 insertions(+) create mode 100644 debian/README.source 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/README.source b/debian/README.source new file mode 100644 index 0000000..18b6b24 --- /dev/null +++ b/debian/README.source @@ -0,0 +1,37 @@ +Package Repositories +-------------------- + +Backports for the current stable debian distribution as well as snapshots of +unreleased versions may be available in repositories listed on the maintainers +homepage. The current URL of the maintainer homepage can be seen in +debian/copyright. + + +Source Access +------------- + +You can obtain the sources of this package with: + + $ apt-get source ${PACKAGE} + +whereas '${PACKAGE}' has to be replaced with the actual name of the package. + +This package is maintained with the Git version control system. The current git +source tree can be obtained with: + + $ git clone ${GIT_URI} + +whereas '${GIT_URI}' has to be replaced with the actual URI for the Git +repository. The current Git URI can be seen in debian/control in the extracted +package sources. + +More information about Git can be found in the git-core package. + +This package may use the Quilt patch system to manage all modifications to the +upstream source. Changes, if any, are stored in the source package as diffs in +debian/diff and are applied during the build. Current modifications can be +applied to the source tree with: + + $ QUILT_PATCHES=debian/patches quilt push -a + +More information about Quilt can be found in the quilt package. diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..2b08bab --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +plzip (0.1-1) unstable; urgency=low + + * Initial release. + + -- Daniel Baumann Sun, 06 Dec 2009 22:07:43 +0100 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..eee0917 --- /dev/null +++ b/debian/control @@ -0,0 +1,30 @@ +Source: plzip +Section: utils +Priority: optional +Maintainer: Debian Lzip Maintainers +Uploaders: Daniel Baumann , +Build-Depends: debhelper (>= 7.0.50~), autotools-dev, liblz-dev, texinfo +Standards-Version: 3.8.3 +Homepage: http://www.nongnu.org/lzip/plzip.html +Vcs-Browser: http://git.debian-maintainers.org/?p=lzip/plzip.git +Vcs-Git: git://git.debian-maintainers.org/git/lzip/plzip.git + +Package: plzip +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, dpkg (>= 1.15.4) | install-info +Description: parallel data compressor based on the LZMA algorithm + Plzip is a parallel version of the lzip data compressor. Currently only + compression is performed in parallel. Parallel decompression is planned to be + implemented soon. + +Package: plzip-dbg +Section: debug +Priority: extra +Architecture: any +Depends: ${misc:Depends}, plzip (= ${binary:Version}) +Description: parallel data compressor based on the LZMA algorithm (debug) + Plzip is a parallel version of the lzip data compressor. Currently only + compression is performed in parallel. Parallel decompression is planned to be + implemented soon. + . + This package contains the debugging symbols. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..33965ee --- /dev/null +++ b/debian/copyright @@ -0,0 +1,44 @@ +Upstream-Contact: Antonio Diaz Diaz +Upstream-Homepage: http://www.nongnu.org/lzip/plzip.html +Maintainer-Contact: Debian Lzip Maintainers +Maintainer-Homepage: http://lzip.debian-maintainers.org/ + +Files: * +Copyright: + (C) 2006-2009 Antonio Diaz Diaz + (C) 2009 Laszlo Ersek +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/rules b/debian/rules new file mode 100755 index 0000000..efdcaa3 --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f + +%: + dh ${@} + +override_dh_auto_install: + $(MAKE) prefix=$(CURDIR)/debian/plzip/usr install + + # Removing useless file + rm -f debian/plzip/usr/share/info/dir* + +override_dh_strip: + dh_strip --dbg-package=plzip-dbg -- cgit v1.2.3