--- exempi-2.0.1.orig/debian/libexempi-dev.install +++ exempi-2.0.1/debian/libexempi-dev.install @@ -0,0 +1,3 @@ +usr/include +usr/lib/pkgconfig +usr/lib/libexempi.{so,a} --- exempi-2.0.1.orig/debian/changelog +++ exempi-2.0.1/debian/changelog @@ -0,0 +1,75 @@ +exempi (2.0.1-1) unstable; urgency=low + + * New upstream release. + * debian/libexempi-dev.install + - No longer install the libtool *.la file. + + -- Michael Biebl Tue, 29 Apr 2008 03:50:56 +0200 + +exempi (2.0.0-1) unstable; urgency=low + + * New upstream release. + + -- Michael Biebl Wed, 02 Apr 2008 06:21:58 +0200 + +exempi (1.99.9-1) unstable; urgency=low + + * New upstream release. + * debian/control + - Remove leading article from short package description. + + -- Michael Biebl Sat, 02 Feb 2008 04:54:26 +0100 + +exempi (1.99.8-1) unstable; urgency=low + + * New upstream release. + * debian/patches/01-configure_unittest.patch + - Removed, merged upstream. + * debian/patches/02-buffer_overflow_gif_header.patch + - Removed, merged upstream. + + -- Michael Biebl Sat, 26 Jan 2008 21:45:01 +0100 + +exempi (1.99.7-1) unstable; urgency=medium + + * New upstream release. + - Adds missing #includes which fixes FTBFS with GCC 4.3. (Closes: #456087) + * debian/control + - Bump Standards-Version to 3.7.3. No further changes required. + - Drop Build-Depends on libboost-dev. + - Make the -dbg package be Priority: extra. + * debian/rules + - Disable compilation of the unit tests. + * debian/patches/01-configure_unittest.patch + - Make compilation of the unit tests (which require boost) optional. + Patch is pulled from upstream git. + * debian/patches/02-buffer_overflow_gif_header.patch + - Fix a buffer overflow in the ReadHeader() function when reading GIF + images. This poses a security risk as it allows arbitrary code + execution. Upload with urgency medium. (Closes: #454297) + Thanks to Sjoerd Simons for the help tracking this bug down. + + -- Michael Biebl Thu, 24 Jan 2008 01:39:45 +0100 + +exempi (1.99.5-1) unstable; urgency=low + + * New upstream release. + * debian/control + - Use the new "Homepage:" field to specify the upstream URL. + - The Vcs-* fields are now officially supported, so remove the XS- prefix. + * SONAME bump as ABI has changed. Rename package libexempi2 to libexempi3. + + -- Michael Biebl Wed, 07 Nov 2007 15:29:59 +0100 + +exempi (1.99.4-1) unstable; urgency=low + + * New upstream release. + + -- Michael Biebl Sun, 26 Aug 2007 00:18:41 +0200 + +exempi (1.99.3-1) unstable; urgency=low + + * Initial release. (Closes: #438166) + + -- Asheesh Laroia Wed, 15 Aug 2007 05:20:40 +0200 + --- exempi-2.0.1.orig/debian/copyright +++ exempi-2.0.1/debian/copyright @@ -0,0 +1,70 @@ +This package was first debianized by Hubert Figuiere on +Mon Mar 12 22:22:41 EDT 2007 + +It was downloaded from http://libopenraw.freedesktop.org/wiki/Exempi. + +Copyright: + Copyright (c) 2007 Hubert Figuiere + Copyright (c) 1999 - 2007, Adobe Systems Incorporated + Copyright (c) 1991-2, RSA Data Security, Inc. + +License: + +Portions created by RSA Data Security, Inc. (namely third-party/MD5/MD5.cpp +and third-party/MD5/MD5.h): + + Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights + reserved. + + License to copy and use this software is granted provided that it is + identified as the "RSA Data Security, Inc. MD5 Message-Digest Algorithm" in + all material mentioning or referencing this software or this function. + + License is also granted to make and use derivative works provided that such + works are identified as "derived from the RSA Data Security, Inc. MD5 + Message-Digest Algorithm" in all material mentioning or referencing the + derived work. + + RSA Data Security, Inc. makes no representations concerning either the + merchantability of this software or the suitability of this software for + any particular purpose. It is provided "as is" without express or implied + warranty of any kind. + + These notices must be retained in any copies of any part of this + documentation and/or software. + + + +Portions created by Adobe Systems Incorporated and Hubert Figuiere available +under this BSD-like license: + + Copyright (c) 1999 - 2007, Adobe Systems Incorporated + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * 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. + + * Neither the name of Adobe Systems Incorporated, nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "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 COPYRIGHT + OWNER OR CONTRIBUTORS 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. + --- exempi-2.0.1.orig/debian/watch +++ exempi-2.0.1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://libopenraw.freedesktop.org/download/exempi-(.*)\.tar\.gz --- exempi-2.0.1.orig/debian/libexempi3.install +++ exempi-2.0.1/debian/libexempi3.install @@ -0,0 +1 @@ +usr/lib/libexempi.so.3* --- exempi-2.0.1.orig/debian/rules +++ exempi-2.0.1/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +DEB_DH_INSTALL_SOURCEDIR := debian/tmp + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +DEB_CONFIGURE_EXTRA_FLAGS += --disable-unittest --- exempi-2.0.1.orig/debian/compat +++ exempi-2.0.1/debian/compat @@ -0,0 +1 @@ +5 --- exempi-2.0.1.orig/debian/control +++ exempi-2.0.1/debian/control @@ -0,0 +1,47 @@ +Source: exempi +Section: libs +Priority: optional +Maintainer: Asheesh Laroia +Uploaders: Michael Biebl +Build-Depends: debhelper (>> 5.0.0), cdbs (>= 0.4.30), libexpat1-dev +Standards-Version: 3.7.3 +Vcs-Svn: svn://svn.debian.org/svn/collab-maint/ext-maint/exempi/trunk +Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/ext-maint/exempi/trunk +Homepage: http://libopenraw.freedesktop.org/wiki/Exempi + +Package: libexempi3 +Section: libs +Architecture: any +Depends: ${shlibs:Depends} +Description: library to parse XMP metadata (Library) + Exempi is a library to parse XMP metadata as defined by the + specification. + . + XMP (Extensible Metadata Platform) facilitates embedding metadata in files + using a subset of RDF. Most notably XMP supports embedding metadata in PDF + and many image formats, though it is designed to support nearly any file type. + +Package: libexempi-dev +Section: libdevel +Depends: libexempi3 (= ${binary:Version}) +Architecture: any +Description: library to parse XMP metadata (Development files) + Exempi is a library to parse XMP metadata as defined by the + specification. + . + XMP (Extensible Metadata Platform) facilitates embedding metadata in files + using a subset of RDF. Most notably XMP supports embedding metadata in PDF + and many image formats, though it is designed to support nearly any file type. + +Package: libexempi3-dbg +Architecture: any +Priority: extra +Depends: libexempi3 (= ${binary:Version}) +Description: library to parse XMP metadata (Debug files) + Exempi is a library to parse XMP metadata as defined by the + specification. + . + XMP (Extensible Metadata Platform) facilitates embedding metadata in files + using a subset of RDF. Most notably XMP supports embedding metadata in PDF + and many image formats, though it is designed to support nearly any file type. +