[Python-modules-commits] r1879 - in /packages/twistedsnmp: ./ branches/ tags/ trunk/ trunk/debian/

zack at users.alioth.debian.org zack at users.alioth.debian.org
Thu Mar 15 12:08:55 CET 2007


Author: zack
Date: Thu Mar 15 11:08:55 2007
New Revision: 1879

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1879
Log:
first check-in of python-twistedsnmp

Added:
    packages/twistedsnmp/   (with props)
    packages/twistedsnmp/branches/
    packages/twistedsnmp/tags/
    packages/twistedsnmp/trunk/
    packages/twistedsnmp/trunk/debian/   (with props)
    packages/twistedsnmp/trunk/debian/TODO.Debian
    packages/twistedsnmp/trunk/debian/changelog
    packages/twistedsnmp/trunk/debian/compat
    packages/twistedsnmp/trunk/debian/control
    packages/twistedsnmp/trunk/debian/copyright
    packages/twistedsnmp/trunk/debian/python-twistedsnmp.docs
    packages/twistedsnmp/trunk/debian/rules   (with props)
    packages/twistedsnmp/trunk/debian/watch

Propchange: packages/twistedsnmp/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Mar 15 11:08:55 2007
@@ -1,0 +1,2 @@
+build-area
+tarballs

Propchange: packages/twistedsnmp/trunk/debian/
------------------------------------------------------------------------------
    mergeWithUpstream = 1

Added: packages/twistedsnmp/trunk/debian/TODO.Debian
URL: http://svn.debian.org/wsvn/python-modules/packages/twistedsnmp/trunk/debian/TODO.Debian?rev=1879&op=file
==============================================================================
--- packages/twistedsnmp/trunk/debian/TODO.Debian (added)
+++ packages/twistedsnmp/trunk/debian/TODO.Debian Thu Mar 15 11:08:55 2007
@@ -1,0 +1,1 @@
+generate API documentation (see doc/pydoc) and ship it into the package

Added: packages/twistedsnmp/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/twistedsnmp/trunk/debian/changelog?rev=1879&op=file
==============================================================================
--- packages/twistedsnmp/trunk/debian/changelog (added)
+++ packages/twistedsnmp/trunk/debian/changelog Thu Mar 15 11:08:55 2007
@@ -1,0 +1,6 @@
+twistedsnmp (0.3.13-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #414988)
+
+ -- Stefano Zacchiroli <zack at debian.org>  Thu, 15 Mar 2007 11:33:04 +0100
+

Added: packages/twistedsnmp/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/twistedsnmp/trunk/debian/compat?rev=1879&op=file
==============================================================================
--- packages/twistedsnmp/trunk/debian/compat (added)
+++ packages/twistedsnmp/trunk/debian/compat Thu Mar 15 11:08:55 2007
@@ -1,0 +1,1 @@
+5

Added: packages/twistedsnmp/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/twistedsnmp/trunk/debian/control?rev=1879&op=file
==============================================================================
--- packages/twistedsnmp/trunk/debian/control (added)
+++ packages/twistedsnmp/trunk/debian/control Thu Mar 15 11:08:55 2007
@@ -1,0 +1,33 @@
+Source: twistedsnmp
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Stefano Zacchiroli <zack at debian.org>
+Build-Depends: debhelper (>= 5), cdbs, python, python-support (>= 0.3)
+Build-Depends-Indep: python-twisted-core, python-pysnmp4
+XS-Python-Version: all
+XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/twistedsnmp/trunk/
+XS-Vcs-Browser: http://svn.debian.org/wsvn/python-modules/trunk/packages/twistedsnmp/trunk/
+Standards-Version: 3.7.2
+
+Package: python-twistedsnmp
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-twisted-core, python-pysnmp4
+Description: SNMP implementation for the Twisted networking framework
+ TwistedSNMP is a set of SNMP (Simple Network Management Protocol)
+ protocol implementations for Python's Twisted Matrix networking framework
+ using the PySNMP project.
+ .
+ It provides the following:
+  * get, set, getnext and getbulk Manager-side queries
+  * get, set, getnext and getbulk Agent-side services
+ .
+ Eventual goals of the system:
+  * provide access to all v1 and v2 SNMP functionality for writing Agent
+    and Manager services
+  * provide convenient testing mechanisms for SNMP Agent/Manager
+    development (e.g. mirroring an SNMP Agent's OID tree for local query
+    testing)
+ .
+  Homepage: http://twistedsnmp.sourceforge.net/
+

Added: packages/twistedsnmp/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/twistedsnmp/trunk/debian/copyright?rev=1879&op=file
==============================================================================
--- packages/twistedsnmp/trunk/debian/copyright (added)
+++ packages/twistedsnmp/trunk/debian/copyright Thu Mar 15 11:08:55 2007
@@ -1,0 +1,16 @@
+This package was debianized by Stefano Zacchiroli <zack at debian.org> on
+Thu, 15 Mar 2007 11:33:04 +0100.
+
+It was downloaded from https://sourceforge.net/projects/twistedsnmp/
+
+Upstream Authors:
+  Michael C. Fletcher <mcfletch at users.sourceforge.net>
+  Patrick K. O'Brien
+
+Copyright: Copyright (c) 2003-2005, Michael C. Fletcher, Patrick K. O'Brien
+
+License:
+
+ TwistedSNMP is licensed under the (3-clause) BSD license, see
+ `/usr/share/common-licenses/BSD'.
+

Added: packages/twistedsnmp/trunk/debian/python-twistedsnmp.docs
URL: http://svn.debian.org/wsvn/python-modules/packages/twistedsnmp/trunk/debian/python-twistedsnmp.docs?rev=1879&op=file
==============================================================================
--- packages/twistedsnmp/trunk/debian/python-twistedsnmp.docs (added)
+++ packages/twistedsnmp/trunk/debian/python-twistedsnmp.docs Thu Mar 15 11:08:55 2007
@@ -1,0 +1,1 @@
+doc/

Added: packages/twistedsnmp/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/twistedsnmp/trunk/debian/rules?rev=1879&op=file
==============================================================================
--- packages/twistedsnmp/trunk/debian/rules (added)
+++ packages/twistedsnmp/trunk/debian/rules Thu Mar 15 11:08:55 2007
@@ -1,0 +1,5 @@
+#!/usr/bin/make -f
+DEB_PYTHON_SYSTEM = pysupport
+DEB_INSTALL_DOCS_python-twistedsnmp = -Xpydoc
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk

Propchange: packages/twistedsnmp/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/twistedsnmp/trunk/debian/watch
URL: http://svn.debian.org/wsvn/python-modules/packages/twistedsnmp/trunk/debian/watch?rev=1879&op=file
==============================================================================
--- packages/twistedsnmp/trunk/debian/watch (added)
+++ packages/twistedsnmp/trunk/debian/watch Thu Mar 15 11:08:55 2007
@@ -1,0 +1,8 @@
+# See uscan(1) for format
+
+# Compulsory line, this is a version 3 file
+version=3
+
+# Uncomment to find new files on sourceforge, for debscripts >= 2.9
+http://sf.net/twistedsnmp/TwistedSNMP-(.*)\.tar\.gz
+




More information about the Python-modules-commits mailing list