summaryrefslogtreecommitdiff
path: root/dev-util/shards
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-util/shards
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-util/shards')
-rw-r--r--dev-util/shards/Manifest2
-rw-r--r--dev-util/shards/metadata.xml12
-rw-r--r--dev-util/shards/shards-0.20.0.ebuild58
3 files changed, 0 insertions, 72 deletions
diff --git a/dev-util/shards/Manifest b/dev-util/shards/Manifest
deleted file mode 100644
index 75a085811f4e..000000000000
--- a/dev-util/shards/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST crystal-molinillo-0.2.0.gh.tar.gz 23959 BLAKE2B 257dcca66583db87a802b27b1f100e226eb0b6ac53708d110040d7b5560f429a82f11595e303af4922f22917d922d60ea380fb395d254dc3b3ce24f4183395b6 SHA512 7c00a6a3ee4864b712ad8b703557f10498ba0b25491a55ae2f6c02d574034ec5bf8b87df777c3d34eb9cc4c87eebdcf6567c153e9edf3bc3c1b9ac4306ce3dc2
-DIST shards-0.20.0.gh.tar.gz 109618 BLAKE2B 21790dd05c64ca66447fcde0e9a9419d0632eb0762c0d2fc5d19e444575103697ba01175b5a9c17229ff7cd497e9198db9265e43b5b1999b8220b2acd59c196e SHA512 d88362c3ace00a299f9a5850f9e2798a81b905aa80e4c71b33c6d189e512ebc1dd6cb11e7a27e2b07f2d51a8e3e2ec8b101e769e90a2732926211e66afb6f818
diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
deleted file mode 100644
index 5daf0629b714..000000000000
--- a/dev-util/shards/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>xgqt@gentoo.org</email>
- <name>Maciej Barć</name>
- </maintainer>
- <upstream>
- <bugs-to>https://github.com/crystal-lang/crystal/issues/</bugs-to>
- </upstream>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/dev-util/shards/shards-0.20.0.ebuild b/dev-util/shards/shards-0.20.0.ebuild
deleted file mode 100644
index daea403f47e3..000000000000
--- a/dev-util/shards/shards-0.20.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit multiprocessing toolchain-funcs
-
-MOLINILLO_PV="0.2.0"
-MOLINILLO_P="crystal-molinillo-${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}.gh.tar.gz
- https://github.com/crystal-lang/crystal-molinillo/archive/v${MOLINILLO_PV}.tar.gz
- -> ${MOLINILLO_P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64"
-RESTRICT="test" # Missing files in the tarball.
-
-RDEPEND="
- dev-lang/crystal
- dev-libs/libyaml:=
-"
-DEPEND="
- ${RDEPEND}
-"
-
-DOCS=( CHANGELOG.md README.md SPEC.md )
-
-QA_PREBUILT=".*" # Generated by Crystal.
-
-src_prepare() {
- default
- tc-export CC
-
- # bundle crystal-molinillo to bootstrap 'shards'
- mkdir -p lib || die
- ln -s "../../${MOLINILLO_P}" lib/molinillo || die
-
- # Remove failing tests.
- rm ./spec/unit/{fossil,git,hg}_*.cr || die
-}
-
-src_compile() {
- emake release=1 \
- FLAGS="--link-flags=\"${LDFLAGS}\" --verbose --threads $(makeopts_jobs)"
-}
-
-src_install() {
- dobin "bin/${PN}"
- doman man/*
- einstalldocs
-}