From 31849d36de847995970368572759a8df10537f82 Mon Sep 17 00:00:00 2001 From: Carter Wobbe Date: Tue, 20 Aug 2024 01:15:09 -0700 Subject: dev-lang/odin: new package, add 2024.08 Signed-off-by: Carter Wobbe --- dev-lang/odin/Manifest | 1 + dev-lang/odin/odin-2024.08.ebuild | 51 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 dev-lang/odin/Manifest create mode 100644 dev-lang/odin/odin-2024.08.ebuild (limited to 'dev-lang') diff --git a/dev-lang/odin/Manifest b/dev-lang/odin/Manifest new file mode 100644 index 000000000..1556ad6fa --- /dev/null +++ b/dev-lang/odin/Manifest @@ -0,0 +1 @@ +DIST dev-2024-08.tar.gz 131294520 BLAKE2B f36029cb284d171fdf9b89591dabcc4f9ac0f9b7864fa8f66bc28ba733ade78e016c665f96be65568bd7be360f82af6a52344922caf9a9ecc27cbf10908b24ab SHA512 b151dec0dd0f863c93e6c49f9cae45769c0386733b91e962163c55c4d6cc6e794b772c6c47f91b78f84cddb6572e91c37cac31a47df6a86bf39fdb901b657930 diff --git a/dev-lang/odin/odin-2024.08.ebuild b/dev-lang/odin/odin-2024.08.ebuild new file mode 100644 index 000000000..7f1fc8e7c --- /dev/null +++ b/dev-lang/odin/odin-2024.08.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LLVM_COMPAT=(14 17 18) +inherit llvm-r1 + +DESCRIPTION="The Data-Oriented Language for Sane Software Development." + +HOMEPAGE="https://odin-lang.org/" + +MY_PV="${PV/./-}" +SRC_URI="https://github.com/odin-lang/Odin/archive/refs/tags/dev-${MY_PV}.tar.gz" + +# Source directory; the dir where the sources can be found (automatically +# unpacked) inside ${WORKDIR}. The default value for S is ${WORKDIR}/${P} +# If you don't need to change it, leave the S= line out of the ebuild +# to keep it tidy. +S="${WORKDIR}/Odin-dev-${MY_PV}" + +LICENSE="BSD" + +SLOT="0" + +KEYWORDS="~amd64" + +RDEPEND=" +$(llvm_gen_dep " +sys-devel/clang:${LLVM_SLOT}= +sys-devel/llvm:${LLVM_SLOT}= +") +" + +DEPEND="${RDEPEND}" + +# build_odin.sh sets its own flags. Some gcc flags cause build failures +CPPFLAGS="" +CXXFLAGS="" +src_compile() { + ./build_odin.sh release || die "failed to build odin" +} + +src_install() { + insinto usr/lib/odin + exeinto usr/lib/odin + + doexe odin + doins -r base core vendor + dosym -r /usr/lib/odin/odin /usr/bin/odin +} -- cgit v1.2.3-65-gdbad