forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-lang/crystal: version bump to 0.15.0
Closes: gentoo#1212 Signed-off-by: Ian Delaney <[email protected]>
- Loading branch information
Showing
2 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit multilib | ||
|
||
BV=${PV}-1 | ||
BV_AMD64=${BV}-linux-x86_64 | ||
BV_X86=${BV}-linux-i686 | ||
|
||
DESCRIPTION="The Crystal Programming Language" | ||
HOMEPAGE="http://crystal-lang.org" | ||
SRC_URI="https://github.com/crystal-lang/crystal/archive/${PV}.tar.gz -> ${P}.tar.gz | ||
amd64? ( https://github.com/crystal-lang/crystal/releases/download/${PV}/crystal-${BV_AMD64}.tar.gz ) | ||
x86? ( https://github.com/crystal-lang/crystal/releases/download/${PV}/crystal-${BV_X86}.tar.gz )" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="doc examples +xml +yaml" | ||
|
||
# dev-libs/boehm-gc[static-libs] dependency problem, check the issue: https://github.com/manastech/crystal/issues/1382 | ||
DEPEND=" | ||
<sys-devel/llvm-3.7.0 | ||
dev-libs/boehm-gc[static-libs] | ||
dev-libs/libatomic_ops | ||
dev-libs/libevent | ||
dev-libs/libpcre | ||
sys-libs/libunwind | ||
dev-libs/pcl | ||
dev-libs/gmp:0 | ||
" | ||
RDEPEND="${DEPEND} | ||
xml? ( dev-libs/libxml2 ) | ||
yaml? ( dev-libs/libyaml ) | ||
" | ||
|
||
src_compile() { | ||
emake \ | ||
release=1 \ | ||
threads=4 \ | ||
PATH="${PATH}":"${WORKDIR}"/${PN}-${BV}/bin \ | ||
CRYSTAL_PATH=src \ | ||
CRYSTAL_CONFIG_VERSION=${PV} \ | ||
CRYSTAL_CONFIG_PATH="libs:/usr/$(get_libdir)/crystal" | ||
use doc && emake doc | ||
} | ||
|
||
src_test() { | ||
emake spec \ | ||
CRYSTAL_PATH=src \ | ||
CRYSTAL_CONFIG_VERSION=${PV} | ||
} | ||
|
||
src_install() { | ||
insinto /usr/$(get_libdir)/crystal | ||
doins -r src/. | ||
dobin .build/crystal | ||
|
||
insinto /usr/share/zsh/site-functions | ||
newins etc/completion.zsh _crystal | ||
|
||
use examples && dodoc -r samples | ||
|
||
if use doc ; then | ||
docinto api | ||
dodoc -r doc/. | ||
fi | ||
} |