[DRE-commits] r3034 - in packages/libshoulda-ruby/trunk: . bin debian

terceiro-guest at alioth.debian.org terceiro-guest at alioth.debian.org
Sat Sep 27 11:57:44 UTC 2008


Author: terceiro-guest
Date: 2008-09-27 11:57:42 +0000 (Sat, 27 Sep 2008)
New Revision: 3034

Added:
   packages/libshoulda-ruby/trunk/debian/
   packages/libshoulda-ruby/trunk/debian/Rakefile
   packages/libshoulda-ruby/trunk/debian/changelog
   packages/libshoulda-ruby/trunk/debian/compat
   packages/libshoulda-ruby/trunk/debian/control
   packages/libshoulda-ruby/trunk/debian/copyright
   packages/libshoulda-ruby/trunk/debian/docs
   packages/libshoulda-ruby/trunk/debian/rules
   packages/libshoulda-ruby/trunk/debian/watch
Modified:
   packages/libshoulda-ruby/trunk/bin/convert_file_to_shoulda
Log:
[svn-inject] Applying Debian modifications to trunk

Modified: packages/libshoulda-ruby/trunk/bin/convert_file_to_shoulda
===================================================================
--- packages/libshoulda-ruby/trunk/bin/convert_file_to_shoulda	2008-09-27 11:57:13 UTC (rev 3033)
+++ packages/libshoulda-ruby/trunk/bin/convert_file_to_shoulda	2008-09-27 11:57:42 UTC (rev 3034)
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby
+#! /usr/bin/ruby1.8
 require 'fileutils'
 
 def usage(msg = nil)


Property changes on: packages/libshoulda-ruby/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages/libshoulda-ruby/trunk/debian/Rakefile
===================================================================
--- packages/libshoulda-ruby/trunk/debian/Rakefile	                        (rev 0)
+++ packages/libshoulda-ruby/trunk/debian/Rakefile	2008-09-27 11:57:42 UTC (rev 3034)
@@ -0,0 +1,7 @@
+require 'rake/testtask'
+Rake::TestTask.new(:test) do |t|
+  t.libs << "lib"
+  t.libs << "test"
+  t.pattern = 'test/*_test.rb'
+  t.verbose = false
+end

Added: packages/libshoulda-ruby/trunk/debian/changelog
===================================================================
--- packages/libshoulda-ruby/trunk/debian/changelog	                        (rev 0)
+++ packages/libshoulda-ruby/trunk/debian/changelog	2008-09-27 11:57:42 UTC (rev 3034)
@@ -0,0 +1,6 @@
+libshoulda-ruby (1.2.0-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
+
+ -- Antonio Terceiro <terceiro at softwarelivre.org>  Wed, 16 Jul 2008 23:42:14 -0300
+

Added: packages/libshoulda-ruby/trunk/debian/compat
===================================================================
--- packages/libshoulda-ruby/trunk/debian/compat	                        (rev 0)
+++ packages/libshoulda-ruby/trunk/debian/compat	2008-09-27 11:57:42 UTC (rev 3034)
@@ -0,0 +1 @@
+7

Added: packages/libshoulda-ruby/trunk/debian/control
===================================================================
--- packages/libshoulda-ruby/trunk/debian/control	                        (rev 0)
+++ packages/libshoulda-ruby/trunk/debian/control	2008-09-27 11:57:42 UTC (rev 3034)
@@ -0,0 +1,31 @@
+Source: libshoulda-ruby
+Section: libs
+Priority: extra
+Maintainer: Antonio Terceiro <terceiro at softwarelivre.org>
+Build-Depends: cdbs, debhelper (>= 7)
+Standards-Version: 3.8.0
+Homepage: http://shoulda.rubyforge.org/
+DM-Upload-Allowed: yes
+
+Package: libshoulda-ruby
+Architecture: all
+Depends: libshoulda-ruby1.8
+Description: additional features for the Test::Unit testing framework
+ Shoulda makes it easy to write elegant, understandable, and maintainable
+ tests. Shoulda consists of test macros, assertions, and helpers added on to
+ the Test::Unit framework. It's fully compatible with your existing tests, and
+ requires no retooling to use.
+ .
+ This is a dependency package which depends on the one for the default Ruby
+ version.
+
+Package: libshoulda-ruby1.8
+Architecture: all
+Depends: libruby1.8
+Description: additional features for the Test::Unit testing framework
+ Shoulda makes it easy to write elegant, understandable, and maintainable
+ tests. Shoulda consists of test macros, assertions, and helpers added on to
+ the Test::Unit framework. It's fully compatible with your existing tests, and
+ requires no retooling to use.
+ .
+ This is the package for Ruby 1.8.

Added: packages/libshoulda-ruby/trunk/debian/copyright
===================================================================
--- packages/libshoulda-ruby/trunk/debian/copyright	                        (rev 0)
+++ packages/libshoulda-ruby/trunk/debian/copyright	2008-09-27 11:57:42 UTC (rev 3034)
@@ -0,0 +1,28 @@
+This package was debianized by Antonio Terceiro <terceiro at softwarelivre.org> on
+Wed, 16 Jul 2008 23:42:14 -0300.
+
+It was downloaded from http://rubyforge.org/projects/shoulda/
+
+Copyright (c) 2007 Tammer Saleh, Thoughtbot, Inc.
+
+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 OR COPYRIGHT HOLDERS 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.
+
+The Debian packaging is (C) 2008, Antonio Terceiro <terceiro at softwarelivre.org>
+and is licensed under the same terms and the original package.

Added: packages/libshoulda-ruby/trunk/debian/docs
===================================================================
--- packages/libshoulda-ruby/trunk/debian/docs	                        (rev 0)
+++ packages/libshoulda-ruby/trunk/debian/docs	2008-09-27 11:57:42 UTC (rev 3034)
@@ -0,0 +1 @@
+README.txt

Added: packages/libshoulda-ruby/trunk/debian/rules
===================================================================
--- packages/libshoulda-ruby/trunk/debian/rules	                        (rev 0)
+++ packages/libshoulda-ruby/trunk/debian/rules	2008-09-27 11:57:42 UTC (rev 3034)
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk
+


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

Added: packages/libshoulda-ruby/trunk/debian/watch
===================================================================
--- packages/libshoulda-ruby/trunk/debian/watch	                        (rev 0)
+++ packages/libshoulda-ruby/trunk/debian/watch	2008-09-27 11:57:42 UTC (rev 3034)
@@ -0,0 +1,2 @@
+version=3
+http://rubyforge.org/frs/?group_id=4944 .*Shoulda-(.*).tgz




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