feed/packages.git
3 years agonginx-util: use UCI for server configuration 13405/head
Peter Stadler [Thu, 23 Jul 2020 12:56:36 +0000 (14:56 +0200)]
nginx-util: use UCI for server configuration

**tl;dr:** The functions `{add,del}_ssl` modify a server
section of the UCI config if there is no `.conf` file with
the same name in `/etc/nginx/conf.d/`.

Then `init_lan` creates `/var/lib/nginx/uci.conf` files by
copying the `/etc/nginx/uci.conf.template` and standard
options from the UCI config; additionally the special path
`logd` can be used in `{access,error}_log`.

The init does not change the configuration beside
re-creating self-signed certificates when needed. This is
also the only purpose of the new `check_ssl`, which is
installed as yearly cron job.

**Initialization:**

Invoking `nginx-util init_lan` parses the UCI configuration
for package `nginx`. It creates a server part in
`/var/lib/nginx/uci.conf` for each `section server '$name'`
by copying all UCI options but the following:

* `option uci_manage_ssl` is skipped. It is set to
'self-signed' by `nginx-util add_ssl $name`, removed by
`nginx-util del_ssl $name` and used by
`nginx-util check_ssl` (see below).

* `logd` as path in `error_log` or `access_log` writes them
to STDERR respective STDOUT, which are fowarded by Nginx's
init to the log daemon. Specifically:
`option error_log 'logd'` becomes `error_log stderr;` and
`option access_log 'logd openwrt'` becomes
`access_log /proc/self/fd/1 openwrt;`

Other `[option|list] key 'value'` entries just become
`key value;` directives.

The init.d calls internally also `check_ssl` for rebuilding
self-signed SSL certificates if needed (see below). And it
still sets up `/var/lib/nginx/lan{,_ssl}.listen` files as
it is doing in the current version (so they stay available).

**Defaults:**

The package installs the file `/etc/nginx/restrict_locally`
containing allow/deny directives for restricting the access
to LAN addresses by including it into a server part. The
default server '_lan' includes this file and listens on all
IPs (instead of only the local IPs as it did before; other
servers do not need to listen explicitly on the local IPs
anymore). The default server is contained together with a
server that redirects HTTP requests for inexistent URLs to
HTTPS in the UCI configuration file `/etc/config/nginx`.
Furthermore, the packages installs a
`/etc/nginx/uci.conf.template` containing the current setup
and a marker, which will be replaced by the created UCI
servers when calling `init_lan`.

**Other:**

If there is a file named `/etc/nginx/conf.d/$name.conf` the
functions `init_lan`, `add_ssl $name` and `del_ssl $name`
will use that file instead of a UCI server section (this is
similar to the current version).

Else it selects the UCI `section server $name`, or, when
there is no such section, it searches for the first one
having `option server_name '… $name …'`. For this section:

* `nginx-util add_ssl $name` will add to it:
`option uci_manage_ssl 'self-signed'`
`option ssl_certificate '/etc/nginx/conf.d/$name.crt'`
`option ssl_certificate_key '/etc/nginx/conf.d/$name.key'`
`option ssl_session_cache 'shared:SSL:32k'`
`option ssl_session_timeout '64m'`
If these options are already present, they will stay the
same; just the first option `uci_manage_ssl` will always be
changed to 'self-signed'. The command also changes all
`listen` list items to use port 443 and ssl instead of port
80 (without ssl). If they stated another port than 80
before, they are kept the same. Furthermore, it creates a
self-signed SSL certificate if necessary, i.e., if there is
no *valid* certificate and key at the locations given by
the options `ssl_certificate` and `ssl_certificate_key`.

* `nginx-util del_ssl $name` checks if `uci_manage_ssl` is
set 'self-signed' in the corresponding UCI section. Only
then it removes all of the above options regardless of the
value looking just at the key name. Then, it also changes
all `listen` list items to use port 80 (without ssl)
instead of port 443 with ssl. If stating another port than
443, they are kept the same. Furthermore, it removes the
SSL certificate and key that were indicated by
`ssl_certificate{,_key}`.

