public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/raspberrypi-utils/
@ 2024-01-14 14:57 James Le Cuirot
  0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2024-01-14 14:57 UTC (permalink / raw
  To: gentoo-commits

commit:     c3172402ee77d82ed5b9180ebaa5c43b7516aefc
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 14 14:18:46 2024 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Jan 14 14:56:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3172402

dev-embedded/raspberrypi-utils: New package

This replaces media-libs/raspberrypi-userland(-bin), which is being last-rited.
The libraries are no longer maintained, but the utilities live on here.

Bug: https://bugs.gentoo.org/916953
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 dev-embedded/raspberrypi-utils/Manifest            |  1 +
 dev-embedded/raspberrypi-utils/metadata.xml        | 11 ++++++
 .../raspberrypi-utils-0_p20240112.ebuild           | 39 ++++++++++++++++++++++
 3 files changed, 51 insertions(+)

diff --git a/dev-embedded/raspberrypi-utils/Manifest b/dev-embedded/raspberrypi-utils/Manifest
new file mode 100644
index 000000000000..415e4b801a0e
--- /dev/null
+++ b/dev-embedded/raspberrypi-utils/Manifest
@@ -0,0 +1 @@
+DIST raspberrypi-utils-0_p20240112.tar.gz 122544 BLAKE2B ccdd25aca03b3a09d1d6a6007a80b3615ec8bc5fabcb7e5b7fedd09d68f992e587e90bf4fa36b7131090438fbd8706f7184d70018aadad05a1a9d897282d6c0f SHA512 6d3aa77499ef88ffc33b364267021822c64554ccf9226537e862ceed52cdf3557ec42a45be3618ca2828dfe0cddb901a09f0cddf7fa07946536713996f6b2cc0

diff --git a/dev-embedded/raspberrypi-utils/metadata.xml b/dev-embedded/raspberrypi-utils/metadata.xml
new file mode 100644
index 000000000000..11b4d811a352
--- /dev/null
+++ b/dev-embedded/raspberrypi-utils/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>chewi@gentoo.org</email>
+		<name>James Le Cuirot</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">raspberrypi/utils</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240112.ebuild b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240112.ebuild
new file mode 100644
index 000000000000..9628a77098f0
--- /dev/null
+++ b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240112.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit bash-completion-r1 cmake
+
+COMMIT="193e6e34b40807cbeedee2e4abc3ef5165e14ae2"
+
+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"
+
+RDEPEND="
+	!media-libs/raspberrypi-userland
+	!media-libs/raspberrypi-userland-bin
+"
+
+S="${WORKDIR}/utils-${COMMIT}"
+
+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
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/raspberrypi-utils/
@ 2024-01-16 21:54 James Le Cuirot
  0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2024-01-16 21:54 UTC (permalink / raw
  To: gentoo-commits

commit:     d68f150f4fcafe60e3264ef62651e74d41f4067e
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 16 21:49:49 2024 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Jan 16 21:53:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d68f150f

dev-embedded/raspberrypi-utils: Bump, add sys-apps/dtc dependency

Closes: https://bugs.gentoo.org/922172
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 dev-embedded/raspberrypi-utils/Manifest                            | 2 +-
 ...ils-0_p20240112.ebuild => raspberrypi-utils-0_p20240115.ebuild} | 7 ++++++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/dev-embedded/raspberrypi-utils/Manifest b/dev-embedded/raspberrypi-utils/Manifest
index 415e4b801a0e..a9b0fbeb7c53 100644
--- a/dev-embedded/raspberrypi-utils/Manifest
+++ b/dev-embedded/raspberrypi-utils/Manifest
@@ -1 +1 @@
-DIST raspberrypi-utils-0_p20240112.tar.gz 122544 BLAKE2B ccdd25aca03b3a09d1d6a6007a80b3615ec8bc5fabcb7e5b7fedd09d68f992e587e90bf4fa36b7131090438fbd8706f7184d70018aadad05a1a9d897282d6c0f SHA512 6d3aa77499ef88ffc33b364267021822c64554ccf9226537e862ceed52cdf3557ec42a45be3618ca2828dfe0cddb901a09f0cddf7fa07946536713996f6b2cc0
+DIST raspberrypi-utils-0_p20240115.tar.gz 122554 BLAKE2B 94c101a50a422f265b2ea87ab33d802f21b21c57b8693a7bdc407460ec6e230da390d9f8d3e5541cb7145c55a7c53766cb8fb36c565006b1ec371090a6a4777b SHA512 b411242a1f5055a6075ea487fa746ee2cdbf31eff61f115cf11c97efa57d0245feb30c786c7c1164c174828da774a5cf4a4792d9ae46518e1c43510f120e5c43

diff --git a/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240112.ebuild b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240115.ebuild
similarity index 90%
rename from dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240112.ebuild
rename to dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240115.ebuild
index 9628a77098f0..6f84f4cb186c 100644
--- a/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240112.ebuild
+++ b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240115.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 inherit bash-completion-r1 cmake
 
-COMMIT="193e6e34b40807cbeedee2e4abc3ef5165e14ae2"
+COMMIT="32602f565c6cb854d1f2643b51a022991cea2b1b"
 
 DESCRIPTION="Raspberry Pi userspace utilities"
 HOMEPAGE="https://github.com/raspberrypi/utils"
@@ -15,7 +15,12 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~arm ~arm64"
 
+DEPEND="
+	sys-apps/dtc
+"
+
 RDEPEND="
+	${DEPEND}
 	!media-libs/raspberrypi-userland
 	!media-libs/raspberrypi-userland-bin
 "


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/raspberrypi-utils/
@ 2024-02-06 21:43 James Le Cuirot
  0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2024-02-06 21:43 UTC (permalink / raw
  To: gentoo-commits

commit:     6b2df8daf9c1a7fce0471a0dd506c8468216c9b5
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  6 21:43:24 2024 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Feb  6 21:43:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b2df8da

dev-embedded/raspberrypi-utils: Bump to 20240203, drop old 20240115

This fixes a current -Werror failure. I have also submitted a patch upstream to
drop -Werror.

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 dev-embedded/raspberrypi-utils/Manifest                                 | 2 +-
 ...pi-utils-0_p20240115.ebuild => raspberrypi-utils-0_p20240203.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-embedded/raspberrypi-utils/Manifest b/dev-embedded/raspberrypi-utils/Manifest
index a9b0fbeb7c53..24632d7cb267 100644
--- a/dev-embedded/raspberrypi-utils/Manifest
+++ b/dev-embedded/raspberrypi-utils/Manifest
@@ -1 +1 @@
-DIST raspberrypi-utils-0_p20240115.tar.gz 122554 BLAKE2B 94c101a50a422f265b2ea87ab33d802f21b21c57b8693a7bdc407460ec6e230da390d9f8d3e5541cb7145c55a7c53766cb8fb36c565006b1ec371090a6a4777b SHA512 b411242a1f5055a6075ea487fa746ee2cdbf31eff61f115cf11c97efa57d0245feb30c786c7c1164c174828da774a5cf4a4792d9ae46518e1c43510f120e5c43
+DIST raspberrypi-utils-0_p20240203.tar.gz 122695 BLAKE2B 178b84b5210ba47a51e9815710b05d3916981f5413986cefcdb621420c9e9ab33b67026ea95692c6aff900dd2c31302059eb39aae32267b88cf765a7575f8bed SHA512 bdbe47d87a4bcd0d37ea4567e95e41fbc8240f5ffbc805d4a1f576060535af13e272b262ddad87dac0f9ea43b8b2ff9092378e67de080bd651701435b4c67008

diff --git a/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240115.ebuild b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240203.ebuild
similarity index 94%
rename from dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240115.ebuild
rename to dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240203.ebuild
index 6f84f4cb186c..1c13aaaa6bdb 100644
--- a/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240115.ebuild
+++ b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240203.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 inherit bash-completion-r1 cmake
 
-COMMIT="32602f565c6cb854d1f2643b51a022991cea2b1b"
+COMMIT="1eb8c20dfa258c549139fae2b21185ac290051c5"
 
 DESCRIPTION="Raspberry Pi userspace utilities"
 HOMEPAGE="https://github.com/raspberrypi/utils"


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/raspberrypi-utils/
@ 2024-09-09 21:14 James Le Cuirot
  0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2024-09-09 21:14 UTC (permalink / raw
  To: gentoo-commits

commit:     70f8c529e4a0639786ebcaec3dc15a6a18e94eb0
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  9 21:09:41 2024 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Mon Sep  9 21:14:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70f8c529

dev-embedded/raspberrypi-utils: Bump snapshot to 20240903

Fixes LTO issue.

Bug: https://bugs.gentoo.org/926264
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 dev-embedded/raspberrypi-utils/Manifest            |  1 +
 .../raspberrypi-utils-0_p20240903.ebuild           | 47 ++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-embedded/raspberrypi-utils/Manifest b/dev-embedded/raspberrypi-utils/Manifest
index 24632d7cb267..e5914f26e539 100644
--- a/dev-embedded/raspberrypi-utils/Manifest
+++ b/dev-embedded/raspberrypi-utils/Manifest
@@ -1 +1,2 @@
 DIST raspberrypi-utils-0_p20240203.tar.gz 122695 BLAKE2B 178b84b5210ba47a51e9815710b05d3916981f5413986cefcdb621420c9e9ab33b67026ea95692c6aff900dd2c31302059eb39aae32267b88cf765a7575f8bed SHA512 bdbe47d87a4bcd0d37ea4567e95e41fbc8240f5ffbc805d4a1f576060535af13e272b262ddad87dac0f9ea43b8b2ff9092378e67de080bd651701435b4c67008
+DIST raspberrypi-utils-0_p20240903.tar.gz 123998 BLAKE2B 4281fee7761df03b3a555d5e36f4bec1621c8402a5d5456752ab2d95482ca355e51d174f461ed8a1f89ed5d420a14d5f09872c090eccff6751d0c00ab20cf398 SHA512 96504004a1b7b541fe126d973f60321769a4b54a1b603b1d9278ba902bed7c008c2f86906dfaf30632ce75e1073b2a97e9317a799a0bc8cea255d713cb26ae67

diff --git a/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240903.ebuild b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240903.ebuild
new file mode 100644
index 000000000000..0ede982eed41
--- /dev/null
+++ b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240903.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit bash-completion-r1 cmake
+
+COMMIT="d4f8fb543a892ba65bfc608511bf582c0425aa81"
+
+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"
+S="${WORKDIR}/utils-${COMMIT}"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~arm ~arm64"
+
+DEPEND="
+	sys-apps/dtc
+"
+
+RDEPEND="
+	${DEPEND}
+	dev-lang/perl
+	!media-libs/raspberrypi-userland
+	!media-libs/raspberrypi-userland-bin
+"
+
+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
+}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/raspberrypi-utils/
@ 2024-10-18 17:32 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-10-18 17:32 UTC (permalink / raw
  To: gentoo-commits

commit:     624504863a774b7b3c85608ed84bc497479ff015
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 18 17:32:39 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 18 17:32:39 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62450486

dev-embedded/raspberrypi-utils: Stabilize 0_p20240903 arm64, #941547

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240903.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240903.ebuild b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240903.ebuild
index 9291925aefa5..db275d3a95af 100644
--- a/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240903.ebuild
+++ b/dev-embedded/raspberrypi-utils/raspberrypi-utils-0_p20240903.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/raspberrypi/utils/archive/${COMMIT}.tar.gz -> ${P}.t
 S="${WORKDIR}/utils-${COMMIT}"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="arm ~arm64"
+KEYWORDS="arm arm64"
 
 DEPEND="
 	sys-apps/dtc


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/raspberrypi-utils/
@ 2024-10-19 21:45 James Le Cuirot
  0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2024-10-19 21:45 UTC (permalink / raw
  To: gentoo-commits

commit:     643f24ce7de9d74b391b66f469b15dbdbf11b515
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 19 21:44:25 2024 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Oct 19 21:44:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=643f24ce

dev-embedded/raspberrypi-utils: Drop old 0_p20240203

Closes: https://bugs.gentoo.org/926264
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 dev-embedded/raspberrypi-utils/Manifest            |  1 -
 .../raspberrypi-utils-0_p20240203.ebuild           | 48 ----------------------
 2 files changed, 49 deletions(-)

diff --git a/dev-embedded/raspberrypi-utils/Manifest b/dev-embedded/raspberrypi-utils/Manifest
index e5914f26e539..414ad02d47a1 100644
--- a/dev-embedded/raspberrypi-utils/Manifest
+++ b/dev-embedded/raspberrypi-utils/Manifest
@@ -1,2 +1 @@
-DIST raspberrypi-utils-0_p20240203.tar.gz 122695 BLAKE2B 178b84b5210ba47a51e9815710b05d3916981f5413986cefcdb621420c9e9ab33b67026ea95692c6aff900dd2c31302059eb39aae32267b88cf765a7575f8bed SHA512 bdbe47d87a4bcd0d37ea4567e95e41fbc8240f5ffbc805d4a1f576060535af13e272b262ddad87dac0f9ea43b8b2ff9092378e67de080bd651701435b4c67008
 DIST raspberrypi-utils-0_p20240903.tar.gz 123998 BLAKE2B 4281fee7761df03b3a555d5e36f4bec1621c8402a5d5456752ab2d95482ca355e51d174f461ed8a1f89ed5d420a14d5f09872c090eccff6751d0c00ab20cf398 SHA512 96504004a1b7b541fe126d973f60321769a4b54a1b603b1d9278ba902bed7c008c2f86906dfaf30632ce75e1073b2a97e9317a799a0bc8cea255d713cb26ae67

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
-}


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-10-19 21:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-14 14:57 [gentoo-commits] repo/gentoo:master commit in: dev-embedded/raspberrypi-utils/ James Le Cuirot
  -- strict thread matches above, loose matches on Subject: below --
2024-01-16 21:54 James Le Cuirot
2024-02-06 21:43 James Le Cuirot
2024-09-09 21:14 James Le Cuirot
2024-10-18 17:32 Arthur Zamarin
2024-10-19 21:45 James Le Cuirot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox