[DRE-commits] r5408 - in trunk/libsequel-ruby: . bin debian

Deepak Tripathi deepak-guest at alioth.debian.org
Tue May 25 04:37:12 UTC 2010


Author: deepak-guest
Date: 2010-05-25 04:37:10 +0000 (Tue, 25 May 2010)
New Revision: 5408

Added:
   trunk/libsequel-ruby/debian/
   trunk/libsequel-ruby/debian/changelog
   trunk/libsequel-ruby/debian/compat
   trunk/libsequel-ruby/debian/control
   trunk/libsequel-ruby/debian/copyright
   trunk/libsequel-ruby/debian/libsequel-ruby1.9.debhelper.log
   trunk/libsequel-ruby/debian/libsequel-ruby1.9.substvars
   trunk/libsequel-ruby/debian/rules
   trunk/libsequel-ruby/debian/source.lintian-overrides
   trunk/libsequel-ruby/debian/watch
Modified:
   trunk/libsequel-ruby/bin/sequel
Log:
[svn-inject] Applying Debian modifications to trunk

Modified: trunk/libsequel-ruby/bin/sequel
===================================================================
--- trunk/libsequel-ruby/bin/sequel	2010-05-25 04:36:47 UTC (rev 5407)
+++ trunk/libsequel-ruby/bin/sequel	2010-05-25 04:37:10 UTC (rev 5408)
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby
+#! /usr/bin/ruby1.8
 
 require 'rubygems'
 require 'optparse'


