mirror of
https://git.yoctoproject.org/poky
synced 2026-06-05 14:29:48 +00:00
sed: upgrade to 4.7
Drop both patches as they are no longer necessary. Rewrite ptest support as it has been refactored upstream. Ptest results: TOTAL: 67 PASS: 59 SKIP: 8 (due to missing valgrind) (From OE-Core rev: bd40260cbacf660e7390f4f5ef5e096e75774b05) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
6c2d399220
commit
030c2b8df0
-33
@@ -1,33 +0,0 @@
|
||||
From b9565dc2fe0c4f7daaec91b7e83bc7313dee2f4a Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Mon, 13 Apr 2015 17:02:13 -0700
|
||||
Subject: [PATCH] Unset need_charset_alias when building for musl
|
||||
|
||||
localcharset uses ac_cv_gnu_library_2_1 from glibc21.m4
|
||||
which actually shoudl be fixed in gnulib and then all downstream
|
||||
projects will get it eventually. For now we apply the fix to
|
||||
coreutils
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
lib/gnulib.mk | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/lib/gnulib.mk b/lib/gnulib.mk
|
||||
index e1d74db..c0e92dd 100644
|
||||
--- a/lib/gnulib.mk
|
||||
+++ b/lib/gnulib.mk
|
||||
@@ -1882,7 +1882,7 @@ install-exec-localcharset: all-local
|
||||
case '$(host_os)' in \
|
||||
darwin[56]*) \
|
||||
need_charset_alias=true ;; \
|
||||
- darwin* | cygwin* | mingw* | pw32* | cegcc*) \
|
||||
+ darwin* | cygwin* | mingw* | pw32* | cegcc* | linux-musl*) \
|
||||
need_charset_alias=false ;; \
|
||||
*) \
|
||||
need_charset_alias=true ;; \
|
||||
--
|
||||
2.1.4
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
make -C testsuite -k runtest-TESTS
|
||||
@@ -1,66 +0,0 @@
|
||||
sed: add ptest
|
||||
|
||||
ptest needs buildtest-TESTS and runtest-TESTS targets.
|
||||
serial-tests is required to generate those targets.
|
||||
|
||||
And fix following error after add serial-tests.
|
||||
|
||||
[snip]
|
||||
help2man: can't get `--help' info from ../sed/sed
|
||||
make[2]: *** [sed.1] Error 2
|
||||
[snip]
|
||||
|
||||
Upstream-Status: Inappropriate
|
||||
|
||||
Signed-off-by: Chong Lu <Chong.Lu@windriver.com>
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
doc/Makefile.am | 2 +-
|
||||
testsuite/Makefile.am | 6 ++++++
|
||||
3 files changed, 8 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 9d33ec9..4f0c532 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -4,7 +4,7 @@ AC_CONFIG_AUX_DIR(build-aux)
|
||||
AC_CONFIG_SRCDIR([sed/sed.c])
|
||||
AM_CONFIG_HEADER(config.h:config_h.in)
|
||||
AC_PREREQ(2.60)
|
||||
-AM_INIT_AUTOMAKE
|
||||
+AM_INIT_AUTOMAKE([serial-tests])
|
||||
|
||||
SED_FEATURE_VERSION=4.2.2
|
||||
AC_DEFINE_UNQUOTED(SED_FEATURE_VERSION, "$SED_FEATURE_VERSION",
|
||||
diff --git a/doc/Makefile.am b/doc/Makefile.am
|
||||
index af6975c..6fd8c9a 100644
|
||||
--- a/doc/Makefile.am
|
||||
+++ b/doc/Makefile.am
|
||||
@@ -25,7 +25,7 @@ $(srcdir)/s-texi: sed-in.texi $(srcdir)/groupify.sed
|
||||
fi
|
||||
echo stamp > $(srcdir)/s-texi
|
||||
|
||||
-sed.1: $(top_srcdir)/sed/sed.c $(top_srcdir)/configure.ac $(srcdir)/sed.x
|
||||
+_sed.1: $(top_srcdir)/sed/sed.c $(top_srcdir)/configure.ac $(srcdir)/sed.x
|
||||
$(HELP2MAN) --name "stream editor for filtering and transforming text" \
|
||||
-p sed --include $(srcdir)/sed.x -o $(srcdir)/sed.1 $(SED)
|
||||
|
||||
diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am
|
||||
index d80e72c..b05f01e 100644
|
||||
--- a/testsuite/Makefile.am
|
||||
+++ b/testsuite/Makefile.am
|
||||
@@ -99,5 +99,11 @@ EXTRA_DIST = \
|
||||
# automake makes `check' depend on $(TESTS). Declare
|
||||
# dummy targets for $(TESTS) so that make does not complain.
|
||||
|
||||
+install-ptest:
|
||||
+ cd $(BUILDDIR); tar -c --exclude=*.o $(TESTDIR) | ( cd $(DESTDIR) && tar -xf - )
|
||||
+ for i in $(EXTRA_DIST) tst-regex2.c; do install $(srcdir)/$$i $(DESTDIR)/$(TESTDIR); done
|
||||
+ sed -e 's/^Makefile:/_Makefile:/' -e 's/^srcdir = \(.*\)/srcdir = ./' -e 's/bash/sh/' -i $(DESTDIR)/$(TESTDIR)/Makefile
|
||||
+ for i in `grep -rl "../sed/sed" $(DESTDIR)/$(TESTDIR)`; do sed -e 's/..\/sed\/sed/sed/' -i $$i; done
|
||||
+
|
||||
.PHONY: $(SEDTESTS)
|
||||
$(SEDTESTS):
|
||||
--
|
||||
1.7.9.5
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
chown nobody testsuite
|
||||
chown nobody ../ptest
|
||||
su nobody -c "make test-suite.log"
|
||||
@@ -1,53 +0,0 @@
|
||||
SUMMARY = "Stream EDitor (text filtering utility)"
|
||||
HOMEPAGE = "http://www.gnu.org/software/sed/"
|
||||
LICENSE = "GPLv3+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
|
||||
file://sed/sed.h;beginline=1;endline=17;md5=767ab3a06d7584f6fd0469abaec4412f"
|
||||
SECTION = "console/utils"
|
||||
|
||||
SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz \
|
||||
file://sed-add-ptest.patch \
|
||||
file://0001-Unset-need_charset_alias-when-building-for-musl.patch \
|
||||
file://run-ptest \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "4111de4faa3b9848a0686b2f260c5056"
|
||||
SRC_URI[sha256sum] = "fea0a94d4b605894f3e2d5572e3f96e4413bcad3a085aae7367c2cf07908b2ff"
|
||||
|
||||
inherit autotools texinfo update-alternatives gettext ptest
|
||||
RDEPENDS_${PN}-ptest += "make"
|
||||
RRECOMMENDS_${PN}-ptest_append_libc-glibc = " locale-base-ru-ru"
|
||||
|
||||
EXTRA_OECONF = "--disable-acl \
|
||||
${@bb.utils.contains('PTEST_ENABLED', '1', '--enable-regex-tests', '', d)}"
|
||||
|
||||
do_install () {
|
||||
autotools_do_install
|
||||
install -d ${D}${base_bindir}
|
||||
if [ ! ${D}${bindir} -ef ${D}${base_bindir} ]; then
|
||||
mv ${D}${bindir}/sed ${D}${base_bindir}/sed
|
||||
rmdir ${D}${bindir}/
|
||||
fi
|
||||
}
|
||||
|
||||
ALTERNATIVE_${PN} = "sed"
|
||||
ALTERNATIVE_LINK_NAME[sed] = "${base_bindir}/sed"
|
||||
ALTERNATIVE_PRIORITY = "100"
|
||||
|
||||
TESTDIR = "testsuite"
|
||||
|
||||
do_compile_ptest() {
|
||||
oe_runmake -C ${TESTDIR} buildtest-TESTS
|
||||
}
|
||||
|
||||
do_install_ptest() {
|
||||
oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B} DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR}
|
||||
sed -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \
|
||||
-e 's|${DEBUG_PREFIX_MAP}||g' \
|
||||
-e 's:${HOSTTOOLS_DIR}/::g' \
|
||||
-e 's:${RECIPE_SYSROOT_NATIVE}::g' \
|
||||
-e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \
|
||||
-i ${D}${PTEST_PATH}/${TESTDIR}/Makefile
|
||||
}
|
||||
|
||||
RPROVIDES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', '/bin/sed', '', d)}"
|
||||
@@ -0,0 +1,61 @@
|
||||
SUMMARY = "Stream EDitor (text filtering utility)"
|
||||
HOMEPAGE = "http://www.gnu.org/software/sed/"
|
||||
LICENSE = "GPLv3+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=c678957b0c8e964aa6c70fd77641a71e \
|
||||
file://sed/sed.h;beginline=1;endline=15;md5=e869c874e5472ba89f63f381b0e93475"
|
||||
SECTION = "console/utils"
|
||||
|
||||
SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.xz \
|
||||
file://run-ptest \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "777ddfd9d71dd06711fe91f0925e1573"
|
||||
SRC_URI[sha256sum] = "2885768cd0a29ff8d58a6280a270ff161f6a3deb5690b2be6c49f46d4c67bd6a"
|
||||
|
||||
inherit autotools texinfo update-alternatives gettext ptest
|
||||
RDEPENDS_${PN}-ptest += "make gawk perl perl-module-filehandle perl-module-file-compare perl-module-file-find perl-module-file-temp perl-module-file-stat"
|
||||
RRECOMMENDS_${PN}-ptest_append_libc-glibc = " locale-base-ru-ru locale-base-en-us locale-base-el-gr.iso-8859-7"
|
||||
|
||||
EXTRA_OECONF = "--disable-acl \
|
||||
"
|
||||
|
||||
do_install () {
|
||||
autotools_do_install
|
||||
install -d ${D}${base_bindir}
|
||||
if [ ! ${D}${bindir} -ef ${D}${base_bindir} ]; then
|
||||
mv ${D}${bindir}/sed ${D}${base_bindir}/sed
|
||||
rmdir ${D}${bindir}/
|
||||
fi
|
||||
}
|
||||
|
||||
ALTERNATIVE_${PN} = "sed"
|
||||
ALTERNATIVE_LINK_NAME[sed] = "${base_bindir}/sed"
|
||||
ALTERNATIVE_PRIORITY = "100"
|
||||
|
||||
do_compile_ptest() {
|
||||
oe_runmake testsuite/get-mb-cur-max testsuite/test-mbrtowc
|
||||
}
|
||||
|
||||
do_install_ptest() {
|
||||
cp -rf ${S}/testsuite/ ${D}${PTEST_PATH}
|
||||
cp -rf ${B}/testsuite/* ${D}${PTEST_PATH}/testsuite/
|
||||
cp -rf ${S}/build-aux/ ${D}${PTEST_PATH}/
|
||||
cp ${B}/Makefile ${D}${PTEST_PATH}
|
||||
cp ${S}/init.cfg ${D}${PTEST_PATH}
|
||||
|
||||
sed -e 's/^Makefile:/_Makefile:/' -e 's/^srcdir = \(.*\)/srcdir = ./' -e 's/bash/sh/' -i ${D}${PTEST_PATH}/Makefile
|
||||
for i in `grep -rl "sed/sed" ${D}${PTEST_PATH}`; do sed -e 's/..\/sed\/sed/sed/' -i $i; done
|
||||
|
||||
sed -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \
|
||||
-e 's|${DEBUG_PREFIX_MAP}||g' \
|
||||
-e 's:${HOSTTOOLS_DIR}/::g' \
|
||||
-e 's:${RECIPE_SYSROOT_NATIVE}::g' \
|
||||
-e 's:abs_top_builddir =.*:abs_top_builddir = ..:g' \
|
||||
-e 's:abs_top_srcdir =.*:abs_top_srcdir = ..:g' \
|
||||
-e 's:abs_srcdir =.*:abs_srcdir = ..:g' \
|
||||
-e 's:top_srcdir =.*:top_srcdir = ..:g' \
|
||||
-e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \
|
||||
-i ${D}${PTEST_PATH}/Makefile
|
||||
}
|
||||
|
||||
RPROVIDES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', '/bin/sed', '', d)}"
|
||||
Reference in New Issue
Block a user