Commit e155c957 authored by Romain Naour's avatar Romain Naour Committed by Thomas Petazzoni
Browse files

package/efl/libeio: remove package



Libeio is now available in efl package.

Signed-off-by: default avatarRomain Naour <romain.naour@openwide.fr>
Reviewed-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent b728fb77
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -107,6 +107,13 @@ endif
###############################################################################
comment "Legacy options removed in 2016.02"

config BR2_PACKAGE_LIBEIO
	bool "libeio package has been removed"
	select BR2_LEGACY
	select BR2_PACKAGE_EFL
	help
	  With EFL 1.15, libeio is now provided by the libefl package.

config BR2_PACKAGE_LIBEMBRYO
	bool "libembryo package has been removed"
	select BR2_LEGACY
+0 −1
Original line number Diff line number Diff line
@@ -20,7 +20,6 @@ source "package/efl/libecore/Config.in"
source "package/efl/libeet/Config.in"
source "package/efl/libefl/Config.in"
source "package/efl/libefreet/Config.in"
source "package/efl/libeio/Config.in"
source "package/efl/libevas/Config.in"
source "package/efl/libelementary/Config.in"
source "package/efl/libedbus/Config.in"

package/efl/libeio/Config.in

deleted100644 → 0
+0 −22
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBEIO
	bool "libeio"
	select BR2_PACKAGE_LIBEET
	select BR2_PACKAGE_LIBEINA
	select BR2_PACKAGE_LIBECORE
	depends on BR2_TOOLCHAIN_HAS_THREADS
	help
	  Eio integrates with EFL (Ecore, Eina) to provide efficient
	  filesystem Input/Output (I/O). It use the best techniques to
	  achieve such purpose, like using at-variants, splice,
	  properly handling errors and doing it in an asynchronous
	  fashion by means of worker threads. It is also ported to
	  Windows, so multi-platform.

	  Whenever you need to list a directory, copy, move or delete
	  files, Eio will do that task better than you'd achieve with
	  naive implementations, and it is easy to use.

	  http://trac.enlightenment.org/e/wiki/Eio

comment "libeio needs a toolchain w/ threads"
	depends on !BR2_TOOLCHAIN_HAS_THREADS

package/efl/libeio/libeio.mk

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
################################################################################
#
# libeio
#
################################################################################

LIBEIO_VERSION = 1.7.10
LIBEIO_SOURCE = eio-$(LIBEIO_VERSION).tar.bz2
LIBEIO_SITE = http://download.enlightenment.org/releases
LIBEIO_LICENSE = LGPLv2.1
LIBEIO_LICENSE_FILES = COPYING

LIBEIO_INSTALL_STAGING = YES
LIBEIO_DEPENDENCIES = libeina libeet libecore

$(eval $(autotools-package))