* [PATCH 0/1] Improve the regex of sed command of SVN_SERF_INCLUDES macro of subversion
@ 2015-07-08 9:03 Kai Kang
2015-07-08 9:03 ` [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro Kai Kang
0 siblings, 1 reply; 4+ messages in thread
From: Kai Kang @ 2015-07-08 9:03 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 8ad9a434c9fd0300cf5c38c368b181b78421e95a:
bitbake: tests/data: Add new data tests (2015-07-01 15:40:21 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib kangkai/subversion
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=kangkai/subversion
Kai Kang (1):
subversion: improve the regex of sed command of SVN_SERF_INCLUDES
macro
.../Improve_the_regex_of_sed_command_of.patch | 31 ++++++++++++++++++++++
.../subversion/subversion_1.8.13.bb | 1 +
2 files changed, 32 insertions(+)
create mode 100644 meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch
--
1.9.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro
2015-07-08 9:03 [PATCH 0/1] Improve the regex of sed command of SVN_SERF_INCLUDES macro of subversion Kai Kang
@ 2015-07-08 9:03 ` Kai Kang
2015-07-08 10:36 ` Martin Jansa
0 siblings, 1 reply; 4+ messages in thread
From: Kai Kang @ 2015-07-08 9:03 UTC (permalink / raw)
To: openembedded-core
[Yocto #7474]
The regex of sed command is too simple, which mangles any "-D" in
strings, for example, a project name is "My-Demo", it will be removed
from the path by the sed regex, which causes a build failure. Improving
it to only delete the -D behind of a space or the -D at start of a
string.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
.../Improve_the_regex_of_sed_command_of.patch | 31 ++++++++++++++++++++++
.../subversion/subversion_1.8.13.bb | 1 +
2 files changed, 32 insertions(+)
create mode 100644 meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch
diff --git a/meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch b/meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch
new file mode 100644
index 0000000..626923b
--- /dev/null
+++ b/meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch
@@ -0,0 +1,31 @@
+Improve the regex of sed command of SVN_SERF_INCLUDES macro
+
+The regex of sed command is too simple, which mangles any "-D"
+in strings, for example, a project name is "My-Demo", it will
+be removed from the path by the sed regex, which causes a build
+failure. Improving it to only delete the -D behind of a space or
+the -D at start of a string.
+
+Reference:
+
+https://bugzilla.yoctoproject.org/show_bug.cgi?id=7874
+
+Upstream-Status: Submitted [http://mail-archives.apache.org/mod_mbox/subversion-dev/201507.mbox/%3C559CDA70.8030403%40windriver.com%3E]
+
+Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
+Signed-off-by: Yue Tao <yue.tao@windriver.com>
+Signed-off-by: Kai Kang <kai.kang@windriver.com>
+
+diff --git a/build/ac-macros/serf.m4.old b/build/ac-macros/serf.m4
+index 885c5a1..39969c6 100644
+--- a/build/ac-macros/serf.m4.old
++++ b/build/ac-macros/serf.m4
+@@ -143,7 +143,7 @@ AC_DEFUN(SVN_SERF_PKG_CONFIG,
+ if $PKG_CONFIG $serf_major --atleast-version=$serf_check_version; then
+ AC_MSG_RESULT([yes])
+ serf_found=yes
+- SVN_SERF_INCLUDES=[`$PKG_CONFIG $serf_major --cflags | $SED -e 's/-D[^ ]*//g'`]
++ SVN_SERF_INCLUDES=[`$PKG_CONFIG $serf_major --cflags | $SED -e 's/[[:space:]]-D[^ ]*//g' -e 's/^-D[^ ]*//g'`]
+ SVN_SERF_LIBS=`$PKG_CONFIG $serf_major --libs`
+ break
+ else
diff --git a/meta/recipes-devtools/subversion/subversion_1.8.13.bb b/meta/recipes-devtools/subversion/subversion_1.8.13.bb
index a98be67..73ace61 100644
--- a/meta/recipes-devtools/subversion/subversion_1.8.13.bb
+++ b/meta/recipes-devtools/subversion/subversion_1.8.13.bb
@@ -12,6 +12,7 @@ inherit gettext pythonnative
SRC_URI = "${APACHE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \
file://libtool2.patch \
file://disable_macos.patch \
+ file://Improve_the_regex_of_sed_command_of.patch \
"
SRC_URI[md5sum] = "4413417b529d7bdf82f74e50df02e88b"
SRC_URI[sha256sum] = "1099cc68840753b48aedb3a27ebd1e2afbcc84ddb871412e5d500e843d607579"
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro
2015-07-08 9:03 ` [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro Kai Kang
@ 2015-07-08 10:36 ` Martin Jansa
2015-07-09 1:57 ` Kang Kai
0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2015-07-08 10:36 UTC (permalink / raw)
To: Kai Kang; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 3847 bytes --]
On Wed, Jul 08, 2015 at 05:03:40PM +0800, Kai Kang wrote:
> [Yocto #7474]
>
> The regex of sed command is too simple, which mangles any "-D" in
> strings, for example, a project name is "My-Demo", it will be removed
> from the path by the sed regex, which causes a build failure. Improving
> it to only delete the -D behind of a space or the -D at start of a
> string.
Seems to duplicate:
commit 04554b128c358e3c10f6581fd4506764a65240b8
Author: Jose Lamego <jose.a.lamego@linux.intel.com>
Date: Fri Jul 3 07:34:50 2015 +0000
subversion_1.8.13.bb: Regex modified to allow '-D' in paths
>
> Signed-off-by: Kai Kang <kai.kang@windriver.com>
> ---
> .../Improve_the_regex_of_sed_command_of.patch | 31 ++++++++++++++++++++++
> .../subversion/subversion_1.8.13.bb | 1 +
> 2 files changed, 32 insertions(+)
> create mode 100644 meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch
>
> diff --git a/meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch b/meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch
> new file mode 100644
> index 0000000..626923b
> --- /dev/null
> +++ b/meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch
> @@ -0,0 +1,31 @@
> +Improve the regex of sed command of SVN_SERF_INCLUDES macro
> +
> +The regex of sed command is too simple, which mangles any "-D"
> +in strings, for example, a project name is "My-Demo", it will
> +be removed from the path by the sed regex, which causes a build
> +failure. Improving it to only delete the -D behind of a space or
> +the -D at start of a string.
> +
> +Reference:
> +
> +https://bugzilla.yoctoproject.org/show_bug.cgi?id=7874
> +
> +Upstream-Status: Submitted [http://mail-archives.apache.org/mod_mbox/subversion-dev/201507.mbox/%3C559CDA70.8030403%40windriver.com%3E]
> +
> +Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> +Signed-off-by: Yue Tao <yue.tao@windriver.com>
> +Signed-off-by: Kai Kang <kai.kang@windriver.com>
> +
> +diff --git a/build/ac-macros/serf.m4.old b/build/ac-macros/serf.m4
> +index 885c5a1..39969c6 100644
> +--- a/build/ac-macros/serf.m4.old
> ++++ b/build/ac-macros/serf.m4
> +@@ -143,7 +143,7 @@ AC_DEFUN(SVN_SERF_PKG_CONFIG,
> + if $PKG_CONFIG $serf_major --atleast-version=$serf_check_version; then
> + AC_MSG_RESULT([yes])
> + serf_found=yes
> +- SVN_SERF_INCLUDES=[`$PKG_CONFIG $serf_major --cflags | $SED -e 's/-D[^ ]*//g'`]
> ++ SVN_SERF_INCLUDES=[`$PKG_CONFIG $serf_major --cflags | $SED -e 's/[[:space:]]-D[^ ]*//g' -e 's/^-D[^ ]*//g'`]
> + SVN_SERF_LIBS=`$PKG_CONFIG $serf_major --libs`
> + break
> + else
> diff --git a/meta/recipes-devtools/subversion/subversion_1.8.13.bb b/meta/recipes-devtools/subversion/subversion_1.8.13.bb
> index a98be67..73ace61 100644
> --- a/meta/recipes-devtools/subversion/subversion_1.8.13.bb
> +++ b/meta/recipes-devtools/subversion/subversion_1.8.13.bb
> @@ -12,6 +12,7 @@ inherit gettext pythonnative
> SRC_URI = "${APACHE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \
> file://libtool2.patch \
> file://disable_macos.patch \
> + file://Improve_the_regex_of_sed_command_of.patch \
> "
> SRC_URI[md5sum] = "4413417b529d7bdf82f74e50df02e88b"
> SRC_URI[sha256sum] = "1099cc68840753b48aedb3a27ebd1e2afbcc84ddb871412e5d500e843d607579"
> --
> 1.9.1
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro
2015-07-08 10:36 ` Martin Jansa
@ 2015-07-09 1:57 ` Kang Kai
0 siblings, 0 replies; 4+ messages in thread
From: Kang Kai @ 2015-07-09 1:57 UTC (permalink / raw)
To: Martin Jansa; +Cc: openembedded-core
On 2015年07月08日 18:36, Martin Jansa wrote:
> On Wed, Jul 08, 2015 at 05:03:40PM +0800, Kai Kang wrote:
>> [Yocto #7474]
>>
>> The regex of sed command is too simple, which mangles any "-D" in
>> strings, for example, a project name is "My-Demo", it will be removed
>> from the path by the sed regex, which causes a build failure. Improving
>> it to only delete the -D behind of a space or the -D at start of a
>> string.
> Seems to duplicate:
> commit 04554b128c358e3c10f6581fd4506764a65240b8
> Author: Jose Lamego <jose.a.lamego@linux.intel.com>
> Date: Fri Jul 3 07:34:50 2015 +0000
>
> subversion_1.8.13.bb: Regex modified to allow '-D' in paths
Thanks for pointing out it.
The patch is merged by subversion upstream with replacing '[[:space:]]'
with ' '.
http://svn.apache.org/viewvc/subversion/trunk/build/ac-macros/serf.m4?r1=1594156&r2=1689824
Regards,
Kai
>
>
>> Signed-off-by: Kai Kang <kai.kang@windriver.com>
>> ---
>> .../Improve_the_regex_of_sed_command_of.patch | 31 ++++++++++++++++++++++
>> .../subversion/subversion_1.8.13.bb | 1 +
>> 2 files changed, 32 insertions(+)
>> create mode 100644 meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch
>>
>> diff --git a/meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch b/meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch
>> new file mode 100644
>> index 0000000..626923b
>> --- /dev/null
>> +++ b/meta/recipes-devtools/subversion/subversion-1.8.13/Improve_the_regex_of_sed_command_of.patch
>> @@ -0,0 +1,31 @@
>> +Improve the regex of sed command of SVN_SERF_INCLUDES macro
>> +
>> +The regex of sed command is too simple, which mangles any "-D"
>> +in strings, for example, a project name is "My-Demo", it will
>> +be removed from the path by the sed regex, which causes a build
>> +failure. Improving it to only delete the -D behind of a space or
>> +the -D at start of a string.
>> +
>> +Reference:
>> +
>> +https://bugzilla.yoctoproject.org/show_bug.cgi?id=7874
>> +
>> +Upstream-Status: Submitted [http://mail-archives.apache.org/mod_mbox/subversion-dev/201507.mbox/%3C559CDA70.8030403%40windriver.com%3E]
>> +
>> +Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
>> +Signed-off-by: Yue Tao <yue.tao@windriver.com>
>> +Signed-off-by: Kai Kang <kai.kang@windriver.com>
>> +
>> +diff --git a/build/ac-macros/serf.m4.old b/build/ac-macros/serf.m4
>> +index 885c5a1..39969c6 100644
>> +--- a/build/ac-macros/serf.m4.old
>> ++++ b/build/ac-macros/serf.m4
>> +@@ -143,7 +143,7 @@ AC_DEFUN(SVN_SERF_PKG_CONFIG,
>> + if $PKG_CONFIG $serf_major --atleast-version=$serf_check_version; then
>> + AC_MSG_RESULT([yes])
>> + serf_found=yes
>> +- SVN_SERF_INCLUDES=[`$PKG_CONFIG $serf_major --cflags | $SED -e 's/-D[^ ]*//g'`]
>> ++ SVN_SERF_INCLUDES=[`$PKG_CONFIG $serf_major --cflags | $SED -e 's/[[:space:]]-D[^ ]*//g' -e 's/^-D[^ ]*//g'`]
>> + SVN_SERF_LIBS=`$PKG_CONFIG $serf_major --libs`
>> + break
>> + else
>> diff --git a/meta/recipes-devtools/subversion/subversion_1.8.13.bb b/meta/recipes-devtools/subversion/subversion_1.8.13.bb
>> index a98be67..73ace61 100644
>> --- a/meta/recipes-devtools/subversion/subversion_1.8.13.bb
>> +++ b/meta/recipes-devtools/subversion/subversion_1.8.13.bb
>> @@ -12,6 +12,7 @@ inherit gettext pythonnative
>> SRC_URI = "${APACHE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \
>> file://libtool2.patch \
>> file://disable_macos.patch \
>> + file://Improve_the_regex_of_sed_command_of.patch \
>> "
>> SRC_URI[md5sum] = "4413417b529d7bdf82f74e50df02e88b"
>> SRC_URI[sha256sum] = "1099cc68840753b48aedb3a27ebd1e2afbcc84ddb871412e5d500e843d607579"
>> --
>> 1.9.1
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
Regards,
Neil | Kai Kang
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-07-09 1:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-08 9:03 [PATCH 0/1] Improve the regex of sed command of SVN_SERF_INCLUDES macro of subversion Kai Kang
2015-07-08 9:03 ` [PATCH 1/1] subversion: improve the regex of sed command of SVN_SERF_INCLUDES macro Kai Kang
2015-07-08 10:36 ` Martin Jansa
2015-07-09 1:57 ` Kang Kai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox