[Python-modules-commits] r23900 - in packages/beanstalkc/trunk (10 files)

apoikos-guest at users.alioth.debian.org apoikos-guest at users.alioth.debian.org
Tue Apr 9 12:23:46 UTC 2013


    Date: Tuesday, April 9, 2013 @ 12:23:43
  Author: apoikos-guest
Revision: 23900

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

Added:
  packages/beanstalkc/trunk/debian/
  packages/beanstalkc/trunk/debian/changelog
  packages/beanstalkc/trunk/debian/compat
  packages/beanstalkc/trunk/debian/control
  packages/beanstalkc/trunk/debian/copyright
  packages/beanstalkc/trunk/debian/docs
  packages/beanstalkc/trunk/debian/rules
  packages/beanstalkc/trunk/debian/source/
  packages/beanstalkc/trunk/debian/source/format
  packages/beanstalkc/trunk/debian/watch


Property changes on: packages/beanstalkc/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/beanstalkc/trunk/debian/changelog
===================================================================
--- packages/beanstalkc/trunk/debian/changelog	                        (rev 0)
+++ packages/beanstalkc/trunk/debian/changelog	2013-04-09 12:23:43 UTC (rev 23900)
@@ -0,0 +1,11 @@
+beanstalkc (0.3.0-1) unstable; urgency=low
+
+  * New upstream version 
+
+ -- Apollon Oikonomopoulos <apoikos at gmail.com>  Tue, 12 Mar 2013 16:03:46 +0200
+
+beanstalkc (0.2.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #674539)
+
+ -- Apollon Oikonomopoulos <apoikos at gmail.com>  Tue, 14 Aug 2012 11:58:27 +0300

Added: packages/beanstalkc/trunk/debian/compat
===================================================================
--- packages/beanstalkc/trunk/debian/compat	                        (rev 0)
+++ packages/beanstalkc/trunk/debian/compat	2013-04-09 12:23:43 UTC (rev 23900)
@@ -0,0 +1 @@
+9

Added: packages/beanstalkc/trunk/debian/control
===================================================================
--- packages/beanstalkc/trunk/debian/control	                        (rev 0)
+++ packages/beanstalkc/trunk/debian/control	2013-04-09 12:23:43 UTC (rev 23900)
@@ -0,0 +1,20 @@
+Source: beanstalkc
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Apollon Oikonomopoulos <apoikos at gmail.com>
+Build-Depends: debhelper (>= 9), python-all, python-setuptools, beanstalkd,
+ python-nose, python-yaml
+Standards-Version: 3.9.4
+Homepage: https://github.com/earl/beanstalkc
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/beanstalkc/trunk
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/beanstalkc/trunk
+
+Package: python-beanstalkc
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-yaml
+Suggests: beanstalkd
+Description: Simple beanstalkd client library for Python
+ beanstalkc is a simple beanstalkd client library for Python. beanstalkd is a
+ fast, distributed, in-memory workqueue service. Beanstalkc is written in pure
+ Python and is compatible with eventlet and gevent.

Added: packages/beanstalkc/trunk/debian/copyright
===================================================================
--- packages/beanstalkc/trunk/debian/copyright	                        (rev 0)
+++ packages/beanstalkc/trunk/debian/copyright	2013-04-09 12:23:43 UTC (rev 23900)
@@ -0,0 +1,25 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: beanstalkc
+Upstream-Contact: Andreas Bola <a at bolka.at>
+Source: https://github.com/earl/beanstalkc
+
+Files: *
+Copyright: 2008-2012 Andreas Bolka
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2012-2013 Apollon Oikonomopoulos <apoikos at gmail.com>
+License: Apache-2.0
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+     http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.

Added: packages/beanstalkc/trunk/debian/docs
===================================================================
--- packages/beanstalkc/trunk/debian/docs	                        (rev 0)
+++ packages/beanstalkc/trunk/debian/docs	2013-04-09 12:23:43 UTC (rev 23900)
@@ -0,0 +1,2 @@
+README.mkd
+TUTORIAL.mkd

Added: packages/beanstalkc/trunk/debian/rules
===================================================================
--- packages/beanstalkc/trunk/debian/rules	                        (rev 0)
+++ packages/beanstalkc/trunk/debian/rules	2013-04-09 12:23:43 UTC (rev 23900)
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ --with python2
+
+
+override_dh_auto_clean:
+	dh_auto_clean
+	rm -rf beanstalkc.egg-info
+
+
+override_dh_auto_test:
+	set -ex; for python in $(shell pyversions -s); do\
+		$$python beanstalkc.py; \
+	done
+
+.PHONY: override_dh_auto_clean override_dh_auto_test


Property changes on: packages/beanstalkc/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/beanstalkc/trunk/debian/source/format
===================================================================
--- packages/beanstalkc/trunk/debian/source/format	                        (rev 0)
+++ packages/beanstalkc/trunk/debian/source/format	2013-04-09 12:23:43 UTC (rev 23900)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/beanstalkc/trunk/debian/watch
===================================================================
--- packages/beanstalkc/trunk/debian/watch	                        (rev 0)
+++ packages/beanstalkc/trunk/debian/watch	2013-04-09 12:23:43 UTC (rev 23900)
@@ -0,0 +1,2 @@
+version=3
+https://github.com/earl/beanstalkc/tags .*/v(\d[\d\.]+).tar.gz




More information about the Python-modules-commits mailing list