diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-08-04 09:34:26 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-08-04 10:16:24 -0400 |
commit | bf2fdc6c65ff7a1ad573266929907b2287f39de9 (patch) | |
tree | b9b7e75ae9cfa2e5549b432138408f1cb70a28c6 /dev-libs/trio | |
parent | dev-libs/trio: Add 1.17 (diff) | |
download | gentoo-bf2fdc6c65ff7a1ad573266929907b2287f39de9.tar.gz gentoo-bf2fdc6c65ff7a1ad573266929907b2287f39de9.tar.bz2 gentoo-bf2fdc6c65ff7a1ad573266929907b2287f39de9.zip |
dev-libs/trio: minor adjustments
* drop imagemagick (not used here I can see, this is just an extra
deps example from the docs eclass and is not typically needed)
* flatten SRC_URI's ${PN} wrt proxy-maint style guide
* update .la's find to match current git policy guide
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-libs/trio')
-rw-r--r-- | dev-libs/trio/trio-1.17.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dev-libs/trio/trio-1.17.ebuild b/dev-libs/trio/trio-1.17.ebuild index cef261694cde..a12bd3608b4d 100644 --- a/dev-libs/trio/trio-1.17.ebuild +++ b/dev-libs/trio/trio-1.17.ebuild @@ -4,14 +4,13 @@ EAPI=8 DOCS_BUILDER="doxygen" -DOCS_DEPEND="media-gfx/imagemagick" DOCS_DIR="doc" inherit docs DESCRIPTION="Portable string functions, focus on the *printf() and *scanf() clones" HOMEPAGE="https://daniel.haxx.se/projects/trio/" -SRC_URI="https://github.com/orbea/${PN}/releases/download/v${PV}/${P}.tar.gz" +SRC_URI="https://github.com/orbea/trio/releases/download/v${PV}/${P}.tar.gz" LICENSE="trio" SLOT="0" @@ -24,5 +23,5 @@ src_compile() { src_install() { default - find "${D}" -name '*.la' -delete || die + find "${ED}" -type f -name '*.la' -delete || die } |