Commit graph

4163 commits

Author SHA1 Message Date
maxice8 42f01aa18c libewf: update to 20171104. 2019-01-11 13:34:35 -02:00
Leah Neukirchen 6b81302e38 environment/configure/hardening.sh: enable -fstack-clash-protection
This flag will make GCC 8 touch all space allocated using alloca(3)
and thus detect code jumping over the "stack gap".
2019-01-11 16:20:18 +01:00
maxice8 57125f8ba9 ruby: update to 2.6.0. 2019-01-11 02:05:28 -02:00
Christian Buschau 993f4ec759 libidn2: update to 2.1.0. 2019-01-10 17:21:24 -02:00
John e234646841 plasma-workspace: move libkworkspace5 into new subpackage 2019-01-10 18:21:21 +00:00
maxice8 75e535d257 hooks/11-pkglint-elf-in-usrshare: make use of bashisms to fix stuff.
using for-loop causes the loop to hang at filenames with -.

Use while read instead with bash process substitution so it avoids the
subshell problem.
2019-01-10 00:44:44 -02:00
Rasmus Thomsen d8d06d372a weston: update to 5.0.0. 2019-01-09 23:24:46 -02:00
Rasmus Thomsen ed83b3f71c New package: llhttp-1.1.0 2019-01-09 23:02:10 -02:00
Christian Buschau 64c7493875 kid3: update to 3.7.0. 2019-01-09 21:12:24 -02:00
Andrew Benson 459f0e8b10 gnustep-base: update to 1.26 2019-01-09 20:00:52 -02:00
maxice8 c06512eac9 hooks: Add hook to check for ELF files in /usr/share 2019-01-09 17:01:13 -02:00
eater 08ea5a4a26 New package: musikcube 2019-01-09 16:34:32 -02:00
maxice8 0e888bcc93 libgksu: remove
Deprecated upstream in favour of polkit.

Removed in Debian, Arch, Ubuntu.
2019-01-09 16:26:16 -02:00
Rasmus Thomsen a3cc25b011 poco: update to 1.9.0. 2019-01-09 01:21:27 -02:00
Nathan Owens 2f8b78b831 bro: update to 2.6.1 2019-01-09 00:33:55 -02:00
John ae7aaf7b22 sile: update to 0.9.5. 2019-01-08 23:43:39 +01:00
David Flatz db6915b401 nvidia: update to 410.93. 2019-01-08 21:34:05 +01:00
maxice8 689272b3e5
poppler: update to 0.73.0. 2019-01-08 14:52:49 -02:00
q66 a87fa0a914 New package: librtas-2.0.2 2019-01-08 10:18:42 +01:00
Piotr Wójcik 9c8ef3d6a9 update-check: handle python3-only modules from pypi 2019-01-07 18:28:36 -02:00
maxice8 e5fe1ed57f cpptest: update to 2.0.0. 2019-01-07 17:52:54 -02:00
Cameron Nemo 785ec29218 New package: startup-1.13.3 2019-01-06 20:58:43 -02:00
q66 d3edfef8a0 libunwind: fix build on ppc64 targets 2019-01-06 18:07:31 -02:00
Enno Boland 0832e1adfa
build-style/cmake: fix typo 2019-01-05 23:45:27 +01:00
q66 01f3016e9a glibc: enable ppc64le support 2019-01-05 23:38:00 +01:00
q66 151f876627 common: add ppc64 build profiles and other ppc64 bits
This adds the build profiles for ppc64 targets as well as
modifications in other parts of the infra.

These targets are supported:

- ppc64le (glibc little endian elfv2)
- ppc64le-musl (musl little endian)
- ppc64-musl (musl big endian)

ELFv1 targets are explicitly not supported at this point.

Big endian musl supports ppc 970 or newer, while little endian
targets are set to a generic powerpc64le which effectively means
POWER8 and newer. Tuning is always set for POWER9, which is the
most likely target hardware. We also make sure AltiVec is always
on, because it is supported on all hardware we target.

[ci skip]
2019-01-05 23:38:00 +01:00
John bbf998527b MEGAsdk: update to 3.4.5. 2019-01-05 14:06:13 +01:00
Johannes 3ab8843220 capstone: update to 4.0. 2019-01-05 13:59:33 +01:00
Piotr Wójcik 27d9e7ffea hooks/uncompress-manpages: prevent hang
In case when file to be uncompressed existed, decompressors asked
whether to overwrite it.
As output is muted, building hung silently waiting for input.
2019-01-05 08:12:55 -02:00
Rasmus Thomsen 537de0ff41 lm_sensors: update to 3.5.0. 2019-01-04 20:48:07 -02:00
Jasper Chan 4979ea9237
New package: gerbv-2.6.2 [ci skip]
closes #6246
2019-01-04 17:09:59 -02:00
Daniel Lewan e5c8b34dbb
New package: libfixposix-0.4.3
closes #6388
2019-01-04 17:08:46 -02:00
maxice8 3bf0575adf New package: recutils-1.8 2019-01-04 14:38:21 -02:00
Rasmus Thomsen 24da9e875e exiv2: update to 0.27.0.
[ci skip]
2019-01-04 11:44:01 +01:00
Rasmus Thomsen 0372613f92 http-parser: update to 2.9.0. 2019-01-03 23:20:02 -02:00
prspkt fdaa76e8a0 zchunk: add devel subpackage 2019-01-03 22:29:10 -02:00
Noel Cower 43db1c25dc build-styles: Add support for Go modules.
Adds support for Go modules by detecting a go.mod file and, if
available, using it. In addition, to continue supporting vendoring (and
avoid the need for git on all module builds), if a package includes
a vendor directory, the module mode will switch to vendor mode if not
already set. This will use vendored source code for dependencies
instead of downloading that code again using the descriptions under
go.mod.

