[DRE-commits] r1418 - packages/libruby-extras/trunk/debian

Paul van Tilburg paulvt at alioth.debian.org
Wed Apr 18 19:43:04 UTC 2007


Author: paulvt
Date: 2007-04-18 19:43:04 +0000 (Wed, 18 Apr 2007)
New Revision: 1418

Removed:
   packages/libruby-extras/trunk/debian/control.in
Modified:
   packages/libruby-extras/trunk/debian/changelog
   packages/libruby-extras/trunk/debian/control
   packages/libruby-extras/trunk/debian/rules
Log:
* Adapted debian/control, debian/rules, removed debian/control.in to
  drop the Uploaders rule.
* Added libmmap-ruby to the Depends since Etch is out of the door 
  and we can go for Lenny now.

Modified: packages/libruby-extras/trunk/debian/changelog
===================================================================
--- packages/libruby-extras/trunk/debian/changelog	2007-04-18 19:42:55 UTC (rev 1417)
+++ packages/libruby-extras/trunk/debian/changelog	2007-04-18 19:43:04 UTC (rev 1418)
@@ -1,8 +1,11 @@
-libruby-extras (0.3) UNRELEASED; urgency=low
+libruby-extras (0.3) unstable; urgency=low
 
-  * NOT RELEASED YET
+  * Adapted debian/control, debian/rules, removed debian/control.in to
+    drop the Uploaders rule.
+  * Added libmmap-ruby to the Depends since Etch is out of the door 
+    and we can go for Lenny now.
 
- -- Paul van Tilburg <paulvt at debian.org>  Fri, 15 Dec 2006 22:01:56 +0100
+ -- Paul van Tilburg <paulvt at debian.org>  Wed, 18 Apr 2007 21:36:31 +0200
 
 libruby-extras (0.2) unstable; urgency=medium
 

Modified: packages/libruby-extras/trunk/debian/control
===================================================================
--- packages/libruby-extras/trunk/debian/control	2007-04-18 19:42:55 UTC (rev 1417)
+++ packages/libruby-extras/trunk/debian/control	2007-04-18 19:43:04 UTC (rev 1418)
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Paul van Tilburg <paulvt at debian.org>
-Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>, Antonio S. de A. Terceiro <asaterceiro at inf.ufrgs.br>, David Moreno Garza <damog at debian.org>, David Nusinow <dnusinow at debian.org>, Esteban Manchado Velázquez <zoso at debian.org>, Arnaud Cornet <arnaud.cornet at gmail.com>, Lucas Nussbaum <lucas at lucas-nussbaum.net>, Thierry Reding <thierry at doppeltgemoppelt.de>, Marc Dequènes (Duck) <Duck at DuckCorp.org>, Ari Pollak <ari at debian.org>, Daigo Moriwaki <daigo at debian.org>, Vincent Fourmond <vincent.fourmond at 9online.fr>, Rudi Cilibrasi <cilibrar at cilibrar.com>, Patrick Ringl <patrick_ at freenet.de>, Filipe Lautert <filipelautert at celepar.pr.gov.br>, Florian Ragwitz <rafl at debian.org>
+Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
 Build-Depends: cdbs, debhelper (>= 5), ruby-pkg-tools
 Standards-Version: 3.7.2
 
@@ -13,7 +13,7 @@
  This bundle contains a selection of useful libraries for the Ruby
  language.  This includes libraries that are considered supplemental to the
  standard library, such as: breakpoint, daemonize, cmdparse, inline,
- log4r, and rubygems.  
+ log4r, mmap, and rubygems.  
  It also pulls in some of the libraries which were split of libruby because
  they have additional dependencies: openssl, ncurses, and readline.
  .
@@ -22,7 +22,7 @@
 
 Package: libruby1.8-extras
 Architecture: all
-Depends: libbreakpoint-ruby1.8, libcmdparse2-ruby1.8, libdaemonize-ruby1.8, libgems-ruby1.8, liblog4r-ruby1.8, libncurses-ruby1.8, libopenssl-ruby1.8, libreadline-ruby1.8
+Depends: libbreakpoint-ruby1.8, libcmdparse2-ruby1.8, libdaemonize-ruby1.8, libgems-ruby1.8, liblog4r-ruby1.8, libmmap-ruby1.8, libncurses-ruby1.8, libopenssl-ruby1.8, libreadline-ruby1.8
 Description: a bundle of additional libraries for Ruby 1.8
  This bundle contains a selection of useful libraries for the Ruby
  language.  This includes libraries that are considered supplemental to the

Deleted: packages/libruby-extras/trunk/debian/control.in
===================================================================
--- packages/libruby-extras/trunk/debian/control.in	2007-04-18 19:42:55 UTC (rev 1417)
+++ packages/libruby-extras/trunk/debian/control.in	2007-04-18 19:43:04 UTC (rev 1418)
@@ -1,32 +0,0 @@
-Source: libruby-extras
-Section: libs
-Priority: optional
-Maintainer: Paul van Tilburg <paulvt at debian.org>
-Uploaders: @RUBY_EXTRAS_TEAM@
-Build-Depends: cdbs, debhelper (>= 5), ruby-pkg-tools
-Standards-Version: 3.7.2
-
-Package: libruby-extras
-Architecture: all
-Depends: libruby1.8-extras
-Description: a bundle of additional libraries for Ruby
- This bundle contains a selection of useful libraries for the Ruby
- language.  This includes libraries that are considered supplemental to the
- standard library, such as: breakpoint, daemonize, cmdparse, inline,
- log4r, and rubygems.  
- It also pulls in some of the libraries which were split of libruby because
- they have additional dependencies: openssl, ncurses, and readline.
- .
- This is a dummy package depending on the library for the current default
- version of Ruby.
-
-Package: libruby1.8-extras
-Architecture: all
-Depends: libbreakpoint-ruby1.8, libcmdparse2-ruby1.8, libdaemonize-ruby1.8, libgems-ruby1.8, liblog4r-ruby1.8, libncurses-ruby1.8, libopenssl-ruby1.8, libreadline-ruby1.8
-Description: a bundle of additional libraries for Ruby 1.8
- This bundle contains a selection of useful libraries for the Ruby
- language.  This includes libraries that are considered supplemental to the
- standard library, such as: breakpoint, daemonize, cmdparse, inline,
- log4r, and rubygems.  
- It also pulls in some of the libraries which were split of libruby because
- they have additional dependencies: openssl, ncurses, and readline.

Modified: packages/libruby-extras/trunk/debian/rules
===================================================================
--- packages/libruby-extras/trunk/debian/rules	2007-04-18 19:42:55 UTC (rev 1417)
+++ packages/libruby-extras/trunk/debian/rules	2007-04-18 19:43:04 UTC (rev 1418)
@@ -3,4 +3,3 @@
 # CDBS file to build the libruby-extras meta-package.
 
 include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/ruby-pkg-tools/1/rules/uploaders.mk




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