non port: net-p2p/c-lightning/Makefile |
SVNWeb
|
Number of commits found: 18 |
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above )
|
Wed, 20 Jul 2022
|
[ 14:22 Tobias C. Berner (tcberner) ] ef8eaee (Only the first 10 of 57 ports in this commit are shown above. )
net-p2p: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Alexander Botero-Lowry <alex@foxybanana.com>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Attila Nagy <bra@fsn.hu>
* Chad J. Milios <milios@ccsys.com>
* Damian Gerow <dgerow@afflictions.org>
* Daniel Morante <daniel@morante.net>
* Dave Cottlehuber <dch@skunkwerks.at>
* Dereckson <dereckson@gmail.com>
* Devin Teske <dteske@FreeBSD.org>
* Dmitriy Limonov (Only the first 15 lines of the commit message are shown above )
|
Wed, 29 Jun 2022
|
[ 08:45 Vasil Dimov (vd) ] aa6c6f7
net-p2p/c-lightning: Upgrade from 0.11.1 to 0.11.2
|
Thu, 16 Jun 2022
|
[ 07:10 Vasil Dimov (vd) ] 9cd2d4b
net-p2p/c-lightning: Upgrade from 0.10.2 to 0.11.1
|
Mon, 22 Nov 2021
|
[ 11:52 Vasil Dimov (vd) ] 1ec2987
net-p2p/c-lightning: Upgrade from 0.10.1 to 0.10.2
|
Sat, 23 Oct 2021
|
[ 18:52 Stefan Eßer (se) ] ef9af39
net-p2p/c-lightning: Add CPE information
Approved by: portmgr (blanket)
|
Tue, 10 Aug 2021
|
[ 11:27 Vasil Dimov (vd) ] 98c51cb
net-p2p/c-lightning: Upgrade from 0.10.0 to 0.10.1
|
Tue, 6 Apr 2021
|
[ 15:08 Vasil Dimov (vd) ] 79edb89
net-p2p/c-lightning: Upgrade from 0.9.3 to 0.10.0
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Wed, 10 Mar 2021
|
[ 10:29 vd ]
net-p2p/c-lightning: Upgrade from 0.9.3 to 0.9.3
|
Mon, 14 Dec 2020
|
[ 10:12 vd ]
net-p2p/c-lightning: Upgrade from 0.9.1 to 0.9.2
|
Mon, 5 Oct 2020
|
[ 14:54 vd ]
net-p2p/c-lightning: Upgrade from 0.8.2.1 to 0.9.1
|
Mon, 25 May 2020
|
[ 13:17 vd ]
net-p2p/c-lightning: Upgrade from 0.8.1 to 0.8.2.1
|
Tue, 17 Mar 2020
|
[ 17:23 vd ]
net-p2p/c-lightning: fix on head and wait bitcoind
* Fix compilation on FreeBSD 13-CURRENT
* Instruct rc(8) to start lightningd after bitcoind, if the latter is to be
started on this host.
* Wait for bitcoind RPC to be available before starting lightningd because:
- even though bitcoind would start and its rc script exit, it will not serve
RPC requests immediately
- lightningd would not start if bitcoind RPC is not available
|
Tue, 18 Feb 2020
|
[ 13:33 vd ]
net-p2p/c-lightning: Upgrade from 0.8.0 to 0.8.1
|
Tue, 21 Jan 2020
|
[ 10:48 pkubaj ]
net-p2p/c-lightning: fix build on GCC architectures
Needs C11 compiler:
cc1: error: unrecognized command line option "-std=gnu11"
Needs include sys/types.h in fdpass.c:
ccan/ccan/fdpass/fdpass.c: In function 'fdpass_send':
ccan/ccan/fdpass/fdpass.c:16:12: error: 'register_t' undeclared (first use in
this function)
16 | char buf[CMSG_SPACE(sizeof(fd))];
| ^~~~~~~~~~
PR: 243481
Approved by: vd (maintainer)
MFH: 2020Q1 (fix build blanket)
|
Tue, 7 Jan 2020
|
[ 11:12 vd ]
net-p2p/c-lightning: fix bitcoin-cli exec setup
lightningd does execute bitcoin-cli internally during runtime.
Fix two problems with that:
* The bitcoin-cli executable is usually located in
/usr/local/bin/bitcoin-cli but service(8) would remove /usr/local/bin
from PATH before executing our rc script /usr/local/etc/rc.d/lightningd
and so the lightningd daemon would inherit a PATH that does not contain
bitcoin-cli. To fix this give the full path to bitcoin-cli to lightningd.
* bitcoin-cli(1) tries to create its datadir when it starts if it does not
exist. By default that is ${HOME}/.bitcoin. service(8) would set HOME=/
and if / is mounted read-only, then this creation would fail. Because we
don't want this directory created (it is not necessary and remains empty)
tell lightningd to execute
bitcoin-cli --datadir=/some/directory/that/already/exists.
Also, append ${lightningd_extra_args} to the lightingd arguments. This was
forgotten in the initial commit and setting lightningd_extra_args would have
had no effect.
Reported by: https://github.com/bitcoin-software
|
Tue, 31 Dec 2019
|
[ 16:36 vd ] (Only the first 10 of 15 ports in this commit are shown above. )
net-p2p/c-lightning: Add a new port - Lightning Network implementation in C
A lighweight, highly customizable and standard compliant
implementation of the Lightning Network protocol.
https://github.com/ElementsProject/lightning
|
Number of commits found: 18 |