Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f8d1ddd

Browse files
author
anoteng-guest
committedApr 2, 2011
New upstream release
DEP5 copyright Include documentation and register with doc-base git-svn-id: svn+ssh://svn.debian.org/svn/python-modules/packages/python-git/trunk@16315 771dd761-d7fa-0310-a302-f036d1c1ebb6
1 parent 3526504 commit f8d1ddd

File tree

8 files changed

+91
-29
lines changed

8 files changed

+91
-29
lines changed
 

‎debian/changelog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
python-git (0.3.1-beta2-1) unstable; urgency=low
2+
3+
* Team upload.
4+
* Update git dependency. (Closes: #600237, #568583)
5+
* New upstream release. (Closes: #579553)
6+
* Add upstream documentation. (Closes: #523881)
7+
* Change source format to 3.0 (quilt)
8+
* Bump Standards-Version to 3.9.1
9+
- Remove deprecated /usr/share/common-licenses/BSD link from copyright
10+
* Change to DEP5 copyright
11+
12+
-- Andreas Noteng <andreas@noteng.no> Sat, 02 Apr 2011 15:32:59 +0200
13+
114
python-git (0.1.6-1) unstable; urgency=low
215

316
* New upstream release. (Closes: #512584)

‎debian/control

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,20 @@ Section: python
33
Priority: optional
44
Maintainer: Daniel Watkins <daniel@daniel-watkins.co.uk>
55
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
6-
Build-Depends: debhelper (>= 7), python, python-setuptools (>= 0.6a9)
7-
Build-Depends-Indep: python-support
8-
Standards-Version: 3.8.0
6+
Build-Depends: debhelper (>= 7.0.50~), python, python-setuptools (>= 0.6a9),
7+
python-sphinx
8+
Standards-Version: 3.9.1
99
Homepage: http://gitorious.org/projects/git-python/
1010
XS-Python-Version: all
1111
Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-git/trunk
1212
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-git/trunk/
1313

1414
Package: python-git
1515
Architecture: all
16-
Depends: ${python:Depends}, git-core (>= 1.5.3.7), ${misc:Depends}
16+
Depends: ${python:Depends},
17+
git (>= 1:1.7) | git-core (>= 1:1.5.3.7),
18+
${misc:Depends},
19+
libjs-jquery
1720
Description: Python library to interact with Git repositories
1821
python-git provides object model access to a Git repository, so Python can be
1922
used to manipulate it. Repository objects can be opened or created, which can

‎debian/copyright

Lines changed: 43 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,46 @@
1-
This package was debianized by Daniel Watkins <daniel@daniel-watkins.co.uk> on
2-
Sat, 26 Jul 2008 20:41:29 +0100.
3-
4-
It was downloaded from
5-
<http://pypi.python.org/packages/source/G/GitPython/GitPython-0.1.4.1.tar.gz>.
6-
7-
Upstream Authors:
8-
9-
Michael Trier <mtrier@gmail.com>
10-
Florian Apolloner <florian@apolloner.eu>
11-
David Aguilar <davvid@gmail.com>
12-
Alan Briolat
1+
Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=173
2+
Upstream-Name: GitPython
3+
Upstream-Contact: Michael Trier <mtrier@gmail.com>
4+
Source: http://gitorious.org/git-python
135

6+
Files: *
147
Copyright:
8+
2008-2011 Michael Trier <mtrier@gmail.com>
9+
2008-2011 Florian Apolloner <florian@apolloner.eu>
10+
2008-2011 David Aguilar <davvid@gmail.com>
11+
2008-2011 Alan Briolat
12+
License: BSD-3-clause
1513

16-
Copyright (c) 2008, Michael Trier and contributors
17-
All rights reserved.
18-
19-
License:
20-
21-
This package is licensed under the BSD license, see
22-
`/usr/share/common-licenses/BSD'.
23-
24-
The Debian packaging is Copyright © 2008-2009, Daniel Watkins
25-
<daniel@daniel-watkins.co.uk> and is licensed under the BSD license, see
26-
`/usr/share/common-licenses/BSD`.
14+
Files: debian/*
15+
Copyright:
16+
2008-2010 Daniel Watkins <daniel@daniel-watkins.co.uk>
17+
2011 Andreas Noteng <andreas@noteng.no>
18+
License: BSD-3-clause
19+
20+
License: BSD-3-clause
21+
Redistribution and use in source and binary forms, with or without
22+
modification, are permitted provided that the following conditions
23+
are met:
24+
.
25+
* Redistributions of source code must retain the above copyright
26+
notice, this list of conditions and the following disclaimer.
27+
.
28+
* Redistributions in binary form must reproduce the above copyright
29+
notice, this list of conditions and the following disclaimer in the
30+
documentation and/or other materials provided with the distribution.
31+
.
32+
* Neither the name of the GitPython project nor the names of
33+
its contributors may be used to endorse or promote products derived
34+
from this software without specific prior written permission.
35+
.
36+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
37+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
38+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
39+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
40+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
42+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
43+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
44+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
45+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
46+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

‎debian/doc-base

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Document: python-git
2+
Title: GitPython (python-git) documentation
3+
Abstract: This manual contains information on how to use the GitPython
4+
Python module
5+
Section: Programming/Python
6+
7+
Format: HTML
8+
Index: /usr/share/doc/python-git/index.html
9+
Files: /usr/share/doc/python-git/*.html

‎debian/docs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
README
1+
doc/*
2+
AUTHORS
3+
CHANGES

‎debian/links

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
usr/share/javascript/jquery/jquery.js usr/share/doc/python-git/_static/jquery.js

‎debian/rules

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
#!/usr/bin/make -f
22
# -*- makefile -*-
33

4+
override_dh_installdocs:
5+
dh_installdocs -Xjquery.js -X_sources
6+
47
%:
58
dh $@
69

710
clean:
811
rm -f lib/GitPython.egg-info/SOURCES.txt
912
dh clean
13+
14+
DOC_VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p')
15+
UPSTREAM=$(shell dpkg-parsechangelog | sed -nr 's/Version: (.*)-[^-]*/\1/p')
16+
get-orig-source:
17+
uscan --download-current-version
18+
wget -P get-orig-source http://packages.python.org/GitPython/$(DOC_VERSION)/docs_$(DOC_VERSION).zip
19+
mkdir get-orig-source/doc
20+
unzip -d get-orig-source/doc get-orig-source/docs_$(DOC_VERSION).zip
21+
tar -C get-orig-source -czvf python-git_$(UPSTREAM).orig-doc.tar.gz doc/
22+
rm -rf get-orig-source
23+

‎debian/source/format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0
1+
3.0 (quilt)

0 commit comments

Comments
 (0)
Please sign in to comment.