blueness    15/07/17 22:18:00

  Modified:             ChangeLog
  Added:                bitcoind-0.10.2-r1.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  Changes    Path
1.111                net-p2p/bitcoind/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/ChangeLog?rev=1.111&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/ChangeLog?rev=1.111&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/ChangeLog?r1=1.110&r2=1.111

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog   17 Jul 2015 20:48:48 -0000      1.110
+++ ChangeLog   17 Jul 2015 22:18:00 -0000      1.111
@@ -1,6 +1,12 @@
 # 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.110 
2015/07/17 20:48:48 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.111 
2015/07/17 22:18:00 blueness Exp $
+
+*bitcoind-0.10.2-r1 (17 Jul 2015)
+
+  17 Jul 2015; Anthony G. Basile <[email protected]>
+  +bitcoind-0.10.2-r1.ebuild, +files/9999-syslibs.patch:
+  Version bump.
 
   17 Jul 2015; Anthony G. Basile <[email protected]>
   -files/9999-sys_libsecp256k1.patch, -files/bitcoin.initd,



1.1                  net-p2p/bitcoind/bitcoind-0.10.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/bitcoind-0.10.2-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/bitcoind/bitcoind-0.10.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: bitcoind-0.10.2-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.2-r1.ebuild,v 
1.1 2015/07/17 22:18:00 blueness Exp $

EAPI=5

BITCOINCORE_COMMITHASH="16f45600c8c372a738ffef544292864256382601"
BITCOINCORE_SRC_SUFFIX="-r1"
BITCOINCORE_LJR_PV="0.10.1"
BITCOINCORE_LJR_DATE="20150428"
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 ~arm64 ~x86 ~amd64-linux ~x86-linux"

RDEPEND="
        logrotate? (
                app-admin/logrotate
        )
"
DEPEND="${RDEPEND}"

pkg_setup() {
        local UG='bitcoin'
        enewgroup "${UG}"
        enewuser "${UG}" -1 -1 /var/lib/bitcoin "${UG}"
}

src_prepare() {
        sed -i 's/have bitcoind &&//;s/^\(complete -F _bitcoind bitcoind\) 
bitcoin-cli$/\1/' contrib/${PN}.bash-completion
        epatch "${FILESDIR}/0.10.0-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
}




Reply via email to