diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-06-09 00:08:14 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-06-09 00:08:14 +0100 |
commit | 4fe228ee9aa3b9b825d54ace549a5517e153e8bd (patch) | |
tree | 90a261e3ea59b80722d70d3c42f3e40d16c9f8dd /dev-lisp/cl-unicode | |
parent | adc09cc4e6ebf7931735c02c0c272b4b885c2b30 (diff) |
gentoo auto-resync : 09:06:2024 - 00:08:13
Diffstat (limited to 'dev-lisp/cl-unicode')
-rw-r--r-- | dev-lisp/cl-unicode/Manifest | 1 | ||||
-rw-r--r-- | dev-lisp/cl-unicode/cl-unicode-0.1.5-r1.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/dev-lisp/cl-unicode/Manifest b/dev-lisp/cl-unicode/Manifest index 1941fecf22ea..585c8faaab35 100644 --- a/dev-lisp/cl-unicode/Manifest +++ b/dev-lisp/cl-unicode/Manifest @@ -1,3 +1,4 @@ DIST cl-unicode-0.1.5.tar.gz 485666 BLAKE2B 9db0714c24de4c5c79f3d7eeb471ac5d7a06dd29abd1c3c4b728c9ce98b175ea97ed20923c957a75ac7dee290f095a5c28c92da5ddc7e808d28ca624d84a37cd SHA512 0b66c0e711f7e37423aa638b43017adff648189a32032702b082dff140b2255847a15572a20f21e6f82a2e8cbd547f7f99bf9176e4fa464aa1d938575d8a2390 +EBUILD cl-unicode-0.1.5-r1.ebuild 1058 BLAKE2B 9bd7796b9a58314a728fcd047228a5f0cfd8f9654ec787cf24ced0bbfa5b3becfe698b52889666dee5897bdbd7c8da696fdc9b2683c6ad23633223219c2e68e5 SHA512 3c3fd9630435fbbb7739f1269faa9acd9377519b3d5f378a9b5c274bd744a28461a0db9db6cfa63f15b49206a7158125ed361b164aacf140cabc6aa8d3372b03 EBUILD cl-unicode-0.1.5.ebuild 1064 BLAKE2B 2697ef735e0a986d41955c41caebc5c1e8b0cf27e2a7b4f3f09191335d743f8b6bef8b1460294ec5ab9877cce9ebaa856289bc05483fa71a6d47a9a28fee542c SHA512 72d4a4a9bc2ef0150cf91df1a06a9c23a43019fa3c9192402ed309ccdf4986368beb841b972cd50ca17003d7d79fea14319c99529866ecd9874e7d04672df099 MISC metadata.xml 1363 BLAKE2B 8447b4312a9619c24014f437792e17af4f4dd38998b9f4e595c0ca139ecaca0834543b86af20b5c567ea8d57ca9f24cdfe8d21f6ec25caa30f662f77f88fd94b SHA512 99b0cee1e43de0b1adb5746076e2501eded398dc8f2f3d6486a086985d77af9ef1644b0a8f31a3410ab0d0f6d5be740cac3024a6cd7afd76f3a46e09f129ffb1 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 +} |