[Python-modules-commits] r19623 - in packages/python-seenthis/trunk (15 files)
mezgani-guest at users.alioth.debian.org
mezgani-guest at users.alioth.debian.org
Tue Dec 13 14:24:08 UTC 2011
Date: Tuesday, December 13, 2011 @ 14:24:06
Author: mezgani-guest
Revision: 19623
[svn-inject] Applying Debian modifications (0.1-1) to trunk
Added:
packages/python-seenthis/trunk/debian/
packages/python-seenthis/trunk/debian/README.Debian
packages/python-seenthis/trunk/debian/changelog
packages/python-seenthis/trunk/debian/compat
packages/python-seenthis/trunk/debian/control
packages/python-seenthis/trunk/debian/copyright
packages/python-seenthis/trunk/debian/docs
packages/python-seenthis/trunk/debian/patches/
packages/python-seenthis/trunk/debian/patches/01_change.diff
packages/python-seenthis/trunk/debian/patches/01_import.diff
packages/python-seenthis/trunk/debian/patches/01_setup.diff
packages/python-seenthis/trunk/debian/patches/series
packages/python-seenthis/trunk/debian/rules
packages/python-seenthis/trunk/debian/source/
packages/python-seenthis/trunk/debian/source/format
Property changes on: packages/python-seenthis/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/python-seenthis/trunk/debian/README.Debian
===================================================================
--- packages/python-seenthis/trunk/debian/README.Debian (rev 0)
+++ packages/python-seenthis/trunk/debian/README.Debian 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1,63 @@
+python-seenthis for Debian
+--------------------------
+
+This module, currently in a preliminar stage, allows to make requests
+to the short-blogging service SeenThis <http://seenthis.net/> from
+Python.
+
+Copyright (c) 2011 by Stephane Bortzmeyer
+free software, see LICENSE file for details
+
+*** Install ***
+
+1) Short method
+
+# python setup.py install
+
+2) Long method, if the above does not work or if you want to know more
+
+This module uses "distribute", which should be compatible with
+"setuptools". If it is not present, it is automatically
+downloaded. Same thing for the required modules, which are searched on
+PyPi and installed. If you prefer to use local versions, be sure to
+install them before running setup.py. Given the awful state of Python
+packaging tools (see "Python packaging" by Tarek Ziade in
+"Architecture of Open Source Software", Greg Wilson and Amy Brown
+<http://www.aosabook.org/en/index.html>), you'll probably have to do
+many things by hand. This module requires:
+
+* SimpleTAL <http://www.owlfish.com/software/simpleTAL/>
+* FeedParser <http://code.google.com/p/feedparser/> At least version 5 because of
+ <http://code.google.com/p/feedparser/issues/detail?id=91>
+
+ OS-specific notes:
+
+ Debian: install packages "python-setuptools python-simpletal
+ python-feedparser" before running setup.py and you'll benefit from
+ Debian packaging for most of the modules.
+
+ Gentoo: TODO
+
+ *** Usage ***
+
+ Examples of use are the scripts seenthis-backup.py (to backup all your
+ seens) and seenthis-post.py (to post a message).
+
+ Both need a file storing SeenThis authentication info. The file must
+ be named $HOME/.seenthis/auth and contain two lines, one for the user
+ name and one for the password.
+
+ *** API ***
+
+ The SeenThis API is documented (in French only) in
+ <http://seenthis.net/fran%C3%A7ais/mentions/article/api>
+
+ *** Author ***
+
+ You can always write me at stephane+seenthis at bortzmeyer.org
+ My account on SeenThis is "bortzmeyer"
+ <http://seenthis.net/people/st%C3%A9phane-bortzmeyer>
+
+ With patches from Valentin Lorentz <https://github.com/ProgVal/python-seenthis>
+
+ -- Mezgani Ali <mezgani at nativelabs.org> Sun, 11 Dec 2011 19:56:04 +0000
Added: packages/python-seenthis/trunk/debian/changelog
===================================================================
--- packages/python-seenthis/trunk/debian/changelog (rev 0)
+++ packages/python-seenthis/trunk/debian/changelog 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1,5 @@
+python-seenthis (0.1-1) unstable; urgency=low
+
+ * Initial release (Closes: #651745)
+
+ -- Mezgani Ali <mezgani at nativelabs.org> Sun, 11 Dec 2011 19:56:04 +0000
Added: packages/python-seenthis/trunk/debian/compat
===================================================================
--- packages/python-seenthis/trunk/debian/compat (rev 0)
+++ packages/python-seenthis/trunk/debian/compat 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1 @@
+8
Added: packages/python-seenthis/trunk/debian/control
===================================================================
--- packages/python-seenthis/trunk/debian/control (rev 0)
+++ packages/python-seenthis/trunk/debian/control 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1,21 @@
+Source: python-seenthis
+Section: python
+Priority: optional
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Maintainer: Mezgani Ali <mezgani at nativelabs.org>
+Standards-Version: 3.9.2
+Homepage: https://github.com/bortzmeyer/seenthis-python
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-seenthis/trunk
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-seenthis/trunk/
+Build-Depends: debhelper (>= 8.0.0), python-support, python-simpletal, python-feedparser, quilt (>= 0.46-7)
+XB-Python-Version: ${python:Versions}
+#Vcs-Git: git://git.debian.org/collab-maint/python-seenthis.git
+#Vcs-Browser: http://git.debian.org/?p=collab-maint/python-seenthis.git;a=summary
+
+Package: python-seenthis
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Provides: ${python:Provides}
+Description: Allows to make requests to the short-blogging
+ service SeenThis <http://seenthis.net/> from Python.
+
Added: packages/python-seenthis/trunk/debian/copyright
===================================================================
--- packages/python-seenthis/trunk/debian/copyright (rev 0)
+++ packages/python-seenthis/trunk/debian/copyright 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1,39 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: python-seenthis
+Source: https://github.com/bortzmeyer/python-seenthis
+
+Files: *
+Copyright: 2011 Stephane Bortzmeyer <stephane+seenthis at bortzmeyer.org>
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2011 Mezgani Ali <mezgani at nativelabs.org>
+License: BSD-3-Clause
+
+License: BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of the University nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
Added: packages/python-seenthis/trunk/debian/docs
===================================================================
--- packages/python-seenthis/trunk/debian/docs (rev 0)
+++ packages/python-seenthis/trunk/debian/docs 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1 @@
+README
Added: packages/python-seenthis/trunk/debian/patches/01_change.diff
===================================================================
--- packages/python-seenthis/trunk/debian/patches/01_change.diff (rev 0)
+++ packages/python-seenthis/trunk/debian/patches/01_change.diff 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1,36 @@
+Description: <short summary of the patch>
+ TODO: Put a short summary on the line above and replace this paragraph
+ with a longer explanation of this change. Complete the meta-information
+ with other relevant fields (see below for details). To make it easier, the
+ information below has been extracted from the changelog. Adjust it or drop
+ it.
+ .
+ python-seenthis (0.1-1) unstable; urgency=low
+ .
+ * Initial release (Closes: #651745)
+Author: Mezgani Ali <mezgani at nativelabs.org>
+Bug-Debian: http://bugs.debian.org/651745
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- python-seenthis-0.1.orig/FeedParserPlus.py
++++ python-seenthis-0.1/FeedParserPlus.py
+@@ -9,7 +9,6 @@ except ImportError:
+ try:
+ import feedparser
+ except ImportError:
+- import sys
+ print >>sys.stderr, "I need the module feedparser, see <http://www.feedparser.org/>"
+ sys.exit(1)
+
Added: packages/python-seenthis/trunk/debian/patches/01_import.diff
===================================================================
--- packages/python-seenthis/trunk/debian/patches/01_import.diff (rev 0)
+++ packages/python-seenthis/trunk/debian/patches/01_import.diff 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1,8 @@
+--- python-seenthis-0.1/FeedParserPlus.py.1 2011-12-12 20:07:53.000000000 +0000
++++ python-seenthis-0.1/FeedParserPlus.py 2011-12-12 20:08:05.000000000 +0000
+@@ -1,3 +1,5 @@
++import sys
++
+ try:
+ from simpletal import simpleTAL, simpleTALES, simpleTALUtils
+ except ImportError:
Added: packages/python-seenthis/trunk/debian/patches/01_setup.diff
===================================================================
--- packages/python-seenthis/trunk/debian/patches/01_setup.diff (rev 0)
+++ packages/python-seenthis/trunk/debian/patches/01_setup.diff 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1,13 @@
+--- python-seenthis-0.1/setup.py.1 2011-12-12 21:59:05.000000000 +0000
++++ python-seenthis-0.1/setup.py 2011-12-12 21:57:41.000000000 +0000
+@@ -1,8 +1,8 @@
+ #!/usr/bin/env python
+
+ # distribute
+-from distribute_setup import use_setuptools
+-use_setuptools()
++# from distribute_setup import use_setuptools
++# use_setuptools()
+ from setuptools import setup
+
+ # distutils
Added: packages/python-seenthis/trunk/debian/patches/series
===================================================================
--- packages/python-seenthis/trunk/debian/patches/series (rev 0)
+++ packages/python-seenthis/trunk/debian/patches/series 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1,3 @@
+01_import.diff
+01_setup.diff
+01_change.diff
Added: packages/python-seenthis/trunk/debian/rules
===================================================================
--- packages/python-seenthis/trunk/debian/rules (rev 0)
+++ packages/python-seenthis/trunk/debian/rules 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@
+
Property changes on: packages/python-seenthis/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/python-seenthis/trunk/debian/source/format
===================================================================
--- packages/python-seenthis/trunk/debian/source/format (rev 0)
+++ packages/python-seenthis/trunk/debian/source/format 2011-12-13 14:24:06 UTC (rev 19623)
@@ -0,0 +1 @@
+3.0 (quilt)
More information about the Python-modules-commits
mailing list