r2031 - in bobo/trunk (4 files)

kobold at users.alioth.debian.org kobold at users.alioth.debian.org
Thu Jan 21 08:24:47 UTC 2010


    Date: Thursday, January 21, 2010 @ 08:24:45
  Author: kobold
Revision: 2031

preparing the release

Modified:
  bobo/trunk/debian/changelog
  bobo/trunk/debian/control
  bobo/trunk/debian/copyright
Deleted:
  bobo/trunk/setup.py

Modified: bobo/trunk/debian/changelog
===================================================================
--- bobo/trunk/debian/changelog	2010-01-14 18:52:32 UTC (rev 2030)
+++ bobo/trunk/debian/changelog	2010-01-21 08:24:45 UTC (rev 2031)
@@ -1,4 +1,4 @@
-bobo (0.2.1-1) unstable; urgency=low
+bobo (0.2.2-1) unstable; urgency=low
 
   * Initial Packaging.
 

Modified: bobo/trunk/debian/control
===================================================================
--- bobo/trunk/debian/control	2010-01-14 18:52:32 UTC (rev 2030)
+++ bobo/trunk/debian/control	2010-01-21 08:24:45 UTC (rev 2031)
@@ -1,10 +1,11 @@
 Source: bobo
-Section: zope
+Section: python
 Priority: optional
 Maintainer: Debian/Ubuntu Zope Team <pkg-zope-developers at lists.alioth.debian.org>
-Uploaders: Brian Sutherland <brian at vanguardistas.net>
+Uploaders: Brian Sutherland <brian at vanguardistas.net>, Fabio Tranchitella <kobold at debian.org>
 Build-Depends: debhelper (>= 7), python-all-dev (>= 2.3.5-11), python-central (>= 0.5.6), python-setuptools (>= 0.6b3), python-van.pydeb (>= 1.3.0-4)
 Standards-Version: 3.8.3
+Homepage: http://bobo.digicool.com
 XS-Python-Version: all
 XS-Vcs-Svn: svn://svn.debian.org/pkg-zope/bobo/trunk
 
@@ -16,10 +17,9 @@
 Suggests: ${pydeb:Suggests}
 XB-Python-Version: ${python:Versions}
 Description: Web application framework for the impatient
- Bobo is a light-weight framework for creating WSGI web applications.
+ Bobo is a light-weight framework for creating WSGI web applications. It's goal
+ is to be easy to use and remember.
  .
- It's goal is to be easy to use and remember.
- .
  It addresses 2 problems: Mapping URLs to objects, calling objects to
  generate HTTP responses.
  .
@@ -28,5 +28,3 @@
  application-specific libraries.
  .
  Bobo builds on other frameworks, most notably WSGI and WebOb.
- .
- Homepage: http://bobo.digicool.com

Modified: bobo/trunk/debian/copyright
===================================================================
--- bobo/trunk/debian/copyright	2010-01-14 18:52:32 UTC (rev 2030)
+++ bobo/trunk/debian/copyright	2010-01-21 08:24:45 UTC (rev 2031)
@@ -2,7 +2,7 @@
 
 It was downloaded from http://pypi.python.org/pypi/bobo
 
-Copyright:
+Copyright (C) 2009-2010: Jim Fulton <jim at zope.com>
 
 Upstream Author: Jim Fulton <jim at zope.com>
 

Deleted: bobo/trunk/setup.py
===================================================================
--- bobo/trunk/setup.py	2010-01-14 18:52:32 UTC (rev 2030)
+++ bobo/trunk/setup.py	2010-01-21 08:24:45 UTC (rev 2031)
@@ -1,57 +0,0 @@
-##############################################################################
-#
-# Copyright Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-name = 'bobo'
-version = '0.2.1'
-
-entry_points = """
-[console_scripts]
-bobo = boboserver:server
-
-[paste.app_factory]
-main = bobo:Application
-
-[paste.filter_app_factory]
-reload = boboserver:Reload
-debug = boboserver:Debug
-"""
-
-from setuptools import setup
-
-import sys
-
-if sys.version_info >= (2, 5):
-    install_requires = ['WebOb']
-else:
-    install_requires = ['WebOb', 'PasteDeploy', 'Paste']
-
-setup(
-    name = name,
-    version = version,
-    author = "Jim Fulton",
-    author_email = "jim at zope.com",
-    description = "Web application framework for the impatient",
-    license = "ZPL 2.1",
-    keywords = "WSGI",
-    url='http://www.python.org/pypi/'+name,
-    long_description=open('README.txt').read(),
-
-    py_modules = ['bobo', 'boboserver'],
-    package_dir = {'':'src'},
-    install_requires = install_requires,
-    entry_points = entry_points,
-    tests_require = [
-        'bobodoctestumentation >=%s, <%s.999' % (version, version),
-        'webtest', 'zope.testing'],
-    test_suite = 'bobodoctestumentation.tests.test_suite',
-    )




More information about the pkg-zope-developers mailing list