r16870 - in /desktop/unstable/rarian/debian: changelog control control.in copyright patches/ patches/01_info_shortnames.patch

joss at users.alioth.debian.org joss at users.alioth.debian.org
Tue Sep 2 14:55:08 UTC 2008


Author: joss
Date: Tue Sep  2 14:55:08 2008
New Revision: 16870

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=16870
Log:
* New upstream bugfix release.
  + Fixes crash when loading an unknown info URI. Closes: #495092.
* 01_info_shortnames.patch: patch from JHM Dassen (Ray), modified a 
  bit. Allow to specify only the prefix of an info page (e.g. gcc for 
  gcc-4.3). Closes: #462332.
* Standards version is 3.8.0, no changes.
* Update homepage and copyright to the new URL.

Added:
    desktop/unstable/rarian/debian/patches/
    desktop/unstable/rarian/debian/patches/01_info_shortnames.patch
Modified:
    desktop/unstable/rarian/debian/changelog
    desktop/unstable/rarian/debian/control
    desktop/unstable/rarian/debian/control.in
    desktop/unstable/rarian/debian/copyright

Modified: desktop/unstable/rarian/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/rarian/debian/changelog?rev=16870&op=diff
==============================================================================
--- desktop/unstable/rarian/debian/changelog (original)
+++ desktop/unstable/rarian/debian/changelog Tue Sep  2 14:55:08 2008
@@ -1,3 +1,15 @@
+rarian (0.8.1-1) unstable; urgency=low
+
+  * New upstream bugfix release.
+    + Fixes crash when loading an unknown info URI. Closes: #495092.
+  * 01_info_shortnames.patch: patch from JHM Dassen (Ray), modified a 
+    bit. Allow to specify only the prefix of an info page (e.g. gcc for 
+    gcc-4.3). Closes: #462332.
+  * Standards version is 3.8.0, no changes.
+  * Update homepage and copyright to the new URL.
+
+ -- Josselin Mouette <joss at debian.org>  Tue, 02 Sep 2008 16:55:00 +0200
+
 rarian (0.8.0-2) unstable; urgency=low
 
   * debian/librarian-dev.install, debian/rarian-compat.install:

Modified: desktop/unstable/rarian/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/rarian/debian/control?rev=16870&op=diff
==============================================================================
--- desktop/unstable/rarian/debian/control (original)
+++ desktop/unstable/rarian/debian/control Tue Sep  2 14:55:08 2008
@@ -2,14 +2,14 @@
 Section: doc
 Priority: extra
 Maintainer: Frederic Peters <fpeters at debian.org>
-Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>, Sebastian Dröge <slomo at debian.org>
+Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>, Josselin Mouette <joss at debian.org>, Sebastian Dröge <slomo at debian.org>
 Build-Depends: cdbs,
                debhelper (>= 5),
                autotools-dev,
                xsltproc,
                gnome-pkg-tools
-Standards-Version: 3.7.3
-Homepage: http://code.google.com/p/rarian/
+Standards-Version: 3.8.0
+Homepage: http://rarian.freedesktop.org/
 
 Package: librarian0
 Section: libs

Modified: desktop/unstable/rarian/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/rarian/debian/control.in?rev=16870&op=diff
==============================================================================
--- desktop/unstable/rarian/debian/control.in (original)
+++ desktop/unstable/rarian/debian/control.in Tue Sep  2 14:55:08 2008
@@ -8,8 +8,8 @@
                autotools-dev,
                xsltproc,
                gnome-pkg-tools
-Standards-Version: 3.7.3
-Homepage: http://code.google.com/p/rarian/
+Standards-Version: 3.8.0
+Homepage: http://rarian.freedesktop.org/
 
 Package: librarian0
 Section: libs

Modified: desktop/unstable/rarian/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/rarian/debian/copyright?rev=16870&op=diff
==============================================================================
--- desktop/unstable/rarian/debian/copyright (original)
+++ desktop/unstable/rarian/debian/copyright Tue Sep  2 14:55:08 2008
@@ -1,7 +1,7 @@
 This package was debianized by Daniel Holbach <daniel.holbach at ubuntu.com> on
 Sun,  6 May 2007 16:29:19 +0200.
 
-It was downloaded from http://code.google.com/p/rarian/
+It was downloaded from http://rarian.freedesktop.org/
 
 Upstream Author:
 	Don Scorgie <DonScorgie at Blueyonder.co.uk> 	2006-2007

Added: desktop/unstable/rarian/debian/patches/01_info_shortnames.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/rarian/debian/patches/01_info_shortnames.patch?rev=16870&op=file
==============================================================================
--- desktop/unstable/rarian/debian/patches/01_info_shortnames.patch (added)
+++ desktop/unstable/rarian/debian/patches/01_info_shortnames.patch Tue Sep  2 14:55:08 2008
@@ -1,0 +1,14 @@
+--- librarian/rarian-info.c.orig	2008-09-02 16:38:09.982622444 +0200
++++ librarian/rarian-info.c	2008-09-02 16:46:47.227357388 +0200
+@@ -665,8 +665,9 @@
+ 
+   while (l) {
+     if ((l->reg->doc_name && !strcmp (uri, l->reg->doc_name)) ||
+-	(!strcmp (uri, l->reg->name))) {
+-      if (!section || (*section && l->reg->section && !strcmp (l->reg->section, section))) {
++	(!strncmp (uri, l->reg->name, strlen(uri)))) {
++      if ((!section && !strcmp (uri, l->reg->name)) ||
++	  (*section && l->reg->section && !strcmp (l->reg->section, section))) {
+ 	return l->reg;
+       } else {
+ 	best_result = l;




More information about the pkg-gnome-commits mailing list