forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-erlang/riakc: Bump version to 2.4.1
It unblocks erlang-19. Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST riakc-2.1.1_p20151111.tar.gz 229778 SHA256 9d3b066e05b0b28d84b03cb87873ed28183056e70e9f64ac703e2a0eb2005719 SHA512 b9dfaf4869ed087cfb093626d1dafc496ecd46f367cffb93768e645e1d8d42d577f13ce9a2516d32efd9e2aa1b0214e4572b77f5498979683fceb5d490f0de43 WHIRLPOOL ac3ae051d53f6a8845b49dbb6f87840cea12abfe1d0e782adfbb8194d8894e1f171124f29f9416e895d33fe04434e7f528c5a6c1dea88e7dea3b7c6cb1def774 | ||
DIST riakc-2.4.1.tar.gz 271545 SHA256 d2226db72ded3e830496b86c498fa8e120a2322631d6389eec3fa58ef3f83e0e SHA512 ee33dcf87db0587e81411794d8916d1d5b0c9f7603a814bc44f5916e4c32342395420b695c966311985ed771d4894210c3e5e8fe9cc86bfe20ccc61e1b2751ca WHIRLPOOL 7f3ac4cccaea0873deb0ebea39f5ce0d6beec5942f7f6e2c6b36000125037ca87ebe938ea055b68273907349771074c97bb0d79af95e1bcf9e069b7d8aeddd87 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit rebar | ||
|
||
MY_PN="riak-erlang-client" | ||
MY_P="${MY_PN}-${PV}" | ||
|
||
DESCRIPTION="Erlang clients for Riak" | ||
HOMEPAGE="https://github.com/basho/riak-erlang-client" | ||
SRC_URI="https://github.com/basho/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86" | ||
|
||
DEPEND=">=dev-erlang/riak_pb-2.1.4.1 | ||
>=dev-lang/erlang-17.1" | ||
RDEPEND="${DEPEND}" | ||
|
||
DOCS=( README.md RELNOTES.md ) | ||
|
||
S="${WORKDIR}/${MY_P}" | ||
|
||
src_prepare() { | ||
rebar_src_prepare | ||
# 'priv' directory contains only edoc.css, but doc isn't going to be built. | ||
rm -r "${S}/priv" || die | ||
} |