cockpit: upgrade 218 -> 219

Signed-off-by: Michael Haener <michael.haener@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Michael Haener 2020-05-14 20:57:32 +02:00 committed by Khem Raj
parent 03fd716100
commit ba6fbd90c7
2 changed files with 2 additions and 33 deletions

View File

@ -8,11 +8,10 @@ SRC_URI += " \
https://github.com/cockpit-project/cockpit/releases/download/${PV}/cockpit-${PV}.tar.xz \
file://0001-remove-tests-dep-on-gobject-intro.patch \
file://0002-fix-makefile-use-copy-rule-for-unmodified-files.patch \
file://0003-install-fix-metainfo.xml-ownership-on-install.patch \
file://cockpit.pam \
"
SRC_URI[md5sum] = "e69b0b8a75a5d55ddfd9817d857c71af"
SRC_URI[sha256sum] = "5f242cefccd7f1120c9e0310581aa51dbe941d9c4a6d8375c45057dcbb6f2fbb"
SRC_URI[md5sum] = "285383b8744dab93ac8814e5a23e2c3e"
SRC_URI[sha256sum] = "111d477e54737f15467c365fa670f9ac1919be30ad0c93661692467ecd7f12fb"
inherit gettext pkgconfig autotools systemd features_check

View File

@ -1,30 +0,0 @@
From e56f2b294ca8c805bfd3d715d523bef188c54cb1 Mon Sep 17 00:00:00 2001
From: Emmanuel Roullit <emmanuel.roullit@gmail.com>
Date: Sat, 2 May 2020 14:05:35 +0200
Subject: [PATCH] install: fix metainfo.xml ownership on install
Signed-off-by: Emmanuel Roullit <emmanuel.roullit@gmail.com>
---
Makefile.am | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index d9f918e99..9a23e0a7b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -226,10 +226,10 @@ maintainer-clean-local::
install-data-local:: $(WEBPACK_INSTALL)
$(MKDIR_P) $(DESTDIR)$(pkgdatadir)
- tar -cf - $^ | tar -C $(DESTDIR)$(pkgdatadir) --strip-components=1 -xvf -
+ tar -cf - $^ | tar --no-same-owner -C $(DESTDIR)$(pkgdatadir) --strip-components=1 -xvf -
install-data-local:: $(WEBPACK_DEBUG)
$(MKDIR_P) $(DESTDIR)$(debugdir)$(pkgdatadir)
- tar -cf - $^ | tar -C $(DESTDIR)$(debugdir)$(pkgdatadir) --strip-components=1 -xvf -
+ tar -cf - $^ | tar --no-same-owner -C $(DESTDIR)$(debugdir)$(pkgdatadir) --strip-components=1 -xvf -
uninstall-local::
find $(DESTDIR)$(pkgdatadir) -ignore_readdir_race -type f -exec rm -f {} \;
find $(DESTDIR)$(pkgdatadir) -ignore_readdir_race -type d -empty -delete
--
2.17.1