blueness    15/01/10 17:02:08

  Modified:             ChangeLog
  Added:                bitcoind-0.8.6-r2.ebuild bitcoind-0.9.3-r1.ebuild
  Removed:              bitcoind-0.9.2.1.ebuild bitcoind-0.8.6-r1.ebuild
                        bitcoind-0.9.3.ebuild
  Log:
  Version bump for bug #536228
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
0xF52D4BBA)

Revision  Changes    Path
1.94                 net-p2p/bitcoind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog   21 Nov 2014 12:14:47 -0000      1.93
+++ ChangeLog   10 Jan 2015 17:02:08 -0000      1.94
@@ -1,6 +1,15 @@
 # ChangeLog for net-p2p/bitcoind
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.93 
2014/11/21 12:14:47 blueness Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.94 
2015/01/10 17:02:08 blueness Exp $
+
+*bitcoind-0.8.6-r2 (10 Jan 2015)
+*bitcoind-0.9.3-r1 (10 Jan 2015)
+
+  10 Jan 2015; Anthony G. Basile <[email protected]>
+  +bitcoind-0.8.6-r2.ebuild, +bitcoind-0.9.3-r1.ebuild,
+  +files/0.8-openssl-101k.patch, +files/0.9-openssl-101k.patch,
+  -bitcoind-0.8.6-r1.ebuild, -bitcoind-0.9.2.1.ebuild, -bitcoind-0.9.3.ebuild:
+  Version bump for bug #536228
 
   21 Nov 2014; Anthony G. Basile <[email protected]>
   +files/9999-sys_libsecp256k1.patch, bitcoind-9999.ebuild:



1.1                  net-p2p/bitcoind/bitcoind-0.8.6-r2.ebuild

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

Index: bitcoind-0.8.6-r2.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.8.6-r2.ebuild,v 
1.1 2015/01/10 17:02:08 blueness Exp $

EAPI=4

DB_VER="4.8"

inherit bash-completion-r1 db-use eutils versionator systemd toolchain-funcs 
user

MyPV="${PV/_/}"
MyPN="bitcoin"
MyP="${MyPN}-${MyPV}"

DESCRIPTION="Original Bitcoin crypto-currency wallet for automated services"
HOMEPAGE="http://bitcoin.org/";
SRC_URI="https://github.com/${MyPN}/${MyPN}/archive/v${MyPV}.tar.gz -> 
${MyPN}-v${PV}.tgz
"

LICENSE="MIT ISC GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="examples ipv6 logrotate upnp"

RDEPEND="
        >=dev-libs/boost-1.41.0[threads(+)]
        dev-libs/openssl:0[-bindist]
        logrotate? (
                app-admin/logrotate
        )
        upnp? (
                net-libs/miniupnpc
        )
        sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
        virtual/bitcoin-leveldb
"
DEPEND="${RDEPEND}
        >=app-shells/bash-4.1
        sys-apps/sed
"

S="${WORKDIR}/${MyP}"

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

src_prepare() {
        epatch "${FILESDIR}/0.8-openssl-101k.patch"
        epatch "${FILESDIR}/0.8.2-sys_leveldb.patch"
        rm -r src/leveldb

        if has_version '>=dev-libs/boost-1.52'; then
                sed -i 's/\(-l db_cxx\)/-l boost_chrono$(BOOST_LIB_SUFFIX) \1/' 
src/makefile.unix
        fi
}

src_compile() {
        OPTS=()

        OPTS+=("DEBUGFLAGS=")
        OPTS+=("CXXFLAGS=${CXXFLAGS}")
        OPTS+=("LDFLAGS=${LDFLAGS}")

        OPTS+=("BDB_INCLUDE_PATH=$(db_includedir "${DB_VER}")")
        OPTS+=("BDB_LIB_SUFFIX=-${DB_VER}")

        if use upnp; then
                OPTS+=(USE_UPNP=1)
        else
                OPTS+=(USE_UPNP=)
        fi
        use ipv6 || OPTS+=("USE_IPV6=-")

        OPTS+=("USE_SYSTEM_LEVELDB=1")

        cd src || die
        emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" -f makefile.unix "${OPTS[@]}" 
${PN}
}

