[DRE-commits] r3460 - in packages/liblog4r-ruby/trunk/debian: . patches

Gunnar Wolf gwolf at alioth.debian.org
Sat Apr 25 20:43:31 UTC 2009


Author: gwolf
Date: 2009-04-25 20:43:31 +0000 (Sat, 25 Apr 2009)
New Revision: 3460

Added:
   packages/liblog4r-ruby/trunk/debian/patches/03_use_object_id.patch
Modified:
   packages/liblog4r-ruby/trunk/debian/changelog
   packages/liblog4r-ruby/trunk/debian/compat
   packages/liblog4r-ruby/trunk/debian/control
Log:
Trivial patch closes two (merged) bugs

Modified: packages/liblog4r-ruby/trunk/debian/changelog
===================================================================
--- packages/liblog4r-ruby/trunk/debian/changelog	2009-04-25 20:43:13 UTC (rev 3459)
+++ packages/liblog4r-ruby/trunk/debian/changelog	2009-04-25 20:43:31 UTC (rev 3460)
@@ -1,12 +1,14 @@
-liblog4r-ruby (1.0.5-8) UNRELEASED; urgency=low
+liblog4r-ruby (1.0.5-8) unstable; urgency=low
 
-  [ Lucas Nussbaum ]
-  * NOT RELEASED YET
-
-  [ Gunnar Wolf ]
   * Changed section to Ruby as per ftp-masters' request
+  * Added 03_use_object_id.patch fixing usage of deprecated id instead of
+    object_id (Closes: #524466)
+  * Added myself as an uploader
+  * Standards-version 3.7.3 -> 3.8.1.0 (no changes needed)
+  * Added missing misc:Depends
+  * Updated DH compat to 7 (was deprecated 4)
 
- -- Gunnar Wolf <gwolf at debian.org>  Tue, 21 Apr 2009 15:54:03 -0500
+ -- Gunnar Wolf <gwolf at debian.org>  Sat, 25 Apr 2009 15:41:17 -0500
 
 liblog4r-ruby (1.0.5-7) unstable; urgency=low
 

Modified: packages/liblog4r-ruby/trunk/debian/compat
===================================================================
--- packages/liblog4r-ruby/trunk/debian/compat	2009-04-25 20:43:13 UTC (rev 3459)
+++ packages/liblog4r-ruby/trunk/debian/compat	2009-04-25 20:43:31 UTC (rev 3460)
@@ -1 +1 @@
-4
+7

Modified: packages/liblog4r-ruby/trunk/debian/control
===================================================================
--- packages/liblog4r-ruby/trunk/debian/control	2009-04-25 20:43:13 UTC (rev 3459)
+++ packages/liblog4r-ruby/trunk/debian/control	2009-04-25 20:43:31 UTC (rev 3460)
@@ -2,17 +2,17 @@
 Section: ruby
 Priority: optional
 Maintainer: Paul van Tilburg <paulvt at debian.org>
-Uploaders: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 5), cdbs
+Uploaders: Gunnar Wolf <gwolf at debian.org>, Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7), cdbs
 Build-Depends-Indep: ruby-pkg-tools (>= 0.8), ruby1.8
-Standards-Version: 3.7.3
+Standards-Version: 3.8.1.0
 Homepage: http://log4r.sourceforge.net/
 Vcs-Svn: svn://svn.debian.org/svn/pkg-ruby-extras/packages/liblog4r-ruby/trunk/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-ruby-extras/packages/liblog4r-ruby/trunk/
 
 Package: liblog4r-ruby
 Architecture: all
-Depends: liblog4r-ruby1.8
+Depends: ${misc:Depends}, liblog4r-ruby1.8
 Description: A logging library for Ruby
  Log4r is a comprehensive and flexible logging library written in Ruby for
  use in Ruby programs. 
@@ -26,7 +26,7 @@
 
 Package: liblog4r-ruby1.8
 Architecture: all
-Depends: libruby1.8
+Depends: ${misc:Depends}, libruby1.8
 Description: A logging library for Ruby
  Log4r is a comprehensive and flexible logging library written in Ruby for
  use in Ruby programs. 

Added: packages/liblog4r-ruby/trunk/debian/patches/03_use_object_id.patch
===================================================================
--- packages/liblog4r-ruby/trunk/debian/patches/03_use_object_id.patch	                        (rev 0)
+++ packages/liblog4r-ruby/trunk/debian/patches/03_use_object_id.patch	2009-04-25 20:43:31 UTC (rev 3460)
@@ -0,0 +1,14 @@
+--- src/log4r/logger.rb.orig
++++ src/log4r/logger.rb
+@@ -138,7 +138,7 @@ module Log4r
+     def is_root?; false end
+ 
+     def ==(other)
+-      return true if id == other.id
++      return true if self.object_id == other.object_id
+     end
+   end
+ 
+-- 
+1.6.2.3
+




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