* `nginx-util check_ssl` looks through all server sections
of the UCI config for `uci_manage_ssl 'self-signed'`. On
every hit it checks if the SSL certificate-key-pair
indicated by the options `ssl_certificate{,_key}` is
expired. Then it re-creates a self-signed certificate.
If there exists at least one `section server` with
`uci_manage_ssl 'self-signed'`, it will try to install
itself as cron job. If there are no such sections, it
removes that cron job if possible.

For installing a ssl certificate and key managed by
another app, you can call:
`nginx-util add_ssl $name $manager $crtpath $keypath`
Hereby `$name` is as above, `$manager` is an arbitrary
string, and the the ssl certificate and its key are
indicated by their absolute path. If you want to remove
the directives again, then you can use:
`nginx-util del_ssl $name $manager`

Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
3 years agoMerge pull request #14047 from neheb/lnq
Rosen Penev [Sat, 28 Nov 2020 13:48:54 +0000 (05:48 -0800)]
Merge pull request #14047 from neheb/lnq

libnetfilter-queue: import and update

3 years agoMerge pull request #14048 from neheb/lnl
Rosen Penev [Sat, 28 Nov 2020 13:48:02 +0000 (05:48 -0800)]
Merge pull request #14048 from neheb/lnl

libnetfilter-log: import from baser

3 years agoMerge pull request #14049 from neheb/lnctt
Rosen Penev [Sat, 28 Nov 2020 13:47:29 +0000 (05:47 -0800)]
Merge pull request #14049 from neheb/lnctt

libnetfilter-cttimeout: import from base

3 years agoMerge pull request #14050 from neheb/lncth
Rosen Penev [Sat, 28 Nov 2020 13:46:59 +0000 (05:46 -0800)]
Merge pull request #14050 from neheb/lncth

libnetfilter-cthelper: import from base

3 years agolibnetfilter-cthelper: import from base 14050/head
Rosen Penev [Sat, 28 Nov 2020 06:40:15 +0000 (22:40 -0800)]
libnetfilter-cthelper: import from base

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibnetfilter-cttimeout: import from base 14049/head
Rosen Penev [Sat, 28 Nov 2020 06:40:47 +0000 (22:40 -0800)]
libnetfilter-cttimeout: import from base

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibnetfilter-log: import from base 14048/head
Rosen Penev [Sat, 28 Nov 2020 07:00:56 +0000 (23:00 -0800)]
libnetfilter-log: import from base

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agogst1-plugins-base: fix build with no module
Luiz Angelo Daros de Luca [Wed, 25 Nov 2020 18:19:58 +0000 (15:19 -0300)]
gst1-plugins-base: fix build with no module

gst1-plugins-base might be required only for its libraries, not modules.
However, InstallDev tries to copy them unconditionally, failing when
no modules are selected/compiled.

Fixes #13973

Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
3 years agographicsmagick: Fix package description typo
Robert Högberg [Tue, 24 Nov 2020 21:54:34 +0000 (22:54 +0100)]
graphicsmagick: Fix package description typo

Signed-off-by: Robert Högberg <robert.hogberg@gmail.com>
3 years agoMerge pull request #14046 from neheb/libusb-c
Rosen Penev [Sat, 28 Nov 2020 06:48:54 +0000 (22:48 -0800)]
Merge pull request #14046 from neheb/libusb-c

libusb-compat: fix libusb-config

3 years agolibnetfilter-queue: update to 1.0.5 14047/head
Rosen Penev [Mon, 9 Nov 2020 07:17:14 +0000 (23:17 -0800)]
libnetfilter-queue: update to 1.0.5

Switch to normal tarballs for simplicity.

Removed upstream patch.

