Compare commits
3 Commits
03abd7e812
...
3b95ec492b
Author | SHA1 | Date | |
---|---|---|---|
|
3b95ec492b | ||
|
7255cf98a5 | ||
|
8b3a64491c |
@ -1,2 +1,2 @@
|
|||||||
DIST rpi-imager-1.5.tar.gz 9094787 BLAKE2B 60a8c85681d58ae0b87365e2d30ae75f5449e2f1c33a259c63519e8f77133b1102eab010b21624e82ac2973b480883cae8bf906fb3cbf3a446b2faa503b3386c SHA512 4e52ae372450b975f1523c9643e654196c9c30e040132235e1f324f23172cc52cbde56180683c4644cc2c11f2b1f8c0dddf14910720d31ea975e3f4ec72c887a
|
|
||||||
DIST rpi-imager-1.6.1.tar.gz 9119480 BLAKE2B 36d702c0488620aec133ba7e2b3cfda4bd569a2e3868fb08541e3a616c2c47148c8bfc813c5e2586263661a47abad47b013af40b3fdaf160c4bc14c74d60cae7 SHA512 a7782d4ec868a5c293489b196bdbe047588489adca5e8a6e1cecf8c2bb8a696e755a512ced15a059f49091d12b17dacc22ca7f92f309707f066296796165dc6b
|
DIST rpi-imager-1.6.1.tar.gz 9119480 BLAKE2B 36d702c0488620aec133ba7e2b3cfda4bd569a2e3868fb08541e3a616c2c47148c8bfc813c5e2586263661a47abad47b013af40b3fdaf160c4bc14c74d60cae7 SHA512 a7782d4ec868a5c293489b196bdbe047588489adca5e8a6e1cecf8c2bb8a696e755a512ced15a059f49091d12b17dacc22ca7f92f309707f066296796165dc6b
|
||||||
|
DIST rpi-imager-1.6.2.tar.gz 9129361 BLAKE2B e38bc750f03043ff0d1ac01cab782d20c3d72b441ae4b3cffa21d4b4e65d6821f26933b712101a80c18ea5db99515cc040827ebfc5a3bafca173e48a37f5e38c SHA512 1424d391072b8cbbd29d116512e7add632da5a9151caf1ef8724c8fa5f17c553fbfba0339ecbd93d51a9fa7d785eae99060e8e373ae3cc7ab6e783b4dffecf18
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# Copyright 1999-2021 Gentoo Authors
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
EAPI=7
|
EAPI=8
|
||||||
|
|
||||||
inherit xdg cmake
|
inherit xdg cmake
|
||||||
|
|
||||||
@ -12,7 +12,7 @@ if [[ "${PV}" == *9999* ]]; then
|
|||||||
inherit git-r3
|
inherit git-r3
|
||||||
EGIT_REPO_URI="https://github.com/raspberrypi/${PN}.git"
|
EGIT_REPO_URI="https://github.com/raspberrypi/${PN}.git"
|
||||||
else
|
else
|
||||||
SRC_URI="https://github.com/raspberrypi/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
SRC_URI="https://github.com/raspberrypi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
KEYWORDS="~amd64"
|
KEYWORDS="~amd64"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -23,6 +23,7 @@ IUSE="debug"
|
|||||||
|
|
||||||
RDEPEND="
|
RDEPEND="
|
||||||
app-arch/libarchive
|
app-arch/libarchive
|
||||||
|
dev-qt/qtconcurrent:5
|
||||||
dev-qt/qtcore:5
|
dev-qt/qtcore:5
|
||||||
dev-qt/qtdeclarative:5
|
dev-qt/qtdeclarative:5
|
||||||
dev-qt/qtgui:5
|
dev-qt/qtgui:5
|
||||||
@ -37,9 +38,12 @@ DEPEND="
|
|||||||
"
|
"
|
||||||
|
|
||||||
src_configure() {
|
src_configure() {
|
||||||
local mycmakeargs=(
|
local CMAKE_BUILD_TYPE
|
||||||
-DCMAKE_BUILD_TYPE=$(usex debug Debug Release)
|
if use debug; then
|
||||||
)
|
CMAKE_BUILD_TYPE="Debug"
|
||||||
|
else
|
||||||
|
CMAKE_BUILD_TYPE="Release"
|
||||||
|
fi
|
||||||
|
|
||||||
cmake_src_configure
|
cmake_src_configure
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# Copyright 1999-2021 Gentoo Authors
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
EAPI=7
|
EAPI=8
|
||||||
|
|
||||||
inherit xdg cmake
|
inherit xdg cmake
|
||||||
|
|
||||||
@ -23,6 +23,7 @@ IUSE="debug"
|
|||||||
|
|
||||||
RDEPEND="
|
RDEPEND="
|
||||||
app-arch/libarchive
|
app-arch/libarchive
|
||||||
|
dev-qt/qtconcurrent:5
|
||||||
dev-qt/qtcore:5
|
dev-qt/qtcore:5
|
||||||
dev-qt/qtdeclarative:5
|
dev-qt/qtdeclarative:5
|
||||||
dev-qt/qtgui:5
|
dev-qt/qtgui:5
|
||||||
@ -37,9 +38,12 @@ DEPEND="
|
|||||||
"
|
"
|
||||||
|
|
||||||
src_configure() {
|
src_configure() {
|
||||||
local mycmakeargs=(
|
local CMAKE_BUILD_TYPE
|
||||||
-DCMAKE_BUILD_TYPE=$(usex debug Debug Release)
|
if use debug; then
|
||||||
)
|
CMAKE_BUILD_TYPE="Debug"
|
||||||
|
else
|
||||||
|
CMAKE_BUILD_TYPE="Release"
|
||||||
|
fi
|
||||||
|
|
||||||
cmake_src_configure
|
cmake_src_configure
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
# Copyright 1999-2021 Gentoo Authors
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
EAPI=7
|
EAPI=8
|
||||||
|
|
||||||
inherit xdg cmake
|
inherit xdg cmake
|
||||||
|
|
||||||
@ -12,7 +12,7 @@ if [[ "${PV}" == *9999* ]]; then
|
|||||||
inherit git-r3
|
inherit git-r3
|
||||||
EGIT_REPO_URI="https://github.com/raspberrypi/${PN}.git"
|
EGIT_REPO_URI="https://github.com/raspberrypi/${PN}.git"
|
||||||
else
|
else
|
||||||
SRC_URI="https://github.com/raspberrypi/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
SRC_URI="https://github.com/raspberrypi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
KEYWORDS="~amd64"
|
KEYWORDS="~amd64"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -23,6 +23,7 @@ IUSE="debug"
|
|||||||
|
|
||||||
RDEPEND="
|
RDEPEND="
|
||||||
app-arch/libarchive
|
app-arch/libarchive
|
||||||
|
dev-qt/qtconcurrent:5
|
||||||
dev-qt/qtcore:5
|
dev-qt/qtcore:5
|
||||||
dev-qt/qtdeclarative:5
|
dev-qt/qtdeclarative:5
|
||||||
dev-qt/qtgui:5
|
dev-qt/qtgui:5
|
||||||
@ -37,9 +38,12 @@ DEPEND="
|
|||||||
"
|
"
|
||||||
|
|
||||||
src_configure() {
|
src_configure() {
|
||||||
local mycmakeargs=(
|
local CMAKE_BUILD_TYPE
|
||||||
-DCMAKE_BUILD_TYPE=$(usex debug Debug Release)
|
if use debug; then
|
||||||
)
|
CMAKE_BUILD_TYPE="Debug"
|
||||||
|
else
|
||||||
|
CMAKE_BUILD_TYPE="Release"
|
||||||
|
fi
|
||||||
|
|
||||||
cmake_src_configure
|
cmake_src_configure
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user