diff options
author | Ross Burton <ross.burton@intel.com> | 2016-08-02 14:05:11 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-04 15:22:23 +0100 |
commit | a5eb998c4dc92cc1355fc7a5e7d6f94c54703757 (patch) | |
tree | 88c35620f4d82e6579139ad54a5796da740354db | |
parent | 9ac1500789607327ae626bede5a04cfe0580b944 (diff) | |
download | poky-a5eb998c4dc92cc1355fc7a5e7d6f94c54703757.tar.gz |
augeas: remove from oe-core
Nothing in oe-core uses this, so it's been moved to meta-oe.
(From OE-Core rev: 89cafc6dcf6425c2e33270dac37f7649ccbffa33)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
6 files changed, 0 insertions, 107 deletions
diff --git a/meta/conf/distro/include/distro_alias.inc b/meta/conf/distro/include/distro_alias.inc index 8adafaec64..5948b750ca 100644 --- a/meta/conf/distro/include/distro_alias.inc +++ b/meta/conf/distro/include/distro_alias.inc | |||
@@ -13,7 +13,6 @@ DISTRO_PN_ALIAS_pn-alsa-state = "OE-Core" | |||
13 | DISTRO_PN_ALIAS_pn-alsa-utils-alsaconf = "OE-Core" | 13 | DISTRO_PN_ALIAS_pn-alsa-utils-alsaconf = "OE-Core" |
14 | DISTRO_PN_ALIAS_pn-alsa-utils-scripts = "OE-Core" | 14 | DISTRO_PN_ALIAS_pn-alsa-utils-scripts = "OE-Core" |
15 | DISTRO_PN_ALIAS_pn-atk = "Fedora=atk OpenSuSE=atk" | 15 | DISTRO_PN_ALIAS_pn-atk = "Fedora=atk OpenSuSE=atk" |
16 | DISTRO_PN_ALIAS_pn-augeas = "Ubuntu=libaugeas0 Debian=libaugeas0" | ||
17 | DISTRO_PN_ALIAS_pn-avahi-ui = "Ubuntu=avahi-discover Debian=avahi-discover" | 16 | DISTRO_PN_ALIAS_pn-avahi-ui = "Ubuntu=avahi-discover Debian=avahi-discover" |
18 | DISTRO_PN_ALIAS_pn-babeltrace = "OSPDT" | 17 | DISTRO_PN_ALIAS_pn-babeltrace = "OSPDT" |
19 | DISTRO_PN_ALIAS_pn-bdwgc = "OSPDT" | 18 | DISTRO_PN_ALIAS_pn-bdwgc = "OSPDT" |
diff --git a/meta/recipes-extended/augeas/augeas.inc b/meta/recipes-extended/augeas/augeas.inc deleted file mode 100644 index 23d12cadfe..0000000000 --- a/meta/recipes-extended/augeas/augeas.inc +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | SUMMARY = "Augeas configuration API" | ||
2 | HOMEPAGE = "http://augeas.net/" | ||
3 | BUGTRACKER = "https://fedorahosted.org/augeas/report/1" | ||
4 | |||
5 | LICENSE = "LGPLv2.1+" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=bbb461211a33b134d42ed5ee802b37ff" | ||
7 | |||
8 | SRC_URI = "http://download.augeas.net/${BP}.tar.gz \ | ||
9 | file://add-missing-argz-conditional.patch \ | ||
10 | file://sepbuildfix.patch \ | ||
11 | file://0001-Unset-need_charset_alias-when-building-for-musl.patch \ | ||
12 | " | ||
13 | |||
14 | DEPENDS = "readline libxml2" | ||
15 | |||
16 | inherit autotools pkgconfig | ||
17 | |||
18 | PACKAGES =+ "${PN}-lenses lib${BPN}" | ||
19 | |||
20 | FILES_${PN}-lenses = "${datadir}/augeas/lenses" | ||
21 | FILES_lib${BPN} = "${libdir}/lib*${SOLIBS}" | ||
22 | |||
23 | RDEPENDS_lib${BPN} += "${PN}-lenses" | ||
24 | RRECOMMENDS_lib${BPN} += "${PN}" | ||
25 | |||
26 | LEAD_SONAME = "libaugeas.so" | ||
27 | |||
28 | do_install_append() { | ||
29 | rm -fr ${D}${datadir}/vim | ||
30 | } | ||
diff --git a/meta/recipes-extended/augeas/augeas/0001-Unset-need_charset_alias-when-building-for-musl.patch b/meta/recipes-extended/augeas/augeas/0001-Unset-need_charset_alias-when-building-for-musl.patch deleted file mode 100644 index 9a19876aa6..0000000000 --- a/meta/recipes-extended/augeas/augeas/0001-Unset-need_charset_alias-when-building-for-musl.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | From b9565dc2fe0c4f7daaec91b7e83bc7313dee2f4a Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Mon, 13 Apr 2015 17:02:13 -0700 | ||
4 | Subject: [PATCH] Unset need_charset_alias when building for musl | ||
5 | |||
6 | localcharset uses ac_cv_gnu_library_2_1 from glibc21.m4 | ||
7 | which actually shoudl be fixed in gnulib and then all downstream | ||
8 | projects will get it eventually. For now we apply the fix to | ||
9 | coreutils | ||
10 | |||
11 | Upstream-Status: Pending | ||
12 | |||
13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
14 | --- | ||
15 | lib/gnulib.mk | 2 +- | ||
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
17 | |||
18 | Index: augeas-1.2.0/gnulib/lib/Makefile.am | ||
19 | =================================================================== | ||
20 | --- augeas-1.2.0.orig/gnulib/lib/Makefile.am | ||
21 | +++ augeas-1.2.0/gnulib/lib/Makefile.am | ||
22 | @@ -463,7 +463,7 @@ install-exec-localcharset: all-local | ||
23 | case '$(host_os)' in \ | ||
24 | darwin[56]*) \ | ||
25 | need_charset_alias=true ;; \ | ||
26 | - darwin* | cygwin* | mingw* | pw32* | cegcc*) \ | ||
27 | + darwin* | cygwin* | mingw* | pw32* | cegcc* | linux-musl*) \ | ||
28 | need_charset_alias=false ;; \ | ||
29 | *) \ | ||
30 | need_charset_alias=true ;; \ | ||
diff --git a/meta/recipes-extended/augeas/augeas/add-missing-argz-conditional.patch b/meta/recipes-extended/augeas/augeas/add-missing-argz-conditional.patch deleted file mode 100644 index abbdbaa63b..0000000000 --- a/meta/recipes-extended/augeas/augeas/add-missing-argz-conditional.patch +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | Add missing GL_GENERATE_ARGZ_H conditional | ||
2 | |||
3 | - GL_GENERATE_ARGZ_H is used in gnulib/lib/Makefile.am | ||
4 | |||
5 | Upstream-Status: Pending | ||
6 | Signed-off-by: Constantin Musca <constantinx.musca@intel.com> | ||
7 | |||
8 | Index: augeas-1.0.0/configure.ac | ||
9 | =================================================================== | ||
10 | --- augeas-1.0.0.orig/configure.ac | ||
11 | +++ augeas-1.0.0/configure.ac | ||
12 | @@ -55,6 +55,8 @@ AC_ARG_WITH([failmalloc], | ||
13 | |||
14 | AM_CONDITIONAL([WITH_FAILMALLOC], [test x$with_failmalloc != xno]) | ||
15 | |||
16 | +AM_CONDITIONAL([GL_GENERATE_ARGZ_H], [test -n "$ARGZ_H"]) | ||
17 | + | ||
18 | dnl --enable-debug=(yes|no) | ||
19 | AC_ARG_ENABLE([debug], | ||
20 | [AC_HELP_STRING([--enable-debug=no/yes], | ||
diff --git a/meta/recipes-extended/augeas/augeas/sepbuildfix.patch b/meta/recipes-extended/augeas/augeas/sepbuildfix.patch deleted file mode 100644 index b82a3ee2cb..0000000000 --- a/meta/recipes-extended/augeas/augeas/sepbuildfix.patch +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | Ensure that builds in separate builddirs (${B} != ${S}) correctly install the | ||
2 | lenses files. | ||
3 | |||
4 | Upstream-Status: Pending | ||
5 | |||
6 | RP 2013/4/17 | ||
7 | |||
8 | Index: augeas-1.0.0/Makefile.am | ||
9 | =================================================================== | ||
10 | --- augeas-1.0.0.orig/Makefile.am 2012-11-02 15:20:11.000000000 +0000 | ||
11 | +++ augeas-1.0.0/Makefile.am 2013-04-17 10:36:24.033400125 +0000 | ||
12 | @@ -5,8 +5,8 @@ | ||
13 | lensdir=$(datadir)/augeas/lenses/dist | ||
14 | lenstestdir=$(datadir)/augeas/lenses/dist/tests | ||
15 | |||
16 | -dist_lens_DATA=$(wildcard lenses/*.aug) | ||
17 | -dist_lenstest_DATA=$(wildcard lenses/tests/*.aug) | ||
18 | +dist_lens_DATA=$(wildcard $(top_srcdir)/lenses/*.aug) | ||
19 | +dist_lenstest_DATA=$(wildcard $(top_srcdir)lenses/tests/*.aug) | ||
20 | |||
21 | EXTRA_DIST=augeas.spec build/aux/move-if-change Makefile.am HACKING | ||
22 | |||
diff --git a/meta/recipes-extended/augeas/augeas_1.4.0.bb b/meta/recipes-extended/augeas/augeas_1.4.0.bb deleted file mode 100644 index 1064ad4f48..0000000000 --- a/meta/recipes-extended/augeas/augeas_1.4.0.bb +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | require augeas.inc | ||
2 | |||
3 | SRC_URI[md5sum] = "a2536a9c3d744dc09d234228fe4b0c93" | ||
4 | SRC_URI[sha256sum] = "659fae7ac229029e60a869a3b88c616cfd51cf2fba286cdfe3af3a052cb35b30" | ||