[arch-commits] Commit in xfce4-whiskermenu-plugin/repos/community-x86_64 (4 files)
Christian Hesse
eworm at archlinux.org
Wed Apr 22 19:23:58 UTC 2020
Date: Wednesday, April 22, 2020 @ 19:23:58
Author: eworm
Revision: 617700
archrelease: copy trunk to community-x86_64
Added:
xfce4-whiskermenu-plugin/repos/community-x86_64/0001-Fix-loading-incorrect-icons-for-some-applications.patch
(from rev 617699, xfce4-whiskermenu-plugin/trunk/0001-Fix-loading-incorrect-icons-for-some-applications.patch)
xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD
(from rev 617699, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
Deleted:
xfce4-whiskermenu-plugin/repos/community-x86_64/0001-Fix-loading-incorrect-icons-for-some-applications.patch
xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD
--------------------------------------------------------------+
0001-Fix-loading-incorrect-icons-for-some-applications.patch | 160 +++++-----
PKGBUILD | 62 +--
2 files changed, 111 insertions(+), 111 deletions(-)
Deleted: 0001-Fix-loading-incorrect-icons-for-some-applications.patch
===================================================================
--- 0001-Fix-loading-incorrect-icons-for-some-applications.patch 2020-04-22 19:23:46 UTC (rev 617699)
+++ 0001-Fix-loading-incorrect-icons-for-some-applications.patch 2020-04-22 19:23:58 UTC (rev 617700)
@@ -1,80 +0,0 @@
-From 02903f3a2ed1028f7a01d21bd2c216aaf2c42168 Mon Sep 17 00:00:00 2001
-From: Graeme Gott <graeme at gottcode.org>
-Date: Fri, 21 Feb 2020 08:57:23 -0500
-Subject: [PATCH 1/1] Fix loading incorrect icons for some applications.
----
- panel-plugin/category.cpp | 2 +-
- panel-plugin/element.cpp | 10 ++++++----
- panel-plugin/element.h | 2 +-
- 3 files changed, 8 insertions(+), 6 deletions(-)
-
-diff --git a/panel-plugin/category.cpp b/panel-plugin/category.cpp
-index 4128394..0a150ad 100644
---- a/panel-plugin/category.cpp
-+++ b/panel-plugin/category.cpp
-@@ -49,7 +49,7 @@ Category::Category(GarconMenu* menu) :
- {
- text = _("All Applications");
- }
-- set_icon(!exo_str_is_empty(icon) ? icon : "applications-other");
-+ set_icon(!exo_str_is_empty(icon) ? icon : "applications-other", true);
- set_text(text ? text : "");
- set_tooltip(tooltip ? tooltip : "");
- }
-diff --git a/panel-plugin/element.cpp b/panel-plugin/element.cpp
-index 744627a..de71b6d 100644
---- a/panel-plugin/element.cpp
-+++ b/panel-plugin/element.cpp
-@@ -21,7 +21,7 @@ using namespace WhiskerMenu;
-
- //-----------------------------------------------------------------------------
-
--void Element::set_icon(const gchar* icon)
-+void Element::set_icon(const gchar* icon, bool use_fallbacks)
- {
- if (m_icon)
- {
-@@ -34,12 +34,14 @@ void Element::set_icon(const gchar* icon)
- return;
- }
-
-+ auto themed_icon_new = use_fallbacks ? &g_themed_icon_new_with_default_fallbacks : &g_themed_icon_new;
-+
- if (!g_path_is_absolute(icon))
- {
- const gchar* pos = g_strrstr(icon, ".");
- if (!pos)
- {
-- m_icon = g_themed_icon_new_with_default_fallbacks(icon);
-+ m_icon = themed_icon_new(icon);
- }
- else
- {
-@@ -50,12 +52,12 @@ void Element::set_icon(const gchar* icon)
- || (g_strcmp0(suffix, ".svgz") == 0))
- {
- gchar* name = g_strndup(icon, pos - icon);
-- m_icon = g_themed_icon_new_with_default_fallbacks(name);
-+ m_icon = themed_icon_new(name);
- g_free(name);
- }
- else
- {
-- m_icon = g_themed_icon_new_with_default_fallbacks(icon);
-+ m_icon = themed_icon_new(icon);
- }
- g_free(suffix);
- }
-diff --git a/panel-plugin/element.h b/panel-plugin/element.h
-index 44ed537..1bb8c67 100644
---- a/panel-plugin/element.h
-+++ b/panel-plugin/element.h
-@@ -79,7 +79,7 @@ public:
- protected:
- Element() = default;
-
-- void set_icon(const gchar* icon);
-+ void set_icon(const gchar* icon, bool use_fallbacks = false);
-
- void set_text(const gchar* text)
- {
Copied: xfce4-whiskermenu-plugin/repos/community-x86_64/0001-Fix-loading-incorrect-icons-for-some-applications.patch (from rev 617699, xfce4-whiskermenu-plugin/trunk/0001-Fix-loading-incorrect-icons-for-some-applications.patch)
===================================================================
--- 0001-Fix-loading-incorrect-icons-for-some-applications.patch (rev 0)
+++ 0001-Fix-loading-incorrect-icons-for-some-applications.patch 2020-04-22 19:23:58 UTC (rev 617700)
@@ -0,0 +1,80 @@
+From 02903f3a2ed1028f7a01d21bd2c216aaf2c42168 Mon Sep 17 00:00:00 2001
+From: Graeme Gott <graeme at gottcode.org>
+Date: Fri, 21 Feb 2020 08:57:23 -0500
+Subject: [PATCH 1/1] Fix loading incorrect icons for some applications.
+---
+ panel-plugin/category.cpp | 2 +-
+ panel-plugin/element.cpp | 10 ++++++----
+ panel-plugin/element.h | 2 +-
+ 3 files changed, 8 insertions(+), 6 deletions(-)
+
+diff --git a/panel-plugin/category.cpp b/panel-plugin/category.cpp
+index 4128394..0a150ad 100644
+--- a/panel-plugin/category.cpp
++++ b/panel-plugin/category.cpp
+@@ -49,7 +49,7 @@ Category::Category(GarconMenu* menu) :
+ {
+ text = _("All Applications");
+ }
+- set_icon(!exo_str_is_empty(icon) ? icon : "applications-other");
++ set_icon(!exo_str_is_empty(icon) ? icon : "applications-other", true);
+ set_text(text ? text : "");
+ set_tooltip(tooltip ? tooltip : "");
+ }
+diff --git a/panel-plugin/element.cpp b/panel-plugin/element.cpp
+index 744627a..de71b6d 100644
+--- a/panel-plugin/element.cpp
++++ b/panel-plugin/element.cpp
+@@ -21,7 +21,7 @@ using namespace WhiskerMenu;
+
+ //-----------------------------------------------------------------------------
+
+-void Element::set_icon(const gchar* icon)
++void Element::set_icon(const gchar* icon, bool use_fallbacks)
+ {
+ if (m_icon)
+ {
+@@ -34,12 +34,14 @@ void Element::set_icon(const gchar* icon)
+ return;
+ }
+
++ auto themed_icon_new = use_fallbacks ? &g_themed_icon_new_with_default_fallbacks : &g_themed_icon_new;
++
+ if (!g_path_is_absolute(icon))
+ {
+ const gchar* pos = g_strrstr(icon, ".");
+ if (!pos)
+ {
+- m_icon = g_themed_icon_new_with_default_fallbacks(icon);
++ m_icon = themed_icon_new(icon);
+ }
+ else
+ {
+@@ -50,12 +52,12 @@ void Element::set_icon(const gchar* icon)
+ || (g_strcmp0(suffix, ".svgz") == 0))
+ {
+ gchar* name = g_strndup(icon, pos - icon);
+- m_icon = g_themed_icon_new_with_default_fallbacks(name);
++ m_icon = themed_icon_new(name);
+ g_free(name);
+ }
+ else
+ {
+- m_icon = g_themed_icon_new_with_default_fallbacks(icon);
++ m_icon = themed_icon_new(icon);
+ }
+ g_free(suffix);
+ }
+diff --git a/panel-plugin/element.h b/panel-plugin/element.h
+index 44ed537..1bb8c67 100644
+--- a/panel-plugin/element.h
++++ b/panel-plugin/element.h
+@@ -79,7 +79,7 @@ public:
+ protected:
+ Element() = default;
+
+- void set_icon(const gchar* icon);
++ void set_icon(const gchar* icon, bool use_fallbacks = false);
+
+ void set_text(const gchar* text)
+ {
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-04-22 19:23:46 UTC (rev 617699)
+++ PKGBUILD 2020-04-22 19:23:58 UTC (rev 617700)
@@ -1,31 +0,0 @@
-# Maintainer: Brad Fanella <cesura at archlinux.org>
-# Contributor: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Graeme Gott <graeme at gottcode.org>
-
-pkgname=xfce4-whiskermenu-plugin
-pkgver=2.4.3
-pkgrel=1
-pkgdesc='Menu for Xfce4'
-arch=('x86_64')
-url='https://gottcode.org/xfce4-whiskermenu-plugin/'
-groups=('xfce4-goodies')
-license=('GPL2')
-depends=('garcon' 'xfce4-panel' 'gtk3>=3.22')
-makedepends=('cmake' 'ninja')
-source=("https://archive.be.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2")
-sha256sums=('39faeee91ceb3cb727f9de09dbf20a8c73e524851a2c3b76a4b19a0732de5ff0')
-
-build() {
- mkdir -p build
- cd build
- cmake "$srcdir/$pkgname-$pkgver" \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_INSTALL_LIBDIR=lib \
- -GNinja
- ninja
-}
-
-package() {
- DESTDIR="$pkgdir" ninja -C build install
-}
Copied: xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD (from rev 617699, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-04-22 19:23:58 UTC (rev 617700)
@@ -0,0 +1,31 @@
+# Maintainer: Brad Fanella <cesura at archlinux.org>
+# Contributor: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Graeme Gott <graeme at gottcode.org>
+
+pkgname=xfce4-whiskermenu-plugin
+pkgver=2.4.4
+pkgrel=1
+pkgdesc='Menu for Xfce4'
+arch=('x86_64')
+url='https://gottcode.org/xfce4-whiskermenu-plugin/'
+groups=('xfce4-goodies')
+license=('GPL2')
+depends=('garcon' 'xfce4-panel' 'gtk3>=3.22')
+makedepends=('cmake' 'ninja')
+source=("https://archive.be.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2")
+sha256sums=('624acf6d46484bb35608a76424579571423e2aefa6579f6e444f5cfb5342ff9a')
+
+build() {
+ mkdir -p build
+ cd build
+ cmake "$srcdir/$pkgname-$pkgver" \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -GNinja
+ ninja
+}
+
+package() {
+ DESTDIR="$pkgdir" ninja -C build install
+}
More information about the arch-commits
mailing list