[Python-modules-commits] r9091 - in packages (10 files)

zack at users.alioth.debian.org zack at users.alioth.debian.org
Mon Jul 20 11:16:16 UTC 2009


    Date: Monday, July 20, 2009 @ 11:16:10
  Author: zack
Revision: 9091

draft packaging of TG2 docs

Added:
  packages/turbogears2-doc/
  packages/turbogears2-doc/tags/
  packages/turbogears2-doc/trunk/
  packages/turbogears2-doc/trunk/debian/
  packages/turbogears2-doc/trunk/debian/changelog
  packages/turbogears2-doc/trunk/debian/compat
  packages/turbogears2-doc/trunk/debian/control
  packages/turbogears2-doc/trunk/debian/copyright
  packages/turbogears2-doc/trunk/debian/get-orig-source.sh
  packages/turbogears2-doc/trunk/debian/rules


Property changes on: packages/turbogears2-doc
___________________________________________________________________
Added: svn:ignore
   + build-area
tarballs



Property changes on: packages/turbogears2-doc/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/turbogears2-doc/trunk/debian/changelog
===================================================================
--- packages/turbogears2-doc/trunk/debian/changelog	                        (rev 0)
+++ packages/turbogears2-doc/trunk/debian/changelog	2009-07-20 11:16:10 UTC (rev 9091)
@@ -0,0 +1,6 @@
+turbogears2-doc (2.0+svn6599-1) UNRELEASED; urgency=low
+
+  * First release (Closes: #535975)
+
+ -- Stefano Zacchiroli <zack at debian.org>  Mon, 20 Jul 2009 11:31:43 +0200
+

Added: packages/turbogears2-doc/trunk/debian/compat
===================================================================
--- packages/turbogears2-doc/trunk/debian/compat	                        (rev 0)
+++ packages/turbogears2-doc/trunk/debian/compat	2009-07-20 11:16:10 UTC (rev 9091)
@@ -0,0 +1 @@
+7

Added: packages/turbogears2-doc/trunk/debian/control
===================================================================
--- packages/turbogears2-doc/trunk/debian/control	                        (rev 0)
+++ packages/turbogears2-doc/trunk/debian/control	2009-07-20 11:16:10 UTC (rev 9091)
@@ -0,0 +1,29 @@
+Source: turbogears2-doc
+Section: doc
+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 (>= 7),
+ cdbs,
+ python-sphinx
+Standards-Version: 3.8.2
+Homepage: http://turbogears.org/2.0/docs/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/turbogears2-doc/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/turbogears2-doc/trunk/
+
+Package: python-turbogears2-doc
+Architecture: all
+Depends:
+ ${misc:Depends}
+Description: documentation for the TurboGears2 web framework
+ TurboGears2 is a framework to develop web applications in Python,
+ following a model-view-controller architecture.
+ .
+ The main TurboGears2 package is python-turbogears2. This package
+ contains the framework documentation (architecture description,
+ tutorials, references, howtos and recipes, ...)
+ .
+ The documentation shipped by this package corresponds to what is
+ usually available on the TG2 documentation website.

Added: packages/turbogears2-doc/trunk/debian/copyright
===================================================================
--- packages/turbogears2-doc/trunk/debian/copyright	                        (rev 0)
+++ packages/turbogears2-doc/trunk/debian/copyright	2009-07-20 11:16:10 UTC (rev 9091)
@@ -0,0 +1,34 @@
+This package was debianized by Stefano Zacchiroli <zack at debian.org>
+on Mon, 20 Jul 2009 11:58:20 +0200.
+
+
+Files: *
+Copyright: © 2005-2009 Kevin Dangoor and contributors
+License: MIT
+ 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.
+
+
+Files: debian/*
+Copyright: © 2009 Stefano Zacchiroli <zack at debian.org>
+License: GPL-3+
+ On Debian systems the full text of the GNU General Public License can
+ be found in the `/usr/share/common-licenses/GPL-3' file.
+

Added: packages/turbogears2-doc/trunk/debian/get-orig-source.sh
===================================================================
--- packages/turbogears2-doc/trunk/debian/get-orig-source.sh	                        (rev 0)
+++ packages/turbogears2-doc/trunk/debian/get-orig-source.sh	2009-07-20 11:16:10 UTC (rev 9091)
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+# Copyright © 2009 Stefano Zacchiroli <zack at debian.org>
+# License: GNU GPL version 3 or above
+# Created:       Mon, 20 Jul 2009 12:42:04 +0200
+# Last-Modified: Mon, 20 Jul 2009 12:42:04 +0200
+
+PKG="turbogears2-doc"
+
+SVN_URL="$1"
+if [ -z "$SVN_URL" ] ; then
+    echo "Usage: $0 SVN_URL"
+    exit 1
+fi
+
+svn_tmp=$(mktemp -d --tmpdir=. svn-tmp.XXXXXXXXXX)
+trap "rm -rf $svn_tmp" EXIT
+
+echo "Checking out sources from SVN $SVN_URL ..."
+svn co -q "$SVN_URL" "$svn_tmp/svn"
+svn_rev=$(svn info $svn_tmp/svn | grep 'Revision:' | cut -f 2 -d' ')
+orig_name="${PKG}_2.0+svn${svn_rev}.orig.tar.gz"
+svn export "$svn_tmp/svn" "$svn_tmp/$PKG"
+echo "Creating upstream tarball ..."
+(cd "$svn_tmp" && tar czf $orig_name $PKG)
+mv $svn_tmp/$orig_name .
+echo "All done."


Property changes on: packages/turbogears2-doc/trunk/debian/get-orig-source.sh
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/turbogears2-doc/trunk/debian/rules
===================================================================
--- packages/turbogears2-doc/trunk/debian/rules	                        (rev 0)
+++ packages/turbogears2-doc/trunk/debian/rules	2009-07-20 11:16:10 UTC (rev 9091)
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+include /usr/share/cdbs/1/class/makefile.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+DEB_MAKE_BUILD_TARGET = html
+
+SVN_URL = http://svn.turbogears.org/docs/2.0/docs/
+get-orig-source:
+	debian/get-orig-source.sh $(SVN_URL)
+


Property changes on: packages/turbogears2-doc/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *




More information about the Python-modules-commits mailing list