--- libgit-ruby-1.0.7.orig/debian/control
+++ libgit-ruby-1.0.7/debian/control
@@ -0,0 +1,38 @@
+Source: libgit-ruby
+Section: libs
+Priority: optional
+Maintainer: Michael Schutte <m.schutte.jr@gmail.com>
+Uploaders: Paul van Tilburg <paulvt@debian.org>
+Build-Depends: debhelper (>= 7), quilt
+Build-Depends-Indep: rdoc
+Standards-Version: 3.8.0
+Homepage: http://jointheconversation.org/rubygit/
+Vcs-Git: git://git.debian.org/~michi-guest/libgit-ruby.git
+Vcs-Browser: http://git.debian.org/?p=users/michi-guest/libgit-ruby.git
+
+Package: libgit-ruby
+Architecture: all
+Depends: libgit-ruby1.8
+Description: Ruby implementation of the Git revision control system
+ libgit-ruby allows Ruby applications to access and manipulate Git
+ repositories.  It provides an object-oriented interface to Git’s data storage
+ system and is capable of reading from and writing to the index, managing
+ branches, or obtaining information about the history of a project.
+ .
+ Git is a popular distributed source code management tool.  The original
+ implementation can be found in the git-core package.
+ .
+ This is a dummy package depending on the library for the current default
+ version of Ruby.
+
+Package: libgit-ruby1.8
+Architecture: all
+Depends: libruby1.8, git-core
+Description: Ruby implementation of the Git revision control system
+ libgit-ruby allows Ruby applications to access and manipulate Git
+ repositories.  It provides an object-oriented interface to Git’s data storage
+ system and is capable of reading from and writing to the index, managing
+ branches, or obtaining information about the history of a project.
+ .
+ Git is a popular distributed source code management tool.  The original
+ implementation can be found in the git-core package.
--- libgit-ruby-1.0.7.orig/debian/libgit-ruby.docs
+++ libgit-ruby-1.0.7/debian/libgit-ruby.docs
@@ -0,0 +1 @@
+debian/html/
--- libgit-ruby-1.0.7.orig/debian/changelog
+++ libgit-ruby-1.0.7/debian/changelog
@@ -0,0 +1,13 @@
+libgit-ruby (1.0.7-2) unstable; urgency=low
+
+  * Depend on git-core, closes: #486681.
+  * Add Paul van Tilburg to Uploaders.
+  * Bump Standards-Version to 3.8.0 (no changes needed).
+
+ -- Michael Schutte <m.schutte.jr@gmail.com>  Sun, 22 Jun 2008 16:16:00 +0200
+
+libgit-ruby (1.0.7-1) unstable; urgency=low
+
+  * Initial release, closes: #483002.
+
+ -- Michael Schutte <m.schutte.jr@gmail.com>  Wed, 04 Jun 2008 20:45:47 +0200
--- libgit-ruby-1.0.7.orig/debian/watch
+++ libgit-ruby-1.0.7/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://rubyforge.org/frs/?group_id=4851&release_id=22627 .*ruby-git-(.*)\.tar\.gz
--- libgit-ruby-1.0.7.orig/debian/compat
+++ libgit-ruby-1.0.7/debian/compat
@@ -0,0 +1 @@
+7
--- libgit-ruby-1.0.7.orig/debian/rules
+++ libgit-ruby-1.0.7/debian/rules
@@ -0,0 +1,29 @@
+#!/usr/bin/make -f
+
+include /usr/share/quilt/quilt.make
+
+build: build-stamp patch
+build-stamp:
+	rdoc lib/ -o debian/html README --main README --inline-source
+	touch build-stamp
+
+clean: unpatch
+	dh clean
+	rm -rf debian/html build-stamp
+
+install: build
+	dh install --before dh_installdocs
+	dh_installdocs -A README TODO History.txt
+	dh install --before dh_compress
+	dh_compress -X.rb
+	dh install --remaining
+
+binary-arch:
+# Nothing to do here
+
+binary-indep: install
+	dh binary-indep
+
+binary: binary-indep
+
+.PHONY: build clean install binary-indep binary-arch binary
--- libgit-ruby-1.0.7.orig/debian/libgit-ruby.examples
+++ libgit-ruby-1.0.7/debian/libgit-ruby.examples
@@ -0,0 +1 @@
+camping/gitweb.rb
--- libgit-ruby-1.0.7.orig/debian/libgit-ruby1.8.install
+++ libgit-ruby-1.0.7/debian/libgit-ruby1.8.install
@@ -0,0 +1 @@
+lib/* usr/lib/ruby/1.8
--- libgit-ruby-1.0.7.orig/debian/copyright
+++ libgit-ruby-1.0.7/debian/copyright
@@ -0,0 +1,35 @@
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
+Packaged-By: Michael Schutte <m.schutte.jr@gmail.com>
+Packaged-Date: Mon, 26 May 2008 15:40:40 +0200
+Original-Source-Location: http://rubyforge.org/frs/?group_id=4851&release_id=22627
+Upstream-Author: Scott Chacon <schacon@gmail.com>
+
+Files: debian/*
+Copyright: © 2008 Michael Schutte <m.schutte.jr@gmail.com>
+License: GPL-2+
+ The Debian packaging work is under the GNU General Public License,
+ version 2 or, at your option, any later version.  On Debian systems, the
+ complete text of the GNU General Public License can be found in
+ “/usr/share/common-licenses/GPL”.
+
+Files: *
+Copyright: © 2007-2008 Scott Chacon <schacon@gmail.com>
+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.
--- libgit-ruby-1.0.7.orig/debian/patches/series
+++ libgit-ruby-1.0.7/debian/patches/series
@@ -0,0 +1 @@
+gitweb_no_rubygems
--- libgit-ruby-1.0.7.orig/debian/patches/gitweb_no_rubygems
+++ libgit-ruby-1.0.7/debian/patches/gitweb_no_rubygems
@@ -0,0 +1,12 @@
+Index: devel/camping/gitweb.rb
+===================================================================
+--- devel.orig/camping/gitweb.rb	2008-06-04 21:54:03.000000000 +0200
++++ devel/camping/gitweb.rb	2008-06-04 21:55:08.000000000 +0200
+@@ -1,6 +1,5 @@
+-require 'rubygems'
+ require 'camping'
+-require 'lib/git'
++require 'git'
+ 
+ #
+ # gitweb is a web frontend on git
