blueness 15/03/04 00:11:48 Modified: bitcoind-9999.ebuild ChangeLog Added: bitcoind-0.10.0-r1.ebuild Removed: bitcoind-0.10.0.ebuild Log: Dependency on leveldb and libsecp256k1 is now handled by the eclass. Fix logrotate, bug #541510. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path 1.4 net-p2p/bitcoind/bitcoind-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/bitcoind-9999.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/bitcoind-9999.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/bitcoind-9999.ebuild?r1=1.3&r2=1.4 Index: bitcoind-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-9999.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- bitcoind-9999.ebuild 23 Feb 2015 21:31:45 -0000 1.3 +++ bitcoind-9999.ebuild 4 Mar 2015 00:11:48 -0000 1.4 @@ -1,10 +1,12 @@ # Copyright 2010-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-9999.ebuild,v 1.3 2015/02/23 21:31:45 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-9999.ebuild,v 1.4 2015/03/04 00:11:48 blueness Exp $ EAPI=5 BITCOINCORE_IUSE="examples logrotate test upnp +wallet" +BITCOINCORE_NEED_LEVELDB=1 +BITCOINCORE_NEED_LIBSECP256K1=1 inherit bash-completion-r1 bitcoincore user systemd DESCRIPTION="Original Bitcoin crypto-currency wallet for automated services" @@ -13,7 +15,6 @@ KEYWORDS="" RDEPEND=" - virtual/bitcoin-leveldb logrotate? ( app-admin/logrotate ) 1.103 net-p2p/bitcoind/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/ChangeLog?rev=1.103&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/ChangeLog?rev=1.103&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/ChangeLog?r1=1.102&r2=1.103 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v retrieving revision 1.102 retrieving revision 1.103 diff -u -r1.102 -r1.103 --- ChangeLog 27 Feb 2015 16:17:54 -0000 1.102 +++ ChangeLog 4 Mar 2015 00:11:48 -0000 1.103 @@ -1,6 +1,14 @@ # ChangeLog for net-p2p/bitcoind # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.102 2015/02/27 16:17:54 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.103 2015/03/04 00:11:48 blueness Exp $ + +*bitcoind-0.10.0-r1 (04 Mar 2015) + + 04 Mar 2015; Anthony G. Basile <[email protected]> + +bitcoind-0.10.0-r1.ebuild, +files/0.10.0-openrc-compat.patch, + +files/bitcoind.logrotate-r1, -bitcoind-0.10.0.ebuild, bitcoind-9999.ebuild: + Dependency on leveldb and libsecp256k1 is now handled by the eclass. Fix + logrotate, bug #541510. 27 Feb 2015; Andreas K. Huettel <[email protected]> bitcoind-0.10.0.ebuild: ComRel: Disable more add-on patches by default 1.1 net-p2p/bitcoind/bitcoind-0.10.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/bitcoind-0.10.0-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/bitcoind-0.10.0-r1.ebuild?rev=1.1&content-type=text/plain Index: bitcoind-0.10.0-r1.ebuild =================================================================== # Copyright 2010-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.10.0-r1.ebuild,v 1.1 2015/03/04 00:11:48 blueness Exp $ EAPI=5 BITCOINCORE_COMMITHASH="047a89831760ff124740fe9f58411d57ee087078" BITCOINCORE_LJR_DATE="20150220" BITCOINCORE_IUSE="examples ljr logrotate test upnp +wallet xt zeromq" BITCOINCORE_POLICY_PATCHES="cpfp dcmp rbf spamfilter" BITCOINCORE_NEED_LEVELDB=1 BITCOINCORE_NEED_LIBSECP256K1=1 inherit bash-completion-r1 bitcoincore user systemd DESCRIPTION="Original Bitcoin crypto-currency wallet for automated services" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" RDEPEND=" logrotate? ( app-admin/logrotate ) " DEPEND="${RDEPEND}" pkg_setup() { local UG='bitcoin' enewgroup "${UG}" enewuser "${UG}" -1 -1 /var/lib/bitcoin "${UG}" } src_prepare() { epatch "${FILESDIR}/${PV}-openrc-compat.patch" bitcoincore_src_prepare } src_configure() { # NOTE: --enable-zmq actually disables it bitcoincore_conf \ --with-daemon } src_install() { bitcoincore_src_install insinto /etc/bitcoin newins "${FILESDIR}/bitcoin.conf" bitcoin.conf fowners bitcoin:bitcoin /etc/bitcoin/bitcoin.conf fperms 600 /etc/bitcoin/bitcoin.conf newconfd "contrib/init/bitcoind.openrcconf" ${PN} newinitd "contrib/init/bitcoind.openrc" ${PN} systemd_dounit "${FILESDIR}/bitcoind.service" keepdir /var/lib/bitcoin/.bitcoin fperms 700 /var/lib/bitcoin fowners bitcoin:bitcoin /var/lib/bitcoin/ fowners bitcoin:bitcoin /var/lib/bitcoin/.bitcoin dosym /etc/bitcoin/bitcoin.conf /var/lib/bitcoin/.bitcoin/bitcoin.conf dodoc doc/assets-attribution.md doc/tor.md doman contrib/debian/manpages/{bitcoind.1,bitcoin.conf.5} newbashcomp contrib/${PN}.bash-completion ${PN} if use examples; then docinto examples dodoc -r contrib/{bitrpc,qos,spendfrom,tidy_datadir.sh} fi if use logrotate; then insinto /etc/logrotate.d newins "${FILESDIR}/bitcoind.logrotate-r1" bitcoind fi }
