--- python-facebook-0.svn20100209.orig/debian/README.Debian +++ python-facebook-0.svn20100209/debian/README.Debian @@ -0,0 +1,11 @@ +python-facebook +--------------- + +There is a tutorial available at + +http://wiki.developers.facebook.com/index.php/PythonPyFacebookTutorial + +Note that djangofb.py script mentioned in the tutorial is installed in +the package examples directory + + -- Ian Wienand , Fri, 24 Jul 2009 13:15:43 -0700 --- python-facebook-0.svn20100209.orig/debian/changelog +++ python-facebook-0.svn20100209/debian/changelog @@ -0,0 +1,53 @@ +python-facebook (0.svn20100209-3.1) unstable; urgency=medium + + * Non-maintainer upload. + * Build using dh-python. Closes: #786319. + + -- Matthias Klose Tue, 18 Aug 2015 18:02:57 +0200 + +python-facebook (0.svn20100209-3) unstable; urgency=low + + * Suggest python-simplejson, and conflict with python-json. Python 2.6 + provides a 'json' module (compatible with simplejson), so this code + does an 'import json as simplejson'. This breaks with python-json, as + it provides a 'json' that is not simplejson compatible. (Closes: + #570123) + + -- Ian Wienand Fri, 19 Feb 2010 12:57:37 -0800 + +python-facebook (0.svn20100209-2) unstable; urgency=low + + * Build depend on python-all, rather than python (Closes: #569445) + + -- Ian Wienand Thu, 11 Feb 2010 15:15:10 -0800 + +python-facebook (0.svn20100209-1) unstable; urgency=low + + * Pull from upstream again, fixes numerous issues + * Update standards version + * Remove dependency on python-dev-all for just python + * Add misc:Depends line + * Add dpatch dependency, although we have no patches currently + + -- Ian Wienand Tue, 09 Feb 2010 12:47:26 -0800 + +python-facebook (0.svn20090724-1) unstable; urgency=low + + * Update homepage to new github home + * New upstream clone from git (despite svn name, it came from git) + + -- Ian Wienand Fri, 24 Jul 2009 13:24:43 -0700 + +python-facebook (0.svn20090108-2) unstable; urgency=low + + * Remove dpatch requires (Closes: #537961) + * Add djangofb.py to examples (Closes: #537960) + + -- Ian Wienand Fri, 24 Jul 2009 12:55:12 -0700 + +python-facebook (0.svn20090108-1) unstable; urgency=low + + * Initial release (Closes: #511279). + * Acquired from SVN on 2009-01-08 + + -- Ian Wienand Thu, 08 Jan 2009 16:42:37 -0800 --- python-facebook-0.svn20100209.orig/debian/compat +++ python-facebook-0.svn20100209/debian/compat @@ -0,0 +1 @@ +5 --- python-facebook-0.svn20100209.orig/debian/control +++ python-facebook-0.svn20100209/debian/control @@ -0,0 +1,17 @@ +Source: python-facebook +Section: python +Priority: extra +Maintainer: Ian Wienand +Build-Depends: debhelper (>= 5), dpatch, dh-python, python-all +Standards-Version: 3.8.4 +Homepage: http://github.com/sciyoshi/pyfacebook/ + +Package: python-facebook +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +Conflicts: python-json +XB-Python-Version: ${python:Versions} +Provides: ${python:Provides} +Suggests: python-simplejson +Description: Python wrappers for the Facebook API + PyFacebook is a thin wrapper for accessing Facebook's API through Python. --- python-facebook-0.svn20100209.orig/debian/copyright +++ python-facebook-0.svn20100209/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by Ian Wienand on Jan 8, 2009 + +It was originally downloaded from http://code.google.com/p/pyfacebook/ +The curren home is http://github.com/sciyoshi/pyfacebook/tree/master + +Upstream Author: + +Samuel Cormier-Iijima (sciyoshi@gmail.com) + +Copyright: Copyright (c) 2008, Samuel Cormier-Iijima +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 the author 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 AUTHOR 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 AUTHOR 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. + +The Debian packaging is (C) 2009, Ian Wienand and is +licensed under the same license. \ No newline at end of file --- python-facebook-0.svn20100209.orig/debian/docs +++ python-facebook-0.svn20100209/debian/docs @@ -0,0 +1 @@ +README \ No newline at end of file --- python-facebook-0.svn20100209.orig/debian/examples +++ python-facebook-0.svn20100209/debian/examples @@ -0,0 +1,2 @@ +examples/* +bin/djangofb.py --- python-facebook-0.svn20100209.orig/debian/patches/00list +++ python-facebook-0.svn20100209/debian/patches/00list @@ -0,0 +1 @@ +#nothing, yet --- python-facebook-0.svn20100209.orig/debian/pyversions +++ python-facebook-0.svn20100209/debian/pyversions @@ -0,0 +1 @@ +2.3- --- python-facebook-0.svn20100209.orig/debian/rules +++ python-facebook-0.svn20100209/debian/rules @@ -0,0 +1,52 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/dpatch/dpatch.make + +PYVERS = $(shell pyversions -rv) + +build: $(PYVERS:%=build-stamp-py%) +build-stamp-py%: patch-stamp + dh_testdir + python$* setup.py build + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + rm -rf build build-stamp* + dh_clean + +install: install-prereqs $(PYVERS:%=install-stamp-py%) +install-prereqs: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs +install-stamp-py%: + python$* setup.py install --root $(CURDIR)/debian/python-facebook + +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_python2 + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: build install + #nothing + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install