Fixed license information.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibnetfilter-queue: import from base
Rosen Penev [Sat, 28 Nov 2020 06:24:51 +0000 (22:24 -0800)]
libnetfilter-queue: import from base

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibusb-compat: fix libusb-config 14046/head
Rosen Penev [Sat, 28 Nov 2020 06:11:49 +0000 (22:11 -0800)]
libusb-compat: fix libusb-config

Turns out, some packages like serdisplib actually use libusb-config.
Fix the paths in it so that they can work properly. Method taken from
libpng.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #14041 from abajk/coremark-threads
Rosen Penev [Sat, 28 Nov 2020 02:38:44 +0000 (18:38 -0800)]
Merge pull request #14041 from abajk/coremark-threads

coremark: allow to build with multithrading support

3 years agoMerge pull request #14042 from oleg-derevenetz/bwping-2.2
Rosen Penev [Fri, 27 Nov 2020 22:30:00 +0000 (14:30 -0800)]
Merge pull request #14042 from oleg-derevenetz/bwping-2.2

bwping: update to version 2.2

3 years agobwping: update to version 2.2 14042/head
Oleg Derevenetz [Fri, 27 Nov 2020 20:12:14 +0000 (23:12 +0300)]
bwping: update to version 2.2

Signed-off-by: Oleg Derevenetz <oleg-derevenetz@yandex.ru>
3 years agocoremark: allow to build with multithrading support 14041/head
Aleksander Jan Bajkowski [Sat, 26 Sep 2020 18:50:36 +0000 (20:50 +0200)]
coremark: allow to build with multithrading support

This patch allows to build coremark with multithreading support.

Signed-off-by: Aleksander Jan Bajkowski <A.Bajkowski@stud.elka.pw.edu.pl>
3 years agoMerge pull request #14019 from neheb/lsof
Rosen Penev [Fri, 27 Nov 2020 17:30:49 +0000 (09:30 -0800)]
Merge pull request #14019 from neheb/lsof

lsof: update to 4.94.0

3 years agoMerge pull request #14036 from neheb/libroxml
Rosen Penev [Fri, 27 Nov 2020 10:36:19 +0000 (02:36 -0800)]
Merge pull request #14036 from neheb/libroxml

libroxml: import from base

3 years agoMerge pull request #14034 from nxhack/node_12200
Rosen Penev [Fri, 27 Nov 2020 08:28:12 +0000 (00:28 -0800)]
Merge pull request #14034 from nxhack/node_12200

node: update to v12.20.0

3 years agoMerge pull request #14035 from nxhack/hid_132
Rosen Penev [Fri, 27 Nov 2020 08:27:40 +0000 (00:27 -0800)]
Merge pull request #14035 from nxhack/hid_132

node-hid: update to 1.3.2

3 years agolibroxml: switch to CMake 14036/head
Rosen Penev [Fri, 27 Nov 2020 07:54:03 +0000 (23:54 -0800)]
libroxml: switch to CMake

Added patch to fix compilation with gcc10.

Fixed license information.

Fix ABI_VERSION.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibroxml: import from base
Rosen Penev [Fri, 27 Nov 2020 07:52:37 +0000 (23:52 -0800)]
libroxml: import from base

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agonode-hid: update to 1.3.2 14035/head
Hirokazu MORIKAWA [Fri, 27 Nov 2020 00:01:11 +0000 (09:01 +0900)]
node-hid: update to 1.3.2

update to 1.3.2

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
3 years agonode: update to v12.20.0 14034/head
Hirokazu MORIKAWA [Thu, 26 Nov 2020 23:58:31 +0000 (08:58 +0900)]
node: update to v12.20.0

Update to v12.20.0
Take over maintainership from John Crispin

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
3 years agotravelmate: fix possible race condition
Dirk Brenken [Thu, 26 Nov 2020 21:39:15 +0000 (22:39 +0100)]
travelmate: fix possible race condition

* prevent possible duplicate script execution due to
  multiple ntp events in parallel

