summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2020-01-15 21:54:13 +0000
committerBruce Ashfield <bruce.ashfield@gmail.com>2020-02-03 17:12:40 -0500
commit002acb526310415a8e46d3e1d020622324e103cc (patch)
tree1d2ed23840faedc69ac5b4e05188d68f09e4b064
parentf4262ab75d36a06c528cc1630b48b817fb0acf8f (diff)
downloadmeta-virtualization-002acb526310415a8e46d3e1d020622324e103cc.tar.gz
conmon: bump to version 2.0.2
Bump to latest version 2.0.2. This also makes our Makefile fix obsolete as the fix has been aplied upstream. Already Podman 1.6.0 actually recommended 2.0.1 and higher, with 1.6.3 this has been made mandatory. Use conmon 2.0.2 which is also used in podmans build Dockerfile of the 1.6.4 release. Signed-off-by: Stefan Agner <stefan.agner@toradex.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-containers/conmon/conmon_2.0.2.bb (renamed from recipes-containers/conmon/conmon_2.0.0.bb)3
-rw-r--r--recipes-containers/conmon/files/0001-Makefile-don-t-fail-if-clean-is-called-without-a-bui.patch31
2 files changed, 1 insertions, 33 deletions
diff --git a/recipes-containers/conmon/conmon_2.0.0.bb b/recipes-containers/conmon/conmon_2.0.2.bb
index f4e2cd62..378c3096 100644
--- a/recipes-containers/conmon/conmon_2.0.0.bb
+++ b/recipes-containers/conmon/conmon_2.0.2.bb
@@ -6,10 +6,9 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=61af0b6932ea7b12fb9142721043bc77"
6 6
7DEPENDS = "glib-2.0" 7DEPENDS = "glib-2.0"
8 8
9SRCREV = "e217fdff82e0b1a6184a28c43043a4065083407f" 9SRCREV = "65fe0226d85b69fc9e527e376795c9791199153d"
10SRC_URI = "\ 10SRC_URI = "\
11 git://github.com/containers/conmon.git \ 11 git://github.com/containers/conmon.git \
12 file://0001-Makefile-don-t-fail-if-clean-is-called-without-a-bui.patch \
13" 12"
14 13
15SRC_URI[md5sum] = "5c711911d766d76813333c3812277574" 14SRC_URI[md5sum] = "5c711911d766d76813333c3812277574"
diff --git a/recipes-containers/conmon/files/0001-Makefile-don-t-fail-if-clean-is-called-without-a-bui.patch b/recipes-containers/conmon/files/0001-Makefile-don-t-fail-if-clean-is-called-without-a-bui.patch
deleted file mode 100644
index 8d2b473d..00000000
--- a/recipes-containers/conmon/files/0001-Makefile-don-t-fail-if-clean-is-called-without-a-bui.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From 6ef63dfcc65d5401bc7cc7170d569cefcdadcb38 Mon Sep 17 00:00:00 2001
2From: Stefan Agner <stefan@agner.ch>
3Date: Fri, 30 Aug 2019 17:49:22 +0200
4Subject: [PATCH] Makefile: don't fail if clean is called without a build
5
6Do not fail when calling the clean target without building first.
7
8Upstream-Status: Backport
9
10Signed-off-by: Stefan Agner <stefan@agner.ch>
11---
12 Makefile | 3 +--
13 1 file changed, 1 insertion(+), 2 deletions(-)
14
15diff --git a/Makefile b/Makefile
16index fb0e4fb..b525595 100644
17--- a/Makefile
18+++ b/Makefile
19@@ -66,8 +66,7 @@ bin:
20
21 .PHONY: clean
22 clean:
23- rm -f bin/conmon src/*.o
24- rmdir bin
25+ rm -rf bin/ src/*.o
26
27 .PHONY: install install.bin install.crio install.podman podman crio
28 install: install.bin
29--
302.23.0
31