libcairo-ruby (1.8.1-1) debian-dir only changes

Summary

 debian/changelog              |  128 ++++++++++++++++++++++++++++++++++++++++++
 debian/compat                 |    1 
 debian/control                |   34 +++++++++++
 debian/copyright              |   79 +++++++++++++++++++++++++
 debian/libcairo-ruby.examples |    1 
 debian/rules                  |    7 ++
 debian/watch                  |    2 
 7 files changed, 252 insertions(+)

    
download this patch

Patch contents

--- libcairo-ruby-1.8.1.orig/debian/copyright
+++ libcairo-ruby-1.8.1/debian/copyright
@@ -0,0 +1,79 @@
+This package originally Debianised by 
+Thierry Reding <thierry@doppeltgemoppelt.de>, on November 20th, 2005.
+
+Originally obtained from <http://cairographics.org/rcairo>.
+
+Copyright:
+
+    Rcairo is copyrighted free software by Evan Marin, Øyvind Kolås,
+    MenTaLguY and Kouhei Sutou, distributed under the same conditions as
+    ruby; which follow:
+
+-----------------------------------------------------------------------------
+
+Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
+You can redistribute it and/or modify it under either the terms of the GPL
+(see the file GPL), or the conditions below:
+
+  1. You may make and give away verbatim copies of the source form of the
+     software without restriction, provided that you duplicate all of the
+     original copyright notices and associated disclaimers.
+
+  2. You may modify your copy of the software in any way, provided that
+     you do at least ONE of the following:
+
+       a) place your modifications in the Public Domain or otherwise
+          make them Freely Available, such as by posting said
+	  modifications to Usenet or an equivalent medium, or by allowing
+	  the author to include your modifications in the software.
+
+       b) use the modified software only within your corporation or
+          organization.
+
+       c) give non-standard binaries non-standard names, with
+          instructions on where to get the original software distribution.
+
+       d) make other distribution arrangements with the author.
+
+  3. You may distribute the software in object code or binary form,
+     provided that you do at least ONE of the following:
+
+       a) distribute the binaries and library files of the software,
+	  together with instructions (in the manual page or equivalent)
+	  on where to get the original distribution.
+
+       b) accompany the distribution with the machine-readable source of
+	  the software.
+
+       c) give non-standard binaries non-standard names, with
+          instructions on where to get the original software distribution.
+
+       d) make other distribution arrangements with the author.
+
+  4. You may modify and include the part of the software into any other
+     software (possibly commercial).  But some files in the distribution
+     are not written by the author, so that they are not under these terms.
+
+     For the list of those files and their copying conditions, see the
+     file LEGAL.
+
+  5. The scripts and library files supplied as input to or produced as 
+     output from the software do not automatically fall under the
+     copyright of the software, but belong to whomever generated them, 
+     and may be sold commercially, and may be aggregated with this
+     software.
+
+  6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
+     IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+     PURPOSE.
+
+-----------------------------------------------------------------------------
+
+On Debian systems, the full text of the GNU General Public License can be
+found at /usr/share/common-licenses/GPL.
+
+The setup.rb file included in the package's source is released under the GNU
+LGPL. On Debian systems, the complete text of the GNU Lesser General Public
+can be found in `/usr/share/common-licenses/LGPL'.
+
--- libcairo-ruby-1.8.1.orig/debian/compat
+++ libcairo-ruby-1.8.1/debian/compat
@@ -0,0 +1 @@
+5
--- libcairo-ruby-1.8.1.orig/debian/rules
+++ libcairo-ruby-1.8.1/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+#
+# CDBS file to build the RCairo packages.
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+include /usr/share/ruby-pkg-tools/1/class/ruby-extconf-rb.mk
--- libcairo-ruby-1.8.1.orig/debian/watch
+++ libcairo-ruby-1.8.1/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://cairographics.org/releases/rcairo-(.*)\.tar\.gz
--- libcairo-ruby-1.8.1.orig/debian/libcairo-ruby.examples
+++ libcairo-ruby-1.8.1/debian/libcairo-ruby.examples
@@ -0,0 +1 @@
+samples/*
--- libcairo-ruby-1.8.1.orig/debian/control
+++ libcairo-ruby-1.8.1/debian/control
@@ -0,0 +1,34 @@
+Source: libcairo-ruby
+Section: ruby
+Priority: optional
+Maintainer: Paul van Tilburg <paulvt@debian.org>
+Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
+Build-Depends: debhelper (>> 5), ruby, ruby1.8, ruby1.8-dev, cdbs, ruby-pkg-tools (>= 0.14), libcairo2-dev (>= 1.6.0)
+Standards-Version: 3.8.1
+Homepage: http://cairographics.org/rcairo/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-ruby-extras/trunk/libcairo-ruby/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-ruby-extras/trunk/libcairo-ruby/
+
+Package: libcairo-ruby
+Architecture: all
+Depends: libcairo-ruby1.8, ${misc:Depends}
+Description: Cairo bindings for the Ruby language
+ Cairo is a multi-platform library providing anti-aliased vector-based
+ rendering for multiple target backends. This package contains libraries for
+ using Cairo with the Ruby programming language. It is most likely useful in
+ conjunction with Ruby bindings for other libraries such as GTK+.
+ .
+ This is a dependency package which depends on Debian's default version of Ruby
+ (currently 1.8).
+
+Package: libcairo-ruby1.8
+Architecture: any
+Depends: ruby1.8, ${shlibs:Depends}, ${misc:Depends}
+Replaces: libcairo-ruby (<= 1.0.0-1)
+Description: Cairo bindings for the Ruby language
+ Cairo is a multi-platform library providing anti-aliased vector-based
+ rendering for multiple target backends. This package contains libraries for
+ using Cairo with the Ruby programming language. It is most likely useful in
+ conjunction with Ruby bindings for other libraries such as GTK+.
+ .
+ This package is built for Ruby 1.8.
--- libcairo-ruby-1.8.1.orig/debian/changelog
+++ libcairo-ruby-1.8.1/debian/changelog
@@ -0,0 +1,128 @@
+libcairo-ruby (1.8.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * Drop package for Ruby 1.9.1 since the test suite doesn't pass. Closes: #565830.
+
+ -- Lucas Nussbaum <lucas@lucas-nussbaum.net>  Sat, 13 Feb 2010 10:15:01 +0100
+
+libcairo-ruby (1.8.0-1) unstable; urgency=low
+
+  [ Gunnar Wolf ]
+  * Changed section to Ruby as per ftp-masters' request
+
+  [ Paul van Tilburg ]
+  * New upstream release.
+  * debian/patches:
+    - Dropped patch 01_fix-st.h-ruby1.9-paths: fixed by upstream. 
+  * debian/control:
+    - Bumped standards version to 3.8.1; no changes required.
+    - Added ${misc:Depends} to the depends of libcairo-ruby (binary).
+
+ -- Paul van Tilburg <paulvt@debian.org>  Tue, 05 May 2009 12:14:31 +0200
+
+libcairo-ruby (1.6.3-1) unstable; urgency=low
+
+  [ Paul van Tilburg ]
+  * New upstream release.
+  * Dropped patch 01_fix-ftools-extconf: fixed upsteam.
+  * Added patch 01_fix-st.h-ruby1.9-paths.
+  * Bumped build-dependancy on libcairo2 to >= 1.6.0. 
+  * Fixed the too long line in debian/copyright.
+  * Bumped standards version to 3.8.0; no changes required.
+
+  [ Lucas Nussbaum ]
+  * Build-depend on r-p-t >= 0.14, to fix the ruby1.9
+    libs install problem.
+
+ -- Paul van Tilburg <paulvt@debian.org>  Sun, 10 Aug 2008 15:24:03 +0200
+
+libcairo-ruby (1.5.1-1) unstable; urgency=low
+
+  [ Arnaud Cornet ]
+  * Use new Homepage dpkg header.
+
+  [ Paul van Tilburg ]
+  * New upstream release.
+  * debian/patches:
+    - Dropped patches 002-missing-decl-and-string-len-struct.patch,
+      001-extconf-ruby1.9.patch: incorporated upstream.
+    - Added the FTBFS fix by Marc 'HE' Brockschmidt as 
+      01_fix-ftools-extconf.diff.
+  * Bumped standards version to 3.7.3; no changes required.
+  * Added Vcs-* headers to debian/control.
+
+ -- Paul van Tilburg <paulvt@debian.org>  Mon, 31 Mar 2008 22:45:22 +0200
+
+libcairo-ruby (1.5.0-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS with ruby1.9, which doesn't have ftools anymore. Make both
+    1.8 and 1.9 builds use fileutils.rb instead. (Closes: #458679)
+
+ -- Marc 'HE' Brockschmidt <he@debian.org>  Sat, 08 Mar 2008 19:52:34 +0100
+
+libcairo-ruby (1.5.0-1) unstable; urgency=low
+
+  * New upstream release.
+  * Bumped libcairo2-dev requirement to >= 1.2.0.
+  * Enabled CDBS simple patch sys in debian/rules.
+  * Added patch 001-extconf-ruby1.9.patch to fix the API incompatbility
+    with ruby1.9.
+  * Added patch 002-missing-decl-and-string-len-struct.patch to add a
+    missing variable declaration and fix struct member errors
+    (courtesy of Michael Ablassmeier).
+
+ -- Paul van Tilburg <paulvt@debian.org>  Wed, 13 Jun 2007 14:26:29 +0100
+
+libcairo-ruby (1.4.1-1) unstable; urgency=low
+
+  * New upstream release:
+    - Modified debian/rules to switch to extconf installation
+  * Adapted debian/control, debian/rules, and removed debian/control.in
+    to drop the Uploaders rule.
+  * Changed priority to optional, no idea why it was extras.
+  * Added debian/libcairo-ruby.examples to install the examples using this
+    file, not directly from debian/rules.
+  * New maintainer: me! I'm taking over from Thierry Reding. 
+
+ -- Paul van Tilburg <paulvt@debian.org>  Wed, 18 Apr 2007 21:56:48 +0200
+
+libcairo-ruby (1.2.0-1) unstable; urgency=low
+
+  * New upstream release.
+  * Fixed the URL in the description (courtesy of Tomas Pospisek,
+    closes: #361857).
+  * Bumped standards version to 3.7.2; no changes required. 
+
+ -- Paul van Tilburg <paulvt@debian.org>  Mon,  3 Jul 2006 12:10:17 +0200
+
+libcairo-ruby (1.0.0-3) unstable; urgency=low
+
+  [ Thierry Reding ]
+  * libcairo-ruby1.8 now replaces libcairo-ruby (<= 1.0.0-1) to make it
+    installable again. Thanks to David Weinehall and Adam Majer for pointing
+    this out. (Closes: #361192)
+
+ -- Paul van Tilburg <paulvt@debian.org>  Mon, 10 Apr 2006 21:07:27 +0200
+
+libcairo-ruby (1.0.0-2) unstable; urgency=low
+
+  [ Thierry Reding ]
+  * Now uses CDBS for packaging.
+  * Provides packages linked against Ruby 1.8 and Ruby 1.9.
+  * Set myself as maintainer, the Debian Ruby/Extras Team as uploaders.
+  * Added versioned build-dependency on ruby-pkg-tools (>= 0.8) in order for
+    the @RUBY_EXTRAS_TEAM@ marker to be recognized.
+
+ -- Thierry Reding <thierry@doppeltgemoppelt.de>  Wed, 22 Mar 2006 13:39:17 +0100
+
+libcairo-ruby (1.0.0-1) unstable; urgency=low
+
+  * Initial release. (Closes: #342466)
+  * Uses "The Uploaders Rule" to automatically fill in the Uploaders: field in
+    the `debian/control' file so that all pkg-ruby-extras team members will be
+    listed.
+  * Added a note about the `setup.rb' script's license (LGPL) to the
+    `debian/copyright' file.
+
+ -- Thierry Reding <thierry@doppeltgemoppelt.de>  Wed,  4 Jan 2006 23:13:45 +0100