diff options
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 32 | ||||
-rw-r--r-- | debian/copyright | 55 | ||||
-rw-r--r-- | debian/lziprecover.docs | 2 | ||||
-rwxr-xr-x | debian/rules | 16 | ||||
-rw-r--r-- | debian/source/format | 1 | ||||
-rw-r--r-- | debian/source/options | 2 |
8 files changed, 114 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1fc4fa0 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +lziprecover (1.13~rc1-1) unstable; urgency=low + + * Initial release. + + -- Daniel Baumann <daniel.baumann@progress-technologies.net> Tue, 15 Nov 2011 00:07:28 +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..451273f --- /dev/null +++ b/debian/control @@ -0,0 +1,32 @@ +Source: lziprecover +Section: utils +Priority: optional +Maintainer: Daniel Baumann <daniel.baumann@progress-technologies.net> +Build-Depends: debhelper (>= 8), texinfo +Standards-Version: 3.9.2 +Homepage: http://www.nongnu.org/lzip/lziprecover.html + +Package: lziprecover +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends} +Conflicts: lzip (<< 1.13~rc1-1~) +Description: lossless data compressor based on the LZMA algorithm (recovery) + 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 the recovery tool. + +Package: lziprecover-dbg +Section: debug +Priority: extra +Architecture: any +Depends: ${misc:Depends}, lziprecover (= ${binary:Version}) +Description: lossless 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. + . + This package contains the debugging symbols. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..31aea9e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,55 @@ +Files: * +Copyright: (C) 2006-2011 Antonio Diaz Diaz <ant_diaz@teleline.es> +License: GPL-3+ + +Files: arg_parser.* +Copyright: (C) 2006-2011 Antonio Diaz Diaz <ant_diaz@teleline.es> +License: GPL-3+ with exception + +Files: debian/* +Copyright: (C) 2011 Daniel Baumann <daniel.baumann@progress-technologies.net> +License: GPL-3+ + +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/>. + . + The complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-3 file. + +License: GPL-3+ with exception + 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/>. + . + 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. diff --git a/debian/lziprecover.docs b/debian/lziprecover.docs new file mode 100644 index 0000000..50bd824 --- /dev/null +++ b/debian/lziprecover.docs @@ -0,0 +1,2 @@ +NEWS +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c465e00 --- /dev/null +++ b/debian/rules @@ -0,0 +1,16 @@ +#!/usr/bin/make -f + +%: + dh ${@} + +override_dh_auto_install: + dh_auto_install -- DESTDIR=$(CURDIR)/debian/lziprecover + + # removing unused files + rm -f debian/lziprecover/usr/share/info/dir* + +override_dh_strip: + dh_strip --dbg-package=lziprecover-dbg + +override_dh_builddeb: + dh_builddeb -- -Zgzip -z9 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 |