[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

RFS: python-git (updated package)



Dear mentors,

I am looking for a sponsor for the new version 0.1.4.1-2
of my package "python-git".

It builds these binary packages:
python-git - Python library to interact with Git repositories

The package appears to be lintian clean.

The upload would fix these bugs: 494581

The package can be found on mentors.debian.net:
- URL: http://mentors.debian.net/debian/pool/main/p/python-git
- Source repository: deb-src http://mentors.debian.net/debian unstable
main contrib non-free
- dget
http://mentors.debian.net/debian/pool/main/p/python-git/python-git_0.1.4.1-2.dsc

Attached is a diff of the changes from the previous version of the
package to this one.

I would be glad if someone uploaded this package for me.

Kind regards,
-- 
Daniel Watkins (Odd_Bloke)
=== modified file 'debian/changelog'
--- debian/changelog	2008-07-29 16:23:07 +0000
+++ debian/changelog	2008-08-18 18:50:37 +0000
@@ -1,3 +1,13 @@
+python-git (0.1.4.1-2) unstable; urgency=low
+
+  * Fixed the synopsis to work as an appositive clause in a sentence, as per
+    Section 6.2.2 of the Developer Reference.
+  * Added patch so that git.Repo.create and git.Repo.init_bare now create a
+    bare repository, as intended. (Closes: #494581)
+  * Added Vcs-Bzr control field.
+
+ -- Daniel Watkins <daniel@daniel-watkins.co.uk>  Mon, 18 Aug 2008 19:50:22 +0100
+
 python-git (0.1.4.1-1) unstable; urgency=low
 
   * Initial release. (Closes: #492520)

=== modified file 'debian/control'
--- debian/control	2008-07-29 16:23:07 +0000
+++ debian/control	2008-08-18 18:50:19 +0000
@@ -7,11 +7,12 @@
 Standards-Version: 3.8.0
 Homepage: http://gitorious.org/projects/git-python/
 XS-Python-Version: all
+Vcs-Bzr: http://bzr.daniel-watkins.co.uk/debian/python-git/
 
 Package: python-git
 Architecture: all
 Depends: ${python:Depends}, git-core (>= 1.5.3.7)
-Description: A Python library to interact with Git repositories
+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
  then be traversed to find parent commit(s), trees, blobs, etc.

=== modified file 'debian/patches/00list'
--- debian/patches/00list	2008-07-29 16:23:07 +0000
+++ debian/patches/00list	2008-08-18 17:20:41 +0000
@@ -1,1 +1,2 @@
 01_remove_ez_setup.dpatch
+02_bare_repos.dpatch

=== modified file 'debian/patches/01_remove_ez_setup.dpatch' (properties changed: -x to +x)
=== added file 'debian/patches/02_bare_repos.dpatch'
--- debian/patches/02_bare_repos.dpatch	1970-01-01 00:00:00 +0000
+++ debian/patches/02_bare_repos.dpatch	2008-08-18 17:25:16 +0000
@@ -0,0 +1,31 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 02_bare_repos.dpatch by Daniel Watkins <daniel@daniel-watkins.co.uk>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Make git.Repo.create and git.Repo.init_bare actually create bare repos 
+## DP: (as intended).
+
+@DPATCH@
+
+--- python-git-0.1.4.1.orig/lib/git/repo.py
++++ python-git-0.1.4.1/lib/git/repo.py
+@@ -44,7 +44,8 @@
+         while curpath:
+             if is_git_dir(curpath):
+                 self.bare = True
+-                self.path, self.wd = curpath
++                self.path = curpath
++                self.wd = curpath
+                 break
+             gitpath = os.path.join(curpath, '.git')
+             if is_git_dir(gitpath):
+@@ -296,7 +297,7 @@
+             os.makedirs(path, 0755)
+ 
+         git = Git(path)
+-        output = git.init(**kwargs)
++        output = git.init('--bare', **kwargs)
+         return Repo(path)
+     create = init_bare
+ 
+

=== modified file 'debian/rules' (properties changed: -x to +x)

Attachment: signature.asc
Description: PGP signature


Reply to: