rev 7446 - in branches/kde4/packages: . libzip libzip/debian

Fathi Boudra fboudra-guest at alioth.debian.org
Sun Oct 14 08:26:11 UTC 2007


Author: fboudra-guest
Date: 2007-10-14 08:26:11 +0000 (Sun, 14 Oct 2007)
New Revision: 7446

Added:
   branches/kde4/packages/libzip/
   branches/kde4/packages/libzip/debian/
   branches/kde4/packages/libzip/debian/changelog
   branches/kde4/packages/libzip/debian/compat
   branches/kde4/packages/libzip/debian/control
   branches/kde4/packages/libzip/debian/copyright
   branches/kde4/packages/libzip/debian/docs
   branches/kde4/packages/libzip/debian/libzip-dev.install
   branches/kde4/packages/libzip/debian/libzip1.install
   branches/kde4/packages/libzip/debian/rules
   branches/kde4/packages/libzip/debian/zipcmp.install
   branches/kde4/packages/libzip/debian/zipmerge.install
Log:
* Add libzip package. It is used by kdeutils.


Added: branches/kde4/packages/libzip/debian/changelog
===================================================================
--- branches/kde4/packages/libzip/debian/changelog	                        (rev 0)
+++ branches/kde4/packages/libzip/debian/changelog	2007-10-14 08:26:11 UTC (rev 7446)
@@ -0,0 +1,6 @@
+libzip (0.8-1) unstable; urgency=low
+
+  * Initial release. (Closes: #446583)
+
+ -- Fathi Boudra <fboudra at free.fr>  Sun, 14 Oct 2007 09:20:12 +0200
+

Added: branches/kde4/packages/libzip/debian/compat
===================================================================
--- branches/kde4/packages/libzip/debian/compat	                        (rev 0)
+++ branches/kde4/packages/libzip/debian/compat	2007-10-14 08:26:11 UTC (rev 7446)
@@ -0,0 +1 @@
+5

Added: branches/kde4/packages/libzip/debian/control
===================================================================
--- branches/kde4/packages/libzip/debian/control	                        (rev 0)
+++ branches/kde4/packages/libzip/debian/control	2007-10-14 08:26:11 UTC (rev 7446)
@@ -0,0 +1,57 @@
+Source: libzip
+Priority: optional
+Maintainer: Fathi Boudra <fboudra at free.fr>
+Build-Depends: cdbs, debhelper (>= 5), quilt, autotools-dev, zlib1g-dev
+Standards-Version: 3.7.2
+Section: libs
+
+Package: libzip-dev
+Section: libdevel
+Architecture: any
+Depends: libzip1 (= ${binary:Version}), zlib1g-dev
+Description: library for reading, creating, and modifying zip archives (development)
+ libzip is a C library for reading, creating, and modifying zip archives. Files
+ can be added from data buffers, files, or compressed data copied directly from
+ other zip archives. Changes made without closing the archive can be reverted.
+ .
+ This package contains the static libraries and headers for developing
+ applications that use the libzip library API.
+ .
+  Homepage: http://www.nih.at/libzip/
+
+Package: libzip1
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: library for reading, creating, and modifying zip archives (runtime)
+ libzip is a C library for reading, creating, and modifying zip archives. Files
+ can be added from data buffers, files, or compressed data copied directly from
+ other zip archives. Changes made without closing the archive can be reverted.
+ .
+ This package contains the files necessary for running applications that
+ use the libzip library.
+ .
+  Homepage: http://www.nih.at/libzip/
+
+Package: zipcmp
+Section: utils
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: compare contents of zip archives
+ zipcmp compares two zip archives and checks if they contain the same files,
+ comparing their names, uncompressed sizes, and CRCs. File order and compressed
+ size differences are ignored.
+ .
+  Homepage: http://www.nih.at/libzip/
+
+Package: zipmerge
+Section: utils
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: merge zip archives
+ zipmerge merges a source zip archives into a target zip archive.
+ By default, files in the source zip archives overwrite existing files of the
+ same name in the target zip archive.
+ .
+  Homepage: http://www.nih.at/libzip/
+

Added: branches/kde4/packages/libzip/debian/copyright
===================================================================
--- branches/kde4/packages/libzip/debian/copyright	                        (rev 0)
+++ branches/kde4/packages/libzip/debian/copyright	2007-10-14 08:26:11 UTC (rev 7446)
@@ -0,0 +1,49 @@
+This package was debianized by Fathi Boudra <fboudra at free.fr> on
+Sun, 14 Oct 2007 09:20:12 +0200.
+
+It was downloaded from http://www.nih.at/libzip/
+
+Upstream Authors:
+
+    Dieter Baron <dillo at giga.or.at>
+    Thomas Klausner <tk at giga.or.at>
+    The authors can be contacted at <nih at giga.or.at>
+
+Copyright:
+
+    (C) 1999-2007 Dieter Baron and Thomas Klausner
+
+Copyright for mkstemp code:
+
+    (C) 1987, 1993 The Regents of the University of California.
+    All rights reserved.
+
+License:
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted provided that the following conditions
+    are met:
+    1. Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+    2. Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in
+       the documentation and/or other materials provided with the
+       distribution.
+    3. The names of the authors may not be used to endorse or promote
+       products derived from this software without specific prior
+       written permission.
+
+    THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
+    OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+    ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
+    DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+    GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
+    IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+    OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+    IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+The Debian packaging is (C) 2007, Fathi Boudra <fboudra at free.fr> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: branches/kde4/packages/libzip/debian/docs
===================================================================
--- branches/kde4/packages/libzip/debian/docs	                        (rev 0)
+++ branches/kde4/packages/libzip/debian/docs	2007-10-14 08:26:11 UTC (rev 7446)
@@ -0,0 +1,3 @@
+NEWS
+README
+TODO

Added: branches/kde4/packages/libzip/debian/libzip-dev.install
===================================================================
--- branches/kde4/packages/libzip/debian/libzip-dev.install	                        (rev 0)
+++ branches/kde4/packages/libzip/debian/libzip-dev.install	2007-10-14 08:26:11 UTC (rev 7446)
@@ -0,0 +1,5 @@
+usr/include/zip.h
+usr/lib/libzip.a
+usr/lib/libzip.so
+usr/lib/pkgconfig/libzip.pc
+usr/share/man/man3/*

Added: branches/kde4/packages/libzip/debian/libzip1.install
===================================================================
--- branches/kde4/packages/libzip/debian/libzip1.install	                        (rev 0)
+++ branches/kde4/packages/libzip/debian/libzip1.install	2007-10-14 08:26:11 UTC (rev 7446)
@@ -0,0 +1 @@
+usr/lib/libzip.so.*

Added: branches/kde4/packages/libzip/debian/rules
===================================================================
--- branches/kde4/packages/libzip/debian/rules	                        (rev 0)
+++ branches/kde4/packages/libzip/debian/rules	2007-10-14 08:26:11 UTC (rev 7446)
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/patchsys-quilt.mk
+include /usr/share/cdbs/1/rules/utils.mk
+
+DEB_DH_INSTALL_SOURCEDIR := debian/tmp
+


Property changes on: branches/kde4/packages/libzip/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: branches/kde4/packages/libzip/debian/zipcmp.install
===================================================================
--- branches/kde4/packages/libzip/debian/zipcmp.install	                        (rev 0)
+++ branches/kde4/packages/libzip/debian/zipcmp.install	2007-10-14 08:26:11 UTC (rev 7446)
@@ -0,0 +1,2 @@
+usr/bin/zipcmp
+usr/share/man/man1/zipcmp.1

Added: branches/kde4/packages/libzip/debian/zipmerge.install
===================================================================
--- branches/kde4/packages/libzip/debian/zipmerge.install	                        (rev 0)
+++ branches/kde4/packages/libzip/debian/zipmerge.install	2007-10-14 08:26:11 UTC (rev 7446)
@@ -0,0 +1,2 @@
+usr/bin/zipmerge
+usr/share/man/man1/zipmerge.1




More information about the pkg-kde-commits mailing list