sys-boot/rpi-imager: drop 1.6.2, 1.7.2

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2024-02-27 21:30:18 +02:00
parent 21ba99196d
commit d060fb801b
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
3 changed files with 0 additions and 107 deletions

View File

@ -1,3 +1 @@
DIST rpi-imager-1.6.2.tar.gz 9129361 BLAKE2B e38bc750f03043ff0d1ac01cab782d20c3d72b441ae4b3cffa21d4b4e65d6821f26933b712101a80c18ea5db99515cc040827ebfc5a3bafca173e48a37f5e38c SHA512 1424d391072b8cbbd29d116512e7add632da5a9151caf1ef8724c8fa5f17c553fbfba0339ecbd93d51a9fa7d785eae99060e8e373ae3cc7ab6e783b4dffecf18
DIST rpi-imager-1.7.2.tar.gz 20213200 BLAKE2B 63f865dff61c8152d609e724045756c0a9f454971dc5ba3ff310f1bbeecbbcfe06b9319e8e566122c6df8e6194b3bf0953d419ab511ed13ad6f133dabc4e068d SHA512 204873dea379061c7f0f783259108a9129fd133ded549d4bf550ab41ecff6f08782264c0351505fb337a0a6de43f6656b35c5a8eba452b7933ee7742324eea41
DIST rpi-imager-1.7.3.tar.gz 20213201 BLAKE2B 72ab2c8388a11fd7ad6e442872ed5fd31c9d8ec5b2a66143a8ff45fd2db86a260e4cda7039db0af60a45e32512a3370f79190d9cebd25c4abb587e23a42fe445 SHA512 e169c2662c9fbd409a40c97b1a31bebf8b292812266e427d2979aef1af00d29217efc011227b2067fab5c1287441ba4609723dde2c1e1dd3741a9f3851eeba92

View File

@ -1,49 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg cmake
DESCRIPTION="Raspberry Pi Imaging Utility"
HOMEPAGE="https://github.com/raspberrypi/rpi-imager"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/raspberrypi/${PN}.git"
else
SRC_URI="https://github.com/raspberrypi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
RESTRICT="mirror"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="debug"
RDEPEND="
app-arch/libarchive
dev-qt/qtconcurrent:5
dev-qt/qtcore:5
dev-qt/qtdeclarative:5
dev-qt/qtgui:5
dev-qt/qtquickcontrols2:5
dev-qt/qtwidgets:5
dev-qt/qtxml:5
net-misc/curl
sys-fs/udisks:2
"
DEPEND="
${RDEPEND}
"
src_configure() {
local CMAKE_BUILD_TYPE
if use debug; then
CMAKE_BUILD_TYPE="Debug"
else
CMAKE_BUILD_TYPE="Release"
fi
cmake_src_configure
}

View File

@ -1,56 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg cmake optfeature
DESCRIPTION="Raspberry Pi Imaging Utility"
HOMEPAGE="https://github.com/raspberrypi/rpi-imager"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/raspberrypi/${PN}.git"
else
SRC_URI="https://github.com/raspberrypi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="Apache-2.0"
SLOT="0"
CMAKE_USE_DIR="${S}/src"
BDEPEND="
dev-qt/linguist-tools
"
RDEPEND="
app-arch/libarchive
dev-libs/openssl
dev-qt/qtconcurrent:5
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtdeclarative:5
dev-qt/qtgui:5
dev-qt/qtquickcontrols2:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
dev-qt/qtxml:5
net-misc/curl
sys-fs/udisks:2
"
DEPEND="
${RDEPEND}
"
src_configure() {
local mycmakeargs=(
-DENABLE_CHECK_VERSION=OFF
-DENABLE_TELEMETRY=OFF
)
cmake_src_configure
}
pkg_postinst() {
optfeature "writing to disk as non-root user" sys-fs/udisks
}