public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-p2p/bitcoind: bitcoind-0.8.1.ebuild ChangeLog
@ 2013-03-27 22:52 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 5+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-03-27 22:52 UTC (permalink / raw
  To: gentoo-commits

blueness    13/03/27 22:52:42

  Modified:             ChangeLog
  Added:                bitcoind-0.8.1.ebuild
  Log:
  Version bump
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.59                 net-p2p/bitcoind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	17 Mar 2013 16:22:48 -0000	1.58
+++ ChangeLog	27 Mar 2013 22:52:42 -0000	1.59
@@ -1,6 +1,11 @@
 # ChangeLog for net-p2p/bitcoind
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.58 2013/03/17 16:22:48 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.59 2013/03/27 22:52:42 blueness Exp $
+
+*bitcoind-0.8.1 (27 Mar 2013)
+
+  27 Mar 2013; Anthony G. Basile <blueness@gentoo.org> +bitcoind-0.8.1.ebuild:
+  Version bump
 
   17 Mar 2013; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
   Add proxy-maintainers to metadata.xml



1.1                  net-p2p/bitcoind/bitcoind-0.8.1.ebuild

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

Index: bitcoind-0.8.1.ebuild
===================================================================
# Copyright 2010-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v 1.1 2013/03/27 22:52:42 blueness Exp $

EAPI="4"

DB_VER="4.8"

inherit db-use eutils versionator toolchain-funcs

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[-bindist]
	logrotate? (
		app-admin/logrotate
	)
	upnp? (
		net-libs/miniupnpc
	)
	sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
	=dev-libs/leveldb-1.9.0*
"
DEPEND="${RDEPEND}
	>=app-shells/bash-4.1
"

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

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

src_prepare() {
	epatch "${FILESDIR}/0.8.0-sys_leveldb.patch"
	rm -r src/leveldb
}

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" ${PN}

	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

	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
}





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/bitcoind: bitcoind-0.8.1.ebuild ChangeLog
@ 2013-05-14  9:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-14  9:32 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/14 09:32:14

  Modified:             bitcoind-0.8.1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #469342
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  net-p2p/bitcoind/bitcoind-0.8.1.ebuild

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

Index: bitcoind-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bitcoind-0.8.1.ebuild	14 Apr 2013 18:49:43 -0000	1.2
+++ bitcoind-0.8.1.ebuild	14 May 2013 09:32:13 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 2010-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v 1.2 2013/04/14 18:49:43 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v 1.3 2013/05/14 09:32:13 ago Exp $
 
 EAPI="4"
 
@@ -19,7 +19,7 @@
 
 LICENSE="MIT ISC GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="examples ipv6 logrotate upnp"
 
 RDEPEND="



1.62                 net-p2p/bitcoind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	14 Apr 2013 18:49:43 -0000	1.61
+++ ChangeLog	14 May 2013 09:32:13 -0000	1.62
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/bitcoind
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.61 2013/04/14 18:49:43 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.62 2013/05/14 09:32:13 ago Exp $
+
+  14 May 2013; Agostino Sarubbo <ago@gentoo.org> bitcoind-0.8.1.ebuild:
+  Stable for amd64, wrt bug #469342
 
   14 Apr 2013; Anthony G. Basile <blueness@gentoo.org>
   bitcoind-0.4.9_rc2.ebuild, bitcoind-0.5.8_rc2.ebuild, bitcoind-0.6.3.ebuild,





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/bitcoind: bitcoind-0.8.1.ebuild ChangeLog
@ 2013-05-14  9:39 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-14  9:39 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/14 09:39:28

  Modified:             bitcoind-0.8.1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #469342
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  net-p2p/bitcoind/bitcoind-0.8.1.ebuild

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

Index: bitcoind-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bitcoind-0.8.1.ebuild	14 May 2013 09:32:13 -0000	1.3
+++ bitcoind-0.8.1.ebuild	14 May 2013 09:39:28 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 2010-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v 1.3 2013/05/14 09:32:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v 1.4 2013/05/14 09:39:28 ago Exp $
 
 EAPI="4"
 
@@ -19,7 +19,7 @@
 
 LICENSE="MIT ISC GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="examples ipv6 logrotate upnp"
 
 RDEPEND="