go_mod_mode=vendor also skips the go.sum check because nothing is
downloaded that isn't already verified, so this fixes packages with
vendored code that have checksum mismatches due to Go 1.11.4 module
checksum changes.

[ci skip]

Closes: #6036 [via git-merge-pr]
2019-01-02 20:10:56 -08:00
Rasmus Thomsen cb1ba97f1f bacula-common: update to 9.4.1. 2019-01-01 23:11:50 -02:00
Frank Steinborn c9a1e641f2 New package: getdns-1.5.0 2019-01-01 21:58:06 -02:00
Rasmus Thomsen 4b52c44077 ldc: update to 1.13.0. 2018-12-30 20:42:40 +01:00
John ca832ffbb2
boost: update to 1.69.0 2018-12-28 05:41:10 -02:00
maxice8 a57a78e63f llvm3.9: remove 2018-12-27 17:50:43 -02:00
Rasmus Thomsen 8bb85ec039 libical: update to 3.0.4. 2018-12-27 02:11:32 -02:00
Rasmus Thomsen 282f980cf9
llvm: update to 7.0.1.
* version latest version too -> llvm7

Co-authored-by: maxice8 <thinkabit.ukim@gmail.com>

[ci skip]
2018-12-25 23:54:27 -02:00
maxice8 06b5f44b30 libplacebo: update to 1.7.0. 2018-12-25 13:55:10 -02:00
Jürgen Buchmüller c6c02b07f1
log4cplus: update to 2.0.3
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2018-12-23 13:31:25 +01:00
Jürgen Buchmüller 2d8e221b43
kea: update to 1.5.0
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2018-12-22 14:46:29 +01:00
Rasmus Thomsen b50e169432 vala: update to 0.42.4.
* move usr/share/vala to vala-devel
2018-12-21 19:57:14 -02:00
maxice8 8485a7fb1d qimageblitz: remove 2018-12-21 13:47:48 -02:00
maxice8 dffb2798f1 libdbusmenu-qt: remove 2018-12-21 12:19:25 -02:00
maxice8 9251941c99 hooks/pre-pkg: prohibit /usr/doc, mention /usr/share/doc 2018-12-20 16:33:35 -02:00
Johannes b84952bf5b ffmpeg: add build option nvenc 2018-12-20 18:41:18 +01:00
Rasmus Thomsen fb7c3e14cb New package: gmime3-3.2.3 2018-12-19 23:42:16 -02:00
maxice8 6a12dfa698
poppler: update to 0.72.0. 2018-12-19 22:20:37 -02:00
Helmut Pozimski 83b956f437 aqbanking: update to 5.7.8. (soname bump) 2018-12-19 08:17:33 +01:00
Rasmus Thomsen 5afc6e99ca New package: libidn2-2.0.5 2018-12-17 12:54:10 -02:00
Olga U 32ed47e6b7 shlibs: add libkdegames 2018-12-17 14:14:53 +01:00
Rasmus Thomsen 3484913106 gtk+3: update to 3.24.2.
* add build option for cloudproviders
2018-12-16 22:52:04 -02:00
maxice8 791cfefafb New package: woff2-1.0.2. 2018-12-14 12:38:35 -02:00
Cameron Nemo f3e8ab9355 New package: dqlite-0.2.5 2018-12-13 10:21:59 -08:00
maxice8 3f5059ae50
hooks/post-install: fix find for executable files, use GNU -executable 2018-12-13 10:14:44 -02:00
Cameron Nemo d367fc7c8b gpgme: split library into its own subpackage 2018-12-13 08:55:23 -02:00
maxice8 80c5550ce4
hooks/post-install: fix message and indentation on pkglint-devel-paths. 2018-12-12 23:08:56 -02:00
maxice8 de31bf8d1f hooks/post-install: Add hook to warn when paths for -devel packages
should be added.

This hooks checks installed files of all packages that do not end
in -devel and warn when certain paths are found that should be in
the -devel package like:

