summaryrefslogtreecommitdiff
path: root/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240203.ebuild
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2024-10-19 22:44:25 +0100
committerJames Le Cuirot <chewi@gentoo.org>2024-10-19 22:44:25 +0100
commit643f24ce7de9d74b391b66f469b15dbdbf11b515 (patch)
treef1098db24f6e415462d1a6972c0b3faa78a00087 /dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240203.ebuild
parent45e64375507d22fe1c3518631f07979553c98872 (diff)
downloadgentoo-643f24ce7de9d74b391b66f469b15dbdbf11b515.tar.gz
gentoo-643f24ce7de9d74b391b66f469b15dbdbf11b515.tar.bz2
gentoo-643f24ce7de9d74b391b66f469b15dbdbf11b515.zip
dev-embedded/raspberrypi-utils: Drop old 0_p20240203
Closes: https://bugs.gentoo.org/926264 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240203.ebuild')
-rw-r--r--dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240203.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240203.ebuild b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240203.ebuild
deleted file mode 100644
index afa8e74dada6..000000000000
--- a/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240203.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1 cmake
-
-COMMIT="1eb8c20dfa258c549139fae2b21185ac290051c5"
-
-DESCRIPTION="Raspberry Pi userspace utilities"
-HOMEPAGE="https://github.com/raspberrypi/utils"
-SRC_URI="https://github.com/raspberrypi/utils/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="arm arm64"
-
-DEPEND="
- sys-apps/dtc
-"
-
-RDEPEND="
- ${DEPEND}
- !media-libs/raspberrypi-userland
- !media-libs/raspberrypi-userland-bin
-"
-
-S="${WORKDIR}/utils-${COMMIT}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-werror.patch
-)
-
-src_configure() {
- local mycmakeargs=( -DBUILD_SHARED_LIBS=OFF )
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
-
- local SRC
- rm -r "${ED}"/usr/share/bash-completion/ || die
- for SRC in */*-completion.bash; do
- local DEST=${SRC%-completion.bash}
- newbashcomp "${SRC}" "${DEST##*/}"
- done
-}