| Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
| Commit | Credits | Log message |
0.16.0 26 Mar 2018 20:58:14
  |
antoine  |
Revert r465619 and r465623, the use of PORT_OPTIONS and option helpers is
incorrect
With hat: portmgr |
0.16.0_1 26 Mar 2018 17:33:29
  |
vd  |
net-p2p/bitcoin: Add an option to use newer BDB
Make the new option the default, so that when the port is recompiled it
will link against BDB 5.x or 6.x (whichever is the default in the system).
This will keep old wallet files readable and will not automatically
convert them in an incompatible with BDB 4.8 way. Newly created wallet
files will not be readable by Bitcoin Core versions linked with BDB 4.8.
Next thing to consider is to remove the option to link against BDB 4.8 as
this will remove the net-p2p/bitcoin -> databases/db48 dependency and will
make it possible to ditch the latter, which is scheduled for removal from
the ports collection on Apr 30 2018.
PR: 226527
Approved by: kbowling (maintainer) |
0.16.0 28 Feb 2018 08:13:20
  |
ale  |
Update to 0.16.0 release and change maintainer.
PR: 226155
Submitted by: kbowling
Approved by: maintainer |
0.15.1_3 18 Jan 2018 04:11:03
  |
jbeich  |
devel/boost-*: update to 1.66.0
Changes: http://www.boost.org/users/history/version_1_66_0.html
PR: 223922
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D13279 |
0.15.1_2 03 Jan 2018 00:24:17
  |
jbeich  |
net-p2p/bitcoin: chase git abbrev bump
`git archive` maybe non-reproducible due to embedding abbreviated commit:
https://github.com/bitcoin/bitcoin/blob/v0.15.1/src/clientversion.cpp#L47-L48
$ diff -Npru bitcoin-0.15.1.old bitcoin-0.15.1
--- bitcoin-0.15.1.old/src/clientversion.cpp 2017-11-06 08:46:24.000000000 +0000
+++ bitcoin-0.15.1/src/clientversion.cpp 2017-11-06 08:46:24.000000000 +0000
@@ -45,7 +45,7 @@ const std::string CLIENT_NAME("Satoshi");
//! git will put "#define GIT_ARCHIVE 1" on the next line inside archives.
#define GIT_ARCHIVE 1
#ifdef GIT_ARCHIVE
-#define GIT_COMMIT_ID "7b57bc998f3"
+#define GIT_COMMIT_ID "7b57bc998f33"
#define GIT_COMMIT_DATE "Mon, 6 Nov 2017 09:46:24 +0100"
#endif
Reported by: pkg-fallout
Approved by: portmgr blanket |
0.15.1_2 25 Dec 2017 18:07:48
  |
jbeich  |
net-p2p/bitcoin: unbreak with boost 1.66
PR: 224129 224132
Obtained from: upstream (Bitcoin 0.16.0)
Approved by: portmgr blanket |
0.15.1_2 11 Dec 2017 18:26:14
  |
sunpoet  |
Update devel/protobuf to 3.5.0
- Bump PORTREVISION for shlib change
Changes: https://github.com/google/protobuf/releases |
0.15.1_1 17 Nov 2017 13:59:49
  |
swills  |
net-p2p/bitcoin: update to 0.15.1
PR: 223697
Submitted by: robbak@gmail.com (maintainer, via different email) |
0.15.0.1_1 08 Nov 2017 08:18:27
  |
vd  |
net-p2p/bitcoin: fix typos in startup script
PR: 223495
Submitted by: vd@
Approved by: robbak@gmail.com (maintainer) |
0.15.0.1 03 Oct 2017 14:25:09
  |
swills  |
net-p2p/bitcoin: Update to 0.15.0.1 [1]
While here, fix plist for bitcoin-daemon [2]
PR: 222384 [1]
PR: 222167 [2]
Submitted by: kbowling [1]
Submitted by: jbeich [2]
Approved by: robbak@robbak.com (maintainer) |
0.14.2_4 25 Sep 2017 00:08:17
  |
jbeich  |
devel/boost-*: update to 1.65.1
Changes: http://www.boost.org/users/history/version_1_65_1.html
PR: 218835
Approved by: maintainer timeout (1.65.1: 2 weeks; 1.65.0: 1 month)
Tested by: jhibbits (on powerpc64, earlier version)
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D11582 |
0.14.2_3 23 Sep 2017 02:59:07
  |
vanilla  |
1: upgrade to 4.0.0.
2: chrase shared library version. |
0.14.2_2 10 Sep 2017 20:55:39
  |
gerald  |
Bump PORTREVISION for ports depending on the canonical version of GCC
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
c++14-lang, c++0x, c11, or gcc-c++11-lib.
PR: 219275 |
0.14.2_1 16 Aug 2017 15:44:49
  |
sunpoet  |
Update devel/protobuf to 3.4.0
- Bump PORTREVISION for shlib change
Changes: https://github.com/google/protobuf/releases |
0.14.2 12 Aug 2017 03:43:31
  |
swills  |
net-p2p/bitcoin: Update to 0.14.2
PR: 220897
Submitted by: kbowling
Approved by: robbak@robbak.com (maintainer)
Differential Revision: https://reviews.freebsd.org/D11684 |
0.12.1_12 01 Aug 2017 16:45:32
  |
lwhsu  |
- net-p2p/bitcoin: fix path error in startup script files/bitcoin.in also
removes reliance on unnecessary cli script.
- net-p2p/bitcoin-daemon: create the user/group for the daemon to use also
install a sample configuration file.
With these two patches a "pkg install bitcoin-daemon" followed by "service
start bitcoind" will be sufficient to run as a non-privileged user and
automatically connect to bitcoin live network; using /var/db/bitcoin to store
blockchain data.
PR: 215059
Submitted by: Christopher Hall <hsw@bitmark.com>
Approved by: <robbak@robbak.com> (maintainer) |
0.12.1_11 22 May 2017 16:04:19
  |
linimon  |
Mark some ports failing on power64. In cases where the error message
was a stub, provide a real one.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Reported by: swills |
0.12.1_11 02 May 2017 06:48:11
  |
jbeich  |
devel/boost-*: update to 1.64.0
Changes: http://www.boost.org/users/history/version_1_64_0.html
PR: 218835
Approved by: office (bapt)
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D10472 |
0.12.1_10 29 Apr 2017 15:43:47
  |
sunpoet  |
Update devel/protobuf to 3.3.0
- Remove USE_CSTD=c99: it was added for [1], now audio/clementine-player builds
fine without it
- Bump PORTREVISION for shlib change
Changes: https://github.com/google/protobuf/releases
PR: 178687 [1] |
0.12.1_9 01 Apr 2017 15:23:32
  |
gerald  |
Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using using Mk/bsd.octave.mk which in turn has USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
c++11-lang, c++0x, c11, or gcc-c++11-lib.
PR: 216707 |
0.12.1_8 20 Feb 2017 02:57:04
  |
jbeich  |
devel/libevent2: drop historical suffix after r362796
PR: 216777
Approved by: mm (maintainer) |
0.12.1_7 04 Feb 2017 07:56:59
  |
jbeich  |
devel/libevent2: update to 2.1.8 and cleanup
- DEFAULT_VERSIONS += ssl=openssl-devel is now supported
- devel/py-event and devel/p5-Event-Lib are marked BROKEN
Changes: https://github.com/libevent/libevent/raw/release-2.1.8-stable/whatsnew-2.1.txt
Changes: https://github.com/libevent/libevent/raw/release-2.1.8-stable/ChangeLog
PR: 216527
Exp-run by: antoine
Approved by: mm (maintainer) |
0.12.1_6 29 Jan 2017 16:04:36
  |
sunpoet  |
Update devel/protobuf to 3.2.0
- Bump PORTREVISION for shlib change
Changes: https://github.com/google/protobuf/releases |
0.12.1_5 06 Jan 2017 08:45:04
  |
jbeich  |
devel/boost-*: update to 1.63.0
Changes: http://www.boost.org/users/history/version_1_63_0.html
PR: 215598
Exp-run by: antoine
Approved by: office (bapt)
MFH: 2017Q1 |
0.12.1_4 25 Dec 2016 23:11:36
  |
dinoex  |
- update miniupnpc to 2.0.20161216
- bump API change |
0.12.1_3 14 Dec 2016 17:58:20
  |
sunpoet  |
- Update devel/protobuf to 3.1.0
- Bump PORTREVISION for shlib change
Changes: https://github.com/google/protobuf/releases |
0.12.1_2 29 Nov 2016 06:20:40
  |
tcberner  |
Stop exporting QT_BINDIR and QT_LIBDIR to PLIST_SUB.
As at the moment QT_BINDIR and QT_LIBDIR are 'bin' respectively 'lib' depending
on the Qt version these subs ended up at many wrong places in plists.
So only export it if QT_DIST is set.
PR: 210227
Reviewed by: mat, rakuco
Approved by: portmgr (mat), rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D8378 |
0.12.1_2 25 Nov 2016 06:11:01
  |
araujo  |
- Add a UID/GID for bitcoin.
- Rewrite the rc script with new options that allows users to:
- set config file.
- set datadir.
- set bitcoin limits.
PR: ports/213235
Submitted by: Christopher Hall <hsw@bitmark.com>
Approved by: maintainer timeout (1 month) |
0.12.1_1 23 Nov 2016 12:45:47
  |
jbeich  |
devel/boost-*: update to 1.62.0
- Enable `long double` C99 math usage
- Switch 9.x back to building with GCC
Changes: http://www.boost.org/users/history/
PR: 199601
Submitted by: Chen Xu, bapt, amdmi3, truckman (based on)
Reviewed by: rakuco (kde) (earlier version)
Exp-run by: antoine (3 tries), truckman (consumers only, earlier versions)
Approved by: bapt (office) |
0.12.1 08 Aug 2016 13:46:50
  |
mat  |
USE_BDB cleanup.
- USE_BDB=4x+ -> USES=bdb.
- USE_BDB=yes -> USES=bdb.
- USE_BDB=xx -> USES=bdb:xx.
Other modernisations when I see them.
PR: 209183
Sponsored by: Absolight |
0.12.1 02 May 2016 14:20:32
  |
tijl  |
Add OBJCXX and OBJCXXFLAGS to CONFIGURE_ENV.
When compiled on Darwin bitcoin-qt needs two extra files that are written
in ObjC++. These aren't needed on FreeBSD but because of this the ObjC++
compiler is used as linker instead of the C++ compiler. Without defining
OBJCXX clang may be used as C++ compiler while g++ is used as ObjC++
compiler. This may cause link problems.
PR: 207110
Submitted by: olexander.v.melnyk@gmail.com
Approved by: robbak@robbak.com (maintainer, via email) |
0.12.1 01 May 2016 09:50:43
  |
tijl  |
- Update net-p2p/bitcoin to 0.12.1.
- Enable DBUS option by default. Desktop systems almost always have DBus
installed.
- Enable UPNP option by default. Many ISP supplied modems contain a NAT
these days.
- Remove --disable-reduce-exports. It's disabled by default.
- Add bitcoind rc.d script. [1]
PR: 208937, 209136
Submitted by: xenophon+fbsdports@irtnog.org [1]
Approved by: robbak@gmail.com (maintainer) |
0.11.2 01 Apr 2016 14:16:20
  |
mat  |
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight |
0.11.2 23 Jan 2016 17:35:17
  |
riggs  |
Update to upstream release 0.11.2
PR: 206453
Submitted by: jochen@jochen-neumeister.de
Approved by: robbak@gmail.com (maintainer / alternative e-mail address) |
0.11.0_1 14 Oct 2015 14:57:33
  |
jbeich  |
net-p2p/bitcoin: chase r399209
https://github.com/miniupnp/miniupnp/commit/1da63faa4fff5cb30e5d4b848ceef80a292382b9
PR: 203761
Submitted by: robbak@gmail.com (based on)
Obtained from: upstream
MFH: 2015Q4
X-MFH-With: r399209 |
0.11.0 16 Jul 2015 18:35:16
  |
pgollucci  |
net-p2p/bitcoin: 0.10.2 -> 0.11.0
PR: 201524
Submitted by: robbak@gmail.com (maintainer) |
0.10.2 06 Jul 2015 03:09:36
  |
feld  |
Update to 0.10.2
Resolves CVE-2015-3641
https://en.bitcoin.it/wiki/Common_Vulnerabilities_and_Exposures
PR: 201224
Approved by: maintainer |
0.10.1 03 May 2015 16:58:04
  |
jbeich  |
net-p2p/bitcoin*: update to 0.10.1 and fix conflicts
Work around bin/test_bitcoin installed more than once by leaving
TESTS=on by default only in net-p2p/bitcoin-utils.
Changes: https://bitcoin.org/en/release/v0.10.1
PR: 198826 [1]
PR: 199856
Reported by: peter [1]
Submitted by: robbak@gmail.com (maintainer, other mail) |
0.10.0_1 25 Feb 2015 13:16:36
  |
koobs  |
net-p2p/bitcoin: Use linguisttools, 45 less dependencies
Take advantage of the new qt4-linguisttools port [1] to eliminate 45 build
dependencies.
[1] https://svnweb.freebsd.org/changeset/ports/379843
PR: 198024
Submitted by: Robert Backhaus <robbak gmail com> (maintainer) |
0.10.0_1 24 Feb 2015 11:54:05
  |
koobs  |
net-p2p/bitcoin: Centralise regression-test target
Move the regression-test targetr from bitcoin-daemon to bitcoin port proper.
Approved by: maintainer (via IRC)
> Description of fields to fill in above: 76 columns --|
> PR: If a GNATS PR is affected by the change.
> Differential Revision: https://reviews.freebsd.org/D### (*full* phabric URL
needed).
> Submitted by: If someone else sent in the change.
> Reviewed by: If someone else reviewed your modification.
> Approved by: If you needed approval for this commit.
> Obtained from: If the change is from a third party.
> MFC after: N [day[s]|week[s]|month[s]]. Request a reminder
email.
> MFH: Ports tree branch name. Request approval for merge.
> Relnotes: Set to 'yes' for mention in release notes.
> Security: Vulnerability reference (one per line) or
description.
> Sponsored by: If the change was sponsored by an organization.
> Empty fields above will be automatically removed.
M net-p2p/bitcoin/Makefile
M net-p2p/bitcoin-daemon/Makefile |
0.10.0_1 24 Feb 2015 11:37:49
  |
koobs  |
net-p2p/bitcoin: Reinstate BDB includes for WALLET option
Re-add removed BDB includes and library paths to CXXFLAGS/LIBS for the WALLET
options. Without them ./configure bombs out. |
0.10.0 24 Feb 2015 11:10:23
  |
koobs  |
net-p2p/bitcoin: Update to 0.10.0, split bitcoin-utils, LOTS MORE
- Update to 0.10.0
- Split out bitcoin-cli and bitcoin-tx into net-p2p/bitcoin-utils
- Slave out bitcoin-utils and bitcoin-daemon properly
- Canonicalize MASTER_SITES to what USE_GITHUB uses
- Update COMMENT so each port is unique
- protobuf/protoc is GUI-only dependency, remove it from unconditional
{BUILD,LIB}_DEPENDS.
- Group and sort USES/USE_*
- Deprecate USE_AUTOTOOLS in favour of USES=autoreconf
- Remove {AUTOMAKE,ACLOCAL}_ARGS accordingly
- Remove unconditional *FLAGS and replace then with OPTIONS-conditional
ones.
- Remove unnecessary CXXFLAGS(Only the first 15 lines of the commit message are shown above ) |
0.9.2_3 28 Oct 2014 05:19:16
  |
dinoex  |
- update miniupnpc to 1.9
- bump users of shared lib version |
0.9.2_2 10 Sep 2014 20:50:37
  |
gerald  |
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit) |
0.9.2_1 21 Aug 2014 22:50:30
  |
mandree  |
Berkeley DB cleanup, remove versions 4.0 ... 4.7.
- Mk/bsd.database.mk rewrite, new default to db5.
- db6 is eligible by default only if installed on the system.
- Bump PORTREVISION of all ports that directly depend on BerkeleyDB or
where USE_BDB is found in the port's directory
- Patch a few ports such that they will pick up or work with newer
versions.
- Add UPDATING entry
- Drive-by format fix for pks
- Drop BerkeleyDB option from mail/popular for now, requires more work.
- Exp-run logs linked from the PR below.
- Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes
for new Berkeley DB, but are untested.
NOTE: please read UPDATING and the Wiki page before proceeding!
Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html
Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup
PR: 192690
Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports) |
0.9.2 11 Jul 2014 16:54:49
  |
swills  |
net-p2p/bitcoin: update to 0.9.2
PR: 191357
Submitted by: Robert Backhaus <robbak@robbak.com> (maintainer) |
0.9.1 16 Apr 2014 16:12:05
  |
swills  |
- Update to 0.9.1
PR: ports/188655
Submitted by: Robert Backahus <robbak@robbak.com> (maintainer) |
0.8.6_1 07 Feb 2014 11:44:09
  |
bapt  |
Chase boost and icu bump
While here convert some LIB_DEPENDS |
0.8.6 16 Jan 2014 19:44:58
  |
swills  |
- Switch to USES=gmake
- Fix a nit with configuration, QMAKE_ENV is more correct, but is equivilant to
CONFIGURE_ENV
Approved by: portmgr (implicit) |
0.8.6 17 Dec 2013 02:13:55
  |
swills  |
- Update to 0.8.6
PR: ports/184655
Submitted by: Robert Backahus <robbak@robbak.com> (maintainer) |
0.8.5 12 Dec 2013 15:24:48
  |
bapt  |
Convert LIB_DEPENDS for ports depending on boost |
0.8.5 22 Nov 2013 12:55:12
  |
makc  |
- Pass QMAKE_ARGS to qmake
Approved by: portmgr (blanket approval) |
0.8.5 15 Nov 2013 18:50:18
  |
swills  |
- Fix build on 10.0
PR: ports/182338
Submitted by: swills
Approved by: Robert Backhaus <robbak@robbak.com> (maintainer) |
0.8.5 24 Sep 2013 01:48:58
  |
swills  |
- Update to 0.8.5
- Remove no longer needed patch
PR: ports/182062
Submitted by: Robert Backahus <robbak@robbak.com> (maintainer) |
0.8.3 20 Sep 2013 22:28:26
  |
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
net-p2p) |
0.8.3 14 Aug 2013 22:35:54
  |
ak  |
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery) |
0.8.3 30 Jun 2013 12:57:42
  |
swills  |
- Update to 0.8.3
PR: ports/179995
Submitted by: Robert Backahus <robbak@robbak.com> (maintainer) |
0.8.2 09 Jun 2013 18:32:16
  |
rakuco  |
Fix `make checksum'.
PR: ports/179435
Submitted by: Robert Backhaus <robbak@robbak.com> (maintainer) |
0.8.2 30 May 2013 11:28:53
  |
swills  |
- Update to 0.8.2
PR: ports/179091
Submitted by: Robert Backahus <robbak@robbak.com> |
0.8.1_1 24 Apr 2013 02:42:21
  |
swills  |
- Add patch to prevent deletion of /dev/null
PR: ports/177867
Submitted by: Robert Backahus <robbak@robbak.com> (maintainer) |
0.8.1 24 Mar 2013 12:25:14
  |
swills  |
- Update to 0.8.1
PR: ports/177135
Submitted by: Robert Backahus <robbak@robbak.com> (maintainer) |
0.8.0 20 Feb 2013 20:27:32
  |
rm  |
- update to 0.8.0
- remove patched, applied upstream
changelog:
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.0/
PR: 176284
Submitted by: Robert Backahus <robbak@mynetfone.com.au> (maintainer, other
email) |
0.7.1_1 31 Jan 2013 13:38:43
  |
bapt  |
Chase boost update |
0.7.1 21 Oct 2012 02:24:30
  |
swills  |
- Update to 0.7.1
- Update db version to 4.8, for compatability with data files from other OSs
- Convert to OptionsNG
- Remove no-op sed commands.
- Pet portlint
PR: ports/172839
Submitted by: Robert Backahus <robbak@robbak.com> (maintainer)
Feature safe: yes |
0.7.0 27 Sep 2012 13:29:34
  |
swills  |
- Update to 0.7.0
- Set submitter as maintainer
Submitted by: "Robert Backhaus" <robbak@robbak.com> (private email) |
0.6.3_3 04 Sep 2012 20:46:54
  |
swills  |
- Hopefully really fix the last high CPU usage case
PR: ports/171252
Submitted by: Steven Lee <steven@roothosts.com> |
0.6.3_2 03 Sep 2012 17:40:21
  |
swills  |
- Fix another high CPU usage condition |
0.6.3_1 02 Sep 2012 14:16:19
  |
swills  |
- Fix 100% usage issue
Submitted by: Robert Backhaus <robbak@robbak.com> |
0.6.3 02 Sep 2012 02:51:56
  |
swills  |
- Update to 0.6.3
PR: ports/171080
Security: b50913ce-f4a7-11e1-b135-003067b2972c |
0.4.0_1 14 Jun 2012 13:52:22
 |
shaun  |
Back to the pool. |
0.4.0_1 01 Jun 2012 05:26:28
 |
dinoex  |
- update png to 1.5.10 |
0.4.0 23 Sep 2011 21:22:57
 |
shaun  |
- Update to 0.4.0.
- Use DIST_SUBDIR since the distfiles are just version numbers. |
0.3.24 08 Aug 2011 00:05:15
 |
shaun  |
- Update to 0.3.24.
- Hack for github no longer required. |
0.3.23 01 Jul 2011 22:21:35
 |
shaun  |
- Upgrade to 0.3.23.
- Add missing wxGTK runtime dependency. [1]
- Add missing glib dependency (when built without GUI) [2]
Submitted by: Tim Bishop [1], netchild [2] |
0.3.21_1 25 May 2011 01:59:09
 |
shaun  |
Second half of the previous fix.
Note to self: test things before committing. |
0.3.21_1 25 May 2011 01:44:08
 |
shaun  |
- Fix miniupnpc library dependency.
- Bump PORTREVISION for previous plist fix while here.
Submitted by: "Micheal" via private e-mail [1] |
0.3.21 24 May 2011 23:21:23
 |
shaun  |
Fix plist.
Submitted by: pavmail
Pointyhat to: shaun (me) |
0.3.21 24 May 2011 22:48:17
 |
shaun  |
The distfile for this port is assembled (or made available) on the fly.
Add a pre-fetch hook to trigger this process, so that the tarball is
available when we try to fetch. |
0.3.21 22 May 2011 15:53:57
 |
shaun  |
Fix dependency line.
Submitted by: Torfinn Ingolfsen via freebsd-ports |
0.3.21 20 May 2011 22:50:37
 |
shaun  |
Add port: bitcoin
Bitcoin is a digital currency created in 2009 by Satoshi Nakamoto. It is
also the name of the open source software designed in order to use this
currency. |