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 65833139694 for ; Thu, 20 Jul 2017 12:40:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF9871FC002; Thu, 20 Jul 2017 12:39:58 +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 7FE431FC002 for ; Thu, 20 Jul 2017 12:39:58 +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 3384F341803 for ; Thu, 20 Jul 2017 12:39:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E18B7431 for ; Thu, 20 Jul 2017 12:39:55 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1500554372.7a64b17aeb96cad78bde0b29da7d346519d92c37.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/habitat/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/habitat/Manifest sys-apps/habitat/habitat-0.26.1.ebuild sys-apps/habitat/metadata.xml X-VCS-Directories: sys-apps/habitat/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 7a64b17aeb96cad78bde0b29da7d346519d92c37 X-VCS-Branch: master Date: Thu, 20 Jul 2017 12:39:55 +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: db6e39b7-a0d9-4c66-958e-ec1c07be36bb X-Archives-Hash: 12864f4a14c78bbc9e952fa14cfba39a commit: 7a64b17aeb96cad78bde0b29da7d346519d92c37 Author: Manuel Rüger gentoo org> AuthorDate: Thu Jul 20 12:38:58 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Thu Jul 20 12:39:32 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a64b17a sys-apps/habitat: Initial version Package-Manager: Portage-2.3.6, Repoman-2.3.3 sys-apps/habitat/Manifest | 2 ++ sys-apps/habitat/habitat-0.26.1.ebuild | 33 +++++++++++++++++++++++++++++++++ sys-apps/habitat/metadata.xml | 11 +++++++++++ 3 files changed, 46 insertions(+) diff --git a/sys-apps/habitat/Manifest b/sys-apps/habitat/Manifest new file mode 100644 index 00000000000..a96bb2d7d5b --- /dev/null +++ b/sys-apps/habitat/Manifest @@ -0,0 +1,2 @@ +DIST habitat-0.26.1.tar.gz 25110054 SHA256 cc6ec658462486c27422630b0147f86d8684ed43157854fd54d820bf981899d8 SHA512 56d8f634ea7465f7e4b19ab34b8f5b5d25ed0252b61a438d9d74a5fc130ca216c65d5e69fb56f28eb8cf034512128340fcc3d35d86b9549c31001289f9b6eba1 WHIRLPOOL 66b2ec6a90f603615297d738449823e0289bd55672610a85b3d7141c1db06bc9912d64a12da7d1a7f793c06ac94f5c4fb19f854c2c22741471691259bae69cab +DIST habitat-cargo-0.26.1.tar.xz 85492808 SHA256 2f532f8a829767318f93f02ec66f4998655b6ce6dd20a7e705c27029216c04dd SHA512 08e92f6995f220a7f48f86e2425e3bbcf9b988f34fcff42211427d0b66071e006748ac67a762d15d3e99e30438e528bfd66951b4d88d7a9ea84713718eed2293 WHIRLPOOL f82f7e57973d14f9f9a9b131a0947965e6fa72ec7931df93c19a356293d16ec4f49fbcc300f5fbc6c7183b7f21f4b15e73ebe64a3f67a32a03caf902c4ed7ec0 diff --git a/sys-apps/habitat/habitat-0.26.1.ebuild b/sys-apps/habitat/habitat-0.26.1.ebuild new file mode 100644 index 00000000000..e03935ad288 --- /dev/null +++ b/sys-apps/habitat/habitat-0.26.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Application automation framework" +HOMEPAGE="https://github.com/habitat-sh/habitat https://habitat.sh" +SRC_URI="https://github.com/habitat-sh/habitat/archive/${PV}.tar.gz -> ${P}.tar.gz + https://dev.gentoo.org/~mrueg/files/${PN}-cargo-${PV}.tar.xz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-util/cargo + >=dev-lang/rust-1.11" + +RESTRICT="test" + +src_prepare() { + default + # move cache dir where cargo expects it + mv ../.cargo "${HOME}" || die +} + +src_install() { + dodoc README.md CHANGELOG.md + dobin target/debug/hab{,-butterfly,-sup} +} + +src_test() { + emake unit-all +} diff --git a/sys-apps/habitat/metadata.xml b/sys-apps/habitat/metadata.xml new file mode 100644 index 00000000000..67159d96588 --- /dev/null +++ b/sys-apps/habitat/metadata.xml @@ -0,0 +1,11 @@ + + + + + mrueg@gentoo.org + Manuel Rüger + + + habitat-sh/habitat + +