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 15A96158094 for ; Wed, 21 Sep 2022 04:21:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E731E0D5D; Wed, 21 Sep 2022 04:21:45 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CB5BAE0D5D for ; Wed, 21 Sep 2022 04:21:44 +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 B8A76341178 for ; Wed, 21 Sep 2022 04:21:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B9755E2 for ; Wed, 21 Sep 2022 04:21:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1663733953.af82d70a60ee02a73b67a1b6140dace646a07500.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/man-pages/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/man-pages/man-pages-5.12-r2.ebuild sys-apps/man-pages/man-pages-5.12-r3.ebuild sys-apps/man-pages/man-pages-5.13-r1.ebuild sys-apps/man-pages/man-pages-5.13-r2.ebuild sys-apps/man-pages/man-pages-6.0_rc1.ebuild sys-apps/man-pages/man-pages-9999.ebuild X-VCS-Directories: sys-apps/man-pages/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: af82d70a60ee02a73b67a1b6140dace646a07500 X-VCS-Branch: master Date: Wed, 21 Sep 2022 04:21:42 +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: 792819b0-b80a-442e-af59-4f820d08fbba X-Archives-Hash: cc5e2849d404c3c6421a8f2e36261049 commit: af82d70a60ee02a73b67a1b6140dace646a07500 Author: Sam James gentoo org> AuthorDate: Wed Sep 21 04:15:29 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 21 04:19:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af82d70a sys-apps/man-pages: add ewarn re dropped man-pages-posix This change was made to avoid conflicts for users by default (as man-pages is installed already) by way of licence. Let's make users aware of the change so they aren't taken aback by their POSIX man pages missing. Bug: https://bugs.gentoo.org/871636 Signed-off-by: Sam James gentoo.org> .../{man-pages-5.12-r2.ebuild => man-pages-5.12-r3.ebuild} | 12 ++++++++++++ .../{man-pages-5.13-r1.ebuild => man-pages-5.13-r2.ebuild} | 12 ++++++++++++ sys-apps/man-pages/man-pages-6.0_rc1.ebuild | 14 +++++++++++++- sys-apps/man-pages/man-pages-9999.ebuild | 14 +++++++++++++- 4 files changed, 50 insertions(+), 2 deletions(-) diff --git a/sys-apps/man-pages/man-pages-5.12-r2.ebuild b/sys-apps/man-pages/man-pages-5.12-r3.ebuild similarity index 84% rename from sys-apps/man-pages/man-pages-5.12-r2.ebuild rename to sys-apps/man-pages/man-pages-5.12-r3.ebuild index 4c561dc4e4ad..fc0a324bdb91 100644 --- a/sys-apps/man-pages/man-pages-5.12-r2.ebuild +++ b/sys-apps/man-pages/man-pages-5.12-r3.ebuild @@ -59,3 +59,15 @@ src_install() { doman */* dodoc README.Gentoo } + +pkg_postinst() { + for ver in ${REPLACING_VERSIONS} ; do + if ver_test ${ver} -lt 5.12-r3 ; then + # Avoid ACCEPT_LICENSE issues for users by default + # bug #871636 + ewarn "This version of ${PN} no longer depends on sys-apps/man-pages-posix!" + ewarn "Please install sys-apps/man-pages-posix yourself if needed." + break + fi + done +} diff --git a/sys-apps/man-pages/man-pages-5.13-r1.ebuild b/sys-apps/man-pages/man-pages-5.13-r2.ebuild similarity index 84% rename from sys-apps/man-pages/man-pages-5.13-r1.ebuild rename to sys-apps/man-pages/man-pages-5.13-r2.ebuild index 2d41baecac59..e42088c5e35d 100644 --- a/sys-apps/man-pages/man-pages-5.13-r1.ebuild +++ b/sys-apps/man-pages/man-pages-5.13-r2.ebuild @@ -59,3 +59,15 @@ src_install() { doman */* dodoc README.Gentoo } + +pkg_postinst() { + for ver in ${REPLACING_VERSIONS} ; do + if ver_test ${ver} -lt 5.13-r2 ; then + # Avoid ACCEPT_LICENSE issues for users by default + # bug #871636 + ewarn "This version of ${PN} no longer depends on sys-apps/man-pages-posix!" + ewarn "Please install sys-apps/man-pages-posix yourself if needed." + break + fi + done +} diff --git a/sys-apps/man-pages/man-pages-6.0_rc1.ebuild b/sys-apps/man-pages/man-pages-6.0_rc1.ebuild index b76d3df8daa8..662077f8568b 100644 --- a/sys-apps/man-pages/man-pages-6.0_rc1.ebuild +++ b/sys-apps/man-pages/man-pages-6.0_rc1.ebuild @@ -59,7 +59,7 @@ PDEPEND=" src_unpack() { default - git-r3_src_unpack + [[ ${PV} == 9999 ]] && git-r3_src_unpack } src_prepare() { @@ -80,3 +80,15 @@ src_install() { doman */* dodoc README.Gentoo } + +pkg_postinst() { + for ver in ${REPLACING_VERSIONS} ; do + if ver_test ${ver} -lt 5.13-r2 ; then + # Avoid ACCEPT_LICENSE issues for users by default + # bug #871636 + ewarn "This version of ${PN} no longer depends on sys-apps/man-pages-posix!" + ewarn "Please install sys-apps/man-pages-posix yourself if needed." + break + fi + done +} diff --git a/sys-apps/man-pages/man-pages-9999.ebuild b/sys-apps/man-pages/man-pages-9999.ebuild index b76d3df8daa8..662077f8568b 100644 --- a/sys-apps/man-pages/man-pages-9999.ebuild +++ b/sys-apps/man-pages/man-pages-9999.ebuild @@ -59,7 +59,7 @@ PDEPEND=" src_unpack() { default - git-r3_src_unpack + [[ ${PV} == 9999 ]] && git-r3_src_unpack } src_prepare() { @@ -80,3 +80,15 @@ src_install() { doman */* dodoc README.Gentoo } + +pkg_postinst() { + for ver in ${REPLACING_VERSIONS} ; do + if ver_test ${ver} -lt 5.13-r2 ; then + # Avoid ACCEPT_LICENSE issues for users by default + # bug #871636 + ewarn "This version of ${PN} no longer depends on sys-apps/man-pages-posix!" + ewarn "Please install sys-apps/man-pages-posix yourself if needed." + break + fi + done +}