[Python-modules-commits] r13836 - in packages/python-libgearman/trunk (10 files)

spamaps-guest at users.alioth.debian.org spamaps-guest at users.alioth.debian.org
Wed Jul 7 16:20:54 UTC 2010


    Date: Wednesday, July 7, 2010 @ 16:20:50
  Author: spamaps-guest
Revision: 13836

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

Added:
  packages/python-libgearman/trunk/debian/
  packages/python-libgearman/trunk/debian/changelog
  packages/python-libgearman/trunk/debian/compat
  packages/python-libgearman/trunk/debian/control
  packages/python-libgearman/trunk/debian/copyright
  packages/python-libgearman/trunk/debian/python-libgearman.preinst
  packages/python-libgearman/trunk/debian/rules
  packages/python-libgearman/trunk/debian/source/
  packages/python-libgearman/trunk/debian/source/format
  packages/python-libgearman/trunk/debian/watch


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

Added: packages/python-libgearman/trunk/debian/changelog
===================================================================
--- packages/python-libgearman/trunk/debian/changelog	                        (rev 0)
+++ packages/python-libgearman/trunk/debian/changelog	2010-07-07 16:20:50 UTC (rev 13836)
@@ -0,0 +1,19 @@
+python-libgearman (0.13.2-1) unstable; urgency=low
+
+  * new upstream fixes private API linking issues
+
+ -- Clint Byrum <clint at ubuntu.com>  Mon, 24 May 2010 14:32:25 -0700
+
+python-libgearman (0.13.1-2) maverick; urgency=low
+
+  * adding watch file
+  * specifying 3.0 quilt source format
+
+ -- Clint Byrum <clint at ubuntu.com>  Tue, 29 Jun 2010 22:05:04 -0700
+
+python-libgearman (0.13.1-1) unstable; urgency=low
+
+  * source package automatically created by stdeb 0.5.1
+  * Initial Release (closes #587469)
+
+ -- Clint Byrum <clint at ubuntu.com>  Mon, 24 May 2010 14:32:25 -0700

Added: packages/python-libgearman/trunk/debian/compat
===================================================================
--- packages/python-libgearman/trunk/debian/compat	                        (rev 0)
+++ packages/python-libgearman/trunk/debian/compat	2010-07-07 16:20:50 UTC (rev 13836)
@@ -0,0 +1 @@
+7

Added: packages/python-libgearman/trunk/debian/control
===================================================================
--- packages/python-libgearman/trunk/debian/control	                        (rev 0)
+++ packages/python-libgearman/trunk/debian/control	2010-07-07 16:20:50 UTC (rev 13836)
@@ -0,0 +1,14 @@
+Source: python-libgearman
+Maintainer: Clint Byrum <clint at ubuntu.com>
+Section: python
+Priority: optional
+Build-Depends: python-setuptools (>= 0.6b3), python-all-dev, debhelper (>= 7), python-support (>= 0.8.4), libgearman-dev
+Standards-Version: 3.8.4
+
+Package: python-libgearman
+Architecture: any
+Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}
+XB-Python-Version: ${python:Versions}
+Provides: ${python:Provides}
+Description: Python wrapper of libgearman
+ Python wrapper of libgearman

Added: packages/python-libgearman/trunk/debian/copyright
===================================================================
--- packages/python-libgearman/trunk/debian/copyright	                        (rev 0)
+++ packages/python-libgearman/trunk/debian/copyright	2010-07-07 16:20:50 UTC (rev 13836)
@@ -0,0 +1,22 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: python-libgearman
+Maintainer: Clint Byrum <clint at ubuntu.com>
+Source: https://launchpad.net/gearman-interface
+License: BSD
+Copyright: 2009, Monty Taylor <mordred at inaugust.com>
+
+Files: debian/*
+Copyright: 2010, Canonical Ltd.
+
+Files: test_client.py
+Copyright: 2009, David Lenwell
+           2009, Monty Taylor <mordred at inaugust.com>
+
+Files: test_client_bg.py
+Copyright: 2009, David Lenwell
+           2009, Monty Taylor <mordred at inaugust.com>
+
+Files: test_worker.py
+Copyright: 2009, David Lenwell
+           2009, Monty Taylor <mordred at inaugust.com>
+

Added: packages/python-libgearman/trunk/debian/python-libgearman.preinst
===================================================================
--- packages/python-libgearman/trunk/debian/python-libgearman.preinst	                        (rev 0)
+++ packages/python-libgearman/trunk/debian/python-libgearman.preinst	2010-07-07 16:20:50 UTC (rev 13836)
@@ -0,0 +1,14 @@
+#! /bin/sh
+
+set -e
+
+# This was added by stdeb to workaround Debian #479852. In a nutshell,
+# pycentral does not remove normally remove its symlinks on an
+# upgrade. Since we're using python-support, however, those symlinks
+# will be broken. This tells python-central to clean up any symlinks.
+if [ -e /var/lib/dpkg/info/python-python-libgearman.list ] && which pycentral >/dev/null 2>&1
+then
+    pycentral pkgremove python-python-libgearman
+fi
+
+#DEBHELPER#

Added: packages/python-libgearman/trunk/debian/rules
===================================================================
--- packages/python-libgearman/trunk/debian/rules	                        (rev 0)
+++ packages/python-libgearman/trunk/debian/rules	2010-07-07 16:20:50 UTC (rev 13836)
@@ -0,0 +1,17 @@
+#!/usr/bin/make -f
+
+# This file was automatically generated by stdeb 0.5.1 at
+# Mon, 24 May 2010 14:32:25 -0700
+
+# Unset the environment variables set by dpkg-buildpackage. (This is
+# necessary because distutils is brittle with compiler/linker flags
+# set. Specifically, packages using f2py will break without this.)
+unexport CPPFLAGS
+unexport CFLAGS
+unexport CXXFLAGS
+unexport FFLAGS
+unexport LDFLAGS
+
+%:
+	dh $@
+


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

Added: packages/python-libgearman/trunk/debian/source/format
===================================================================
--- packages/python-libgearman/trunk/debian/source/format	                        (rev 0)
+++ packages/python-libgearman/trunk/debian/source/format	2010-07-07 16:20:50 UTC (rev 13836)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-libgearman/trunk/debian/watch
===================================================================
--- packages/python-libgearman/trunk/debian/watch	                        (rev 0)
+++ packages/python-libgearman/trunk/debian/watch	2010-07-07 16:20:50 UTC (rev 13836)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/p/python-libgearman/python-libgearman-(.+)\.tar\.gz




More information about the Python-modules-commits mailing list