Signed-off-by: Dirk Brenken <dev@brenken.org>
3 years agoMerge pull request #14031 from ptpt52/ext_ip_reserved_ignore
Rosen Penev [Thu, 26 Nov 2020 18:28:23 +0000 (10:28 -0800)]
Merge pull request #14031 from ptpt52/ext_ip_reserved_ignore

net/miniupnpd: ext_ip_reserved_ignore support

3 years agoMerge pull request #14030 from dengqf6/curl
Stijn Tintel [Thu, 26 Nov 2020 18:20:35 +0000 (20:20 +0200)]
Merge pull request #14030 from dengqf6/curl

curl: fix build against OpenSSL

3 years agonet/miniupnpd: ext_ip_reserved_ignore support 14031/head
Chen Minqiang [Sun, 5 Jul 2020 02:21:32 +0000 (10:21 +0800)]
net/miniupnpd: ext_ip_reserved_ignore support

This add an option to ignore ext_ip reserved
Enable this option in config by default.

Fixes: #13773
Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
3 years agocurl: fix build against OpenSSL 14030/head
DENG Qingfang [Thu, 26 Nov 2020 06:47:55 +0000 (14:47 +0800)]
curl: fix build against OpenSSL

Ref: https://curl.se/mail/lib-2020-10/0037.html
Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
3 years agoMerge pull request #12030 from pprindeville/xtables-addons-include-xt_geoip_fetch
Rosen Penev [Thu, 26 Nov 2020 05:37:22 +0000 (21:37 -0800)]
Merge pull request #12030 from pprindeville/xtables-addons-include-xt_geoip_fetch

xtables-addons: include xt_geoip_fetch utility

3 years agoxtables-addons: include xt_geoip_fetch utility 12030/head
Philip Prindeville [Thu, 30 Apr 2020 21:37:59 +0000 (15:37 -0600)]
xtables-addons: include xt_geoip_fetch utility

It's useful to be able to dump sections of the database by country
for scripting or just plain sanity checking.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
3 years agoMerge pull request #14026 from neheb/hwl
Rosen Penev [Wed, 25 Nov 2020 23:43:24 +0000 (15:43 -0800)]
Merge pull request #14026 from neheb/hwl

hwloc: update to 2.3.0

3 years agohwloc: update to 2.3.0 14026/head
Rosen Penev [Wed, 25 Nov 2020 23:33:36 +0000 (15:33 -0800)]
hwloc: update to 2.3.0

Added PKG_BUILD_PARALLEL for faster compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #13377 from micmac1/apa-faker
Rosen Penev [Wed, 25 Nov 2020 23:05:52 +0000 (15:05 -0800)]
Merge pull request #13377 from micmac1/apa-faker

apache: use fakeroot instead of postinst script

3 years agoMerge pull request #13941 from jjm2473/master-fix-libtirpc-clang
Rosen Penev [Wed, 25 Nov 2020 22:31:48 +0000 (14:31 -0800)]
Merge pull request #13941 from jjm2473/master-fix-libtirpc-clang

libs/libtirpc: fix host compile with clang 12.0.0

3 years agoMerge pull request #14002 from olek2/coremark-bump
Rosen Penev [Wed, 25 Nov 2020 22:30:39 +0000 (14:30 -0800)]
Merge pull request #14002 from olek2/coremark-bump

coremark: bump to 2020-09-16

3 years agoMerge pull request #13942 from yangfl/master
Rosen Penev [Wed, 25 Nov 2020 22:30:19 +0000 (14:30 -0800)]
Merge pull request #13942 from yangfl/master

libtorrent-rasterbar: add package

3 years agoMerge pull request #14005 from pprindeville/issue#14004
Rosen Penev [Wed, 25 Nov 2020 22:29:27 +0000 (14:29 -0800)]
Merge pull request #14005 from pprindeville/issue#14004

avahi: incorrectly requires IFF_MULTICAST on point-to-point (tunnel) …

3 years agoMerge pull request #13960 from neheb/miniu
Rosen Penev [Wed, 25 Nov 2020 22:28:51 +0000 (14:28 -0800)]
Merge pull request #13960 from neheb/miniu

