2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
# Fedora review: http://bugzilla.redhat.com/1268716
|
|
|
|
|
2017-02-25 04:59:50 +00:00
|
|
|
# Option to enable SUBNODE mode (WIP)
|
2018-07-18 22:26:00 +00:00
|
|
|
# Fedora generally runs on systems that easily support a full node
|
2018-03-06 17:55:01 +00:00
|
|
|
%bcond_with subnode
|
|
|
|
# Option to use the optimized libnacl embedded with cjdns
|
2018-07-18 22:26:00 +00:00
|
|
|
# Required since v20 due to use of private cnacl APIs
|
2020-09-29 14:53:35 +00:00
|
|
|
%bcond_with embedded
|
2018-07-18 22:26:00 +00:00
|
|
|
# Option to enable CPU specific optimization
|
|
|
|
# Default to generic for distro builds
|
|
|
|
%bcond_without generic
|
2020-09-29 14:53:35 +00:00
|
|
|
# Option to use libsodium instead of nacl (broken since v20, fixed v21)
|
|
|
|
%bcond_without libsodium
|
2018-07-18 22:26:00 +00:00
|
|
|
# Option to disable SECCOMP: confusing backward logic
|
|
|
|
# Needed to run on openvz and other container systems
|
|
|
|
%bcond_without seccomp
|
2019-05-03 19:21:34 +00:00
|
|
|
# Option to use system libuv instead of bundled libuv-0.11.19
|
|
|
|
%bcond_with libuv
|
2019-10-07 21:09:11 +00:00
|
|
|
# When with_python3 is set, this replaces tools in bin and libexec
|
|
|
|
# with python3 versions, and python2-cjdns has py2 library only.
|
|
|
|
%bcond_with python2
|
|
|
|
%bcond_without python3
|
2018-07-18 22:26:00 +00:00
|
|
|
|
|
|
|
%if %{with embedded}
|
2017-02-25 04:59:50 +00:00
|
|
|
%global use_embedded 1
|
|
|
|
%else
|
2016-10-15 01:09:34 +00:00
|
|
|
%global use_embedded 0
|
2017-02-25 04:59:50 +00:00
|
|
|
%endif
|
2016-04-18 20:23:46 +00:00
|
|
|
|
2019-05-03 14:49:48 +00:00
|
|
|
%if %{with libuv}
|
|
|
|
%global use_libuv 1
|
|
|
|
%else
|
|
|
|
%global use_libuv 0
|
|
|
|
%endif
|
|
|
|
|
2018-07-18 22:26:00 +00:00
|
|
|
%if %{with generic}
|
|
|
|
%global generic_build 1
|
|
|
|
%else
|
|
|
|
%global generic_build 0
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with libsodium}
|
|
|
|
%global use_libsodium 1
|
2016-04-18 20:23:46 +00:00
|
|
|
%global nacl_name libsodium
|
2018-02-21 18:52:53 +00:00
|
|
|
%global nacl_version 1.0.14
|
2016-04-18 20:23:46 +00:00
|
|
|
%global nacl_lib %{_libdir}/libsodium.so
|
|
|
|
%else
|
2018-07-18 22:26:00 +00:00
|
|
|
%global use_libsodium 0
|
2016-04-18 20:23:46 +00:00
|
|
|
%global nacl_name nacl
|
|
|
|
%global nacl_version 20110221
|
|
|
|
%global nacl_lib %{_libdir}/libnacl.so
|
|
|
|
%endif
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
%global use_systemd 1
|
|
|
|
%global use_upstart 0
|
|
|
|
|
2019-08-03 22:49:45 +00:00
|
|
|
%if 0 && 0%{?fedora} > 30
|
|
|
|
%global use_marked 1
|
|
|
|
%global makeman marked-man
|
|
|
|
%else
|
|
|
|
%global use_marked 0
|
2020-07-01 23:47:28 +00:00
|
|
|
%global makeman pandoc -s -tman
|
2019-08-03 22:49:45 +00:00
|
|
|
%endif
|
|
|
|
|
2016-03-22 15:40:36 +00:00
|
|
|
# FIXME: Needs dependencies and install www dir someplace reasonable.
|
|
|
|
|
2019-10-07 21:09:11 +00:00
|
|
|
%global with_admin 0
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
%{!?__restorecon: %global __restorecon /sbin/restorecon}
|
|
|
|
|
|
|
|
Name: cjdns
|
|
|
|
# major version is cjdns protocol version:
|
2020-12-16 19:29:47 +00:00
|
|
|
Version: 21.1
|
2020-12-16 20:48:05 +00:00
|
|
|
Release: 2%{?dist}
|
2016-03-22 15:40:36 +00:00
|
|
|
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
|
|
|
|
License: GPLv3 and MIT and BSD and ISC
|
|
|
|
URL: http://hyperboria.net/
|
|
|
|
Source0: https://github.com/cjdelisle/cjdns/archive/%{name}-v%{version}.tar.gz
|
|
|
|
Source1: cjdns.README_Fedora.md
|
2018-02-21 18:52:53 +00:00
|
|
|
Source2: cjdns.service
|
2019-08-03 22:49:45 +00:00
|
|
|
# nroff overlay for nodejs-marked
|
2019-09-19 17:51:43 +00:00
|
|
|
%if 0%{?use_marked}
|
2019-08-03 22:49:45 +00:00
|
|
|
Source3: https://github.com/kapouer/marked-man/archive/0.7.0.tar.gz#/marked-man-0.7.0.tar.gz
|
2019-09-19 17:51:43 +00:00
|
|
|
%endif
|
2019-10-07 21:09:11 +00:00
|
|
|
# Contributed python API hacked for python3
|
2020-11-28 04:06:44 +00:00
|
|
|
Source4: python-cjdns-0.2.tar.gz
|
2016-03-22 15:40:36 +00:00
|
|
|
# Add targeted selinux policy
|
|
|
|
Patch0: cjdns.selinux.patch
|
2020-12-16 17:48:02 +00:00
|
|
|
# Patch warnings detected by gcc-11
|
|
|
|
Patch2: cjdns.warnings.patch
|
2016-03-22 15:40:36 +00:00
|
|
|
# Fix RLIMIT_NPROC - setuid() bug. In its low priv process, cjdroute calls
|
|
|
|
#
|
|
|
|
# setrlimit(RLIMIT_NPROC, &(struct rlimit){ 0, 0 })
|
|
|
|
#
|
|
|
|
# which on recent kernels prevents fork() or exec() after the following
|
|
|
|
# setuid(). This is due to changes discussed here:
|
|
|
|
#
|
|
|
|
# https://lwn.net/Articles/451985/
|
|
|
|
#
|
|
|
|
# Change defaults generated by cjdroute --genconf
|
|
|
|
Patch4: cjdns.genconf.patch
|
|
|
|
# Patch contributed init scripts to put cjdroute in /usr/sbin and
|
|
|
|
# add additional service options.
|
|
|
|
Patch5: cjdns.sbin.patch
|
|
|
|
# Patch make.js to use dynamic nacl library
|
|
|
|
Patch6: cjdns.dyn.patch
|
2016-12-02 22:39:20 +00:00
|
|
|
# Patch to use _LINUX_CAPABILITY_3 (cjdns < 18)
|
2016-06-23 21:22:04 +00:00
|
|
|
#Patch7: cjdns.cap3.patch
|
2016-03-22 15:40:36 +00:00
|
|
|
# Man pages
|
|
|
|
Patch9: cjdns.man.patch
|
2016-04-06 02:15:03 +00:00
|
|
|
# Patch some bugs in nodejs tools
|
|
|
|
Patch10: cjdns.tools.patch
|
2016-04-18 20:23:46 +00:00
|
|
|
# Alternate dynamic library patch to use libsodium
|
|
|
|
Patch11: cjdns.sodium.patch
|
2016-10-15 01:09:34 +00:00
|
|
|
# Disable WIP subnode code when SUBNODE not enabled
|
|
|
|
Patch12: cjdns.sign.patch
|
2016-12-02 22:39:20 +00:00
|
|
|
# Recognize ppc64, ppc64le, and s390x arches
|
2018-03-12 19:35:08 +00:00
|
|
|
#Patch13: cjdns.ppc64.patch
|
2017-01-14 21:56:22 +00:00
|
|
|
# getentropy(2) added to glibc in Fedora 26
|
2018-02-21 18:58:17 +00:00
|
|
|
# included in cjdns-20.1
|
|
|
|
#Patch14: cjdns.entropy.patch
|
2017-02-18 20:37:24 +00:00
|
|
|
# Fix buffer overrun in JsonBencSerializer.c
|
2018-02-21 18:58:17 +00:00
|
|
|
# included in cjdns-20.1
|
|
|
|
#Patch15: cjdns.benc.patch
|
2017-02-18 20:37:24 +00:00
|
|
|
# Specify python2 for systems that default to python3
|
2020-01-23 04:02:11 +00:00
|
|
|
#Patch16: cjdns.python3.patch
|
2018-05-31 15:04:56 +00:00
|
|
|
# s390x support for embedded cnacl library from Dan Horák <dan@danny.cz>
|
2019-05-08 16:27:11 +00:00
|
|
|
# Included upstream since 20.3
|
|
|
|
#Patch17: cjdns.s390x.patch
|
2019-05-03 14:49:48 +00:00
|
|
|
# patch build to use system libuv
|
|
|
|
Patch18: cjdns.libuv.patch
|
2020-07-01 23:47:28 +00:00
|
|
|
#Patch19: cjdns.fuzz.patch
|
2019-09-19 17:19:19 +00:00
|
|
|
# patch to use /proc/sys/kernel/random/uuid instead of sysctl before 20.4
|
2019-07-31 19:55:05 +00:00
|
|
|
Patch20: cjdns.sysctl.patch
|
2020-01-23 05:53:32 +00:00
|
|
|
# gcc-10 no longer allows duplicate globals
|
|
|
|
Patch22: cjdns.gcc10.patch
|
2016-03-22 15:40:36 +00:00
|
|
|
|
2019-08-03 22:49:45 +00:00
|
|
|
%if %{use_marked}
|
2019-09-19 17:19:19 +00:00
|
|
|
BuildRequires: nodejs, nodejs-marked, python3
|
2019-08-03 22:49:45 +00:00
|
|
|
%else
|
2020-07-01 23:47:28 +00:00
|
|
|
BuildRequires: nodejs, pandoc, python3
|
2019-08-03 22:49:45 +00:00
|
|
|
%endif
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
# Automated package review hates explicit BR on make, but it *is* needed
|
2018-07-18 22:32:34 +00:00
|
|
|
BuildRequires: make gcc
|
2016-03-22 15:40:36 +00:00
|
|
|
|
2018-07-18 22:26:00 +00:00
|
|
|
%if !0%{use_embedded}
|
2016-03-22 15:40:36 +00:00
|
|
|
# x86_64 and ARM libnacl are not compiled with -fPIC before Fedora release 11.
|
2016-04-18 20:23:46 +00:00
|
|
|
BuildRequires: %{nacl_name}-devel >= %{nacl_version}
|
2016-03-22 15:40:36 +00:00
|
|
|
%endif
|
|
|
|
%if %{use_systemd}
|
|
|
|
# systemd macros are not defined unless systemd is present
|
|
|
|
BuildRequires: systemd
|
|
|
|
Requires: systemd
|
|
|
|
Requires(post): systemd
|
|
|
|
Requires(preun): systemd
|
|
|
|
Requires(postun): systemd
|
|
|
|
%endif
|
|
|
|
Requires(pre): shadow-utils
|
2019-10-07 21:09:11 +00:00
|
|
|
|
2019-05-03 14:49:48 +00:00
|
|
|
%if 0%{use_libuv}
|
|
|
|
BuildRequires: libuv-devel
|
|
|
|
%else
|
2019-09-19 17:19:19 +00:00
|
|
|
BuildRequires: gyp
|
2018-06-28 17:01:36 +00:00
|
|
|
Provides: bundled(libuv) = 0.11.19
|
2019-05-03 14:49:48 +00:00
|
|
|
%endif
|
2019-10-07 21:09:11 +00:00
|
|
|
|
2016-10-12 20:36:47 +00:00
|
|
|
%if 0%{use_embedded}
|
|
|
|
Provides: bundled(nacl) = 20110221
|
|
|
|
%endif
|
2016-04-19 03:33:48 +00:00
|
|
|
# build system requires nodejs, unfortunately
|
|
|
|
ExclusiveArch: %{nodejs_arches}
|
2020-04-16 03:14:25 +00:00
|
|
|
# Seccomp_test is too slow on koji for this arch
|
2020-04-30 01:07:12 +00:00
|
|
|
#ExcludeArch: armv7hl
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Cjdns implements an encrypted IPv6 network using public-key cryptography for
|
|
|
|
address allocation and a distributed hash table for routing. This provides
|
|
|
|
near-zero-configuration networking, and prevents many of the security and
|
|
|
|
scalability issues that plague existing networks.
|
|
|
|
|
|
|
|
%package selinux
|
|
|
|
Summary: Targeted SELinux policy module for cjdns
|
|
|
|
BuildRequires: policycoreutils, checkpolicy, selinux-policy-devel
|
|
|
|
Requires: policycoreutils, selinux-policy-targeted
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description selinux
|
|
|
|
Targeted SELinux policy module for cjdns.
|
|
|
|
|
|
|
|
# FIXME: keep C tools separate?
|
|
|
|
%package tools
|
2016-04-06 02:15:03 +00:00
|
|
|
Summary: Nodejs tools for cjdns
|
2016-03-22 15:40:36 +00:00
|
|
|
Requires: nodejs, %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description tools
|
2016-04-06 02:15:03 +00:00
|
|
|
Nodejs tools for cjdns. Highlights:
|
|
|
|
peerStats show current peer status
|
|
|
|
cjdnslog display cjdroute log
|
|
|
|
cjdns-traceroute trace route to cjdns IP
|
|
|
|
sessionStats show current crypto sessions
|
2016-03-22 15:40:36 +00:00
|
|
|
|
2019-10-07 21:09:11 +00:00
|
|
|
%if %{with python2}
|
2017-08-19 13:38:09 +00:00
|
|
|
%package -n python2-cjdns
|
|
|
|
%{?python_provide:%python_provide python2-cjdns}
|
|
|
|
# Remove before F30
|
2018-02-21 22:51:34 +00:00
|
|
|
Provides: %{name}-python = %{version}-%{release}
|
2017-08-19 13:38:09 +00:00
|
|
|
Obsoletes: %{name}-python < %{version}-%{release}
|
2016-03-22 15:40:36 +00:00
|
|
|
Summary: Python tools for cjdns
|
2018-11-09 03:15:59 +00:00
|
|
|
%if 0%{?fedora} >= 18
|
2018-11-09 01:45:49 +00:00
|
|
|
BuildRequires: python2-rpm-macros
|
2018-11-09 03:15:59 +00:00
|
|
|
%else
|
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
%endif
|
2018-03-12 03:03:42 +00:00
|
|
|
Requires: python2, %{name} = %{version}-%{release}
|
2016-03-22 15:40:36 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
2017-08-19 13:38:09 +00:00
|
|
|
%description -n python2-cjdns
|
2016-03-22 15:40:36 +00:00
|
|
|
Python tools for cjdns.
|
2019-10-07 21:09:11 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with python3}
|
|
|
|
%package -n python3-%{name}
|
|
|
|
%{?python_provide:%python_provide python3-%{name}}
|
|
|
|
Summary: Python tools for cjdns
|
|
|
|
BuildRequires: python3-rpm-macros, python3-devel
|
|
|
|
Requires: python3, %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
%if !%{with python2}
|
2019-10-07 22:07:28 +00:00
|
|
|
Obsoletes: python2-%{name} < 20.4-2
|
2019-10-07 21:09:11 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%description -n python3-%{name}
|
|
|
|
Python tools for cjdns.
|
|
|
|
%endif
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
%package graph
|
2018-11-12 00:02:40 +00:00
|
|
|
Summary: Python peer graph tools for cjdns
|
2019-10-07 21:09:11 +00:00
|
|
|
%if %{with python3}
|
|
|
|
Requires: python3-%{name} = %{version}-%{release}
|
|
|
|
Requires: python3-networkx
|
|
|
|
%else
|
2018-11-09 01:45:49 +00:00
|
|
|
Requires: python2-%{name} = %{version}-%{release}
|
2020-12-16 17:48:02 +00:00
|
|
|
%if 0%{?rhel} == 7
|
2018-11-09 01:45:49 +00:00
|
|
|
Requires: python-networkx
|
2018-11-12 00:02:40 +00:00
|
|
|
Requires: python2-matplotlib
|
2018-11-09 01:45:49 +00:00
|
|
|
%else
|
|
|
|
Requires: python2-networkx
|
|
|
|
%endif
|
2019-10-07 21:09:11 +00:00
|
|
|
%endif
|
2016-03-22 15:40:36 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description graph
|
2018-11-12 00:02:40 +00:00
|
|
|
Python peer graph tools for cjdns.
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -qn cjdns-%{name}-v%{version}
|
|
|
|
%patch0 -b .selinux
|
|
|
|
|
|
|
|
%patch4 -b .genconf
|
|
|
|
%patch5 -b .sbin
|
|
|
|
|
2018-02-21 18:52:53 +00:00
|
|
|
cp %{SOURCE2} contrib/systemd
|
|
|
|
|
2019-08-03 22:49:45 +00:00
|
|
|
%if %{use_marked}
|
|
|
|
tar xvfz %{SOURCE3}
|
|
|
|
%endif
|
|
|
|
|
2018-07-18 22:26:00 +00:00
|
|
|
%if 0%{use_embedded}
|
|
|
|
# disable CPU opt
|
2019-07-31 19:55:05 +00:00
|
|
|
%else
|
2016-03-22 15:40:36 +00:00
|
|
|
# use system nacl library if provided.
|
2016-04-18 20:23:46 +00:00
|
|
|
if test -x %{nacl_lib}; then
|
|
|
|
%if 0%{use_libsodium}
|
|
|
|
%patch11 -b .sodium
|
|
|
|
%else
|
2016-03-22 15:40:36 +00:00
|
|
|
%patch6 -b .dyn
|
2016-04-18 20:23:46 +00:00
|
|
|
%endif
|
2016-03-22 15:40:36 +00:00
|
|
|
rm -rf node_build/dependencies/cnacl
|
|
|
|
# use static library if system nacl doesn't provide dynamic
|
|
|
|
elif test -d %{_includedir}/nacl && test -r %{_libdir}/libnacl.a; then
|
|
|
|
cd node_build/dependencies
|
|
|
|
rm -rf cnacl
|
|
|
|
mkdir -p cnacl/jsbuild
|
|
|
|
ln -s %{_libdir}/libnacl.a cnacl/jsbuild
|
|
|
|
ln -s %{_includedir}/nacl cnacl/jsbuild/include
|
|
|
|
cd -
|
|
|
|
fi
|
2016-10-15 01:09:34 +00:00
|
|
|
%patch12 -b .sign
|
2020-09-29 14:53:35 +00:00
|
|
|
cd crypto/sign
|
|
|
|
sed -i -e'/^#include / s,[<>],",g' crypto*int*.h
|
|
|
|
cd -
|
2016-03-22 15:40:36 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%patch9 -b .man
|
2016-04-06 02:15:03 +00:00
|
|
|
%patch10 -b .tools
|
2017-02-24 17:24:38 +00:00
|
|
|
#patch13 -b .ppc64
|
2018-02-21 18:58:17 +00:00
|
|
|
#patch14 -b .entropy
|
|
|
|
#patch15 -b .benc
|
2020-01-23 04:02:11 +00:00
|
|
|
#patch16 -b .python3
|
2019-05-03 14:49:48 +00:00
|
|
|
%if 0%{use_libuv}
|
|
|
|
%patch18 -p1 -b .libuv
|
|
|
|
rm -rf node_build/dependencies/libuv
|
2019-09-19 17:19:19 +00:00
|
|
|
%else
|
|
|
|
rm -rf node_build/dependencies/libuv/build/gyp # use system gyp
|
2020-04-30 01:07:12 +00:00
|
|
|
%ifarch armv7hl
|
2020-04-14 21:11:47 +00:00
|
|
|
sed -i -e '/optimizeLevel:/ s/-O0/-O3/' node_build/make.js
|
2020-01-24 20:04:46 +00:00
|
|
|
%else
|
2020-04-14 21:11:47 +00:00
|
|
|
sed -i -e '/optimizeLevel:/ s/-O0/-O3/' node_build/make.js
|
2019-05-03 14:49:48 +00:00
|
|
|
%endif
|
2020-01-24 20:04:46 +00:00
|
|
|
%endif
|
2020-07-01 23:47:28 +00:00
|
|
|
#patch19 -p1 -b .fuzz
|
2019-09-19 17:19:19 +00:00
|
|
|
#patch20 -p1 -b .sysctl
|
2020-04-14 20:39:38 +00:00
|
|
|
#patch22 -b .gcc10
|
2020-12-16 17:48:02 +00:00
|
|
|
%patch2 -b .warn
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
cp %{SOURCE1} README_Fedora.md
|
|
|
|
|
|
|
|
# Remove #!env from python scripts
|
|
|
|
chmod a+x contrib/python/cjdnsadmin/cli.py
|
|
|
|
find contrib/python/cjdnsadmin ! -executable -name "*.py" |
|
|
|
|
xargs sed -e '\,^#!/usr/bin/env, d' -i
|
|
|
|
find contrib/python -type f |
|
|
|
|
xargs sed -e '1 s,^#!/usr/bin/env ,#!/usr/bin/,' -i
|
2018-05-23 18:47:47 +00:00
|
|
|
sed -e '$ s,^python ,/usr/bin/python2 ,' -i contrib/python/cjdnsa
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
# Remove #!env from nodejs scripts
|
|
|
|
find tools -type f | xargs grep -l '^#!\/usr\/bin\/env ' |
|
|
|
|
xargs sed -e '1 s,^#!/usr/bin/env ,#!/usr/bin/,' -i
|
|
|
|
|
2018-11-09 03:07:02 +00:00
|
|
|
# Fix deprecated Buffer ctor except on EL6
|
|
|
|
sed -e '1,$ s/new Buffer/Buffer.from/' -i \
|
2019-08-25 01:59:45 +00:00
|
|
|
tools/lib/publicToIp6.js tools/lib/cjdnsadmin/cjdnsadmin.js
|
2018-11-09 03:07:02 +00:00
|
|
|
|
2016-03-22 15:40:36 +00:00
|
|
|
# Remove unpackaged code with undeclared licenses
|
2019-10-07 21:09:11 +00:00
|
|
|
%if !%{with_admin}
|
2016-03-22 15:40:36 +00:00
|
|
|
rm -rf contrib/nodejs # GPLv3 and ASL 2.0
|
|
|
|
%endif
|
|
|
|
rm -rf contrib/http # GPLv2 and MIT
|
|
|
|
|
2017-01-14 03:09:50 +00:00
|
|
|
cat >cjdns-up.sh <<'EOF'
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
cjdev="$(cjdns-online -i)" || exit 1
|
|
|
|
|
|
|
|
for s in %{_sysconfdir}/cjdns/up.d/*.sh; do
|
|
|
|
if test -x "$s"; then
|
|
|
|
"$s" up $cjdev
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
EOF
|
|
|
|
|
|
|
|
chmod a+x cjdns-up.sh
|
|
|
|
|
2018-07-18 22:26:00 +00:00
|
|
|
%if %{generic_build}
|
2018-07-19 01:42:43 +00:00
|
|
|
%ifarch s390x
|
|
|
|
sed -i -e 's/-march=native/-mtune=native/' node_build/make.js
|
|
|
|
%else
|
2018-07-18 22:26:00 +00:00
|
|
|
sed -i -e 's/-march=native/-mtune=generic/' node_build/make.js
|
2018-07-19 01:42:43 +00:00
|
|
|
%endif
|
2020-09-29 14:53:35 +00:00
|
|
|
#rm node_build/dependencies/cnacl/node_build/plans/*_AVX_plan.json
|
2018-07-18 22:26:00 +00:00
|
|
|
# Leaving SSE2 code in since x86 is secondary arch and pretty much everyone
|
|
|
|
# is going to have SSE2, except things like XO-1 which needs custom build.
|
|
|
|
#rm node_build/dependencies/cnacl/node_build/plans/x86_SSE2_plan.json
|
|
|
|
%endif
|
|
|
|
|
2019-08-03 22:49:45 +00:00
|
|
|
%if !%{use_marked}
|
2020-07-01 23:47:28 +00:00
|
|
|
for i in contrib/doc/*.md; do
|
|
|
|
sed -i -e'1,1 s/^/% /' -e'1,1 s/--/|/' -e'2,2d' $i
|
|
|
|
done
|
2019-08-03 22:49:45 +00:00
|
|
|
%endif
|
|
|
|
|
2019-08-25 01:59:45 +00:00
|
|
|
# remove hidden files from node_modules/nthen
|
|
|
|
cd node_modules/nthen
|
|
|
|
rm -f .f* .j* .t*
|
|
|
|
cd -
|
|
|
|
|
2019-10-07 21:09:11 +00:00
|
|
|
# python3 API
|
|
|
|
%if %{with python3}
|
|
|
|
tar xvfz %{SOURCE4}
|
|
|
|
mv python-cjdns-* python-cjdns
|
|
|
|
%endif
|
|
|
|
|
2016-03-22 15:40:36 +00:00
|
|
|
# FIXME: grep Version_CURRENT_PROTOCOL util/version/Version.h and
|
|
|
|
# check that it matches major %%{version}
|
|
|
|
|
|
|
|
%build
|
2019-10-07 21:09:11 +00:00
|
|
|
|
|
|
|
# build selinux policy
|
2016-03-22 15:40:36 +00:00
|
|
|
cd contrib/selinux
|
|
|
|
ln -s /usr/share/selinux/devel/Makefile .
|
|
|
|
make
|
|
|
|
cd -
|
2019-10-07 21:09:11 +00:00
|
|
|
%if 0 && %{with python3}
|
|
|
|
cd python-cjdns
|
|
|
|
python3 setup.py build
|
|
|
|
cd -
|
|
|
|
%endif
|
2016-08-05 21:34:50 +00:00
|
|
|
|
2016-03-22 15:40:36 +00:00
|
|
|
# nodejs based build system
|
2016-08-10 18:57:30 +00:00
|
|
|
|
2016-08-10 19:18:22 +00:00
|
|
|
%if !%{with seccomp}
|
2016-08-10 18:57:30 +00:00
|
|
|
export Seccomp_NO=1
|
|
|
|
%endif
|
2017-02-25 04:59:50 +00:00
|
|
|
%if %{with subnode}
|
|
|
|
export SUBNODE=1
|
|
|
|
%endif
|
2019-05-10 00:36:22 +00:00
|
|
|
NO_TEST=1 CJDNS_RELEASE_VERSION="%{name}-%{version}-%{release}" ./do
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
# FIXME: use system libuv on compatible systems
|
2019-05-03 14:49:48 +00:00
|
|
|
# bundled libuv is 0.11.19 with changes:
|
2016-03-22 15:40:36 +00:00
|
|
|
# https://github.com/cjdelisle/cjdns/commits/master/node_build/dependencies/libuv
|
|
|
|
|
2017-04-25 00:28:52 +00:00
|
|
|
%check
|
2019-05-10 00:36:22 +00:00
|
|
|
build_linux/test_testcjdroute_c all >test.out
|
2017-04-25 00:28:52 +00:00
|
|
|
|
2016-03-22 15:40:36 +00:00
|
|
|
%install
|
|
|
|
|
|
|
|
# the main switch process
|
|
|
|
mkdir -p %{buildroot}%{_sbindir}
|
|
|
|
install -p cjdroute %{buildroot}%{_sbindir}
|
|
|
|
|
|
|
|
# init support
|
|
|
|
%if %{use_upstart}
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/init
|
|
|
|
install -pm 644 contrib/upstart/cjdns.conf %{buildroot}%{_sysconfdir}/init
|
|
|
|
%endif
|
|
|
|
%if %{use_systemd}
|
|
|
|
mkdir -p %{buildroot}%{_unitdir}
|
|
|
|
install -pm 644 contrib/systemd/cjdns*.service %{buildroot}%{_unitdir}
|
|
|
|
%endif
|
2017-01-14 03:09:50 +00:00
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/cjdns/up.d
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
# chroot
|
|
|
|
mkdir -p %{buildroot}/var/empty/cjdns
|
|
|
|
|
|
|
|
# install selinux modules
|
|
|
|
mkdir -p %{buildroot}%{_datadir}/selinux/targeted
|
|
|
|
install -pm 644 contrib/selinux/cjdns.pp %{buildroot}%{_datadir}/selinux/targeted
|
|
|
|
ln -f contrib/selinux/cjdns.{te,fc} . # for doc dir
|
|
|
|
|
|
|
|
# install c and nodejs tools
|
|
|
|
mkdir -p %{buildroot}%{_libexecdir}/cjdns/{node_build,contrib}
|
2017-05-24 23:02:24 +00:00
|
|
|
install -p publictoip6 privatetopublic mkpasswd makekeys randombytes sybilsim \
|
2016-03-22 15:40:36 +00:00
|
|
|
%{buildroot}%{_libexecdir}/cjdns
|
|
|
|
rm -f node_modules/nthen/.npmignore
|
|
|
|
cp -pr tools node_modules %{buildroot}%{_libexecdir}/cjdns
|
|
|
|
|
|
|
|
%if %{with_admin}
|
|
|
|
rm -f contrib/nodejs/admin/.gitignore
|
|
|
|
cp -pr contrib/nodejs/admin %{buildroot}%{_libexecdir}/cjdns
|
|
|
|
%endif
|
|
|
|
|
2017-01-14 03:40:19 +00:00
|
|
|
cp -p cjdns-up.sh %{buildroot}%{_libexecdir}/cjdns/cjdns-up
|
2017-01-14 03:09:50 +00:00
|
|
|
|
2019-10-07 21:09:11 +00:00
|
|
|
# do python setup.py install *before* any other bin installs so we can move
|
|
|
|
# to libexec. FIXME: pip install might be able to do this more elegantly.
|
2016-03-22 15:40:36 +00:00
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
2019-10-07 21:09:11 +00:00
|
|
|
%if %{with python3}
|
|
|
|
mkdir -p %{buildroot}%{_libexecdir}/cjdns/python
|
|
|
|
cd python-cjdns
|
|
|
|
python3 setup.py install -O1 --root %{buildroot}
|
|
|
|
cd -
|
|
|
|
mv %{buildroot}/%{_bindir}/* %{buildroot}/%{_libexecdir}/cjdns/python
|
|
|
|
|
|
|
|
# These files are installed via doc and license
|
|
|
|
rm -f %{buildroot}%{python3_sitelib}/cjdnsadmin/bencode.py.LICENSE.txt
|
|
|
|
rm -f %{buildroot}%{_libexecdir}/cjdns/python/README.md
|
|
|
|
rm -f %{buildroot}%{_libexecdir}/cjdns/python/cjdns-dynamic.conf
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# symlinks for selected nodejs tools
|
2016-03-22 15:40:36 +00:00
|
|
|
for t in peerStats sessionStats cjdnslog search dumpLinks dumptable \
|
|
|
|
dumpRumorMill pathfinderTree pingAll; do
|
|
|
|
ln -sf %{_libexecdir}/cjdns/tools/$t %{buildroot}%{_bindir}
|
|
|
|
done
|
2016-04-06 02:15:03 +00:00
|
|
|
for t in traceroute; do
|
|
|
|
ln -sf %{_libexecdir}/cjdns/tools/$t %{buildroot}%{_bindir}/cjdns-$t
|
|
|
|
done
|
2016-03-22 15:40:36 +00:00
|
|
|
|
2017-05-24 23:02:24 +00:00
|
|
|
# symlinks for selected C tools that don't conflict with other packages
|
2016-03-22 15:40:36 +00:00
|
|
|
for t in publictoip6 randombytes makekeys; do
|
|
|
|
ln -sf %{_libexecdir}/cjdns/$t %{buildroot}%{_bindir}
|
|
|
|
done
|
|
|
|
|
|
|
|
# cjdns-online script
|
|
|
|
install -pm 755 contrib/systemd/cjdns-online.sh \
|
|
|
|
%{buildroot}%{_bindir}/cjdns-online
|
|
|
|
|
|
|
|
# man pages
|
|
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
|
|
|
mkdir -p %{buildroot}%{_mandir}/man5
|
|
|
|
mkdir -p %{buildroot}%{_mandir}/man8
|
|
|
|
install -pm 644 doc/man/cjdroute.conf.5 %{buildroot}%{_mandir}/man5
|
|
|
|
cd contrib/doc
|
|
|
|
for m in *.md; do
|
|
|
|
case ${m%.md} in
|
2016-04-06 02:15:03 +00:00
|
|
|
traceroute) M="1"
|
2019-08-03 22:49:45 +00:00
|
|
|
%{makeman} $m >%{buildroot}%{_mandir}/man$M/cjdns-${m%.md}.$M
|
2016-04-06 02:15:03 +00:00
|
|
|
continue ;;
|
2016-04-19 02:10:22 +00:00
|
|
|
privatetopublic|sybilsim) M="8" ;;
|
|
|
|
*) M="1" ;;
|
2016-03-22 15:40:36 +00:00
|
|
|
esac
|
2019-08-03 22:49:45 +00:00
|
|
|
%{makeman} $m >%{buildroot}%{_mandir}/man$M/${m%.md}.$M
|
2016-03-22 15:40:36 +00:00
|
|
|
done
|
|
|
|
cd -
|
|
|
|
|
2019-10-07 21:09:11 +00:00
|
|
|
%if %{with python2}
|
2016-03-22 15:40:36 +00:00
|
|
|
|
2019-10-07 21:09:11 +00:00
|
|
|
%if !%{with python3}
|
2016-03-22 15:40:36 +00:00
|
|
|
# install python tools that pull in networkx for graphing
|
|
|
|
cp -pr contrib/python %{buildroot}%{_libexecdir}/cjdns
|
|
|
|
|
|
|
|
# These files are installed via doc and license
|
|
|
|
rm %{buildroot}%{_libexecdir}/cjdns/python/README.md
|
|
|
|
rm %{buildroot}%{_libexecdir}/cjdns/python/cjdns-dynamic.conf
|
|
|
|
rm %{buildroot}%{_libexecdir}/cjdns/python/cjdnsadmin/bencode.py.LICENSE.txt
|
|
|
|
|
2019-10-07 21:09:11 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
# Install cjdnsadmin to site-packages
|
2018-11-09 01:45:49 +00:00
|
|
|
mkdir -p %{buildroot}%{python2_sitelib}
|
2019-10-07 21:09:11 +00:00
|
|
|
cp -pr contrib/python/cjdnsadmin %{buildroot}%{python2_sitelib}
|
|
|
|
|
|
|
|
%endif
|
2018-11-09 01:45:49 +00:00
|
|
|
|
2019-10-07 21:09:11 +00:00
|
|
|
%if %{with python2} || %{with python3}
|
2016-03-22 15:40:36 +00:00
|
|
|
# symlink python tools w/o conflict with nodejs tools or needing networkx
|
|
|
|
for t in pingAll.py trashroutes \
|
|
|
|
getLinks ip6topk pktoip6 cjdnsa searches findnodes; do
|
|
|
|
ln -sf %{_libexecdir}/cjdns/python/$t %{buildroot}%{_bindir}
|
|
|
|
done
|
2019-10-07 21:09:11 +00:00
|
|
|
%endif
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
# symlink python tools that pull in networkx for graphing
|
|
|
|
for t in drawgraph dumpgraph graphStats; do
|
|
|
|
ln -sf %{_libexecdir}/cjdns/python/$t %{buildroot}%{_bindir}
|
|
|
|
done
|
|
|
|
|
|
|
|
%files
|
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md README_*.md HACKING.md
|
|
|
|
%attr(0100,root,root) /var/empty/cjdns
|
|
|
|
%attr(0755,root,root) %{_sbindir}/cjdroute
|
|
|
|
%ghost %attr(0600,root,root) %config(missingok,noreplace) %{_sysconfdir}/cjdroute.conf
|
|
|
|
%dir %{_libexecdir}/cjdns
|
|
|
|
%if %{use_upstart}
|
|
|
|
%{_sysconfdir}/init/*
|
|
|
|
%endif
|
|
|
|
%if %{use_systemd}
|
|
|
|
%{_unitdir}/*
|
|
|
|
%endif
|
2017-01-14 03:09:50 +00:00
|
|
|
%dir %{_sysconfdir}/cjdns/up.d
|
|
|
|
%{_libexecdir}/cjdns/cjdns-up
|
2016-03-22 15:40:36 +00:00
|
|
|
%{_libexecdir}/cjdns/randombytes
|
|
|
|
%{_libexecdir}/cjdns/publictoip6
|
|
|
|
%{_libexecdir}/cjdns/privatetopublic
|
|
|
|
%{_libexecdir}/cjdns/sybilsim
|
|
|
|
%{_libexecdir}/cjdns/makekeys
|
2017-05-24 23:02:24 +00:00
|
|
|
%{_libexecdir}/cjdns/mkpasswd
|
2016-03-22 15:40:36 +00:00
|
|
|
%{_bindir}/randombytes
|
|
|
|
%{_bindir}/publictoip6
|
|
|
|
%{_bindir}/makekeys
|
|
|
|
%{_bindir}/cjdns-online
|
|
|
|
%{_mandir}/man5/*
|
|
|
|
%{_mandir}/man8/*
|
2016-04-06 02:15:03 +00:00
|
|
|
%{_mandir}/man1/cjdns-online.1.gz
|
|
|
|
%{_mandir}/man1/cjdroute.1.gz
|
|
|
|
%{_mandir}/man1/makekeys.1.gz
|
|
|
|
%{_mandir}/man1/publictoip6.1.gz
|
|
|
|
%{_mandir}/man1/randombytes.1.gz
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
%pre
|
|
|
|
getent group cjdns > /dev/null || groupadd -r cjdns
|
|
|
|
getent passwd cjdns > /dev/null || /usr/sbin/useradd -g cjdns \
|
|
|
|
-c "End to end encrypted IPv6 mesh" \
|
|
|
|
-r -d %{_libexecdir}/cjdns -s /sbin/nologin cjdns
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
%if %{use_systemd}
|
|
|
|
|
|
|
|
%post
|
|
|
|
%systemd_post cjdns.service
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%systemd_postun_with_restart cjdns.service
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%systemd_preun cjdns.service
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{use_upstart}
|
|
|
|
|
|
|
|
%preun
|
|
|
|
if [ "$1" -eq 0 ]; then
|
|
|
|
/sbin/initctl stop cjdns
|
|
|
|
fi
|
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ "$1" -ge 1 ]; then
|
|
|
|
/sbin/initctl restart cjdns
|
|
|
|
fi
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%files selinux
|
|
|
|
%doc cjdns.te cjdns.fc
|
|
|
|
%{_datadir}/selinux/targeted/*
|
|
|
|
|
|
|
|
%post selinux
|
|
|
|
/usr/sbin/semodule -s targeted -i %{_datadir}/selinux/targeted/cjdns.pp \
|
|
|
|
&>/dev/null || :
|
|
|
|
%{__restorecon} %{_sbindir}/cjdroute
|
|
|
|
|
|
|
|
%postun selinux
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
/usr/sbin/semodule -s targeted -r cjdns &> /dev/null || :
|
|
|
|
fi
|
|
|
|
|
|
|
|
%files tools
|
|
|
|
%if %{with_admin}
|
|
|
|
%{_libexecdir}/cjdns/admin
|
|
|
|
%endif
|
|
|
|
%{_libexecdir}/cjdns/tools
|
|
|
|
%{_libexecdir}/cjdns/node_build
|
|
|
|
%{_libexecdir}/cjdns/node_modules
|
|
|
|
%{_bindir}/peerStats
|
|
|
|
%{_bindir}/sessionStats
|
|
|
|
%{_bindir}/cjdnslog
|
|
|
|
%{_bindir}/dumpRumorMill
|
|
|
|
%{_bindir}/dumpLinks
|
|
|
|
%{_bindir}/pathfinderTree
|
|
|
|
%{_bindir}/dumptable
|
|
|
|
%{_bindir}/pingAll
|
|
|
|
%{_bindir}/search
|
2016-04-06 02:15:03 +00:00
|
|
|
%{_bindir}/cjdns-traceroute
|
|
|
|
%{_mandir}/man1/cjdns-traceroute.1.gz
|
2016-04-06 03:42:03 +00:00
|
|
|
%{_mandir}/man1/sessionStats.1.gz
|
2016-04-19 02:13:46 +00:00
|
|
|
%{_mandir}/man1/peerStats.1.gz
|
2016-05-04 03:49:35 +00:00
|
|
|
%{_mandir}/man1/cjdnslog.1.gz
|
2016-03-22 15:40:36 +00:00
|
|
|
|
2019-10-07 21:09:11 +00:00
|
|
|
%if %{with python2}
|
2017-08-19 13:38:09 +00:00
|
|
|
%files -n python2-cjdns
|
2016-03-22 15:40:36 +00:00
|
|
|
%doc contrib/python/README.md contrib/python/cjdns-dynamic.conf
|
|
|
|
%license contrib/python/cjdnsadmin/bencode.py.LICENSE.txt
|
2018-11-09 01:45:49 +00:00
|
|
|
%{python2_sitelib}/cjdnsadmin
|
2019-10-07 21:09:11 +00:00
|
|
|
%if !%{with python3}
|
|
|
|
%dir %{_libexecdir}/cjdns/python
|
|
|
|
%{_libexecdir}/cjdns/python/cexec
|
|
|
|
%{_libexecdir}/cjdns/python/cjdnsadminmaker.py*
|
|
|
|
%{_libexecdir}/cjdns/python/cjdnslog
|
|
|
|
%{_libexecdir}/cjdns/python/dumptable
|
|
|
|
%{_libexecdir}/cjdns/python/dynamicEndpoints.py*
|
|
|
|
%{_libexecdir}/cjdns/python/peerStats
|
|
|
|
%{_libexecdir}/cjdns/python/sessionStats
|
|
|
|
%{_libexecdir}/cjdns/python/pingAll.py*
|
|
|
|
%{_libexecdir}/cjdns/python/trashroutes
|
|
|
|
%{_libexecdir}/cjdns/python/getLinks
|
|
|
|
%{_libexecdir}/cjdns/python/ip6topk
|
|
|
|
%{_libexecdir}/cjdns/python/pktoip6
|
|
|
|
%{_libexecdir}/cjdns/python/cjdnsa
|
|
|
|
%{_libexecdir}/cjdns/python/searches
|
|
|
|
%{_libexecdir}/cjdns/python/findnodes
|
|
|
|
%{_bindir}/pingAll.py
|
|
|
|
%{_bindir}/trashroutes
|
|
|
|
%{_bindir}/getLinks
|
|
|
|
%{_bindir}/ip6topk
|
|
|
|
%{_bindir}/pktoip6
|
|
|
|
%{_bindir}/cjdnsa
|
|
|
|
%{_bindir}/searches
|
|
|
|
%{_bindir}/findnodes
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with python3}
|
|
|
|
%files -n python3-cjdns
|
|
|
|
%doc python-cjdns/README.md python-cjdns/cjdns-dynamic.conf
|
|
|
|
%license python-cjdns/cjdnsadmin/bencode.py.LICENSE.txt
|
|
|
|
%{python3_sitelib}/*
|
2016-03-22 15:40:36 +00:00
|
|
|
%dir %{_libexecdir}/cjdns/python
|
|
|
|
%{_libexecdir}/cjdns/python/cexec
|
|
|
|
%{_libexecdir}/cjdns/python/cjdnsadminmaker.py*
|
|
|
|
%{_libexecdir}/cjdns/python/cjdnslog
|
|
|
|
%{_libexecdir}/cjdns/python/dumptable
|
|
|
|
%{_libexecdir}/cjdns/python/dynamicEndpoints.py*
|
|
|
|
%{_libexecdir}/cjdns/python/peerStats
|
|
|
|
%{_libexecdir}/cjdns/python/sessionStats
|
|
|
|
%{_libexecdir}/cjdns/python/pingAll.py*
|
|
|
|
%{_libexecdir}/cjdns/python/trashroutes
|
|
|
|
%{_libexecdir}/cjdns/python/getLinks
|
|
|
|
%{_libexecdir}/cjdns/python/ip6topk
|
|
|
|
%{_libexecdir}/cjdns/python/pktoip6
|
|
|
|
%{_libexecdir}/cjdns/python/cjdnsa
|
|
|
|
%{_libexecdir}/cjdns/python/searches
|
|
|
|
%{_libexecdir}/cjdns/python/findnodes
|
|
|
|
%{_bindir}/pingAll.py
|
|
|
|
%{_bindir}/trashroutes
|
|
|
|
%{_bindir}/getLinks
|
|
|
|
%{_bindir}/ip6topk
|
|
|
|
%{_bindir}/pktoip6
|
|
|
|
%{_bindir}/cjdnsa
|
|
|
|
%{_bindir}/searches
|
|
|
|
%{_bindir}/findnodes
|
2019-10-07 21:09:11 +00:00
|
|
|
%endif
|
2016-03-22 15:40:36 +00:00
|
|
|
|
|
|
|
%files graph
|
|
|
|
%{_libexecdir}/cjdns/python/drawgraph
|
|
|
|
%{_libexecdir}/cjdns/python/dumpgraph
|
|
|
|
%{_libexecdir}/cjdns/python/graphStats
|
|
|
|
%{_bindir}/drawgraph
|
|
|
|
%{_bindir}/dumpgraph
|
|
|
|
%{_bindir}/graphStats
|
|
|
|
|
|
|
|
%changelog
|
2020-12-16 20:48:05 +00:00
|
|
|
* Wed Dec 16 2020 Stuart Gathman <stuart@gathman.org> - 21.1-2
|
|
|
|
- Reenable seccomp for armv7hl
|
|
|
|
|
2020-12-16 19:29:47 +00:00
|
|
|
* Wed Dec 16 2020 Stuart Gathman <stuart@gathman.org> - 21.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2020-12-16 17:48:02 +00:00
|
|
|
* Wed Dec 16 2020 Stuart Gathman <stuart@gathman.org> - 21-4
|
|
|
|
- Support gcc-11, drop el6 support.
|
|
|
|
|
2020-11-28 04:06:44 +00:00
|
|
|
* Fri Nov 27 2020 Stuart Gathman <stuart@gathman.org> - 21-3
|
|
|
|
- New python-cjdns release
|
|
|
|
|
2020-09-29 14:53:35 +00:00
|
|
|
* Mon Sep 28 2020 Stuart Gathman <stuart@gathman.org> - 21-2
|
|
|
|
- Enable libsodium
|
|
|
|
|
|
|
|
* Sat Sep 26 2020 Stuart Gathman <stuart@gathman.org> - 21-1
|
|
|
|
- New upstream release
|
|
|
|
|
2020-07-27 13:59:54 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-01 23:47:28 +00:00
|
|
|
* Wed Jul 1 2020 Stuart Gathman <stuart@gathman.org> - 20.7-1
|
|
|
|
- New upstream release
|
|
|
|
- Use pandoc for manpages
|
|
|
|
|
2020-05-26 00:42:37 +00:00
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 20.6-3
|
|
|
|
- Rebuilt for Python 3.9
|
2020-05-29 20:15:56 +00:00
|
|
|
- disable patch for nodejs-ronn, now included in Fedora
|
2020-05-26 00:42:37 +00:00
|
|
|
|
2020-04-30 01:07:12 +00:00
|
|
|
* Wed Apr 29 2020 Stuart Gathman <stuart@gathman.org> - 20.6-2
|
|
|
|
- Disable SECCOMP by default for armv7hl instead of excluding arch
|
|
|
|
|
2020-04-14 21:11:47 +00:00
|
|
|
* Mon Mar 16 2020 Stuart Gathman <stuart@gathman.org> - 20.6-1
|
|
|
|
- New upstream release
|
|
|
|
|
2020-04-02 15:23:54 +00:00
|
|
|
* Mon Mar 16 2020 Stuart Gathman <stuart@gathman.org> - 20.5-3
|
|
|
|
- Rebuilt for Fedora 33
|
|
|
|
- Minor doc updates
|
|
|
|
|
2020-01-28 14:04:25 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-23 04:02:11 +00:00
|
|
|
* Wed Jan 22 2020 Stuart Gathman <stuart@gathman.org> - 20.5-1
|
|
|
|
- New upstream release
|
|
|
|
|
2019-10-07 21:09:11 +00:00
|
|
|
* Wed Oct 2 2019 Stuart Gathman <stuart@gathman.org> - 20.4-2
|
|
|
|
- Add python3 support for python API
|
|
|
|
|
2019-09-19 17:19:19 +00:00
|
|
|
* Tue Sep 10 2019 Stuart Gathman <stuart@gathman.org> - 20.4-1
|
|
|
|
- Update to 20.4
|
|
|
|
- Update bundled libuv build to use system gyp for build
|
|
|
|
|
2019-08-25 01:40:01 +00:00
|
|
|
* Sat Aug 24 2019 Stuart Gathman <stuart@gathman.org> - 20.3-8
|
|
|
|
- Don't package local copy of ronn
|
2019-08-25 01:59:45 +00:00
|
|
|
- Remove hidden files from node_modules/nthen
|
2019-08-25 01:40:01 +00:00
|
|
|
|
2019-08-16 02:31:31 +00:00
|
|
|
* Thu Aug 15 2019 Stuart Gathman <stuart@gathman.org> - 20.3-7
|
2019-08-16 02:44:32 +00:00
|
|
|
- Don't audit /var/lib/sss access bz#1589395
|
2019-08-16 02:31:31 +00:00
|
|
|
|
2019-08-06 16:38:33 +00:00
|
|
|
* Tue Aug 06 2019 Stuart Gathman <stuart@gathman.org> - 20.3-6
|
|
|
|
- Much simpler solution to removing sysctl calls :-)
|
|
|
|
|
2019-08-03 22:49:45 +00:00
|
|
|
* Sat Aug 03 2019 Stuart Gathman <stuart@gathman.org> - 20.3-5
|
|
|
|
- Remove deprecated sysctl() call in getUUID (read from /proc/.../random/uuid)
|
|
|
|
- Patch a local copy of ronn to stop calling util.puts/util.debug
|
|
|
|
|
2019-07-24 20:17:16 +00:00
|
|
|
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-10 00:36:22 +00:00
|
|
|
* Thu May 09 2019 Stuart Gathman <stuart@gathman.org> - 20.3-3
|
|
|
|
- Move running test suite to check
|
|
|
|
|
2019-05-08 23:34:58 +00:00
|
|
|
* Wed May 08 2019 Stuart Gathman <stuart@gathman.org> - 20.3-2
|
|
|
|
- Increase timeout for fuzz tests to allow slower arches to succeed
|
|
|
|
|
2019-05-08 16:27:11 +00:00
|
|
|
* Wed May 08 2019 Stuart Gathman <stuart@gathman.org> - 20.3-1
|
|
|
|
- New upstream version 20.3
|
|
|
|
|
2019-05-03 19:26:08 +00:00
|
|
|
* Fri May 03 2019 Stuart Gathman <stuart@gathman.org> - 20.2-7
|
|
|
|
- Option to use system libuv
|
|
|
|
- Fix scope of Pipe_PATH String_CONST in config.
|
2019-05-03 14:49:48 +00:00
|
|
|
|
2019-01-31 15:37:29 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-11-09 01:45:49 +00:00
|
|
|
* Thu Nov 8 2018 Stuart Gathman <stuart@gathman.org> - 20.2-5
|
|
|
|
- Install cjdnsadmin python module in site-packages
|
|
|
|
- Work around missing python2-networkx Provides in python-networkx bz#1647987
|
2018-11-09 03:07:02 +00:00
|
|
|
- Fix deprecated Buffer ctor in nodejs tools except on el6
|
2018-11-09 01:45:49 +00:00
|
|
|
|
2018-07-18 15:18:09 +00:00
|
|
|
* Wed Jul 18 2018 Stuart Gathman <stuart@gathman.org> - 20.2-4
|
2018-06-28 17:01:36 +00:00
|
|
|
- cjdns-20.2 bundles libuv-0.11.19
|
2018-07-18 15:18:09 +00:00
|
|
|
- disable CPU specific optimization
|
|
|
|
|
2018-07-12 21:48:27 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
2018-06-28 17:01:36 +00:00
|
|
|
|
2018-05-31 15:04:56 +00:00
|
|
|
* Thu May 31 2018 Stuart Gathman <stuart@gathman.org> - 20.2-2
|
|
|
|
- Add cnacl s390x support BZ#1584480
|
|
|
|
|
2018-05-23 01:36:13 +00:00
|
|
|
* Tue May 22 2018 Stuart Gathman <stuart@gathman.org> - 20.2-1
|
|
|
|
- New upstream release BZ#1464671
|
|
|
|
|
2018-03-22 12:48:38 +00:00
|
|
|
* Wed Mar 14 2018 Stuart Gathman <stuart@gathman.org> - 20.1-4
|
2018-03-12 19:35:08 +00:00
|
|
|
- Explicit python version in Requires
|
2018-03-22 12:43:07 +00:00
|
|
|
- Fix possible unterminated interface name in ifreq
|
2018-03-12 19:35:08 +00:00
|
|
|
|
2018-03-13 20:11:47 +00:00
|
|
|
* Tue Mar 13 2018 Iryna Shcherbina <ishcherb@redhat.com> - 20.1-3
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2018-03-12 19:35:08 +00:00
|
|
|
* Tue Mar 6 2018 Stuart Gathman <stuart@gathman.org> - 20.1-2
|
2018-03-06 17:34:06 +00:00
|
|
|
- selinux: Allow map access to cjdns_exec_t
|
2018-03-06 18:31:49 +00:00
|
|
|
- disable subnode by default
|
2018-03-06 17:34:06 +00:00
|
|
|
|
2018-02-21 18:52:53 +00:00
|
|
|
* Wed Feb 21 2018 Stuart Gathman <stuart@gathman.org> - 20.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2018-02-09 08:04:13 +00:00
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 19.1-10
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
2018-02-07 04:58:55 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 19.1-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-10-02 06:34:06 +00:00
|
|
|
* Mon Oct 02 2017 Remi Collet <remi@fedoraproject.org> - 19.1-8
|
|
|
|
- rebuild for libsodium
|
|
|
|
|
2017-08-19 13:38:09 +00:00
|
|
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 19.1-7
|
|
|
|
- Python 2 binary package renamed to python2-cjdns
|
|
|
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
2017-08-02 18:49:14 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 19.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 04:51:45 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 19.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-05-24 23:02:24 +00:00
|
|
|
* Wed May 24 2017 Stuart D. Gathman <stuart@gathman.org> 19.1-4
|
|
|
|
- Add calls to sodium_init()
|
|
|
|
- Include mkpasswd (but not in /usr/bin)
|
|
|
|
|
2017-03-08 21:49:58 +00:00
|
|
|
* Fri Feb 24 2017 Stuart D. Gathman <stuart@gathman.org> 19.1-3
|
|
|
|
- Test and fix --with=subnode
|
|
|
|
|
2017-02-24 20:02:31 +00:00
|
|
|
* Fri Feb 24 2017 Stuart D. Gathman <stuart@gathman.org> 19.1-2
|
|
|
|
- Adjust for moving in6_ifreq to linux/ipv6.h in kernel-headers-4.11
|
|
|
|
|
2017-02-24 17:24:38 +00:00
|
|
|
* Fri Feb 24 2017 Stuart D. Gathman <stuart@gathman.org> 19.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2017-02-18 20:40:53 +00:00
|
|
|
* Sat Feb 18 2017 Stuart D. Gathman <stuart@gathman.org> 18-7
|
2017-02-18 20:37:24 +00:00
|
|
|
- Fix errors and document nits found by gcc7
|
|
|
|
|
2017-02-10 07:31:08 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 18-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-14 03:09:50 +00:00
|
|
|
* Sat Jan 7 2017 Stuart D. Gathman <stuart@gathman.org> 18-5
|
2018-02-09 08:04:13 +00:00
|
|
|
- Run scripts in %%{sysconfdir}/cjdns/up.d when cjdns comes up.
|
2017-01-14 03:09:50 +00:00
|
|
|
|
2016-11-07 04:33:59 +00:00
|
|
|
* Sun Nov 6 2016 Stuart D. Gathman <stuart@gathman.org> 18-4
|
|
|
|
- update cjdns-online man page
|
2016-12-02 22:50:23 +00:00
|
|
|
- Support ppc64, ppc64le, s390x
|
2016-11-07 04:33:59 +00:00
|
|
|
|
2016-10-15 02:28:02 +00:00
|
|
|
* Fri Oct 14 2016 Stuart D. Gathman <stuart@gathman.org> 18-3
|
|
|
|
- libstdc++ not needed with libsodium
|
|
|
|
|
2016-10-15 01:09:34 +00:00
|
|
|
* Fri Oct 14 2016 Stuart D. Gathman <stuart@gathman.org> 18-2
|
|
|
|
- Remove Sign.c which uses a private API and isn't needed until supernodes.
|
|
|
|
- Use libsodium by default: seems best performance of dynamic libraries
|
|
|
|
|
2016-10-12 20:36:47 +00:00
|
|
|
* Wed Oct 12 2016 Stuart D. Gathman <stuart@gathman.org> 18-1
|
|
|
|
- Update to 18 upstream release
|
|
|
|
|
2016-08-15 18:13:40 +00:00
|
|
|
* Mon Aug 15 2016 Stuart D. Gathman <stuart@gathman.org> 17.4-7
|
|
|
|
- Move modprobe to cjdns-loadmodules.service
|
|
|
|
|
2016-08-10 19:22:27 +00:00
|
|
|
* Wed Aug 10 2016 Stuart D. Gathman <stuart@gathman.org> 17.4-6
|
2016-08-10 20:55:37 +00:00
|
|
|
- Fix logic for %%bcond_without seccomp
|
2016-08-10 19:22:27 +00:00
|
|
|
|
|
|
|
* Wed Aug 10 2016 Stuart D. Gathman <stuart@gathman.org> 17.4-5
|
2016-08-10 18:12:45 +00:00
|
|
|
- cjdns.service: add CapabilityBoundingSet
|
|
|
|
|
2016-06-24 20:12:26 +00:00
|
|
|
* Fri Jun 24 2016 Stuart D. Gathman <stuart@gathman.org> 17.4-4
|
2016-06-24 14:48:31 +00:00
|
|
|
- cjdns-selinux: allow cjdroute to manipulate route table
|
|
|
|
|
2016-06-24 03:01:24 +00:00
|
|
|
* Thu Jun 23 2016 Stuart D. Gathman <stuart@gathman.org> 17.4-3
|
|
|
|
- Remove cjdns-resume.service patch, incorporated upstream
|
|
|
|
- Add --interface option to cjdns-online.sh
|
|
|
|
|
2016-06-23 22:02:04 +00:00
|
|
|
* Thu Jun 23 2016 Stuart D. Gathman <stuart@gathman.org> 17.4-2
|
|
|
|
- Move tool manpages to tool subpackage.
|
|
|
|
|
2016-06-23 21:22:04 +00:00
|
|
|
* Thu Jun 23 2016 Stuart D. Gathman <stuart@gathman.org> 17.4-1
|
|
|
|
- Update to 17.4 upstream release
|
|
|
|
- Remove cap3 patch, as it is incorporated upstream
|
|
|
|
- Remove Constant.js patch, as it is incorporated upstream
|
|
|
|
|
2016-05-04 03:44:29 +00:00
|
|
|
* Tue May 3 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-13
|
|
|
|
- man page for cjdnslog
|
|
|
|
- Fix running on Fedora as well as openVZ. :-P
|
2016-06-23 21:22:04 +00:00
|
|
|
- Make cjdns exclusive to nodejs_arches. Rafael Fonseca <rdossant@redhat.com>
|
2016-05-04 03:44:29 +00:00
|
|
|
|
2016-04-18 21:18:19 +00:00
|
|
|
* Mon Apr 18 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-12
|
2016-04-18 20:01:59 +00:00
|
|
|
- Run modprobe only if /dev/tun not present - fixes running on openVZ
|
2016-04-18 20:23:46 +00:00
|
|
|
- Select nacl/libsodium with a macro
|
|
|
|
- Switch back to nacl for platforms that support it
|
2016-04-18 21:09:05 +00:00
|
|
|
- man page for peerStats
|
2016-04-18 20:01:59 +00:00
|
|
|
|
2016-04-06 02:33:07 +00:00
|
|
|
* Tue Apr 5 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-11
|
2016-04-06 02:15:03 +00:00
|
|
|
- Patch some bugs in traceroute and symlink to /usr/bin/cjdns-traceroute
|
2016-04-06 03:42:03 +00:00
|
|
|
- man page for cjdns-traceroute, sessionStats
|
2016-04-06 02:15:03 +00:00
|
|
|
- switch to libsodium instead of nacl
|
|
|
|
|
2016-03-22 15:40:36 +00:00
|
|
|
* Thu Mar 10 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-10
|
|
|
|
- Mark nodejs and selinux noarch
|
|
|
|
- Remove _isa from noarch subpackages.
|
|
|
|
|
|
|
|
* Thu Mar 10 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-9
|
|
|
|
- Strip /8 from IPs printed by cjdns-online
|
|
|
|
- Add GPL3+ to cjdns-online
|
|
|
|
- ghost /etc/cjdroute.conf
|
|
|
|
- Include _isa formula in subpackage requires.
|
|
|
|
|
|
|
|
* Tue Mar 8 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-8
|
|
|
|
- Add release to main package dependencies
|
|
|
|
- More man pages
|
|
|
|
- Restore missing cjdns-resume.service
|
|
|
|
- Add empty config to be owned by package
|
|
|
|
|
|
|
|
* Tue Mar 1 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-7
|
|
|
|
- Add explicit systemd dependency
|
|
|
|
- Add selinux-policy-targeted dependency
|
|
|
|
- Add version to main package dependencies
|
|
|
|
- Remove use of #!/usr/bin/env in nodejs tools
|
|
|
|
- Change all top level define to global
|
|
|
|
- Remove workaround for missing -fPIC on libnacl for X86_64 on f22.
|
|
|
|
|
|
|
|
* Mon Feb 29 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-6
|
|
|
|
- Man pages
|
|
|
|
- Move /usr/lib/cjdns to /usr/libexec/cjdns
|
|
|
|
- Move all C tools to main package, mark (nodejs) tools noarch
|
|
|
|
|
|
|
|
* Wed Feb 24 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-5
|
|
|
|
- Add use_embedded option
|
|
|
|
- Reorganize with use_systemd, use_upstart
|
|
|
|
- Set __restorecon only if not defined
|
|
|
|
- Use install instead of cp to set file modes
|
|
|
|
- Move randombytes,publictoip6 and /usr/lib/cjdns to main package
|
|
|
|
- Fix bad #! lines in contrib/python
|
|
|
|
- Patch util/Security.c to call setgroups(0,...) before setuid().
|
|
|
|
|
|
|
|
* Fri Feb 12 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-4
|
|
|
|
- Add Fedora README
|
|
|
|
- No libnacl on EL7 or EPEL7
|
|
|
|
|
|
|
|
* Tue Feb 2 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-3
|
|
|
|
- Add node_modules to tools
|
|
|
|
- Add #pragmas to ignore bogus warnings from gcc6
|
|
|
|
- Fix shift of signed int
|
|
|
|
|
|
|
|
* Mon Feb 1 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-2
|
|
|
|
- Fix extra line in updated sbin patch
|
|
|
|
|
|
|
|
* Mon Feb 1 2016 Stuart D. Gathman <stuart@gathman.org> 17.3-1
|
|
|
|
- New upstream release
|
|
|
|
- Add cjdns-resume.service to restart cjdns on resume from sleep
|
|
|
|
|
|
|
|
* Tue Jan 19 2016 Stuart D. Gathman <stuart@gathman.org> 17.2-1
|
|
|
|
- New upstream release
|
|
|
|
|
|
|
|
* Sat Nov 07 2015 Stuart D. Gathman <stuart@gathman.org> 17.1-3
|
|
|
|
- remove defattr
|
|
|
|
- TODO: generate default config at install time, not first start
|
|
|
|
|
|
|
|
* Wed Nov 04 2015 Stuart D. Gathman <stuart@gathman.org> 17.1-2
|
|
|
|
- use dynamic nacl library backported from rawhide
|
|
|
|
|
|
|
|
* Tue Nov 03 2015 Stuart D. Gathman <stuart@gathman.org> 17.1-1
|
|
|
|
- update to new protocol version
|
|
|
|
|
|
|
|
* Tue Oct 27 2015 Stuart D. Gathman <stuart@gathman.org> 16.3-2
|
|
|
|
- move graphing tools to graph subpackage: networkx has a lot of dependencies.
|
|
|
|
- use embedded nacl only for i686 (which compiles it with -fPIC)
|
|
|
|
|
|
|
|
* Fri Oct 16 2015 Stuart D. Gathman <stuart@gathman.org> 16.3-1
|
|
|
|
- Allow hostname lookup in selinux policy
|
|
|
|
- python tools subpackage
|
|
|
|
|
|
|
|
* Sun Oct 4 2015 Stuart D. Gathman <stuart@gathman.org> 16.0-6
|
|
|
|
- restorecon after selinux install to initialize cjdroute context
|
|
|
|
- remove module_request (to load tun driver) from selinux policy
|
|
|
|
- make init scripts load tun driver
|
|
|
|
|
|
|
|
* Sun Sep 27 2015 Stuart D. Gathman <stuart@gathman.org> 16.0-5
|
|
|
|
- Restart cjdroute on update, stop on uninstall
|
|
|
|
- symlink selected tools to bin
|
|
|
|
- use /var/empty/cjdns for chroot
|
|
|
|
- patch genconf to change chroot and setuser
|
|
|
|
|
|
|
|
* Wed Sep 23 2015 Stuart D. Gathman <stuart@gathman.org> 16.0-4
|
|
|
|
- Remove doc subpackage - only a meg of docs, and protocol is experimental.
|
|
|
|
- Fix for RLIMIT_NPROC - setuid bug.
|
|
|
|
- Add setgid to Security.c
|
|
|
|
- add contrib/nodejs so tools work
|
|
|
|
|
|
|
|
* Wed Sep 23 2015 Stuart D. Gathman <stuart@gathman.org> 16.0-3
|
|
|
|
- Add selinux, doc and tools subpackages
|
|
|
|
- Support EL6
|
|
|
|
|
|
|
|
* Mon Sep 21 2015 Stuart D. Gathman <stuart@gathman.org> 16.0-2
|
|
|
|
- nodejs not a runtime dependency of main package
|
|
|
|
- move binaries to /usr/bin (good idea?)
|
|
|
|
|
|
|
|
* Mon Sep 21 2015 Stuart D. Gathman <stuart@gathman.org> 16.0-1
|
|
|
|
- Initial RPM
|