r2019 - in python-chameleon/trunk (10 files)

jinty-guest at users.alioth.debian.org jinty-guest at users.alioth.debian.org
Thu Jan 14 16:42:16 UTC 2010


    Date: Thursday, January 14, 2010 @ 16:41:41
  Author: jinty-guest
Revision: 2019

[svn-inject] Applying Debian modifications to trunk

Added:
  python-chameleon/trunk/debian/
  python-chameleon/trunk/debian/changelog
  python-chameleon/trunk/debian/compat
  python-chameleon/trunk/debian/control
  python-chameleon/trunk/debian/copyright
  python-chameleon/trunk/debian/rules
  python-chameleon/trunk/debian/tests/
  python-chameleon/trunk/debian/tests/all
  python-chameleon/trunk/debian/tests/control
  python-chameleon/trunk/debian/watch


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

Added: python-chameleon/trunk/debian/changelog
===================================================================
--- python-chameleon/trunk/debian/changelog	                        (rev 0)
+++ python-chameleon/trunk/debian/changelog	2010-01-14 16:41:41 UTC (rev 2019)
@@ -0,0 +1,11 @@
+python-chameleon (1.0.8-1) unstable; urgency=low
+
+  * New upstream version which contains the a LICENSE.txt file.
+
+ -- Brian Sutherland <brian at vanguardistas.net>  Thu, 14 Jan 2010 16:10:04 +0100
+
+python-chameleon (1.0.7-1) unstable; urgency=low
+
+  * Initial Packaging.
+
+ -- Brian Sutherland <brian at vanguardistas.net>  Tue, 12 Jan 2010 13:28:13 +0100

Added: python-chameleon/trunk/debian/compat
===================================================================
--- python-chameleon/trunk/debian/compat	                        (rev 0)
+++ python-chameleon/trunk/debian/compat	2010-01-14 16:41:41 UTC (rev 2019)
@@ -0,0 +1 @@
+7

Added: python-chameleon/trunk/debian/control
===================================================================
--- python-chameleon/trunk/debian/control	                        (rev 0)
+++ python-chameleon/trunk/debian/control	2010-01-14 16:41:41 UTC (rev 2019)
@@ -0,0 +1,24 @@
+Source: python-chameleon
+Section: zope
+Priority: optional
+Maintainer: Debian/Ubuntu Zope Team <pkg-zope-developers at lists.alioth.debian.org>
+Uploaders: Brian Sutherland <brian at vanguardistas.net>
+Build-Depends: debhelper (>= 7), python-all-dev (>= 2.3.5-11), python-central (>= 0.5.6), python-setuptools (>= 0.6b3), python-van.pydeb (>= 1.3.0-4)
+Standards-Version: 3.8.3
+XS-Python-Version: all
+XS-Vcs-Svn: svn://svn.debian.org/pkg-zope/python-chameleon/trunk
+
+Package: python-chameleon
+Architecture: all
+Depends: ${pydeb:Depends}, ${python:Depends}, ${misc:Depends}
+Recommends: ${pydeb:Recommends}
+Provides: ${pydeb:Provides}, ${python:Provides}
+Suggests: ${pydeb:Suggests}
+XB-Python-Version: ${python:Versions}
+Description: XML-based template compiler
+ Chameleon compiles templates to Python byte-code. It includes a complete
+ implementation of the Zope Page Templates (ZPT) language.
+ .
+ The engine itself performs 10-15 times better than the reference
+ implementation and real-world benchmarks show an overall performance
+ improvement in complex applications of 30-50%.

Added: python-chameleon/trunk/debian/copyright
===================================================================
--- python-chameleon/trunk/debian/copyright	                        (rev 0)
+++ python-chameleon/trunk/debian/copyright	2010-01-14 16:41:41 UTC (rev 2019)
@@ -0,0 +1,49 @@
+This package was debianized by Brian Sutherland <brian at vanguardistas.net>
+
+It was downloaded from http://pypi.python.org/pypi/Chameleon
+
+Copyright:
+
+Upstream Author: Malthe Borch and the Repoze Community <repoze-dev at lists.repoze.org>
+
+The files contained in this package are under a BSD style license which the
+text is:
+
+    A copyright notice accompanies this license document that identifies
+    the copyright holders.
+
+    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.

Added: python-chameleon/trunk/debian/rules
===================================================================
--- python-chameleon/trunk/debian/rules	                        (rev 0)
+++ python-chameleon/trunk/debian/rules	2010-01-14 16:41:41 UTC (rev 2019)
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+# next lines required until van.pydeb 1.3.1
+export PYDEB_PY_PACKAGE=Chameleon
+export PYDEB_BIN_PACKAGE=python-chameleon
+
+%:
+	dh -v --with pydeb --with python-central $@
+
+override_dh_auto_build:
+	python setup.py build
+
+override_dh_auto_install:
+	python setup.py install --force --root=debian/python-chameleon --no-compile -O0


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

Added: python-chameleon/trunk/debian/tests/all
===================================================================
--- python-chameleon/trunk/debian/tests/all	                        (rev 0)
+++ python-chameleon/trunk/debian/tests/all	2010-01-14 16:41:41 UTC (rev 2019)
@@ -0,0 +1,2 @@
+#!/bin/bash
+. /usr/share/python-zope.testing/test_helper

Added: python-chameleon/trunk/debian/tests/control
===================================================================
--- python-chameleon/trunk/debian/tests/control	                        (rev 0)
+++ python-chameleon/trunk/debian/tests/control	2010-01-14 16:41:41 UTC (rev 2019)
@@ -0,0 +1,3 @@
+Tests: all
+Features: no-build-needed
+Depends: @, python-zope.testing, python-zope.interface, python-zope.component, python.zope.i18n

Added: python-chameleon/trunk/debian/watch
===================================================================
--- python-chameleon/trunk/debian/watch	                        (rev 0)
+++ python-chameleon/trunk/debian/watch	2010-01-14 16:41:41 UTC (rev 2019)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/C/Chameleon/Chameleon-(.*)\.tar\.gz




More information about the pkg-zope-developers mailing list