miniupnpd: update to 2.2.0

3 years agoMerge pull request #13940 from Trotzky/watchcat-new-features
Rosen Penev [Wed, 25 Nov 2020 22:28:37 +0000 (14:28 -0800)]
Merge pull request #13940 from Trotzky/watchcat-new-features

watchcat: add nopingtime option + refactoring

3 years agoMerge pull request #13926 from ja-pa/tor-0.4.4.6
Rosen Penev [Wed, 25 Nov 2020 22:27:57 +0000 (14:27 -0800)]
Merge pull request #13926 from ja-pa/tor-0.4.4.6

tor: update to version 0.4.4.6 (security fix)

3 years agoMerge pull request #14017 from neheb/aautom
Rosen Penev [Wed, 25 Nov 2020 22:25:42 +0000 (14:25 -0800)]
Merge pull request #14017 from neheb/aautom

automake: update to 1.16.3

3 years agoMerge pull request #14012 from neheb/dmx
Rosen Penev [Wed, 25 Nov 2020 22:23:25 +0000 (14:23 -0800)]
Merge pull request #14012 from neheb/dmx

dmx_usb_module: update to 19.12.1

3 years agoMerge pull request #14014 from neheb/alsaa
Rosen Penev [Wed, 25 Nov 2020 22:22:55 +0000 (14:22 -0800)]
Merge pull request #14014 from neheb/alsaa

alsa updates

3 years agoMerge pull request #14011 from neheb/grlbb
Rosen Penev [Wed, 25 Nov 2020 22:22:44 +0000 (14:22 -0800)]
Merge pull request #14011 from neheb/grlbb

glib2: update to 2.66.3

3 years agoMerge pull request #13990 from neheb/mtr
Rosen Penev [Wed, 25 Nov 2020 22:22:29 +0000 (14:22 -0800)]
Merge pull request #13990 from neheb/mtr

mtr: update to 0.94

3 years agoMerge pull request #13987 from neheb/onig
Rosen Penev [Wed, 25 Nov 2020 22:22:05 +0000 (14:22 -0800)]
Merge pull request #13987 from neheb/onig

oniguruma: update to 6.9.6

3 years agoMerge pull request #14013 from neheb/curl
Rosen Penev [Wed, 25 Nov 2020 22:21:54 +0000 (14:21 -0800)]
Merge pull request #14013 from neheb/curl

curl: update to 7.73.0

3 years agoMerge pull request #13966 from neheb/mes56
Rosen Penev [Wed, 25 Nov 2020 22:21:31 +0000 (14:21 -0800)]
Merge pull request #13966 from neheb/mes56

meson: update to 0.56.0

3 years agominiupnpd: Added chain rule to filter table so udp stun incoming connections rules... 13960/head
Marco Martins [Thu, 19 Nov 2020 21:53:31 +0000 (21:53 +0000)]
miniupnpd: Added chain rule to filter table so udp stun incoming connections rules works

Signed-off-by: Marco Martins <marcomartins86@gmail.com>
3 years agominiupnpd: update to 2.2.0
Rosen Penev [Wed, 18 Nov 2020 05:33:46 +0000 (21:33 -0800)]
miniupnpd: update to 2.2.0

Replace daemon patch with upstream solution.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoMerge pull request #14010 from neheb/usb
Rosen Penev [Wed, 25 Nov 2020 10:55:29 +0000 (02:55 -0800)]
Merge pull request #14010 from neheb/usb

libusb-compat: move here and update to 0.1.7

3 years agoMerge pull request #13993 from neheb/lcap
Rosen Penev [Wed, 25 Nov 2020 09:21:27 +0000 (01:21 -0800)]
Merge pull request #13993 from neheb/lcap

libcap-ng: update to 0.8.1

3 years agoMerge pull request #14007 from neheb/pam
Rosen Penev [Wed, 25 Nov 2020 07:49:20 +0000 (23:49 -0800)]
Merge pull request #14007 from neheb/pam

