blob: 07611e6d853c9ea47871dfa5289d5e088857765b [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
Andrew Geissler9aee5002022-03-30 16:27:02 +000028EXTRA_OECONF = "--with-perl='${USRBINPATH}/env perl' --with-patch=patch --without-sendmail"
Patrick Williams213cb262021-08-07 19:21:33 -050029EXTRA_OECONF:append:class-native = " --disable-nls"
Andrew Geissler9aee5002022-03-30 16:27:02 +000030
Brad Bishop19323692019-04-05 15:28:33 -040031EXTRA_AUTORECONF += "--exclude=aclocal"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050032
Andrew Geissler9b4d8b02021-02-19 12:26:16 -060033CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash ac_cv_path_COLUMN=column"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034
Brad Bishop6e60e8b2018-02-01 10:27:11 -050035# Make sure we don't have "-w" in shebang lines: it breaks using
36# "/usr/bin/env perl" as parser
Patrick Williams213cb262021-08-07 19:21:33 -050037do_configure:prepend () {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050038 find ${S} -name "*.in" -exec sed -i -e "1s,^#\!.*@PERL@ -w$,#\! @PERL@\nuse warnings;," {} \;
39}
40
41# Don't setup symlinks to host utilities, we don't need them
Patrick Williams213cb262021-08-07 19:21:33 -050042do_configure:append () {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050043 sed -e 's,^COMPAT_SYMLINKS.*:=.*,COMPAT_SYMLINKS :=,' -i ${S}/Makefile
44}
45
Patrick Williams213cb262021-08-07 19:21:33 -050046do_configure:class-native () {
Brad Bishop19323692019-04-05 15:28:33 -040047 oe_runconf
48}
49
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080050# quilt Makefiles install to BUILD_ROOT instead of DESTDIR
Patrick Williamsc124f4f2015-09-15 14:41:29 -050051do_install () {
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080052 oe_runmake 'BUILD_ROOT=${D}' install
Patrick Williamsc124f4f2015-09-15 14:41:29 -050053 # cleanup unpackaged files
54 rm -rf ${D}/${datadir}/emacs
55}
56
Patrick Williams213cb262021-08-07 19:21:33 -050057do_install:append:class-native () {
Brad Bishop19323692019-04-05 15:28:33 -040058 # Dummy quiltrc file for patch.bbclass
59 install -d ${D}${sysconfdir}/
60 touch ${D}${sysconfdir}/quiltrc
61}
62
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063do_compile_ptest() {
64 oe_runmake bin/patch-wrapper test/.depend
65}
66
67do_install_ptest() {
Patrick Williamsc0f7c042017-02-23 20:41:17 -060068 tar -c --exclude=\*.in bin/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
69 tar -c --exclude=\*.in compat/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
70 tar -c --exclude=\*.in quilt/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
71 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 -050072 cp ${WORKDIR}/Makefile ${D}${PTEST_PATH}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050073 cp ${WORKDIR}/test.sh ${D}${PTEST_PATH}
Patrick Williamsc124f4f2015-09-15 14:41:29 -050074}
75
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080076PACKAGES += "guards guards-doc"
77
Patrick Williams213cb262021-08-07 19:21:33 -050078FILES:${PN} = "${sysconfdir} ${datadir}/quilt \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080079 ${bindir}/quilt ${libdir}/quilt"
Patrick Williams213cb262021-08-07 19:21:33 -050080FILES:guards = "${bindir}/guards"
81FILES:${PN}-doc = "${mandir}/man1/quilt.1 ${docdir}/${BPN}"
82FILES:guards-doc = "${mandir}/man1/guards.1"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080083
Patrick Williams213cb262021-08-07 19:21:33 -050084RDEPENDS:${PN} = "bash patch diffstat bzip2 util-linux less"
85RDEPENDS:${PN}:class-native = "diffstat-native patch-native bzip2-native"
Brad Bishop19323692019-04-05 15:28:33 -040086
Patrick Williams213cb262021-08-07 19:21:33 -050087RDEPENDS:${PN}-ptest = "make file sed gawk diffutils findutils ed perl \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050088 perl-module-filehandle perl-module-getopt-std \
89 perl-module-posix perl-module-file-temp \
90 perl-module-text-parsewords perl-module-overloading \
Brad Bishop15ae2502019-06-18 21:44:24 -040091 bash util-linux-getopt patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050092 "