diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2023-08-27 20:07:30 +0200 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2023-08-27 20:07:30 +0200 |
commit | a2f4ac23132e685c38e9a872bc6c9d8cf18e35cb (patch) | |
tree | 29a9b3c4459f64896900c9950782cc93893cad1c | |
parent | kernel-install.eclass: enforce signed modules in test with USE=modules-sign (diff) | |
download | gentoo-a2f4ac23132e685c38e9a872bc6c9d8cf18e35cb.tar.gz gentoo-a2f4ac23132e685c38e9a872bc6c9d8cf18e35cb.tar.bz2 gentoo-a2f4ac23132e685c38e9a872bc6c9d8cf18e35cb.zip |
dev-libs/libjodycode: drop 2.0.1, 3.0.1
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
-rw-r--r-- | dev-libs/libjodycode/Manifest | 2 | ||||
-rw-r--r-- | dev-libs/libjodycode/libjodycode-2.0.1.ebuild | 25 | ||||
-rw-r--r-- | dev-libs/libjodycode/libjodycode-3.0.1.ebuild | 33 |
3 files changed, 0 insertions, 60 deletions
diff --git a/dev-libs/libjodycode/Manifest b/dev-libs/libjodycode/Manifest index 844b9f31a389..f681f8e69288 100644 --- a/dev-libs/libjodycode/Manifest +++ b/dev-libs/libjodycode/Manifest @@ -1,3 +1 @@ -DIST libjodycode-2.0.1.tar.gz 22186 BLAKE2B 1a1d88a3cebc2adf4a9a067c00e8c543e01dc9f5a34ea2ab6c3e5239b2627c7f737f4a467dfd03b8ba7a38c6764227f009e5c0c7af6b5086652183bbd052ae1a SHA512 eba59bc2a792e129e8d397c8fdb9d6dc09b6af87828e18c530e8613c425ed8b404b8cc586aea490fe9f1791630c12c879c2f97f52740dc0e31b5feff9ccd95b1 -DIST libjodycode-3.0.1.tar.gz 25929 BLAKE2B a55e7a2f2ab829dfadc4ecf296e56d38341acd8fde44bc84bdb821d485546b4c4e31fe40a729cfc940b0499d7d1a83e549ddd93abab709be463fd4050d7d45c7 SHA512 cbcc85ce2f321a01762966100ba73b7ddadd2f5bbbd6ec2ddc99624a54505ec6fc8d2be2b3cb520312b5c82599401141409018c58e68a2f17c044c69da6caa75 DIST libjodycode-3.1.tar.gz 27340 BLAKE2B c084c75a241737c63f33a9a21ea2dc5303d6811fd94db9bd62162eb1ed3fa6e43edbbc1cbfa079f60f8f11a76c052cd825250b2ca34594889da46cbdda1c5248 SHA512 980f1797084594f710cae92b26d10c46a73415d11e89af608c8a87730ea39f497fec0889f9bd88af7c23aa0067dd6642758edc2b2756d9eba6e6a4a50c583751 diff --git a/dev-libs/libjodycode/libjodycode-2.0.1.ebuild b/dev-libs/libjodycode/libjodycode-2.0.1.ebuild deleted file mode 100644 index 24838eaf1a0b..000000000000 --- a/dev-libs/libjodycode/libjodycode-2.0.1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Shared code used by several utilities written by Jody Bruchon" -HOMEPAGE="https://github.com/jbruchon/libjodycode" -SRC_URI="https://github.com/jbruchon/libjodycode/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64" - -# missing test script -# https://github.com/jbruchon/jdupes/issues/191 -RESTRICT="test" - -src_install() { - emake \ - DESTDIR="${D}" \ - LIB_DIR="/usr/$(get_libdir)" \ - PREFIX="${EPREFIX}"/usr \ - install - einstalldocs -} diff --git a/dev-libs/libjodycode/libjodycode-3.0.1.ebuild b/dev-libs/libjodycode/libjodycode-3.0.1.ebuild deleted file mode 100644 index 21fb1968503a..000000000000 --- a/dev-libs/libjodycode/libjodycode-3.0.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Shared code used by several utilities written by Jody Bruchon" -HOMEPAGE="https://github.com/jbruchon/libjodycode" -SRC_URI="https://github.com/jbruchon/libjodycode/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -# missing test script -# https://github.com/jbruchon/jdupes/issues/191 -RESTRICT="test" - -PATCHES=( - "${FILESDIR}"/${P}-static-lib.patch -) - -src_compile() { - emake sharedlib -} - -src_install() { - emake \ - DESTDIR="${D}" \ - LIB_DIR="/usr/$(get_libdir)" \ - PREFIX="${EPREFIX}"/usr \ - install - einstalldocs -} |