[DebianBRTeam-commits] r551 - in /packages/python-iniparse/trunk/debian: changelog compat control copyright rules watch

eriberto-guest at users.alioth.debian.org eriberto-guest at users.alioth.debian.org
Sat Nov 22 22:25:00 UTC 2008


Author: eriberto-guest
Date: Sat Nov 22 22:25:00 2008
New Revision: 551

URL: http://svn.debian.org/wsvn/?sc=1&rev=551
Log:
Initial upload.

Added:
    packages/python-iniparse/trunk/debian/changelog
    packages/python-iniparse/trunk/debian/compat
    packages/python-iniparse/trunk/debian/control
    packages/python-iniparse/trunk/debian/copyright
    packages/python-iniparse/trunk/debian/rules   (with props)
    packages/python-iniparse/trunk/debian/watch

Added: packages/python-iniparse/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/packages/python-iniparse/trunk/debian/changelog?rev=551&op=file
==============================================================================
--- packages/python-iniparse/trunk/debian/changelog (added)
+++ packages/python-iniparse/trunk/debian/changelog Sat Nov 22 22:25:00 2008
@@ -1,0 +1,5 @@
+python-iniparse (0.2.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #506011)
+
+ -- Joao Eriberto Mota Filho <eriberto at eriberto.pro.br>  Fri, 14 Nov 2008 08:32:24 -0200

Added: packages/python-iniparse/trunk/debian/compat
URL: http://svn.debian.org/wsvn/packages/python-iniparse/trunk/debian/compat?rev=551&op=file
==============================================================================
--- packages/python-iniparse/trunk/debian/compat (added)
+++ packages/python-iniparse/trunk/debian/compat Sat Nov 22 22:25:00 2008
@@ -1,0 +1,1 @@
+7

Added: packages/python-iniparse/trunk/debian/control
URL: http://svn.debian.org/wsvn/packages/python-iniparse/trunk/debian/control?rev=551&op=file
==============================================================================
--- packages/python-iniparse/trunk/debian/control (added)
+++ packages/python-iniparse/trunk/debian/control Sat Nov 22 22:25:00 2008
@@ -1,0 +1,22 @@
+Source: python-iniparse
+Section: python
+Priority: optional
+Maintainer: Joao Eriberto Mota Filho <eriberto at eriberto.pro.br>
+Build-Depends: debhelper (>= 7), python
+Build-Depends-Indep: python-support
+Standards-Version: 3.8.0
+Homepage: http://code.google.com/p/iniparse
+Vcs-Svn: svn://svn.debian.org/svn/debian-br-team/packages/python-iniparse
+Vcs-Browser: http://svn.debian.org/wsvn/debian-br-team/packages/python-iniparse
+
+Package: python-iniparse
+Architecture: all
+Depends: ${python:Depends}
+XB-Python-Version: ${python:Versions}
+Description: module to access and modify configuration data in ini files
+ iniparse is an INI parser for Python which is API compatible with the
+ standard library's ConfigParser. It preserves structure of INI files
+ (order of sections & options, indentation, comments and blank lines
+ are preserved when data is updated).
+ .
+ Usage examples: http://code.google.com/p/iniparse/wiki/UsageExamples

Added: packages/python-iniparse/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/packages/python-iniparse/trunk/debian/copyright?rev=551&op=file
==============================================================================
--- packages/python-iniparse/trunk/debian/copyright (added)
+++ packages/python-iniparse/trunk/debian/copyright Sat Nov 22 22:25:00 2008
@@ -1,0 +1,34 @@
+This package was debianized by Joao Eriberto Mota Filho
+<eriberto at eriberto.pro.br> on Fri, 14 Nov 2008 08:32:24 -0200.
+
+It was downloaded from http://code.google.com/p/iniparse
+
+Upstream Author: Paramjit Oberoi <param.cs.wisc.edu>
+
+Copyright: (C) 2004-2007 Paramjit Oberoi
+
+License:
+
+    The MIT 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 copyright 2008, Joao Eriberto Mota Filho
+<eriberto at eriberto.pro.br> and is licensed under the GPL 2 or later.
+Please, see directory `/usr/share/common-licenses/'.

Added: packages/python-iniparse/trunk/debian/rules
URL: http://svn.debian.org/wsvn/packages/python-iniparse/trunk/debian/rules?rev=551&op=file
==============================================================================
--- packages/python-iniparse/trunk/debian/rules (added)
+++ packages/python-iniparse/trunk/debian/rules Sat Nov 22 22:25:00 2008
@@ -1,0 +1,44 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PROG_NAME=iniparse
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	python setup.py build
+	touch build-stamp $(PROG_NAME)/__init__.py
+
+clean:
+	dh_testdir
+	dh_testroot
+	python setup.py clean --all
+	find $(CURDIR) -name \*.pyc -exec rm -f {} \;
+	find $(CURDIR) -name \*.pyo -exec rm -f {} \;
+	rm -f build-stamp $(PROG_NAME)/__init__.py
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_prep
+	python setup.py install --root=debian/python-$(PROG_NAME)
+	rm -rf debian/python-$(PROG_NAME)/usr/share/doc/$(PROG_NAME)-*
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installchangelogs
+	dh_compress
+	dh_fixperms
+	dh_pysupport
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep
+.PHONY: build clean binary-indep binary-arch binary install

Propchange: packages/python-iniparse/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = 

Added: packages/python-iniparse/trunk/debian/watch
URL: http://svn.debian.org/wsvn/packages/python-iniparse/trunk/debian/watch?rev=551&op=file
==============================================================================
--- packages/python-iniparse/trunk/debian/watch (added)
+++ packages/python-iniparse/trunk/debian/watch Sat Nov 22 22:25:00 2008
@@ -1,0 +1,3 @@
+version=3
+http://code.google.com/p/iniparse/downloads/list \
+ http://iniparse\.googlecode\.com/files/iniparse-(.*)\.tar\.gz




More information about the debian-br-team-commits mailing list