Merge branch 'master' into epel7

This commit is contained in:
Stuart D. Gathman 2020-01-30 20:48:26 -05:00
commit 8d2f737167
7 changed files with 65 additions and 39 deletions

1
.gitignore vendored
View File

@ -13,3 +13,4 @@
/marked-man-0.7.0.tar.gz
/cjdns-v20.4.tar.gz
/python-cjdns-0.1.tar.gz
/cjdns-v20.5.tar.gz

View File

@ -12,10 +12,3 @@ diff -up ./test/Main_fuzz_test.c.fuzz ./test/Main_fuzz_test.c
}
}
@@ -185,4 +185,4 @@ void CJDNS_FUZZ_MAIN(void* vctx, struct
TestFramework_assertLastMessageUnaltered(ctx->nodeA);
EventBase_beginLoop(ctx->base);
-}
\ No newline at end of file
+}

48
cjdns.gcc10.patch Normal file
View File

@ -0,0 +1,48 @@
diff -up ./interface/tuntap/test/TUNTools.h.gcc10 ./interface/tuntap/test/TUNTools.h
--- ./interface/tuntap/test/TUNTools.h.gcc10 2020-01-23 00:49:32.396175244 -0500
+++ ./interface/tuntap/test/TUNTools.h 2020-01-23 00:50:00.026580841 -0500
@@ -29,9 +29,9 @@ typedef Iface_DEFUN (* TUNTools_Callback
Iface_DEFUN TUNTools_genericIP6Echo(struct Message* msg, struct TUNTools* tt);
-const uint8_t* TUNTools_testIP6AddrA;
-const uint8_t* TUNTools_testIP6AddrB;
-const uint8_t* TUNTools_testIP6AddrC;
+extern const uint8_t* TUNTools_testIP6AddrA;
+extern const uint8_t* TUNTools_testIP6AddrB;
+extern const uint8_t* TUNTools_testIP6AddrC;
struct TUNTools
{
diff -up ./util/platform/Sockaddr.h.gcc10 ./util/platform/Sockaddr.h
--- ./util/platform/Sockaddr.h.gcc10 2019-11-25 06:38:10.000000000 -0500
+++ ./util/platform/Sockaddr.h 2020-01-23 00:41:54.026444061 -0500
@@ -50,11 +50,11 @@ struct Sockaddr_storage
};
/** 127.0.0.1 and ::1 addresses for building from. */
-const struct Sockaddr* const Sockaddr_LOOPBACK_be;
-const struct Sockaddr* const Sockaddr_LOOPBACK_le;
+extern const struct Sockaddr* const Sockaddr_LOOPBACK_be;
+extern const struct Sockaddr* const Sockaddr_LOOPBACK_le;
#define Sockaddr_LOOPBACK (Endian_isBigEndian() ? Sockaddr_LOOPBACK_be : Sockaddr_LOOPBACK_le)
-const struct Sockaddr* const Sockaddr_LOOPBACK6;
+extern const struct Sockaddr* const Sockaddr_LOOPBACK6;
int Sockaddr_getPrefix(struct Sockaddr* addr);
diff -up ./util/platform/Socket.h.gcc10 ./util/platform/Socket.h
--- ./util/platform/Socket.h.gcc10 2020-01-23 00:45:55.522991656 -0500
+++ ./util/platform/Socket.h 2020-01-23 00:46:13.753259267 -0500
@@ -39,8 +39,8 @@ int Socket_recvfrom(int fd,
int Socket_connect(int fd, const struct Sockaddr* sa, struct Allocator* alloc);
-const int Socket_SOCK_DGRAM;
-const int Socket_SOCK_STREAM;
+extern const int Socket_SOCK_DGRAM;
+extern const int Socket_SOCK_STREAM;
int Socket_socket(int af, int type, int protocol, struct Allocator* alloc);
int Socket_bind(int fd, const struct Sockaddr* sa);

View File

@ -23,21 +23,3 @@ diff -up ./node_build/dependencies/libuv/gyp_uv.py.python3 ./node_build/dependen
- print gyp_args
+ print(gyp_args)
run_gyp(gyp_args)
diff -up ./node_build/FindPython2.js.python3 ./node_build/FindPython2.js
--- ./node_build/FindPython2.js.python3 2019-09-19 13:14:40.677573302 -0400
+++ ./node_build/FindPython2.js 2019-09-19 13:15:15.796056265 -0400
@@ -16,12 +16,12 @@ var nThen = require('nthen');
var Spawn = require('child_process').spawn;
var Fs = require('fs');
-var PYTHONS = ["python", "python2", "python2.7", "python2.6", "python2.5"];
+var PYTHONS = ["python", "python2", "python2.7", "python2.6", "python3"];
var SCRIPT = [
'import sys;',
'print(sys.version_info);',
- 'exit(sys.version_info[0] != 2 or sys.version_info[1] < 7);'
+ 'exit(sys.version_info[0] < 2 or sys.version_info[1] < 6);'
].join('\n');
var find = module.exports.find = function (tempFile, callback) {

View File

@ -83,8 +83,8 @@
Name: cjdns
# major version is cjdns protocol version:
Version: 20.4
Release: 3%{?dist}
Version: 20.5
Release: 1%{?dist}
Summary: The privacy-friendly network without borders
# cjdns is all GPLv3 except libuv which is MIT and BSD and ISC
# cnacl is unused except when use_embedded is true
@ -146,7 +146,7 @@ Patch12: cjdns.sign.patch
# included in cjdns-20.1
#Patch15: cjdns.benc.patch
# Specify python2 for systems that default to python3
Patch16: cjdns.python3.patch
#Patch16: cjdns.python3.patch
# s390x support for embedded cnacl library from Dan Horák <dan@danny.cz>
# Included upstream since 20.3
#Patch17: cjdns.s390x.patch
@ -157,6 +157,8 @@ Patch19: cjdns.fuzz.patch
Patch20: cjdns.sysctl.patch
# Patch ronn to stop using deprecated util.puts and util.debug
Patch21: cjdns.puts.patch
# gcc-10 no longer allows duplicate globals
Patch22: cjdns.gcc10.patch
%if %{use_marked}
BuildRequires: nodejs, nodejs-marked
@ -336,16 +338,21 @@ fi
#patch13 -b .ppc64
#patch14 -b .entropy
#patch15 -b .benc
%patch16 -b .python3
#patch16 -b .python3
%if 0%{use_libuv}
%patch18 -p1 -b .libuv
rm -rf node_build/dependencies/libuv
%else
rm -rf node_build/dependencies/libuv/build/gyp # use system gyp
sed -i -e '/optimizeLevel:/ s/-O0/-O3/' node_build/make.js
%ifarch s390x
sed -i -e '/optimizeLevel:/ s/-O0/-O1/' node_build/make.js
%else
sed -i -e '/optimizeLevel:/ s/-O0/-O2/' node_build/make.js
%endif
%endif
%patch19 -p1 -b .fuzz
#patch20 -p1 -b .sysctl
%patch22 -b .gcc10
cp %{SOURCE1} README_Fedora.md
@ -763,6 +770,9 @@ fi
%{_bindir}/graphStats
%changelog
* Wed Jan 22 2020 Stuart Gathman <stuart@gathman.org> - 20.5-1
- New upstream release
* Tue Nov 12 2019 Stuart Gathman <stuart@gathman.org> - 20.4-3
- networkx for cjdns-graph subpackage requires python2 on el7

View File

@ -87,15 +87,6 @@ diff -up ./util/platform/netdev/NetPlatform_linux.c.warnings ./util/platform/net
#endif
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
@@ -78,7 +79,7 @@ static int socketForIfName(const char* i
}
memset(ifRequestOut, 0, sizeof(struct ifreq));
- strncpy(ifRequestOut->ifr_name, interfaceName, IFNAMSIZ);
+ strncpy(ifRequestOut->ifr_name, interfaceName, IFNAMSIZ - 1);
if (ioctl(s, SIOCGIFINDEX, ifRequestOut) < 0) {
int err = errno;
@@ -167,7 +168,7 @@ void NetPlatform_addAddress(const char*
Except_throw(eh, "ioctl(SIOCSIFADDR) failed: [%s]", strerror(err));
}

View File

@ -1,2 +1,3 @@
SHA512 (cjdns-v20.4.tar.gz) = 5a6bd36b2edd07fa883efa4b14dd8a7ba0189bf43404e27ab6ae3b0c2f1e63ce738c52b34416f51f93c9752f6654ea95eac2c71897d2a1e19f4a6d1ca3bad46d
SHA512 (python-cjdns-0.1.tar.gz) = f3b7c9afe6bc2f8b0b872cc7fbe9e997657ecf1cbb1f7e8e417099f1265541af919e965be2508a8613f3a2223020ac077473fe48c78f9553dda1a927364bb256
SHA512 (cjdns-v20.5.tar.gz) = 36ae20182b9e9601ae64630cb0fa96caccbe5279be48520ea8b457a15437da5c9b48a5ae5588bd76ef819efe696b5a582a906a50e4dbe7760bb96fa7d1d63ea3