[DRE-commits] [ruby-icalendar] 01/01: Initial packaging.

Lucas Nussbaum lucas at moszumanska.debian.org
Thu May 21 14:33:45 UTC 2015


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

lucas pushed a commit to branch master
in repository ruby-icalendar.

commit 1436aa267c121fa0c0daf9c2e1d8f179afe6f288
Author: Lucas Nussbaum <lucas at debian.org>
Date:   Thu May 21 16:30:14 2015 +0200

    Initial packaging.
---
 debian/changelog           |  3 +-
 debian/control             |  7 ++--
 debian/copyright           | 91 +++++++++++++++++++++++++++++++++-------------
 debian/ruby-icalendar.docs |  3 +-
 debian/tests/control.ex    | 13 -------
 5 files changed, 72 insertions(+), 45 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 15ce31a..2a9cb27 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
 ruby-icalendar (2.3.0-1) UNRELEASED; urgency=medium
 
-  * Initial release (Closes: #nnnn)
+  * Initial release.
+  * TODO: fix tests
 
  -- Lucas Nussbaum <lucas at debian.org>  Thu, 21 May 2015 16:21:59 +0200
diff --git a/debian/control b/debian/control
index 21b6545..7d395ea 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,8 @@ Uploaders: Lucas Nussbaum <lucas at debian.org>
 Build-Depends: debhelper (>= 7.0.50~),
                gem2deb,
                rake,
-               ruby-rspec
+               ruby-rspec,
+               ruby-timecop
 Standards-Version: 3.9.6
 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-icalendar.git
 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-ruby-extras/ruby-icalendar.git
@@ -20,7 +21,7 @@ XB-Ruby-Versions: ${ruby:Versions}
 Depends: ruby | ruby-interpreter,
          ${misc:Depends},
          ${shlibs:Depends}
-Description: A ruby implementation of the iCalendar specification (RFC-5545).
- Implements the iCalendar specification (RFC-5545) in Ruby.  This allows
+Description: Ruby implementation of the iCalendar specification (RFC-5545)
+ This Ruby library implements the iCalendar specification (RFC-5545). This allows
  for the generation and parsing of .ics files, which are used by a
  variety of calendaring applications.
diff --git a/debian/copyright b/debian/copyright
index 3efcd13..0c4d033 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,35 +1,74 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: icalendar
-Source: FIXME <http://example.com/>
+Source: https://rubygems.org/gems/icalendar
 
 Files: *
-Copyright: <years> <put author's name and email here>
-           <years> <likewise for another author>
-License: GPL-2+ (FIXME)
+Copyright: no copyright notice in source
+License: same as Ruby
 
 Files: debian/*
 Copyright: 2015 Lucas Nussbaum <lucas at debian.org>
-License: GPL-2+ (FIXME)
+License: same as Ruby
 Comment: the Debian packaging is licensed under the same terms as the original package.
 
-License: GPL-2+ (FIXME)
- 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.
- .
- This program 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 St, Fifth Floor,
- Boston, MA  02110-1301 USA
- .
- 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'.
+License: same as Ruby
+ Ruby is copyrighted free software by Yukihiro Matsumoto <matz at netlab.jp>.
+.
+ As of Ruby 1.9.3, the Ruby Language went from a Dual GPL/Ruby license
+ to Dual BSD/Ruby license. The intent of the icalendar license is that
+ it is provided under the same terms as Ruby itself. The way we're
+ going to interpret this is the software can be redistributed under any
+ of the 3 licenses, GPL, BSD, or the conditions below, at your option:
+.
+   1. You may make and give away verbatim copies of the source form of the
+      software without restriction, provided that you duplicate all of the
+      original copyright notices and associated disclaimers.
+.
+   2. You may modify your copy of the software in any way, provided that
+      you do at least ONE of the following:
+.
+        a) place your modifications in the Public Domain or otherwise
+           make them Freely Available, such as by posting said
+ 	  modifications to Usenet or an equivalent medium, or by allowing
+ 	  the author to include your modifications in the software.
+.
+        b) use the modified software only within your corporation or
+           organization.
+.
+        c) give non-standard binaries non-standard names, with
+           instructions on where to get the original software distribution.
+.
+        d) make other distribution arrangements with the author.
+.
+   3. You may distribute the software in object code or binary form,
+      provided that you do at least ONE of the following:
+.
+        a) distribute the binaries and library files of the software,
+ 	  together with instructions (in the manual page or equivalent)
+ 	  on where to get the original distribution.
+.
+        b) accompany the distribution with the machine-readable source of
+ 	  the software.
+.
+        c) give non-standard binaries non-standard names, with
+           instructions on where to get the original software distribution.
+.
+        d) make other distribution arrangements with the author.
+.
+   4. You may modify and include the part of the software into any other
+      software (possibly commercial).  But some files in the distribution
+      are not written by the author, so that they are not under these terms.
+.
+      For the list of those files and their copying conditions, see the
+      file LEGAL.
+.
+   5. The scripts and library files supplied as input to or produced as
+      output from the software do not automatically fall under the
+      copyright of the software, but belong to whomever generated them,
+      and may be sold commercially, and may be aggregated with this
+      software.
+.
+   6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
+      IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+      WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+      PURPOSE.
diff --git a/debian/ruby-icalendar.docs b/debian/ruby-icalendar.docs
index 07b3c9e..b43bf86 100644
--- a/debian/ruby-icalendar.docs
+++ b/debian/ruby-icalendar.docs
@@ -1,2 +1 @@
-# FIXME: READMEs found
-# README.md
+README.md
diff --git a/debian/tests/control.ex b/debian/tests/control.ex
deleted file mode 100644
index 429a392..0000000
--- a/debian/tests/control.ex
+++ /dev/null
@@ -1,13 +0,0 @@
-# AUTOGENERATED FILE
-#
-# As of autopkgtest 3.5, Ruby packages that use gem2deb are automatically
-# detected, and if debian/tests/control does not exist the contents below will
-# be assumed (with the exception of gem2deb being filtered out from
-# @builddeps@):
-
-Test-Command: gem2deb-test-runner --autopkgtest 2>&1
-Depends: @, @builddeps@, gem2deb-test-runner
-
-# if you would need to change something to the above, to that and rename this
-# file to `control`. Otherwise, you should probably delete this file
-# (recommended).

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



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