[Python-modules-commits] r18418 - in packages/pyramid-beaker/trunk (8 files)

ansgar at users.alioth.debian.org ansgar at users.alioth.debian.org
Thu Sep 1 23:09:25 UTC 2011


    Date: Thursday, September 1, 2011 @ 23:09:24
  Author: ansgar
Revision: 18418

[svn-inject] Applying Debian modifications (0.5+ds1-1) to trunk

Added:
  packages/pyramid-beaker/trunk/debian/
  packages/pyramid-beaker/trunk/debian/changelog
  packages/pyramid-beaker/trunk/debian/compat
  packages/pyramid-beaker/trunk/debian/control
  packages/pyramid-beaker/trunk/debian/copyright
  packages/pyramid-beaker/trunk/debian/rules
  packages/pyramid-beaker/trunk/debian/source/
  packages/pyramid-beaker/trunk/debian/source/format


Property changes on: packages/pyramid-beaker/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/pyramid-beaker/trunk/debian/changelog
===================================================================
--- packages/pyramid-beaker/trunk/debian/changelog	                        (rev 0)
+++ packages/pyramid-beaker/trunk/debian/changelog	2011-09-01 23:09:24 UTC (rev 18418)
@@ -0,0 +1,5 @@
+pyramid-beaker (0.5+ds1-1) unstable; urgency=low
+
+  * Initial release. (Closes: #640055)
+
+ -- Ansgar Burchardt <ansgar at debian.org>  Thu, 01 Sep 2011 21:40:35 +0200

Added: packages/pyramid-beaker/trunk/debian/compat
===================================================================
--- packages/pyramid-beaker/trunk/debian/compat	                        (rev 0)
+++ packages/pyramid-beaker/trunk/debian/compat	2011-09-01 23:09:24 UTC (rev 18418)
@@ -0,0 +1 @@
+8

Added: packages/pyramid-beaker/trunk/debian/control
===================================================================
--- packages/pyramid-beaker/trunk/debian/control	                        (rev 0)
+++ packages/pyramid-beaker/trunk/debian/control	2011-09-01 23:09:24 UTC (rev 18418)
@@ -0,0 +1,19 @@
+Source: pyramid-beaker
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Ansgar Burchardt <ansgar at debian.org>
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pyramid-beaker/trunk/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyramid-beaker/trunk/
+Standards-Version: 3.9.2
+Homepage: https://github.com/Pylons/pyramid_beaker
+Build-Depends: debhelper (>= 8), python-all, python-beaker, python-nose,
+ python-pyramid, python-setuptools
+
+Package: python-pyramid-beaker
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-beaker, python-pyramid
+Provides: ${python:Provides}
+Description: Beaker sessioning bindings for Pyramid
+ pyramid_beaker provides a session factory for the Pyramid web framework
+ backed by the Beaker sessioning system.

Added: packages/pyramid-beaker/trunk/debian/copyright
===================================================================
--- packages/pyramid-beaker/trunk/debian/copyright	                        (rev 0)
+++ packages/pyramid-beaker/trunk/debian/copyright	2011-09-01 23:09:24 UTC (rev 18418)
@@ -0,0 +1,56 @@
+Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135
+Maintainer: Chris McDonough <chrism at plope.com>
+Source: https://github.com/Pylons/pyramid_beaker
+Name: pyramid_beaker
+Disclaimer:
+  The files docs/* have been removed as they are not licensed under DFSG-free
+  license.
+
+Files: *
+Copyright: 2010, Agendaless Consulting and Contributors
+ List of Contributors:
+   Chris McDonough
+   Marcin Lulek
+   Tres Seaver
+   Joachim Krebs
+License: BSD-like
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions are
+  met:
+  .
+  1.  Redistributions in source code must retain the accompanying
+      copyright notice, this list of conditions, and the following
+      disclaimer.
+  .
+  2.  Redistributions in binary form must reproduce the accompanying
+      copyright notice, this list of conditions, and the following
+      disclaimer in the documentation and/or other materials provided
+      with the distribution.
+  .
+  3.  Names of the copyright holders must not be used to endorse or
+      promote products derived from this software without prior
+      written permission from the copyright holders.
+  .
+  4.  If any files are modified, you must cause the modified files to
+      carry prominent notices stating that you changed the files and
+      the date of any change.
+  .
+  Disclaimer
+  .
+    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND
+    ANY EXPRESSED 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
+    HOLDERS 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: 2011, Ansgar Burchardt <ansgar at debian.org>
+License: BSD-like
+  The Debian packaging is licensed under the same terms as the software.

Added: packages/pyramid-beaker/trunk/debian/rules
===================================================================
--- packages/pyramid-beaker/trunk/debian/rules	                        (rev 0)
+++ packages/pyramid-beaker/trunk/debian/rules	2011-09-01 23:09:24 UTC (rev 18418)
@@ -0,0 +1,18 @@
+#! /usr/bin/make -f
+
+%:
+	dh $@ --with python2
+
+override_dh_auto_test:
+	nosetests
+
+version=0.5
+
+get-orig-source: d=pyramid-beaker-$(version).orig
+get-orig-source:
+	wget --no-clobber -O pyramid-beaker-$(version).tar.gz https://github.com/Pylons/pyramid_beaker/tarball/$(version)
+	mkdir $(d)
+	tar --strip-components=1 -C $(d) -xzf pyramid-beaker-$(version).tar.gz
+	cd $(d) && rm -r docs
+	tar cfj pyramid-beaker_$(version)+ds1.orig.tar.bz2 $(d)
+	rm -r pyramid-beaker-$(version).tar.gz $(d)


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

Added: packages/pyramid-beaker/trunk/debian/source/format
===================================================================
--- packages/pyramid-beaker/trunk/debian/source/format	                        (rev 0)
+++ packages/pyramid-beaker/trunk/debian/source/format	2011-09-01 23:09:24 UTC (rev 18418)
@@ -0,0 +1 @@
+3.0 (quilt)




More information about the Python-modules-commits mailing list