[DRE-commits] [SCM] ruby-file-tail.git branch, master, updated. debian/1.0.8-1

Gunnar Wolf gwolf at debian.org
Sat May 19 16:31:30 UTC 2012


The following commit has been merged in the master branch:
commit b6d15e8f357dcf12c2106758821bd50f99b0e581
Author: Gunnar Wolf <gwolf at debian.org>
Date:   Sat May 19 11:28:18 2012 -0500

    Initial packaging

diff --git a/debian/changelog b/debian/changelog
index 2889cca..5a3e7b0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-ruby-file-tail (1.0.8-1) UNRELEASED; urgency=low
+ruby-file-tail (1.0.8-1) unstable; urgency=low
 
-  * Initial release (Closes: #nnnn)
+  * Initial release (Closes: #673557)
 
  -- Gunnar Wolf <gwolf at debian.org>  Sat, 19 May 2012 10:49:06 -0500
diff --git a/debian/control b/debian/control
index dbeae49..280ce18 100644
--- a/debian/control
+++ b/debian/control
@@ -2,19 +2,20 @@ Source: ruby-file-tail
 Section: ruby
 Priority: optional
 Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
-Uploaders:  <gwolf at debian.org>
-DM-Upload-Allowed: yes
-Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.13~)
-Standards-Version: 3.9.2
-#Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-file-tail.git
-#Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-file-tail.git;a=summary
-Homepage: http://github.com/flori/file-tail
+Uploaders: Gunnar Wolf <gwolf at debian.org>
+Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.13~), ruby-test-unit (>= 2.4.0)
+Standards-Version: 3.9.3
+Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-file-tail.git
+Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-file-tail.git;a=summary
+Homepage: http://www.ping.de/~flori
 XS-Ruby-Versions: all
 
 Package: ruby-file-tail
 Architecture: all
 XB-Ruby-Versions: ${ruby:Versions}
 Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter
-# gem_hadar (~> 0.1.4, development), test-unit (~> 2.4.0, development), tins (~> 0.3)
-Description: File::Tail for Ruby
- Library to tail files in Ruby
+Description: Ruby library for following still-growing files
+ Small ruby library that allows it to "tail" files in Ruby, including
+ following a file that still is growing, like the unix command 'tail
+ -f' can.
+
diff --git a/debian/copyright b/debian/copyright
index 94c9c8a..899e109 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,16 +1,20 @@
 Format: http://dep.debian.net/deps/dep5
 Upstream-Name: file-tail
-Source: FIXME <http://example.com/>
+Source: <http://www.ping.de/~flori>
 
 Files: *
-Copyright: <years> <put author's name and email here>
-           <years> <likewise for another author>
-License: GPL-2+ (FIXME)
+Copyright: 2002-2011 Florian Frank <flori at ping.de>
+License: GPL-2
+
+Files: debian/*
+Copyright: 2012 Gunnar Wolf <gwolf at debian.org>
+License: GPL-2
+
+License: GPL-2
  This program 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; either
- version 2 of the License, or (at your option) any later
- version.
+ version 2 of the License.
  .
  This program is distributed in the hope that it will be
  useful, but WITHOUT ANY WARRANTY; without even the implied
@@ -26,8 +30,3 @@ License: GPL-2+ (FIXME)
  On Debian systems, the full text of the GNU General Public
  License version 2 can be found in the file
  `/usr/share/common-licenses/GPL-2'.
-
-Files: debian/*
-Copyright: 2012  <gwolf at debian.org>
-License:
- [LICENSE TEXT]
diff --git a/debian/ruby-file-tail.docs b/debian/ruby-file-tail.docs
index 0d5eab8..cb6bc97 100644
--- a/debian/ruby-file-tail.docs
+++ b/debian/ruby-file-tail.docs
@@ -1,2 +1,2 @@
 # FIXME: READMEs found
-# README.rdoc
+README.rdoc
diff --git a/debian/ruby-file-tail.examples b/debian/ruby-file-tail.examples
index d970cc8..be2ecf6 100644
--- a/debian/ruby-file-tail.examples
+++ b/debian/ruby-file-tail.examples
@@ -1,3 +1,4 @@
 # FIXME: examples/ dir found in source. Consider installing the examples.
 # Examples:
-# examples/*
+examples/*
+bin/rtail
diff --git a/debian/ruby-test-files.yaml b/debian/ruby-test-files.yaml
deleted file mode 100644
index e045de2..0000000
--- a/debian/ruby-test-files.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
---- 
-- tests/file_tail_test.rb
-- tests/test_helper.rb
-- tests/file_tail_group_test.rb
diff --git a/debian/ruby-tests.rb b/debian/ruby-tests.rb
new file mode 100644
index 0000000..5d2e530
--- /dev/null
+++ b/debian/ruby-tests.rb
@@ -0,0 +1,3 @@
+$LOAD_PATH << 'tests'
+require "file_tail_test"
+require "file_tail_group_test"
diff --git a/debian/rules b/debian/rules
index a5e7dc8..5fe9d74 100755
--- a/debian/rules
+++ b/debian/rules
@@ -13,3 +13,9 @@
 
 %:
 	dh $@ --buildsystem=ruby --with ruby
+
+override_dh_install:
+	dh_install
+	# Installed /usr/bin/rtail requires tins, a series of library
+	# extensions not fit for release
+	rm -r debian/ruby-file-tail/usr/bin/

-- 
ruby-file-tail.git



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