[DRE-commits] r1585 - packages-wip/libopenid-ruby/trunk/debian

paulvt at alioth.debian.org paulvt at alioth.debian.org
Fri May 18 10:36:57 UTC 2007


Author: paulvt
Date: 2007-05-18 10:36:57 +0000 (Fri, 18 May 2007)
New Revision: 1585

Added:
   packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby.docs
   packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby.examples
Removed:
   packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby1.8.examples
Modified:
   packages-wip/libopenid-ruby/trunk/debian/control
   packages-wip/libopenid-ruby/trunk/debian/copyright
   packages-wip/libopenid-ruby/trunk/debian/rules
Log:
* Merged package data with my own package:
  - debian/control:
    o use section libs and priority optional
    o added myself to the Uploaders.
    o Added build-depend-indep on ruby1.8, moved the build-depend-indep
      on ruby-pkg-tools to the build-depends for it is used in the
      clean target.
    o Description adaptations; added homepage.
  - debian/copyright:
    o Added a licence remark for setup.rb which is LGPL, not Apache 2.0.
    o Updated the download page.
  - debian/docs, debian/libyadis-*:
    o Removed debian/docs containing only README for it is implied.
    o Added DH files to install the docs and examples.
  - debian/rules: small clean-up.



Modified: packages-wip/libopenid-ruby/trunk/debian/control
===================================================================
--- packages-wip/libopenid-ruby/trunk/debian/control	2007-05-18 10:30:03 UTC (rev 1584)
+++ packages-wip/libopenid-ruby/trunk/debian/control	2007-05-18 10:36:57 UTC (rev 1585)
@@ -1,19 +1,18 @@
 Source: libopenid-ruby
-Section: net
-Priority: extra
+Section: libs
+Priority: optional
 Maintainer: Antonio Terceiro <terceiro at softwarelivre.org>
-Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
-Build-Depends: cdbs, debhelper (>= 5)
+Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>, Paul van Tilburg <paulvt at debian.org>
+Build-Depends: ruby-pkg-tools (>= 0.8), cdbs, debhelper (>= 5)
+Build-Depends-Indep: ruby1.8
 Standards-Version: 3.7.2
-Build-Depends-Indep: ruby-pkg-tools, ruby1.8
 
 Package: libopenid-ruby
 Architecture: all
 Depends: libopenid-ruby1.8
-Description: The Ruby OpenID library
- A Ruby library for verifying and serving OpenID identities.  Ruby OpenID makes
- it easy to add OpenID authentication to your web applications.
- .
+Description: Ruby library for verifying and serving OpenID identities
+ Ruby OpenID makes it easy to add OpenID authentication to your web
+ applications.
  This library is a port of the Python OpenID library, and features:
  .
   * API for verifying OpenID identities (OpenID::Consumer)
@@ -24,22 +23,23 @@
   * Multiple storage implementations (Filesystem, SQL)
   * Comprehensive test suite
   * Example code to help you get started, including:
-    * WEBrick based consumer
-    * Ruby on rails based server
-    * OpenIDLoginGenerator for quickly creating a rails app that uses OpenID
+    - WEBrick based consumer
+    - Ruby on rails based server
+    - OpenIDLoginGenerator for quickly creating a rails app that uses OpenID
       for authentication
-    * ActiveRecord adapter for using an SQL store in rails
+    - ActiveRecord adapter for using an SQL store in rails
   .
+  Homepage: http://www.openidenabled.com/openid/libraries/ruby
+  .
   This is a dummy package depending on the package for the current version of
   the Ruby interpreter.
 
 Package: libopenid-ruby1.8
 Architecture: all
 Depends: libruby1.8, libyadis-ruby1.8
-Description: The Ruby OpenID library
- A Ruby library for verifying and serving OpenID identities.  Ruby OpenID makes
- it easy to add OpenID authentication to your web applications.
- .
+Description: Ruby 1.8 library for verifying and serving OpenID identities
+ Ruby OpenID makes it easy to add OpenID authentication to your web
+ applications.
  This library is a port of the Python OpenID library, and features:
  .
   * API for verifying OpenID identities (OpenID::Consumer)
@@ -50,8 +50,10 @@
   * Multiple storage implementations (Filesystem, SQL)
   * Comprehensive test suite
   * Example code to help you get started, including:
-    * WEBrick based consumer
-    * Ruby on rails based server
-    * OpenIDLoginGenerator for quickly creating a rails app that uses OpenID
+    - WEBrick based consumer
+    - Ruby on rails based server
+    - OpenIDLoginGenerator for quickly creating a rails app that uses OpenID
       for authentication
-    * ActiveRecord adapter for using an SQL store in rails
+    - ActiveRecord adapter for using an SQL store in rails
+  .
+  Homepage: http://www.openidenabled.com/openid/libraries/ruby

Modified: packages-wip/libopenid-ruby/trunk/debian/copyright
===================================================================
--- packages-wip/libopenid-ruby/trunk/debian/copyright	2007-05-18 10:30:03 UTC (rev 1584)
+++ packages-wip/libopenid-ruby/trunk/debian/copyright	2007-05-18 10:36:57 UTC (rev 1585)
@@ -3,10 +3,9 @@
 
 It was downloaded from http://www.openidenabled.com/openid/libraries/ruby/download
 
+Copyright holder: JanRain, Inc. (http://www.janrain.com/)
 Upstream Author: Brian Ellin <brian at janrain.com>
 
-Copyright 2006 JanRain, Inc.
-
 Licensed under the Apache License, Version 2.0 (the "License"); you
 may not use this file except in compliance with the License. You may
 obtain a copy of the License at
@@ -19,4 +18,12 @@
 implied. See the License for the specific language governing
 permissions and limitations under the License.
 
-The Debian packaging is (C) 2007, Antonio S. de A. Terceiro <terceiro at softwarelivre.org> and is licensed under the same license as the original package.
+---
+The setup.rb file included in the package's source is released under the
+GNU LGPL.  On Debian systems, the complete text of the GNU Lesser General
+Public can be found in `/usr/share/common-licenses/LGPL'.
+
+---
+The Debian packaging is (C) 2007, Antonio S.  de A.  Terceiro
+<terceiro at softwarelivre.org> and is licensed under the same license as the
+original package.

Added: packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby.docs
===================================================================
--- packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby.docs	                        (rev 0)
+++ packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby.docs	2007-05-18 10:36:57 UTC (rev 1585)
@@ -0,0 +1,2 @@
+doc/*
+test

Copied: packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby.examples (from rev 1563, packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby1.8.examples)
===================================================================
--- packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby.examples	                        (rev 0)
+++ packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby.examples	2007-05-18 10:36:57 UTC (rev 1585)
@@ -0,0 +1 @@
+examples/*

Deleted: packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby1.8.examples
===================================================================
--- packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby1.8.examples	2007-05-18 10:30:03 UTC (rev 1584)
+++ packages-wip/libopenid-ruby/trunk/debian/libopenid-ruby1.8.examples	2007-05-18 10:36:57 UTC (rev 1585)
@@ -1 +0,0 @@
-examples/*

Modified: packages-wip/libopenid-ruby/trunk/debian/rules
===================================================================
--- packages-wip/libopenid-ruby/trunk/debian/rules	2007-05-18 10:30:03 UTC (rev 1584)
+++ packages-wip/libopenid-ruby/trunk/debian/rules	2007-05-18 10:36:57 UTC (rev 1585)
@@ -1,4 +1,6 @@
 #!/usr/bin/make -f
-  
+#
+# CDBS file to build the Ruby OpenID package.
+
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/ruby-pkg-tools/1/class/ruby-setup-rb.mk




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