From 165e968bc2ad30d0d70ae5433311179dda636721 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 10 Aug 2020 18:39:38 +0200 Subject: [PATCH] mamba: upgrade 1.0 -> 1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-musicians/guitarix/mamba.bb | 9 ++--- ...ation-dirs-in-case-they-do-not-exist.patch | 36 ------------------- 2 files changed, 3 insertions(+), 42 deletions(-) delete mode 100644 recipes-musicians/guitarix/mamba/0001-Create-destination-dirs-in-case-they-do-not-exist.patch diff --git a/recipes-musicians/guitarix/mamba.bb b/recipes-musicians/guitarix/mamba.bb index 210c9be..de0d859 100644 --- a/recipes-musicians/guitarix/mamba.bb +++ b/recipes-musicians/guitarix/mamba.bb @@ -3,13 +3,10 @@ HOMEPAGE = "https://github.com/brummer10/Mamba" LICENSE = "BSD-0-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=1a396d84ed72b4a017f02f5c5d1eaafe" -SRC_URI = " \ - gitsm://github.com/brummer10/Mamba.git \ - file://0001-Create-destination-dirs-in-case-they-do-not-exist.patch \ -" -SRCREV = "076f382cc17416413dc05fad00a37273736231d3" +SRC_URI = "gitsm://github.com/brummer10/Mamba.git" +SRCREV = "f4289a3dadff2640860f37ecbb379c21fe820408" +PV = "1.1" S = "${WORKDIR}/git" -PV = "1.0" inherit pkgconfig features_check diff --git a/recipes-musicians/guitarix/mamba/0001-Create-destination-dirs-in-case-they-do-not-exist.patch b/recipes-musicians/guitarix/mamba/0001-Create-destination-dirs-in-case-they-do-not-exist.patch deleted file mode 100644 index 4e89c0f..0000000 --- a/recipes-musicians/guitarix/mamba/0001-Create-destination-dirs-in-case-they-do-not-exist.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 08bb24ad55a6e381538b26f1abc08f9d121643eb Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= -Date: Sun, 26 Jul 2020 21:21:48 +0200 -Subject: [PATCH] Create destination dirs in case they do not exist -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Make packager's life easier :) - -Upstream-Status: Submitted[https://github.com/brummer10/Mamba/pull/3] - -Signed-off-by: Andreas Müller ---- - src/Makefile | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/src/Makefile b/src/Makefile -index a9bb87c..3b5db41 100644 ---- a/src/Makefile -+++ b/src/Makefile -@@ -70,8 +70,11 @@ clean : - - install : - ifneq ("$(wildcard ./$(BUILD_DIR))","") -+ mkdir -p $(DESTDIR)$(BIN_DIR) - cp ./$(BUILD_DIR)/$(EXEC_NAME) $(DESTDIR)$(BIN_DIR)/$(EXEC_NAME) -+ mkdir -p $(DESTDIR)$(DESKAPPS_DIR) - cp $(NAME).desktop $(DESTDIR)$(DESKAPPS_DIR) -+ mkdir -p $(DESTDIR)$(PIXMAPS_DIR) - cp $(NAME).png $(DESTDIR)$(PIXMAPS_DIR) - @echo ". ." $(BLUE)", done"$(NONE) - else --- -2.21.3 -