debian/0000755000000000000000000000000012200641164007162 5ustar debian/source/0000755000000000000000000000000012051272427010470 5ustar debian/source/format0000644000000000000000000000001412051272427011676 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012200620321010601 5ustar debian/patches/04-libs.patch0000644000000000000000000000057712052275134013022 0ustar Description: Fix missing -lrdf. Author: Alessio Treglia Forwarded: yes --- lib.pro | 1 + 1 file changed, 1 insertion(+) --- dataquay.orig/lib.pro +++ dataquay/lib.pro @@ -23,6 +23,7 @@ INCLUDEPATH += dataquay !debug:DEFINES += NDEBUG +LIBS += -lrdf HEADERS += dataquay/BasicStore.h \ dataquay/Connection.h \ dataquay/Node.h \ debian/patches/02-multiarch.patch0000644000000000000000000000242512052146672014055 0ustar Description: Preliminary support for multiarch builds. Author: Alessio Treglia Forwarded: yes --- deploy/dataquay.pc.in | 2 +- lib.pro | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) --- dataquay.orig/deploy/dataquay.pc.in +++ dataquay/deploy/dataquay.pc.in @@ -1,6 +1,6 @@ prefix=%PREFIX% +libdir=%LIBDIR% exec_prefix=${prefix} -libdir=${exec_prefix}/lib includedir=${prefix}/include Name: dataquay --- dataquay.orig/lib.pro +++ dataquay/lib.pro @@ -66,12 +66,15 @@ linux* { isEmpty(PREFIX) { PREFIX = /usr/local } - target.path = $${PREFIX}/lib + isEmpty(LIBDIR) { + LIBDIR = /usr/lib + } + target.path = $${LIBDIR} includes.path = $${PREFIX}/include includes.files = dataquay - pkgconfig.path = $${PREFIX}/lib/pkgconfig + pkgconfig.path = $${LIBDIR}/pkgconfig pkgconfig.files = deploy/dataquay.pc - pkgconfig.extra = sed -e "'"s.%PREFIX%.$${PREFIX}."'" -e "'"s.%EXTRALIBS%.$${EXTRALIBS}."'" deploy/dataquay.pc.in > deploy/dataquay.pc + pkgconfig.extra = sed -e "'"s.%PREFIX%.$${PREFIX}."'" -e "'"s.%LIBDIR%.$${LIBDIR}."'" -e "'"s.%EXTRALIBS%.$${EXTRALIBS}."'" deploy/dataquay.pc.in > deploy/dataquay.pc INSTALLS += target includes pkgconfig } debian/patches/series0000644000000000000000000000010612200620321012013 0ustar 01-build-fix.patch 02-multiarch.patch 03-ldflags.patch #04-libs.patch debian/patches/03-ldflags.patch0000644000000000000000000000057612052146700013477 0ustar Description: Make qmake properly set environment LDFLAGS variable's values. Author: Alessio Treglia Forwarded: yes --- lib.pro | 2 ++ 1 file changed, 2 insertions(+) --- dataquay.orig/lib.pro +++ dataquay/lib.pro @@ -7,6 +7,8 @@ TEMPLATE = lib CONFIG += warn_on QT -= gui +QMAKE_LFLAGS_SHLIB *= $(LDFLAGS) + TARGET = dataquay exists(config.pri) { debian/patches/01-build-fix.patch0000644000000000000000000000104612051272427013742 0ustar Description: Patch fixing build Author: Chris Cannam Forwarded: no Index: dataquay/tests/main.cpp =================================================================== --- dataquay.orig/tests/main.cpp 2012-11-15 09:21:06.534763985 +0100 +++ dataquay/tests/main.cpp 2012-11-15 13:05:42.641588378 +0100 @@ -42,7 +42,7 @@ { int good = 0, bad = 0; - QApplication app(argc, argv); + QCoreApplication app(argc, argv); Dataquay::TestBasicStore tbs; if (QTest::qExec(&tbs, argc, argv) == 0) ++good; debian/changelog0000644000000000000000000000066612200641100011032 0ustar dataquay (0.9-2) unstable; urgency=low [ Alessio Treglia ] * Remove DM-Upload-Allowed field, not needed anymore. [ Jaromír Mikeš ] * Improved description * Fix watch file. * Bump standards -- Jaromír Mikeš Thu, 08 Aug 2013 08:50:42 +0200 dataquay (0.9-1) unstable; urgency=low * Initial release (Closes: #693284) -- Jaromír Mikeš Wed, 14 Nov 2012 02:02:20 +0100 debian/compat0000644000000000000000000000000212051272427010366 0ustar 9 debian/watch0000644000000000000000000000020012200627637010214 0ustar version=3 http://breakfastquay.com/dataquay/ \ http://code.breakfastquay.com/attachments/download/\d+/dataquay-(.+)\.tar\.bz2 debian/gbp.conf0000644000000000000000000000003612051272427010606 0ustar [DEFAULT] pristine-tar = True debian/control0000644000000000000000000000310312200637735010573 0ustar Source: dataquay Section: libs Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Jaromír Mikeš Build-Depends: debhelper (>= 9), libqt4-dev, librdf0-dev Standards-Version: 3.9.4 Homepage: http://breakfastquay.com/dataquay/ Vcs-Git: git://anonscm.debian.org/pkg-multimedia/dataquay.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/dataquay.git Package: libdataquay0 Architecture: any Multi-Arch: same Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Description: Simple RDF for C++ and Qt applications Dataquay is a library that provides a friendly C++ interface to an RDF (Resource Description Framework) datastore using Qt4 classes and containers. Supported datastores are the popular and feature-complete Redland and the lightweight Sord. . It is principally aimed at Qt-based applications. Package: libdataquay-dev Architecture: any Section: libdevel Multi-Arch: same Depends: ${misc:Depends}, libdataquay0 (= ${binary:Version}), librdf0-dev Pre-Depends: ${misc:Pre-Depends} Description: Simple RDF for C++ and Qt applications (development files) Dataquay is a library that provides a friendly C++ interface to an RDF (Resource Description Framework) datastore using Qt4 classes and containers. Supported datastores are the popular and feature-complete Redland and the lightweight Sord. . It is principally aimed at Qt-based applications. . This package contains the headers used to build applications that use libdataquay. debian/rules0000755000000000000000000000047012052134000010232 0ustar #!/usr/bin/make -f DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) %: dh $@ override_dh_auto_configure: qmake dataquay.pro PREFIX=/usr LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH) override_dh_auto_install: dh_auto_install cp deploy/*.pc debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig/ debian/libdataquay0.install0000644000000000000000000000002112052134000013112 0ustar usr/lib/*/*.so.* debian/libdataquay-dev.install0000644000000000000000000000006412052134000013615 0ustar usr/include usr/lib/*/*.so usr/lib/*/pkgconfig/*.pc debian/copyright0000644000000000000000000000322712051272427011127 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: dataquay Upstream-Contact: cannam@all-day-breakfast.com Source: http://breakfastquay.com/dataquay/ Files: * Copyright: 2009-2012 Chris Cannam License: MIT Files: debian/* Copyright: 2012 Jaromír Mikeš License: MIT License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. . Except as contained in this notice, the names of the Centre for Digital Music; Queen Mary, University of London; and Chris Cannam shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization.