[gentoo-commits] repo/gentoo:master commit in: net-libs/libmicrodns/

2020-04-14 Thread Adam Feldman
commit: 93473e2cd16939d513bc064738f4d639e513dd5c
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Apr 14 21:46:47 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Tue Apr 14 21:46:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93473e2c

net-libs/libmicrodns: Drop old

Bug: https://bugs.gentoo.org/714606
Package-Manager: Portage-2.3.96, Repoman-2.3.21
Signed-off-by: Adam Feldman  gentoo.org>

 net-libs/libmicrodns/Manifest |  1 -
 net-libs/libmicrodns/libmicrodns-0.0.9.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/net-libs/libmicrodns/Manifest b/net-libs/libmicrodns/Manifest
index f320b7e3316..213f1c4e11f 100644
--- a/net-libs/libmicrodns/Manifest
+++ b/net-libs/libmicrodns/Manifest
@@ -1,2 +1 @@
-DIST libmicrodns-0.0.9.tar.gz 57333 BLAKE2B 
a9e1d099d4588863dee3c2735a2e3f9cd46212729c342e06cccad1a8e997e85964e7f917ce97f50c0cccd21c1662ef9baf7392333ea666ff65b0577f57bab692
 SHA512 
6f7dbf1a324fed847131745498895ab0773dfc3c7bb96a05bf0fd3df0c0ce19d7f607789f7a5350d34e91e7ba323ee57196eb37ce351f83a9faa82c5fc8d89a8
 DIST microdns-0.1.2.tar.xz 49420 BLAKE2B 
247a82c3bb038487390ba967387e9d4cec638ee5315290387c5b8863afbd45cc0700a3ee6c0308db253a161b5c1d345f77808de96df3f31bfaa2ff74e8fa3c05
 SHA512 
a6b15c65c74560fdba8973c63ffae9cdde4445f54196bb2d7d6348f6c15f8f162ef0a4e91b969ea3f2a60c701c3cc72799fcfba2fbf08c37f71ba8d5e3409702

diff --git a/net-libs/libmicrodns/libmicrodns-0.0.9.ebuild 
b/net-libs/libmicrodns/libmicrodns-0.0.9.ebuild
deleted file mode 100644
index c19ecde564f..000
--- a/net-libs/libmicrodns/libmicrodns-0.0.9.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Minimal mDNS resolver (and announcer) library"
-HOMEPAGE="https://videolabs.io";
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/videolabs/${PN}";
-else
-   SRC_URI="https://github.com/videolabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm arm64 ppc ppc64 x86"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-0.0.9-null-addr-fix.patch" )
-
-src_prepare() {
-   default
-   eautoreconf
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libmicrodns/files/

2020-04-15 Thread Adam Feldman
commit: 3d3963ec449fd7756d6141d42f9bfad0d16e9ea9
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed Apr 15 16:20:02 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Apr 15 23:55:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d3963ec

net-libs/libmicrodns: remove unused patch(es)

Package-Manager: Portage-2.3.98, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15357
Signed-off-by: Adam Feldman  gentoo.org>

 .../files/libmicrodns-0.0.9-null-addr-fix.patch| 24 --
 1 file changed, 24 deletions(-)

diff --git a/net-libs/libmicrodns/files/libmicrodns-0.0.9-null-addr-fix.patch 
b/net-libs/libmicrodns/files/libmicrodns-0.0.9-null-addr-fix.patch
deleted file mode 100644
index e2bb711c7c1..000
--- a/net-libs/libmicrodns/files/libmicrodns-0.0.9-null-addr-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From efdf2754f9f8b801048b8fdae2b269f091128193 Mon Sep 17 00:00:00 2001
-From: Jean-Baptiste Kempf 
-Date: Thu, 1 Mar 2018 02:58:13 +0100
-Subject: [PATCH] Fix more of the same crash
-

- src/mdns.c | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/src/mdns.c b/src/mdns.c
-index 132beef..55c5cb4 100644
 a/src/mdns.c
-+++ b/src/mdns.c
-@@ -117,7 +117,9 @@ mdns_list_interfaces(multicast_if** pp_intfs, size_t* 
p_nb_intf, int ai_family)
- return (MDNS_ERROR);
- }
- for (c = ifs; c != NULL; c = c->ifa_next) {
--if (c->ifa_addr->sa_family != ai_family || 
!mdns_is_interface_valuable(c))
-+if (c->ifa_addr == NULL ||
-+c->ifa_addr->sa_family != ai_family ||
-+!mdns_is_interface_valuable(c))
- continue;
- memcpy(intfs, c->ifa_addr, sizeof(*intfs));
- intfs++;



[gentoo-commits] repo/gentoo:master commit in: app-arch/engrampa/

2020-05-07 Thread Adam Feldman
commit: c5aea2fef492a7c4e2521e9638d906e20aa39b32
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:07:17 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5aea2fe

app-arch/engrampa: Drop old

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

 app-arch/engrampa/Manifest  |  1 -
 app-arch/engrampa/engrampa-1.22.1-r1.ebuild | 75 -
 2 files changed, 76 deletions(-)

diff --git a/app-arch/engrampa/Manifest b/app-arch/engrampa/Manifest
index 2d82dcf79f7..d0956f39d9d 100644
--- a/app-arch/engrampa/Manifest
+++ b/app-arch/engrampa/Manifest
@@ -1,3 +1,2 @@
-DIST engrampa-1.22.1.tar.xz 1363488 BLAKE2B 
0f71e94af50443f9f562b0eed461ca1160fab0a5a3cd02c845fac09ee2466cb8634a458a6a4488ff5ac6674b0f525eccf754b8b1cc7e3f1729d4eb6ac224e025
 SHA512 
111eeb470555ae8edb7754159bb2e70b03cbbc7b1c9d61c253d9d67e50d84ff0e0654e16547883c39aeeb223e8ba58201d45b50819784fc6cf7a21f0cf176c70
 DIST engrampa-1.22.3.tar.xz 1407412 BLAKE2B 
d6963da4c18137600c26cff01b2a42d2aaf9a8a435779593b7712e6f7ff920fd25b5fa462edd3d321d63f131b3e4a4486a6f795f2392f6679ae3ef9b343fe8e1
 SHA512 
fd110b2bc188207645985a6f788b8e618cb4910a275950dfb17c0bcc42eff8765a4c7a36760dec2636485685a7a2f4adefb8e2c83537d1b3a819582e3878c9db
 DIST engrampa-1.24.0.tar.xz 1678920 BLAKE2B 
c40ba6a77d667f25853f6ae8cef51a54b32402e9446d6712bcfe8b6cfbddcc39e076604fad6ead1717bcedc52716be028ac9bf912c5762fa204e3ee5d6be10bb
 SHA512 
b6996e224ef52d8fd7102e4498193faa62056e8c22aa260ab5c6361533744f78755d500536ec0e03fd8b42b71da56d3f58d9d760809d20b572bee02fdee07cce

diff --git a/app-arch/engrampa/engrampa-1.22.1-r1.ebuild 
b/app-arch/engrampa/engrampa-1.22.1-r1.ebuild
deleted file mode 100644
index dbd3baf302e..000
--- a/app-arch/engrampa/engrampa-1.22.1-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate readme.gentoo-r1
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Engrampa archive manager for MATE"
-LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
-SLOT="0"
-
-IUSE="caja magic packagekit"
-
-RDEPEND="
-   >=dev-libs/glib-2.50:2
-   >=dev-libs/json-glib-0.14
-   virtual/libintl
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3[X]
-   x11-libs/pango
-   caja? ( >=mate-base/caja-1.17.1 )
-   magic? ( sys-apps/file )
-   packagekit? ( app-admin/packagekit-base )
-   !!app-arch/mate-file-archiver"
-
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   dev-util/glib-utils
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-DISABLE_AUTOFORMATTING="yes"
-DOC_CONTENTS="
-${PN} is a frontend for several archiving utilities. If you want
-support for a particular archive format,install the relevant package:
-
-7-zip   : emerge app-arch/p7zip
-ace : emerge app-arch/unace
-arj : emerge app-arch/arj
-cpio: emerge app-arch/cpio
-deb : emerge app-arch/dpkg
-iso : emerge app-cdr/cdrtools
-jar,zip : emerge app-arch/zip  or  emerge app-arch/unzip
-lha : emerge app-arch/lha
-lzma: emerge app-arch/xz-utils
-lzop: emerge app-arch/lzop
-rar : emerge app-arch/unrar
-rpm : emerge app-arch/rpm
-unstuff : emerge app-arch/stuffit
-zoo : emerge app-arch/zoo"
-
-src_configure() {
-   mate_src_configure \
-   --disable-run-in-place \
-   $(use_enable caja caja-actions) \
-   $(use_enable magic) \
-   $(use_enable packagekit)
-}
-
-src_install() {
-   mate_src_install
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   mate_pkg_postinst
-   readme.gentoo_print_elog
-}



[gentoo-commits] repo/gentoo:master commit in: mate-extra/caja-extensions/

2020-05-07 Thread Adam Feldman
commit: 936280f2bb980ab75e8f9a653ba63e4e1039c77e
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 03:07:09 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=936280f2

mate-extra/caja-extensions: Drop old

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

 mate-extra/caja-extensions/Manifest|  1 -
 .../caja-extensions/caja-extensions-1.22.0.ebuild  | 74 --
 2 files changed, 75 deletions(-)

diff --git a/mate-extra/caja-extensions/Manifest 
b/mate-extra/caja-extensions/Manifest
index 29431e77d92..ff363a9e59f 100644
--- a/mate-extra/caja-extensions/Manifest
+++ b/mate-extra/caja-extensions/Manifest
@@ -1,3 +1,2 @@
-DIST caja-extensions-1.22.0.tar.xz 444704 BLAKE2B 
d14f14e2ab18e9e6ea9c039d675e2948c309d470b1532e0585915f324bcf52a8e8425fdf0b6e725014e8813eefad77300172843c2118d098811b2b349d218fd1
 SHA512 
19fd287123b8d2ba67b636066e9f8910aadd47d375eb1d52136d9b808b48abacade81dde490ce3edb6fc4a9d2ddfd39d9abf294a58aed8bcaf620c1eff03e761
 DIST caja-extensions-1.22.1.tar.xz 439516 BLAKE2B 
2135e5a30c86b6f83396b9f80ff474355fe02c652cd898728431eddef22a6804e7a4ea15579b03c0984417e81f8ba89ff856aa384e94d5168b6a883e678b683a
 SHA512 
4c0fb47a251d4118c83a985732d8a549355907519b746a68eb8843c84328d868eec1535b68484c46e3d0bf4b42f0e0340fe178714f50b5f7cc8434c0e1883906
 DIST caja-extensions-1.24.0.tar.xz 548828 BLAKE2B 
0492e1f0ca7277737102f71fd195dd585614010b80c2aafd730aacd1d817b03fe0377c430615a3e4bd4a643558c02c9c4fdb2d451079a3b213fe0e6b9d4e02de
 SHA512 
f05a7d83f16aebacb04f75b76ca86e44c1a01d9ad6c2aefeac19398c4d9da8385e6852fa0118c763aee630e7eb6c7c81d77e0c9452200aee9cf4f058487c4dbf

diff --git a/mate-extra/caja-extensions/caja-extensions-1.22.0.ebuild 
b/mate-extra/caja-extensions/caja-extensions-1.22.0.ebuild
deleted file mode 100644
index 3f9edda48e1..000
--- a/mate-extra/caja-extensions/caja-extensions-1.22.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Several Caja extensions"
-LICENSE="GPL-2+"
-SLOT="0"
-
-SENDTO="cdr gajim +mail pidgin upnp"
-IUSE="image-converter +open-terminal share +wallpaper xattr ${SENDTO}"
-
-COMMON_DEPEND=">=dev-libs/glib-2.50:2
-   >=mate-base/caja-1.21.3
-   virtual/libintl
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3
-   gajim? (
-   >=dev-libs/dbus-glib-0.60
-   >=sys-apps/dbus-1
-   )
-   open-terminal? ( >=mate-base/mate-desktop-1.17.0 )
-   pidgin? ( >=dev-libs/dbus-glib-0.60 )
-   upnp? ( >=net-libs/gupnp-0.13:0/4 )
-   xattr? ( sys-apps/attr )"
-
-RDEPEND="${COMMON_DEPEND}
-   cdr? ( >=app-cdr/brasero-2.32.1:= )
-   gajim? ( net-im/gajim )
-   image-converter? (
-   || (
-   media-gfx/imagemagick
-   media-gfx/graphicsmagick[imagemagick]
-   )
-   )
-   pidgin? ( net-im/pidgin )"
-
-DEPEND="${COMMON_DEPEND}
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.18:*
-   sys-devel/gettext:*
-   virtual/pkgconfig:*
-   !!mate-extra/mate-file-manager-open-terminal
-   !!mate-extra/mate-file-manager-sendto
-   !!mate-extra/mate-file-manager-image-converter
-   !!mate-extra/mate-file-manager-share"
-
-src_configure() {
-   local sendto_plugins="removable-devices"
-   use cdr && sendto_plugins+=",caja-burn"
-   use mail && sendto_plugins+=",emailclient"
-   use pidgin && sendto_plugins+=",pidgin"
-   use gajim && sendto_plugins+=",gajim"
-   use upnp && sendto_plugins+=",upnp"
-
-   mate_src_configure \
-   --enable-sendto \
-   --with-sendto-plugins=${sendto_plugins}\
-   --disable-gksu \
-   $(use_enable image-converter) \
-   $(use_enable open-terminal) \
-   $(use_enable share) \
-   $(use_enable wallpaper) \
-   $(use_enable xattr xattr-tags)
-}



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-utils/

2020-05-07 Thread Adam Feldman
commit: 2756c287e4caaf5ab56bedad1f0856fb1eaaa009
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:33:53 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2756c287

mate-extra/mate-utils: Stabilize 1.22.2-r1 for amd64,x86

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

 mate-extra/mate-utils/mate-utils-1.22.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/mate-utils/mate-utils-1.22.2-r1.ebuild 
b/mate-extra/mate-utils/mate-utils-1.22.2-r1.ebuild
index 63022e807b7..b58cd086c83 100644
--- a/mate-extra/mate-utils/mate-utils-1.22.2-r1.ebuild
+++ b/mate-extra/mate-utils/mate-utils-1.22.2-r1.ebuild
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="Utilities for the MATE desktop"



[gentoo-commits] repo/gentoo:master commit in: app-editors/pluma/

2020-05-07 Thread Adam Feldman
commit: 4b6771a43dbce67e8c359c3cd920de15150a8cdc
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:41:14 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b6771a4

app-editors/pluma: Stabilize 1.22.2 for amd64,x86

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

 app-editors/pluma/pluma-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/pluma/pluma-1.22.2.ebuild 
b/app-editors/pluma/pluma-1.22.2.ebuild
index f1278f5501c..1ed9fe55328 100644
--- a/app-editors/pluma/pluma-1.22.2.ebuild
+++ b/app-editors/pluma/pluma-1.22.2.ebuild
@@ -10,7 +10,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit mate python-single-r1 virtualx
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="Pluma text editor for the MATE desktop"



[gentoo-commits] repo/gentoo:master commit in: app-text/atril/

2020-05-07 Thread Adam Feldman
commit: 6deb5ee1bdf855faad7287fdb89cc60f62b18259
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 03:03:49 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6deb5ee1

app-text/atril: Drop old

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

 app-text/atril/Manifest|  1 -
 app-text/atril/atril-1.22.1.ebuild | 90 --
 2 files changed, 91 deletions(-)

diff --git a/app-text/atril/Manifest b/app-text/atril/Manifest
index c4442d648a8..3af59acb68d 100644
--- a/app-text/atril/Manifest
+++ b/app-text/atril/Manifest
@@ -1,3 +1,2 @@
-DIST atril-1.22.1.tar.xz 1766980 BLAKE2B 
0b7b1a7dfff13c5d803fed4140596940b20a322fce54c9f0faecd8e80bdc1e5e498603851a10a88763b20444377bcf4e7b124ac08953ab6aa4b3b2cce021a46c
 SHA512 
838ae397c868ac417c9266e4a06525d66214650cf8647e91c1472d83d50c8954f6dbb29411384892a98f0929e1fbac9947118bd0db10d50400fc0d5270a3619d
 DIST atril-1.22.3.tar.xz 1798396 BLAKE2B 
1f06585393e1a9a6d51b7cc50c52bd61e8e115aa3985ffca0233c2e09219a88c3a30b4ddbcc70bfb9ddf663810e6cc67e968f8a32bfd4a3f07b4646e896a7f18
 SHA512 
f4a83702818e1fb32279c67f1727c01480d27fe756f3fc0ff9dcd42584ce74ce10ac7ee81c0149f3756b6eb08f2a011ede28706ab54ff16a51c544a1af3b103f
 DIST atril-1.24.0.tar.xz 2062468 BLAKE2B 
374c7769f5c9753b1d9a6143c796a317914aebbb638b6f0a85b732b43b0e9ad2fff1374a5f3f4dc1abc8c265ce003bfef2cddc47cdb18ddc7f24c4905ef5232c
 SHA512 
dfdd5ed82ba76c4f0a446a95b0a6201bedf8b4d00ff46ce697a5b937251f6d7a1888ca76eef623eb84dcddb425c7ad662e179f593686bba064b7491d4d940293

diff --git a/app-text/atril/atril-1.22.1.ebuild 
b/app-text/atril/atril-1.22.1.ebuild
deleted file mode 100644
index c5b3e71e514..000
--- a/app-text/atril/atril-1.22.1.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Atril document viewer for MATE"
-LICENSE="FDL-1.1+ GPL-2+ GPL-3+ LGPL-2+ LGPL-2.1+"
-SLOT="0"
-
-IUSE="caja dbus debug djvu dvi epub +introspection gnome-keyring +postscript 
t1lib tiff xps"
-
-REQUIRED_USE="t1lib? ( dvi )"
-
-RDEPEND="
-   >=app-text/poppler-0.22[cairo]
-   dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   >=dev-libs/libxml2-2.5:2
-   sys-libs/zlib
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libICE
-   >=x11-libs/libSM-1:0
-   x11-libs/libX11
-   >=x11-libs/cairo-1.9.10
-   x11-libs/pango
-   caja? ( >=mate-base/caja-1.17.1[introspection?] )
-   djvu? ( >=app-text/djvu-3.5.17:0 )
-   dvi? (
-   virtual/tex-base
-   t1lib? ( >=media-libs/t1lib-5:5 )
-   )
-   epub? (
-   dev-libs/mathjax
-   >=net-libs/webkit-gtk-2.4.3:4
-   )
-   gnome-keyring? ( >=app-crypt/libsecret-0.5 )
-   introspection? ( >=dev-libs/gobject-introspection-0.6:= )
-   postscript? ( >=app-text/libspectre-0.2 )
-   tiff? ( >=media-libs/tiff-3.6:0 )
-   xps? ( >=app-text/libgxps-0.2.1 )
-   !!app-text/mate-document-viewer"
-
-DEPEND="${RDEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/rarian
-   app-text/yelp-tools
-   >=app-text/scrollkeeper-dtd-1:1.0
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-# Tests use dogtail which is not available on Gentoo.
-RESTRICT="test"
-
-src_configure() {
-   # Passing --disable-help would drop offline help, that would be 
inconsistent
-   # with helps of the most of GNOME apps that doesn't require network for 
that.
-   mate_src_configure \
-   --disable-tests \
-   --enable-comics \
-   --enable-pdf \
-   --enable-pixbuf \
-   --enable-previewer \
-   --enable-thumbnailer \
-   $(use_with gnome-keyring keyring) \
-   $(use_enable caja) \
-   $(use_enable dbus) \
-   $(use_enable debug) \
-   $(use_enable djvu) \
-   $(use_enable dvi) \
-   $(use_enable epub) \
-   $(use_enable introspection) \
-   $(use_enable postscript ps) \
-   $(use_enable t1lib) \
-   $(use_enable tiff) \
-   $(use_enable xps)
-}



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-applets/files/, mate-base/mate-applets/

2020-05-07 Thread Adam Feldman
commit: 53818829a0af53a5ec1975e9fdd6cd8fd746471e
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:14:18 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53818829

mate-base/mate-applets: Drop old

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

 mate-base/mate-applets/Manifest|  2 -
 .../files/mate-applets-1.22.0-cpupower.patch   | 53 -
 mate-base/mate-applets/mate-applets-1.22.0.ebuild  | 86 --
 mate-base/mate-applets/mate-applets-1.22.1.ebuild  | 85 -
 4 files changed, 226 deletions(-)

diff --git a/mate-base/mate-applets/Manifest b/mate-base/mate-applets/Manifest
index d953a28a8e2..9bfa42e070b 100644
--- a/mate-base/mate-applets/Manifest
+++ b/mate-base/mate-applets/Manifest
@@ -1,4 +1,2 @@
-DIST mate-applets-1.22.0.tar.xz 7739668 BLAKE2B 
dc3768d2f5eb987907f1ffb1a049dff990140c66c51427dc9095298be92b17b2b1e9695f3c35dae73433e1e50d05477e94aad1697b2bf15706515c16150096d7
 SHA512 
2f3e17414171ec5ab6967b76b1291d99783c3091b51127788f99148f46d5f2068edf7d890c3ebca1a59c29cbda4a06be11c852e5e88d4dc58e9981d906c9e34c
-DIST mate-applets-1.22.1.tar.xz 7602112 BLAKE2B 
22dc076d188cddf9c5160d7ecaddb14ecc41a575abac91b72959054f3fe1c961c80b1aa9171150e7c4ce61ccee0783572726386319312dc97f64d4f9266c1a6d
 SHA512 
d132c8b5e433a557785745032235a5792d04edd7c249269d9a4066fb345b76955bdca71164f7b321f41f566803694d85d9cd7690fbd699daa54788572f0eb986
 DIST mate-applets-1.22.2.tar.xz 7648744 BLAKE2B 
85235f12c1436c3caaa6429aabd16822ae34c5c4bd7a575aa9be2c2e9080734b39180e34b22fdf265a64b5ebffb24071d8768b99f55736631403da02882e45fe
 SHA512 
a57ed37d6ddef303e40cbd8f811d1c6be47378a5b56c5eb280d7dba10668678bf9203425f735fb3b356f4ec33eb2369867aa3ab4b446748fe36b80194e8f
 DIST mate-applets-1.24.0.tar.xz 8142812 BLAKE2B 
cbb76d6d64bb6e9b9f93197dbe79e2751877b0604c5a84ff4b6b00608f2930925bdbc2824dc96848c84496fa5f16ab38458775727b22cb07f4db9ca854f93c42
 SHA512 
345a80b123c705997d44ac5a4bea5249045d75181c3802cf49b2eb08decc14a12f75f2e06e6ebfae267b937ff10edf7638cd64332e2e2e731695e6260df5222e

diff --git a/mate-base/mate-applets/files/mate-applets-1.22.0-cpupower.patch 
b/mate-base/mate-applets/files/mate-applets-1.22.0-cpupower.patch
deleted file mode 100644
index 9c1a80e9375..000
--- a/mate-base/mate-applets/files/mate-applets-1.22.0-cpupower.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index b49d127..6b87389 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -370,6 +370,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 
-  */
- 
-+#include 
-+
- #include 
- #include 
- 
- #include 
--#include 
- #include 
-+#ifdef HAVE_CPUPOWER_H
-+#include 
-+#endif
- #include "cpufreq-monitor-libcpufreq.h"
- #include "cpufreq-utils.h"
-
-@@ -98,7 +102,7 @@
- return CPUFREQ_MONITOR (monitor);
- }
- 
--#if LINUX_VERSION_CODE > KERNEL_VERSION(4, 7, 0)
-+#ifndef HAVE_CPUPOWER_H
- extern int cpupower_is_cpu_online (unsigned int cpu);
- #endif
-  
-@@ -115,7 +119,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/mate-applets-1.22.0.ebuild 
b/mate-base/mate-applets/mate-applets-1.22.0.ebuild
deleted file mode 100644
index 077a17c344d..000
--- a/mate-base/mate-applets/mate-applets-1.22.0.ebuild
+++ /dev/null
@@ -1,86 +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="Applets for the MATE Desktop and Panel"
-LICENSE="CC-BY-SA-3.0 FDL-1.1+ GPL-2+ GPL-3+ LGPL-2+"
-SLOT="0"
-
-IUSE="X ipv6 policykit +upower"
-
-COMMON_DEPEND="dev-libs/atk
-   >=dev-libs/dbus-glib-0.74
-   >=dev-libs/glib-2.50:2
-   >=dev-libs/libmateweather-1.17.0
-   >=dev-libs/libxml2-2.5:2
-   dev-python/pygobject:3
-   >=gnome-base/libgtop-2.12.0:2=
-   >=gnome-extra/gucharmap-3.0:2.90
-   >=mate-base/mate-panel-1.17.0
-   >=net-wireless/wireless-tools-28_pre9:0
-  

[gentoo-commits] repo/gentoo:master commit in: x11-terms/mate-terminal/

2020-05-07 Thread Adam Feldman
commit: 4b52dc94bd1b86f6649ae969f9447d6ce5c14729
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:29:16 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b52dc94

x11-terms/mate-terminal: Drop old

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

 x11-terms/mate-terminal/Manifest   |  1 -
 .../mate-terminal/mate-terminal-1.22.0.ebuild  | 39 --
 2 files changed, 40 deletions(-)

diff --git a/x11-terms/mate-terminal/Manifest b/x11-terms/mate-terminal/Manifest
index 52ab4fe9e4b..f3bb348c483 100644
--- a/x11-terms/mate-terminal/Manifest
+++ b/x11-terms/mate-terminal/Manifest
@@ -1,3 +1,2 @@
-DIST mate-terminal-1.22.0.tar.xz 1538540 BLAKE2B 
490ff1e2a0d8c93b2ab2479c8a735867f55585d82d353cd7a150f1fd5e4e1319dc25832628b464572734efc2fa4917b49b7d4fe5d63b78ce6ea5601e4611
 SHA512 
45932db8c50348386a58ee7acaf08af43e28bd495dac08b4dcff5defd1c10189163bdfd73c61015674d61f275dabc2f749b2e0cbf9981c7dfdef5a4060686645
 DIST mate-terminal-1.22.1.tar.xz 1543900 BLAKE2B 
9c5d92525391603f3dd06444c07d892bbae43c03da7f09414901ee31ce8497e65dfca9f184c8186bead91c27c99c69a528ad2021983ad074023781b275e2b748
 SHA512 
b20102c15dc140b59c93802606ca94fd108dfd5f7ac7f079b872e957794fc2c3aab40c0e6da697e8d393a67fca7b106573a4cb8014af5d6c8ad777be3a798534
 DIST mate-terminal-1.24.0.tar.xz 2084772 BLAKE2B 
82909eb210bf5f0848e35b06b8569b22ba35ff515b2f90bc20e1766564997c7a44080597ac2efa825a8f9793f64c56136dd977b86e4d88e0886bb0e70c772e79
 SHA512 
2ad25411a8e720d3ef43964dc9f80732e215b1b5154e904069d25e73910c0c8f0e1b100d21f85b9a1eec06f6b17f891791445f7830bb52fc44b67fa3f8cebf76

diff --git a/x11-terms/mate-terminal/mate-terminal-1.22.0.ebuild 
b/x11-terms/mate-terminal/mate-terminal-1.22.0.ebuild
deleted file mode 100644
index 8fda2f9a7d1..000
--- a/x11-terms/mate-terminal/mate-terminal-1.22.0.ebuild
+++ /dev/null
@@ -1,39 +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 Terminal"
-LICENSE="FDL-1.1+ GPL-3+ LGPL-3+"
-SLOT="0"
-
-IUSE=""
-
-COMMON_DEPEND="dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   >=gnome-base/dconf-0.13.4
-   x11-libs/gdk-pixbuf:2
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/pango
-   >=x11-libs/gtk+-3.22:3[X]
-   >=x11-libs/vte-0.46:2.91"
-
-RDEPEND="${COMMON_DEPEND}
-   >=mate-base/mate-desktop-1.6"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/rarian
-   >=app-text/scrollkeeper-dtd-1:1.0
-   app-text/yelp-tools
-   dev-util/glib-utils
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-indicator-applet/

2020-05-07 Thread Adam Feldman
commit: 11e3e0bcc3e02df39ddf37e42d92c197fc6cad37
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:22:10 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e3e0bc

mate-extra/mate-indicator-applet: Stabilize 1.22.1 for amd64,x86

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

 mate-extra/mate-indicator-applet/mate-indicator-applet-1.22.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/mate-extra/mate-indicator-applet/mate-indicator-applet-1.22.1.ebuild 
b/mate-extra/mate-indicator-applet/mate-indicator-applet-1.22.1.ebuild
index c554bb2e477..02aae41238c 100644
--- a/mate-extra/mate-indicator-applet/mate-indicator-applet-1.22.1.ebuild
+++ b/mate-extra/mate-indicator-applet/mate-indicator-applet-1.22.1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate eapi7-ver
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~x86"
+   KEYWORDS="amd64 ~arm x86"
 fi
 
 DESCRIPTION="MATE indicator applet"



