aboutsummaryrefslogtreecommitdiffstats
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
...
* main/putty: depend on ncurses-terminfoLeo2020-02-251-4/+2
|
* main/zfs-lts: use zfs 0.8.3Rasmus Thomsen2020-02-251-5/+3
| | | | ref #11195
* main/zfs: upgrade to 0.8.3Rasmus Thomsen2020-02-251-6/+5
| | | | fixes #11195
* main/ncurses: upgrade to 6.1_p20200118Leo2020-02-251-3/+3
| | | | This version actually exists, unlike 20191130
* main/ncurses: fix automatic dependency due to symlinksLeo2020-02-251-9/+7
| | | | | | | | | | | | | | | | | | The -libs subpackage depended on ncurses-terminfo when it shouldn't because when moving $pkgdir/usr/lib also moved /usr/lib/terminfo which is a symlink to /usr/share/terminfo which is part of ncurses-terminfo and thus a dependency would be automatically added by the prepare_symlink() function from APKBUILD. So make the libs() function grab only actual libraries by matching /usr/lib/*.so.* (this does not match libraries meant for -dev which would be *.so) so /usr/lib/terminfo isn't caught up. Also make the terminfo() function move /usr/lib/terminfo to it. In the meantime also do other cleanup like removing unnecessary 'cd "$builddir"' declarations and make libs() depend on the same $pkgver-r$pkgrel of the ncurses-terminfo-base.
* main/glib: upgrade to 2.62.5Leo2020-02-241-2/+2
|
* main/glib: add missing CVE infoLeo2020-02-241-1/+3
|
* main/opensmtpd: security upgrade to 6.6.4p1Jakub Jirutka2020-02-241-2/+2
| | | | I don't know CVE number yet.
* main/ppp: security fixMilan P. Stanić2020-02-202-1/+48
| | | | fixes CVE-2020-8597
* main/protobuf: fix ruby gem - missing symbol __va_copyJakub Jirutka2020-02-182-2/+21
|
* main/dmvpn: various fixesKaarle Ritvanen2020-02-176-6/+116
| | | | | | define ciphers for better security and performance fix race condition in nhrp-events startup close inactive IKE SAs
* main/dovecot: security upgrade to 2.3.9.3Milan P. Stanić2020-02-161-2/+5
| | | | taken from master commit e9e7886ac4e95e89ba3699315dffc40c61159838
* main/dmvpn: fix race conditionKaarle Ritvanen2020-02-153-3/+86
| | | | avoid creating superfluous child SAs during IKE SA reauthentication
* main/postgresql: security upgrade to 12.2J0WI2020-02-141-22/+24
|
* main/freeradius: fix perms in certs directoryJakub Jirutka2020-02-141-1/+6
|
* main/freeradius: remove sites-available/*.origJakub Jirutka2020-02-141-3/+4
| | | | This is a residue from applying patches.
* main/haproxy: upgrade to 2.0.13Milan P. Stanić2020-02-131-2/+2
|
* main/vala: upgrade to 0.46.6Rasmus Thomsen2020-02-121-2/+2
|
* main/libxml2: fix CVE-2020-7595Jakub Jirutka2020-02-111-1/+5
|
* main/awall: upgrade to 1.7.1Kaarle Ritvanen2020-02-081-2/+2
|
* main/openvpn: allow to pass additional arguments for openvpnJakub Jirutka2020-02-073-4/+8
| | | | Backported from ce095fc43d6850ef1cc74190d2c6ea40aeceff26.
* main/nodejs: fix man pages to have npm- prefixJakub Jirutka2020-02-071-1/+9
|
* main/nodejs: upgrade to 12.15.0Jakub Jirutka2020-02-071-2/+6
|
* main/doas: upgrade to 6.6.1Leo2020-02-061-6/+3
| | | | (cherry picked from commit 5d3999ccaee7d956bb75f5800e118e2e0e81dfa9)
* main/doas: fix simple typo in descriptionChad Dougherty2020-02-062-6/+2
| | | | | | | Closes !2650 (cherry picked from commit 8fd8655e06c3b22e4e31e04519f12bbb2c94ad58) also remove unused doas.conf
* main/ca-certificates: fix bundle with certs without newlineNatanael Copa2020-02-062-4/+44
| | | | | | | | | | backport fix that adds newline to each cert in the bundle. The reason is that trailing newline is no requirement so self generated certs may not have it. fixes #8379 (cherry picked from commit d9eab57971e1500ed4c2207ab3575d01442f43fd)
* main/openjpeg: secfixes (CVE-2020-6851,CVE-2020-8112)Natanael Copa2020-02-053-4/+83
| | | | fixes #11189
* main/sudo: upgrade to 1.8.31Natanael Copa2020-02-051-8/+4
| | | | fixes #11172
* main/sudo: fix CVE-2019-18634Jakub Jirutka2020-02-051-2/+6
|
* main/postfix: upgrade to 3.4.9Andy Postnikov2020-02-051-2/+2
|
* main/uwsgi: actually add post-upgrade scriptJakub Jirutka2020-02-041-2/+2
|
* main/uwsgi: mitigate backward compat. breakage in -python3 and -gevent3Jakub Jirutka2020-02-042-3/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Packages uwsgi-python and uwsgi-gevent were removed and packages uwsgi-python3 and uwsgi-gevent3 renamed to uwsgi-python and uwsgi-gevent, respectively; without setting $provides and adding a warning message. This breakes backward compatibility with previous versions of the packages and thus introduces problems with upgrade to Alpine v3.11. The worst is that the names overlap, so when users with uwsgi-python or uwsgi-gevent (Python 2) installed upgrade to Alpine v3.11, they will suddenly end-up with Python 3 versions without noticing. This may lead to hard times trying to figure out why the app doesn't work correctly! Users with uwsgi-python3 or uwsgi-gevent3 installed will not be able to upgrade because of missing packages. After they find what happend and install uwsgi-python or uwsgi-gevent instead, they would have to also fix their uWSGI configuration to load correct plugin. Also all the major distros (except Arch Linux) name uWSGI Python 3 plugin as python3(_plugin.so) or python38(_plugin.so) and keep this name even after purging Python 2. That's consistent with naming Python 3 binary as python3 and not python. Unfortunately, there's no way how to fix this mess now without introducing another breaking change in v3.11 branch. This patch just fixes the upgrade path for uwsgi-python3 and uwsgi-gevent3 users and adds post-upgrade warning message. This problem was introduced in commit 3ee2dbe9737e86f9432a72e9cf49f41de7e5804b authored by @Leo and committed by @ncopa.
* main/faac: fix secfixes commentNatanael Copa2020-02-041-1/+1
|
* main/e2fsprogs: fix secfixes commentNatanael Copa2020-02-041-2/+2
|
* main/lz4: fix secfixes commentNatanael Copa2020-02-041-1/+1
|
* main/libebml: fix secfixes commentNatanael Copa2020-02-041-1/+1
|
* main/py3-django: security upgrade to 1.11.28Kaarle Ritvanen2020-02-041-2/+4
|
* main/open-iscsi: fix path of commands on initd, add -dev and -libs subpkgLeo2020-02-032-6/+5
| | | | fixes #11183
* main/sudo: don't warn about missing /etc/environment with no PAMLeo2020-01-311-2/+4
| | | | fixes #11172
* main/mariadb: upgrade to 10.4.12 and fix depsCarlo Landmeter2020-01-291-3/+15
| | | | ref: https://gitlab.alpinelinux.org/alpine/aports/issues/11131
* main/mariadb: upgrade to 10.4.11Jake Buchholz2020-01-291-2/+8
| | | | Also resolves https://gitlab.alpinelinux.org/alpine/aports/issues/11131 -- mariadb no longer depends on mariadb-test.
* main/opensmtpd: add secfixesJakub Jirutka2020-01-291-0/+4
|
* main/opensmtpd: security upgrade to 6.6.2p1Jakub Jirutka2020-01-292-18/+4
| | | | | | | Fixes critical vulnerability leading to a possible privilege escalation. See https://www.mail-archive.com/misc@opensmtpd.org/msg04850.html.
* main/samba: security upgrade to 4.11.5Leonardo Arena2020-01-271-3/+7
| | | | | | CVE-2019-14902, CVE-2019-14907, CVE-2019-19344 ref #11155
* main/freeradius: fix segfault in process request_running()Jakub Jirutka2020-01-262-2/+27
|
* main/alpine-conf: unbreak lbuNatanael Copa2020-01-242-2/+43
| | | | | | | | | rex regression in lbu that was introduced with commit commit 7ebf92cda21a (main/alpine-conf: fix lbu exit codes on error) ref https://gitlab.alpinelinux.org/alpine/alpine-conf/merge_requests/4 (cherry picked from commit 892a21c6fdd1b7e135bf44180f6a1a1265c3a6ca)
* main/alpine-conf: backport lbu fix for listing ciphersNatanael Copa2020-01-242-2/+31
| | | | | | upstream bug: https://gitlab.alpinelinux.org/alpine/alpine-conf/issues/10451 (cherry picked from commit 551139ef080cad0538ff12a7d8442510d2d27b34)
* main/luajit: add support for s390xJ0WI2020-01-242-5/+43699
| | | | (cherry picked from commit d22b75219ee6f59467fc9e646702ef8b061bc028)
* main/iproute2: fix LIBDIR for tc pluginsMilan P. Stanić2020-01-221-2/+2
| | | | | | | default tc LIBDIR is /usr/lib and not /lib, by removing LIBDIR from make invocation in APKBUILD build function package functions put tc helper in /usr/lib, and then 'tc' can find them fixes: #6948
* main/awall: upgrade to 1.7.0Kaarle Ritvanen2020-01-201-2/+2
|