mate-base/mate-applets: remove old
authorMart Raudsepp <leio@gentoo.org>
Sat, 6 Oct 2018 19:30:15 +0000 (22:30 +0300)
committerMart Raudsepp <leio@gentoo.org>
Sat, 6 Oct 2018 20:21:26 +0000 (23:21 +0300)
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

mate-base/mate-applets/Manifest
mate-base/mate-applets/files/mate-applets-1.10.4-cpupower-4.7.patch [deleted file]
mate-base/mate-applets/files/mate-applets-1.14.1-cpupower-4.7.patch [deleted file]
mate-base/mate-applets/files/mate-applets-1.14.1-revert-upstream-cpupower-4.7-fix.patch [deleted file]
mate-base/mate-applets/mate-applets-1.12.1-r4.ebuild [deleted file]
mate-base/mate-applets/mate-applets-1.12.1-r5.ebuild [deleted file]
mate-base/mate-applets/mate-applets-1.14.1-r1.ebuild [deleted file]
mate-base/mate-applets/mate-applets-1.14.1-r2.ebuild [deleted file]
mate-base/mate-applets/mate-applets-1.16.0-r1.ebuild [deleted file]
mate-base/mate-applets/mate-applets-1.16.0.ebuild [deleted file]
mate-base/mate-applets/metadata.xml

index d7634792f8e0d34f5a1cfa9c85f002038cfa4d0a..eda4f67daee60862880bd8ff9b88aeebec08edaa 100644 (file)
@@ -1,4 +1 @@
-DIST mate-applets-1.12.1.tar.xz 6816716 BLAKE2B 3268a6a4dd1ee1a238a9573315f9450dea4636b40a98f27857dff3cfd9379e5adefa9f2f7f0522837d3bc4fa1c54055d4e65b47165f42cc44400775ed8890b14 SHA512 c9acac98df31386b4016d42d3d1fe0e9ddd5e8fccc291269cff73e2a4c0853fabb85a649ee14f4aef3200c0f731c1d95f48aefdb3d8baaf014ad8776c1e94234
-DIST mate-applets-1.14.1.tar.xz 7151156 BLAKE2B 9b3540ea04c4473f8d9ee081a87d399ebfe74d77d96b96f4c5bf11d954dd53a1e764981eefe593d75480aadf3028626917fd21cdd1b45a5b8f14e4381fcd48ae SHA512 f7657a4dbeed5ff161dae33bd915bf868c95626d661b3d7e4eea9b86776f75449c4060c647d9a040ccf8a01556979b62a9b21c988b33e0cd8d5d90fd663a331d
-DIST mate-applets-1.16.0.tar.xz 7150340 BLAKE2B 0b5554b3e5f250dbc38ec3ecff795dca3d503045fda7f31ea8cb190c8c30a35b5576b990d5005f11b44035b26d6df2ce91e36edd369e983d893bfa2db5e4c00c SHA512 606fd39b95083e7cff2ce95e75b4acb0ec1f3d66621a15fa726891c6d6319f7757b92c8c26efd3ee05da9da3dc315b16a3a9089fd4bb8d420816d4728f8545af
 DIST mate-applets-1.18.2.tar.xz 7163260 BLAKE2B 58d057d1eded3ef26f33e133f86459a75df2903906f27df555640aaf51ca381e8f57b0b4fe6ed7b2d679e08d2a595fc85a6b0d9c4ad51d3ac01552e2875e00bb SHA512 6644a7dfde1dbf65c38cd3a0f52f862e096030f0b9f324f1fbfc34b6167c04b51071f01c322c3c8382e74843332c877b1340fe2129417d6cf9207c32ef2f70be
