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 9ADF715ACFB for ; Mon, 10 Apr 2023 13:20:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 995C7E0863; Mon, 10 Apr 2023 13:20:10 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A126E0863 for ; Mon, 10 Apr 2023 13:20:10 +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 5560C335D72 for ; Mon, 10 Apr 2023 13:20:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82B64920 for ; Mon, 10 Apr 2023 13:20:07 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1681132799.86f76904c98b70ae6cd5d78717e0306d27c1c9b0.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/minetest/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/minetest/minetest-5.7.0-r1.ebuild games-action/minetest/minetest-5.7.0-r2.ebuild X-VCS-Directories: games-action/minetest/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 86f76904c98b70ae6cd5d78717e0306d27c1c9b0 X-VCS-Branch: master Date: Mon, 10 Apr 2023 13:20:07 +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: 56735359-6dff-46d2-8c53-f14a55bbce15 X-Archives-Hash: 0ba630f186f478e39b1007fcd790b47d commit: 86f76904c98b70ae6cd5d78717e0306d27c1c9b0 Author: Marek Szuba gentoo org> AuthorDate: Mon Apr 10 13:18:01 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Mon Apr 10 13:19:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86f76904 games-action/minetest: disable upstream update checker for new configs User with existing ~/.minetest/minetest.conf have to change this by hand so the ebuild provides instructions for how to do it. Suggested-by: Jaak Ristioja ristioja.ee> Closes: https://bugs.gentoo.org/904122 Signed-off-by: Marek Szuba gentoo.org> .../{minetest-5.7.0-r1.ebuild => minetest-5.7.0-r2.ebuild} | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/games-action/minetest/minetest-5.7.0-r1.ebuild b/games-action/minetest/minetest-5.7.0-r2.ebuild similarity index 87% rename from games-action/minetest/minetest-5.7.0-r1.ebuild rename to games-action/minetest/minetest-5.7.0-r2.ebuild index 6e2aecdf7ed8..c34a0a5a97d6 100644 --- a/games-action/minetest/minetest-5.7.0-r1.ebuild +++ b/games-action/minetest/minetest-5.7.0-r2.ebuild @@ -99,6 +99,7 @@ src_configure() { -DENABLE_SOUND=$(usex sound) -DENABLE_SYSTEM_GMP=1 -DENABLE_SYSTEM_JSONCPP=1 + -DENABLE_UPDATE_CHECKER=no -DRUN_IN_PLACE=0 ) @@ -138,4 +139,13 @@ src_install() { pkg_postinst() { xdg_pkg_postinst + + elog "Since 5.7.0-r2 new ${PN} configurations no longer check if newer versions are available upstream," + elog "a feature unnecessary when ${PN} is installed using distro packages." + elog "To disable this check for existing configurations open the file ~/.minetest/minetest.conf" + elog "in a text editor while ${PN} is not running, locate the keyword 'update_last_checked'," + elog "and change that line to say:" + elog + elog " update_last_checked = disabled" + elog }