- /usr/include
- /usr/lib/*.so
- /usr/lib/*.a
- /usr/[lib|share]/[pkg-config|cmake]
- /usr/share/vala
- /usr/share/gir-1.0
2018-12-12 23:07:05 -02:00
maxice8 5fbffed2dc shlibs: add private muffin libraries for cinnamon 2018-12-12 09:03:48 -02:00
maxice8 1484016a92 New package: dav1d-0.1.0 2018-12-12 08:52:18 -02:00
maxice8 41f0043c66 libode: update to 0.16. 2018-12-11 14:21:08 -02:00
bra1nwave 3ec2b4f2b9 SoapySDR: update to 0.7.0. 2018-12-11 13:05:32 -02:00
maxice8 7bd2eaea34 hooks/pre-pkg: deal with packages that install to /etc but should use
/usr/lib

some packages install stuff to places like /etc/udev/rules.d and
/etc/modprobe.d.

That is wrong, they should use their equivalents in /usr/lib.
2018-12-10 20:16:25 -02:00
maxice8 c830164053 common/shlibs: update capnroto entries 2018-12-09 20:12:54 -02:00
maxice8 b9fc924dd0 fdk-aac: update to 2.0.0. 2018-12-09 11:07:40 -02:00
maxice8 07fe6e71c5 libplacebo: update to 0.6.0. 2018-12-09 05:16:41 -02:00
Piotr Wójcik 1bbbd55871 update-check: add gitlab.freedesktop.org 2018-12-08 19:54:15 +01:00
maxice8 d1a14f90be hooks/pre-pkg: deal with packages using /etc/bash_completion.d
Detect when it is used and suggest
/usr/share/bash-completion/completions instead.
2018-12-07 12:30:20 +01:00
Jürgen Buchmüller a2edcda867
clamav: update to 0.101.0
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2018-12-06 19:33:02 +01:00
Sami Pitkänen cfc22c5865 chicken: update to 5.0.0 2018-12-05 09:20:32 -02:00
maxice8 6a1b3895e8 liblouis: update to 3.8.0. 2018-12-04 08:06:04 -02:00
Piotr Wójcik 7f7ff14e13
tesseract-ocr: update to 4.0.0.
Closes: #5380 [via git-merge-pr]
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2018-12-04 10:19:10 +01:00
Jürgen Buchmüller d30965d762
botan: update to 2.8.0
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2018-12-03 17:58:52 +01:00
mobinmob 2c47496efb
New package: tokyocabinet-1.4.48 2018-12-03 07:38:09 -02:00
SolitudeSF 34ccb76cd0 New package: CSFML-2.5 2018-12-03 06:32:10 -02:00
Linux-BSD db35a1e9a1
Add variables to fix cross compiling rust for mips*
Closes: #5259 [via git-merge-pr]
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2018-12-03 09:11:48 +01:00
Jürgen Buchmüller 0ef86da07c
common/shlibs: fix ois-1.5 entry
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2018-12-02 17:51:18 +01:00
Piotr Wójcik fce76df60c libmaa: update to 1.4.2. 2018-12-01 08:51:28 -02:00
maxice8 477bf82806 New package: libSavitar-3.6.0 2018-12-01 08:21:06 -02:00
John fda82cdf38 MEGAsdk: update to 3.4.4. 2018-11-29 09:14:35 +01:00
John ee4ce35a68 build-style/cmake: dehardcode gtk2 wxWdigets when cross compiling 2018-11-28 16:49:52 -02:00
Cameron Nemo f618b35503 gutenprint: update to 5.3.1. 2018-11-27 00:25:15 -02:00
eater 32edac01a2
New package: gts-0.7.6
closes #2734
2018-11-26 21:20:55 -02:00
Cameron Nemo e5ec7527e5
nss-mdns: update to 0.14.1.
closes #5003
2018-11-26 18:35:02 -02:00
bra1nwave 25a0117e91
New package: hamlib-3.3
closes #1326
2018-11-26 13:01:47 -02:00
Andy Weidenbaum afdfdf9991 build_style=perl6-dist: add 2018-11-26 04:11:50 -02:00
maxice8 1e57f4e9dd libwebsockets: update to 3.1.0. 2018-11-24 20:44:42 -02:00
Andrew Benson 3de4101276 New package: libpst-0.6.72 2018-11-24 09:09:10 +01:00
maxice8 df2b2c5e4d common/shlibs: re-add libdri2.so.1 entry 2018-11-23 01:37:45 -02:00
maxice8 f90ce86924 New package: libump-git-20181122 2018-11-23 01:37:45 -02:00
Johannes 5f5a55c2bb build-style/cargo.sh: export common variables to avoid static linking 2018-11-22 18:18:11 -02:00
maxice8 c8c63c3aba varnish: update to 6.1.1. 2018-11-20 19:53:09 -02:00
maxice8 54ab284ce7 bind: update to 9.11.5. 2018-11-20 16:11:20 -02:00
maxice8 69d620ffe5 goffice0.8: remove 2018-11-20 13:02:02 -02:00