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

2024-08-01 Thread Andreas Sturmlechner
commit: e8260c1fb7c55cf1b19aab0a9e84a63e8f23e4a9
Author: Filip Kobierski  pm  me>
AuthorDate: Thu Aug  1 11:03:40 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Aug  1 15:47:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8260c1f

media-gfx/displaycal-py3: drop 3.9.10-r0

Signed-off-by: Filip Kobierski  pm.me>
Closes: https://github.com/gentoo/gentoo/pull/37911
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../displaycal-py3/displaycal-py3-3.9.10.ebuild| 66 --
 1 file changed, 66 deletions(-)

diff --git a/media-gfx/displaycal-py3/displaycal-py3-3.9.10.ebuild 
b/media-gfx/displaycal-py3/displaycal-py3-3.9.10.ebuild
deleted file mode 100644
index 0aef7b5146ef..
--- a/media-gfx/displaycal-py3/displaycal-py3-3.9.10.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{9..10} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1 xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-SRC_URI="https://github.com/eoyilmaz/displaycal-py3/releases/download/${PV}/${MY_P}.tar.gz;
-KEYWORDS="~amd64"
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="Modernize the DisplayCAL code including Python 3 support"
-HOMEPAGE="https://github.com/eoyilmaz/displaycal-py3;
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE=""
-
-RESTRICT="test"
-
-DEPEND="
-   dev-python/build[${PYTHON_USEDEP}]
-   dev-python/certifi:0[${PYTHON_USEDEP}]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   dev-python/distro[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pychromecast[${PYTHON_USEDEP}]
-   dev-python/send2trash[${PYTHON_USEDEP}]
-   dev-python/zeroconf[${PYTHON_USEDEP}]
-   >=dev-python/wxpython-4.2.0[${PYTHON_USEDEP}]
-   media-gfx/argyllcms
-   x11-libs/libXxf86vm"
-
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   # Fix QA warning
-   sed -e 's/license_file/license_files/g' -i setup.cfg || die
-
-   # Remove x-world MIME
-   sed -i 's|x-world/x-vrml;||g' \
-   misc/displaycal-vrml-to-x3d-converter.desktop || die
-
-   distutils-r1_src_prepare
-}
-
-src_install() {
-   distutils-r1_src_install
-
-   # Use Gentoo package name for doc folder
-   mv "${ED}/usr/share/doc/${MY_P}" "${ED}/usr/share/doc/${P}" || die
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-}



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

2023-12-04 Thread Michał Górny
commit: e94bf085fb28b26a70973bd72e1d66cdbda67062
Author: Eli Schwartz  gmail  com>
AuthorDate: Mon Nov 13 21:52:47 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec  5 04:20:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e94bf085

media-gfx/displaycal-py3: remove incorrect upstream certifi dependency

Upstream's setup.cfg has several oddities to it, including claiming an
RDEPEND on dev-python/build from when they copied their requirements.txt
verbatim into setup.cfg.

As for certifi specifically, it is handled in a fiddly try/except that
falls back to using a bundled copy that is copied over from certifi into
displaycal iff building a py2app/py2exe edition, and if that still
doesn't work, silently does nothing.

The object of all this is that if a custom cacert.pem is found
somewhere, it goes and sets os.environ['SSL_CERT_FILE'] to affect later
uses of urllib.request.

Reasonably enough, none of this is needed except on Windows and macOS,
so displaycal does precisely that: runs this entire thing only on
Windows and macOS. On Linux, it never even attempts to import certifi,
nor set an environment variable. So we shouldn't depend on it either.

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Michał Górny  gentoo.org>

 ...isplaycal-py3-3.9.10-r2.ebuild => displaycal-py3-3.9.10-r3.ebuild} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r2.ebuild 
b/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r3.ebuild
similarity index 92%
rename from media-gfx/displaycal-py3/displaycal-py3-3.9.10-r2.ebuild
rename to media-gfx/displaycal-py3/displaycal-py3-3.9.10-r3.ebuild
index d6ac7689141f..6cf08031c321 100644
--- a/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r2.ebuild
+++ b/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r3.ebuild
@@ -28,7 +28,6 @@ PATCHES="${FILESDIR}/${P}-python-3.11.patch"
 
 DEPEND="
