comparison src/dbus.mk @ 6242:8ac50e1f707b

* src/dbus.mk: update to v1.14.0, update update rule
author John Donoghue <john.donoghue@ieee.org>
date Fri, 27 May 2022 14:24:37 -0400
parents 06360b6a7e54
children 8c787c429502
comparison
equal deleted inserted replaced
6241:dfdc997c1e4c 6242:8ac50e1f707b
1 # This file is part of MXE. 1 # This file is part of MXE.
2 # See index.html for further information. 2 # See index.html for further information.
3 3
4 PKG := dbus 4 PKG := dbus
5 $(PKG)_IGNORE := 5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 1.13.22 6 $(PKG)_VERSION := 1.14.0
7 $(PKG)_CHECKSUM := 9f6bf1922a550281481ee67fdff7212dc95c5562 7 $(PKG)_CHECKSUM := 66b7d8ad719dadf6611879790da6939bc7d70121
8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) 8 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz 9 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz
10 $(PKG)_URL := http://$(PKG).freedesktop.org/releases/$(PKG)/$($(PKG)_FILE) 10 $(PKG)_URL := http://$(PKG).freedesktop.org/releases/$(PKG)/$($(PKG)_FILE)
11 $(PKG)_DEPS := expat 11 $(PKG)_DEPS := expat
12 12
14 ifeq ($(MXE_SYSTEM),mingw) 14 ifeq ($(MXE_SYSTEM),mingw)
15 $(PKG)_DISABLE_PROGS := $(MXE_DISABLE_PROGS) 15 $(PKG)_DISABLE_PROGS := $(MXE_DISABLE_PROGS)
16 endif 16 endif
17 17
18 define $(PKG)_UPDATE 18 define $(PKG)_UPDATE
19 $(WGET) -q -O- 'http://cgit.freedesktop.org/dbus/dbus/refs/tags' | \ 19 $(WGET) -q -O- https://gitlab.freedesktop.org/dbus/dbus/-/tags | \
20 $(SED) -n "s,.*<a href='[^']*/tag/?h=dbus-\\([0-9][^']*\\)'.*,\\1,p" | \ 20 $(SED) -n 's|.*/tags/dbus-\([^"]*\).*|\1|p' | grep -v 'rc' | $(SORT) -V | \
21 $(SORT) -V | \
22 tail -1 21 tail -1
23 endef 22 endef
24 23
25 define $(PKG)_BUILD 24 define $(PKG)_BUILD
26 cd '$(1)' && ./configure \ 25 cd '$(1)' && ./configure \