aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* community/ceph: fix circular dependecyHEADmasterNatanael Copa2020-05-121-1/+2
| | | | fix ceph-mon -> ceph-mon-tools -> ceph-mon circular dependency
* community/ocamlbuild: fix circular dependencyNatanael Copa2020-05-121-1/+2
| | | | fix ocaml-ocamlbuild -> ocaml-ocamlbuild circular dependency
* main/nss: Remove unused patchSören Tempel2020-05-121-561/+0
| | | | Dropped in ab7306147031fdc69dd7a25684cf53a1ab1f4a30.
* main/nss: upgrade to 3.52J0WI2020-05-121-2/+2
|
* main/nss: drop cacert.org patchNatanael Copa2020-05-121-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.2Bart Ribbers2020-05-1237-101/+101
|
* testing/lockrun: new aportMikhail Snetkov2020-05-121-0/+21
| | | | | Run cron job with overrun protection http://unixwiz.net/tools/lockrun.html
* testing/curlpp: new aportMilan P. Stanić2020-05-121-0/+34
| | | | | http://curlpp.org C++ wrapper for libcURL
* community/nextcloud: fix typoNatanael Copa2020-05-121-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.6Justin Berthault2020-05-121-6/+9
|
* main/patchwork: remove meaningless -postgresql subpackageNatanael Copa2020-05-121-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.1Justin Berthault2020-05-121-11/+7
|
* community/qutebrowser: upgrade to 1.11.1Justin Berthault2020-05-121-2/+2
|
* community/poedit: upgrade to 2.3.1Rasmus Thomsen2020-05-121-3/+3
|
* testing/ffsend: upgrade to 0.2.61Rasmus Thomsen2020-05-121-2/+2
|
* testing/pmbootstrap: add missing git dependencyAntoine Fontaine2020-05-121-2/+2
|
* unmaintained/email2trac: depends on unmaintained tracNatanael Copa2020-05-121-0/+0
|
* main/sprunge: use https when possibleNatanael Copa2020-05-121-7/+7
| | | | fixes tpaste which no longer work without https
* testing/yara: bump pkgrel to allow the patch being appliedFrancesco Colista2020-05-121-1/+1
|
* community/filezilla: upgrade to 3.48.0Justin Berthault2020-05-122-3/+22
|
* community/libfilezilla: upgrade to 0.21.0Justin Berthault2020-05-121-2/+2
|
* testing/yara: removed test-rules since they fail on ppc64 and aarch64Francesco Colista2020-05-122-2/+25
|
* testing/py3-yara: upgrade to 4.0.0Francesco Colista2020-05-122-3/+14
|
* testing/yara: upgrade to 4.0.0Francesco Colista2020-05-121-3/+2
|
* main/perl-json-maybexs: upgrade to 1.004001Francesco Colista2020-05-121-4/+4
|
* testing/perl-sys-virt: upgrade to 6.3.0Francesco Colista2020-05-121-2/+2
|
* community/perl-ipc-run: upgrade to 20200505.0Francesco Colista2020-05-121-3/+3
|
* community/openjdk11: disable checks on aarch64/s390xRasmus Thomsen2020-05-121-0/+6
| | | | These get stuck on the builders :/
* community/rstcheck: fix intermittent test failuresKeith Maxwell2020-05-122-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.0Danct122020-05-121-3/+3
| | | | Signed-off-by: Danct12 <danct12@disroot.org>
* testing/mycroft-skill-moviemaster: new aportBart Ribbers2020-05-121-0/+20
|
* testing/py3-tmdbv3api: new aportBart Ribbers2020-05-121-0/+24
|
* community/plasma-desktop: apply patch to fix performance regressionBart Ribbers2020-05-112-3/+148
|
* community/plasma-workspace: apply patch to fix performance regressionBart Ribbers2020-05-112-3/+101
|
* community/perl-ffi-checklib: upgrade to 0.27Timothy Legge2020-05-111-2/+2
|
* community/perl-image-exiftool: upgrade to 11.99Leo2020-05-111-2/+2
|
* community/libarchive-qt: upgrade to 2.0.1Leo2020-05-111-2/+2
|
* community/translate-shell: upgrade to 0.9.6.12Leo2020-05-111-3/+3
|
* testing/{py3-*,mycroft-skills}: fix typo in maintainers nameBart Ribbers2020-05-1121-62/+62
|
* community/uacme: upgrade to 1.3uacme-upgradeCarlo Landmeter2020-05-111-2/+2
|
* testing/user-managerd: upgrade to 0.5.3Bart Ribbers2020-05-111-6/+3
|
* testing/ytop: upgrade to 0.6.1Michał Polański2020-05-111-2/+2
|
* main/py3-appdirs: upgrade to 1.4.4Leo2020-05-111-3/+3
|
* testing/perl-mce: upgrade to 1.868Leo2020-05-111-2/+2
|
* community/coturn: upgrade to 4.5.1.2Carlo Landmeter2020-05-111-3/+3
|
* testing/qownnotes: upgrade to 20.5.7Francesco Colista2020-05-111-2/+2
|
* community/perl-net-dns-sec: upgrade to 1.16Francesco Colista2020-05-111-2/+2
|
* community/gitea: disable check on armhfSören Tempel2020-05-111-1/+1
|
* Revert "community/gitea: attempt to fix check() on armhf"Sören Tempel2020-05-113-420/+1
| | | | This reverts commit 04c5f3dae84c8df515cc1996e12263db0b6011d3.
* community/muacme: create directory /etc/ssl/uacmeJakub Jirutka2020-05-111-0/+2
|