* [gentoo-commits] repo/proj/guru:dev commit in: dev-scheme/owl-lisp/
@ 2021-05-19 21:03 Maciej Barć
0 siblings, 0 replies; 2+ messages in thread
From: Maciej Barć @ 2021-05-19 21:03 UTC (permalink / raw
To: gentoo-commits
commit: 6b418b7bfa07ccaf65c01ba252407796099d331e
Author: Maciej Barć <xgqt <AT> riseup <DOT> net>
AuthorDate: Wed May 19 20:59:43 2021 +0000
Commit: Maciej Barć <xgqt <AT> riseup <DOT> net>
CommitDate: Wed May 19 21:02:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6b418b7b
dev-scheme/owl-lisp: add version 0.2 and live
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt <AT> riseup.net>
dev-scheme/owl-lisp/Manifest | 1 +
dev-scheme/owl-lisp/metadata.xml | 18 +++++++++++++
dev-scheme/owl-lisp/owl-lisp-0.2.ebuild | 43 ++++++++++++++++++++++++++++++++
dev-scheme/owl-lisp/owl-lisp-9999.ebuild | 43 ++++++++++++++++++++++++++++++++
4 files changed, 105 insertions(+)
diff --git a/dev-scheme/owl-lisp/Manifest b/dev-scheme/owl-lisp/Manifest
new file mode 100644
index 000000000..0a54360a4
--- /dev/null
+++ b/dev-scheme/owl-lisp/Manifest
@@ -0,0 +1 @@
+DIST owl-v0.2.tar.gz 515574 BLAKE2B 054a06d33554cc31f5e1c756bf3ff5ea4fb5cec220048fb939aa9dcd19c586cef54ae8ddc80e1ee8befedfa2e42fc1bf9ea4bcfe37e6743154ff678346444e87 SHA512 f0dc4badc84be1ebd1ad8f6a84c8fc292449b0f66a9416f202f9010e89aa2971c6470599173db67bf3db3e4b6a61d777ee369eda76fa7c42114748e8fe48b7b2
diff --git a/dev-scheme/owl-lisp/metadata.xml b/dev-scheme/owl-lisp/metadata.xml
new file mode 100644
index 000000000..573127cc4
--- /dev/null
+++ b/dev-scheme/owl-lisp/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>xgqt@riseup.net</email>
+ <name>Maciej Barć</name>
+ </maintainer>
+ <longdescription lang="en">
+ Owl Lisp is a simple programming language. The main motivation for
+ writing it was to get a portable system for writing standalone
+ programs in a subjectively pleasant dialect of LISP, which in this
+ case means a minimal core language and runtime, purely functional
+ operation and support for asynchronous evaluation.
+ </longdescription>
+ <upstream>
+ <remote-id type="gitlab">owl-lisp/owl</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-scheme/owl-lisp/owl-lisp-0.2.ebuild b/dev-scheme/owl-lisp/owl-lisp-0.2.ebuild
new file mode 100644
index 000000000..0897bd636
--- /dev/null
+++ b/dev-scheme/owl-lisp/owl-lisp-0.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# NOTICE: Because it is "purely functional" it is not scheme-compatible ootb
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Purely functional dialect of Scheme"
+HOMEPAGE="https://haltp.org/posts/owl.html"
+
+if [[ "${PV}" == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://gitlab.com/owl-lisp/owl.git"
+else
+ SRC_URI="https://gitlab.com/owl-lisp/owl/-/archive/v0.2/owl-v${PV}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}/owl-v${PV}"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+src_configure() {
+ tc-export CC
+}
+
+src_compile() {
+ # warning: jobserver unavailable
+ emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
+}
+
+src_install() {
+ einstalldocs
+
+ exeinto /usr/bin
+ doexe ./bin/ol
+ newexe ./bin/vm ovm
+
+ doman ./doc/ol.1
+ doman ./doc/ovm.1
+}
diff --git a/dev-scheme/owl-lisp/owl-lisp-9999.ebuild b/dev-scheme/owl-lisp/owl-lisp-9999.ebuild
new file mode 100644
index 000000000..0897bd636
--- /dev/null
+++ b/dev-scheme/owl-lisp/owl-lisp-9999.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# NOTICE: Because it is "purely functional" it is not scheme-compatible ootb
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Purely functional dialect of Scheme"
+HOMEPAGE="https://haltp.org/posts/owl.html"
+
+if [[ "${PV}" == *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://gitlab.com/owl-lisp/owl.git"
+else
+ SRC_URI="https://gitlab.com/owl-lisp/owl/-/archive/v0.2/owl-v${PV}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}/owl-v${PV}"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+src_configure() {
+ tc-export CC
+}
+
+src_compile() {
+ # warning: jobserver unavailable
+ emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
+}
+
+src_install() {
+ einstalldocs
+
+ exeinto /usr/bin
+ doexe ./bin/ol
+ newexe ./bin/vm ovm
+
+ doman ./doc/ol.1
+ doman ./doc/ovm.1
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-scheme/owl-lisp/
@ 2021-11-28 22:26 Maciej Barć
0 siblings, 0 replies; 2+ messages in thread
From: Maciej Barć @ 2021-11-28 22:26 UTC (permalink / raw
To: gentoo-commits
commit: 9f578af3dc8cc8c038a0cc85a96d88343ebc7b9f
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 28 22:26:03 2021 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Nov 28 22:26:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9f578af3
dev-scheme: moved owl-lisp to ::gentoo
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-scheme/owl-lisp/Manifest | 1 -
dev-scheme/owl-lisp/metadata.xml | 18 -------------
dev-scheme/owl-lisp/owl-lisp-0.2.ebuild | 43 --------------------------------
dev-scheme/owl-lisp/owl-lisp-9999.ebuild | 43 --------------------------------
4 files changed, 105 deletions(-)
diff --git a/dev-scheme/owl-lisp/Manifest b/dev-scheme/owl-lisp/Manifest
deleted file mode 100644
index 0a54360a4..000000000
--- a/dev-scheme/owl-lisp/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST owl-v0.2.tar.gz 515574 BLAKE2B 054a06d33554cc31f5e1c756bf3ff5ea4fb5cec220048fb939aa9dcd19c586cef54ae8ddc80e1ee8befedfa2e42fc1bf9ea4bcfe37e6743154ff678346444e87 SHA512 f0dc4badc84be1ebd1ad8f6a84c8fc292449b0f66a9416f202f9010e89aa2971c6470599173db67bf3db3e4b6a61d777ee369eda76fa7c42114748e8fe48b7b2
diff --git a/dev-scheme/owl-lisp/metadata.xml b/dev-scheme/owl-lisp/metadata.xml
deleted file mode 100644
index 573127cc4..000000000
--- a/dev-scheme/owl-lisp/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>xgqt@riseup.net</email>
- <name>Maciej Barć</name>
- </maintainer>
- <longdescription lang="en">
- Owl Lisp is a simple programming language. The main motivation for
- writing it was to get a portable system for writing standalone
- programs in a subjectively pleasant dialect of LISP, which in this
- case means a minimal core language and runtime, purely functional
- operation and support for asynchronous evaluation.
- </longdescription>
- <upstream>
- <remote-id type="gitlab">owl-lisp/owl</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-scheme/owl-lisp/owl-lisp-0.2.ebuild b/dev-scheme/owl-lisp/owl-lisp-0.2.ebuild
deleted file mode 100644
index 0897bd636..000000000
--- a/dev-scheme/owl-lisp/owl-lisp-0.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# NOTICE: Because it is "purely functional" it is not scheme-compatible ootb
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Purely functional dialect of Scheme"
-HOMEPAGE="https://haltp.org/posts/owl.html"
-
-if [[ "${PV}" == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://gitlab.com/owl-lisp/owl.git"
-else
- SRC_URI="https://gitlab.com/owl-lisp/owl/-/archive/v0.2/owl-v${PV}.tar.gz"
- KEYWORDS="~amd64"
- S="${WORKDIR}/owl-v${PV}"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-src_configure() {
- tc-export CC
-}
-
-src_compile() {
- # warning: jobserver unavailable
- emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
-}
-
-src_install() {
- einstalldocs
-
- exeinto /usr/bin
- doexe ./bin/ol
- newexe ./bin/vm ovm
-
- doman ./doc/ol.1
- doman ./doc/ovm.1
-}
diff --git a/dev-scheme/owl-lisp/owl-lisp-9999.ebuild b/dev-scheme/owl-lisp/owl-lisp-9999.ebuild
deleted file mode 100644
index 0897bd636..000000000
--- a/dev-scheme/owl-lisp/owl-lisp-9999.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# NOTICE: Because it is "purely functional" it is not scheme-compatible ootb
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Purely functional dialect of Scheme"
-HOMEPAGE="https://haltp.org/posts/owl.html"
-
-if [[ "${PV}" == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://gitlab.com/owl-lisp/owl.git"
-else
- SRC_URI="https://gitlab.com/owl-lisp/owl/-/archive/v0.2/owl-v${PV}.tar.gz"
- KEYWORDS="~amd64"
- S="${WORKDIR}/owl-v${PV}"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-src_configure() {
- tc-export CC
-}
-
-src_compile() {
- # warning: jobserver unavailable
- emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
-}
-
-src_install() {
- einstalldocs
-
- exeinto /usr/bin
- doexe ./bin/ol
- newexe ./bin/vm ovm
-
- doman ./doc/ol.1
- doman ./doc/ovm.1
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-11-28 22:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-19 21:03 [gentoo-commits] repo/proj/guru:dev commit in: dev-scheme/owl-lisp/ Maciej Barć
-- strict thread matches above, loose matches on Subject: below --
2021-11-28 22:26 Maciej Barć
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox