debian/0000755000000000000000000000000011764417142007175 5ustar debian/changelog0000644000000000000000000000250611764417136011055 0ustar turbogears2-doc (2.1.5-1) unstable; urgency=low * New upstream release. * Drop build-w-sphinx-062.dpatch , not needed anymore. -- Laszlo Boszormenyi (GCS) Fri, 08 Jun 2012 17:13:55 +0200 turbogears2-doc (2.1.1-1) unstable; urgency=low * New maintainer (closes: #658927), new upstream release. * Rework packaging: - change d/rules to use debhelper instead of cdbs (this fixes objects.inv previously compressed problem [closes: #608777]), - use 3.0 (quilt) source format, - add no_network.patch to don't try to use network during building, - use Standards-Version 3.9.2 , - remove embedded jquery and underscore javascript libraries, link to their packaged files. -- Laszlo Boszormenyi (GCS) Thu, 16 Feb 2012 11:51:35 +0000 turbogears2-doc (2.0+svn6611-2) unstable; urgency=low * Orphan package. -- Stefano Zacchiroli Wed, 01 Feb 2012 18:23:43 +0100 turbogears2-doc (2.0+svn6611-1) unstable; urgency=low * New upstream release * debian/control: bump Standards-Version to 3.8.3 (no changes needed) -- Stefano Zacchiroli Mon, 24 Aug 2009 17:36:52 +0200 turbogears2-doc (2.0+svn6599-1) unstable; urgency=low * First release (Closes: #535975) -- Stefano Zacchiroli Mon, 20 Jul 2009 13:47:41 +0200 debian/compat0000644000000000000000000000000211717166662010401 0ustar 7 debian/control0000644000000000000000000000200311764413624010574 0ustar Source: turbogears2-doc Section: doc Priority: optional Maintainer: Laszlo Boszormenyi (GCS) Build-Depends: debhelper (>= 7), python-sphinx, python-babel, python-turbogears2 (>= 2.1) Standards-Version: 3.9.3 Homepage: http://turbogears.org/2.1/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}, libjs-jquery, libjs-underscore 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. debian/copyright0000644000000000000000000000311211717207531011122 0ustar This package was debianized by Stefano Zacchiroli on Mon, 20 Jul 2009 11:58:20 +0200. Packaging was taken over by Laszlo Boszormenyi (GCS) on Thu, 16 Feb 2012 11:51:35 +0000 . 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 Copyright: © 2012 Laszlo Boszormenyi (GCS) 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. debian/doc-base0000644000000000000000000000106011717166662010600 0ustar Document: turbogears2-doc Title: TurboGears 2 documentation Abstract: Documentation for the TurboGears 2 to develop web applications in Python, according to the model-view-controller architecture. Thie present documentation includes architecture description, tutorials, reference manuals, howtos and recipes, etc; it corresponds to what is usually available on the TurboGears 2 documentation website. Section: Programming/Python Format: HTML Index: /usr/share/doc/python-turbogears2-doc/html/index.html Files: /usr/share/doc/python-turbogears2-doc/html/* debian/docs0000644000000000000000000000001511717166662010052 0ustar _build/html/ debian/get-orig-source.sh0000644000000000000000000000137311717166662012556 0ustar #!/bin/bash # Copyright © 2009 Stefano Zacchiroli # 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." debian/patches/0000755000000000000000000000000011764416560010627 5ustar debian/patches/no_network.patch0000644000000000000000000000236211717210770014031 0ustar Description: don't try to use network during package build The build process tries to download various files when building the documentation. It seems unnecessary so remove it. . Author: Laszlo Boszormenyi (GCS) --- Last-Update: <2012-02-16> --- turbogears2-doc-2.1.1.orig/conf.py +++ turbogears2-doc-2.1.1/conf.py @@ -256,18 +256,6 @@ todo_include_todos = True # Add Intersphinx crosslinks here intersphinx_mapping = { - 'paste': ('http://pythonpaste.org', None), - 'pylons': ('http://docs.pylonsproject.org/projects/pylons_framework/dev/', None), - 'python': ('http://docs.python.org', None), - 'sprox': ('http://sprox.org', None), - 'sqlalchemy': ('http://www.sqlalchemy.org/docs', None), - 'rum': ('http://docs.python-rum.org', None), - 'tw': ('http://toscawidgets.org/documentation/ToscaWidgets/', None), - 'twdynforms': ('http://toscawidgets.org/documentation/tw.dynforms/', None), - 'twforms': ('http://toscawidgets.org/documentation/tw.forms/', None), - 'twjquery': ('http://toscawidgets.org/documentation/tw.jquery/', None), - 'webob': ('http://pythonpaste.org/webob/', None), - 'webtest': ('http://pythonpaste.org/webtest/', None), } # The maximum number of days to cache remote inventories. debian/patches/series0000644000000000000000000000002111764416560012035 0ustar no_network.patch debian/python-turbogears2-doc.links0000644000000000000000000000032211717211516014550 0ustar /usr/share/javascript/jquery/jquery.js usr/share/doc/python-turbogears2-doc/html/_static/jquery.js /usr/share/javascript/underscore/underscore.js usr/share/doc/python-turbogears2-doc/html/_static/underscore.js debian/rules0000755000000000000000000000152211717215351010251 0ustar #!/usr/bin/make -f DESTDIR = $(CURDIR)/debian/python-turbogears2-doc help: dh $@ clean: dh_testdir dh_clean $(MAKE) clean rm -f sphinxlog.txt rm -f code_ext.pyc rm -f _static/ToscaWidgetsFormsExample.zip _static/trunk.zip configure: build-arch: build-indep: dh_testdir $(MAKE) html build: build-arch build-indep install: binary-arch: build binary-indep: build dh_testdir dh_installdocs dh_installchangelogs find $(DESTDIR) -name .pc -type d | xargs rm -rf rm -f $(DESTDIR)/usr/share/doc/python-turbogears2-doc/html/_sources/main/License.txt rm -f $(DESTDIR)/usr/share/doc/python-turbogears2-doc/html/_static/jquery.js rm -f $(DESTDIR)/usr/share/doc/python-turbogears2-doc/html/_static/underscore.js dh_link dh_compress dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary: binary-arch binary-indep debian/source/0000755000000000000000000000000011717171607010476 5ustar debian/source/format0000644000000000000000000000001411717171606011703 0ustar 3.0 (quilt)