[DRE-commits] [SCM] ruby-sourcify.git branch, master, updated. debian/0.5.0-1

Gunnar Wolf gwolf at debian.org
Sat May 19 20:17:15 UTC 2012


The following commit has been merged in the master branch:
commit da8265a1ab1fc6d1b4ff17fa75a64d7f47366cfa
Author: Gunnar Wolf <gwolf at debian.org>
Date:   Sat May 19 13:07:00 2012 -0500

    Initial packaging information

diff --git a/debian/changelog b/debian/changelog
index ad5d3ec..1a2887d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-ruby-sourcify (0.5.0-1) UNRELEASED; urgency=low
+ruby-sourcify (0.5.0-1) unstable; urgency=low
 
-  * Initial release (Closes: #nnnn)
+  * Initial release (Closes: #673561)
 
  -- Gunnar Wolf <gwolf at debian.org>  Sat, 19 May 2012 11:36:22 -0500
diff --git a/debian/control b/debian/control
index e3b8293..453a278 100644
--- a/debian/control
+++ b/debian/control
@@ -2,19 +2,19 @@ Source: ruby-sourcify
 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-sourcify.git
-#Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-sourcify.git;a=summary
+Uploaders: Gunnar Wolf <gwolf at debian.org>
+Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.2.13~), ruby-ruby2ruby, ruby-sexp-processor, ruby-parser, ruby-file-tail, ruby-bacon
+Standards-Version: 3.9.3
+Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-sourcify.git
+Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-sourcify.git;a=summary
 Homepage: http://github.com/ngty/sourcify
 XS-Ruby-Versions: all
 
 Package: ruby-sourcify
 Architecture: all
 XB-Ruby-Versions: ${ruby:Versions}
-Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter
-# ruby2ruby (>= 1.2.5), sexp_processor (>= 3.0.5), ruby_parser (>= 2.0.5), file-tail (>= 1.0.5), bacon (>= 0, development)
-Description: Workarounds before ruby-core officially supports Proc#to_source (& friends)
-
+Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter, ruby-ruby2ruby, ruby-sexp-processor, ruby-parser, ruby-file-tail
+Description: Extract a Ruby class or method's parse tree
+ This library is a unified solution to extract proc code into a
+ human-readable parse tree. It is intended as a replacement for
+ ruby-parsetree for versions of Ruby different to 1.8.
diff --git a/debian/copyright b/debian/copyright
index 2220196..29a1d99 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,33 +1,31 @@
 Format: http://dep.debian.net/deps/dep5
 Upstream-Name: sourcify
-Source: FIXME <http://example.com/>
+Source: https://github.com/ngty/sourcify
 
 Files: *
-Copyright: <years> <put author's name and email here>
-           <years> <likewise for another author>
-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'.
+Copyright: 2009-2011 NgTzeYang <ngty77.gmail.com>
+License: Expat
 
 Files: debian/*
-Copyright: 2012  <gwolf at debian.org>
-License:
- [LICENSE TEXT]
+Copyright: 2012 Gunnar Wolf <gwolf at debian.org>
+License: Expat
+
+License: Expat
+ 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.
diff --git a/debian/patches/dont_require_rubygems b/debian/patches/dont_require_rubygems
new file mode 100644
index 0000000..b436e16
--- /dev/null
+++ b/debian/patches/dont_require_rubygems
@@ -0,0 +1,10 @@
+Index: ruby-sourcify/lib/sourcify.rb
+===================================================================
+--- ruby-sourcify.orig/lib/sourcify.rb	2012-05-19 11:49:25.000000000 -0500
++++ ruby-sourcify/lib/sourcify.rb	2012-05-19 12:55:01.000000000 -0500
+@@ -1,4 +1,4 @@
+-require 'rubygems'
++# require 'rubygems'
+ require 'ruby2ruby'
+ require 'sexp_processor'
+ require 'ruby_parser'
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..f728cce
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+dont_require_rubygems
diff --git a/debian/ruby-sourcify.docs b/debian/ruby-sourcify.docs
index 0d5eab8..cb6bc97 100644
--- a/debian/ruby-sourcify.docs
+++ b/debian/ruby-sourcify.docs
@@ -1,2 +1,2 @@
 # FIXME: READMEs found
-# README.rdoc
+README.rdoc

-- 
ruby-sourcify.git



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