diff options
author | 2015-03-11 03:48:50 +0000 | |
---|---|---|
committer | 2015-03-11 03:48:50 +0000 | |
commit | 1fa8e2c263ae99a24264f1c0862eafbef5eb5d1c (patch) | |
tree | d576fce8b00bab6c09d494aac35e3ac90669c5c1 /net-misc | |
parent | New ebuild, dependency of net-misc/elliptics-eblob; ebuild by me (diff) | |
download | gentoo-2-1fa8e2c263ae99a24264f1c0862eafbef5eb5d1c.tar.gz gentoo-2-1fa8e2c263ae99a24264f1c0862eafbef5eb5d1c.tar.bz2 gentoo-2-1fa8e2c263ae99a24264f1c0862eafbef5eb5d1c.zip |
Bump, remove old/broken, fixes #542486
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/elliptics-eblob/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/elliptics-eblob/elliptics-eblob-0.22.16.ebuild (renamed from net-misc/elliptics-eblob/elliptics-eblob-0.18.0.ebuild) | 14 |
2 files changed, 15 insertions, 9 deletions
diff --git a/net-misc/elliptics-eblob/ChangeLog b/net-misc/elliptics-eblob/ChangeLog index 1f15c6cfcf58..e29b76dadeee 100644 --- a/net-misc/elliptics-eblob/ChangeLog +++ b/net-misc/elliptics-eblob/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/elliptics-eblob -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/elliptics-eblob/ChangeLog,v 1.4 2013/08/15 03:34:26 patrick Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/elliptics-eblob/ChangeLog,v 1.5 2015/03/11 03:48:50 patrick Exp $ + +*elliptics-eblob-0.22.16 (11 Mar 2015) + + 11 Mar 2015; Patrick Lauer <patrick@gentoo.org> + +elliptics-eblob-0.22.16.ebuild, -elliptics-eblob-0.18.0.ebuild: + Bump, remove old/broken, fixes #542486 15 Aug 2013; Patrick Lauer <patrick@gentoo.org> elliptics-eblob-0.0.1.ebuild, elliptics-eblob-0.18.0.ebuild: diff --git a/net-misc/elliptics-eblob/elliptics-eblob-0.18.0.ebuild b/net-misc/elliptics-eblob/elliptics-eblob-0.22.16.ebuild index 8645be177bc5..e84f0ad3ed45 100644 --- a/net-misc/elliptics-eblob/elliptics-eblob-0.18.0.ebuild +++ b/net-misc/elliptics-eblob/elliptics-eblob-0.22.16.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/elliptics-eblob/elliptics-eblob-0.18.0.ebuild,v 1.2 2013/08/15 03:34:26 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/elliptics-eblob/elliptics-eblob-0.22.16.ebuild,v 1.1 2015/03/11 03:48:50 patrick Exp $ EAPI=5 PYTHON_COMPAT="python2_7" @@ -16,11 +16,12 @@ IUSE="python" RDEPEND=" app-arch/snappy dev-libs/openssl - dev-libs/boost[python]" + dev-libs/boost[python] + dev-libs/handystats" DEPEND="${RDEPEND}" MY_PN="eblob" -SRC_URI="http://dev.gentoo.org/~patrick/${MY_PN}-${PV}.tar.bz2" +SRC_URI="https://github.com/reverbrain/eblob/archive/v${PV}.zip -> ${P}.zip" S=${WORKDIR}/${MY_PN}-${PV} @@ -35,7 +36,6 @@ pkg_setup() { } src_install() { - cmake-utils_src_install - mkdir -p "${D}/$(python_get_sitedir)" - cp bindings/python/python/eblob.py "${D}/$(python_get_sitedir)" || die "Fail" + cd "${BUILD_DIR}" && emake DESTDIR="${D}" install + cd "${S}" } |