[gentoo-commits] repo/gentoo:master commit in: net-p2p/bitcoinxtd/, net-p2p/bitcoinxtd/files/, profiles/

2017-08-14 Thread Michał Górny
commit: d1fe4dd9178ec7ff7cf1ec6fc1d9f7c2b93f76f4
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug 14 21:22:15 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug 14 21:24:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1fe4dd9

net-p2p/bitcoinxtd: Remove last-rited pkg, #574672

 net-p2p/bitcoinxtd/Manifest   |   1 -
 net-p2p/bitcoinxtd/bitcoinxtd-0.11.0d.ebuild  | 125 -
 net-p2p/bitcoinxtd/files/-syslibs.patch   | 243 --
 net-p2p/bitcoinxtd/files/bitcoin.conf |   8 -
 net-p2p/bitcoinxtd/files/bitcoinxt.confd  |  12 --
 net-p2p/bitcoinxtd/files/bitcoinxt.initd  |  28 ---
 net-p2p/bitcoinxtd/files/bitcoinxtd.logrotate |   8 -
 net-p2p/bitcoinxtd/files/bitcoinxtd.service   |  30 
 net-p2p/bitcoinxtd/metadata.xml   |  14 --
 profiles/package.mask |   5 -
 10 files changed, 474 deletions(-)

diff --git a/net-p2p/bitcoinxtd/Manifest b/net-p2p/bitcoinxtd/Manifest
deleted file mode 100644
index f5c7d53244a..000
--- a/net-p2p/bitcoinxtd/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST bitcoinxtd-0.11.0d.tar.gz 5408217 SHA256 
66b4bd52ed8b97e28da46ac552396c40853a9d7f765063603552e1cf118a2227 SHA512 
98dd980c1cc65006160819f0e9045bc962cc6faddbde22f7bfea4bbcfef4662a5c1280386f9f68b42bc3e3e99e89ecf02d211fe20107bba57c14e6b3017a339c
 WHIRLPOOL 
9468d20db5ec7e6f5d4f96156ab5568f0870ccb4b8037a9ec3bb0e3636a59f07a846ca731ebe99affda5cfbcd3ec117beeaff025f7aad0ab23a88379ae2c1b23

