From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ECD86138330 for ; Sat, 10 Sep 2016 18:57:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5D2CE0BFE; Sat, 10 Sep 2016 18:56:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 89215E0BFE for ; Sat, 10 Sep 2016 18:56:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E3A3340A99 for ; Sat, 10 Sep 2016 18:56:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA0192492 for ; Sat, 10 Sep 2016 18:56:29 +0000 (UTC) From: "NP Hardass" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "NP Hardass" Message-ID: <1473101135.df338fc3f6788bdc87a048dc7e74ad56581e6093.np-hardass@gentoo> Subject: [gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-utils/ X-VCS-Repository: proj/gentoo-mate X-VCS-Files: mate-extra/mate-utils/mate-utils-1.10.4-r1.ebuild mate-extra/mate-utils/mate-utils-1.10.4.ebuild mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild mate-extra/mate-utils/mate-utils-1.14.1.ebuild mate-extra/mate-utils/mate-utils-9999.ebuild X-VCS-Directories: mate-extra/mate-utils/ X-VCS-Committer: np-hardass X-VCS-Committer-Name: NP Hardass X-VCS-Revision: df338fc3f6788bdc87a048dc7e74ad56581e6093 X-VCS-Branch: master Date: Sat, 10 Sep 2016 18:56:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 19fd3e96-6a23-4c81-80bb-dba26c02abe4 X-Archives-Hash: ae6c8735be359f3241b23d40aac5b919 commit: df338fc3f6788bdc87a048dc7e74ad56581e6093 Author: NP-Hardass gentoo org> AuthorDate: Mon Sep 5 18:44:25 2016 +0000 Commit: NP Hardass gentoo org> CommitDate: Mon Sep 5 18:45:35 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=df338fc3 mate-extra/mate-utils: Make utils available on all DEs, #585252 Package-Manager: portage-2.3.0 .../{mate-utils-1.10.4.ebuild => mate-utils-1.10.4-r1.ebuild} | 6 +++++- mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild | 8 ++++++++ mate-extra/mate-utils/mate-utils-1.14.1.ebuild | 8 ++++++++ mate-extra/mate-utils/mate-utils-9999.ebuild | 8 ++++++++ 4 files changed, 29 insertions(+), 1 deletion(-) diff --git a/mate-extra/mate-utils/mate-utils-1.10.4.ebuild b/mate-extra/mate-utils/mate-utils-1.10.4-r1.ebuild similarity index 92% rename from mate-extra/mate-utils/mate-utils-1.10.4.ebuild rename to mate-extra/mate-utils/mate-utils-1.10.4-r1.ebuild index 20f6771..8005839 100644 --- a/mate-extra/mate-utils/mate-utils-1.10.4.ebuild +++ b/mate-extra/mate-utils/mate-utils-1.10.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -66,6 +66,10 @@ src_prepare() { # Fix up desktop files. LC_ALL=C find . -iname '*.desktop.in*' -exec \ sed -e 's/Categories\(.*\)MATE/Categories\1X-MATE/' -i {} + || die + + # Make apps visible in all DEs. + LC_ALL=C find . -iname '*.desktop.in*' -exec \ + sed -e '/OnlyShowIn/d' -i {} + || die } src_configure() { diff --git a/mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild b/mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild index 1022226..5369732 100644 --- a/mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild +++ b/mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild @@ -52,6 +52,14 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${P}-dict-gtk3.patch" ) +src_prepare() { + # Make apps visible in all DEs. + LC_ALL=C find . -iname '*.desktop.in*' -exec \ + sed -e '/OnlyShowIn/d' -i {} + || die + + mate_src_prepare +} + src_configure() { mate_src_configure \ --disable-maintainer-flags \ diff --git a/mate-extra/mate-utils/mate-utils-1.14.1.ebuild b/mate-extra/mate-utils/mate-utils-1.14.1.ebuild index 9570167..a5f7e8d 100644 --- a/mate-extra/mate-utils/mate-utils-1.14.1.ebuild +++ b/mate-extra/mate-utils/mate-utils-1.14.1.ebuild @@ -53,6 +53,14 @@ DEPEND="${COMMON_DEPEND} sys-devel/gettext:* virtual/pkgconfig:*" +src_prepare() { + # Make apps visible in all DEs. + LC_ALL=C find . -iname '*.desktop.in*' -exec \ + sed -e '/OnlyShowIn/d' -i {} + || die + + mate_src_prepare +} + src_configure() { mate_src_configure \ --disable-maintainer-flags \ diff --git a/mate-extra/mate-utils/mate-utils-9999.ebuild b/mate-extra/mate-utils/mate-utils-9999.ebuild index 9570167..a5f7e8d 100644 --- a/mate-extra/mate-utils/mate-utils-9999.ebuild +++ b/mate-extra/mate-utils/mate-utils-9999.ebuild @@ -53,6 +53,14 @@ DEPEND="${COMMON_DEPEND} sys-devel/gettext:* virtual/pkgconfig:*" +src_prepare() { + # Make apps visible in all DEs. + LC_ALL=C find . -iname '*.desktop.in*' -exec \ + sed -e '/OnlyShowIn/d' -i {} + || die + + mate_src_prepare +} + src_configure() { mate_src_configure \ --disable-maintainer-flags \ From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E3EE7138330 for ; Mon, 5 Sep 2016 18:46:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E40921C054; Mon, 5 Sep 2016 18:46:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92DEA21C054 for ; Mon, 5 Sep 2016 18:46:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 67AD1340836 for ; Mon, 5 Sep 2016 18:46:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCB4A2478 for ; Mon, 5 Sep 2016 18:46:03 +0000 (UTC) From: "NP Hardass" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "NP Hardass" Message-ID: <1473101135.df338fc3f6788bdc87a048dc7e74ad56581e6093.np-hardass@gentoo> Subject: [gentoo-commits] proj/gentoo-mate:1.14-bump commit in: mate-extra/mate-utils/ X-VCS-Repository: proj/gentoo-mate X-VCS-Files: mate-extra/mate-utils/mate-utils-1.10.4-r1.ebuild mate-extra/mate-utils/mate-utils-1.10.4.ebuild mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild mate-extra/mate-utils/mate-utils-1.14.1.ebuild mate-extra/mate-utils/mate-utils-9999.ebuild X-VCS-Directories: mate-extra/mate-utils/ X-VCS-Committer: np-hardass X-VCS-Committer-Name: NP Hardass X-VCS-Revision: df338fc3f6788bdc87a048dc7e74ad56581e6093 X-VCS-Branch: 1.14-bump Date: Mon, 5 Sep 2016 18:46:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f32c0924-d16f-4a5c-a1c8-2579c2889dd5 X-Archives-Hash: dea37b4bd4475acca83cd69e8250ac5e Message-ID: <20160905184603.q_0FeH1FwTMvVLTeD_lYHKABrMzzqefBlfkk82DSN_w@z> commit: df338fc3f6788bdc87a048dc7e74ad56581e6093 Author: NP-Hardass gentoo org> AuthorDate: Mon Sep 5 18:44:25 2016 +0000 Commit: NP Hardass gentoo org> CommitDate: Mon Sep 5 18:45:35 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=df338fc3 mate-extra/mate-utils: Make utils available on all DEs, #585252 Package-Manager: portage-2.3.0 .../{mate-utils-1.10.4.ebuild => mate-utils-1.10.4-r1.ebuild} | 6 +++++- mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild | 8 ++++++++ mate-extra/mate-utils/mate-utils-1.14.1.ebuild | 8 ++++++++ mate-extra/mate-utils/mate-utils-9999.ebuild | 8 ++++++++ 4 files changed, 29 insertions(+), 1 deletion(-) diff --git a/mate-extra/mate-utils/mate-utils-1.10.4.ebuild b/mate-extra/mate-utils/mate-utils-1.10.4-r1.ebuild similarity index 92% rename from mate-extra/mate-utils/mate-utils-1.10.4.ebuild rename to mate-extra/mate-utils/mate-utils-1.10.4-r1.ebuild index 20f6771..8005839 100644 --- a/mate-extra/mate-utils/mate-utils-1.10.4.ebuild +++ b/mate-extra/mate-utils/mate-utils-1.10.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -66,6 +66,10 @@ src_prepare() { # Fix up desktop files. LC_ALL=C find . -iname '*.desktop.in*' -exec \ sed -e 's/Categories\(.*\)MATE/Categories\1X-MATE/' -i {} + || die + + # Make apps visible in all DEs. + LC_ALL=C find . -iname '*.desktop.in*' -exec \ + sed -e '/OnlyShowIn/d' -i {} + || die } src_configure() { diff --git a/mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild b/mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild index 1022226..5369732 100644 --- a/mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild +++ b/mate-extra/mate-utils/mate-utils-1.12.0-r2.ebuild @@ -52,6 +52,14 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${P}-dict-gtk3.patch" ) +src_prepare() { + # Make apps visible in all DEs. + LC_ALL=C find . -iname '*.desktop.in*' -exec \ + sed -e '/OnlyShowIn/d' -i {} + || die + + mate_src_prepare +} + src_configure() { mate_src_configure \ --disable-maintainer-flags \ diff --git a/mate-extra/mate-utils/mate-utils-1.14.1.ebuild b/mate-extra/mate-utils/mate-utils-1.14.1.ebuild index 9570167..a5f7e8d 100644 --- a/mate-extra/mate-utils/mate-utils-1.14.1.ebuild +++ b/mate-extra/mate-utils/mate-utils-1.14.1.ebuild @@ -53,6 +53,14 @@ DEPEND="${COMMON_DEPEND} sys-devel/gettext:* virtual/pkgconfig:*" +src_prepare() { + # Make apps visible in all DEs. + LC_ALL=C find . -iname '*.desktop.in*' -exec \ + sed -e '/OnlyShowIn/d' -i {} + || die + + mate_src_prepare +} + src_configure() { mate_src_configure \ --disable-maintainer-flags \ diff --git a/mate-extra/mate-utils/mate-utils-9999.ebuild b/mate-extra/mate-utils/mate-utils-9999.ebuild index 9570167..a5f7e8d 100644 --- a/mate-extra/mate-utils/mate-utils-9999.ebuild +++ b/mate-extra/mate-utils/mate-utils-9999.ebuild @@ -53,6 +53,14 @@ DEPEND="${COMMON_DEPEND} sys-devel/gettext:* virtual/pkgconfig:*" +src_prepare() { + # Make apps visible in all DEs. + LC_ALL=C find . -iname '*.desktop.in*' -exec \ + sed -e '/OnlyShowIn/d' -i {} + || die + + mate_src_prepare +} + src_configure() { mate_src_configure \ --disable-maintainer-flags \