[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-icon-theme-faenza/

2020-05-07 Thread Adam Feldman
commit: 0bedd9a2dfcd9671c178946b85452ea830b66ac1
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:16:30 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bedd9a2

x11-themes/mate-icon-theme-faenza: Drop old

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

 x11-themes/mate-icon-theme-faenza/Manifest |  1 -
 .../mate-icon-theme-faenza-1.18.1.ebuild   | 31 --
 2 files changed, 32 deletions(-)

diff --git a/x11-themes/mate-icon-theme-faenza/Manifest 
b/x11-themes/mate-icon-theme-faenza/Manifest
index 3bdd17eed15..356f1080a97 100644
--- a/x11-themes/mate-icon-theme-faenza/Manifest
+++ b/x11-themes/mate-icon-theme-faenza/Manifest
@@ -1,2 +1 @@
-DIST mate-icon-theme-faenza-1.18.1.tar.xz 19330596 BLAKE2B 
dc7dfb5ac21b4caf19a7d4672d8ec39b9d6f4fd0762c40dd598ad98c446059d53aa6d7a291a391126e18bfb3d16369415a06d91d11ba34d3e336ad1c9a30daa1
 SHA512 
16ddccf5b69c69a8a6c8167c38ef4603c997b756e222e61d7b2d1540598efabde01cafbc1248082054e92d078dcc792f2afd1c68ceedcbf15846cdbe6241875b
 DIST mate-icon-theme-faenza-1.20.0.tar.xz 19327552 BLAKE2B 
ce6162080d2dc1d3476970a17b37e200f3669e4c482b1e257a4b47d8a7329888966edbdf805fb360927b0eece72c4597ee5b4f2a7ee5a429f7908310199e946e
 SHA512 
361de34fde13c6a14fdac5aa1af90aa784f639d64c0bf332c18b580cb6b4d1a10d7d188fa6b19ecda125c8bbb1fc5c63ab1d5e9ae31c512f2ec3eea288aa023d

diff --git 
a/x11-themes/mate-icon-theme-faenza/mate-icon-theme-faenza-1.18.1.ebuild 
b/x11-themes/mate-icon-theme-faenza/mate-icon-theme-faenza-1.18.1.ebuild
deleted file mode 100644
index ee48d278624..000
--- a/x11-themes/mate-icon-theme-faenza/mate-icon-theme-faenza-1.18.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2018 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="Faenza icon theme, that was adapted for MATE desktop"
-LICENSE="GPL-3"
-SLOT="0"
-
-IUSE="minimal"
-
-RDEPEND="x11-themes/hicolor-icon-theme:0
-   !minimal? ( >=x11-themes/mate-icon-theme-${MATE_BRANCH} )"
-
-RESTRICT="binchecks strip"
-
-# https://github.com/mate-desktop/mate-icon-theme-faenza/issues/13
-MATE_FORCE_AUTORECONF=true
-
-src_prepare() {
-   # Remove broken libreoffice icons (dangling symlinks).
-   rm matefaenza/apps/16/*libreoffice* || die
-
-   mate_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/atril/

2020-05-07 Thread Adam Feldman
commit: cc371225534261b771c30c50e5f0e19c1591ad06
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 02:58:57 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc371225

app-text/atril: Stabilize 1.22.3 for amd64,x86

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

 app-text/atril/atril-1.22.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/atril/atril-1.22.3.ebuild 
b/app-text/atril/atril-1.22.3.ebuild
index db8529d7bdb..c5b3e71e514 100644
--- a/app-text/atril/atril-1.22.3.ebuild
+++ b/app-text/atril/atril-1.22.3.ebuild
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="Atril document viewer for MATE"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-user-share/

2020-05-07 Thread Adam Feldman
commit: 5ae8a7cb0a9edcddc9fd77a2f46e988dfcf4234e
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:30:33 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ae8a7cb

mate-extra/mate-user-share: Stabilize 1.22.1 for amd64,x86

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

 mate-extra/mate-user-share/mate-user-share-1.22.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/mate-user-share/mate-user-share-1.22.1.ebuild 
b/mate-extra/mate-user-share/mate-user-share-1.22.1.ebuild
index 4d22498948d..3373fa4c543 100644
--- a/mate-extra/mate-user-share/mate-user-share-1.22.1.ebuild
+++ b/mate-extra/mate-user-share/mate-user-share-1.22.1.ebuild
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~x86"
+   KEYWORDS="amd64 ~arm x86"
 fi
 
 DESCRIPTION="Personal file sharing for the MATE desktop"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-netbook/

2020-05-07 Thread Adam Feldman
commit: 0832762269da8a8acf2334799bf9ff1da91f4a00
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:25:06 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08327622

mate-extra/mate-netbook: Drop old

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

 mate-extra/mate-netbook/Manifest   |  1 -
 mate-extra/mate-netbook/mate-netbook-1.22.1.ebuild | 35 --
 2 files changed, 36 deletions(-)

diff --git a/mate-extra/mate-netbook/Manifest b/mate-extra/mate-netbook/Manifest
index e7ee4111bad..22c997fe723 100644
--- a/mate-extra/mate-netbook/Manifest
+++ b/mate-extra/mate-netbook/Manifest
@@ -1,3 +1,2 @@
-DIST mate-netbook-1.22.1.tar.xz 307776 BLAKE2B 
8d10de7926023d1c0e9a92c2a55306db797e156948096936864332a79f0bdf91406df2ecf523b951eb6b1d0770dfbe705d913d75c74043bc78f765615af76bdf
 SHA512 
d0ba10d798e779e89b656a5bab2f5524c36755d58b877ba18482171c7673c5217ecf39b8098ff7b258634fbae62638d70bdf11e17f02f47c68ca96058f0ebb03
 DIST mate-netbook-1.22.2.tar.xz 308168 BLAKE2B 
5b73d3299dc725d6f342535599bc38047c4d90f2e6aa953f07e81b9f2f71723124b0cf6574b44f96644b5c5804e8a8319d9870c491210dc4714f6d2c40d0a472
 SHA512 
caaa841857b86592dd7417fa77e8211d1527f8234cd248a00a3a74b2b1487bd1c06a4bfde44818e1c3b0a64350b94e47d8bfdbcd545d787365dfd76c3af2ff71
 DIST mate-netbook-1.24.0.tar.xz 356072 BLAKE2B 
843e90753e660e531377cc25880a1bbab8a8f200c293bd05454fbb2d27f333684cd1429bfa5596c308c039505752d53156bd83fc09e6eba955eea7267eb502ac
 SHA512 
fd2efbfaa3fb53f96bf9bff28eba70d3cd46b723a63e6748af0cb8314821cbafdc8d0122d402e89ac2742247685e630544f3d98149514114de5a3e38f7fbe471

diff --git a/mate-extra/mate-netbook/mate-netbook-1.22.1.ebuild 
b/mate-extra/mate-netbook/mate-netbook-1.22.1.ebuild
deleted file mode 100644
index f440977f066..000
--- a/mate-extra/mate-netbook/mate-netbook-1.22.1.ebuild
+++ /dev/null
@@ -1,35 +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="MATE utilities for netbooks"
-LICENSE="LGPL-2+ GPL-3"
-SLOT="0"
-
-IUSE=""
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.50:2
-   >=mate-base/mate-panel-1.17.0
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libfakekey
-   x11-libs/libwnck:3
-   x11-libs/libXtst
-   x11-libs/libX11
-   x11-libs/cairo
-   virtual/libintl"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   x11-base/xorg-proto
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext:*
-   virtual/pkgconfig:*"



[gentoo-commits] repo/gentoo:master commit in: x11-misc/mozo/

2020-05-07 Thread Adam Feldman
commit: 2d23d74ef84a5be3ee1447d1efd76cb669795f09
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:37:32 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d23d74e

x11-misc/mozo: Drop old

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

 x11-misc/mozo/Manifest   |  2 --
 x11-misc/mozo/mozo-1.22.0.ebuild | 66 
 x11-misc/mozo/mozo-1.22.1.ebuild | 66 
 3 files changed, 134 deletions(-)

diff --git a/x11-misc/mozo/Manifest b/x11-misc/mozo/Manifest
index 932df418331..65afca0ef6c 100644
--- a/x11-misc/mozo/Manifest
+++ b/x11-misc/mozo/Manifest
@@ -1,4 +1,2 @@
-DIST mozo-1.22.0.tar.xz 178924 BLAKE2B 
6cc74cbdb7342d926483948391798cc9b0be66b63bba758b7ec8cea3fae01f1ecf279053612ed060a283076bdac1a9ef8bd15e3cfe61d96685aeee168ae0
 SHA512 
f3d60e94d9bf5fdd435320856563622f0687cc2844a3d51473bcef5c442f4938a4030533271ead2fd88fb0ce805c16b40d629e5a69fc642e7e670a1afd5745db
-DIST mozo-1.22.1.tar.xz 171976 BLAKE2B 
c4a1166b605d3fed68b71987dbf70b7f908aabc2c7266415b0d7ce4c8ccb93ad690c72ce83a708f9d3518cfba66128d2cd4bc5413432133299595cf4d2c5a43c
 SHA512 
6cd4ed04d43ae064077fc78ed59644bf6efe4c65c26995742166c57333d470fbe95ca4f4037e786f16dc076e75d938868948e8c2e5c662f35d971b36992f1a9b
 DIST mozo-1.22.2.tar.xz 172644 BLAKE2B 
15e643cfdceb1d62f7fd1499a42bb92a4dd8485adc764d304a2b3f31ffac962fa48f2af402564a6c1598fc97ae19288f4281bc19e9ba6855aeb329ec09bbe4ab
 SHA512 
c5122b37036291ea7a2ecdb2a2ca37bf63d88404f8fb608c45917a28f4e5996d862764ea5e33544027f8f1f144387de40e204aa69b07d5a590b76aca29e1ad71
 DIST mozo-1.24.0.tar.xz 228180 BLAKE2B 
6eb880b82dcb608f84efd8df74e77812f9da68dfa877ec896c6f04fa18088e8e4a82641c715e3620201dbb8a1bea8bb4ded09dd72f50770edae09c1326cbf453
 SHA512 
e0d217d2e7bb7d2c8df777e51bfb20e8bf4fa1bee0f9f3a9348ec1c8501b386a4afbd8848735ecfa61a0f9576382d784d3ef5b884a2a34af6ba33d3a126fe193

diff --git a/x11-misc/mozo/mozo-1.22.0.ebuild b/x11-misc/mozo/mozo-1.22.0.ebuild
deleted file mode 100644
index 5acaed059cd..000
--- a/x11-misc/mozo/mozo-1.22.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-PYTHON_REQ_USE="xml"
-
-inherit python-r1 mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Mozo menu editor for MATE"
-LICENSE="GPL-2+ GPL-3+ LGPL-2+ LGPL-2.1+"
-SLOT="0"
-IUSE=""
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-COMMON_DEPEND="${PYTHON_DEPS}
-   >=dev-python/pygobject-3:3[${PYTHON_USEDEP}]
-   >=mate-base/mate-menus-1.21.0[introspection]
-   x11-libs/gdk-pixbuf:2[introspection]
-   >=x11-libs/gtk+-3.22:3[introspection]
-   virtual/libintl
-   !!x11-misc/mate-menu-editor"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.40
-   sys-devel/gettext:*
-   virtual/pkgconfig:*"
-
-src_prepare() {
-   mate_src_prepare
-   python_copy_sources
-}
-
-src_configure() {
-   python_foreach_impl run_in_build_dir mate_src_configure \
-   --disable-icon-update
-}
-
-src_compile() {
-   python_foreach_impl run_in_build_dir default
-}
-
-src_test() {
-   python_foreach_impl run_in_build_dir emake check
-}
-
-src_install() {
-   installing() {
-   mate_src_install
-
-   # Massage shebang to make python_doscript happy
-   sed -e 's:#! '"${PYTHON}:#!/usr/bin/python:" \
-   -i mozo || die
-
-   python_doscript mozo
-   }
-
-   python_foreach_impl run_in_build_dir installing
-}

diff --git a/x11-misc/mozo/mozo-1.22.1.ebuild b/x11-misc/mozo/mozo-1.22.1.ebuild
deleted file mode 100644
index 3c7cb640e7b..000
--- a/x11-misc/mozo/mozo-1.22.1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-PYTHON_REQ_USE="xml"
-
-inherit python-r1 mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-fi
-
-DESCRIPTION="Mozo menu editor for MATE"
-LICENSE="GPL-2+ GPL-3+ LGPL-2+ LGPL-2.1+"
-SLOT="0"
-IUSE=""
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-COMMON_DEPEND="${PYTHON_DEPS}
-   >=dev-python/pygobject-3:3[${PYTHON_USEDEP}]
-   >=mate-base/mate-menus-1.21.0[introspection]
-   x11-libs/gdk-pixbuf:2[introspection]
-   >=x11-libs/gtk+-3.22:3[introspection]
-   virtual/libintl
-   !!x11-misc/mate-menu-editor"
-
-RDEPEND="${COMMON_DEP

[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-user-share/

2020-05-07 Thread Adam Feldman
commit: 059a6caf8fa5b9883f57a801aca8e385b2b6f6f7
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:31:18 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=059a6caf

mate-extra/mate-user-share: Drop old

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

 mate-extra/mate-user-share/Manifest|  1 -
 .../mate-user-share/mate-user-share-1.22.0.ebuild  | 50 --
 2 files changed, 51 deletions(-)

diff --git a/mate-extra/mate-user-share/Manifest 
b/mate-extra/mate-user-share/Manifest
index 499d1c901f4..7feeaa3fc92 100644
--- a/mate-extra/mate-user-share/Manifest
+++ b/mate-extra/mate-user-share/Manifest
@@ -1,3 +1,2 @@
-DIST mate-user-share-1.22.0.tar.xz 927068 BLAKE2B 
a37d3a886ec3cad4427ccff94c00ce2d2412607f16aacf0a8ae4096f0c63c61f07f10cbd902d3a62d74f2a172b3dcbd5575f5c027045a9d31bdf4cffce4a8de2
 SHA512 
151532ebe031a973e8825d86c9a315697f5930f89d78960946da3ba135238e3130c59018d04cf9dc8d343ff1613e51254701bbf8e23a9881733ecbb7e6fb9f18
 DIST mate-user-share-1.22.1.tar.xz 921944 BLAKE2B 
dfa3b304bc81c82abf9a2354ede94b08672f2e8cd28b4def0f0dad0f6389c762d68ddb1924918c89eee40374eedfff312ffc4a9c65d3766be240ede182072837
 SHA512 
afd2c2f8484124e26ac9ced23abd89c1b553adb4df6ca8bd49159e3ec5d76f2b16f6576b7f5608488e5290cddef733e27c653433ee9f57a09a6b76b774555894
 DIST mate-user-share-1.24.0.tar.xz 1008992 BLAKE2B 
0fe21e49ff30c88c32b6b88aba84e58b3e6310d3bbd7a4873be460c97366828a7edfd24be37d2c10ea88a51c6990ee482ad595582d288ded2e4f7e0ca6f0b4e0
 SHA512 
15ede8754bf95ac78844cd9645a43d2deb8419dd550aee5263936d710cd13ce7f4a68cfd53e589c2dd37f87f59c9e8153f8abac711a3a7f88a2e2789dbd4f664

diff --git a/mate-extra/mate-user-share/mate-user-share-1.22.0.ebuild 
b/mate-extra/mate-user-share/mate-user-share-1.22.0.ebuild
deleted file mode 100644
index 3373fa4c543..000
--- a/mate-extra/mate-user-share/mate-user-share-1.22.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm x86"
-fi
-
-DESCRIPTION="Personal file sharing for the MATE desktop"
-LICENSE="FDL-1.1+ GPL-2+"
-SLOT="0"
-
-IUSE="X"
-
-COMMON_DEPEND="
-   >=dev-libs/dbus-glib-0.70
-   >=dev-libs/glib-2.50:2
-   >=mate-base/caja-1.17.1
-   media-libs/libcanberra[gtk3]
-   >=sys-apps/dbus-1.1.1
-   >=x11-libs/gdk-pixbuf-2:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libX11
-   x11-libs/pango
-   >=x11-libs/libnotify-0.7
-   virtual/libintl"
-
-RDEPEND="${COMMON_DEPEND}
-   >=www-apache/mod_dnssd-0.6
-   
>=www-servers/apache-2.2:2[apache2_modules_dav,apache2_modules_dav_fs,apache2_modules_authn_file,apache2_modules_auth_digest,apache2_modules_authz_groupfile]"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/yelp-tools
-   >=dev-util/intltool-0.35
-   sys-devel/gettext:*
-   virtual/pkgconfig:*"
-
-src_configure() {
-   mate_src_configure \
-   --with-httpd=apache2 \
-   --with-modules-path=/usr/$(get_libdir)/apache2/modules/ \
-   --disable-bluetooth \
-   $(use_with X x)
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/mozo/

2020-05-07 Thread Adam Feldman
commit: aa845d243747cdc15fcf015933059df25fb3395f
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:36:58 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa845d24

x11-misc/mozo: Stabilize 1.22.2 for amd64,x86

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

 x11-misc/mozo/mozo-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/mozo/mozo-1.22.2.ebuild b/x11-misc/mozo/mozo-1.22.2.ebuild
index 950b638c809..2aef03eb2fc 100644
--- a/x11-misc/mozo/mozo-1.22.2.ebuild
+++ b/x11-misc/mozo/mozo-1.22.2.ebuild
@@ -9,7 +9,7 @@ PYTHON_REQ_USE="xml"
 inherit python-r1 mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="Mozo menu editor for MATE"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-utils/, mate-extra/mate-utils/files/

2020-05-07 Thread Adam Feldman
commit: cbce202a5db01cfb0246b26bdc430a2459df3e11
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:34:50 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbce202a

mate-extra/mate-utils: Drop old

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

 mate-extra/mate-utils/Manifest |   2 -
 .../mate-utils-1.22.1-make-inkscape-optional.patch | 192 -
 mate-extra/mate-utils/mate-utils-1.22.0.ebuild |  65 ---
 mate-extra/mate-utils/mate-utils-1.22.1-r1.ebuild  |  68 
 4 files changed, 327 deletions(-)

diff --git a/mate-extra/mate-utils/Manifest b/mate-extra/mate-utils/Manifest
index cd12a5d7a11..3f092304965 100644
--- a/mate-extra/mate-utils/Manifest
+++ b/mate-extra/mate-utils/Manifest
@@ -1,4 +1,2 @@
-DIST mate-utils-1.22.0.tar.xz 7300112 BLAKE2B 
8a613b6dcb99e652ad6b44bd64ad9b2f9c809713b5fb904059b64234b51e2a06b2290dcf14d7dde82e8011be2ca395fe74d87bcae5b903b196d55bb50e8fdf07
 SHA512 
248c6e4108900768a4e8b272d20ac9b2d70e8bf77375f4669a099f4d8386c2e8affeafb772d209f00906f96f20d7ee347167ef4837186f44d8aaad85ef855f70
-DIST mate-utils-1.22.1.tar.xz 7284496 BLAKE2B 
83e7e39a0daadae595ab2cc90ad250f61a294afc896df28bf17259cec619af4b0c9d1927c07b03a0cdd7449174af258227678299823169e2cb4d9c4d3ec98c92
 SHA512 
0f70f088de80440ff6954c899eab75c2bf22d332293c1ec61bf8391396ed31a2ab126279dc4d9dab6f4932225120309bc52e122bcd5a8dc17abccfd6e480390d
 DIST mate-utils-1.22.2.tar.xz 7306448 BLAKE2B 
0fb28f85e39ac58c1e78e6f5f4c6d01e72a2b8c32197739b93ec3f17617b4676fdfe251b81e3b5b01c44f69136d9bfc8d12d64fff832d5a9f1c30591b2facebb
 SHA512 
bf33019ebd1dc4ff6010ba0824981334b7065a62dfc7a73170487df5f165ad20831a900ef4e4e0641ca130aa618f82aa27606f0a48c2cb9907ea7ef118f02a60
 DIST mate-utils-1.24.0.tar.xz 7930068 BLAKE2B 
0e2c82afbc2d8a90b8c31d56d9bfbb3a477b1e9cd67108e52c96f4087d09336ed9e6980551e39b43797743b9ef86cc2beabfa84fd7a5820e38122e0d0a7c968d
 SHA512 
d8945c85936a55d22f3ed94c9858ba84cadf552a63cdd2d9eec9120111ad71526ac88772f8e4b7a6a460b691574534e52706fba35a0395b1d894b27eece9e92c

diff --git 
a/mate-extra/mate-utils/files/mate-utils-1.22.1-make-inkscape-optional.patch 
b/mate-extra/mate-utils/files/mate-utils-1.22.1-make-inkscape-optional.patch
deleted file mode 100644
index 57d984b91cc..000
--- a/mate-extra/mate-utils/files/mate-utils-1.22.1-make-inkscape-optional.patch
+++ /dev/null
@@ -1,192 +0,0 @@
-From 563dec11a51f4c6517509642e335a1fd64cd4ec4 Mon Sep 17 00:00:00 2001
-From: rbuj 
-Date: Thu, 2 May 2019 20:51:09 +0200
-Subject: [PATCH] Make inkscape and rsvg-convert optional
-
-TEST on Fedora:
-inkscape, librsvg2-tools package are not installed on system: The user can 
build, install and distribute the package:
-
-  $ sudo dnf remove inkscape librsvg2-tools -y
-  $ ./configure --prefix=/usr
-  $ make
-  $ sudo make install
-  $ make distcheck
-
-logview/data/icons:
-
-Can not run build-png-icons target if inkscape package is not installed on 
system:
-
-  $ make -C logview/data/icons clean-png-icons
-make: Entering directory '/home/robert/devel/mate-utils/logview/data/icons'
-rm -f hicolor_apps_16x16_mate-system-log.png 
hicolor_apps_22x22_mate-system-log.png hicolor_apps_32x32_mate-system-log.png 
hicolor_apps_48x48_mate-system-log.png hicolor_apps_256x256_mate-system-log.png
-make: Leaving directory '/home/robert/devel/mate-utils/logview/data/icons'
-  $ make -C logview/data/icons build-png-icons
-make: Entering directory '/home/robert/devel/mate-utils/logview/data/icons'
-make: *** No rule to make target 'hicolor_apps_16x16_mate-system-log.png', 
needed by 'build-png-icons'.  Stop.
-make: Leaving directory '/home/robert/devel/mate-utils/logview/data/icons'
-
-Can run build-png-icons target if inkscape package is installed on system:
-
-  $ sudo dnf install inkscape -y
-  $ ./configure --prefix=/usr
-  $ make -C logview/data/icons build-png-icons
-make: Entering directory '/home/robert/devel/mate-utils/logview/data/icons'
-Background RRGGBBAA: ff00 Area 303:65:319:81 exported to 16 x 16 pixels 
(96 dpi) Bitmap saved as: hicolor_apps_16x16_mate-system-log.png
-Background RRGGBBAA: ff00 Area 303:101:325:123 exported to 22 x 22 pixels 
(96 dpi) Bitmap saved as: hicolor_apps_22x22_mate-system-log.png
-Background RRGGBBAA: ff00 Area 304:142:336:174 exported to 32 x 32 pixels 
(96 dpi) Bitmap saved as: hicolor_apps_32x32_mate-system-log.png
-Background RRGGBBAA: ff00 Area 296:202:344:250 exported to 48 x 48 pixels 
(96 dpi) Bitmap saved as: hicolor_apps_48x48_mate-system-log.png
-Background RRGGBBAA: ff00 Area 33:11:289:267 exported to 256 x 256 pixels 
(96 dpi) Bitmap saved as: hicolor_apps_256x256_mate-system-log.png
-make: Nothing to be done for 'build-png-icons'.
-make: Leaving directory '/home/robert/de

[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-indicator-applet/

2020-05-07 Thread Adam Feldman
commit: b4ef8f17bc15597dc07e107c31d9cb0a0077b2ca
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:23:04 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4ef8f17

mate-extra/mate-indicator-applet: Drop old

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

 mate-extra/mate-indicator-applet/Manifest  |  1 -
 .../mate-indicator-applet-1.22.0.ebuild| 27 --
 2 files changed, 28 deletions(-)

diff --git a/mate-extra/mate-indicator-applet/Manifest 
b/mate-extra/mate-indicator-applet/Manifest
index f6576911344..5cefa4644db 100644
--- a/mate-extra/mate-indicator-applet/Manifest
+++ b/mate-extra/mate-indicator-applet/Manifest
@@ -1,3 +1,2 @@
-DIST mate-indicator-applet-1.22.0.tar.xz 339564 BLAKE2B 
0655ced0b24cc681ebd8e66b0749c9d98f9bc361830431bb408158ab174d5ea27aa022344cc667e37405ae693b52ed5c20e5b5ecec01b484c1928df36e1673d0
 SHA512 
6e1dd133a521f247ecb648b3ffa542e326f504fd3b0719a74099e83ac1dfa9fd4d7676af284f89f69d6684e5640f240930bb0fb43bcf7d59472786adf4c3200c
 DIST mate-indicator-applet-1.22.1.tar.xz 291104 BLAKE2B 
665decd04fec83fb4b1391f3d344f7ce61a4bef557478fe2bae95d9494b633a0c64a2d24b1cde7f3fcb6255b429265a33148c1ff8d765de5463d8d119421a9b7
 SHA512 
2224e7222c36f04f78d4f5e10dfa7dffab31c687474fac605ec54795edaa7d230518168fef82459aba47e72362941b7968b94b11ccace40d8857adf605f8d8db
 DIST mate-indicator-applet-1.24.0.tar.xz 380136 BLAKE2B 
1ae77c892f02127f7a0d778958e0f4acc2b14e01a4b8d8a316253c3b227eacd59cb556ed852de690f3ec4aec4d02874c2f594b41315cd85c87c16967ef9403ee
 SHA512 
0e82f572c1855c8623e537a45c2c0c0b98d3d642e46333eedc16c26607205293098a062008d0e568890ffdf6b8dc4c30a7f5e2e41a150f940917b3671783e413

diff --git 
a/mate-extra/mate-indicator-applet/mate-indicator-applet-1.22.0.ebuild 
b/mate-extra/mate-indicator-applet/mate-indicator-applet-1.22.0.ebuild
deleted file mode 100644
index 02aae41238c..000
--- a/mate-extra/mate-indicator-applet/mate-indicator-applet-1.22.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit mate eapi7-ver
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm x86"
-fi
-
-DESCRIPTION="MATE indicator applet"
-LICENSE="GPL-3 GPL-3+ LGPL-2+ LGPL-3+"
-SLOT="0"
-
-IUSE=""
-
-COMMON_DEPEND="
-   >=dev-libs/libindicator-0.4:3
-   >=mate-base/mate-panel-1.17.0
-   >=x11-libs/gtk+-3.22:3"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.35.0
-   virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-applets/

2020-05-07 Thread Adam Feldman
commit: 3eabdfbce8ea066481c769870be37c5269fcf432
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:13:35 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eabdfbc

mate-base/mate-applets: Stabilize 1.22.2-r1 for amd64,x86

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

 mate-base/mate-applets/mate-applets-1.22.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-base/mate-applets/mate-applets-1.22.2-r1.ebuild 
b/mate-base/mate-applets/mate-applets-1.22.2-r1.ebuild
index 97fbd7bd56c..a92aa889f8a 100644
--- a/mate-base/mate-applets/mate-applets-1.22.2-r1.ebuild
+++ b/mate-base/mate-applets/mate-applets-1.22.2-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="Applets for the MATE Desktop and Panel"



[gentoo-commits] repo/gentoo:master commit in: x11-terms/mate-terminal/

2020-05-07 Thread Adam Feldman
commit: 063f9f07b829404d5fb36567323ff9e3ca7ae89f
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:28:46 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=063f9f07

x11-terms/mate-terminal: Stabilize 1.22.1 for amd64,x86

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

 x11-terms/mate-terminal/mate-terminal-1.22.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/mate-terminal/mate-terminal-1.22.1.ebuild 
b/x11-terms/mate-terminal/mate-terminal-1.22.1.ebuild
index 8eb018b4fbc..cc113ab0ab4 100644
--- a/x11-terms/mate-terminal/mate-terminal-1.22.1.ebuild
+++ b/x11-terms/mate-terminal/mate-terminal-1.22.1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="The MATE Terminal"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/caja-extensions/

2020-05-07 Thread Adam Feldman
commit: 01a21506b0b2596195710677b10304ea97cd250c
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 03:05:35 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01a21506

mate-extra/caja-extensions: Stabilize 1.22.1 for amd64,x86

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

 mate-extra/caja-extensions/caja-extensions-1.22.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/caja-extensions/caja-extensions-1.22.1.ebuild 
b/mate-extra/caja-extensions/caja-extensions-1.22.1.ebuild
index da783c5b662..3f9edda48e1 100644
--- a/mate-extra/caja-extensions/caja-extensions-1.22.1.ebuild
+++ b/mate-extra/caja-extensions/caja-extensions-1.22.1.ebuild
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="Several Caja extensions"



[gentoo-commits] repo/gentoo:master commit in: media-gfx/eom/, mate-extra/mate-netbook/

2020-05-07 Thread Adam Feldman
commit: cecfbcbb7bc1c3d070883a7c6b7da39780fd82ff
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:24:13 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cecfbcbb

mate-extra/mate-netbook: Stabilize 1.22.2 for amd64,x86

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

 mate-extra/mate-netbook/mate-netbook-1.22.2.ebuild |  2 +-
 media-gfx/eom/eom-1.22.0.ebuild| 62 --
 2 files changed, 1 insertion(+), 63 deletions(-)

diff --git a/mate-extra/mate-netbook/mate-netbook-1.22.2.ebuild 
b/mate-extra/mate-netbook/mate-netbook-1.22.2.ebuild
index f7ce5d624a4..f440977f066 100644
--- a/mate-extra/mate-netbook/mate-netbook-1.22.2.ebuild
+++ b/mate-extra/mate-netbook/mate-netbook-1.22.2.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="MATE utilities for netbooks"

diff --git a/media-gfx/eom/eom-1.22.0.ebuild b/media-gfx/eom/eom-1.22.0.ebuild
deleted file mode 100644
index 9e84c4ed3c3..000
--- a/media-gfx/eom/eom-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 image viewer"
-LICENSE="FDL-1.1+ GPL-2+ IJG LGPL-2+"
-SLOT="0"
-
-IUSE="X debug exif +introspection jpeg lcms svg tiff xmp"
-
-RDEPEND="
-   dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   >=dev-libs/libpeas-1.8.0[gtk]
-   >=dev-libs/libxml2-2:2
-   gnome-base/dconf
-   >=mate-base/mate-desktop-1.17.0
-   sys-libs/zlib
-   x11-libs/cairo
-   >=x11-libs/gdk-pixbuf-2.30:2[introspection?,jpeg?,tiff?]
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libX11
-   >=x11-misc/shared-mime-info-0.20
-   virtual/libintl
-   exif? (
-   >=media-libs/libexif-0.6.14
-   virtual/jpeg:0
-   )
-   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
-   jpeg? ( virtual/jpeg:0 )
-   lcms? ( media-libs/lcms:2 )
-   svg? ( >=gnome-base/librsvg-2.36.2:2 )
-   xmp? ( >=media-libs/exempi-1.99.5:2 )
-   !!media-gfx/mate-image-viewer"
-
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   dev-util/glib-utils
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_configure() {
-   mate_src_configure \
-   $(use_enable debug) \
-   $(use_enable introspection) \
-   $(use_with X x) \
-   $(use_with exif libexif) \
-   $(use_with jpeg libjpeg) \
-   $(use_with lcms cms) \
-   $(use_with svg librsvg) \
-   $(use_with xmp)
-}



[gentoo-commits] repo/gentoo:master commit in: app-arch/engrampa/

2020-05-07 Thread Adam Feldman
commit: ff7573f4b3c5e1b5989800c5ef42d998569319c4
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:06:21 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7573f4

app-arch/engrampa:  Stabilize 1.22.3-r1 for amd64,x86

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

 app-arch/engrampa/engrampa-1.22.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/engrampa/engrampa-1.22.3-r1.ebuild 
b/app-arch/engrampa/engrampa-1.22.3-r1.ebuild
index 92299844e0f..c611a9963d8 100644
--- a/app-arch/engrampa/engrampa-1.22.3-r1.ebuild
+++ b/app-arch/engrampa/engrampa-1.22.3-r1.ebuild
@@ -8,7 +8,7 @@ MATE_LA_PUNT="yes"
 inherit eutils mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="Engrampa archive manager for MATE"



[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-icon-theme-faenza/

2020-05-07 Thread Adam Feldman
commit: f0071ee3af87e0c5f33a9154fd1fe80701a37508
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:16:05 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0071ee3

x11-themes/mate-icon-theme-faenza: Stabilize 1.20.0 for amd64,x86

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

 x11-themes/mate-icon-theme-faenza/mate-icon-theme-faenza-1.20.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/x11-themes/mate-icon-theme-faenza/mate-icon-theme-faenza-1.20.0.ebuild 
b/x11-themes/mate-icon-theme-faenza/mate-icon-theme-faenza-1.20.0.ebuild
index d349b663378..b344d2f7a3e 100644
--- a/x11-themes/mate-icon-theme-faenza/mate-icon-theme-faenza-1.20.0.ebuild
+++ b/x11-themes/mate-icon-theme-faenza/mate-icon-theme-faenza-1.20.0.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~x86"
+   KEYWORDS="amd64 ~arm x86"
 fi
 
 DESCRIPTION="Faenza icon theme, that was adapted for MATE desktop"



[gentoo-commits] repo/gentoo:master commit in: app-editors/pluma/

2020-05-07 Thread Adam Feldman
commit: 086b618720182ea8bbf3ee0e3c027eabe0b03cbb
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:41:50 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=086b6187

app-editors/pluma: Drop old

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

 app-editors/pluma/Manifest|  2 -
 app-editors/pluma/pluma-1.22.0.ebuild | 78 ---
 app-editors/pluma/pluma-1.22.1.ebuild | 78 ---
 3 files changed, 158 deletions(-)

diff --git a/app-editors/pluma/Manifest b/app-editors/pluma/Manifest
index 7076b889416..577b723d718 100644
--- a/app-editors/pluma/Manifest
+++ b/app-editors/pluma/Manifest
@@ -1,4 +1,2 @@
-DIST pluma-1.22.0.tar.xz 3235612 BLAKE2B 
a0cda23a6ee73e562cb32c3f1430590042248b6a6e7cbf021103db507450b2a594506f3d8283eeed08e2ba5006ff51376eb6db5e94ea5ac9d5707b29e0efc2c4
 SHA512 
7c74c2ce0a89ec3813c936449d3114957e7b319433875ef567ecc508a28a1d3ddc3d0da418b2eb1278b6dc9dbaa3c75a279524f5a061b5aecb52955edcf28f51
-DIST pluma-1.22.1.tar.xz 3236724 BLAKE2B 
f571ccb79ffac11122dad1888a9804fdb1671f2c73b28c216e0ec593ffc4dac3fec3053b83fd1503e0c951e032f6e4c22fb4f3d6a1d23477a54e06de2659222e
 SHA512 
0d3f07b2e8c736c9e1ad64ed5cb749db6088868e9bc27aa786cbb0c3fe72715f0fd4dd53999502a4333ec82110148b772c0dde81433d0936d2d3c2d04804026a
 DIST pluma-1.22.2.tar.xz 3262288 BLAKE2B 
0a7af4318ec11aa6a01dd14ed071975b6a961747c1abda9120912244f3fd530c5c06e2fc9dad6ad23175c119e35c1380e88be4b9bc1e331485b646dee87af8e1
 SHA512 
a68b79713f649def15ea29e58e041d70bb6d756a356743f6e06d8dd680f7b39e8bcdd90c68cbe5c517bead7f9263d7596954bc595c3a2501edf0d0ea421c9992
 DIST pluma-1.24.0.tar.xz 3717544 BLAKE2B 
fd9375fd05566c11c24d5bdf55ab0d4619143127a5e48c4e91d18421f50340775d58c3e2264382aa3bbd8aad0569c559e87381a9ece07ce1592d1bc1a5315db1
 SHA512 
390bf2949549baa0e3dc706526217fbc1513e2f9778917710da806e58cdfb0b7a36e95ed2186442490996cf76783acd4e0f4b8f1fedacee9ba356c0d466510be

diff --git a/app-editors/pluma/pluma-1.22.0.ebuild 
b/app-editors/pluma/pluma-1.22.0.ebuild
deleted file mode 100644
index 8760273f0a9..000
--- a/app-editors/pluma/pluma-1.22.0.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit mate python-single-r1 virtualx
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Pluma text editor for the MATE desktop"
-LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
-SLOT="0"
-
-IUSE="+introspection spell"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# Tests require gvfs sftp fs mounted and schema's installed. Disable tests.
-# https://github.com/mate-desktop/mate-text-editor/issues/33
-RESTRICT="test"
-
-COMMON_DEPEND="dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   >=dev-libs/libpeas-1.2.0[gtk]
-   >=dev-libs/libxml2-2.5:2
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   >=x11-libs/gtksourceview-3.0.0:3.0
-   x11-libs/libICE
-   x11-libs/libX11
-   >=x11-libs/libSM-1.0
-   x11-libs/pango
-   virtual/libintl
-   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
-   spell? (
-   >=app-text/enchant-1.2:=
-   >=app-text/iso-codes-0.35
-   )
-   !!app-editors/mate-text-editor"
-
-RDEPEND="${PYTHON_DEPS}
-   ${COMMON_DEPEND}
-   >=mate-base/mate-desktop-1.9[introspection?]"
-
-DEPEND="${COMMON_DEPEND}
-   ~app-text/docbook-xml-dtd-4.1.2
-   app-text/rarian
-   >=app-text/scrollkeeper-dtd-1:1.0
-   app-text/yelp-tools
-   dev-util/glib-utils
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.50.1
-   >=sys-devel/libtool-2.2.6:2
-   >=sys-devel/gettext-0.17
-   virtual/pkgconfig"
-
-src_configure() {
-   mate_src_configure \
-   $(use_enable introspection) \
-   $(use_enable spell)
-}
-
-src_test() {
-   # FIXME: This should be handled at eclass level.
-   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
-
-   unset DBUS_SESSION_BUS_ADDRESS
-
-   GSETTINGS_SCHEMA_DIR="${S}/data" Xemake check
-}

diff --git a/app-editors/pluma/pluma-1.22.1.ebuild 
b/app-editors/pluma/pluma-1.22.1.ebuild
deleted file mode 100644
index f1278f5501c..000
--- a/app-editors/pluma/pluma-1.22.1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-PYTHON_COMPAT=( 

[gentoo-commits] repo/gentoo:master commit in: media-gfx/eom/

2020-05-07 Thread Adam Feldman
commit: 360c5f3286f1bd9b5f557d6b54607d4e4180bcd1
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 04:11:12 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 04:44:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360c5f32

media-gfx/eom: Stabilize 1.22.2 for amd64,x86

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

 media-gfx/eom/eom-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/eom/eom-1.22.2.ebuild b/media-gfx/eom/eom-1.22.2.ebuild
index cd0a1d6937c..42ba95e06f2 100644
--- a/media-gfx/eom/eom-1.22.2.ebuild
+++ b/media-gfx/eom/eom-1.22.2.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="The MATE image viewer"



[gentoo-commits] repo/gentoo:master commit in: media-gfx/eom/

2020-05-08 Thread Adam Feldman
commit: f7c6a3d81ae40c6e74d515a3ab13944be6a5e921
Author: Adam Feldman  gentoo  org>
AuthorDate: Fri May  8 12:00:25 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Fri May  8 12:00:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7c6a3d8

media-gfx/eom: Drop old

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

 media-gfx/eom/Manifest  |  1 -
 media-gfx/eom/eom-1.22.1.ebuild | 62 -
 2 files changed, 63 deletions(-)

diff --git a/media-gfx/eom/Manifest b/media-gfx/eom/Manifest
index 6fcaa9ba8a6..8c610514ba2 100644
--- a/media-gfx/eom/Manifest
+++ b/media-gfx/eom/Manifest
@@ -1,3 +1,2 @@
-DIST eom-1.22.1.tar.xz 2142132 BLAKE2B 
c68f6d6ee4284de7dea3f3d9761f4b67a2edc0a169b3c3ac04ac6efd13e9f1044cf0be023e36891672b31ff73815d7ce765d8db656bbeb69f324e0ee412eb231
 SHA512 
f510de62b9b6f11d02df067128042d6905484e0509a939b7919405d0c1dd03fe4b6735dcd8ccf780d36c5713f4585b50b2727645a454da148307a74cf542be87
 DIST eom-1.22.2.tar.xz 2158376 BLAKE2B 
88d8b635af5b37f1ee4a36c08eb6f4a50cada86f605ab5927b031458f7f36191fa76457263ce38a9f8a02b7ba59308655b5df7039a73083192bf89c15fbee32f
 SHA512 
1045c6bb98056ad707b0acf509c12e0400c21238482bf801abc6b69252f2ffe9687f7fda8b7e09c6338bc80794b104cbb42c1ea89ff1f169c45fdc1fcbdbeabe
 DIST eom-1.24.0.tar.xz 2433420 BLAKE2B 
58f99ba3cf0df3594c459af691cc6ab281657facb49bc3b6101bec1718b165b72b882aabd9abac3c4981b547157aa64d2f24f174fccae06cdaa685728e49740c
 SHA512 
17d26a9341cde0a86f8d8b65008f554398111d80f5d131441654bd9e907df9c9d696038e678aca8d7f4bd2923ff593f626735a3cc30451118818cdbebceb87ab

diff --git a/media-gfx/eom/eom-1.22.1.ebuild b/media-gfx/eom/eom-1.22.1.ebuild
deleted file mode 100644
index 9732879b846..000
--- a/media-gfx/eom/eom-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 image viewer"
-LICENSE="FDL-1.1+ GPL-2+ IJG LGPL-2+"
-SLOT="0"
-
-IUSE="X debug exif +introspection jpeg lcms svg tiff xmp"
-
-RDEPEND="
-   dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   >=dev-libs/libpeas-1.8.0[gtk]
-   >=dev-libs/libxml2-2:2
-   gnome-base/dconf
-   >=mate-base/mate-desktop-1.17.0
-   sys-libs/zlib
-   x11-libs/cairo
-   >=x11-libs/gdk-pixbuf-2.30:2[introspection?,jpeg?,tiff?]
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libX11
-   >=x11-misc/shared-mime-info-0.20
-   virtual/libintl
-   exif? (
-   >=media-libs/libexif-0.6.14
-   virtual/jpeg:0
-   )
-   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
-   jpeg? ( virtual/jpeg:0 )
-   lcms? ( media-libs/lcms:2 )
-   svg? ( >=gnome-base/librsvg-2.36.2:2 )
-   xmp? ( >=media-libs/exempi-1.99.5:2 )
-   !!media-gfx/mate-image-viewer"
-
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   dev-util/glib-utils
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_configure() {
-   mate_src_configure \
-   $(use_enable debug) \
-   $(use_enable introspection) \
-   $(use_with X x) \
-   $(use_with exif libexif) \
-   $(use_with jpeg libjpeg) \
-   $(use_with lcms cms) \
-   $(use_with svg librsvg) \
-   $(use_with xmp)
-}



[gentoo-commits] repo/gentoo:master commit in: games-strategy/freeorion/

2020-05-09 Thread Adam Feldman
commit: da26980f5eabddd543500677ca180aa945ef765d
Author: Adam Feldman  gentoo  org>
AuthorDate: Sat May  9 15:28:38 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sat May  9 15:31:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da26980f

games-strategy/freeorion: Fix missing boost[nls] dep

Closes: https://bugs.gentoo.org/721854
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Adam Feldman  gentoo.org>

 ...orion-0.4.9_p20200409.ebuild => freeorion-0.4.9_p20200409-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-strategy/freeorion/freeorion-0.4.9_p20200409.ebuild 
b/games-strategy/freeorion/freeorion-0.4.9_p20200409-r1.ebuild
similarity index 95%
rename from games-strategy/freeorion/freeorion-0.4.9_p20200409.ebuild
rename to games-strategy/freeorion/freeorion-0.4.9_p20200409-r1.ebuild
index 048d1b8bf69..c1efcaa3e7c 100644
--- a/games-strategy/freeorion/freeorion-0.4.9_p20200409.ebuild
+++ b/games-strategy/freeorion/freeorion-0.4.9_p20200409-r1.ebuild
@@ -35,7 +35,7 @@ BDEPEND="
 "
 RDEPEND="
$(python_gen_cond_dep '
-   >=dev-libs/boost-1.67:=[python,threads,${PYTHON_MULTI_USEDEP}]
+   
>=dev-libs/boost-1.67:=[nls,python,threads,${PYTHON_MULTI_USEDEP}]
')
!dedicated? (
media-libs/freealut



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-calc/

2020-05-09 Thread Adam Feldman
commit: f9a2daef572cef7b6f0e8947cdfd60e5016fd4aa
Author: Oz Tiram  gmail  com>
AuthorDate: Sat May  2 20:15:16 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sat May  9 15:31:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9a2daef

mate-extra/mate-calc: bump to v1.22.2

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Oz Tiram  gmail.com>
Signed-off-by: Adam Feldman  gentoo.org>

 mate-extra/mate-calc/Manifest|  1 +
 mate-extra/mate-calc/mate-calc-1.22.2.ebuild | 31 
 2 files changed, 32 insertions(+)

diff --git a/mate-extra/mate-calc/Manifest b/mate-extra/mate-calc/Manifest
index 2491fe90eec..3de4b6c1b1e 100644
--- a/mate-extra/mate-calc/Manifest
+++ b/mate-extra/mate-calc/Manifest
@@ -1,2 +1,3 @@
 DIST mate-calc-1.22.0.tar.xz 623312 BLAKE2B 
ae40278e455c520649db9fb4f48aedb2dec3b9abc48175a9f0111bbc57b7aac289d20d8dc1703a7b6545351e75e0ae641432ce6227f5ae0a8de5cbed68120581
 SHA512 
a0d72a17dc9e7e97ef36cb2f089db126b1f91790d6a34ae829ef9cea87e82b025ba106f08e8c677352e72423a6670a3bf8751eecc67444cd8cea8dc8f3cf6728
+DIST mate-calc-1.22.2.tar.xz 626400 BLAKE2B 
f09bf3730a4b184026e324c4c64c7a06951ae858febf58d135b676d384d0fe77a44af0adbb2a3bedc8ab60547f029e7f314634876e7d2a878fcec3549069063a
 SHA512 
4235e49df4517d1a43a1f640f5b35320c34f588eb9ff3c63aa2ff59123a53ea9723372d3fe4d8c29d40ef09a51f4bd536655b5056d840eb5c253f572afb5
 DIST mate-calc-1.24.0.tar.xz 939480 BLAKE2B 
28a8184665096d477bdc80484fc9da3bf9835dd5d1c30d4de11722488d735f88336bcf990c50ef65dd0a5781fc083b5d011fd5085c2d1672e6599a28f4a01452
 SHA512 
ebb18f07ded5577bb0987b2027e7b73abc823a567bfa00f9cc9bfaf75de498f150b6b4c2e13486c530a3cbb078f1b798c415b33d668d952e8650799dd05c99eb

diff --git a/mate-extra/mate-calc/mate-calc-1.22.2.ebuild 
b/mate-extra/mate-calc/mate-calc-1.22.2.ebuild
new file mode 100644
index 000..2144252dd99
--- /dev/null
+++ b/mate-extra/mate-calc/mate-calc-1.22.2.ebuild
@@ -0,0 +1,31 @@
+# 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="Calculator for MATE"
+LICENSE="CC-BY-SA-3.0 GPL-2+"
+SLOT="0"
+
+IUSE=""
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.50:2
+   dev-libs/libxml2:2
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/pango"
+
+RDEPEND="${COMMON_DEPEND}"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   >=dev-util/intltool-0.35.0
+   sys-devel/gettext:*
+   virtual/pkgconfig:*"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-calc/

2020-05-09 Thread Adam Feldman
commit: 2a8679ba0b6c13bde9045483f576f7f220e816cf
Author: Adam Feldman  gentoo  org>
AuthorDate: Sat May  9 15:30:01 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sat May  9 15:31:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a8679ba

mate-extra/mate-calc: Stabilize 1.22.2 for amd64,x86

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

 mate-extra/mate-calc/mate-calc-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/mate-calc/mate-calc-1.22.2.ebuild 
b/mate-extra/mate-calc/mate-calc-1.22.2.ebuild
index 2144252dd99..3f9e1ae 100644
--- a/mate-extra/mate-calc/mate-calc-1.22.2.ebuild
+++ b/mate-extra/mate-calc/mate-calc-1.22.2.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="Calculator for MATE"



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-calc/

2020-05-09 Thread Adam Feldman
commit: d344dc22254e14bc117b2c0a34186738fcb15b83
Author: Adam Feldman  gentoo  org>
AuthorDate: Sat May  9 15:30:28 2020 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sat May  9 15:31:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d344dc22

mate-extra/mate-calc: Drop old

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

 mate-extra/mate-calc/Manifest|  1 -
 mate-extra/mate-calc/mate-calc-1.22.0.ebuild | 31 
 2 files changed, 32 deletions(-)

diff --git a/mate-extra/mate-calc/Manifest b/mate-extra/mate-calc/Manifest
index 3de4b6c1b1e..630488ade1d 100644
--- a/mate-extra/mate-calc/Manifest
+++ b/mate-extra/mate-calc/Manifest
@@ -1,3 +1,2 @@
-DIST mate-calc-1.22.0.tar.xz 623312 BLAKE2B 
ae40278e455c520649db9fb4f48aedb2dec3b9abc48175a9f0111bbc57b7aac289d20d8dc1703a7b6545351e75e0ae641432ce6227f5ae0a8de5cbed68120581
 SHA512 
a0d72a17dc9e7e97ef36cb2f089db126b1f91790d6a34ae829ef9cea87e82b025ba106f08e8c677352e72423a6670a3bf8751eecc67444cd8cea8dc8f3cf6728
 DIST mate-calc-1.22.2.tar.xz 626400 BLAKE2B 
f09bf3730a4b184026e324c4c64c7a06951ae858febf58d135b676d384d0fe77a44af0adbb2a3bedc8ab60547f029e7f314634876e7d2a878fcec3549069063a
 SHA512 
4235e49df4517d1a43a1f640f5b35320c34f588eb9ff3c63aa2ff59123a53ea9723372d3fe4d8c29d40ef09a51f4bd536655b5056d840eb5c253f572afb5
 DIST mate-calc-1.24.0.tar.xz 939480 BLAKE2B 
28a8184665096d477bdc80484fc9da3bf9835dd5d1c30d4de11722488d735f88336bcf990c50ef65dd0a5781fc083b5d011fd5085c2d1672e6599a28f4a01452
 SHA512 
ebb18f07ded5577bb0987b2027e7b73abc823a567bfa00f9cc9bfaf75de498f150b6b4c2e13486c530a3cbb078f1b798c415b33d668d952e8650799dd05c99eb

diff --git a/mate-extra/mate-calc/mate-calc-1.22.0.ebuild 
b/mate-extra/mate-calc/mate-calc-1.22.0.ebuild
deleted file mode 100644
index 3f9e1ae..000
--- a/mate-extra/mate-calc/mate-calc-1.22.0.ebuild
+++ /dev/null
@@ -1,31 +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="Calculator for MATE"
-LICENSE="CC-BY-SA-3.0 GPL-2+"
-SLOT="0"
-
-IUSE=""
-
-COMMON_DEPEND="
-   dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   dev-libs/libxml2:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/pango"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   >=dev-util/intltool-0.35.0
-   sys-devel/gettext:*
-   virtual/pkgconfig:*"



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/caja-extensions/

2021-05-23 Thread Adam Feldman
commit: 4b5d54fcae76305f16c844301b29c6f6719e95fe
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:36:54 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:07 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=4b5d54fc

mate-extra/caja-extensions: Drop 1.22.x

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

 mate-extra/caja-extensions/Manifest|  1 -
 .../caja-extensions/caja-extensions-1.22.1.ebuild  | 74 --
 2 files changed, 75 deletions(-)

diff --git a/mate-extra/caja-extensions/Manifest 
b/mate-extra/caja-extensions/Manifest
index cca2f09..a6b0d10 100644
--- a/mate-extra/caja-extensions/Manifest
+++ b/mate-extra/caja-extensions/Manifest
@@ -1,3 +1,2 @@
-DIST caja-extensions-1.22.1.tar.xz 439516 BLAKE2B 
2135e5a30c86b6f83396b9f80ff474355fe02c652cd898728431eddef22a6804e7a4ea15579b03c0984417e81f8ba89ff856aa384e94d5168b6a883e678b683a
 SHA512 
4c0fb47a251d4118c83a985732d8a549355907519b746a68eb8843c84328d868eec1535b68484c46e3d0bf4b42f0e0340fe178714f50b5f7cc8434c0e1883906
 DIST caja-extensions-1.24.0.tar.xz 548828 BLAKE2B 
0492e1f0ca7277737102f71fd195dd585614010b80c2aafd730aacd1d817b03fe0377c430615a3e4bd4a643558c02c9c4fdb2d451079a3b213fe0e6b9d4e02de
 SHA512 
f05a7d83f16aebacb04f75b76ca86e44c1a01d9ad6c2aefeac19398c4d9da8385e6852fa0118c763aee630e7eb6c7c81d77e0c9452200aee9cf4f058487c4dbf
 DIST caja-extensions-1.24.1.tar.xz 552340 BLAKE2B 
fff9b70ccdc79905283bdd4e773c8ad6e85cbbc543f4f70af992d91eba1e86d8c2be074dab4154360b836179718e8dbb2837261779a20321b42a2d00c69088ec
 SHA512 
b844a774271d81ac811b1aff1f04be4a65c6e38a683938dfb593f65297a6398fbfe4c8f6a51c649a1311fb5ca8134b4478860f51b1b3eaf9965a6b8776af2817

diff --git a/mate-extra/caja-extensions/caja-extensions-1.22.1.ebuild 
b/mate-extra/caja-extensions/caja-extensions-1.22.1.ebuild
deleted file mode 100644
index 3f9edda..000
--- a/mate-extra/caja-extensions/caja-extensions-1.22.1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Several Caja extensions"
-LICENSE="GPL-2+"
-SLOT="0"
-
-SENDTO="cdr gajim +mail pidgin upnp"
-IUSE="image-converter +open-terminal share +wallpaper xattr ${SENDTO}"
-
-COMMON_DEPEND=">=dev-libs/glib-2.50:2
-   >=mate-base/caja-1.21.3
-   virtual/libintl
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3
-   gajim? (
-   >=dev-libs/dbus-glib-0.60
-   >=sys-apps/dbus-1
-   )
-   open-terminal? ( >=mate-base/mate-desktop-1.17.0 )
-   pidgin? ( >=dev-libs/dbus-glib-0.60 )
-   upnp? ( >=net-libs/gupnp-0.13:0/4 )
-   xattr? ( sys-apps/attr )"
-
-RDEPEND="${COMMON_DEPEND}
-   cdr? ( >=app-cdr/brasero-2.32.1:= )
-   gajim? ( net-im/gajim )
-   image-converter? (
-   || (
-   media-gfx/imagemagick
-   media-gfx/graphicsmagick[imagemagick]
-   )
-   )
-   pidgin? ( net-im/pidgin )"
-
-DEPEND="${COMMON_DEPEND}
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.18:*
-   sys-devel/gettext:*
-   virtual/pkgconfig:*
-   !!mate-extra/mate-file-manager-open-terminal
-   !!mate-extra/mate-file-manager-sendto
-   !!mate-extra/mate-file-manager-image-converter
-   !!mate-extra/mate-file-manager-share"
-
-src_configure() {
-   local sendto_plugins="removable-devices"
-   use cdr && sendto_plugins+=",caja-burn"
-   use mail && sendto_plugins+=",emailclient"
-   use pidgin && sendto_plugins+=",pidgin"
-   use gajim && sendto_plugins+=",gajim"
-   use upnp && sendto_plugins+=",upnp"
-
-   mate_src_configure \
-   --enable-sendto \
-   --with-sendto-plugins=${sendto_plugins}\
-   --disable-gksu \
-   $(use_enable image-converter) \
-   $(use_enable open-terminal) \
-   $(use_enable share) \
-   $(use_enable wallpaper) \
-   $(use_enable xattr xattr-tags)
-}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-menus/

2021-05-23 Thread Adam Feldman
commit: 27c45533c7081bf7e290e9f5d5ea6b7e7006112a
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:50:41 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:50:41 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=27c45533

mate-base/mate-menus: Drop 1.22.x

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

 mate-base/mate-menus/Manifest|  1 -
 mate-base/mate-menus/mate-menus-1.22.1-r1.ebuild | 44 
 2 files changed, 45 deletions(-)

diff --git a/mate-base/mate-menus/Manifest b/mate-base/mate-menus/Manifest
index 8c0cab4..5495efc 100644
--- a/mate-base/mate-menus/Manifest
+++ b/mate-base/mate-menus/Manifest
@@ -1,3 +1,2 @@
-DIST mate-menus-1.22.1.tar.xz 351080 BLAKE2B 
3ec947d6befefc838580547970ad7753c914077faa8cde2f37b9f3c48cd5d1223f382b67992826017e8ab16353c7fd2b4749a0fbd615668c0a4c6ad638c26014
 SHA512 
2766cafa35c11da6f6d5d6129a5e39c09e73ca97f72382df757091198260a342d278c53f88cddf75e174231443c1015198dfa1800b3601d5b770553ec7047a00
 DIST mate-menus-1.24.0.tar.xz 404028 BLAKE2B 
18bea0a6c21444b0b568564d0c15ba0e231643dfcb9c74d6ab9a08cd57cab2289436dada030397737667f5a51c4ab39ab06fff3f585347ebb5f7afc40957acc0
 SHA512 
27f8ba0666b08fbcfc3f02a42e4b9f3d3431e3d171be0fe9569f412b2f9ead370fff15833feb920b64d2a067e81354970df2ee1c465f10faa3dbd9c97af20406
 DIST mate-menus-1.24.1.tar.xz 402968 BLAKE2B 
fb63e3dbffab2725407f03011618fc3698b80be1add349edf86a4bc0a26427bf2a69d696e0accdff16ee3d12b94e5458ef4874efb19c8a25b6c74769448d5374
 SHA512 
5235d3be31d30f8aeaf9b2da0f8fe8dc586e07ae0dcbc3da88a4f04181277a9dec9414dee9c255023b1ebd406f8b131197e3f526f9bac14eeb23d8014cfd22cb

diff --git a/mate-base/mate-menus/mate-menus-1.22.1-r1.ebuild 
b/mate-base/mate-menus/mate-menus-1.22.1-r1.ebuild
deleted file mode 100644
index d9c9971..000
--- a/mate-base/mate-menus/mate-menus-1.22.1-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-GNOME2_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="MATE menu system, implementing the F.D.O cross-desktop spec"
-LICENSE="GPL-2+ LGPL-2+ LGPL-2.1+"
-SLOT="0"
-
-IUSE="debug +introspection"
-
-COMMON_DEPEND=">=dev-libs/glib-2.50:2
-   virtual/libintl
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.40
-   sys-devel/gettext:*
-   virtual/pkgconfig:*"
-
-src_configure() {
-   # Do NOT compile with --disable-debug/--enable-debug=no as it disables 
API
-   # usage checks.
-   mate_src_configure \
-   --enable-debug=$(usex debug yes minimum) \
-   $(use_enable introspection)
-}
-
-src_install() {
-   mate_src_install
-
-   exeinto /etc/X11/xinit/xinitrc.d/
-   newexe "${FILESDIR}/10-xdg-menu-mate-r1" "10-xdg-menu-mate"
-}



[gentoo-commits] proj/gentoo-mate:master commit in: app-arch/engrampa/, app-arch/engrampa/files/

2021-05-23 Thread Adam Feldman
commit: 3a9d9a10f3ab2959c551afb6262aab180da7cac6
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:36:06 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:05 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=3a9d9a10

app-arch/engrampa: Drop 1.22.x

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

 app-arch/engrampa/Manifest |  1 -
 app-arch/engrampa/engrampa-1.22.3-r1.ebuild| 72 --
 .../files/engrampa-1.22.3-gcc-10-fno-common.patch  | 22 ---
 3 files changed, 95 deletions(-)

diff --git a/app-arch/engrampa/Manifest b/app-arch/engrampa/Manifest
index 66f1ad4..f96b0ab 100644
--- a/app-arch/engrampa/Manifest
+++ b/app-arch/engrampa/Manifest
@@ -1,3 +1,2 @@
-DIST engrampa-1.22.3.tar.xz 1407412 BLAKE2B 
d6963da4c18137600c26cff01b2a42d2aaf9a8a435779593b7712e6f7ff920fd25b5fa462edd3d321d63f131b3e4a4486a6f795f2392f6679ae3ef9b343fe8e1
 SHA512 
fd110b2bc188207645985a6f788b8e618cb4910a275950dfb17c0bcc42eff8765a4c7a36760dec2636485685a7a2f4adefb8e2c83537d1b3a819582e3878c9db
 DIST engrampa-1.24.0.tar.xz 1678920 BLAKE2B 
c40ba6a77d667f25853f6ae8cef51a54b32402e9446d6712bcfe8b6cfbddcc39e076604fad6ead1717bcedc52716be028ac9bf912c5762fa204e3ee5d6be10bb
 SHA512 
b6996e224ef52d8fd7102e4498193faa62056e8c22aa260ab5c6361533744f78755d500536ec0e03fd8b42b71da56d3f58d9d760809d20b572bee02fdee07cce
 DIST engrampa-1.24.1.tar.xz 168 BLAKE2B 
3059f98e5db99aabe270a89d7edf334ddca8b9cfd963a34f8b7b99356a1b7a9b14c9f641ea6582f893a5f6e4fe46dde00e5375d7b1c71b80299a7f5121839549
 SHA512 
9d51f24987cecfdd2c560b1ac8f8699bb5ed010bcd5b4a449a1103f725bc63046d0813d28424a3ae7dfcee0568dbf2a282f27ac5512b1c342dafeaec5bcd3b4b

diff --git a/app-arch/engrampa/engrampa-1.22.3-r1.ebuild 
b/app-arch/engrampa/engrampa-1.22.3-r1.ebuild
deleted file mode 100644
index c611a99..000
--- a/app-arch/engrampa/engrampa-1.22.3-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit eutils mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Engrampa archive manager for MATE"
-LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
-SLOT="0"
-
-IUSE="caja magic packagekit"
-
-RDEPEND="
-   >=dev-libs/glib-2.50:2
-   >=dev-libs/json-glib-0.14
-   virtual/libintl
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3[X]
-   x11-libs/pango
-   caja? ( >=mate-base/caja-1.17.1 )
-   magic? ( sys-apps/file )
-   packagekit? ( app-admin/packagekit-base )
-   !!app-arch/mate-file-archiver"
-
-DEPEND="${RDEPEND}
-   app-text/yelp-tools
-   dev-util/glib-utils
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   mate_src_configure \
-   --disable-run-in-place \
-   $(use_enable caja caja-actions) \
-   $(use_enable magic) \
-   $(use_enable packagekit)
-}
-
-PATCHES=(
-   "${FILESDIR}/${P}-gcc-10-fno-common.patch"
-)
-
-src_install() {
-   mate_src_install
-}
-
-pkg_postinst() {
-   mate_pkg_postinst
-   optfeature "Support for 7-zip"  app-arch/p7zip
-   optfeature "Support for ace"  app-arch/unace
-   optfeature "Support for arj"  app-arch/arj
-   optfeature "Support for cpio"  app-arch/cpio
-   optfeature "Support for deb"  app-arch/dpkg
-   optfeature "Support for iso"  app-cdr/cdrtools
-   optfeature "Support for jar,zip"  app-arch/zip app-arch/unzip
-   optfeature "Support for lha"  app-arch/lha
-   optfeature "Support for lzma"  app-arch/xz-utils
-   optfeature "Support for lzop"  app-arch/lzop
-   optfeature "Support for rar"  app-arch/unrar
-   optfeature "Support for rpm"  app-arch/rpm
-   optfeature "Support for unstuff"  app-arch/stuffit
-   optfeature "Support for zoo"  app-arch/zoo
-}

diff --git a/app-arch/engrampa/files/engrampa-1.22.3-gcc-10-fno-common.patch 
b/app-arch/engrampa/files/engrampa-1.22.3-gcc-10-fno-common.patch
deleted file mode 100644
index 61e23e0..000
--- a/app-arch/engrampa/files/engrampa-1.22.3-gcc-10-fno-common.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From 623bd665371e3afd9dc6fa29f9e1cfe735681358 Mon Sep 17 00:00:00 2001
-From: rbuj 
-Date: Wed, 29 Jan 2020 15:52:44 +0100
-Subject: [PATCH] Fix build using gcc 10 -fno-common flag
-

- src/main.c | 2 --
- 1 file changed, 2 deletions(-)
-
-diff --git a/src/main.c b/src/main.c
-index 56e75ea0..a9e297dc 100644
 a/src/main.c
-+++ b/src/main.c
-@@ -33,8 +33,6 @@
- 
- #include "fr-init.h"
- 
--gint  ForceDirectoryCreation;
--
- static char **remaining_args;
- static char  *add_to = NULL;
- static intadd;



[gentoo-commits] proj/gentoo-mate:master commit in: x11-misc/mate-notification-daemon/

2021-05-23 Thread Adam Feldman
commit: 4cd0346eafbd97ba0be6d728441c7d27cd0a6d63
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:44:12 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:22 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=4cd0346e

x11-misc/mate-notification-daemon: Drop 1.22.x

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

 x11-misc/mate-notification-daemon/Manifest |  1 -
 .../mate-notification-daemon-1.22.1.ebuild | 54 --
 2 files changed, 55 deletions(-)

diff --git a/x11-misc/mate-notification-daemon/Manifest 
b/x11-misc/mate-notification-daemon/Manifest
index f8ae012..bc5fae8 100644
--- a/x11-misc/mate-notification-daemon/Manifest
+++ b/x11-misc/mate-notification-daemon/Manifest
@@ -1,3 +1,2 @@
-DIST mate-notification-daemon-1.22.1.tar.xz 340472 BLAKE2B 
09a4fd8f14ffcde530bf3f95aa5d38f5ab1d105dd854464eb698fa3f42594e4559a48d034a0e25a021f2cd2382d02fbe357269636ea2603f940d666467ba4058
 SHA512 
5faec84a2c25b3d17db5e0e564081a5712a0ae9a648b61e7d6233f7c6671a137cb9e0d2328eccad4e634eb99cae72cf235589f3667b9bf29e66c3734f7ed8bc7
 DIST mate-notification-daemon-1.24.0.tar.xz 392588 BLAKE2B 
480272848b3403d34eaa1f555a573dbf74a4e8e45e76c4726943bda4c29d7002f00d1a828e318d51dd07a44df1c64902c38bbe41c1c14339e8cb8710f7008f36
 SHA512 
0fd2da98001c60672d4833e974ac74dd561f54ca6f3fd74f8d6620e3b28768add46dd891d7446b01426b6aed09d4966d902cbde45aac3498fdcbb837e531a147
 DIST mate-notification-daemon-1.24.1.tar.xz 395444 BLAKE2B 
dca14216c7027b2e816c7df64636c3f1c7ae25db253167f9c5d1b296cd9bf3c7533e1f7a33a7d4f2bf5fe074e8f0911462463fffa5b839fd8decd62a4716
 SHA512 
7c799e31229860cb34fa4a19421360a4a93d81826bc4381ed284e1ec280bae67d2f5bdf5d751f3dad6a1da424a5c598b2def60b7b24fd6ea41da5f126f456bac

diff --git 
a/x11-misc/mate-notification-daemon/mate-notification-daemon-1.22.1.ebuild 
b/x11-misc/mate-notification-daemon/mate-notification-daemon-1.22.1.ebuild
deleted file mode 100644
index aafe199..000
--- a/x11-misc/mate-notification-daemon/mate-notification-daemon-1.22.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="MATE Notification daemon"
-LICENSE="GPL-2+ GPL-3+"
-SLOT="0"
-
-IUSE=""
-
-COMMON_DEPEND="dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   >=sys-apps/dbus-1
-   x11-libs/cairo
-   >=x11-libs/gdk-pixbuf-2.22:2
-   >=x11-libs/libnotify-0.7
-   x11-libs/libX11
-   virtual/libintl
-   >=x11-libs/gtk+-3.22:3
-   >=x11-libs/libwnck-3:3
-   >=media-libs/libcanberra-0.4:0[gtk3]
-   !x11-misc/notify-osd
-   !x11-misc/qtnotifydaemon
-   !x11-misc/notification-daemon"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   app-arch/xz-utils
-   dev-util/gdbus-codegen
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext:*
-   >=sys-devel/libtool-2.2.6:2
-   virtual/pkgconfig:*"
-
-src_configure() {
-   mate_src_configure
-}
-
-src_install() {
-   mate_src_install
-
-   insinto /usr/share/dbus-1/services
-   doins "${FILESDIR}/org.freedesktop.Notifications.service"
-}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-common/

2021-05-23 Thread Adam Feldman
commit: edec277ecf40038e3c5e21bd9c98a03b60279803
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:59:56 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:59:56 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=edec277e

mate-base/mate-common: Drop 1.22.x

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

 mate-base/mate-common/Manifest  |  1 -
 mate-base/mate-common/mate-common-1.22.2.ebuild | 32 -
 2 files changed, 33 deletions(-)

diff --git a/mate-base/mate-common/Manifest b/mate-base/mate-common/Manifest
index 607d6be..9a99c2f 100644
--- a/mate-base/mate-common/Manifest
+++ b/mate-base/mate-common/Manifest
@@ -1,3 +1,2 @@
-DIST mate-common-1.22.2.tar.xz 69620 BLAKE2B 
8acf4ff0ce792ea949913b2f6f591f3ab76e442ac40196ef6bfaf5fc46fdcde439a7e8f71698437c499b7effdbd8fdefd77e8aa254718af9dde053fa184e5716
 SHA512 
0afedfae9a93f9b3f8344d5f8a93d80b71b472f084e8322daa7f616e9f0861511536aa1f56f8cfc57abd7e1720cd4695dcecc0582483b009bc6e67daaa82107b
 DIST mate-common-1.24.1.tar.xz 69316 BLAKE2B 
e265994231d17bf4bda7a02e4cc2d54d8335eff5ee5c3b35b680335a01a21992d9d13632e95029c03b04cfb8d92ecd9b035f7bd2a8666feb4ccc54a937c71e3b
 SHA512 
da3e670e5b4f566bf1893692b34b63d94cb5bd993ce94d0d8245a54c12b2cc2c6af7c29edd184b09ce5296566dbe34112bc318e740a8a7910e4767569e64d623
 DIST mate-common-1.24.2.tar.xz 69612 BLAKE2B 
31010b5417824153046e07c4724c70e5ce9f69c0ad6945ccf276026c7f1d0238b6313cbe13a64a329a889f97a994fa749de152a0e6f02e8bc88e5f7ecf73febf
 SHA512 
aae7cf6f4537b125d363e7be1f349cb4ba9515405d1e48704f87c647b2489647cfa14399f41b65a8c1b2a8851dfe8077ce47a3b618355767cc61a6e0037ba3d0

diff --git a/mate-base/mate-common/mate-common-1.22.2.ebuild 
b/mate-base/mate-common/mate-common-1.22.2.ebuild
deleted file mode 100644
index 2c3030d..000
--- a/mate-base/mate-common/mate-common-1.22.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit mate-desktop.org
-
-if [[ ${PV} ==  ]]; then
-   inherit autotools
-else
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Common files for development of MATE packages"
-LICENSE="GPL-3+"
-SLOT="0"
-
-src_prepare() {
-   default
-   if [[ ${PV} ==  ]]; then
-   eautoreconf
-   fi
-}
-
-src_install() {
-   mv doc-build/README README.doc-build \
-   || die "Failed to rename doc-build/README."
-
-   default
-
-   dodoc doc/usage.txt
-}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-power-manager/

2021-05-23 Thread Adam Feldman
commit: a5c093ca2dfc0b7ff5adc342ea8e8a6d55284b0a
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:40:32 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:13 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=a5c093ca

mate-extra/mate-power-manager: Drop 1.22.x

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

 mate-extra/mate-power-manager/Manifest |  1 -
 .../mate-power-manager-1.22.2-r1.ebuild| 73 --
 2 files changed, 74 deletions(-)

diff --git a/mate-extra/mate-power-manager/Manifest 
b/mate-extra/mate-power-manager/Manifest
index f842ea6..fca37bc 100644
--- a/mate-extra/mate-power-manager/Manifest
+++ b/mate-extra/mate-power-manager/Manifest
@@ -1,3 +1,2 @@
-DIST mate-power-manager-1.22.2.tar.xz 3188752 BLAKE2B 
351c18436183679b2b0ecf549a8efe16a691876b7299f06d88d7f7c3434feab1f35ac26a015b5425260dc1a41a4734f0244825a69bb77211320d60f4328ff63b
 SHA512 
99a273558c072ce1d23c8964d9292f45a29a2d5a5e89b504e79e3686a65ad8cc7b200441ba22147d3d828f574e2cebc260c47531338e286b2c47988263763af6
 DIST mate-power-manager-1.24.1.tar.xz 6245524 BLAKE2B 
b9be1aab7e2f397edba9a681310a9903b11e11abf1af8557c613a1e6bf7b89d5aa495ddfcef4bc23f11aa6aca215b86e3a1c9adfdfd481f0e4353268ca5dd7cd
 SHA512 
57bae519bfa2894bc6923bf0932f823bcabe2dc0de06dc6676597708482b369a24f39bb94558163f0fdcc2d764702b87f58abc1793679a1c7fb7f53be074bae5
 DIST mate-power-manager-1.24.2.tar.xz 6194976 BLAKE2B 
6f533f9d6cbe99e9acf6e0fe9deb641e771d38f80add33b1f51aaa27aff46e2bb77d7da60ee7994908667d34b6f05c868472283cf9fd52c251467482c7c64bb3
 SHA512 
edbad37f41e67219790dfe704936be6fcf1d727cdff3b51cb43234b0d48f53666361d0f048704a594a594b5e124d7d8ea9d626c560cbc23ba4de3dcaafbd55ff

diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.22.2-r1.ebuild 
b/mate-extra/mate-power-manager/mate-power-manager-1.22.2-r1.ebuild
deleted file mode 100644
index c3d316b..000
--- a/mate-extra/mate-power-manager/mate-power-manager-1.22.2-r1.ebuild
+++ /dev/null
@@ -1,73 +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="A session daemon for MATE that makes it easy to manage your 
laptop or desktop"
-
-LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
-SLOT="0"
-IUSE="+applet elogind gnome-keyring policykit systemd test"
-
-REQUIRED_USE="?? ( elogind systemd )"
-
-# Interactive testsuite.
-RESTRICT="test"
-
-COMMON_DEPEND="
-   >=dev-libs/dbus-glib-0.70
-   >=dev-libs/glib-2.50:2
-   >=media-libs/libcanberra-0.10:0[gtk3]
-   >=sys-apps/dbus-1
-   >=x11-apps/xrandr-1.3
-   >=x11-libs/cairo-1
-   >=x11-libs/gdk-pixbuf-2.11:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXrandr
-   >=x11-libs/libnotify-0.7:0
-   x11-libs/pango
-   applet? ( >=mate-base/mate-panel-1.17.0 )
-   gnome-keyring? ( >=gnome-base/libgnome-keyring-3 )
-   >=sys-power/upower-0.9.23:="
-
-RDEPEND="${COMMON_DEPEND}
-   policykit? ( >=mate-extra/mate-polkit-1.6 )
-   systemd? ( sys-apps/systemd )
-   !systemd? (
-   elogind? ( sys-auth/elogind )
-   !elogind? ( >=sys-auth/consolekit-0.9.2 )
-   )
-"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.3
-   app-text/rarian
-   >=app-text/scrollkeeper-dtd-1:1.0
-   app-text/yelp-tools
-   dev-util/glib-utils
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig
-   x11-base/xorg-proto"
-
-src_configure() {
-   mate_src_configure \
-   --enable-compile-warnings=minimum \
-   $(use_with gnome-keyring keyring) \
-   $(use_enable applet applets) \
-   $(use_enable test tests)
-}
-
-src_test() {
-   unset DBUS_SESSION_BUS_ADDRESS
-
-   dbus-launch Xemake check || die "Test phase failed"
-}



[gentoo-commits] proj/gentoo-mate:master commit in: x11-themes/mate-backgrounds/

2021-05-23 Thread Adam Feldman
commit: 3f4842a5bcfe559339ab752034ce1b94069a340f
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:44:36 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:24 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=3f4842a5

x11-themes/mate-backgrounds: Drop 1.22.x

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

 x11-themes/mate-backgrounds/Manifest|  1 -
 .../mate-backgrounds/mate-backgrounds-1.22.0.ebuild | 17 -
 2 files changed, 18 deletions(-)

diff --git a/x11-themes/mate-backgrounds/Manifest 
b/x11-themes/mate-backgrounds/Manifest
index a83b341..b5a3fbc 100644
--- a/x11-themes/mate-backgrounds/Manifest
+++ b/x11-themes/mate-backgrounds/Manifest
@@ -1,2 +1 @@
-DIST mate-backgrounds-1.22.0.tar.xz 20888288 BLAKE2B 
66b3d9fee7917e2a3bc3222f1e663d77532407dc3169329d66f9d4a7b0ac1aec91c30fdf4516672760a7cbf05b0091c6b57221504ef50abd16fa869ffadff145
 SHA512 
b7135cdb20972d50f43026cf98275faaa3c5e41bd0900bca7624a8f9ed03d0ec7f465c78aaf3da534ea6798e8cc690727a1fed8f14b3fb42a8a63bd82858ff30
 DIST mate-backgrounds-1.24.1.tar.xz 20958108 BLAKE2B 
398e9c7dd9692829c0b5854f828ba911ed01deb300e40e09489971df1e453490f681098e7e85b367404956ef0c515eb07d4e898e44be07fd555f0daf818a27e9
 SHA512 
6af6bd1be186da3c4c594687ece1f6b50c3b05fb0619dd0062955e9e09c8007efe76a7625826cba0e4716c8ed61eac4d372b0a3bf2b87f00b7f170bb97709f09

diff --git a/x11-themes/mate-backgrounds/mate-backgrounds-1.22.0.ebuild 
b/x11-themes/mate-backgrounds/mate-backgrounds-1.22.0.ebuild
deleted file mode 100644
index 34552ad..000
--- a/x11-themes/mate-backgrounds/mate-backgrounds-1.22.0.ebuild
+++ /dev/null
@@ -1,17 +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="A set of backgrounds packaged with the MATE desktop"
-LICENSE="CC-BY-SA-4.0 GPL-2+"
-SLOT="0"
-
-DEPEND=">=dev-util/intltool-0.35
-   sys-devel/gettext:*"



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-user-guide/

2021-05-23 Thread Adam Feldman
commit: cb7105d9f23703df06d744ac02c84a2369dba6c4
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:58:43 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:58:43 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=cb7105d9

mate-extra/mate-user-guide: Drop 1.22.x

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

 mate-extra/mate-user-guide/Manifest|  1 -
 .../mate-user-guide-1.22.3-r1.ebuild   | 30 --
 2 files changed, 31 deletions(-)

diff --git a/mate-extra/mate-user-guide/Manifest 
b/mate-extra/mate-user-guide/Manifest
index 3a07b13..8c731ac 100644
--- a/mate-extra/mate-user-guide/Manifest
+++ b/mate-extra/mate-user-guide/Manifest
@@ -1,2 +1 @@
-DIST mate-user-guide-1.22.3.tar.xz 8959336 BLAKE2B 
5e8b122aedee7121315eb4c1ec0a73146034d417784390a88eb782b52648f5be07066ab61f5245d4c19dde3569e5b8b2d764cb786e795b9f27a39930f9b6302a
 SHA512 
87524a59143f3f79996e7bec9de059954d6447391f73238591ce437d4ff9ff21c5ec54d73876342a3077899315e8d7e9b620c2f38ca84b3a75c929e02463bc7b
 DIST mate-user-guide-1.24.0.tar.xz 9029524 BLAKE2B 
304209588d67f83e0d3505277a2a964c7f76582755073886ebac5693a3dcd771bde1d1547430ac94113929da0441c85f5f86a6f27cb995c252a770d44c113154
 SHA512 
80129fcbf628dd10d0748d0a35f9456c15a3748c1cd407aa7adf4d90e5f87d999778d136d772c64392279152da9b76912378b16a894f03dc5d11bec478ad6301

diff --git a/mate-extra/mate-user-guide/mate-user-guide-1.22.3-r1.ebuild 
b/mate-extra/mate-user-guide/mate-user-guide-1.22.3-r1.ebuild
deleted file mode 100644
index 447eb91..000
--- a/mate-extra/mate-user-guide/mate-user-guide-1.22.3-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm x86"
-fi
-
-DESCRIPTION="User documentation for MATE Desktop"
-LICENSE="FDL-1.1+ GPL-2+"
-SLOT="0"
-
-COMMON_DEPEND="virtual/libintl:0"
-
-RDEPEND="${COMMON_DEPEND}
-   gnome-extra/yelp
-"
-
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.40
-   app-text/yelp-tools
-   sys-devel/gettext:*
-   virtual/pkgconfig:*
-   !!mate-base/mate-desktop[user-guide(-)]
-"



[gentoo-commits] proj/gentoo-mate:master commit in: x11-themes/mate-icon-theme/

2021-05-23 Thread Adam Feldman
commit: b342bb3b42486cd7caf40371e165a9e62676d7f3
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:55:28 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:55:28 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=b342bb3b

x11-themes/mate-icon-theme: Drop 1.22.x

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

 x11-themes/mate-icon-theme/Manifest|  1 -
 .../mate-icon-theme/mate-icon-theme-1.22.2.ebuild  | 30 --
 2 files changed, 31 deletions(-)

diff --git a/x11-themes/mate-icon-theme/Manifest 
b/x11-themes/mate-icon-theme/Manifest
index a93335a..35b623a 100644
--- a/x11-themes/mate-icon-theme/Manifest
+++ b/x11-themes/mate-icon-theme/Manifest
@@ -1,2 +1 @@
-DIST mate-icon-theme-1.22.2.tar.xz 21450764 BLAKE2B 
85135d017a701635735448bb2104e66b8147bd7251d1b1ad8d8deed3d35081f86f92c5f12ef048bfc4b26c8c4d98835a2fd8cf924fc1df9ee0dfd3f7f62e9968
 SHA512 
bea4676305b3b26b1a65080d960c33276c1ba30bcd442a200773745b2723700f1ff04affb2483f9c2389475b80700355e85a1fa7fe20c8ee645927d95e0d3b23
 DIST mate-icon-theme-1.24.0.tar.xz 22178384 BLAKE2B 
7e1dbfcc83da49f30bad89106bfadf8d19d1ef3074d1302edad2934a46e6caac1aab003a126c823757e4a75127279107945e921d6463a05476ca98cf898ff74f
 SHA512 
18ad6a236f02b7536697fed9086eadd997f0c47cc8311324e43641b21ccf942d0dbd52fa6c49623e679d3b23d82619cc256c98d9f8ccc3b3d4cda5d9a6e465f1

diff --git a/x11-themes/mate-icon-theme/mate-icon-theme-1.22.2.ebuild 
b/x11-themes/mate-icon-theme/mate-icon-theme-1.22.2.ebuild
deleted file mode 100644
index 6d708ca..000
--- a/x11-themes/mate-icon-theme/mate-icon-theme-1.22.2.ebuild
+++ /dev/null
@@ -1,30 +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="MATE default icon themes"
-LICENSE="CC-BY-SA-3.0 CC-PD GPL-1+"
-SLOT="0"
-
-COMMON_DEPEND=">=x11-themes/hicolor-icon-theme-0.10"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.40
-   >=x11-misc/icon-naming-utils-0.8.7:0
-   sys-devel/gettext:*
-   virtual/pkgconfig:*"
-
-RESTRICT="binchecks strip"
-
-src_configure() {
-   mate_src_configure --enable-icon-mapping
-}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-control-center/

2021-05-23 Thread Adam Feldman
commit: 742b05bbe747fbbe54dea10901698e12ccfa1e64
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:43:21 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:20 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=742b05bb

mate-base/mate-control-center: Drop 1.22.x

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

 mate-base/mate-control-center/Manifest |  1 -
 .../mate-control-center-1.22.2-r1.ebuild   | 70 --
 2 files changed, 71 deletions(-)

diff --git a/mate-base/mate-control-center/Manifest 
b/mate-base/mate-control-center/Manifest
index 3b7fb70..1c806d8 100644
--- a/mate-base/mate-control-center/Manifest
+++ b/mate-base/mate-control-center/Manifest
@@ -1,3 +1,2 @@
-DIST mate-control-center-1.22.2.tar.xz 1614216 BLAKE2B 
cb6dfe509740b2bedc036e849c85f9b752a56310fffe1bb31a19edfd428b3e2e35bf3a5bff9d83e3b72fc05f7bbd97bccd003340bfcb8cb43e9b6964a63957e8
 SHA512 
994563b8970ebf51ba44afe49122e82ff67fdb6c78ab2e8175acc6f619d40a82284cbafc1d61b89b25ac9e8488b00f63433eda94118d40a4fbff0d644ae1ddd5
 DIST mate-control-center-1.24.0.tar.xz 3488572 BLAKE2B 
683b3326deeacf3f47a8ca3201de66a492cac022ae341dfc54cdc97c9a5260e223a082a3dd899b31680e4a8e5b3237d0338c7fd8125468f75e1b00b4e6a130c7
 SHA512 
78e70bc94a34f8e6083d1951b12fcb9f7e8b7c55c5fac612ee27c8175e91b3872f6ecf15162e747444586612a94f857a02fb91a6fad142b5d0a16e749792c2ce
 DIST mate-control-center-1.24.1.tar.xz 3395740 BLAKE2B 
88efb5b170af461b2505be654b005818b5b9087f5535365b7fe4033c05debcbf842fa33a77e4c78e72d0c7426794e943b773612f4431128c01fa77a15f5c2670
 SHA512 
f0440bfa79099610eb1f9f03bda13347b57d9250264f27971b69a5900338cf750e6eeb14111d7069bf597f5d4c4ed66b0466b926a54e4719845da23de31665f4

diff --git a/mate-base/mate-control-center/mate-control-center-1.22.2-r1.ebuild 
b/mate-base/mate-control-center/mate-control-center-1.22.2-r1.ebuild
deleted file mode 100644
index 32b3570..000
--- a/mate-base/mate-control-center/mate-control-center-1.22.2-r1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="The MATE Desktop configuration tool"
-LICENSE="FDL-1.1+ GPL-2+ LGPL-2+ LGPL-2.1+ HPND"
-SLOT="0"
-
-IUSE="accountsservice appindicator debug"
-
-RDEPEND="
-   dev-libs/atk
-   >=dev-libs/dbus-glib-0.73
-   >=dev-libs/glib-2.50:2
-   dev-libs/libxml2:2
-   >=gnome-base/dconf-0.13.4
-   >=gnome-base/librsvg-2.0:2
-   >=mate-base/libmatekbd-1.17.0
-   >=mate-base/mate-desktop-1.21.2
-   >=mate-base/caja-1.20.0
-   >=mate-base/mate-menus-1.21.0
-   >=mate-base/mate-settings-daemon-1.21.2
-   >=media-libs/fontconfig-1:1.0
-   media-libs/freetype:2
-   media-libs/libcanberra:0[gtk3]
-   >=sys-apps/dbus-1
-   x11-apps/xmodmap
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcursor
-   x11-libs/libXext
-   >=x11-libs/libXi-1.5
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   >=x11-libs/libxklavier-4
-   x11-libs/pango
-   >=x11-wm/marco-1.17.0:=
-   virtual/libintl
-   accountsservice? ( sys-apps/accountsservice )
-   appindicator? ( dev-libs/libappindicator:3 )"
-
-DEPEND="${RDEPEND}
-   app-text/rarian
-   >=app-text/scrollkeeper-dtd-1:1.0
-   app-text/yelp-tools
-   dev-util/desktop-file-utils
-   dev-util/glib-utils
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   x11-base/xorg-proto
-   virtual/pkgconfig"
-
-src_configure() {
-   mate_src_configure \
-   --disable-update-mimedb \
-   $(use_enable appindicator) \
-   $(use_enable debug)
-}



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

2021-05-23 Thread Adam Feldman
commit: 7e84b94b4c6127d5a7afa89aeaaafa4b5e559488
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:41:07 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:16 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=7e84b94b

mate-extra/mate-media: Drop 1.22.x

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

 mate-extra/mate-media/Manifest |  1 -
 mate-extra/mate-media/mate-media-1.22.2.ebuild | 35 --
 2 files changed, 36 deletions(-)

diff --git a/mate-extra/mate-media/Manifest b/mate-extra/mate-media/Manifest
index 9d8af12..b6b76e4 100644
--- a/mate-extra/mate-media/Manifest
+++ b/mate-extra/mate-media/Manifest
@@ -1,3 +1,2 @@
-DIST mate-media-1.22.2.tar.xz 490464 BLAKE2B 
16851ea5c42967cd753af4f79cfab17e385ea3584418a68b54ea894ed99c7a16a0bbe1ad496432a1521b17acedcc6622444f10e7c5f1073e58ce4175d6ff0655
 SHA512 
88a78e7ddf02335ffe4d819921cbb978b9e2fc430e0edd950f04edb3999f94d59c4aa39a8089ac0c66af6b152b1514e20810ae4c577095dcd60735046a88ec3a
 DIST mate-media-1.24.0.tar.xz 568488 BLAKE2B 
9c7d3f264489a3888ef6b45e4ce7e8c23a53634b3b72db32092889f1656afc8a6b2988b35e5ecdc0bb48ebb20c4e86b64dbc93ec308947159feb89877230673e
 SHA512 
82ee6a16a49d9f4d229539cfacb5803c150af09dff227fb5995bf78e2b83a1f5bddb307756648e569a138124e4485ca56f635184e47fbfd76dcedd17f2bf0425
 DIST mate-media-1.24.1.tar.xz 568328 BLAKE2B 
715ca7954039d020915e86fd8e574508ae1436c5ab99a76c18ccb55ab86a8d95c85c5de1a321684c895cde31832ec9e756b841f796bd9292ff84cf8240f21ff0
 SHA512 
88a8f1b8ee1684c6270ee65d17cd4d031830cd968069cae38a1844b0688cdcac25fc2e09c415d8e55c5b8564c4e0421e2c111cc44de9221bf37cf0e31dc572d3

diff --git a/mate-extra/mate-media/mate-media-1.22.2.ebuild 
b/mate-extra/mate-media/mate-media-1.22.2.ebuild
deleted file mode 100644
index f7499e5..000
--- a/mate-extra/mate-media/mate-media-1.22.2.ebuild
+++ /dev/null
@@ -1,35 +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="Multimedia related programs for the MATE desktop"
-LICENSE="FDL-1.1+ GPL-2+ HPND LGPL-2+"
-SLOT="0"
-
-IUSE=""
-
-COMMON_DEPEND=">=dev-libs/glib-2.50:2
-   dev-libs/libxml2:2
-   >=mate-base/mate-panel-1.17.0
-   >=mate-base/mate-desktop-1.17.0
-   >=media-libs/libcanberra-0.13[gtk3]
-   >=media-libs/libmatemixer-1.10.0
-   x11-libs/cairo
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/pango
-   virtual/libintl"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.35.0
-   sys-devel/gettext:*
-   virtual/pkgconfig:*
-   !!

[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-base/mate-session-manager/files/, mate-base/mate-session-manager/

2021-05-23 Thread Adam Feldman
commit: af225f1a0eadaaa3492293854e28868c20f493c5
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:52:20 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:52:20 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=af225f1a

mate-base/mate-session-manager: Drop 1.22.x

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

 mate-base/mate-session-manager/Manifest|  1 -
 .../files/10-user-dirs-update-mate | 10 ---
 .../mate-session-manager/files/15-xdg-data-mate|  9 ---
 .../mate-session-manager-1.22.0-elogind.patch  | 84 -
 ...ion-manager-1.22.0-fix-systemd-regression.patch | 65 
 .../mate-session-manager-1.22.3-r3.ebuild  | 87 --
 6 files changed, 256 deletions(-)

diff --git a/mate-base/mate-session-manager/Manifest 
b/mate-base/mate-session-manager/Manifest
index 1cf0f5a..5f83a57 100644
--- a/mate-base/mate-session-manager/Manifest
+++ b/mate-base/mate-session-manager/Manifest
@@ -1,3 +1,2 @@
-DIST mate-session-manager-1.22.3.tar.xz 582412 BLAKE2B 
9e502b356e09aa4ecebb5a75771cfed0dd16a3e44baf176fd5ba3dbf9b5bd000f6572498dfee69e794971e491eb5d9f2fa3a8c923aefe2ee6e42a086521fdd9d
 SHA512 
2a53722c1468c244e90632e3a949c331922e018998300ee8c5de44973e17116822d2a747b4d0d315348da9a20c011f46c2b5ea569eef0b6b90785f3df55d98f6
 DIST mate-session-manager-1.24.0.tar.xz 709712 BLAKE2B 
6455872dfc89cdd3ced563a877e30ef59d2c6d94bd8f3b930eb778ea6b22a52ee860d785ba13d348e37e0d74526de4aef229d5c7b022e7f974ac949f553d7704
 SHA512 
ee519c8ded1f2df26e62a1384439e8929942d19560c258c91010f8d34bcc7518975406fbc0a5b76d4e73e954cdc2ea106d71476e446573d4a77d2704f6cc9e37
 DIST mate-session-manager-1.24.1.tar.xz 711188 BLAKE2B 
a2d48b53fbff6f2bf56cdf24efb709a17458341c75a37ab7494fcf344064b64f50e9527f11d74b681d2156508e24fefdb7a5c7637b72deddf1f3a82e4096031b
 SHA512 
ca561e13080ef334a69f18b3aec0993532381ea5c178a0acf969bf2ed9cb5d484626404ab43d809727d8eef9b5eda29adc224168290f78a63da2621ac7ef79f5

diff --git a/mate-base/mate-session-manager/files/10-user-dirs-update-mate 
b/mate-base/mate-session-manager/files/10-user-dirs-update-mate
deleted file mode 100644
index 35973aa..000
--- a/mate-base/mate-session-manager/files/10-user-dirs-update-mate
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-# Create various XDG directories, and write ~/.config/user-dirs.dirs, etc.
-# That file is read by glib to get XDG_PICTURES_DIR, etc
-
-if [ "$DESKTOP_SESSION" = "mate" ]; then
-   if type xdg-user-dirs-update >/dev/null 2>&1; then
-   xdg-user-dirs-update
-   fi
-fi

diff --git a/mate-base/mate-session-manager/files/15-xdg-data-mate 
b/mate-base/mate-session-manager/files/15-xdg-data-mate
deleted file mode 100644
index df360cf..000
--- a/mate-base/mate-session-manager/files/15-xdg-data-mate
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-if [ "$DESKTOP_SESSION" = "mate" ]; then
-   if [ -z "$XDG_DATA_DIRS" ]; then
-   export 
XDG_DATA_DIRS=/usr/share/mate:/usr/local/share/:/usr/share/
-   else
-   export XDG_DATA_DIRS=/usr/share/mate:"$XDG_DATA_DIRS"
-   fi
-fi

diff --git 
a/mate-base/mate-session-manager/files/mate-session-manager-1.22.0-elogind.patch
 
b/mate-base/mate-session-manager/files/mate-session-manager-1.22.0-elogind.patch
deleted file mode 100644
index ebe68a0..000
--- 
a/mate-base/mate-session-manager/files/mate-session-manager-1.22.0-elogind.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-From e6f62cd82d2717cb26951629e3f071814694fd07 Mon Sep 17 00:00:00 2001
-From: Victor Kareh 
-Date: Fri, 8 Mar 2019 13:37:01 -0500
-Subject: [PATCH] Add ELOGIND support
-
-Reuses HAVE_SYSTEMD #define to reduce #ifdef mess.
-
-ELOGIND is not officially supported, but since it's
-a subset of systemd, it should work out of the box.
-
-Co-authored-by: Joakim Tjernlund 
-Co-authored-by: Jorge Pizarro Callejas 

- configure.ac | 29 +
- mate-session/Makefile.am |  2 ++
- 2 files changed, 31 insertions(+)
-
-diff --git a/configure.ac b/configure.ac
-index 207ad97..1390ba0 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -109,6 +109,34 @@ fi
- AM_CONDITIONAL(HAVE_SYSTEMD, test "x$use_systemd" = "xyes")
- AC_SUBST(HAVE_SYSTEMD)
- 
-+dnl 
-+dnl Check for elogind
-+dnl
-+dnl elogind is not officially supported, but since it's a subset of
-+dnl systemd, it should work out of the box
-+dnl 
-+
-+AC_ARG_WITH(elogind,
-+AS_HELP_STRING([--with-elogind],
-+[Use libelogind instead of libsystemd-login]),,
-+with_elogind=auto)
-+
-+use_elogind=no
-+if test "x$with_elogind" != "xno"; then
-+P

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

2021-05-23 Thread Adam Feldman
commit: 40fb028cfab2298bd61d8704392cab3e3ba0d9e9
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:42:04 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:18 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=40fb028c

mate-extra/mate-screensaver: Drop 1.22.x

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

 mate-extra/mate-screensaver/Manifest   |   1 -
 .../mate-screensaver-1.22.2.ebuild | 118 -
 2 files changed, 119 deletions(-)

diff --git a/mate-extra/mate-screensaver/Manifest 
b/mate-extra/mate-screensaver/Manifest
index 5f1d95f..8c09376 100644
--- a/mate-extra/mate-screensaver/Manifest
+++ b/mate-extra/mate-screensaver/Manifest
@@ -1,3 +1,2 @@
-DIST mate-screensaver-1.22.2.tar.xz 4943380 BLAKE2B 
20d28ee7496af9fd9ac23d4f083eaee716eb97e1c3a9b921fc6b3655cfe4c6dc6e482827eb7fad40fbfd5dfb705bcac57aff3bf60e232b84562e496a7a56c354
 SHA512 
6d28f7261556d59af0bdb8c59ac13fc042c9c5b4cce47e7f6d4148041eb7f05d5cb062f85f05dddb51d009e4aebac31c21fc1243c0e07813adc050fede134ef3
 DIST mate-screensaver-1.24.0.tar.xz 5075860 BLAKE2B 
f669cb9ce1c84cdd2dd84b1c88b668ad1910102ae5d9765117d313b6ece03e535b5fdaae600d8f3315346ac1109d1316e15c0dcac5bd4a637b682fa7b5d1e22b
 SHA512 
8947b85ab8b006a1756649131a9184e4eb8f44c563f5a1b55840aa8280820713bca1ce46fece92b5ac44a73193bfe965e8ef0d17e8e403a751807ee72c674cc0
 DIST mate-screensaver-1.24.1.tar.xz 5073836 BLAKE2B 
501c8dffbb5e53b88414c799a6e4d25cf89dfe490e6a902901c339b142e2b687dc2e668f65349a2ff43b6eb44d7721658de771b1a698624f95d1828da2fbda67
 SHA512 
f7cab280da90623ad265beb84770e48431ae6685fbb1eabc7cd2ad07b0f8ed5da2426017243d83271b969d2e020b8afcc93a6135b4c8e42a29f454a4e826b277

diff --git a/mate-extra/mate-screensaver/mate-screensaver-1.22.2.ebuild 
b/mate-extra/mate-screensaver/mate-screensaver-1.22.2.ebuild
deleted file mode 100644
index fbe8e82..000
--- a/mate-extra/mate-screensaver/mate-screensaver-1.22.2.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit mate readme.gentoo-r1
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Replaces xscreensaver, integrating with the MATE desktop"
-
-LICENSE="GPL-2+ HPND LGPL-2+"
-SLOT="0"
-IUSE="X debug consolekit elogind kernel_linux libnotify opengl pam systemd"
-REQUIRED_USE="?? ( elogind systemd )"
-
-DOC_CONTENTS="
-   Information for converting screensavers is located in
-   /usr/share/doc/${PF}/xss-conversion.txt*
-"
-
-COMMON_DEPEND="
-   >=dev-libs/dbus-glib-0.71:0
-   >=dev-libs/glib-2.50:2
-   gnome-base/dconf
-   >=mate-base/libmatekbd-1.17.0
-   >=mate-base/mate-desktop-1.17.0
-   >=mate-base/mate-menus-1.21.0
-   >=sys-apps/dbus-0.30
-   >=x11-libs/gdk-pixbuf-2.14:2
-   >=x11-libs/libX11-1
-   x11-libs/cairo
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libXext
-   x11-libs/libXrandr
-   x11-libs/libXScrnSaver
-   x11-libs/libXxf86vm
-   x11-libs/libxklavier
-   x11-libs/pango
-   virtual/libintl
-   consolekit? ( sys-auth/consolekit )
-   libnotify? ( >=x11-libs/libnotify-0.7:0 )
-   opengl? ( virtual/opengl )
-   pam? ( gnome-base/gnome-keyring sys-libs/pam )
-   !pam? ( kernel_linux? ( sys-apps/shadow ) )
-   elogind? ( sys-auth/elogind )
-   systemd? ( sys-apps/systemd:= )
-   !!https://bugzilla.gnome.org/show_bug.cgi?id=370847
-   # is fixed.
-   if ! use pam ; then
-   fperms u+s /usr/libexec/mate-screensaver-dialog
-   fi
-
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   mate_pkg_postinst
-
-   if has_version "> 
/etc/portage/package.use"
-   echo
-   fi
-
-   readme.gentoo_print_elog
-}



[gentoo-commits] proj/gentoo-mate:master commit in: app-text/atril/

2021-05-23 Thread Adam Feldman
commit: ebc6e9d5566d09e5ea6514f96288caeeb720248e
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:37:54 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:09 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=ebc6e9d5

app-text/atril: Drop 1.22.x

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

 app-text/atril/Manifest|  1 -
 app-text/atril/atril-1.22.3.ebuild | 90 --
 2 files changed, 91 deletions(-)

diff --git a/app-text/atril/Manifest b/app-text/atril/Manifest
index 3af59ac..635d19e 100644
--- a/app-text/atril/Manifest
+++ b/app-text/atril/Manifest
@@ -1,2 +1 @@
-DIST atril-1.22.3.tar.xz 1798396 BLAKE2B 
1f06585393e1a9a6d51b7cc50c52bd61e8e115aa3985ffca0233c2e09219a88c3a30b4ddbcc70bfb9ddf663810e6cc67e968f8a32bfd4a3f07b4646e896a7f18
 SHA512 
f4a83702818e1fb32279c67f1727c01480d27fe756f3fc0ff9dcd42584ce74ce10ac7ee81c0149f3756b6eb08f2a011ede28706ab54ff16a51c544a1af3b103f
 DIST atril-1.24.0.tar.xz 2062468 BLAKE2B 
374c7769f5c9753b1d9a6143c796a317914aebbb638b6f0a85b732b43b0e9ad2fff1374a5f3f4dc1abc8c265ce003bfef2cddc47cdb18ddc7f24c4905ef5232c
 SHA512 
dfdd5ed82ba76c4f0a446a95b0a6201bedf8b4d00ff46ce697a5b937251f6d7a1888ca76eef623eb84dcddb425c7ad662e179f593686bba064b7491d4d940293

diff --git a/app-text/atril/atril-1.22.3.ebuild 
b/app-text/atril/atril-1.22.3.ebuild
deleted file mode 100644
index c5b3e71..000
--- a/app-text/atril/atril-1.22.3.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Atril document viewer for MATE"
-LICENSE="FDL-1.1+ GPL-2+ GPL-3+ LGPL-2+ LGPL-2.1+"
-SLOT="0"
-
-IUSE="caja dbus debug djvu dvi epub +introspection gnome-keyring +postscript 
t1lib tiff xps"
-
-REQUIRED_USE="t1lib? ( dvi )"
-
-RDEPEND="
-   >=app-text/poppler-0.22[cairo]
-   dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   >=dev-libs/libxml2-2.5:2
-   sys-libs/zlib
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libICE
-   >=x11-libs/libSM-1:0
-   x11-libs/libX11
-   >=x11-libs/cairo-1.9.10
-   x11-libs/pango
-   caja? ( >=mate-base/caja-1.17.1[introspection?] )
-   djvu? ( >=app-text/djvu-3.5.17:0 )
-   dvi? (
-   virtual/tex-base
-   t1lib? ( >=media-libs/t1lib-5:5 )
-   )
-   epub? (
-   dev-libs/mathjax
-   >=net-libs/webkit-gtk-2.4.3:4
-   )
-   gnome-keyring? ( >=app-crypt/libsecret-0.5 )
-   introspection? ( >=dev-libs/gobject-introspection-0.6:= )
-   postscript? ( >=app-text/libspectre-0.2 )
-   tiff? ( >=media-libs/tiff-3.6:0 )
-   xps? ( >=app-text/libgxps-0.2.1 )
-   !!app-text/mate-document-viewer"
-
-DEPEND="${RDEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/rarian
-   app-text/yelp-tools
-   >=app-text/scrollkeeper-dtd-1:1.0
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-# Tests use dogtail which is not available on Gentoo.
-RESTRICT="test"
-
-src_configure() {
-   # Passing --disable-help would drop offline help, that would be 
inconsistent
-   # with helps of the most of GNOME apps that doesn't require network for 
that.
-   mate_src_configure \
-   --disable-tests \
-   --enable-comics \
-   --enable-pdf \
-   --enable-pixbuf \
-   --enable-previewer \
-   --enable-thumbnailer \
-   $(use_with gnome-keyring keyring) \
-   $(use_enable caja) \
-   $(use_enable dbus) \
-   $(use_enable debug) \
-   $(use_enable djvu) \
-   $(use_enable dvi) \
-   $(use_enable epub) \
-   $(use_enable introspection) \
-   $(use_enable postscript ps) \
-   $(use_enable t1lib) \
-   $(use_enable tiff) \
-   $(use_enable xps)
-}



[gentoo-commits] proj/gentoo-mate:master commit in: dev-libs/libmateweather/

2021-05-23 Thread Adam Feldman
commit: ca8a8587f6d31c9392d2bddd1d038d59c36e0056
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:56:17 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:56:17 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=ca8a8587

dev-libs/libmateweather: Drop 1.22.x

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

 dev-libs/libmateweather/Manifest   |  1 -
 .../libmateweather/libmateweather-1.22.1.ebuild| 43 --
 2 files changed, 44 deletions(-)

diff --git a/dev-libs/libmateweather/Manifest b/dev-libs/libmateweather/Manifest
index 89d04c9..4034a44 100644
--- a/dev-libs/libmateweather/Manifest
+++ b/dev-libs/libmateweather/Manifest
@@ -1,3 +1,2 @@
-DIST libmateweather-1.22.1.tar.xz 3437496 BLAKE2B 
74d9d0b18ad33fd15c7b3411fd5811a43d56e7a99e78c1d6ac846d71285701414f0b6c5f54c9d445af6a2e6c1405fc4d0547e023aa4114f7419f507d8739fc29
 SHA512 
c7f5214c14fa3bf6bbb55442ea450c0f3c0a2849e29f72821c22db88baf3763c72dd6d2a27795c23d8ecc69d190a55313f6cfd18dc2a41c233a7e1e5653a0868
 DIST libmateweather-1.24.0.tar.xz 2233116 BLAKE2B 
2b642af39e850d38d16f6a458568e43262007f2a1150db87371fca46f6db3f1b977a6cbad601ed182b8c0fdc9c5015e493ab60bc2c0e3485091e71992951cd72
 SHA512 
077a7cbcc75df0a64d9fab23d46154e58cf2455c8a2a17ecc04a8c691ead18b5027e177278a1d8e051ffb76e98bfd8e26ed5ca10ad974546e5446116a4f71300
 DIST libmateweather-1.24.1.tar.xz 2223880 BLAKE2B 
e9d86e66755760937e71b983adbd61a5d71a311b1550e7ed445e94d4f74efc4f5d4cf1af17558035c74a0c56b598cc7f464f4a011a873a2d00a26ad4c37c8209
 SHA512 
1e653a167b12593171bb3dcfae3a5e57b3f874b220c34ca4ad2e575da7df424ce8a71f88088f53ec53cf9614d40ecda48b088ef6bede680c0ce81dca35ee1156

diff --git a/dev-libs/libmateweather/libmateweather-1.22.1.ebuild 
b/dev-libs/libmateweather/libmateweather-1.22.1.ebuild
deleted file mode 100644
index f35dfb9..000
--- a/dev-libs/libmateweather/libmateweather-1.22.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-fi
-
-DESCRIPTION="MATE library to access weather information from online services"
-LICENSE="LGPL-2.1+ GPL-2+"
-SLOT="0"
-
-IUSE="debug"
-
-COMMON_DEPEND=">=dev-libs/glib-2.50:2
-   >=dev-libs/libxml2-2.6:2
-   >=net-libs/libsoup-2.34:2.4
-   >=sys-libs/timezone-data-2010k:0
-   x11-libs/gdk-pixbuf:2
-   virtual/libintl:0
-   >=x11-libs/gtk+-3.22:3"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.50.1:*
-   sys-devel/gettext:*
-   >=sys-devel/libtool-2.2.6:2
-   virtual/pkgconfig:*"
-
-src_configure() {
-   mate_src_configure \
-   --enable-locations-compression \
-   --disable-all-translations-in-one-xml \
-   --disable-icon-update
-}



[gentoo-commits] proj/gentoo-mate:master commit in: x11-wm/marco/

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

x11-wm/marco: Drop 1.22.x

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

 x11-wm/marco/Manifest   |  1 -
 x11-wm/marco/marco-1.22.4-r2.ebuild | 73 -
 x11-wm/marco/marco-1.22.4.ebuild| 73 -
 3 files changed, 147 deletions(-)

diff --git a/x11-wm/marco/Manifest b/x11-wm/marco/Manifest
index b552adf..b29156b 100644
--- a/x11-wm/marco/Manifest
+++ b/x11-wm/marco/Manifest
@@ -1,3 +1,2 @@
-DIST marco-1.22.4.tar.xz 1368868 BLAKE2B 
45a1bdfa13419f690e4a1604a18f1ef4f57b95cc64c628a8d1c4b8d5a92409eb8ecb946b60c9b9711151858a4668247f2ee031a95464463f3005952edd95265c
 SHA512 
46867396b66453c63624e54c382845b898b10768db0560100f021e57ec80189785093be38eeaf19c50a9e4728de2b6e605267a8f1d5a5596aaa75958c0e3a6b0
 DIST marco-1.24.0.tar.xz 1827076 BLAKE2B 
e4bcf8584199cbe4f9f813c7512176dd9b84a39ed162cd051f1f174c428828d1d73d6ab64c19ca681f0aea966742e0474256935f2a7c0c490b77dda91147162c
 SHA512 
b257994c097f174fe83f3f0f4d6b6991e8c0f402daffd99f8a9521d588b609c56953e73dd4d143be64f5c9a4caa8d890ff30a120e18a9d5b36c6f856a7190428
 DIST marco-1.24.1.tar.xz 1860008 BLAKE2B 
b147e6ce8aad9382b2e8d96eec2da0356cce91977f4387776359ffb1f26903d7f0b9d9a1d43a436d1a64033f545600e7f810a29e3ae6ecdfb0d73ef8073b782c
 SHA512 
55607898b64f0da3a85dd8d7fd092d847c8f67cefa096a63dbe074c197157a3d661fcb3f2a495b4425340b583b600cda3d1c92ac08b7327904dbd4aab8e92c85

diff --git a/x11-wm/marco/marco-1.22.4-r2.ebuild 
b/x11-wm/marco/marco-1.22.4-r2.ebuild
deleted file mode 100644
index 6d548e2..000
--- a/x11-wm/marco/marco-1.22.4-r2.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE2_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="MATE default window manager"
-LICENSE="FDL-1.2+ GPL-2+ LGPL-2+ MIT"
-SLOT="0/2"
-
-IUSE="startup-notification test xinerama"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   >=gnome-base/libgtop-2:2=
-   media-libs/libcanberra[gtk3]
-   x11-libs/cairo
-   >=x11-libs/pango-1.2[X]
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   >=x11-libs/libXcomposite-0.3
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXpresent
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   >=x11-libs/startup-notification-0.7
-   virtual/libintl
-   xinerama? ( x11-libs/libXinerama )
-   !!x11-wm/mate-window-manager"
-
-RDEPEND="${COMMON_DEPEND}
-   gnome-extra/zenity
-   >=mate-base/mate-desktop-1.20.0"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   >=dev-util/intltool-0.34.90
-   sys-devel/gettext:*
-   virtual/pkgconfig:*
-   x11-base/xorg-proto
-   test? ( app-text/docbook-xml-dtd:4.5 )
-   xinerama? ( x11-base/xorg-proto )"
-
-src_configure() {
-   mate_src_configure \
-   --enable-compositor \
-   --enable-render \
-   --enable-shape \
-   --enable-sm \
-   --enable-xsync \
-   $(use_enable startup-notification) \
-   $(use_enable xinerama)
-}
-
-src_install() {
-   mate_src_install
-   dodoc doc/*.txt
-}

diff --git a/x11-wm/marco/marco-1.22.4.ebuild b/x11-wm/marco/marco-1.22.4.ebuild
deleted file mode 100644
index a693ad0..000
--- a/x11-wm/marco/marco-1.22.4.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE2_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-fi
-
-DESCRIPTION="MATE default window manager"
-LICENSE="FDL-1.2+ GPL-2+ LGPL-2+ MIT"
-SLOT="0"
-
-IUSE="startup-notification test xinerama"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   >=gnome-base/libgtop-2:2=
-   media-libs/libcanberra[gtk3]
-   x11-libs/cairo
-   >=x11-libs/pango-1.2[X]
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   >=x11-libs/libXcomposite

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

2021-05-23 Thread Adam Feldman
commit: dc0399c0925a39a066010316ba40a3437d9215c0
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:54:17 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:54:17 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=dc0399c0

mate-extra/mate-polkit: Drop 1.22.x

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

 mate-extra/mate-polkit/Manifest|  1 -
 .../mate-polkit/mate-polkit-1.22.0-r1.ebuild   | 42 --
 2 files changed, 43 deletions(-)

diff --git a/mate-extra/mate-polkit/Manifest b/mate-extra/mate-polkit/Manifest
index cf0767d..0ec07ee 100644
--- a/mate-extra/mate-polkit/Manifest
+++ b/mate-extra/mate-polkit/Manifest
@@ -1,2 +1 @@
-DIST mate-polkit-1.22.0.tar.xz 302080 BLAKE2B 
374fa5215c57a36fc3a6fa4660866b33bc02d067f1eaf5cbadca8711efe8771e4c59d496e8eb47c75567b5a0e472fd10782c5b5436b9d2a5e7fc834445e5cf06
 SHA512 
e761ec10842789b5bbb3831f568c64e969429131a893850e8323927b949e115a24b3907fd3def7f31f5f785f0831717d852c61f08a9028a009ea9cca0ba86393
 DIST mate-polkit-1.24.0.tar.xz 332652 BLAKE2B 
293d964f2410d2f60047d1e01e2ba864c22e8bda00e5b659329d097391b2988349c70dfbd953f223c4212887d16d54f1f5a7eb21e38b69b553d54b1966647cb1
 SHA512 
8d759bd5f78750c75dc92ffa27e555ae36ae7199b76483cbfe7e0848d3a66cda5b82c98bf334068eb79a1344757665cf7d1bf403e4e908e332ca929c8ebe2a98

diff --git a/mate-extra/mate-polkit/mate-polkit-1.22.0-r1.ebuild 
b/mate-extra/mate-polkit/mate-polkit-1.22.0-r1.ebuild
deleted file mode 100644
index dc6cb6c..000
--- a/mate-extra/mate-polkit/mate-polkit-1.22.0-r1.ebuild
+++ /dev/null
@@ -1,42 +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="A MATE specific DBUS service that is used to bring up 
authentication dialogs"
-LICENSE="LGPL-2+"
-SLOT="0"
-
-IUSE="accountsservice appindicator"
-
-COMMON_DEPEND=">=dev-libs/glib-2.50:2
-   >=sys-auth/polkit-0.102
-   x11-libs/gdk-pixbuf:2
-   virtual/libintl:0
-   >=x11-libs/gtk+-3.22.0:3
-   appindicator? ( dev-libs/libappindicator:3 )"
-
-RDEPEND="${COMMON_DEPEND}
-   accountsservice? ( sys-apps/accountsservice )"
-
-DEPEND="${COMMON_DEPEND}
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.35:*
-   sys-devel/gettext:*
-   >=sys-devel/libtool-2.2.6
-   virtual/pkgconfig:*
-   !

[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-desktop/

2021-05-23 Thread Adam Feldman
commit: e511d08f98b2aff1de6dbcd5f60ee9ca520ddf65
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:59:27 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:59:27 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=e511d08f

mate-base/mate-desktop: Drop 1.22.x

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

 mate-base/mate-desktop/Manifest   |  1 -
 mate-base/mate-desktop/mate-desktop-1.22.2.ebuild | 50 ---
 2 files changed, 51 deletions(-)

diff --git a/mate-base/mate-desktop/Manifest b/mate-base/mate-desktop/Manifest
index b43dcf8..1949dcf 100644
--- a/mate-base/mate-desktop/Manifest
+++ b/mate-base/mate-desktop/Manifest
@@ -1,3 +1,2 @@
-DIST mate-desktop-1.22.2.tar.xz 903312 BLAKE2B 
cadc8ade769d3a85b604ce7807235878d986a7d3bf3f2e05f836c783c3f3983cb760ff33b60b1c2f19538687aa62f5707f5f4eea9fef05d992080821d452783c
 SHA512 
d2e965f9e26e4fe25337a4ef69521239388f38cff25e978331a307591555d8a9ff22d6a19ef3c92cf336c472fbfb231969ef5ac60e3a4c5908a81ded1e5f0f46
 DIST mate-desktop-1.24.0.tar.xz 1113912 BLAKE2B 
e5630ae4fe3f6a309d935153069b354a66d9d544bb3c2c7368373134b71a3d177385b157c01845742463ec8c91d0d4df1b39def7202142070221bb3dc7ba505b
 SHA512 
ca60325e7f6167efd21bdd32ae40c2f2bf5ae9bef85f0a43afec05d50567fb650fc0426d94c510b3a42c625dc4b2d31d7559befa50cfbb6d9878635558a52323
 DIST mate-desktop-1.24.1.tar.xz 1115988 BLAKE2B 
7dc5595a79d214f1cf947c5ab5372983598bcfc330ebd748d6b9daf10c3134d04150427c6242f754b638377db90d1558067a388e2e8e6a6aaf44a87e44e7a6f3
 SHA512 
0691dd613946d5d67596d98cd489536f5876cb97fb4c5290133b198479b4bfa3835ca52a16a2d0cc5e863d625aedda83ab01e85d67f58a09763673f0f18ebc5a

diff --git a/mate-base/mate-desktop/mate-desktop-1.22.2.ebuild 
b/mate-base/mate-desktop/mate-desktop-1.22.2.ebuild
deleted file mode 100644
index af4e2df..000
--- a/mate-base/mate-desktop/mate-desktop-1.22.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Libraries for the MATE desktop that are not part of the UI"
-LICENSE="GPL-2+ FDL-1.1 LGPL-2+ MIT-with-advertising"
-SLOT="0"
-
-IUSE="X debug +introspection startup-notification"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.50:2
-   >=gnome-base/dconf-0.13.4
-   x11-libs/cairo
-   x11-libs/libX11
-   >=x11-libs/libXrandr-1.3
-   virtual/libintl
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
-   startup-notification? ( >=x11-libs/startup-notification-0.5:0 )"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/iso-codes
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.40:*
-   sys-devel/gettext:*
-   x11-base/xorg-proto
-   virtual/pkgconfig:*"
-
-src_configure() {
-   mate_src_configure \
-   --enable-mate-about \
-   $(use_with X x) \
-   $(use_enable debug) \
-   $(use_enable introspection) \
-   $(use_enable startup-notification)
-}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-settings-daemon/

2021-05-23 Thread Adam Feldman
commit: 255d5071618d8034889fc1cffc328a0a34b1199e
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:52:55 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:52:55 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=255d5071

mate-base/mate-settings-daemon: Drop 1.22.x

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

 mate-base/mate-settings-daemon/Manifest|  1 -
 .../mate-settings-daemon-1.22.1.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/mate-base/mate-settings-daemon/Manifest 
b/mate-base/mate-settings-daemon/Manifest
index 1a774a6..d9bcd13 100644
--- a/mate-base/mate-settings-daemon/Manifest
+++ b/mate-base/mate-settings-daemon/Manifest
@@ -1,3 +1,2 @@
-DIST mate-settings-daemon-1.22.1.tar.xz 766556 BLAKE2B 
5e0eeb497795eae666adbe046acf0594f0da0f8c4583d0933541a45e0eb6ece3662ac408385ff21cc2db4f566fce4aa3685e8e0aee2d2ab1e9f22e0cf12ad24b
 SHA512 
9a7d9d81f18e2603c45fab223b3341df1939ee92b0e2db00f0ca5c095a88511c67b33d668b951b1a8f93c81c1e801bfd35729e64fab8bf2962af1e443d8448b6
 DIST mate-settings-daemon-1.24.0.tar.xz 1026248 BLAKE2B 
134ad9c23488ae4a9619e5d9d4465bd3f2cbbacbd3b3e78924c3adcc95a88a8499c24b1c7bd844994b67517407c08c6bf22471597ad9311a4ae04cd7c96996fc
 SHA512 
897d3540930ac407d802c9ecd1995e9bfee14eafadbbfad64aab1e7d93c9830111ac991d8f0df37e34efaa3f7cae9d59ee4d786b15acf0b87b8ba5d299bc1cc1
 DIST mate-settings-daemon-1.24.1.tar.xz 1033680 BLAKE2B 
ea8b3b277e97b9aa177eda711e1ccd507a5c9c1dded6f6b8812512c0b90469a0af256b1de1d12bffd7933b0a7b3a41f2e547cd7f830086929e41927d2e9c9ec3
 SHA512 
3a13a853bf2991f219f91398c31fda4aa3002fe5f5a4497c0e2097d2e8a812eb82bd1e4e1661d7b29061f185e74388f744bb37a0430d38bff63ddce6fe4d0bdd

diff --git a/mate-base/mate-settings-daemon/mate-settings-daemon-1.22.1.ebuild 
b/mate-base/mate-settings-daemon/mate-settings-daemon-1.22.1.ebuild
deleted file mode 100644
index 9fc81d5..000
--- a/mate-base/mate-settings-daemon/mate-settings-daemon-1.22.1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="MATE Settings Daemon"
-LICENSE="GPL-2+ GPL-3+ HPND LGPL-2+ LGPL-2.1+"
-SLOT="0"
-
-IUSE="X debug libnotify policykit pulseaudio rfkill smartcard +sound"
-
-REQUIRED_USE="pulseaudio? ( sound )"
-
-COMMON_DEPEND=">=dev-libs/dbus-glib-0.74
-   >=dev-libs/glib-2.50:2
-   >=gnome-base/dconf-0.13.4
-   >=mate-base/libmatekbd-1.17.0
-   >=mate-base/mate-desktop-1.21.1
-   media-libs/fontconfig:1.0
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libX11
-   x11-libs/libXi
-   x11-libs/libXext
-   >=x11-libs/libxklavier-5.2
-   virtual/libintl
-   libnotify? ( >=x11-libs/libnotify-0.7:0 )
-   policykit? (
-   >=dev-libs/dbus-glib-0.71
-   >=sys-apps/dbus-1.1.2
-   >=sys-auth/polkit-0.97
-   )
-   pulseaudio? (
-   >=media-libs/libmatemixer-1.10[pulseaudio]
-   >=media-sound/pulseaudio-0.9.15
-   )
-   smartcard? ( >=dev-libs/nss-3.11.2 )
-   sound? (
-   >=media-libs/libmatemixer-1.10
-   media-libs/libcanberra[gtk3]
-   )"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig
-   x11-base/xorg-proto"
-
-src_configure() {
-   mate_src_configure \
-   $(use_with X x) \
-   $(use_with libnotify) \
-   $(use_with sound libcanberra) \
-   $(use_with sound libmatemixer) \
-   $(use_enable debug) \
-   $(use_enable policykit polkit) \
-   $(use_enable pulseaudio pulse) \
-   $(use_enable rfkill) \
-   $(use_enable smartcard smartcard-support)
-}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/libmatekbd/

2021-05-23 Thread Adam Feldman
commit: 11a9c99817ce530b2849ccce60fd15f0d772cbfa
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:57:09 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:57:09 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=11a9c998

mate-base/libmatekbd: Drop 1.22.x

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

 mate-base/libmatekbd/Manifest |  1 -
 mate-base/libmatekbd/libmatekbd-1.22.0.ebuild | 42 ---
 2 files changed, 43 deletions(-)

diff --git a/mate-base/libmatekbd/Manifest b/mate-base/libmatekbd/Manifest
index 863ade5..3106ce2 100644
--- a/mate-base/libmatekbd/Manifest
+++ b/mate-base/libmatekbd/Manifest
@@ -1,3 +1,2 @@
-DIST libmatekbd-1.22.0.tar.xz 374604 BLAKE2B 
318c26cd6630773b0b1e89769e8b540545500d5bcc359e568d8cea0ffccebd17a1dd248cc8f61ba584058cb170171608f6c729256eb7936e8b23738657d5a9a5
 SHA512 
79f19455bb6c0df5a50e445907ac12d6bd92a54cd086e0303890bc67350de3d94b2fd665efdaec85f84a42d76af430ad0a1b9639da078179ac25d27c4a325281
 DIST libmatekbd-1.24.0.tar.xz 425720 BLAKE2B 
6f5f808f55c57c3d651d5c871a5f95269397a6d1c2e3cd37d2b16a5519300a81e994e0ac10bf474b9860ec7c0f3c862332199e10c506f38107c7f7d791899b4d
 SHA512 
6a04f4f38ac1d1ef372fdbaddfe4c935d79039cce1a3d68a6876fa5550556f1d568de1d53857531c6f0bd5994e815f2c9e5be0436218e97718f87e17973ea655
 DIST libmatekbd-1.24.1.tar.xz 451404 BLAKE2B 
b05c469aabef69ba091ed4d9bdb4c207ed7f2042413c701d4a864cc514f1cc5b37b3750f01db544bf28fca712776a42262e6036043c5c1a9632789bf2f23d029
 SHA512 
982f973e90bd08c4068fc42f6c62d9d32f8ba4855f5616b3e4ce7167df787bd9dacf47fac3d95ddd0e7d622870bc394c1a22cfb929d0f3293c26095c2b5fe7e3

diff --git a/mate-base/libmatekbd/libmatekbd-1.22.0.ebuild 
b/mate-base/libmatekbd/libmatekbd-1.22.0.ebuild
deleted file mode 100644
index 1148990..000
--- a/mate-base/libmatekbd/libmatekbd-1.22.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="MATE keyboard configuration library"
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-
-IUSE="X +introspection test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-libs/glib-2.50:2
-   x11-libs/cairo
-   >=x11-libs/gdk-pixbuf-2.24:2
-   x11-libs/libX11
-   >=x11-libs/libxklavier-5.2:0[introspection?]
-   x11-libs/pango
-   virtual/libintl
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )"
-
-DEPEND="${RDEPEND}
-   dev-util/glib-utils
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_configure() {
-   mate_src_configure \
-   $(use_with X x) \
-   $(use_enable introspection) \
-   $(use_enable test tests)
-}



[gentoo-commits] proj/gentoo-mate:master commit in: media-libs/libmatemixer/

2021-05-23 Thread Adam Feldman
commit: b238e09d3f77bc15d9b6d94995258289bfcfb3ce
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:56:47 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:56:47 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=b238e09d

media-libs/libmatemixer: Drop 1.22.x

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

 media-libs/libmatemixer/Manifest   |  1 -
 media-libs/libmatemixer/libmatemixer-1.22.0.ebuild | 39 --
 2 files changed, 40 deletions(-)

diff --git a/media-libs/libmatemixer/Manifest b/media-libs/libmatemixer/Manifest
index d557f60..d5d90e4 100644
--- a/media-libs/libmatemixer/Manifest
+++ b/media-libs/libmatemixer/Manifest
@@ -1,3 +1,2 @@
-DIST libmatemixer-1.22.0.tar.xz 432592 BLAKE2B 
36f16c0ed516dea05368ae5b4f287cce275844b547fb7eebe7fb0604d0fddce72649dcac1c16475539dc5199f5d310b8bd19f165efd4bfa5c4f1bf31c1141df7
 SHA512 
6eaa006142601c077ac70739e637273288a4b9713dfc4179341c4832ae4e3b362e92104e150132ee274224d6c5dc057d812b7e1814e49a7690581de6d81e0db8
 DIST libmatemixer-1.24.0.tar.xz 484808 BLAKE2B 
8527514cec0770381ce5943f8c87e66f101e92f34527af2b3d4c15696f63df8304f00102fbbfe5b98ebb9b8d8b515f64a3d63b53312f7892b1b4868895539a6f
 SHA512 
bf8c807bd45f3626bbf881eefa1e4638165daf61637bc63a704492d2a67eeec622e35e58c041649d33411294f96f79c99b3ea2406ae6fcf83294ec625cca9dbf
 DIST libmatemixer-1.24.1.tar.xz 484864 BLAKE2B 
21458cdfa14119364c564993f6e67c320332fabc0595d5422b75dd57ea13bfd2754549de29be6cb11708cb016b45949492df4f86953d55e0102652dc9816
 SHA512 
c4620d70c66196521296d2d4197a6e025629faf1324e726df7dd7b0e0444ee17b83355c5059ec17ef36f9f15e6ab3bf3bb82a152b087a11e929d7749c1e1d4e6

diff --git a/media-libs/libmatemixer/libmatemixer-1.22.0.ebuild 
b/media-libs/libmatemixer/libmatemixer-1.22.0.ebuild
deleted file mode 100644
index a2abc66..000
--- a/media-libs/libmatemixer/libmatemixer-1.22.0.ebuild
+++ /dev/null
@@ -1,39 +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="Mixer library for MATE Desktop"
-LICENSE="LGPL-2+"
-SLOT="0"
-
-IUSE="+alsa oss pulseaudio"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.50:2
-   sys-devel/gettext:*
-   alsa? ( >=media-libs/alsa-lib-1.0.5 )
-   pulseaudio? ( >=media-sound/pulseaudio-5.0.0:0[alsa?,glib] )"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.35.0
-   virtual/pkgconfig:*"
-
-src_configure() {
-   mate_src_configure \
-   --disable-null \
-   $(use_enable alsa) \
-   $(use_enable oss) \
-   $(use_enable pulseaudio)
-}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/caja/

2021-05-23 Thread Adam Feldman
commit: ab929c6ac38a55a86b9652a02b967a61abe73750
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:55:05 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:55:05 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=ab929c6a

mate-base/caja: Drop 1.22.x

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

 mate-base/caja/Manifest  |  1 -
 mate-base/caja/caja-1.22.3-r1.ebuild | 94 
 2 files changed, 95 deletions(-)

diff --git a/mate-base/caja/Manifest b/mate-base/caja/Manifest
index b2802f8..4f1ee85 100644
--- a/mate-base/caja/Manifest
+++ b/mate-base/caja/Manifest
@@ -1,2 +1 @@
-DIST caja-1.22.3.tar.xz 3493232 BLAKE2B 
a47e94380e882b8fab16ef615dd8938063c77f7f5edfcae816fb4c3d9b84e261902dbb07a8d3ba40d32487df61050dfacc464e2b5510785748d0199a13c082f8
 SHA512 
9063bd0a9b6fd815f76cfefd9e87eed88588821376d0c46df9cd3ea1cada828bcee4f5f2ddb42be0178ab09a4519b34bded62cebf201dbde5dda1cf3bad95c22
 DIST caja-1.24.0.tar.xz 5221716 BLAKE2B 
66d628ac0f50e2c388935420e29dfe15a8f5f127fd7b39e92ebbd67b6c929cda1a2dec1f510fb89890602adaef6a741f0ee3e15d27ab9741c5223c7966b3b908
 SHA512 
a68b23876cfa1171d5b1c75e4998c6b15f0ceebdc4fcaabb8d362e32e35b915b1a91a38648532ac8acc162dac50aeb4d07eff417ce2db7a8c50d68bd38a0b548

diff --git a/mate-base/caja/caja-1.22.3-r1.ebuild 
b/mate-base/caja/caja-1.22.3-r1.ebuild
deleted file mode 100644
index bee9e5f..000
--- a/mate-base/caja/caja-1.22.3-r1.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate virtualx
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Caja file manager for the MATE desktop"
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-
-IUSE="+introspection +mate packagekit xmp"
-
-RDEPEND="
-   dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   >=dev-libs/libxml2-2.4.7:2
-   gnome-base/dconf
-   >=gnome-base/gvfs-1.10.1:0[udisks]
-   >=mate-base/mate-desktop-1.17.3:0
-   >=media-libs/libexif-0.6.14:0
-   virtual/libintl
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   >=x11-libs/libnotify-0.7.0:0
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXft
-   x11-libs/libXrender
-   >=x11-libs/pango-1.1.2
-   introspection? ( >=dev-libs/gobject-introspection-0.6.4:= )
-   packagekit? ( app-admin/packagekit-base )
-   xmp? ( >=media-libs/exempi-1.99.5:2 )
-   !!mate-base/mate-file-manager"
-
-DEPEND="${RDEPEND}
-   >=dev-lang/perl-5:=
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.40.1
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-PDEPEND="mate? ( >=x11-themes/mate-icon-theme-${MATE_BRANCH} )"
-
-# TODO: Test fails because Caja is not merged yet:
-# GLib-GIO-ERROR **: Settings schema 'org.mate.caja.preferences' is not 
installed
-RESTRICT="test"
-
-PATCHES=(
-   "${FILESDIR}/${P}-gcc-10-fno-common.patch"
-)
-
-src_prepare() {
-   # Remove unnecessary CFLAGS.
-   sed -i -e 's:-DG.*DISABLE_DEPRECATED::g' \
-   configure.ac eel/Makefile.am || die
-
-   mate_src_prepare
-}
-
-src_configure() {
-   mate_src_configure \
-   --disable-update-mimedb \
-   $(use_enable introspection) \
-   $(use_enable packagekit) \
-   $(use_enable xmp)
-}
-
-src_test() {
-   unset SESSION_MANAGER
-   unset DBUS_SESSION_BUS_ADDRESS
-
-   Xemake check || die "Test phase failed"
-}
-
-pkg_postinst() {
-   mate_pkg_postinst
-
-   elog "Caja can use gstreamer to preview audio files. Just make sure"
-   elog "to have the necessary plugins available to play the media type 
you"
-   elog "want to preview."
-}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-user-share/

2021-05-23 Thread Adam Feldman
commit: d0a11508615fe0af1ee12cd6fcc8a2f6d3a09c2f
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 20:01:13 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 20:01:13 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=d0a11508

mate-extra/mate-user-share: Drop 1.22.x

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

 mate-extra/mate-user-share/Manifest|  1 -
 .../mate-user-share/mate-user-share-1.22.1.ebuild  | 50 --
 2 files changed, 51 deletions(-)

diff --git a/mate-extra/mate-user-share/Manifest 
b/mate-extra/mate-user-share/Manifest
index 7feeaa3..2fda712 100644
--- a/mate-extra/mate-user-share/Manifest
+++ b/mate-extra/mate-user-share/Manifest
@@ -1,2 +1 @@
-DIST mate-user-share-1.22.1.tar.xz 921944 BLAKE2B 
dfa3b304bc81c82abf9a2354ede94b08672f2e8cd28b4def0f0dad0f6389c762d68ddb1924918c89eee40374eedfff312ffc4a9c65d3766be240ede182072837
 SHA512 
afd2c2f8484124e26ac9ced23abd89c1b553adb4df6ca8bd49159e3ec5d76f2b16f6576b7f5608488e5290cddef733e27c653433ee9f57a09a6b76b774555894
 DIST mate-user-share-1.24.0.tar.xz 1008992 BLAKE2B 
0fe21e49ff30c88c32b6b88aba84e58b3e6310d3bbd7a4873be460c97366828a7edfd24be37d2c10ea88a51c6990ee482ad595582d288ded2e4f7e0ca6f0b4e0
 SHA512 
15ede8754bf95ac78844cd9645a43d2deb8419dd550aee5263936d710cd13ce7f4a68cfd53e589c2dd37f87f59c9e8153f8abac711a3a7f88a2e2789dbd4f664

diff --git a/mate-extra/mate-user-share/mate-user-share-1.22.1.ebuild 
b/mate-extra/mate-user-share/mate-user-share-1.22.1.ebuild
deleted file mode 100644
index 3373fa4..000
--- a/mate-extra/mate-user-share/mate-user-share-1.22.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm x86"
-fi
-
-DESCRIPTION="Personal file sharing for the MATE desktop"
-LICENSE="FDL-1.1+ GPL-2+"
-SLOT="0"
-
-IUSE="X"
-
-COMMON_DEPEND="
-   >=dev-libs/dbus-glib-0.70
-   >=dev-libs/glib-2.50:2
-   >=mate-base/caja-1.17.1
-   media-libs/libcanberra[gtk3]
-   >=sys-apps/dbus-1.1.1
-   >=x11-libs/gdk-pixbuf-2:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libX11
-   x11-libs/pango
-   >=x11-libs/libnotify-0.7
-   virtual/libintl"
-
-RDEPEND="${COMMON_DEPEND}
-   >=www-apache/mod_dnssd-0.6
-   
>=www-servers/apache-2.2:2[apache2_modules_dav,apache2_modules_dav_fs,apache2_modules_authn_file,apache2_modules_auth_digest,apache2_modules_authz_groupfile]"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/yelp-tools
-   >=dev-util/intltool-0.35
-   sys-devel/gettext:*
-   virtual/pkgconfig:*"
-
-src_configure() {
-   mate_src_configure \
-   --with-httpd=apache2 \
-   --with-modules-path=/usr/$(get_libdir)/apache2/modules/ \
-   --disable-bluetooth \
-   $(use_with X x)
-}



[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-panel/

2021-05-23 Thread Adam Feldman
commit: 5218307f65c0b6c2352f608fe3bc0e47e76987f8
Author: Adam Feldman  gentoo  org>
AuthorDate: Sun May 23 19:49:57 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Sun May 23 19:49:57 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=5218307f

mate-base/mate-panel: Drop 1.22.x

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

 mate-base/mate-panel/Manifest|  1 -
 mate-base/mate-panel/mate-panel-1.22.2-r1.ebuild | 68 
 2 files changed, 69 deletions(-)

diff --git a/mate-base/mate-panel/Manifest b/mate-base/mate-panel/Manifest
index ddda98d..23a6593 100644
--- a/mate-base/mate-panel/Manifest
+++ b/mate-base/mate-panel/Manifest
@@ -1,3 +1,2 @@
-DIST mate-panel-1.22.2.tar.xz 2216064 BLAKE2B 
c23d2c1efb52af3b5f1102ba4b9ac344d107f2836704809c3d843197940a1ae5cc7b025cfe07ead740107cf5004e304209641fd17a2559a140c7800eb63f793f
 SHA512 
ccfd9e44116e66688d4de53c86e1a7d0754fd221b8083d7bee729f2a02a777a54b98ff70332b979aa075c157bc36c6ed6651f9190fa4a7e37b8a029a1f2a623f
 DIST mate-panel-1.24.0.tar.xz 3040068 BLAKE2B 
2ef2973014e32ab62ba9d4a05a820a2640415b493886d74e09089ed91bfe61d2d53ee6313c104945ddc95c992423403f6bca72a7f8b80ce189cd9f247add931c
 SHA512 
12a88534400603998b4d4d415940947dd6372914135aa8eb6052c75e134412739a96064ad654e8f2625dbb6fe853e8cb376c41e530c30234e08141a46634820b
 DIST mate-panel-1.24.1.tar.xz 3265000 BLAKE2B 
eb5d2c8b6668ecb1d072e80ac4062574c97b7d52a1473133efff0fb12eca4e765df016d8ede4c6745f7bd9e6ea64114ccfcdf87045ca00797e63ab9ec215435c
 SHA512 
1a1e62207d58472daa00d409ef2b04944929af7f9fe05592076adcc069e2d70012424b3386d30f8b9adccf05c328b8ab1662b8726e507465881a4ae26c26829f

diff --git a/mate-base/mate-panel/mate-panel-1.22.2-r1.ebuild 
b/mate-base/mate-panel/mate-panel-1.22.2-r1.ebuild
deleted file mode 100644
index a6d3ae6..000
--- a/mate-base/mate-panel/mate-panel-1.22.2-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MATE_LA_PUNT="yes"
-
-inherit mate
-
-if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="The MATE panel"
-LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
-SLOT="0"
-
-IUSE="X +introspection wayland"
-
-REQUIRED_USE="|| ( X wayland )"
-
-RDEPEND="
-   dev-libs/atk
-   >=dev-libs/dbus-glib-0.80:0
-   >=dev-libs/glib-2.50:2
-   >=dev-libs/libmateweather-1.17.0
-   dev-libs/libxml2:2
-   >=gnome-base/dconf-0.13.4
-   >=gnome-base/librsvg-2.36.2:2
-   >=mate-base/mate-desktop-1.17.0
-   >=mate-base/mate-menus-1.21.0
-   >=sys-apps/dbus-1.1.2
-   >=x11-libs/cairo-1.0.0[X?]
-   >=x11-libs/gdk-pixbuf-2.25.2:2
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libICE
-   x11-libs/libSM
-   >=x11-libs/libwnck-3.4.6:3[introspection?]
-   >=x11-libs/pango-1.15.4:0[introspection?]
-   virtual/libintl
-   X? (
-   x11-libs/libX11
-   x11-libs/libXau
-   >=x11-libs/libXrandr-1.3
-   )
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
-   wayland? ( dev-libs/wayland )"
-
-DEPEND="${RDEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/yelp-tools
-   >=dev-lang/perl-5:=
-   dev-util/glib-utils
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_configure() {
-   mate_src_configure \
-   --libexecdir=/usr/libexec/mate-applets \
-   --disable-deprecation-flags \
-   $(use_enable X x11) \
-   $(use_enable introspection) \
-   $(use_enable wayland)
-}



[gentoo-commits] proj/gentoo-mate:master commit in: eclass/

2021-06-30 Thread Adam Feldman
commit: 64ae6b997115c0aacd610bfdff4d3482ca10faf0
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Mar 23 02:04:07 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 14:19:03 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=64ae6b99

eclass/mate.eclass: Add EAPI 7 support

Bug: https://bugs.gentoo.org/770277
Signed-off-by: Adam Feldman  gentoo.org>

 eclass/mate.eclass | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/eclass/mate.eclass b/eclass/mate.eclass
index 34d5e47..a3b4cfd 100644
--- a/eclass/mate.eclass
+++ b/eclass/mate.eclass
@@ -7,7 +7,7 @@
 # @AUTHOR:
 # Authors: NP-Hardass  based upon the gnome2
 # and autotools-utils eclasses
-# @SUPPORTED_EAPIS: 6
+# @SUPPORTED_EAPIS: 6 7
 # @BLURB: Provides phases for MATE based packages.
 # @DESCRIPTION:
 # Exports portage base functions used by ebuilds written for packages using the
@@ -16,7 +16,7 @@
 
 # Check EAPI only
 case "${EAPI:-0}" in
-   6) ;;
+   6|7) ;;
*) die "EAPI=${EAPI:-0} is not supported" ;;
 esac
 
@@ -26,8 +26,12 @@ esac
 # @DESCRIPTION:
 # Available values for MATE_LA_PUNT:
 # - "no": will not clean any .la files
+# - In EAPI < 7:
 # - "yes": will run prune_libtool_files --modules
 # - If it is not set, it will run prune_libtool_files
+# - In EAPI 7:
+# - Any non-"no" value will run
+#  find "${ED}" -name '*.la' -delete || die
 # MATE_LA_PUNT is a stub to GNOME2_LA_PUNT
 MATE_LA_PUNT=${MATE_LA_PUNT:-""}
 GNOME2_LA_PUNT="${MATE_LA_PUNT}"
@@ -35,7 +39,7 @@ GNOME2_LA_PUNT="${MATE_LA_PUNT}"
 inherit gnome2 autotools mate-desktop.org
 
 case "${EAPI:-0}" in
-   6) EXPORT_FUNCTIONS src_prepare src_configure src_install pkg_preinst 
pkg_postinst pkg_postrm ;;
+   6|7) EXPORT_FUNCTIONS src_prepare src_configure src_install pkg_preinst 
pkg_postinst pkg_postrm ;;
*) die "EAPI=${EAPI:-0} is not supported" ;;
 esac
 



[gentoo-commits] proj/gentoo-mate:master commit in: eclass/

2021-06-30 Thread Adam Feldman
commit: 8068ee5cbb854480484a6df9a78d63883eb45c54
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Mar 23 02:04:00 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 14:19:03 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=8068ee5c

eclass/mate-desktop.org.eclass: Add EAPI 7 support

Bug: https://bugs.gentoo.org/770277
Signed-off-by: Adam Feldman  gentoo.org>

 eclass/mate-desktop.org.eclass | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/mate-desktop.org.eclass b/eclass/mate-desktop.org.eclass
index 849479d..92f1d1d 100644
--- a/eclass/mate-desktop.org.eclass
+++ b/eclass/mate-desktop.org.eclass
@@ -6,7 +6,7 @@
 # m...@gentoo.org
 # @AUTHOR:
 # Authors: NP-Hardass  based upon the gnome.org eclass.
-# @SUPPORTED_EAPIS: 6
+# @SUPPORTED_EAPIS: 6 7
 # @BLURB: Helper eclass for mate-desktop.org hosted archives
 # @DESCRIPTION:
 # Provide a default SRC_URI and EGIT_REPO_URI for MATE packages as well as
@@ -14,7 +14,7 @@
 
 # EAPIs < 6 are banned.
 case "${EAPI:-0}" in
-   6) ;;
+   6|7) ;;
*) die "EAPI=${EAPI:-0} is not supported" ;;
 esac
 
@@ -22,7 +22,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 fi
 
-inherit versionator
+[[ ${EAPI:-0} -eq 6 ]] && inherit eapi7-ver
 
 # @ECLASS-VARIABLE: MATE_TARBALL_SUFFIX
 # @INTERNAL
@@ -47,7 +47,7 @@ inherit versionator
 # @DESCRIPTION:
 # Major and minor numbers of the version number, unless live.
 # If live ebuild, will be set to ''.
-: ${MATE_BRANCH:=$(get_version_component_range 1-2)}
+: ${MATE_BRANCH:=$(ver_cut 1-2)}
 
 # Set SRC_URI or EGIT_REPO_URI based on whether live
 if [[ ${PV} ==  ]]; then



[gentoo-commits] repo/gentoo:master commit in: eclass/

2021-06-30 Thread Adam Feldman
commit: 433f97861e0133b141a0a2f5d5fcf49476381f8f
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Mar 23 01:53:25 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 14:36:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=433f9786

eclass/mate.eclass: Add EAPI 7 support

Closes: https://bugs.gentoo.org/770277
Signed-off-by: Adam Feldman  gentoo.org>

 eclass/mate.eclass | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/eclass/mate.eclass b/eclass/mate.eclass
index 34d5e47acc2..a3b4cfd0b60 100644
--- a/eclass/mate.eclass
+++ b/eclass/mate.eclass
@@ -7,7 +7,7 @@
 # @AUTHOR:
 # Authors: NP-Hardass  based upon the gnome2
 # and autotools-utils eclasses
-# @SUPPORTED_EAPIS: 6
+# @SUPPORTED_EAPIS: 6 7
 # @BLURB: Provides phases for MATE based packages.
 # @DESCRIPTION:
 # Exports portage base functions used by ebuilds written for packages using the
@@ -16,7 +16,7 @@
 
 # Check EAPI only
 case "${EAPI:-0}" in
-   6) ;;
+   6|7) ;;
*) die "EAPI=${EAPI:-0} is not supported" ;;
 esac
 
@@ -26,8 +26,12 @@ esac
 # @DESCRIPTION:
 # Available values for MATE_LA_PUNT:
 # - "no": will not clean any .la files
+# - In EAPI < 7:
 # - "yes": will run prune_libtool_files --modules
 # - If it is not set, it will run prune_libtool_files
+# - In EAPI 7:
+# - Any non-"no" value will run
+#  find "${ED}" -name '*.la' -delete || die
 # MATE_LA_PUNT is a stub to GNOME2_LA_PUNT
 MATE_LA_PUNT=${MATE_LA_PUNT:-""}
 GNOME2_LA_PUNT="${MATE_LA_PUNT}"
@@ -35,7 +39,7 @@ GNOME2_LA_PUNT="${MATE_LA_PUNT}"
 inherit gnome2 autotools mate-desktop.org
 
 case "${EAPI:-0}" in
-   6) EXPORT_FUNCTIONS src_prepare src_configure src_install pkg_preinst 
pkg_postinst pkg_postrm ;;
+   6|7) EXPORT_FUNCTIONS src_prepare src_configure src_install pkg_preinst 
pkg_postinst pkg_postrm ;;
*) die "EAPI=${EAPI:-0} is not supported" ;;
 esac
 



[gentoo-commits] repo/gentoo:master commit in: eclass/

2021-06-30 Thread Adam Feldman
commit: f7e317c1cee1b75e81d154abc277bb0ba9b9ec3b
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Mar 23 01:53:06 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 14:36:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7e317c1

eclass/mate-desktop.org.eclass: Add EAPI 7 support

Closes: https://bugs.gentoo.org/770277
Signed-off-by: Adam Feldman  gentoo.org>

 eclass/mate-desktop.org.eclass | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/mate-desktop.org.eclass b/eclass/mate-desktop.org.eclass
index 849479d048f..92f1d1d33d0 100644
--- a/eclass/mate-desktop.org.eclass
+++ b/eclass/mate-desktop.org.eclass
@@ -6,7 +6,7 @@
 # m...@gentoo.org
 # @AUTHOR:
 # Authors: NP-Hardass  based upon the gnome.org eclass.
-# @SUPPORTED_EAPIS: 6
+# @SUPPORTED_EAPIS: 6 7
 # @BLURB: Helper eclass for mate-desktop.org hosted archives
 # @DESCRIPTION:
 # Provide a default SRC_URI and EGIT_REPO_URI for MATE packages as well as
@@ -14,7 +14,7 @@
 
 # EAPIs < 6 are banned.
 case "${EAPI:-0}" in
-   6) ;;
+   6|7) ;;
*) die "EAPI=${EAPI:-0} is not supported" ;;
 esac
 
@@ -22,7 +22,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 fi
 
-inherit versionator
+[[ ${EAPI:-0} -eq 6 ]] && inherit eapi7-ver
 
 # @ECLASS-VARIABLE: MATE_TARBALL_SUFFIX
 # @INTERNAL
@@ -47,7 +47,7 @@ inherit versionator
 # @DESCRIPTION:
 # Major and minor numbers of the version number, unless live.
 # If live ebuild, will be set to ''.
-: ${MATE_BRANCH:=$(get_version_component_range 1-2)}
+: ${MATE_BRANCH:=$(ver_cut 1-2)}
 
 # Set SRC_URI or EGIT_REPO_URI based on whether live
 if [[ ${PV} ==  ]]; then



[gentoo-commits] repo/gentoo:master commit in: net-misc/vde/files/

2021-06-30 Thread Adam Feldman
commit: a977b7b6ae0ce88c391460a0dd0b8e7ec93bb0b7
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Mar 18 16:09:30 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 14:35:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a977b7b6

net-misc/vde: Fix typo in initscript

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

 net-misc/vde/files/vde.init-r1 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/vde/files/vde.init-r1 b/net-misc/vde/files/vde.init-r1
index 0934c51f8f4..b1583c338f4 100644
--- a/net-misc/vde/files/vde.init-r1
+++ b/net-misc/vde/files/vde.init-r1
@@ -1,5 +1,5 @@
 #!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 command="/usr/bin/vde_switch"
@@ -19,7 +19,7 @@ start_pre() {
 start() {
VDE_SOCKET="${VDE_SOCKET:-/run/${RC_SVCNAME}.ctl}"
 
-   ebegin "Starting ${SVC_NAME}"
+   ebegin "Starting ${RC_SVCNAME}"
 
start-stop-daemon --start --exec ${command} -- \
--pidfile=${pidfile} \



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-calc/

2021-06-30 Thread Adam Feldman
commit: 7f5fffcea354bb7859af4ee017cab7595496fb87
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 00:23:19 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f5fffce

mate-extra/mate-calc: Drop old

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

 mate-extra/mate-calc/Manifest|  1 -
 mate-extra/mate-calc/mate-calc-1.24.0.ebuild | 33 
 2 files changed, 34 deletions(-)

diff --git a/mate-extra/mate-calc/Manifest b/mate-extra/mate-calc/Manifest
index 41cc4237013..0d6b318ee65 100644
--- a/mate-extra/mate-calc/Manifest
+++ b/mate-extra/mate-calc/Manifest
@@ -1,2 +1 @@
-DIST mate-calc-1.24.0.tar.xz 939480 BLAKE2B 
28a8184665096d477bdc80484fc9da3bf9835dd5d1c30d4de11722488d735f88336bcf990c50ef65dd0a5781fc083b5d011fd5085c2d1672e6599a28f4a01452
 SHA512 
ebb18f07ded5577bb0987b2027e7b73abc823a567bfa00f9cc9bfaf75de498f150b6b4c2e13486c530a3cbb078f1b798c415b33d668d952e8650799dd05c99eb
 DIST mate-calc-1.24.1.tar.xz 952372 BLAKE2B 
ae6c687d85f48f95fda89ba4fa2be44d1f2fc510708a25ac59fd8074d1f29bc6b440ec1c20b344566d4e8a2edc8ec0bdc0d565773f2c089d712c47db4e847805
 SHA512 
164fc57ed6bcc69b96afd75fff8dd6248ce682d6f806e83ddb73a21bddce99b89c7bb697d189b56d88d5c8d9a0b99f50f3fdd15c7d56f9121ee1d16689b16595

diff --git a/mate-extra/mate-calc/mate-calc-1.24.0.ebuild 
b/mate-extra/mate-calc/mate-calc-1.24.0.ebuild
deleted file mode 100644
index 971bea10a92..000
--- a/mate-extra/mate-calc/mate-calc-1.24.0.ebuild
+++ /dev/null
@@ -1,33 +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="Calculator for MATE"
-LICENSE="CC-BY-SA-3.0 GPL-2+"
-SLOT="0"
-
-IUSE=""
-
-COMMON_DEPEND="
-   dev-libs/atk
-   >=dev-libs/glib-2.50:2
-   dev-libs/libxml2:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/pango"
-
-RDEPEND="${COMMON_DEPEND}
-   virtual/libintl
-"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   dev-libs/libxml2
-   >=sys-devel/gettext-0.19.8:*
-   virtual/pkgconfig:*"



[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-themes/

2021-06-30 Thread Adam Feldman
commit: f34b253bb358a3ce0712be0f474d5235c67ea960
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 00:20:19 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f34b253b

x11-themes/mate-themes: Drop old

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

 x11-themes/mate-themes/Manifest   |  1 -
 x11-themes/mate-themes/mate-themes-3.22.19.ebuild | 38 ---
 2 files changed, 39 deletions(-)

diff --git a/x11-themes/mate-themes/Manifest b/x11-themes/mate-themes/Manifest
index 64732a78a94..e0262bc604d 100644
--- a/x11-themes/mate-themes/Manifest
+++ b/x11-themes/mate-themes/Manifest
@@ -1,2 +1 @@
-DIST mate-themes-3.22.19.tar.xz 5567828 BLAKE2B 
8eeead9b097e2a9e76aac849e6b6fe93382a6ff6dbdf4bd3b032167744fdf35ff047cdb85d1480474e1f0fc0f06ceda04e7d9e4a6ae573b04cd78c4e4ca858f7
 SHA512 
3e8a5a37bb6755c65da3307957569e84cce546c9786396f5eb8cb5f84ddf64e04260b87f67cb0b03c7c7dc13b4f75790fb9afe8b971101f3556ee6c015bb585d
 DIST mate-themes-3.22.21.tar.xz 5377276 BLAKE2B 
2efa2ab47440baa869da02fe8b65bc05a91ac79ab5d5794c182a05af736c4593b07c8c1ff9dde6b770462ad208d426565a7a07e359ee62ebc50ec7e737eaa7e5
 SHA512 
5f0e7e1f688e02a5c9581ec8f552da836a4c4355caa853650a19b670971acbecc3a4ac32aa7fb282879fd5a48e0a3e4aed5d182054fe2e9bb1270c74bfcef5bc

diff --git a/x11-themes/mate-themes/mate-themes-3.22.19.ebuild 
b/x11-themes/mate-themes/mate-themes-3.22.19.ebuild
deleted file mode 100644
index 76ea9ce2719..000
--- a/x11-themes/mate-themes/mate-themes-3.22.19.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools xdg
-
-MATE_GTK_V="$(ver_cut 1-2)"
-
-HOMEPAGE="https://mate-desktop.org";
-DESCRIPTION="A set of MATE themes, with sets for users with limited or low 
vision"
-SRC_URI="https://pub.mate-desktop.org/releases/themes/${MATE_GTK_V}/${P}.tar.xz";
-
-LICENSE="CC-BY-SA-3.0 GPL-3+ LGPL-2.1+ LGPL-3"
-SLOT="0/${MATE_GTK_V}"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-RDEPEND="
-   >=x11-libs/gdk-pixbuf-2:2
-   >=x11-libs/gtk+-2:2
-   >=x11-themes/gtk-engines-2.15.3:2
-   x11-themes/gtk-engines-murrine
-"
-
-DEPEND="${RDEPEND}
-   >=dev-util/intltool-0.35
-   sys-devel/gettext
-   >=sys-devel/autoconf-2.53
-   >=x11-misc/icon-naming-utils-0.8.7:0
-   virtual/pkgconfig
-"
-
-RESTRICT="binchecks strip"
-
-src_prepare() {
-   default
-   eautoreconf
-}



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-calc/

2021-06-30 Thread Adam Feldman
commit: c5d0b88e38702359672241649aa50ed092e34f8a
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 00:23:12 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5d0b88e

mate-extra/mate-calc: Stabilize 1.24.1 for amd64,x86

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

 mate-extra/mate-calc/mate-calc-1.24.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mate-extra/mate-calc/mate-calc-1.24.1.ebuild 
b/mate-extra/mate-calc/mate-calc-1.24.1.ebuild
index 31d748f655b..ea4da845039 100644
--- a/mate-extra/mate-calc/mate-calc-1.24.1.ebuild
+++ b/mate-extra/mate-calc/mate-calc-1.24.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="Calculator for MATE"



[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-backgrounds/

2021-06-30 Thread Adam Feldman
commit: 5d3915fb51705b0892dfcb48ad634fbd8c4da6c9
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 13:46:56 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d3915fb

x11-themes/mate-backgrounds: 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>

 x11-themes/mate-backgrounds/Manifest   |  1 +
 .../mate-backgrounds/mate-backgrounds-1.24.2.ebuild| 18 ++
 2 files changed, 19 insertions(+)

diff --git a/x11-themes/mate-backgrounds/Manifest 
b/x11-themes/mate-backgrounds/Manifest
index b5a3fbcd126..fcd6438c96b 100644
--- a/x11-themes/mate-backgrounds/Manifest
+++ b/x11-themes/mate-backgrounds/Manifest
@@ -1 +1,2 @@
 DIST mate-backgrounds-1.24.1.tar.xz 20958108 BLAKE2B 
398e9c7dd9692829c0b5854f828ba911ed01deb300e40e09489971df1e453490f681098e7e85b367404956ef0c515eb07d4e898e44be07fd555f0daf818a27e9
 SHA512 
6af6bd1be186da3c4c594687ece1f6b50c3b05fb0619dd0062955e9e09c8007efe76a7625826cba0e4716c8ed61eac4d372b0a3bf2b87f00b7f170bb97709f09
+DIST mate-backgrounds-1.24.2.tar.xz 46802060 BLAKE2B 
7fa2de6ad5e5e9a292fa4458ce8a0dc6bc860f62048d5070f503f575d003e1222f315be0c5c968b5dcb62c0334eb9a4830c08de0ca96ea1ae3c27b4633e8ff6d
 SHA512 
4d069258065e80d8e9d2e4d7c471178c07ea5cdd5e8a6224a1d1e8770211a3926a441f03d85acd17c66c261489cc68bcbb44e5e08d6ddd80240e07b0007873ed

diff --git a/x11-themes/mate-backgrounds/mate-backgrounds-1.24.2.ebuild 
b/x11-themes/mate-backgrounds/mate-backgrounds-1.24.2.ebuild
new file mode 100644
index 000..7dbc5259546
--- /dev/null
+++ b/x11-themes/mate-backgrounds/mate-backgrounds-1.24.2.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2021 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="A set of backgrounds packaged with the MATE desktop"
+LICENSE="CC-BY-SA-4.0 GPL-2+"
+SLOT="0"
+
+DEPEND="
+   >=sys-devel/gettext-0.19.8:*
+"



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-settings-daemon/

2021-06-30 Thread Adam Feldman
commit: e643e676abaaeb61d063bec44c34360021e96fb4
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 13:10:48 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e643e676

mate-base/mate-settings-daemon: 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-base/mate-settings-daemon/Manifest|  1 +
 .../mate-settings-daemon-1.24.2.ebuild | 73 ++
 2 files changed, 74 insertions(+)

diff --git a/mate-base/mate-settings-daemon/Manifest 
b/mate-base/mate-settings-daemon/Manifest
index d2823320695..e2749c741ac 100644
--- a/mate-base/mate-settings-daemon/Manifest
+++ b/mate-base/mate-settings-daemon/Manifest
@@ -1 +1,2 @@
 DIST mate-settings-daemon-1.24.1.tar.xz 1033680 BLAKE2B 
ea8b3b277e97b9aa177eda711e1ccd507a5c9c1dded6f6b8812512c0b90469a0af256b1de1d12bffd7933b0a7b3a41f2e547cd7f830086929e41927d2e9c9ec3
 SHA512 
3a13a853bf2991f219f91398c31fda4aa3002fe5f5a4497c0e2097d2e8a812eb82bd1e4e1661d7b29061f185e74388f744bb37a0430d38bff63ddce6fe4d0bdd
+DIST mate-settings-daemon-1.24.2.tar.xz 1053556 BLAKE2B 
94c28e1b88d36972f694858a01840747514be2d40789804719bca8cfcbd62a1f1434fca8b35569607813adc0d0ece6e547c1bed042ab66fea516c150c11343bb
 SHA512 
421848dbfd75613df73003c7520cb7c1895ef55c85773c9b7d72e5f7361bf78d7221f86ecd2d2460b10950d77818a9ddc19569aaa2749f2bee1d3245c09805f8

diff --git a/mate-base/mate-settings-daemon/mate-settings-daemon-1.24.2.ebuild 
b/mate-base/mate-settings-daemon/mate-settings-daemon-1.24.2.ebuild
new file mode 100644
index 000..db0f382da84
--- /dev/null
+++ b/mate-base/mate-settings-daemon/mate-settings-daemon-1.24.2.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="MATE Settings Daemon"
+LICENSE="GPL-2+ GPL-3+ HPND LGPL-2+ LGPL-2.1+"
+SLOT="0"
+
+IUSE="X debug libnotify policykit pulseaudio rfkill smartcard +sound"
+
+REQUIRED_USE="pulseaudio? ( sound )"
+
+COMMON_DEPEND=">=dev-libs/dbus-glib-0.74
+   >=dev-libs/glib-2.50:2
+   >=gnome-base/dconf-0.13.4
+   >=mate-base/libmatekbd-1.17.0
+   >=mate-base/mate-desktop-1.23.2
+   media-libs/fontconfig:1.0
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libX11
+   x11-libs/libXi
+   x11-libs/libXext
+   >=x11-libs/libxklavier-5.2
+   libnotify? ( >=x11-libs/libnotify-0.7:0 )
+   policykit? (
+   >=dev-libs/dbus-glib-0.71
+   >=sys-apps/dbus-1.10.0
+   >=sys-auth/polkit-0.97
+   )
+   pulseaudio? (
+   >=media-libs/libmatemixer-1.10[pulseaudio]
+   >=media-sound/pulseaudio-0.9.15
+   )
+   smartcard? ( >=dev-libs/nss-3.11.2 )
+   sound? (
+   >=media-libs/libmatemixer-1.10
+   media-libs/libcanberra[gtk3]
+   )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+   x11-base/xorg-proto
+"
+
+src_configure() {
+   mate_src_configure \
+   $(use_with X x) \
+   $(use_with libnotify) \
+   $(use_with sound libcanberra) \
+   $(use_with sound libmatemixer) \
+   $(use_enable debug) \
+   $(use_enable policykit polkit) \
+   $(use_enable pulseaudio pulse) \
+   $(use_enable rfkill) \
+   $(use_enable smartcard smartcard-support)
+}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-themes-meta/

2021-06-30 Thread Adam Feldman
commit: 708c1fc235c2f4e8f8b7ec80d037cb74d974b1f6
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 00:22:35 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=708c1fc2

x11-themes/mate-themes-meta: Drop old

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

 .../mate-themes-meta/mate-themes-meta-3-r2.ebuild  | 31 --
 1 file changed, 31 deletions(-)

diff --git a/x11-themes/mate-themes-meta/mate-themes-meta-3-r2.ebuild 
b/x11-themes/mate-themes-meta/mate-themes-meta-3-r2.ebuild
deleted file mode 100644
index cb08da7bb1f..000
--- a/x11-themes/mate-themes-meta/mate-themes-meta-3-r2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} ==  ]]; then
-   MATE_THEMES_V="."
-else
-   MATE_THEMES_V="*"
-   KEYWORDS="amd64 ~arm ~arm64 x86"
-fi
-
-DESCRIPTION="Meta package to facilitate easy use of x11-themes/mate-themes"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage";
-SRC_URI=""
-
-LICENSE="metapackage"
-SLOT="0"
-IUSE="gtk2-only"
-
-DEPEND=""
-RDEPEND="|| (
-   gtk2-only? (
-   !!x11-libs/gtk+:3
-   x11-themes/mate-themes:0
-   )
-   (
-   =x11-libs/gtk+-3.22*:3
-   =x11-themes/mate-themes-3.22${MATE_THEMES_V}:0/3.22
-   )
-   )"



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-panel/

2021-06-30 Thread Adam Feldman
commit: ca24f1463cb01abfa94a8f0367c0a32b49a47730
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 13:42:34 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca24f146

mate-base/mate-panel: 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-base/mate-panel/Manifest |  1 +
 mate-base/mate-panel/mate-panel-1.24.2.ebuild | 72 +++
 2 files changed, 73 insertions(+)

diff --git a/mate-base/mate-panel/Manifest b/mate-base/mate-panel/Manifest
index fc108d15e32..99c7f37c453 100644
--- a/mate-base/mate-panel/Manifest
+++ b/mate-base/mate-panel/Manifest
@@ -1 +1,2 @@
 DIST mate-panel-1.24.1.tar.xz 3265000 BLAKE2B 
eb5d2c8b6668ecb1d072e80ac4062574c97b7d52a1473133efff0fb12eca4e765df016d8ede4c6745f7bd9e6ea64114ccfcdf87045ca00797e63ab9ec215435c
 SHA512 
1a1e62207d58472daa00d409ef2b04944929af7f9fe05592076adcc069e2d70012424b3386d30f8b9adccf05c328b8ab1662b8726e507465881a4ae26c26829f
+DIST mate-panel-1.24.2.tar.xz 3271432 BLAKE2B 
ca866ae2ba743d5871f75ba8840f05b556d77bcfb9263542f5e945310ebbaccdb211a266c3235ab706c70209740cd4a8a9f390363ddf18fc305ffd875723974d
 SHA512 
6dd7b1329fc51389ad6213b5490fd44f8db7b76d17c1fa8f24b197390e9f24d4090fc7c439b7cc9c94be76f6b896ac31e69e920e903c067e297f941c844a1280

diff --git a/mate-base/mate-panel/mate-panel-1.24.2.ebuild 
b/mate-base/mate-panel/mate-panel-1.24.2.ebuild
new file mode 100644
index 000..c715fb2b108
--- /dev/null
+++ b/mate-base/mate-panel/mate-panel-1.24.2.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="The MATE panel"
+LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
+SLOT="0"
+
+IUSE="X +introspection wayland"
+
+REQUIRED_USE="|| ( X wayland )"
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/dbus-glib-0.80:0
+   >=dev-libs/glib-2.50:2
+   >=dev-libs/libmateweather-1.17.0
+   dev-libs/libxml2:2
+   >=gnome-base/dconf-0.13.4
+   >=gnome-base/librsvg-2.36.2:2
+   >=mate-base/mate-desktop-1.17.0
+   >=mate-base/mate-menus-1.21.0
+   >=sys-apps/dbus-1.1.2
+   >=x11-libs/cairo-1.0.0[X?]
+   >=x11-libs/gdk-pixbuf-2.25.2:2
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libICE
+   x11-libs/libSM
+   >=x11-libs/libwnck-3.4.6:3[introspection?]
+   >=x11-libs/pango-1.15.4:0[introspection?]
+   X? (
+   x11-libs/libX11
+   x11-libs/libXau
+   >=x11-libs/libXrandr-1.3
+   )
+   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
+   wayland? ( gui-libs/gtk-layer-shell )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xml-dtd:4.1.2
+   app-text/yelp-tools
+   >=dev-lang/perl-5:=
+   dev-util/glib-utils
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc
+   dev-util/gtk-doc-am
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+src_configure() {
+   mate_src_configure \
+   --libexecdir=/usr/libexec/mate-applets \
+   --disable-deprecation-flags \
+   $(use_enable X x11) \
+   $(use_enable introspection) \
+   $(use_enable wayland)
+}



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-control-center/

2021-06-30 Thread Adam Feldman
commit: 5f145f0d18008d7cbbbfda0d101ebc9df93cfcea
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 13:52:16 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f145f0d

mate-base/mate-control-center: 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-base/mate-control-center/Manifest |  1 +
 .../mate-control-center-1.24.2.ebuild  | 74 ++
 2 files changed, 75 insertions(+)

diff --git a/mate-base/mate-control-center/Manifest 
b/mate-base/mate-control-center/Manifest
index 34db7e99d22..14328072e46 100644
--- a/mate-base/mate-control-center/Manifest
+++ b/mate-base/mate-control-center/Manifest
@@ -1 +1,2 @@
 DIST mate-control-center-1.24.1.tar.xz 3395740 BLAKE2B 
88efb5b170af461b2505be654b005818b5b9087f5535365b7fe4033c05debcbf842fa33a77e4c78e72d0c7426794e943b773612f4431128c01fa77a15f5c2670
 SHA512 
f0440bfa79099610eb1f9f03bda13347b57d9250264f27971b69a5900338cf750e6eeb14111d7069bf597f5d4c4ed66b0466b926a54e4719845da23de31665f4
+DIST mate-control-center-1.24.2.tar.xz 3434520 BLAKE2B 
29499ffe07dbfae8efed5058d79267c11fd863463e24317c12353886f4692f9256b07b912eee4fe3dcfe832929cddf614012a1bb4695164f83df950d44019d81
 SHA512 
3aecbad0e26521d5222b8483561167e16fdda3bc1a3be09644b71fdba1f9f3f64705ae474fc8df5b702e84c7fef83441a75324040e801da5071f3b667d7a57e5

diff --git a/mate-base/mate-control-center/mate-control-center-1.24.2.ebuild 
b/mate-base/mate-control-center/mate-control-center-1.24.2.ebuild
new file mode 100644
index 000..9916f64f30e
--- /dev/null
+++ b/mate-base/mate-control-center/mate-control-center-1.24.2.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="The MATE Desktop configuration tool"
+LICENSE="FDL-1.1+ GPL-2+ LGPL-2+ LGPL-2.1+ HPND"
+SLOT="0"
+
+IUSE="accountsservice appindicator debug"
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/dbus-glib-0.73
+   >=dev-libs/glib-2.50:2
+   dev-libs/libxml2:2
+   >=gnome-base/dconf-0.13.4
+   >=gnome-base/librsvg-2.0:2
+   >=mate-base/libmatekbd-1.17.0
+   >=mate-base/mate-desktop-1.23.2
+   >=mate-base/caja-1.20.0
+   >=mate-base/mate-menus-1.21.0
+   >=mate-base/mate-settings-daemon-1.23.1
+   >=media-libs/fontconfig-1:1.0
+   media-libs/freetype:2
+   media-libs/libcanberra:0[gtk3]
+   >=sys-apps/dbus-1
+   sys-auth/polkit[introspection]
+   x11-apps/xmodmap
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcursor
+   x11-libs/libXext
+   >=x11-libs/libXi-1.5
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   >=x11-libs/libxklavier-4
+   x11-libs/pango
+   >=x11-wm/marco-1.17.0:=
+   accountsservice? ( sys-apps/accountsservice )
+   appindicator? ( dev-libs/libappindicator:3 )
+"
+
+RDEPEND="${COMMON_DEPEND}"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/rarian
+   >=app-text/scrollkeeper-dtd-1:1.0
+   app-text/yelp-tools
+   dev-libs/libxml2
+   dev-util/desktop-file-utils
+   dev-util/glib-utils
+   >=sys-devel/gettext-0.19.8
+   x11-base/xorg-proto
+   virtual/pkgconfig
+"
+
+src_configure() {
+   mate_src_configure \
+   --disable-update-mimedb \
+   $(use_enable appindicator) \
+   $(use_enable debug)
+}



[gentoo-commits] repo/gentoo:master commit in: mate-base/caja/

2021-06-30 Thread Adam Feldman
commit: 707ee9db0263e58e0a0d85bc83da0a5b4cc8222b
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 12:45:27 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=707ee9db

mate-base/caja: Bump to 1.24.1

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

 mate-base/caja/Manifest   |  2 +
 mate-base/caja/caja-1.24.1.ebuild | 94 +++
 2 files changed, 96 insertions(+)

diff --git a/mate-base/caja/Manifest b/mate-base/caja/Manifest
new file mode 100644
index 000..d30de7da35d
--- /dev/null
+++ b/mate-base/caja/Manifest
@@ -0,0 +1,2 @@
+DIST caja-1.24.0.tar.xz 5221716 BLAKE2B 
66d628ac0f50e2c388935420e29dfe15a8f5f127fd7b39e92ebbd67b6c929cda1a2dec1f510fb89890602adaef6a741f0ee3e15d27ab9741c5223c7966b3b908
 SHA512 
a68b23876cfa1171d5b1c75e4998c6b15f0ceebdc4fcaabb8d362e32e35b915b1a91a38648532ac8acc162dac50aeb4d07eff417ce2db7a8c50d68bd38a0b548
+DIST caja-1.24.1.tar.xz 5308268 BLAKE2B 
82d2ff39152bd6d961d233d3712237b8192cf680d419f44cb8a2857228f4648d7667213740a1b2fdf024ac5958586f9b0b8f99e3770710a5ec5c6651a85dadf1
 SHA512 
34ba1e384e3de4ee3e6dddafa4ef4ccd5f626352cf5b42d6178e96395762653478cbdabb109cd0f2418ed463fd4743ef8a34be0a6b4294ad5355fea6dbfd53cc

diff --git a/mate-base/caja/caja-1.24.1.ebuild 
b/mate-base/caja/caja-1.24.1.ebuild
new file mode 100644
index 000..1802c8e69fc
--- /dev/null
+++ b/mate-base/caja/caja-1.24.1.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+inherit mate virtualx
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="Caja file manager for the MATE desktop"
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="0"
+
+IUSE="+introspection +mate packagekit xmp"
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.58.1:2
+   >=dev-libs/libxml2-2.4.7:2
+   gnome-base/dconf
+   >=gnome-base/gvfs-1.10.1:0[udisks]
+   >=mate-base/mate-desktop-1.17.3:0
+   >=media-libs/libexif-0.6.14:0
+   x11-libs/cairo
+   >=x11-libs/gdk-pixbuf-2.36.5:2
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   >=x11-libs/libnotify-0.7.0:0
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXft
+   x11-libs/libXrender
+   >=x11-libs/pango-1.1.2
+   introspection? ( >=dev-libs/gobject-introspection-0.6.4:= )
+   packagekit? ( app-admin/packagekit-base )
+   xmp? ( >=media-libs/exempi-1.99.5:2 )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+   !!mate-base/mate-file-manager
+"
+
+DEPEND="${COMMON_DEPEND}
+   >=dev-lang/perl-5:=
+   dev-util/gdbus-codegen
+   dev-util/glib-utils
+   dev-util/gtk-doc
+   dev-util/gtk-doc-am
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+PDEPEND="mate? ( >=x11-themes/mate-icon-theme-${MATE_BRANCH} )"
+
+# TODO: Test fails because Caja is not merged yet:
+# GLib-GIO-ERROR **: Settings schema 'org.mate.caja.preferences' is not 
installed
+RESTRICT="test"
+
+src_prepare() {
+   # Remove unnecessary CFLAGS.
+   sed -i -e 's:-DG.*DISABLE_DEPRECATED::g' \
+   configure.ac eel/Makefile.am || die
+
+   mate_src_prepare
+}
+
+src_configure() {
+   mate_src_configure \
+   --disable-update-mimedb \
+   $(use_enable introspection) \
+   $(use_enable packagekit) \
+   $(use_enable xmp)
+}
+
+src_test() {
+   unset SESSION_MANAGER
+   unset DBUS_SESSION_BUS_ADDRESS
+
+   Xemake check || die "Test phase failed"
+}
+
+pkg_postinst() {
+   mate_pkg_postinst
+
+   elog "Caja can use gstreamer to preview audio files. Just make sure"
+   elog "to have the necessary plugins available to play the media type 
you"
+   elog "want to preview."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-icon-theme/

2021-06-30 Thread Adam Feldman
commit: 8d3486ba77eecaa2c8445b327a45f073a300e712
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 15:32:09 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d3486ba

x11-themes/mate-icon-theme: Fix manifest

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

 x11-themes/mate-icon-theme/Manifest | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-themes/mate-icon-theme/Manifest 
b/x11-themes/mate-icon-theme/Manifest
new file mode 100644
index 000..35b623a30fa
--- /dev/null
+++ b/x11-themes/mate-icon-theme/Manifest
@@ -0,0 +1 @@
+DIST mate-icon-theme-1.24.0.tar.xz 22178384 BLAKE2B 
7e1dbfcc83da49f30bad89106bfadf8d19d1ef3074d1302edad2934a46e6caac1aab003a126c823757e4a75127279107945e921d6463a05476ca98cf898ff74f
 SHA512 
18ad6a236f02b7536697fed9086eadd997f0c47cc8311324e43641b21ccf942d0dbd52fa6c49623e679d3b23d82619cc256c98d9f8ccc3b3d4cda5d9a6e465f1



[gentoo-commits] repo/gentoo:master commit in: media-gfx/eom/

2021-06-30 Thread Adam Feldman
commit: bfdada09a3eef6e784d8dd193df964edd84e631b
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 15:17:37 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfdada09

media-gfx/eom: 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>

 media-gfx/eom/Manifest  |  1 +
 media-gfx/eom/eom-1.24.2.ebuild | 74 +
 2 files changed, 75 insertions(+)

diff --git a/media-gfx/eom/Manifest b/media-gfx/eom/Manifest
index 4c916c82510..77f780c6e15 100644
--- a/media-gfx/eom/Manifest
+++ b/media-gfx/eom/Manifest
@@ -1 +1,2 @@
 DIST eom-1.24.1.tar.xz 2408284 BLAKE2B 
70d660896dff42d5a91ea651697b50d4c90ced92023d5df48dfbed374c3777676f1f2dc99a0cb071a4eaa13353f31b11346136b963cf723397632cceafa64301
 SHA512 
70654b99f474d1b214cbbf8e799f82f3c38f47938df34cb5c8227c116b412364c568ae989b96d7082fb0d2fa319b3dba9b8dd499d19140a4d421bd09a46bffc0
+DIST eom-1.24.2.tar.xz 2428972 BLAKE2B 
871cb98c4a308dbc4821e67bae41522dbebae446e64777d764d30ded2f0637bae33cb9090e813fd7e43206ba1a436f7795684c4c5e850a242e9db96804b08e81
 SHA512 
38497dc5fc42340ca1b356f40eab8c14c21b1467f82ec64024d633cfb7ebfc598020b35c02eedce4f73f7a5ecb9050b0f0af4ea00279a1a5e7a627e542f34951

diff --git a/media-gfx/eom/eom-1.24.2.ebuild b/media-gfx/eom/eom-1.24.2.ebuild
new file mode 100644
index 000..dc911dbc38d
--- /dev/null
+++ b/media-gfx/eom/eom-1.24.2.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2021 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 image viewer"
+LICENSE="FDL-1.1+ GPL-2+ IJG LGPL-2+"
+SLOT="0"
+
+IUSE="X debug exif imagemagick +introspection jpeg lcms svg tiff xmp"
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.52:2
+   >=dev-libs/libpeas-1.8.0[gtk]
+   >=dev-libs/libxml2-2:2
+   gnome-base/dconf
+   >=mate-base/mate-desktop-1.17.0
+   sys-libs/zlib
+   x11-libs/cairo
+   >=x11-libs/gdk-pixbuf-2.36.5:2[introspection?,jpeg?,tiff?]
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   >=x11-misc/shared-mime-info-0.20
+   exif? (
+   >=media-libs/libexif-0.6.14
+   virtual/jpeg:0
+   )
+   imagemagick? ( >=media-gfx/imagemagick-6.2.6 )
+   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
+   jpeg? ( virtual/jpeg:0 )
+   lcms? ( media-libs/lcms:2 )
+   svg? ( >=gnome-base/librsvg-2.36.2:2 )
+   xmp? ( >=media-libs/exempi-1.99.5:2 )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+   !!media-gfx/mate-image-viewer
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   dev-util/glib-utils
+   dev-util/gtk-doc
+   dev-util/gtk-doc-am
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+PATCHES=( "${FILESDIR}/eom-1.24.0-add-gdk-includes.patch" )
+
+src_configure() {
+   mate_src_configure \
+   --enable-thumbnailer \
+   $(use_enable debug) \
+   $(use_enable introspection) \
+   $(use_with X x) \
+   $(use_with exif libexif) \
+   $(usex imagemagick \
+   --without-gdk-pixbuf-thumbnailer \
+   --with-gdk-pixbuf-thumbnailer \
+   ) \
+   $(use_with jpeg libjpeg) \
+   $(use_with lcms cms) \
+   $(use_with svg librsvg) \
+   $(use_with xmp)
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/mate-notification-daemon/

2021-06-30 Thread Adam Feldman
commit: b8f72ed20d225476edbf9d900030ef5c29bb1579
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 13:50:16 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8f72ed2

x11-misc/mate-notification-daemon: 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>

 x11-misc/mate-notification-daemon/Manifest |  1 +
 .../mate-notification-daemon-1.24.2.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/x11-misc/mate-notification-daemon/Manifest 
b/x11-misc/mate-notification-daemon/Manifest
index 6ea173d3882..d33b52b955f 100644
--- a/x11-misc/mate-notification-daemon/Manifest
+++ b/x11-misc/mate-notification-daemon/Manifest
@@ -1 +1,2 @@
 DIST mate-notification-daemon-1.24.1.tar.xz 395444 BLAKE2B 
dca14216c7027b2e816c7df64636c3f1c7ae25db253167f9c5d1b296cd9bf3c7533e1f7a33a7d4f2bf5fe074e8f0911462463fffa5b839fd8decd62a4716
 SHA512 
7c799e31229860cb34fa4a19421360a4a93d81826bc4381ed284e1ec280bae67d2f5bdf5d751f3dad6a1da424a5c598b2def60b7b24fd6ea41da5f126f456bac
+DIST mate-notification-daemon-1.24.2.tar.xz 396156 BLAKE2B 
64bbada24bc53f296076ff80b364e156fecfe28f4b1d8b77a0f05910939ccc2378e0635861442cc5cff8c95db5ccda55484de8aaf3315e28eb8df75c1a4bc20d
 SHA512 
be9db249bec6dc2206d69998b972f06ab4e2ee5c30b5bcf44c43b508954a9984a37bc9a2fe9989aec55969492256ed742fb2a9618b751e47ff43b66c383c1bd4

diff --git 
a/x11-misc/mate-notification-daemon/mate-notification-daemon-1.24.2.ebuild 
b/x11-misc/mate-notification-daemon/mate-notification-daemon-1.24.2.ebuild
new file mode 100644
index 000..d31ce81cdba
--- /dev/null
+++ b/x11-misc/mate-notification-daemon/mate-notification-daemon-1.24.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="MATE Notification daemon"
+LICENSE="GPL-2+ GPL-3+"
+SLOT="0"
+
+IUSE=""
+
+COMMON_DEPEND="dev-libs/atk
+   >=dev-libs/glib-2.50:2
+   >=dev-libs/libxml2-2.9.0
+   >=sys-apps/dbus-1
+   x11-libs/cairo
+   >=x11-libs/gdk-pixbuf-2.22:2
+   >=x11-libs/libnotify-0.7
+   x11-libs/libX11
+   virtual/libintl
+   >=x11-libs/gtk+-3.22:3
+   >=x11-libs/libwnck-3:3
+   >=media-libs/libcanberra-0.4:0[gtk3]
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+   !x11-misc/notify-osd
+   !x11-misc/qtnotifydaemon
+   !x11-misc/notification-daemon
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-arch/xz-utils
+   dev-util/gdbus-codegen
+   >=sys-devel/gettext-0.19.8
+   >=sys-devel/libtool-2.2.6:2
+   virtual/pkgconfig
+"
+
+src_install() {
+   mate_src_install
+
+   insinto /usr/share/dbus-1/services
+   doins "${FILESDIR}/org.freedesktop.Notifications.service"
+}



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

2021-06-30 Thread Adam Feldman
commit: 3ae624a99d166b9b200b8c8a83272f333a1994ca
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 14:22:17 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ae624a9

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 4d5250b09c6..c64600cc4f6 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..1c7ebffed1d
--- /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] repo/gentoo:master commit in: app-editors/pluma/

2021-06-30 Thread Adam Feldman
commit: e468cb3c256ea2431f74a20d093364893350778e
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 15:21:23 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e468cb3c

app-editors/pluma: 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>

 app-editors/pluma/Manifest|  1 +
 app-editors/pluma/pluma-1.24.2.ebuild | 81 +++
 2 files changed, 82 insertions(+)

diff --git a/app-editors/pluma/Manifest b/app-editors/pluma/Manifest
index 106b02fab9a..6a160fe74bb 100644
--- a/app-editors/pluma/Manifest
+++ b/app-editors/pluma/Manifest
@@ -1 +1,2 @@
 DIST pluma-1.24.1.tar.xz 3679636 BLAKE2B 
e792433b93862c8b0c47145255311c3a3386c1b99ec1ac87ed91608d839ece4430205f83fcc3c0f5145f986105d4c5d8803393035fcaaea08155197bbcf15d03
 SHA512 
0cfd6a035fc95993dce3e556c49641e799888f20159b29f2c0712c54ee772aa6df1ce755f329414c94efdb2cb3819ce633b92e6559b0c8cb064dab3c74729ab3
+DIST pluma-1.24.2.tar.xz 3745160 BLAKE2B 
ed855b19f1ab80cb6ef9bc175eea3c2af386b1e45123bc0e3ad93d1964efb4822fe1b3d7490308357fcff96557bb6189f081a467f41a6907e76a1961de8f23d3
 SHA512 
588640744f8a0bec08d0c51c0309380a57cb6319c98124885e30d05e7dd8488ba7bd5acec1bf21fb0d6832626ae8925b24cd241202265af1a631a91313cdad2b

diff --git a/app-editors/pluma/pluma-1.24.2.ebuild 
b/app-editors/pluma/pluma-1.24.2.ebuild
new file mode 100644
index 000..061436117e9
--- /dev/null
+++ b/app-editors/pluma/pluma-1.24.2.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+
+inherit mate python-single-r1 virtualx
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="Pluma text editor for the MATE desktop"
+LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
+SLOT="0"
+
+IUSE="+introspection spell test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# Tests require gvfs sftp fs mounted and schema's installed. Disable tests.
+# https://github.com/mate-desktop/mate-text-editor/issues/33
+RESTRICT="test"
+
+COMMON_DEPEND="dev-libs/atk
+   >=dev-libs/glib-2.50:2
+   >=dev-libs/libpeas-1.2.0[gtk]
+   >=dev-libs/libxml2-2.5:2
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   >=x11-libs/gtksourceview-3.0.0:3.0
+   x11-libs/libICE
+   x11-libs/libX11
+   >=x11-libs/libSM-1.0
+   x11-libs/pango
+   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
+   spell? (
+   >=app-text/enchant-1.6:=
+   >=app-text/iso-codes-0.35
+   )
+   !!app-editors/mate-text-editor
+"
+
+RDEPEND="${PYTHON_DEPS}
+   ${COMMON_DEPEND}
+   >=mate-base/mate-desktop-1.9[introspection?]
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   ~app-text/docbook-xml-dtd-4.1.2
+   app-text/rarian
+   >=app-text/scrollkeeper-dtd-1:1.0
+   app-text/yelp-tools
+   dev-util/glib-utils
+   dev-util/gtk-doc
+   dev-util/gtk-doc-am
+   >=sys-devel/libtool-2.2.6:2
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+src_configure() {
+   mate_src_configure \
+   $(use_enable introspection) \
+   $(use_enable spell) \
+   $(use_enable test tests)
+}
+
+src_test() {
+   # FIXME: This should be handled at eclass level.
+   "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
+
+   unset DBUS_SESSION_BUS_ADDRESS
+
+   GSETTINGS_SCHEMA_DIR="${S}/data" Xemake check
+}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-themes/

2021-06-30 Thread Adam Feldman
commit: f66c7c2ddcffcb3f63be03327791992c79e92154
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 00:19:50 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f66c7c2d

x11-themes/mate-themes: Stabilize 3.22.21 for amd64,x86

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

 x11-themes/mate-themes/mate-themes-3.22.21.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/mate-themes/mate-themes-3.22.21.ebuild 
b/x11-themes/mate-themes/mate-themes-3.22.21.ebuild
index a32894e1e7d..0f0310aba51 100644
--- a/x11-themes/mate-themes/mate-themes-3.22.21.ebuild
+++ b/x11-themes/mate-themes/mate-themes-3.22.21.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ 
SRC_URI="https://pub.mate-desktop.org/releases/themes/${MATE_GTK_V}/${P}.tar.xz";
 
 LICENSE="CC-BY-SA-3.0 GPL-3+ LGPL-2.1+ LGPL-3"
 SLOT="0/${MATE_GTK_V}"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 RDEPEND="
>=x11-libs/gdk-pixbuf-2:2



[gentoo-commits] repo/gentoo:master commit in: app-arch/engrampa/

2021-06-30 Thread Adam Feldman
commit: 97b4abc23e3df07e8f0b301f09b94ce107022b06
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 15:15:27 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97b4abc2

app-arch/engrampa: 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>

 app-arch/engrampa/Manifest   |  1 +
 app-arch/engrampa/engrampa-1.24.2.ebuild | 69 
 2 files changed, 70 insertions(+)

diff --git a/app-arch/engrampa/Manifest b/app-arch/engrampa/Manifest
index cacda538551..540fdd0c280 100644
--- a/app-arch/engrampa/Manifest
+++ b/app-arch/engrampa/Manifest
@@ -1 +1,2 @@
 DIST engrampa-1.24.1.tar.xz 168 BLAKE2B 
3059f98e5db99aabe270a89d7edf334ddca8b9cfd963a34f8b7b99356a1b7a9b14c9f641ea6582f893a5f6e4fe46dde00e5375d7b1c71b80299a7f5121839549
 SHA512 
9d51f24987cecfdd2c560b1ac8f8699bb5ed010bcd5b4a449a1103f725bc63046d0813d28424a3ae7dfcee0568dbf2a282f27ac5512b1c342dafeaec5bcd3b4b
+DIST engrampa-1.24.2.tar.xz 1687432 BLAKE2B 
b2ef407aef77f9ecd3f8b06d2e991615a39fa2d4487678292d035a7cab882551bc8c757c6a15037b828cb51aaba14c2ec25e85e891770f6f8c9b453753d87b42
 SHA512 
1e0acecfe42e3945fe43729283522dfd56dc4cee92a4d5998c995a496f42f41b284ec10f01eb142139c1cec65e3b5a037299b168b73a2e6e828ae3ab4b9c777d

diff --git a/app-arch/engrampa/engrampa-1.24.2.ebuild 
b/app-arch/engrampa/engrampa-1.24.2.ebuild
new file mode 100644
index 000..506779c0836
--- /dev/null
+++ b/app-arch/engrampa/engrampa-1.24.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+inherit mate readme.gentoo-r1
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="Engrampa archive manager for MATE"
+LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
+SLOT="0"
+
+IUSE="caja magic packagekit"
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.50:2
+   >=dev-libs/json-glib-0.14
+   virtual/libintl
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3[X]
+   x11-libs/libSM
+   x11-libs/pango
+   caja? ( >=mate-base/caja-1.17.1 )
+   magic? ( sys-apps/file )
+   packagekit? ( app-admin/packagekit-base )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+   !!app-arch/mate-file-archiver
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   dev-util/glib-utils
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+src_configure() {
+   mate_src_configure \
+   --disable-run-in-place \
+   $(use_enable caja caja-actions) \
+   $(use_enable magic) \
+   $(use_enable packagekit)
+}
+
+pkg_postinst() {
+   mate_pkg_postinst
+   optfeature "Support for 7-zip"  app-arch/p7zip
+   optfeature "Support for ace"  app-arch/unace
+   optfeature "Support for arj"  app-arch/arj
+   optfeature "Support for cpio"  app-arch/cpio
+   optfeature "Support for deb"  app-arch/dpkg
+   optfeature "Support for iso"  app-cdr/cdrtools
+   optfeature "Support for jar,zip"  app-arch/zip app-arch/unzip
+   optfeature "Support for lha"  app-arch/lha
+   optfeature "Support for lzma"  app-arch/xz-utils
+   optfeature "Support for lzop"  app-arch/lzop
+   optfeature "Support for rar"  app-arch/unrar
+   optfeature "Support for rpm"  app-arch/rpm
+   optfeature "Support for unstuff"  app-arch/stuffit
+   optfeature "Support for zoo"  app-arch/zoo
+}



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-polkit/

2021-06-30 Thread Adam Feldman
commit: 755db9112c536e14d1452184917db348ef94e9a6
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 15:34:31 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=755db911

mate-extra/mate-polkit: Fix manifest

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

 mate-extra/mate-polkit/Manifest | 1 +
 1 file changed, 1 insertion(+)

diff --git a/mate-extra/mate-polkit/Manifest b/mate-extra/mate-polkit/Manifest
new file mode 100644
index 000..0ec07eea023
--- /dev/null
+++ b/mate-extra/mate-polkit/Manifest
@@ -0,0 +1 @@
+DIST mate-polkit-1.24.0.tar.xz 332652 BLAKE2B 
293d964f2410d2f60047d1e01e2ba864c22e8bda00e5b659329d097391b2988349c70dfbd953f223c4212887d16d54f1f5a7eb21e38b69b553d54b1966647cb1
 SHA512 
8d759bd5f78750c75dc92ffa27e555ae36ae7199b76483cbfe7e0848d3a66cda5b82c98bf334068eb79a1344757665cf7d1bf403e4e908e332ca929c8ebe2a98



[gentoo-commits] repo/gentoo:master commit in: x11-themes/mate-themes/

2021-06-30 Thread Adam Feldman
commit: 2c14d942460e3d25862f07be9ac875e6cd8c060e
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 15:25:08 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c14d942

x11-themes/mate-themes: Bump to 3.22.22

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

 x11-themes/mate-themes/Manifest   |  1 +
 x11-themes/mate-themes/mate-themes-3.22.22.ebuild | 37 +++
 2 files changed, 38 insertions(+)

diff --git a/x11-themes/mate-themes/Manifest b/x11-themes/mate-themes/Manifest
index e0262bc604d..b77a4601872 100644
--- a/x11-themes/mate-themes/Manifest
+++ b/x11-themes/mate-themes/Manifest
@@ -1 +1,2 @@
 DIST mate-themes-3.22.21.tar.xz 5377276 BLAKE2B 
2efa2ab47440baa869da02fe8b65bc05a91ac79ab5d5794c182a05af736c4593b07c8c1ff9dde6b770462ad208d426565a7a07e359ee62ebc50ec7e737eaa7e5
 SHA512 
5f0e7e1f688e02a5c9581ec8f552da836a4c4355caa853650a19b670971acbecc3a4ac32aa7fb282879fd5a48e0a3e4aed5d182054fe2e9bb1270c74bfcef5bc
+DIST mate-themes-3.22.22.tar.xz 5900388 BLAKE2B 
0c211ac6a5ba9d1626ee827da0e5c98f3aaaf61fe3acec3b4d40f3ab05a384bfe0d0f15ba41a5b476231667c94ebb3c975efecbc651e7194fef655e64d459378
 SHA512 
7bd0b41aa46a69ec79a977f01ae019db428f439622d7b82e5f0e3b69da8afb1f34d6ea932292a41eb7fed4e9f41575b82a5ffe945930d982e1f78f6789b049b7

diff --git a/x11-themes/mate-themes/mate-themes-3.22.22.ebuild 
b/x11-themes/mate-themes/mate-themes-3.22.22.ebuild
new file mode 100644
index 000..4cdbafbc440
--- /dev/null
+++ b/x11-themes/mate-themes/mate-themes-3.22.22.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools xdg
+
+MATE_GTK_V="$(ver_cut 1-2)"
+
+HOMEPAGE="https://mate-desktop.org";
+DESCRIPTION="A set of MATE themes, with sets for users with limited or low 
vision"
+SRC_URI="https://pub.mate-desktop.org/releases/themes/${MATE_GTK_V}/${P}.tar.xz";
+
+LICENSE="CC-BY-SA-3.0 GPL-3+ LGPL-2.1+ LGPL-3"
+SLOT="0/${MATE_GTK_V}"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   >=x11-libs/gdk-pixbuf-2:2
+   >=x11-libs/gtk+-2:2
+   >=x11-themes/gtk-engines-2.15.3:2
+   x11-themes/gtk-engines-murrine
+"
+
+DEPEND="${RDEPEND}
+   >=sys-devel/gettext-0.19.8:*
+   >=sys-devel/autoconf-2.53
+   >=x11-misc/icon-naming-utils-0.8.7:0
+   virtual/pkgconfig
+"
+
+RESTRICT="binchecks strip"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: x11-wm/marco/

2021-06-30 Thread Adam Feldman
commit: 7107ac7493795da71bd81c61d54ebc8e974c6e46
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 13:09:49 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7107ac74

x11-wm/marco: 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>

 x11-wm/marco/Manifest|  1 +
 x11-wm/marco/marco-1.24.2.ebuild | 76 
 2 files changed, 77 insertions(+)

diff --git a/x11-wm/marco/Manifest b/x11-wm/marco/Manifest
index 209ca943e26..8e861968591 100644
--- a/x11-wm/marco/Manifest
+++ b/x11-wm/marco/Manifest
@@ -1 +1,2 @@
 DIST marco-1.24.1.tar.xz 1860008 BLAKE2B 
b147e6ce8aad9382b2e8d96eec2da0356cce91977f4387776359ffb1f26903d7f0b9d9a1d43a436d1a64033f545600e7f810a29e3ae6ecdfb0d73ef8073b782c
 SHA512 
55607898b64f0da3a85dd8d7fd092d847c8f67cefa096a63dbe074c197157a3d661fcb3f2a495b4425340b583b600cda3d1c92ac08b7327904dbd4aab8e92c85
+DIST marco-1.24.2.tar.xz 1845356 BLAKE2B 
9308e07fec5319f741f7d78007e68e916c407c515fc2076c0e26a760830d3c79edf39888f265f7edc1baf0c8dc29661fb6598be16352103455cc441bc2a1daf5
 SHA512 
2e699935fb72ddc34aa1f98f5771f252141245ad8fd0983aafe5ea55aeeb3f90b5d68a61c27704adf0b929565180367aae46486d45e789d7de101ec9a7bc9f96

diff --git a/x11-wm/marco/marco-1.24.2.ebuild b/x11-wm/marco/marco-1.24.2.ebuild
new file mode 100644
index 000..e36ea8196cc
--- /dev/null
+++ b/x11-wm/marco/marco-1.24.2.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE2_LA_PUNT="yes"
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="MATE default window manager"
+LICENSE="FDL-1.2+ GPL-2+ LGPL-2+ MIT"
+SLOT="0/2"
+
+IUSE="startup-notification test xinerama"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.58:2
+   >=gnome-base/libgtop-2:2=
+   media-libs/libcanberra[gtk3]
+   x11-libs/cairo
+   >=x11-libs/pango-1.2[X]
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   >=x11-libs/libXcomposite-0.3
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXpresent
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   >=x11-libs/startup-notification-0.7
+   xinerama? ( x11-libs/libXinerama )
+   !!x11-wm/mate-window-manager
+"
+
+RDEPEND="${COMMON_DEPEND}
+   gnome-extra/zenity
+   >=mate-base/mate-desktop-1.20.0
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   >=sys-devel/gettext-0.19.8
+   >=sys-devel/libtool-2.0.0
+   virtual/pkgconfig
+   x11-base/xorg-proto
+   test? ( app-text/docbook-xml-dtd:4.5 )
+   xinerama? ( x11-base/xorg-proto )
+"
+
+src_configure() {
+   mate_src_configure \
+   --enable-compositor \
+   --enable-render \
+   --enable-shape \
+   --enable-sm \
+   --enable-xsync \
+   $(use_enable startup-notification) \
+   $(use_enable xinerama)
+}
+
+src_install() {
+   mate_src_install
+   dodoc doc/*.txt
+}



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-power-manager/

2021-06-30 Thread Adam Feldman
commit: 2f7b03b3f822baa8c2d18a5f2f125db24360d5db
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 13:56:54 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f7b03b3

mate-extra/mate-power-manager: 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-power-manager/mate-power-manager-1.24.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.24.2.ebuild 
b/mate-extra/mate-power-manager/mate-power-manager-1.24.2.ebuild
index 74f964b68e4..0e47db7552d 100644
--- a/mate-extra/mate-power-manager/mate-power-manager-1.24.2.ebuild
+++ b/mate-extra/mate-power-manager/mate-power-manager-1.24.2.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="amd64 ~arm ~arm64 x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 fi
 
 DESCRIPTION="A session daemon for MATE that makes it easy to manage your 
laptop or desktop"



[gentoo-commits] repo/gentoo:master commit in: app-text/atril/

2021-06-30 Thread Adam Feldman
commit: 38c5a8e69b0b738ada5d7d711ebf4d2e16d28e71
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 15:13:23 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38c5a8e6

app-text/atril: Bump to 1.24.1

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

 app-text/atril/Manifest|   1 +
 app-text/atril/atril-1.24.1.ebuild | 119 +
 2 files changed, 120 insertions(+)

diff --git a/app-text/atril/Manifest b/app-text/atril/Manifest
index 635d19e4b37..c435e33d217 100644
--- a/app-text/atril/Manifest
+++ b/app-text/atril/Manifest
@@ -1 +1,2 @@
 DIST atril-1.24.0.tar.xz 2062468 BLAKE2B 
374c7769f5c9753b1d9a6143c796a317914aebbb638b6f0a85b732b43b0e9ad2fff1374a5f3f4dc1abc8c265ce003bfef2cddc47cdb18ddc7f24c4905ef5232c
 SHA512 
dfdd5ed82ba76c4f0a446a95b0a6201bedf8b4d00ff46ce697a5b937251f6d7a1888ca76eef623eb84dcddb425c7ad662e179f593686bba064b7491d4d940293
+DIST atril-1.24.1.tar.xz 2043552 BLAKE2B 
01e41e53a38684c237fadef200614cf8d70cb84410a00bb9d28b200fcac43a2bf45cd81c4c7f19ab1351891f179ee64cd880bca1aa38cf68727bcf1da3e06c8d
 SHA512 
94a55e7699bdfc9368e20986664bd411c12f50f466874ebf20210df3de6ddb499866b505e157c56b58a8065aad2c24284b96afa8c547a6cd259eef413096a91a

diff --git a/app-text/atril/atril-1.24.1.ebuild 
b/app-text/atril/atril-1.24.1.ebuild
new file mode 100644
index 000..1cf25b1ae89
--- /dev/null
+++ b/app-text/atril/atril-1.24.1.ebuild
@@ -0,0 +1,119 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MATE_LA_PUNT="yes"
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+inherit mate python-any-r1 virtualx
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="Atril document viewer for MATE"
+LICENSE="FDL-1.1+ GPL-2+ GPL-3+ LGPL-2+ LGPL-2.1+"
+SLOT="0"
+
+IUSE="caja dbus debug djvu dvi epub +introspection gnome-keyring +postscript 
synctex t1lib test tiff xps"
+
+REQUIRED_USE="t1lib? ( dvi )"
+
+COMMON_DEPEND="
+   >=app-text/poppler-0.22[cairo]
+   dev-libs/atk
+   >=dev-libs/glib-2.62:2
+   >=dev-libs/libxml2-2.5:2
+   sys-libs/zlib
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libICE
+   >=x11-libs/libSM-1:0
+   x11-libs/libX11
+   >=x11-libs/cairo-1.14
+   x11-libs/pango
+   caja? ( >=mate-base/caja-1.17.1[introspection?] )
+   djvu? ( >=app-text/djvu-3.5.17:0 )
+   dvi? (
+   virtual/tex-base
+   t1lib? ( >=media-libs/t1lib-5:5 )
+   )
+   epub? (
+   dev-libs/mathjax
+   >=net-libs/webkit-gtk-2.6.0:4
+   )
+   gnome-keyring? ( >=app-crypt/libsecret-0.5 )
+   introspection? ( >=dev-libs/gobject-introspection-0.6:= )
+   postscript? ( >=app-text/libspectre-0.2 )
+   synctex? ( virtual/tex-base )
+   tiff? ( >=media-libs/tiff-3.6:0 )
+   xps? ( >=app-text/libgxps-0.2.1 )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+   !!app-text/mate-document-viewer
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xml-dtd:4.1.2
+   app-text/rarian
+   app-text/yelp-tools
+   >=app-text/scrollkeeper-dtd-1:1.0
+   dev-util/gdbus-codegen
+   dev-util/glib-utils
+   dev-util/gtk-doc
+   dev-util/gtk-doc-am
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+   test? ( $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]') )
+"
+
+#RESTRICT="!test? ( test )"
+# Tests use dogtail and require using accessibility services.
+# Until we figure out how to run successfully, don't run tests
+RESTRICT="test"
+
+PATCHES=( "${FILESDIR}/${PN}-1.24.0-make-synctex-optional.patch" )
+
+python_check_deps() {
+   use test && has_version "dev-util/dogtail[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
+src_configure() {
+   # Passing --disable-help would drop offline help, that would be 
inconsistent
+   # with helps of the most of GNOME apps that doesn't require network for 
that.
+   mate_src_configure \
+   --enable-comics \
+   --enable-pdf \
+   --enable-pixbuf \
+   --enable-previewer \
+   --enable-thumbnailer \
+   $(use_with gnome-keyring keyring) \
+   $(use_enable caja) \
+   $(use_enable dbus) \
+   $(use_enable debug) \
+   $(use_enable djvu) \
+   $(use_enable dvi) \
+   $(use_enable epub) \
+ 

[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-screensaver/

2021-06-30 Thread Adam Feldman
commit: 4d2804f0e3191d55fb47db733cbcd24eb627dc86
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 13:54:50 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d2804f0

mate-extra/mate-screensaver: 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-screensaver/Manifest   |   1 +
 .../mate-screensaver-1.24.2.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/mate-extra/mate-screensaver/Manifest 
b/mate-extra/mate-screensaver/Manifest
index 218079a06cb..f395785c894 100644
--- a/mate-extra/mate-screensaver/Manifest
+++ b/mate-extra/mate-screensaver/Manifest
@@ -1 +1,2 @@
 DIST mate-screensaver-1.24.1.tar.xz 5073836 BLAKE2B 
501c8dffbb5e53b88414c799a6e4d25cf89dfe490e6a902901c339b142e2b687dc2e668f65349a2ff43b6eb44d7721658de771b1a698624f95d1828da2fbda67
 SHA512 
f7cab280da90623ad265beb84770e48431ae6685fbb1eabc7cd2ad07b0f8ed5da2426017243d83271b969d2e020b8afcc93a6135b4c8e42a29f454a4e826b277
+DIST mate-screensaver-1.24.2.tar.xz 5099224 BLAKE2B 
aec1d95ba23f983d592e93ef97ed446b3fb05888d3ad99cf366476b84bf4feff59c3f84696ec0cc525acde69433f4a335b9f1bd8df8f42e602f6c7188c707436
 SHA512 
4c41d25ee2345e3db0c9fd7b463f430a8a4a7dbe8a589670d2072719bc0812c32c2ff8f5dbcd88d712e4aca1c8c0c89262a58581f8b17ead036360dd37c72d9e

diff --git a/mate-extra/mate-screensaver/mate-screensaver-1.24.2.ebuild 
b/mate-extra/mate-screensaver/mate-screensaver-1.24.2.ebuild
new file mode 100644
index 000..5ea1141f975
--- /dev/null
+++ b/mate-extra/mate-screensaver/mate-screensaver-1.24.2.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit mate readme.gentoo-r1
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="Replaces xscreensaver, integrating with the MATE desktop"
+
+LICENSE="GPL-2+ HPND LGPL-2+"
+SLOT="0"
+IUSE="X debug elogind kernel_linux libnotify opengl pam systemd"
+REQUIRED_USE="?? ( elogind systemd )"
+
+COMMON_DEPEND="
+   >=dev-libs/dbus-glib-0.71:0
+   >=dev-libs/glib-2.50:2
+   gnome-base/dconf
+   >=mate-base/libmatekbd-1.17.0
+   >=mate-base/mate-desktop-1.17.0
+   >=mate-base/mate-menus-1.21.0
+   >=sys-apps/dbus-0.30
+   >=x11-libs/gdk-pixbuf-2.14:2
+   >=x11-libs/libX11-1
+   x11-libs/cairo
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libXext
+   x11-libs/libXrandr
+   x11-libs/libXScrnSaver
+   x11-libs/libXxf86vm
+   x11-libs/libxklavier
+   x11-libs/pango
+   libnotify? ( >=x11-libs/libnotify-0.7:0 )
+   opengl? ( virtual/opengl )
+   pam? ( gnome-base/gnome-keyring sys-libs/pam )
+   !pam? ( kernel_linux? ( sys-apps/shadow ) )
+   elogind? ( sys-auth/elogind )
+   systemd? ( sys-apps/systemd:= )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   >=mate-base/mate-session-manager-1.6
+   virtual/libintl
+   !!https://bugzilla.gnome.org/show_bug.cgi?id=370847
+   # is fixed.
+   if ! use pam ; then
+   fperms u+s /usr/libexec/mate-screensaver-dialog
+   fi
+
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   mate_pkg_postinst
+
+   if has_version "> 
/etc/portage/package.use"
+   echo
+   fi
+
+   readme.gentoo_print_elog
+}



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-session-manager/

2021-06-30 Thread Adam Feldman
commit: 9790c1433afcf5970c07b90e74f6eb91f4f65535
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 13:36:06 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9790c143

mate-base/mate-session-manager: Bump to 1.24.3

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

 mate-base/mate-session-manager/Manifest|  1 +
 .../mate-session-manager-1.24.3.ebuild | 89 ++
 2 files changed, 90 insertions(+)

diff --git a/mate-base/mate-session-manager/Manifest 
b/mate-base/mate-session-manager/Manifest
index 62abace8d05..7ce78d28d2e 100644
--- a/mate-base/mate-session-manager/Manifest
+++ b/mate-base/mate-session-manager/Manifest
@@ -1 +1,2 @@
 DIST mate-session-manager-1.24.1.tar.xz 711188 BLAKE2B 
a2d48b53fbff6f2bf56cdf24efb709a17458341c75a37ab7494fcf344064b64f50e9527f11d74b681d2156508e24fefdb7a5c7637b72deddf1f3a82e4096031b
 SHA512 
ca561e13080ef334a69f18b3aec0993532381ea5c178a0acf969bf2ed9cb5d484626404ab43d809727d8eef9b5eda29adc224168290f78a63da2621ac7ef79f5
+DIST mate-session-manager-1.24.3.tar.xz 713004 BLAKE2B 
d4968db81b1dee53fb70f68c8bf55f22ec65787d6be57d507db90dfe39bb52c0d0e0add2bc30cc66dd00d9676d8c38d8c637e16cb63f0733525141e9d70724cb
 SHA512 
ea43caa350e5f3abda65001829fa7b84d043a7e8851ff74d1d09671f868b3f0be37ae951acca84f1764b26ec9b187c56791010f1b48bd8195ff8dbd70635446f

diff --git a/mate-base/mate-session-manager/mate-session-manager-1.24.3.ebuild 
b/mate-base/mate-session-manager/mate-session-manager-1.24.3.ebuild
new file mode 100644
index 000..5e56cead46f
--- /dev/null
+++ b/mate-base/mate-session-manager/mate-session-manager-1.24.3.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2021 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="MATE session manager"
+HOMEPAGE="https://mate-desktop.org/";
+
+LICENSE="GPL-2+ GPL-3+ HPND LGPL-2+ LGPL-2.1+"
+SLOT="0"
+IUSE="debug elogind gles2 gnome-keyring ipv6 systemd +xtrans"
+
+REQUIRED_USE="^^ ( elogind systemd )"
+
+# x11-misc/xdg-user-dirs{,-gtk} are needed to create the various XDG_*_DIRs, 
and
+# create .config/user-dirs.dirs which is read by glib to get G_USER_DIRECTORY_*
+# xdg-user-dirs-update is run during login (see 10-user-dirs-update-gnome 
below).
+
+COMMON_DEPEND="
+   >=dev-libs/dbus-glib-0.76
+   >=dev-libs/glib-2.50:2
+   dev-libs/libxslt
+   sys-apps/dbus
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXau
+   x11-libs/libXext
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/pango
+   gles2? ( media-libs/mesa[egl,gles2] )
+   systemd? ( sys-apps/systemd )
+   elogind? ( sys-auth/elogind )
+   xtrans? ( x11-libs/xtrans )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   mate-base/mate-desktop
+   virtual/libintl
+   x11-apps/xdpyinfo
+   x11-misc/xdg-user-dirs
+   x11-misc/xdg-user-dirs-gtk
+   gnome-keyring? ( gnome-base/gnome-keyring )
+   !

[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-calc/

2021-06-30 Thread Adam Feldman
commit: 39df2b9c0cd351cc59eb71615647f471f7f58dd7
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 15:26:57 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39df2b9c

mate-extra/mate-calc: 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-calc/Manifest|  1 +
 mate-extra/mate-calc/mate-calc-1.24.2.ebuild | 35 
 2 files changed, 36 insertions(+)

diff --git a/mate-extra/mate-calc/Manifest b/mate-extra/mate-calc/Manifest
index 0d6b318ee65..9ec24c0a7ba 100644
--- a/mate-extra/mate-calc/Manifest
+++ b/mate-extra/mate-calc/Manifest
@@ -1 +1,2 @@
 DIST mate-calc-1.24.1.tar.xz 952372 BLAKE2B 
ae6c687d85f48f95fda89ba4fa2be44d1f2fc510708a25ac59fd8074d1f29bc6b440ec1c20b344566d4e8a2edc8ec0bdc0d565773f2c089d712c47db4e847805
 SHA512 
164fc57ed6bcc69b96afd75fff8dd6248ce682d6f806e83ddb73a21bddce99b89c7bb697d189b56d88d5c8d9a0b99f50f3fdd15c7d56f9121ee1d16689b16595
+DIST mate-calc-1.24.2.tar.xz 969912 BLAKE2B 
844a6bee102e7f4bbab59936c8c7d1f7284e3ec17e0d1c77863df9ec6c4dba80adcc29bc1159a29ccc9473df81d1a45505e55c1da20e1bcdf24674b9c70d8d36
 SHA512 
d790aefd2839237d6776c6b0508ded53d6eef52456a3025f08bcaf826f8c56754e079d50703a4f7f834f5167f802ddb3d7b95ece613e00faf3ad6f5c1d402e97

diff --git a/mate-extra/mate-calc/mate-calc-1.24.2.ebuild 
b/mate-extra/mate-calc/mate-calc-1.24.2.ebuild
new file mode 100644
index 000..71492571d36
--- /dev/null
+++ b/mate-extra/mate-calc/mate-calc-1.24.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2021 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="Calculator for MATE"
+LICENSE="CC-BY-SA-3.0 GPL-2+"
+SLOT="0"
+
+IUSE=""
+
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.50:2
+   dev-libs/libxml2:2
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/pango
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/yelp-tools
+   dev-libs/libxml2
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"



[gentoo-commits] repo/gentoo:master commit in: x11-misc/mozo/

2021-06-30 Thread Adam Feldman
commit: 289a0c457ab94542158a6ba8d4e851d452382bc7
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jun 10 15:19:47 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun 30 22:41:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=289a0c45

x11-misc/mozo: Bump to 1.24.1

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

 x11-misc/mozo/Manifest   |  1 +
 x11-misc/mozo/mozo-1.24.1.ebuild | 69 
 2 files changed, 70 insertions(+)

diff --git a/x11-misc/mozo/Manifest b/x11-misc/mozo/Manifest
index 1b5b1313c5a..7f3c70c9ea4 100644
--- a/x11-misc/mozo/Manifest
+++ b/x11-misc/mozo/Manifest
@@ -1 +1,2 @@
 DIST mozo-1.24.0.tar.xz 228180 BLAKE2B 
6eb880b82dcb608f84efd8df74e77812f9da68dfa877ec896c6f04fa18088e8e4a82641c715e3620201dbb8a1bea8bb4ded09dd72f50770edae09c1326cbf453
 SHA512 
e0d217d2e7bb7d2c8df777e51bfb20e8bf4fa1bee0f9f3a9348ec1c8501b386a4afbd8848735ecfa61a0f9576382d784d3ef5b884a2a34af6ba33d3a126fe193
+DIST mozo-1.24.1.tar.xz 231032 BLAKE2B 
27938aca9810943d19074cc5761ac58bb1dc2c1918b2fefea983f7a1b8788cb55531115bb4387944c7b48a309de4a80da9003d212ca68ea257fa9ab06c8d
 SHA512 
04b7e93e7302b46a3959f78655de4a6f8b17896be2c506c0e8a9041a9a2d5247e8c2ac00b5c8f86616f6c39a533584923feacfe4b81ae58d41080632af2a24bd

diff --git a/x11-misc/mozo/mozo-1.24.1.ebuild b/x11-misc/mozo/mozo-1.24.1.ebuild
new file mode 100644
index 000..2b73ccc2649
--- /dev/null
+++ b/x11-misc/mozo/mozo-1.24.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+PYTHON_REQ_USE="xml"
+
+inherit mate python-r1
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="Mozo menu editor for MATE"
+LICENSE="GPL-2+ GPL-3+ LGPL-2+ LGPL-2.1+"
+SLOT="0"
+IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   >=dev-python/pygobject-3:3[${PYTHON_USEDEP}]
+   >=mate-base/mate-menus-1.21.0[introspection]
+   x11-libs/gdk-pixbuf:2[introspection]
+   >=x11-libs/gtk+-3.22:3[introspection]
+   !!x11-misc/mate-menu-editor
+"
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+"
+
+DEPEND="${COMMON_DEPEND}
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   mate_src_prepare
+   python_copy_sources
+}
+
+src_configure() {
+   python_foreach_impl run_in_build_dir mate_src_configure \
+   --disable-icon-update
+}
+
+src_compile() {
+   python_foreach_impl run_in_build_dir default
+}
+
+src_test() {
+   python_foreach_impl run_in_build_dir emake check
+}
+
+src_install() {
+   installing() {
+   mate_src_install
+
+   # Massage shebang to make python_doscript happy
+   sed -e 's:#! '"${PYTHON}:#!/usr/bin/python:" \
+   -i mozo || die
+
+   python_doscript mozo
+   python_optimize
+   }
+
+   python_foreach_impl run_in_build_dir installing
+}



[gentoo-commits] repo/gentoo:master commit in: games-strategy/freeorion/

2021-07-01 Thread Adam Feldman
commit: 1c6479db3764a14009a04ae1cfd29d3e50e667b6
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jul  1 15:29:05 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Thu Jul  1 16:02:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c6479db

games-strategy/freeorion: Add snapshot that fixes build errors

Backporting was too complicated, so I added a snapshot

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

 games-strategy/freeorion/Manifest  |  1 +
 .../freeorion/freeorion-0.4.10.1_p20200629.ebuild  | 77 ++
 2 files changed, 78 insertions(+)

diff --git a/games-strategy/freeorion/Manifest 
b/games-strategy/freeorion/Manifest
index 4f0f36b38b3..649be95583b 100644
--- a/games-strategy/freeorion/Manifest
+++ b/games-strategy/freeorion/Manifest
@@ -1 +1,2 @@
 DIST freeorion-0.4.10.1.tar.gz 124693099 BLAKE2B 
d24c481e7be6f718897bb095209673f24cb7d43842f148cf1e8665254970d22449bf7a4ee4ba7a8cb3b5b515d6bed38a24e2862810959a63b29ba9d3c054e6c4
 SHA512 
b28a8bdc2428778480ff8404ad7d84153939f4f8b4a75f51775354e3e563f7f309d479e499ea1be8b57822d725cc57ece8dd14f2e40360ab6c07d70c917bc256
+DIST freeorion-0.4.10.1_p20200629.tar.gz 142041599 BLAKE2B 
a9c14409f31f5ad4d8db95fa33e8f1adb35f7b2a74ea7f173365c7d09979b9a3aa7981ee9deec0427c64844da14ecc323ee54e3331217e2978b49eb86a7a18fb
 SHA512 
b2d4f52e968852569d549c03eca2545b7adac560e5716a21da612dc363b23d790c4481fbd5762f1f1f8da9a8e04894e247ce19363cd96cc2001728912e027d9a

diff --git a/games-strategy/freeorion/freeorion-0.4.10.1_p20200629.ebuild 
b/games-strategy/freeorion/freeorion-0.4.10.1_p20200629.ebuild
new file mode 100644
index 000..62d5f6b9836
--- /dev/null
+++ b/games-strategy/freeorion/freeorion-0.4.10.1_p20200629.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{3_7,3_8,3_9} )
+inherit cmake python-single-r1 xdg
+
+DESCRIPTION="A free turn-based space empire and galactic conquest game"
+HOMEPAGE="https://www.freeorion.org";
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/freeorion/freeorion.git";
+else
+   KEYWORDS="~amd64"
+   if [[ ${PV} = *_p* ]]; then
+   COMMIT="24a08d6c597ce8afc90ccec485a937982b6c3683"
+   
SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-${COMMIT}"
+   else
+   
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV/_/-}.tar.gz -> 
${P}.tar.gz"
+   S="${WORKDIR}/${PN}-${PV/_/-}"
+   fi
+fi
+
+LICENSE="GPL-2 LGPL-2.1 CC-BY-SA-3.0"
+SLOT="0"
+IUSE="dedicated"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+BDEPEND="
+   virtual/pkgconfig
+"
+RDEPEND="
+   $(python_gen_cond_dep '
+   
>=dev-libs/boost-1.58:=[nls,python,threads(+),${PYTHON_MULTI_USEDEP}]
+   ')
+   !dedicated? (
+   media-libs/freealut
+   >=media-libs/freetype-2.5.5
+   media-libs/glew:=
+   >=media-libs/libogg-1.1.3
+   media-libs/libpng:0=
+   media-libs/libsdl2[X,opengl,video]
+   >=media-libs/libvorbis-1.1.2
+   media-libs/openal
+   sci-physics/bullet:=
+   virtual/opengl
+   )
+   sys-libs/zlib
+   ${PYTHON_DEPS}
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   sed -e "s/-O3//" -i CMakeLists.txt || die
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_BUILD_TYPE=Release
+   -DCMAKE_SKIP_RPATH=ON
+   -DBUILD_HEADLESS="$(usex dedicated)"
+   )
+
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+
+   newenvd "${FILESDIR}/${PN}.envd" 99${PN}
+}



[gentoo-commits] repo/gentoo:master commit in: games-strategy/freeorion/

2021-07-01 Thread Adam Feldman
commit: 730e5b8b794efdb62b5b627af73ec33614d8a3e6
Author: Adam Feldman  gentoo  org>
AuthorDate: Thu Jul  1 14:29:34 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Thu Jul  1 16:02:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=730e5b8b

games-strategy/freeorion: Python 3.9

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

 .../{freeorion-0.4.10.1-r2.ebuild => freeorion-0.4.10.1-r3.ebuild}  | 2 +-
 games-strategy/freeorion/freeorion-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-strategy/freeorion/freeorion-0.4.10.1-r2.ebuild 
b/games-strategy/freeorion/freeorion-0.4.10.1-r3.ebuild
similarity index 97%
rename from games-strategy/freeorion/freeorion-0.4.10.1-r2.ebuild
rename to games-strategy/freeorion/freeorion-0.4.10.1-r3.ebuild
index 8fe0bd67b88..7dc53ff3da6 100644
--- a/games-strategy/freeorion/freeorion-0.4.10.1-r2.ebuild
+++ b/games-strategy/freeorion/freeorion-0.4.10.1-r3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{3_7,3_8} )
+PYTHON_COMPAT=( python{3_7,3_8,3_9} )
 inherit cmake python-single-r1 xdg
 
 DESCRIPTION="A free turn-based space empire and galactic conquest game"

diff --git a/games-strategy/freeorion/freeorion-.ebuild 
b/games-strategy/freeorion/freeorion-.ebuild
index afe458a3f79..063ff13d1ae 100644
--- a/games-strategy/freeorion/freeorion-.ebuild
+++ b/games-strategy/freeorion/freeorion-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{3_7,3_8} )
+PYTHON_COMPAT=( python{3_7,3_8,3_9} )
 inherit cmake python-single-r1 xdg
 
 DESCRIPTION="A free turn-based space empire and galactic conquest game"



[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-session-manager/

2021-06-08 Thread Adam Feldman
commit: 39980236e18ef296c8dccc9335a2c1f941c6b676
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Jun  8 22:09:49 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Tue Jun  8 22:09:49 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=39980236

mate-base/mate-session-manager: Drop consolekit support and drop old

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

 .../mate-session-manager-1.24.0-r4.ebuild  |  9 +--
 .../mate-session-manager-1.24.0.ebuild | 89 --
 .../mate-session-manager-1.24.1.ebuild |  9 +--
 3 files changed, 6 insertions(+), 101 deletions(-)

diff --git 
a/mate-base/mate-session-manager/mate-session-manager-1.24.0-r4.ebuild 
b/mate-base/mate-session-manager/mate-session-manager-1.24.0-r4.ebuild
index aadf1b4..2491c14 100644
--- a/mate-base/mate-session-manager/mate-session-manager-1.24.0-r4.ebuild
+++ b/mate-base/mate-session-manager/mate-session-manager-1.24.0-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ LICENSE="GPL-2+ GPL-3+ HPND LGPL-2+ LGPL-2.1+"
 SLOT="0"
 IUSE="debug elogind gnome-keyring ipv6 systemd +xtrans"
 
-REQUIRED_USE="?? ( elogind systemd )"
+REQUIRED_USE="^^ ( elogind systemd )"
 
 # x11-misc/xdg-user-dirs{,-gtk} are needed to create the various XDG_*_DIRs, 
and
 # create .config/user-dirs.dirs which is read by glib to get G_USER_DIRECTORY_*
@@ -38,10 +38,7 @@ COMMON_DEPEND="
x11-libs/libXtst
x11-libs/pango
systemd? ( sys-apps/systemd )
-   !systemd? (
-   elogind? ( sys-auth/elogind )
-   !elogind? ( >=sys-auth/consolekit-0.9.2 )
-   )
+   elogind? ( sys-auth/elogind )
xtrans? ( x11-libs/xtrans )"
 
 RDEPEND="${COMMON_DEPEND}

diff --git a/mate-base/mate-session-manager/mate-session-manager-1.24.0.ebuild 
b/mate-base/mate-session-manager/mate-session-manager-1.24.0.ebuild
deleted file mode 100644
index f30b9cf..000
--- a/mate-base/mate-session-manager/mate-session-manager-1.24.0.ebuild
+++ /dev/null
@@ -1,89 +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="MATE session manager"
-HOMEPAGE="https://mate-desktop.org/";
-
-LICENSE="GPL-2+ GPL-3+ HPND LGPL-2+ LGPL-2.1+"
-SLOT="0"
-IUSE="debug elogind gnome-keyring ipv6 systemd +xtrans"
-
-REQUIRED_USE="?? ( elogind systemd )"
-
-# x11-misc/xdg-user-dirs{,-gtk} are needed to create the various XDG_*_DIRs, 
and
-# create .config/user-dirs.dirs which is read by glib to get G_USER_DIRECTORY_*
-# xdg-user-dirs-update is run during login (see 10-user-dirs-update-gnome 
below).
-
-COMMON_DEPEND="
-   >=dev-libs/dbus-glib-0.76
-   >=dev-libs/glib-2.50:2
-   dev-libs/libxslt
-   sys-apps/dbus
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libXext
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/pango
-   systemd? ( sys-apps/systemd )
-   !systemd? (
-   elogind? ( sys-auth/elogind )
-   !elogind? ( >=sys-auth/consolekit-0.9.2 )
-   )
-   xtrans? ( x11-libs/xtrans )"
-
-RDEPEND="${COMMON_DEPEND}
-   virtual/libintl
-   x11-apps/xdpyinfo
-   x11-misc/xdg-user-dirs
-   x11-misc/xdg-user-dirs-gtk
-   gnome-keyring? ( gnome-base/gnome-keyring )
-   !

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

2021-06-08 Thread Adam Feldman
commit: 881e2bfe024cf356d231f2c3ea00e3223b9a17b9
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Jun  8 21:54:36 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Tue Jun  8 21:54:36 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=881e2bfe

mate-extra/mate-screensaver: Drop consolekit support

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

 mate-extra/mate-screensaver/mate-screensaver-1.24.0.ebuild | 7 +++
 mate-extra/mate-screensaver/mate-screensaver-1.24.1.ebuild | 7 +++
 mate-extra/mate-screensaver/mate-screensaver-.ebuild   | 7 +++
 mate-extra/mate-screensaver/metadata.xml   | 4 
 4 files changed, 9 insertions(+), 16 deletions(-)

diff --git a/mate-extra/mate-screensaver/mate-screensaver-1.24.0.ebuild 
b/mate-extra/mate-screensaver/mate-screensaver-1.24.0.ebuild
index 91e4469..d4dc5a6 100644
--- a/mate-extra/mate-screensaver/mate-screensaver-1.24.0.ebuild
+++ b/mate-extra/mate-screensaver/mate-screensaver-1.24.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ DESCRIPTION="Replaces xscreensaver, integrating with the MATE 
desktop"
 
 LICENSE="GPL-2+ HPND LGPL-2+"
 SLOT="0"
-IUSE="X debug consolekit elogind kernel_linux libnotify opengl pam systemd"
+IUSE="X debug elogind kernel_linux libnotify opengl pam systemd"
 REQUIRED_USE="?? ( elogind systemd )"
 
 DOC_CONTENTS="
@@ -39,7 +39,6 @@ COMMON_DEPEND="
x11-libs/libXxf86vm
x11-libs/libxklavier
x11-libs/pango
-   consolekit? ( sys-auth/consolekit )
libnotify? ( >=x11-libs/libnotify-0.7:0 )
opengl? ( virtual/opengl )
pam? ( gnome-base/gnome-keyring sys-libs/pam )
@@ -68,8 +67,8 @@ src_configure() {
--with-xf86gamma-ext
--with-xscreensaverdir=/usr/share/xscreensaver/config
--with-xscreensaverhackdir=/usr/$(get_libdir)/misc/xscreensaver
+   --without-console-kit
$(use_with X x)
-   $(use_with consolekit console-kit)
$(use_with elogind)
$(use_with libnotify)
$(use_with opengl libgl)

diff --git a/mate-extra/mate-screensaver/mate-screensaver-1.24.1.ebuild 
b/mate-extra/mate-screensaver/mate-screensaver-1.24.1.ebuild
index 485f4ee..5ea1141 100644
--- a/mate-extra/mate-screensaver/mate-screensaver-1.24.1.ebuild
+++ b/mate-extra/mate-screensaver/mate-screensaver-1.24.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ DESCRIPTION="Replaces xscreensaver, integrating with the MATE 
desktop"
 
 LICENSE="GPL-2+ HPND LGPL-2+"
 SLOT="0"
-IUSE="X debug consolekit elogind kernel_linux libnotify opengl pam systemd"
+IUSE="X debug elogind kernel_linux libnotify opengl pam systemd"
 REQUIRED_USE="?? ( elogind systemd )"
 
 COMMON_DEPEND="
@@ -34,7 +34,6 @@ COMMON_DEPEND="
x11-libs/libXxf86vm
x11-libs/libxklavier
x11-libs/pango
-   consolekit? ( sys-auth/consolekit )
libnotify? ( >=x11-libs/libnotify-0.7:0 )
opengl? ( virtual/opengl )
pam? ( gnome-base/gnome-keyring sys-libs/pam )
@@ -68,8 +67,8 @@ src_configure() {
--with-xf86gamma-ext
--with-xscreensaverdir=/usr/share/xscreensaver/config
--with-xscreensaverhackdir=/usr/$(get_libdir)/misc/xscreensaver
+   --without-console-kit
$(use_with X x)
-   $(use_with consolekit console-kit)
$(use_with elogind)
$(use_with libnotify)
$(use_with opengl libgl)

diff --git a/mate-extra/mate-screensaver/mate-screensaver-.ebuild 
b/mate-extra/mate-screensaver/mate-screensaver-.ebuild
index 485f4ee..5ea1141 100644
--- a/mate-extra/mate-screensaver/mate-screensaver-.ebuild
+++ b/mate-extra/mate-screensaver/mate-screensaver-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ DESCRIPTION="Replaces xscreensaver, integrating with the MATE 
desktop"
 
 LICENSE="GPL-2+ HPND LGPL-2+"
 SLOT="0"
-IUSE="X debug consolekit elogind kernel_linux libnotify opengl pam systemd"
+IUSE="X debug elogind kernel_linux libnotify opengl pam systemd"
 REQUIRED_USE="?? ( elogind systemd )"
 
 COMMON_DEPEND="
@@ -34,7 +34,6 @@ COMMON_DEPEND="
x11-libs/libXxf86vm
x11-libs/libxklav

[gentoo-commits] proj/gentoo-mate:master commit in: sys-auth/consolekit/files/, sys-auth/consolekit/

2021-06-08 Thread Adam Feldman
commit: f1bac1e995a1b3b3cb9712b1647e1bc91c2f7e7a
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Jun  8 22:11:09 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Tue Jun  8 22:13:47 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=f1bac1e9

sys-auth/consolekit: drop package

Signed-off-by: Adam Feldman  gentoo.org>

 sys-auth/consolekit/Manifest   |   6 -
 sys-auth/consolekit/consolekit-0.4.6.ebuild| 125 ---
 sys-auth/consolekit/consolekit-1.1.0-r1.ebuild | 120 ---
 sys-auth/consolekit/consolekit-1.1.2.ebuild| 131 
 sys-auth/consolekit/consolekit-1.2.0.ebuild| 132 -
 sys-auth/consolekit/consolekit-1.2.1.ebuild| 132 -
 sys-auth/consolekit/consolekit-.ebuild | 128 
 sys-auth/consolekit/files/90-consolekit-3  |  32 -
 sys-auth/consolekit/files/consolekit-0.2.rc|  25 
 .../files/consolekit-0.4.5-polkit-automagic.patch  |  30 -
 sys-auth/consolekit/files/consolekit-1.0.0.initd   |  16 ---
 ...ove-the-root-restriction-for-runtime-dirs.patch |  57 -
 .../files/consolekit-cleanup_console_tags.patch|  67 ---
 ...nsolekit-shutdown-reboot-without-policies.patch |  26 
 .../files/consolekit-udev-acl-install_to_usr.patch |  28 -
 sys-auth/consolekit/files/pam-foreground-compat.ck |  17 ---
 sys-auth/consolekit/metadata.xml   |  22 
 17 files changed, 1094 deletions(-)

diff --git a/sys-auth/consolekit/Manifest b/sys-auth/consolekit/Manifest
deleted file mode 100644
index 06205e2..000
--- a/sys-auth/consolekit/Manifest
+++ /dev/null
@@ -1,6 +0,0 @@
-DIST ConsoleKit-0.4.6.tar.xz 366572 BLAKE2B 
ab4c277fd47b8f99ce8c5a67de86e89b1bdd8d6a5a8682dd436feefec76f7902e71c05d9d22d52c297d3294a945f057d53f18c9c9b7d29c84aa7c26665b05fee
 SHA512 
54955e3e83778a9216846104da8762fd50a37190e209127dd5d211e2227da617e14f6f5c1359905396d299656e526d14e1187b28eaff7d0ae1d7563dc8d9b46d
-DIST ConsoleKit2-1.1.0.tar.bz2 630178 BLAKE2B 
20d1994a19fbe03d411ac5437f77b75571fbdc19478100676e51e2a1232c643f4b0c86125b5bf1d42aeb5cfb7c8b34601221d674ac27d9bf3112fcd8a83afacb
 SHA512 
14ded07d4140e7a31132de21e84c2878475676b8c98f72b42340708972ed384abb9ba9380d74719718fc220c001387c788cf709cd15f8b19d598467dfe8a57df
-DIST ConsoleKit2-1.1.2.tar.bz2 1125567 BLAKE2B 
1b7c60d224ea4197687c566d324a302aa2f5ed92ed0cfc563ba4d42f78af2999d1693e4587208e5412d042fb0cff99919dfa02ca5b5a43bda3310c17b39ca5d6
 SHA512 
fadca85e05c176b06ead40fba5c068d497bf69bcc322287363d0c27cdd6627b758295db1ef534b908c0e6240486430d8cb36660b4d71216a60d19a52d6d0db39
-DIST ConsoleKit2-1.2.0.tar.bz2 1125402 BLAKE2B 
c2119287ff173783c377a1353f8ce59432f8aa3e64f654716c895fadb5d07462069e457aae7925a6c44bc48bfd4147fc10e9f488a39714386fb6c14bced09f36
 SHA512 
c0f6e629b7229c2ffaafe8da899970b48c8372402447af18560fffd8804d9ab91a4ad2eb82c8f648a14807f8ccc5fb1ab4366de14faa8a2d5fb3767a6a4253f7
-DIST ConsoleKit2-1.2.1.tar.bz2 1182946 BLAKE2B 
f76f99008c78bd3a318c918776129072944e4c3ac18348960e3a725179d3ce4dc2cfb4d04ec5c143bb998f23f63cf36c0f88d8296dc3d0a382a138f3a0a2fecc
 SHA512 
31befe89f7fa604138bfb0722fc6cf12f0934bac004f98fc331004eb5a7f466ed7bd0dc9adc9869da739974208f9a3bc125068ff8a60d4b2badb58ef70a3eb10
-DIST consolekit_0.4.6-4.debian.tar.gz 12192 BLAKE2B 
e88ed907ea3ceecb9ac399618614b1aa5d7eb2c46a706451d78e4ec1598dee5a02d6c5a1b0dd678f6bed4c25277884ec6969a23f8181ef3d8ede94452b6570db
 SHA512 
f7fc5965b1f495d16a8ca167940431bc2569e9bde9e4a356b9c9ed00c2825db61da7b6db3d434d977fff72b3aaef30c455a365b9eba282a887a523753613b58f

diff --git a/sys-auth/consolekit/consolekit-0.4.6.ebuild 
b/sys-auth/consolekit/consolekit-0.4.6.ebuild
deleted file mode 100644
index e190382..000
--- a/sys-auth/consolekit/consolekit-0.4.6.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils linux-info ltprune pam systemd
-
-MY_PN=ConsoleKit
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Framework for defining and tracking users, login sessions and 
seats"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/ConsoleKit";
-SRC_URI="https://www.freedesktop.org/software/${MY_PN}/dist/${MY_P}.tar.xz
-   
https://launchpad.net/debian/+archive/primary/+files/${PN}_${PV}-4.debian.tar.gz";
 # for logrotate file
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
-IUSE="acl debug doc kernel_linux pam policykit selinux systemd-units test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND=">=dev-libs/dbus-glib-0.100:=
-   >=dev-libs/glib-2.38.2-r1:2=
-   sys-libs/zlib:=
-   x11-libs/libX11:=
-   acl? (
-   sys-apps/acl:=
- 

[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-power-manager/

2021-06-08 Thread Adam Feldman
commit: c6eebd8540d477e494f28103a46521da715cfbdd
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Jun  8 22:05:09 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Tue Jun  8 22:05:17 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=c6eebd85

mate-extra/mate-power-manager: Drop consolekit and drop old

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

 .../mate-power-manager-1.24.1-r1.ebuild| 74 --
 .../mate-power-manager-1.24.1-r2.ebuild| 11 ++--
 .../mate-power-manager-1.24.2.ebuild   |  9 +--
 .../mate-power-manager-.ebuild |  9 +--
 4 files changed, 10 insertions(+), 93 deletions(-)

diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r1.ebuild 
b/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r1.ebuild
deleted file mode 100644
index db031cf..000
--- a/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r1.ebuild
+++ /dev/null
@@ -1,74 +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="A session daemon for MATE that makes it easy to manage your 
laptop or desktop"
-
-LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
-SLOT="0"
-IUSE="+applet elogind gnome-keyring policykit systemd test"
-
-REQUIRED_USE="?? ( elogind systemd )"
-
-# Interactive testsuite.
-RESTRICT="test"
-
-COMMON_DEPEND="
-   >=dev-libs/dbus-glib-0.70
-   >=dev-libs/glib-2.50:2
-   >=media-libs/libcanberra-0.10:0[gtk3]
-   >=sys-apps/dbus-1
-   >=x11-apps/xrandr-1.3
-   >=x11-libs/cairo-1
-   >=x11-libs/gdk-pixbuf-2.11:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXrandr
-   >=x11-libs/libnotify-0.7:0
-   x11-libs/pango
-   applet? ( >=mate-base/mate-panel-1.17.0 )
-   gnome-keyring? ( >=gnome-base/libgnome-keyring-3 )
-   >=sys-power/upower-0.99.8:="
-
-RDEPEND="${COMMON_DEPEND}
-   virtual/libintl
-   policykit? ( >=mate-extra/mate-polkit-1.6 )
-   systemd? ( sys-apps/systemd )
-   !systemd? (
-   elogind? ( sys-auth/elogind )
-   !elogind? ( >=sys-auth/consolekit-0.9.2 )
-   )
-"
-
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.3
-   app-text/rarian
-   >=app-text/scrollkeeper-dtd-1:1.0
-   app-text/yelp-tools
-   dev-libs/libxml2
-   dev-util/glib-utils
-   >=sys-devel/gettext-0.19.8:*
-   virtual/pkgconfig
-   x11-base/xorg-proto"
-
-src_configure() {
-   mate_src_configure \
-   --enable-compile-warnings=minimum \
-   $(use_with gnome-keyring keyring) \
-   $(use_enable applet applets) \
-   $(use_enable test tests)
-}
-
-src_test() {
-   unset DBUS_SESSION_BUS_ADDRESS
-
-   dbus-launch Xemake check || die "Test phase failed"
-}

diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild 
b/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild
index 343f1cf..3fdb6fc 100644
--- a/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild
+++ b/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit mate
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="A session daemon for MATE that makes it easy to manage your 
laptop or desktop"
@@ -15,7 +15,7 @@ LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
 SLOT="0"
 IUSE="+applet elogind libsecret policykit systemd test"
 
-REQUIRED_USE="?? ( elogind systemd )"
+REQUIRED_USE="^^ ( elogind systemd )"
 
 # Interactive testsuite.
 RESTRICT="test"
@@ -43,10 +43,7 @@ RDEPEND="${COMMON_DEPEND}
virtual/libintl
policykit? ( >=mate-extra/mate-polkit-1.6 )
systemd? ( sys-apps/systemd )
-   !systemd? (
-   elogind? ( sys-auth/elogind )
-   !elogind? ( >=sys-auth/consolekit-0.9.2 )
-   )
+   elogind? ( sys-auth/elogind )
 "
 
 DEPEND="${COMMON_DEPEND}

diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.24.2.ebuild 
b/mate-extra/mate-power-manager/mate-power-manager-1.24.2.ebuild
index baec1af..84d486d 100644
--- a/mate-extra/mate-power-manager/mate-power-manager-1.24.2.ebuild
+++ b/mate-extra/mate-power-manager/mate-powe

[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-session-manager/

2021-06-08 Thread Adam Feldman
commit: 4931dbcce67a98d31eed11bbcb27cd254190ed9d
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Jun  8 22:09:49 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Tue Jun  8 22:22:47 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=4931dbcc

mate-base/mate-session-manager: Drop consolekit support and drop old

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

 .../mate-session-manager-1.24.0-r4.ebuild  |  9 +--
 .../mate-session-manager-1.24.0.ebuild | 89 --
 .../mate-session-manager-1.24.1.ebuild |  9 +--
 .../mate-session-manager-.ebuild   |  9 +--
 4 files changed, 9 insertions(+), 107 deletions(-)

diff --git 
a/mate-base/mate-session-manager/mate-session-manager-1.24.0-r4.ebuild 
b/mate-base/mate-session-manager/mate-session-manager-1.24.0-r4.ebuild
index aadf1b4..2491c14 100644
--- a/mate-base/mate-session-manager/mate-session-manager-1.24.0-r4.ebuild
+++ b/mate-base/mate-session-manager/mate-session-manager-1.24.0-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ LICENSE="GPL-2+ GPL-3+ HPND LGPL-2+ LGPL-2.1+"
 SLOT="0"
 IUSE="debug elogind gnome-keyring ipv6 systemd +xtrans"
 
-REQUIRED_USE="?? ( elogind systemd )"
+REQUIRED_USE="^^ ( elogind systemd )"
 
 # x11-misc/xdg-user-dirs{,-gtk} are needed to create the various XDG_*_DIRs, 
and
 # create .config/user-dirs.dirs which is read by glib to get G_USER_DIRECTORY_*
@@ -38,10 +38,7 @@ COMMON_DEPEND="
x11-libs/libXtst
x11-libs/pango
systemd? ( sys-apps/systemd )
-   !systemd? (
-   elogind? ( sys-auth/elogind )
-   !elogind? ( >=sys-auth/consolekit-0.9.2 )
-   )
+   elogind? ( sys-auth/elogind )
xtrans? ( x11-libs/xtrans )"
 
 RDEPEND="${COMMON_DEPEND}

diff --git a/mate-base/mate-session-manager/mate-session-manager-1.24.0.ebuild 
b/mate-base/mate-session-manager/mate-session-manager-1.24.0.ebuild
deleted file mode 100644
index f30b9cf..000
--- a/mate-base/mate-session-manager/mate-session-manager-1.24.0.ebuild
+++ /dev/null
@@ -1,89 +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="MATE session manager"
-HOMEPAGE="https://mate-desktop.org/";
-
-LICENSE="GPL-2+ GPL-3+ HPND LGPL-2+ LGPL-2.1+"
-SLOT="0"
-IUSE="debug elogind gnome-keyring ipv6 systemd +xtrans"
-
-REQUIRED_USE="?? ( elogind systemd )"
-
-# x11-misc/xdg-user-dirs{,-gtk} are needed to create the various XDG_*_DIRs, 
and
-# create .config/user-dirs.dirs which is read by glib to get G_USER_DIRECTORY_*
-# xdg-user-dirs-update is run during login (see 10-user-dirs-update-gnome 
below).
-
-COMMON_DEPEND="
-   >=dev-libs/dbus-glib-0.76
-   >=dev-libs/glib-2.50:2
-   dev-libs/libxslt
-   sys-apps/dbus
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libXext
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/pango
-   systemd? ( sys-apps/systemd )
-   !systemd? (
-   elogind? ( sys-auth/elogind )
-   !elogind? ( >=sys-auth/consolekit-0.9.2 )
-   )
-   xtrans? ( x11-libs/xtrans )"
-
-RDEPEND="${COMMON_DEPEND}
-   virtual/libintl
-   x11-apps/xdpyinfo
-   x11-misc/xdg-user-dirs
-   x11-misc/xdg-user-dirs-gtk
-   gnome-keyring? ( gnome-base/gnome-keyring )
-   !

[gentoo-commits] proj/gentoo-mate:master commit in: sys-auth/consolekit/, sys-auth/consolekit/files/

2021-06-08 Thread Adam Feldman
commit: d2993c952ad9cdbf0e329d1ced62a9852d550017
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Jun  8 22:11:09 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Tue Jun  8 22:22:55 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=d2993c95

sys-auth/consolekit: drop package

Signed-off-by: Adam Feldman  gentoo.org>

 sys-auth/consolekit/Manifest   |   6 -
 sys-auth/consolekit/consolekit-0.4.6.ebuild| 125 ---
 sys-auth/consolekit/consolekit-1.1.0-r1.ebuild | 120 ---
 sys-auth/consolekit/consolekit-1.1.2.ebuild| 131 
 sys-auth/consolekit/consolekit-1.2.0.ebuild| 132 -
 sys-auth/consolekit/consolekit-1.2.1.ebuild| 132 -
 sys-auth/consolekit/consolekit-.ebuild | 128 
 sys-auth/consolekit/files/90-consolekit-3  |  32 -
 sys-auth/consolekit/files/consolekit-0.2.rc|  25 
 .../files/consolekit-0.4.5-polkit-automagic.patch  |  30 -
 sys-auth/consolekit/files/consolekit-1.0.0.initd   |  16 ---
 ...ove-the-root-restriction-for-runtime-dirs.patch |  57 -
 .../files/consolekit-cleanup_console_tags.patch|  67 ---
 ...nsolekit-shutdown-reboot-without-policies.patch |  26 
 .../files/consolekit-udev-acl-install_to_usr.patch |  28 -
 sys-auth/consolekit/files/pam-foreground-compat.ck |  17 ---
 sys-auth/consolekit/metadata.xml   |  22 
 17 files changed, 1094 deletions(-)

diff --git a/sys-auth/consolekit/Manifest b/sys-auth/consolekit/Manifest
deleted file mode 100644
index 06205e2..000
--- a/sys-auth/consolekit/Manifest
+++ /dev/null
@@ -1,6 +0,0 @@
-DIST ConsoleKit-0.4.6.tar.xz 366572 BLAKE2B 
ab4c277fd47b8f99ce8c5a67de86e89b1bdd8d6a5a8682dd436feefec76f7902e71c05d9d22d52c297d3294a945f057d53f18c9c9b7d29c84aa7c26665b05fee
 SHA512 
54955e3e83778a9216846104da8762fd50a37190e209127dd5d211e2227da617e14f6f5c1359905396d299656e526d14e1187b28eaff7d0ae1d7563dc8d9b46d
-DIST ConsoleKit2-1.1.0.tar.bz2 630178 BLAKE2B 
20d1994a19fbe03d411ac5437f77b75571fbdc19478100676e51e2a1232c643f4b0c86125b5bf1d42aeb5cfb7c8b34601221d674ac27d9bf3112fcd8a83afacb
 SHA512 
14ded07d4140e7a31132de21e84c2878475676b8c98f72b42340708972ed384abb9ba9380d74719718fc220c001387c788cf709cd15f8b19d598467dfe8a57df
-DIST ConsoleKit2-1.1.2.tar.bz2 1125567 BLAKE2B 
1b7c60d224ea4197687c566d324a302aa2f5ed92ed0cfc563ba4d42f78af2999d1693e4587208e5412d042fb0cff99919dfa02ca5b5a43bda3310c17b39ca5d6
 SHA512 
fadca85e05c176b06ead40fba5c068d497bf69bcc322287363d0c27cdd6627b758295db1ef534b908c0e6240486430d8cb36660b4d71216a60d19a52d6d0db39
-DIST ConsoleKit2-1.2.0.tar.bz2 1125402 BLAKE2B 
c2119287ff173783c377a1353f8ce59432f8aa3e64f654716c895fadb5d07462069e457aae7925a6c44bc48bfd4147fc10e9f488a39714386fb6c14bced09f36
 SHA512 
c0f6e629b7229c2ffaafe8da899970b48c8372402447af18560fffd8804d9ab91a4ad2eb82c8f648a14807f8ccc5fb1ab4366de14faa8a2d5fb3767a6a4253f7
-DIST ConsoleKit2-1.2.1.tar.bz2 1182946 BLAKE2B 
f76f99008c78bd3a318c918776129072944e4c3ac18348960e3a725179d3ce4dc2cfb4d04ec5c143bb998f23f63cf36c0f88d8296dc3d0a382a138f3a0a2fecc
 SHA512 
31befe89f7fa604138bfb0722fc6cf12f0934bac004f98fc331004eb5a7f466ed7bd0dc9adc9869da739974208f9a3bc125068ff8a60d4b2badb58ef70a3eb10
-DIST consolekit_0.4.6-4.debian.tar.gz 12192 BLAKE2B 
e88ed907ea3ceecb9ac399618614b1aa5d7eb2c46a706451d78e4ec1598dee5a02d6c5a1b0dd678f6bed4c25277884ec6969a23f8181ef3d8ede94452b6570db
 SHA512 
f7fc5965b1f495d16a8ca167940431bc2569e9bde9e4a356b9c9ed00c2825db61da7b6db3d434d977fff72b3aaef30c455a365b9eba282a887a523753613b58f

diff --git a/sys-auth/consolekit/consolekit-0.4.6.ebuild 
b/sys-auth/consolekit/consolekit-0.4.6.ebuild
deleted file mode 100644
index e190382..000
--- a/sys-auth/consolekit/consolekit-0.4.6.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils linux-info ltprune pam systemd
-
-MY_PN=ConsoleKit
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Framework for defining and tracking users, login sessions and 
seats"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/ConsoleKit";
-SRC_URI="https://www.freedesktop.org/software/${MY_PN}/dist/${MY_P}.tar.xz
-   
https://launchpad.net/debian/+archive/primary/+files/${PN}_${PV}-4.debian.tar.gz";
 # for logrotate file
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
-IUSE="acl debug doc kernel_linux pam policykit selinux systemd-units test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND=">=dev-libs/dbus-glib-0.100:=
-   >=dev-libs/glib-2.38.2-r1:2=
-   sys-libs/zlib:=
-   x11-libs/libX11:=
-   acl? (
-   sys-apps/acl:=
- 

[gentoo-commits] proj/gentoo-mate:master commit in: mate-base/mate-menus/files/

2021-06-08 Thread Adam Feldman
commit: 61063ab12c8afc83bb5dc2d4160db323bb68e0bb
Author: Adam Feldman  gentoo  org>
AuthorDate: Wed Jun  9 01:18:26 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=61063ab1

mate-base/mate-menus: Sync with ::gentoo

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

 mate-base/mate-menus/files/10-xdg-menu-mate | 6 --
 1 file changed, 6 deletions(-)

diff --git a/mate-base/mate-menus/files/10-xdg-menu-mate 
b/mate-base/mate-menus/files/10-xdg-menu-mate
deleted file mode 100644
index 06a6a91..000
--- a/mate-base/mate-menus/files/10-xdg-menu-mate
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-
-if [ -z "$XDG_MENU_PREFIX" ] && [ "$DESKTOP_SESSION" = "mate" ]
-then
-   export XDG_MENU_PREFIX=mate-
-fi



[gentoo-commits] proj/gentoo-mate:master commit in: app-text/atril/

2021-06-08 Thread Adam Feldman
commit: a0c070ea0e4b0b71da995ba14d5d2f59f29e3786
Author: Adam Feldman  gentoo  org>
AuthorDate: Wed Jun  9 01:41:34 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun  9 02:04:54 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=a0c070ea

app-text/atril: Sync with ::gentoo

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

 app-text/atril/atril-1.24.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/atril/atril-1.24.0-r2.ebuild 
b/app-text/atril/atril-1.24.0-r2.ebuild
index 6947e34..1cf25b1 100644
--- a/app-text/atril/atril-1.24.0-r2.ebuild
+++ b/app-text/atril/atril-1.24.0-r2.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 MATE_LA_PUNT="yes"
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 inherit mate python-any-r1 virtualx
 



[gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/caja-admin/

2021-06-08 Thread Adam Feldman
commit: 0f0e6d9aa69347c71c1501644fe2b777b31e3c29
Author: Adam Feldman  gentoo  org>
AuthorDate: Wed Jun  9 01:53:37 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun  9 02:04:54 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=0f0e6d9a

mate-extra/caja-admin: Sync with ::gentoo

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

 mate-extra/caja-admin/Manifest |  2 -
 mate-extra/caja-admin/caja-admin-0.0.1.ebuild  | 40 --
 mate-extra/caja-admin/caja-admin-0.0.2.ebuild  | 47 --
 .../caja-admin/caja-admin-0.0.2_p20200328.ebuild   |  8 ++--
 mate-extra/caja-admin/caja-admin-.ebuild   |  8 ++--
 5 files changed, 8 insertions(+), 97 deletions(-)

diff --git a/mate-extra/caja-admin/Manifest b/mate-extra/caja-admin/Manifest
index 58fdbbd..84613c3 100644
--- a/mate-extra/caja-admin/Manifest
+++ b/mate-extra/caja-admin/Manifest
@@ -1,3 +1 @@
-DIST 0.0.1.tar.gz 26920 BLAKE2B 
29aa35ef185cd588fd9242ea2b019cb64c4a4965b77523937b8b36c3a3437f7171dac3a000b85d9c4183a962a9dc6be787589408c7804f696aeac3576b7fee50
 SHA512 
12f54aad32ac11d34ee8344d564d31f29a53324308923e54426ac3837702e71701cf139b150ec3ff210fb0739eb9c46b05c6380d8596031f71b71899800b767d
-DIST 0.0.2.tar.gz 27564 BLAKE2B 
975bbba48508ed6a997190ea6d5432330710ee312fe6f1e130b47894331a35c32071a40691cf69f617d268ab85dca62bb8bb4577d49bdb3c75c65ce05b4b9220
 SHA512 
919a92e258585e4b6275d346c82a1f9fc90462aa0cdedafb78867b80496f44bbd3459ce5a67429c5dda499bff2928a014779e81c781278ac0603f6cbebd3ff9e
 DIST caja-admin-0.0.2_p20200328.tar.gz 27087 BLAKE2B 
1d8ce82026249cff4dc3360cedffb79079e6608414a7718f265a19fce1a579d7f1fc4dadf3b05dd5ef19dbd12a92a61f90c04736cc9196d2dd5d4230c8c31784
 SHA512 
6a134e1d53bbdbf1a617582de67f7ddba7c7e0193a714246993092dd1c96c2ccc05afdb2da5cd2dfd974f7ab95e0aeedab244f2fa1335fd157ce45b4404a1f90

diff --git a/mate-extra/caja-admin/caja-admin-0.0.1.ebuild 
b/mate-extra/caja-admin/caja-admin-0.0.1.ebuild
deleted file mode 100644
index 60be2b9..000
--- a/mate-extra/caja-admin/caja-admin-0.0.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == "" ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/infirit/caja-admin";
-elif [[ ${PV} =~ _p[0-9]{8,} ]]; then
-   SHA="0af109ac79df76fbcc406d577d79f1c64d1a1fca"
-   SRC_URI="https://github.com/infirit/${PN}/archive/${SHA}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-   S="${WORKDIR}/${PN}-${SHA}"
-else
-   SRC_URI="https://github.com/infirit/${PN}/archive/${PV}.tar.gz";
-   KEYWORDS="~amd64 ~x86"
-fi
-
-CMAKE_MIN_VERSION="2.6"
-PYTHON_COMPAT=( python{3_6,3_7} )
-
-inherit cmake-utils python-single-r1
-
-DESCRIPTION="Caja Admin Extension"
-HOMEPAGE="https://github.com/infirit/caja-admin";
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="${PYTHON_DEPS}"
-RDEPEND="${COMMON_DEPEND}
-   dev-python/python-caja[${PYTHON_SINGLE_USEDEP}]
-   sys-auth/polkit
-"
-DEPEND="${COMMON_DEPEND}
-   sys-devel/gettext
-"
-BDEPEND=""

diff --git a/mate-extra/caja-admin/caja-admin-0.0.2.ebuild 
b/mate-extra/caja-admin/caja-admin-0.0.2.ebuild
deleted file mode 100644
index 2e831ad..000
--- a/mate-extra/caja-admin/caja-admin-0.0.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == "" ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/infirit/caja-admin";
-elif [[ ${PV} =~ _p[0-9]{8,} ]]; then
-   SHA="0af109ac79df76fbcc406d577d79f1c64d1a1fca"
-   SRC_URI="https://github.com/infirit/${PN}/archive/${SHA}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-   S="${WORKDIR}/${PN}-${SHA}"
-else
-   SRC_URI="https://github.com/infirit/${PN}/archive/${PV}.tar.gz";
-   KEYWORDS="~amd64 ~x86"
-fi
-
-CMAKE_MIN_VERSION="2.6"
-PYTHON_COMPAT=( python{2_7,3_6,3_7,3_8} )
-
-inherit cmake-utils python-single-r1
-
-DESCRIPTION="Caja Admin Extension"
-HOMEPAGE="https://github.com/infirit/caja-admin";
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="${PYTHON_DEPS}"
-RDEPEND="${COMMON_DEPEND}
-   app-editors/pluma
-   dev-python/python-caja[${PYTHON_SINGLE_USEDEP}]
-   sys-auth/polkit
-   x11-terms/mate-terminal
-"
-DEPEND="${COMMON_DEPEND}
-   sy

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

2021-06-08 Thread Adam Feldman
commit: c7ed1f3ff67e08c2ccb3ff6c75ef5a4ccc2f8613
Author: Adam Feldman  gentoo  org>
AuthorDate: Tue Jun  8 23:43:45 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=c7ed1f3f

mate-extra/mate-polkit: Sync with ::gentoo

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

 mate-extra/mate-polkit/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/mate-extra/mate-polkit/metadata.xml 
b/mate-extra/mate-polkit/metadata.xml
index 29daec0..69a769b 100644
--- a/mate-extra/mate-polkit/metadata.xml
+++ b/mate-extra/mate-polkit/metadata.xml
@@ -10,6 +10,5 @@


Support extraction of data from 
AccountsService
-   Add support for AppIndicator

 



[gentoo-commits] proj/gentoo-mate:master commit in: x11-misc/mozo/

2021-06-08 Thread Adam Feldman
commit: df7fe5ce453dc919122f15ede4bc1741b1eec618
Author: Adam Feldman  gentoo  org>
AuthorDate: Wed Jun  9 01:46:54 2021 +
Commit:     Adam Feldman  gentoo  org>
CommitDate: Wed Jun  9 02:04:54 2021 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=df7fe5ce

x11-misc/mozo: Sync with ::gentoo

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

 x11-misc/mozo/mozo-1.24.0-r1.ebuild | 6 +++---
 x11-misc/mozo/mozo-1.24.0.ebuild| 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/x11-misc/mozo/mozo-1.24.0-r1.ebuild 
b/x11-misc/mozo/mozo-1.24.0-r1.ebuild
index 8977a14..7adc3a7 100644
--- a/x11-misc/mozo/mozo-1.24.0-r1.ebuild
+++ b/x11-misc/mozo/mozo-1.24.0-r1.ebuild
@@ -1,15 +1,15 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+PYTHON_COMPAT=( python{3_7,3_8} )
 PYTHON_REQ_USE="xml"
 
 inherit mate python-r1
 
 if [[ ${PV} !=  ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 x86"
 fi
 
 DESCRIPTION="Mozo menu editor for MATE"

diff --git a/x11-misc/mozo/mozo-1.24.0.ebuild b/x11-misc/mozo/mozo-1.24.0.ebuild
index cfcfb2e..a04c961 100644
--- a/x11-misc/mozo/mozo-1.24.0.ebuild
+++ b/x11-misc/mozo/mozo-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
 
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python3_7 )
 PYTHON_REQ_USE="xml"
 
 inherit python-r1 mate



  1   2   3   4   5   6   7   8   9   10   >