blob: 19532051cda3c0fd1221084011d94586c511fc0d [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 Williamsc124f4f2015-09-15 14:41:29 -050015"
16
Patrick Williams213cb262021-08-07 19:21:33 -050017SRC_URI:append:class-target = " file://gnu_patch_test_fix_target.patch"
Brad Bishop19323692019-04-05 15:28:33 -040018
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000019SRC_URI[sha256sum] = "3be3be0987e72a6c364678bb827e3e1fcc10322b56bc5f02b576698f55013cc2"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020
21inherit autotools-brokensep ptest
22
Patrick Williams213cb262021-08-07 19:21:33 -050023INHIBIT_AUTOTOOLS_DEPS:class-native = "1"
24PATCHTOOL:class-native = "patch"
Brad Bishop19323692019-04-05 15:28:33 -040025
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026CLEANBROKEN = "1"
27
Brad Bishop6e60e8b2018-02-01 10:27:11 -050028EXTRA_OECONF = "--with-perl='${USRBINPATH}/env perl' --with-patch=patch"
Patrick Williams213cb262021-08-07 19:21:33 -050029EXTRA_OECONF:append:class-native = " --disable-nls"
Brad Bishop19323692019-04-05 15:28:33 -040030EXTRA_AUTORECONF += "--exclude=aclocal"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050031
Andrew Geissler9b4d8b02021-02-19 12:26:16 -060032CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash ac_cv_path_COLUMN=column"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033
Brad Bishop6e60e8b2018-02-01 10:27:11 -050034# Make sure we don't have "-w" in shebang lines: it breaks using
35# "/usr/bin/env perl" as parser
Patrick Williams213cb262021-08-07 19:21:33 -050036do_configure:prepend () {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050037 find ${S} -name "*.in" -exec sed -i -e "1s,^#\!.*@PERL@ -w$,#\! @PERL@\nuse warnings;," {} \;
38}
39
40# Don't setup symlinks to host utilities, we don't need them
Patrick Williams213cb262021-08-07 19:21:33 -050041do_configure:append () {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050042 sed -e 's,^COMPAT_SYMLINKS.*:=.*,COMPAT_SYMLINKS :=,' -i ${S}/Makefile
43}
44
Patrick Williams213cb262021-08-07 19:21:33 -050045do_configure:class-native () {
Brad Bishop19323692019-04-05 15:28:33 -040046 oe_runconf
47}
48
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080049# quilt Makefiles install to BUILD_ROOT instead of DESTDIR
Patrick Williamsc124f4f2015-09-15 14:41:29 -050050do_install () {
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080051 oe_runmake 'BUILD_ROOT=${D}' install
Patrick Williamsc124f4f2015-09-15 14:41:29 -050052 # cleanup unpackaged files
53 rm -rf ${D}/${datadir}/emacs
54}
55
Patrick Williams213cb262021-08-07 19:21:33 -050056do_install:append:class-native () {
Brad Bishop19323692019-04-05 15:28:33 -040057 # Dummy quiltrc file for patch.bbclass
58 install -d ${D}${sysconfdir}/
59 touch ${D}${sysconfdir}/quiltrc
60}
61
Patrick Williamsc124f4f2015-09-15 14:41:29 -050062do_compile_ptest() {
63 oe_runmake bin/patch-wrapper test/.depend
64}
65
66do_install_ptest() {
Patrick Williamsc0f7c042017-02-23 20:41:17 -060067 tar -c --exclude=\*.in bin/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
68 tar -c --exclude=\*.in compat/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
69 tar -c --exclude=\*.in quilt/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
70 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 -050071 cp ${WORKDIR}/Makefile ${D}${PTEST_PATH}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050072 cp ${WORKDIR}/test.sh ${D}${PTEST_PATH}
Patrick Williamsc124f4f2015-09-15 14:41:29 -050073}
74
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080075PACKAGES += "guards guards-doc"
76
Patrick Williams213cb262021-08-07 19:21:33 -050077FILES:${PN} = "${sysconfdir} ${datadir}/quilt \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080078 ${bindir}/quilt ${libdir}/quilt"
Patrick Williams213cb262021-08-07 19:21:33 -050079FILES:guards = "${bindir}/guards"
80FILES:${PN}-doc = "${mandir}/man1/quilt.1 ${docdir}/${BPN}"
81FILES:guards-doc = "${mandir}/man1/guards.1"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080082
Patrick Williams213cb262021-08-07 19:21:33 -050083RDEPENDS:${PN} = "bash patch diffstat bzip2 util-linux less"
84RDEPENDS:${PN}:class-native = "diffstat-native patch-native bzip2-native"
Brad Bishop19323692019-04-05 15:28:33 -040085
Patrick Williams213cb262021-08-07 19:21:33 -050086RDEPENDS:${PN}-ptest = "make file sed gawk diffutils findutils ed perl \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050087 perl-module-filehandle perl-module-getopt-std \
88 perl-module-posix perl-module-file-temp \
89 perl-module-text-parsewords perl-module-overloading \
Brad Bishop15ae2502019-06-18 21:44:24 -040090 bash util-linux-getopt patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050091 "