[Pkg-ruby-extras-maintainers] r177 - in packages/libcmdparse2-ruby/trunk: . debian

Arnaud Cornet nohar-guest at costa.debian.org
Fri Dec 16 22:54:26 UTC 2005


Author: nohar-guest
Date: 2005-12-16 22:54:26 +0000 (Fri, 16 Dec 2005)
New Revision: 177

Added:
   packages/libcmdparse2-ruby/trunk/debian/
   packages/libcmdparse2-ruby/trunk/debian/changelog
   packages/libcmdparse2-ruby/trunk/debian/compat
   packages/libcmdparse2-ruby/trunk/debian/control
   packages/libcmdparse2-ruby/trunk/debian/copyright
   packages/libcmdparse2-ruby/trunk/debian/examples
   packages/libcmdparse2-ruby/trunk/debian/rules
Modified:
   packages/libcmdparse2-ruby/trunk/net.rb
Log:
Load newtrunk into packages/libcmdparse2-ruby/trunk.


Added: packages/libcmdparse2-ruby/trunk/debian/changelog
===================================================================
--- packages/libcmdparse2-ruby/trunk/debian/changelog	2005-12-16 22:54:03 UTC (rev 176)
+++ packages/libcmdparse2-ruby/trunk/debian/changelog	2005-12-16 22:54:26 UTC (rev 177)
@@ -0,0 +1,12 @@
+libcmdparse2-ruby (2.0.0-1) unstable; urgency=low
+
+  * new upstream release
+
+ -- Arnaud Cornet <arnaud.cornet at gmail.com>  Sat, 10 Dec 2005 02:56:32 +0100
+
+libcmdparse-ruby (1.0.5-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Arnaud Cornet <arnaud.cornet at gmail.com>  Wed, 10 Aug 2005 11:38:10 +0200
+

Added: packages/libcmdparse2-ruby/trunk/debian/compat
===================================================================
--- packages/libcmdparse2-ruby/trunk/debian/compat	2005-12-16 22:54:03 UTC (rev 176)
+++ packages/libcmdparse2-ruby/trunk/debian/compat	2005-12-16 22:54:26 UTC (rev 177)
@@ -0,0 +1 @@
+4

Added: packages/libcmdparse2-ruby/trunk/debian/control
===================================================================
--- packages/libcmdparse2-ruby/trunk/debian/control	2005-12-16 22:54:03 UTC (rev 176)
+++ packages/libcmdparse2-ruby/trunk/debian/control	2005-12-16 22:54:26 UTC (rev 177)
@@ -0,0 +1,15 @@
+Source: libcmdparse2-ruby
+Section: interpreters
+Priority: optional
+Maintainer: Arnaud Cornet <arnaud.cornet at gmail.com>
+Build-Depends-Indep: cdbs, debhelper, ruby
+Standards-Version: 3.6.2.1
+
+Package: libcmdparse2-ruby
+Architecture: all
+Depends: ruby
+Description: Advanced command line parsing module supporting sub-commands
+ Flexible library simplifying creation of shell commands using sub-commands,
+ ie a la apt-get.
+ Uses optparse, part of ruby standard library.
+

Added: packages/libcmdparse2-ruby/trunk/debian/copyright
===================================================================
--- packages/libcmdparse2-ruby/trunk/debian/copyright	2005-12-16 22:54:03 UTC (rev 176)
+++ packages/libcmdparse2-ruby/trunk/debian/copyright	2005-12-16 22:54:26 UTC (rev 177)
@@ -0,0 +1,29 @@
+This package was debianized by Arnaud Cornet <arnaud.cornet at gmail.com> on
+Wed, 10 Aug 2005 11:48:19 +0200
+
+It was downloaded from http://cmdparse.rubyforge.org/
+
+Upstream Author: Thomas Leitner
+
+Copyright:
+
+   This package is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; version 2 dated June, 1991.
+
+   This package is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this package; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/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'.

Added: packages/libcmdparse2-ruby/trunk/debian/examples
===================================================================
--- packages/libcmdparse2-ruby/trunk/debian/examples	2005-12-16 22:54:03 UTC (rev 176)
+++ packages/libcmdparse2-ruby/trunk/debian/examples	2005-12-16 22:54:26 UTC (rev 177)
@@ -0,0 +1 @@
+net.rb

Added: packages/libcmdparse2-ruby/trunk/debian/rules
===================================================================
--- packages/libcmdparse2-ruby/trunk/debian/rules	2005-12-16 22:54:03 UTC (rev 176)
+++ packages/libcmdparse2-ruby/trunk/debian/rules	2005-12-16 22:54:26 UTC (rev 177)
@@ -0,0 +1,17 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+# configure and build should not be relaunched in binary rule
+
+build/libcmdparse2-ruby::
+	ruby setup.rb config --prefix=/usr --site-ruby=/usr/lib/ruby/1.8
+	ruby setup.rb setup
+
+install/libcmdparse2-ruby::
+	ruby setup.rb install --prefix=debian/libcmdparse2-ruby
+	mv debian/libcmdparse2-ruby/usr/lib/ruby/1.8/cmdparse.rb debian/libcmdparse2-ruby/usr/lib/ruby/1.8/cmdparse2.rb
+
+clean:: 
+	ruby setup.rb clean
+


Property changes on: packages/libcmdparse2-ruby/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Modified: packages/libcmdparse2-ruby/trunk/net.rb
===================================================================
--- packages/libcmdparse2-ruby/trunk/net.rb	2005-12-16 22:54:03 UTC (rev 176)
+++ packages/libcmdparse2-ruby/trunk/net.rb	2005-12-16 22:54:26 UTC (rev 177)
@@ -2,7 +2,7 @@
 # if something is changed here -> change line numbers in doc/src/documentation.page
 
 $:.unshift "lib"
-require 'cmdparse'
+require 'cmdparse2'
 require 'ostruct'
 require 'yaml'
 


Property changes on: packages/libcmdparse2-ruby/trunk/net.rb
___________________________________________________________________
Name: svn:executable
   - 
   + *




More information about the pkg-ruby-extras-maintainers mailing list