Hannu Nyman
4690a1f1c9
nano: update to 5.3
Update nano editor to version 5.3.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
4 years ago
Rosen Penev
0429081577
Merge pull request #13581 from neheb/sho
libshout: update to 2.4.4
4 years ago
Rosen Penev
445872a996
Merge pull request #13570 from jefferyto/golang-1.15
golang: Update to 1.15.2, update/enhance Makefiles
4 years ago
Rosen Penev
eac9f27cc5
libshout: update to 2.4.4
Small fix to nanosleep patch.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years ago
Rosen Penev
7e00eb967f
Merge pull request #13582 from jan-kardell/TQ_fix_lighttpd_mod_auth
[lighttpd] Pull in mod-authn_file with mod-auth
4 years ago
Rosen Penev
ec8d3aa196
Merge pull request #13510 from zhoreeq/bump_0_3_15
yggdrasil: bump to 0.3.15
4 years ago
Rosen Penev
70156c9682
Merge pull request #13528 from wevsty/patch-1
openssh: update to 8.4p1
4 years ago
Rosen Penev
8adb95ba9b
Merge pull request #13584 from ja-pa/python-zipp-3.3.0
python-zipp: update to version 3.3.0
4 years ago
Josef Schlehofer
6d8e8227c4
Merge pull request #13588 from BKPepe/btrfs-progs
btrfs-progs: update to version 5.7
4 years ago
Hannu Nyman
4f578b4afa
Merge pull request #13583 from commodo/python-updates1
diango,django-restframework: bump versions
4 years ago
Hannu Nyman
14eb52fbbb
Merge pull request #13586 from jefferyto/python-zope-interface-5.1.2
python-zope-interface: Update to 5.1.2
4 years ago
Hannu Nyman
0b526d7439
Merge pull request #13590 from jefferyto/python-attrs-20.2.0
python-attrs: Update to 20.2.0
4 years ago
Jeffery To
b466314313
python-attrs: Update to 20.2.0
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Josef Schlehofer
f775fa89ca
btrfs-progs: update to version 5.7
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
4 years ago
Jeffery To
c7d4d1e80e
python-zope-interface: Update to 5.1.2
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jan Pavlinec
727894d77e
python-zipp: update to version 3.3.0
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
4 years ago
Rosen Penev
77adfcac25
Merge pull request #13573 from ja-pa/ooniprobe-3.0.7
ooniprobe: update to version 3.0.7
4 years ago
Jan Kardell
18967c9593
[lighttpd] Pull in mod-authn_file with mod-auth
If lighttpd loads mod-auth, it also automatically tries to load
mod-authn_file, and fails if it's not available. That is a compatibility
feature of lighttpd after the funtionality was split into modules.
Signed-off-by: Jan Kardell <jan.kardell@telliq.com>
4 years ago
Jeffery To
d5dc30fe80
golang: Add option to enable Spectre mitigations
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
3d6df5d7d9
golang: Add golang-host-build.mk
This adds a Makefile for host builds of Go programs.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
2d22a629f5
golang: Move package scripts into golang-build.sh
This also adds GO_PKG_INSTALL_BIN_PATH which determines the path where
binaries are installed by GoPackage/Package/Install/Bin (this was
previously hard-coded to /usr/bin).
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
4773c288cd
golang: Quote variables passed to the shell
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
7aaaa8ae64
golang: Add more error handling for go-gcc-helper
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
a95afd67df
golang: Use external linking for target Go
In Go 1.15, the linker now defaults to internal linking mode for
-buildmode=pie on amd64 and arm64[1], however this results in go tool
binaries with the wrong dynamic linker/interpreter.
External linking is still used when PIE is enabled for other platforms,
whereas internal linking is used when PIE is not enabled.
This changes target Go to always use external linking, to fix PIE
binaries for amd64/arm64 and for consistency.
[1]: https://golang.org/doc/go1.15#linker
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
93ee27edb8
golang: Simplify target compile
* Reuse GO_PKG_ENABLE_PIE from golang-package.mk
* Replace $(if ...) with $(or ...) to get default values
* Refactor vars common to each compile stage into variable
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
03a1f87549
golang: Use GO_LDFLAGS to set buildmode=pie for host Go
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
66eabf18f5
golang: Refactor vars common to each host compile stage into variable
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
4fb4ec963f
golang: Simplify bootstrap stage
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
40bff64ad3
golang: Group variables by stage (bootstrap/host/target)
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
9074dbd917
golang: Share build cache across package builds
This also adds a config option GOLANG_BUILD_CACHE_DIR to customize the
location of the build cache directory.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
3dd55b504c
golang: Move module cache into DL_DIR
This also adds a config option GOLANG_MOD_CACHE_WORLD_READABLE; if
enabled, chmod is run after a Go package build to make all
files/directories in the module cache world-readable.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Rosen Penev
adaa2ddef8
Merge pull request #13579 from mmtj/pyroute2-0.5.14
python3-pyroute2: update to version 0.5.14
4 years ago
Martin Matějek
f6adb73cff
python3-pyroute: update to version 0.5.14
Signed-off-by: Martin Matějek <martin.matejek@gmx.com>
4 years ago
Josef Schlehofer
b390d74704
Merge pull request #13574 from ja-pa/dnstap-0.2.2
dnstap: update to version 0.2.2
4 years ago
Hannu Nyman
d6689e7fad
Merge pull request #13575 from eglooca/master
netifyd: Updated to v3.05.
4 years ago
Johnathan Arsenault
33d6dc4027
ddns-scripts: add ipv6 capability for no-ip.com
Signed-off-by: Johnathan Arsenault <johnathan.arsenault@gmail.com>
Tested-by: Stefan Lippers-Hollmann <s.l-h@gmx.de>
4 years ago
Darryl Sokoloski
7bfaf50c36
netifyd: Updated to v3.05.
Signed-off-by: Darryl Sokoloski <darryl@sokoloski.ca>
4 years ago
Jan Pavlinec
364d702e53
dnstap: update to version 0.2.2
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
4 years ago
Jan Pavlinec
c2ea65c414
measurement-kit: remove package
Note:
measurement-kit is no longer needed for ooniprobe build
and was depredecated
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
4 years ago
Jan Pavlinec
ba97a9fdb1
ooniprobe: update to version 3.0.7
Remove measurement-kit dependency since it's
no longer needed.
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
4 years ago
Alexandru Ardelean
4e63dea7b4
django-restframework: bump to version 3.12.1
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
4 years ago
Alexandru Ardelean
baafb68da6
django: bump to version 3.1.2
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
4 years ago
Yuan Tao
27e8c832d6
openssh: update to 8.4p1
Signed-off-by: Yuan Tao <ty@wevs.org>
4 years ago
Rosen Penev
1640ff1a1e
Revert "mpd: update to 0.22"
This reverts commit 9eb20588cc
.
For some unexplained reason, this uses host tools to compile target
builds.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years ago
Jeffery To
4674564e42
golang: Move config option into separate file
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Jeffery To
fc7cf379e3
golang: Update to 1.15.2
1.15.1 includes a fix for CVE-2020-24553:
net/http/cgi,net/http/fcgi: Cross-Site Scripting (XSS) when Content-Type
is not specified
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
4 years ago
Rosen Penev
4c03d96fa5
Merge pull request #13567 from zhaojh329/libuhttpd
libuhttpd: Update to 3.3.1
4 years ago
Rosen Penev
0d157b2543
Merge pull request #13562 from antonlacon/rsync-options
rsync: disable option for bundled zlib, add option for zstd
4 years ago
Jianhui Zhao
f4c165c58a
libuhttpd: Update to 3.3.1
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
4 years ago
Rosen Penev
81f6d680a2
Merge pull request #13546 from miska/maria-cleanup-update
MariaDB: cleanup & update
4 years ago