dev-python/build[${PYTHON_USEDEP}]
-   dev-python/certifi:0[${PYTHON_USEDEP}]
dev-python/dbus-python[${PYTHON_USEDEP}]
dev-python/distro[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
@@ -46,6 +45,9 @@ src_prepare() {
# Fix QA warning
sed -e 's/license_file/license_files/g' -i setup.cfg || die
 
+   # remove dependency only imported if `sys.platform in ("darwin", 
"win32")`
+   sed -e '/certifi/d' -i setup.cfg || die
+
# Remove x-world MIME
sed -i 's|x-world/x-vrml;||g' \
misc/displaycal-vrml-to-x3d-converter.desktop || die



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

2023-05-02 Thread Nick Sarnie
commit: b4c2d187b7808a86768364a9f396845f869ee495
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue May  2 22:25:28 2023 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue May  2 22:26:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4c2d187

media-gfx/displaycal-py3: Fix doc install dir

Closes: https://bugs.gentoo.org/905450

Signed-off-by: Nick Sarnie  gentoo.org>

 ...{displaycal-py3-3.9.10-r1.ebuild => displaycal-py3-3.9.10-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r1.ebuild 
b/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r2.ebuild
similarity index 95%
rename from media-gfx/displaycal-py3/displaycal-py3-3.9.10-r1.ebuild
rename to media-gfx/displaycal-py3/displaycal-py3-3.9.10-r2.ebuild
index 570bbc0db81d..d6ac7689141f 100644
--- a/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r1.ebuild
+++ b/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r2.ebuild
@@ -57,7 +57,7 @@ src_install() {
distutils-r1_src_install
 
# Use Gentoo package name for doc folder
-   mv "${ED}/usr/share/doc/${MY_P}" "${ED}/usr/share/doc/${P}" || die
+   mv "${ED}/usr/share/doc/${MY_P}" "${ED}/usr/share/doc/${PF}" || die
 }
 
 pkg_postinst() {



[gentoo-commits] repo/gentoo:master commit in: media-gfx/displaycal-py3/, media-gfx/displaycal-py3/files/

2023-05-01 Thread Nick Sarnie
commit: 993d5771169f5fcfbf0b82ae58db1f28bca1918a
Author: Nick Sarnie  gentoo  org>
AuthorDate: Tue May  2 01:06:49 2023 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Tue May  2 01:10:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=993d5771

media-gfx/displaycal-py3: Enable python 3.11

Closes: https://bugs.gentoo.org/896984

Signed-off-by: Nick Sarnie  gentoo.org>

 .../displaycal-py3/displaycal-py3-3.9.10-r1.ebuild | 69 ++
 .../files/displaycal-py3-3.9.10-python-3.11.patch  | 83 ++
 2 files changed, 152 insertions(+)

diff --git a/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r1.ebuild 
b/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r1.ebuild
new file mode 100644
index ..570bbc0db81d
--- /dev/null
+++ b/media-gfx/displaycal-py3/displaycal-py3-3.9.10-r1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+SRC_URI="https://github.com/eoyilmaz/displaycal-py3/releases/download/${PV}/${MY_P}.tar.gz;
+KEYWORDS="~amd64"
+S="${WORKDIR}/${MY_P}"
+
+DESCRIPTION="Modernize the DisplayCAL code including Python 3 support"
+HOMEPAGE="https://github.com/eoyilmaz/displaycal-py3;
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE=""
+
+RESTRICT="test"
+
+PATCHES="${FILESDIR}/${P}-python-3.11.patch"
+
+DEPEND="
+   dev-python/build[${PYTHON_USEDEP}]
+   dev-python/certifi:0[${PYTHON_USEDEP}]
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pychromecast[${PYTHON_USEDEP}]
+   dev-python/send2trash[${PYTHON_USEDEP}]
+   dev-python/zeroconf[${PYTHON_USEDEP}]
+   >=dev-python/wxpython-4.2.0[${PYTHON_USEDEP}]
+   media-gfx/argyllcms
+   x11-libs/libXxf86vm"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   # Fix QA warning
+   sed -e 's/license_file/license_files/g' -i setup.cfg || die
+
+   # Remove x-world MIME
+   sed -i 's|x-world/x-vrml;||g' \
+   misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+src_install() {
+   distutils-r1_src_install
+
+   # Use Gentoo package name for doc folder
+   mv "${ED}/usr/share/doc/${MY_P}" "${ED}/usr/share/doc/${P}" || die
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+}

diff --git 
a/media-gfx/displaycal-py3/files/displaycal-py3-3.9.10-python-3.11.patch 
b/media-gfx/displaycal-py3/files/displaycal-py3-3.9.10-python-3.11.patch
new file mode 100644
index ..d8e7d05abfb4
--- /dev/null
+++ b/media-gfx/displaycal-py3/files/displaycal-py3-3.9.10-python-3.11.patch
@@ -0,0 +1,83 @@
+Based on
+https://github.com/eoyilmaz/displaycal-py3/commit/3762e7be0368484d68c4a90923672fdb0f51a5fc
+and
+https://github.com/eoyilmaz/displaycal-py3/commit/97f0c91f5855e4d21f47181ef596251eb03cb835
+
+diff --git a/DisplayCAL/RealDisplaySizeMM.py b/DisplayCAL/RealDisplaySizeMM.py
+index 00957692c..25b730d05 100644
+--- a/DisplayCAL/RealDisplaySizeMM.py
 b/DisplayCAL/RealDisplaySizeMM.py
+@@ -25,6 +25,8 @@
+ from DisplayCAL.lib64.python39.RealDisplaySizeMM import *
+ elif sys.version_info[:2] == (3, 10):
+ from DisplayCAL.lib64.python310.RealDisplaySizeMM import *
++elif sys.version_info[:2] == (3, 11):
++from DisplayCAL.lib64.python311.RealDisplaySizeMM import *
+ # else:
+ # pass
+ 
+diff --git a/DisplayCAL/defaultpaths.py b/DisplayCAL/defaultpaths.py
+index cd11d6d75..59258e79d 100644
+--- a/DisplayCAL/defaultpaths.py
 b/DisplayCAL/defaultpaths.py
+@@ -235,9 +235,14 @@ def set_translation(obj):
+ obj.GETTEXT_PACKAGE, locale_dir, codeset="UTF-8"
+ )
+ except TypeError:
+-obj.translation = gettext.translation(
+-obj.GETTEXT_PACKAGE, locale_dir
+-)
++try:
++obj.translation = gettext.translation(
++obj.GETTEXT_PACKAGE, locale_dir
++)
++except FileNotFoundError as exc:
++print("XDG:", exc)
++obj.translation = gettext.NullTranslations()
++return False
+ except IOError as exception:
+ print("XDG:", exception)
+ obj.translation = gettext.NullTranslations()
+@@ -261,11 +266,7 @@ def get_config_files(filename):
+ 
+ @staticmethod
+ def shell_unescape(s):
+-a = []
+-for i, c in enumerate(s):
+-if c == "\\" and len(s) > i + 1:
+-continue
+-a.append(c)
++

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

2023-02-20 Thread Nick Sarnie
commit: 014b42a59e00c0710b479014670565799404e179
Author: Nick Sarnie  gentoo  org>
AuthorDate: Mon Feb 20 18:37:27 2023 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Mon Feb 20 18:42:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=014b42a5

media-gfx/displaycal-py3: new package, add 3.9.10

Closes: https://bugs.gentoo.org/724540

Signed-off-by: Nick Sarnie  gentoo.org>

 media-gfx/displaycal-py3/Manifest  |  1 +
 .../displaycal-py3/displaycal-py3-3.9.10.ebuild| 66 ++
 media-gfx/displaycal-py3/metadata.xml  | 17 ++
 3 files changed, 84 insertions(+)

diff --git a/media-gfx/displaycal-py3/Manifest 
b/media-gfx/displaycal-py3/Manifest
new file mode 100644
index ..9eff15b5ee37
--- /dev/null
+++ b/media-gfx/displaycal-py3/Manifest
@@ -0,0 +1 @@
+DIST DisplayCAL-3.9.10.tar.gz 10676033 BLAKE2B 
94bfa3ac95bfc16788421fa5b9a31920c40da66d2875e4037b3b20b6792a1005ee9fea11b5325a94ffae845f56583647e42de9d4d7d96d149264a86e6d1158a6
 SHA512 
fc1b981925c6f4660557d8f0935a62d0112b39664b0c74cdb1a907e0e7b7e3f61ec76986fa2072f8ada1d105ebfa61bb116df75dc10f902ff545db3368634fc5

diff --git a/media-gfx/displaycal-py3/displaycal-py3-3.9.10.ebuild 
b/media-gfx/displaycal-py3/displaycal-py3-3.9.10.ebuild
new file mode 100644
index ..0aef7b5146ef
--- /dev/null
+++ b/media-gfx/displaycal-py3/displaycal-py3-3.9.10.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{9..10} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+SRC_URI="https://github.com/eoyilmaz/displaycal-py3/releases/download/${PV}/${MY_P}.tar.gz;
+KEYWORDS="~amd64"
+S="${WORKDIR}/${MY_P}"
+
+DESCRIPTION="Modernize the DisplayCAL code including Python 3 support"
+HOMEPAGE="https://github.com/eoyilmaz/displaycal-py3;
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE=""
+
+RESTRICT="test"
+
+DEPEND="
+   dev-python/build[${PYTHON_USEDEP}]
+   dev-python/certifi:0[${PYTHON_USEDEP}]
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pychromecast[${PYTHON_USEDEP}]
+   dev-python/send2trash[${PYTHON_USEDEP}]
+   dev-python/zeroconf[${PYTHON_USEDEP}]
+   >=dev-python/wxpython-4.2.0[${PYTHON_USEDEP}]
+   media-gfx/argyllcms
+   x11-libs/libXxf86vm"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   # Fix QA warning
+   sed -e 's/license_file/license_files/g' -i setup.cfg || die
+
+   # Remove x-world MIME
+   sed -i 's|x-world/x-vrml;||g' \
+   misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+src_install() {
+   distutils-r1_src_install
+
+   # Use Gentoo package name for doc folder
+   mv "${ED}/usr/share/doc/${MY_P}" "${ED}/usr/share/doc/${P}" || die
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+}

diff --git a/media-gfx/displaycal-py3/metadata.xml 
b/media-gfx/displaycal-py3/metadata.xml
new file mode 100644
index ..6ee5175df506
--- /dev/null
+++ b/media-gfx/displaycal-py3/metadata.xml
@@ -0,0 +1,17 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+sar...@gentoo.org
+Nick Sarnie
+  
+  
+eoyilmaz/displaycal-py3
+  
+  
+This project intended to modernize the DisplayCAL code including Python 3 
support.
+Florian Höch, the original developer, did an incredible job of creating 
and maintaining DisplayCAL for all these years.
+But, it seems that, during the pandemic, very understandably, he lost his 
passion to the project.
+Now, it is time for us, the DisplayCAL community, to contribute back to 
this great tool.
+  
+



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

2020-04-10 Thread Bernard Cafarelli
commit: dc9be892be616a24a751f7731d0155d8b730ab53
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Apr 10 08:31:13 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Apr 10 08:31:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc9be892

media-gfx/displaycal: add missing dbus rdep

Thanks Maciej S. Szmigiero for report and testing

Closes: https://bugs.gentoo.org/716394
Package-Manager: Portage-2.3.98, Repoman-2.3.22
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../{displaycal-3.8.9.3.ebuild => displaycal-3.8.9.3-r1.ebuild}   | 4 
 1 file changed, 4 insertions(+)

diff --git a/media-gfx/displaycal/displaycal-3.8.9.3.ebuild 
b/media-gfx/displaycal/displaycal-3.8.9.3-r1.ebuild
similarity index 94%
rename from media-gfx/displaycal/displaycal-3.8.9.3.ebuild
rename to media-gfx/displaycal/displaycal-3.8.9.3-r1.ebuild
index 09d6133dd94..002517155d4 100644
--- a/media-gfx/displaycal/displaycal-3.8.9.3.ebuild
+++ b/media-gfx/displaycal/displaycal-3.8.9.3-r1.ebuild
@@ -32,6 +32,10 @@ RDEPEND="${DEPEND}
dev-python/numpy-python2[${PYTHON_USEDEP}]
>=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
)
+   || (
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   )
 "
 
 # Just in case someone renames the ebuild



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

2020-03-02 Thread Bernard Cafarelli
commit: 3f4b652e1f9f4598fdada2956e1572bc50e189ea
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Mar  2 09:01:22 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Mar  2 09:01:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f4b652e

media-gfx/displaycal: 3.8.9.3 bump

Not run-tested as it is still python2-only sadly

Package-Manager: Portage-2.3.91, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.8.9.3.ebuild | 67 ++
 2 files changed, 68 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 0a6d3db0067..109e794f17a 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1 +1,2 @@
 DIST DisplayCAL-3.8.8.1.tar.gz 10625317 BLAKE2B 
3e988221ee7d75d5a34b1cd69ab80737017c7e7a0fa16c3bc1587210b6b1108e623a3ccada3be8b99fae4c0a70f2cf4529332f87f0ac13fedf2a1f22fcbd
 SHA512 
e16cdc4590274f10fc122e18a5d94a1d326c43bc132e7af97c6f28c5a656f02203cfb7c73b92fa98d3ee2a8bbf560514615bc9b34c881d2758a5a6f2867092b3
+DIST DisplayCAL-3.8.9.3.tar.gz 10639277 BLAKE2B 
b99d2a39eb707654799b089a8f14891b257a27cb209511ed04ea6e2de7ec4bc3e68db884ebc460e25325495645d1a851b936f91632c571a385e009ea6b9cd6d2
 SHA512 
cece09605c12be6a154d8d8b088005e527a9e6674a89ec2787b0687a92b7f424749681f149a07bb798df6729c9f4c37e8760abeec115a014c06f94f25fc2f904

diff --git a/media-gfx/displaycal/displaycal-3.8.9.3.ebuild 
b/media-gfx/displaycal/displaycal-3.8.9.3.ebuild
new file mode 100644
index 000..09d6133dd94
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.8.9.3.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   dev-python/faulthandler[${PYTHON_USEDEP}]
+   || (
+   dev-python/numpy-python2[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
+   )
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2020-01-22 Thread Michał Górny
commit: f0bccada95ada5626b9a08ffd898df5a4830593f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 22 21:46:07 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 22 21:50:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0bccada

media-gfx/displaycal: Revbump post dep change

Signed-off-by: Michał Górny  gentoo.org>

 .../{displaycal-3.8.8.1.ebuild => displaycal-3.8.8.1-r1.ebuild}   | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/media-gfx/displaycal/displaycal-3.8.8.1.ebuild 
b/media-gfx/displaycal/displaycal-3.8.8.1-r1.ebuild
similarity index 100%
rename from media-gfx/displaycal/displaycal-3.8.8.1.ebuild
rename to media-gfx/displaycal/displaycal-3.8.8.1-r1.ebuild



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

2020-01-15 Thread Michał Górny
commit: 44c4d6e0444aadee62eb633f7727f75bb60f4686
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 16 05:51:03 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 16 06:05:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44c4d6e0

media-gfx/displaycal: Permit numpy-python2

Signed-off-by: Michał Górny  gentoo.org>

 media-gfx/displaycal/displaycal-3.8.8.1.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/media-gfx/displaycal/displaycal-3.8.8.1.ebuild 
b/media-gfx/displaycal/displaycal-3.8.8.1.ebuild
index 6d9baac97b2..09d6133dd94 100644
--- a/media-gfx/displaycal/displaycal-3.8.8.1.ebuild
+++ b/media-gfx/displaycal/displaycal-3.8.8.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -28,7 +28,10 @@ DEPEND="
 "
 RDEPEND="${DEPEND}
dev-python/faulthandler[${PYTHON_USEDEP}]
-   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
+   || (
+   dev-python/numpy-python2[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
+   )
 "
 
 # Just in case someone renames the ebuild



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

2019-12-05 Thread Bernard Cafarelli
commit: eab04d1e37046000777941150760a0955b94dbdf
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Dec  5 12:20:14 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Dec  5 18:36:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eab04d1e

media-gfx/displaycal: drop old

Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  2 -
 media-gfx/displaycal/displaycal-3.8.7.0.ebuild | 64 --
 media-gfx/displaycal/displaycal-3.8.7.1.ebuild | 64 --
 3 files changed, 130 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 178f7b9d3e0..0a6d3db0067 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1 @@
-DIST DisplayCAL-3.8.7.0.tar.gz 10619677 BLAKE2B 
9b697d3548bd3a2a7a5f2bb38589bdd7e67ff964b613371a83ae11ec1a114874283d67a442f4336a1d50e86fe127ae755ea68865de112ea83520def404a6e715
 SHA512 
f47cda64648ef59c211aa54993ee423e80caf26f8942de88672e430bec7976d83f15c58fe9df8217217be48a1b36e8c3342fc3baf862077fe229da214fd38400
-DIST DisplayCAL-3.8.7.1.tar.gz 10621039 BLAKE2B 
be4e350a63efb615a363aea36e4e92bc837d0021088ab28f78e92ba0743af5e3930812c1154d32ff06d301461d44b50b483ea15e6954943204974cc264918057
 SHA512 
67f49b3ae85620f9e9c7e9d4162538f78ab160a590e6cb95f78203045e0d2d8d604abe3ab533030e9359d70292a8b7dd02174c99b3143fabd7ca27a3b07a5626
 DIST DisplayCAL-3.8.8.1.tar.gz 10625317 BLAKE2B 
3e988221ee7d75d5a34b1cd69ab80737017c7e7a0fa16c3bc1587210b6b1108e623a3ccada3be8b99fae4c0a70f2cf4529332f87f0ac13fedf2a1f22fcbd
 SHA512 
e16cdc4590274f10fc122e18a5d94a1d326c43bc132e7af97c6f28c5a656f02203cfb7c73b92fa98d3ee2a8bbf560514615bc9b34c881d2758a5a6f2867092b3

diff --git a/media-gfx/displaycal/displaycal-3.8.7.0.ebuild 
b/media-gfx/displaycal/displaycal-3.8.7.0.ebuild
deleted file mode 100644
index 6d9baac97b2..000
--- a/media-gfx/displaycal/displaycal-3.8.7.0.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   dev-python/faulthandler[${PYTHON_USEDEP}]
-   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
-"
-
-# Just in case someone renames the ebuild
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   # Do not generate udev/hotplug files
-   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
-   -i DisplayCAL/setup.py || die
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
-   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
-   -i DisplayCAL/postinstall.py || die
-
-   # Remove deprecated Encoding key from .desktop file
-   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
-
-   # Remove x-world Media Type
-   sed -e 's/x\-world\/x\-vrml\;//g' \
-   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
-
-   distutils-r1_src_prepare
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_icon_cache_update
-}

diff --git a/media-gfx/displaycal/displaycal-3.8.7.1.ebuild 
b/media-gfx/displaycal/displaycal-3.8.7.1.ebuild
deleted file mode 100644
index 6d9baac97b2..000
--- a/media-gfx/displaycal/displaycal-3.8.7.1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   dev-python/faulthandler[${PYTHON_USEDEP}]
-   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]

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

2019-11-14 Thread Bernard Cafarelli
commit: b16a1b6fe8eee62d1ce981416f8092e8c869b39e
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Nov 14 08:05:09 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Nov 14 08:07:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b16a1b6f

media-gfx/displaycal: 3.8.8.1 bump

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.8.8.1.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index e57d1b6c9a9..178f7b9d3e0 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.8.7.0.tar.gz 10619677 BLAKE2B 
9b697d3548bd3a2a7a5f2bb38589bdd7e67ff964b613371a83ae11ec1a114874283d67a442f4336a1d50e86fe127ae755ea68865de112ea83520def404a6e715
 SHA512 
f47cda64648ef59c211aa54993ee423e80caf26f8942de88672e430bec7976d83f15c58fe9df8217217be48a1b36e8c3342fc3baf862077fe229da214fd38400
 DIST DisplayCAL-3.8.7.1.tar.gz 10621039 BLAKE2B 
be4e350a63efb615a363aea36e4e92bc837d0021088ab28f78e92ba0743af5e3930812c1154d32ff06d301461d44b50b483ea15e6954943204974cc264918057
 SHA512 
67f49b3ae85620f9e9c7e9d4162538f78ab160a590e6cb95f78203045e0d2d8d604abe3ab533030e9359d70292a8b7dd02174c99b3143fabd7ca27a3b07a5626
+DIST DisplayCAL-3.8.8.1.tar.gz 10625317 BLAKE2B 
3e988221ee7d75d5a34b1cd69ab80737017c7e7a0fa16c3bc1587210b6b1108e623a3ccada3be8b99fae4c0a70f2cf4529332f87f0ac13fedf2a1f22fcbd
 SHA512 
e16cdc4590274f10fc122e18a5d94a1d326c43bc132e7af97c6f28c5a656f02203cfb7c73b92fa98d3ee2a8bbf560514615bc9b34c881d2758a5a6f2867092b3

diff --git a/media-gfx/displaycal/displaycal-3.8.8.1.ebuild 
b/media-gfx/displaycal/displaycal-3.8.8.1.ebuild
new file mode 100644
index 000..6d9baac97b2
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.8.8.1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   dev-python/faulthandler[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2019-10-17 Thread Bernard Cafarelli
commit: ed35482993ed0d3645c9f394a58685faef8bd507
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Oct 17 09:38:58 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Oct 17 10:36:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed354829

media-gfx/displaycal: 3.8.7.1 bump

python3 and wxpython4 support will have to wait for upcoming release

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.8.7.1.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index e2301027fcb..e57d1b6c9a9 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1 +1,2 @@
 DIST DisplayCAL-3.8.7.0.tar.gz 10619677 BLAKE2B 
9b697d3548bd3a2a7a5f2bb38589bdd7e67ff964b613371a83ae11ec1a114874283d67a442f4336a1d50e86fe127ae755ea68865de112ea83520def404a6e715
 SHA512 
f47cda64648ef59c211aa54993ee423e80caf26f8942de88672e430bec7976d83f15c58fe9df8217217be48a1b36e8c3342fc3baf862077fe229da214fd38400
+DIST DisplayCAL-3.8.7.1.tar.gz 10621039 BLAKE2B 
be4e350a63efb615a363aea36e4e92bc837d0021088ab28f78e92ba0743af5e3930812c1154d32ff06d301461d44b50b483ea15e6954943204974cc264918057
 SHA512 
67f49b3ae85620f9e9c7e9d4162538f78ab160a590e6cb95f78203045e0d2d8d604abe3ab533030e9359d70292a8b7dd02174c99b3143fabd7ca27a3b07a5626

diff --git a/media-gfx/displaycal/displaycal-3.8.7.1.ebuild 
b/media-gfx/displaycal/displaycal-3.8.7.1.ebuild
new file mode 100644
index 000..6d9baac97b2
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.8.7.1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   dev-python/faulthandler[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2019-10-17 Thread Bernard Cafarelli
commit: ed9a967e0075c74644f3e9be5aa4677b704f9243
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Oct 17 09:38:19 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Oct 17 10:36:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed9a967e

media-gfx/displaycal: drop old

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest |  4 --
 media-gfx/displaycal/displaycal-3.7.2.0-r1.ebuild | 64 ---
 media-gfx/displaycal/displaycal-3.8.1.1.ebuild| 64 ---
 media-gfx/displaycal/displaycal-3.8.3.0.ebuild| 64 ---
 media-gfx/displaycal/displaycal-3.8.5.0.ebuild| 64 ---
 5 files changed, 260 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index a9ae482b448..e2301027fcb 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,5 +1 @@
-DIST DisplayCAL-3.7.2.0.tar.gz 10536990 BLAKE2B 
c3e0c1b75c10911b1624d56f4e5d612eba8c257b5abd8a4632f13d91285283d870d928ad3eb17a9cd620b7fed4b9e5414495e12227fb2b94e3da2551d14042bd
 SHA512 
f516376a84680daa2baffa0b4738f52e5dc6df374ae5d97ed385430e2744a087e044faa4929fdc84b01d79878b44e15eda5fa75b40b8a78e6962f66fc06876d4
-DIST DisplayCAL-3.8.1.1.tar.gz 10611516 BLAKE2B 
797c20aa7d26014ce5d039de352639b6d9f045eb06701044a0cb4a1b34c9744b0ca4f659a33cd23d16fe918e5d7e270def4ecd5007ddfc82682b486d3a413e44
 SHA512 
75d4ff038ad4f98b2d234b99d473a9e951983a607c28bc4eadcaa89bcfaa02ca13ed18fca8d4608cd881f215cbb37c36f91f7862a8c83541423524aca35b4688
-DIST DisplayCAL-3.8.3.0.tar.gz 10602825 BLAKE2B 
f74df1b9c1c9a63c84c3f78e1d38324075a65c54e289fe6c1a1871af69046f49e2b893f82db0542ad6062cd5bab4c3ffa98a25f21f428a9cb50483337a84e3c6
 SHA512 
8ede8200910dbef3d81e7d3aee89dd67f1f7ee3f22a8205780c63a05673ca7273e9e4138c418c7bc1e6c57240aab79453949d97a0651fbbbc4926b80cd50a8cd
-DIST DisplayCAL-3.8.5.0.tar.gz 10605505 BLAKE2B 
fa268780e34f485e7c90caccc5a76b70131520730be41b74f7b855e843c32ee10af1aad64412842dc85c9a1fbe28e74b9062f23183fa7cf3cde0381c64c8b7d4
 SHA512 
8c44a4524796174755d306a93e9f03c06b1c219b5173c081ed6456d6bcbb725a8e9c424acdf420dc444f10eedcff935bc93e399f1609b6d8a454e486e8207974
 DIST DisplayCAL-3.8.7.0.tar.gz 10619677 BLAKE2B 
9b697d3548bd3a2a7a5f2bb38589bdd7e67ff964b613371a83ae11ec1a114874283d67a442f4336a1d50e86fe127ae755ea68865de112ea83520def404a6e715
 SHA512 
f47cda64648ef59c211aa54993ee423e80caf26f8942de88672e430bec7976d83f15c58fe9df8217217be48a1b36e8c3342fc3baf862077fe229da214fd38400

diff --git a/media-gfx/displaycal/displaycal-3.7.2.0-r1.ebuild 
b/media-gfx/displaycal/displaycal-3.7.2.0-r1.ebuild
deleted file mode 100644
index 6d9baac97b2..000
--- a/media-gfx/displaycal/displaycal-3.7.2.0-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   dev-python/faulthandler[${PYTHON_USEDEP}]
-   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
-"
-
-# Just in case someone renames the ebuild
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   # Do not generate udev/hotplug files
-   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
-   -i DisplayCAL/setup.py || die
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
-   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
-   -i DisplayCAL/postinstall.py || die
-
-   # Remove deprecated Encoding key from .desktop file
-   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
-
-   # Remove x-world Media Type
-   sed -e 's/x\-world\/x\-vrml\;//g' \
-   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
-
-   distutils-r1_src_prepare
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_icon_cache_update
-}

diff --git a/media-gfx/displaycal/displaycal-3.8.1.1.ebuild 
b/media-gfx/displaycal/displaycal-3.8.1.1.ebuild
deleted file mode 100644
index 6d9baac97b2..000
--- a/media-gfx/displaycal/displaycal-3.8.1.1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 

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

2019-09-24 Thread Bernard Cafarelli
commit: e9e6c5a465236748a3a2391d10a0ce1da341ddb4
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Sep 23 20:50:22 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Sep 24 12:56:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9e6c5a4

media-gfx/displaycal: 3.8.7.0 bump

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.8.7.0.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index bdba4ca8889..a9ae482b448 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -2,3 +2,4 @@ DIST DisplayCAL-3.7.2.0.tar.gz 10536990 BLAKE2B 
c3e0c1b75c10911b1624d56f4e5d612e
 DIST DisplayCAL-3.8.1.1.tar.gz 10611516 BLAKE2B 
797c20aa7d26014ce5d039de352639b6d9f045eb06701044a0cb4a1b34c9744b0ca4f659a33cd23d16fe918e5d7e270def4ecd5007ddfc82682b486d3a413e44
 SHA512 
75d4ff038ad4f98b2d234b99d473a9e951983a607c28bc4eadcaa89bcfaa02ca13ed18fca8d4608cd881f215cbb37c36f91f7862a8c83541423524aca35b4688
 DIST DisplayCAL-3.8.3.0.tar.gz 10602825 BLAKE2B 
f74df1b9c1c9a63c84c3f78e1d38324075a65c54e289fe6c1a1871af69046f49e2b893f82db0542ad6062cd5bab4c3ffa98a25f21f428a9cb50483337a84e3c6
 SHA512 
8ede8200910dbef3d81e7d3aee89dd67f1f7ee3f22a8205780c63a05673ca7273e9e4138c418c7bc1e6c57240aab79453949d97a0651fbbbc4926b80cd50a8cd
 DIST DisplayCAL-3.8.5.0.tar.gz 10605505 BLAKE2B 
fa268780e34f485e7c90caccc5a76b70131520730be41b74f7b855e843c32ee10af1aad64412842dc85c9a1fbe28e74b9062f23183fa7cf3cde0381c64c8b7d4
 SHA512 
8c44a4524796174755d306a93e9f03c06b1c219b5173c081ed6456d6bcbb725a8e9c424acdf420dc444f10eedcff935bc93e399f1609b6d8a454e486e8207974
+DIST DisplayCAL-3.8.7.0.tar.gz 10619677 BLAKE2B 
9b697d3548bd3a2a7a5f2bb38589bdd7e67ff964b613371a83ae11ec1a114874283d67a442f4336a1d50e86fe127ae755ea68865de112ea83520def404a6e715
 SHA512 
f47cda64648ef59c211aa54993ee423e80caf26f8942de88672e430bec7976d83f15c58fe9df8217217be48a1b36e8c3342fc3baf862077fe229da214fd38400

diff --git a/media-gfx/displaycal/displaycal-3.8.7.0.ebuild 
b/media-gfx/displaycal/displaycal-3.8.7.0.ebuild
new file mode 100644
index 000..6d9baac97b2
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.8.7.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   dev-python/faulthandler[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2019-08-23 Thread Bernard Cafarelli
commit: 0ff1e4c4ac9b6e446136732720a2cd7c84b59b72
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Aug 23 11:59:08 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Aug 23 13:44:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ff1e4c4

media-gfx/displaycal: 3.8.5.0 bump

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.8.5.0.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 7f6fc75ee5a..bdba4ca8889 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,4 @@
 DIST DisplayCAL-3.7.2.0.tar.gz 10536990 BLAKE2B 
c3e0c1b75c10911b1624d56f4e5d612eba8c257b5abd8a4632f13d91285283d870d928ad3eb17a9cd620b7fed4b9e5414495e12227fb2b94e3da2551d14042bd
 SHA512 
f516376a84680daa2baffa0b4738f52e5dc6df374ae5d97ed385430e2744a087e044faa4929fdc84b01d79878b44e15eda5fa75b40b8a78e6962f66fc06876d4
 DIST DisplayCAL-3.8.1.1.tar.gz 10611516 BLAKE2B 
797c20aa7d26014ce5d039de352639b6d9f045eb06701044a0cb4a1b34c9744b0ca4f659a33cd23d16fe918e5d7e270def4ecd5007ddfc82682b486d3a413e44
 SHA512 
75d4ff038ad4f98b2d234b99d473a9e951983a607c28bc4eadcaa89bcfaa02ca13ed18fca8d4608cd881f215cbb37c36f91f7862a8c83541423524aca35b4688
 DIST DisplayCAL-3.8.3.0.tar.gz 10602825 BLAKE2B 
f74df1b9c1c9a63c84c3f78e1d38324075a65c54e289fe6c1a1871af69046f49e2b893f82db0542ad6062cd5bab4c3ffa98a25f21f428a9cb50483337a84e3c6
 SHA512 
8ede8200910dbef3d81e7d3aee89dd67f1f7ee3f22a8205780c63a05673ca7273e9e4138c418c7bc1e6c57240aab79453949d97a0651fbbbc4926b80cd50a8cd
+DIST DisplayCAL-3.8.5.0.tar.gz 10605505 BLAKE2B 
fa268780e34f485e7c90caccc5a76b70131520730be41b74f7b855e843c32ee10af1aad64412842dc85c9a1fbe28e74b9062f23183fa7cf3cde0381c64c8b7d4
 SHA512 
8c44a4524796174755d306a93e9f03c06b1c219b5173c081ed6456d6bcbb725a8e9c424acdf420dc444f10eedcff935bc93e399f1609b6d8a454e486e8207974

diff --git a/media-gfx/displaycal/displaycal-3.8.5.0.ebuild 
b/media-gfx/displaycal/displaycal-3.8.5.0.ebuild
new file mode 100644
index 000..6d9baac97b2
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.8.5.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   dev-python/faulthandler[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2019-07-03 Thread Bernard Cafarelli
commit: ac8d5f3f6ddbc09e2c6f65171ec8781bb67b0c89
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jul  3 08:19:05 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jul  3 08:24:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac8d5f3f

media-gfx/displaycal: 3.8.3.0 bump

Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.8.3.0.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 314215b8f7a..7f6fc75ee5a 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.7.2.0.tar.gz 10536990 BLAKE2B 
c3e0c1b75c10911b1624d56f4e5d612eba8c257b5abd8a4632f13d91285283d870d928ad3eb17a9cd620b7fed4b9e5414495e12227fb2b94e3da2551d14042bd
 SHA512 
f516376a84680daa2baffa0b4738f52e5dc6df374ae5d97ed385430e2744a087e044faa4929fdc84b01d79878b44e15eda5fa75b40b8a78e6962f66fc06876d4
 DIST DisplayCAL-3.8.1.1.tar.gz 10611516 BLAKE2B 
797c20aa7d26014ce5d039de352639b6d9f045eb06701044a0cb4a1b34c9744b0ca4f659a33cd23d16fe918e5d7e270def4ecd5007ddfc82682b486d3a413e44
 SHA512 
75d4ff038ad4f98b2d234b99d473a9e951983a607c28bc4eadcaa89bcfaa02ca13ed18fca8d4608cd881f215cbb37c36f91f7862a8c83541423524aca35b4688
+DIST DisplayCAL-3.8.3.0.tar.gz 10602825 BLAKE2B 
f74df1b9c1c9a63c84c3f78e1d38324075a65c54e289fe6c1a1871af69046f49e2b893f82db0542ad6062cd5bab4c3ffa98a25f21f428a9cb50483337a84e3c6
 SHA512 
8ede8200910dbef3d81e7d3aee89dd67f1f7ee3f22a8205780c63a05673ca7273e9e4138c418c7bc1e6c57240aab79453949d97a0651fbbbc4926b80cd50a8cd

diff --git a/media-gfx/displaycal/displaycal-3.8.3.0.ebuild 
b/media-gfx/displaycal/displaycal-3.8.3.0.ebuild
new file mode 100644
index 000..6d9baac97b2
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.8.3.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   dev-python/faulthandler[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2019-05-26 Thread Bernard Cafarelli
commit: 5e6f507337b00725d1d64bc3e329627b5d375e96
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun May 26 16:04:57 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun May 26 16:04:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e6f5073

media-gfx/displaycal: 3.8.1.1 bump

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.8.1.1.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 0b38f7ceca9..314215b8f7a 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1 +1,2 @@
 DIST DisplayCAL-3.7.2.0.tar.gz 10536990 BLAKE2B 
c3e0c1b75c10911b1624d56f4e5d612eba8c257b5abd8a4632f13d91285283d870d928ad3eb17a9cd620b7fed4b9e5414495e12227fb2b94e3da2551d14042bd
 SHA512 
f516376a84680daa2baffa0b4738f52e5dc6df374ae5d97ed385430e2744a087e044faa4929fdc84b01d79878b44e15eda5fa75b40b8a78e6962f66fc06876d4
+DIST DisplayCAL-3.8.1.1.tar.gz 10611516 BLAKE2B 
797c20aa7d26014ce5d039de352639b6d9f045eb06701044a0cb4a1b34c9744b0ca4f659a33cd23d16fe918e5d7e270def4ecd5007ddfc82682b486d3a413e44
 SHA512 
75d4ff038ad4f98b2d234b99d473a9e951983a607c28bc4eadcaa89bcfaa02ca13ed18fca8d4608cd881f215cbb37c36f91f7862a8c83541423524aca35b4688

diff --git a/media-gfx/displaycal/displaycal-3.8.1.1.ebuild 
b/media-gfx/displaycal/displaycal-3.8.1.1.ebuild
new file mode 100644
index 000..6d9baac97b2
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.8.1.1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   dev-python/faulthandler[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2019-05-26 Thread Bernard Cafarelli
commit: 9f02253ebab3ca8099a18eccc55f47a702a6818b
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun May 26 16:04:40 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun May 26 16:04:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f02253e

media-gfx/displaycal: drop old

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  3 --
 media-gfx/displaycal/displaycal-3.7.1.2.ebuild | 63 --
 media-gfx/displaycal/displaycal-3.7.1.3.ebuild | 63 --
 media-gfx/displaycal/displaycal-3.7.1.4.ebuild | 63 --
 media-gfx/displaycal/displaycal-3.7.2.0.ebuild | 63 --
 5 files changed, 255 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 5ea4db7b908..0b38f7ceca9 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,4 +1 @@
-DIST DisplayCAL-3.7.1.2.tar.gz 10472879 BLAKE2B 
a0722af9c8a6df8af57c0a66e792886b6aecb78bec79d0bed22567bd6ce540793ed6dd51437cbf1974b9070b9adb3708f841cf8cfae0e482056d90783be6ddbd
 SHA512 
d708110e0528ffada5fd4a0ca7da9cf02a54964bc7d5af2b98738aa3e34079c0a4890f2cf6086750045915e06d6c943fc954e0f03653d25c080522a4b24795bd
-DIST DisplayCAL-3.7.1.3.tar.gz 10474328 BLAKE2B 
9c305809a9f46f3ad76eec728026b2abbd1dec3bee46db92bfe9fe4e7c31f24d61eafaca0bda12f510002d3c5d51bfba4c6d4b1bae5e1ce105a8b75d84672ef8
 SHA512 
9718f589ee1842f6247ea110c4c6defaf767313fb2fd9ce9fb1b35775141774ce9084c2cbf00d9c432162e8b32c8d789e5a52ca385976c4772bf644738257926
-DIST DisplayCAL-3.7.1.4.tar.gz 10478572 BLAKE2B 
9f646caea40a22804877f168c2a88a2b3069b8d0e4688c9676bd4d6d873a3528797dd3aadde26da40a4945e224504b2f8673f0c176ced687747ef23d8ca20044
 SHA512 
d60a240714cf32f1f8084caf74cbccc613263612b7192ad766216ec8253c5682079f32d9cf501e91bf7795ddcce4d9f2f0b023117719d0cc05f203d51dc3ef42
 DIST DisplayCAL-3.7.2.0.tar.gz 10536990 BLAKE2B 
c3e0c1b75c10911b1624d56f4e5d612eba8c257b5abd8a4632f13d91285283d870d928ad3eb17a9cd620b7fed4b9e5414495e12227fb2b94e3da2551d14042bd
 SHA512 
f516376a84680daa2baffa0b4738f52e5dc6df374ae5d97ed385430e2744a087e044faa4929fdc84b01d79878b44e15eda5fa75b40b8a78e6962f66fc06876d4

diff --git a/media-gfx/displaycal/displaycal-3.7.1.2.ebuild 
b/media-gfx/displaycal/displaycal-3.7.1.2.ebuild
deleted file mode 100644
index 02f4e0b4a7e..000
--- a/media-gfx/displaycal/displaycal-3.7.1.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1
-"
-
-# Just in case someone renames the ebuild
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   # Do not generate udev/hotplug files
-   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
-   -i DisplayCAL/setup.py || die
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
-   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
-   -i DisplayCAL/postinstall.py || die
-
-   # Remove deprecated Encoding key from .desktop file
-   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
-
-   # Remove x-world Media Type
-   sed -e 's/x\-world\/x\-vrml\;//g' \
-   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
-
-   distutils-r1_src_prepare
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_icon_cache_update
-}

diff --git a/media-gfx/displaycal/displaycal-3.7.1.3.ebuild 
b/media-gfx/displaycal/displaycal-3.7.1.3.ebuild
deleted file mode 100644
index 02f4e0b4a7e..000
--- a/media-gfx/displaycal/displaycal-3.7.1.3.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"

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

2019-04-03 Thread Bernard Cafarelli
commit: 38b15408e06f5167081eb8dccd18de74902bf5ba
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Apr  3 21:24:53 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Apr  3 21:29:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38b15408

media-gfx/displaycal: add dev-python/faulthandler dependency

Also list PYTHON_USEDEP in python dependencies

Closes: https://bugs.gentoo.org/673768
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/displaycal-3.7.2.0-r1.ebuild | 64 +++
 1 file changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/displaycal-3.7.2.0-r1.ebuild 
b/media-gfx/displaycal/displaycal-3.7.2.0-r1.ebuild
new file mode 100644
index 000..6d9baac97b2
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.7.2.0-r1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   dev-python/faulthandler[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.2.1[${PYTHON_USEDEP}]
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2019-04-03 Thread Bernard Cafarelli
commit: 338577317f00d40c4e9e5050fa30c3da62b4ae88
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Apr  3 21:09:01 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Apr  3 21:29:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33857731

media-gfx/displaycal: 3.7.2.0 bump

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.7.2.0.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 8febbdc9122..5ea4db7b908 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,4 @@
 DIST DisplayCAL-3.7.1.2.tar.gz 10472879 BLAKE2B 
a0722af9c8a6df8af57c0a66e792886b6aecb78bec79d0bed22567bd6ce540793ed6dd51437cbf1974b9070b9adb3708f841cf8cfae0e482056d90783be6ddbd
 SHA512 
d708110e0528ffada5fd4a0ca7da9cf02a54964bc7d5af2b98738aa3e34079c0a4890f2cf6086750045915e06d6c943fc954e0f03653d25c080522a4b24795bd
 DIST DisplayCAL-3.7.1.3.tar.gz 10474328 BLAKE2B 
9c305809a9f46f3ad76eec728026b2abbd1dec3bee46db92bfe9fe4e7c31f24d61eafaca0bda12f510002d3c5d51bfba4c6d4b1bae5e1ce105a8b75d84672ef8
 SHA512 
9718f589ee1842f6247ea110c4c6defaf767313fb2fd9ce9fb1b35775141774ce9084c2cbf00d9c432162e8b32c8d789e5a52ca385976c4772bf644738257926
 DIST DisplayCAL-3.7.1.4.tar.gz 10478572 BLAKE2B 
9f646caea40a22804877f168c2a88a2b3069b8d0e4688c9676bd4d6d873a3528797dd3aadde26da40a4945e224504b2f8673f0c176ced687747ef23d8ca20044
 SHA512 
d60a240714cf32f1f8084caf74cbccc613263612b7192ad766216ec8253c5682079f32d9cf501e91bf7795ddcce4d9f2f0b023117719d0cc05f203d51dc3ef42
+DIST DisplayCAL-3.7.2.0.tar.gz 10536990 BLAKE2B 
c3e0c1b75c10911b1624d56f4e5d612eba8c257b5abd8a4632f13d91285283d870d928ad3eb17a9cd620b7fed4b9e5414495e12227fb2b94e3da2551d14042bd
 SHA512 
f516376a84680daa2baffa0b4738f52e5dc6df374ae5d97ed385430e2744a087e044faa4929fdc84b01d79878b44e15eda5fa75b40b8a78e6962f66fc06876d4

diff --git a/media-gfx/displaycal/displaycal-3.7.2.0.ebuild 
b/media-gfx/displaycal/displaycal-3.7.2.0.ebuild
new file mode 100644
index 000..d6063154f81
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.7.2.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2019-02-09 Thread Bernard Cafarelli
commit: 42bbe3dd6d01f7f2b137a554fb077653688d3dad
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sat Feb  9 08:32:48 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sat Feb  9 08:32:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42bbe3dd

media-gfx/displaycal: drop old

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  2 -
 media-gfx/displaycal/displaycal-3.6.2.0.ebuild | 63 --
 media-gfx/displaycal/displaycal-3.7.1.1.ebuild | 63 --
 3 files changed, 128 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index a6373c74fe8..8febbdc9122 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,5 +1,3 @@
-DIST DisplayCAL-3.6.2.0.tar.gz 10437261 BLAKE2B 
c476c7834e2c723c48fb9ad9d2ea7f4919c2636814078d8f1a83a6af0e91586e0762ea3787c90f8625cba672ac72ef5e1d2dd6906fd3fd7f3b67637a180b81e3
 SHA512 
e66a20edf46d460caf5d2f7ddbc93cfe7c37937cd4933d2a2b7d141676696c6f22aadc07d229fbaefe0ced62066fc99d3290352c3e8fc9db4b95a8d0541f0be7
-DIST DisplayCAL-3.7.1.1.tar.gz 10472440 BLAKE2B 
2e53537a7570c37120a462102269b5c042299df3de0926b0221bef8b5c29d75e7983b359d9ad162e2d9df2819c624d5f0c00c65fa181cce3fa831f1791d7a1fd
 SHA512 
d5d18b25dd4ce6a2b328db6adb55c43ffcb3e3a495be38004d9e6a6e5c8d576b9477dc895668f82210ce955e7854a578218cb8c9ca2c206f58c47a011ad99c09
 DIST DisplayCAL-3.7.1.2.tar.gz 10472879 BLAKE2B 
a0722af9c8a6df8af57c0a66e792886b6aecb78bec79d0bed22567bd6ce540793ed6dd51437cbf1974b9070b9adb3708f841cf8cfae0e482056d90783be6ddbd
 SHA512 
d708110e0528ffada5fd4a0ca7da9cf02a54964bc7d5af2b98738aa3e34079c0a4890f2cf6086750045915e06d6c943fc954e0f03653d25c080522a4b24795bd
 DIST DisplayCAL-3.7.1.3.tar.gz 10474328 BLAKE2B 
9c305809a9f46f3ad76eec728026b2abbd1dec3bee46db92bfe9fe4e7c31f24d61eafaca0bda12f510002d3c5d51bfba4c6d4b1bae5e1ce105a8b75d84672ef8
 SHA512 
9718f589ee1842f6247ea110c4c6defaf767313fb2fd9ce9fb1b35775141774ce9084c2cbf00d9c432162e8b32c8d789e5a52ca385976c4772bf644738257926
 DIST DisplayCAL-3.7.1.4.tar.gz 10478572 BLAKE2B 
9f646caea40a22804877f168c2a88a2b3069b8d0e4688c9676bd4d6d873a3528797dd3aadde26da40a4945e224504b2f8673f0c176ced687747ef23d8ca20044
 SHA512 
d60a240714cf32f1f8084caf74cbccc613263612b7192ad766216ec8253c5682079f32d9cf501e91bf7795ddcce4d9f2f0b023117719d0cc05f203d51dc3ef42

diff --git a/media-gfx/displaycal/displaycal-3.6.2.0.ebuild 
b/media-gfx/displaycal/displaycal-3.6.2.0.ebuild
deleted file mode 100644
index 72a722b6435..000
--- a/media-gfx/displaycal/displaycal-3.6.2.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1
-"
-
-# Just in case someone renames the ebuild
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   # Do not generate udev/hotplug files
-   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
-   -i DisplayCAL/setup.py || die
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
-   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
-   -i DisplayCAL/postinstall.py || die
-
-   # Remove deprecated Encoding key from .desktop file
-   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
-
-   # Remove x-world Media Type
-   sed -e 's/x\-world\/x\-vrml\;//g' \
-   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
-
-   distutils-r1_src_prepare
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_icon_cache_update
-}

diff --git a/media-gfx/displaycal/displaycal-3.7.1.1.ebuild 
b/media-gfx/displaycal/displaycal-3.7.1.1.ebuild
deleted file mode 100644
index 02f4e0b4a7e..000
--- a/media-gfx/displaycal/displaycal-3.7.1.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and 

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

2019-02-09 Thread Bernard Cafarelli
commit: ca68186c7cf4b8442849522d27e966e96e0e6ca0
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sat Feb  9 08:32:30 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sat Feb  9 08:32:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca68186c

media-gfx/displaycal: 3.7.1.4 bump

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.7.1.4.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 51ac405422e..a6373c74fe8 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -2,3 +2,4 @@ DIST DisplayCAL-3.6.2.0.tar.gz 10437261 BLAKE2B 
c476c7834e2c723c48fb9ad9d2ea7f49
 DIST DisplayCAL-3.7.1.1.tar.gz 10472440 BLAKE2B 
2e53537a7570c37120a462102269b5c042299df3de0926b0221bef8b5c29d75e7983b359d9ad162e2d9df2819c624d5f0c00c65fa181cce3fa831f1791d7a1fd
 SHA512 
d5d18b25dd4ce6a2b328db6adb55c43ffcb3e3a495be38004d9e6a6e5c8d576b9477dc895668f82210ce955e7854a578218cb8c9ca2c206f58c47a011ad99c09
 DIST DisplayCAL-3.7.1.2.tar.gz 10472879 BLAKE2B 
a0722af9c8a6df8af57c0a66e792886b6aecb78bec79d0bed22567bd6ce540793ed6dd51437cbf1974b9070b9adb3708f841cf8cfae0e482056d90783be6ddbd
 SHA512 
d708110e0528ffada5fd4a0ca7da9cf02a54964bc7d5af2b98738aa3e34079c0a4890f2cf6086750045915e06d6c943fc954e0f03653d25c080522a4b24795bd
 DIST DisplayCAL-3.7.1.3.tar.gz 10474328 BLAKE2B 
9c305809a9f46f3ad76eec728026b2abbd1dec3bee46db92bfe9fe4e7c31f24d61eafaca0bda12f510002d3c5d51bfba4c6d4b1bae5e1ce105a8b75d84672ef8
 SHA512 
9718f589ee1842f6247ea110c4c6defaf767313fb2fd9ce9fb1b35775141774ce9084c2cbf00d9c432162e8b32c8d789e5a52ca385976c4772bf644738257926
+DIST DisplayCAL-3.7.1.4.tar.gz 10478572 BLAKE2B 
9f646caea40a22804877f168c2a88a2b3069b8d0e4688c9676bd4d6d873a3528797dd3aadde26da40a4945e224504b2f8673f0c176ced687747ef23d8ca20044
 SHA512 
d60a240714cf32f1f8084caf74cbccc613263612b7192ad766216ec8253c5682079f32d9cf501e91bf7795ddcce4d9f2f0b023117719d0cc05f203d51dc3ef42

diff --git a/media-gfx/displaycal/displaycal-3.7.1.4.ebuild 
b/media-gfx/displaycal/displaycal-3.7.1.4.ebuild
new file mode 100644
index 000..d6063154f81
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.7.1.4.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-12-27 Thread Bernard Cafarelli
commit: 2057d041999cfef3c3380429e965f5af8ee614d8
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Dec 28 00:39:40 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Dec 28 00:39:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2057d041

media-gfx/displaycal: 3.7.1.3 bump

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.7.1.3.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 6caad1828f6..51ac405422e 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,4 @@
 DIST DisplayCAL-3.6.2.0.tar.gz 10437261 BLAKE2B 
c476c7834e2c723c48fb9ad9d2ea7f4919c2636814078d8f1a83a6af0e91586e0762ea3787c90f8625cba672ac72ef5e1d2dd6906fd3fd7f3b67637a180b81e3
 SHA512 
e66a20edf46d460caf5d2f7ddbc93cfe7c37937cd4933d2a2b7d141676696c6f22aadc07d229fbaefe0ced62066fc99d3290352c3e8fc9db4b95a8d0541f0be7
 DIST DisplayCAL-3.7.1.1.tar.gz 10472440 BLAKE2B 
2e53537a7570c37120a462102269b5c042299df3de0926b0221bef8b5c29d75e7983b359d9ad162e2d9df2819c624d5f0c00c65fa181cce3fa831f1791d7a1fd
 SHA512 
d5d18b25dd4ce6a2b328db6adb55c43ffcb3e3a495be38004d9e6a6e5c8d576b9477dc895668f82210ce955e7854a578218cb8c9ca2c206f58c47a011ad99c09
 DIST DisplayCAL-3.7.1.2.tar.gz 10472879 BLAKE2B 
a0722af9c8a6df8af57c0a66e792886b6aecb78bec79d0bed22567bd6ce540793ed6dd51437cbf1974b9070b9adb3708f841cf8cfae0e482056d90783be6ddbd
 SHA512 
d708110e0528ffada5fd4a0ca7da9cf02a54964bc7d5af2b98738aa3e34079c0a4890f2cf6086750045915e06d6c943fc954e0f03653d25c080522a4b24795bd
+DIST DisplayCAL-3.7.1.3.tar.gz 10474328 BLAKE2B 
9c305809a9f46f3ad76eec728026b2abbd1dec3bee46db92bfe9fe4e7c31f24d61eafaca0bda12f510002d3c5d51bfba4c6d4b1bae5e1ce105a8b75d84672ef8
 SHA512 
9718f589ee1842f6247ea110c4c6defaf767313fb2fd9ce9fb1b35775141774ce9084c2cbf00d9c432162e8b32c8d789e5a52ca385976c4772bf644738257926

diff --git a/media-gfx/displaycal/displaycal-3.7.1.3.ebuild 
b/media-gfx/displaycal/displaycal-3.7.1.3.ebuild
new file mode 100644
index 000..02f4e0b4a7e
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.7.1.3.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-11-29 Thread Bernard Cafarelli
commit: a2befc95d38ae80a0c183d83c6d3239c4d12d1bb
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Nov 29 12:22:21 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Nov 29 12:26:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2befc95

media-gfx/displaycal: 3.7.1.2 bump

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.7.1.2.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index db365fbae68..6caad1828f6 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.6.2.0.tar.gz 10437261 BLAKE2B 
c476c7834e2c723c48fb9ad9d2ea7f4919c2636814078d8f1a83a6af0e91586e0762ea3787c90f8625cba672ac72ef5e1d2dd6906fd3fd7f3b67637a180b81e3
 SHA512 
e66a20edf46d460caf5d2f7ddbc93cfe7c37937cd4933d2a2b7d141676696c6f22aadc07d229fbaefe0ced62066fc99d3290352c3e8fc9db4b95a8d0541f0be7
 DIST DisplayCAL-3.7.1.1.tar.gz 10472440 BLAKE2B 
2e53537a7570c37120a462102269b5c042299df3de0926b0221bef8b5c29d75e7983b359d9ad162e2d9df2819c624d5f0c00c65fa181cce3fa831f1791d7a1fd
 SHA512 
d5d18b25dd4ce6a2b328db6adb55c43ffcb3e3a495be38004d9e6a6e5c8d576b9477dc895668f82210ce955e7854a578218cb8c9ca2c206f58c47a011ad99c09
+DIST DisplayCAL-3.7.1.2.tar.gz 10472879 BLAKE2B 
a0722af9c8a6df8af57c0a66e792886b6aecb78bec79d0bed22567bd6ce540793ed6dd51437cbf1974b9070b9adb3708f841cf8cfae0e482056d90783be6ddbd
 SHA512 
d708110e0528ffada5fd4a0ca7da9cf02a54964bc7d5af2b98738aa3e34079c0a4890f2cf6086750045915e06d6c943fc954e0f03653d25c080522a4b24795bd

diff --git a/media-gfx/displaycal/displaycal-3.7.1.2.ebuild 
b/media-gfx/displaycal/displaycal-3.7.1.2.ebuild
new file mode 100644
index 000..02f4e0b4a7e
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.7.1.2.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-11-29 Thread Bernard Cafarelli
commit: f87ec44b2e8a155c95447c93793f13510a1408a0
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Nov 29 12:20:23 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Nov 29 12:26:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f87ec44b

media-gfx/displaycal: drop old

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  3 --
 media-gfx/displaycal/displaycal-3.5.3.0.ebuild | 63 --
 media-gfx/displaycal/displaycal-3.6.0.0.ebuild | 63 --
 media-gfx/displaycal/displaycal-3.6.1.1.ebuild | 63 --
 4 files changed, 192 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index a83738eb053..db365fbae68 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,5 +1,2 @@
-DIST DisplayCAL-3.5.3.0.tar.gz 10559161 BLAKE2B 
a3eb968dcd0b5edbcf22a0ec84da55d8660ffa8782135a908db8ea7a6480ce7be9a59528d35a73b7eb57c9c0dd46996407ea3de834a85e6da1c5d006b8aa33b3
 SHA512 
ddb405c1d8b7bc5aefac80fb79edbb03c2a3b32821c8bbbdd6d095312fff57e8ffe5e53cc5b53c56fa32e6bcbc10cd76598441d750008c38a512ed1f62d7cd9c
-DIST DisplayCAL-3.6.0.0.tar.gz 10565171 BLAKE2B 
394a925d28f513ededc1bc40b3ce7b5a2687a0c172006fd14b9081188e3ca80c0cd5f634ac84a9917d6aa301e083bffd05db622e292262f6d41db2a86c23a920
 SHA512 
6d0cff6344bb0dfcff58e88f93e2d0f7a3cf5f8e32b596f9f5e07b0e80ccb9b4ff429aa9fa63b5941f7622e0a7dcd227d0a1066e82d0843454f01d96dea97993
-DIST DisplayCAL-3.6.1.1.tar.gz 10433827 BLAKE2B 
3e06ea90d820bcc96eb8de8d2fabf9d60997092e1529b3a0a6544bfd42f89380bb2525e27c075a3b8c55721d659b485188e8e7f2e872622ed9e6b6ebc87ac662
 SHA512 
03835117f53fb8c9d7cedfe67719b70878c3b62c20894a999c971d1d820dc7ec386ad68b8d4cf19496005abf2235e789526e6632b11d82f971f944b5f4dfdac6
 DIST DisplayCAL-3.6.2.0.tar.gz 10437261 BLAKE2B 
c476c7834e2c723c48fb9ad9d2ea7f4919c2636814078d8f1a83a6af0e91586e0762ea3787c90f8625cba672ac72ef5e1d2dd6906fd3fd7f3b67637a180b81e3
 SHA512 
e66a20edf46d460caf5d2f7ddbc93cfe7c37937cd4933d2a2b7d141676696c6f22aadc07d229fbaefe0ced62066fc99d3290352c3e8fc9db4b95a8d0541f0be7
 DIST DisplayCAL-3.7.1.1.tar.gz 10472440 BLAKE2B 
2e53537a7570c37120a462102269b5c042299df3de0926b0221bef8b5c29d75e7983b359d9ad162e2d9df2819c624d5f0c00c65fa181cce3fa831f1791d7a1fd
 SHA512 
d5d18b25dd4ce6a2b328db6adb55c43ffcb3e3a495be38004d9e6a6e5c8d576b9477dc895668f82210ce955e7854a578218cb8c9ca2c206f58c47a011ad99c09

diff --git a/media-gfx/displaycal/displaycal-3.5.3.0.ebuild 
b/media-gfx/displaycal/displaycal-3.5.3.0.ebuild
deleted file mode 100644
index 72a722b6435..000
--- a/media-gfx/displaycal/displaycal-3.5.3.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1
-"
-
-# Just in case someone renames the ebuild
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   # Do not generate udev/hotplug files
-   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
-   -i DisplayCAL/setup.py || die
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
-   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
-   -i DisplayCAL/postinstall.py || die
-
-   # Remove deprecated Encoding key from .desktop file
-   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
-
-   # Remove x-world Media Type
-   sed -e 's/x\-world\/x\-vrml\;//g' \
-   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
-
-   distutils-r1_src_prepare
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_icon_cache_update
-}

diff --git a/media-gfx/displaycal/displaycal-3.6.0.0.ebuild 
b/media-gfx/displaycal/displaycal-3.6.0.0.ebuild
deleted file mode 100644
index 72a722b6435..000
--- a/media-gfx/displaycal/displaycal-3.6.0.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-

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

2018-11-04 Thread Bernard Cafarelli
commit: 28146fb9e538e11e9eeacd75064dd2fca12bf16b
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Nov  4 22:11:32 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Nov  5 07:28:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28146fb9

media-gfx/displaycal: 3.7.1.1 bump

Signed-off-by: Bernard Cafarelli  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.7.1.1.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 1b80a7db2b4..a83738eb053 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -2,3 +2,4 @@ DIST DisplayCAL-3.5.3.0.tar.gz 10559161 BLAKE2B 
a3eb968dcd0b5edbcf22a0ec84da55d8
 DIST DisplayCAL-3.6.0.0.tar.gz 10565171 BLAKE2B 
394a925d28f513ededc1bc40b3ce7b5a2687a0c172006fd14b9081188e3ca80c0cd5f634ac84a9917d6aa301e083bffd05db622e292262f6d41db2a86c23a920
 SHA512 
6d0cff6344bb0dfcff58e88f93e2d0f7a3cf5f8e32b596f9f5e07b0e80ccb9b4ff429aa9fa63b5941f7622e0a7dcd227d0a1066e82d0843454f01d96dea97993
 DIST DisplayCAL-3.6.1.1.tar.gz 10433827 BLAKE2B 
3e06ea90d820bcc96eb8de8d2fabf9d60997092e1529b3a0a6544bfd42f89380bb2525e27c075a3b8c55721d659b485188e8e7f2e872622ed9e6b6ebc87ac662
 SHA512 
03835117f53fb8c9d7cedfe67719b70878c3b62c20894a999c971d1d820dc7ec386ad68b8d4cf19496005abf2235e789526e6632b11d82f971f944b5f4dfdac6
 DIST DisplayCAL-3.6.2.0.tar.gz 10437261 BLAKE2B 
c476c7834e2c723c48fb9ad9d2ea7f4919c2636814078d8f1a83a6af0e91586e0762ea3787c90f8625cba672ac72ef5e1d2dd6906fd3fd7f3b67637a180b81e3
 SHA512 
e66a20edf46d460caf5d2f7ddbc93cfe7c37937cd4933d2a2b7d141676696c6f22aadc07d229fbaefe0ced62066fc99d3290352c3e8fc9db4b95a8d0541f0be7
+DIST DisplayCAL-3.7.1.1.tar.gz 10472440 BLAKE2B 
2e53537a7570c37120a462102269b5c042299df3de0926b0221bef8b5c29d75e7983b359d9ad162e2d9df2819c624d5f0c00c65fa181cce3fa831f1791d7a1fd
 SHA512 
d5d18b25dd4ce6a2b328db6adb55c43ffcb3e3a495be38004d9e6a6e5c8d576b9477dc895668f82210ce955e7854a578218cb8c9ca2c206f58c47a011ad99c09

diff --git a/media-gfx/displaycal/displaycal-3.7.1.1.ebuild 
b/media-gfx/displaycal/displaycal-3.7.1.1.ebuild
new file mode 100644
index 000..02f4e0b4a7e
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.7.1.1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-09-19 Thread Bernard Cafarelli
commit: a17ae9f097b032c2db0944b5365d4f8c4085e1b7
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Sep 19 17:39:40 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Sep 19 17:39:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a17ae9f0

media-gfx/displaycal: 3.6.2.0 bump

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.6.2.0.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 65fe7534ed8..1b80a7db2b4 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,4 @@
 DIST DisplayCAL-3.5.3.0.tar.gz 10559161 BLAKE2B 
a3eb968dcd0b5edbcf22a0ec84da55d8660ffa8782135a908db8ea7a6480ce7be9a59528d35a73b7eb57c9c0dd46996407ea3de834a85e6da1c5d006b8aa33b3
 SHA512 
ddb405c1d8b7bc5aefac80fb79edbb03c2a3b32821c8bbbdd6d095312fff57e8ffe5e53cc5b53c56fa32e6bcbc10cd76598441d750008c38a512ed1f62d7cd9c
 DIST DisplayCAL-3.6.0.0.tar.gz 10565171 BLAKE2B 
394a925d28f513ededc1bc40b3ce7b5a2687a0c172006fd14b9081188e3ca80c0cd5f634ac84a9917d6aa301e083bffd05db622e292262f6d41db2a86c23a920
 SHA512 
6d0cff6344bb0dfcff58e88f93e2d0f7a3cf5f8e32b596f9f5e07b0e80ccb9b4ff429aa9fa63b5941f7622e0a7dcd227d0a1066e82d0843454f01d96dea97993
 DIST DisplayCAL-3.6.1.1.tar.gz 10433827 BLAKE2B 
3e06ea90d820bcc96eb8de8d2fabf9d60997092e1529b3a0a6544bfd42f89380bb2525e27c075a3b8c55721d659b485188e8e7f2e872622ed9e6b6ebc87ac662
 SHA512 
03835117f53fb8c9d7cedfe67719b70878c3b62c20894a999c971d1d820dc7ec386ad68b8d4cf19496005abf2235e789526e6632b11d82f971f944b5f4dfdac6
+DIST DisplayCAL-3.6.2.0.tar.gz 10437261 BLAKE2B 
c476c7834e2c723c48fb9ad9d2ea7f4919c2636814078d8f1a83a6af0e91586e0762ea3787c90f8625cba672ac72ef5e1d2dd6906fd3fd7f3b67637a180b81e3
 SHA512 
e66a20edf46d460caf5d2f7ddbc93cfe7c37937cd4933d2a2b7d141676696c6f22aadc07d229fbaefe0ced62066fc99d3290352c3e8fc9db4b95a8d0541f0be7

diff --git a/media-gfx/displaycal/displaycal-3.6.2.0.ebuild 
b/media-gfx/displaycal/displaycal-3.6.2.0.ebuild
new file mode 100644
index 000..72a722b6435
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.6.2.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-08-08 Thread Bernard Cafarelli
commit: f4e1dd6f516d80d1f12ea50aeb2fcb10ceef1409
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Aug  8 07:50:44 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Aug  8 07:50:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e1dd6f

media-gfx/displaycal: 3.6.1.1 bump

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.6.1.1.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index b9313120c94..65fe7534ed8 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.5.3.0.tar.gz 10559161 BLAKE2B 
a3eb968dcd0b5edbcf22a0ec84da55d8660ffa8782135a908db8ea7a6480ce7be9a59528d35a73b7eb57c9c0dd46996407ea3de834a85e6da1c5d006b8aa33b3
 SHA512 
ddb405c1d8b7bc5aefac80fb79edbb03c2a3b32821c8bbbdd6d095312fff57e8ffe5e53cc5b53c56fa32e6bcbc10cd76598441d750008c38a512ed1f62d7cd9c
 DIST DisplayCAL-3.6.0.0.tar.gz 10565171 BLAKE2B 
394a925d28f513ededc1bc40b3ce7b5a2687a0c172006fd14b9081188e3ca80c0cd5f634ac84a9917d6aa301e083bffd05db622e292262f6d41db2a86c23a920
 SHA512 
6d0cff6344bb0dfcff58e88f93e2d0f7a3cf5f8e32b596f9f5e07b0e80ccb9b4ff429aa9fa63b5941f7622e0a7dcd227d0a1066e82d0843454f01d96dea97993
+DIST DisplayCAL-3.6.1.1.tar.gz 10433827 BLAKE2B 
3e06ea90d820bcc96eb8de8d2fabf9d60997092e1529b3a0a6544bfd42f89380bb2525e27c075a3b8c55721d659b485188e8e7f2e872622ed9e6b6ebc87ac662
 SHA512 
03835117f53fb8c9d7cedfe67719b70878c3b62c20894a999c971d1d820dc7ec386ad68b8d4cf19496005abf2235e789526e6632b11d82f971f944b5f4dfdac6

diff --git a/media-gfx/displaycal/displaycal-3.6.1.1.ebuild 
b/media-gfx/displaycal/displaycal-3.6.1.1.ebuild
new file mode 100644
index 000..72a722b6435
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.6.1.1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-07-24 Thread Bernard Cafarelli
commit: 5259af39162705e7cf4b90c72d8de849f9cec8bb
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jul 24 13:00:28 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jul 24 13:01:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5259af39

media-gfx/displaycal: drop old

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 media-gfx/displaycal/Manifest |  2 -
 media-gfx/displaycal/displaycal-3.5.1.0-r1.ebuild | 63 ---
 media-gfx/displaycal/displaycal-3.5.2.0-r1.ebuild | 63 ---
 3 files changed, 128 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 2e5a7d8bf14..b9313120c94 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,4 +1,2 @@
-DIST DisplayCAL-3.5.1.0.tar.gz 10378539 BLAKE2B 
b10e3f70401b9167728c4fc9b59bf66da7e3a09040fdf0800e9697aa9bc328d7d70e4018d14856fbde1a20028ef3aec2922727282050c291ed5a8c83209178e3
 SHA512 
7dd0c67c8766478223f1e36a36d386b0e8d284001642e34fd1aa27e196fc36be1fd98340f4af202c4b171aa44da9f9d20a53f8dda11ba5e270a1071351fc7a6a
-DIST DisplayCAL-3.5.2.0.tar.gz 10341417 BLAKE2B 
218d73756c57107b17a475101a8969af4213ce0417669b5d18f009320cab970da125ddae68a3288f61f05be99f3e2a621a727c2cf6b4aeae43252c8d257ed3af
 SHA512 
607a63c94fbebf916009327bf473c45e6e785e5dfa57bd0b5868616a57b7af1aa3173a43cd7e371b43a8078ad350ff27178c6c13b46a3e67e28a4397c5586665
 DIST DisplayCAL-3.5.3.0.tar.gz 10559161 BLAKE2B 
a3eb968dcd0b5edbcf22a0ec84da55d8660ffa8782135a908db8ea7a6480ce7be9a59528d35a73b7eb57c9c0dd46996407ea3de834a85e6da1c5d006b8aa33b3
 SHA512 
ddb405c1d8b7bc5aefac80fb79edbb03c2a3b32821c8bbbdd6d095312fff57e8ffe5e53cc5b53c56fa32e6bcbc10cd76598441d750008c38a512ed1f62d7cd9c
 DIST DisplayCAL-3.6.0.0.tar.gz 10565171 BLAKE2B 
394a925d28f513ededc1bc40b3ce7b5a2687a0c172006fd14b9081188e3ca80c0cd5f634ac84a9917d6aa301e083bffd05db622e292262f6d41db2a86c23a920
 SHA512 
6d0cff6344bb0dfcff58e88f93e2d0f7a3cf5f8e32b596f9f5e07b0e80ccb9b4ff429aa9fa63b5941f7622e0a7dcd227d0a1066e82d0843454f01d96dea97993

diff --git a/media-gfx/displaycal/displaycal-3.5.1.0-r1.ebuild 
b/media-gfx/displaycal/displaycal-3.5.1.0-r1.ebuild
deleted file mode 100644
index 72a722b6435..000
--- a/media-gfx/displaycal/displaycal-3.5.1.0-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1
-"
-
-# Just in case someone renames the ebuild
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   # Do not generate udev/hotplug files
-   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
-   -i DisplayCAL/setup.py || die
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
-   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
-   -i DisplayCAL/postinstall.py || die
-
-   # Remove deprecated Encoding key from .desktop file
-   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
-
-   # Remove x-world Media Type
-   sed -e 's/x\-world\/x\-vrml\;//g' \
-   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
-
-   distutils-r1_src_prepare
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_icon_cache_update
-}

diff --git a/media-gfx/displaycal/displaycal-3.5.2.0-r1.ebuild 
b/media-gfx/displaycal/displaycal-3.5.2.0-r1.ebuild
deleted file mode 100644
index 72a722b6435..000
--- a/media-gfx/displaycal/displaycal-3.5.2.0-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2

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

2018-07-24 Thread Bernard Cafarelli
commit: d7c840c5fdf1aea28f93db6d4b3ab6ae702e3f6a
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jul 24 13:00:10 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jul 24 13:01:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7c840c5

media-gfx/displaycal: 3.6.0.0 bump

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.6.0.0.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index b0c2b5c6bee..2e5a7d8bf14 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,4 @@
 DIST DisplayCAL-3.5.1.0.tar.gz 10378539 BLAKE2B 
b10e3f70401b9167728c4fc9b59bf66da7e3a09040fdf0800e9697aa9bc328d7d70e4018d14856fbde1a20028ef3aec2922727282050c291ed5a8c83209178e3
 SHA512 
7dd0c67c8766478223f1e36a36d386b0e8d284001642e34fd1aa27e196fc36be1fd98340f4af202c4b171aa44da9f9d20a53f8dda11ba5e270a1071351fc7a6a
 DIST DisplayCAL-3.5.2.0.tar.gz 10341417 BLAKE2B 
218d73756c57107b17a475101a8969af4213ce0417669b5d18f009320cab970da125ddae68a3288f61f05be99f3e2a621a727c2cf6b4aeae43252c8d257ed3af
 SHA512 
607a63c94fbebf916009327bf473c45e6e785e5dfa57bd0b5868616a57b7af1aa3173a43cd7e371b43a8078ad350ff27178c6c13b46a3e67e28a4397c5586665
 DIST DisplayCAL-3.5.3.0.tar.gz 10559161 BLAKE2B 
a3eb968dcd0b5edbcf22a0ec84da55d8660ffa8782135a908db8ea7a6480ce7be9a59528d35a73b7eb57c9c0dd46996407ea3de834a85e6da1c5d006b8aa33b3
 SHA512 
ddb405c1d8b7bc5aefac80fb79edbb03c2a3b32821c8bbbdd6d095312fff57e8ffe5e53cc5b53c56fa32e6bcbc10cd76598441d750008c38a512ed1f62d7cd9c
+DIST DisplayCAL-3.6.0.0.tar.gz 10565171 BLAKE2B 
394a925d28f513ededc1bc40b3ce7b5a2687a0c172006fd14b9081188e3ca80c0cd5f634ac84a9917d6aa301e083bffd05db622e292262f6d41db2a86c23a920
 SHA512 
6d0cff6344bb0dfcff58e88f93e2d0f7a3cf5f8e32b596f9f5e07b0e80ccb9b4ff429aa9fa63b5941f7622e0a7dcd227d0a1066e82d0843454f01d96dea97993

diff --git a/media-gfx/displaycal/displaycal-3.6.0.0.ebuild 
b/media-gfx/displaycal/displaycal-3.6.0.0.ebuild
new file mode 100644
index 000..72a722b6435
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.6.0.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-04-29 Thread Bernard Cafarelli
commit: 666708d85bf3a950c726c8f5e83a3da247efc796
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Apr 29 22:14:20 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Apr 29 22:14:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=666708d8

media-gfx/displaycal: 3.5.3.0 bump

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.5.3.0.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 716d82695e1..b0c2b5c6bee 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.5.1.0.tar.gz 10378539 BLAKE2B 
b10e3f70401b9167728c4fc9b59bf66da7e3a09040fdf0800e9697aa9bc328d7d70e4018d14856fbde1a20028ef3aec2922727282050c291ed5a8c83209178e3
 SHA512 
7dd0c67c8766478223f1e36a36d386b0e8d284001642e34fd1aa27e196fc36be1fd98340f4af202c4b171aa44da9f9d20a53f8dda11ba5e270a1071351fc7a6a
 DIST DisplayCAL-3.5.2.0.tar.gz 10341417 BLAKE2B 
218d73756c57107b17a475101a8969af4213ce0417669b5d18f009320cab970da125ddae68a3288f61f05be99f3e2a621a727c2cf6b4aeae43252c8d257ed3af
 SHA512 
607a63c94fbebf916009327bf473c45e6e785e5dfa57bd0b5868616a57b7af1aa3173a43cd7e371b43a8078ad350ff27178c6c13b46a3e67e28a4397c5586665
+DIST DisplayCAL-3.5.3.0.tar.gz 10559161 BLAKE2B 
a3eb968dcd0b5edbcf22a0ec84da55d8660ffa8782135a908db8ea7a6480ce7be9a59528d35a73b7eb57c9c0dd46996407ea3de834a85e6da1c5d006b8aa33b3
 SHA512 
ddb405c1d8b7bc5aefac80fb79edbb03c2a3b32821c8bbbdd6d095312fff57e8ffe5e53cc5b53c56fa32e6bcbc10cd76598441d750008c38a512ed1f62d7cd9c

diff --git a/media-gfx/displaycal/displaycal-3.5.3.0.ebuild 
b/media-gfx/displaycal/displaycal-3.5.3.0.ebuild
new file mode 100644
index 000..72a722b6435
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.5.3.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-04-27 Thread Matt Turner
commit: e239b66e316a88e57e331b7651a484336a345dd3
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Apr 28 00:54:18 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Apr 28 00:54:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e239b66e

media-gfx/displaycal: Drop old versions

 media-gfx/displaycal/Manifest  |  3 --
 media-gfx/displaycal/displaycal-3.3.5.0.ebuild | 62 -
 media-gfx/displaycal/displaycal-3.4.0.0.ebuild | 64 --
 media-gfx/displaycal/displaycal-3.5.0.0.ebuild | 64 --
 4 files changed, 193 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 93c54c4d728..716d82695e1 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,5 +1,2 @@
-DIST DisplayCAL-3.3.5.0.tar.gz 9913672 BLAKE2B 
de95217baf18a3b07b51a9db24e37cd965ecf5ba96392410f7f5af788b696f69260eac5c0188cbd3a2f1b90dfafe781cd711c04a9bd45dd5a2fa59fd547087b2
 SHA512 
7a24cbc540771fd26b504536ee0c1b9c34f013c19b5b2a4e1ce38015014e9b34e67b48a1f08bf96581cef2968883691206ddb6cefa9ac70d76251a305a5b1c37
-DIST DisplayCAL-3.4.0.0.tar.gz 10279645 BLAKE2B 
cf0b6d841c26d8ee4eec47fa58071e31e1ae4c8f1cd63f08216dbfd33caeb900d767988aa19f1738bdbe3c180954a13be22fdd96187b32edc8b0419b945670be
 SHA512 
a63cda986a70cef844908c5809157af28473b564c97fa4c1b957102401b177b254cd215b1cb7c8192873e6d1b204dca66f5a08862f27e0d2f0c06b6ceeaae25e
-DIST DisplayCAL-3.5.0.0.tar.gz 10371665 BLAKE2B 
f3854d602857ed260ab5bee3d43f9dafc8b4a55115ea9746c75fa679026493f3d11fd79c68270390de2175639d14796ce2e4cf20e34324b0af037630d118d293
 SHA512 
968f14edc5fc821de692dfd200c06068c259153afa684fb639f2867a356b435a35b5c7f4120a90c7d3d5ec3b0200cf0c8593bed6c364fcd7130013ec97ac09af
 DIST DisplayCAL-3.5.1.0.tar.gz 10378539 BLAKE2B 
b10e3f70401b9167728c4fc9b59bf66da7e3a09040fdf0800e9697aa9bc328d7d70e4018d14856fbde1a20028ef3aec2922727282050c291ed5a8c83209178e3
 SHA512 
7dd0c67c8766478223f1e36a36d386b0e8d284001642e34fd1aa27e196fc36be1fd98340f4af202c4b171aa44da9f9d20a53f8dda11ba5e270a1071351fc7a6a
 DIST DisplayCAL-3.5.2.0.tar.gz 10341417 BLAKE2B 
218d73756c57107b17a475101a8969af4213ce0417669b5d18f009320cab970da125ddae68a3288f61f05be99f3e2a621a727c2cf6b4aeae43252c8d257ed3af
 SHA512 
607a63c94fbebf916009327bf473c45e6e785e5dfa57bd0b5868616a57b7af1aa3173a43cd7e371b43a8078ad350ff27178c6c13b46a3e67e28a4397c5586665

diff --git a/media-gfx/displaycal/displaycal-3.3.5.0.ebuild 
b/media-gfx/displaycal/displaycal-3.3.5.0.ebuild
deleted file mode 100644
index a78347da3cc..000
--- a/media-gfx/displaycal/displaycal-3.3.5.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-proto/xineramaproto-1.2
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1
-"
-
-# Just in case someone renames the ebuild
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   # Do not generate udev/hotplug files
-   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
-   -i DisplayCAL/setup.py || die
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
-   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
-   -i DisplayCAL/postinstall.py || die
-
-   # Remove deprecated Encoding key from .desktop file
-   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
-
-   # Remove x-world Media Type
-   sed -e 's/x\-world\/x\-vrml\;//g' \
-   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
-
-   distutils-r1_src_prepare
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}

diff --git a/media-gfx/displaycal/displaycal-3.4.0.0.ebuild 
b/media-gfx/displaycal/displaycal-3.4.0.0.ebuild
deleted file mode 100644
index d955f9b1fea..000
--- a/media-gfx/displaycal/displaycal-3.4.0.0.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by 

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

2018-04-27 Thread Matt Turner
commit: 0ce31bacea0600f23d4a4e15d56c856e81118743
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Apr 28 00:55:06 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Apr 28 00:55:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ce31bac

media-gfx/displaycal: Drop unnecessary x11-proto dep

 .../{displaycal-3.5.1.0.ebuild => displaycal-3.5.1.0-r1.ebuild}  | 1 -
 .../{displaycal-3.5.2.0.ebuild => displaycal-3.5.2.0-r1.ebuild}  | 1 -
 2 files changed, 2 deletions(-)

diff --git a/media-gfx/displaycal/displaycal-3.5.1.0.ebuild 
b/media-gfx/displaycal/displaycal-3.5.1.0-r1.ebuild
similarity index 98%
rename from media-gfx/displaycal/displaycal-3.5.1.0.ebuild
rename to media-gfx/displaycal/displaycal-3.5.1.0-r1.ebuild
index d955f9b1fea..72a722b6435 100644
--- a/media-gfx/displaycal/displaycal-3.5.1.0.ebuild
+++ b/media-gfx/displaycal/displaycal-3.5.1.0-r1.ebuild
@@ -24,7 +24,6 @@ DEPEND="
>=x11-libs/libX11-1.3.3
>=x11-apps/xrandr-1.3.2
>=x11-libs/libXxf86vm-1.1.0
-   >=x11-proto/xineramaproto-1.2
>=x11-libs/libXinerama-1.1
 "
 RDEPEND="${DEPEND}

diff --git a/media-gfx/displaycal/displaycal-3.5.2.0.ebuild 
b/media-gfx/displaycal/displaycal-3.5.2.0-r1.ebuild
similarity index 98%
rename from media-gfx/displaycal/displaycal-3.5.2.0.ebuild
rename to media-gfx/displaycal/displaycal-3.5.2.0-r1.ebuild
index d955f9b1fea..72a722b6435 100644
--- a/media-gfx/displaycal/displaycal-3.5.2.0.ebuild
+++ b/media-gfx/displaycal/displaycal-3.5.2.0-r1.ebuild
@@ -24,7 +24,6 @@ DEPEND="
>=x11-libs/libX11-1.3.3
>=x11-apps/xrandr-1.3.2
>=x11-libs/libXxf86vm-1.1.0
-   >=x11-proto/xineramaproto-1.2
>=x11-libs/libXinerama-1.1
 "
 RDEPEND="${DEPEND}



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

2018-04-05 Thread Bernard Cafarelli
commit: 5b21953a3384425cc990e2057a4a5f8ccd3d67bd
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Apr  5 08:41:39 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Apr  5 08:41:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b21953a

media-gfx/displaycal: 3.5.2.0 bump

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.5.2.0.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index bfd3d755000..93c54c4d728 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -2,3 +2,4 @@ DIST DisplayCAL-3.3.5.0.tar.gz 9913672 BLAKE2B 
de95217baf18a3b07b51a9db24e37cd96
 DIST DisplayCAL-3.4.0.0.tar.gz 10279645 BLAKE2B 
cf0b6d841c26d8ee4eec47fa58071e31e1ae4c8f1cd63f08216dbfd33caeb900d767988aa19f1738bdbe3c180954a13be22fdd96187b32edc8b0419b945670be
 SHA512 
a63cda986a70cef844908c5809157af28473b564c97fa4c1b957102401b177b254cd215b1cb7c8192873e6d1b204dca66f5a08862f27e0d2f0c06b6ceeaae25e
 DIST DisplayCAL-3.5.0.0.tar.gz 10371665 BLAKE2B 
f3854d602857ed260ab5bee3d43f9dafc8b4a55115ea9746c75fa679026493f3d11fd79c68270390de2175639d14796ce2e4cf20e34324b0af037630d118d293
 SHA512 
968f14edc5fc821de692dfd200c06068c259153afa684fb639f2867a356b435a35b5c7f4120a90c7d3d5ec3b0200cf0c8593bed6c364fcd7130013ec97ac09af
 DIST DisplayCAL-3.5.1.0.tar.gz 10378539 BLAKE2B 
b10e3f70401b9167728c4fc9b59bf66da7e3a09040fdf0800e9697aa9bc328d7d70e4018d14856fbde1a20028ef3aec2922727282050c291ed5a8c83209178e3
 SHA512 
7dd0c67c8766478223f1e36a36d386b0e8d284001642e34fd1aa27e196fc36be1fd98340f4af202c4b171aa44da9f9d20a53f8dda11ba5e270a1071351fc7a6a
+DIST DisplayCAL-3.5.2.0.tar.gz 10341417 BLAKE2B 
218d73756c57107b17a475101a8969af4213ce0417669b5d18f009320cab970da125ddae68a3288f61f05be99f3e2a621a727c2cf6b4aeae43252c8d257ed3af
 SHA512 
607a63c94fbebf916009327bf473c45e6e785e5dfa57bd0b5868616a57b7af1aa3173a43cd7e371b43a8078ad350ff27178c6c13b46a3e67e28a4397c5586665

diff --git a/media-gfx/displaycal/displaycal-3.5.2.0.ebuild 
b/media-gfx/displaycal/displaycal-3.5.2.0.ebuild
new file mode 100644
index 000..d955f9b1fea
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.5.2.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-03-22 Thread Bernard Cafarelli
commit: 01974deafedac4814f08dcbaf01bfd5818078b45
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Mar 22 13:38:58 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Mar 22 13:39:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01974dea

media-gfx/displaycal: 3.5.1.0 bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.5.1.0.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index f7ada34685e..bfd3d755000 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,4 @@
 DIST DisplayCAL-3.3.5.0.tar.gz 9913672 BLAKE2B 
de95217baf18a3b07b51a9db24e37cd965ecf5ba96392410f7f5af788b696f69260eac5c0188cbd3a2f1b90dfafe781cd711c04a9bd45dd5a2fa59fd547087b2
 SHA512 
7a24cbc540771fd26b504536ee0c1b9c34f013c19b5b2a4e1ce38015014e9b34e67b48a1f08bf96581cef2968883691206ddb6cefa9ac70d76251a305a5b1c37
 DIST DisplayCAL-3.4.0.0.tar.gz 10279645 BLAKE2B 
cf0b6d841c26d8ee4eec47fa58071e31e1ae4c8f1cd63f08216dbfd33caeb900d767988aa19f1738bdbe3c180954a13be22fdd96187b32edc8b0419b945670be
 SHA512 
a63cda986a70cef844908c5809157af28473b564c97fa4c1b957102401b177b254cd215b1cb7c8192873e6d1b204dca66f5a08862f27e0d2f0c06b6ceeaae25e
 DIST DisplayCAL-3.5.0.0.tar.gz 10371665 BLAKE2B 
f3854d602857ed260ab5bee3d43f9dafc8b4a55115ea9746c75fa679026493f3d11fd79c68270390de2175639d14796ce2e4cf20e34324b0af037630d118d293
 SHA512 
968f14edc5fc821de692dfd200c06068c259153afa684fb639f2867a356b435a35b5c7f4120a90c7d3d5ec3b0200cf0c8593bed6c364fcd7130013ec97ac09af
+DIST DisplayCAL-3.5.1.0.tar.gz 10378539 BLAKE2B 
b10e3f70401b9167728c4fc9b59bf66da7e3a09040fdf0800e9697aa9bc328d7d70e4018d14856fbde1a20028ef3aec2922727282050c291ed5a8c83209178e3
 SHA512 
7dd0c67c8766478223f1e36a36d386b0e8d284001642e34fd1aa27e196fc36be1fd98340f4af202c4b171aa44da9f9d20a53f8dda11ba5e270a1071351fc7a6a

diff --git a/media-gfx/displaycal/displaycal-3.5.1.0.ebuild 
b/media-gfx/displaycal/displaycal-3.5.1.0.ebuild
new file mode 100644
index 000..d955f9b1fea
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.5.1.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-02-23 Thread Bernard Cafarelli
commit: be6d86dbe7217d10368bcfe13f2140d4b733e5c2
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Feb 23 09:14:02 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Feb 23 13:49:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be6d86db

media-gfx/displaycal: 3.5.0.0 bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.5.0.0.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 66a1c71acb0..f7ada34685e 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.3.5.0.tar.gz 9913672 BLAKE2B 
de95217baf18a3b07b51a9db24e37cd965ecf5ba96392410f7f5af788b696f69260eac5c0188cbd3a2f1b90dfafe781cd711c04a9bd45dd5a2fa59fd547087b2
 SHA512 
7a24cbc540771fd26b504536ee0c1b9c34f013c19b5b2a4e1ce38015014e9b34e67b48a1f08bf96581cef2968883691206ddb6cefa9ac70d76251a305a5b1c37
 DIST DisplayCAL-3.4.0.0.tar.gz 10279645 BLAKE2B 
cf0b6d841c26d8ee4eec47fa58071e31e1ae4c8f1cd63f08216dbfd33caeb900d767988aa19f1738bdbe3c180954a13be22fdd96187b32edc8b0419b945670be
 SHA512 
a63cda986a70cef844908c5809157af28473b564c97fa4c1b957102401b177b254cd215b1cb7c8192873e6d1b204dca66f5a08862f27e0d2f0c06b6ceeaae25e
+DIST DisplayCAL-3.5.0.0.tar.gz 10371665 BLAKE2B 
f3854d602857ed260ab5bee3d43f9dafc8b4a55115ea9746c75fa679026493f3d11fd79c68270390de2175639d14796ce2e4cf20e34324b0af037630d118d293
 SHA512 
968f14edc5fc821de692dfd200c06068c259153afa684fb639f2867a356b435a35b5c7f4120a90c7d3d5ec3b0200cf0c8593bed6c364fcd7130013ec97ac09af

diff --git a/media-gfx/displaycal/displaycal-3.5.0.0.ebuild 
b/media-gfx/displaycal/displaycal-3.5.0.0.ebuild
new file mode 100644
index 000..d955f9b1fea
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.5.0.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-01-02 Thread Bernard Cafarelli
commit: dcc46c5ef99981d8476075dbbf0b93e7ddd5c768
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jan  2 09:34:04 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jan  2 10:18:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc46c5e

media-gfx/displaycal: drop old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-gfx/displaycal/Manifest  |  2 -
 media-gfx/displaycal/displaycal-3.3.3.0.ebuild | 54 --
 media-gfx/displaycal/displaycal-3.3.4.1.ebuild | 54 --
 3 files changed, 110 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 2703392f8c2..00134aadd02 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1 @@
-DIST DisplayCAL-3.3.3.0.tar.gz 9887918 BLAKE2B 
a26198a13cc1119ae0e5605409e9bb6fb2e922eaf249c002fcf523d7af68f9a21b993a4f171254bdf6286f9923bd435b252ba0938e3e5a14f690b57eb45eee13
 SHA512 
2f9ac1ac2ce24629695f70078625ac4dc6e1346a675cd55658efc3631a6a37546cf6dc7b2747ae77b3681e7f7c816527497f53564e6cb51ce71a132d93955534
-DIST DisplayCAL-3.3.4.1.tar.gz 9909570 BLAKE2B 
ee66c580c72f823cc0ea9f618e0eea84992d375dd17e3e942aeee19a1c8f81d47c2b431de2c36ed7e384cf089efb530853e7a884a1ec2fbdd6d3dab7007c868c
 SHA512 
c596333e298aea9366c808c074e467a49e32fa00b0534ae8ce6ad89d0250cf1f2a013dac0d87444edb911bcdea053a462026e335cfc2aa507a932217f1dcd272
 DIST DisplayCAL-3.3.5.0.tar.gz 9913672 BLAKE2B 
de95217baf18a3b07b51a9db24e37cd965ecf5ba96392410f7f5af788b696f69260eac5c0188cbd3a2f1b90dfafe781cd711c04a9bd45dd5a2fa59fd547087b2
 SHA512 
7a24cbc540771fd26b504536ee0c1b9c34f013c19b5b2a4e1ce38015014e9b34e67b48a1f08bf96581cef2968883691206ddb6cefa9ac70d76251a305a5b1c37

diff --git a/media-gfx/displaycal/displaycal-3.3.3.0.ebuild 
b/media-gfx/displaycal/displaycal-3.3.3.0.ebuild
deleted file mode 100644
index 4beb3e30e0d..000
--- a/media-gfx/displaycal/displaycal-3.3.3.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-proto/xineramaproto-1.2
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1
-"
-
-# Just in case someone renames the ebuild
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   # Do not generate udev/hotplug files
-   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
-   -i DisplayCAL/setup.py || die
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
-   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
-   -i DisplayCAL/postinstall.py || die
-
-   # Remove deprecated Encoding key from .desktop file
-   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
-
-   # Remove x-world Media Type
-   sed -e 's/x\-world\/x\-vrml\;//g' \
-   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
-
-   distutils-r1_src_prepare
-}

diff --git a/media-gfx/displaycal/displaycal-3.3.4.1.ebuild 
b/media-gfx/displaycal/displaycal-3.3.4.1.ebuild
deleted file mode 100644
index 4beb3e30e0d..000
--- a/media-gfx/displaycal/displaycal-3.3.4.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-proto/xineramaproto-1.2
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1
-"
-
-# Just in case someone renames the ebuild
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   # Do not generate udev/hotplug files
-   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
-   -i DisplayCAL/setup.py || die
-   # Prohibit setup from running xdg-* programs, 

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

2018-01-02 Thread Bernard Cafarelli
commit: 247af5efe0845e4b24385008f240e3e64f5e88c7
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jan  2 10:17:54 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jan  2 10:18:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=247af5ef

media-gfx/displaycal: 3.4.0.0 bump

Closes: https://bugs.gentoo.org/642994
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.4.0.0.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 00134aadd02..66a1c71acb0 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1 +1,2 @@
 DIST DisplayCAL-3.3.5.0.tar.gz 9913672 BLAKE2B 
de95217baf18a3b07b51a9db24e37cd965ecf5ba96392410f7f5af788b696f69260eac5c0188cbd3a2f1b90dfafe781cd711c04a9bd45dd5a2fa59fd547087b2
 SHA512 
7a24cbc540771fd26b504536ee0c1b9c34f013c19b5b2a4e1ce38015014e9b34e67b48a1f08bf96581cef2968883691206ddb6cefa9ac70d76251a305a5b1c37
+DIST DisplayCAL-3.4.0.0.tar.gz 10279645 BLAKE2B 
cf0b6d841c26d8ee4eec47fa58071e31e1ae4c8f1cd63f08216dbfd33caeb900d767988aa19f1738bdbe3c180954a13be22fdd96187b32edc8b0419b945670be
 SHA512 
a63cda986a70cef844908c5809157af28473b564c97fa4c1b957102401b177b254cd215b1cb7c8192873e6d1b204dca66f5a08862f27e0d2f0c06b6ceeaae25e

diff --git a/media-gfx/displaycal/displaycal-3.4.0.0.ebuild 
b/media-gfx/displaycal/displaycal-3.4.0.0.ebuild
new file mode 100644
index 000..d955f9b1fea
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.4.0.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2017-11-02 Thread Bernard Cafarelli
commit: cf36a2d328bdf6fffdb03d704ea4bc548a0fd9c1
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Nov  2 12:48:30 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Nov  2 12:52:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf36a2d3

media-gfx/displaycal: 3.3.5.0

Update gtk+ icon cache on postinstall/postrm steps

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.3.5.0.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 6abdd0f9d91..f47dd46796e 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.3.3.0.tar.gz 9887918 SHA256 
47bcd09a44d43eb550fcd6f486d3f37c204a17b74fd9517991707856f54ca178 SHA512 
2f9ac1ac2ce24629695f70078625ac4dc6e1346a675cd55658efc3631a6a37546cf6dc7b2747ae77b3681e7f7c816527497f53564e6cb51ce71a132d93955534
 WHIRLPOOL 
9b68dad41092d29fc7c15b34cfe3b1b034d7100eb8eeabbc1d9b1214c7670dc423fd9767830c2cf2ef007d2cc14238a0d608658206c76b0db59408d08daf863c
 DIST DisplayCAL-3.3.4.1.tar.gz 9909570 SHA256 
0f4b15ef1b9bbc4ef5107651149373bb7c3dd76c524d55f9143b717e0fb0ad53 SHA512 
c596333e298aea9366c808c074e467a49e32fa00b0534ae8ce6ad89d0250cf1f2a013dac0d87444edb911bcdea053a462026e335cfc2aa507a932217f1dcd272
 WHIRLPOOL 
0d74647f8876d6d97ccc9c969fd8a21264135f83b3db838702dd6545851670b89c48ed206ab247d885d3e80abe75378268be5a3b6c9db0981efab98a44f24fb0
+DIST DisplayCAL-3.3.5.0.tar.gz 9913672 SHA256 
17045d971fc17ab75736a9d1e24afbbae3f062b4809e86c625e92884a0dc8fab SHA512 
7a24cbc540771fd26b504536ee0c1b9c34f013c19b5b2a4e1ce38015014e9b34e67b48a1f08bf96581cef2968883691206ddb6cefa9ac70d76251a305a5b1c37
 WHIRLPOOL 
1ceb7608d660cbb1f883c8853ef1f8be5a8fd7cb110abc9e49906ff5015ec92bf323ea43f6575eb084c610be202b3c6e40293546c711ed03c4972ff1b1705850

diff --git a/media-gfx/displaycal/displaycal-3.3.5.0.ebuild 
b/media-gfx/displaycal/displaycal-3.3.5.0.ebuild
new file mode 100644
index 000..a78347da3cc
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.3.5.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2017-09-19 Thread Bernard Cafarelli
commit: fe58e01508e0ebf31031d88003dea1903c6aefb1
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Sep 19 08:49:34 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Sep 19 10:08:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe58e015

media-gfx/displaycal: drop old

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 media-gfx/displaycal/Manifest  |  4 --
 media-gfx/displaycal/displaycal-3.2.4.0.ebuild | 54 --
 media-gfx/displaycal/displaycal-3.3.0.0.ebuild | 54 --
 media-gfx/displaycal/displaycal-3.3.1.0.ebuild | 54 --
 media-gfx/displaycal/displaycal-3.3.2.0.ebuild | 54 --
 5 files changed, 220 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index f3dec32c142..62181b305da 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,5 +1 @@
-DIST DisplayCAL-3.2.4.0.tar.gz 9759425 SHA256 
6851d801d36ab11ba3f65fbc0b8882ebf6a265fb1f0ce7bbab333434c686936b SHA512 
87c63f6c2710592b31233ff906b0670d1b733f4fe7c1500e19305739a5658b38059ff1cc91e27b5d7e8dbb780f16d00c05cc84d0e42ce717a481d999fdd33a54
 WHIRLPOOL 
948344e781a9cf5613b8e31cfdca64c4ab72337744d0f3544c36fc081f8b34c0c099d42d981bf7cdd88a1f246154d26ee781f24f6f6f0a5577d9cd050f325508
-DIST DisplayCAL-3.3.0.0.tar.gz 9882703 SHA256 
32419d6435fc7369eb6f4320317573ea3b5ec1f204fd299ac81a39aeba68c5ea SHA512 
1605845ff63821c1464feffa559b632c1e590e9f8456887e604a89443d65d6c5413ca26edaf1847d7b9b48a338baab0c59cf61fe845f5927e24d9f3af231d77c
 WHIRLPOOL 
fc46708cc5ca411bd014baff24afa36d746857c7753c8d49d8aefd761f79fe4e84195168601de08db06d88a0cc35de6ac32781531f7a2b4c7f5008572a062ade
-DIST DisplayCAL-3.3.1.0.tar.gz 9884394 SHA256 
76318a42f9260887639e445308311e1022ea315b85572b26ae6030dc9827c842 SHA512 
989ea0f7a93d7238b9d9f9d5bf7d2e60d483821668d1280ecbf0cf70626b4a53055fce8f9eda5dc6ef87809d2878a335ffa3313e4353c8b567769e27d360e605
 WHIRLPOOL 
dfa8670a5c6b6da72eaa9c4c090ee969bbe4c468415c2631abbb7cbb32b17b4a92f2a21ad85dce559f56b215c4fea1f5dc8f56e7618caea1b19addd28d76dd68
-DIST DisplayCAL-3.3.2.0.tar.gz 9887778 SHA256 
fd06df52e753bce1ea7b626f2a1c8c241a151bba7767074e0be6821a0fa8e464 SHA512 
8901f7b9fa94129c457ad8f7c8eaa9058a115cb5828e41508a7eb7ccac0ce6d8b68b7bc5426c341d57e51dfc459eeabd5beff923ad4366763473dca0a680d9a4
 WHIRLPOOL 
791f7233e8df919080bf81ef6d067bfa51106977331261782e5028f312854858c8afea61d1904dbb77fdb69253169cfb3922eb1aa91d40d6ccf14dc0aa5640be
 DIST DisplayCAL-3.3.3.0.tar.gz 9887918 SHA256 
47bcd09a44d43eb550fcd6f486d3f37c204a17b74fd9517991707856f54ca178 SHA512 
2f9ac1ac2ce24629695f70078625ac4dc6e1346a675cd55658efc3631a6a37546cf6dc7b2747ae77b3681e7f7c816527497f53564e6cb51ce71a132d93955534
 WHIRLPOOL 
9b68dad41092d29fc7c15b34cfe3b1b034d7100eb8eeabbc1d9b1214c7670dc423fd9767830c2cf2ef007d2cc14238a0d608658206c76b0db59408d08daf863c

diff --git a/media-gfx/displaycal/displaycal-3.2.4.0.ebuild 
b/media-gfx/displaycal/displaycal-3.2.4.0.ebuild
deleted file mode 100644
index 4beb3e30e0d..000
--- a/media-gfx/displaycal/displaycal-3.2.4.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 xdg
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   >=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:3.0
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-proto/xineramaproto-1.2
-   >=x11-libs/libXinerama-1.1
-"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1
-"
-
-# Just in case someone renames the ebuild
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   # Do not generate udev/hotplug files
-   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
-   -i DisplayCAL/setup.py || die
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
-   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
-   -i DisplayCAL/postinstall.py || die
-
-   # Remove deprecated Encoding key from .desktop file
-   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
-
-   # Remove x-world Media Type
-   sed -e 's/x\-world\/x\-vrml\;//g' \
-   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
-
-   distutils-r1_src_prepare
-}

diff --git a/media-gfx/displaycal/displaycal-3.3.0.0.ebuild 
b/media-gfx/displaycal/displaycal-3.3.0.0.ebuild
deleted file mode 100644
index 4beb3e30e0d..000
--- 

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

2017-09-19 Thread Bernard Cafarelli
commit: 7f1142915e02b5649adf9e8fbe4c75985c53fdb3
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Sep 19 08:50:26 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Sep 19 10:08:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f114291

media-gfx/displaycal: 3.3.4.1 bump

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.3.4.1.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 62181b305da..6abdd0f9d91 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1 +1,2 @@
 DIST DisplayCAL-3.3.3.0.tar.gz 9887918 SHA256 
47bcd09a44d43eb550fcd6f486d3f37c204a17b74fd9517991707856f54ca178 SHA512 
2f9ac1ac2ce24629695f70078625ac4dc6e1346a675cd55658efc3631a6a37546cf6dc7b2747ae77b3681e7f7c816527497f53564e6cb51ce71a132d93955534
 WHIRLPOOL 
9b68dad41092d29fc7c15b34cfe3b1b034d7100eb8eeabbc1d9b1214c7670dc423fd9767830c2cf2ef007d2cc14238a0d608658206c76b0db59408d08daf863c
+DIST DisplayCAL-3.3.4.1.tar.gz 9909570 SHA256 
0f4b15ef1b9bbc4ef5107651149373bb7c3dd76c524d55f9143b717e0fb0ad53 SHA512 
c596333e298aea9366c808c074e467a49e32fa00b0534ae8ce6ad89d0250cf1f2a013dac0d87444edb911bcdea053a462026e335cfc2aa507a932217f1dcd272
 WHIRLPOOL 
0d74647f8876d6d97ccc9c969fd8a21264135f83b3db838702dd6545851670b89c48ed206ab247d885d3e80abe75378268be5a3b6c9db0981efab98a44f24fb0

diff --git a/media-gfx/displaycal/displaycal-3.3.4.1.ebuild 
b/media-gfx/displaycal/displaycal-3.3.4.1.ebuild
new file mode 100644
index 000..4beb3e30e0d
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.3.4.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}



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

2017-08-30 Thread Bernard Cafarelli
commit: d97800d6ec8a8f6104d56ded72a59fea4d2ddd2e
Author: Nick Sarnie  gmail  com>
AuthorDate: Sun Aug 13 16:08:17 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Aug 30 11:32:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d97800d6

media-gfx/displaycal: 3.3.3.0 bump

Signed-off-by: Nick Sarnie  gmail.com>
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.3.3.0.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 6845e35d77f..f3dec32c142 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -2,3 +2,4 @@ DIST DisplayCAL-3.2.4.0.tar.gz 9759425 SHA256 
6851d801d36ab11ba3f65fbc0b8882ebf6
 DIST DisplayCAL-3.3.0.0.tar.gz 9882703 SHA256 
32419d6435fc7369eb6f4320317573ea3b5ec1f204fd299ac81a39aeba68c5ea SHA512 
1605845ff63821c1464feffa559b632c1e590e9f8456887e604a89443d65d6c5413ca26edaf1847d7b9b48a338baab0c59cf61fe845f5927e24d9f3af231d77c
 WHIRLPOOL 
fc46708cc5ca411bd014baff24afa36d746857c7753c8d49d8aefd761f79fe4e84195168601de08db06d88a0cc35de6ac32781531f7a2b4c7f5008572a062ade
 DIST DisplayCAL-3.3.1.0.tar.gz 9884394 SHA256 
76318a42f9260887639e445308311e1022ea315b85572b26ae6030dc9827c842 SHA512 
989ea0f7a93d7238b9d9f9d5bf7d2e60d483821668d1280ecbf0cf70626b4a53055fce8f9eda5dc6ef87809d2878a335ffa3313e4353c8b567769e27d360e605
 WHIRLPOOL 
dfa8670a5c6b6da72eaa9c4c090ee969bbe4c468415c2631abbb7cbb32b17b4a92f2a21ad85dce559f56b215c4fea1f5dc8f56e7618caea1b19addd28d76dd68
 DIST DisplayCAL-3.3.2.0.tar.gz 9887778 SHA256 
fd06df52e753bce1ea7b626f2a1c8c241a151bba7767074e0be6821a0fa8e464 SHA512 
8901f7b9fa94129c457ad8f7c8eaa9058a115cb5828e41508a7eb7ccac0ce6d8b68b7bc5426c341d57e51dfc459eeabd5beff923ad4366763473dca0a680d9a4
 WHIRLPOOL 
791f7233e8df919080bf81ef6d067bfa51106977331261782e5028f312854858c8afea61d1904dbb77fdb69253169cfb3922eb1aa91d40d6ccf14dc0aa5640be
+DIST DisplayCAL-3.3.3.0.tar.gz 9887918 SHA256 
47bcd09a44d43eb550fcd6f486d3f37c204a17b74fd9517991707856f54ca178 SHA512 
2f9ac1ac2ce24629695f70078625ac4dc6e1346a675cd55658efc3631a6a37546cf6dc7b2747ae77b3681e7f7c816527497f53564e6cb51ce71a132d93955534
 WHIRLPOOL 
9b68dad41092d29fc7c15b34cfe3b1b034d7100eb8eeabbc1d9b1214c7670dc423fd9767830c2cf2ef007d2cc14238a0d608658206c76b0db59408d08daf863c

diff --git a/media-gfx/displaycal/displaycal-3.3.3.0.ebuild 
b/media-gfx/displaycal/displaycal-3.3.3.0.ebuild
new file mode 100644
index 000..4beb3e30e0d
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.3.3.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}



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

2017-07-03 Thread Bernard Cafarelli
commit: cfee4a731a8d2c0625b7a548a938339b5f692d1c
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jul  3 14:27:38 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jul  3 14:27:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfee4a73

media-gfx/displaycal: 3.3.2.0 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.3.2.0.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index b59924cb978..6845e35d77f 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,4 @@
 DIST DisplayCAL-3.2.4.0.tar.gz 9759425 SHA256 
6851d801d36ab11ba3f65fbc0b8882ebf6a265fb1f0ce7bbab333434c686936b SHA512 
87c63f6c2710592b31233ff906b0670d1b733f4fe7c1500e19305739a5658b38059ff1cc91e27b5d7e8dbb780f16d00c05cc84d0e42ce717a481d999fdd33a54
 WHIRLPOOL 
948344e781a9cf5613b8e31cfdca64c4ab72337744d0f3544c36fc081f8b34c0c099d42d981bf7cdd88a1f246154d26ee781f24f6f6f0a5577d9cd050f325508
 DIST DisplayCAL-3.3.0.0.tar.gz 9882703 SHA256 
32419d6435fc7369eb6f4320317573ea3b5ec1f204fd299ac81a39aeba68c5ea SHA512 
1605845ff63821c1464feffa559b632c1e590e9f8456887e604a89443d65d6c5413ca26edaf1847d7b9b48a338baab0c59cf61fe845f5927e24d9f3af231d77c
 WHIRLPOOL 
fc46708cc5ca411bd014baff24afa36d746857c7753c8d49d8aefd761f79fe4e84195168601de08db06d88a0cc35de6ac32781531f7a2b4c7f5008572a062ade
 DIST DisplayCAL-3.3.1.0.tar.gz 9884394 SHA256 
76318a42f9260887639e445308311e1022ea315b85572b26ae6030dc9827c842 SHA512 
989ea0f7a93d7238b9d9f9d5bf7d2e60d483821668d1280ecbf0cf70626b4a53055fce8f9eda5dc6ef87809d2878a335ffa3313e4353c8b567769e27d360e605
 WHIRLPOOL 
dfa8670a5c6b6da72eaa9c4c090ee969bbe4c468415c2631abbb7cbb32b17b4a92f2a21ad85dce559f56b215c4fea1f5dc8f56e7618caea1b19addd28d76dd68
+DIST DisplayCAL-3.3.2.0.tar.gz 9887778 SHA256 
fd06df52e753bce1ea7b626f2a1c8c241a151bba7767074e0be6821a0fa8e464 SHA512 
8901f7b9fa94129c457ad8f7c8eaa9058a115cb5828e41508a7eb7ccac0ce6d8b68b7bc5426c341d57e51dfc459eeabd5beff923ad4366763473dca0a680d9a4
 WHIRLPOOL 
791f7233e8df919080bf81ef6d067bfa51106977331261782e5028f312854858c8afea61d1904dbb77fdb69253169cfb3922eb1aa91d40d6ccf14dc0aa5640be

diff --git a/media-gfx/displaycal/displaycal-3.3.2.0.ebuild 
b/media-gfx/displaycal/displaycal-3.3.2.0.ebuild
new file mode 100644
index 000..4beb3e30e0d
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.3.2.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}



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

2017-06-09 Thread Bernard Cafarelli
commit: 323f40670259ef0212c7426ee3a047258e6d7e15
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Jun  9 11:10:49 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Jun  9 11:11:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=323f4067

media-gfx/displaycal: 3.3.1.0 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.3.1.0.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 3f49229d05e..b59924cb978 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.2.4.0.tar.gz 9759425 SHA256 
6851d801d36ab11ba3f65fbc0b8882ebf6a265fb1f0ce7bbab333434c686936b SHA512 
87c63f6c2710592b31233ff906b0670d1b733f4fe7c1500e19305739a5658b38059ff1cc91e27b5d7e8dbb780f16d00c05cc84d0e42ce717a481d999fdd33a54
 WHIRLPOOL 
948344e781a9cf5613b8e31cfdca64c4ab72337744d0f3544c36fc081f8b34c0c099d42d981bf7cdd88a1f246154d26ee781f24f6f6f0a5577d9cd050f325508
 DIST DisplayCAL-3.3.0.0.tar.gz 9882703 SHA256 
32419d6435fc7369eb6f4320317573ea3b5ec1f204fd299ac81a39aeba68c5ea SHA512 
1605845ff63821c1464feffa559b632c1e590e9f8456887e604a89443d65d6c5413ca26edaf1847d7b9b48a338baab0c59cf61fe845f5927e24d9f3af231d77c
 WHIRLPOOL 
fc46708cc5ca411bd014baff24afa36d746857c7753c8d49d8aefd761f79fe4e84195168601de08db06d88a0cc35de6ac32781531f7a2b4c7f5008572a062ade
+DIST DisplayCAL-3.3.1.0.tar.gz 9884394 SHA256 
76318a42f9260887639e445308311e1022ea315b85572b26ae6030dc9827c842 SHA512 
989ea0f7a93d7238b9d9f9d5bf7d2e60d483821668d1280ecbf0cf70626b4a53055fce8f9eda5dc6ef87809d2878a335ffa3313e4353c8b567769e27d360e605
 WHIRLPOOL 
dfa8670a5c6b6da72eaa9c4c090ee969bbe4c468415c2631abbb7cbb32b17b4a92f2a21ad85dce559f56b215c4fea1f5dc8f56e7618caea1b19addd28d76dd68

diff --git a/media-gfx/displaycal/displaycal-3.3.1.0.ebuild 
b/media-gfx/displaycal/displaycal-3.3.1.0.ebuild
new file mode 100644
index 000..4beb3e30e0d
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.3.1.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}



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

2017-06-02 Thread Bernard Cafarelli
commit: 0e20bde039386a5546aed5fef02ed8edcea48b8d
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Jun  2 22:23:28 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Jun  2 22:28:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e20bde0

media-gfx/displaycal: drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-gfx/displaycal/Manifest  |  4 --
 media-gfx/displaycal/displaycal-3.1.6.0.ebuild | 78 --
 media-gfx/displaycal/displaycal-3.2.1.0.ebuild | 67 --
 media-gfx/displaycal/displaycal-3.2.2.0.ebuild | 54 --
 media-gfx/displaycal/displaycal-3.2.3.0.ebuild | 54 --
 5 files changed, 257 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 00454913bea..8e8024e32df 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,5 +1 @@
-DIST DisplayCAL-3.1.6.0.tar.gz 9592426 SHA256 
fc27814cf29b3643f8a44973f2139518c133f6a2549ffe51658e765a67cd02fd SHA512 
ea5d0c5028c9dcfc834c03bd50d9e4cd5f4528ac0adf1312117128f8969533f857eaab738019d561b8197ad595ca73ad085db4feb36101df1e303933e1edbd87
 WHIRLPOOL 
6a23f57e606852838b43834d81acd346be1746040d47ac5884c997d828130ddf5b2049b8684d2de42b555ab7b6b6fb4d0430544d2586ca388eb769fbecc86be6
-DIST DisplayCAL-3.2.1.0.tar.gz 9725546 SHA256 
41e71fcec3c0867c94c68e9c56753a3aab614ca3b815cab547b6510926f5321f SHA512 
b2a6fdab470f551361de5743f39a8ed9f23ae1ee47d0573f2f68a30d4cb2be89102f4272f2f99fd674e23ec99c6ee2ab2c89632cdad2394c618275af92d2b942
 WHIRLPOOL 
7081cb274598ca0cdf159c7f3e684a1bd33467f56d49662946740ce8033b002ef0e7060d707354d4d911fe7589788c1ea4f6700f1de25fdb1b34a564b6e5f8a7
-DIST DisplayCAL-3.2.2.0.tar.gz 9728053 SHA256 
013520784841ddb3bef41d60e9bb3f9d0c11c67bf4902cfd6aec25193450ed3e SHA512 
6615b2f8bf8817c56c7691d031d7408b9b608d752319e7a0497a2292f4498ee1e138d6e66f9cca11d1015c1753e96897f68cfb8c32c0f73486c38ff2a8cea8cf
 WHIRLPOOL 
6206d73aae7167f37b37fc378bd7d4590c85a14a2ed4dda2394164e716436cdac926cbe0df7145906c7ded9ad264bcf216a3626426bb221669a0ff690f18586e
-DIST DisplayCAL-3.2.3.0.tar.gz 9730309 SHA256 
6d55765d7c8dd45cf2306bb88fc36655de61253474caeb2a406431d7f3a74c40 SHA512 
837e076f37c215c3341907be85beb659ac60654c0b853b486f2c9eb3141ef6d03c21b94288621b35a0d1f447e1dda870509847475036e2448b4c4b869aaa5e2f
 WHIRLPOOL 
70b21f81ed10909ad532a1e62dbfc948a878b158402a42c82b818676473d68b8605c89dad066d54b17b9711f7ea8b086f4e6c3e3306d40fcd1b3989800e03bae
 DIST DisplayCAL-3.2.4.0.tar.gz 9759425 SHA256 
6851d801d36ab11ba3f65fbc0b8882ebf6a265fb1f0ce7bbab333434c686936b SHA512 
87c63f6c2710592b31233ff906b0670d1b733f4fe7c1500e19305739a5658b38059ff1cc91e27b5d7e8dbb780f16d00c05cc84d0e42ce717a481d999fdd33a54
 WHIRLPOOL 
948344e781a9cf5613b8e31cfdca64c4ab72337744d0f3544c36fc081f8b34c0c099d42d981bf7cdd88a1f246154d26ee781f24f6f6f0a5577d9cd050f325508

diff --git a/media-gfx/displaycal/displaycal-3.1.6.0.ebuild 
b/media-gfx/displaycal/displaycal-3.1.6.0.ebuild
deleted file mode 100644
index 0b7cb64c1b5..000
--- a/media-gfx/displaycal/displaycal-3.1.6.0.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 fdo-mime eutils
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:2.8
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-proto/xineramaproto-1.2
-   >=x11-libs/libXinerama-1.1"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1"
-
-# Just in case someone renames the ebuild
-S=${WORKDIR}/${MY_P}
-
-DOCS=(
-   README.html
-)
-
-src_prepare() {
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   cd "${S}/DisplayCAL" || 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"
-
-   # 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 

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

2017-06-02 Thread Bernard Cafarelli
commit: 4860c51c64993c28115d8fa0a5bac2e043daa3cc
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Jun  2 22:26:44 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Jun  2 22:28:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4860c51c

media-gfx/displaycal: 3.3.0.0 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.3.0.0.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 8e8024e32df..3f49229d05e 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1 +1,2 @@
 DIST DisplayCAL-3.2.4.0.tar.gz 9759425 SHA256 
6851d801d36ab11ba3f65fbc0b8882ebf6a265fb1f0ce7bbab333434c686936b SHA512 
87c63f6c2710592b31233ff906b0670d1b733f4fe7c1500e19305739a5658b38059ff1cc91e27b5d7e8dbb780f16d00c05cc84d0e42ce717a481d999fdd33a54
 WHIRLPOOL 
948344e781a9cf5613b8e31cfdca64c4ab72337744d0f3544c36fc081f8b34c0c099d42d981bf7cdd88a1f246154d26ee781f24f6f6f0a5577d9cd050f325508
+DIST DisplayCAL-3.3.0.0.tar.gz 9882703 SHA256 
32419d6435fc7369eb6f4320317573ea3b5ec1f204fd299ac81a39aeba68c5ea SHA512 
1605845ff63821c1464feffa559b632c1e590e9f8456887e604a89443d65d6c5413ca26edaf1847d7b9b48a338baab0c59cf61fe845f5927e24d9f3af231d77c
 WHIRLPOOL 
fc46708cc5ca411bd014baff24afa36d746857c7753c8d49d8aefd761f79fe4e84195168601de08db06d88a0cc35de6ac32781531f7a2b4c7f5008572a062ade

diff --git a/media-gfx/displaycal/displaycal-3.3.0.0.ebuild 
b/media-gfx/displaycal/displaycal-3.3.0.0.ebuild
new file mode 100644
index 000..4beb3e30e0d
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.3.0.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}



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

2017-03-01 Thread Bernard Cafarelli
commit: ca1601a825cd7f491d2578e63a6c1213416dba77
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Mar  1 10:14:39 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Mar  1 10:14:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca1601a8

media-gfx/displaycal: 3.2.4.0 bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.2.4.0.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index e8bc867d6bd..00454913bea 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -2,3 +2,4 @@ DIST DisplayCAL-3.1.6.0.tar.gz 9592426 SHA256 
fc27814cf29b3643f8a44973f2139518c1
 DIST DisplayCAL-3.2.1.0.tar.gz 9725546 SHA256 
41e71fcec3c0867c94c68e9c56753a3aab614ca3b815cab547b6510926f5321f SHA512 
b2a6fdab470f551361de5743f39a8ed9f23ae1ee47d0573f2f68a30d4cb2be89102f4272f2f99fd674e23ec99c6ee2ab2c89632cdad2394c618275af92d2b942
 WHIRLPOOL 
7081cb274598ca0cdf159c7f3e684a1bd33467f56d49662946740ce8033b002ef0e7060d707354d4d911fe7589788c1ea4f6700f1de25fdb1b34a564b6e5f8a7
 DIST DisplayCAL-3.2.2.0.tar.gz 9728053 SHA256 
013520784841ddb3bef41d60e9bb3f9d0c11c67bf4902cfd6aec25193450ed3e SHA512 
6615b2f8bf8817c56c7691d031d7408b9b608d752319e7a0497a2292f4498ee1e138d6e66f9cca11d1015c1753e96897f68cfb8c32c0f73486c38ff2a8cea8cf
 WHIRLPOOL 
6206d73aae7167f37b37fc378bd7d4590c85a14a2ed4dda2394164e716436cdac926cbe0df7145906c7ded9ad264bcf216a3626426bb221669a0ff690f18586e
 DIST DisplayCAL-3.2.3.0.tar.gz 9730309 SHA256 
6d55765d7c8dd45cf2306bb88fc36655de61253474caeb2a406431d7f3a74c40 SHA512 
837e076f37c215c3341907be85beb659ac60654c0b853b486f2c9eb3141ef6d03c21b94288621b35a0d1f447e1dda870509847475036e2448b4c4b869aaa5e2f
 WHIRLPOOL 
70b21f81ed10909ad532a1e62dbfc948a878b158402a42c82b818676473d68b8605c89dad066d54b17b9711f7ea8b086f4e6c3e3306d40fcd1b3989800e03bae
+DIST DisplayCAL-3.2.4.0.tar.gz 9759425 SHA256 
6851d801d36ab11ba3f65fbc0b8882ebf6a265fb1f0ce7bbab333434c686936b SHA512 
87c63f6c2710592b31233ff906b0670d1b733f4fe7c1500e19305739a5658b38059ff1cc91e27b5d7e8dbb780f16d00c05cc84d0e42ce717a481d999fdd33a54
 WHIRLPOOL 
948344e781a9cf5613b8e31cfdca64c4ab72337744d0f3544c36fc081f8b34c0c099d42d981bf7cdd88a1f246154d26ee781f24f6f6f0a5577d9cd050f325508

diff --git a/media-gfx/displaycal/displaycal-3.2.4.0.ebuild 
b/media-gfx/displaycal/displaycal-3.2.4.0.ebuild
new file mode 100644
index 000..4beb3e30e0d
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.2.4.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}



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

2017-01-18 Thread Bernard Cafarelli
commit: 40351101965f0400ca0e040166e73828a6625b95
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jan 18 11:38:01 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jan 18 11:38:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40351101

media-gfx/displaycal: 3.2.3.0 bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.2.3.0.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 8c62afe..e8bc867 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,4 @@
 DIST DisplayCAL-3.1.6.0.tar.gz 9592426 SHA256 
fc27814cf29b3643f8a44973f2139518c133f6a2549ffe51658e765a67cd02fd SHA512 
ea5d0c5028c9dcfc834c03bd50d9e4cd5f4528ac0adf1312117128f8969533f857eaab738019d561b8197ad595ca73ad085db4feb36101df1e303933e1edbd87
 WHIRLPOOL 
6a23f57e606852838b43834d81acd346be1746040d47ac5884c997d828130ddf5b2049b8684d2de42b555ab7b6b6fb4d0430544d2586ca388eb769fbecc86be6
 DIST DisplayCAL-3.2.1.0.tar.gz 9725546 SHA256 
41e71fcec3c0867c94c68e9c56753a3aab614ca3b815cab547b6510926f5321f SHA512 
b2a6fdab470f551361de5743f39a8ed9f23ae1ee47d0573f2f68a30d4cb2be89102f4272f2f99fd674e23ec99c6ee2ab2c89632cdad2394c618275af92d2b942
 WHIRLPOOL 
7081cb274598ca0cdf159c7f3e684a1bd33467f56d49662946740ce8033b002ef0e7060d707354d4d911fe7589788c1ea4f6700f1de25fdb1b34a564b6e5f8a7
 DIST DisplayCAL-3.2.2.0.tar.gz 9728053 SHA256 
013520784841ddb3bef41d60e9bb3f9d0c11c67bf4902cfd6aec25193450ed3e SHA512 
6615b2f8bf8817c56c7691d031d7408b9b608d752319e7a0497a2292f4498ee1e138d6e66f9cca11d1015c1753e96897f68cfb8c32c0f73486c38ff2a8cea8cf
 WHIRLPOOL 
6206d73aae7167f37b37fc378bd7d4590c85a14a2ed4dda2394164e716436cdac926cbe0df7145906c7ded9ad264bcf216a3626426bb221669a0ff690f18586e
+DIST DisplayCAL-3.2.3.0.tar.gz 9730309 SHA256 
6d55765d7c8dd45cf2306bb88fc36655de61253474caeb2a406431d7f3a74c40 SHA512 
837e076f37c215c3341907be85beb659ac60654c0b853b486f2c9eb3141ef6d03c21b94288621b35a0d1f447e1dda870509847475036e2448b4c4b869aaa5e2f
 WHIRLPOOL 
70b21f81ed10909ad532a1e62dbfc948a878b158402a42c82b818676473d68b8605c89dad066d54b17b9711f7ea8b086f4e6c3e3306d40fcd1b3989800e03bae

diff --git a/media-gfx/displaycal/displaycal-3.2.3.0.ebuild 
b/media-gfx/displaycal/displaycal-3.2.3.0.ebuild
new file mode 100644
index ..8428b1f
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.2.3.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}



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

2017-01-03 Thread Bernard Cafarelli
commit: 64e1294c596cd4ea34a90a5d668362cd47881451
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jan  3 16:00:13 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jan  3 16:02:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64e1294c

media-gfx/displaycal: 3.2.2.0 bump

Move udev rules removal in src_prepare, clean sed commands
README file is alread installed in /usr/share/doc/DisplayCAL-${PV}

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.2.2.0.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 6af9a3e..8c62afe 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.1.6.0.tar.gz 9592426 SHA256 
fc27814cf29b3643f8a44973f2139518c133f6a2549ffe51658e765a67cd02fd SHA512 
ea5d0c5028c9dcfc834c03bd50d9e4cd5f4528ac0adf1312117128f8969533f857eaab738019d561b8197ad595ca73ad085db4feb36101df1e303933e1edbd87
 WHIRLPOOL 
6a23f57e606852838b43834d81acd346be1746040d47ac5884c997d828130ddf5b2049b8684d2de42b555ab7b6b6fb4d0430544d2586ca388eb769fbecc86be6
 DIST DisplayCAL-3.2.1.0.tar.gz 9725546 SHA256 
41e71fcec3c0867c94c68e9c56753a3aab614ca3b815cab547b6510926f5321f SHA512 
b2a6fdab470f551361de5743f39a8ed9f23ae1ee47d0573f2f68a30d4cb2be89102f4272f2f99fd674e23ec99c6ee2ab2c89632cdad2394c618275af92d2b942
 WHIRLPOOL 
7081cb274598ca0cdf159c7f3e684a1bd33467f56d49662946740ce8033b002ef0e7060d707354d4d911fe7589788c1ea4f6700f1de25fdb1b34a564b6e5f8a7
+DIST DisplayCAL-3.2.2.0.tar.gz 9728053 SHA256 
013520784841ddb3bef41d60e9bb3f9d0c11c67bf4902cfd6aec25193450ed3e SHA512 
6615b2f8bf8817c56c7691d031d7408b9b608d752319e7a0497a2292f4498ee1e138d6e66f9cca11d1015c1753e96897f68cfb8c32c0f73486c38ff2a8cea8cf
 WHIRLPOOL 
6206d73aae7167f37b37fc378bd7d4590c85a14a2ed4dda2394164e716436cdac926cbe0df7145906c7ded9ad264bcf216a3626426bb221669a0ff690f18586e

diff --git a/media-gfx/displaycal/displaycal-3.2.2.0.ebuild 
b/media-gfx/displaycal/displaycal-3.2.2.0.ebuild
new file mode 100644
index ..8428b1f
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.2.2.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}



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

2017-01-03 Thread Bernard Cafarelli
commit: dd149d29fe96e9f1d2aa64ac61902319fb169cf3
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jan  3 14:19:19 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jan  3 14:20:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd149d29

media-gfx/displaycal: add myself to maintainers

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-gfx/displaycal/metadata.xml | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/media-gfx/displaycal/metadata.xml 
b/media-gfx/displaycal/metadata.xml
index 7f38458..8e283c1 100644
--- a/media-gfx/displaycal/metadata.xml
+++ b/media-gfx/displaycal/metadata.xml
@@ -1,9 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-  
-
+  
+voyag...@gentoo.org
+Bernard Cafarelli
+  
   
 dispcalgui
   



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

2016-12-07 Thread Pacho Ramos
commit: 7994528ea6f6a4249408dc7e5aee6589a0c50ad4
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Dec  7 12:28:51 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Dec  7 12:29:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7994528e

media-gfx/displaycal: Drop old

Package-Manager: portage-2.3.2

 media-gfx/displaycal/Manifest  |  2 -
 media-gfx/displaycal/displaycal-3.1.2.0.ebuild | 79 --
 media-gfx/displaycal/displaycal-3.1.3.1.ebuild | 79 --
 3 files changed, 160 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index d9c5d10..6af9a3e 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,4 +1,2 @@
-DIST DisplayCAL-3.1.2.0.tar.gz 9361108 SHA256 
78dbfd2be1cf7542657cc0f5ed9e16e27558206a4878ffae5ce68bd62460680d SHA512 
2c14ed0230e6bdd6f8876a5e8887498e3005941e2f68aedad2926f9b8dda642e909f9aa70205977123b1b7c1376dd3f361ad08ecc5015bfae77342ff1b848837
 WHIRLPOOL 
74f311618190974e6e9c0c5b895ab7f0dba18de06e52dcf1cca4df0373a278b4c4e170b6add51bdf550b21499ff1ecf249cae6f2eb2f3e0813c666bd0bc4f941
-DIST DisplayCAL-3.1.3.1.tar.gz 9555280 SHA256 
d48e0b12c0b4fe75e0c99eb5fd85c8651afc2c3a2e72d29ade9bb0a76e61f645 SHA512 
ef560155cf0eebf4fcd9beab699afd6f0e766901e44d6aba8f33242662aae68a5644e6e253f3bdfe2bb687b30e967190ddf746ef4467c41c9cda06c6bd9326ef
 WHIRLPOOL 
b696c68d7b25388b51c056534ca37f7e14d0f918b2471cd1e6662cfadc186eb989ad9429c3a40bc74992c9352d762c40e05add69773a834e99971ac46339f015
 DIST DisplayCAL-3.1.6.0.tar.gz 9592426 SHA256 
fc27814cf29b3643f8a44973f2139518c133f6a2549ffe51658e765a67cd02fd SHA512 
ea5d0c5028c9dcfc834c03bd50d9e4cd5f4528ac0adf1312117128f8969533f857eaab738019d561b8197ad595ca73ad085db4feb36101df1e303933e1edbd87
 WHIRLPOOL 
6a23f57e606852838b43834d81acd346be1746040d47ac5884c997d828130ddf5b2049b8684d2de42b555ab7b6b6fb4d0430544d2586ca388eb769fbecc86be6
 DIST DisplayCAL-3.2.1.0.tar.gz 9725546 SHA256 
41e71fcec3c0867c94c68e9c56753a3aab614ca3b815cab547b6510926f5321f SHA512 
b2a6fdab470f551361de5743f39a8ed9f23ae1ee47d0573f2f68a30d4cb2be89102f4272f2f99fd674e23ec99c6ee2ab2c89632cdad2394c618275af92d2b942
 WHIRLPOOL 
7081cb274598ca0cdf159c7f3e684a1bd33467f56d49662946740ce8033b002ef0e7060d707354d4d911fe7589788c1ea4f6700f1de25fdb1b34a564b6e5f8a7

diff --git a/media-gfx/displaycal/displaycal-3.1.2.0.ebuild 
b/media-gfx/displaycal/displaycal-3.1.2.0.ebuild
deleted file mode 100644
index 0d69de9..
--- a/media-gfx/displaycal/displaycal-3.1.2.0.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 fdo-mime eutils
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
-HOMEPAGE="https://displaycal.net/;
-SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:2.8
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-proto/xineramaproto-1.2
-   >=x11-libs/libXinerama-1.1"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1"
-
-# Just in case someone renames the ebuild
-S=${WORKDIR}/${MY_P}
-
-DOCS=(
-   README.html
-)
-
-src_prepare() {
-   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
-   cd "${S}/DisplayCAL" || 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"
-
-   # 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 
"displaycal-vrml-to-x3d-converter.desktop" \
-   || die "removing x-world media type failed"
-
-   distutils-r1_src_prepare
-}
-
-src_install() {
-   distutils-r1_src_install
-   #remove udev files
-   rm -rf "${D}"/etc/udev/rules.d
-}
-
-pkg_postinst() {
-   # 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 

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

2016-12-07 Thread Pacho Ramos
commit: 04b137623323d98502764efa999c91efddebd951
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Dec  7 12:28:20 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Dec  7 12:29:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04b13762

media-gfx/displaycal: Version bump (#601182)

Package-Manager: portage-2.3.2

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.2.1.0.ebuild | 68 ++
 2 files changed, 69 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 463325f..d9c5d10 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,4 @@
 DIST DisplayCAL-3.1.2.0.tar.gz 9361108 SHA256 
78dbfd2be1cf7542657cc0f5ed9e16e27558206a4878ffae5ce68bd62460680d SHA512 
2c14ed0230e6bdd6f8876a5e8887498e3005941e2f68aedad2926f9b8dda642e909f9aa70205977123b1b7c1376dd3f361ad08ecc5015bfae77342ff1b848837
 WHIRLPOOL 
74f311618190974e6e9c0c5b895ab7f0dba18de06e52dcf1cca4df0373a278b4c4e170b6add51bdf550b21499ff1ecf249cae6f2eb2f3e0813c666bd0bc4f941
 DIST DisplayCAL-3.1.3.1.tar.gz 9555280 SHA256 
d48e0b12c0b4fe75e0c99eb5fd85c8651afc2c3a2e72d29ade9bb0a76e61f645 SHA512 
ef560155cf0eebf4fcd9beab699afd6f0e766901e44d6aba8f33242662aae68a5644e6e253f3bdfe2bb687b30e967190ddf746ef4467c41c9cda06c6bd9326ef
 WHIRLPOOL 
b696c68d7b25388b51c056534ca37f7e14d0f918b2471cd1e6662cfadc186eb989ad9429c3a40bc74992c9352d762c40e05add69773a834e99971ac46339f015
 DIST DisplayCAL-3.1.6.0.tar.gz 9592426 SHA256 
fc27814cf29b3643f8a44973f2139518c133f6a2549ffe51658e765a67cd02fd SHA512 
ea5d0c5028c9dcfc834c03bd50d9e4cd5f4528ac0adf1312117128f8969533f857eaab738019d561b8197ad595ca73ad085db4feb36101df1e303933e1edbd87
 WHIRLPOOL 
6a23f57e606852838b43834d81acd346be1746040d47ac5884c997d828130ddf5b2049b8684d2de42b555ab7b6b6fb4d0430544d2586ca388eb769fbecc86be6
+DIST DisplayCAL-3.2.1.0.tar.gz 9725546 SHA256 
41e71fcec3c0867c94c68e9c56753a3aab614ca3b815cab547b6510926f5321f SHA512 
b2a6fdab470f551361de5743f39a8ed9f23ae1ee47d0573f2f68a30d4cb2be89102f4272f2f99fd674e23ec99c6ee2ab2c89632cdad2394c618275af92d2b942
 WHIRLPOOL 
7081cb274598ca0cdf159c7f3e684a1bd33467f56d49662946740ce8033b002ef0e7060d707354d4d911fe7589788c1ea4f6700f1de25fdb1b34a564b6e5f8a7

diff --git a/media-gfx/displaycal/displaycal-3.2.1.0.ebuild 
b/media-gfx/displaycal/displaycal-3.2.1.0.ebuild
new file mode 100644
index ..367dfb5
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.2.1.0.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+DOCS=(
+   README.html
+)
+
+src_prepare() {
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   cd "${S}/DisplayCAL" || 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"
+
+   # 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 
"displaycal-vrml-to-x3d-converter.desktop" \
+   || die "removing x-world media type failed"
+
+   distutils-r1_src_prepare
+}
+
+src_install() {
+   distutils-r1_src_install
+   #remove udev files
+   rm -rf "${D}"/etc/udev/rules.d
+}



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

2016-12-06 Thread Göktürk Yüksek
commit: 3b59bd97ed96364b6c0ced4a56805542bcc420de
Author: Craig Inches  craiginches  com>
AuthorDate: Tue Dec  6 21:42:10 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Tue Dec  6 22:48:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b59bd97

media-gfx/displaycal: Remove myself as maintainer

 media-gfx/displaycal/metadata.xml | 10 +-
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/media-gfx/displaycal/metadata.xml 
b/media-gfx/displaycal/metadata.xml
index f6bd442..7f38458 100644
--- a/media-gfx/displaycal/metadata.xml
+++ b/media-gfx/displaycal/metadata.xml
@@ -1,15 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-gen...@xayto.net
-Craig Inches
-Proxied maintainer; set to assignee in all bugs
-  
-  
-proxy-ma...@gentoo.org
-Proxy Maintainers
-  
+  
   
 
   



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

2016-09-10 Thread Wolfram Schlich
commit: b073447f376f7692c550f5c07a06987c9460775b
Author: Wolfram Schlich  gentoo  org>
AuthorDate: Sat Sep 10 11:24:11 2016 +
Commit: Wolfram Schlich  gentoo  org>
CommitDate: Sat Sep 10 11:24:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b073447f

media-gfx/displaycal: version bump

Package-Manager: portage-2.2.28

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.1.6.0.ebuild | 79 ++
 2 files changed, 80 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index c732731..463325f 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.1.2.0.tar.gz 9361108 SHA256 
78dbfd2be1cf7542657cc0f5ed9e16e27558206a4878ffae5ce68bd62460680d SHA512 
2c14ed0230e6bdd6f8876a5e8887498e3005941e2f68aedad2926f9b8dda642e909f9aa70205977123b1b7c1376dd3f361ad08ecc5015bfae77342ff1b848837
 WHIRLPOOL 
74f311618190974e6e9c0c5b895ab7f0dba18de06e52dcf1cca4df0373a278b4c4e170b6add51bdf550b21499ff1ecf249cae6f2eb2f3e0813c666bd0bc4f941
 DIST DisplayCAL-3.1.3.1.tar.gz 9555280 SHA256 
d48e0b12c0b4fe75e0c99eb5fd85c8651afc2c3a2e72d29ade9bb0a76e61f645 SHA512 
ef560155cf0eebf4fcd9beab699afd6f0e766901e44d6aba8f33242662aae68a5644e6e253f3bdfe2bb687b30e967190ddf746ef4467c41c9cda06c6bd9326ef
 WHIRLPOOL 
b696c68d7b25388b51c056534ca37f7e14d0f918b2471cd1e6662cfadc186eb989ad9429c3a40bc74992c9352d762c40e05add69773a834e99971ac46339f015
+DIST DisplayCAL-3.1.6.0.tar.gz 9592426 SHA256 
fc27814cf29b3643f8a44973f2139518c133f6a2549ffe51658e765a67cd02fd SHA512 
ea5d0c5028c9dcfc834c03bd50d9e4cd5f4528ac0adf1312117128f8969533f857eaab738019d561b8197ad595ca73ad085db4feb36101df1e303933e1edbd87
 WHIRLPOOL 
6a23f57e606852838b43834d81acd346be1746040d47ac5884c997d828130ddf5b2049b8684d2de42b555ab7b6b6fb4d0430544d2586ca388eb769fbecc86be6

diff --git a/media-gfx/displaycal/displaycal-3.1.6.0.ebuild 
b/media-gfx/displaycal/displaycal-3.1.6.0.ebuild
new file mode 100644
index ..0d69de9
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.1.6.0.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 fdo-mime eutils
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:2.8
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1"
+
+# Just in case someone renames the ebuild
+S=${WORKDIR}/${MY_P}
+
+DOCS=(
+   README.html
+)
+
+src_prepare() {
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   cd "${S}/DisplayCAL" || 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"
+
+   # 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 
"displaycal-vrml-to-x3d-converter.desktop" \
+   || die "removing x-world media type failed"
+
+   distutils-r1_src_prepare
+}
+
+src_install() {
+   distutils-r1_src_install
+   #remove udev files
+   rm -rf "${D}"/etc/udev/rules.d
+}
+
+pkg_postinst() {
+   # 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
+   fdo-mime_mime_database_update
+   fdo-mime_desktop_database_update
+}



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

2016-08-16 Thread Matthias Maier
commit: 248bcd31c7aec46b0996baa86636609b738a759f
Author: Matthias Maier  gentoo  org>
AuthorDate: Tue Aug 16 07:54:34 2016 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Tue Aug 16 07:54:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=248bcd31

media-gfx/displaycal: Fix up the mess introduced by 0abb478

I am sorry! This shouldn't have happened

Package-Manager: portage-2.2.28

 media-gfx/displaycal/Manifest | 1 -
 1 file changed, 1 deletion(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 6691639..c732731 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,2 @@
 DIST DisplayCAL-3.1.2.0.tar.gz 9361108 SHA256 
78dbfd2be1cf7542657cc0f5ed9e16e27558206a4878ffae5ce68bd62460680d SHA512 
2c14ed0230e6bdd6f8876a5e8887498e3005941e2f68aedad2926f9b8dda642e909f9aa70205977123b1b7c1376dd3f361ad08ecc5015bfae77342ff1b848837
 WHIRLPOOL 
74f311618190974e6e9c0c5b895ab7f0dba18de06e52dcf1cca4df0373a278b4c4e170b6add51bdf550b21499ff1ecf249cae6f2eb2f3e0813c666bd0bc4f941
 DIST DisplayCAL-3.1.3.1.tar.gz 9555280 SHA256 
d48e0b12c0b4fe75e0c99eb5fd85c8651afc2c3a2e72d29ade9bb0a76e61f645 SHA512 
ef560155cf0eebf4fcd9beab699afd6f0e766901e44d6aba8f33242662aae68a5644e6e253f3bdfe2bb687b30e967190ddf746ef4467c41c9cda06c6bd9326ef
 WHIRLPOOL 
b696c68d7b25388b51c056534ca37f7e14d0f918b2471cd1e6662cfadc186eb989ad9429c3a40bc74992c9352d762c40e05add69773a834e99971ac46339f015
-DIST DisplayCAL-3.1.5.0.tar.gz 9576015 SHA256 
c0dae75030f44018aa982f0b0c32a3888663cca5cd4eb667aef3b56dfc452e04 SHA512 
ce6e96bbdbd1ea572b26a108b13b48411fa91cbc306d6404d9ef1db6f03b6a8a951604bb4db2332b574b19c7881149af0f4df6bb67ef3c53f3696346be308576
 WHIRLPOOL 
ba777f725c102b6786a9013074413aa0448d15030c560e040513b6d5b57287b57ef309235bcbe01d4d10513d30032aa5cb8905f5a8ac0b773e0bb0e5ad38



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

2016-06-25 Thread Patrice Clement
commit: 4d3c4d8199988e057b75f0c09929b823cbae223b
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Jun 25 14:55:27 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Jun 25 14:57:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d3c4d81

media-gfx/displaycal: Clean up old.

Package-Manager: portage-2.2.28

Gentoo-Bug: https://bugs.gentoo.org/586808

 media-gfx/displaycal/Manifest  |  1 -
 media-gfx/displaycal/displaycal-3.0.6.0.ebuild | 79 --
 2 files changed, 80 deletions(-)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 164e024..c732731 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,2 @@
-DIST DisplayCAL-3.0.6.0.tar.gz 16228 SHA256 
ff19c4299e33a587103ab475d136e446bfc7a5b631c8b90563227fe6b9898077 SHA512 
003110ddb26b01e1517a2605d341649600b64dfa4b55c3cb8e38b5160c5d2b0d876ae76e6a5b4571740b0030c3c713958bc1d7723d5c0c31e626ac4c702e91ee
 WHIRLPOOL 
30ebaf130f0ae3765fd2ada8852d4bd9443ce24b3b53cdd3c111abe9d5b4715e42214ddf69747b2dc806f119106f93436d3f894fc0dcf00c5748b701f08af8a7
 DIST DisplayCAL-3.1.2.0.tar.gz 9361108 SHA256 
78dbfd2be1cf7542657cc0f5ed9e16e27558206a4878ffae5ce68bd62460680d SHA512 
2c14ed0230e6bdd6f8876a5e8887498e3005941e2f68aedad2926f9b8dda642e909f9aa70205977123b1b7c1376dd3f361ad08ecc5015bfae77342ff1b848837
 WHIRLPOOL 
74f311618190974e6e9c0c5b895ab7f0dba18de06e52dcf1cca4df0373a278b4c4e170b6add51bdf550b21499ff1ecf249cae6f2eb2f3e0813c666bd0bc4f941
 DIST DisplayCAL-3.1.3.1.tar.gz 9555280 SHA256 
d48e0b12c0b4fe75e0c99eb5fd85c8651afc2c3a2e72d29ade9bb0a76e61f645 SHA512 
ef560155cf0eebf4fcd9beab699afd6f0e766901e44d6aba8f33242662aae68a5644e6e253f3bdfe2bb687b30e967190ddf746ef4467c41c9cda06c6bd9326ef
 WHIRLPOOL 
b696c68d7b25388b51c056534ca37f7e14d0f918b2471cd1e6662cfadc186eb989ad9429c3a40bc74992c9352d762c40e05add69773a834e99971ac46339f015

diff --git a/media-gfx/displaycal/displaycal-3.0.6.0.ebuild 
b/media-gfx/displaycal/displaycal-3.0.6.0.ebuild
deleted file mode 100644
index 5fd3dff..000
--- a/media-gfx/displaycal/displaycal-3.0.6.0.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 fdo-mime eutils
-
-MY_PN="DisplayCAL"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display Calibration and Characterization powered by Argyll CMS"
-HOMEPAGE="https://dispcalgui.hoech.net/;
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=">=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:2.8
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-proto/xineramaproto-1.2
-   >=x11-libs/libXinerama-1.1"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1"
-
-# Just in case someone renames the ebuild
-S=${WORKDIR}/${MY_P}
-
-DOCS=(
-   README.html
-)
-
-src_prepare() {
-   # 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"
-
-   # 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"
-
-   distutils-r1_src_prepare
-}
-
-src_install() {
-   distutils-r1_src_install
-   #remove udev files
-   rm -rf "${D}"/etc/udev/rules.d
-}
-
-pkg_postinst() {
-   # 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
-   fdo-mime_mime_database_update
-   fdo-mime_desktop_database_update
-}



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

2016-06-10 Thread Patrice Clement
commit: a82cd34d56952c904fb5b810a38b85bc8828324a
Author: Craig Inches  craiginches  com>
AuthorDate: Thu Jun  9 22:27:03 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 10 16:27:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a82cd34d

media-gfx/displaycal: Version bump 3.1.3.1

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1637

Signed-off-by: Patrice Clement  gentoo.org>

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.1.3.1.ebuild | 79 ++
 2 files changed, 80 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 60fffe1..164e024 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,2 +1,3 @@
 DIST DisplayCAL-3.0.6.0.tar.gz 16228 SHA256 
ff19c4299e33a587103ab475d136e446bfc7a5b631c8b90563227fe6b9898077 SHA512 
003110ddb26b01e1517a2605d341649600b64dfa4b55c3cb8e38b5160c5d2b0d876ae76e6a5b4571740b0030c3c713958bc1d7723d5c0c31e626ac4c702e91ee
 WHIRLPOOL 
30ebaf130f0ae3765fd2ada8852d4bd9443ce24b3b53cdd3c111abe9d5b4715e42214ddf69747b2dc806f119106f93436d3f894fc0dcf00c5748b701f08af8a7
 DIST DisplayCAL-3.1.2.0.tar.gz 9361108 SHA256 
78dbfd2be1cf7542657cc0f5ed9e16e27558206a4878ffae5ce68bd62460680d SHA512 
2c14ed0230e6bdd6f8876a5e8887498e3005941e2f68aedad2926f9b8dda642e909f9aa70205977123b1b7c1376dd3f361ad08ecc5015bfae77342ff1b848837
 WHIRLPOOL 
74f311618190974e6e9c0c5b895ab7f0dba18de06e52dcf1cca4df0373a278b4c4e170b6add51bdf550b21499ff1ecf249cae6f2eb2f3e0813c666bd0bc4f941
+DIST DisplayCAL-3.1.3.1.tar.gz 9555280 SHA256 
d48e0b12c0b4fe75e0c99eb5fd85c8651afc2c3a2e72d29ade9bb0a76e61f645 SHA512 
ef560155cf0eebf4fcd9beab699afd6f0e766901e44d6aba8f33242662aae68a5644e6e253f3bdfe2bb687b30e967190ddf746ef4467c41c9cda06c6bd9326ef
 WHIRLPOOL 
b696c68d7b25388b51c056534ca37f7e14d0f918b2471cd1e6662cfadc186eb989ad9429c3a40bc74992c9352d762c40e05add69773a834e99971ac46339f015

diff --git a/media-gfx/displaycal/displaycal-3.1.3.1.ebuild 
b/media-gfx/displaycal/displaycal-3.1.3.1.ebuild
new file mode 100644
index 000..0d69de9
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.1.3.1.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 fdo-mime eutils
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/;
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:2.8
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-proto/xineramaproto-1.2
+   >=x11-libs/libXinerama-1.1"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1"
+
+# Just in case someone renames the ebuild
+S=${WORKDIR}/${MY_P}
+
+DOCS=(
+   README.html
+)
+
+src_prepare() {
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   cd "${S}/DisplayCAL" || 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"
+
+   # 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 
"displaycal-vrml-to-x3d-converter.desktop" \
+   || die "removing x-world media type failed"
+
+   distutils-r1_src_prepare
+}
+
+src_install() {
+   distutils-r1_src_install
+   #remove udev files
+   rm -rf "${D}"/etc/udev/rules.d
+}
+
+pkg_postinst() {
+   # 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
+   fdo-mime_mime_database_update
+   fdo-mime_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/displaycal/, profiles/updates/, media-gfx/dispcalgui/, ...

2016-05-16 Thread Patrice Clement
commit: c935e15638b547a48b2dc85f317bf8f2229a67d6
Author: Craig Inches  craiginches  com>
AuthorDate: Mon May 16 19:53:07 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon May 16 21:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c935e156

media-gfx/displaycal: Version Bump, Rename, and removal of old versions.

Gentoo-Bug: https://bugs.gentoo.org/576440
Gentoo-Bug: https://bugs.gentoo.org/532008
Closes: https://github.com/gentoo/gentoo/pull/1477
Signed-off-by: Patrice Clement  gentoo.org>

 media-gfx/dispcalgui/Manifest  |  5 --
 media-gfx/dispcalgui/dispcalgui-1.2.7.0.ebuild | 78 --
 media-gfx/dispcalgui/dispcalgui-2.5.0.0.ebuild | 72 
 media-gfx/dispcalgui/dispcalgui-2.6.0.0.ebuild | 72 
 .../dispcalgui-1.2.7.0-wxversion-select.patch  | 11 ---
 .../dispcalgui-2.0.0.0-wxversion-select.patch  | 13 
 media-gfx/displaycal/Manifest  |  2 +
 .../displaycal-3.0.6.0.ebuild} |  2 +-
 .../displaycal-3.1.2.0.ebuild} | 33 +
 media-gfx/{dispcalgui => displaycal}/metadata.xml  |  0
 profiles/updates/2Q-2016   |  1 +
 11 files changed, 23 insertions(+), 266 deletions(-)

diff --git a/media-gfx/dispcalgui/Manifest b/media-gfx/dispcalgui/Manifest
deleted file mode 100644
index e38d411..000
--- a/media-gfx/dispcalgui/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-DIST dispcalGUI-1.2.7.0.tar.gz 3302318 SHA256 
8032b71ced4d7f718f8aa50a5dfc92595150334b572d6828c797426d8d63ba0b SHA512 
7ae2c14c0fa50cb28284a24269c2d73bf5197326581cceb7436f1263f8097eb57c7cafbfaa811f1b387e4b7235fe8eda0a8f48ef939ec7710ca090ca53c3
 WHIRLPOOL 
106da953f564b2c4f6cdfefffc7952248b17793cd42e267c41f6bb3e56864b36d87f584df7b47f06ec131693c5de10e4f8630d77b12bdb82b318e61b4dec62d6
-DIST dispcalGUI-2.0.0.0.tar.gz 5914050 SHA256 
fad516999bd663cf870fad2869fc63a23f93820d9dbd1029369417a6b650 SHA512 
14e1a5d921ed4aaa07bd96d2c4256ce080bc6201d7a5b2a6fa69ae9ac25b8d34c9b0f3b3dac3d2e9a7d4c5faa97682e10a4b15205098a454623ecdb4e09eb8a5
 WHIRLPOOL 
1c88bb5da2dcddc1848249ba76057e1e33480e8fc344af6c3348d933c9752cc09f91a03a61f18f71cae27473956ae0e518b85864b5a2eb6ce9caf074d59f167c
-DIST dispcalGUI-2.5.0.0.tar.gz 6392054 SHA256 
036a01a11551d990a6b84e241d131ca0b07d810d552b28332907aa6fb3cd4777 SHA512 
d5cb2263739f9c46676222d20e570c161897af58bb359ed569a7690b6fc1ed83ce7e9862e7d69b1afb599b8035ca4f4abfccef83b877d98a34956535d2dd729b
 WHIRLPOOL 
725de21d2d320ec74b6a7840cf5f251885b62946e20cfc7bed480f663c77116c9bac61b2df7e7ddfe7a0e7557269d864f0b88569e52463499eb310279fe66b7d
-DIST dispcalGUI-2.6.0.0.tar.gz 6722168 SHA256 
3087facf1fd7941b04df327903eb9a49511987a9b7afaada9ee8ca4600d0109f SHA512 
0f7b1952588ee8e5c49f3ce3be41e53c0dd746b6fd660107e78ec16b392ebda9f8bc45550a119371b2197fd370f0e28e05aee47c71e26cfb8f648a6d66277454
 WHIRLPOOL 
84f050ed73200054b7dad53730a86490e44e751ab96ef4ef3faea279ac692ef76685c8992135085c43c3e258e2fc44c5a276217443adc67560eb23b376d535d7
-DIST dispcalGUI-3.0.6.0.tar.gz 9048298 SHA256 
6432d47734ad18abccd4ef236eb7b721d7233529057da507fa36ccaf80de6d6a SHA512 
cd91960b5ef00bb9f4e6cc9117ffd6c8236e8b8dc65a76a4690da1c17eb5216385fbc1467ea842119fdbdc2d6937990b07ac999d193a0353249be8b8d795
 WHIRLPOOL 
629db4a3c293c93918b665b28246d047e1defcbafd82f96a8c662aabf4077b33a1492e37e9e1a5cbbe018b92048a98fcfa872057acad30df1d1a915222428a02

diff --git a/media-gfx/dispcalgui/dispcalgui-1.2.7.0.ebuild 
b/media-gfx/dispcalgui/dispcalgui-1.2.7.0.ebuild
deleted file mode 100644
index 3ba275b..000
--- a/media-gfx/dispcalgui/dispcalgui-1.2.7.0.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.4 3.* *-jython 2.7-pypy-*"
-
-inherit distutils fdo-mime eutils
-
-MY_PN="dispcalGUI"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Display Calibration and Characterization powered by Argyll CMS"
-HOMEPAGE="http://dispcalgui.hoech.net/;
-SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/${MY_P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=">=media-gfx/argyllcms-1.1.0
-   dev-python/wxpython:2.8
-   >=x11-libs/libX11-1.3.3
-   >=x11-apps/xrandr-1.3.2
-   >=x11-libs/libXxf86vm-1.1.0
-   >=x11-proto/xineramaproto-1.2
-   >=x11-libs/libXinerama-1.1"
-RDEPEND="${DEPEND}
-   >=dev-python/numpy-1.2.1"
-
-# Just in case someone renames the ebuild
-S=${WORKDIR}/${MY_P}
-
-DOCS=(
-   README.html
-)
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-wxversion-select.patch
-
-#  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