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 19244138334 for ; Tue, 17 Jul 2018 13:29:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A6A7E09C0; Tue, 17 Jul 2018 13:29:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E5E67E09C0 for ; Tue, 17 Jul 2018 13:29:50 +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 963CE335C71 for ; Tue, 17 Jul 2018 13:29:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13DF5379 for ; Tue, 17 Jul 2018 13:29:47 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1531834181.9bd3a6af8d7a63ee6b3b8ff5f4c943c9c978e0ce.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/scmail/, mail-filter/scmail/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/scmail/files/scmail-undefined-reference.patch mail-filter/scmail/scmail-1.3.ebuild X-VCS-Directories: mail-filter/scmail/ mail-filter/scmail/files/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 9bd3a6af8d7a63ee6b3b8ff5f4c943c9c978e0ce X-VCS-Branch: master Date: Tue, 17 Jul 2018 13:29:47 +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: cf1550d6-988a-4441-8722-1a0d80dc3799 X-Archives-Hash: d266cfb78cc656056cdded2a1298c2eb commit: 9bd3a6af8d7a63ee6b3b8ff5f4c943c9c978e0ce Author: Akinori Hattori gentoo org> AuthorDate: Tue Jul 17 13:25:18 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Tue Jul 17 13:29:41 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd3a6af mail-filter/scmail: fix undefined reference Package-Manager: Portage-2.3.40, Repoman-2.3.9 .../scmail/files/scmail-undefined-reference.patch | 51 ++++++++++++++++++++++ mail-filter/scmail/scmail-1.3.ebuild | 1 + 2 files changed, 52 insertions(+) diff --git a/mail-filter/scmail/files/scmail-undefined-reference.patch b/mail-filter/scmail/files/scmail-undefined-reference.patch new file mode 100644 index 00000000000..5059ef4b1fd --- /dev/null +++ b/mail-filter/scmail/files/scmail-undefined-reference.patch @@ -0,0 +1,51 @@ +--- a/scmail/config.scm ++++ b/scmail/config.scm +@@ -30,6 +30,8 @@ + )) + (select-module scmail.config) + ++(autoload scmail.util scmail-eformat) ++ + (define scmail-config-directory (make-parameter (expand-path "~/.scmail"))) + + (define (scmail-config-set-directory! directory) +--- a/scmail/mailbox.scm ++++ b/scmail/mailbox.scm +@@ -19,6 +19,7 @@ + (use srfi-1) + (use file.util) + (use gauche.parameter) ++ (use scmail.util) + (export + make-scmail-mailbox + scmail-mailbox-mail-list +--- a/scmail/util.scm ++++ b/scmail/util.scm +@@ -19,7 +19,6 @@ + (use file.util) + (use srfi-13) + (use gauche.parameter) +- (use scmail.config) + (use scmail.progress) + (use gauche.version) + (export filter safe-rxmatch +@@ -31,6 +30,8 @@ + + (select-module scmail.util) + ++(autoload scmail.config scmail-config-verbose-mode?) ++ + ;; + ;; FIXME: Reinvent it because filter in srfi-1 module is too + ;; slow in old Gauche implementations. +--- a/scmail.scm ++++ b/scmail.scm +@@ -264,7 +264,7 @@ + (unless (eq? status :last) + (scmail-filter-iter mail (cdr filter-rules)))))) + (unless (is-a? mail ) +- (scmail-eprintf " required but got ~a" (class-of mail))) ++ (scmail-eformat " required but got ~a" (class-of mail))) + (scmail-filter-iter mail (filter-rules))) + + diff --git a/mail-filter/scmail/scmail-1.3.ebuild b/mail-filter/scmail/scmail-1.3.ebuild index 2d807f3fdee..8e65b389804 100644 --- a/mail-filter/scmail/scmail-1.3.ebuild +++ b/mail-filter/scmail/scmail-1.3.ebuild @@ -20,6 +20,7 @@ DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${PN}-doc-encoding.patch "${FILESDIR}"/${PN}-gauche-0.9.patch + "${FILESDIR}"/${PN}-undefined-reference.patch ) HTML_DOCS=( doc/{${PN},scbayes}{,-ja}.html )