--- flickcurl-1.12.orig/debian/watch +++ flickcurl-1.12/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://download.dajobe.org/flickcurl/ flickcurl-(.*)\.tar\.gz --- flickcurl-1.12.orig/debian/libflickcurl-dev.install +++ flickcurl-1.12/debian/libflickcurl-dev.install @@ -0,0 +1,5 @@ +usr/include/* +usr/lib/lib*.so +usr/lib/pkgconfig/* +usr/lib/*.la +usr/bin/flickcurl-config --- flickcurl-1.12.orig/debian/flickcurl-doc.docs +++ flickcurl-1.12/debian/flickcurl-doc.docs @@ -0,0 +1,6 @@ +docs/html/* +NEWS +README +README.html +NEWS.html +coverage.html --- flickcurl-1.12.orig/debian/libflickcurl-dev.manpages +++ flickcurl-1.12/debian/libflickcurl-dev.manpages @@ -0,0 +1 @@ +docs/flickcurl-config.1 --- flickcurl-1.12.orig/debian/copyright +++ flickcurl-1.12/debian/copyright @@ -0,0 +1,66 @@ +This package was debianized by Kumar Appaiah on +Sun, 05 Aug 2007 10:21:39 +0530. + +It was downloaded from http://librdf.org/flickcurl/ + +Upstream Author: + + Dave Beckett + Vanilla I. Shu (flickcurl.contacts.*) + +Copyright: + + Copyright © 2007, 2008, 2009 Dave Beckett + Copyright © 2007 Vanilla I. Shu + +License for flickcurl_getopt.h, autogen.sh and getopt.c: Public domain + +License for all other files: + +This program is triple licensed under the GPL, LGPL and the Apache +License, and you may choose to select any one of these licenses to +apply to this software. + +GPL: + + This package 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 2 of the License, or + (at your option) any later version. + + This package 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. + +LGPL: + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA + +On Debian systems, the complete text of the GNU Library General +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + +Apache License: This package may also be distributed under the terms +and conditions specified by the Apache License 2.0. A copy of the same +can be found on Debian systems in `/usr/share/common-licenses/Apache-2.0'. + +The Debian packaging is © 2007, Kumar Appaiah and +is licensed under the GPL, see above. --- flickcurl-1.12.orig/debian/compat +++ flickcurl-1.12/debian/compat @@ -0,0 +1 @@ +6 --- flickcurl-1.12.orig/debian/libflickcurl-dev.docs +++ flickcurl-1.12/debian/libflickcurl-dev.docs @@ -0,0 +1,5 @@ +NEWS +README +README.html +NEWS.html +coverage.html --- flickcurl-1.12.orig/debian/flickcurl-utils.install +++ flickcurl-1.12/debian/flickcurl-utils.install @@ -0,0 +1,2 @@ +usr/bin/flickcurl +usr/bin/flickrdf --- flickcurl-1.12.orig/debian/flickcurl-doc.links +++ flickcurl-1.12/debian/flickcurl-doc.links @@ -0,0 +1,2 @@ +usr/share/doc/flickcurl-doc/flickcurl.devhelp usr/share/gtk-doc/html/flickcurl +usr/share/doc/flickcurl-doc/flickcurl.devhelp2 usr/share/gtk-doc/html/flickcurl2 --- flickcurl-1.12.orig/debian/flickcurl-utils.manpages +++ flickcurl-1.12/debian/flickcurl-utils.manpages @@ -0,0 +1,2 @@ +docs/flickcurl.1 +docs/flickrdf.1 --- flickcurl-1.12.orig/debian/rules +++ flickcurl-1.12/debian/rules @@ -0,0 +1,79 @@ +#!/usr/bin/make -f +# -*- makefile -*- +#export DH_VERBOSE=1 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) +CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +else +CROSS= --build $(DEB_BUILD_GNU_TYPE) +endif + +config.status: configure + dh_testdir +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + ./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp +build-stamp: config.status + dh_testdir + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + rm -f config.sub config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + + +binary-indep: build install +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_install --sourcedir=./debian/tmp + dh_installman + dh_strip --dbg-package=libflickcurl0-dbg + dh_compress -X .devhelp + dh_link + dh_fixperms + dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- flickcurl-1.12.orig/debian/control +++ flickcurl-1.12/debian/control @@ -0,0 +1,101 @@ +Source: flickcurl +Priority: optional +Section: libs +Maintainer: Kumar Appaiah +Uploaders: Dave Beckett +Build-Depends: debhelper (>= 6), autotools-dev, libraptor1-dev +Standards-Version: 3.8.2 +Homepage: http://librdf.org/flickcurl/ +Vcs-Git: git://git.debian.org/git/collab-maint/flickcurl.git +Vcs-Browser: http://git.debian.org/?p=collab-maint/flickcurl.git + +Package: libflickcurl-dev +Section: libdevel +Architecture: any +Depends: libflickcurl0 (= ${binary:Version}) +Description: C library for accessing the Flickr API - development files + Flickcurl is a C library for the Flickr API, handling creating the + requests, signing, token management, calling the API, marshalling + request parameters and decoding responses. The library now supports + 100% of the 2008-01-11 version of the API, including the functions + for photo uploading, browsing, searching, adding and editing + comments, groups, notes, photosets, categories, activity, blogs, + favorites, places, tags and photo metadata. It also includes a + program flickrdf to turn photo metadata, tags and machine tags into + RDF descriptions of photos and tags. + . + This package contains the development libraries and headers for + flickcurl. + +Package: libflickcurl0 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: C library for accessing the Flickr API + Flickcurl is a C library for the Flickr API, handling creating the + requests, signing, token management, calling the API, marshalling + request parameters and decoding responses. The library now supports + 100% of the 2008-01-11 version of the API, including the functions + for photo uploading, browsing, searching, adding and editing + comments, groups, notes, photosets, categories, activity, blogs, + favorites, places, tags and photo metadata. It also includes a + program flickrdf to turn photo metadata, tags and machine tags into + RDF descriptions of photos and tags. + +Package: libflickcurl0-dbg +Priority: extra +Section: debug +Architecture: any +Depends: libflickcurl0 (= ${binary:Version}), flickcurl-utils (= ${binary:Version}) +Description: C library for accessing the Flickr API - debugging symbols + Flickcurl is a C library for the Flickr API, handling creating the + requests, signing, token management, calling the API, marshalling + request parameters and decoding responses. The library now supports + 100% of the 2008-01-11 version of the API, including the functions + for photo uploading, browsing, searching, adding and editing + comments, groups, notes, photosets, categories, activity, blogs, + favorites, places, tags and photo metadata. It also includes a + program flickrdf to turn photo metadata, tags and machine tags into + RDF descriptions of photos and tags. + . + This package contains the debugging symbols for debugging + applications which use libflickurl0. + +Package: flickcurl-utils +Section: utils +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: utilities to call the Flickr API from command line + Flickcurl is a C library for the Flickr API, handling creating the + requests, signing, token management, calling the API, marshalling + request parameters and decoding responses. The library now supports + 100% of the 2008-01-11 version of the API, including the functions + for photo uploading, browsing, searching, adding and editing + comments, groups, notes, photosets, categories, activity, blogs, + favorites, places, tags and photo metadata. It also includes a + program flickrdf to turn photo metadata, tags and machine tags into + RDF descriptions of photos and tags. + . + Support for the Flickr API in these programs is through the + libflickcurl library. + +Package: flickcurl-doc +Section: doc +Architecture: all +Recommends: dwww, www-browser +Description: utilities to call the Flickr API from command line - documentation + Flickcurl is a C library for the Flickr API, handling creating the + requests, signing, token management, calling the API, marshalling + request parameters and decoding responses. The library now supports + 100% of the 2008-01-11 version of the API, including the functions + for photo uploading, browsing, searching, adding and editing + comments, groups, notes, photosets, categories, activity, blogs, + favorites, places, tags and photo metadata. It also includes a + program flickrdf to turn photo metadata, tags and machine tags into + RDF descriptions of photos and tags. + . + Support for the Flickr API in these programs is through the + libflickcurl library. + . + This package contains the HTML documentation for flickcurl and the + related library. --- flickcurl-1.12.orig/debian/flickcurl-utils.docs +++ flickcurl-1.12/debian/flickcurl-utils.docs @@ -0,0 +1,5 @@ +NEWS +README +README.html +NEWS.html +coverage.html --- flickcurl-1.12.orig/debian/libflickcurl0.docs +++ flickcurl-1.12/debian/libflickcurl0.docs @@ -0,0 +1,5 @@ +NEWS +README +README.html +NEWS.html +coverage.html --- flickcurl-1.12.orig/debian/changelog +++ flickcurl-1.12/debian/changelog @@ -0,0 +1,140 @@ +flickcurl (1.12-1) unstable; urgency=low + + * New upstream release. + * quilt no longer needed, as patch merged upstream. + + -- Kumar Appaiah Wed, 15 Jul 2009 19:00:26 -0500 + +flickcurl (1.11-1) unstable; urgency=low + + * New Upstream Version + * Use quilt for patches. + * Standards version is now 3.8.2 (no changes). + * debian/patches: Fix null shape detection, + to avoid Segfault. + * debian/control: libflickcurl0-dbg pulls in + flickcurl-utils for debugging. (Closes: #464190). + + -- Kumar Appaiah Fri, 03 Jul 2009 08:03:32 -0400 + +flickcurl (1.10-1) unstable; urgency=low + + * New upstream release. + + Upload URL fixed. (Closes: #526189) + * debian/control: + + Move libflickcurl0-dbg to debug section. + + -- Kumar Appaiah Fri, 01 May 2009 19:31:36 -0500 + +flickcurl (1.9-1) unstable; urgency=low + + * New upstream release. + * Standards version is now 3.8.1 (no changes needed). + * Move libflickcurl0-dbg to debug section. + + -- Kumar Appaiah Sun, 26 Apr 2009 20:45:13 -0500 + +flickcurl (1.8-1) unstable; urgency=low + + * New upstream release. + * Upload to unstable. + * debian/copyright: Update dates. + + -- Kumar Appaiah Sun, 15 Feb 2009 10:35:05 -0600 + +flickcurl (1.7-1) experimental; urgency=low + + * New upstream release. + * Fix location of devhelp symlinks. + * Use the "©" symbol in debian.copyright. + + -- Kumar Appaiah Sat, 17 Jan 2009 18:45:45 -0600 + +flickcurl (1.6-1) experimental; urgency=low + + * New upstream release. + * Include HTML documentation in new flickcurl-doc package. + - Ensure that symlinks are created for devhelp files. + + -- Kumar Appaiah Mon, 15 Sep 2008 17:45:25 -0500 + +flickcurl (1.5-1) experimental; urgency=low + + * New upstream release. + + -- Kumar Appaiah Thu, 04 Sep 2008 13:33:30 -0500 + +flickcurl (1.4-1) experimental; urgency=low + + * New upstream release. + + Patches removed; merged upstream. + * debian/control: + + Fix typo in description. + + Standards version now 3.8.0 (No changes needed). + + Update my e-mail address. + + quilt not needed. + * debian/rules: + + Remove quilt includes. + + Alter example file name to print-photo-info.c. + * debian/copyright: Point to common Apache license, + rather than including it in full. + + -- Kumar Appaiah Sat, 16 Aug 2008 20:47:30 -0500 + +flickcurl (1.2-1) unstable; urgency=low + + * New upstream release. + + Document all supported API calls in man page. + (Closes: #461852, #461846) + + Don't specify USER-NSID as USER-ID. + (Closes: #461858) + * debian/control: + + Fix incorrect Vcs-* fields. (Closes: #461843) + * debian/patches: + + user-nsid_fix.diff: Refer to USER-NSID instead of + USER-ID in flickcurl. + + fix_nullarg.diff: Don't segfault if insufficient + parameters are provided. (Closes: #461854) + * debian/rules: + + Detect if cross-building occurs. + + -- Kumar Appaiah Tue, 29 Jan 2008 16:08:56 +0530 + +flickcurl (1.0-1) unstable; urgency=low + + * New upstream release. + * debian/control: + + Add Dave Beckett (Upstream author) to Uploaders. + + Update description to reflect 100% API support. + + Depend on libraptor1-dev instead of the virtual + package libraptor-dev and libxml-dev. + + Depend on debhelper 6 and above. + * debian/compat: + + Use 6 for debhelper version increase. + + -- Kumar Appaiah Wed, 16 Jan 2008 09:55:28 +0530 + +flickcurl (0.13-1) unstable; urgency=low + + * New upstream release. + * debian/control: + + Add Homepage field, remove Homepage from description. + + Bump standards version to 3.7.3 (No changes needed). + * debian/copyright: + + Update to add Vanilla Shu. + * debian/*manpages: + + Use upstream supplied man pages. + + -- Kumar Appaiah Sat, 29 Dec 2007 17:07:59 +0530 + +flickcurl (0.12-2) unstable; urgency=low + + * Fix watch file to use upstream web page directly. + + -- Kumar Appaiah Sun, 23 Sep 2007 20:47:29 +0530 + +flickcurl (0.12-1) unstable; urgency=low + + * Initial release (Closes: #436065) + + -- Kumar Appaiah Sun, 05 Aug 2007 13:21:54 +0530 --- flickcurl-1.12.orig/debian/libflickcurl0.install +++ flickcurl-1.12/debian/libflickcurl0.install @@ -0,0 +1 @@ +usr/lib/lib*.so.* --- flickcurl-1.12.orig/debian/libflickcurl-dev.examples +++ flickcurl-1.12/debian/libflickcurl-dev.examples @@ -0,0 +1,2 @@ +examples/print-photo-info.c +