[DebianBRTeam-commits] r550 - in /unstable/firegpg: ./ trunk/ trunk/debian/ trunk/debian/changelog trunk/debian/compat trunk/debian/control trunk/debian/copyright trunk/debian/rules trunk/debian/watch

eriberto-guest at users.alioth.debian.org eriberto-guest at users.alioth.debian.org
Mon Nov 17 19:05:54 UTC 2008


Author: eriberto-guest
Date: Mon Nov 17 19:05:53 2008
New Revision: 550

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

Added:
    unstable/firegpg/
    unstable/firegpg/trunk/
    unstable/firegpg/trunk/debian/
    unstable/firegpg/trunk/debian/changelog
    unstable/firegpg/trunk/debian/compat
    unstable/firegpg/trunk/debian/control
    unstable/firegpg/trunk/debian/copyright
    unstable/firegpg/trunk/debian/rules   (with props)
    unstable/firegpg/trunk/debian/watch

Added: unstable/firegpg/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/unstable/firegpg/trunk/debian/changelog?rev=550&op=file
==============================================================================
--- unstable/firegpg/trunk/debian/changelog (added)
+++ unstable/firegpg/trunk/debian/changelog Mon Nov 17 19:05:53 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: unstable/firegpg/trunk/debian/compat
URL: http://svn.debian.org/wsvn/unstable/firegpg/trunk/debian/compat?rev=550&op=file
==============================================================================
--- unstable/firegpg/trunk/debian/compat (added)
+++ unstable/firegpg/trunk/debian/compat Mon Nov 17 19:05:53 2008
@@ -1,0 +1,1 @@
+7

Added: unstable/firegpg/trunk/debian/control
URL: http://svn.debian.org/wsvn/unstable/firegpg/trunk/debian/control?rev=550&op=file
==============================================================================
--- unstable/firegpg/trunk/debian/control (added)
+++ unstable/firegpg/trunk/debian/control Mon Nov 17 19:05:53 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: unstable/firegpg/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/unstable/firegpg/trunk/debian/copyright?rev=550&op=file
==============================================================================
--- unstable/firegpg/trunk/debian/copyright (added)
+++ unstable/firegpg/trunk/debian/copyright Mon Nov 17 19:05:53 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: unstable/firegpg/trunk/debian/rules
URL: http://svn.debian.org/wsvn/unstable/firegpg/trunk/debian/rules?rev=550&op=file
==============================================================================
--- unstable/firegpg/trunk/debian/rules (added)
+++ unstable/firegpg/trunk/debian/rules Mon Nov 17 19:05:53 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_clean -k
+	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: unstable/firegpg/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = 

Added: unstable/firegpg/trunk/debian/watch
URL: http://svn.debian.org/wsvn/unstable/firegpg/trunk/debian/watch?rev=550&op=file
==============================================================================
--- unstable/firegpg/trunk/debian/watch (added)
+++ unstable/firegpg/trunk/debian/watch Mon Nov 17 19:05:53 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