commit: ee2af5a921e5d16f26b0cbfb4a767ecd4244c2b6
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 31 15:07:55 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jan 31 15:08:07 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee2af5a9
dev-lang/falcon: Drop old
Package-Manager: portage-2.2.27
dev-lang/falcon/Manifest | 1 -
dev-lang/falcon/falcon-0.9.6.4.ebuild | 51 -----------------------------------
2 files changed, 52 deletions(-)
diff --git a/dev-lang/falcon/Manifest b/dev-lang/falcon/Manifest
index 3f6fa0e..245e9f1 100644
--- a/dev-lang/falcon/Manifest
+++ b/dev-lang/falcon/Manifest
@@ -1,2 +1 @@
-DIST Falcon-0.9.6.4.tar.gz 1782796 SHA256
24f4294f93c192f21d3590795a9fdd864c3f2d376cb0baac9c1e11e893cfaf81 SHA512
244fc0cc6811d9c918a1983d93e380982584016d84752b00d3adc17e46d7a7cbf9d20f09b7562316b1c9ea6eaaa91c1cb931f4469f7d510d9084f1daaca732a5
WHIRLPOOL
2178d6307fcd516f490fada540af649a60ca39f8640215b926f153316ab349ed9b46e47c7849270a20632e9639ca65d635f88ed4d0a2fccf718967ce83106a8b
DIST Falcon-0.9.6.8.tgz 11772705 SHA256
f4b00983e7f91a806675d906afd2d51dcee048f12ad3af4b1dadd92059fa44b9 SHA512
f354a058d9075a636c0b2db339fd86adda9b4a4bc7c229186b73aa200e059a21b311a4944b1b7388b4992390e4d540af8832e4b2cea31d7f956df1dd96f2f59c
WHIRLPOOL
cc42e7d250aea223162703a52b5f9461d52db6051d29dfb26320ce740fe6b502e8c8f474bb97809dc238fb23ce8cb99e9ec6d35fb01656a20e9d9b3d8b3b24e0
diff --git a/dev-lang/falcon/falcon-0.9.6.4.ebuild
b/dev-lang/falcon/falcon-0.9.6.4.ebuild
deleted file mode 100644
index 89e124c..0000000
--- a/dev-lang/falcon/falcon-0.9.6.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit cmake-utils multilib
-
-MY_P=${P/f/F}
-
-DESCRIPTION="An open source general purpose untyped language written in C++"
-HOMEPAGE="http://falconpl.org/"
-SRC_URI="http://falconpl.org/project_dl/_official_rel/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug readline"
-
-DEPEND="
- dev-libs/libpcre
- sys-libs/zlib
- readline? ( sys-libs/readline )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-DOCS="AUTHORS ChangeLog README RELNOTES"
-
-src_configure() {
- mycmakeargs=(
- -DFALCON_DISABLE_RPATH=ON
- -DFALCON_LIB_DIR=$(get_libdir)
- -DFALCON_SKIP_BISON=ON
- -DFALCON_WITH_MANPAGES=ON
- -DFALCON_WITH_INTERNAL_PCRE=OFF
- -DFALCON_WITH_INTERNAL_ZLIB=OFF
- -DFALCON_WITH_GPL_READLINE=ON
- $(cmake-utils_use readline FALCON_WITH_EDITLINE)
- )
- cmake-utils_src_configure
-}
-
-src_test() {
- FALCON_LOAD_PATH=".;${CMAKE_BUILD_DIR}/core/clt"
- for testsuite in "${S}/core/tests/testsuite"
"${S}/modules/feathers/tests/testsuite"; do
- "${CMAKE_BUILD_DIR}/core/clt/faltest/faltest" \
- -d "${testsuite}" || die "faltest in ${testsuite}
failed"
- done
-}