diff --git a/net-p2p/bitcoinxtd/bitcoinxtd-0.11.0d.ebuild 
b/net-p2p/bitcoinxtd/bitcoinxtd-0.11.0d.ebuild
deleted file mode 100644
index c2cffb59bfa..000
--- a/net-p2p/bitcoinxtd/bitcoinxtd-0.11.0d.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DB_VER="4.8"
-
-inherit db-use autotools eutils toolchain-funcs user systemd
-
-DESCRIPTION="BitcoinXT crypto-currency wallet for automated services"
-HOMEPAGE="https://github/bitcoinxt/bitcoinxt;
-My_PV="${PV/\.0d/}D"
-SRC_URI="https://github.com/bitcoinxt/bitcoinxt/archive/v${My_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="+doc libressl +logrotate +ssl +upnp +wallet"
-
-OPENSSL_DEPEND="
-   !libressl? ( dev-libs/openssl:0[-bindist] )
-   libressl? ( dev-libs/libressl )"
-WALLET_DEPEND="media-gfx/qrencode sys-libs/db:$(db_ver_to_slot 
"${DB_VER}")[cxx]"
-
-RDEPEND="
-   app-shells/bash:0
-   dev-libs/boost[threads(+)]
-   dev-libs/glib:2
-   dev-libs/crypto++
-   ssl? ( ${OPENSSL_DEPEND} )
-   logrotate? ( app-admin/logrotate )
-   wallet? ( ${WALLET_DEPEND} )
-   upnp? ( net-libs/miniupnpc:0= )
-   virtual/bitcoin-leveldb
-"
-
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/bitcoinxt-${My_PV}"
-
-pkg_setup() {
-   local UG='bitcoinxt'
-   enewgroup "${UG}"
-   enewuser "${UG}" -1 -1 /var/lib/bitcoinxt "${UG}"
-}
-
-src_prepare() {
-   epatch "${FILESDIR}/-syslibs.patch"
-   eautoreconf
-}
-
-src_configure() {
-   local my_econf=
-
-   if use upnp; then
-   my_econf="${my_econf} --with-miniupnpc --enable-upnp-default"
-   else
-   my_econf="${my_econf} --without-miniupnpc 
--disable-upnp-default"
-   fi
-   if use wallet; then
-   my_econf="${my_econf} --enable-wallet"
-   else
-   my_econf="${my_econf} --disable-wallet"
-   fi
-   my_econf="${my_econf} --with-system-leveldb"
-   econf \
-   --disable-ccache \
-   --disable-static \
-   --without-libs\
-   --without-utils\
-   --with-daemon  \
-   --without-gui \
-   ${my_econf}  \
-   "$@"
-}
-
-src_compile() {
-   local OPTS=()
-
-   OPTS+=("CXXFLAGS=${CXXFLAGS} -I$(db_includedir "${DB_VER}")")
-   OPTS+=("LDFLAGS=${LDFLAGS} -ldb_cxx-${DB_VER}")
-
-   use ssl  && OPTS+=(USE_SSL=1)
-   use upnp && OPTS+=(USE_UPNP=1)
-
-   cd src || die
-   emake CXX="$(tc-getCXX)" "${OPTS[@]}" bitcoind
-   mv bitcoind ${PN}
-}
-
-src_install() {
-   local my_topdir="/var/lib/bitcoinxt"
-   local my_data="${my_topdir}/.bitcoin"
-
-   dobin src/${PN}
-
-   insinto "${my_data}"
-   if [ -f "${ROOT}${my_data}/bitcoin.conf" ]; then
-   elog "${EROOT}${my_data}/bitcoin.conf already installed - not 
overwriting it"
-   else
-   doins "${FILESDIR}/bitcoin.conf"
-   elog "default ${EROOT}${my_data}/bitcoin.conf installed - you 
will need to edit it"
-   fowners bitcoinxt:bitcoinxt "${my_data}/bitcoin.conf"
-   fperms 400 "${my_data}/bitcoin.conf"
-   fi
-
-   newconfd "${FILESDIR}/bitcoinxt.confd" ${PN}
-   newinitd 

[gentoo-commits] repo/gentoo:master commit in: net-p2p/bitcoinxtd/, net-p2p/bitcoinxtd/files/

2015-12-12 Thread Anthony G. Basile
commit: e3cd40dc957d591b3daae843ec8f650ad375cacc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Dec 13 07:28:25 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Dec 13 07:30:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3cd40dc

net-p2p/bitcoinxtd: add libressl support

Package-Manager: portage-2.2.24

 net-p2p/bitcoinxtd/Manifest  |   1 -
 net-p2p/bitcoinxtd/bitcoinxtd-0.11.0.ebuild  | 120 ---
 net-p2p/bitcoinxtd/bitcoinxtd-0.11.0d.ebuild |   6 +-
 net-p2p/bitcoinxtd/files/bitcoinxt.conf  |   8 --
 4 files changed, 4 insertions(+), 131 deletions(-)

diff --git a/net-p2p/bitcoinxtd/Manifest b/net-p2p/bitcoinxtd/Manifest
index 68b6696..f5c7d53 100644
--- a/net-p2p/bitcoinxtd/Manifest
+++ b/net-p2p/bitcoinxtd/Manifest
@@ -1,2 +1 @@
-DIST bitcoinxtd-0.11.0.tar.gz 5226736 SHA256 
f6fc1651b3cad90bae6f9d70a5f476ca4cd9b8b38681331bccc6d2651c5e2c89 SHA512 
044f2b95644b831641fc48fe65e980438e58e784635b32f393e9aeb6473124708df3870aa3bd3848acd90b4b9785fba9163ad07e5ea7d243c175741429bc2b6b
 WHIRLPOOL 
5b2e692e0ccafff454260bb1f8871bec2775c21124e22cf11fd3d175b2d25634fc514e0cfe6b6334e20692846319e9f5fd1a580d8ef31389d6e84025bc600eaa
 DIST bitcoinxtd-0.11.0d.tar.gz 5408217 SHA256 
66b4bd52ed8b97e28da46ac552396c40853a9d7f765063603552e1cf118a2227 SHA512 
98dd980c1cc65006160819f0e9045bc962cc6faddbde22f7bfea4bbcfef4662a5c1280386f9f68b42bc3e3e99e89ecf02d211fe20107bba57c14e6b3017a339c
 WHIRLPOOL 
9468d20db5ec7e6f5d4f96156ab5568f0870ccb4b8037a9ec3bb0e3636a59f07a846ca731ebe99affda5cfbcd3ec117beeaff025f7aad0ab23a88379ae2c1b23

diff --git a/net-p2p/bitcoinxtd/bitcoinxtd-0.11.0.ebuild 
b/net-p2p/bitcoinxtd/bitcoinxtd-0.11.0.ebuild
deleted file mode 100644
index 78c2366..000
--- a/net-p2p/bitcoinxtd/bitcoinxtd-0.11.0.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DB_VER="4.8"
-
-inherit db-use autotools eutils toolchain-funcs user systemd
-
-DESCRIPTION="BitcoinXT crypto-currency wallet for automated services"
-HOMEPAGE="https://github.com/bitcoinxt/bitcoinxt;
-My_PV="${PV/\.0/}A"
-SRC_URI="https://github.com/bitcoinxt/bitcoinxt/archive/v${My_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="+doc +ssl +logrotate +upnp +wallet"
-
-OPENSSL_DEPEND="dev-libs/openssl:0[-bindist]"
-WALLET_DEPEND="media-gfx/qrencode sys-libs/db:$(db_ver_to_slot 
"${DB_VER}")[cxx]"
-
-RDEPEND="
-   app-shells/bash:0
-   sys-apps/sed
-   dev-libs/boost[threads(+)]
-   dev-libs/glib:2
-   dev-libs/crypto++
-   ssl? ( ${OPENSSL_DEPEND} )
-   logrotate? ( app-admin/logrotate )
-   wallet? ( ${WALLET_DEPEND} )
-   upnp? ( net-libs/miniupnpc )
-   virtual/bitcoin-leveldb
-"
-
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/bitcoinxt-${My_PV}"
-
-pkg_setup() {
-   local UG='bitcoinxt'
-   enewgroup "${UG}"
-   enewuser "${UG}" -1 -1 /var/lib/bitcoinxt "${UG}"
-}
-
-src_prepare() {
-   epatch "${FILESDIR}/-syslibs.patch"
-   eautoreconf
-}
-
-src_configure() {
-   local my_econf=
-
-   if use upnp; then
-   my_econf="${my_econf} --with-miniupnpc --enable-upnp-default"
-   else
-   my_econf="${my_econf} --without-miniupnpc 
--disable-upnp-default"
-   fi
-   if use wallet; then
-   my_econf="${my_econf} --enable-wallet"
-   else
-   my_econf="${my_econf} --disable-wallet"
-   fi
-   my_econf="${my_econf} --with-system-leveldb"
-   econf \
-   --disable-ccache \
-   --disable-static \
-   --without-libs\
-   --without-utils\
-   --with-daemon  \
-   --without-gui \
-   ${my_econf}  \
-   "$@"
-}
-
-src_compile() {
-   local OPTS=()
-
-   OPTS+=("CXXFLAGS=${CXXFLAGS} -I$(db_includedir "${DB_VER}")")
-   OPTS+=("LDFLAGS=${LDFLAGS} -ldb_cxx-${DB_VER}")
-
-   use ssl  && OPTS+=(USE_SSL=1)
-   use upnp && OPTS+=(USE_UPNP=1)
-
-   cd src || die
-   emake CXX="$(tc-getCXX)" "${OPTS[@]}" bitcoind
-   mv bitcoind ${PN}
-}
-
-src_install() {
-   local my_topdir="/var/lib/bitcoinxt"
-   local my_data="${my_topdir}/.bitcoinxt"
-
-   dobin src/${PN}
-
-   insinto "${my_data}"
-   doins "${FILESDIR}/bitcoinxt.conf"
-   fowners bitcoinxt:bitcoinxt "${my_data}/bitcoinxt.conf"
-   fperms 600 "${my_data}/bitcoinxt.conf"
-
-   newconfd "${FILESDIR}/bitcoinxt.confd" ${PN}
-   newinitd "${FILESDIR}/bitcoinxt.initd" ${PN}
-   systemd_dounit "${FILESDIR}/bitcoinxtd.service"
-
-   keepdir "${my_data}"
-   fperms 700 "${my_topdir}"
-   fowners bitcoinxt:bitcoinxt "${my_topdir}"
-   fowners bitcoinxt:bitcoinxt "${my_data}"
-
-   if use doc; then
- 

[gentoo-commits] repo/gentoo:master commit in: net-p2p/bitcoinxtd/, net-p2p/bitcoinxtd/files/

2015-10-08 Thread Anthony G. Basile
commit: 075c3915658d7be2a319d7bf6b9c847de4db4767
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Oct  9 00:48:35 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Oct  9 00:48:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=075c3915

net-p2p/bitcoinxtd: initial commit, bug #557900.

Thanks Ron OHara.

Package-Manager: portage-2.2.20.1

 net-p2p/bitcoinxtd/Manifest   |   1 +
 net-p2p/bitcoinxtd/bitcoinxtd-0.11.0.ebuild   | 120 +
 net-p2p/bitcoinxtd/files/-syslibs.patch   | 243 ++
 net-p2p/bitcoinxtd/files/bitcoinxt.conf   |   8 +
 net-p2p/bitcoinxtd/files/bitcoinxt.confd  |  12 ++
 net-p2p/bitcoinxtd/files/bitcoinxt.initd  |  29 +++
 net-p2p/bitcoinxtd/files/bitcoinxtd.logrotate |   8 +
 net-p2p/bitcoinxtd/files/bitcoinxtd.service   |  30 
 net-p2p/bitcoinxtd/metadata.xml   |  19 ++
 9 files changed, 470 insertions(+)

diff --git a/net-p2p/bitcoinxtd/Manifest b/net-p2p/bitcoinxtd/Manifest
new file mode 100644
index 000..0b2beb9
--- /dev/null
+++ b/net-p2p/bitcoinxtd/Manifest
@@ -0,0 +1 @@
+DIST bitcoinxtd-0.11.0.tar.gz 5226736 SHA256 
f6fc1651b3cad90bae6f9d70a5f476ca4cd9b8b38681331bccc6d2651c5e2c89 SHA512 
044f2b95644b831641fc48fe65e980438e58e784635b32f393e9aeb6473124708df3870aa3bd3848acd90b4b9785fba9163ad07e5ea7d243c175741429bc2b6b
 WHIRLPOOL 
5b2e692e0ccafff454260bb1f8871bec2775c21124e22cf11fd3d175b2d25634fc514e0cfe6b6334e20692846319e9f5fd1a580d8ef31389d6e84025bc600eaa

diff --git a/net-p2p/bitcoinxtd/bitcoinxtd-0.11.0.ebuild 
b/net-p2p/bitcoinxtd/bitcoinxtd-0.11.0.ebuild
new file mode 100644
index 000..7fe3e69
--- /dev/null
+++ b/net-p2p/bitcoinxtd/bitcoinxtd-0.11.0.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DB_VER="4.8"
+
+inherit db-use autotools eutils toolchain-funcs user systemd
+
+DESCRIPTION="BitcoinXT crypto-currency wallet for automated services"
+HOMEPAGE="https://github/bitcoinxt/bitcoinxt;
+My_PV="${PV/\.0/}A"
+SRC_URI="https://github.com/bitcoinxt/bitcoinxt/archive/v${My_PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="+doc +ssl +logrotate +upnp +wallet"
+
+OPENSSL_DEPEND="dev-libs/openssl:0[-bindist]"
+WALLET_DEPEND="media-gfx/qrencode sys-libs/db:$(db_ver_to_slot 
"${DB_VER}")[cxx]"
+
+RDEPEND="
+   app-shells/bash:0
+   sys-apps/sed
+   dev-libs/boost[threads(+)]
+   dev-libs/glib:2
+   dev-libs/crypto++
+   ssl? ( ${OPENSSL_DEPEND} )
+   logrotate? ( app-admin/logrotate )
+   wallet? ( ${WALLET_DEPEND} )
+   upnp? ( net-libs/miniupnpc )
+   virtual/bitcoin-leveldb
+"
+
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/bitcoinxt-${My_PV}"
+
+pkg_setup() {
+   local UG='bitcoinxt'
+   enewgroup "${UG}"
+   enewuser "${UG}" -1 -1 /var/lib/bitcoinxt "${UG}"
+}
+
+src_prepare() {
+   epatch "${FILESDIR}/-syslibs.patch"
+   eautoreconf
+}
+
+src_configure() {
+   local my_econf=
+
+   if use upnp; then
+   my_econf="${my_econf} --with-miniupnpc --enable-upnp-default"
+   else
+   my_econf="${my_econf} --without-miniupnpc 
--disable-upnp-default"
+   fi
+   if use wallet; then
+   my_econf="${my_econf} --enable-wallet"
+   else
+   my_econf="${my_econf} --disable-wallet"
+   fi
+   my_econf="${my_econf} --with-system-leveldb"
+   econf \
+   --disable-ccache \
+   --disable-static \
+   --without-libs\
+   --without-utils\
+   --with-daemon  \
+   --without-gui \
+   ${my_econf}  \
+   "$@"
+}
+
+src_compile() {
+   local OPTS=()
+
+   OPTS+=("CXXFLAGS=${CXXFLAGS} -I$(db_includedir "${DB_VER}")")
+   OPTS+=("LDFLAGS=${LDFLAGS} -ldb_cxx-${DB_VER}")
+
+   use ssl  && OPTS+=(USE_SSL=1)
+   use upnp && OPTS+=(USE_UPNP=1)
+
+   cd src || die
+   emake CXX="$(tc-getCXX)" "${OPTS[@]}" bitcoind
+   mv bitcoind ${PN}
+}
+
+src_install() {
+   local my_topdir="/var/lib/bitcoinxt"
+   local my_data="${my_topdir}/.bitcoinxt"
+
+   dobin src/${PN}
+
+   insinto "${my_data}"
+   doins "${FILESDIR}/bitcoinxt.conf"
+   fowners bitcoinxt:bitcoinxt "${my_data}/bitcoinxt.conf"
+   fperms 600 "${my_data}/bitcoinxt.conf"
+
+   newconfd "${FILESDIR}/bitcoinxt.confd" ${PN}
+   newinitd "${FILESDIR}/bitcoinxt.initd" ${PN}
+   systemd_dounit "${FILESDIR}/bitcoinxtd.service"
+
+   keepdir "${my_data}"
+   fperms 700 "${my_topdir}"
+   fowners bitcoinxt:bitcoinxt "${my_topdir}"
+   fowners bitcoinxt:bitcoinxt "${my_data}"
+
+   if use doc; then
+   dodoc README.md
+   dodoc doc/release-notes.md
+   fi
+
+   if