[DRE-commits] [ruby-delayer] 01/01: update debian/* stuff

Daisuke Higuchi dai at moszumanska.debian.org
Wed May 7 02:29:11 UTC 2014


This is an automated email from the git hooks/post-receive script.

dai pushed a commit to branch master
in repository ruby-delayer.

commit d53b6f04205b1774784b5ac0a53ed27fc61d7f95
Author: HIGUCHI Daisuke (VDR dai) <dai at debian.org>
Date:   Wed May 7 11:28:44 2014 +0900

    update debian/* stuff
---
 debian/changelog                                   |  4 +--
 debian/control                                     | 14 ++++-----
 debian/copyright                                   | 34 +++++++++++++++++-----
 debian/patches/remove_rubygems_sutff_in_test.patch | 28 ++++++++++++++++++
 debian/patches/series                              |  1 +
 debian/ruby-delayer.docs                           |  3 +-
 6 files changed, 65 insertions(+), 19 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 735cb3b..9bd660a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-ruby-delayer (0.0.2-1) UNRELEASED; urgency=medium
+ruby-delayer (0.0.2-1) unstable; urgency=medium
 
-  * Initial release (Closes: #nnnn)
+  * Initial release (Closes: #747273)
 
  -- HIGUCHI Daisuke (VDR dai) <dai at debian.org>  Wed, 07 May 2014 10:26:19 +0900
diff --git a/debian/control b/debian/control
index 0e9a516..4b92564 100644
--- a/debian/control
+++ b/debian/control
@@ -3,17 +3,17 @@ Section: ruby
 Priority: optional
 Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
 Uploaders: HIGUCHI Daisuke (VDR dai) <dai at debian.org>
-Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.7.5~)
+Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.7.5~), ruby-test-unit
 Standards-Version: 3.9.5
-#Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-delayer.git
-#Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-delayer.git;a=summary
-Homepage: 
+Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-delayer.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-delayer.git;a=summary
+Homepage: https://rubygems.org/gems/delayer
 XS-Ruby-Versions: all
 
 Package: ruby-delayer
 Architecture: all
 XB-Ruby-Versions: ${ruby:Versions}
 Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter
-# bundler (~> 1.2.3, development), rake (>= 0, development)
-Description: Delay the processing
- Delay the processing
+Description: Ruby library providing delay the processing
+ The delayer library allows you to delay any tasks.
+ It is similar to priority-queue mechanism.
diff --git a/debian/copyright b/debian/copyright
index dd1937a..270c795 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,18 +1,36 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: delayer
-Source: FIXME <http://example.com/>
+Source: https://rubygems.org/gems/delayer
 
 Files: *
-Copyright: <years> <put author's name and email here>
-           <years> <likewise for another author>
-License: GPL-2+ (FIXME)
+Copyright: 2013 Toshiaki Asai <toshi.alternative at gmail.com>
+License: Expat
+ Copyright (c) 2013 Toshiaki Asai
+ .
+ MIT License
+ .
+ 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.
 
 Files: debian/*
 Copyright: 2014 HIGUCHI Daisuke (VDR dai) <dai at debian.org>
-License: GPL-2+ (FIXME)
-Comment: the Debian packaging is licensed under the same terms as the original package.
-
-License: GPL-2+ (FIXME)
+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
diff --git a/debian/patches/remove_rubygems_sutff_in_test.patch b/debian/patches/remove_rubygems_sutff_in_test.patch
new file mode 100644
index 0000000..b345ad9
--- /dev/null
+++ b/debian/patches/remove_rubygems_sutff_in_test.patch
@@ -0,0 +1,28 @@
+Description: do not rely on rubygems to load test-unit
+Author: HIGUCHI Daisuke (VDR dai) <dai at debian.org>
+Last-Update: 2014-05-07
+
+Index: ruby-delayer/test/test_delayer.rb
+===================================================================
+--- ruby-delayer.orig/test/test_delayer.rb	2014-05-07 10:27:48.619694397 +0900
++++ ruby-delayer/test/test_delayer.rb	2014-05-07 10:41:16.259315280 +0900
+@@ -1,7 +1,5 @@
+ # -*- coding: utf-8 -*-
+ 
+-require 'rubygems'
+-require 'bundler/setup'
+ require 'test/unit'
+ require 'delayer'
+ 
+Index: ruby-delayer/test/test_priority.rb
+===================================================================
+--- ruby-delayer.orig/test/test_priority.rb	2014-05-07 10:27:48.619694397 +0900
++++ ruby-delayer/test/test_priority.rb	2014-05-07 10:41:22.331402650 +0900
+@@ -1,7 +1,5 @@
+ # -*- coding: utf-8 -*-
+ 
+-require 'rubygems'
+-require 'bundler/setup'
+ require 'test/unit'
+ require 'delayer'
+ 
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..b7318e0
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+remove_rubygems_sutff_in_test.patch
diff --git a/debian/ruby-delayer.docs b/debian/ruby-delayer.docs
index 07b3c9e..b43bf86 100644
--- a/debian/ruby-delayer.docs
+++ b/debian/ruby-delayer.docs
@@ -1,2 +1 @@
-# FIXME: READMEs found
-# README.md
+README.md

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-delayer.git



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