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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ED00E158064 for ; Wed, 1 May 2024 21:40:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 317F8E2AB5; Wed, 1 May 2024 21:40:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C540E2AB5 for ; Wed, 1 May 2024 21:40:21 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3CDF433BE32 for ; Wed, 1 May 2024 21:40:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 832D31767 for ; Wed, 1 May 2024 21:40:18 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1714599587.464c6025f0303dfa6e7bd4fc4583f8d3f59b544e.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-fps/gzdoom/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-fps/gzdoom/gzdoom-4.12.2.ebuild X-VCS-Directories: games-fps/gzdoom/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 464c6025f0303dfa6e7bd4fc4583f8d3f59b544e X-VCS-Branch: master Date: Wed, 1 May 2024 21:40:18 +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: 29ed8956-2085-4e54-8575-c84581171d2a X-Archives-Hash: 56b1fb6c8e36c1efa9f62c3d0d805522 commit: 464c6025f0303dfa6e7bd4fc4583f8d3f59b544e Author: James Le Cuirot gentoo org> AuthorDate: Wed May 1 21:39:20 2024 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Wed May 1 21:39:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=464c6025 games-fps/gzdoom: Move S, die for gitinfo.h Signed-off-by: James Le Cuirot gentoo.org> games-fps/gzdoom/gzdoom-4.12.2.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/games-fps/gzdoom/gzdoom-4.12.2.ebuild b/games-fps/gzdoom/gzdoom-4.12.2.ebuild index dcb9477e00de..b308fb3d0b50 100644 --- a/games-fps/gzdoom/gzdoom-4.12.2.ebuild +++ b/games-fps/gzdoom/gzdoom-4.12.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -8,6 +8,7 @@ inherit cmake desktop xdg flag-o-matic DESCRIPTION="A modder-friendly OpenGL source port based on the DOOM engine" HOMEPAGE="https://zdoom.org" SRC_URI="https://github.com/coelckers/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-g${PV}" LICENSE="Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT non-free? ( Activision ChexQuest3 DOOM-COLLECTORS-EDITION freedist WidePix )" @@ -27,8 +28,6 @@ DEPEND=" gtk? ( x11-libs/gtk+:3 )" RDEPEND="${DEPEND}" -S="${WORKDIR}/${PN}-g${PV}" - PATCHES=( "${FILESDIR}"/${PN}-4.7.1-Introduce-the-BUILD_NONFREE-option.patch ) @@ -48,7 +47,7 @@ src_prepare() { echo "#define GIT_DESCRIPTION \"g${PV}\"" echo "#define GIT_HASH \"0\"" echo "#define GIT_TIME \"\"" - } > "${S}/src/gitinfo.h" + } > "${S}/src/gitinfo.h" || die cmake_src_prepare }