From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-854961-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4BA9E1384B4 for <garchives@archives.gentoo.org>; Sun, 3 Jan 2016 11:42:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D61B9E0899; Sun, 3 Jan 2016 11:42:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68908E0899 for <gentoo-commits@lists.gentoo.org>; Sun, 3 Jan 2016 11:42:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B0D73405BB for <gentoo-commits@lists.gentoo.org>; Sun, 3 Jan 2016 11:42:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2C97CF1 for <gentoo-commits@lists.gentoo.org>; Sun, 3 Jan 2016 11:42:10 +0000 (UTC) From: "Ian Delaney" <idella4@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" <idella4@gentoo.org> Message-ID: <1451821205.9540e77a97772ab95b3bca7d538980b5a65d2180.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/dispcalgui/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/dispcalgui/dispcalgui-3.0.6.0.ebuild media-gfx/dispcalgui/metadata.xml X-VCS-Directories: media-gfx/dispcalgui/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 9540e77a97772ab95b3bca7d538980b5a65d2180 X-VCS-Branch: master Date: Sun, 3 Jan 2016 11:42:10 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: dff8eb04-7bf5-46f9-857a-e21dad7bc1fa X-Archives-Hash: a1b82d178cf49743656eb0da6ad93afa commit: 9540e77a97772ab95b3bca7d538980b5a65d2180 Author: Ian Delaney <idella4 <AT> gentoo <DOT> org> AuthorDate: Sun Jan 3 11:08:33 2016 +0000 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org> CommitDate: Sun Jan 3 11:40:05 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9540e77a media-gfx/dispcalgui: corrections to white soace issues in vn. 3.0.6.0 Also set to new proxy maintainer 'xayto' in metadata Closes the gentoo bug Gentoo bug: #559512 Package-Manager: portage-2.2.26 media-gfx/dispcalgui/dispcalgui-3.0.6.0.ebuild | 21 ++++++++++++--------- media-gfx/dispcalgui/metadata.xml | 11 +++-------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/media-gfx/dispcalgui/dispcalgui-3.0.6.0.ebuild b/media-gfx/dispcalgui/dispcalgui-3.0.6.0.ebuild index 946362d..854a19b 100644 --- a/media-gfx/dispcalgui/dispcalgui-3.0.6.0.ebuild +++ b/media-gfx/dispcalgui/dispcalgui-3.0.6.0.ebuild @@ -37,22 +37,23 @@ DOCS=( ) src_prepare() { -# Prohibit setup from running xdg-* programs, resulting to sandbox violation + # Prohibit setup from running xdg-* programs, resulting to sandbox violation cd "${S}/dispcalGUI" || die "Cannot cd to source directory." sed -e 's/if which(\"xdg-icon-resource\"):/if which(\"xdg-icon-resource-non-existant\"):/' \ - -e 's/if which(\"xdg-desktop-menu\"):/if which(\"xdg-desktop-menu-non-existant\"):/' \ - -i postinstall.py || die "sed'ing out the xdg-* setup functions failed" + -e 's/if which(\"xdg-desktop-menu\"):/if which(\"xdg-desktop-menu-non-existant\"):/' \ + -i postinstall.py || die "sed'ing out the xdg-* setup functions failed" -# Remove deprecated Encoding key from .desktop file + # Remove deprecated Encoding key from .desktop file cd "${S}" || die "Cannot cd to work directory." for offendingFile in $(grep -r -l "Encoding=UTF-8" .); do sed -e '/Encoding=UTF-8/d' -i "${offendingFile}" || \ die "removing deprecated Encoding key from .desktop files failed" done -# Remove x-world Media Type - cd "${S}/misc" || die "Cannot cd to misc directory." - sed -e 's/x\-world\/x\-vrml\;//g' -i "dispcalGUI-VRML-to-X3D-converter.desktop" || die "removing x-world media type failed" + # Remove x-world Media Type + cd "${S}/misc" || die "Cannot cd to misc directory." + sed -e 's/x\-world\/x\-vrml\;//g' -i "dispcalGUI-VRML-to-X3D-converter.desktop" \ + || die "removing x-world media type failed" distutils-r1_src_prepare } @@ -64,13 +65,15 @@ src_install() { } pkg_postinst() { -# Run xdg-* programs the Gentoo way since we removed this functionality from the original package + # Run xdg-* programs the Gentoo way since we removed this + # functionality from the original package fdo-mime_mime_database_update fdo-mime_desktop_database_update } pkg_postrm() { -# Run xdg-* programs the Gentoo way since we removed this functionality from the original package + # Run xdg-* programs the Gentoo way since we removed this + # functionality from the original package fdo-mime_mime_database_update fdo-mime_desktop_database_update } diff --git a/media-gfx/dispcalgui/metadata.xml b/media-gfx/dispcalgui/metadata.xml index 3a8ed72..8d4a696 100644 --- a/media-gfx/dispcalgui/metadata.xml +++ b/media-gfx/dispcalgui/metadata.xml @@ -3,14 +3,9 @@ <pkgmetadata> <herd>proxy-maintainers</herd> <maintainer> - <email>opensource@andmarios.com</email> - <name>Marios Andreopoulos</name> - <description>Maintainer.</description> - </maintainer> - <maintainer> - <email>hwoarang@gentoo.org</email> - <name>Markos Chandras</name> - <description>Proxy maintainer.</description> + <email>gentoo@xayto.net</email> + <name>Craig Inches</name> + <description>Proxied maintainer; set to assignee in all bugs</description> </maintainer> <longdescription lang="en"> </longdescription>