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 187AF13832E for ; Tue, 19 Jul 2016 20:55:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36B68E0B38; Tue, 19 Jul 2016 20:55:16 +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 C500FE0B38 for ; Tue, 19 Jul 2016 20:55:15 +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 57F7A340AF3 for ; Tue, 19 Jul 2016 20:55:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C64F778D for ; Tue, 19 Jul 2016 20:55:11 +0000 (UTC) From: "Amadeusz Piotr Żołnowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amadeusz Piotr Żołnowski" Message-ID: <1468961609.ee16faa3b2fcadb880251f1c4045d7abf4ba8ca4.aidecoe@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.22-r2.ebuild net-mail/notmuch/notmuch-0.22.1.ebuild X-VCS-Directories: net-mail/notmuch/ X-VCS-Committer: aidecoe X-VCS-Committer-Name: Amadeusz Piotr Żołnowski X-VCS-Revision: ee16faa3b2fcadb880251f1c4045d7abf4ba8ca4 X-VCS-Branch: master Date: Tue, 19 Jul 2016 20:55:11 +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: 38eeb890-ab96-4d37-ba25-24f0d5693e9b X-Archives-Hash: 2b3ed111612c31e524029a51c9502fdc commit: ee16faa3b2fcadb880251f1c4045d7abf4ba8ca4 Author: Amadeusz Żołnowski gentoo org> AuthorDate: Tue Jul 19 20:53:11 2016 +0000 Commit: Amadeusz Piotr Żołnowski gentoo org> CommitDate: Tue Jul 19 20:53:29 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee16faa3 net-mail/notmuch: Don't die on unpack Copy test database only for test. Package-Manager: portage-2.3.0 net-mail/notmuch/notmuch-0.22-r2.ebuild | 6 ++++-- net-mail/notmuch/notmuch-0.22.1.ebuild | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/net-mail/notmuch/notmuch-0.22-r2.ebuild b/net-mail/notmuch/notmuch-0.22-r2.ebuild index 28aab24..5748091 100644 --- a/net-mail/notmuch/notmuch-0.22-r2.ebuild +++ b/net-mail/notmuch/notmuch-0.22-r2.ebuild @@ -93,8 +93,10 @@ pkg_setup() { src_unpack() { unpack "${P}".tar.gz - mkdir -p "${S}"/test/test-databases || die - cp "${DISTDIR}"/database-v1.tar.xz "${S}"/test/test-databases/ || die + if use test; then + mkdir -p "${S}"/test/test-databases || die + cp "${DISTDIR}"/database-v1.tar.xz "${S}"/test/test-databases/ || die + fi } src_prepare() { diff --git a/net-mail/notmuch/notmuch-0.22.1.ebuild b/net-mail/notmuch/notmuch-0.22.1.ebuild index 28aab24..5748091 100644 --- a/net-mail/notmuch/notmuch-0.22.1.ebuild +++ b/net-mail/notmuch/notmuch-0.22.1.ebuild @@ -93,8 +93,10 @@ pkg_setup() { src_unpack() { unpack "${P}".tar.gz - mkdir -p "${S}"/test/test-databases || die - cp "${DISTDIR}"/database-v1.tar.xz "${S}"/test/test-databases/ || die + if use test; then + mkdir -p "${S}"/test/test-databases || die + cp "${DISTDIR}"/database-v1.tar.xz "${S}"/test/test-databases/ || die + fi } src_prepare() {