aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* testing/snapper: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* testing/ledger: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* testing/emulationstation: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* testing/pcl: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* testing/vera++: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* testing/ceph: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* testing/i2pd: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* testing/ncmpcpp: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* testing/blender: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* testing/monero: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* testing/mapnik: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* community/libreoffice: upgrade to 6.0.6.2Natanael Copa2018-08-131-4/+4
|
* community/liborcus: rebuild against boost 1.67Natanael Copa2018-08-132-3/+56
|
* community/libixion: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* community/libcmis: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* community/rippled: rebuild against boost-1.67Natanael Copa2018-08-131-2/+2
|
* main/boost: revert WIFSIGNALED static assertNatanael Copa2018-08-132-2/+19
| | | | http://www.openwall.com/lists/musl/2018/08/10/3
* community/pdns-recursor: rebuild against boost-1.67Natanael Copa2018-08-132-1/+2178
|
* community/bitcoin: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* community/namecoin: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* community/aspcud: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* main/lucene++: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* main/encfs: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* main/thin-provisioning-tools: rebuild against boost-1.67Natanael Copa2018-08-131-1/+1
|
* main/boost: upgrade to 1.67.0tcely2018-08-132-78/+84
|
* community/xfce4-vala: enable gtk3 and modernizeNatanael Copa2018-08-132-16/+2971
|
* main/bacula: upgrade to 9.2.1Leonardo Arena2018-08-132-4/+28
|
* main/pciutils: upgrade to 3.6.2Leonardo Arena2018-08-131-2/+2
|
* main/perl-dbd-odbc: upgrade to 1.59Leonardo Arena2018-08-131-2/+2
|
* testing/opmsg: take maintainershipRoberto Oliveira2018-08-121-2/+2
|
* testing/opmsg: upgrade to 1.78Roberto Oliveira2018-08-121-3/+3
|
* testing/detox: modernize and take maintainershipRoberto Oliveira2018-08-121-6/+3
|
* community/gitea: upgrade to 1.5.0Carlo Landmeter2018-08-122-18/+14
|
* community/xfce4-screenshooter: upgrade to 1.9.3Natanael Copa2018-08-111-2/+7
|
* testing/aports-ghpr: upgrade to 0.2Natanael Copa2018-08-111-3/+3
|
* testing/py3-dockerpty: added py3-setuptools in makedependsFrancesco Colista2018-08-111-1/+1
|
* community/gvm-tools: added missing makedepends for aarch64Francesco Colista2018-08-111-1/+1
|
* community/gvm-tools: added missing dependencyFrancesco Colista2018-08-111-2/+2
|
* community/gvm-tools: upgrade to 1.4.1Francesco Colista2018-08-111-4/+4
|
* community/docker-py: upgrade to 3.5.0Francesco Colista2018-08-111-2/+2
|
* testing/zerotier-one: upgrade to 1.2.10 and modernizeKyle Parisi2018-08-111-11/+13
|
* testing/php7-event: upgrade to 2.4.1Andy Postnikov2018-08-111-2/+2
|
* community/phpmyadmin: fix apache2 config and improveAndy Postnikov2018-08-102-31/+27
| | | | Closes #8088
* testing/emulationstation: disable on s390x due to missing dependency vlc-devAndy Postnikov2018-08-101-1/+1
|
* testing/php7-xhprof: disable on s390xNatanael Copa2018-08-101-1/+1
| | | | | reported upstream: https://github.com/longxinH/xhprof/issues/15
* main/gettext: fix testsuite with libunistring 0.9.10Natanael Copa2018-08-103-5/+113
| | | | | | | | | | | | | | gettext bundles libunistring and parts of it, data tables, gets built and included even when external libunistring is used. The newer external libunistring (0.9.10) ends up use the data table from the older version of the bundled libunistring and things goes horribly wrong. We work around this by exclude unilbrk from the build so we only use external libunistring. Upstream bug reports: https://lists.gnu.org/archive/html/bug-gettext/2018-08/msg00008.html https://savannah.gnu.org/bugs/index.php?54453
* community/py-lz4: upgrade to 2.1.0Stuart Cardall2018-08-101-2/+2
| | | | | | | | | | | | | | | | | | | This release changes the handling of errors for block decompression when uncompressed_size > 0. In this case, we no longer check that the uncompressed data has exactly the size specified by uncompressed_size: this argument is now used as an upper bound. In addition, we introduce a new exception: LZ4BlockError which is raised whenever the LZ4 library fails. These two changes together allow "guessing" of the uncompressed data size: simply set uncompressed_size to a number and try decompress, and catch LZ4BlockError. If LZ4BlockError is raised, increase uncompressed_size and try again. See the documentation for more details and examples: http://python-lz4.readthedocs.io/en/stable/lz4.block.html
* testing/grpc: upgrade to 1.14.1liluo2018-08-101-2/+2
|
* main/redis: upgrade to 4.0.11Andy Postnikov2018-08-101-3/+3
|
* main/postgresql: security upgrade to 10.5Andy Postnikov2018-08-101-2/+5
| | | | CVE-2018-10915 CVE-2018-10925