All of lore.kernel.org
 help / color / mirror / Atom feed
* [2011.03-maintenance 0/1] pull request 20120404
@ 2012-04-04 10:13 Steffen Sledz
  2012-04-04 10:14 ` [2011.03-maintenance 1/1] docbook-utils-native: fix syntax problem in jw.in Steffen Sledz
  2012-04-09 15:09 ` [2011.03-maintenance 0/1] pull request 20120404 Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Steffen Sledz @ 2012-04-04 10:13 UTC (permalink / raw)
  To: Tom Rini, openembedded-devel

Hi Tom,

please pull this commit backported from oe-core fixing a problem with docbook-utils-native.

Thx,
Steffen

The following changes since commit 71df8a759f91e821a2daee22f34eaa3a31708775:

  python-2.6.6: Fix python-2.6.6 build failure on linux-3.x (2012-03-27 13:08:38 +0200)

are available in the git repository at:
  git://github.com/sledz/oe pull-request-1
  https://github.com/sledz/oe/tree/pull-request-1

Steffen Sledz (1):
  docbook-utils-native: fix syntax problem in jw.in

 .../docbook-utils/docbook-utils-0.6.14/re.patch    |   29 ++++++++++++++++++++
 .../docbook-utils/docbook-utils-native_0.6.14.bb   |    8 ++++-
 2 files changed, 35 insertions(+), 2 deletions(-)
 create mode 100644 recipes/docbook-utils/docbook-utils-0.6.14/re.patch

-- 
1.7.7




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [2011.03-maintenance 1/1] docbook-utils-native: fix syntax problem in jw.in
  2012-04-04 10:13 [2011.03-maintenance 0/1] pull request 20120404 Steffen Sledz
@ 2012-04-04 10:14 ` Steffen Sledz
  2012-04-09 15:09 ` [2011.03-maintenance 0/1] pull request 20120404 Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Steffen Sledz @ 2012-04-04 10:14 UTC (permalink / raw)
  To: Tom Rini, openembedded-devel

Fix runtime error occurred e.g. with docbook-to-man calls:

  grep: character class syntax is [[:space:]], not [:space:]
  grep: character class syntax is [[:space:]], not [:space:]
  jw: There is no frontend called "/docbook/utils-0.6.14/frontends/docbook".

See also:

  <https://qa.mandriva.com/show_bug.cgi?id=61127>

Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de>
---
 .../docbook-utils/docbook-utils-0.6.14/re.patch    |   29 ++++++++++++++++++++
 .../docbook-utils/docbook-utils-native_0.6.14.bb   |    8 ++++-
 2 files changed, 35 insertions(+), 2 deletions(-)
 create mode 100644 recipes/docbook-utils/docbook-utils-0.6.14/re.patch

diff --git a/recipes/docbook-utils/docbook-utils-0.6.14/re.patch b/recipes/docbook-utils/docbook-utils-0.6.14/re.patch
new file mode 100644
index 0000000..db079d6
--- /dev/null
+++ b/recipes/docbook-utils/docbook-utils-0.6.14/re.patch
@@ -0,0 +1,29 @@
+Upstream-Status: Pending
+
+Fix runtime error occurred e.g. with docbook-to-man calls:
+
+  grep: character class syntax is [[:space:]], not [:space:]
+  grep: character class syntax is [[:space:]], not [:space:]
+  jw: There is no frontend called "/docbook/utils-0.6.14/frontends/docbook".
+
+See also:
+
+   <https://qa.mandriva.com/show_bug.cgi?id=61127>
+
+Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de>
+
+diff -Nurd docbook-utils-0.6.14-orig/bin/jw.in docbook-utils-0.6.14/bin/jw.in
+--- docbook-utils-0.6.14-orig/bin/jw.in	2012-03-29 07:50:00.789564826 +0200
++++ docbook-utils-0.6.14/bin/jw.in	2012-03-29 07:52:10.371302967 +0200
+@@ -80,9 +80,9 @@
+ SGML_CATALOGS_DIR="/etc/sgml"
+ if [ -f "$SGML_CONF" ]
+ then
+-  RE='^[:space:]*SGML_BASE_DIR[:space:]*=[:space:]*'
++  RE='^[[:space:]]*SGML_BASE_DIR[[:space:]]*=[[:space:]]*'
+   SGML_BASE_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
+-  RE='^[:space:]*SGML_CATALOGS_DIR[:space:]*=[:space:]*'
++  RE='^[[:space:]]*SGML_CATALOGS_DIR[[:space:]]*=[[:space:]]*'
+   SGML_CATALOGS_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
+ fi
+ 
diff --git a/recipes/docbook-utils/docbook-utils-native_0.6.14.bb b/recipes/docbook-utils/docbook-utils-native_0.6.14.bb
index 7d342ed..29815e3 100644
--- a/recipes/docbook-utils/docbook-utils-native_0.6.14.bb
+++ b/recipes/docbook-utils/docbook-utils-native_0.6.14.bb
@@ -1,9 +1,13 @@
 SECTION = "console/utils"
 LICENSE = "GPL"
 DEPENDS = "openjade-native sgmlspl-native docbook-dsssl-stylesheets-native docbook-sgml-dtd-3.1-native"
-PR = "r2"
+PR = "r3"
+
+SRC_URI = "\
+	ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-${PV}.tar.gz \
+	file://re.patch \
+"
 
-SRC_URI = "ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-${PV}.tar.gz"
 SRC_URI[md5sum] = "6b41b18c365c01f225bc417cf632d81c"
 SRC_URI[sha256sum] = "48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df2e92e9"
 
-- 
1.7.7




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [2011.03-maintenance 0/1] pull request 20120404
  2012-04-04 10:13 [2011.03-maintenance 0/1] pull request 20120404 Steffen Sledz
  2012-04-04 10:14 ` [2011.03-maintenance 1/1] docbook-utils-native: fix syntax problem in jw.in Steffen Sledz
@ 2012-04-09 15:09 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2012-04-09 15:09 UTC (permalink / raw)
  To: Steffen Sledz; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 921 bytes --]

On Wed, Apr 04, 2012 at 12:13:56PM +0200, Steffen Sledz wrote:

> Hi Tom,
> 
> please pull this commit backported from oe-core fixing a problem with docbook-utils-native.
> 
> Thx,
> Steffen
> 
> The following changes since commit 71df8a759f91e821a2daee22f34eaa3a31708775:
> 
>   python-2.6.6: Fix python-2.6.6 build failure on linux-3.x (2012-03-27 13:08:38 +0200)
> 
> are available in the git repository at:
>   git://github.com/sledz/oe pull-request-1
>   https://github.com/sledz/oe/tree/pull-request-1
> 
> Steffen Sledz (1):
>   docbook-utils-native: fix syntax problem in jw.in
> 
>  .../docbook-utils/docbook-utils-0.6.14/re.patch    |   29 ++++++++++++++++++++
>  .../docbook-utils/docbook-utils-native_0.6.14.bb   |    8 ++++-
>  2 files changed, 35 insertions(+), 2 deletions(-)
>  create mode 100644 recipes/docbook-utils/docbook-utils-0.6.14/re.patch

Applied, thanks!

-- 
Tom

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-04-09 15:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-04 10:13 [2011.03-maintenance 0/1] pull request 20120404 Steffen Sledz
2012-04-04 10:14 ` [2011.03-maintenance 1/1] docbook-utils-native: fix syntax problem in jw.in Steffen Sledz
2012-04-09 15:09 ` [2011.03-maintenance 0/1] pull request 20120404 Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.