libpam: update to 1.5.0

3 years agoMerge pull request #14018 from neheb/fioo
Rosen Penev [Wed, 25 Nov 2020 07:41:07 +0000 (23:41 -0800)]
Merge pull request #14018 from neheb/fioo

fio: update to 3.24

3 years agoMerge pull request #14020 from neheb/hdp
Rosen Penev [Wed, 25 Nov 2020 07:40:30 +0000 (23:40 -0800)]
Merge pull request #14020 from neheb/hdp

hdparm: update to 9.60

3 years agoMerge pull request #14016 from neheb/ngh
Rosen Penev [Wed, 25 Nov 2020 07:36:02 +0000 (23:36 -0800)]
Merge pull request #14016 from neheb/ngh

nghttp2: update to 1.42.0

3 years agooniguruma: update to 6.9.6 13987/head
Rosen Penev [Mon, 23 Nov 2020 22:01:08 +0000 (14:01 -0800)]
oniguruma: update to 6.9.6

Add PKG_BUILD_PARALLEL for faster compilation.

Some minor cleanups for consistency between packages.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agomtr: update to 0.94 13990/head
Rosen Penev [Tue, 24 Nov 2020 00:44:44 +0000 (16:44 -0800)]
mtr: update to 0.94

Switch to normal HTTP mirron.

Don't use jansson.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibcap-ng: update to 0.8.1 13993/head
Rosen Penev [Tue, 24 Nov 2020 00:57:32 +0000 (16:57 -0800)]
libcap-ng: update to 0.8.1

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agomeson: update to 0.56.0 13966/head
Rosen Penev [Wed, 18 Nov 2020 05:56:10 +0000 (21:56 -0800)]
meson: update to 0.56.0

Move c/c++ options from properties to built-in options as there is now
a deprecated warning.

Remove cross libdir value. It's default since version 0.50.

Remove ld option as it was removed in version 0.51.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agohdparm: update to 9.60 14020/head
Rosen Penev [Wed, 25 Nov 2020 04:16:29 +0000 (20:16 -0800)]
hdparm: update to 9.60

Use PKG_INSTALL and PKG_BUILD_PARALLEL for consistency.

Rebase patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolsof: update to 4.94.0 14019/head
Rosen Penev [Wed, 25 Nov 2020 04:32:19 +0000 (20:32 -0800)]
lsof: update to 4.94.0

Upstream switched to GitHub and changed their tarball. Adjusted.

Refreshed patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agofio: update to 3.24 14018/head
Rosen Penev [Wed, 25 Nov 2020 04:35:52 +0000 (20:35 -0800)]
fio: update to 3.24

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoautomake: update to 1.16.3 14017/head
Rosen Penev [Wed, 25 Nov 2020 04:43:07 +0000 (20:43 -0800)]
automake: update to 1.16.3

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agonghttp2: update to 1.42.0 14016/head
Rosen Penev [Wed, 25 Nov 2020 04:48:05 +0000 (20:48 -0800)]
nghttp2: update to 1.42.0

Move maintainer line up for consistency between packages.

Remove CMAKE_INSTALL as there is an explicit InstallDev section.

Add PKG_BUILD_PARALLEL for faster compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoalsa-utils: update to 1.2.4 14014/head
Rosen Penev [Wed, 25 Nov 2020 05:19:50 +0000 (21:19 -0800)]
alsa-utils: update to 1.2.4

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoalsa-ucm-conf: update to 1.2.4
Rosen Penev [Wed, 25 Nov 2020 05:16:20 +0000 (21:16 -0800)]
alsa-ucm-conf: update to 1.2.4

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoalsa-lib: update to 1.2.4
Rosen Penev [Wed, 25 Nov 2020 05:13:49 +0000 (21:13 -0800)]
alsa-lib: update to 1.2.4

Backport upstream patch fixing compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agocurl: update to 7.73.0 14013/head
Rosen Penev [Wed, 25 Nov 2020 05:21:56 +0000 (21:21 -0800)]
curl: update to 7.73.0

Remove upstream patch.

Refresh other one.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agodmx_usb_module: update to 19.12.1 14012/head
Rosen Penev [Wed, 25 Nov 2020 05:40:51 +0000 (21:40 -0800)]
dmx_usb_module: update to 19.12.1

Cleaned up Makefile for consistency between packages.

Remove outdated patch.

Refreshed other one.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agoglib2: update to 2.66.3 14011/head
Rosen Penev [Wed, 25 Nov 2020 05:54:40 +0000 (21:54 -0800)]
glib2: update to 2.66.3

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibusb-compat: update to 0.1.7 14010/head
Rosen Penev [Wed, 25 Nov 2020 06:24:42 +0000 (22:24 -0800)]
libusb-compat: update to 0.1.7

Upstream moved to GitHub. Adjust accordingly.

Cleaned up Makefile for consistency between packages.

Made InstallDev section more explicit.

Used ABI_VERSION in install section.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
3 years agolibusb-compat: import from base
Rosen Penev [Wed, 25 Nov 2020 06:08:40 +0000 (22:08 -0800)]
libusb-compat: import from base

Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years agolibpam: update to 1.5.0 14007/head
Rosen Penev [Wed, 25 Nov 2020 00:52:51 +0000 (16:52 -0800)]
libpam: update to 1.5.0

Fixes CVE-2020-27780

Removed upstreamed patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years agoMerge pull request #13996 from neheb/jpg
Rosen Penev [Tue, 24 Nov 2020 22:40:56 +0000 (14:40 -0800)]
Merge pull request #13996 from neheb/jpg

libjpeg-turbo: update to 2.0.6

4 years agoavahi: incorrectly requires IFF_MULTICAST on point-to-point (tunnel) interfaces 14005/head
Philip Prindeville [Tue, 24 Nov 2020 20:50:31 +0000 (13:50 -0700)]
avahi: incorrectly requires IFF_MULTICAST on point-to-point (tunnel) interfaces

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
4 years agoadguardhome: upstream upgrade to v0.104.1
Dobroslaw Kijowski [Wed, 18 Nov 2020 21:44:48 +0000 (22:44 +0100)]
adguardhome: upstream upgrade to v0.104.1

* Full changelog available at:
  * https://github.com/AdguardTeam/AdGuardHome/releases/tag/v0.104.0
  * https://github.com/AdguardTeam/AdGuardHome/releases/tag/v0.104.1

* Change path to packr resources as some of source files were moved.

Signed-off-by: Dobroslaw Kijowski <dobo90@gmail.com>
4 years agodfu-util: Update to version 0.10
Bruno Randolf [Tue, 24 Nov 2020 08:51:53 +0000 (08:51 +0000)]
dfu-util: Update to version 0.10

Signed-off-by: Bruno Randolf <br1@einfach.org>
4 years agopython-requests: bump to version 2.25.0
Alexandru Ardelean [Tue, 24 Nov 2020 07:13:29 +0000 (09:13 +0200)]
python-requests: bump to version 2.25.0

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
4 years agocoremark: bump to 2020-09-16 14002/head
Aleksander Jan Bajkowski [Sat, 26 Sep 2020 18:34:03 +0000 (20:34 +0200)]
coremark: bump to 2020-09-16

Signed-off-by: Aleksander Jan Bajkowski <A.Bajkowski@stud.elka.pw.edu.pl>
4 years agolibjpeg-turbo: update to 2.0.6 13996/head
Rosen Penev [Mon, 23 Nov 2020 06:35:24 +0000 (22:35 -0800)]
libjpeg-turbo: update to 2.0.6

Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years agolibtorrent-rasterbar: add package 13942/head
David Yang [Wed, 18 Nov 2020 15:06:53 +0000 (23:06 +0800)]
libtorrent-rasterbar: add package

