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 22D87158094 for ; Wed, 3 Aug 2022 21:53:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DBADE0DBE; Wed, 3 Aug 2022 21:53:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 2A0CEE0DBE for ; Wed, 3 Aug 2022 21:53:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 05E7B33BF36 for ; Wed, 3 Aug 2022 21:53:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B121526 for ; Wed, 3 Aug 2022 21:53:53 +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: <1659563621.137b645237ba9852530fae57d691114dccb37782.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/libmilter/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/libmilter/libmilter-1.0.2_p3-r1.ebuild mail-filter/libmilter/libmilter-1.0.2_p3.ebuild X-VCS-Directories: mail-filter/libmilter/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 137b645237ba9852530fae57d691114dccb37782 X-VCS-Branch: master Date: Wed, 3 Aug 2022 21:53:53 +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: 862a2bed-eb99-4833-ac29-8fab29ef867f X-Archives-Hash: d3fd3d2e65c4b2aa6f8c87a9bcc06349 commit: 137b645237ba9852530fae57d691114dccb37782 Author: Sam James gentoo org> AuthorDate: Wed Aug 3 21:52:40 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Aug 3 21:53:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=137b6452 mail-filter/libmilter: change subslot to ${PV} instead given ABI instability I don't think libmilter preserves ABI stability even between sendmail releases always. Closes: https://bugs.gentoo.org/862642 Closes: https://bugs.gentoo.org/863407 Closes: https://bugs.gentoo.org/863455 Signed-off-by: Sam James gentoo.org> ...libmilter-1.0.2_p3.ebuild => libmilter-1.0.2_p3-r1.ebuild} | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/mail-filter/libmilter/libmilter-1.0.2_p3.ebuild b/mail-filter/libmilter/libmilter-1.0.2_p3-r1.ebuild similarity index 92% rename from mail-filter/libmilter/libmilter-1.0.2_p3.ebuild rename to mail-filter/libmilter/libmilter-1.0.2_p3-r1.ebuild index a05a48af28ef..7fd66707b940 100644 --- a/mail-filter/libmilter/libmilter-1.0.2_p3.ebuild +++ b/mail-filter/libmilter/libmilter-1.0.2_p3-r1.ebuild @@ -29,11 +29,12 @@ fi S="${WORKDIR}/sendmail-${SENDMAIL_VER}" LICENSE="Sendmail" -# We increment _pN when a new sendmail tarball comes out -# We change the actual "main version" (1.0.2 at time of writing) when the version -# of libmilter included in the tarball changes. But there seems to be ABI -# stability between sendmail versions. -SLOT="0/$(ver_cut 1-3)" +# We increment _pN when a new sendmail tarball comes out and change the actual +# "main version" (1.0.2 at time of writing) when the version +# of libmilter included in the tarball changes. +# We used to use $(ver_cut 1-3) here (assuming ABI stability between sendmail +# versions) but that doesn't seem to apply for sendmail snapshots. +SLOT="0/${PV}" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" IUSE="ipv6 poll"