[Python-modules-commits] r19574 - in packages (10 files)

davidvilla-guest at users.alioth.debian.org davidvilla-guest at users.alioth.debian.org
Sat Dec 10 17:39:47 UTC 2011


    Date: Saturday, December 10, 2011 @ 17:39:45
  Author: davidvilla-guest
Revision: 19574

initial release

Added:
  packages/python-bitbucket/
  packages/python-bitbucket/trunk/
  packages/python-bitbucket/trunk/debian/
  packages/python-bitbucket/trunk/debian/changelog
  packages/python-bitbucket/trunk/debian/compat
  packages/python-bitbucket/trunk/debian/control
  packages/python-bitbucket/trunk/debian/copyright
  packages/python-bitbucket/trunk/debian/rules
  packages/python-bitbucket/trunk/debian/source/
  packages/python-bitbucket/trunk/debian/source/format


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

Added: packages/python-bitbucket/trunk/debian/changelog
===================================================================
--- packages/python-bitbucket/trunk/debian/changelog	                        (rev 0)
+++ packages/python-bitbucket/trunk/debian/changelog	2011-12-10 17:39:45 UTC (rev 19574)
@@ -0,0 +1,5 @@
+python-bitbucket (0.1-1) unstable; urgency=low
+
+  * Initial release
+
+ -- David Villa Alises <David.Villa at uclm.es>  Sat, 10 Dec 2011 18:24:51 +0100

Added: packages/python-bitbucket/trunk/debian/compat
===================================================================
--- packages/python-bitbucket/trunk/debian/compat	                        (rev 0)
+++ packages/python-bitbucket/trunk/debian/compat	2011-12-10 17:39:45 UTC (rev 19574)
@@ -0,0 +1 @@
+7

Added: packages/python-bitbucket/trunk/debian/control
===================================================================
--- packages/python-bitbucket/trunk/debian/control	                        (rev 0)
+++ packages/python-bitbucket/trunk/debian/control	2011-12-10 17:39:45 UTC (rev 19574)
@@ -0,0 +1,31 @@
+Source: python-bitbucket
+Maintainer: David Villa Alises <David.Villa at uclm.es>
+Section: python
+Priority: optional
+Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7)
+Standards-Version: 3.9.2
+
+Package: python-bitbucket
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: python library for bitbucket API access
+ python-bitbucket
+ ----------------
+ .
+ A simple python library to access the BitBucket API.  API Coverage is not
+ that high at the moment as the API has not been officially released and is
+ still in a state of flux.  Right now only read (GET) calls are supported.
+ .
+ usage
+ =====
+ .
+ API Usage all stems from the ``BitBucket`` object.  You can instantiate one
+ easily::
+ .
+     >>> import bitbucket
+     >>> bb = bitbucket.BitBucket()
+     >>> bb
+     <BitBucket API>
+ .
+ Certain areas of bitbucket's API require authentication or promise to provide
+ more data if you are authenticated.  Authentication lives on the ``BitBucket``

Added: packages/python-bitbucket/trunk/debian/copyright
===================================================================
--- packages/python-bitbucket/trunk/debian/copyright	                        (rev 0)
+++ packages/python-bitbucket/trunk/debian/copyright	2011-12-10 17:39:45 UTC (rev 19574)
@@ -0,0 +1,20 @@
+Copyright (c) 2010 Jason Moiron and Contributors
+
+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 AUTHORS OR COPYRIGHT HOLDERS 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.

Added: packages/python-bitbucket/trunk/debian/rules
===================================================================
--- packages/python-bitbucket/trunk/debian/rules	                        (rev 0)
+++ packages/python-bitbucket/trunk/debian/rules	2011-12-10 17:39:45 UTC (rev 19574)
@@ -0,0 +1,17 @@
+#!/usr/bin/make -f
+
+APP=python-bitbucket
+VERSION=$(shell head -n 1 debian/changelog | cut -f2 -d " " | tr -d "()" | cut -f1 -d "-")
+
+ORIG_REPO=git clone https://github.com/ericof/python-bitbucket.git
+ORIG_DIR=$(APP)-$(VERSION)
+EXCLUDE=$(addprefix --exclude=, debian \*~ .hg .svn .git \*.pyc)
+
+%:
+	dh $@ --with python2 --buildsystem=python_distutils
+
+
+get-orig-source:
+	$(ORIG_REPO) $(ORIG_DIR)
+	tar $(EXCLUDE) -czf ../$(APP)_$(VERSION).orig.tar.gz $(ORIG_DIR)
+	$(RM) -r $(ORIG_DIR)


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

Added: packages/python-bitbucket/trunk/debian/source/format
===================================================================
--- packages/python-bitbucket/trunk/debian/source/format	                        (rev 0)
+++ packages/python-bitbucket/trunk/debian/source/format	2011-12-10 17:39:45 UTC (rev 19574)
@@ -0,0 +1 @@
+3.0 (quilt)




More information about the Python-modules-commits mailing list