diff --git a/mate-base/mate-applets/files/mate-applets-1.10.4-cpupower-4.7.patch b/mate-base/mate-applets/files/mate-applets-1.10.4-cpupower-4.7.patch
deleted file mode 100644 (file)
index 070b417..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index c867af3..4ff5311 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -416,6 +416,8 @@ fi
- AM_CONDITIONAL(HAVE_LIBCPUFREQ, test x$have_libcpufreq = xyes)
- AC_SUBST(LIBCPUFREQ_LIBS)
-+AC_CHECK_HEADERS([cpupower.h])
-+
- build_cpufreq_applet=no
- if test x$disable_cpufreq = xno; then
-diff --git a/cpufreq/src/cpufreq-monitor-libcpufreq.c b/cpufreq/src/cpufreq-monitor-libcpufreq.c
-index 40c44ba..120693c 100644
---- a/cpufreq/src/cpufreq-monitor-libcpufreq.c
-+++ b/cpufreq/src/cpufreq-monitor-libcpufreq.c
-@@ -19,11 +19,16 @@
-  * Authors : Carlos García Campos <carlosgc@gnome.org>
-  */
-+#include <config.h>
-+
- #include <glib.h>
- #include <glib/gi18n.h>
- #include <stdlib.h>
- #include <cpufreq.h>
-+#ifdef HAVE_CPUPOWER_H
-+#include <cpupower.h>
-+#endif
- #include "cpufreq-monitor-libcpufreq.h"
- #include "cpufreq-utils.h"
-@@ -111,7 +114,11 @@ cpufreq_monitor_libcpufreq_run (CPUFreqMonitor *monitor)
-               /* Check whether it failed because
-                * cpu is not online.
-                */
-+#ifndef HAVE_CPUPOWER_H
-               if (!cpufreq_cpu_exists (cpu)) {
-+#else
-+    if (cpupower_is_cpu_online (cpu)) {
-+#endif
-                       g_object_set (G_OBJECT (monitor), "online", FALSE, NULL);
-                       return TRUE;
-               }
diff --git a/mate-base/mate-applets/files/mate-applets-1.14.1-cpupower-4.7.patch b/mate-base/mate-applets/files/mate-applets-1.14.1-cpupower-4.7.patch
deleted file mode 100644 (file)
index 203f158..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index b49d127..6b87389 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -411,6 +411,8 @@ fi
- AM_CONDITIONAL(HAVE_LIBCPUFREQ, test x$have_libcpufreq = xyes)
- AC_SUBST(LIBCPUFREQ_LIBS)
-+AC_CHECK_HEADERS([cpupower.h])
-+
- build_cpufreq_applet=no
- if test x$disable_cpufreq = xno; then
-diff --git a/cpufreq/src/cpufreq-monitor-libcpufreq.c b/cpufreq/src/cpufreq-monitor-libcpufreq.c
-index 4fa9d4c..ba52fde 100644
---- a/cpufreq/src/cpufreq-monitor-libcpufreq.c
-+++ b/cpufreq/src/cpufreq-monitor-libcpufreq.c
-@@ -19,12 +19,16 @@
-  * Authors : Carlos García Campos <carlosgc@gnome.org>
-  */
-+#include <config.h>
-+
- #include <glib.h>
- #include <glib/gi18n.h>
- #include <stdlib.h>
--#include <linux/version.h>
- #include <cpufreq.h>
-+#ifdef HAVE_CPUPOWER_H
-+#include <cpupower.h>
-+#endif
- #include "cpufreq-monitor-libcpufreq.h"
- #include "cpufreq-utils.h"
-@@ -112,7 +116,7 @@
-               /* Check whether it failed because
-                * cpu is not online.
-                */
--#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 7, 0)
-+#ifndef HAVE_CPUPOWER_H
-               if (!cpufreq_cpu_exists (cpu)) {
- #else
-               if (cpupower_is_cpu_online (cpu)) {
diff --git a/mate-base/mate-applets/files/mate-applets-1.14.1-revert-upstream-cpupower-4.7-fix.patch b/mate-base/mate-applets/files/mate-applets-1.14.1-revert-upstream-cpupower-4.7-fix.patch
deleted file mode 100644 (file)
index 85c2b24..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-From e82b68edbfa8d6e209b9ad7b3e6392a928da776e Mon Sep 17 00:00:00 2001
-From: mudler <mudler@sabayon.org>
-Date: Tue, 13 Sep 2016 23:33:58 +0200
-Subject: [PATCH] fix 1.14.1 on kernel-headers >=4.7
-
----
- cpufreq/src/cpufreq-monitor-libcpufreq.c | 6 +-----
- 1 file changed, 1 insertion(+), 5 deletions(-)
-
-diff --git a/cpufreq/src/cpufreq-monitor-libcpufreq.c b/cpufreq/src/cpufreq-monitor-libcpufreq.c
-index 228a890..587e316 100644
---- a/cpufreq/src/cpufreq-monitor-libcpufreq.c
-+++ b/cpufreq/src/cpufreq-monitor-libcpufreq.c
-@@ -23,7 +23,7 @@
- #include <glib/gi18n.h>
- #include <stdlib.h>
--#include <linux/version.h>
-+
- #include <cpufreq.h>
- #include "cpufreq-monitor-libcpufreq.h"
- #include "cpufreq-utils.h"
-@@ -111,11 +111,7 @@ cpufreq_monitor_libcpufreq_run (CPUFreqMonitor *monitor)
-               /* Check whether it failed because
-                * cpu is not online.
-                */
--#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 7, 0)
-               if (!cpufreq_cpu_exists (cpu)) {
--#else
--              if (cpupower_is_cpu_online (cpu)) {
--#endif
-                       g_object_set (G_OBJECT (monitor), "online", FALSE, NULL);
-                       return TRUE;
-               }
--- 
-2.9.2
-
diff --git a/mate-base/mate-applets/mate-applets-1.12.1-r4.ebuild b/mate-base/mate-applets/mate-applets-1.12.1-r4.ebuild
deleted file mode 100644 (file)
index a7a6743..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit mate python-single-r1
-
-if [[ ${PV} != 9999 ]]; then
-       KEYWORDS="amd64 ~arm x86"
-fi
-
-DESCRIPTION="Applets for the MATE Desktop and Panel"
-LICENSE="GPL-2 FDL-1.1 LGPL-2"
-SLOT="0"
-
-IUSE="X gtk3 ipv6 policykit +upower"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-#cpupower #593470
-RDEPEND="${PYTHON_DEPS}
-       app-text/rarian:0
-       dev-libs/atk:0
-       >=dev-libs/dbus-glib-0.74:0
-       >=dev-libs/glib-2.36:2
-       >=dev-libs/libmateweather-1.6.1[gtk3(-)=]
-       >=dev-libs/libxml2-2.5:2
-       dev-python/pygobject:3
-       >=gnome-base/libgtop-2.11.92:2=
-       >=mate-base/mate-desktop-1.9[gtk3(-)=]
-       >=mate-base/mate-panel-1.7[gtk3(-)=]
-       >=mate-base/mate-settings-daemon-1.6
-       >=sys-apps/dbus-1.1.2:0
-       <sys-power/cpupower-4.7
-       x11-libs/gdk-pixbuf:2
-       >=x11-libs/libnotify-0.7:0
-       x11-libs/libX11:0
-       x11-libs/pango:0
-       virtual/libintl:0
-       !gtk3? (
-               >=gnome-extra/gucharmap-2.32.1:0
-               >=x11-libs/gtk+-2.24:2
-               x11-libs/gtksourceview:2.0
-               >=x11-libs/libwnck-2.30:1
-       )
-       gtk3? (
-               >=gnome-extra/gucharmap-3.0:2.90
-               >=x11-libs/gtk+-3.0:3
-               x11-libs/gtksourceview:3.0
-               >=x11-libs/libwnck-3.0:3
-       )
-       policykit? ( >=sys-auth/polkit-0.92:0 )
-       upower? (
-               || (
-                       >=sys-power/upower-0.9.23
-                       >=sys-power/upower-pm-utils-0.9.23
-               )
-       )"
-
-DEPEND="${RDEPEND}
-       app-text/docbook-xml-dtd:4.3
-       >=app-text/scrollkeeper-dtd-1:1.0
-       app-text/yelp-tools:0
-       >=dev-util/intltool-0.50.1:*
-       dev-libs/libxslt:0
-       sys-devel/gettext:*
-       virtual/pkgconfig:*"
-
-src_configure() {
-       mate_src_configure \
-               --libexecdir=/usr/libexec/mate-applets \
-               --with-cpufreq-lib=cpupower \
-               --with-gtk=$(usex gtk3 3.0 2.0) \
-               $(use_with X x) \
-               $(use_with upower) \
-               $(use_enable ipv6) \
-               $(use_enable policykit polkit)
-}
-
-src_test() {
-       unset DBUS_SESSION_BUS_ADDRESS
-       emake check
-}
-
-src_install() {
-       python_fix_shebang invest-applet
-       mate_src_install
-
-       local APPLETS="accessx-status battstat charpick command cpufreq drivemount
-                       geyes invest-applet mateweather multiload null_applet stickynotes
-                       timerapplet trashapplet"
-
-       for applet in ${APPLETS}; do
-               docinto ${applet}
-
-               for d in AUTHORS ChangeLog NEWS README README.themes TODO; do
-                       [ -s ${applet}/${d} ] && dodoc ${applet}/${d}
-               done
-       done
-}
diff --git a/mate-base/mate-applets/mate-applets-1.12.1-r5.ebuild b/mate-base/mate-applets/mate-applets-1.12.1-r5.ebuild
deleted file mode 100644 (file)
index 3853add..0000000
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit mate python-single-r1
-
-if [[ ${PV} != 9999 ]]; then
-       KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-DESCRIPTION="Applets for the MATE Desktop and Panel"
-LICENSE="GPL-2 FDL-1.1 LGPL-2"
-SLOT="0"
-
-IUSE="X gtk3 ipv6 policykit +upower"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-       app-text/rarian:0
-       dev-libs/atk:0
-       >=dev-libs/dbus-glib-0.74:0
-       >=dev-libs/glib-2.36:2
-       >=dev-libs/libmateweather-1.6.1[gtk3(-)=]
-       >=dev-libs/libxml2-2.5:2
-       dev-python/pygobject:3
-       >=gnome-base/libgtop-2.11.92:2=
-       >=mate-base/mate-desktop-1.9[gtk3(-)=]
-       >=mate-base/mate-panel-1.7[gtk3(-)=]
-       >=mate-base/mate-settings-daemon-1.6
-       >=sys-apps/dbus-1.1.2:0
-       sys-power/cpupower
-       x11-libs/gdk-pixbuf:2
-       >=x11-libs/libnotify-0.7:0
-       x11-libs/libX11:0
-       x11-libs/pango:0
-       virtual/libintl:0
-       !gtk3? (
-               >=gnome-extra/gucharmap-2.32.1:0
-               >=x11-libs/gtk+-2.24:2
-               x11-libs/gtksourceview:2.0
-               >=x11-libs/libwnck-2.30:1
-       )
-       gtk3? (
-               >=gnome-extra/gucharmap-3.0:2.90
-               >=x11-libs/gtk+-3.0:3
-               x11-libs/gtksourceview:3.0
-               >=x11-libs/libwnck-3.0:3
-       )
-       policykit? ( >=sys-auth/polkit-0.92:0 )
-       upower? (
-               || (
-                       >=sys-power/upower-0.9.23
-                       >=sys-power/upower-pm-utils-0.9.23
-               )
-       )"
-
-DEPEND="${RDEPEND}
-       app-text/docbook-xml-dtd:4.3
-       >=app-text/scrollkeeper-dtd-1:1.0
-       app-text/yelp-tools:0
-       >=dev-util/intltool-0.50.1:*
-       dev-libs/libxslt:0
-       sys-devel/gettext:*
-       virtual/pkgconfig:*"
-
-PATCHES=( "${FILESDIR}/${PN}-1.10.4-cpupower-4.7.patch" )
-
-src_configure() {
-       mate_src_configure \
-               --libexecdir=/usr/libexec/mate-applets \
-               --with-cpufreq-lib=cpupower \
-               --with-gtk=$(usex gtk3 3.0 2.0) \
-               $(use_with X x) \
-               $(use_with upower) \
-               $(use_enable ipv6) \
-               $(use_enable policykit polkit)
-}
-
-src_test() {
-       unset DBUS_SESSION_BUS_ADDRESS
-       emake check
-}
-
-src_install() {
-       python_fix_shebang invest-applet
-       mate_src_install
-
-       local APPLETS="accessx-status battstat charpick command cpufreq drivemount
-                       geyes invest-applet mateweather multiload null_applet stickynotes
-                       timerapplet trashapplet"
-
-       for applet in ${APPLETS}; do
-               docinto ${applet}
-
-               for d in AUTHORS ChangeLog NEWS README README.themes TODO; do
-                       [ -s ${applet}/${d} ] && dodoc ${applet}/${d}
-               done
-       done
-}
diff --git a/mate-base/mate-applets/mate-applets-1.14.1-r1.ebuild b/mate-base/mate-applets/mate-applets-1.14.1-r1.ebuild
deleted file mode 100644 (file)
index a813ac7..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit mate python-single-r1
-
-if [[ ${PV} != 9999 ]]; then
-       KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-DESCRIPTION="Applets for the MATE Desktop and Panel"
-LICENSE="GPL-2 FDL-1.1 LGPL-2"
-SLOT="0"
-
-IUSE="X gtk3 ipv6 policykit +upower"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-#cpupower #593470
-COMMON_DEPEND="${PYTHON_DEPS}
-       dev-libs/atk:0
-       >=dev-libs/dbus-glib-0.74:0
-       >=dev-libs/glib-2.36:2
-       >=dev-libs/libmateweather-1.6.1[gtk3(-)=]
-       >=dev-libs/libxml2-2.5:2
-       dev-python/pygobject:3
-       >=gnome-base/libgtop-2.11.92:2=
-       >=mate-base/mate-desktop-1.9[gtk3(-)=]
-       >=mate-base/mate-panel-1.7[gtk3(-)=]
-       >=net-wireless/wireless-tools-28_pre9:0
-       >=sys-apps/dbus-1.1.2:0
-       <sys-power/cpupower-4.7
-       x11-libs/gdk-pixbuf:2
-       >=x11-libs/libnotify-0.7:0
-       x11-libs/libX11:0
-       x11-libs/pango:0
-       virtual/libintl:0
-       !gtk3? (
-               >=gnome-extra/gucharmap-2.32.1:0
-               >=x11-libs/gtk+-2.24:2
-               x11-libs/gtksourceview:2.0
-               >=x11-libs/libwnck-2.30:1
-       )
-       gtk3? (
-               >=gnome-extra/gucharmap-3.0:2.90
-               >=x11-libs/gtk+-3.0:3
-               x11-libs/gtksourceview:3.0
-               >=x11-libs/libwnck-3.0:3
-       )
-       policykit? ( >=sys-auth/polkit-0.92:0 )
-       upower? (
-               || (
-                       >=sys-power/upower-0.9.23
-                       >=sys-power/upower-pm-utils-0.9.23
-               )
-       )
-       !!net-analyzer/mate-netspeed"
-
-RDEPEND="${COMMON_DEPEND}
-       >=mate-base/mate-settings-daemon-1.6"
-
-DEPEND="${COMMON_DEPEND}
-       app-text/docbook-xml-dtd:4.3
-       app-text/rarian:0
-       >=app-text/scrollkeeper-dtd-1:1.0
-       app-text/yelp-tools:0
-       >=dev-util/intltool-0.50.1:*
-       dev-libs/libxslt:0
-       sys-devel/gettext:*
-       virtual/pkgconfig:*"
-
-PATCHES=( "${FILESDIR}/${PN}-1.14.1-revert-upstream-cpupower-4.7-fix.patch" )
-
-src_configure() {
-       mate_src_configure \
-               --libexecdir=/usr/libexec/mate-applets \
-               --with-cpufreq-lib=cpupower \
-               --with-gtk=$(usex gtk3 3.0 2.0) \
-               $(use_with X x) \
-               $(use_with upower) \
-               $(use_enable ipv6) \
-               $(use_enable policykit polkit)
-}
-
-src_test() {
-       unset DBUS_SESSION_BUS_ADDRESS
-       emake check
-}
-
-src_install() {
-       python_fix_shebang invest-applet
-       mate_src_install
-
-       local APPLETS="accessx-status battstat charpick command cpufreq drivemount
-                       geyes invest-applet mateweather multiload netspeed stickynotes
-                       timerapplet trashapplet"
-
-       for applet in ${APPLETS}; do
-               docinto ${applet}
-
-               for d in AUTHORS ChangeLog NEWS README README.themes TODO; do
-                       [ -s ${applet}/${d} ] && dodoc ${applet}/${d}
-               done
-       done
-}
diff --git a/mate-base/mate-applets/mate-applets-1.14.1-r2.ebuild b/mate-base/mate-applets/mate-applets-1.14.1-r2.ebuild
deleted file mode 100644 (file)
index 900d903..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit mate python-single-r1
-
-if [[ ${PV} != 9999 ]]; then
-       KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-DESCRIPTION="Applets for the MATE Desktop and Panel"
-LICENSE="GPL-2 FDL-1.1 LGPL-2"
-SLOT="0"
-
-IUSE="X gtk3 ipv6 policykit +upower"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="${PYTHON_DEPS}
-       dev-libs/atk:0
-       >=dev-libs/dbus-glib-0.74:0
-       >=dev-libs/glib-2.36:2
-       >=dev-libs/libmateweather-1.6.1[gtk3(-)=]
-       >=dev-libs/libxml2-2.5:2
-       dev-python/pygobject:3
-       >=gnome-base/libgtop-2.11.92:2=
-       >=mate-base/mate-desktop-1.9[gtk3(-)=]
-       >=mate-base/mate-panel-1.7[gtk3(-)=]
-       >=net-wireless/wireless-tools-28_pre9:0
-       >=sys-apps/dbus-1.1.2:0
-       sys-power/cpupower
-       x11-libs/gdk-pixbuf:2
-       >=x11-libs/libnotify-0.7:0
-       x11-libs/libX11:0
-       x11-libs/pango:0
-       virtual/libintl:0
-       !gtk3? (
-               >=gnome-extra/gucharmap-2.32.1:0
-               >=x11-libs/gtk+-2.24:2
-               x11-libs/gtksourceview:2.0
-               >=x11-libs/libwnck-2.30:1
-       )
-       gtk3? (
-               >=gnome-extra/gucharmap-3.0:2.90
-               >=x11-libs/gtk+-3.0:3
-               x11-libs/gtksourceview:3.0
-               >=x11-libs/libwnck-3.0:3
-       )
-       policykit? ( >=sys-auth/polkit-0.92:0 )
-       upower? (
-               || (
-                       >=sys-power/upower-0.9.23
-                       >=sys-power/upower-pm-utils-0.9.23
-               )
-       )
-       !!net-analyzer/mate-netspeed"
-
-RDEPEND="${COMMON_DEPEND}
-       >=mate-base/mate-settings-daemon-1.6"
-
-DEPEND="${COMMON_DEPEND}
-       app-text/docbook-xml-dtd:4.3
-       app-text/rarian:0
-       >=app-text/scrollkeeper-dtd-1:1.0
-       app-text/yelp-tools:0
-       >=dev-util/intltool-0.50.1:*
-       dev-libs/libxslt:0
-       sys-devel/gettext:*
-       virtual/pkgconfig:*"
-
-PATCHES=( "${FILESDIR}/${PN}-1.14.1-cpupower-4.7.patch" )
-
-src_configure() {
-       mate_src_configure \
-               --libexecdir=/usr/libexec/mate-applets \
-               --with-cpufreq-lib=cpupower \
-               --with-gtk=$(usex gtk3 3.0 2.0) \
-               $(use_with X x) \
-               $(use_with upower) \
-               $(use_enable ipv6) \
-               $(use_enable policykit polkit)
-}
-
-src_test() {
-       unset DBUS_SESSION_BUS_ADDRESS
-       emake check
-}
-
-src_install() {
-       python_fix_shebang invest-applet
-       mate_src_install
-
-       local APPLETS="accessx-status battstat charpick command cpufreq drivemount
-                       geyes invest-applet mateweather multiload netspeed stickynotes
-                       timerapplet trashapplet"
-
-       for applet in ${APPLETS}; do
-               docinto ${applet}
-
-               for d in AUTHORS ChangeLog NEWS README README.themes TODO; do
-                       [ -s ${applet}/${d} ] && dodoc ${applet}/${d}
-               done
-       done
-}
diff --git a/mate-base/mate-applets/mate-applets-1.16.0-r1.ebuild b/mate-base/mate-applets/mate-applets-1.16.0-r1.ebuild
deleted file mode 100644 (file)
index d9c8b7e..0000000
+++ /dev/null
@@ -1,105 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit mate python-single-r1
-
-if [[ ${PV} != 9999 ]]; then
-       KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-DESCRIPTION="Applets for the MATE Desktop and Panel"
-LICENSE="GPL-2 FDL-1.1 LGPL-2"
-SLOT="0"
-
-IUSE="X gtk3 ipv6 policykit +upower"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="${PYTHON_DEPS}
-       dev-libs/atk:0
-       >=dev-libs/dbus-glib-0.74:0
-       >=dev-libs/glib-2.36:2
-       >=dev-libs/libmateweather-1.6.1[gtk3(-)=]
-       >=dev-libs/libxml2-2.5:2
-       dev-python/pygobject:3
-       >=gnome-base/libgtop-2.11.92:2=
-       >=mate-base/mate-panel-1.7[gtk3(-)=]
-       >=net-wireless/wireless-tools-28_pre9:0
-       >=sys-apps/dbus-1.1.2:0
-       sys-power/cpupower
-       x11-libs/gdk-pixbuf:2
-       >=x11-libs/libnotify-0.7:0
-       x11-libs/libX11:0
-       x11-libs/pango:0
-       virtual/libintl:0
-       !gtk3? (
-               >=gnome-extra/gucharmap-2.32.1:0
-               >=x11-libs/gtk+-2.24:2
-               x11-libs/gtksourceview:2.0
-               >=x11-libs/libwnck-2.30:1
-       )
-       gtk3? (
-               >=gnome-extra/gucharmap-3.0:2.90
-               >=x11-libs/gtk+-3.0:3
-               x11-libs/gtksourceview:3.0
-               >=x11-libs/libwnck-3.0:3
-       )
-       policykit? ( >=sys-auth/polkit-0.97:0 )
-       upower? (
-               || (
-                       >=sys-power/upower-0.9.23
-                       >=sys-power/upower-pm-utils-0.9.23
-               )
-       )
-       !!net-analyzer/mate-netspeed"
-
-RDEPEND="${COMMON_DEPEND}
-       >=mate-base/mate-settings-daemon-1.6"
-
-DEPEND="${COMMON_DEPEND}
-       app-text/docbook-xml-dtd:4.3
-       app-text/rarian:0
-       >=app-text/scrollkeeper-dtd-1:1.0
-       app-text/yelp-tools:0
-       >=dev-util/intltool-0.50.1:*
-       dev-libs/libxslt:0
-       sys-devel/gettext:*
-       virtual/pkgconfig:*"
-
-PATCHES=( "${FILESDIR}/${PN}-1.16.0-cpupower-4.7.patch" )
-
-src_configure() {
-       mate_src_configure \
-               --libexecdir=/usr/libexec/mate-applets \
-               --with-cpufreq-lib=cpupower \
-               --with-gtk=$(usex gtk3 3.0 2.0) \
-               $(use_with X x) \
-               $(use_with upower) \
-               $(use_enable ipv6) \
-               $(use_enable policykit polkit)
-}
-
-src_test() {
-       unset DBUS_SESSION_BUS_ADDRESS
-       emake check
-}
-
-src_install() {
-       python_fix_shebang invest-applet
-       mate_src_install
-
-       local APPLETS="accessx-status battstat charpick command cpufreq drivemount
-                       geyes invest-applet mateweather multiload netspeed stickynotes
-                       timerapplet trashapplet"
-
-       for applet in ${APPLETS}; do
-               docinto ${applet}
-
-               for d in AUTHORS ChangeLog NEWS README README.themes TODO; do
-                       [ -s ${applet}/${d} ] && dodoc ${applet}/${d}
-               done
-       done
-}
diff --git a/mate-base/mate-applets/mate-applets-1.16.0.ebuild b/mate-base/mate-applets/mate-applets-1.16.0.ebuild
deleted file mode 100644 (file)
index d54b6ac..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit mate python-single-r1
-
-if [[ ${PV} != 9999 ]]; then
-       KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-DESCRIPTION="Applets for the MATE Desktop and Panel"
-LICENSE="GPL-2 FDL-1.1 LGPL-2"
-SLOT="0"
-
-IUSE="X gtk3 ipv6 policykit +upower"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-#cpupower #593470
-COMMON_DEPEND="${PYTHON_DEPS}
-       dev-libs/atk:0
-       >=dev-libs/dbus-glib-0.74:0
-       >=dev-libs/glib-2.36:2
-       >=dev-libs/libmateweather-1.6.1[gtk3(-)=]
-       >=dev-libs/libxml2-2.5:2
-       dev-python/pygobject:3
-       >=gnome-base/libgtop-2.11.92:2=
-       >=mate-base/mate-panel-1.7[gtk3(-)=]
-       >=net-wireless/wireless-tools-28_pre9:0
-       >=sys-apps/dbus-1.1.2:0
-       <sys-power/cpupower-4.7
-       x11-libs/gdk-pixbuf:2
-       >=x11-libs/libnotify-0.7:0
-       x11-libs/libX11:0
-       x11-libs/pango:0
-       virtual/libintl:0
-       !gtk3? (
-               >=gnome-extra/gucharmap-2.32.1:0
-               >=x11-libs/gtk+-2.24:2
-               x11-libs/gtksourceview:2.0
-               >=x11-libs/libwnck-2.30:1
-       )
-       gtk3? (
-               >=gnome-extra/gucharmap-3.0:2.90
-               >=x11-libs/gtk+-3.0:3
-               x11-libs/gtksourceview:3.0
-               >=x11-libs/libwnck-3.0:3
-       )
-       policykit? ( >=sys-auth/polkit-0.97:0 )
-       upower? (
-               || (
-                       >=sys-power/upower-0.9.23
-                       >=sys-power/upower-pm-utils-0.9.23
-               )
-       )
-       !!net-analyzer/mate-netspeed"
-
-RDEPEND="${COMMON_DEPEND}
-       >=mate-base/mate-settings-daemon-1.6"
-
-DEPEND="${COMMON_DEPEND}
-       app-text/docbook-xml-dtd:4.3
-       app-text/rarian:0
-       >=app-text/scrollkeeper-dtd-1:1.0
-       app-text/yelp-tools:0
-       >=dev-util/intltool-0.50.1:*
-       dev-libs/libxslt:0
-       sys-devel/gettext:*
-       virtual/pkgconfig:*"
-
-PATCHES=( "${FILESDIR}/${PN}-1.14.1-revert-upstream-cpupower-4.7-fix.patch" )
-
-src_configure() {
-       mate_src_configure \
-               --libexecdir=/usr/libexec/mate-applets \
-               --with-cpufreq-lib=cpupower \
-               --with-gtk=$(usex gtk3 3.0 2.0) \
-               $(use_with X x) \
-               $(use_with upower) \
-               $(use_enable ipv6) \
-               $(use_enable policykit polkit)
-}
-
-src_test() {
-       unset DBUS_SESSION_BUS_ADDRESS
-       emake check
-}
-
-src_install() {
-       python_fix_shebang invest-applet
-       mate_src_install
-
-       local APPLETS="accessx-status battstat charpick command cpufreq drivemount
-                       geyes invest-applet mateweather multiload netspeed stickynotes
-                       timerapplet trashapplet"
-
-       for applet in ${APPLETS}; do
-               docinto ${applet}
-
-               for d in AUTHORS ChangeLog NEWS README README.themes TODO; do
-                       [ -s ${applet}/${d} ] && dodoc ${applet}/${d}
-               done
-       done
-}
index 80be46261aa970d1d5973acdb7df4037b044638b..b0eeaf57aae682c0f5de8f923167f37d2c75d070 100644 (file)
@@ -5,9 +5,6 @@
                <email>mate@gentoo.org</email>
                <name>Gentoo MATE Desktop</name>
        </maintainer>
-       <use>
-               <flag name="gtk3">Build with GTK+3 instead of GTK+2</flag>
-       </use>
        <upstream>
                <remote-id type="github">mate-desktop/mate-applets</remote-id>
        </upstream>