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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C78C9138359 for ; Sun, 9 Aug 2020 07:14:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01CF2E08E8; Sun, 9 Aug 2020 07:14:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DCE30E08E8 for ; Sun, 9 Aug 2020 07:14:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 722D134F369 for ; Sun, 9 Aug 2020 07:14:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D47B12CE for ; Sun, 9 Aug 2020 07:14:15 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1596957236.924742c75fda580701838e7af38d6a7af0db6da3.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/notmuch/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/notmuch/notmuch-0.30-r1.ebuild net-mail/notmuch/notmuch-0.30.ebuild X-VCS-Directories: net-mail/notmuch/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 924742c75fda580701838e7af38d6a7af0db6da3 X-VCS-Branch: master Date: Sun, 9 Aug 2020 07:14:15 +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: c2accc54-81f6-4a4c-882e-4825bda38f94 X-Archives-Hash: 92faabedd9e958aa354f17058ae41a1b commit: 924742c75fda580701838e7af38d6a7af0db6da3 Author: Joonas Niilola gentoo org> AuthorDate: Sun Aug 9 06:44:39 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun Aug 9 07:13:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=924742c7 net-mail/notmuch: install deprecated python bindings on 0.30 - There are still some packages in ::gentoo repo that depend on the deprecated 'notmuch' python modules. As other major distributions still provide these bindings, we should enable them too and give some extra time for other upstreams to update into using 'notmuch2'. Closes: https://bugs.gentoo.org/736204 Signed-off-by: Joonas Niilola gentoo.org> net-mail/notmuch/{notmuch-0.30.ebuild => notmuch-0.30-r1.ebuild} | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/net-mail/notmuch/notmuch-0.30.ebuild b/net-mail/notmuch/notmuch-0.30-r1.ebuild similarity index 97% rename from net-mail/notmuch/notmuch-0.30.ebuild rename to net-mail/notmuch/notmuch-0.30-r1.ebuild index 9ef69706432..2806d20a9ff 100644 --- a/net-mail/notmuch/notmuch-0.30.ebuild +++ b/net-mail/notmuch/notmuch-0.30-r1.ebuild @@ -87,6 +87,12 @@ bindings() { ${@} rc=${?} popd || die + + # Old deprecated bindings, #736204 + pushd bindings/python || die + ${@} + rc=${?} + popd || die fi return ${rc} }