blob: dcba62c84b1790e0eb22739cff8e744464bf843f [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Tool for working with series of patches"
2HOMEPAGE = "http://savannah.nongnu.org/projects/quilt/"
3SECTION = "devel"
4LICENSE = "GPLv2"
5LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
6
7SRC_URI = "${SAVANNAH_GNU_MIRROR}/quilt/quilt-${PV}.tar.gz \
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008 file://run-ptest \
9 file://Makefile \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010 file://test.sh \
11 file://0001-tests-Allow-different-output-from-mv.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012"
13
Brad Bishop19323692019-04-05 15:28:33 -040014SRC_URI_append_class-target = " file://gnu_patch_test_fix_target.patch"
15
Brad Bishop96ff1982019-08-19 13:50:42 -040016SRC_URI[md5sum] = "6800c2404a2c0598ab2eff92a636ba70"
17SRC_URI[sha256sum] = "314b319a6feb13bf9d0f9ffa7ce6683b06919e734a41275087ea457cc9dc6e07"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018
19inherit autotools-brokensep ptest
20
Brad Bishop19323692019-04-05 15:28:33 -040021INHIBIT_AUTOTOOLS_DEPS_class-native = "1"
22PATCHTOOL_class-native = "patch"
23
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024CLEANBROKEN = "1"
25
Brad Bishop6e60e8b2018-02-01 10:27:11 -050026EXTRA_OECONF = "--with-perl='${USRBINPATH}/env perl' --with-patch=patch"
Brad Bishop19323692019-04-05 15:28:33 -040027EXTRA_OECONF_append_class-native = " --disable-nls"
28EXTRA_AUTORECONF += "--exclude=aclocal"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050029
Patrick Williamsc124f4f2015-09-15 14:41:29 -050030CACHED_CONFIGUREVARS += "ac_cv_path_BASH=/bin/bash"
31
Brad Bishop6e60e8b2018-02-01 10:27:11 -050032# Make sure we don't have "-w" in shebang lines: it breaks using
33# "/usr/bin/env perl" as parser
34do_configure_prepend () {
35 find ${S} -name "*.in" -exec sed -i -e "1s,^#\!.*@PERL@ -w$,#\! @PERL@\nuse warnings;," {} \;
36}
37
38# Don't setup symlinks to host utilities, we don't need them
39do_configure_append () {
40 sed -e 's,^COMPAT_SYMLINKS.*:=.*,COMPAT_SYMLINKS :=,' -i ${S}/Makefile
41}
42
Brad Bishop19323692019-04-05 15:28:33 -040043do_configure_class-native () {
44 oe_runconf
45}
46
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080047# quilt Makefiles install to BUILD_ROOT instead of DESTDIR
Patrick Williamsc124f4f2015-09-15 14:41:29 -050048do_install () {
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080049 oe_runmake 'BUILD_ROOT=${D}' install
Patrick Williamsc124f4f2015-09-15 14:41:29 -050050 # cleanup unpackaged files
51 rm -rf ${D}/${datadir}/emacs
52}
53
Brad Bishop19323692019-04-05 15:28:33 -040054do_install_append_class-native () {
55 # Dummy quiltrc file for patch.bbclass
56 install -d ${D}${sysconfdir}/
57 touch ${D}${sysconfdir}/quiltrc
58}
59
Patrick Williamsc124f4f2015-09-15 14:41:29 -050060do_compile_ptest() {
61 oe_runmake bin/patch-wrapper test/.depend
62}
63
64do_install_ptest() {
Patrick Williamsc0f7c042017-02-23 20:41:17 -060065 tar -c --exclude=\*.in bin/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
66 tar -c --exclude=\*.in compat/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
67 tar -c --exclude=\*.in quilt/ | ( cd ${D}${PTEST_PATH} && tar -xf - )
68 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 -050069 cp ${WORKDIR}/Makefile ${D}${PTEST_PATH}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050070 cp ${WORKDIR}/test.sh ${D}${PTEST_PATH}
Patrick Williamsc124f4f2015-09-15 14:41:29 -050071}
72
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080073PACKAGES += "guards guards-doc"
74
75FILES_${PN} = "${sysconfdir} ${datadir}/quilt \
76 ${bindir}/quilt ${libdir}/quilt"
77FILES_guards = "${bindir}/guards"
78FILES_${PN}-doc = "${mandir}/man1/quilt.1 ${docdir}/${BPN}"
79FILES_guards-doc = "${mandir}/man1/guards.1"
80
Brad Bishop19323692019-04-05 15:28:33 -040081RDEPENDS_${PN} = "bash patch diffstat bzip2 util-linux"
82RDEPENDS_${PN}_class-native = "diffstat-native patch-native bzip2-native"
83
Patrick Williamsc124f4f2015-09-15 14:41:29 -050084RDEPENDS_${PN}-ptest = "make file sed gawk diffutils findutils ed perl \
85 perl-module-filehandle perl-module-getopt-std \
86 perl-module-posix perl-module-file-temp \
87 perl-module-text-parsewords perl-module-overloading \
Brad Bishop15ae2502019-06-18 21:44:24 -040088 bash util-linux-getopt patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050089 "