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 DF5E81382C5 for ; Sun, 1 Apr 2018 16:16:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4CE3E0821; Sun, 1 Apr 2018 16:16:03 +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 8F20DE0821 for ; Sun, 1 Apr 2018 16:16:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C5795335DA9 for ; Sun, 1 Apr 2018 16:16:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D697266 for ; Sun, 1 Apr 2018 16:16:00 +0000 (UTC) From: "Martin Mokrejs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Martin Mokrejs" Message-ID: <1522599344.43678bc9223604dc05063d14c025edcb802c0b4d.mmokrejs@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/genepop/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/genepop/genepop-4.6.ebuild sci-biology/genepop/genepop-4.7.ebuild X-VCS-Directories: sci-biology/genepop/ X-VCS-Committer: mmokrejs X-VCS-Committer-Name: Martin Mokrejs X-VCS-Revision: 43678bc9223604dc05063d14c025edcb802c0b4d X-VCS-Branch: master Date: Sun, 1 Apr 2018 16:16:00 +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: 9348d042-9eab-46cc-98e1-a9e6a0fb7350 X-Archives-Hash: ce352a925f1efa865477c5d67dddbde2 commit: 43678bc9223604dc05063d14c025edcb802c0b4d Author: Martin Mokrejs fold natur cuni cz> AuthorDate: Sun Apr 1 16:15:44 2018 +0000 Commit: Martin Mokrejs fold natur cuni cz> CommitDate: Sun Apr 1 16:15:44 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=43678bc9 sci-biology/genepop: version bump Upstream does not version the release tarballs, now 4.7 is being actually exposed on the website. Package-Manager: Portage-2.3.27, Repoman-2.3.9 .../genepop/{genepop-4.6.ebuild => genepop-4.7.ebuild} | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/sci-biology/genepop/genepop-4.6.ebuild b/sci-biology/genepop/genepop-4.7.ebuild similarity index 77% rename from sci-biology/genepop/genepop-4.6.ebuild rename to sci-biology/genepop/genepop-4.7.ebuild index 22605e6cd..c70f60dba 100644 --- a/sci-biology/genepop/genepop-4.6.ebuild +++ b/sci-biology/genepop/genepop-4.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -7,8 +7,7 @@ inherit cmake-utils DESCRIPTION="Population genetics analysis" HOMEPAGE="http://genepop.curtin.edu.au/ http://kimura.univ-montp2.fr/~rousset/Genepop.htm" -SRC_URI="http://kimura.univ-montp2.fr/%7Erousset/GenepopV4.tar.gz -> ${P}.tar.gz - http://kimura.univ-montp2.fr/%7Erousset/Genepop.pdf -> ${PN}.pdf" +SRC_URI="http://kimura.univ-montp2.fr/%7Erousset/GenepopV4.tar.gz -> ${P}.tar.gz" LICENSE="CeCILL-2" SLOT="0" @@ -19,8 +18,7 @@ S="${WORKDIR}" src_prepare() { gzip -dc sources.tar.gz | tar xf - || die - mv Cpp/* . || die - rmdir Cpp || die + rm -f exe.zip || die cat >> CMakeLists.txt <<- EOF cmake_minimum_required (VERSION 2.6) project (${PN} CXX) @@ -36,5 +34,8 @@ src_prepare() { src_install(){ cmake-utils_src_install - dodoc "${DISTDIR}"/"${PN}".pdf + mv "${ED}"/usr/bin/Genepop "${ED}"/usr/bin/genepop || die + newdoc Genepop.pdf genepop.pdf + insinto /usr/share/"${PN}" + doins examples.zip }