src_test() {
        cd src || die
        emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" -f makefile.unix "${OPTS[@]}" 
test_bitcoin
        ./test_bitcoin || die 'Tests failed'
}

src_install() {
        dobin src/${PN}

        insinto /etc/bitcoin
        newins "${FILESDIR}/bitcoin.conf" bitcoin.conf
        fowners bitcoin:bitcoin /etc/bitcoin/bitcoin.conf
        fperms 600 /etc/bitcoin/bitcoin.conf

        newconfd "${FILESDIR}/bitcoin.confd" ${PN}
        newinitd "${FILESDIR}/bitcoin.initd-r1" ${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/README.md doc/release-notes.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,pyminer,spendfrom,tidy_datadir.sh,wallettools}
        fi

        if use logrotate; then
                insinto /etc/logrotate.d
                newins "${FILESDIR}/bitcoind.logrotate" bitcoind
        fi
}



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

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

Index: bitcoind-0.9.3-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.9.3-r1.ebuild,v 
1.1 2015/01/10 17:02:08 blueness Exp $

EAPI=4

DB_VER="4.8"

inherit autotools bash-completion-r1 db-use eutils user versionator systemd

MyPV="${PV/_/}"
MyPN="bitcoin"
MyP="${MyPN}-${MyPV}"
LJR_PV="${PV}.ljr20141002"
LJR_PATCH="bitcoin-${LJR_PV}.patch"

DESCRIPTION="Original Bitcoin crypto-currency wallet for automated services"
HOMEPAGE="http://bitcoin.org/";
SRC_URI="https://github.com/${MyPN}/${MyPN}/archive/v${MyPV}.tar.gz -> 
${MyPN}-v${PV}.tgz
        ljr? ( 
http://luke.dashjr.org/programs/bitcoin/files/bitcoind/luke-jr/0.9.x/${LJR_PV}/${LJR_PATCH}.xz
 )
"

LICENSE="MIT ISC GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="examples ljr ljr-antispam logrotate test upnp +wallet"

REQUIRED_USE="
        ljr-antispam? ( ljr )
"
RDEPEND="
        >=dev-libs/boost-1.41.0[threads(+)]
        dev-libs/openssl:0[-bindist]
        logrotate? (
                app-admin/logrotate
        )
        upnp? (
                net-libs/miniupnpc
        )
        wallet? (
                sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
        )
        virtual/bitcoin-leveldb
"
DEPEND="${RDEPEND}
        >=app-shells/bash-4.1
        sys-apps/sed
"

S="${WORKDIR}/${MyP}"

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

src_prepare() {
        epatch "${FILESDIR}/0.9-openssl-101k.patch"
        if use ljr; then
                epatch "${WORKDIR}/${LJR_PATCH}"
                use ljr-antispam || epatch 
"${FILESDIR}/0.9.x-ljr_noblacklist.patch"
        else
                epatch "${FILESDIR}/0.9.0-sys_leveldb.patch"
        fi
        rm -r src/leveldb
        eautoreconf
}

src_configure() {
        econf \
                --disable-ccache \
                $(use_with upnp miniupnpc) $(use_enable upnp upnp-default) \
                $(use_enable test tests)  \
                $(use_enable wallet)  \
                --with-system-leveldb  \
                --without-cli  \
                --without-gui
}

src_test() {
        emake check
}

src_install() {
        emake DESTDIR="${D}" install

        insinto /etc/bitcoin
        newins "${FILESDIR}/bitcoin.conf" bitcoin.conf
        fowners bitcoin:bitcoin /etc/bitcoin/bitcoin.conf
        fperms 600 /etc/bitcoin/bitcoin.conf

        newconfd "${FILESDIR}/bitcoin.confd" ${PN}
        newinitd "${FILESDIR}/bitcoin.initd-r1" ${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/README.md doc/release-notes.md
        dodoc 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,pyminer,qos,spendfrom,tidy_datadir.sh}
        fi

        if use logrotate; then
                insinto /etc/logrotate.d
                newins "${FILESDIR}/bitcoind.logrotate" bitcoind
        fi
}




Reply via email to