--- pysesame-0.24.orig/debian/changelog +++ pysesame-0.24/debian/changelog @@ -0,0 +1,11 @@ +pysesame (0.24-2) unstable; urgency=low + + * Orphaned. Set maintainer to Debian QA Group. + + -- Nacho Barrientos Arias Sun, 29 Dec 2013 19:48:11 +0000 + +pysesame (0.24-1) unstable; urgency=low + + * Initial release. (Closes: #429809) + + -- Nacho Barrientos Arias Tue, 19 Jun 2007 23:13:14 +0200 --- pysesame-0.24.orig/debian/compat +++ pysesame-0.24/debian/compat @@ -0,0 +1 @@ +5 --- pysesame-0.24.orig/debian/control +++ pysesame-0.24/debian/control @@ -0,0 +1,28 @@ +Source: pysesame +Section: python +Priority: optional +Maintainer: Debian QA Group +Build-Depends: debhelper (>= 5), python-support (>= 0.6) +Standards-Version: 3.7.2 + +Package: python-sesame +Architecture: all +Depends: ${python:Depends} +Description: Python wrapper for Sesame's REST HTTP API + Sesame is an open source RDF Schema-based storage and querying + facility. + . + Now you can easily do the following from your Python script: + . + * Log in + * Log out + * Request a list of available repositories + * Evaluate a SeRQL-select, RQL or RDQL query + * Evaluate a SeRQL-construct query + * Extract RDF from a repository + * Uploading data to a repository + * Add data from the web to a repository + * Clear a repository + * Remove statements + . + Homepage: http://pysesame.projects.semwebcentral.org/ --- pysesame-0.24.orig/debian/copyright +++ pysesame-0.24/debian/copyright @@ -0,0 +1,31 @@ +This package was debianized by Nacho Barrientos Arias + on Tue, 19 Jun 2007 23:41:37 +0200 + +It was downloaded from http://pysesame.projects.semwebcentral.org/ + +Main upstream author: Tom Hoffman + +Copyright holders and contributors: + + Copyright 2004-2007: + + * Tom Hoffman + * P Ike + +License: + + 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 2 + of the License, or 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. + + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' + +The Debian packaging is (C) 2007, Nacho Barrientos Arias + and is licensed under the GPL, see above. --- pysesame-0.24.orig/debian/dirs +++ pysesame-0.24/debian/dirs @@ -0,0 +1 @@ +usr/share/python-support/python-sesame --- pysesame-0.24.orig/debian/python-sesame.examples +++ pysesame-0.24/debian/python-sesame.examples @@ -0,0 +1,2 @@ +examples.py +tests_data.py --- pysesame-0.24.orig/debian/pyversions +++ pysesame-0.24/debian/pyversions @@ -0,0 +1 @@ +2.3- --- pysesame-0.24.orig/debian/rules +++ pysesame-0.24/debian/rules @@ -0,0 +1,39 @@ +#!/usr/bin/make -f + +PYSUPPORTDIR = usr/share/python-support/python-sesame + +build: build-stamp + +build-stamp: + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_installdirs + install -m 644 $(CURDIR)/pySesame.py $(CURDIR)/debian/python-sesame/$(PYSUPPORTDIR) + +binary-arch: build install + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_compress + dh_fixperms + dh_pysupport + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install