[Python-modules-commits] r21682 - in packages/python-cssselect/trunk (11 files)

takaki at users.alioth.debian.org takaki at users.alioth.debian.org
Thu May 10 07:49:43 UTC 2012


    Date: Thursday, May 10, 2012 @ 07:49:40
  Author: takaki
Revision: 21682

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

Added:
  packages/python-cssselect/trunk/debian/
  packages/python-cssselect/trunk/debian/changelog
  packages/python-cssselect/trunk/debian/compat
  packages/python-cssselect/trunk/debian/control
  packages/python-cssselect/trunk/debian/copyright
  packages/python-cssselect/trunk/debian/docs
  packages/python-cssselect/trunk/debian/rules
  packages/python-cssselect/trunk/debian/source/
  packages/python-cssselect/trunk/debian/source/format
  packages/python-cssselect/trunk/debian/source/options
  packages/python-cssselect/trunk/debian/watch


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

Added: packages/python-cssselect/trunk/debian/changelog
===================================================================
--- packages/python-cssselect/trunk/debian/changelog	                        (rev 0)
+++ packages/python-cssselect/trunk/debian/changelog	2012-05-10 07:49:40 UTC (rev 21682)
@@ -0,0 +1,5 @@
+python-cssselect (0.6.1-1) unstable; urgency=low
+
+  * Initial release. (Closes: #672323)
+
+ -- TANIGUCHI Takaki <takaki at debian.org>  Thu, 10 May 2012 09:02:14 +0900

Added: packages/python-cssselect/trunk/debian/compat
===================================================================
--- packages/python-cssselect/trunk/debian/compat	                        (rev 0)
+++ packages/python-cssselect/trunk/debian/compat	2012-05-10 07:49:40 UTC (rev 21682)
@@ -0,0 +1 @@
+8

Added: packages/python-cssselect/trunk/debian/control
===================================================================
--- packages/python-cssselect/trunk/debian/control	                        (rev 0)
+++ packages/python-cssselect/trunk/debian/control	2012-05-10 07:49:40 UTC (rev 21682)
@@ -0,0 +1,25 @@
+Source: python-cssselect
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: TANIGUCHI Takaki <takaki at debian.org>
+Build-Depends: debhelper (>= 8)
+        ,python-all
+        ,python-support
+        ,python-setuptools
+Standards-Version: 3.9.3
+Homepage: http://pypi.python.org/pypi/cssselect
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-cssselect/trunk
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-cssselect/trunk/
+
+Package: python-cssselect
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Provides: ${python:Provides}
+Description: cssselect parses CSS3 Selectors and translates them to XPath 1.0
+ cssselect parses CSS3 Selectors and translate them to XPath 1.0 expressions.
+ Such expressions can be used in lxml or another XPath engine to find the
+ matching elements in an XML or HTML document.
+ .
+ This module used to live inside of lxml as lxml.cssselect before it was
+ extracted as a stand-alone project.

Added: packages/python-cssselect/trunk/debian/copyright
===================================================================
--- packages/python-cssselect/trunk/debian/copyright	                        (rev 0)
+++ packages/python-cssselect/trunk/debian/copyright	2012-05-10 07:49:40 UTC (rev 21682)
@@ -0,0 +1,36 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: python-cssselect
+Source: http://pypi.python.org/pypi/cssselect
+
+Files: *
+Copyright: 2007-2012 Ian Bicking and contributors
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2012 TANIGUCHI Takaki <takaki at debian.org>
+License: BSD-3-Clause
+
+License: BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ 2. 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.
+ 3. Neither the name of the University nor the names of its contributors
+    may be used to endorse or promote products derived from this software
+    without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.

Added: packages/python-cssselect/trunk/debian/docs
===================================================================
--- packages/python-cssselect/trunk/debian/docs	                        (rev 0)
+++ packages/python-cssselect/trunk/debian/docs	2012-05-10 07:49:40 UTC (rev 21682)
@@ -0,0 +1 @@
+README.rst

Added: packages/python-cssselect/trunk/debian/rules
===================================================================
--- packages/python-cssselect/trunk/debian/rules	                        (rev 0)
+++ packages/python-cssselect/trunk/debian/rules	2012-05-10 07:49:40 UTC (rev 21682)
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+%:
+	dh $@ --with python2


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

Added: packages/python-cssselect/trunk/debian/source/format
===================================================================
--- packages/python-cssselect/trunk/debian/source/format	                        (rev 0)
+++ packages/python-cssselect/trunk/debian/source/format	2012-05-10 07:49:40 UTC (rev 21682)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-cssselect/trunk/debian/source/options
===================================================================
--- packages/python-cssselect/trunk/debian/source/options	                        (rev 0)
+++ packages/python-cssselect/trunk/debian/source/options	2012-05-10 07:49:40 UTC (rev 21682)
@@ -0,0 +1 @@
+extend-diff-ignore = "^[^/]*[.]egg-info/"

Added: packages/python-cssselect/trunk/debian/watch
===================================================================
--- packages/python-cssselect/trunk/debian/watch	                        (rev 0)
+++ packages/python-cssselect/trunk/debian/watch	2012-05-10 07:49:40 UTC (rev 21682)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/c/cssselect/cssselect-(.*).tar.gz




More information about the Python-modules-commits mailing list