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 18EE8138335 for ; Mon, 4 Mar 2019 20:49:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCDCEE08F4; Mon, 4 Mar 2019 20:49:06 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 B597EE08C8 for ; Mon, 4 Mar 2019 20:49:06 +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 47492335D13 for ; Mon, 4 Mar 2019 20:49:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B221555C for ; Mon, 4 Mar 2019 20:49:03 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1551732530.8d87cd91a1a990a1d423ffd248c479ff37f33adb.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/physfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/physfs/physfs-3.0.1-r2.ebuild X-VCS-Directories: dev-games/physfs/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 8d87cd91a1a990a1d423ffd248c479ff37f33adb X-VCS-Branch: master Date: Mon, 4 Mar 2019 20:49:03 +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: a91b932a-316c-4385-a396-558a1d127e10 X-Archives-Hash: 5fdb00d9921f57e8b0bb67a06f9030bc commit: 8d87cd91a1a990a1d423ffd248c479ff37f33adb Author: James Le Cuirot gentoo org> AuthorDate: Mon Mar 4 20:46:25 2019 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Mon Mar 4 20:48:50 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d87cd91 dev-games/physfs: Mirror 9999 ebuild and put doxygen in BDEPEND Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: James Le Cuirot gentoo.org> dev-games/physfs/physfs-3.0.1-r2.ebuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/dev-games/physfs/physfs-3.0.1-r2.ebuild b/dev-games/physfs/physfs-3.0.1-r2.ebuild index 09e33ed95e9..fe097f9f54e 100644 --- a/dev-games/physfs/physfs-3.0.1-r2.ebuild +++ b/dev-games/physfs/physfs-3.0.1-r2.ebuild @@ -6,14 +6,20 @@ inherit cmake-multilib DESCRIPTION="Abstraction layer for filesystem and archive access" HOMEPAGE="https://icculus.org/physfs/" -SRC_URI="https://icculus.org/physfs/downloads/${P}.tar.bz2" + +if [[ ${PV} == *9999* ]]; then + EHG_REPO_URI="https://hg.icculus.org/icculus/physfs" + inherit mercurial +else + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86 ~x86-fbsd" + SRC_URI="https://icculus.org/physfs/downloads/${P}.tar.bz2" +fi LICENSE="ZLIB" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86 ~x86-fbsd" IUSE="7zip doc grp hog iso mvl qpak slb static-libs vdf wad +zip" -DEPEND="doc? ( app-doc/doxygen )" +BDEPEND="doc? ( app-doc/doxygen )" DOCS=( docs/CHANGELOG.txt docs/CREDITS.txt docs/TODO.txt )