Signed-off-by: David Yang <mmyangfl@gmail.com>
4 years agoMerge pull request #13991 from neheb/libse
Rosen Penev [Tue, 24 Nov 2020 08:57:30 +0000 (00:57 -0800)]
Merge pull request #13991 from neheb/libse

libseccomp: update to 2.5.1

4 years agoMerge pull request #13989 from neheb/ola3
Rosen Penev [Tue, 24 Nov 2020 08:48:16 +0000 (00:48 -0800)]
Merge pull request #13989 from neheb/ola3

ola: update to 0.10.8

4 years agolibseccomp: update to 2.5.1 13991/head
Rosen Penev [Tue, 24 Nov 2020 00:48:05 +0000 (16:48 -0800)]
libseccomp: update to 2.5.1

Add license information.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years agoola: update to 0.10.8 13989/head
Rosen Penev [Tue, 24 Nov 2020 00:23:07 +0000 (16:23 -0800)]
ola: update to 0.10.8

Removed upstreamed patches.

Refreshed other ones.

Removed Makefile hacks.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years agoMerge pull request #13984 from rs/nextdns-1.9.4-master
Rosen Penev [Tue, 24 Nov 2020 01:37:23 +0000 (17:37 -0800)]
Merge pull request #13984 from rs/nextdns-1.9.4-master

nextdns: Update to version 1.9.4

4 years agoMerge pull request #13994 from neheb/greo
Rosen Penev [Tue, 24 Nov 2020 01:37:03 +0000 (17:37 -0800)]
Merge pull request #13994 from neheb/greo

grep: update to 3.6

4 years agoMerge pull request #13992 from neheb/lz45
Rosen Penev [Tue, 24 Nov 2020 01:36:51 +0000 (17:36 -0800)]
Merge pull request #13992 from neheb/lz45

lz4: update to 1.9.3

4 years agoMerge pull request #13988 from neheb/oat
Rosen Penev [Tue, 24 Nov 2020 01:36:43 +0000 (17:36 -0800)]
Merge pull request #13988 from neheb/oat

oath-toolkit: update to 2.6.4

4 years agoMerge pull request #13986 from neheb/sysss
Rosen Penev [Tue, 24 Nov 2020 01:36:34 +0000 (17:36 -0800)]
Merge pull request #13986 from neheb/sysss

sysstat: update to 12.4.1

4 years agoMerge pull request #13985 from neheb/xfs3
Rosen Penev [Tue, 24 Nov 2020 01:35:59 +0000 (17:35 -0800)]
Merge pull request #13985 from neheb/xfs3

xfsprogs: update to 5.9.0

4 years agogrep: update to 3.6 13994/head
Rosen Penev [Tue, 24 Nov 2020 00:59:46 +0000 (16:59 -0800)]
grep: update to 3.6

Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years agolz4: update to 1.9.3 13992/head
Rosen Penev [Tue, 24 Nov 2020 00:51:42 +0000 (16:51 -0800)]
lz4: update to 1.9.3

Remove upstreamed patches.

Switch PKG_NAME to lz4 to get rid of PKG_BUILD_DIR.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years agooath-toolkit: update to 2.6.4 13988/head
Rosen Penev [Mon, 23 Nov 2020 23:40:30 +0000 (15:40 -0800)]
oath-toolkit: update to 2.6.4

remove upstreamed patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years agosysstat: update to 12.4.1 13986/head
Rosen Penev [Mon, 23 Nov 2020 21:58:16 +0000 (13:58 -0800)]
sysstat: update to 12.4.1

Signed-off-by: Rosen Penev <rosenp@gmail.com>
4 years agoxfsprogs: update to 5.9.0 13985/head
Rosen Penev [Mon, 23 Nov 2020 21:46:09 +0000 (13:46 -0800)]
xfsprogs: update to 5.9.0

Add license information.

Signed-off-by: Rosen Penev <rosenp@gmail.com>