public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-lang/odin/
@ 2024-08-27  9:57 David Roman
  0 siblings, 0 replies; 3+ messages in thread
From: David Roman @ 2024-08-27  9:57 UTC (permalink / raw
  To: gentoo-commits

commit:     c2f943033b8de71d372c0c36451a29af3cbcc3c2
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Sun Aug 25 19:00:50 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Aug 25 19:00:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c2f94303

dev-lang/odin: add upstream metadata

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 dev-lang/odin/metadata.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/dev-lang/odin/metadata.xml b/dev-lang/odin/metadata.xml
new file mode 100644
index 000000000..a8d89d73f
--- /dev/null
+++ b/dev-lang/odin/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<!-- maintainer-needed -->
+	<upstream>
+		<bugs-to>https://github.com/odin-lang/Odin/issues</bugs-to>
+		<changelog>https://github.com/odin-lang/Odin/releases</changelog>
+		<doc>https://odin-lang.org/docs/</doc>
+		<remote-id type="github">odin-lang/Odin</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-lang/odin/
@ 2024-09-27 11:41 David Roman
  0 siblings, 0 replies; 3+ messages in thread
From: David Roman @ 2024-09-27 11:41 UTC (permalink / raw
  To: gentoo-commits

commit:     38554798288b66be3a6307200f9403c8031e2330
Author:     Carter Wobbe <it.a.me.oss <AT> gmail <DOT> com>
AuthorDate: Fri Sep 27 01:09:58 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Sep 27 01:09:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38554798

dev-lang/odin: add 2024.09

Signed-off-by: Carter Wobbe <it.a.me.oss <AT> gmail.com>

 dev-lang/odin/Manifest            |  1 +
 dev-lang/odin/odin-2024.09.ebuild | 51 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-lang/odin/Manifest b/dev-lang/odin/Manifest
index 1556ad6fa..6af5a385b 100644
--- a/dev-lang/odin/Manifest
+++ b/dev-lang/odin/Manifest
@@ -1 +1,2 @@
 DIST dev-2024-08.tar.gz 131294520 BLAKE2B f36029cb284d171fdf9b89591dabcc4f9ac0f9b7864fa8f66bc28ba733ade78e016c665f96be65568bd7be360f82af6a52344922caf9a9ecc27cbf10908b24ab SHA512 b151dec0dd0f863c93e6c49f9cae45769c0386733b91e962163c55c4d6cc6e794b772c6c47f91b78f84cddb6572e91c37cac31a47df6a86bf39fdb901b657930
+DIST dev-2024-09.tar.gz 135412805 BLAKE2B 04bcefb3ca7a38fe1f30722a83f42751617c038d0d224147b5b91cb54473d0a8ab3d726c6693f2f686455423ec9f29501271aec681e31588f3e9c9f7cc96e5c1 SHA512 47421178fdf48a70eac585b3dc165046d2c0f21d1208f47acead37e93b97b94ff4ba716c907a5958d5c3b992b04df5f7b4a29dc03adba08020da6a0620cd0c87

diff --git a/dev-lang/odin/odin-2024.09.ebuild b/dev-lang/odin/odin-2024.09.ebuild
new file mode 100644
index 000000000..7f1fc8e7c
--- /dev/null
+++ b/dev-lang/odin/odin-2024.09.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
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-lang/odin/
@ 2025-02-04 13:42 David Roman
  0 siblings, 0 replies; 3+ messages in thread
From: David Roman @ 2025-02-04 13:42 UTC (permalink / raw
  To: gentoo-commits

commit:     4c12a993fe18183eeeb83518b8ccf9bbe1d4bce3
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Tue Feb  4 12:25:26 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Feb  4 12:25:26 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4c12a993

dev-lang/odin: quote LLVM_SLOT with single quotes

LLVM_SLOT inside llvm_gen_dep() must not be expanded beforehand.

Closes: https://bugs.gentoo.org/940461
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 dev-lang/odin/odin-2024.08.ebuild | 6 +++---
 dev-lang/odin/odin-2024.09.ebuild | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-lang/odin/odin-2024.08.ebuild b/dev-lang/odin/odin-2024.08.ebuild
index 7e4822aee..4ff79d3f6 100644
--- a/dev-lang/odin/odin-2024.08.ebuild
+++ b/dev-lang/odin/odin-2024.08.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -26,10 +26,10 @@ SLOT="0"
 KEYWORDS="~amd64"
 
 RDEPEND="
-$(llvm_gen_dep "
+$(llvm_gen_dep '
 llvm-core/clang:${LLVM_SLOT}=
 llvm-core/llvm:${LLVM_SLOT}=
-")
+')
 "
 
 DEPEND="${RDEPEND}"

diff --git a/dev-lang/odin/odin-2024.09.ebuild b/dev-lang/odin/odin-2024.09.ebuild
index 7e4822aee..4ff79d3f6 100644
--- a/dev-lang/odin/odin-2024.09.ebuild
+++ b/dev-lang/odin/odin-2024.09.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -26,10 +26,10 @@ SLOT="0"
 KEYWORDS="~amd64"
 
 RDEPEND="
-$(llvm_gen_dep "
+$(llvm_gen_dep '
 llvm-core/clang:${LLVM_SLOT}=
 llvm-core/llvm:${LLVM_SLOT}=
-")
+')
 "
 
 DEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-02-04 13:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-27  9:57 [gentoo-commits] repo/proj/guru:master commit in: dev-lang/odin/ David Roman
  -- strict thread matches above, loose matches on Subject: below --
2024-09-27 11:41 David Roman
2025-02-04 13:42 David Roman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox