[Python-modules-commits] r16315 - in packages/python-git/trunk/debian (8 files)
anoteng-guest at users.alioth.debian.org
anoteng-guest at users.alioth.debian.org
Sat Apr 2 14:38:37 UTC 2011
Date: Saturday, April 2, 2011 @ 14:38:31
Author: anoteng-guest
Revision: 16315
New upstream release
DEP5 copyright
Include documentation and register with doc-base
Added:
packages/python-git/trunk/debian/doc-base
packages/python-git/trunk/debian/links
Modified:
packages/python-git/trunk/debian/changelog
packages/python-git/trunk/debian/control
packages/python-git/trunk/debian/copyright
packages/python-git/trunk/debian/docs
packages/python-git/trunk/debian/rules
packages/python-git/trunk/debian/source/format
Modified: packages/python-git/trunk/debian/changelog
===================================================================
--- packages/python-git/trunk/debian/changelog 2011-04-02 10:12:59 UTC (rev 16314)
+++ packages/python-git/trunk/debian/changelog 2011-04-02 14:38:31 UTC (rev 16315)
@@ -1,3 +1,16 @@
+python-git (0.3.1-beta2-1) unstable; urgency=low
+
+ * Team upload.
+ * Update git dependency. (Closes: #600237, #568583)
+ * New upstream release. (Closes: #579553)
+ * Add upstream documentation. (Closes: #523881)
+ * Change source format to 3.0 (quilt)
+ * Bump Standards-Version to 3.9.1
+ - Remove deprecated /usr/share/common-licenses/BSD link from copyright
+ * Change to DEP5 copyright
+
+ -- Andreas Noteng <andreas at noteng.no> Sat, 02 Apr 2011 15:32:59 +0200
+
python-git (0.1.6-1) unstable; urgency=low
* New upstream release. (Closes: #512584)
Modified: packages/python-git/trunk/debian/control
===================================================================
--- packages/python-git/trunk/debian/control 2011-04-02 10:12:59 UTC (rev 16314)
+++ packages/python-git/trunk/debian/control 2011-04-02 14:38:31 UTC (rev 16315)
@@ -3,9 +3,9 @@
Priority: optional
Maintainer: Daniel Watkins <daniel at daniel-watkins.co.uk>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 7), python, python-setuptools (>= 0.6a9)
-Build-Depends-Indep: python-support
-Standards-Version: 3.8.0
+Build-Depends: debhelper (>= 7.0.50~), python, python-setuptools (>= 0.6a9),
+ python-sphinx
+Standards-Version: 3.9.1
Homepage: http://gitorious.org/projects/git-python/
XS-Python-Version: all
Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-git/trunk
@@ -13,7 +13,10 @@
Package: python-git
Architecture: all
-Depends: ${python:Depends}, git-core (>= 1.5.3.7), ${misc:Depends}
+Depends: ${python:Depends},
+ git (>= 1:1.7) | git-core (>= 1:1.5.3.7),
+ ${misc:Depends},
+ libjs-jquery
Description: Python library to interact with Git repositories
python-git provides object model access to a Git repository, so Python can be
used to manipulate it. Repository objects can be opened or created, which can
Modified: packages/python-git/trunk/debian/copyright
===================================================================
--- packages/python-git/trunk/debian/copyright 2011-04-02 10:12:59 UTC (rev 16314)
+++ packages/python-git/trunk/debian/copyright 2011-04-02 14:38:31 UTC (rev 16315)
@@ -1,26 +1,46 @@
-This package was debianized by Daniel Watkins <daniel at daniel-watkins.co.uk> on
-Sat, 26 Jul 2008 20:41:29 +0100.
+Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=173
+Upstream-Name: GitPython
+Upstream-Contact: Michael Trier <mtrier at gmail.com>
+Source: http://gitorious.org/git-python
-It was downloaded from
-<http://pypi.python.org/packages/source/G/GitPython/GitPython-0.1.4.1.tar.gz>.
+Files: *
+Copyright:
+ 2008-2011 Michael Trier <mtrier at gmail.com>
+ 2008-2011 Florian Apolloner <florian at apolloner.eu>
+ 2008-2011 David Aguilar <davvid at gmail.com>
+ 2008-2011 Alan Briolat
+License: BSD-3-clause
-Upstream Authors:
-
- Michael Trier <mtrier at gmail.com>
- Florian Apolloner <florian at apolloner.eu>
- David Aguilar <davvid at gmail.com>
- Alan Briolat
-
+Files: debian/*
Copyright:
+ 2008-2010 Daniel Watkins <daniel at daniel-watkins.co.uk>
+ 2011 Andreas Noteng <andreas at noteng.no>
+License: BSD-3-clause
- Copyright (c) 2008, Michael Trier and contributors
- All rights reserved.
-
-License:
-
- This package is licensed under the BSD license, see
- `/usr/share/common-licenses/BSD'.
-
-The Debian packaging is Copyright © 2008-2009, Daniel Watkins
-<daniel at daniel-watkins.co.uk> and is licensed under the BSD license, see
-`/usr/share/common-licenses/BSD`.
+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:
+ .
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ * 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.
+ .
+ * Neither the name of the GitPython project 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 COPYRIGHT HOLDERS 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 COPYRIGHT
+ OWNER 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.
Added: packages/python-git/trunk/debian/doc-base
===================================================================
--- packages/python-git/trunk/debian/doc-base (rev 0)
+++ packages/python-git/trunk/debian/doc-base 2011-04-02 14:38:31 UTC (rev 16315)
@@ -0,0 +1,9 @@
+Document: python-git
+Title: GitPython (python-git) documentation
+Abstract: This manual contains information on how to use the GitPython
+ Python module
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-git/index.html
+Files: /usr/share/doc/python-git/*.html
Modified: packages/python-git/trunk/debian/docs
===================================================================
--- packages/python-git/trunk/debian/docs 2011-04-02 10:12:59 UTC (rev 16314)
+++ packages/python-git/trunk/debian/docs 2011-04-02 14:38:31 UTC (rev 16315)
@@ -1 +1,3 @@
-README
+doc/*
+AUTHORS
+CHANGES
Added: packages/python-git/trunk/debian/links
===================================================================
--- packages/python-git/trunk/debian/links (rev 0)
+++ packages/python-git/trunk/debian/links 2011-04-02 14:38:31 UTC (rev 16315)
@@ -0,0 +1 @@
+usr/share/javascript/jquery/jquery.js usr/share/doc/python-git/_static/jquery.js
Modified: packages/python-git/trunk/debian/rules
===================================================================
--- packages/python-git/trunk/debian/rules 2011-04-02 10:12:59 UTC (rev 16314)
+++ packages/python-git/trunk/debian/rules 2011-04-02 14:38:31 UTC (rev 16315)
@@ -1,9 +1,23 @@
#!/usr/bin/make -f
# -*- makefile -*-
+override_dh_installdocs:
+ dh_installdocs -Xjquery.js -X_sources
+
%:
dh $@
clean:
rm -f lib/GitPython.egg-info/SOURCES.txt
dh clean
+
+DOC_VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p')
+UPSTREAM=$(shell dpkg-parsechangelog | sed -nr 's/Version: (.*)-[^-]*/\1/p')
+get-orig-source:
+ uscan --download-current-version
+ wget -P get-orig-source http://packages.python.org/GitPython/$(DOC_VERSION)/docs_$(DOC_VERSION).zip
+ mkdir get-orig-source/doc
+ unzip -d get-orig-source/doc get-orig-source/docs_$(DOC_VERSION).zip
+ tar -C get-orig-source -czvf python-git_$(UPSTREAM).orig-doc.tar.gz doc/
+ rm -rf get-orig-source
+
Modified: packages/python-git/trunk/debian/source/format
===================================================================
--- packages/python-git/trunk/debian/source/format 2011-04-02 10:12:59 UTC (rev 16314)
+++ packages/python-git/trunk/debian/source/format 2011-04-02 14:38:31 UTC (rev 16315)
@@ -1 +1 @@
-1.0
+3.0 (quilt)
More information about the Python-modules-commits
mailing list