* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2015-08-22 16:04 Anthony G. Basile
0 siblings, 0 replies; 17+ messages in thread
From: Anthony G. Basile @ 2015-08-22 16:04 UTC (permalink / raw
To: gentoo-commits
commit: 9fb2cd96072c5d362290a4078c6ec513ff899346
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 22 16:02:41 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Aug 22 16:08:08 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb2cd96
net-p2p/litecoind: restrict version of leveldb.
Gentoo-Bug: 558266
Package-Manager: portage-2.2.20.1
net-p2p/litecoind/litecoind-0.10.2.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-p2p/litecoind/litecoind-0.10.2.2-r1.ebuild b/net-p2p/litecoind/litecoind-0.10.2.2-r1.ebuild
index 0a3c95d..07e92b8 100644
--- a/net-p2p/litecoind/litecoind-0.10.2.2-r1.ebuild
+++ b/net-p2p/litecoind/litecoind-0.10.2.2-r1.ebuild
@@ -27,7 +27,7 @@ RDEPEND="
logrotate? ( app-admin/logrotate )
upnp? ( net-libs/miniupnpc )
sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
- virtual/bitcoin-leveldb
+ <=dev-libs/leveldb-1.15.0-r1
"
DEPEND="${RDEPEND}
>=app-shells/bash-4.1
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2015-08-22 16:04 Anthony G. Basile
0 siblings, 0 replies; 17+ messages in thread
From: Anthony G. Basile @ 2015-08-22 16:04 UTC (permalink / raw
To: gentoo-commits
commit: ea5f26b45f442d0f9900bb78c94fae8b28bcafe6
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 22 16:06:43 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Aug 22 16:08:12 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea5f26b4
net-p2p/litecoind: remove older unstable version.
Package-Manager: portage-2.2.20.1
net-p2p/litecoind/Manifest | 1 -
net-p2p/litecoind/litecoind-0.8.7.4.ebuild | 123 -----------------------------
2 files changed, 124 deletions(-)
diff --git a/net-p2p/litecoind/Manifest b/net-p2p/litecoind/Manifest
index 1ead511..992235c 100644
--- a/net-p2p/litecoind/Manifest
+++ b/net-p2p/litecoind/Manifest
@@ -1,2 +1 @@
DIST litecoin-0.10.2.2.tar.gz 4700783 SHA256 952c84b181323db17a8fa23217f59b576ad3ebad92c158b3a7c29d458a1130dc SHA512 46e4c014ae8527dd58af073bab96ea4fd55c69fcc63eaa4fd600bf3c1fc2102500151b49431a72b55334a409d4f5226937cd0c5337feaa4ad49e6ef9e9728aba WHIRLPOOL 5c1d5605d4afb16744fcf0b09dd52eb574aea0cdd9754f94d4cfd9ac064491a0e192d8c4b1a3324e355d71758735265b272dfa41f938212e17badb9f8a70698b
-DIST litecoin-0.8.7.4.tar.gz 4808429 SHA256 032d1eb2ffb06ce467f514e08a66f42bcd507df2d8f1cf2c0541f2906288931a SHA512 14588dab6450bee439c3af16e277afc1f2ff562c93463d9767da27cf724cd6bb4a1c64100806d61dc1d062a39f440e4878e19b425f29e866562acc56c893cca5 WHIRLPOOL 1329d7c234c75b5083f58f5edf69b6ea9acc13f48a9734cd839001dcd3e52c10d3ade55ac853e196deca8b149aba00a3590e52cf766f62b941bd4e4828f10b96
diff --git a/net-p2p/litecoind/litecoind-0.8.7.4.ebuild b/net-p2p/litecoind/litecoind-0.8.7.4.ebuild
deleted file mode 100644
index 26d0a7f..0000000
--- a/net-p2p/litecoind/litecoind-0.8.7.4.ebuild
+++ /dev/null
@@ -1,123 +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 bash-completion-r1 db-use eutils systemd user
-
-MyPV="${PV/_/-}"
-MyPN="litecoin"
-MyP="${MyPN}-${MyPV}"
-
-DESCRIPTION="P2P Internet currency based on Bitcoin but easier to mine"
-HOMEPAGE="https://litecoin.org/"
-SRC_URI="https://github.com/${MyPN}-project/${MyPN}/archive/v${MyPV}.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]
- <=dev-libs/leveldb-1.12.0[-snappy]
-"
-DEPEND="${RDEPEND}
- >=app-shells/bash-4.1
- sys-apps/sed
-"
-
-S="${WORKDIR}/${MyP}"
-
-pkg_setup() {
- local UG='litecoin'
- enewgroup "${UG}"
- enewuser "${UG}" -1 -1 /var/lib/litecoin "${UG}"
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${MyPN}-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_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 with and without our litecoin-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_litecoin
-# ./test_litecoin || die 'Tests failed'
-#}
-
-src_install() {
- dobin src/${PN}
-
- insinto /etc/litecoin
- doins "${FILESDIR}/litecoin.conf"
- fowners litecoin:litecoin /etc/litecoin/litecoin.conf
- fperms 600 /etc/litecoin/litecoin.conf
-
- newconfd "${FILESDIR}/litecoin.confd" ${PN}
- newinitd "${FILESDIR}/litecoin.initd-r1" ${PN}
- systemd_dounit "${FILESDIR}/litecoin.service"
-
- keepdir /var/lib/litecoin/.litecoin
- fperms 700 /var/lib/litecoin
- fowners litecoin:litecoin /var/lib/litecoin/
- fowners litecoin:litecoin /var/lib/litecoin/.litecoin
- dosym /etc/litecoin/litecoin.conf /var/lib/litecoin/.litecoin/litecoin.conf
-
- dodoc doc/README.md doc/release-notes.md
- newman contrib/debian/manpages/bitcoind.1 litecoind.1
- newman contrib/debian/manpages/bitcoin.conf.5 litecoin.conf.5
-
- sed -i -e 's/bitcoin/litecoin/g' contrib/bitcoind.bash-completion
- newbashcomp contrib/bitcoind.bash-completion ${PN}.bash-completion
-
- 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}/litecoind.logrotate" litecoind
- fi
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2015-12-16 17:34 Anthony G. Basile
0 siblings, 0 replies; 17+ messages in thread
From: Anthony G. Basile @ 2015-12-16 17:34 UTC (permalink / raw
To: gentoo-commits
commit: 77b83b512601cabd6160e39fc7dcff18c2660b11
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 16 17:37:15 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Wed Dec 16 17:37:15 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77b83b51
net-p2p/litecoind: fix executable GNU stack.
Package-Manager: portage-2.2.24
net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild b/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild
index 9c14a51..c7f7068 100644
--- a/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild
+++ b/net-p2p/litecoind/litecoind-0.10.2.2-r3.ebuild
@@ -6,7 +6,7 @@ EAPI=5
DB_VER="4.8"
-inherit autotools db-use eutils systemd user
+inherit autotools db-use eutils flag-o-matic systemd user
MyPV="${PV/_/-}"
MyPN="litecoin"
@@ -51,6 +51,9 @@ src_prepare() {
}
src_configure() {
+ # To avoid executable GNU stack.
+ append-ldflags -Wl,-z,noexecstack
+
local my_econf=
if use upnp; then
my_econf="${my_econf} --with-miniupnpc --enable-upnp-default"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2016-07-08 16:05 Anthony G. Basile
0 siblings, 0 replies; 17+ messages in thread
From: Anthony G. Basile @ 2016-07-08 16:05 UTC (permalink / raw
To: gentoo-commits
commit: a8fc7896222f21485b3110ad51ea0525a613ff95
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 8 16:07:46 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Fri Jul 8 16:07:46 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8fc7896
net-p2p/litecoind: transfer maintainership to Marc Popp
Package-Manager: portage-2.2.28
net-p2p/litecoind/metadata.xml | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/net-p2p/litecoind/metadata.xml b/net-p2p/litecoind/metadata.xml
index a4db4a2..49aac94 100644
--- a/net-p2p/litecoind/metadata.xml
+++ b/net-p2p/litecoind/metadata.xml
@@ -2,8 +2,13 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
- <email>blueness@gentoo.org</email>
- <name>Anthony G. Basile</name>
+ <email>marc.popp@sunny-computing.de</email>
+ <name>Marc Popp</name>
+ <description>Maintainer. Assign bugs to him</description>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
</maintainer>
<use>
<flag name="logrotate">Use app-admin/logrotate for rotating logs</flag>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2016-08-25 18:13 Anthony G. Basile
0 siblings, 0 replies; 17+ messages in thread
From: Anthony G. Basile @ 2016-08-25 18:13 UTC (permalink / raw
To: gentoo-commits
commit: 2b633f72bcc0ea57e51c152dff2138552982a2ed
Author: Marc Popp <Marc.Popp <AT> sunny-computing <DOT> de>
AuthorDate: Thu Aug 25 16:47:48 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Aug 25 18:11:35 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b633f72
net-p2p/litecoind: Version Bump to 0.10.4.0, bug #592100
net-p2p/litecoind/Manifest | 1 +
net-p2p/litecoind/litecoind-0.10.4.0.ebuild | 103 ++++++++++++++++++++++++++++
2 files changed, 104 insertions(+)
diff --git a/net-p2p/litecoind/Manifest b/net-p2p/litecoind/Manifest
index 992235c..a1d9c8d 100644
--- a/net-p2p/litecoind/Manifest
+++ b/net-p2p/litecoind/Manifest
@@ -1 +1,2 @@
DIST litecoin-0.10.2.2.tar.gz 4700783 SHA256 952c84b181323db17a8fa23217f59b576ad3ebad92c158b3a7c29d458a1130dc SHA512 46e4c014ae8527dd58af073bab96ea4fd55c69fcc63eaa4fd600bf3c1fc2102500151b49431a72b55334a409d4f5226937cd0c5337feaa4ad49e6ef9e9728aba WHIRLPOOL 5c1d5605d4afb16744fcf0b09dd52eb574aea0cdd9754f94d4cfd9ac064491a0e192d8c4b1a3324e355d71758735265b272dfa41f938212e17badb9f8a70698b
+DIST litecoin-0.10.4.0.tar.gz 4730189 SHA256 a9adb6d2ae555afdaa2a5febb81341ac506930cf04ab95b9dc3ab99a4de0405e SHA512 ae17e754d188efb1b51a376a52fe03e43b58c5059673b7dd4ecbf4f48574290b84011525fef2e10893f53e4da3d6ad9b5577001bb40aef7080d4c2479f4714a9 WHIRLPOOL 21737a593390cd8ef41e5adb77e6cd5ccb886bdbc8d2ea96078bac99ffab5c95347cd86f1e9047b5ee528a112bfe3ae0e5ef5be3498b7aa36ec169bdfdaf4818
diff --git a/net-p2p/litecoind/litecoind-0.10.4.0.ebuild b/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
new file mode 100644
index 00000000..283321c
--- /dev/null
+++ b/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DB_VER="4.8"
+
+inherit autotools db-use eutils flag-o-matic systemd user
+
+MyPV="${PV/_/-}"
+MyPN="litecoin"
+MyP="${MyPN}-${MyPV}"
+
+DESCRIPTION="Litecoin is a peer-to-peer Internet currency that enables instant, near-zero cost payments to anyone in the world. It's based on Bitcoin and not so widely adapted."
+HOMEPAGE="https://litecoin.org/"
+SRC_URI="https://github.com/${MyPN}-project/${MyPN}/archive/v${MyPV}.tar.gz -> ${MyP}.tar.gz"
+
+LICENSE="MIT ISC GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="logrotate upnp +wallet"
+
+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]
+ >=dev-libs/leveldb-1.18-r1
+"
+DEPEND="${RDEPEND}
+ >=app-shells/bash-4.1
+ sys-apps/sed
+"
+
+S="${WORKDIR}/${MyP}"
+
+pkg_setup() {
+ local UG='litecoin'
+ enewgroup "${UG}"
+ enewuser "${UG}" -1 -1 /var/lib/litecoin "${UG}"
+}
+
+src_prepare() {
+ epatch "${FILESDIR}"/0.9.0-sys_leveldb.patch
+ epatch "${FILESDIR}"/litecoind-0.10.2.2-memenv_h.patch
+ epatch "${FILESDIR}"/litecoind-0.10.2.2-fix-gnustack.patch
+ eautoreconf
+ rm -r src/leveldb
+}
+
+src_configure() {
+ # To avoid executable GNU stack.
+ append-ldflags -Wl,-z,noexecstack
+
+ 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
+ econf \
+ $(use_enable wallet)\
+ --disable-ccache \
+ --disable-static \
+ --disable-tests \
+ --with-system-leveldb \
+ --with-system-libsecp256k1 \
+ --without-libs \
+ --with-daemon \
+ --without-gui \
+ --without-qrencode \
+ ${my_econf}
+}
+
+src_install() {
+ default
+
+ insinto /etc/litecoin
+ doins "${FILESDIR}/litecoin.conf"
+ fowners litecoin:litecoin /etc/litecoin/litecoin.conf
+ fperms 600 /etc/litecoin/litecoin.conf
+
+ newconfd "${FILESDIR}/litecoin.confd" ${PN}
+ newinitd "${FILESDIR}/litecoin.initd-r1" ${PN}
+ systemd_dounit "${FILESDIR}/litecoin.service"
+
+ keepdir /var/lib/litecoin/.litecoin
+ fperms 700 /var/lib/litecoin
+ fowners litecoin:litecoin /var/lib/litecoin/
+ fowners litecoin:litecoin /var/lib/litecoin/.litecoin
+ dosym /etc/litecoin/litecoin.conf /var/lib/litecoin/.litecoin/litecoin.conf
+
+ dodoc doc/README.md doc/release-notes.md
+ newman contrib/debian/manpages/bitcoind.1 litecoind.1
+ newman contrib/debian/manpages/bitcoin.conf.5 litecoin.conf.5
+
+ if use logrotate; then
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/litecoind.logrotate" litecoind
+ fi
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2017-08-01 14:32 Amy Liffey
0 siblings, 0 replies; 17+ messages in thread
From: Amy Liffey @ 2017-08-01 14:32 UTC (permalink / raw
To: gentoo-commits
commit: 9a9e74485c76135992f95bbe4eaf819a5cb54945
Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 1 14:26:56 2017 +0000
Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
CommitDate: Tue Aug 1 14:31:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a9e7448
net-p2p/litecoind: remove inactive proxy maintainer
- fix description
Package-Manager: Portage-2.3.6, Repoman-2.3.1
net-p2p/litecoind/litecoind-0.10.4.0.ebuild | 2 +-
net-p2p/litecoind/metadata.xml | 10 +---------
2 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/net-p2p/litecoind/litecoind-0.10.4.0.ebuild b/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
index f4502b3b319..32c939ec998 100644
--- a/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
+++ b/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
@@ -11,7 +11,7 @@ MyPV="${PV/_/-}"
MyPN="litecoin"
MyP="${MyPN}-${MyPV}"
-DESCRIPTION="Litecoin is a peer-to-peer Internet currency that enables instant, near-zero cost payments to anyone in the world. It's based on Bitcoin and not so widely adapted."
+DESCRIPTION="P2P Internet currency based on Bitcoin but easier to mine"
HOMEPAGE="https://litecoin.org/"
SRC_URI="https://github.com/${MyPN}-project/${MyPN}/archive/v${MyPV}.tar.gz -> ${MyP}.tar.gz"
diff --git a/net-p2p/litecoind/metadata.xml b/net-p2p/litecoind/metadata.xml
index 49aac94c26a..e5fa4a88750 100644
--- a/net-p2p/litecoind/metadata.xml
+++ b/net-p2p/litecoind/metadata.xml
@@ -1,15 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>marc.popp@sunny-computing.de</email>
- <name>Marc Popp</name>
- <description>Maintainer. Assign bugs to him</description>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
+<!-- maintainer-needed -->
<use>
<flag name="logrotate">Use app-admin/logrotate for rotating logs</flag>
<flag name="wallet">Enable wallet support</flag>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2018-06-17 20:34 David Seifert
0 siblings, 0 replies; 17+ messages in thread
From: David Seifert @ 2018-06-17 20:34 UTC (permalink / raw
To: gentoo-commits
commit: 7414979372d381ea034139aaeefd9f1ad4ad3fbf
Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
AuthorDate: Fri Jun 15 23:55:06 2018 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jun 17 20:33:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74149793
net-p2p/litecoind: add slot operator to dev-libs/leveldb
Package-Manager: Portage-2.3.40, Repoman-2.3.9
net-p2p/litecoind/litecoind-0.10.4.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-p2p/litecoind/litecoind-0.10.4.0.ebuild b/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
index 32c939ec998..343fe5987cf 100644
--- a/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
+++ b/net-p2p/litecoind/litecoind-0.10.4.0.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=5
@@ -26,7 +26,7 @@ RDEPEND="
logrotate? ( app-admin/logrotate )
upnp? ( net-libs/miniupnpc )
sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
- >=dev-libs/leveldb-1.18-r1
+ >=dev-libs/leveldb-1.18-r1:=
"
DEPEND="${RDEPEND}
>=app-shells/bash-4.1
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2021-03-04 23:22 Conrad Kostecki
0 siblings, 0 replies; 17+ messages in thread
From: Conrad Kostecki @ 2021-03-04 23:22 UTC (permalink / raw
To: gentoo-commits
commit: 7f93c4f343fe977ccd3cafba67a8839bde1e7b61
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 4 23:17:18 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Mar 4 23:17:18 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f93c4f3
net-p2p/litecoind: update DESCRIPTION
Closes: https://bugs.gentoo.org/607846
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
net-p2p/litecoind/litecoind-0.10.4.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-p2p/litecoind/litecoind-0.10.4.0.ebuild b/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
index 343fe5987cf..7fce85154fd 100644
--- a/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
+++ b/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -11,7 +11,7 @@ MyPV="${PV/_/-}"
MyPN="litecoin"
MyP="${MyPN}-${MyPV}"
-DESCRIPTION="P2P Internet currency based on Bitcoin but easier to mine"
+DESCRIPTION="The offical daemon to run your own (full) Litecoin node"
HOMEPAGE="https://litecoin.org/"
SRC_URI="https://github.com/${MyPN}-project/${MyPN}/archive/v${MyPV}.tar.gz -> ${MyP}.tar.gz"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2021-04-17 19:20 Conrad Kostecki
0 siblings, 0 replies; 17+ messages in thread
From: Conrad Kostecki @ 2021-04-17 19:20 UTC (permalink / raw
To: gentoo-commits
commit: 7e696b56897a2e6f4cf587463aa682de025fe8f2
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 17 18:45:26 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Apr 17 19:19:33 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e696b56
net-p2p/litecoind: migrate to glep 81
Closes: https://bugs.gentoo.org/781449
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild | 108 +++++++++++++++++++++++++
1 file changed, 108 insertions(+)
diff --git a/net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild b/net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild
new file mode 100644
index 00000000000..47158fa5e56
--- /dev/null
+++ b/net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DB_VER="4.8"
+
+inherit autotools db-use flag-o-matic systemd
+
+MY_PV="${PV/_/-}"
+MY_PN="litecoin"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="The offical daemon to run your own (full) Litecoin node"
+HOMEPAGE="https://litecoin.org/"
+SRC_URI="https://github.com/${MY_PN}-project/${MY_PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT ISC GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="logrotate upnp +wallet"
+
+RDEPEND="
+ acct-group/litecoin
+ acct-user/litecoin
+ dev-libs/boost:=[threads(+)]
+ dev-libs/leveldb:=
+ dev-libs/openssl:0[-bindist]
+ sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
+ logrotate? ( app-admin/logrotate )
+ upnp? ( net-libs/miniupnpc )
+"
+DEPEND="
+ ${RDEPEND}
+ >=app-shells/bash-4.1
+ sys-apps/sed
+"
+
+PATCHES=(
+ "${FILESDIR}"/0.9.0-sys_leveldb.patch
+ "${FILESDIR}"/litecoind-0.10.2.2-memenv_h.patch
+ "${FILESDIR}"/litecoind-0.10.2.2-fix-gnustack.patch
+ "${FILESDIR}"/${P}-gcc6.patch
+)
+
+src_prepare() {
+ default
+
+ eautoreconf
+ rm -r src/leveldb
+}
+
+src_configure() {
+ # To avoid executable GNU stack.
+ append-ldflags -Wl,-z,noexecstack
+
+ 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
+
+ local myeconfargs=(
+ $(use_enable wallet)
+ --disable-ccache
+ --disable-static
+ --disable-tests
+ --with-system-leveldb
+ --with-system-libsecp256k1
+ --without-libs
+ --with-daemon
+ --without-gui
+ --without-qrencode
+ ${my_econf}
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+
+ insinto /etc/litecoin
+ doins "${FILESDIR}/litecoin.conf"
+ fowners litecoin:litecoin /etc/litecoin/litecoin.conf
+ fperms 600 /etc/litecoin/litecoin.conf
+
+ newconfd "${FILESDIR}/litecoin.confd" ${PN}
+ newinitd "${FILESDIR}/litecoin.initd-r1" ${PN}
+ systemd_dounit "${FILESDIR}/litecoin.service"
+
+ keepdir /var/lib/litecoin/.litecoin
+ fperms 700 /var/lib/litecoin
+ fowners litecoin:litecoin /var/lib/litecoin/
+ fowners litecoin:litecoin /var/lib/litecoin/.litecoin
+ dosym /etc/litecoin/litecoin.conf /var/lib/litecoin/.litecoin/litecoin.conf
+
+ dodoc doc/README.md doc/release-notes.md
+ newman contrib/debian/manpages/bitcoind.1 litecoind.1
+ newman contrib/debian/manpages/bitcoin.conf.5 litecoin.conf.5
+
+ if use logrotate; then
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/litecoind.logrotate" litecoind
+ fi
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2021-04-17 19:20 Conrad Kostecki
0 siblings, 0 replies; 17+ messages in thread
From: Conrad Kostecki @ 2021-04-17 19:20 UTC (permalink / raw
To: gentoo-commits
commit: 1e25cb76a27102db644080de8e5e4e91466e125e
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 17 18:46:07 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Apr 17 19:19:34 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e25cb76
net-p2p/litecoind: drop old version
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
net-p2p/litecoind/litecoind-0.10.4.0.ebuild | 103 ----------------------------
1 file changed, 103 deletions(-)
diff --git a/net-p2p/litecoind/litecoind-0.10.4.0.ebuild b/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
deleted file mode 100644
index 9bb6c3323dc..00000000000
--- a/net-p2p/litecoind/litecoind-0.10.4.0.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DB_VER="4.8"
-
-inherit autotools db-use epatch flag-o-matic systemd user
-
-MyPV="${PV/_/-}"
-MyPN="litecoin"
-MyP="${MyPN}-${MyPV}"
-
-DESCRIPTION="The offical daemon to run your own (full) Litecoin node"
-HOMEPAGE="https://litecoin.org/"
-SRC_URI="https://github.com/${MyPN}-project/${MyPN}/archive/v${MyPV}.tar.gz -> ${MyP}.tar.gz"
-
-LICENSE="MIT ISC GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="logrotate upnp +wallet"
-
-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]
- >=dev-libs/leveldb-1.18-r1:=
-"
-DEPEND="${RDEPEND}
- >=app-shells/bash-4.1
- sys-apps/sed
-"
-
-S="${WORKDIR}/${MyP}"
-
-pkg_setup() {
- local UG='litecoin'
- enewgroup "${UG}"
- enewuser "${UG}" -1 -1 /var/lib/litecoin "${UG}"
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/0.9.0-sys_leveldb.patch
- epatch "${FILESDIR}"/litecoind-0.10.2.2-memenv_h.patch
- epatch "${FILESDIR}"/litecoind-0.10.2.2-fix-gnustack.patch
- epatch "${FILESDIR}"/${P}-gcc6.patch
- eautoreconf
- rm -r src/leveldb
-}
-
-src_configure() {
- # To avoid executable GNU stack.
- append-ldflags -Wl,-z,noexecstack
-
- 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
- econf \
- $(use_enable wallet)\
- --disable-ccache \
- --disable-static \
- --disable-tests \
- --with-system-leveldb \
- --with-system-libsecp256k1 \
- --without-libs \
- --with-daemon \
- --without-gui \
- --without-qrencode \
- ${my_econf}
-}
-
-src_install() {
- default
-
- insinto /etc/litecoin
- doins "${FILESDIR}/litecoin.conf"
- fowners litecoin:litecoin /etc/litecoin/litecoin.conf
- fperms 600 /etc/litecoin/litecoin.conf
-
- newconfd "${FILESDIR}/litecoin.confd" ${PN}
- newinitd "${FILESDIR}/litecoin.initd-r1" ${PN}
- systemd_dounit "${FILESDIR}/litecoin.service"
-
- keepdir /var/lib/litecoin/.litecoin
- fperms 700 /var/lib/litecoin
- fowners litecoin:litecoin /var/lib/litecoin/
- fowners litecoin:litecoin /var/lib/litecoin/.litecoin
- dosym /etc/litecoin/litecoin.conf /var/lib/litecoin/.litecoin/litecoin.conf
-
- dodoc doc/README.md doc/release-notes.md
- newman contrib/debian/manpages/bitcoind.1 litecoind.1
- newman contrib/debian/manpages/bitcoin.conf.5 litecoin.conf.5
-
- if use logrotate; then
- insinto /etc/logrotate.d
- newins "${FILESDIR}/litecoind.logrotate" litecoind
- fi
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2021-06-17 20:32 Thomas Deutschmann
0 siblings, 0 replies; 17+ messages in thread
From: Thomas Deutschmann @ 2021-06-17 20:32 UTC (permalink / raw
To: gentoo-commits
commit: 6615ccb555f295e7f159a5fc9723e6f81ebfa608
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 17 20:12:45 2021 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Jun 17 20:32:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6615ccb5
net-p2p/litecoind: Fix MissingUseDepDefault for dev-libs/openssl[bindist]
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild b/net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild
index 47158fa5e56..3e3d5494688 100644
--- a/net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild
+++ b/net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild
@@ -26,7 +26,7 @@ RDEPEND="
acct-user/litecoin
dev-libs/boost:=[threads(+)]
dev-libs/leveldb:=
- dev-libs/openssl:0[-bindist]
+ dev-libs/openssl:0[-bindist(-)]
sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
logrotate? ( app-admin/logrotate )
upnp? ( net-libs/miniupnpc )
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2021-06-17 22:18 Thomas Deutschmann
0 siblings, 0 replies; 17+ messages in thread
From: Thomas Deutschmann @ 2021-06-17 22:18 UTC (permalink / raw
To: gentoo-commits
commit: 6cb65566b906d595e205f40d607533d8741e5d60
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 17 22:01:57 2021 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Jun 17 22:18:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb65566
net-p2p/litecoind: rev bump for commit 6615ccb55
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
.../{litecoind-0.10.4.0-r1.ebuild => litecoind-0.10.4.0-r2.ebuild} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild b/net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild
similarity index 100%
rename from net-p2p/litecoind/litecoind-0.10.4.0-r1.ebuild
rename to net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild
^ permalink raw reply [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2021-06-18 14:33 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-06-18 14:33 UTC (permalink / raw
To: gentoo-commits
commit: b6162b4034465a4eda6f6314a445c5e9d7e1da8c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 18 12:50:22 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 18 14:33:22 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6162b40
net-p2p/litecoind: fix AbsoluteSymlink
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../litecoind/{litecoind-0.18.1.ebuild => litecoind-0.18.1-r1.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-p2p/litecoind/litecoind-0.18.1.ebuild b/net-p2p/litecoind/litecoind-0.18.1-r1.ebuild
similarity index 95%
rename from net-p2p/litecoind/litecoind-0.18.1.ebuild
rename to net-p2p/litecoind/litecoind-0.18.1-r1.ebuild
index 03ac46dc52d..9bc5f8cbf0f 100644
--- a/net-p2p/litecoind/litecoind-0.18.1.ebuild
+++ b/net-p2p/litecoind/litecoind-0.18.1-r1.ebuild
@@ -78,7 +78,7 @@ src_install() {
fperms 700 /var/lib/litecoin
fowners litecoin:litecoin /var/lib/litecoin/
fowners litecoin:litecoin /var/lib/litecoin/.litecoin
- dosym /etc/litecoin/litecoin.conf /var/lib/litecoin/.litecoin/litecoin.conf
+ dosym ../../../../etc/litecoin/litecoin.conf /var/lib/litecoin/.litecoin/litecoin.conf
dodoc doc/README.md doc/release-notes.md
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2021-06-18 14:33 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-06-18 14:33 UTC (permalink / raw
To: gentoo-commits
commit: b01aa6674c59fc7a876896953cff266331d5477b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 18 13:10:15 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 18 14:33:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b01aa667
net-p2p/litecoind: fix AbsoluteSymlink
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild b/net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild
index 3e3d5494688..4baece7f884 100644
--- a/net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild
+++ b/net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild
@@ -95,7 +95,7 @@ src_install() {
fperms 700 /var/lib/litecoin
fowners litecoin:litecoin /var/lib/litecoin/
fowners litecoin:litecoin /var/lib/litecoin/.litecoin
- dosym /etc/litecoin/litecoin.conf /var/lib/litecoin/.litecoin/litecoin.conf
+ dosym ../../../../etc/litecoin/litecoin.conf /var/lib/litecoin/.litecoin/litecoin.conf
dodoc doc/README.md doc/release-notes.md
newman contrib/debian/manpages/bitcoind.1 litecoind.1
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2021-07-18 3:50 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-07-18 3:50 UTC (permalink / raw
To: gentoo-commits
commit: 7f13bff130027d7f6f37474c389b1fd62258bd68
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 18 03:28:07 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 18 03:49:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f13bff1
net-p2p/litecoind: drop 0.10.4.0-r2
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-p2p/litecoind/Manifest | 1 -
net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild | 108 -------------------------
2 files changed, 109 deletions(-)
diff --git a/net-p2p/litecoind/Manifest b/net-p2p/litecoind/Manifest
index d318bafd732..5e4199b85ab 100644
--- a/net-p2p/litecoind/Manifest
+++ b/net-p2p/litecoind/Manifest
@@ -1,2 +1 @@
-DIST litecoin-0.10.4.0.tar.gz 4730189 BLAKE2B 3b3e4db10ca7ebb048853a424438d888a239cc736b1b2aa29dd0b6571daec5a64f95aee98a82991cd3e69b26965151f298655ca09745f103ebde1d15216ae2f8 SHA512 ae17e754d188efb1b51a376a52fe03e43b58c5059673b7dd4ecbf4f48574290b84011525fef2e10893f53e4da3d6ad9b5577001bb40aef7080d4c2479f4714a9
DIST litecoin-0.18.1.tar.gz 5122629 BLAKE2B c6cb220bb893518eaf04e1b4b825dc0318103c955da6f262ef13fc9d925b7bae1bb0407a701a04a17bb3040c613b666e6de3331d443046e9d83aec4ed559e02e SHA512 59605cc0c4fd67c128bad0e2cabcc7b6bda1ebf5b23b7fcaee9fa69e86a4349598feba413f0ad42aef9338a42b0d6f8c04306634bd543856a2e7a203aa717f40
diff --git a/net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild b/net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild
deleted file mode 100644
index 4baece7f884..00000000000
--- a/net-p2p/litecoind/litecoind-0.10.4.0-r2.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DB_VER="4.8"
-
-inherit autotools db-use flag-o-matic systemd
-
-MY_PV="${PV/_/-}"
-MY_PN="litecoin"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="The offical daemon to run your own (full) Litecoin node"
-HOMEPAGE="https://litecoin.org/"
-SRC_URI="https://github.com/${MY_PN}-project/${MY_PN}/archive/v${MY_PV}.tar.gz -> ${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MIT ISC GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="logrotate upnp +wallet"
-
-RDEPEND="
- acct-group/litecoin
- acct-user/litecoin
- dev-libs/boost:=[threads(+)]
- dev-libs/leveldb:=
- dev-libs/openssl:0[-bindist(-)]
- sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
- logrotate? ( app-admin/logrotate )
- upnp? ( net-libs/miniupnpc )
-"
-DEPEND="
- ${RDEPEND}
- >=app-shells/bash-4.1
- sys-apps/sed
-"
-
-PATCHES=(
- "${FILESDIR}"/0.9.0-sys_leveldb.patch
- "${FILESDIR}"/litecoind-0.10.2.2-memenv_h.patch
- "${FILESDIR}"/litecoind-0.10.2.2-fix-gnustack.patch
- "${FILESDIR}"/${P}-gcc6.patch
-)
-
-src_prepare() {
- default
-
- eautoreconf
- rm -r src/leveldb
-}
-
-src_configure() {
- # To avoid executable GNU stack.
- append-ldflags -Wl,-z,noexecstack
-
- 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
-
- local myeconfargs=(
- $(use_enable wallet)
- --disable-ccache
- --disable-static
- --disable-tests
- --with-system-leveldb
- --with-system-libsecp256k1
- --without-libs
- --with-daemon
- --without-gui
- --without-qrencode
- ${my_econf}
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
-
- insinto /etc/litecoin
- doins "${FILESDIR}/litecoin.conf"
- fowners litecoin:litecoin /etc/litecoin/litecoin.conf
- fperms 600 /etc/litecoin/litecoin.conf
-
- newconfd "${FILESDIR}/litecoin.confd" ${PN}
- newinitd "${FILESDIR}/litecoin.initd-r1" ${PN}
- systemd_dounit "${FILESDIR}/litecoin.service"
-
- keepdir /var/lib/litecoin/.litecoin
- fperms 700 /var/lib/litecoin
- fowners litecoin:litecoin /var/lib/litecoin/
- fowners litecoin:litecoin /var/lib/litecoin/.litecoin
- dosym ../../../../etc/litecoin/litecoin.conf /var/lib/litecoin/.litecoin/litecoin.conf
-
- dodoc doc/README.md doc/release-notes.md
- newman contrib/debian/manpages/bitcoind.1 litecoind.1
- newman contrib/debian/manpages/bitcoin.conf.5 litecoin.conf.5
-
- if use logrotate; then
- insinto /etc/logrotate.d
- newins "${FILESDIR}/litecoind.logrotate" litecoind
- fi
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2021-07-18 3:50 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2021-07-18 3:50 UTC (permalink / raw
To: gentoo-commits
commit: 4777eac11fb1c730cd948c72ae63aba3a8e623bc
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 18 03:50:24 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 18 03:50:24 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4777eac1
net-p2p/litecoind: fix UnusedLocalUse
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-p2p/litecoind/metadata.xml | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net-p2p/litecoind/metadata.xml b/net-p2p/litecoind/metadata.xml
index e5fa4a88750..32c821f6757 100644
--- a/net-p2p/litecoind/metadata.xml
+++ b/net-p2p/litecoind/metadata.xml
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<!-- maintainer-needed -->
+ <!-- maintainer-needed -->
<use>
- <flag name="logrotate">Use app-admin/logrotate for rotating logs</flag>
<flag name="wallet">Enable wallet support</flag>
</use>
<upstream>
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/
@ 2021-08-13 23:16 Marek Szuba
0 siblings, 0 replies; 17+ messages in thread
From: Marek Szuba @ 2021-08-13 23:16 UTC (permalink / raw
To: gentoo-commits
commit: 20a82fae33e9c61e233fae35a51292068b571d39
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 13 23:14:59 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Aug 13 23:15:58 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20a82fae
net-p2p/litecoind: block >=dev-libs/leveldb-1.23
Closes: https://bugs.gentoo.org/808047
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
net-p2p/litecoind/litecoind-0.18.1-r1.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net-p2p/litecoind/litecoind-0.18.1-r1.ebuild b/net-p2p/litecoind/litecoind-0.18.1-r1.ebuild
index 9bc5f8cbf0f..e7f1f1f2a4d 100644
--- a/net-p2p/litecoind/litecoind-0.18.1-r1.ebuild
+++ b/net-p2p/litecoind/litecoind-0.18.1-r1.ebuild
@@ -21,11 +21,12 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cpu_flags_x86_sse2 upnp +wallet"
+# uses an internal leveldb API (MemEnv) which newer versions no longer expose
RDEPEND="
acct-group/litecoin
acct-user/litecoin
dev-libs/boost:=[threads(+)]
- dev-libs/leveldb:=
+ <dev-libs/leveldb-1.23:=
dev-libs/libevent:=[threads(+)]
dev-libs/openssl:=[-bindist(-)]
sys-libs/db:$(db_ver_to_slot ${DB_VER})[cxx]
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2021-08-13 23:16 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-18 14:33 [gentoo-commits] repo/gentoo:master commit in: net-p2p/litecoind/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2021-08-13 23:16 Marek Szuba
2021-07-18 3:50 Sam James
2021-07-18 3:50 Sam James
2021-06-18 14:33 Sam James
2021-06-17 22:18 Thomas Deutschmann
2021-06-17 20:32 Thomas Deutschmann
2021-04-17 19:20 Conrad Kostecki
2021-04-17 19:20 Conrad Kostecki
2021-03-04 23:22 Conrad Kostecki
2018-06-17 20:34 David Seifert
2017-08-01 14:32 Amy Liffey
2016-08-25 18:13 Anthony G. Basile
2016-07-08 16:05 Anthony G. Basile
2015-12-16 17:34 Anthony G. Basile
2015-08-22 16:04 Anthony G. Basile
2015-08-22 16:04 Anthony G. Basile
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox