* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2015-12-17 22:14 José María Alonso
0 siblings, 0 replies; 17+ messages in thread
From: José María Alonso @ 2015-12-17 22:14 UTC (permalink / raw
To: gentoo-commits
commit: ec1ac2389a1a20ff79b91f712f00d5fa21074011
Author: José María Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 17 22:16:55 2015 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Thu Dec 17 22:16:55 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec1ac238
dev-lisp/cl-unicode: add from lisp overlay
Package-Manager: portage-2.2.20.1
dev-lisp/cl-unicode/Manifest | 1 +
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 47 +++++++++++++++++++++++++++++
dev-lisp/cl-unicode/metadata.xml | 14 +++++++++
3 files changed, 62 insertions(+)
diff --git a/dev-lisp/cl-unicode/Manifest b/dev-lisp/cl-unicode/Manifest
new file mode 100644
index 0000000..ca8b513
--- /dev/null
+++ b/dev-lisp/cl-unicode/Manifest
@@ -0,0 +1 @@
+DIST cl-unicode-0.1.5.tar.gz 485666 SHA256 9e9f1dda5133c3c94e09f638fec01410254c0020b89cc7342416d8ed1d377ee3 SHA512 0b66c0e711f7e37423aa638b43017adff648189a32032702b082dff140b2255847a15572a20f21e6f82a2e8cbd547f7f99bf9176e4fa464aa1d938575d8a2390 WHIRLPOOL e0b973416ff76f4e66b203ea5545c782a4bf59dccbbc7f1d26c6a78870efa31a4fe0b2e7eae17be25f49efc06272201ce9472fbb9e22d5332de8014aea1bc14c
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
new file mode 100644
index 0000000..acc5def
--- /dev/null
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit common-lisp-3
+
+MY_P="v${PV}"
+
+DESCRIPTION="A library which provides Common Lisp implementations with knowledge about Unicode characters."
+HOMEPAGE="http://weitz.de/cl-unicode/"
+SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND="dev-lisp/flexi-streams"
+RDEPEND="dev-lisp/cl-ppcre"
+
+COMMONLISPS="sbcl clisp clozurecl cmucl ecls openmcl"
+
+find-lisp-impl() {
+ for lisp in ${COMMONLISPS} ; do
+ [[ "$(best_version dev-lisp/${lisp})" ]] && echo "${lisp}" && return
+ done
+ die "No CommonLisp implementation found"
+}
+
+src_compile() {
+ # cl-unicode builds parts of its source code automatically the first time it
+ # is compiled, so we compile it here.
+ local lispimpl=$(find-lisp-impl)
+ local initclunicode="(progn (push \"${S}/\" asdf:*central-registry*) (require :${PN}))"
+ common-lisp-export-impl-args "${lispimpl}"
+ ${lispimpl} ${CL_EVAL} "${initclunicode}"
+}
+
+src_install() {
+ common-lisp-install-sources *.lisp test/
+ common-lisp-install-sources -t all build/
+ common-lisp-install-asdf
+ dodoc CHANGELOG
+ dohtml doc/index.html
+}
diff --git a/dev-lisp/cl-unicode/metadata.xml b/dev-lisp/cl-unicode/metadata.xml
new file mode 100644
index 0000000..433fe2c
--- /dev/null
+++ b/dev-lisp/cl-unicode/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>common-lisp</herd>
+ <longdescription>
+ CL-UNICODE is a library which provides Common Lisp implementations
+ with knowledge about Unicode characters including their name, their
+ general category, the scripts and blocks they belong to, their
+ numerical value, and several other properties. It also provides the
+ ability to replace the standard syntax for reading Lisp characters
+ with one that is Unicode-aware and is used to enhance CL-PPCRE with
+ Unicode properties.
+ </longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2016-01-14 11:07 José María Alonso
0 siblings, 0 replies; 17+ messages in thread
From: José María Alonso @ 2016-01-14 11:07 UTC (permalink / raw
To: gentoo-commits
commit: 9396bd5585b2102b92527327a7aaf69510410c26
Author: José María Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 14 11:10:51 2016 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Thu Jan 14 11:10:51 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9396bd55
dev-lisp/cl-unicode: add commonlisp dependency
Fixes bug #571574
Package-Manager: portage-2.2.26
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
index acc5def..e52302f 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -8,7 +8,7 @@ inherit common-lisp-3
MY_P="v${PV}"
-DESCRIPTION="A library which provides Common Lisp implementations with knowledge about Unicode characters."
+DESCRIPTION="Provides Common Lisp implementations with knowledge about Unicode characters."
HOMEPAGE="http://weitz.de/cl-unicode/"
SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
@@ -17,7 +17,8 @@ SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
-DEPEND="dev-lisp/flexi-streams"
+DEPEND="virtual/commonlisp
+ dev-lisp/flexi-streams"
RDEPEND="dev-lisp/cl-ppcre"
COMMONLISPS="sbcl clisp clozurecl cmucl ecls openmcl"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2016-08-30 14:52 José María Alonso
0 siblings, 0 replies; 17+ messages in thread
From: José María Alonso @ 2016-08-30 14:52 UTC (permalink / raw
To: gentoo-commits
commit: 3cbf394b48099d8d5c7aefbd81935c613e98b676
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 30 14:51:14 2016 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Tue Aug 30 14:51:14 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cbf394b
dev-lisp/cl-unicode: Resets XDG environment
Fixes bug #587876
Package-Manager: portage-2.2.28
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
index e52302f..5f82bba 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
@@ -4,7 +4,7 @@
EAPI=5
-inherit common-lisp-3
+inherit common-lisp-3 xdg-utils
MY_P="v${PV}"
@@ -30,6 +30,10 @@ find-lisp-impl() {
die "No CommonLisp implementation found"
}
+src_configure() {
+ xdg_environment_reset
+}
+
src_compile() {
# cl-unicode builds parts of its source code automatically the first time it
# is compiled, so we compile it here.
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2017-04-05 15:46 José María Alonso
0 siblings, 0 replies; 17+ messages in thread
From: José María Alonso @ 2017-04-05 15:46 UTC (permalink / raw
To: gentoo-commits
commit: 2415579024758103f5a2f216aaec205852c3c164
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 5 15:45:54 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Wed Apr 5 15:46:25 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24155790
dev-lisp/cl-unicode: Updates EAPI
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 4 ++--
dev-lisp/cl-unicode/metadata.xml | 11 ++++++++++-
2 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
index 128e54db246..60839121ad4 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=6
inherit common-lisp-3 xdg-utils
diff --git a/dev-lisp/cl-unicode/metadata.xml b/dev-lisp/cl-unicode/metadata.xml
index f063ceac053..ff9a9eb1f04 100644
--- a/dev-lisp/cl-unicode/metadata.xml
+++ b/dev-lisp/cl-unicode/metadata.xml
@@ -5,7 +5,7 @@
<email>common-lisp@gentoo.org</email>
<name>Gentoo Common Lisp Project</name>
</maintainer>
- <longdescription>
+ <longdescription lang="en">
CL-UNICODE is a library which provides Common Lisp implementations
with knowledge about Unicode characters including their name, their
general category, the scripts and blocks they belong to, their
@@ -14,6 +14,15 @@
with one that is Unicode-aware and is used to enhance CL-PPCRE with
Unicode properties.
</longdescription>
+ <longdescription lang="es">
+ CL-UNICODE es una biblioteca que ofrece implmentaciones de Common
+ Lisp que reconoce caracteres Unicode incluyendo su nombre, categoría
+ general, los guiones y bloques a los que pertenecen, su valor
+ numérico y algunas otras propiedades. También ofrece la capacidad
+ de reemplazar la sintaxis estándar para la lectura de caracteres
+ Lisp por otra que reconoce Unicode y se utiliza para mejorar
+ CL-PPCRE con propiedades Unicode.
+ </longdescription>
<upstream>
<remote-id type="github">edicl/cl-unicode</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2017-07-02 21:05 José María Alonso
0 siblings, 0 replies; 17+ messages in thread
From: José María Alonso @ 2017-07-02 21:05 UTC (permalink / raw
To: gentoo-commits
commit: f0e38beee4ee8e62ee58dbb450769b96c12b50c5
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 2 21:05:25 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Sun Jul 2 21:05:25 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0e38bee
dev-lisp/cl-unicode: Fixes metadata formatting
Package-Manager: Portage-2.3.6, Repoman-2.3.1
dev-lisp/cl-unicode/metadata.xml | 38 +++++++++++++++++++-------------------
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/dev-lisp/cl-unicode/metadata.xml b/dev-lisp/cl-unicode/metadata.xml
index ff9a9eb1f04..739846335fd 100644
--- a/dev-lisp/cl-unicode/metadata.xml
+++ b/dev-lisp/cl-unicode/metadata.xml
@@ -1,29 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="project">
- <email>common-lisp@gentoo.org</email>
- <name>Gentoo Common Lisp Project</name>
- </maintainer>
- <longdescription lang="en">
- CL-UNICODE is a library which provides Common Lisp implementations
- with knowledge about Unicode characters including their name, their
- general category, the scripts and blocks they belong to, their
- numerical value, and several other properties. It also provides the
- ability to replace the standard syntax for reading Lisp characters
- with one that is Unicode-aware and is used to enhance CL-PPCRE with
- Unicode properties.
- </longdescription>
- <longdescription lang="es">
- CL-UNICODE es una biblioteca que ofrece implmentaciones de Common
+ <maintainer type="project">
+ <email>common-lisp@gentoo.org</email>
+ <name>Gentoo Common Lisp Project</name>
+ </maintainer>
+ <longdescription lang="en">
+ CL-UNICODE is a library which provides Common Lisp implementations
+ with knowledge about Unicode characters including their name, their
+ general category, the scripts and blocks they belong to, their
+ numerical value, and several other properties. It also provides the
+ ability to replace the standard syntax for reading Lisp characters
+ with one that is Unicode-aware and is used to enhance CL-PPCRE with
+ Unicode properties.
+ </longdescription>
+ <longdescription lang="es">
+ CL-UNICODE es una biblioteca que ofrece implmentaciones de Common
Lisp que reconoce caracteres Unicode incluyendo su nombre, categoría
general, los guiones y bloques a los que pertenecen, su valor
numérico y algunas otras propiedades. También ofrece la capacidad
de reemplazar la sintaxis estándar para la lectura de caracteres
Lisp por otra que reconoce Unicode y se utiliza para mejorar
CL-PPCRE con propiedades Unicode.
- </longdescription>
- <upstream>
- <remote-id type="github">edicl/cl-unicode</remote-id>
- </upstream>
+ </longdescription>
+ <upstream>
+ <remote-id type="github">edicl/cl-unicode</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2017-08-22 14:30 José María Alonso
0 siblings, 0 replies; 17+ messages in thread
From: José María Alonso @ 2017-08-22 14:30 UTC (permalink / raw
To: gentoo-commits
commit: 2d4666557b0bf420548e01a2287b2dbfda9c9e85
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 22 14:30:12 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Tue Aug 22 14:30:12 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d466655
dev-lisp/cl-unicode: Removes openmcl as valid common lisp implementation
Package-Manager: Portage-2.3.6, Repoman-2.3.1
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
index 60839121ad4..965a930c8ba 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
@@ -20,7 +20,7 @@ DEPEND="virtual/commonlisp
dev-lisp/flexi-streams"
RDEPEND="dev-lisp/cl-ppcre"
-COMMONLISPS="sbcl clisp clozurecl cmucl ecls openmcl"
+COMMONLISPS="sbcl clisp clozurecl cmucl ecls"
find-lisp-impl() {
for lisp in ${COMMONLISPS} ; do
@@ -47,5 +47,5 @@ src_install() {
common-lisp-install-sources -t all build/
common-lisp-install-asdf
dodoc CHANGELOG
- dohtml doc/index.html
+ dodoc doc/index.html
}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2017-08-29 15:31 José María Alonso
0 siblings, 0 replies; 17+ messages in thread
From: José María Alonso @ 2017-08-29 15:31 UTC (permalink / raw
To: gentoo-commits
commit: 213db280015930463eafbb0a384eb76169c15f99
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 29 15:31:48 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Tue Aug 29 15:31:48 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=213db280
dev-lisp/cl-unicode: Use CL_BINARY variable
Package-Manager: Portage-2.3.6, Repoman-2.3.1
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
index 965a930c8ba..2472c1d5832 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
@@ -36,10 +36,10 @@ src_configure() {
src_compile() {
# cl-unicode builds parts of its source code automatically the first time it
# is compiled, so we compile it here.
- local lispimpl=$(find-lisp-impl)
local initclunicode="(progn (push \"${S}/\" asdf:*central-registry*) (require :${PN}))"
- common-lisp-export-impl-args "${lispimpl}"
- ${lispimpl} ${CL_EVAL} "${initclunicode}"
+
+ common-lisp-export-impl-args "$(find-lisp-impl)"
+ ${CL_BINARY} ${CL_EVAL} "${initclunicode}"
}
src_install() {
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2017-09-27 19:11 José María Alonso
0 siblings, 0 replies; 17+ messages in thread
From: José María Alonso @ 2017-09-27 19:11 UTC (permalink / raw
To: gentoo-commits
commit: 7d74be44e92f1fd514ace8eac79f86fdf2e8e340
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 27 19:11:39 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Wed Sep 27 19:11:39 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d74be44
dev-lisp/cl-unicode: Stable on amd64 and x86
Gentoo-Bug: 629378
Package-Manager: Portage-2.3.8, Repoman-2.3.1
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
index 2472c1d5832..eb1a89c6b5f 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND="virtual/commonlisp
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2017-09-29 22:56 Thomas Deutschmann
0 siblings, 0 replies; 17+ messages in thread
From: Thomas Deutschmann @ 2017-09-29 22:56 UTC (permalink / raw
To: gentoo-commits
commit: bd19ac04448b053ac6555f50e1638a5027fe69f7
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 29 22:53:44 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Sep 29 22:55:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd19ac04
Revert "dev-lisp/cl-unicode: Stable on amd64 and x86"
This reverts commit 7d74be44e92f1fd514ace8eac79f86fdf2e8e340.
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
index eb1a89c6b5f..2472c1d5832 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="virtual/commonlisp
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2017-10-03 14:07 José María Alonso
0 siblings, 0 replies; 17+ messages in thread
From: José María Alonso @ 2017-10-03 14:07 UTC (permalink / raw
To: gentoo-commits
commit: 8047aeaf9bd846fdfb9bbc4f4c6f6afec6a23e7a
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 3 14:07:14 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Tue Oct 3 14:07:14 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8047aeaf
dev-lisp/cl-unicode: Stable for amd64/x86 wrt bug #629378
Package-Manager: Portage-2.3.8, Repoman-2.3.1
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
index 2472c1d5832..eb1a89c6b5f 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND="virtual/commonlisp
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2017-10-08 7:38 José María Alonso
0 siblings, 0 replies; 17+ messages in thread
From: José María Alonso @ 2017-10-08 7:38 UTC (permalink / raw
To: gentoo-commits
commit: bdfd3274c3f43c999b0dc7b32fde1541304552a2
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 8 07:37:46 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Sun Oct 8 07:38:17 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdfd3274
dev-lisp/cl-unicode: Uses common-lisp-3 eclass function
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
index eb1a89c6b5f..bff44054836 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
@@ -20,15 +20,6 @@ DEPEND="virtual/commonlisp
dev-lisp/flexi-streams"
RDEPEND="dev-lisp/cl-ppcre"
-COMMONLISPS="sbcl clisp clozurecl cmucl ecls"
-
-find-lisp-impl() {
- for lisp in ${COMMONLISPS} ; do
- [[ "$(best_version dev-lisp/${lisp})" ]] && echo "${lisp}" && return
- done
- die "No CommonLisp implementation found"
-}
-
src_configure() {
xdg_environment_reset
}
@@ -38,7 +29,7 @@ src_compile() {
# is compiled, so we compile it here.
local initclunicode="(progn (push \"${S}/\" asdf:*central-registry*) (require :${PN}))"
- common-lisp-export-impl-args "$(find-lisp-impl)"
+ common-lisp-export-impl-args "$(common-lisp-find-lisp-impl)"
${CL_BINARY} ${CL_EVAL} "${initclunicode}"
}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2024-06-08 17:40 Ulrich Müller
0 siblings, 0 replies; 17+ messages in thread
From: Ulrich Müller @ 2024-06-08 17:40 UTC (permalink / raw
To: gentoo-commits
commit: 069d20c76cb61010234e00a4f5ad07c1ed6d87f1
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 8 16:59:45 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Jun 8 17:40:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=069d20c7
dev-lisp/cl-unicode: Update EAPI from 6 to 7
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild | 40 ++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
new file mode 100644
index 000000000000..7e56d351272b
--- /dev/null
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit common-lisp-3 xdg-utils
+
+MY_P="v${PV}"
+
+DESCRIPTION="Provides Common Lisp implementations with knowledge about Unicode characters"
+HOMEPAGE="https://edicl.github.io/cl-unicode/"
+SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+DEPEND="virtual/commonlisp
+ dev-lisp/flexi-streams"
+RDEPEND="dev-lisp/cl-ppcre"
+
+src_configure() {
+ xdg_environment_reset
+}
+
+src_compile() {
+ # cl-unicode builds parts of its source code automatically the first time it
+ # is compiled, so we compile it here.
+ local initclunicode="(progn (push \"${S}/\" asdf:*central-registry*) (require :${PN}))"
+
+ common-lisp-export-impl-args "$(common-lisp-find-lisp-impl)"
+ ${CL_BINARY} ${CL_EVAL} "${initclunicode}"
+}
+
+src_install() {
+ common-lisp-install-sources *.lisp test/
+ common-lisp-install-sources -t all build/
+ common-lisp-install-asdf
+ dodoc CHANGELOG doc/index.html
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2024-06-10 14:32 Ulrich Müller
0 siblings, 0 replies; 17+ messages in thread
From: Ulrich Müller @ 2024-06-10 14:32 UTC (permalink / raw
To: gentoo-commits
commit: 9fe0d5ec9d22c81e5f6146d9b2437e0625681cbb
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 10 14:26:27 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Jun 10 14:26:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fe0d5ec
dev-lisp/cl-unicode: update EAPI 7 -> 8
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
index 7e56d351272b..728b474a9a1b 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit common-lisp-3 xdg-utils
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2024-06-17 4:19 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-06-17 4:19 UTC (permalink / raw
To: gentoo-commits
commit: e7c507056fff1ab34783a313ae1a8d2ea9389653
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 17 04:19:48 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 17 04:19:48 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7c50705
dev-lisp/cl-unicode: Stabilize 0.1.5-r1 amd64, #934438
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
index 728b474a9a1b..3eff72dbf14d 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc ~x86"
DEPEND="virtual/commonlisp
dev-lisp/flexi-streams"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2024-06-17 4:24 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2024-06-17 4:24 UTC (permalink / raw
To: gentoo-commits
commit: 7f67ee7aada9582032a72976b23fbf8ba8d1d3c7
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 17 04:24:06 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 17 04:24:06 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f67ee7a
dev-lisp/cl-unicode: Stabilize 0.1.5-r1 x86, #934438
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
index 3eff72dbf14d..3acb1df4ee00 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
DEPEND="virtual/commonlisp
dev-lisp/flexi-streams"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2024-06-17 5:56 Ulrich Müller
0 siblings, 0 replies; 17+ messages in thread
From: Ulrich Müller @ 2024-06-17 5:56 UTC (permalink / raw
To: gentoo-commits
commit: c57e20afb17103eab22231c2eb3d1c7d4b9d0dc8
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 17 05:54:41 2024 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Jun 17 05:55:57 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c57e20af
dev-lisp/cl-unicode: drop 0.1.5
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild | 42 -----------------------------
1 file changed, 42 deletions(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
deleted file mode 100644
index d088c26abc3a..000000000000
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit common-lisp-3 xdg-utils
-
-MY_P="v${PV}"
-
-DESCRIPTION="Provides Common Lisp implementations with knowledge about Unicode characters"
-HOMEPAGE="http://weitz.de/cl-unicode/"
-SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
-IUSE=""
-
-DEPEND="virtual/commonlisp
- dev-lisp/flexi-streams"
-RDEPEND="dev-lisp/cl-ppcre"
-
-src_configure() {
- xdg_environment_reset
-}
-
-src_compile() {
- # cl-unicode builds parts of its source code automatically the first time it
- # is compiled, so we compile it here.
- local initclunicode="(progn (push \"${S}/\" asdf:*central-registry*) (require :${PN}))"
-
- common-lisp-export-impl-args "$(common-lisp-find-lisp-impl)"
- ${CL_BINARY} ${CL_EVAL} "${initclunicode}"
-}
-
-src_install() {
- common-lisp-install-sources *.lisp test/
- common-lisp-install-sources -t all build/
- common-lisp-install-asdf
- dodoc CHANGELOG
- dodoc doc/index.html
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/
@ 2024-06-25 16:42 Jakov Smolić
0 siblings, 0 replies; 17+ messages in thread
From: Jakov Smolić @ 2024-06-25 16:42 UTC (permalink / raw
To: gentoo-commits
commit: 6d8e71fcfa0492ad574158db689cb3261c6872ad
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 25 16:42:18 2024 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 16:42:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d8e71fc
dev-lisp/cl-unicode: Keyword 0.1.5-r1 riscv, #893500
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild b/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
index 3acb1df4ee00..61fc2c95afa6 100644
--- a/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
+++ b/dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc ~riscv ~sparc x86"
DEPEND="virtual/commonlisp
dev-lisp/flexi-streams"
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-06-25 16:42 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-30 14:52 [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-unicode/ José María Alonso
-- strict thread matches above, loose matches on Subject: below --
2024-06-25 16:42 Jakov Smolić
2024-06-17 5:56 Ulrich Müller
2024-06-17 4:24 Arthur Zamarin
2024-06-17 4:19 Arthur Zamarin
2024-06-10 14:32 Ulrich Müller
2024-06-08 17:40 Ulrich Müller
2017-10-08 7:38 José María Alonso
2017-10-03 14:07 José María Alonso
2017-09-29 22:56 Thomas Deutschmann
2017-09-27 19:11 José María Alonso
2017-08-29 15:31 José María Alonso
2017-08-22 14:30 José María Alonso
2017-07-02 21:05 José María Alonso
2017-04-05 15:46 José María Alonso
2016-01-14 11:07 José María Alonso
2015-12-17 22:14 José María Alonso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox