public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Petr Vaněk" <arkamar@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-mobilephone/heimdall/
Date: Mon, 26 May 2025 19:08:55 +0000 (UTC)	[thread overview]
Message-ID: <1748286337.6ac5b5b77bf8cebd53c5da4de339b1f09c53bc34.arkamar@gentoo> (raw)

commit:     6ac5b5b77bf8cebd53c5da4de339b1f09c53bc34
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Mon May 26 19:04:36 2025 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Mon May 26 19:05:37 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ac5b5b7

app-mobilephone/heimdall: add 2.2.2

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 app-mobilephone/heimdall/Manifest              |  1 +
 app-mobilephone/heimdall/heimdall-2.2.2.ebuild | 58 ++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/app-mobilephone/heimdall/Manifest b/app-mobilephone/heimdall/Manifest
index 083bff38afd0..298c5fe1ab4d 100644
--- a/app-mobilephone/heimdall/Manifest
+++ b/app-mobilephone/heimdall/Manifest
@@ -1,3 +1,4 @@
 DIST heimdall-2.1.0.tar.gz 69505 BLAKE2B b35b53d705cc3e6db4041e5941aefaf86217ea920fd26ed9a861eb5b8f94a8f3d5babbdfcf430a85a01e6b5130e381d95720062d1955abf63f83db1ba3e87c5c SHA512 75c58cdfaa183e1a8a73127875f716cf168da3a109eefafc7bf1fe9573b9d716da23ff15d0df93474568a678a1b38e71611c745b688c3bc024e70672d921fdd6
 DIST heimdall-2.1.1.tar.gz 68067 BLAKE2B be3fff2b32b1c710a079ebc9a5eca00b30eab881ca02f55176c3f32af50801ec7e02e79a06efb1877782497bc62d28129a413cdfc39f4ea0646556ee6b8be6a7 SHA512 a388b8f3fbf75b46aa3a1b61016c08cfc1c8d4ad6a68e690ddce9424cc4df22500922604f5891f471dddae16034a30e610432fa5d4023fd398bf7a798215a5eb
 DIST heimdall-2.2.1.tar.gz 68068 BLAKE2B 2a714831ba599786102f2f24493b07c2156555c042635c5d41171b7343ff94f05f638ae88bea908319ec86508e194b98e0d3c3dec44d5498f6de86abaccb5efb SHA512 48566f8064c9b187e4ba179840d824439ed27aaf9a66572223b02ac228054bd78561ad263333aa4ee6c53375939f64ec53c67a7286d3f75cb271e7a0017886a9
+DIST heimdall-2.2.2.tar.gz 68059 BLAKE2B 946959db1819581856f570aa9a114849f0dc20e12639847a63a28c3ea5752a57e5f50a57dd53c7c7ac005542eba4e496d766f2e185c66013d62d803c69a2172d SHA512 75c3614b1c7dcbcd5537a308ddd3e2adb97024c7d9572ad2a9187ff50f516209995cf9ab65efa9dd282b925687af70a61298cf0e07b5dca333b589e37b2a14e3

diff --git a/app-mobilephone/heimdall/heimdall-2.2.2.ebuild b/app-mobilephone/heimdall/heimdall-2.2.2.ebuild
new file mode 100644
index 000000000000..3173c55b29fd
--- /dev/null
+++ b/app-mobilephone/heimdall/heimdall-2.2.2.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake udev
+
+DESCRIPTION="Tool suite used to flash firmware onto Samsung devices"
+HOMEPAGE="
+	https://git.sr.ht/~grimler/Heimdall
+	https://glassechidna.com.au/heimdall/
+	https://github.com/Benjamin-Dobell/Heimdall
+"
+
+if [[ ${PV} != 9999 ]]; then
+	SRC_URI="https://git.sr.ht/~grimler/Heimdall/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	S="${WORKDIR}/Heimdall-v${PV}"
+
+	KEYWORDS="~amd64 ~arm64"
+else
+	inherit git-r3
+	EGIT_REPO_URI="https://git.sr.ht/~grimler/Heimdall"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="gui"
+
+RDEPEND="
+	sys-libs/zlib
+	virtual/libusb:1=
+	gui? (
+		dev-qt/qtbase:6[gui,widgets]
+	)"
+
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+	local mycmakeargs=(
+		-DDISABLE_FRONTEND=$(usex !gui)
+	)
+	cmake_src_configure
+}
+
+src_install() {
+	cmake_src_install
+
+	udev_dorules heimdall/60-heimdall.rules
+}
+
+pkg_postinst() {
+	udev_reload
+}
+
+pkg_postrm() {
+	udev_reload
+}


             reply	other threads:[~2025-05-26 19:08 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-26 19:08 Petr Vaněk [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-06-07 15:50 [gentoo-commits] repo/gentoo:master commit in: app-mobilephone/heimdall/ Andreas Sturmlechner
2025-06-07 14:46 Sam James
2025-05-14 20:56 Petr Vaněk
2025-05-14 20:56 Petr Vaněk
2025-05-14 13:20 Petr Vaněk
2024-10-22 13:53 Petr Vaněk
2024-09-27  8:29 Arthur Zamarin
2024-08-28  6:56 Petr Vaněk
2024-08-27 21:04 Sam James
2024-08-27 15:08 Petr Vaněk
2024-08-27 15:08 Petr Vaněk
2024-04-05 15:27 Arthur Zamarin
2023-09-18 16:39 Joonas Niilola
2023-09-18 16:39 Joonas Niilola
2023-09-18 16:39 Joonas Niilola
2022-12-18 10:41 Sam James
2022-08-14 20:06 Sam James
2022-05-26 12:58 Joonas Niilola
2022-05-26 12:58 Joonas Niilola
2022-05-26 12:58 Joonas Niilola
2022-05-26 12:58 Joonas Niilola
2022-05-26 12:58 Joonas Niilola
2022-05-10 20:06 Arthur Zamarin
2021-04-22 20:15 Sam James
2021-03-23 12:32 Joonas Niilola
2021-02-14 19:04 Andreas Sturmlechner
2020-01-20 11:51 Agostino Sarubbo
2019-12-23 13:08 Lars Wendler
2019-04-21  1:28 Lars Wendler
2018-07-10 12:41 Lars Wendler
2018-02-20 10:30 Lars Wendler
2018-01-09 13:17 Lars Wendler
2017-07-30  8:47 Michał Górny
2017-05-15 14:23 Lars Wendler
2016-01-14 10:11 Lars Wendler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1748286337.6ac5b5b77bf8cebd53c5da4de339b1f09c53bc34.arkamar@gentoo \
    --to=arkamar@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox