[Python-modules-commits] r2389 - in /packages/pyyaml/tags/3.05-1: ./ debian/ debian/changelog debian/compat debian/control debian/copyright debian/docs debian/examples debian/pyversions debian/rules debian/watch

kitterma-guest at users.alioth.debian.org kitterma-guest at users.alioth.debian.org
Mon May 14 11:54:33 UTC 2007


Author: kitterma-guest
Date: Mon May 14 11:54:33 2007
New Revision: 2389

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=2389
Log:
Tag for 3.05-1 release.

Added:
    packages/pyyaml/tags/3.05-1/
    packages/pyyaml/tags/3.05-1/debian/
    packages/pyyaml/tags/3.05-1/debian/changelog
    packages/pyyaml/tags/3.05-1/debian/compat
    packages/pyyaml/tags/3.05-1/debian/control
    packages/pyyaml/tags/3.05-1/debian/copyright
    packages/pyyaml/tags/3.05-1/debian/docs
    packages/pyyaml/tags/3.05-1/debian/examples
    packages/pyyaml/tags/3.05-1/debian/pyversions
    packages/pyyaml/tags/3.05-1/debian/rules   (with props)
    packages/pyyaml/tags/3.05-1/debian/watch

Added: packages/pyyaml/tags/3.05-1/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pyyaml/tags/3.05-1/debian/changelog?rev=2389&op=file
==============================================================================
--- packages/pyyaml/tags/3.05-1/debian/changelog (added)
+++ packages/pyyaml/tags/3.05-1/debian/changelog Mon May 14 11:54:33 2007
@@ -1,0 +1,26 @@
+pyyaml (3.05-1) unstable; urgency=low
+
+  [ Scott Kitterman ]
+  * New upstream version
+  * Removed obsolete patch and debian/patches
+  * debian/control:
+     - Added XS-Vcs-Svn field
+     - Remove build-dep on pacht-utils
+  * debian/rules:
+     - Comment out simple-patchsys
+
+  [ Piotr Ożarowski ]
+  * Added debian/watch file
+
+ -- Scott Kitterman <scott at kitterman.com>  Sun, 13 May 2007 22:38:17 -0400
+
+pyyaml (3.04-1) unstable; urgency=low
+
+  * Initial Debian package (Closes: #413720)
+  * Include upstream recommended patches from the development tree:
+    - fix loading an empty stream: changeset 233
+    - fix the !timestamp constructor: changeset 234
+    - fix an obscure issue with yaml_path_resolver: changeset 246
+
+ -- Scott Kitterman <scott at kitterman.com>  Wed,  4 Apr 2007 15:50:36 -0400
+

Added: packages/pyyaml/tags/3.05-1/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/pyyaml/tags/3.05-1/debian/compat?rev=2389&op=file
==============================================================================
--- packages/pyyaml/tags/3.05-1/debian/compat (added)
+++ packages/pyyaml/tags/3.05-1/debian/compat Mon May 14 11:54:33 2007
@@ -1,0 +1,2 @@
+5
+

Added: packages/pyyaml/tags/3.05-1/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/pyyaml/tags/3.05-1/debian/control?rev=2389&op=file
==============================================================================
--- packages/pyyaml/tags/3.05-1/debian/control (added)
+++ packages/pyyaml/tags/3.05-1/debian/control Mon May 14 11:54:33 2007
@@ -1,0 +1,19 @@
+Source: pyyaml
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org> 
+Uploaders: Scott Kitterman <scott at kitterman.com>
+Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5), python-all-dev (>=2.3.5-11), python-support (>= 0.5.3)
+XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyyaml/trunk/
+Standards-Version: 3.7.2
+
+Package: python-yaml
+Architecture: all
+Depends: ${python:Depends}
+Description: PyYAML is a YAML parser and emitter for Python
+ PyYAML is a complete YAML 1.1 parser and emitter for Python.  PyYAML can parse
+ all examples from the specification. The parsing algorithm is simple enough to
+ be a reference for YAML parser implementors. A simple extension API is also
+ provided.
+ .
+  Homepage: http://pyyaml.org/

Added: packages/pyyaml/tags/3.05-1/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/pyyaml/tags/3.05-1/debian/copyright?rev=2389&op=file
==============================================================================
--- packages/pyyaml/tags/3.05-1/debian/copyright (added)
+++ packages/pyyaml/tags/3.05-1/debian/copyright Mon May 14 11:54:33 2007
@@ -1,0 +1,32 @@
+This package was debianized by Scott Kitterman <scott at kitterman.com> on
+Fri, 09 Feb 2007 12:12:29 -0500.
+
+The maintainer is Debian Python Modules Team 
+<python-modules-team at lists.alioth.debian.org>
+
+It was downloaded from http://pyyaml.org/
+
+Copyright Holder: Copyright (c) 2006 Kirill Simonov <xi at resolvent.net>
+
+License:
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+The Debian packaging is (C) 2007, Scott Kitterman <scott at kitterman.com> and
+is licensed under the same terms as PyYAML, see above.

Added: packages/pyyaml/tags/3.05-1/debian/docs
URL: http://svn.debian.org/wsvn/python-modules/packages/pyyaml/tags/3.05-1/debian/docs?rev=2389&op=file
==============================================================================
--- packages/pyyaml/tags/3.05-1/debian/docs (added)
+++ packages/pyyaml/tags/3.05-1/debian/docs Mon May 14 11:54:33 2007
@@ -1,0 +1,1 @@
+README

Added: packages/pyyaml/tags/3.05-1/debian/examples
URL: http://svn.debian.org/wsvn/python-modules/packages/pyyaml/tags/3.05-1/debian/examples?rev=2389&op=file
==============================================================================
--- packages/pyyaml/tags/3.05-1/debian/examples (added)
+++ packages/pyyaml/tags/3.05-1/debian/examples Mon May 14 11:54:33 2007
@@ -1,0 +1,2 @@
+examples/*
+

Added: packages/pyyaml/tags/3.05-1/debian/pyversions
URL: http://svn.debian.org/wsvn/python-modules/packages/pyyaml/tags/3.05-1/debian/pyversions?rev=2389&op=file
==============================================================================
--- packages/pyyaml/tags/3.05-1/debian/pyversions (added)
+++ packages/pyyaml/tags/3.05-1/debian/pyversions Mon May 14 11:54:33 2007
@@ -1,0 +1,1 @@
+2.3-

Added: packages/pyyaml/tags/3.05-1/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pyyaml/tags/3.05-1/debian/rules?rev=2389&op=file
==============================================================================
--- packages/pyyaml/tags/3.05-1/debian/rules (added)
+++ packages/pyyaml/tags/3.05-1/debian/rules Mon May 14 11:54:33 2007
@@ -1,0 +1,8 @@
+#!/usr/bin/make -f
+# -*- mode: makefile; coding: utf-8 -*-
+
+DEB_PYTHON_SYSTEM=pysupport
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+#include /usr/share/cdbs/1/rules/simple-patchsys.mk

Propchange: packages/pyyaml/tags/3.05-1/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/pyyaml/tags/3.05-1/debian/watch
URL: http://svn.debian.org/wsvn/python-modules/packages/pyyaml/tags/3.05-1/debian/watch?rev=2389&op=file
==============================================================================
--- packages/pyyaml/tags/3.05-1/debian/watch (added)
+++ packages/pyyaml/tags/3.05-1/debian/watch Mon May 14 11:54:33 2007
@@ -1,0 +1,3 @@
+version=3
+http://pyyaml.org/download/pyyaml/PyYAML-(.*)\.tar\.gz debian uupdate
+




More information about the Python-modules-commits mailing list