diff options
-rw-r--r-- | debian/README.source | 37 | ||||
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 33 | ||||
-rw-r--r-- | debian/copyright | 42 | ||||
-rw-r--r-- | debian/lzip.docs | 2 | ||||
-rwxr-xr-x | debian/rules | 13 | ||||
-rw-r--r-- | debian/source/format | 1 |
8 files changed, 134 insertions, 0 deletions
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..c531024 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +clzip (1.0~rc2-1) unstable; urgency=low + + * Initial release. + + -- Daniel Baumann <daniel@debian.org> Sun, 14 Mar 2010 13:02:04 +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..c81b0d5 --- /dev/null +++ b/debian/control @@ -0,0 +1,33 @@ +Source: clzip +Section: utils +Priority: optional +Maintainer: Debian Lzip Maintainers <lzip@lists.debian-maintainers.org> +Uploaders: Daniel Baumann <daniel@debian.org>, +Build-Depends: debhelper (>= 7.0.50~), autotools-dev, texinfo +Standards-Version: 3.8.4 +Homepage: http://www.nongnu.org/lzip/clzip.html +Vcs-Browser: http://git.debian-maintainers.org/?p=lzip/clzip.git +Vcs-Git: git://git.debian-maintainers.org/git/lzip/clzip.git + +Package: clzip +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends}, dpkg (>= 1.15.4) | install-info +Description: data compressor based on the LZMA algorithm (C version) + 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. + . + This package contains a pure C implementation. + +Package: clzip-dbg +Section: debug +Priority: extra +Architecture: any +Depends: ${misc:Depends}, clzip (= ${binary:Version}) +Description: data compressor based on the LZMA algorithm (C version; 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 of the pure C implementation. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b8fbf04 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,42 @@ +Upstream-Contact: Antonio Diaz Diaz <ant_diaz@teleline.es> +Upstream-Homepage: http://www.nongnu.org/lzip/lzip.html +Maintainer-Contact: Debian Lzip Maintainers <lzip@lists.debian-maintainers.org> +Maintainer-Homepage: http://lzip.debian-maintainers.org/ + +Files: * +Copyright: (C) 2010 Antonio Diaz Diaz <ant_diaz@teleline.es> +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 <http://www.gnu.org/licenses/>. + . + 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-2010 Daniel Baumann <daniel@debian.org> +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 <http://www.gnu.org/licenses/>. + . + 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..6da18dd --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f + +%: + dh ${@} + +override_dh_auto_install: + $(MAKE) prefix=$(CURDIR)/debian/clzip/usr install + + # Removing useless file + rm -f debian/clzip/usr/share/info/dir* + +override_dh_strip: + dh_strip --dbg-package=clzip-dbg diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..d3827e7 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +1.0 |