public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-colorized/
@ 2021-11-26  8:54 Maciej Barć
  0 siblings, 0 replies; 3+ messages in thread
From: Maciej Barć @ 2021-11-26  8:54 UTC (permalink / raw
  To: gentoo-commits

commit:     0360ae9d079b2ae15731bdb268f2c153517222ef
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 26 08:54:08 2021 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Nov 26 08:54:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0360ae9d

dev-scheme/guile-colorized: new package; add version 0.1_p20191205 and live

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-scheme/guile-colorized/Manifest                |  1 +
 .../guile-colorized-0.1_p20191205.ebuild           | 39 ++++++++++++++++++++++
 .../guile-colorized/guile-colorized-9999.ebuild    | 39 ++++++++++++++++++++++
 dev-scheme/guile-colorized/metadata.xml            | 13 ++++++++
 4 files changed, 92 insertions(+)

diff --git a/dev-scheme/guile-colorized/Manifest b/dev-scheme/guile-colorized/Manifest
new file mode 100644
index 000000000000..6f434c2fa894
--- /dev/null
+++ b/dev-scheme/guile-colorized/Manifest
@@ -0,0 +1 @@
+DIST guile-colorized-0.1_p20191205.tar.bz2 15496 BLAKE2B a85fc44c3b6b8433362197a4f1da216ea99793673ee4592e6ea32178d2952d0f43f5a4e79304185d0c67b6dee668bf52d53970df97954a37650cd8b7770e7abd SHA512 4cd9833c70debf0086ba69252e1fb8b9fc33707ec1f3bb6dfb144d5a35db6f38e3af585cbc889936c8ebb38dea0f8808f483bd51ed1722c9b9df857d31a7cec7

diff --git a/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild b/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild
new file mode 100644
index 000000000000..65a9e38bf9be
--- /dev/null
+++ b/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Colorized REPL for GNU Guile"
+HOMEPAGE="https://gitlab.com/NalaGinrut/guile-colorized/"
+
+if [[ "${PV}" == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.com/NalaGinrut/${PN}.git"
+else
+	# Latest release (before this commit from 2019) was in 2015
+	COMMIT_SHA="1625a79f0e31849ebd537e2a58793fb45678c58f"
+	SRC_URI="https://gitlab.com/NalaGinrut/${PN}/-/archive/${COMMIT_SHA}.tar.bz2 -> ${P}.tar.bz2"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${PN}-${COMMIT_SHA}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND=">=dev-scheme/guile-2.0.9:="
+DEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+
+	# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
+	find "${S}" -name "*.scm" -exec touch {} + || die
+}
+
+src_install() {
+	einstalldocs
+
+	local loadpath=$(guile -c '(display (string-append (car %load-path) "/ice-9"))')
+	mkdir -p "${D}${loadpath}"
+	emake TARGET="${D}${loadpath}" install
+}

diff --git a/dev-scheme/guile-colorized/guile-colorized-9999.ebuild b/dev-scheme/guile-colorized/guile-colorized-9999.ebuild
new file mode 100644
index 000000000000..65a9e38bf9be
--- /dev/null
+++ b/dev-scheme/guile-colorized/guile-colorized-9999.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Colorized REPL for GNU Guile"
+HOMEPAGE="https://gitlab.com/NalaGinrut/guile-colorized/"
+
+if [[ "${PV}" == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.com/NalaGinrut/${PN}.git"
+else
+	# Latest release (before this commit from 2019) was in 2015
+	COMMIT_SHA="1625a79f0e31849ebd537e2a58793fb45678c58f"
+	SRC_URI="https://gitlab.com/NalaGinrut/${PN}/-/archive/${COMMIT_SHA}.tar.bz2 -> ${P}.tar.bz2"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${PN}-${COMMIT_SHA}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND=">=dev-scheme/guile-2.0.9:="
+DEPEND="${DEPEND}"
+
+src_prepare() {
+	default
+
+	# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
+	find "${S}" -name "*.scm" -exec touch {} + || die
+}
+
+src_install() {
+	einstalldocs
+
+	local loadpath=$(guile -c '(display (string-append (car %load-path) "/ice-9"))')
+	mkdir -p "${D}${loadpath}"
+	emake TARGET="${D}${loadpath}" install
+}

diff --git a/dev-scheme/guile-colorized/metadata.xml b/dev-scheme/guile-colorized/metadata.xml
new file mode 100644
index 000000000000..c1ef4deb0fd4
--- /dev/null
+++ b/dev-scheme/guile-colorized/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+  <maintainer type="project">
+    <email>scheme@gentoo.org</email>
+    <name>Gentoo Scheme Project</name>
+  </maintainer>
+  <upstream>
+    <bugs-to>https://gitlab.com/NalaGinrut/guile-colorized/-/issues</bugs-to>
+    <remote-id type="gitlab">NalaGinrut/guile-colorized</remote-id>
+  </upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-colorized/
@ 2021-11-26  9:19 Maciej Barć
  0 siblings, 0 replies; 3+ messages in thread
From: Maciej Barć @ 2021-11-26  9:19 UTC (permalink / raw
  To: gentoo-commits

commit:     8c6f3cb877cf36a1d3b70b65987676d6a0dc8cb9
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 26 09:19:33 2021 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Nov 26 09:19:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c6f3cb8

dev-scheme/guile-colorized: fix DEPEND

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild | 2 +-
 dev-scheme/guile-colorized/guile-colorized-9999.ebuild          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild b/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild
index 65a9e38bf9be..79eef16351ba 100644
--- a/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild
+++ b/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild
@@ -21,7 +21,7 @@ LICENSE="GPL-3"
 SLOT="0"
 
 RDEPEND=">=dev-scheme/guile-2.0.9:="
-DEPEND="${DEPEND}"
+DEPEND="${RDEPEND}"
 
 src_prepare() {
 	default

diff --git a/dev-scheme/guile-colorized/guile-colorized-9999.ebuild b/dev-scheme/guile-colorized/guile-colorized-9999.ebuild
index 65a9e38bf9be..79eef16351ba 100644
--- a/dev-scheme/guile-colorized/guile-colorized-9999.ebuild
+++ b/dev-scheme/guile-colorized/guile-colorized-9999.ebuild
@@ -21,7 +21,7 @@ LICENSE="GPL-3"
 SLOT="0"
 
 RDEPEND=">=dev-scheme/guile-2.0.9:="
-DEPEND="${DEPEND}"
+DEPEND="${RDEPEND}"
 
 src_prepare() {
 	default


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

* [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-colorized/
@ 2024-11-30 13:52 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2024-11-30 13:52 UTC (permalink / raw
  To: gentoo-commits

commit:     88b9c1bcbfd4a21436c3f69413ab31b50bae1e9d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 30 13:38:58 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 30 13:51:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88b9c1bc

dev-scheme/guile-colorized: drop 0.1_p20191205

Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../guile-colorized-0.1_p20191205.ebuild           | 39 ----------------------
 1 file changed, 39 deletions(-)

diff --git a/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild b/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild
deleted file mode 100644
index 79eef16351ba..000000000000
--- a/dev-scheme/guile-colorized/guile-colorized-0.1_p20191205.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Colorized REPL for GNU Guile"
-HOMEPAGE="https://gitlab.com/NalaGinrut/guile-colorized/"
-
-if [[ "${PV}" == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://gitlab.com/NalaGinrut/${PN}.git"
-else
-	# Latest release (before this commit from 2019) was in 2015
-	COMMIT_SHA="1625a79f0e31849ebd537e2a58793fb45678c58f"
-	SRC_URI="https://gitlab.com/NalaGinrut/${PN}/-/archive/${COMMIT_SHA}.tar.bz2 -> ${P}.tar.bz2"
-	KEYWORDS="~amd64"
-	S="${WORKDIR}/${PN}-${COMMIT_SHA}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RDEPEND=">=dev-scheme/guile-2.0.9:="
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-	default
-
-	# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
-	find "${S}" -name "*.scm" -exec touch {} + || die
-}
-
-src_install() {
-	einstalldocs
-
-	local loadpath=$(guile -c '(display (string-append (car %load-path) "/ice-9"))')
-	mkdir -p "${D}${loadpath}"
-	emake TARGET="${D}${loadpath}" install
-}


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

end of thread, other threads:[~2024-11-30 13:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-26  9:19 [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-colorized/ Maciej Barć
  -- strict thread matches above, loose matches on Subject: below --
2024-11-30 13:52 Sam James
2021-11-26  8:54 Maciej Barć

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