[Python-modules-commits] r17698 - in packages/python-logging-extra/trunk (9 files)

davidvilla-guest at users.alioth.debian.org davidvilla-guest at users.alioth.debian.org
Thu Jun 30 21:51:17 UTC 2011


    Date: Thursday, June 30, 2011 @ 21:51:15
  Author: davidvilla-guest
Revision: 17698

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

Added:
  packages/python-logging-extra/trunk/debian/
  packages/python-logging-extra/trunk/debian/changelog
  packages/python-logging-extra/trunk/debian/compat
  packages/python-logging-extra/trunk/debian/control
  packages/python-logging-extra/trunk/debian/copyright
  packages/python-logging-extra/trunk/debian/docs
  packages/python-logging-extra/trunk/debian/rules
  packages/python-logging-extra/trunk/debian/source/
  packages/python-logging-extra/trunk/debian/source/format


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

Added: packages/python-logging-extra/trunk/debian/changelog
===================================================================
--- packages/python-logging-extra/trunk/debian/changelog	                        (rev 0)
+++ packages/python-logging-extra/trunk/debian/changelog	2011-06-30 21:51:15 UTC (rev 17698)
@@ -0,0 +1,19 @@
+python-logging-extra (0.1.3-1) unstable; urgency=low
+
+  * Minimal bugfix
+  * New upstream release.
+  * Delete python:Breaks variable at debian/control.
+
+ -- David Villa Alises <David.Villa at uclm.es>  Sat, 19 Mar 2011 03:54:37 +0100
+
+python-logging-extra (0.1.2-1) unstable; urgency=low
+
+  * New CapitalLoggingFormatter
+
+ -- David Villa Alises <David.Villa at uclm.es>  Tue, 08 Mar 2011 02:10:46 +0100
+
+python-logging-extra (0.1.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #613217)
+
+ -- David Villa Alises <David.Villa at uclm.es>  Fri, 18 Feb 2011 20:16:23 +0100

Added: packages/python-logging-extra/trunk/debian/compat
===================================================================
--- packages/python-logging-extra/trunk/debian/compat	                        (rev 0)
+++ packages/python-logging-extra/trunk/debian/compat	2011-06-30 21:51:15 UTC (rev 17698)
@@ -0,0 +1 @@
+7

Added: packages/python-logging-extra/trunk/debian/control
===================================================================
--- packages/python-logging-extra/trunk/debian/control	                        (rev 0)
+++ packages/python-logging-extra/trunk/debian/control	2011-06-30 21:51:15 UTC (rev 17698)
@@ -0,0 +1,18 @@
+Source: python-logging-extra
+Section: python
+Priority: extra
+Maintainer: David Villa Alises <David.Villa at uclm.es>
+Uploaders: Cleto Martin Angelina <cleto.martin at gmail.com>, Francisco Moya
+ <paco at debian.org>
+Build-Depends: debhelper (>= 7.0.50~), python (>= 2.6.6-3)
+Standards-Version: 3.9.1
+X-Python-Version: >= 2.5
+Homepage: http://arco.esi.uclm.es/svn/public/prj/python-logging-extra
+
+Package: python-loggingx
+Architecture: all
+Depends:  ${python:Depends}, ${misc:Depends}, python-notify, python-xmpp
+Description: Generic utilities for the Python logging facility.
+ That includes logging handlers for authenticated SMTP (with TSL),
+ jabber XMPP and desktop notifications. It has also some additional
+ formaters: ColorFormatter, etc.

Added: packages/python-logging-extra/trunk/debian/copyright
===================================================================
--- packages/python-logging-extra/trunk/debian/copyright	                        (rev 0)
+++ packages/python-logging-extra/trunk/debian/copyright	2011-06-30 21:51:15 UTC (rev 17698)
@@ -0,0 +1,41 @@
+This work was packaged for Debian by:
+
+    David Villa Alises <david.villa at uclm.es> on Mon, 14 Dec 2009 11:45:26 +0100
+
+It was downloaded from:
+
+    http://arco.esi.uclm.es/svn/public/prj/python-logging-extra
+
+Upstream Author:
+
+    arco.devel at arco.esi.uclm.es
+
+
+Copyright:
+
+    Copyright (C) 2011 ARCO Research Group
+
+
+License:
+
+    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 3 of the License, or
+    (at your option) any later version.
+
+    This package 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, see <http://www.gnu.org/licenses/>.
+
+On Debian systems, the complete text of the GNU General
+Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+The Debian packaging is:
+
+    Copyright (C) 2011 ARCO Research Group <arco.devel at arco.esi.uclm.es>
+
+and is licensed under the GPL version 3, see above.

Added: packages/python-logging-extra/trunk/debian/docs
===================================================================
Added: packages/python-logging-extra/trunk/debian/rules
===================================================================
--- packages/python-logging-extra/trunk/debian/rules	                        (rev 0)
+++ packages/python-logging-extra/trunk/debian/rules	2011-06-30 21:51:15 UTC (rev 17698)
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+VERSION=0.1.3
+
+%:
+	dh $@ --with=python2
+
+
+build-orig:
+	mkdir -p python-logging-extra-$(VERSION)
+	tar --exclude=debian --exclude=\*~ --exclude=.svn --exclude=\*.pyc \
+		--exclude=python-logging-extra-$(VERSION) -cf - . \
+		| ( cd python-logging-extra-$(VERSION) && tar xf - )
+	tar -czf ../tarballs/python-logging-extra_$(VERSION).orig.tar.gz python-logging-extra-$(VERSION)
+	$(RM) -r python-logging-extra-$(VERSION)


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

Added: packages/python-logging-extra/trunk/debian/source/format
===================================================================
--- packages/python-logging-extra/trunk/debian/source/format	                        (rev 0)
+++ packages/python-logging-extra/trunk/debian/source/format	2011-06-30 21:51:15 UTC (rev 17698)
@@ -0,0 +1 @@
+3.0 (quilt)
\ No newline at end of file




More information about the Python-modules-commits mailing list