diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2017-06-15 16:32:17 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-28 15:52:17 +0100 |
commit | 08bd969e53616cb6873cb3d632fa7fedfe373a65 (patch) | |
tree | 87e6b2a0fcba8d990f86429292ac6fcc5541ab0d /meta/recipes-devtools | |
parent | 44da0d9467f4fbd6b10f8fb85e79755b3c7a14cd (diff) | |
download | poky-08bd969e53616cb6873cb3d632fa7fedfe373a65.tar.gz |
remake: remove the recipe
Using remake as the provider of virtual/make has been broken for a while;
looks like no one is using it at all.
(From OE-Core rev: 8d682f7b60073d9ed6841f3b2fbe6cb9bd04efe8)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/remake/remake.inc | 16 | ||||
-rw-r--r-- | meta/recipes-devtools/remake/remake/version-remake.texi.patch | 16 | ||||
-rw-r--r-- | meta/recipes-devtools/remake/remake_4.1+dbg-1.1.bb | 28 |
3 files changed, 0 insertions, 60 deletions
diff --git a/meta/recipes-devtools/remake/remake.inc b/meta/recipes-devtools/remake/remake.inc deleted file mode 100644 index df889fcf9f..0000000000 --- a/meta/recipes-devtools/remake/remake.inc +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | SUMMARY = "Makefile debugger which is gnumake compatible" | ||
2 | DESCRIPTION = "remake is a patched and modernized version of GNU make \ | ||
3 | utility that adds improved error reporting, the ability to trace \ | ||
4 | execution in a comprehensible way, and a debugger." | ||
5 | |||
6 | HOMEPAGE = "http://bashdb.sourceforge.net/remake/" | ||
7 | SECTION = "devel" | ||
8 | |||
9 | SRC_URI = "git://github.com/rocky/remake.git" | ||
10 | |||
11 | inherit autotools gettext update-alternatives pkgconfig | ||
12 | |||
13 | ALTERNATIVE_${PN} = "make" | ||
14 | ALTERNATIVE_LINK_NAME[make] = "${bindir}/make" | ||
15 | ALTERNATIVE_TARGET[make] = "${bindir}/remake" | ||
16 | ALTERNATIVE_PRIORITY = "100" | ||
diff --git a/meta/recipes-devtools/remake/remake/version-remake.texi.patch b/meta/recipes-devtools/remake/remake/version-remake.texi.patch deleted file mode 100644 index fa6329e067..0000000000 --- a/meta/recipes-devtools/remake/remake/version-remake.texi.patch +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | version-remake.texi is not there but it is required by remake.texi, | ||
4 | just add it for getting the 'make remake.info' works. | ||
5 | |||
6 | ============================================================== | ||
7 | diff --git a/doc/version-remake.texi b/doc/version-remake.texi | ||
8 | new file mode 100644 | ||
9 | index 0000000..2a3b72b | ||
10 | --- /dev/null | ||
11 | +++ b/doc/version-remake.texi | ||
12 | @@ -0,0 +1,4 @@ | ||
13 | +@set UPDATED 10 June 2012 | ||
14 | +@set UPDATED-MONTH June 2012 | ||
15 | +@set EDITION 3.82+dbg-0.9git | ||
16 | +@set VERSION 3.82+dbg-0.9git | ||
diff --git a/meta/recipes-devtools/remake/remake_4.1+dbg-1.1.bb b/meta/recipes-devtools/remake/remake_4.1+dbg-1.1.bb deleted file mode 100644 index 8eab7e3a0d..0000000000 --- a/meta/recipes-devtools/remake/remake_4.1+dbg-1.1.bb +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | LICENSE = "GPLv2" | ||
2 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
3 | file://tests/COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
4 | file://glob/COPYING.LIB;md5=4a770b67e6be0f60da244beb2de0fce4" | ||
5 | require remake.inc | ||
6 | |||
7 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+)\+dbg.+)" | ||
8 | SRC_URI += "file://version-remake.texi.patch \ | ||
9 | " | ||
10 | SRCREV = "cf54641d50a0165bb17622b3e9770f426ccbc561" | ||
11 | S = "${WORKDIR}/git" | ||
12 | |||
13 | DEPENDS += "readline guile" | ||
14 | # Need to add "gettext-native" dependency to remake-native. | ||
15 | # By default only "gettext-minimal-native" is added | ||
16 | # when inherit gettext. | ||
17 | DEPENDS_class-native += "gettext-native" | ||
18 | PROVIDES += "virtual/make" | ||
19 | |||
20 | do_configure_prepend() { | ||
21 | # remove the default LINGUAS since we are not going to generate languages | ||
22 | rm ${S}/po/LINGUAS | ||
23 | touch ${S}/po/LINGUAS | ||
24 | # create config.rpath which required by configure.ac | ||
25 | ( cd ${S}; autopoint || touch config.rpath ) | ||
26 | } | ||
27 | |||
28 | BBCLASSEXTEND = "native" | ||