From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 531F113835B for ; Tue, 15 Dec 2020 09:41:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F483E08F3; Tue, 15 Dec 2020 09:41:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08D46E08F3 for ; Tue, 15 Dec 2020 09:41:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1826D335CD6 for ; Tue, 15 Dec 2020 09:41:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AE96C4 for ; Tue, 15 Dec 2020 09:41:05 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1608025255.499874d36c52332d1b3d79f3a3c9ce527878f05f.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-lang/wren/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lang/wren/wren-9999.ebuild X-VCS-Directories: dev-lang/wren/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: 499874d36c52332d1b3d79f3a3c9ce527878f05f X-VCS-Branch: dev Date: Tue, 15 Dec 2020 09:41:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 730a3d86-54ed-49d3-8a20-7971b03fdb3a X-Archives-Hash: b2b9355288cbc206da4d72ed58ea224c commit: 499874d36c52332d1b3d79f3a3c9ce527878f05f Author: Theo Anderson posteo de> AuthorDate: Tue Dec 15 09:40:27 2020 +0000 Commit: Theo Anderson posteo de> CommitDate: Tue Dec 15 09:40:55 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=499874d3 dev-lang/wren: drop 9999 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson posteo.de> dev-lang/wren/wren-9999.ebuild | 79 ------------------------------------------ 1 file changed, 79 deletions(-) diff --git a/dev-lang/wren/wren-9999.ebuild b/dev-lang/wren/wren-9999.ebuild deleted file mode 100644 index 689c8a5d..00000000 --- a/dev-lang/wren/wren-9999.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="The Wren Programming Language" -HOMEPAGE="https://wren.io/" -if [[ ${PV} == 9999 ]]; then - EGIT_REPO_URI="https://github.com/wren-lang/${PN}.git" - inherit git-r3 - KEYWORDS="" -else - SRC_URI="https://github.com/wren-lang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="static-libs tools" - -DEPEND=">=dev-libs/libuv-1.10.0" -RDEPEND="${DEPEND}" -BDEPEND="" -#BDEPEND="test? ( dev-lang/python )" -#RESTRICT="!test? ( test )" -RESTRICT="test" - -src_configure() { - return -} - -src_compile() { - local targets="" - - if use static-libs ; then - #do both shared and static libs - targets="${targets} vm" - else - targets="${targets} shared" - fi - if use tools ; then - targets="${targets} cli" - fi - #I don't think tests are working, I just get lots of linker errors - #if use test ; then - # targets="${targets} api_test unit_test" - #fi - - echo "prefix=\"${EPREFIX}/usr\"" > ${PN}.pc - echo "libdir=\"\${prefix}/$(get_libdir)\"" >> ${PN}.pc - echo "includedir=\"\${prefix}/include\"" >> ${PN}.pc - echo "" >> ${PN}.pc - echo "Name: ${PN}" >> ${PN}.pc - echo "Description: ${DESCRIPTION}" >> ${PN}.pc - echo "URL: ${HOMEPAGE}" >> ${PN}.pc - echo "Version: ${PV}" >> ${PN}.pc - echo "Libs: \"-L\${libdir}\" -l${PN}" >> ${PN}.pc - echo "Cflags: \"-I\${includedir}\"" >> ${PN}.pc - - tc-export AR CC - emake -f util/wren.mk LIBUV_DIR="${EPREFIX}/usr" LIBUV="${EPREFIX}/usr/$(get_libdir)/libuv.so" VERBOSE=1 ${targets} -} - -src_install() { - if use tools ; then - dobin bin/wren - fi - if use static-libs ; then - dolib.a lib/libwren.a - fi - dolib.so lib/libwren.so - doheader src/include/wren.h - doheader src/include/wren.hpp - - insinto /usr/$(get_libdir)/pkgconfig - doins ${PN}.pc -}