Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | main/nss: Remove unused patch | Sören Tempel | 2020-05-12 | 1 | -561/+0 |
| | | | | Dropped in ab7306147031fdc69dd7a25684cf53a1ab1f4a30. | ||||
* | main/nss: upgrade to 3.52 | J0WI | 2020-05-12 | 1 | -2/+2 |
| | |||||
* | main/nss: drop cacert.org patch | Natanael Copa | 2020-05-12 | 1 | -3/+1 |
| | | | | | | | debian dropped it 2015 and we should have done so long time ago too. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731463 fixes #11500 | ||||
* | {community,testing}/qt5-*: upgrade to 5.14.2 | Bart Ribbers | 2020-05-12 | 37 | -101/+101 |
| | |||||
* | testing/lockrun: new aport | Mikhail Snetkov | 2020-05-12 | 1 | -0/+21 |
| | | | | | Run cron job with overrun protection http://unixwiz.net/tools/lockrun.html | ||||
* | testing/curlpp: new aport | Milan P. Stanić | 2020-05-12 | 1 | -0/+34 |
| | | | | | http://curlpp.org C++ wrapper for libcURL | ||||
* | community/nextcloud: fix typo | Natanael Copa | 2020-05-12 | 1 | -2/+2 |
| | | | | | | | fixes typo introduced in commit 2a307f3880b9 (community/nextcloud: main packages provides also subpkg settings, 2020-05-01) ref #11392 | ||||
* | testing/py3-flask-admin: upgrade to 1.5.6 | Justin Berthault | 2020-05-12 | 1 | -6/+9 |
| | |||||
* | main/patchwork: remove meaningless -postgresql subpackage | Natanael Copa | 2020-05-12 | 1 | -9/+2 |
| | | | | | | | | | | remove -postgresql subpackage which only tried to pull in non-existing py-psycopg2 dependency, while py3-psycopg2 was explicitly installed by main package. also make the install_if for nginx uwsgi include the exact version of patchwork to avoid chaos in case multiple versions of patchwork exists in repository. | ||||
* | community/wine_gecko: upgrade to 2.47.1 | Justin Berthault | 2020-05-12 | 1 | -11/+7 |
| | |||||
* | community/qutebrowser: upgrade to 1.11.1 | Justin Berthault | 2020-05-12 | 1 | -2/+2 |
| | |||||
* | community/poedit: upgrade to 2.3.1 | Rasmus Thomsen | 2020-05-12 | 1 | -3/+3 |
| | |||||
* | testing/ffsend: upgrade to 0.2.61 | Rasmus Thomsen | 2020-05-12 | 1 | -2/+2 |
| | |||||
* | testing/pmbootstrap: add missing git dependency | Antoine Fontaine | 2020-05-12 | 1 | -2/+2 |
| | |||||
* | unmaintained/email2trac: depends on unmaintained trac | Natanael Copa | 2020-05-12 | 1 | -0/+0 |
| | |||||
* | main/sprunge: use https when possible | Natanael Copa | 2020-05-12 | 1 | -7/+7 |
| | | | | fixes tpaste which no longer work without https | ||||
* | testing/yara: bump pkgrel to allow the patch being applied | Francesco Colista | 2020-05-12 | 1 | -1/+1 |
| | |||||
* | community/filezilla: upgrade to 3.48.0 | Justin Berthault | 2020-05-12 | 2 | -3/+22 |
| | |||||
* | community/libfilezilla: upgrade to 0.21.0 | Justin Berthault | 2020-05-12 | 1 | -2/+2 |
| | |||||
* | testing/yara: removed test-rules since they fail on ppc64 and aarch64 | Francesco Colista | 2020-05-12 | 2 | -2/+25 |
| | |||||
* | testing/py3-yara: upgrade to 4.0.0 | Francesco Colista | 2020-05-12 | 2 | -3/+14 |
| | |||||
* | testing/yara: upgrade to 4.0.0 | Francesco Colista | 2020-05-12 | 1 | -3/+2 |
| | |||||
* | main/perl-json-maybexs: upgrade to 1.004001 | Francesco Colista | 2020-05-12 | 1 | -4/+4 |
| | |||||
* | testing/perl-sys-virt: upgrade to 6.3.0 | Francesco Colista | 2020-05-12 | 1 | -2/+2 |
| | |||||
* | community/perl-ipc-run: upgrade to 20200505.0 | Francesco Colista | 2020-05-12 | 1 | -3/+3 |
| | |||||
* | community/openjdk11: disable checks on aarch64/s390x | Rasmus Thomsen | 2020-05-12 | 1 | -0/+6 |
| | | | | These get stuck on the builders :/ | ||||
* | community/rstcheck: fix intermittent test failures | Keith Maxwell | 2020-05-12 | 2 | -4/+64 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a patch to close the multiprocessing pool in line with the Python 3 documentation. The patch introduced by this commit has been submitted upstream: https://github.com/myint/rstcheck/pull/67 Testing inside `dabuild sh`, before this change we can't get above run 11: ``` $ cd src/rstcheck-3.3.1/ $ for i in $(seq 99) ; do printf '%3d' $i && ./rstcheck.py --recursive examples/good || break ; done ; echo 1 (stalled) $ for i in $(seq 99) ; do printf '%3d' $i && ./rstcheck.py --recursive examples/good || break ; done ; echo 1 2 3 4 5 6 7 8 9 10 11 (stalled) $ for i in $(seq 99) ; do printf '%3d' $i && ./rstcheck.py --recursive examples/good || break ; done ; echo 1 2 3 (stalled) ``` After this change, 99 runs finish three times in a row: ``` $ abuild deps unpack prepare build $ cd src/rstcheck-3.3.1/ $ for i in $(seq 99) ; do printf '%3d' $i && ./rstcheck.py --recursive examples/good || break ; done ; echo 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 $ for i in $(seq 99) ; do printf '%3d' $i && ./rstcheck.py --recursive examples/good || break ; done ; echo 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 $ for i in $(seq 99) ; do printf '%3d' $i && ./rstcheck.py --recursive examples/good || break ; done ; echo 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 ``` | ||||
* | testing/extremetuxracer: update to 0.8.0 | Danct12 | 2020-05-12 | 1 | -3/+3 |
| | | | | Signed-off-by: Danct12 <danct12@disroot.org> | ||||
* | testing/mycroft-skill-moviemaster: new aport | Bart Ribbers | 2020-05-12 | 1 | -0/+20 |
| | |||||
* | testing/py3-tmdbv3api: new aport | Bart Ribbers | 2020-05-12 | 1 | -0/+24 |
| | |||||
* | community/plasma-desktop: apply patch to fix performance regression | Bart Ribbers | 2020-05-11 | 2 | -3/+148 |
| | |||||
* | community/plasma-workspace: apply patch to fix performance regression | Bart Ribbers | 2020-05-11 | 2 | -3/+101 |
| | |||||
* | community/perl-ffi-checklib: upgrade to 0.27 | Timothy Legge | 2020-05-11 | 1 | -2/+2 |
| | |||||
* | community/perl-image-exiftool: upgrade to 11.99 | Leo | 2020-05-11 | 1 | -2/+2 |
| | |||||
* | community/libarchive-qt: upgrade to 2.0.1 | Leo | 2020-05-11 | 1 | -2/+2 |
| | |||||
* | community/translate-shell: upgrade to 0.9.6.12 | Leo | 2020-05-11 | 1 | -3/+3 |
| | |||||
* | testing/{py3-*,mycroft-skills}: fix typo in maintainers name | Bart Ribbers | 2020-05-11 | 21 | -62/+62 |
| | |||||
* | community/uacme: upgrade to 1.3uacme-upgrade | Carlo Landmeter | 2020-05-11 | 1 | -2/+2 |
| | |||||
* | testing/user-managerd: upgrade to 0.5.3 | Bart Ribbers | 2020-05-11 | 1 | -6/+3 |
| | |||||
* | testing/ytop: upgrade to 0.6.1 | Michał Polański | 2020-05-11 | 1 | -2/+2 |
| | |||||
* | main/py3-appdirs: upgrade to 1.4.4 | Leo | 2020-05-11 | 1 | -3/+3 |
| | |||||
* | testing/perl-mce: upgrade to 1.868 | Leo | 2020-05-11 | 1 | -2/+2 |
| | |||||
* | community/coturn: upgrade to 4.5.1.2 | Carlo Landmeter | 2020-05-11 | 1 | -3/+3 |
| | |||||
* | testing/qownnotes: upgrade to 20.5.7 | Francesco Colista | 2020-05-11 | 1 | -2/+2 |
| | |||||
* | community/perl-net-dns-sec: upgrade to 1.16 | Francesco Colista | 2020-05-11 | 1 | -2/+2 |
| | |||||
* | community/gitea: disable check on armhf | Sören Tempel | 2020-05-11 | 1 | -1/+1 |
| | |||||
* | Revert "community/gitea: attempt to fix check() on armhf" | Sören Tempel | 2020-05-11 | 3 | -420/+1 |
| | | | | This reverts commit 04c5f3dae84c8df515cc1996e12263db0b6011d3. | ||||
* | community/muacme: create directory /etc/ssl/uacme | Jakub Jirutka | 2020-05-11 | 1 | -0/+2 |
| | |||||
* | community/muacme: upgrade to 0.3.0 | Jakub Jirutka | 2020-05-11 | 3 | -4/+31 |
| | |||||
* | community/vboot-utils: revert adding Remove-static-futility.patch | Milan P. Stanić | 2020-05-11 | 2 | -39/+0 |
| | | | | we have this functionality already in no-static.patch |