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 9F479138350 for ; Sun, 12 Jan 2020 18:38:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CF29E08B1; Sun, 12 Jan 2020 18:38:32 +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 EF828E08B1 for ; Sun, 12 Jan 2020 18:38:31 +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 0167934DFD0 for ; Sun, 12 Jan 2020 18:38:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDDA8A3 for ; Sun, 12 Jan 2020 18:38:27 +0000 (UTC) From: "Jörg Bornkessel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jörg Bornkessel" Message-ID: <1578854291.7c4e86743a6b6a8ff99d4b54157bf5a6845f5f87.hd_brummy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-epgsearch/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild X-VCS-Directories: media-plugins/vdr-epgsearch/ X-VCS-Committer: hd_brummy X-VCS-Committer-Name: Jörg Bornkessel X-VCS-Revision: 7c4e86743a6b6a8ff99d4b54157bf5a6845f5f87 X-VCS-Branch: master Date: Sun, 12 Jan 2020 18:38:27 +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: 7a1acfc5-7f38-4494-a1d1-5ced69ed0632 X-Archives-Hash: 90ec13527b851857843f2cfba0a5c64b commit: 7c4e86743a6b6a8ff99d4b54157bf5a6845f5f87 Author: Joerg Bornkessel gentoo org> AuthorDate: Sun Jan 12 18:29:52 2020 +0000 Commit: Jörg Bornkessel gentoo org> CommitDate: Sun Jan 12 18:38:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c4e8674 media-plugins/vdr-epgsearch: missing die's added Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Joerg Bornkessel gentoo.org> media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild | 4 ++-- media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild b/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild index ba0700f4113..0a8a30e973a 100644 --- a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild +++ b/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild @@ -76,9 +76,9 @@ src_install() { nonfatal dodoc conf/*.templ HISTORY* - gunzip -f man/en/*.gz + gunzip -f man/en/*.gz || die doman man/en/*.[0-9] - gunzip -f man/de/*.gz + gunzip -f man/de/*.gz || die doman -i18n=de man/de/*.[0-9] } diff --git a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild b/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild index ed89ee0acea..f3656d228f5 100644 --- a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild +++ b/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0.ebuild @@ -71,9 +71,9 @@ src_install() { local DOCS=( conf/*.templ HISTORY* ) einstalldocs - gunzip -f man/en/*.gz + gunzip -f man/en/*.gz || die doman man/en/*.[0-9] - gunzip -f man/de/*.gz + gunzip -f man/de/*.gz || die doman -i18n=de man/de/*.[0-9] }