From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 05F8115813A for ; Fri, 10 Jan 2025 20:48:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19B5CE0802; Fri, 10 Jan 2025 20:48:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D19BBE0802 for ; Fri, 10 Jan 2025 20:48:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EAB4D342F8D for ; Fri, 10 Jan 2025 20:48:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84F27917 for ; Fri, 10 Jan 2025 20:47:59 +0000 (UTC) From: "Jason A. Donenfeld" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason A. Donenfeld" Message-ID: <1736542053.070b02f7823b52f5b98a20d14441feddb358b218.zx2c4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/clockphoto/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/clockphoto/clockphoto-1.2-r1.ebuild X-VCS-Directories: media-gfx/clockphoto/ X-VCS-Committer: zx2c4 X-VCS-Committer-Name: Jason A. Donenfeld X-VCS-Revision: 070b02f7823b52f5b98a20d14441feddb358b218 X-VCS-Branch: master Date: Fri, 10 Jan 2025 20:47:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fecba240-44fe-4459-bbd8-58a455591b46 X-Archives-Hash: d665a434469dc095b107bcf606941d83 commit: 070b02f7823b52f5b98a20d14441feddb358b218 Author: Jason A. Donenfeld gentoo org> AuthorDate: Fri Jan 10 02:01:03 2025 +0000 Commit: Jason A. Donenfeld gentoo org> CommitDate: Fri Jan 10 20:47:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=070b02f7 media-gfx/clockphoto: update deps for qt6 Signed-off-by: Jason A. Donenfeld gentoo.org> media-gfx/clockphoto/clockphoto-1.2-r1.ebuild | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/media-gfx/clockphoto/clockphoto-1.2-r1.ebuild b/media-gfx/clockphoto/clockphoto-1.2-r1.ebuild new file mode 100644 index 000000000000..609fa4a2539f --- /dev/null +++ b/media-gfx/clockphoto/clockphoto-1.2-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qmake-utils + +DESCRIPTION="Adjusts photo timestamps based on clock photos" +HOMEPAGE="https://git.zx2c4.com/clockphoto/about/" +SRC_URI="https://git.zx2c4.com/clockphoto/snapshot/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-qt/qtbase:6[gui,widgets] +" +RDEPEND="${DEPEND} + media-gfx/exiv2 +" + +src_configure() { + eqmake6 +} + +src_install() { + dobin clockphoto +}