* [gentoo-commits] repo/gentoo:master commit in: net-p2p/ppcoind/
@ 2016-07-11 11:24 Anthony G. Basile
0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile @ 2016-07-11 11:24 UTC (permalink / raw
To: gentoo-commits
commit: 7b958be670333705681f0b2820d4f066863cc5e6
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 11 11:04:53 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Jul 11 11:04:53 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b958be6
net-p2p/ppcoind: drop to maintainer-needed
Package-Manager: portage-2.2.28
net-p2p/ppcoind/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/net-p2p/ppcoind/metadata.xml b/net-p2p/ppcoind/metadata.xml
index 85fa05d..f08d8cf 100644
--- a/net-p2p/ppcoind/metadata.xml
+++ b/net-p2p/ppcoind/metadata.xml
@@ -1,10 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>blueness@gentoo.org</email>
- <name>Anthony G. Basile</name>
- </maintainer>
+ <!-- maintainer-needed -->
<use>
<flag name="logrotate">Use app-admin/logrotate for rotating logs</flag>
</use>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/ppcoind/
@ 2018-05-20 0:33 Aaron Bauman
0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2018-05-20 0:33 UTC (permalink / raw
To: gentoo-commits
commit: 36ca13142abd0a08239c2ea51d3dd9ed23f4a14e
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat May 19 06:59:29 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun May 20 00:31:18 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36ca1314
net-p2p/ppcoind: remove old
net-p2p/ppcoind/ppcoind-0.4.0.ebuild | 118 -----------------------------------
1 file changed, 118 deletions(-)
diff --git a/net-p2p/ppcoind/ppcoind-0.4.0.ebuild b/net-p2p/ppcoind/ppcoind-0.4.0.ebuild
deleted file mode 100644
index f0cc1712c90..00000000000
--- a/net-p2p/ppcoind/ppcoind-0.4.0.ebuild
+++ /dev/null
@@ -1,118 +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 eutils systemd user
-
-MyPV="${PV/_/-}"
-MyPN="ppcoin"
-MyP="${MyPN}-${MyPV}"
-
-DESCRIPTION="Cryptocurrency forked from Bitcoin which aims to be energy efficiency"
-HOMEPAGE="http://peercoin.net/"
-SRC_URI="mirror://sourceforge/${MyPN}/${MyP}-linux.tar.gz -> ${MyP}.tar.gz"
-
-LICENSE="MIT ISC GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples ipv6 logrotate upnp"
-
-RDEPEND="
- dev-libs/boost[threads(+)]
- dev-libs/openssl:0[-bindist]
- logrotate? (
- app-admin/logrotate
- )
- upnp? (
- net-libs/miniupnpc
- )
- sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
-"
-DEPEND="${RDEPEND}
- >=app-shells/bash-4.1
- sys-apps/sed
-"
-
-S="${WORKDIR}/${MyP}-linux/src"
-
-pkg_setup() {
- local UG='ppcoin'
- enewgroup "${UG}"
- enewuser "${UG}" -1 -1 /var/lib/ppcoin "${UG}"
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gcc6.patch
-
- 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_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=-")
-
- 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[@]}" ${PN}
-}
-
-#Tests are broken
-#src_test() {
-# cd src || die
-# emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" -f makefile.unix "${OPTS[@]}" test_ppcoin
-# ./test_ppcoin || die 'Tests failed'
-#}
-
-src_install() {
- dobin src/${PN}
-
- insinto /etc/ppcoin
- doins "${FILESDIR}/ppcoin.conf"
- fowners ppcoin:ppcoin /etc/ppcoin/ppcoin.conf
- fperms 600 /etc/ppcoin/ppcoin.conf
-
- newconfd "${FILESDIR}/ppcoin.confd" ${PN}
- newinitd "${FILESDIR}/ppcoin.initd-r1" ${PN}
- systemd_dounit "${FILESDIR}/ppcoin.service"
-
- keepdir /var/lib/ppcoin/.ppcoin
- fperms 700 /var/lib/ppcoin
- fowners ppcoin:ppcoin /var/lib/ppcoin/
- fowners ppcoin:ppcoin /var/lib/ppcoin/.ppcoin
- dosym /etc/ppcoin/ppcoin.conf /var/lib/ppcoin/.ppcoin/ppcoin.conf
-
- dodoc ../README
- dodoc README.md
- newman contrib/debian/manpages/bitcoind.1 ppcoind.1
- newman contrib/debian/manpages/bitcoin.conf.5 ppcoin.conf.5
-
- if use examples; then
- docinto examples
- dodoc -r contrib/{bitrpc,gitian-descriptors,gitian-downloader,pyminer,wallettools}
-
- fi
-
- if use logrotate; then
- insinto /etc/logrotate.d
- newins "${FILESDIR}/ppcoind.logrotate" ppcoind
- fi
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/ppcoind/
@ 2018-05-20 23:26 Aaron Bauman
0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2018-05-20 23:26 UTC (permalink / raw
To: gentoo-commits
commit: 5686974f9fa9a45c207c64494f4e8e43cb66e880
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun May 20 12:13:29 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun May 20 23:25:10 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5686974f
net-p2p/ppcoind: use HTTPS
net-p2p/ppcoind/ppcoind-0.4.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-p2p/ppcoind/ppcoind-0.4.0-r1.ebuild b/net-p2p/ppcoind/ppcoind-0.4.0-r1.ebuild
index 1a5131498ab..08d250f53ef 100644
--- a/net-p2p/ppcoind/ppcoind-0.4.0-r1.ebuild
+++ b/net-p2p/ppcoind/ppcoind-0.4.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -12,7 +12,7 @@ MyPN="ppcoin"
MyP="${MyPN}-${MyPV}"
DESCRIPTION="Cryptocurrency forked from Bitcoin which aims to be energy efficiency"
-HOMEPAGE="http://peercoin.net/"
+HOMEPAGE="https://peercoin.net/"
SRC_URI="mirror://sourceforge/${MyPN}/${MyP}-linux.tar.gz -> ${MyP}.tar.gz"
LICENSE="MIT ISC GPL-2"
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-05-20 23:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-11 11:24 [gentoo-commits] repo/gentoo:master commit in: net-p2p/ppcoind/ Anthony G. Basile
-- strict thread matches above, loose matches on Subject: below --
2018-05-20 0:33 Aaron Bauman
2018-05-20 23:26 Aaron Bauman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox