Commit Graph

17 Commits

Author SHA1 Message Date
Mathieu Arnold
cf118ccf87 One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
2021-04-07 10:09:01 +02:00
Mathieu Arnold
135fdeebb9 all: Remove all other $FreeBSD keywords. 2021-04-06 16:31:13 +02:00
Mathieu Arnold
305f148f48 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
Dmitry Marakasov
15c2e56100 - Update to 19.1.11
- Reset the maintainer due to 4 consequentional maintainer timeouts

PR:		222907
Submitted by:	pfg, kirill@varnakov.com
Approved by:	maintainer timeout (freebsd@jen20.com, 21 months)
2021-03-11 02:20:32 +00:00
Dmitri Goutnik
b386b7fea9 databases/cockroach: Unbreak with go1.16
===>  Building for cockroach-2.0.7
...
go: cannot find main module, but found Gopkg.lock in /wrkdirs/usr/ports/databases/cockroach/work/cockroach-v2.0.7/src/github.com/cockroachdb/cockroach
        to create a module there, run:
        go mod init
2021-02-21 19:47:39 +00:00
Tobias Kortkamp
c362b80958 Fix more fallout for bundled rocksdb after the LLVM 10 import
In file included from rocksdb/utilities/backupable/backupable_db.cc:16:
rocksdb/util/channel.h:35:33: error: no matching constructor for initialization of 'std::lock_guard<std::mutex>'
    std::lock_guard<std::mutex> lk(lock_);
                                ^  ~~~~~
/usr/include/c++/v1/__mutex_base:90:14: note: candidate constructor not viable: 1st argument ('const std::mutex') would lose const qualifier
    explicit lock_guard(mutex_type& __m) _LIBCPP_THREAD_SAFETY_ANNOTATION(acquire_capability(__m))
             ^
/usr/include/c++/v1/__mutex_base:100:5: note: candidate constructor not viable: no known conversion from 'const std::mutex' to 'const std::__1::lock_guard<std::__1::mutex>' for 1st argument
    lock_guard(lock_guard const&) _LIBCPP_EQUAL_DELETE;
    ^
/usr/include/c++/v1/__mutex_base:94:5: note: candidate constructor not viable: requires 2 arguments, but 1 was provided
    lock_guard(mutex_type& __m, adopt_lock_t) _LIBCPP_THREAD_SAFETY_ANNOTATION(requires_capability(__m))
    ^
1 error generated.

net/ceph* will still not build because Clang crashes but at least
it goes beyond the above error.
2020-03-18 12:04:51 +00:00
Tobias Kortkamp
3726f94254 Convert all Go ports to USES=go
This allows for port testing with lang/go-devel via GO_PORT, setting
up the Go build environment in a single place, and is step one in
simplifying Go ports that often define too complicated do-build
targets themselves.

USES=go gains new arguments 'run' to add lang/go to RUN_DEPENDS and
'no_targets' for ports with composite builds that call 'go' themselves
and do not need the do-build/do-install targets of USES=go.

PR:		238849
Submitted by:	dg@syrec.org (also D20745)
Reviewed by:	mat, tobik
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D20746
2019-06-29 03:51:13 +00:00
Steve Wills
0088edb80e databases/cockroach: Unbreak, update to 2.0.7
PR:		236478
Submitted by:	Dmitri Goutnik <dg@syrec.org> (slightly modified)
Approved by:	maintainer timeout (freebsd@jen20.com, >4 weeks)
2019-04-12 20:03:33 +00:00
Antoine Brodin
887acad1d4 Mark BROKEN: fails to build
build cache is required, but could not be located: GOCACHE is not defined and neither $XDG_CACHE_HOME nor $HOME are defined

Reported by:	pkg-fallout
2019-03-11 20:22:57 +00:00
Thomas Zander
99d1ff901d Update to upstream version 2.0.6
PR:		232036
Submitted by:	riggs
Approved by:	maintainer timeout
MFH:		2018Q4
2018-10-22 16:53:40 +00:00
Thomas Zander
2e4b740f2c Update to upstream version 2.0.5
PR:		231581
Submitted by:	riggs
Approved by:	maintainer timeout (2 weeks)
MFH:		2018Q4
2018-10-06 12:15:39 +00:00
Thomas Zander
40fee58c1f Update to upstream version 2.0.2
PR:		228840
Submitted by:	riggs
Reviewed by:	seanc, freebsd@jen20.com (maintainer)
Approved by:	freebsd@jen20.com (maintainer, via seanc)
Differential Revision:	https://reviews.freebsd.org/D15719
2018-06-11 06:44:36 +00:00
Yuri Victorovich
3541239e48 databases/cockroach: Update to 1.1.5
Port changes:
* Changed to DISTVERSION
* Adjusted do-build

PR:		226270
Submitted by:	James Nugent <freebsd@jen20.com>
Approved by:	tcberner (mentor, implicit)
2018-03-01 20:38:58 +00:00
Nikolai Lifanov
0b89320dd9 databases/cockroach: unbreak and update to 1.1.4
PR:		223167
Submitted by:	James Nugent <freebsd@jen20.com> (maintainer)
2018-01-31 16:33:41 +00:00
Jimmy Olgeni
2fb9f25373 Fix whitespace issues (mixed tab/spaces, alignment) in a few ports. 2017-11-01 13:10:35 +00:00
Antoine Brodin
c7a6ba22f3 Mark BROKEN: fails to build with go 1.9
gmake[1]: Entering directory '/wrkdirs/usr/ports/databases/cockroach/work/cockroach-v1.0.4/src/github.com/cockroachdb/cockroach'
build/common.mk:110: *** "go1\.8.* required (see CONTRIBUTING.md): go version go1.9.1 freebsd/amd64".  Stop.

Reported by:	pkg-fallout
MFH:		2017Q4
2017-10-22 08:05:41 +00:00
Kirill Ponomarev
28436fc627 CockroachDB is a distributed SQL database built on a transactional
and strongly-consistent key-value store. It scales horizontally;
survives disk, machine, rack, and even datacenter failures with
minimal latency disruption and no manual intervention; supports
strongly-consistent ACID transactions; and provides a familiar SQL
API for structuring, manipulating, and querying data.

CockroachDB is inspired by Google's Spanner and F1 technologies, and
it's completely open source.

PR:		221635
Submitted by:	James Nugent <freebsd@jen20.com>
Approved by:	mat (mentor)
Differential Revision: https://reviews.freebsd.org/D12088
2017-08-21 14:11:33 +00:00