diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-08-01 07:15:57 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-08-13 13:20:57 +0200 |
commit | da4d3edde64ba43d99567a5ce9696df5df3cd824 (patch) | |
tree | f93a4175a2a764ca89024ea87c328d769213020d /meta-oe | |
parent | 8f65c719c77484da9a9bef5a6dbca5373bdcf680 (diff) | |
download | meta-openembedded-da4d3edde64ba43d99567a5ce9696df5df3cd824.tar.gz |
ninja,re2c: Remove
Moved to OE-Core
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-devtools/ninja/ninja_1.7.2.bb | 30 | ||||
-rw-r--r-- | meta-oe/recipes-support/re2c/re2c/configure.patch | 18 | ||||
-rw-r--r-- | meta-oe/recipes-support/re2c/re2c_0.13.5.bb | 15 |
3 files changed, 0 insertions, 63 deletions
diff --git a/meta-oe/recipes-devtools/ninja/ninja_1.7.2.bb b/meta-oe/recipes-devtools/ninja/ninja_1.7.2.bb deleted file mode 100644 index 932e3a6ed..000000000 --- a/meta-oe/recipes-devtools/ninja/ninja_1.7.2.bb +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | SUMMARY = "Ninja is a small build system with a focus on speed." | ||
2 | HOMEPAGE = "http://martine.github.com/ninja/" | ||
3 | LICENSE = "Apache-2.0" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e" | ||
5 | |||
6 | DEPENDS = "re2c-native ninja-native" | ||
7 | |||
8 | SRCREV = "717b7b4a31db6027207588c0fb89c3ead384747b" | ||
9 | |||
10 | SRC_URI = "git://github.com/martine/ninja.git;branch=release" | ||
11 | |||
12 | S = "${WORKDIR}/git" | ||
13 | |||
14 | do_configure[noexec] = "1" | ||
15 | |||
16 | do_compile_class-native() { | ||
17 | ./configure.py --bootstrap | ||
18 | } | ||
19 | |||
20 | do_compile() { | ||
21 | ./configure.py | ||
22 | ninja | ||
23 | } | ||
24 | |||
25 | do_install() { | ||
26 | install -d ${D}${bindir} | ||
27 | install -m 0755 ${S}/ninja ${D}${bindir}/ | ||
28 | } | ||
29 | |||
30 | BBCLASSEXTEND = "native nativesdk" | ||
diff --git a/meta-oe/recipes-support/re2c/re2c/configure.patch b/meta-oe/recipes-support/re2c/re2c/configure.patch deleted file mode 100644 index 8ca0969ad..000000000 --- a/meta-oe/recipes-support/re2c/re2c/configure.patch +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | Modernise configure to work with modern automake. | ||
2 | |||
3 | RP 2014/7/14 | ||
4 | |||
5 | Upstream-Status: Pending | ||
6 | |||
7 | Index: re2c-0.13.5/configure.in | ||
8 | =================================================================== | ||
9 | --- re2c-0.13.5.orig/configure.in 2008-05-25 14:42:34.000000000 +0000 | ||
10 | +++ re2c-0.13.5/configure.in 2014-07-17 14:10:40.595821292 +0000 | ||
11 | @@ -1,6 +1,6 @@ | ||
12 | AC_PREREQ([2.57]) | ||
13 | AC_INIT(re2c, 0.13.5, re2c-general@lists.sourceforge.net) | ||
14 | -AM_INIT_AUTOMAKE(re2c, $PACKAGE_VERSION) | ||
15 | +AM_INIT_AUTOMAKE([foreign]) | ||
16 | AC_CONFIG_SRCDIR(actions.cc) | ||
17 | AM_CONFIG_HEADER(config.h) | ||
18 | |||
diff --git a/meta-oe/recipes-support/re2c/re2c_0.13.5.bb b/meta-oe/recipes-support/re2c/re2c_0.13.5.bb deleted file mode 100644 index dcac940f8..000000000 --- a/meta-oe/recipes-support/re2c/re2c_0.13.5.bb +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | SUMMARY = "Tool for writing very fast and very flexible scanners" | ||
2 | HOMEPAGE = "http://re2c.sourceforge.net/" | ||
3 | AUTHOR = "Marcus Börger <helly@users.sourceforge.net>" | ||
4 | SECTION = "devel" | ||
5 | LICENSE = "PD" | ||
6 | LIC_FILES_CHKSUM = "file://README;beginline=180;md5=822830a2204aef353f2c489f62e02089" | ||
7 | |||
8 | SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \ | ||
9 | file://configure.patch" | ||
10 | SRC_URI[md5sum] = "4a97d8f77ed6d2c76c8bd840a43f5633" | ||
11 | SRC_URI[sha256sum] = "f3a995139af475e80a30207d02728b1e0065b0caade7375e974cb1b14861668c" | ||
12 | |||
13 | BBCLASSEXTEND = "native" | ||
14 | |||
15 | inherit autotools | ||