* [PATCH] docbook-utils-native: fix syntax problem in jw.in
@ 2012-03-29 6:58 Steffen Sledz
2012-03-29 21:28 ` Richard Purdie
0 siblings, 1 reply; 5+ messages in thread
From: Steffen Sledz @ 2012-03-29 6:58 UTC (permalink / raw)
To: openembedded-core; +Cc: Scott Garman
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 | 15 +++++++++++++++
.../docbook-utils/docbook-utils-native_0.6.14.bb | 7 +++++--
2 files changed, 20 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch b/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
new file mode 100644
index 0000000..1e53389
--- /dev/null
+++ b/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
@@ -0,0 +1,15 @@
+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/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
index c2ccef3..47a6167 100644
--- a/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
+++ b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
@@ -7,9 +7,12 @@ LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
DEPENDS = "openjade-native sgmlspl-native docbook-dsssl-stylesheets-native docbook-sgml-dtd-3.1-native"
-PR = "r1"
+PR = "r2"
-SRC_URI = "ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-${PV}.tar.gz"
+SRC_URI = "\
+ ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-${PV}.tar.gz \
+ file://re.patch \
+"
SRC_URI[md5sum] = "6b41b18c365c01f225bc417cf632d81c"
SRC_URI[sha256sum] = "48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df2e92e9"
--
1.7.7
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] docbook-utils-native: fix syntax problem in jw.in
2012-03-29 6:58 [PATCH] docbook-utils-native: fix syntax problem in jw.in Steffen Sledz
@ 2012-03-29 21:28 ` Richard Purdie
2012-03-30 9:45 ` [PATCH v2] " Steffen Sledz
0 siblings, 1 reply; 5+ messages in thread
From: Richard Purdie @ 2012-03-29 21:28 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Scott Garman
On Thu, 2012-03-29 at 08:58 +0200, Steffen Sledz wrote:
> 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 | 15 +++++++++++++++
> .../docbook-utils/docbook-utils-native_0.6.14.bb | 7 +++++--
> 2 files changed, 20 insertions(+), 2 deletions(-)
> create mode 100644 meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
>
> diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch b/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
> new file mode 100644
> index 0000000..1e53389
> --- /dev/null
> +++ b/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
> @@ -0,0 +1,15 @@
There is no header on this patch saying what the patch does, why, where
it came from or what its status is. Please resubmit with a header added:
https://wiki.yoctoproject.org/wiki/Contribution_Guidelines#Patch_Header_Recommendations
This is so when we look at the patch a year from now, we can understand
why its there.
Cheers,
Richard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2] docbook-utils-native: fix syntax problem in jw.in
2012-03-29 21:28 ` Richard Purdie
@ 2012-03-30 9:45 ` Steffen Sledz
2012-04-03 9:56 ` Steffen Sledz
0 siblings, 1 reply; 5+ messages in thread
From: Steffen Sledz @ 2012-03-30 9:45 UTC (permalink / raw)
To: openembedded-core; +Cc: Scott Garman
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 | 7 +++-
2 files changed, 34 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch b/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
new file mode 100644
index 0000000..db079d6
--- /dev/null
+++ b/meta/recipes-devtools/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/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
index 96459dc..2a89479 100644
--- a/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
+++ b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
@@ -7,9 +7,12 @@ LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
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"
+SRC_URI = "\
+ ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-${PV}.tar.gz \
+ file://re.patch \
+"
SRC_URI[md5sum] = "6b41b18c365c01f225bc417cf632d81c"
SRC_URI[sha256sum] = "48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df2e92e9"
--
1.7.7
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] docbook-utils-native: fix syntax problem in jw.in
2012-03-30 9:45 ` [PATCH v2] " Steffen Sledz
@ 2012-04-03 9:56 ` Steffen Sledz
2012-04-03 14:19 ` Richard Purdie
0 siblings, 1 reply; 5+ messages in thread
From: Steffen Sledz @ 2012-04-03 9:56 UTC (permalink / raw)
To: openembedded-core; +Cc: Scott Garman
On 30.03.2012 11:45, Steffen Sledz wrote:
> 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 | 7 +++-
> 2 files changed, 34 insertions(+), 2 deletions(-)
> create mode 100644 meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
>
> diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch b/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
> new file mode 100644
> index 0000000..db079d6
> --- /dev/null
> +++ b/meta/recipes-devtools/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/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
> index 96459dc..2a89479 100644
> --- a/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
> +++ b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
> @@ -7,9 +7,12 @@ LICENSE = "GPLv2"
> LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
> 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"
> +SRC_URI = "\
> + ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-${PV}.tar.gz \
> + file://re.patch \
> +"
>
> SRC_URI[md5sum] = "6b41b18c365c01f225bc417cf632d81c"
> SRC_URI[sha256sum] = "48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df2e92e9"
Ping!
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] docbook-utils-native: fix syntax problem in jw.in
2012-04-03 9:56 ` Steffen Sledz
@ 2012-04-03 14:19 ` Richard Purdie
0 siblings, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2012-04-03 14:19 UTC (permalink / raw)
To: Steffen Sledz; +Cc: Scott Garman, openembedded-core
On Tue, 2012-04-03 at 11:56 +0200, Steffen Sledz wrote:
> On 30.03.2012 11:45, Steffen Sledz wrote:
> > 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 | 7 +++-
> > 2 files changed, 34 insertions(+), 2 deletions(-)
> > create mode 100644 meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
> >
> > diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch b/meta/recipes-devtools/docbook-utils/docbook-utils-0.6.14/re.patch
> > new file mode 100644
> > index 0000000..db079d6
> > --- /dev/null
> > +++ b/meta/recipes-devtools/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/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
> > index 96459dc..2a89479 100644
> > --- a/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
> > +++ b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb
> > @@ -7,9 +7,12 @@ LICENSE = "GPLv2"
> > LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
> > 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"
> > +SRC_URI = "\
> > + ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/docbook-utils-${PV}.tar.gz \
> > + file://re.patch \
> > +"
> >
> > SRC_URI[md5sum] = "6b41b18c365c01f225bc417cf632d81c"
> > SRC_URI[sha256sum] = "48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df2e92e9"
>
> Ping!
I didn't get replies sent out, sorry but this patch was merged to
master.
Cheers,
Richard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-04-03 14:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-29 6:58 [PATCH] docbook-utils-native: fix syntax problem in jw.in Steffen Sledz
2012-03-29 21:28 ` Richard Purdie
2012-03-30 9:45 ` [PATCH v2] " Steffen Sledz
2012-04-03 9:56 ` Steffen Sledz
2012-04-03 14:19 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox