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 0D2E6138334 for ; Fri, 1 Jun 2018 14:05:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70ED1E084A; Fri, 1 Jun 2018 14:05:29 +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 43A77E0848 for ; Fri, 1 Jun 2018 14:05:29 +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 50462335C72 for ; Fri, 1 Jun 2018 14:05:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9578F2B7 for ; Fri, 1 Jun 2018 14:05:26 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527861915.8e3f7e4ab976ef3fea3714c9a75346c116a11bfa.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/pedro/files/, net-misc/pedro/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/pedro/files/pedro-1.6-portage.patch net-misc/pedro/pedro-1.6.ebuild X-VCS-Directories: net-misc/pedro/ net-misc/pedro/files/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 8e3f7e4ab976ef3fea3714c9a75346c116a11bfa X-VCS-Branch: master Date: Fri, 1 Jun 2018 14:05:26 +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: b41e4d0e-6d27-416c-b50e-1d84a0897452 X-Archives-Hash: dc63daf33f02d2f1201d7dc934ac10e4 commit: 8e3f7e4ab976ef3fea3714c9a75346c116a11bfa Author: Aaron Bauman gentoo org> AuthorDate: Thu May 31 21:02:41 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Jun 1 14:05:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e3f7e4a net-misc/pedro: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-misc/pedro/files/pedro-1.6-portage.patch | 4 ++-- net-misc/pedro/pedro-1.6.ebuild | 24 ++++++++++-------------- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/net-misc/pedro/files/pedro-1.6-portage.patch b/net-misc/pedro/files/pedro-1.6-portage.patch index be1f9d3b213..b72a3251b89 100644 --- a/net-misc/pedro/files/pedro-1.6-portage.patch +++ b/net-misc/pedro/files/pedro-1.6-portage.patch @@ -1,5 +1,5 @@ ---- pedro-1.6.orig/configure 2011-08-23 11:01:21.000000000 +1200 -+++ pedro-1.6/configure 2011-11-19 21:28:47.000000000 +1300 +--- a/configure ++++ b/configure @@ -10478,7 +10478,7 @@ ac_config_headers="$ac_config_headers config.h" diff --git a/net-misc/pedro/pedro-1.6.ebuild b/net-misc/pedro/pedro-1.6.ebuild index 00b9a3e6b9a..a3983f5619e 100644 --- a/net-misc/pedro/pedro-1.6.ebuild +++ b/net-misc/pedro/pedro-1.6.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 - -inherit eutils +EAPI=6 DESCRIPTION="Pedro is a subscription/notification communications system" HOMEPAGE="http://www.itee.uq.edu.au/~pjr/HomePages/PedroHome.html" @@ -20,25 +18,23 @@ DEPEND="${RDEPEND}" S="${WORKDIR}"/${P} -src_prepare() { - epatch "${FILESDIR}"/${P}-portage.patch -} +PATCHES=( "${FILESDIR}/${P}-portage.patch" ) src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - dodoc AUTHORS README || die + default if use doc ; then - dodoc "${WORKDIR}"/${PN}.pdf || die + dodoc "${WORKDIR}"/${PN}.pdf fi if use examples ; then insinto /usr/share/doc/${PF}/examples - doins src/examples/*.{c,tcl} || die + doins src/examples/*.{c,tcl} + insinto /usr/share/doc/${PF}/examples/java_api - doins src/java_api/*.java || die + doins src/java_api/*.java + insinto /usr/share/doc/${PF}/examples/python_api - doins src/python_api/*.py || die + doins src/python_api/*.py fi }