Commit graph

5451 commits

Author SHA1 Message Date
Jürgen Buchmüller f3d78e3bf5 libsidplayfp: update to 2.1.0 2021-02-12 14:49:25 +01:00
Leah Neukirchen 3b6958f413 janet: update to 1.15.0. 2021-02-11 21:01:13 +01:00
Érico Rolim 84a5c1ef7c Revert "build-style/meson.sh: drop unneeded AR export"
This reverts commit 2163ca2d03.

Removing `export AR=gcc-ar` was apparently done based on the assumption
that the linked issue (https://github.com/mesonbuild/meson/issues/1646)
had been solved completely on meson's side.

Instead, their solution, seen in
https://github.com/void-linux/void-packages/pull/2815, had been to force
gcc-ar for linking static libraries; by exporting `AR=ar`, we were
accidentally breaking static libraries when LTO is enabled. This was
noticed by leah while we were trying to build qemu-user-static using the
normal libglib-devel package (built with meson, which for us defaults to
enabling LTO).

Unfortunately, while correct, this change wasn't enough to fix the
static glib build, which had to resort to disabling LTO.
2021-02-11 15:22:01 -03:00
Érico Rolim 2a748e7e6d xbps-src/libexec: add make_check option.
Allows a template to define in which circumstances its do_check phase
should run, without requiring custom do_check definitions in each
template (also makes it easier to change how build styles do things
without checking as many templates).

Add to Manual and CONTRIBUTING as well.
2021-02-11 02:40:09 -03:00
sternenseemann 1384e928f7 xbps-src: create $XBPS_MASTERDIR/tmp in chroot_prepare
Missing $XBPS_MASTERDIR/tmp caused ca-certificates and glibc-locales to
fail in the reconfigure step of binary-bootstrap, since a call to mktemp
(which I couldn't locate in source though) assumed /tmp in the chroot
would be present already.

This issue was reproducible reliably for me on NixOS by doing something
like:

    rm -rf masterdir
    ./xbps-src binary-bootstrap

The workaround I found was:

    mkdir -p masterdir/tmp      # or alternatively ./xbps-src clean
                                # which also (re-)creates masterdir/tmp
    ./xbps-src binary-bootstrap

This workaround is now mirrored in chroot_prepare by ensuring that tmp
always exists.
2021-02-11 02:07:32 -03:00
Giuseppe Fierro 00dfb637c6 nuspell: update to 4.2.0. 2021-02-11 00:16:54 -03:00
Đoàn Trần Công Danh 4e652be441 build-helper/qmake: sync with qmake build-style
- create pseudo target for cross compile in order to not include host
  specific headers
- look for modules inside target
- ignore rpath
2021-02-11 09:01:47 +07:00
John f24905319d Remove package: mysql 2021-02-10 23:07:31 +01:00
Đoàn Trần Công Danh 8f8c5789b9 common/00-libdir: only create lib{32,64} symlink if not exists 2021-02-10 14:38:59 +01:00
Érico Rolim 520be3a5de common/wrappers: add -L/usr/lib{32,64} to arguments ignored by cross-cc.
Detected when cross building timg after rebuilding GraphicsMagick with
new libdir directories. Could be fixed in all offending packages, but
it's easier to fix it in one place, and arguably more correct.
2021-02-09 23:01:46 -03:00
Érico Rolim 52dc27fe60 xmlrpc-c: update to 1.51.06. 2021-02-09 01:50:43 -03:00
Érico Rolim 4977dd1e43 duktape: update to 2.6.0.
Also clean up template.
2021-02-08 23:22:44 -03:00
Érico Rolim ba77011f50 mozjs60: remove package. 2021-02-08 23:17:14 -03:00
John 446425847d build-style/cmake: replace sed monstrosity with ${wrksrc}/${build_wrksrc} 2021-02-09 00:19:27 +01:00
John 04715e12f6 build-style/cmake: use ninja as default generator
closes #28304
2021-02-09 00:19:07 +01:00
Đoàn Trần Công Danh c3b3ef96d9 build-style/qmake: remove RPATH for native build
Fix up for 596a2da188, (build-style/qmake: no rpath, 2021-02-07)
2021-02-08 18:47:23 +07:00
Đoàn Trần Công Danh 596a2da188 build-style/qmake: no rpath
See #27494
Close #28563
2021-02-08 07:05:01 +07:00
John ef86367766 seexpr-krita: update to 4.0.1.0. 2021-02-07 23:11:09 +01:00
John cac58bf0c7 kdeconnect: update to 20.12.2. 2021-02-06 21:51:18 +01:00
Piraty 46ab8b16d1
zuluplay: remove package
zuluplay seems maintained in zulucrypt sources, as zulucrypt cmake
complains about outdated zuluplay while the actual repo has no tag.
The only consumer is zulucrypt, which now uses the bundled zuluplay now.
2021-02-06 14:35:58 +01:00
Đoàn Trần Công Danh 4ad45b9cb3 build-style/perl-module: put . into @INC
Fixing those build failure:

- perl-Crypt-DH
- perl-Curses-UI
- perl-Data-MessagePack
- perl-Encode-HanExtra
- perl-Gtk2-Notify
- perl-Plack-Middleware-Deflater
- perl-Text-Markdown
- perl-WWW-Curl
2021-02-06 13:10:59 +07:00
Piotr Wójcik 4da37b723e shlibs: remove libs from removed packages
libEGL, libGL, libGLES left as they are virtuals now.
2021-02-05 21:04:49 +01:00
Francesco Circhetta f89bba4625 plymouth: update to 0.9.5. 2021-02-04 10:03:50 -03:00
Andrew J. Hesford 2f5e5f1e5e build-helper/rust: define HOST_CC and HOST_CFLAGS
The cc-rs crate will try to guess the host compiler and use default
flags these are not specifically set. The default behavior is wrong in
Void cross-compilation environments. Explicitly define HOST_CC=gcc and
use innocuous HOST_CFLAGS=-O2 just to thwart the bad defaults.

Co-authored-by: Érico Rolim <erico.erc@gmail.com>
Co-authored-by: Andrew J. Hesford <ajh@sideband.org>

Closes: #28416.
2021-02-04 00:33:41 -05:00
Andrew J. Hesford 74e0a12915 build-style/python3-pep517: make sure ./build exists in do_install
This allows templates to override do_build and not have to create the
build subdirectory used as TMPDIR in do_install; failure to create this
directory will cause pip to use (and pollute) /tmp in the masterdir.
2021-02-03 16:30:01 -05:00
Nyx70 54f05e5865 geos: update to 3.9.0. 2021-02-02 22:27:12 -06:00
UsernameRandomlyGenerated cc7c568729 kid3: update to 3.8.5, remove unused shlibs 2021-02-02 16:18:21 -03:00
Jürgen Buchmüller 38076242e5 common/build-profile/i686-musl: fix triplet 2021-02-02 01:25:46 +01:00
Érico Rolim 79d27f79a5 gegl3: remove package.
No longer used by anything, modern version is gegl.
2021-02-01 10:45:56 -03:00
mobinmob e604665ea2 skalibs: update to 2.10.0.1. 2021-02-01 01:13:09 -03:00
John 2d56c40d8f librpcsecgss: remove package
broke with glibc-2.32
does not compile with libtirpc
2021-01-30 20:05:03 +01:00
Leah Neukirchen 210b461028 hooks/post-install/06-strip-and-debug-pkgs.sh: speed up.
Only run file once for each file in the destdir, only double-check
when we are about to strip the ELF files.
2021-01-30 15:20:53 +01:00
Leah Neukirchen 6ecbbf767a hooks/pre-pkg/03-rewrite-python-shebang.sh: use grep -r instead of find.
This saves us one sed execution per file in the destdir, resulting
in a major speedup.

Grep will only consider text files and only look at the first line.
2021-01-30 15:20:43 +01:00
Jürgen Buchmüller 3f83be08be kea: update to 1.9.4 2021-01-29 14:30:42 +01:00
travankor cc548a81ca weston: update to 9.0.0. 2021-01-29 00:52:17 -03:00
Paper e241698557 New package: libopenaptx-0.2.0. 2021-01-28 00:46:02 -03:00
yopito 2f7f587547 python3-pyside2: update to 5.15.2, testing support, remove dummy packages 2021-01-28 00:32:45 -03:00
yopito 50e5ad1c72 shiboken2: update to 5.15.2, testing support, remove dummy packages
add SHIBOKEN_CLANG_OPTIONS env variable support to manage crossbuild
2021-01-28 00:31:48 -03:00
Đoàn Trần Công Danh 2ec0338af6 update_check: update GNOME pattern for GNOME 40 2021-01-28 07:18:59 +07:00
Érico Rolim 13ce3a0bea mozjs68: remove package. 2021-01-27 15:30:51 -03:00
Érico Rolim 80fc90767d js: remove package. 2021-01-27 15:30:51 -03:00
Enfau Kerus a1aec36a6c common/shlibs: add missing rtaudio libs 2021-01-27 09:29:11 +00:00
q66 4a61e1ee22 common/shlibs: bump glibc version
looks like newer sudo, besides other things, will introduce
newer symvers; we need to make sure all new packages will also
update glibc with them
2021-01-26 20:46:36 +01:00
q66 b2d670be60 build-style/void-cross: always enable libssp
this way we'll be able to provide libssp(-devel) unconditionally
inside cross-vpkg-dummy, which should be the right thing to do
2021-01-26 20:17:55 +01:00
q66 22962b7118 build-style/void-cross: symlink bin on install
this is needed so that binaries go in sysroot/usr/bin instead
of sysroot/bin
2021-01-26 19:53:19 +01:00
Andrea Brancaleoni 0a114eca48 podofo: fix shlibs 2021-01-25 23:06:29 +00:00
Andrea Brancaleoni 0823072e80 libnfc: update to 1.8.0. 2021-01-25 22:33:02 +00:00
Đoàn Trần Công Danh c1fa95a097 common: fix exit status of uname wrapper 2021-01-25 09:00:04 +07:00
John b4f67689a1 autoconf_cache/common-glibc: remove *sys_siglist entries, removed with glibc 2.32 2021-01-24 22:51:04 +01:00
Érico Rolim ad8cdd09d7 mozjs52: complete removal.
- remove from common/shlibs; also remove mozjs24 entry
- add to removed-packages
2021-01-24 18:13:12 -03:00