blob: ec69705093b94fc2e40ec39fbb20f08334707ae0 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Tool for working with series of patches"
Brad Bishopf3f93bb2019-10-16 14:33:32 -04002DESCRIPTION = "Quilt is a tool to manage large sets of patches by keeping \
3track of the changes each patch makes. Patches can be applied, un-applied,\
4refreshed, etc."
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005HOMEPAGE = "http://savannah.nongnu.org/projects/quilt/"
6SECTION = "devel"
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00007LICENSE = "GPL-2.0-only"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
9
10SRC_URI = "${SAVANNAH_GNU_MIRROR}/quilt/quilt-${PV}.tar.gz \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011 file://run-ptest \
12 file://Makefile \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050013 file://test.sh \
14 file://0001-tests-Allow-different-output-from-mv.patch \
Patrick Williams2390b1b2022-11-03 13:47:49 -050015 file://fix-grep-3.8.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016"
17
Patrick Williams213cb262021-08-07 19:21:33 -050018SRC_URI:append:class-target = " file://gnu_patch_test_fix_target.patch"
Brad Bishop19323692019-04-05 15:28:33 -040019
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000020SRC_URI[sha256sum] = "3be3be0987e72a6c364678bb827e3e1fcc10322b56bc5f02b576698f55013cc2"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021
22inherit autotools-brokensep ptest
23
Patrick Williams213cb262021-08-07 19:21:33 -050024INHIBIT_AUTOTOOLS_DEPS:class-native = "1"
25PATCHTOOL:class-native = "patch"
Brad Bishop19323692019-04-05 15:28:33 -040026
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027CLEANBROKEN = "1"
28
Andrew Geissler9aee5002022-03-30 16:27:02 +000029EXTRA_OECONF = "--with-perl='${USRBINPATH}/env perl' --with-patch=patch --without-sendmail"
Patrick Williams213cb262021-08-07 19:21:33 -050030EXTRA_OECONF:append:class-native = " --disable-nls"
Andrew Geissler9aee5002022-03-30 16:27:02 +000031
Brad Bishop19323692019-04-05 15:28:33 -040032EXTRA_AUTORECONF += "--exclude=aclocal"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050033
Andrew Geissler9b4d8b02021-02-19 12:26:16 -060034CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash ac_cv_path_COLUMN=column"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050035
Brad Bishop6e60e8b2018-02-01 10:27:11 -050036# Make sure we don't have "-w" in shebang lines: it breaks using
37# "/usr/bin/env perl" as parser
Patrick Williams213cb262021-08-07 19:21:33 -050038do_configure:prepend () {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050039 find ${S} -name "*.in" -exec sed -i -e "1s,^#\!.*@PERL@ -w$,#\! @PERL@\nuse warnings;," {} \;
40}
41
42# Don't setup symlinks to host utilities, we don't need them
Patrick Williams213cb262021-08-07 19:21:33 -050043do_configure:append () {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050044 sed -e 's,^COMPAT_SYMLINKS.*:=.*,COMPAT_SYMLINKS :=,' -i ${S}/Makefile
45}
46
Patrick Williams213cb262021-08-07 19:21:33 -050047do_configure:class-native () {
Brad Bishop19323692019-04-05 15:28:33 -040048 oe_runconf
49}
50
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080051# quilt Makefiles install to BUILD_ROOT instead of DESTDIR
Patrick Williamsc124f4f2015-09-15 14:41:29 -050052do_install () {
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080053 oe_runmake 'BUILD_ROOT=${D}' install
Patrick Williamsc124f4f2015-09-15 14:41:29 -050054 # cleanup unpackaged files
55 rm -rf ${D}/${datadir}/emacs
56}
57
Patrick Williams213cb262021-08-07 19:21:33 -050058do_install:append:class-native () {
Brad Bishop19323692019-04-05 15:28:33 -040059 # Dummy quiltrc file for patch.bbclass
60 install -d ${D}${sysconfdir}/
61 touch ${D}${sysconfdir}/quiltrc
62}
63
Patrick Williamsc124f4f2015-09-15 14:41:29 -050064do_compile_ptest() {
65 oe_runmake bin/patch-wrapper test/.depend
66}
67
68do_install_ptest() {
Patrick Williamsc0f7c042017-02-23 20:41:17 -060069 tar -c --exclude=\*.in bin/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
70 tar -c --exclude=\*.in compat/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
71 tar -c --exclude=\*.in quilt/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
72 tar -c --exclude=mail.test --exclude=delete.test test/ | ( cd ${D}${PTEST_PATH} && tar -xf - && chmod 777 test)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050073 cp ${WORKDIR}/Makefile ${D}${PTEST_PATH}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050074 cp ${WORKDIR}/test.sh ${D}${PTEST_PATH}
Patrick Williamsc124f4f2015-09-15 14:41:29 -050075}
76
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080077PACKAGES += "guards guards-doc"
78
Patrick Williams213cb262021-08-07 19:21:33 -050079FILES:${PN} = "${sysconfdir} ${datadir}/quilt \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080080 ${bindir}/quilt ${libdir}/quilt"
Patrick Williams213cb262021-08-07 19:21:33 -050081FILES:guards = "${bindir}/guards"
82FILES:${PN}-doc = "${mandir}/man1/quilt.1 ${docdir}/${BPN}"
83FILES:guards-doc = "${mandir}/man1/guards.1"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080084
Patrick Williams213cb262021-08-07 19:21:33 -050085RDEPENDS:${PN} = "bash patch diffstat bzip2 util-linux less"
86RDEPENDS:${PN}:class-native = "diffstat-native patch-native bzip2-native"
Brad Bishop19323692019-04-05 15:28:33 -040087
Patrick Williams213cb262021-08-07 19:21:33 -050088RDEPENDS:${PN}-ptest = "make file sed gawk diffutils findutils ed perl \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050089 perl-module-filehandle perl-module-getopt-std \
90 perl-module-posix perl-module-file-temp \
91 perl-module-text-parsewords perl-module-overloading \
Brad Bishop15ae2502019-06-18 21:44:24 -040092 bash util-linux-getopt patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050093 "