From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 83A571582EF for ; Mon, 17 Feb 2025 21:26:16 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 6ACE934314F for ; Mon, 17 Feb 2025 21:26:16 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 7415E1103A8; Mon, 17 Feb 2025 21:26:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 6B09D1103A8 for ; Mon, 17 Feb 2025 21:26:11 +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 F33B7335D7B for ; Mon, 17 Feb 2025 21:26:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F36AAF2 for ; Mon, 17 Feb 2025 21:26:09 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1739827444.c90684d75f5948ee872da4c1fa36d4b7b2c74d88.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/timezone-data/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/timezone-data/timezone-data-2025a.ebuild X-VCS-Directories: sys-libs/timezone-data/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: c90684d75f5948ee872da4c1fa36d4b7b2c74d88 X-VCS-Branch: master Date: Mon, 17 Feb 2025 21:26:09 +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: e884c8b8-e669-4e45-bf7d-87d99220479e X-Archives-Hash: 1d0296ed81b343cf877a891095ef1447 commit: c90684d75f5948ee872da4c1fa36d4b7b2c74d88 Author: Mike Gilbert gentoo org> AuthorDate: Mon Feb 17 01:48:40 2025 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Feb 17 21:24:04 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c90684d7 sys-libs/timezone-data: drop obsolete pkg_preinst Signed-off-by: Mike Gilbert gentoo.org> sys-libs/timezone-data/timezone-data-2025a.ebuild | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/sys-libs/timezone-data/timezone-data-2025a.ebuild b/sys-libs/timezone-data/timezone-data-2025a.ebuild index 5f698fb9c37b..2a4457e2c0fe 100644 --- a/sys-libs/timezone-data/timezone-data-2025a.ebuild +++ b/sys-libs/timezone-data/timezone-data-2025a.ebuild @@ -118,20 +118,6 @@ get_TIMEZONE() { [[ -z ${tz} ]] && return 1 || echo "${tz}" } -pkg_preinst() { - local tz=$(get_TIMEZONE) - if [[ ${tz} == right/* || ${tz} == posix/* ]] ; then - eerror "The right & posix subdirs are no longer installed as subdirs -- they have been" - eerror "relocated to match upstream paths as sibling paths. Further, posix/xxx is the" - eerror "same as xxx, so you should simply drop the posix/ prefix. You also should not" - eerror "be using right/xxx for the system timezone as it breaks programs." - die "Please fix your timezone setting" - fi - - # Trim the symlink by hand to avoid portage's automatic protection checks. - rm -f "${EROOT}"/usr/share/zoneinfo/posix -} - configure_tz_data() { # Make sure the /etc/localtime file does not get stale, bug #127899 local tz src="${EROOT}/etc/timezone" etc_lt="${EROOT}/etc/localtime"