libvorbisfile-ruby (0.2-8.1) debian-dir only changes

Summary

 debian/changelog                      |   59 ++++++++++++++++++
 debian/control                        |   39 ++++++++++++
 debian/copyright                      |   25 +++++++
 debian/dirs                           |    1 
 debian/docs                           |    1 
 debian/examples                       |    1 
 debian/libvorbisfile-ruby1.6.docs     |    1 
 debian/libvorbisfile-ruby1.6.examples |    1 
 debian/libvorbisfile-ruby1.8.docs     |    1 
 debian/libvorbisfile-ruby1.8.examples |    1 
 debian/rules                          |  107 ++++++++++++++++++++++++++++++++++
 debian/watch                          |    9 ++
 12 files changed, 246 insertions(+)

    
download this patch

Patch contents

--- libvorbisfile-ruby-0.2.orig/debian/dirs
+++ libvorbisfile-ruby-0.2/debian/dirs
@@ -0,0 +1 @@
+
--- libvorbisfile-ruby-0.2.orig/debian/docs
+++ libvorbisfile-ruby-0.2/debian/docs
@@ -0,0 +1 @@
+README
--- libvorbisfile-ruby-0.2.orig/debian/control
+++ libvorbisfile-ruby-0.2/debian/control
@@ -0,0 +1,39 @@
+Source: libvorbisfile-ruby
+Section: interpreters
+Priority: optional
+Maintainer: Tatsuki Sugiura <sugi@nemui.org>
+Build-Depends: debhelper (>> 4.0.0), ruby1.8, ruby1.8-dev, libvorbis-dev
+Standards-Version: 3.7.2
+
+Package: libvorbisfile-ruby1.8
+Architecture: any
+Provides: libvorbisfile-ruby
+Conflicts: libvorbisfile-ruby (<< 0.2-7)
+Replaces: libvorbisfile-ruby (<< 0.2-7)
+Depends: ${shlibs:Depends}
+Description: Ogg Vorbis support library for Ruby
+ libvorbisfile-ruby is a decoder library provided with the Ogg Vorbis
+ distribution. See http://xiph.org/ogg/vorbis/ for details.
+ .
+ The API of this extension is virtually identical to that of
+ vorbisfile.h, with a couple of exceptions:
+ .
+  * Prefixes have been removed (ov_open -> open).
+  * The OggVorbis_File parameter is removed, as the VorbisFile object
+    encapsulates this.
+
+Package: libvorbisfile-ruby
+Architecture: any
+Depends: libvorbisfile-ruby1.8
+Description: Ogg Vorbis support library for Ruby
+ libvorbisfile-ruby is a decoder library provided with the Ogg Vorbis
+ distribution. See http://xiph.org/ogg/vorbis/ for details.
+ .
+ The API of this extension is virtually identical to that of
+ vorbisfile.h, with a couple of exceptions:
+ .
+  * Prefixes have been removed (ov_open -> open).
+  * The OggVorbis_File parameter is removed, as the VorbisFile object
+    encapsulates this.
+ .
+ This is dummy package for each ruby version.
--- libvorbisfile-ruby-0.2.orig/debian/rules
+++ libvorbisfile-ruby-0.2/debian/rules
@@ -0,0 +1,107 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+export DH_COMPAT=4
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+
+ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -g
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	INSTALL_PROGRAM += -s
+endif
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+	#./configure --host=$(DEB_HOST_GNU_TYPE) \
+	#	--build=$(DEB_BUILD_GNU_TYPE) \
+	#	--prefix=/usr \
+	#	--mandir=\$${prefix}/share/man \
+	#	--infodir=\$${prefix}/share/info
+
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	# Add here commands to compile the package.
+	#$(MAKE)
+	#/usr/bin/docbook-to-man debian/libvorbisfile-ruby.sgml > libvorbisfile-ruby.1
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) distclean
+
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/libvorbisfile-ruby.
+	ruby1.8 extconf.rb --host=$(DEB_HOST_GNU_TYPE) \
+		--build=$(DEB_BUILD_GNU_TYPE) \
+		--prefix=/usr \
+		--mandir=\$${prefix}/share/man \
+		--infodir=\$${prefix}/share/info
+	$(MAKE)
+	$(MAKE) install prefix=$(CURDIR)/debian/libvorbisfile-ruby1.8/usr \
+		sitedir='$$(prefix)/lib/ruby'
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+#	dh_installdebconf	
+	dh_installdocs
+	dh_installexamples
+#	dh_installmenu
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_installinit
+#	dh_installcron
+#	dh_installman
+#	dh_installinfo
+#	dh_undocumented
+	dh_installchangelogs ChangeLog
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_makeshlibs
+	dh_installdeb
+#	dh_perl
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
--- libvorbisfile-ruby-0.2.orig/debian/watch
+++ libvorbisfile-ruby-0.2/debian/watch
@@ -0,0 +1,9 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# Site		Directory		Pattern			Version	Script
+version=2
+http://rikkus.info/ruby_vorbisfile.html \
+	(?:.*/)?ruby-vorbisfile-([0-9.]+)\.tar\.gz \
+	debian uupdate
+
--- libvorbisfile-ruby-0.2.orig/debian/changelog
+++ libvorbisfile-ruby-0.2/debian/changelog
@@ -0,0 +1,59 @@
+libvorbisfile-ruby (0.2-8.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove ruby.6 package (Closes: #366581)
+  * Bump standards version
+  * Switch to debhelper 4
+
+ -- Julien Danjou <acid@debian.org>  Sun, 13 Aug 2006 13:26:27 +0200
+
+libvorbisfile-ruby (0.2-8) unstable; urgency=low
+
+  * default version has been changed to 1.8
+
+ -- Tatsuki Sugiura <sugi@nemui.org>  Sun, 21 Sep 2003 00:40:12 +0900
+
+libvorbisfile-ruby (0.2-7) unstable; urgency=low
+
+  * package has been splitted for each ruby version.
+  * fix build-depends for each ruby version.
+
+ -- Tatsuki Sugiura <sugi@nemui.org>  Thu, 11 Sep 2003 17:15:18 +0900
+
+libvorbisfile-ruby (0.2-6) unstable; urgency=low
+
+  * fix in debian/watch
+
+ -- Tatsuki Sugiura <sugi@nemui.org>  Wed, 23 Jul 2003 20:23:28 +0900
+
+libvorbisfile-ruby (0.2-5) unstable; urgency=low
+
+  * minor fix in description
+
+ -- Tatsuki Sugiura <sugi@nemui.org>  Mon,  7 Apr 2003 16:15:07 +0900
+
+libvorbisfile-ruby (0.2-4) unstable; urgency=low
+
+  * rebuilded for libvorbis0a (Closes: #186536)
+
+ -- Tatsuki Sugiura <sugi@nemui.org>  Fri, 28 Mar 2003 19:07:56 +0900
+
+libvorbisfile-ruby (0.2-3) unstable; urgency=low
+
+  * small fix in description (Closes: #156399)
+  * ruby has been added to Build-Depends (Closes: #155730)
+
+ -- Tatsuki Sugiura <sugi@nemui.org>  Tue, 20 Aug 2002 20:54:47 +0900
+
+libvorbisfile-ruby (0.2-2) unstable; urgency=low
+
+  * upload official debian archive (Closes: #154857)
+
+ -- Tatsuki Sugiura <sugi@nemui.org>  Wed, 31 Jul 2002 16:14:54 +0900
+
+libvorbisfile-ruby (0.2-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Tatsuki Sugiura <sugi@nemui.org>  Sun, 14 Jul 2002 00:59:43 +0900
+
--- libvorbisfile-ruby-0.2.orig/debian/libvorbisfile-ruby1.6.examples
+++ libvorbisfile-ruby-0.2/debian/libvorbisfile-ruby1.6.examples
@@ -0,0 +1 @@
+test.rb
--- libvorbisfile-ruby-0.2.orig/debian/libvorbisfile-ruby1.6.docs
+++ libvorbisfile-ruby-0.2/debian/libvorbisfile-ruby1.6.docs
@@ -0,0 +1 @@
+README
--- libvorbisfile-ruby-0.2.orig/debian/copyright
+++ libvorbisfile-ruby-0.2/debian/copyright
@@ -0,0 +1,25 @@
+This package was debianized by Tatsuki Sugiura <sugi@nemui.org> on
+Sun, 14 Jul 2002 00:59:43 +0900.
+
+It was downloaded from http://rikkus.info/ruby_vorbisfile.html
+
+Upstream Author: Rik Hemsley (rikkus) <rik@kde.org>
+
+Copyright:
+  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 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.
+
--- libvorbisfile-ruby-0.2.orig/debian/libvorbisfile-ruby1.8.docs
+++ libvorbisfile-ruby-0.2/debian/libvorbisfile-ruby1.8.docs
@@ -0,0 +1 @@
+README
--- libvorbisfile-ruby-0.2.orig/debian/examples
+++ libvorbisfile-ruby-0.2/debian/examples
@@ -0,0 +1 @@
+test.rb
--- libvorbisfile-ruby-0.2.orig/debian/libvorbisfile-ruby1.8.examples
+++ libvorbisfile-ruby-0.2/debian/libvorbisfile-ruby1.8.examples
@@ -0,0 +1 @@
+test.rb