gnome-terminal: update to 3.30.0.
This commit is contained in:
parent
33e94e629d
commit
b8d031fea1
2 changed files with 20 additions and 3 deletions
17
srcpkgs/gnome-terminal/patches/fix-W_EXITCODE.patch
Normal file
17
srcpkgs/gnome-terminal/patches/fix-W_EXITCODE.patch
Normal file
|
@ -0,0 +1,17 @@
|
|||
Source: https://mail-archives.apache.org/mod_mbox/mesos-reviews/201610.mbox/%3C20161014170728.1720.54446@reviews.apache.org%3E
|
||||
Upstream: No
|
||||
Reason: fixes compilation with musl that doesn't define W* macros.
|
||||
|
||||
--- src/terminal.c
|
||||
+++ src/terminal.c
|
||||
@@ -47,6 +47,10 @@
|
||||
GS_DEFINE_CLEANUP_FUNCTION0(TerminalOptions*, gs_local_options_free, terminal_options_free)
|
||||
#define gs_free_options __attribute__ ((cleanup(gs_local_options_free)))
|
||||
|
||||
+#ifndef W_EXITCODE
|
||||
+#define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
|
||||
+#endif
|
||||
+
|
||||
/* Wait-for-exit helper */
|
||||
|
||||
typedef struct {
|
|
@ -1,9 +1,9 @@
|
|||
# Template file for 'gnome-terminal'
|
||||
pkgname=gnome-terminal
|
||||
version=3.28.2
|
||||
version=3.30.0
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
configure_args="--disable-static --with-nautilus-extension --disable-migration"
|
||||
configure_args="--disable-static --with-nautilus-extension"
|
||||
hostmakedepends="appdata-tools glib-devel intltool itstool
|
||||
pkg-config"
|
||||
makedepends="dconf-devel gnome-shell gsettings-desktop-schemas-devel
|
||||
|
@ -14,5 +14,5 @@ maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|||
homepage="https://wiki.gnome.org/Apps/Terminal"
|
||||
license="GPL-2.0-or-later, GFDL-1.3-only"
|
||||
distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
|
||||
checksum=a283dca4980eecf9184a55aac03fef99f85748461ff190423a2253f3b4557279
|
||||
checksum=19d516bc0ba0b2aa8670673105c051b492ff8d401a435e86af0638bc600f6f54
|
||||
lib32disabled=yes
|
||||
|
|
Loading…
Reference in a new issue