Adding debian version 0.1-1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
63d771d1a1
commit
1988a692fd
6 changed files with 130 additions and 0 deletions
37
debian/README.source
vendored
Normal file
37
debian/README.source
vendored
Normal file
|
@ -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.
|
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
plzip (0.1-1) unstable; urgency=low
|
||||
|
||||
* Initial release.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Sun, 06 Dec 2009 22:07:43 +0100
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
7
|
30
debian/control
vendored
Normal file
30
debian/control
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
Source: plzip
|
||||
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, 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.
|
44
debian/copyright
vendored
Normal file
44
debian/copyright
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
Upstream-Contact: Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
Upstream-Homepage: http://www.nongnu.org/lzip/plzip.html
|
||||
Maintainer-Contact: Debian Lzip Maintainers <lzip@lists.debian-maintainers.org>
|
||||
Maintainer-Homepage: http://lzip.debian-maintainers.org/
|
||||
|
||||
Files: *
|
||||
Copyright:
|
||||
(C) 2006-2009 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
(C) 2009 Laszlo Ersek <lacos@caesar.elte.hu>
|
||||
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 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.
|
13
debian/rules
vendored
Executable file
13
debian/rules
vendored
Executable file
|
@ -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
|
Loading…
Add table
Reference in a new issue