From: "Anthony G. Basile (blueness)" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/datacoin-hp: ChangeLog metadata.xml datacoin-hp-9999.ebuild
Date: Sat, 28 Dec 2013 16:15:40 +0000 (UTC) [thread overview]
Message-ID: <20131228161541.0827B2004E@flycatcher.gentoo.org> (raw)
blueness 13/12/28 16:15:40
Added: ChangeLog metadata.xml datacoin-hp-9999.ebuild
Log:
Initial commit. Thanks likewhoa\!
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.1 net-p2p/datacoin-hp/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/datacoin-hp/ChangeLog?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/datacoin-hp/ChangeLog?rev=1.1&content-type=text/plain
Index: ChangeLog
===================================================================
# ChangeLog for net-p2p/datacoin-hp
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/datacoin-hp/ChangeLog,v 1.1 2013/12/28 16:15:40 blueness Exp $
*datacoin-hp-9999 (28 Dec 2013)
28 Dec 2013; Anthony G. Basile <blueness@gentoo.org>
+datacoin-hp-9999.ebuild, +files/datacoin.conf, +files/datacoin.confd,
+files/datacoin.initd, +files/datacoin.logrotate, +files/datacoin.service,
+files/datacoin-hp-sys_leveldb.patch, +metadata.xml:
Initial commit. Thanks likewhoa\!
1.1 net-p2p/datacoin-hp/metadata.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/datacoin-hp/metadata.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/datacoin-hp/metadata.xml?rev=1.1&content-type=text/plain
Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>email@missionaccomplish.com</email>
<name>Fernando V.</name>
</maintainer>
<maintainer>
<email>blueness@gentoo.org</email>
<name>Anthony G. Basile</name>
</maintainer>
<use>
<flag name='logrotate'>Use app-admin/logrotate for rotating logs</flag>
</use>
</pkgmetadata>
1.1 net-p2p/datacoin-hp/datacoin-hp-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/datacoin-hp/datacoin-hp-9999.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/datacoin-hp/datacoin-hp-9999.ebuild?rev=1.1&content-type=text/plain
Index: datacoin-hp-9999.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/datacoin-hp/datacoin-hp-9999.ebuild,v 1.1 2013/12/28 16:15:40 blueness Exp $
EAPI=5
DB_VER="4.8"
inherit bash-completion-r1 git-2 eutils db-use systemd
MyPV="${PV/_/-}"
MyPN="${PN/-hp/d}"
MyP="primecoin-${MyPV}"
DESCRIPTION="High-performance version of datacoin (primecoin-hp fork)."
HOMEPAGE="https://github.com/foo1inge/datacoin-hp"
EGIT_REPO_URI="https://github.com/foo1inge/${PN}.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bash-completion examples upnp ipv6 examples logrotate hardened"
RDEPEND="
dev-libs/boost[threads(+)]
dev-libs/openssl:0[-bindist]
upnp? (
net-libs/miniupnpc
)
sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
<=dev-libs/leveldb-1.12.0[-snappy]
"
DEPEND="${RDEPEND}
>=app-shells/bash-4.1
sys-apps/sed
net-p2p/bitcoind
"
S="${WORKDIR}/${MyP}-linux/src"
src_prepare() {
epatch "${FILESDIR}"/${PN}-sys_leveldb.patch
rm -r src/leveldd
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
}
pkg_setup() {
local UG="${PN}"
enewgroup "${UG}"
enewuser "${UG}" -1 -1 /var/lib/datacoin "${UG}"
}
src_configure() {
OPTS=()
OPTS+=("DEBUGFLAGS=")
OPTS+=("CXXFLAGS=${CXXFLAGS}")
OPTS+=("LDFLAGS=${LDFLAGS}")
if use upnp; then
OPTS+=("USE_UPNP=1")
else
OPTS+=("USE_UPNP=")
fi
use ipv6 || OPTS+=("USE_IPV6=0")
use hardened || OPTS+=("PIE=1")
OPTS+=("USE_SYSTEM_LEVELDB=1")
OPTS+=("BDB_INCLUDE_PATH=$(db_includedir "${DB_VER}")")
OPTS+=("BDB_LIB_SUFFIX=-${DB_VER}")
cd src || die
emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" -f makefile.unix "${OPTS[@]}" ${MyPN}
}
#Tests are broken with and without our primecoin-sys_leveldb.patch.
#When tests work, make sure to inherit toolchain-funcs
#src_test() {
# cd src || die
# emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" -f makefile.unix "${OPTS[@]}" test_primecoin
# ./test_primecoin || die 'Tests failed'
#}
src_install() {
dobin src/${MyPN}
insinto /etc/datacoin
doins "${FILESDIR}/datacoin.conf"
fowners ${PN}:${PN} /etc/datacoin/datacoin.conf
fperms 600 /etc/datacoin/datacoin.conf
newconfd "${FILESDIR}/datacoin.confd" ${PN}
newinitd "${FILESDIR}/datacoin.initd" ${PN}
systemd_dounit "${FILESDIR}/datacoin.service"
keepdir /var/lib/datacoin/.datacoin
fperms 700 /var/lib/datacoin
fowners ${PN}:${PN} /var/lib/datacoin/
fowners ${PN}:${PN} /var/lib/datacoin/.datacoin
dosym /etc/datacoin/datacoin.conf /var/lib/datacoin/.datacoin/datacoin.conf
dodoc doc/README.md doc/release-notes.md
newman contrib/debian/manpages/bitcoind.1 ${MyPN}.1
newman contrib/debian/manpages/bitcoin.conf.5 datacoin.conf.5
if use bash-completion; then
newbashcomp contrib/bitcoind.bash-completion ${PN}.bash-completion
fi
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}/datacoind.logrotate" ${MyPN}
fi
}
reply other threads:[~2013-12-28 16:15 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20131228161541.0827B2004E@flycatcher.gentoo.org \
--to=blueness@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox