mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 07:33:19 -04:00
dev-lang/wren: drop old
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson <telans@posteo.de>
This commit is contained in:
@@ -1,3 +1,2 @@
|
||||
DIST wren-0.2.0.tar.gz 1791488 BLAKE2B a2f48e9b115ea89cf25af1fe8cefa3c26639ce06f89796df4f5eb744b2382b44f83d6285eedfa9cb5681342cc8ebca535bae586445225622c8ebdb30c7088975 SHA512 67912df14d8afa16a4e50fa67e232870e08eb392601f7b1633bcfb242f2de7624b9a3501df9e1ae40fb62646db57ff6553733ddb3015b6b5086999dadf7d2da2
|
||||
DIST wren-0.3.0.tar.gz 1228834 BLAKE2B ff809008646970815b0f3ef3457d12ad1e6ac431b32f059035b15f1ad9f46247510a28d34d789472c6dc9fe1caeee71e09bd5484fe21dfdb356d8fcfc206a812 SHA512 8c05b69539b8a51289efecbd998bf1d054ff90944b949720b512b7a1202ace9ba56779f2e995097571459da6d8447f925f54c8170a3f6edeeaac6df265ffdc4c
|
||||
DIST wren-cli-0.3.0.tar.gz 509755 BLAKE2B 13034a6aeaa7ef2a20163714233c4750f1ab88fb232758c26bd35f8616c239936b1f80bf95c95da4d2ad2436a7813f1763002637030473a9abed8d0a4532d61d SHA512 8d4894c5e669c0c03bfb546c37cb9e917990a6cb6c59d399cbb5a03a9c9de7954bc203646ac776643c73ab9cb6e331868707d82e7c2ebd8625a9d80f4aea4f20
|
||||
|
||||
@@ -13,7 +13,4 @@
|
||||
<bugs-to>https://github.com/wren-lang/wren/issues</bugs-to>
|
||||
<remote-id type="github">wren-lang/wren</remote-id>
|
||||
</upstream>
|
||||
<use>
|
||||
<flag name="tools">Install the wren command line interpreter</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
||||
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user