1.63                 net-p2p/bitcoind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	14 May 2013 09:32:13 -0000	1.62
+++ ChangeLog	14 May 2013 09:39:28 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/bitcoind
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.62 2013/05/14 09:32:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.63 2013/05/14 09:39:28 ago Exp $
+
+  14 May 2013; Agostino Sarubbo <ago@gentoo.org> bitcoind-0.8.1.ebuild:
+  Stable for x86, wrt bug #469342
 
   14 May 2013; Agostino Sarubbo <ago@gentoo.org> bitcoind-0.8.1.ebuild:
   Stable for amd64, wrt bug #469342





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/bitcoind: bitcoind-0.8.1.ebuild ChangeLog
@ 2013-05-14 11:45 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-14 11:45 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/14 11:45:58

  Modified:             bitcoind-0.8.1.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #469342
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="arm", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  net-p2p/bitcoind/bitcoind-0.8.1.ebuild

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

Index: bitcoind-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bitcoind-0.8.1.ebuild	14 May 2013 09:39:28 -0000	1.4
+++ bitcoind-0.8.1.ebuild	14 May 2013 11:45:58 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 2010-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v 1.4 2013/05/14 09:39:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v 1.5 2013/05/14 11:45:58 ago Exp $
 
 EAPI="4"
 
@@ -19,7 +19,7 @@
 
 LICENSE="MIT ISC GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 arm x86"
 IUSE="examples ipv6 logrotate upnp"
 
 RDEPEND="



1.64                 net-p2p/bitcoind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	14 May 2013 09:39:28 -0000	1.63
+++ ChangeLog	14 May 2013 11:45:58 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/bitcoind
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.63 2013/05/14 09:39:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.64 2013/05/14 11:45:58 ago Exp $
+
+  14 May 2013; Agostino Sarubbo <ago@gentoo.org> bitcoind-0.8.1.ebuild:
+  Stable for arm, wrt bug #469342
 
   14 May 2013; Agostino Sarubbo <ago@gentoo.org> bitcoind-0.8.1.ebuild:
   Stable for x86, wrt bug #469342





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/bitcoind: bitcoind-0.8.1.ebuild ChangeLog
@ 2013-06-01 15:03 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 5+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-06-01 15:03 UTC (permalink / raw
  To: gentoo-commits

blueness    13/06/01 15:03:03

  Modified:             bitcoind-0.8.1.ebuild ChangeLog
  Log:
  Force snappy off for leveldb since it may have security issues
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.6                  net-p2p/bitcoind/bitcoind-0.8.1.ebuild

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

Index: bitcoind-0.8.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bitcoind-0.8.1.ebuild	14 May 2013 11:45:58 -0000	1.5
+++ bitcoind-0.8.1.ebuild	1 Jun 2013 15:03:03 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 2010-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v 1.5 2013/05/14 11:45:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.8.1.ebuild,v 1.6 2013/06/01 15:03:03 blueness Exp $
 
 EAPI="4"
 
@@ -32,7 +32,7 @@
 		net-libs/miniupnpc
 	)
 	sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
-	=dev-libs/leveldb-1.9.0*
+	=dev-libs/leveldb-1.9.0*[-snappy]
 "
 DEPEND="${RDEPEND}
 	>=app-shells/bash-4.1



1.65                 net-p2p/bitcoind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	14 May 2013 11:45:58 -0000	1.64
+++ ChangeLog	1 Jun 2013 15:03:03 -0000	1.65
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/bitcoind
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.64 2013/05/14 11:45:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/ChangeLog,v 1.65 2013/06/01 15:03:03 blueness Exp $
+
+  01 Jun 2013; Anthony G. Basile <blueness@gentoo.org> bitcoind-0.8.1.ebuild:
+  Force snappy off for leveldb since it may have security issues
 
   14 May 2013; Agostino Sarubbo <ago@gentoo.org> bitcoind-0.8.1.ebuild:
   Stable for arm, wrt bug #469342





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-06-01 15:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-01 15:03 [gentoo-commits] gentoo-x86 commit in net-p2p/bitcoind: bitcoind-0.8.1.ebuild ChangeLog Anthony G. Basile (blueness)
  -- strict thread matches above, loose matches on Subject: below --
2013-05-14 11:45 Agostino Sarubbo (ago)
2013-05-14  9:39 Agostino Sarubbo (ago)
2013-05-14  9:32 Agostino Sarubbo (ago)
2013-03-27 22:52 Anthony G. Basile (blueness)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox