[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2021-06-10 Thread Adam Feldman
commit: 8d8e6b164dd12031f162241aeac4d9b564186f4c
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 14:21:44 2021 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Thu Jun 10 14:21:44 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=8d8e6b16

mate-extra/mate-system-monitor: Update 

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-system-monitor/mate-system-monitor-.ebuild | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
index a489ee3..1c7ebff 100644
--- a/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
+++ b/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit mate
+inherit mate toolchain-funcs
 
 if [[ ${PV} !=  ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
@@ -51,9 +51,10 @@ src_configure() {
if use elogind || use systemd; then
myconf+=( --enable-systemd )
if use elogind; then
+   local pkgconfig="$(tc-getPKG_CONFIG)"
myconf+=(
-   SYSTEMD_CFLAGS=`pkg-config --cflags 
"libelogind" 2>/dev/null`
-   SYSTEMD_LIBS=`pkg-config --libs "libelogind" 
2>/dev/null`
+   SYSTEMD_CFLAGS="$(${pkgconfig} --cflags 
'libelogind')"
+   SYSTEMD_LIBS="$(${pkgconfig} --libs 
'libelogind')"
)
fi
else



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2021-06-10 Thread Adam Feldman
commit: d071ddab25ad417576f376bbed8741e2bdd3879e
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 14:22:17 2021 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Thu Jun 10 14:22:17 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=d071ddab

mate-extra/mate-system-monitor: Bump to 1.24.2

Bug: https://bugs.gentoo.org/778857
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-system-monitor/Manifest|  1 +
 .../mate-system-monitor-1.24.2.ebuild  | 65 ++
 2 files changed, 66 insertions(+)

diff --git a/mate-extra/mate-system-monitor/Manifest 
b/mate-extra/mate-system-monitor/Manifest
index 4d5250b..c64600c 100644
--- a/mate-extra/mate-system-monitor/Manifest
+++ b/mate-extra/mate-system-monitor/Manifest
@@ -1 +1,2 @@
 DIST mate-system-monitor-1.24.1.tar.xz 2420872 BLAKE2B 
27572e523ea358a5315b6a42dc29e6c48c4341d4cdf34edb039429a455e1d924417aeb8602e0a71d4e71b04988ccadc82bc84794411644eefb1bd976e5744e90
 SHA512 
5fdf8ff52584f91fbe12270af2b5bb1c81d5c4d6001bdaad9c6001dbb6e6020254048e32aa6549eb686ad17998c1aa220e5463057502ba514c4a5b82953f2b05
+DIST mate-system-monitor-1.24.2.tar.xz 2429196 BLAKE2B 
03d0555d74ba4ba9a80727fa383ad02515a46f61fd1df3487b7acabef4b0561e03d86082c9c161a533716416bab73fad5bd826329c69d1826eeb7dd73a1b4e41
 SHA512 
4fd0f1a3dc5611d66b2e1ca35171f2056994332f87d895321c384a696afa359a2b78d2b0c2d698923039549f886976f04b1a8c92c928dfe9e2a1a159540a1895

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.24.2.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.24.2.ebuild
new file mode 100644
index 000..1c7ebff
--- /dev/null
+++ b/mate-extra/mate-system-monitor/mate-system-monitor-1.24.2.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit mate toolchain-funcs
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="The MATE System Monitor"
+
+LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
+SLOT="0"
+IUSE="elogind systemd"
+
+REQUIRED_USE="?? ( elogind systemd )"
+
+COMMON_DEPEND="
+   >=dev-cpp/glibmm-2.26:2
+   >=dev-cpp/gtkmm-3.8:3.0
+   >=dev-libs/glib-2.56:2
+   dev-libs/libsigc++:2
+   >=dev-libs/libxml2-2:2
+   >=gnome-base/libgtop-2.37.2:2=
+   >=gnome-base/librsvg-2.35:2
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3
+   >=x11-libs/libwnck-3.0:3
+   elogind? ( sys-auth/elogind )
+   systemd? ( sys-apps/systemd )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   >=sys-auth/polkit-0.97:0
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   >=sys-devel/gettext-0.19.8
+   >=sys-devel/autoconf-2.63:*
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=()
+
+   if use elogind || use systemd; then
+   myconf+=( --enable-systemd )
+   if use elogind; then
+   local pkgconfig="$(tc-getPKG_CONFIG)"
+   myconf+=(
+   SYSTEMD_CFLAGS="$(${pkgconfig} --cflags 
'libelogind')"
+   SYSTEMD_LIBS="$(${pkgconfig} --libs 
'libelogind')"
+   )
+   fi
+   else
+   myconf+=( --disable-systemd )
+   fi
+
+   mate_src_configure "${myconf[@]}"
+}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2021-06-08 Thread Adam Feldman
commit: 6be829cfbd7d85b80ddf85bdd6b08ebbeced4d8b
Author: Adam Feldman  gentoo  org>
AuthorDate: Wed Jun  9 01:39:59 2021 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Wed Jun  9 02:04:53 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=6be829cf

mate-extra/mate-system-monitor: Sync with ::gentoo

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild | 9 +
 mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild | 9 +
 2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild
index d6a7c08..d95368b 100644
--- a/mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild
+++ b/mate-extra/mate-system-monitor/mate-system-monitor-1.24.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit mate
+inherit mate toolchain-funcs
 
 if [[ ${PV} !=  ]]; then
KEYWORDS="amd64 ~arm ~arm64 x86"
@@ -51,9 +51,10 @@ src_configure() {
if use elogind || use systemd; then
myconf+=( --enable-systemd )
if use elogind; then
+   local pkgconfig="$(tc-getPKG_CONFIG)"
myconf+=(
-   SYSTEMD_CFLAGS=`pkg-config --cflags 
"libelogind" 2>/dev/null`
-   SYSTEMD_LIBS=`pkg-config --libs "libelogind" 
2>/dev/null`
+   SYSTEMD_CFLAGS="$(${pkgconfig} --cflags 
"libelogind")"
+   SYSTEMD_LIBS="$(${pkgconfig} --libs 
"libelogind")"
)
fi
else

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild
index a489ee3..69e584e 100644
--- a/mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild
+++ b/mate-extra/mate-system-monitor/mate-system-monitor-1.24.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit mate
+inherit mate toolchain-funcs
 
 if [[ ${PV} !=  ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
@@ -51,9 +51,10 @@ src_configure() {
if use elogind || use systemd; then
myconf+=( --enable-systemd )
if use elogind; then
+   local pkgconfig="$(tc-getPKG_CONFIG)"
myconf+=(
-   SYSTEMD_CFLAGS=`pkg-config --cflags 
"libelogind" 2>/dev/null`
-   SYSTEMD_LIBS=`pkg-config --libs "libelogind" 
2>/dev/null`
+   SYSTEMD_CFLAGS="$(${pkgconfig} --cflags 
"libelogind")"
+   SYSTEMD_LIBS="$(${pkgconfig} --libs 
"libelogind")"
)
fi
else



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2021-05-23 Thread Adam Feldman
commit: adf90404bd0bb4a8efd57a52373e78faef3b448f
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:38:41 2021 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:11 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=adf90404

mate-extra/mate-system-monitor: Drop 1.22.x

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-system-monitor/Manifest|  1 -
 .../mate-system-monitor-1.22.2.ebuild  | 62 --
 2 files changed, 63 deletions(-)

diff --git a/mate-extra/mate-system-monitor/Manifest 
b/mate-extra/mate-system-monitor/Manifest
index 1aea7a7..c9dc4a0 100644
--- a/mate-extra/mate-system-monitor/Manifest
+++ b/mate-extra/mate-system-monitor/Manifest
@@ -1,3 +1,2 @@
-DIST mate-system-monitor-1.22.2.tar.xz 2209852 BLAKE2B 
d5437596454e767cdbb32e7de062d5a9c6f55edce45f9439cfd555e9455f7cf935a4d15fcd8f19494feab1faae4e0ee07f469b6650d2da03372f9e2bea3ed8ac
 SHA512 
47ccb38e27906c4de0cc18abc9d43ffc3b2c8f2f33b3f4cea3e47fd82c48870f03927fab39d323b61b9b871614b24bb2bc258d1c547650cdfb6b8eef65cb0de3
 DIST mate-system-monitor-1.24.0.tar.xz 2437396 BLAKE2B 
78c8774ee1832772b2cda06bca051c91e10e882b841373e3f30575ab1d05cc2b799962d964be4cc8416f9747e44031e579410d9851bb82d6a13f6023f1a30b2a
 SHA512 
430a2bf81f447143ba53cecb1c2659903cd957e313f6690adea363e9a8deccfd4ad64ebd8ce18dfb31a67fa7b51cbe087ffed7b5dcba5dd03b1010ec41b4d282
 DIST mate-system-monitor-1.24.1.tar.xz 2420872 BLAKE2B 
27572e523ea358a5315b6a42dc29e6c48c4341d4cdf34edb039429a455e1d924417aeb8602e0a71d4e71b04988ccadc82bc84794411644eefb1bd976e5744e90
 SHA512 
5fdf8ff52584f91fbe12270af2b5bb1c81d5c4d6001bdaad9c6001dbb6e6020254048e32aa6549eb686ad17998c1aa220e5463057502ba514c4a5b82953f2b05

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.22.2.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.22.2.ebuild
deleted file mode 100644
index 07ef770..000
--- a/mate-extra/mate-system-monitor/mate-system-monitor-1.22.2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="The MATE System Monitor"
-
-LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
-SLOT="0"
-IUSE="elogind systemd"
-
-REQUIRED_USE="?? ( elogind systemd )"
-
-COMMON_DEPEND="
-   >=dev-cpp/glibmm-2.26:2
-   >=dev-cpp/gtkmm-3.8:3.0
-   >=dev-libs/glib-2.50:2
-   dev-libs/libsigc++:2
-   >=dev-libs/libxml2-2:2
-   >=gnome-base/libgtop-2.23.1:2=
-   >=gnome-base/librsvg-2.35:2
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3
-   >=x11-libs/libwnck-3.0:3
-   virtual/libintl
-   elogind? ( sys-auth/elogind )
-   systemd? ( sys-apps/systemd )"
-
-RDEPEND="${COMMON_DEPEND}
-   >=sys-auth/polkit-0.97:0"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   >=dev-util/intltool-0.50.1:*
-   sys-devel/gettext:*
-   >=sys-devel/autoconf-2.63:*
-   virtual/pkgconfig:*"
-
-src_configure() {
-   local myconf=()
-
-   if use elogind || use systemd; then
-   myconf+=( --enable-systemd )
-   if use elogind; then
-   myconf+=(
-   SYSTEMD_CFLAGS=`pkg-config --cflags 
"libelogind" 2>/dev/null`
-   SYSTEMD_LIBS=`pkg-config --libs "libelogind" 
2>/dev/null`
-   )
-   fi
-   else
-   myconf+=( --disable-systemd )
-   fi
-
-   mate_src_configure "${myconf[@]}"
-}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2020-09-01 Thread Adam Feldman
commit: 6bc82bae51335248bda785297374295e19db1c65
Author: Adam Feldman  gentoo  org>
AuthorDate: Wed Sep  2 04:56:15 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Wed Sep  2 05:55:35 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=6bc82bae

mate-extra/mate-system-monitor: Sync with ::gentoo

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-system-monitor/Manifest|  2 -
 .../mate-system-monitor-1.22.0.ebuild  | 62 --
 .../mate-system-monitor-1.22.1.ebuild  | 62 --
 .../mate-system-monitor-1.22.2.ebuild  |  2 +-
 .../mate-system-monitor-1.24.0.ebuild  |  2 +-
 5 files changed, 2 insertions(+), 128 deletions(-)

diff --git a/mate-extra/mate-system-monitor/Manifest 
b/mate-extra/mate-system-monitor/Manifest
index 4124e20..25edc1c 100644
--- a/mate-extra/mate-system-monitor/Manifest
+++ b/mate-extra/mate-system-monitor/Manifest
@@ -1,4 +1,2 @@
-DIST mate-system-monitor-1.22.0.tar.xz 2190688 BLAKE2B 
83ab7dfbc0033f094896c663790c1200e71a498d3a813a82c94593e6c6434942b2afd0fa1c3067452a46e0e1829a9239f1c145a315b9de2c2853c9f4f50618ef
 SHA512 
6f97f934626b49320ea0dbb4e14743c4f33b12a85671b69465f689765f3003f00e51685b616e34a482c3ec0ca09ca4e13cbdb2e3eb4719c0d1fc7b25b24436a7
-DIST mate-system-monitor-1.22.1.tar.xz 2202544 BLAKE2B 
37eb2d265aedb259fd3f97aae64f76b7061eda6f4713137d4a9de9cdb078ce2176039c4a6cb7f9f63367c186df3bc181693b9526500f81fe0c9c52dc2e05e7a2
 SHA512 
ce5c514c333b85d6dd94b9fa212b51ed78212781da9719f730c50fc61fcf433e1a7df1d2665fe90e9529fba08207df59858b66f982bcd070845f62b22f8bd82f
 DIST mate-system-monitor-1.22.2.tar.xz 2209852 BLAKE2B 
d5437596454e767cdbb32e7de062d5a9c6f55edce45f9439cfd555e9455f7cf935a4d15fcd8f19494feab1faae4e0ee07f469b6650d2da03372f9e2bea3ed8ac
 SHA512 
47ccb38e27906c4de0cc18abc9d43ffc3b2c8f2f33b3f4cea3e47fd82c48870f03927fab39d323b61b9b871614b24bb2bc258d1c547650cdfb6b8eef65cb0de3
 DIST mate-system-monitor-1.24.0.tar.xz 2437396 BLAKE2B 
78c8774ee1832772b2cda06bca051c91e10e882b841373e3f30575ab1d05cc2b799962d964be4cc8416f9747e44031e579410d9851bb82d6a13f6023f1a30b2a
 SHA512 
430a2bf81f447143ba53cecb1c2659903cd957e313f6690adea363e9a8deccfd4ad64ebd8ce18dfb31a67fa7b51cbe087ffed7b5dcba5dd03b1010ec41b4d282

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.22.0.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.22.0.ebuild
deleted file mode 100644
index 07ef770..000
--- a/mate-extra/mate-system-monitor/mate-system-monitor-1.22.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="The MATE System Monitor"
-
-LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
-SLOT="0"
-IUSE="elogind systemd"
-
-REQUIRED_USE="?? ( elogind systemd )"
-
-COMMON_DEPEND="
-   >=dev-cpp/glibmm-2.26:2
-   >=dev-cpp/gtkmm-3.8:3.0
-   >=dev-libs/glib-2.50:2
-   dev-libs/libsigc++:2
-   >=dev-libs/libxml2-2:2
-   >=gnome-base/libgtop-2.23.1:2=
-   >=gnome-base/librsvg-2.35:2
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3
-   >=x11-libs/libwnck-3.0:3
-   virtual/libintl
-   elogind? ( sys-auth/elogind )
-   systemd? ( sys-apps/systemd )"
-
-RDEPEND="${COMMON_DEPEND}
-   >=sys-auth/polkit-0.97:0"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   >=dev-util/intltool-0.50.1:*
-   sys-devel/gettext:*
-   >=sys-devel/autoconf-2.63:*
-   virtual/pkgconfig:*"
-
-src_configure() {
-   local myconf=()
-
-   if use elogind || use systemd; then
-   myconf+=( --enable-systemd )
-   if use elogind; then
-   myconf+=(
-   SYSTEMD_CFLAGS=`pkg-config --cflags 
"libelogind" 2>/dev/null`
-   SYSTEMD_LIBS=`pkg-config --libs "libelogind" 
2>/dev/null`
-   )
-   fi
-   else
-   myconf+=( --disable-systemd )
-   fi
-
-   mate_src_configure "${myconf[@]}"
-}

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.22.1.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.22.1.ebuild
deleted file mode 100644
index 1cc3673..000
--- a/mate-extra/mate-system-monitor/mate-system-monitor-1.22.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-fi
-
-DESCRIPTION="The MATE System Monitor"
-
-LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
-SLOT="0"
-IUSE="elogind systemd"
-
-REQUIRED_USE="?? ( elogind systemd )"
-
-COMMON_DEPEND="
-   

[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2020-04-09 Thread Adam Feldman
commit: 9c2b67ce6a0213ca15ed79de502a87c6d2b28a28
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri Mar 27 01:42:13 2020 +
Commit: Adam Feldman  gentoo  org>
CommitDate: Thu Apr  9 22:49:22 2020 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=9c2b67ce

mate-extra/mate-system-monitor: Drop old, sync with Gentoo

Package-Manager: Portage-2.3.82, Repoman-2.3.18
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-system-monitor/Manifest|  8 +--
 .../mate-system-monitor-1.12.2.ebuild  | 53 --
 .../mate-system-monitor-1.14.0.ebuild  | 52 --
 .../mate-system-monitor-1.16.0.ebuild  | 52 --
 .../mate-system-monitor-1.22.0.ebuild  | 62 +
 1.ebuild => mate-system-monitor-1.22.1.ebuild} | 43 +--
 1.ebuild => mate-system-monitor-1.22.2.ebuild} | 43 +--
 .../mate-system-monitor-1.24.0.ebuild  | 64 ++
 .../mate-system-monitor-.ebuild| 55 +++
 mate-extra/mate-system-monitor/metadata.xml|  3 -
 10 files changed, 215 insertions(+), 220 deletions(-)

diff --git a/mate-extra/mate-system-monitor/Manifest 
b/mate-extra/mate-system-monitor/Manifest
index 608ed23..4124e20 100644
--- a/mate-extra/mate-system-monitor/Manifest
+++ b/mate-extra/mate-system-monitor/Manifest
@@ -1,4 +1,4 @@
-DIST mate-system-monitor-1.12.2.tar.xz 2114504 BLAKE2B 
ceec8177fa020cf739f132d9970a2f56029d12eb767853b3dce671d483fa661ade6d2190e68fdfc7250fd1cbf03ac5b9845a5337a27a75027ebe664ef756038b
 SHA512 
f001d36b7a343cba68bf76094abad4e07cc89537c71dba873bb5ffc61045f440a319e3db8d5ee55ff301f52dbdad8b275ca71a4ab6c5fbe34d75c2e65edd7c23
-DIST mate-system-monitor-1.14.0.tar.xz 2135464 BLAKE2B 
e390fcfa7d41aaf2b407f0a4e22acf1c9f3eaccfb1a13d8137cc56964751126c94569cf16427409118f86a8125147f27e59a8db05b20349c7ab18065451fa31d
 SHA512 
f19fa0241228be8ec8600db43e71495750039288292ba5714489a84acb3e5cc9f4c87d39a63d29a0fc6f907af6ecc319382cd4276ae2de1125bba059d5b24be5
-DIST mate-system-monitor-1.16.0.tar.xz 2120984 BLAKE2B 
560a811774ffe8ee46876fb7618ff373dc810f0e6e068fef1265dba72c71b4ff808228be5b25c8f22d278e46be074b0a176d6722a3ce0dc3886311b35ed4ef11
 SHA512 
6ee8e1d1a3af5e3b295c2cca74b3e6bdf8a09eb6aa7d63f13db006829c2df25b580b72cc8d6e34e2844b243999cd4f059a42aa67a88c60825defdb7880150796
-DIST mate-system-monitor-1.18.1.tar.xz 2159100 BLAKE2B 
babac7ad0dc3a3bccf5c6d4567bee0c95aad1f5fffdb1d6d566316f4712a345e7083c8032c19b6615a9f9d06fbbe8b89357407b897206f3131294b7d2305b45d
 SHA512 
47dd2ba46cd6fbd1beef2e6f0a93332c7142f701d18f6894b4986134c557f63f3e2bed382af17cc5bf45693b556a91ccab36fde940126fdceb5834d4cea08356
+DIST mate-system-monitor-1.22.0.tar.xz 2190688 BLAKE2B 
83ab7dfbc0033f094896c663790c1200e71a498d3a813a82c94593e6c6434942b2afd0fa1c3067452a46e0e1829a9239f1c145a315b9de2c2853c9f4f50618ef
 SHA512 
6f97f934626b49320ea0dbb4e14743c4f33b12a85671b69465f689765f3003f00e51685b616e34a482c3ec0ca09ca4e13cbdb2e3eb4719c0d1fc7b25b24436a7
+DIST mate-system-monitor-1.22.1.tar.xz 2202544 BLAKE2B 
37eb2d265aedb259fd3f97aae64f76b7061eda6f4713137d4a9de9cdb078ce2176039c4a6cb7f9f63367c186df3bc181693b9526500f81fe0c9c52dc2e05e7a2
 SHA512 
ce5c514c333b85d6dd94b9fa212b51ed78212781da9719f730c50fc61fcf433e1a7df1d2665fe90e9529fba08207df59858b66f982bcd070845f62b22f8bd82f
+DIST mate-system-monitor-1.22.2.tar.xz 2209852 BLAKE2B 
d5437596454e767cdbb32e7de062d5a9c6f55edce45f9439cfd555e9455f7cf935a4d15fcd8f19494feab1faae4e0ee07f469b6650d2da03372f9e2bea3ed8ac
 SHA512 
47ccb38e27906c4de0cc18abc9d43ffc3b2c8f2f33b3f4cea3e47fd82c48870f03927fab39d323b61b9b871614b24bb2bc258d1c547650cdfb6b8eef65cb0de3
+DIST mate-system-monitor-1.24.0.tar.xz 2437396 BLAKE2B 
78c8774ee1832772b2cda06bca051c91e10e882b841373e3f30575ab1d05cc2b799962d964be4cc8416f9747e44031e579410d9851bb82d6a13f6023f1a30b2a
 SHA512 
430a2bf81f447143ba53cecb1c2659903cd957e313f6690adea363e9a8deccfd4ad64ebd8ce18dfb31a67fa7b51cbe087ffed7b5dcba5dd03b1010ec41b4d282

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.12.2.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.12.2.ebuild
deleted file mode 100644
index a640204..000
--- a/mate-extra/mate-system-monitor/mate-system-monitor-1.12.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm x86"
-fi
-
-DESCRIPTION="The MATE System Monitor"
-LICENSE="GPL-2"
-SLOT="0"
-
-IUSE="gtk3 systemd"
-
-RDEPEND="
-   >=dev-cpp/glibmm-2.26:2
-   >=dev-libs/dbus-glib-0.70:0
-   >=dev-libs/glib-2.36:2
-   dev-libs/libsigc++:2
-   >=dev-libs/libxml2-2:2
-   >=gnome-base/libgtop-2.23.1:2=
-   >=gnome-base/librsvg-2.35:2
-   >=sys-apps/dbus-0.7:0
-   x11-libs/cairo:0
-   x11-libs/gdk-pixbuf:2
-   

[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2018-02-11 Thread Ettore Di Giacinto
commit: 24bdcd5f2e3deb17ba4fb95030aa3223bd3d26bf
Author: Ettore Di Giacinto  gentoo  org>
AuthorDate: Sat Jan 27 17:08:35 2018 +
Commit: Ettore Di Giacinto  gentoo  org>
CommitDate: Sun Feb 11 13:21:29 2018 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=24bdcd5f

mate-extra/mate-system-monitor: Bump to version 1.18.1

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 mate-extra/mate-system-monitor/Manifest | 2 +-
 ...e-system-monitor-1.18.0.ebuild => mate-system-monitor-1.18.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/mate-system-monitor/Manifest 
b/mate-extra/mate-system-monitor/Manifest
index c1a5281..608ed23 100644
--- a/mate-extra/mate-system-monitor/Manifest
+++ b/mate-extra/mate-system-monitor/Manifest
@@ -1,4 +1,4 @@
 DIST mate-system-monitor-1.12.2.tar.xz 2114504 BLAKE2B 
ceec8177fa020cf739f132d9970a2f56029d12eb767853b3dce671d483fa661ade6d2190e68fdfc7250fd1cbf03ac5b9845a5337a27a75027ebe664ef756038b
 SHA512 
f001d36b7a343cba68bf76094abad4e07cc89537c71dba873bb5ffc61045f440a319e3db8d5ee55ff301f52dbdad8b275ca71a4ab6c5fbe34d75c2e65edd7c23
 DIST mate-system-monitor-1.14.0.tar.xz 2135464 BLAKE2B 
e390fcfa7d41aaf2b407f0a4e22acf1c9f3eaccfb1a13d8137cc56964751126c94569cf16427409118f86a8125147f27e59a8db05b20349c7ab18065451fa31d
 SHA512 
f19fa0241228be8ec8600db43e71495750039288292ba5714489a84acb3e5cc9f4c87d39a63d29a0fc6f907af6ecc319382cd4276ae2de1125bba059d5b24be5
 DIST mate-system-monitor-1.16.0.tar.xz 2120984 BLAKE2B 
560a811774ffe8ee46876fb7618ff373dc810f0e6e068fef1265dba72c71b4ff808228be5b25c8f22d278e46be074b0a176d6722a3ce0dc3886311b35ed4ef11
 SHA512 
6ee8e1d1a3af5e3b295c2cca74b3e6bdf8a09eb6aa7d63f13db006829c2df25b580b72cc8d6e34e2844b243999cd4f059a42aa67a88c60825defdb7880150796
-DIST mate-system-monitor-1.18.0.tar.xz 2133484 BLAKE2B 
f238e6411b4c15897d55adc6b0f746bf3f86559f8811be896feb6588cabf698fe43d2443dded3a6b09d02a4932932fe2fb3be5a193b5dd2ff9251182202104a8
 SHA512 
95e85b87f52db32f3c192c29b866020b78638462dd362376180087f24c041b690d3bb66d8ad1174abc89051450efe1f19171746204c68455ddcc6e965339db82
+DIST mate-system-monitor-1.18.1.tar.xz 2159100 BLAKE2B 
babac7ad0dc3a3bccf5c6d4567bee0c95aad1f5fffdb1d6d566316f4712a345e7083c8032c19b6615a9f9d06fbbe8b89357407b897206f3131294b7d2305b45d
 SHA512 
47dd2ba46cd6fbd1beef2e6f0a93332c7142f701d18f6894b4986134c557f63f3e2bed382af17cc5bf45693b556a91ccab36fde940126fdceb5834d4cea08356

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.18.0.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.18.1.ebuild
similarity index 100%
rename from mate-extra/mate-system-monitor/mate-system-monitor-1.18.0.ebuild
rename to mate-extra/mate-system-monitor/mate-system-monitor-1.18.1.ebuild



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2017-09-26 Thread NP Hardass
commit: 1e2f6869b6ceba3a73f2b23c05488899e2ec552c
Author: NP-Hardass  gentoo  org>
AuthorDate: Wed Sep 27 03:14:37 2017 +
Commit: NP Hardass  gentoo  org>
CommitDate: Wed Sep 27 03:14:37 2017 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=1e2f6869

mate-extra/mate-system-monitor: Fix inconsistent metadata.xml spacing

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 mate-extra/mate-system-monitor/metadata.xml | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/mate-extra/mate-system-monitor/metadata.xml 
b/mate-extra/mate-system-monitor/metadata.xml
index 8016e53..abf6a9f 100644
--- a/mate-extra/mate-system-monitor/metadata.xml
+++ b/mate-extra/mate-system-monitor/metadata.xml
@@ -1,14 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-m...@gentoo.org
-Gentoo MATE Desktop
-
+   
+   m...@gentoo.org
+   Gentoo MATE Desktop
+   

Build with GTK+3 instead of GTK+2

-
-mate-desktop/mate-system-monitor
-
+   
+   mate-desktop/mate-system-monitor
+   
 



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2016-11-29 Thread Ettore Di Giacinto
commit: e1bfd9bcbd94057c586d0325968ad7d51d78a89c
Author: Ettore Di Giacinto  gentoo  org>
AuthorDate: Wed Nov  9 21:40:47 2016 +
Commit: Ettore Di Giacinto  gentoo  org>
CommitDate: Tue Nov 29 18:44:45 2016 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=e1bfd9bc

mate-extra/mate-system-monitor: version bump to 1.16.0

* update live ebuild dependencies to match upstream

Package-Manager: portage-2.3.1

 mate-extra/mate-system-monitor/Manifest| 1 +
 ...te-system-monitor-.ebuild => mate-system-monitor-1.16.0.ebuild} | 0
 mate-extra/mate-system-monitor/mate-system-monitor-.ebuild | 3 ++-
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/mate-extra/mate-system-monitor/Manifest 
b/mate-extra/mate-system-monitor/Manifest
index 00ca1c5..3faaefc 100644
--- a/mate-extra/mate-system-monitor/Manifest
+++ b/mate-extra/mate-system-monitor/Manifest
@@ -1,2 +1,3 @@
 DIST mate-system-monitor-1.12.2.tar.xz 2114504 SHA256 
78b91ae43fd0f06e0577d71d3b92b9c03ff2dc8809ba2b06dc0c4dc9e93683f5 SHA512 
f001d36b7a343cba68bf76094abad4e07cc89537c71dba873bb5ffc61045f440a319e3db8d5ee55ff301f52dbdad8b275ca71a4ab6c5fbe34d75c2e65edd7c23
 WHIRLPOOL 
7270766f4434cb0e489f3f1ef805586987751fbea6a0a020df8fa7fa38dbbf264d0d1f3694fbba8e9d14cf2ddaee217ac562a391b4b87f1033cf2850067ae1a0
 DIST mate-system-monitor-1.14.0.tar.xz 2135464 SHA256 
ccd7f52836af22d18138e516335ee259448749b6618327feb908ad396d0c650a SHA512 
f19fa0241228be8ec8600db43e71495750039288292ba5714489a84acb3e5cc9f4c87d39a63d29a0fc6f907af6ecc319382cd4276ae2de1125bba059d5b24be5
 WHIRLPOOL 
d354dfbf7121b838af6fac73148e381c23df4e3bc50a59f68f6469416f608235a0b6d990214e9de87bc01e1254f16e1ba9d1f631e18554205ae45ebc4b84f149
+DIST mate-system-monitor-1.16.0.tar.xz 2120984 SHA256 
abbbfeba699f73a6eacb7545927693daba4fb6203a75170a93df4842cacd9fe1 SHA512 
6ee8e1d1a3af5e3b295c2cca74b3e6bdf8a09eb6aa7d63f13db006829c2df25b580b72cc8d6e34e2844b243999cd4f059a42aa67a88c60825defdb7880150796
 WHIRLPOOL 
2fa9402bab4c9a9441e5dae2094cc12862bf484827f3cd5c238ee234792f03b0a751229c08b81d0def97194e6901f61736747a6656a9738d3bd2f52116e30a70

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.16.0.ebuild
similarity index 100%
copy from mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
copy to mate-extra/mate-system-monitor/mate-system-monitor-1.16.0.ebuild

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
index 4f6f946..31c8771 100644
--- a/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
+++ b/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
@@ -31,7 +31,8 @@ COMMON_DEPEND="
virtual/libintl:0
systemd? ( sys-apps/systemd )"
 
-RDEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}
+   >=sys-auth/polkit-0.97:0"
 
 DEPEND="${COMMON_DEPEND}
app-text/yelp-tools:0



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/, mate-extra/mate-system-monitor/files/

2016-11-22 Thread Ettore Di Giacinto
commit: 7fed3841063a2817b8d6c6c9724d95410134443f
Author: Ettore Di Giacinto  gentoo  org>
AuthorDate: Fri Oct 21 19:19:59 2016 +
Commit: Ettore Di Giacinto  gentoo  org>
CommitDate: Tue Nov 22 11:10:39 2016 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=7fed3841

mate-extra/mate-system-monitor: Drop 1.10.x

Package-Manager: portage-2.3.1

 mate-extra/mate-system-monitor/Manifest|   1 -
 ...mate-system-monitor-1.10.1-cxxflags-cpp11.patch | 207 -
 .../mate-system-monitor-1.10.1.ebuild  |  57 --
 3 files changed, 265 deletions(-)

diff --git a/mate-extra/mate-system-monitor/Manifest 
b/mate-extra/mate-system-monitor/Manifest
index f41d5b5..00ca1c5 100644
--- a/mate-extra/mate-system-monitor/Manifest
+++ b/mate-extra/mate-system-monitor/Manifest
@@ -1,3 +1,2 @@
-DIST mate-system-monitor-1.10.1.tar.xz 2129620 SHA256 
d5428990f9ba2a864a9c4af74c626c3e8f46f0b0468925209ad51f2d09304774 SHA512 
a80922315d387eda99223ecc6f44a7608a3ef2d300ef80f10e35aede83783407f996935f7e106d342dcd91b8681158b587a5c1d1192724040e6bd99409cae6ec
 WHIRLPOOL 
0e2f4d2e8884d3f6e4dcd1caf3b81866d2e7d0cd2dad679c3201ebd37afcb038c14df1a2245aa4b5e3fcade08243c2ad7a4a9d1745b758c4d57ba6f8ce55f4b4
 DIST mate-system-monitor-1.12.2.tar.xz 2114504 SHA256 
78b91ae43fd0f06e0577d71d3b92b9c03ff2dc8809ba2b06dc0c4dc9e93683f5 SHA512 
f001d36b7a343cba68bf76094abad4e07cc89537c71dba873bb5ffc61045f440a319e3db8d5ee55ff301f52dbdad8b275ca71a4ab6c5fbe34d75c2e65edd7c23
 WHIRLPOOL 
7270766f4434cb0e489f3f1ef805586987751fbea6a0a020df8fa7fa38dbbf264d0d1f3694fbba8e9d14cf2ddaee217ac562a391b4b87f1033cf2850067ae1a0
 DIST mate-system-monitor-1.14.0.tar.xz 2135464 SHA256 
ccd7f52836af22d18138e516335ee259448749b6618327feb908ad396d0c650a SHA512 
f19fa0241228be8ec8600db43e71495750039288292ba5714489a84acb3e5cc9f4c87d39a63d29a0fc6f907af6ecc319382cd4276ae2de1125bba059d5b24be5
 WHIRLPOOL 
d354dfbf7121b838af6fac73148e381c23df4e3bc50a59f68f6469416f608235a0b6d990214e9de87bc01e1254f16e1ba9d1f631e18554205ae45ebc4b84f149

diff --git 
a/mate-extra/mate-system-monitor/files/mate-system-monitor-1.10.1-cxxflags-cpp11.patch
 
b/mate-extra/mate-system-monitor/files/mate-system-monitor-1.10.1-cxxflags-cpp11.patch
deleted file mode 100644
index 825a04a..000
--- 
a/mate-extra/mate-system-monitor/files/mate-system-monitor-1.10.1-cxxflags-cpp11.patch
+++ /dev/null
@@ -1,207 +0,0 @@
-From 56594f6f10ba04aa51af976bc8339ea9ae54ea21 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= 
-Date: Sun, 2 Aug 2015 06:37:21 +0200
-Subject: [PATCH] Add a smart CXXFLAGS / std=c++11 switch.
-
-Code from glom and murrayc 
http://www.murrayc.com/permalink/2015/07/31/gtkmm-now-uses-c11/ .

- configure.ac   |   3 +-
- m4/ax_cxx_compile_stdcxx_11.m4 | 168 +
- 2 files changed, 170 insertions(+), 1 deletion(-)
- create mode 100644 m4/ax_cxx_compile_stdcxx_11.m4
-
-diff --git a/configure.ac b/configure.ac
-index 4afb816..b7759db 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -20,6 +20,7 @@ AC_PROG_CC
- AC_PROG_CXX
- AC_LANG([C++])
- AC_LANG_COMPILER_REQUIRE
-+AX_CXX_COMPILE_STDCXX_11([],[mandatory])
- PKG_PROG_PKG_CONFIG([0.19])
- 
- # Initialize libtool
-@@ -103,7 +104,7 @@ if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; 
then
- -Wnested-externs -Wpointer-arith \
- -Wcast-align -Wsign-compare \
- $CFLAGS"
--CXXFLAGS="-Wall -std=c++98 $CXXFLAGS"
-+CXXFLAGS="-Wall $CXXFLAGS"
- else
- AC_MSG_RESULT(no)
- fi
-diff --git a/m4/ax_cxx_compile_stdcxx_11.m4 b/m4/ax_cxx_compile_stdcxx_11.m4
-new file mode 100644
-index 000..b83fac4
 /dev/null
-+++ b/m4/ax_cxx_compile_stdcxx_11.m4
-@@ -0,0 +1,168 @@
-+# 
-+#  http://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_11.html
-+# 
-+#
-+# SYNOPSIS
-+#
-+#   AX_CXX_COMPILE_STDCXX_11([ext|noext],[mandatory|optional])
-+#
-+# DESCRIPTION
-+#
-+#   Check for baseline language coverage in the compiler for the C++11
-+#   standard; if necessary, add switches to CXXFLAGS to enable support.
-+#
-+#   The first argument, if specified, indicates whether you insist on an
-+#   extended mode (e.g. -std=gnu++11) or a strict conformance mode (e.g.
-+#   -std=c++11).  If neither is specified, you get whatever works, with
-+#   preference for an extended mode.
-+#
-+#   The second argument, if specified 'mandatory' or if left unspecified,
-+#   indicates that baseline C++11 support is required and that the macro
-+#   should error out if no mode with that support is found.  If specified
-+#   'optional', then configuration proceeds regardless, after defining
-+#   HAVE_CXX11 if and only if a supporting mode is found.
-+#
-+# LICENSE
-+#
-+#   Copyright (c) 2008 Benjamin Kosnik 
-+#   Copyright (c) 2012 

[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2016-08-13 Thread NP Hardass
commit: 48df1bd0a6918abc4e805302cbd6b9474b56e914
Author: NP-Hardass  gentoo  org>
AuthorDate: Fri Aug 12 16:04:53 2016 +
Commit: NP Hardass  gentoo  org>
CommitDate: Fri Aug 12 16:04:53 2016 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=48df1bd0

mate-extra/mate-system-monitor: Drop gtk3 flag

Package-Manager: portage-2.3.0

 .../mate-system-monitor/mate-system-monitor-.ebuild   | 11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
index 18fc853..056e13a 100644
--- a/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
+++ b/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
@@ -14,10 +14,11 @@ DESCRIPTION="The MATE System Monitor"
 LICENSE="GPL-2"
 SLOT="0"
 
-IUSE="gtk3 systemd"
+IUSE="systemd"
 
 RDEPEND="
>=dev-cpp/glibmm-2.26:2
+   >=dev-cpp/gtkmm-3.8:3.0
>=dev-libs/dbus-glib-0.70:0
>=dev-libs/glib-2.36:2
dev-libs/libsigc++:2
@@ -27,12 +28,9 @@ RDEPEND="
>=sys-apps/dbus-0.7:0
x11-libs/cairo:0
x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.14:3
+   >=x11-libs/libwnck-3.0:3
virtual/libintl:0
-   gtk3? (
-   >=dev-cpp/gtkmm-3.8:3.0
-   >=x11-libs/gtk+-3.14:3
-   >=x11-libs/libwnck-3.0:3
-   )
systemd? ( sys-apps/systemd )"
 
 DEPEND="${RDEPEND}
@@ -44,6 +42,5 @@ DEPEND="${RDEPEND}
 
 src_configure() {
mate_src_configure \
-   --with-gtk=$(usex gtk3 3.0 2.0) \
$(use_enable systemd)
 }



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2016-06-17 Thread NP Hardass
commit: 6306fcd9b2d6904692af6c19f07ac8b6837c144c
Author: NP-Hardass  gentoo  org>
AuthorDate: Tue Apr 12 05:39:12 2016 +
Commit: NP Hardass  gentoo  org>
CommitDate: Fri Jun 17 17:34:43 2016 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=6306fcd9

mate-extra/mate-system-monitor: Version bump to 1.12.2, add , add gtk3

Package-Manager: portage-2.2.26

 mate-extra/mate-system-monitor/Manifest|  1 +
 .../mate-system-monitor-1.12.2.ebuild  | 54 ++
 .../mate-system-monitor-.ebuild| 49 
 mate-extra/mate-system-monitor/metadata.xml|  3 ++
 4 files changed, 107 insertions(+)

diff --git a/mate-extra/mate-system-monitor/Manifest 
b/mate-extra/mate-system-monitor/Manifest
index d02b24d..c2c5cd2 100644
--- a/mate-extra/mate-system-monitor/Manifest
+++ b/mate-extra/mate-system-monitor/Manifest
@@ -1 +1,2 @@
 DIST mate-system-monitor-1.10.1.tar.xz 2129620 SHA256 
d5428990f9ba2a864a9c4af74c626c3e8f46f0b0468925209ad51f2d09304774 SHA512 
a80922315d387eda99223ecc6f44a7608a3ef2d300ef80f10e35aede83783407f996935f7e106d342dcd91b8681158b587a5c1d1192724040e6bd99409cae6ec
 WHIRLPOOL 
0e2f4d2e8884d3f6e4dcd1caf3b81866d2e7d0cd2dad679c3201ebd37afcb038c14df1a2245aa4b5e3fcade08243c2ad7a4a9d1745b758c4d57ba6f8ce55f4b4
+DIST mate-system-monitor-1.12.2.tar.xz 2114504 SHA256 
78b91ae43fd0f06e0577d71d3b92b9c03ff2dc8809ba2b06dc0c4dc9e93683f5 SHA512 
f001d36b7a343cba68bf76094abad4e07cc89537c71dba873bb5ffc61045f440a319e3db8d5ee55ff301f52dbdad8b275ca71a4ab6c5fbe34d75c2e65edd7c23
 WHIRLPOOL 
7270766f4434cb0e489f3f1ef805586987751fbea6a0a020df8fa7fa38dbbf264d0d1f3694fbba8e9d14cf2ddaee217ac562a391b4b87f1033cf2850067ae1a0

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.12.2.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.12.2.ebuild
new file mode 100644
index 000..3304a90
--- /dev/null
+++ b/mate-extra/mate-system-monitor/mate-system-monitor-1.12.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+DESCRIPTION="The MATE System Monitor"
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="gtk3 systemd"
+
+RDEPEND="
+   >=dev-cpp/glibmm-2.26:2
+   >=dev-libs/dbus-glib-0.70:0
+   >=dev-libs/glib-2.36:2
+   dev-libs/libsigc++:2
+   >=dev-libs/libxml2-2:2
+   >=gnome-base/libgtop-2.23.1:2=
+   >=gnome-base/librsvg-2.35:2
+   >=sys-apps/dbus-0.7:0
+   x11-libs/cairo:0
+   x11-libs/gdk-pixbuf:2
+   virtual/libintl:0
+   !gtk3? (
+   >=dev-cpp/gtkmm-2.22:2.4
+   >=x11-libs/gtk+-2.20:2
+   >=x11-libs/libwnck-2.5:1
+   )
+   gtk3? (
+   >=dev-cpp/gtkmm-3.0:3.0
+   >=x11-libs/gtk+-3.0:3
+   >=x11-libs/libwnck-2.91:3
+   )
+   systemd? ( sys-apps/systemd )"
+
+DEPEND="${RDEPEND}
+   app-text/yelp-tools:0
+   >=dev-util/intltool-0.50.1:*
+   sys-devel/gettext:*
+   >=sys-devel/autoconf-2.63:*
+   virtual/pkgconfig:*"
+
+src_configure() {
+   mate_src_configure \
+   --with-gtk=$(usex gtk3 3.0 2.0) \
+   $(use_enable systemd)
+}

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
new file mode 100644
index 000..18fc853
--- /dev/null
+++ b/mate-extra/mate-system-monitor/mate-system-monitor-.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+DESCRIPTION="The MATE System Monitor"
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="gtk3 systemd"
+
+RDEPEND="
+   >=dev-cpp/glibmm-2.26:2
+   >=dev-libs/dbus-glib-0.70:0
+   >=dev-libs/glib-2.36:2
+   dev-libs/libsigc++:2
+   >=dev-libs/libxml2-2:2
+   >=gnome-base/libgtop-2.23.1:2=
+   >=gnome-base/librsvg-2.35:2
+   >=sys-apps/dbus-0.7:0
+   x11-libs/cairo:0
+   x11-libs/gdk-pixbuf:2
+   virtual/libintl:0
+   gtk3? (
+   >=dev-cpp/gtkmm-3.8:3.0
+   >=x11-libs/gtk+-3.14:3
+   >=x11-libs/libwnck-3.0:3
+   )
+   systemd? ( sys-apps/systemd )"
+
+DEPEND="${RDEPEND}
+   app-text/yelp-tools:0
+   >=dev-util/intltool-0.50.1:*
+   sys-devel/gettext:*
+   >=sys-devel/autoconf-2.63:*
+   virtual/pkgconfig:*"
+
+src_configure() {
+   mate_src_configure \
+   --with-gtk=$(usex gtk3 3.0 2.0) \
+   $(use_enable systemd)
+}

diff --git a/mate-extra/mate-system-monitor/metadata.xml 
b/mate-extra/mate-system-monitor/metadata.xml
index d013f2f..8016e53 100644
--- 

[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2016-03-25 Thread NP Hardass
commit: 7e71f716ed62ea9031dce29fec7cf5998d98121a
Author: NP-Hardass  gentoo  org>
AuthorDate: Sat Mar 26 02:05:37 2016 +
Commit: NP Hardass  gentoo  org>
CommitDate: Sat Mar 26 02:23:49 2016 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=7e71f716

mate-extra/mate-system-monitor: Drop 1.8.x

Package-Manager: portage-2.2.26

 mate-extra/mate-system-monitor/Manifest|  1 -
 .../mate-system-monitor-1.8.0.ebuild   | 45 --
 2 files changed, 46 deletions(-)

diff --git a/mate-extra/mate-system-monitor/Manifest 
b/mate-extra/mate-system-monitor/Manifest
index 51a58d9..d02b24d 100644
--- a/mate-extra/mate-system-monitor/Manifest
+++ b/mate-extra/mate-system-monitor/Manifest
@@ -1,2 +1 @@
 DIST mate-system-monitor-1.10.1.tar.xz 2129620 SHA256 
d5428990f9ba2a864a9c4af74c626c3e8f46f0b0468925209ad51f2d09304774 SHA512 
a80922315d387eda99223ecc6f44a7608a3ef2d300ef80f10e35aede83783407f996935f7e106d342dcd91b8681158b587a5c1d1192724040e6bd99409cae6ec
 WHIRLPOOL 
0e2f4d2e8884d3f6e4dcd1caf3b81866d2e7d0cd2dad679c3201ebd37afcb038c14df1a2245aa4b5e3fcade08243c2ad7a4a9d1745b758c4d57ba6f8ce55f4b4
-DIST mate-system-monitor-1.8.0.tar.xz 2099600 SHA256 
00ef3c595d4837e44f70c40e683a292836c9c8a84d1f9ab66f5b97a206f47712 SHA512 
175c46b05544de70fca37c444fd2ad4f578f62e50da1e0d30136fc2c6f79d49ff68c1d6fe6675d2aafd5d726c0b96d82971df3dc964b7430b2f4db179db91856
 WHIRLPOOL 
3a30f5c441ee1f60c7e735e7ea6c57d8e03cb22e7b3edb83bf2739548a939fc1ed64dd561bb3bd7e3f33de5643c25d14b940f8d9bb209403af1e30297728c266

diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.8.0.ebuild 
b/mate-extra/mate-system-monitor/mate-system-monitor-1.8.0.ebuild
deleted file mode 100644
index dfda81c..000
--- a/mate-extra/mate-system-monitor/mate-system-monitor-1.8.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-GCONF_DEBUG="no"
-
-inherit gnome2 versionator
-
-MATE_BRANCH="$(get_version_component_range 1-2)"
-
-SRC_URI="http://pub.mate-desktop.org/releases/${MATE_BRANCH}/${P}.tar.xz;
-DESCRIPTION="The MATE System Monitor"
-HOMEPAGE="http://mate-desktop.org;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="app-text/rarian:0
-   >=dev-cpp/glibmm-2.16:2
-   >=dev-cpp/gtkmm-2.22:2.4
-   >=dev-libs/dbus-glib-0.70:0
-   >=dev-libs/glib-2.28:2
-   dev-libs/libsigc++:2
-   >=dev-libs/libxml2-2:2
-   >=gnome-base/libgtop-2.23.1:2=
-   >=gnome-base/librsvg-2.12:2
-   >=sys-apps/dbus-0.7:0
-   x11-libs/cairo:0
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-2.20:2
-   >=x11-libs/libwnck-2.5:1
-   >=x11-themes/mate-icon-theme-1.8:0
-   virtual/libintl:0"
-
-DEPEND="${RDEPEND}
-   >=app-text/scrollkeeper-dtd-1:1.0
-   app-text/yelp-tools:0
-   >=dev-util/intltool-0.35:*
-   sys-devel/gettext:*
-   virtual/pkgconfig:*"
-
-DOCS="AUTHORS ChangeLog NEWS README"



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/, mate-extra/mate-system-monitor/files/

2016-01-31 Thread NP Hardass
commit: 91f3c86af5dc59a1f23e654c5a53f89e8c14b17e
Author: wraeth  wraeth  id  au>
AuthorDate: Sat Jan 30 08:40:12 2016 +
Commit: NP Hardass  gentoo  org>
CommitDate: Mon Feb  1 00:04:23 2016 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=91f3c86a

mate-extra/mate-system-monitor: Add support for c++11

Package-Manager: portage-2.2.27
Signed-off-by: NP-Hardass  gentoo.org>

 ...mate-system-monitor-1.10.1-cxxflags-cpp11.patch | 207 +
 .../mate-system-monitor-1.10.1.ebuild  |  13 +-
 2 files changed, 218 insertions(+), 2 deletions(-)

diff --git 
a/mate-extra/mate-system-monitor/files/mate-system-monitor-1.10.1-cxxflags-cpp11.patch
 
b/mate-extra/mate-system-monitor/files/mate-system-monitor-1.10.1-cxxflags-cpp11.patch
new file mode 100644
index 000..825a04a
--- /dev/null
+++ 
b/mate-extra/mate-system-monitor/files/mate-system-monitor-1.10.1-cxxflags-cpp11.patch
@@ -0,0 +1,207 @@
+From 56594f6f10ba04aa51af976bc8339ea9ae54ea21 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= 
+Date: Sun, 2 Aug 2015 06:37:21 +0200
+Subject: [PATCH] Add a smart CXXFLAGS / std=c++11 switch.
+
+Code from glom and murrayc 
http://www.murrayc.com/permalink/2015/07/31/gtkmm-now-uses-c11/ .
+---
+ configure.ac   |   3 +-
+ m4/ax_cxx_compile_stdcxx_11.m4 | 168 +
+ 2 files changed, 170 insertions(+), 1 deletion(-)
+ create mode 100644 m4/ax_cxx_compile_stdcxx_11.m4
+
+diff --git a/configure.ac b/configure.ac
+index 4afb816..b7759db 100644
+--- a/configure.ac
 b/configure.ac
+@@ -20,6 +20,7 @@ AC_PROG_CC
+ AC_PROG_CXX
+ AC_LANG([C++])
+ AC_LANG_COMPILER_REQUIRE
++AX_CXX_COMPILE_STDCXX_11([],[mandatory])
+ PKG_PROG_PKG_CONFIG([0.19])
+ 
+ # Initialize libtool
+@@ -103,7 +104,7 @@ if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; 
then
+ -Wnested-externs -Wpointer-arith \
+ -Wcast-align -Wsign-compare \
+ $CFLAGS"
+-CXXFLAGS="-Wall -std=c++98 $CXXFLAGS"
++CXXFLAGS="-Wall $CXXFLAGS"
+ else
+ AC_MSG_RESULT(no)
+ fi
+diff --git a/m4/ax_cxx_compile_stdcxx_11.m4 b/m4/ax_cxx_compile_stdcxx_11.m4
+new file mode 100644
+index 000..b83fac4
+--- /dev/null
 b/m4/ax_cxx_compile_stdcxx_11.m4
+@@ -0,0 +1,168 @@
++# 
++#  http://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_11.html
++# 
++#
++# SYNOPSIS
++#
++#   AX_CXX_COMPILE_STDCXX_11([ext|noext],[mandatory|optional])
++#
++# DESCRIPTION
++#
++#   Check for baseline language coverage in the compiler for the C++11
++#   standard; if necessary, add switches to CXXFLAGS to enable support.
++#
++#   The first argument, if specified, indicates whether you insist on an
++#   extended mode (e.g. -std=gnu++11) or a strict conformance mode (e.g.
++#   -std=c++11).  If neither is specified, you get whatever works, with
++#   preference for an extended mode.
++#
++#   The second argument, if specified 'mandatory' or if left unspecified,
++#   indicates that baseline C++11 support is required and that the macro
++#   should error out if no mode with that support is found.  If specified
++#   'optional', then configuration proceeds regardless, after defining
++#   HAVE_CXX11 if and only if a supporting mode is found.
++#
++# LICENSE
++#
++#   Copyright (c) 2008 Benjamin Kosnik 
++#   Copyright (c) 2012 Zack Weinberg 
++#   Copyright (c) 2013 Roy Stogner 
++#   Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov 

++#
++#   Copying and distribution of this file, with or without modification, are
++#   permitted in any medium without royalty provided the copyright notice
++#   and this notice are preserved. This file is offered as-is, without any
++#   warranty.
++
++#serial 11
++
++m4_define([_AX_CXX_COMPILE_STDCXX_11_testbody], [[
++  template 
++struct check
++{
++  static_assert(sizeof(int) <= sizeof(T), "not big enough");
++};
++
++struct Base {
++virtual void f() {}
++};
++struct Child : public Base {
++virtual void f() override {}
++};
++
++typedef check right_angle_brackets;
++
++int a;
++decltype(a) b;
++
++typedef check check_type;
++check_type c;
++check_type&& cr = static_cast(c);
++
++auto d = a;
++auto l = [](){};
++// Prevent Clang error: unused variable 'l' [-Werror,-Wunused-variable]
++struct use_l { use_l() { l(); } };
++
++// http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae
++// Clang 3.1 fails with headers of libstd++ 4.8.3 when using 
std::function because of this
++namespace test_template_alias_sfinae {
++struct foo {};
++
++template
++using member = typename 

[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/

2015-07-22 Thread NP Hardass
commit: 1a785b6e5a67a5928680a8d06a0320f53231a243
Author: NP-Hardass NP-Hardass AT gentoo DOT org
AuthorDate: Sun Jul 19 23:55:17 2015 +
Commit: NP Hardass np-hardass AT gentoo DOT org
CommitDate: Sun Jul 19 23:55:17 2015 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=1a785b6e

Version bump mate-system-monitor to 1.10.1

Package-Manager: portage-2.2.20
Manifest-Sign-Key: 18F89C67

 mate-extra/mate-system-monitor/ChangeLog   |  6 +++
 mate-extra/mate-system-monitor/Manifest| 30 +++---
 .../mate-system-monitor-1.10.1.ebuild  | 48 ++
 3 files changed, 70 insertions(+), 14 deletions(-)

diff --git a/mate-extra/mate-system-monitor/ChangeLog 
b/mate-extra/mate-system-monitor/ChangeLog
index 7bd23ef..1c4f641 100644
--- a/mate-extra/mate-system-monitor/ChangeLog
+++ b/mate-extra/mate-system-monitor/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: /var/cvsroot/gentoo-x86/mate-extra/mate-system-monitor/ChangeLog,v 
1.8 2014/12/20 17:38:51 tamiko Exp $
 
+*mate-system-monitor-1.10.1 (19 Jul 2015)
+
+  19 Jul 2015; NP-Hardass np-hard...@gentoo.org
+  +mate-system-monitor-1.10.1.ebuild:
+  Version bump mate-system-monitor to 1.10.1
+
   06 Jul 2015; NP-Hardass np-hard...@gentoo.org metadata.xml:
   Updated maintainer and add remote IDs.
 

diff --git a/mate-extra/mate-system-monitor/Manifest 
b/mate-extra/mate-system-monitor/Manifest
index aed41d9..552d14a 100644
--- a/mate-extra/mate-system-monitor/Manifest
+++ b/mate-extra/mate-system-monitor/Manifest
@@ -1,24 +1,26 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
+DIST mate-system-monitor-1.10.1.tar.xz 2129620 SHA256 
d5428990f9ba2a864a9c4af74c626c3e8f46f0b0468925209ad51f2d09304774 SHA512 
a80922315d387eda99223ecc6f44a7608a3ef2d300ef80f10e35aede83783407f996935f7e106d342dcd91b8681158b587a5c1d1192724040e6bd99409cae6ec
 WHIRLPOOL 
0e2f4d2e8884d3f6e4dcd1caf3b81866d2e7d0cd2dad679c3201ebd37afcb038c14df1a2245aa4b5e3fcade08243c2ad7a4a9d1745b758c4d57ba6f8ce55f4b4
 DIST mate-system-monitor-1.8.0.tar.xz 2099600 SHA256 
00ef3c595d4837e44f70c40e683a292836c9c8a84d1f9ab66f5b97a206f47712 SHA512 
175c46b05544de70fca37c444fd2ad4f578f62e50da1e0d30136fc2c6f79d49ff68c1d6fe6675d2aafd5d726c0b96d82971df3dc964b7430b2f4db179db91856
 WHIRLPOOL 
3a30f5c441ee1f60c7e735e7ea6c57d8e03cb22e7b3edb83bf2739548a939fc1ed64dd561bb3bd7e3f33de5643c25d14b940f8d9bb209403af1e30297728c266
+EBUILD mate-system-monitor-1.10.1.ebuild 1168 SHA256 
d17042ee0bf199dfd5bed105f55fe08e3bc4d5e77eb850f77ef88428f110ba15 SHA512 
43da73060fbe4a3f2aade98a463ce6f139c717be507200ad841253ff2dae712c9f14b8748aacc92db77e72d1bfdaf4ac6bb8f4ab197613b83625dd5e2fd92d61
 WHIRLPOOL 
dac61801770b3792280f1c6e7c5d265c8a5d944338bbcfbabf6a233b1341ae0d46c34e034ba54c6bad993110cdec75827345dbc5ae4a4489ebbe7e3b07084ef6
 EBUILD mate-system-monitor-1.8.0.ebuild 1141 SHA256 
4d4b8275ebfc459523ff72586fd61989d5b129572c2556dd78e9d0fcaff62a23 SHA512 
bad01d03c931c26809738c22cb762e206ae4b6fd235b1784291438f734ff9c87eb50655ba2f51ab35c60766afd82f7e3e6e1528ca26b1bd95eee62c13dd471fe
 WHIRLPOOL 
de426ff7e8e1229735ffa52a48eea3f3dc829632ccc900f8a5fe8fe57cff4dff84212eec385b9af118ebc2d3ac4a80529f00dc6c6d0fcb091d3c989e08f11e0b
-MISC ChangeLog 1441 SHA256 
89dcf70b084a0a104eeb47e49d7d2e6905585665a5233114dd27056806375064 SHA512 
bdd3fa0170335a4056fb3fd67f013b90e180fd0841cac78182edb31d4573a13c328cc05d4bf780f3d19091f6457140ebbbe1a0d4eac563f611a16cb0ff34d15a
 WHIRLPOOL 
e545b5102d3e09a80a25f24420643c427344f61b0fbec3267ddf4e7ebfc0624c047295edfd0259fa60aa6bee502d1c334479564547bfb2edf102dfac1bd37be7
+MISC ChangeLog 1618 SHA256 
6bf8d3812a0f1074c30d97f5556e195ba62b6020bfbc85959718ad0e9c955cb0 SHA512 
434964e5ff02b3c7f0471146cdac8a607282dbd4b53beb0e3cf644d3efe993d052c8795a45662d238e607cbe7784b777cb0499dbedb63c84d5e20a9a47459b09
 WHIRLPOOL 
f9f571dac35ec393da8b49bd556fb52778d68222e8f5a2ee45615d7acc1c4a6e3560e3955a055466534aa358fa39b08851390b4af1bc4ae80aa43ef509e895a2
 MISC metadata.xml 270 SHA256 
a34248f9989e878645498a88b0281b0bb11c24ae6f1467f2dd9739f92e25d97c SHA512 
a4255c719f5deba97b108ee1fe844bd460151ca042adef0c3321bda7bcbb0d67abb656b3c425a8574d2bc5f56ec858656f770a3b4e9dc29204ebfb7f69be9469
 WHIRLPOOL 
d8a7bb0fa977d7cd314ebfc7ec259aff394259cb334a12121cd4f9599eb1ca2b38877d71a059bc96567f6de85aa9d2398904f5f5e28062804450a676312268b5
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2
 
-iQIcBAEBCAAGBQJVmgYNAAoJEBzZQR2yrxj7+7QP/2u/Qe5knUekqAuNw4UEyG5L
-bcNVb0rPJvERYw9oI5id/6zlt37TzDBSqpMxRztox5/T9MFZQMrNQwcj+jxMzTgx
-wkPmiAXhwcmXZp6/M9empZERfuxWQvtv4Ub+DmDk+vDZAG7c5LXwS5crFtPmFRa9
-v+e9dqVpr3KBf/YEW1cFGRvpTv9pH3ImJ+TLhIu2LkrxYAKC/hGOs5Fy9keKqLSs
-o2C82gqVHNM/FCK606X+MVmpwoB32j3KlKBg1uLBawXt5QXaOy4vrYS3VdYemBy7
-c7Csl57jxge6y60jtyKB1e4hB3oYmJSzLur5l1yrgxD7TgorCg7W4DlBcEhtGCPm
-BZWRKIYkHT3Hln/gAb6/owARuk2P4oigJI0D+8zyi8MMRp/PcTMp8Wttnvo/cOoK
-BsNWOjuu6hf5aETYM/GC/CGFLJf/qABuwEbsszAzGUOSOUPIIF+qiNArwbkAFr4x