[DRE-commits] r3120 - in packages/libdb-ruby/trunk/debian: . patches

gwolf at alioth.debian.org gwolf at alioth.debian.org
Tue Dec 9 17:00:12 UTC 2008


Author: gwolf
Date: 2008-12-09 17:00:11 +0000 (Tue, 09 Dec 2008)
New Revision: 3120

Added:
   packages/libdb-ruby/trunk/debian/patches/
   packages/libdb-ruby/trunk/debian/patches/doc-in-a-single-dir.patch
Modified:
   packages/libdb-ruby/trunk/debian/changelog
   packages/libdb-ruby/trunk/debian/rules
Log:
Preparing upload (as NMU) for libdb-ruby (closing #501370)


Modified: packages/libdb-ruby/trunk/debian/changelog
===================================================================
--- packages/libdb-ruby/trunk/debian/changelog	2008-12-05 16:32:05 UTC (rev 3119)
+++ packages/libdb-ruby/trunk/debian/changelog	2008-12-09 17:00:11 UTC (rev 3120)
@@ -1,10 +1,16 @@
-libdb-ruby (0.6.5-3) UNRELEASED; urgency=low
+libdb-ruby (0.6.5-2.1) unstable; urgency=low
 
+  [ Michael Schutte ]
   * NOT RELEASED YET
   * Set “Priority: extra” on the recently introduced transitional packages.
 
- -- Michael Schutte <m.schutte.jr at gmail.com>  Sun, 28 Sep 2008 19:55:47 +0200
+  [ Gunnar Wolf ]
+  * Included the full documentation, and patched bdb.html to find it in
+    the same directory (that is, where dh_installdocs puts it) instead
+    of inside docs/ (Closes: #501370)
 
+ -- Gunnar Wolf <gwolf at debian.org>  Tue, 09 Dec 2008 10:59:21 -0600
+
 libdb-ruby (0.6.5-2) unstable; urgency=medium
 
   * Provide transitional packages libdb4.[234]-ruby1.[89] to provide a working

Added: packages/libdb-ruby/trunk/debian/patches/doc-in-a-single-dir.patch
===================================================================
--- packages/libdb-ruby/trunk/debian/patches/doc-in-a-single-dir.patch	                        (rev 0)
+++ packages/libdb-ruby/trunk/debian/patches/doc-in-a-single-dir.patch	2008-12-09 17:00:11 UTC (rev 3120)
@@ -0,0 +1,56 @@
+diff -Nur -x '*.orig' -x '*~' libdb-ruby-0.6.5/bdb.html libdb-ruby-0.6.5.new/bdb.html
+--- libdb-ruby-0.6.5/bdb.html	2005-02-15 11:06:21.000000000 -0600
++++ libdb-ruby-0.6.5.new/bdb.html	2008-12-09 10:37:05.000000000 -0600
+@@ -37,22 +37,22 @@
+      of the database, or mutable, permitting new records to be inserted
+      between existing records. </li>
+ </ul>
+-<p><a href="docs/env.html">Berkeley DB environnement</a></p>
++<p><a href="env.html">Berkeley DB environnement</a></p>
+ <p>Berkeley DB environment is an encapsulation of one or more databases,
+ log files and shared information about the database environment such
+ as shared memory buffer cache pages.</p>
+ <p>Acces Methods</p>
+ <ul>
+-<li><a href="docs/hashlike.html">Hash like interface</a>
++<li><a href="hashlike.html">Hash like interface</a>
+       these are the common methods for BDB::Btree,
+       BDB::Hash, BDB::Recno, BDB::Queue</li>
+-<li><a href="docs/arraylike.html">Array like interface</a>
++<li><a href="arraylike.html">Array like interface</a>
+       methods for BDB::Recnum</li>
+ </ul>
+-<p><a href="docs/sequence.html">Sequence</a></p>
++<p><a href="sequence.html">Sequence</a></p>
+ <p>A sequence is created with BDB::Common::create_sequence or
+ BDB::Common::open_sequence (only with db &gt;= 4.3)</p>
+-<p><a href="docs/transaction.html">Transaction Manager</a></p>
++<p><a href="transaction.html">Transaction Manager</a></p>
+ <p>The transaction subsystem makes operations atomic, consistent,
+ isolated, and durable in the face of system and application
+ failures. The subsystem requires that the data be properly logged and
+@@ -60,20 +60,20 @@
+ the components necessary to transaction-protect the Berkeley DB access
+ methods and other forms of data may be protected if they are logged
+ and locked appropriately.</p>
+-<p><a href="docs/cursor.html">Cursor operation</a></p>
++<p><a href="cursor.html">Cursor operation</a></p>
+ <p>A database cursor is a sequential pointer to the database entries. It
+ allows traversal of the database and access to duplicate keyed
+ entries.  Cursors are used for operating on collections of records,
+ for iterating over a database, and for saving handles to individual
+ records, so that they can be modified after they have been read.</p>
+-<p>See also iterators in <a href="docs/hashlike.html#each">Acces Methods</a></p>
+-<p><a href="docs/lock.html">Lock system</a></p>
++<p>See also iterators in <a href="hashlike.html#each">Acces Methods</a></p>
++<p><a href="lock.html">Lock system</a></p>
+ <p>The lock subsystem provides interprocess and intraprocess concurrency
+ control mechanisms. While the locking system is used extensively by
+ the Berkeley DB access methods and transaction system, it may also be
+ used as a stand-alone subsystem to provide concurrency control to any
+ set of designated resources.</p>
+-<p><a href="docs/log.html">Logging subsystem</a></p>
++<p><a href="log.html">Logging subsystem</a></p>
+ <p>The logging subsystem is the logging facility used by Berkeley DB. It
+ is largely Berkeley DB specific, although it is potentially useful
+ outside of the Berkeley DB package for applications wanting

Modified: packages/libdb-ruby/trunk/debian/rules
===================================================================
--- packages/libdb-ruby/trunk/debian/rules	2008-12-05 16:32:05 UTC (rev 3119)
+++ packages/libdb-ruby/trunk/debian/rules	2008-12-09 17:00:11 UTC (rev 3120)
@@ -6,6 +6,10 @@
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/ruby-pkg-tools/1/class/ruby-common.mk
 include /usr/share/ruby-pkg-tools/1/class/ruby-extconf-rb.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
 
+DEB_INSTALL_DOCS_ALL = docs/*.html
+
 binary/libdb-ruby1.8::
 	make test
+




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