Property changes on: trunk/libsequel-ruby/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: trunk/libsequel-ruby/debian/changelog
===================================================================
--- trunk/libsequel-ruby/debian/changelog	                        (rev 0)
+++ trunk/libsequel-ruby/debian/changelog	2010-05-25 04:37:10 UTC (rev 5408)
@@ -0,0 +1,60 @@
+libsequel-ruby (3.6.0-4) UNRELEASED; urgency=low
+
+  * New maintainer (Closes: #570796)
+   
+
+ -- Deepak Tripathi <apenguinlinux at gmail.com>  Tue, 25 May 2010 09:55:00 +0530
+
+libsequel-ruby (3.6.0-3) unstable; urgency=low
+
+  * Orphaning.
+
+ -- Sebastien Delafond <seb at debian.org>  Sun, 21 Feb 2010 14:22:54 +0100
+
+libsequel-ruby (3.6.0-2) unstable; urgency=low
+
+  * Move to ruby1.9.1 (Closes: #569848).
+  * Bumped up Standards-Version.
+  * Removed unused lintian override.
+
+ -- Sebastien Delafond <seb at debian.org>  Tue, 16 Feb 2010 11:12:01 +0100
+
+libsequel-ruby (3.6.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Sebastien Delafond <seb at debian.org>  Fri, 20 Nov 2009 16:00:40 +0100
+
+libsequel-ruby (3.5.0-2) unstable; urgency=low
+
+  * Relax Build-Dep on debhelper.
+  * Fix duplicate /usr/bin/sequel between the ruby1.8 and 1.9 packages
+    (Closes: #550627).
+
+ -- Sebastien Delafond <seb at debian.org>  Mon, 12 Oct 2009 17:33:29 +0200
+
+libsequel-ruby (3.5.0-1) unstable; urgency=low
+
+  * New upstream release.
+  * Switched to cdbs & ruby-pkg-tools.
+  * Bumped up Standards revision.
+  * Added Homepage: field.
+
+ -- Sebastien Delafond <seb at debian.org>  Thu, 08 Oct 2009 14:14:46 +0200
+
+libsequel-ruby (3.0.0-1) unstable; urgency=low
+
+  * New upstream release.
+  * Depend on rubygems (Closes: #529583).
+  * Conflict with libsequel-core-ruby.
+  * Bumped up standards revision and debhelper compatibility level.
+  * Changed section to "ruby".
+  * Added watch file.
+
+ -- Sebastien Delafond <seb at debian.org>  Wed, 20 May 2009 02:24:59 -0700
+
+libsequel-ruby (1.5.1-1) unstable; urgency=low
+
+  * Initial Release (Closes: #478783)
+
+ -- Sebastien Delafond <seb at debian.org>  Wed, 07 May 2008 09:36:27 -0700

Added: trunk/libsequel-ruby/debian/compat
===================================================================
--- trunk/libsequel-ruby/debian/compat	                        (rev 0)
+++ trunk/libsequel-ruby/debian/compat	2010-05-25 04:37:10 UTC (rev 5408)
@@ -0,0 +1 @@
+6

Added: trunk/libsequel-ruby/debian/control
===================================================================
--- trunk/libsequel-ruby/debian/control	                        (rev 0)
+++ trunk/libsequel-ruby/debian/control	2010-05-25 04:37:10 UTC (rev 5408)
@@ -0,0 +1,65 @@
+Source: libsequel-ruby
+Section: ruby
+Priority: optional
+Maintainer: Debian QA Group <packages at qa.debian.org>
+Build-Depends: debhelper (>= 6), ruby-pkg-tools (>= 0.17), cdbs, libsetup-ruby1.8
+Build-Depends-Indep: ruby1.8, ruby1.9.1
+Standards-Version: 3.8.4
+Homepage: http://rubyforge.org/projects/sequel
+
+Package: libsequel-ruby1.9.1
+Architecture: all
+Depends: ${misc:Depends}, ruby1.9.1
+Conflicts: libsequel-core-ruby1.8, libsequel-core-ruby
+Description: Lightweight database access toolkit (ruby1.9.1)
+ Sequel is a lightweight database access toolkit for Ruby. Sequel
+ provides thread safety, connection pooling and a concise DSL for
+ constructing database queries and table schemas. Sequel also includes
+ a lightweight but comprehensive ORM layer for mapping records to Ruby
+ objects using the ActiveRecord pattern.
+ .
+ Sequel makes it easy to deal with multiple records without having to
+ break your teeth on SQL.
+ .
+ Sequel currently has adapters for ADO, DB2, DBI, Informix, JDBC,
+ MySQL, ODBC, OpenBase, Oracle, PostgreSQL and SQLite3.
+ .
+ This is the package for ruby1.9.1.
+
+Package: libsequel-ruby1.8
+Architecture: all
+Depends: ${misc:Depends}, ruby1.8
+Conflicts: libsequel-core-ruby1.8, libsequel-core-ruby
+Description: Lightweight database access toolkit (ruby1.8)
+ Sequel is a lightweight database access toolkit for Ruby. Sequel
+ provides thread safety, connection pooling and a concise DSL for
+ constructing database queries and table schemas. Sequel also includes
+ a lightweight but comprehensive ORM layer for mapping records to Ruby
+ objects using the ActiveRecord pattern.
+ .
+ Sequel makes it easy to deal with multiple records without having to
+ break your teeth on SQL.
+ .
+ Sequel currently has adapters for ADO, DB2, DBI, Informix, JDBC,
+ MySQL, ODBC, OpenBase, Oracle, PostgreSQL and SQLite3.
+ .
+ This is the package for ruby1.8.
+
+Package: libsequel-ruby
+Architecture: all
+Depends: ${misc:Depends}, libsequel-ruby1.8
+Description: Lightweight database access toolkit for Ruby
+ Sequel is a lightweight database access toolkit for Ruby. Sequel
+ provides thread safety, connection pooling and a concise DSL for
+ constructing database queries and table schemas. Sequel also includes
+ a lightweight but comprehensive ORM layer for mapping records to Ruby
+ objects using the ActiveRecord pattern.
+ .
+ Sequel makes it easy to deal with multiple records without having to
+ break your teeth on SQL.
+ .
+ Sequel currently has adapters for ADO, DB2, DBI, Informix, JDBC,
+ MySQL, ODBC, OpenBase, Oracle, PostgreSQL and SQLite3.
+ .
+ This package provide documentation and depends on the package 
+ containing the actual library for the default Ruby version.

Added: trunk/libsequel-ruby/debian/copyright
===================================================================
--- trunk/libsequel-ruby/debian/copyright	                        (rev 0)
+++ trunk/libsequel-ruby/debian/copyright	2010-05-25 04:37:10 UTC (rev 5408)
@@ -0,0 +1,28 @@
+This package was debianized by Sebastien Delafond <seb at debian.org> on
+Wed, 07 May 2008 09:39:28 -0700.
+
+It was downloaded from <URL:http://rubyforge.org/projects/sequel/>
+
+Upstream Authors: Sharon Rosner, Jeremy Evans
+
+Copyright:
+
+  Copyright (c) 2007-2008 Sharon Rosner
+  Copyright (c) 2008 Jeremy Evans
+
+  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.

Added: trunk/libsequel-ruby/debian/libsequel-ruby1.9.debhelper.log
===================================================================
--- trunk/libsequel-ruby/debian/libsequel-ruby1.9.debhelper.log	                        (rev 0)
+++ trunk/libsequel-ruby/debian/libsequel-ruby1.9.debhelper.log	2010-05-25 04:37:10 UTC (rev 5408)
@@ -0,0 +1,31 @@
+dh_installdirs
+dh_installdirs
+dh_installdocs
+dh_installexamples
+dh_installman
+dh_installinfo
+dh_installmenu
+dh_installcron
+dh_installinit
+dh_installdebconf
+dh_installemacsen
+dh_installcatalogs
+dh_installpam
+dh_installlogrotate
+dh_installlogcheck
+dh_installchangelogs
+dh_installudev
+dh_lintian
+dh_install
+dh_link
+dh_installmime
+dh_strip
+dh_compress
+dh_fixperms
+dh_makeshlibs
+dh_installdeb
+dh_perl
+dh_shlibdeps
+dh_gencontrol
+dh_md5sums
+dh_builddeb

Added: trunk/libsequel-ruby/debian/libsequel-ruby1.9.substvars
===================================================================
--- trunk/libsequel-ruby/debian/libsequel-ruby1.9.substvars	                        (rev 0)
+++ trunk/libsequel-ruby/debian/libsequel-ruby1.9.substvars	2010-05-25 04:37:10 UTC (rev 5408)
@@ -0,0 +1 @@
+misc:Depends=

Added: trunk/libsequel-ruby/debian/rules
===================================================================
--- trunk/libsequel-ruby/debian/rules	                        (rev 0)
+++ trunk/libsequel-ruby/debian/rules	2010-05-25 04:37:10 UTC (rev 5408)
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk
+
+binary-post-install/libsequel-ruby1.8::
+	mv debian/libsequel-ruby1.8/usr/bin/sequel debian/libsequel-ruby1.8/usr/bin/sequel1.8
+
+binary-post-install/libsequel-ruby1.9.1::
+	mv debian/libsequel-ruby1.9.1/usr/bin/sequel debian/libsequel-ruby1.9.1/usr/bin/sequel1.9.1


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

Added: trunk/libsequel-ruby/debian/source.lintian-overrides
===================================================================
--- trunk/libsequel-ruby/debian/source.lintian-overrides	                        (rev 0)
+++ trunk/libsequel-ruby/debian/source.lintian-overrides	2010-05-25 04:37:10 UTC (rev 5408)
@@ -0,0 +1,2 @@
+# libsetup-ruby1.8 is needed to clean
+#libsequel-ruby source: build-depends-without-arch-dep libsetup-ruby1.8

Added: trunk/libsequel-ruby/debian/watch
===================================================================
--- trunk/libsequel-ruby/debian/watch	                        (rev 0)
+++ trunk/libsequel-ruby/debian/watch	2010-05-25 04:37:10 UTC (rev 5408)
@@ -0,0 +1,4 @@
+version=3
+
+http://rubyforge.org/frs/?group_id=3168&release_id=34124 \
+  .*sequel-(.*)\.tgz.*




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