aboutsummaryrefslogtreecommitdiffstats
path: root/community
Commit message (Collapse)AuthorAgeFilesLines
* py-decorator: upgrade to 4.3.2, clarify licenseprspkt2019-03-081-3/+3
|
* community/py-configparser: remove subpkg dependsprspkt2019-03-081-2/+0
| | | | There are no common runtime dependencies
* community/py-configparser: upgrade to 3.7.3prspkt2019-03-081-2/+2
|
* community/py-configargparse: upgrade to 0.14.0prspkt2019-03-081-2/+2
|
* community/perl-mojolicious: upgrade to 8.12Roberto Oliveira2019-03-081-2/+2
|
* community/perl-xml-libxml: upgrade to 2.0134Roberto Oliveira2019-03-081-2/+2
|
* community/py-zmq: upgrade to 18.0.1Roberto Oliveira2019-03-081-2/+2
|
* community/perl-test-differences: upgrade to 0.67Francesco Colista2019-03-081-2/+2
|
* community/nodejs-current: upgrade to 11.11.0Natanael Copa2019-03-081-2/+2
|
* community/nodejs-current: upgrade to 11.10.1Andy Postnikov2019-03-081-2/+4
|
* community/virtualbox-guest-modules-vanilla: rebuild against kernel 4.19.27-r0Natanael Copa2019-03-081-1/+1
|
* community/chromium: security upgrade to 72.0.3626.121 (CVE-2019-5786)Leonardo Arena2019-03-081-2/+6
|
* community/py-webcolors: upgrade to 1.8.1, clarify licenseprspkt2019-03-081-3/+3
|
* community/py-bottle: upgrade to 0.12.16, modernizeprspkt2019-03-081-7/+5
|
* community/filezilla: upgrade to 3.41.1prspkt2019-03-071-2/+2
|
* community/uboot-tools: disable on ppc64le and s390xKevin Daudt2019-03-071-1/+1
| | | | Those arches are currently not supported.
* testing/uboot-tools: move from testing to community maintainedFathi Boudra2019-03-071-0/+35
| | | | Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
* community/msitools: disable tests on s390xLeonardo Arena2019-03-071-1/+2
| | | | | | ERROR: 26 tests were run, 10 failed unexpectedly. 1 test was skipped.
* community/gnu-libiconv: mode from testingNatanael Copa2019-03-071-0/+42
|
* community/filezilla: upgrade to 3.41.0prspkt2019-03-061-2/+2
|
* community/msitools: simplify bashcomp subpkgprspkt2019-03-061-9/+5
|
* community/msitools: clarify licenseprspkt2019-03-061-1/+1
|
* community/msitools: upgrade to 0.99André Klitzing2019-03-061-3/+3
|
* community/botan: become maintainertcely2019-03-061-1/+1
|
* community/botan: move from testingtcely2019-03-061-0/+58
|
* community/aixlog: upgrade to 1.2.1prspkt2019-03-061-2/+2
|
* community/aixlog: remove make dependenciesprspkt2019-03-061-15/+2
| | | | The package is only a header file with no library
* community/midori: upgrade to 8.0Paul Bredbury2019-03-061-16/+12
| | | | | | Add libarchive-dev and json-glib-dev as build requirements. Remove obsolete cmake options.
* community/mongodb-tools: upgrade to 4.0.6Leonardo Arena2019-03-061-2/+2
|
* community/mongodb: upgrade to 4.0.6Leonardo Arena2019-03-061-2/+2
|
* community/ocaml-camlp4: upgrade to 4.07.1alpine-mips-patches2019-03-061-7/+8
| | | | Also sync the arch= list with the ocaml aport and use the layout options for ./configure and 'make install'.
* community/gradle: upgrade to 5.2.1Roberto Oliveira2019-03-061-2/+2
|
* community/jenkins: upgrade to 2.150.3Roberto Oliveira2019-03-061-2/+2
|
* community/py-psutil: upgrade to 5.6.0Francesco Colista2019-03-061-2/+2
|
* community/ocamlbuild: upgrade to 0.13.1alpine-mips-patches2019-03-061-4/+4
| | | | | | Upgrade is needed to fix 0.12.0 check() failure with ocaml-4.07.1. While here, sync the arch= list with the ocaml aport.
* community/ocaml-findlib: rebuild with ocaml-4.07.1alpine-mips-patches2019-03-061-4/+5
| | | | Also sync the arch= list with the ocaml aport and remove the textrels option on x86_64.
* community/ocaml: upgrade to 4.07.1alpine-mips-patches2019-03-061-15/+12
| | | | | | | | | | | | | | | | | | | | - add binutils-dev to makedepends to improve support for native object files in ocamlobjinfo. This causes no changes in runtime dependencies because binutils is pulled via gcc already. - tell ocaml we are building it with PIC enabled to reflect the fact in /usr/lib/ocaml/Makefile.config and similar places. - remove CFLAGS joggling: ocaml build system ignores CFLAGS etc from the environment. And -fPIC is ensured by the above change. - set the "preprocessed assembler" command explicitly. Same for "assembler" even if the latter is apparently unused in build on non-Windows systems. - remove '--no-curses': it is a no-op. - abuild detects no textrels on x86_64 at least so update options.
* community/compton: upgrade to 5.1Paul Bredbury2019-03-061-13/+16
| | | | | | | | | | | | Switched to a maintained fork. Fixed lack of, and inconsistent, variable quoting. "compton --vsync drm" works, with xf86-video-intel, but is laggy. Seems worth enabling as an option, anyway. No point in packaging the standard licence text files. There are no tests actually defined, in /tests dir.
* community/avr-libc: fix build on mips*, modernizealpine-mips-patches2019-03-061-8/+8
| | | | | | | ./config.guess has no exec permission so run it directly as a shell script to fix build system detection on mips*. Also remove bash from makedepends, it is not needed.
* community/py-augeas: fix crash on mips*alpine-mips-patches2019-03-052-3/+38
| | | | | | | | On mips* dynamically imported symbol (here 'free') must be looked up in its explicitly dlopen()ed module (here 'None' which means the standard C library in cffi world). This change does not break x86_64 at least and actually follows the cffi docs at cdef.html#ffi-dlopen-loading-libraries-in-abi-mode
* community/zram-init: fix depend and default algoNatanael Copa2019-03-052-4/+56
| | | | | | | | | | zram-init depends on zramctl from util-linux so add that as explicit depends. the alpine kernel does not support crypto zstd so use lz4 algo as default. ref #10044
* community/ruby-rugged: fix checkdepends (git)alpine-mips-patches2019-03-051-2/+2
| | | | | | | | | | | Without git installed check() fails with a bunch of errors like this: 1) Error: IndexRepositoryTest#test_read_tree_with_not_a_tree: Errno::ENOENT: No such file or directory - git /home/user/aports/community/ruby-rugged/src/rugged-0.27.4/test/test_helper.rb:56:in ``' /home/user/aports/community/ruby-rugged/src/rugged-0.27.4/test/test_helper.rb:56:in `clone' /home/user/aports/community/ruby-rugged/src/rugged-0.27.4/test/index_test.rb:322:in `setup'
* community/scdoc: upgrade to 1.9.4Henrik Riomar2019-03-042-2/+33
|
* community/py-zmq: upgrade to 18.0.0Fabian Affolter2019-03-041-2/+2
|
* community/gomplate: upgrade to 3.3.0Dave Henderson2019-03-041-2/+2
| | | | Signed-off-by: Dave Henderson <dhenderson@gmail.com>
* community/openal-soft: update url with httpsFrancesco Colista2019-03-041-3/+1
|
* community/libdroplet: update url with httpsFrancesco Colista2019-03-041-1/+1
|
* community/gource: update url with httpsFrancesco Colista2019-03-041-1/+1
|
* community/mumudvb: udpated urlFrancesco Colista2019-03-041-2/+1
|
* community/monitoring-plugins: udpate url to httpsFrancesco Colista2019-03-041-1/+1
|