[Python-modules-commits] r20485 - in packages/python-sunlight/trunk (10 files)

paultag-guest at users.alioth.debian.org paultag-guest at users.alioth.debian.org
Fri Feb 17 04:24:20 UTC 2012


    Date: Friday, February 17, 2012 @ 04:24:17
  Author: paultag-guest
Revision: 20485

[svn-inject] Applying Debian modifications (1.0.2-1) to trunk

Added:
  packages/python-sunlight/trunk/debian/
  packages/python-sunlight/trunk/debian/changelog
  packages/python-sunlight/trunk/debian/compat
  packages/python-sunlight/trunk/debian/control
  packages/python-sunlight/trunk/debian/copyright
  packages/python-sunlight/trunk/debian/python-sunlight.doc-base
  packages/python-sunlight/trunk/debian/rules
  packages/python-sunlight/trunk/debian/source/
  packages/python-sunlight/trunk/debian/source/format
  packages/python-sunlight/trunk/debian/watch


Property changes on: packages/python-sunlight/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-sunlight/trunk/debian/changelog
===================================================================
--- packages/python-sunlight/trunk/debian/changelog	                        (rev 0)
+++ packages/python-sunlight/trunk/debian/changelog	2012-02-17 04:24:17 UTC (rev 20485)
@@ -0,0 +1,5 @@
+python-sunlight (1.0.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #660173).
+
+ -- Paul Tagliamonte <paultag at ubuntu.com>  Thu, 16 Feb 2012 23:09:51 -0500

Added: packages/python-sunlight/trunk/debian/compat
===================================================================
--- packages/python-sunlight/trunk/debian/compat	                        (rev 0)
+++ packages/python-sunlight/trunk/debian/compat	2012-02-17 04:24:17 UTC (rev 20485)
@@ -0,0 +1 @@
+9

Added: packages/python-sunlight/trunk/debian/control
===================================================================
--- packages/python-sunlight/trunk/debian/control	                        (rev 0)
+++ packages/python-sunlight/trunk/debian/control	2012-02-17 04:24:17 UTC (rev 20485)
@@ -0,0 +1,20 @@
+Source: python-sunlight
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Paul Tagliamonte <paultag at ubuntu.com>
+Build-Depends: debhelper (>= 9.20120115), python-all (>= 2.5),
+ python-setuptools, python-sphinx (>= 1.0.7+dfsg)
+Standards-Version: 3.9.2
+Homepage: https://github.com/sunlightlabs/python-sunlight
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-sunlight/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-sunlight/
+X-Python-Version: >= 2.6
+
+Package: python-sunlight
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, ${sphinxdoc:Depends}
+Description: programmatically access U.S. goverment data
+ Access U.S. Goverment data (such as federal and state legislators,
+ bills, committees, and congressional record) through The Sunlight
+ Foundation's set of APIs.

Added: packages/python-sunlight/trunk/debian/copyright
===================================================================
--- packages/python-sunlight/trunk/debian/copyright	                        (rev 0)
+++ packages/python-sunlight/trunk/debian/copyright	2012-02-17 04:24:17 UTC (rev 20485)
@@ -0,0 +1,35 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0
+Upstream-Name: sunlight
+Upstream-Contact: sunlight maintainers
+Source: https://github.com/sunlightlabs/python-sunlight
+
+Files: *
+Copyright: 2012, Sunlight Labs
+License: BSD-3
+ Copyright (c) 2012, Sunlight Labs
+ .
+ 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 Sunlight Labs 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.

Added: packages/python-sunlight/trunk/debian/python-sunlight.doc-base
===================================================================
--- packages/python-sunlight/trunk/debian/python-sunlight.doc-base	                        (rev 0)
+++ packages/python-sunlight/trunk/debian/python-sunlight.doc-base	2012-02-17 04:24:17 UTC (rev 20485)
@@ -0,0 +1,9 @@
+Document: python-sunlight
+Title: Python Sunlight API bindings
+Author: Sunlight Labs
+Abstract: This manual describes the Python bindings to the Sunlight APIs.
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-sunlight/html/index.html
+Files: /usr/share/doc/python-sunlight/html/*

Added: packages/python-sunlight/trunk/debian/rules
===================================================================
--- packages/python-sunlight/trunk/debian/rules	                        (rev 0)
+++ packages/python-sunlight/trunk/debian/rules	2012-02-17 04:24:17 UTC (rev 20485)
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+
+PACKAGE_NAME=python-sunlight
+PACKAGE_DOCDIR=debian/$(PACKAGE_NAME)/usr/share/doc/$(PACKAGE_NAME)
+
+%:
+	dh $@ --with python2
+
+override_dh_auto_clean:
+	dh_auto_clean
+	rm -rvf docs/build src/*.egg-info
+
+override_dh_installdocs:
+	make -C docs html
+	mkdir -vp $(PACKAGE_DOCDIR)
+	cp -vr ./docs/build/html $(PACKAGE_DOCDIR)
+	dh_installdocs
+	dh_sphinxdoc
+
+override_dh_compress:
+	dh_compress -X.html


Property changes on: packages/python-sunlight/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-sunlight/trunk/debian/source/format
===================================================================
--- packages/python-sunlight/trunk/debian/source/format	                        (rev 0)
+++ packages/python-sunlight/trunk/debian/source/format	2012-02-17 04:24:17 UTC (rev 20485)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-sunlight/trunk/debian/watch
===================================================================
--- packages/python-sunlight/trunk/debian/watch	                        (rev 0)
+++ packages/python-sunlight/trunk/debian/watch	2012-02-17 04:24:17 UTC (rev 20485)
@@ -0,0 +1,2 @@
+version=3
+http://githubredir.debian.net/github/sunlightlabs/python-sunlight/(.*).tar.gz




More information about the Python-modules-commits mailing list