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 2953D138330 for ; Wed, 28 Sep 2016 05:43:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88727E085C; Wed, 28 Sep 2016 05:43:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 644BFE085C for ; Wed, 28 Sep 2016 05:43:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 75A0C3407D0 for ; Wed, 28 Sep 2016 05:43:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A9C62480 for ; Wed, 28 Sep 2016 05:43:49 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1475041425.05f453771a206d4a2ecfedc5e670ec07ea68a6ab.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/readline/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/readline/readline-7.0.ebuild X-VCS-Directories: sys-libs/readline/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 05f453771a206d4a2ecfedc5e670ec07ea68a6ab X-VCS-Branch: master Date: Wed, 28 Sep 2016 05:43:49 +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-Archives-Salt: 85dbe817-8eff-4360-9f71-6b6fe9068057 X-Archives-Hash: c3937f6929759f9c389b843fb202548d commit: 05f453771a206d4a2ecfedc5e670ec07ea68a6ab Author: Lars Wendler gentoo org> AuthorDate: Wed Sep 28 05:41:01 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Sep 28 05:43:45 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05f45377 sys-libs/readline: Re-added preserve_old_lib for bug #595324. Package-Manager: portage-2.3.1 Signed-off-by: Lars Wendler gentoo.org> sys-libs/readline/readline-7.0.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sys-libs/readline/readline-7.0.ebuild b/sys-libs/readline/readline-7.0.ebuild index d504052..56fddcb 100644 --- a/sys-libs/readline/readline-7.0.ebuild +++ b/sys-libs/readline/readline-7.0.ebuild @@ -151,3 +151,12 @@ multilib_src_install_all() { docinto ps dodoc doc/*.ps } +pkg_preinst() { + # bug #29865 + # Reappeared in #595324 with paludis so keeping this for now... + preserve_old_lib /$(get_libdir)/lib{history,readline}.so.{4,5,6} +} + +pkg_postinst() { + preserve_old_lib_notify /$(get_libdir)/lib{history,readline}.so.{4,5,6} +}