blob: 99155fa4214f546fba1c211c6a899878661baeca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit common-lisp-3
DESCRIPTION="Modern, simple and consistent Common Lisp string manipulation library"
HOMEPAGE="https://vindarel.github.io/cl-str/"
SRC_URI="https://github.com/vindarel/cl-str/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT=0
KEYWORDS="~amd64"
RDEPEND="dev-lisp/cl-ppcre
dev-lisp/cl-ppcre-unicode
dev-lisp/cl-change-case"
# This patch can be removed on >cl-str-0.19 since
# the issue was fixed upstream.
PATCHES=(
"${FILESDIR}/remove-uiop-read-from-asd-file.patch"
)
|