[Python-modules-commits] r5211 - in packages/python-pytils/trunk (8 files)
dottedmag-guest at users.alioth.debian.org
dottedmag-guest at users.alioth.debian.org
Thu May 1 16:24:34 UTC 2008
Date: Thursday, May 1, 2008 @ 16:24:33
Author: dottedmag-guest
Revision: 5211
[svn-inject] Applying Debian modifications to trunk
Added:
packages/python-pytils/trunk/debian/
packages/python-pytils/trunk/debian/changelog
packages/python-pytils/trunk/debian/compat
packages/python-pytils/trunk/debian/control
packages/python-pytils/trunk/debian/copyright
packages/python-pytils/trunk/debian/docs
packages/python-pytils/trunk/debian/examples
packages/python-pytils/trunk/debian/rules
Property changes on: packages/python-pytils/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: packages/python-pytils/trunk/debian/changelog
===================================================================
--- packages/python-pytils/trunk/debian/changelog (rev 0)
+++ packages/python-pytils/trunk/debian/changelog 2008-05-01 16:24:33 UTC (rev 5211)
@@ -0,0 +1,20 @@
+python-pytils (0.2.2-1) unstable; urgency=low
+
+ * New upstream release
+ * Upstream changelog installed as well.
+ * debian/copyright updated
+
+ -- Mikhail Gusarov <dottedmag at dottedmag.net> Thu, 12 Jul 2007 21:29:39 +0700
+
+python-pytils (0.2.1-1) unstable; urgency=low
+
+ * New upstream release.
+ * debian/copyright updated to match clause in source code.
+
+ -- Mikhail Gusarov <dottedmag at dottedmag.net> Tue, 27 Feb 2007 22:14:35 +0600
+
+python-pytils (0.2.0-1) unstable; urgency=low
+
+ * Initial release (Closes: #405175)
+
+ -- Mikhail Gusarov <dottedmag at dottedmag.net> Mon, 1 Jan 2007 16:03:10 +0600
Added: packages/python-pytils/trunk/debian/compat
===================================================================
--- packages/python-pytils/trunk/debian/compat (rev 0)
+++ packages/python-pytils/trunk/debian/compat 2008-05-01 16:24:33 UTC (rev 5211)
@@ -0,0 +1 @@
+5
Added: packages/python-pytils/trunk/debian/control
===================================================================
--- packages/python-pytils/trunk/debian/control (rev 0)
+++ packages/python-pytils/trunk/debian/control 2008-05-01 16:24:33 UTC (rev 5211)
@@ -0,0 +1,22 @@
+Source: python-pytils
+Section: python
+Priority: optional
+Maintainer: Mikhail Gusarov <dottedmag at dottedmag.net>
+Build-Depends: debhelper (>= 5.0.38), python-all-dev (>= 2.3.5-11)
+Build-Depends-Indep: python-central (>= 0.5.6)
+Standards-Version: 3.7.2
+XS-Python-Version: all
+
+Package: python-pytils
+Architecture: all
+Depends: ${python:Depends}
+XB-Python-Version: ${python:Versions}
+Description: Python library for processing strings in Russian
+ pytils contains several tools for processing strings in Russian:
+ .
+ * choosing plural forms
+ * in-words numerals representation
+ * formatting dates in different styles
+ * transliteration
+ .
+ Homepage: http://gorod-omsk.ru/blog/pythy/projects/pytils/
Added: packages/python-pytils/trunk/debian/copyright
===================================================================
--- packages/python-pytils/trunk/debian/copyright (rev 0)
+++ packages/python-pytils/trunk/debian/copyright 2008-05-01 16:24:33 UTC (rev 5211)
@@ -0,0 +1,27 @@
+This package was first debianized by Mikhail Gusarov <dottedmag at dottedmag.net> on
+Mon, 1 Jan 2007 16:03:10 +0600
+
+It was downloaded from http://cheeseshop.python.org/pypi/pytils/
+
+Copyright Holders: Yury Yurevich <the.pythy at gmail.com>
+
+License:
+
+ Copyright (C) 2006-2007 Yuri Yurevich <the.pythy at gmail.com>
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation; either version 2
+ of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in /usr/share/common-licenses/GPL-2 file.
Added: packages/python-pytils/trunk/debian/docs
===================================================================
--- packages/python-pytils/trunk/debian/docs (rev 0)
+++ packages/python-pytils/trunk/debian/docs 2008-05-01 16:24:33 UTC (rev 5211)
@@ -0,0 +1,4 @@
+TODO
+doc/README.rus.txt
+doc/WEBFRAMEWORKS.rus.txt
+doc/api
Added: packages/python-pytils/trunk/debian/examples
===================================================================
--- packages/python-pytils/trunk/debian/examples (rev 0)
+++ packages/python-pytils/trunk/debian/examples 2008-05-01 16:24:33 UTC (rev 5211)
@@ -0,0 +1,3 @@
+doc/examples/*
+doc/examples-django
+doc/examples-turbogears
Added: packages/python-pytils/trunk/debian/rules
===================================================================
--- packages/python-pytils/trunk/debian/rules (rev 0)
+++ packages/python-pytils/trunk/debian/rules 2008-05-01 16:24:33 UTC (rev 5211)
@@ -0,0 +1,44 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+PACKAGE_NAME=python-pytils
+
+build:
+
+clean:
+ dh_testdir
+ dh_testroot
+
+ python setup.py clean
+ find . -name '*.py[co]' -delete
+ rm -rf build
+ rm -f build-stamp
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+
+ python setup.py install --no-compile --root $(CURDIR)/debian/$(PACKAGE_NAME)
+ rm -rf debian/$(PACKAGE_NAME)/usr/lib/python*/site-packages/*.egg-info
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs Changelog
+ dh_installdocs
+ dh_installexamples
+ dh_pycentral
+ dh_compress -X.py
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
Property changes on: packages/python-pytils/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
More information about the Python-modules-commits
mailing list