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 78CEC1396D1 for ; Thu, 5 Oct 2017 21:11:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0CF8E0D77; Thu, 5 Oct 2017 21:11:38 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 903B8E0D77 for ; Thu, 5 Oct 2017 21:11:38 +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 68D3134178E for ; Thu, 5 Oct 2017 21:11:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BEC0746E for ; Thu, 5 Oct 2017 21:11:35 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1507237849.b4ab30f8709ec719d676eacaf936d4fac55b4d84.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/mirdir/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/mirdir/mirdir-2.1-r2.ebuild X-VCS-Directories: app-backup/mirdir/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: b4ab30f8709ec719d676eacaf936d4fac55b4d84 X-VCS-Branch: master Date: Thu, 5 Oct 2017 21:11:35 +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: 3a323eeb-a0c6-4871-9c50-4b07ea2a2be1 X-Archives-Hash: 7098b9fa12da5289e17ab5e1e4071411 commit: b4ab30f8709ec719d676eacaf936d4fac55b4d84 Author: charIes17 arcor de> AuthorDate: Tue Aug 15 12:01:31 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Oct 5 21:10:49 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4ab30f8 app-backup/mirdir: bump to EAPI version 6. Closes: https://bugs.gentoo.org/621514 Closes: https://github.com/gentoo/gentoo/pull/5428 Package-Manager: Portage-2.3.6, Repoman-2.3.3 app-backup/mirdir/mirdir-2.1-r2.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/app-backup/mirdir/mirdir-2.1-r2.ebuild b/app-backup/mirdir/mirdir-2.1-r2.ebuild new file mode 100644 index 00000000000..97c44d1b632 --- /dev/null +++ b/app-backup/mirdir/mirdir-2.1-r2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Synchronize two directory trees in a fast way" +HOMEPAGE="https://sourceforge.net/projects/mirdir/" +SRC_URI="mirror://sourceforge/${PN}/${P}-Unix.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +S="${WORKDIR}/${P}-UNIX" + +src_prepare() { + default + # Disable stripping, bug 239939 + sed -i -e 's:strip .*::' Makefile.in || die +} + +src_install() { + dobin "bin/${PN}" + doman "${PN}.1" + einstalldocs +}