From patchwork Sat Oct 10 10:03:32 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Naour X-Patchwork-Id: 528590 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id E1405140D24 for ; Sat, 10 Oct 2015 21:06:30 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6713090F90; Sat, 10 Oct 2015 10:06:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hDXSEVAXiK+C; Sat, 10 Oct 2015 10:06:22 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id BC36790FCB; Sat, 10 Oct 2015 10:04:41 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id EFC5C1C44C3 for ; Sat, 10 Oct 2015 10:03:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id EC333951BA for ; Sat, 10 Oct 2015 10:03:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HydJ6D5lqImY for ; Sat, 10 Oct 2015 10:03:57 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [212.27.42.1]) by hemlock.osuosl.org (Postfix) with ESMTPS id 45F9C951B6 for ; Sat, 10 Oct 2015 10:03:57 +0000 (UTC) Received: from adeos.localdomain (unknown [81.57.22.125]) by smtp1-g21.free.fr (Postfix) with ESMTP id 74C6594006D; Sat, 10 Oct 2015 12:03:55 +0200 (CEST) From: Romain Naour To: buildroot@buildroot.org Date: Sat, 10 Oct 2015 12:03:32 +0200 Message-Id: <1444471422-15118-28-git-send-email-romain.naour@openwide.fr> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1444471422-15118-1-git-send-email-romain.naour@openwide.fr> References: <1444471422-15118-1-git-send-email-romain.naour@openwide.fr> Subject: [Buildroot] [PATCH v3 27/37] package/libethumb: remove package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Libethumb is now available in efl package. Signed-off-by: Romain Naour --- v3: update legacy option for 2015.11 update help text --- Config.in.legacy | 7 +++++++ package/Config.in | 1 - package/libethumb/Config.in | 17 ----------------- package/libethumb/libethumb.mk | 27 --------------------------- 4 files changed, 7 insertions(+), 45 deletions(-) delete mode 100644 package/libethumb/Config.in delete mode 100644 package/libethumb/libethumb.mk diff --git a/Config.in.legacy b/Config.in.legacy index d8d3996..940b6ab 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -107,6 +107,13 @@ endif ############################################################################### comment "Legacy options removed in 2015.11" +config BR2_PACKAGE_LIBETHUMB + bool "libethumb package has been removed" + select BR2_LEGACY + select BR2_PACKAGE_EFL + help + The libethumb package has been removed with the efl bump to 1.15. + config BR2_PACKAGE_SCHIFRA bool "schifra package has been removed" select BR2_LEGACY diff --git a/package/Config.in b/package/Config.in index 67886aa..0b24e57 100644 --- a/package/Config.in +++ b/package/Config.in @@ -250,7 +250,6 @@ endif source "package/libedbus/Config.in" source "package/libelementary/Config.in" source "package/libembryo/Config.in" - source "package/libethumb/Config.in" source "package/libevas/Config.in" source "package/libevas-generic-loaders/Config.in" source "package/linux-fusion/Config.in" diff --git a/package/libethumb/Config.in b/package/libethumb/Config.in deleted file mode 100644 index af641f0..0000000 --- a/package/libethumb/Config.in +++ /dev/null @@ -1,17 +0,0 @@ -comment "libethumb needs a toolchain w/ threads, wchar" - depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR - -config BR2_PACKAGE_LIBETHUMB - bool "libethumb" - select BR2_PACKAGE_LIBEINA - select BR2_PACKAGE_LIBEVAS - select BR2_PACKAGE_LIBECORE - select BR2_PACKAGE_LIBECORE_EVAS - select BR2_PACKAGE_LIBEDJE - depends on BR2_TOOLCHAIN_HAS_THREADS # libevas - depends on BR2_USE_MMU # efl - depends on BR2_USE_WCHAR # efl - help - Ethumb is a library for generating thumbnail images of documents. - - http://trac.enlightenment.org/e/wiki/Ethumb diff --git a/package/libethumb/libethumb.mk b/package/libethumb/libethumb.mk deleted file mode 100644 index 314ddf9..0000000 --- a/package/libethumb/libethumb.mk +++ /dev/null @@ -1,27 +0,0 @@ -################################################################################ -# -# libethumb -# -################################################################################ - -LIBETHUMB_VERSION = 1.7.10 -LIBETHUMB_SOURCE = ethumb-$(LIBETHUMB_VERSION).tar.bz2 -LIBETHUMB_SITE = http://download.enlightenment.org/releases -LIBETHUMB_LICENSE = LGPLv2.1+ -LIBETHUMB_LICENSE_FILES = COPYING - -LIBETHUMB_INSTALL_STAGING = YES - -LIBETHUMB_DEPENDENCIES = libeina libevas libecore libedje host-libedje - -LIBETHUMB_CONF_OPTS = --with-edje-cc=$(HOST_DIR)/usr/bin/edje_cc - -ifeq ($(BR2_PACKAGE_LIBEXIF),y) -LIBETHUMB_DEPENDENCIES += libexif -endif - -ifeq ($(BR2_PACKAGE_LIBEDBUS),y) -LIBETHUMB_DEPENDENCIES += libedbus -endif - -$(eval $(autotools-package))