[DRE-commits] r3431 - in packages-wip/libzoom-ruby/trunk: . debian

Ryan Niebur ryan52-guest at alioth.debian.org
Wed Apr 22 03:58:41 UTC 2009


Author: ryan52-guest
Date: 2009-04-22 03:58:41 +0000 (Wed, 22 Apr 2009)
New Revision: 3431

Added:
   packages-wip/libzoom-ruby/trunk/debian/
   packages-wip/libzoom-ruby/trunk/debian/changelog
   packages-wip/libzoom-ruby/trunk/debian/compat
   packages-wip/libzoom-ruby/trunk/debian/control
   packages-wip/libzoom-ruby/trunk/debian/copyright
   packages-wip/libzoom-ruby/trunk/debian/docs
   packages-wip/libzoom-ruby/trunk/debian/examples
   packages-wip/libzoom-ruby/trunk/debian/repack.sh
   packages-wip/libzoom-ruby/trunk/debian/rules
   packages-wip/libzoom-ruby/trunk/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: packages-wip/libzoom-ruby/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages-wip/libzoom-ruby/trunk/debian/changelog
===================================================================
--- packages-wip/libzoom-ruby/trunk/debian/changelog	                        (rev 0)
+++ packages-wip/libzoom-ruby/trunk/debian/changelog	2009-04-22 03:58:41 UTC (rev 3431)
@@ -0,0 +1,6 @@
+libzoom-ruby (0.4.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #)
+
+ -- Ryan Niebur <ryanryan52 at gmail.com>  Sat, 08 Nov 2008 23:13:16 -0800
+

Added: packages-wip/libzoom-ruby/trunk/debian/compat
===================================================================
--- packages-wip/libzoom-ruby/trunk/debian/compat	                        (rev 0)
+++ packages-wip/libzoom-ruby/trunk/debian/compat	2009-04-22 03:58:41 UTC (rev 3431)
@@ -0,0 +1 @@
+7

Added: packages-wip/libzoom-ruby/trunk/debian/control
===================================================================
--- packages-wip/libzoom-ruby/trunk/debian/control	                        (rev 0)
+++ packages-wip/libzoom-ruby/trunk/debian/control	2009-04-22 03:58:41 UTC (rev 3431)
@@ -0,0 +1,21 @@
+Source: libzoom-ruby
+Section: ruby
+Priority: optional
+Maintainer: Ryan Niebur <ryanryan52 at gmail.com>
+Build-Depends: debhelper (>= 7), libyaz3-dev, ruby1.8-dev, cdbs, ruby-pkg-tools
+Standards-Version: 3.8.1
+Homepage: http://ruby-zoom.rubyforge.org/
+
+Package: libzoom-ruby1.8
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Ruby binding to the Z39.50 Object-Orientation Model
+ Ruby/ZOOM provides a Ruby binding to the Z39.50 Object-Orientation
+ Model (ZOOM), an abstract object-oriented programming interface to a
+ subset of the services specified by the Z39.50 standard, also known
+ as the international standard ISO 23950.
+ .
+ Z39.50 is a client-server protocol for searching and retrieving
+ information from remote computer databases. It is covered by ANSI/NISO
+ standard Z39.50, and ISO standard 23950. The standard's maintenance
+ agency is the Library of Congress.

Added: packages-wip/libzoom-ruby/trunk/debian/copyright
===================================================================
--- packages-wip/libzoom-ruby/trunk/debian/copyright	                        (rev 0)
+++ packages-wip/libzoom-ruby/trunk/debian/copyright	2009-04-22 03:58:41 UTC (rev 3431)
@@ -0,0 +1,17 @@
+Format-Specification:
+    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Maintainer: Laurent Sansonetti <lrz at chopine.be>
+Upstream-Source: http://rubyforge.org/projects/ruby-zoom/
+Upstream-Name: ruby-zoom
+
+Files: *
+Copyright: 2005 Laurent Sansonetti <lrz at chopine.be>
+License: LGPL-2.1
+
+License: LGPL-2.1+
+    This library is free software.
+    You can distribute/modify this program under the terms of
+    the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1.
+    .
+    A copy of the LGPL-2.1 can be found at /usr/share/common-licenses/LGPL-2.1 on
+    any Debian system.

Added: packages-wip/libzoom-ruby/trunk/debian/docs
===================================================================
--- packages-wip/libzoom-ruby/trunk/debian/docs	                        (rev 0)
+++ packages-wip/libzoom-ruby/trunk/debian/docs	2009-04-22 03:58:41 UTC (rev 3431)
@@ -0,0 +1 @@
+README

Added: packages-wip/libzoom-ruby/trunk/debian/examples
===================================================================
--- packages-wip/libzoom-ruby/trunk/debian/examples	                        (rev 0)
+++ packages-wip/libzoom-ruby/trunk/debian/examples	2009-04-22 03:58:41 UTC (rev 3431)
@@ -0,0 +1 @@
+sample/*

Added: packages-wip/libzoom-ruby/trunk/debian/repack.sh
===================================================================
--- packages-wip/libzoom-ruby/trunk/debian/repack.sh	                        (rev 0)
+++ packages-wip/libzoom-ruby/trunk/debian/repack.sh	2009-04-22 03:58:41 UTC (rev 3431)
@@ -0,0 +1,33 @@
+#!/bin/bash
+
+# bits and pieces stolen from pkg-perl :)
+
+set -e
+set -u
+
+if ! grep -q .gem$ <(echo "$3"); then
+    echo "already in .tar.gz format, exiting"
+    exit
+fi
+
+VER="$2"
+FILE="$3"
+FILE="$(readlink -f $FILE)"
+PKG=`dpkg-parsechangelog|grep ^Source:|sed 's/^Source: //'`
+REPACK_DIR="$PKG-$VER.orig" # DevRef § 6.7.8.2
+DIR=`mktemp -d ./tmpRepackXXXXXX`
+DIR=$(readlink -f $DIR)
+trap "rm -rf \"$DIR\"" QUIT INT EXIT
+FINAL="$(dirname $FILE)/${PKG}_$VER.orig.tar.gz"
+cd $DIR
+tar xf $FILE 2>/dev/null
+mkdir $REPACK_DIR
+cd $REPACK_DIR
+tar xzf ../data.tar.gz 2>/dev/null
+for i in $(find .); do touch $i; done
+cd ..
+tar cf new.tar $REPACK_DIR
+gzip -9 new.tar
+mv new.tar.gz $FINAL
+echo "Repacked to ../$(basename $FINAL)"
+

Added: packages-wip/libzoom-ruby/trunk/debian/rules
===================================================================
--- packages-wip/libzoom-ruby/trunk/debian/rules	                        (rev 0)
+++ packages-wip/libzoom-ruby/trunk/debian/rules	2009-04-22 03:58:41 UTC (rev 3431)
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+include /usr/share/ruby-pkg-tools/1/class/ruby-extconf-rb.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+DEB_RUBY_SETUP_CMD = src/extconf.rb


Property changes on: packages-wip/libzoom-ruby/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages-wip/libzoom-ruby/trunk/debian/watch
===================================================================
--- packages-wip/libzoom-ruby/trunk/debian/watch	                        (rev 0)
+++ packages-wip/libzoom-ruby/trunk/debian/watch	2009-04-22 03:58:41 UTC (rev 3431)
@@ -0,0 +1,3 @@
+version=3
+http://rubyforge.org/frs/?group_id=592 .*/(?:ruby-)?zoom-([0-9.]+)\.(?:gem|tar\.gz) debian debian/repack.sh
+




More information about the Pkg-ruby-extras-commits mailing list