mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
f35b5f5d20
2.72c is a prerelease version of autoconf 2.73. It contains largefile and y2038 64 bit time_t improvements for 32 bit architectures. Rather than work on the older codebase, this brings us to work with the recent autoconf upstream with the 64 bit changes. It is unclear when upstream will release 2.73 but it is easier for us to be aligned now we've done the bulk of the work needed to update. Upstream added several patches which fixed several common failures OE builds ran into (backported in the next commit). In general testing has otherwise been good for us. There is an unfortunate gnulib largefile.m4 bug. This change patches various software to workaround it, next time they update new versions of the gnulib code will be pulled in which address the issue with the official fix. There are also a couple of ordering related fixes for apr and libarchive. (From OE-Core rev: bb74a03e927b4867d885ad3539b097f0e7ed108c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
63 lines
2.5 KiB
BlitzBasic
63 lines
2.5 KiB
BlitzBasic
SUMMARY = "Disk partition editing/resizing utility"
|
|
HOMEPAGE = "http://www.gnu.org/software/parted/parted.html"
|
|
DESCRIPTION = "GNU Parted manipulates partition tables. This is useful for creating space for new operating systems, reorganizing disk usage, copying data on hard disks and disk imaging."
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=2f31b266d3440dd7ee50f92cf67d8e6c"
|
|
SECTION = "console/tools"
|
|
DEPENDS = "ncurses util-linux virtual/libiconv"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.xz \
|
|
file://fix-doc-mandir.patch \
|
|
file://0001-fs-Add-libuuid-to-linker-flags-for-libparted-fs-resi.patch \
|
|
file://autoconf-2.73.patch \
|
|
file://run-ptest \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "3b43dbe33cca0f9a18601ebab56b7852b128ec1a3df3a9b30ccde5e73359e612"
|
|
|
|
inherit autotools pkgconfig gettext texinfo ptest
|
|
|
|
PACKAGECONFIG ?= "readline"
|
|
PACKAGECONFIG[device-mapper] = "--enable-device-mapper,--disable-device-mapper,libdevmapper lvm2"
|
|
PACKAGECONFIG[readline] = "--with-readline,--without-readline,readline"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
do_compile_ptest() {
|
|
oe_runmake -C tests print-align print-max dup-clobber duplicate fs-resize print-flags
|
|
}
|
|
|
|
do_install_ptest() {
|
|
t=${D}${PTEST_PATH}
|
|
mkdir $t/build-aux
|
|
cp ${S}/build-aux/test-driver $t/build-aux/
|
|
cp -r ${S}/tests $t
|
|
cp ${B}/tests/Makefile $t/tests/
|
|
mkdir $t/lib
|
|
cp ${B}/lib/config.h $t/lib
|
|
sed -i "s|^VERSION.*|VERSION = ${PV}|g" $t/tests/Makefile
|
|
sed -i "s|^srcdir =.*|srcdir = \.|g" $t/tests/Makefile
|
|
sed -i "s|^abs_srcdir =.*|abs_srcdir = \.|g" $t/tests/Makefile
|
|
sed -i "s|^abs_top_srcdir =.*|abs_top_srcdir = "${PTEST_PATH}"|g" $t/tests/Makefile
|
|
sed -i "s|^abs_top_builddir =.*|abs_top_builddir = "${PTEST_PATH}"|g" $t/tests/Makefile
|
|
sed -i "s|^Makefile:.*|Makefile:|g" $t/tests/Makefile
|
|
sed -i "/^BUILDINFO.*$/d" $t/tests/Makefile
|
|
for i in print-align print-max print-flags dup-clobber duplicate fs-resize; \
|
|
do cp ${B}/tests/.libs/$i $t/tests/; \
|
|
done
|
|
sed -e 's| ../parted||' -i $t/tests/*.sh
|
|
}
|
|
|
|
RDEPENDS:${PN}-ptest = "bash coreutils perl util-linux-losetup util-linux-mkswap python3 make gawk e2fsprogs-mke2fs e2fsprogs-tune2fs python3-core dosfstools"
|
|
RRECOMMENDS:${PN}-ptest += "kernel-module-scsi-debug kernel-module-loop kernel-module-vfat"
|
|
RDEPENDS:${PN}-ptest:append:libc-glibc = "\
|
|
glibc-utils \
|
|
locale-base-en-us \
|
|
"
|
|
|
|
inherit update-alternatives
|
|
|
|
ALTERNATIVE_PRIORITY = "100"
|
|
ALTERNATIVE:${PN} = "partprobe"
|
|
ALTERNATIVE_LINK_NAME[partprobe] = "${sbindir}/partprobe"
|