update: dbus, gdb, grantlee, libntlm

pull/2490/head
Mark Brand 4 years ago
parent 951c528c4e
commit 04d623d182

@ -3,8 +3,8 @@
PKG := dbus
$(PKG)_WEBSITE := https://dbus.freedesktop.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.13.12
$(PKG)_CHECKSUM := 7588649b56dd257c6a5f85a8c45aa2dfdf9e99f4de3983710f452081ca43eca6
$(PKG)_VERSION := 1.13.14
$(PKG)_CHECKSUM := 96068550cfd465d042a334bc8737504fbee6e7b6c677abe113272900bb57b8ff
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz
$(PKG)_URL := https://$(PKG).freedesktop.org/releases/$(PKG)/$($(PKG)_FILE)

@ -2,8 +2,8 @@
PKG := gdb
$(PKG)_WEBSITE := https://www.gnu.org/software/gdb/
$(PKG)_VERSION := 8.3.1
$(PKG)_CHECKSUM := 1e55b4d7cdca7b34be12f4ceae651623aa73b2fd640152313f9f66a7149757c4
$(PKG)_VERSION := 9.1
$(PKG)_CHECKSUM := 699e0ec832fdd2f21c8266171ea5bf44024bd05164fdf064e4d10cc4cf0d1737
$(PKG)_SUBDIR := gdb-$($(PKG)_VERSION)
$(PKG)_FILE := gdb-$($(PKG)_VERSION).tar.xz
$(PKG)_URL := https://ftp.gnu.org/gnu/$(PKG)/$($(PKG)_FILE)

@ -1,31 +0,0 @@
This file is part of MXE. See LICENSE.md for licensing information.
Contains a fix for building on QT 5.13.
From 1b4f22431ae35dfd11f07a5ae88a1b4db3de2a85 Mon Sep 17 00:00:00 2001
From: Michael Pyne <mpyne@kde.org>
Date: Tue, 18 Dec 2018 17:47:21 -0500
Subject: [PATCH] Fix build with Qt 5.13 / GCC 8.2.
At this point Grantlee doesn't build for me because QList is an
incomplete type. I think the compiler is right to complain, so I fix by
including the appropriate header.
Fixes issue #47.
---
templates/lib/lexer_p.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/templates/lib/lexer_p.h b/templates/lib/lexer_p.h
index 275aeea..1ae451a 100644
--- a/templates/lib/lexer_p.h
+++ b/templates/lib/lexer_p.h
@@ -24,7 +24,7 @@
#include "textprocessingmachine_p.h"
#include "token.h"
-template <typename T> class QList;
+#include <QList>
namespace Grantlee
{

@ -4,8 +4,8 @@ PKG := grantlee
$(PKG)_WEBSITE := https://github.com/steveire/grantlee
$(PKG)_DESCR := Grantlee is a set of Free Software libraries written using the Qt framework
$(PKG)_IGNORE :=
$(PKG)_VERSION := 5.1.0
$(PKG)_CHECKSUM := 3836572fe5e49d28a1d99186c6d96f88ff839644b4bc77b73b6d8208f6ccc9d1
$(PKG)_VERSION := 5.2.0
$(PKG)_CHECKSUM := 139acee5746b957bdf1327ec0d97c604d4c0b9be42aec5d584297cb5ed6a990a
$(PKG)_GH_CONF := steveire/grantlee/tags,v
$(PKG)_DEPS := cc qtbase

@ -4,8 +4,8 @@ PKG := libntlm
$(PKG)_WEBSITE := https://www.nongnu.org/libntlm/
$(PKG)_DESCR := Libntlm
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.5
$(PKG)_CHECKSUM := 53d799f696a93b01fe877ccdef2326ed990c0b9f66e380bceaf7bd9cdcd99bbd
$(PKG)_VERSION := 1.6
$(PKG)_CHECKSUM := f2376b87b06d8755aa3498bb1226083fdb1d2cf4460c3982b05a9aa0b51d6821
$(PKG)_SUBDIR := libntlm-$($(PKG)_VERSION)
$(PKG)_FILE := libntlm-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := https://www.nongnu.org/libntlm/releases/$($(PKG)_FILE)

Loading…
Cancel
Save