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 277BD139086 for ; Fri, 23 Dec 2016 20:16:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 672C3E0BF7; Fri, 23 Dec 2016 20:16:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4416EE0BF7 for ; Fri, 23 Dec 2016 20:16:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 05BF334121E for ; Fri, 23 Dec 2016 20:16:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C320F24E6 for ; Fri, 23 Dec 2016 20:16:19 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1482523967.f82deeafdd9ec33fd478eca1d9f981a8a2124525.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/spamassassin/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/spamassassin/spamassassin-3.4.1-r10.ebuild mail-filter/spamassassin/spamassassin-3.4.1-r9.ebuild X-VCS-Directories: mail-filter/spamassassin/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: f82deeafdd9ec33fd478eca1d9f981a8a2124525 X-VCS-Branch: master Date: Fri, 23 Dec 2016 20:16:19 +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: 5f465093-51e5-4f5c-9c89-af949d96be28 X-Archives-Hash: 4956206d3502124fd88b725818ff6e97 commit: f82deeafdd9ec33fd478eca1d9f981a8a2124525 Author: Michael Orlitzky gentoo org> AuthorDate: Fri Dec 23 20:12:29 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Dec 23 20:12:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82deeaf mail-filter/spamassassin: new revision with fixed packlist. SpamAssassin, being a perl package, installs a ".packlist" file. By default that file contains paths from ${D}, our temporary installation directory. This new revision adds a call to perl_fix_packlist() from the perl-functions eclass, which replaces those incorrect paths with the correct ones on the root filesystem. Package-Manager: portage-2.3.0 ...massassin-3.4.1-r9.ebuild => spamassassin-3.4.1-r10.ebuild} | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/mail-filter/spamassassin/spamassassin-3.4.1-r9.ebuild b/mail-filter/spamassassin/spamassassin-3.4.1-r10.ebuild similarity index 93% rename from mail-filter/spamassassin/spamassassin-3.4.1-r9.ebuild rename to mail-filter/spamassassin/spamassassin-3.4.1-r10.ebuild index 44e7f29..9ba34fc 100644 --- a/mail-filter/spamassassin/spamassassin-3.4.1-r9.ebuild +++ b/mail-filter/spamassassin/spamassassin-3.4.1-r10.ebuild @@ -213,8 +213,16 @@ src_install () { update-spamassassin-rules fi - # Remove perllocal.pod to avoid file collisions (bug #603338) + # Remove perllocal.pod to avoid file collisions (bug #603338). perl_delete_localpod || die "failed to remove perllocal.pod" + + # The perl-module eclass calls three other functions to clean + # up in src_install. The first fixes references to ${D} in the + # packlist, and is useful to us, too. The other two functions, + # perl_delete_emptybsdir and perl_remove_temppath, don't seem + # to be needed: there are no empty directories, *.bs files, or + # ${D} paths remaining in our installed image. + perl_fix_packlist || die "failed to fix paths in packlist" } src_test() {