Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/habitat/
Date: Mon, 26 Feb 2018 11:05:25
Message-Id: 1519643103.558ee546f2af179b5b3a36480789435a82afe96f.mrueg@gentoo
1 commit: 558ee546f2af179b5b3a36480789435a82afe96f
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 26 11:05:03 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 26 11:05:03 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=558ee546
7
8 sys-apps/habitat: Version bump to 0.54.0
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 sys-apps/habitat/Manifest | 2 ++
13 sys-apps/habitat/habitat-0.54.0.ebuild | 35 ++++++++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/sys-apps/habitat/Manifest b/sys-apps/habitat/Manifest
17 index 1a07d1c4fa7..55f2102694d 100644
18 --- a/sys-apps/habitat/Manifest
19 +++ b/sys-apps/habitat/Manifest
20 @@ -1,2 +1,4 @@
21 DIST habitat-0.28.0.tar.gz 25147061 BLAKE2B 0412565e3816e451945b0eae73eff0039dbd881bd86d3ed1e6f0aeef90555100f9baafcf551ed48ef2188b4ddbf768735006129afe5b66fcf53e638701b93fcc SHA512 eccdced6655e46b894aa3ef29cbac7100e18b4c44c7c2c7a25d5bb31ba732f908122630a7dd35c6347fa805180b471ce7dac786113d2f9b6d35a967994913b9f
22 +DIST habitat-0.54.0.tar.gz 35324897 BLAKE2B 554a2097c019e61cd6f1facdd0195abbca5e94834819283ddc2d742d196b6768e1da03a8a94f462a17d3c5c751fdddc1499f59a698f73fce170387055a07cbc6 SHA512 4b34de34e6d7b20ab641222636720357c903228aeb6833462ecc3367c6844d9f377d101b3187996e3cf3c179aa7b0c71a83921b4d18d1002fe30e3b25e31a35d
23 DIST habitat-cargo-0.28.0.tar.xz 84559904 BLAKE2B ed4e62e5aee3a6b336c617d7d912db8e6b58ed28f5cc747765075926659841a84d8380ef6273c0a83017f08cf8c5dcd57928de033b71e17213f7dd5f7b0ad381 SHA512 d6f798e21bfa8124820f505231423b0ef72d068a38e8a88f0d196cfcf9e5d7a2142499f809a8525ec2f5ce664e7598d5c0979efcd2511e860b8f884ac4f6fd4b
24 +DIST habitat-cargo-0.54.0.tar.xz 247811208 BLAKE2B 28d79018ff9f1209881908b335a1c77f60c39799fbd02e37ffde6bccc37c46aafe1cb05914c9b373150a0a917fa5b1538a94a8a75127172cf9d15cca5ba90520 SHA512 603e45b6e61b24b5420e57ef1d06bf15a67681525ae7a4210f07d14a072cf116947d28cc754e415f1e35fc6e03ede70cd47706ddf4857b76ac17aa420bf95d07
25
26 diff --git a/sys-apps/habitat/habitat-0.54.0.ebuild b/sys-apps/habitat/habitat-0.54.0.ebuild
27 new file mode 100644
28 index 00000000000..407816389d2
29 --- /dev/null
30 +++ b/sys-apps/habitat/habitat-0.54.0.ebuild
31 @@ -0,0 +1,35 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +DESCRIPTION="Application automation framework"
38 +HOMEPAGE="https://github.com/habitat-sh/habitat https://habitat.sh"
39 +SRC_URI="https://github.com/habitat-sh/habitat/archive/${PV}.tar.gz -> ${P}.tar.gz
40 + https://dev.gentoo.org/~mrueg/files/${PN}-cargo-${PV}.tar.xz"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +
46 +DEPEND="dev-util/cargo
47 + >=virtual/rust-1.23
48 + >=net-libs/zeromq-3.2
49 + virtual/pkgconfig"
50 +
51 +RESTRICT="test"
52 +
53 +src_prepare() {
54 + default
55 + # move cache dir where cargo expects it
56 + mv ../.cargo "${HOME}" || die
57 +}
58 +
59 +src_install() {
60 + dodoc README.md CHANGELOG.md
61 + dobin target/debug/hab{,-butterfly,-sup}
62 +}
63 +
64 +src_test() {
65 + emake unit-all
66 +}