summaryrefslogtreecommitdiff
path: root/sys-apps/pkgcraft-tools
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /sys-apps/pkgcraft-tools
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'sys-apps/pkgcraft-tools')
-rw-r--r--sys-apps/pkgcraft-tools/Manifest1
-rw-r--r--sys-apps/pkgcraft-tools/metadata.xml15
-rw-r--r--sys-apps/pkgcraft-tools/pkgcraft-tools-0.0.31-r2.ebuild96
-rw-r--r--sys-apps/pkgcraft-tools/pkgcraft-tools-9999.ebuild96
4 files changed, 0 insertions, 208 deletions
diff --git a/sys-apps/pkgcraft-tools/Manifest b/sys-apps/pkgcraft-tools/Manifest
deleted file mode 100644
index 3233d92acbc6..000000000000
--- a/sys-apps/pkgcraft-tools/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pkgcraft-tools-0.0.31.tar.xz 36348236 BLAKE2B b647018a80867df7ab3ca9fcc5514fe84000103e8677f2b6b1213394a6c14c69dec32b449faadb47dcf8a053e87a08dfa49090bae30a6ca92354490d55acfd14 SHA512 cfeb4cdac3274ee57fc4ce7dd0820926d9ccd4397aab79fcf30669d1185d373892173bd9d3366f750640bcd6d0979e17c49920db1264636f4c0ee4d27644a584
diff --git a/sys-apps/pkgcraft-tools/metadata.xml b/sys-apps/pkgcraft-tools/metadata.xml
deleted file mode 100644
index e3bcae26233b..000000000000
--- a/sys-apps/pkgcraft-tools/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>sam@gentoo.org</email>
- <name>Sam James</name>
- </maintainer>
- <maintainer type="person">
- <email>arthurzam@gentoo.org</email>
- <name>Arthur Zamarin</name>
- </maintainer>
- <upstream>
- <remote-id type="github">pkgcraft/pkgcraft</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sys-apps/pkgcraft-tools/pkgcraft-tools-0.0.31-r2.ebuild b/sys-apps/pkgcraft-tools/pkgcraft-tools-0.0.31-r2.ebuild
deleted file mode 100644
index 9a4e7b387ed3..000000000000
--- a/sys-apps/pkgcraft-tools/pkgcraft-tools-0.0.31-r2.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 2023-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LLVM_COMPAT=( {19..22} )
-RUST_MIN_VER="1.90.0"
-
-inherit cargo edo llvm-r2 multiprocessing shell-completion
-
-DESCRIPTION="pkgcraft-based tools for Gentoo"
-HOMEPAGE="https://pkgcraft.github.io/"
-
-if [[ ${PV} == 9999 ]] ; then
- SCALLOP_VERSION="9999"
- EGIT_REPO_URI="https://github.com/pkgcraft/pkgcraft"
- inherit git-r3
- S="${WORKDIR}"/${P}/crates/${PN}
-else
- # For releases, SCALLOP_VERSION must match the value of PACKAGE_VERSION in
- # the vendored library's configure script.
- #
- # To get the value from the repo use the following command:
- # sed -rn "/^PACKAGE_VERSION=/ s/^.*='(.*)'/\1/p" **/scallop/bash/configure
- SCALLOP_VERSION="5.3.9.20251212"
- SRC_URI="https://github.com/pkgcraft/pkgcraft/releases/download/${P}/${P}.tar.xz"
- KEYWORDS="amd64 arm64"
-fi
-
-LICENSE="MIT"
-# dependent crate licenses
-LICENSE+="
- Apache-2.0 BSD-2 BSD CC0-1.0 CDLA-Permissive-2.0 ISC MIT MPL-2.0
- Unicode-3.0
-"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-# Strict dependency versioning is required since the system library must match
-# the vendored copy as scallop exports many parts of bash that aren't meant to
-# be a public interface and compatibility is not guaranteed between releases.
-RDEPEND="~sys-libs/scallop-${SCALLOP_VERSION}"
-DEPEND="${RDEPEND}"
-# clang needed by bindgen to generate bash bindings
-BDEPEND="
- virtual/pkgconfig
- $(llvm_gen_dep 'llvm-core/clang:${LLVM_SLOT}')
- test? ( dev-util/cargo-nextest )
-"
-
-QA_FLAGS_IGNORED="usr/bin/pk"
-
-pkg_setup() {
- llvm-r2_pkg_setup
- rust_pkg_setup
-
- # use system scallop library
- export SCALLOP_NO_VENDOR=1
-}
-
-src_unpack() {
- if [[ ${PV} == 9999 ]] ; then
- git-r3_src_unpack
- cargo_live_src_unpack
- else
- cargo_src_unpack
- fi
-}
-
-src_compile() {
- cargo_src_compile
-
- if [[ ${PV} == 9999 ]] ; then
- einfo "Generating shell completions"
- local BIN="${WORKDIR}/${P}/$(cargo_target_dir)/pk"
- "${BIN}" completion --dir shell || die
- fi
-}
-
-src_test() {
- # pkgcraft-tools::pk pkg::showkw::output
- # pkgcraft-tools::pk repo::leaf::multiple_repos_not_supported
- unset CLICOLOR CLICOLOR_FORCE
-
- local -x NEXTEST_TEST_THREADS="$(makeopts_jobs)"
- edo cargo nextest run $(usev !debug '--release') --color always --tests --no-fail-fast
-}
-
-src_install() {
- cargo_src_install
-
- newbashcomp shell/pk.bash pk
- dozshcomp shell/_pk
- dofishcomp shell/pk.fish
-}
diff --git a/sys-apps/pkgcraft-tools/pkgcraft-tools-9999.ebuild b/sys-apps/pkgcraft-tools/pkgcraft-tools-9999.ebuild
deleted file mode 100644
index bd6f1541a711..000000000000
--- a/sys-apps/pkgcraft-tools/pkgcraft-tools-9999.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 2023-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LLVM_COMPAT=( {19..22} )
-RUST_MIN_VER="1.90.0"
-
-inherit cargo edo llvm-r2 multiprocessing shell-completion
-
-DESCRIPTION="pkgcraft-based tools for Gentoo"
-HOMEPAGE="https://pkgcraft.github.io/"
-
-if [[ ${PV} == 9999 ]] ; then
- SCALLOP_VERSION="9999"
- EGIT_REPO_URI="https://github.com/pkgcraft/pkgcraft"
- inherit git-r3
- S="${WORKDIR}"/${P}/crates/${PN}
-else
- # For releases, SCALLOP_VERSION must match the value of PACKAGE_VERSION in
- # the vendored library's configure script.
- #
- # To get the value from the repo use the following command:
- # sed -rn "/^PACKAGE_VERSION=/ s/^.*='(.*)'/\1/p" **/scallop/bash/configure
- SCALLOP_VERSION="5.3.9.20251212"
- SRC_URI="https://github.com/pkgcraft/pkgcraft/releases/download/${P}/${P}.tar.xz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="MIT"
-# dependent crate licenses
-LICENSE+="
- Apache-2.0 BSD-2 BSD CC0-1.0 CDLA-Permissive-2.0 ISC MIT MPL-2.0
- Unicode-3.0
-"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-# Strict dependency versioning is required since the system library must match
-# the vendored copy as scallop exports many parts of bash that aren't meant to
-# be a public interface and compatibility is not guaranteed between releases.
-RDEPEND="~sys-libs/scallop-${SCALLOP_VERSION}"
-DEPEND="${RDEPEND}"
-# clang needed by bindgen to generate bash bindings
-BDEPEND="
- virtual/pkgconfig
- $(llvm_gen_dep 'llvm-core/clang:${LLVM_SLOT}')
- test? ( dev-util/cargo-nextest )
-"
-
-QA_FLAGS_IGNORED="usr/bin/pk"
-
-pkg_setup() {
- llvm-r2_pkg_setup
- rust_pkg_setup
-
- # use system scallop library
- export SCALLOP_NO_VENDOR=1
-}
-
-src_unpack() {
- if [[ ${PV} == 9999 ]] ; then
- git-r3_src_unpack
- cargo_live_src_unpack
- else
- cargo_src_unpack
- fi
-}
-
-src_compile() {
- cargo_src_compile
-
- if [[ ${PV} == 9999 ]] ; then
- einfo "Generating shell completions"
- local BIN="${WORKDIR}/${P}/$(cargo_target_dir)/pk"
- "${BIN}" completion --dir shell || die
- fi
-}
-
-src_test() {
- # pkgcraft-tools::pk pkg::showkw::output
- # pkgcraft-tools::pk repo::leaf::multiple_repos_not_supported
- unset CLICOLOR CLICOLOR_FORCE
-
- local -x NEXTEST_TEST_THREADS="$(makeopts_jobs)"
- edo cargo nextest run $(usev !debug '--release') --color always --tests --no-fail-fast
-}
-
-src_install() {
- cargo_src_install
-
- newbashcomp shell/pk.bash pk
- dozshcomp shell/_pk
- dofishcomp shell/pk.fish
-}