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 50737138335 for ; Sun, 23 Sep 2018 01:10:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08CF7E082D; Sun, 23 Sep 2018 01:10:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 CE45FE082B for ; Sun, 23 Sep 2018 01:10:46 +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 C0FDB335CEB for ; Sun, 23 Sep 2018 01:10:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB3B7433 for ; Sun, 23 Sep 2018 01:10:42 +0000 (UTC) From: "Andrey Utkin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Utkin" Message-ID: <1537664420.e9d24d16532bce0f8dbf41ffb2a5f173d3c45a5f.andrey_utkin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/mcabber/mcabber-9999.ebuild X-VCS-Directories: net-im/mcabber/ X-VCS-Committer: andrey_utkin X-VCS-Committer-Name: Andrey Utkin X-VCS-Revision: e9d24d16532bce0f8dbf41ffb2a5f173d3c45a5f X-VCS-Branch: master Date: Sun, 23 Sep 2018 01:10:42 +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: fbc977b7-cc86-4570-9679-b24cb66be2a0 X-Archives-Hash: b34ab2d0c8216fd273b4524c8c9f8393 commit: e9d24d16532bce0f8dbf41ffb2a5f173d3c45a5f Author: Andrey Utkin gentoo org> AuthorDate: Sun Sep 23 00:06:13 2018 +0000 Commit: Andrey Utkin gentoo org> CommitDate: Sun Sep 23 01:00:20 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9d24d16 net-im/mcabber: 9999: include non-live versions logic Package-Manager: Portage-2.3.48, Repoman-2.3.10 net-im/mcabber/mcabber-9999.ebuild | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/net-im/mcabber/mcabber-9999.ebuild b/net-im/mcabber/mcabber-9999.ebuild index 10ad2518677..64bf95a6cad 100644 --- a/net-im/mcabber/mcabber-9999.ebuild +++ b/net-im/mcabber/mcabber-9999.ebuild @@ -3,18 +3,24 @@ EAPI=7 -inherit flag-o-matic mercurial +inherit flag-o-matic DESCRIPTION="A small Jabber console client with various features, like MUC, SSL, PGP" HOMEPAGE="http://mcabber.com/" -EHG_REPO_URI="https://bitbucket.org/McKael/mcabber" -EHG_CHECKOUT_DIR="${WORKDIR}" -EHG_BOOTSTRAP="autogen.sh" -S="${WORKDIR}/${PN}" + +if [[ "${PV}" == 9999 ]]; then + inherit mercurial + EHG_REPO_URI="https://bitbucket.org/McKael/mcabber" + EHG_CHECKOUT_DIR="${WORKDIR}" + EHG_BOOTSTRAP="autogen.sh" + S="${WORKDIR}/${PN}" +else + SRC_URI="http://mcabber.com/files/${P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +fi LICENSE="GPL-2" SLOT="0" -KEYWORDS="" IUSE="aspell crypt idn otr spell ssl vim-syntax"