diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 13:12:51 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-06 13:12:51 +0000 |
commit | dfcfcff786ec8d259f1768f2e3e9d0250ba83f5e (patch) | |
tree | fa83af05fa47cb91f378cf239ad1f3f570b4a85c | |
parent | Adding upstream version 1.0~rc1. (diff) | |
download | lunzip-dfcfcff786ec8d259f1768f2e3e9d0250ba83f5e.tar.xz lunzip-dfcfcff786ec8d259f1768f2e3e9d0250ba83f5e.zip |
Adding debian version 1.0~rc1-1.debian/1.0_rc1-1
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 30 | ||||
-rw-r--r-- | debian/copyright | 66 | ||||
-rw-r--r-- | debian/lunzip.docs | 2 | ||||
-rwxr-xr-x | debian/rules | 10 | ||||
-rw-r--r-- | debian/source/format | 1 | ||||
-rw-r--r-- | debian/source/options | 2 |
8 files changed, 117 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f33f5be --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +lunzip (1.0~rc1-1) unstable; urgency=low + + * Initial release. + + -- Daniel Baumann <daniel@debian.org> Sun, 19 Dec 2010 19:14:54 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..c1cf774 --- /dev/null +++ b/debian/control @@ -0,0 +1,30 @@ +Source: lunzip +Section: utils +Priority: optional +Maintainer: Debian Lzip Maintainers <lzip@lists.debian-maintainers.org> +Uploaders: Daniel Baumann <daniel@debian.org>, +Build-Depends: debhelper (>= 8), autotools-dev +Standards-Version: 3.9.1 +Homepage: http://www.nongnu.org/lzip/lunzip.html +Vcs-Browser: http://git.debian-maintainers.org/?p=lzip/lunzip.git +Vcs-Git: git://git.debian-maintainers.org/git/lzip/lunzip.git + +Package: lunzip +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: data compressor based on the LZMA algorithm (uncompressor) + 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 uncompressor. + +Package: lunzip-dbg +Section: debug +Priority: extra +Architecture: any +Depends: ${misc:Depends}, lunzip (= ${binary:Version}) +Description: data compressor based on the LZMA algorithm (uncompressor 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 for the uncompressor. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..3ec050e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,66 @@ +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: carg_parser.* +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. + . + As a special exception, you may use this file as part of a free + software library without restriction. Specifically, if other files + instantiate templates or use macros or inline functions from this + file, or you compile this file and link it with other files to + produce an executable, this file does not by itself cause the + resulting executable to be covered by the GNU General Public + License. This exception does not however invalidate any other + reasons why the executable file might be covered by the GNU General + Public License. + +Files: debian/* +Copyright: (C) 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/lunzip.docs b/debian/lunzip.docs new file mode 100644 index 0000000..50bd824 --- /dev/null +++ b/debian/lunzip.docs @@ -0,0 +1,2 @@ +NEWS +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..a68ae21 --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +%: + dh ${@} + +override_dh_auto_install: + $(MAKE) prefix=$(CURDIR)/debian/lunzip/usr install + +override_dh_strip: + dh_strip --dbg-package=lunzip-dbg diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 0000000..d053b65 --- /dev/null +++ b/debian/source/options @@ -0,0 +1,2 @@ +compression = gzip +compression-level = 9 |