[Python-modules-commits] r32311 - in packages/python-requests-cache/trunk (9 files)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Sat Apr 11 18:13:31 UTC 2015


    Date: Saturday, April 11, 2015 @ 18:13:30
  Author: morph
Revision: 32311

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

Added:
  packages/python-requests-cache/trunk/debian/
  packages/python-requests-cache/trunk/debian/changelog
  packages/python-requests-cache/trunk/debian/compat
  packages/python-requests-cache/trunk/debian/control
  packages/python-requests-cache/trunk/debian/copyright
  packages/python-requests-cache/trunk/debian/rules
  packages/python-requests-cache/trunk/debian/source/
  packages/python-requests-cache/trunk/debian/source/format
  packages/python-requests-cache/trunk/debian/watch


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

Added: packages/python-requests-cache/trunk/debian/changelog
===================================================================
--- packages/python-requests-cache/trunk/debian/changelog	                        (rev 0)
+++ packages/python-requests-cache/trunk/debian/changelog	2015-04-11 18:13:30 UTC (rev 32311)
@@ -0,0 +1,5 @@
+python-requests-cache (0.4.9-1) unstable; urgency=low
+
+  * Initial release (Closes: #782410)
+
+ -- Sandro Tosi <morph at debian.org>  Sat, 11 Apr 2015 18:59:52 +0100

Added: packages/python-requests-cache/trunk/debian/compat
===================================================================
--- packages/python-requests-cache/trunk/debian/compat	                        (rev 0)
+++ packages/python-requests-cache/trunk/debian/compat	2015-04-11 18:13:30 UTC (rev 32311)
@@ -0,0 +1 @@
+9

Added: packages/python-requests-cache/trunk/debian/control
===================================================================
--- packages/python-requests-cache/trunk/debian/control	                        (rev 0)
+++ packages/python-requests-cache/trunk/debian/control	2015-04-11 18:13:30 UTC (rev 32311)
@@ -0,0 +1,22 @@
+Source: python-requests-cache
+Section: python
+Priority: optional
+Maintainer: Sandro Tosi <morph at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 9), python, python3, dh-python
+Standards-Version: 3.9.6
+Homepage: https://github.com/reclosedev/requests-cache
+
+Package: python-requests-cache
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: persistent cache for requests library
+ Requests-cache is a transparent persistent cache for requests library.
+
+Package: python3-requests-cache
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: persistent cache for requests library (Python 3)
+ Requests-cache is a transparent persistent cache for requests library.
+ .
+ This package contains the Python 3 version of requests-cache.

Added: packages/python-requests-cache/trunk/debian/copyright
===================================================================
--- packages/python-requests-cache/trunk/debian/copyright	                        (rev 0)
+++ packages/python-requests-cache/trunk/debian/copyright	2015-04-11 18:13:30 UTC (rev 32311)
@@ -0,0 +1,35 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-requests-cache
+Source: <url://example.com>
+
+Files: *
+Copyright: Copyright (c) 2012, Roman Haritonov
+License: BSD
+ 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.
+ .
+ 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.
+
+Files: debian/*
+Copyright: 2015 Sandro Tosi <morph at debian.org>
+License: GPL-2+
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".

Added: packages/python-requests-cache/trunk/debian/rules
===================================================================
--- packages/python-requests-cache/trunk/debian/rules	                        (rev 0)
+++ packages/python-requests-cache/trunk/debian/rules	2015-04-11 18:13:30 UTC (rev 32311)
@@ -0,0 +1,32 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#DH_VERBOSE = 1
+
+# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/default.mk
+
+# see FEATURE AREAS in dpkg-buildflags(1)
+#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+# see ENVIRONMENT in dpkg-buildflags(1)
+# package maintainers to append CFLAGS
+#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
+# package maintainers to append LDFLAGS
+#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+
+
+# main packaging script based on dh7 syntax
+%:
+	dh $@ 
+
+# debmake generated override targets
+# This is example for Cmake (See http://bugs.debian.org/641051 )
+#override_dh_auto_configure:
+#	dh_auto_configure -- \
+#	-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
+
+
+
+


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

Added: packages/python-requests-cache/trunk/debian/source/format
===================================================================
--- packages/python-requests-cache/trunk/debian/source/format	                        (rev 0)
+++ packages/python-requests-cache/trunk/debian/source/format	2015-04-11 18:13:30 UTC (rev 32311)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-requests-cache/trunk/debian/watch
===================================================================
--- packages/python-requests-cache/trunk/debian/watch	                        (rev 0)
+++ packages/python-requests-cache/trunk/debian/watch	2015-04-11 18:13:30 UTC (rev 32311)
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/requests-cache/requests-cache-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file




More information about the Python-modules-commits mailing list