commit: 3370704a81ef2d3dec51e88b0f1494fbc7ac4172
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 7 18:12:35 2025 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Mar 7 19:33:55 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3370704a
dev-util/shards: drop old 0.19.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-util/shards/Manifest | 1 -
dev-util/shards/shards-0.19.0.ebuild | 58 ------------------------------------
2 files changed, 59 deletions(-)
diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
index 21ae65d89140..0c832fea1609 100644
--- a/dev-util/shards/Manifest
+++ b/dev-util/shards/Manifest
@@ -1,3 +1,2 @@
DIST crystal-molinillo-0.2.0.tar.gz 23959 BLAKE2B
257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6
SHA512
7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
-DIST shards-0.19.0.tar.gz 83062 BLAKE2B
47992a417af66b36653884af932e9405a82797bddea7e8780b5af1c707e6394a35d21c485947343fadca51192d454494caad9a2e363ce5d028b05bd4253b8efa
SHA512
eff822acc0e0a385a77ca8795bc365741ee2923ffc36f91802f2e48b49f21d15bd3c490496f1fdb87830271e822c489e8b6f35e09908a275b3a7da3c8df3de0d
DIST shards-0.19.1.tar.gz 83440 BLAKE2B
734750a25c6566725e8329f326e9509771ddb69d8958b98c687dde41c5b34b71d39f19e4d7d1744f576f17ccb39794abd744c407d55611550b4022d3436b90ac
SHA512
42cf28c1fdd53a80eed1b9524d8f9ed7b4722f1e7a182abfc729ad574d6edf997c0ae08cb68c9b0ec632e85a4f4b737ecd27a46f7881b1f4725ced3ece8fa6fd
diff --git a/dev-util/shards/shards-0.19.0.ebuild
b/dev-util/shards/shards-0.19.0.ebuild
deleted file mode 100644
index 99b50d7fc1d8..000000000000
--- a/dev-util/shards/shards-0.19.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit multiprocessing toolchain-funcs
-
-CRYSTAL_MOLINILLO_PV="0.2.0"
-CRYSTAL_MOLINILLO_P="crystal-molinillo-${CRYSTAL_MOLINILLO_PV}"
-
-DESCRIPTION="Dependency manager for the Crystal language"
-HOMEPAGE="https://github.com/crystal-lang/shards/"
-SRC_URI="
- https://github.com/crystal-lang/shards/archive/v${PV}.tar.gz
- -> ${P}.tar.gz
-
https://github.com/crystal-lang/crystal-molinillo/archive/v${CRYSTAL_MOLINILLO_PV}.tar.gz
- -> ${CRYSTAL_MOLINILLO_P}.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64"
-RESTRICT="test" # Missing files in the tarball.
-
-RDEPEND="
- >dev-lang/crystal-0.11.1
- dev-libs/libyaml:=
-"
-DEPEND="
- ${RDEPEND}
-"
-
-DOCS=( CHANGELOG.md README.md SPEC.md )
-
-QA_PREBUILT=".*" # Generated by Crystal.
-
-src_prepare() {
- default
-
- # bundle crystal-molinillo to bootstrap 'shards'
- mkdir -p lib || die
- ln -s "../../${CRYSTAL_MOLINILLO_P}" lib/molinillo || die
-
- tc-export CC
-}
-
-src_compile() {
- emake release=1 \
- FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads
$(makeopts_jobs)"
-}
-
-src_install() {
- exeinto /usr/bin
- doexe "bin/${PN}"
-
- doman man/*
- einstalldocs
-}