[gentoo-commits] repo/gentoo:master commit in: dev-ruby/parslet/

2017-04-03 Thread Hans de Graaff
commit: f0b08ca0faec9ce2ea9bca62f7deb5076c1bd589
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr  4 05:09:23 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  4 05:09:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0b08ca0

dev-ruby/parslet: add 1.8.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ruby/parslet/Manifest |  1 +
 dev-ruby/parslet/parslet-1.8.0.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-ruby/parslet/Manifest b/dev-ruby/parslet/Manifest
index 3e0f34732ff..be20f7d318d 100644
--- a/dev-ruby/parslet/Manifest
+++ b/dev-ruby/parslet/Manifest
@@ -1 +1,2 @@
 DIST parslet-1.7.1.tar.gz 243045 SHA256 
84bef8d5ee590e034867953814abf1cceef77f77121927a0c8ede1a27d8b4d13 SHA512 
aa4e3bb0ef91a5af30e3ca424ca6d8d690272bec025b16f5bd9ae7b1194bcb48b3988a0b90b960348e062e994a73bc4edf9eee6aec74c878bd9b8c033de4794c
 WHIRLPOOL 
a325bc7def35940c6da70a04adafed59e1b7043926f48b83e0e40718cf2a0d52c28e65ab9464d7e6c33227f54e0086402c55d0de26e4cbc7b3d6651580065c38
+DIST parslet-1.8.0.tar.gz 243789 SHA256 
b766b838ef2def26f96a281f3b4747f4ea0896922e854eaf76b8269743b59641 SHA512 
46734af193055047d3592aa0c513893946d0c150a45213bf74ea588c99d66ae2fedb62eac27ea409a18e6832dc7f9e214be07a78d46b1bfdb88694e2aae9ba2f
 WHIRLPOOL 
ad5341a128a09292e6cab1e401be5d8e896f4f78eb0bac9497e94b359e7a38ca64ec419bfc6dff461d46cf63005fcf9efb6fe427b0727e145e5cdbb04b43ef96

diff --git a/dev-ruby/parslet/parslet-1.8.0.ebuild 
b/dev-ruby/parslet/parslet-1.8.0.ebuild
new file mode 100644
index 000..b3dfcf86c5c
--- /dev/null
+++ b/dev-ruby/parslet/parslet-1.8.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_EXTRADOC="HISTORY.txt README"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A small PEG based parser library"
+HOMEPAGE="https://github.com/kschiess/parslet;
+SRC_URI="https://github.com/kschiess/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+IUSE=""
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+ruby_add_bdepend "test? ( dev-ruby/flexmock )"
+
+all_ruby_prepare() {
+   sed -i -e "/sdoc/d" Rakefile || die
+}



[gentoo-commits] proj/portage:master commit in: pym/portage/package/ebuild/, pym/_emerge/

2017-04-03 Thread Zac Medico
commit: 285d5d038d8bb8a17d853816e156147c8c59f248
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Apr  3 00:40:55 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr  4 03:19:29 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=285d5d03

EbuildBuild: async spawn_nofetch in _fetchonly_exit (bug 614116)

Replace a synchronous spawn_nofetch call with an asynchronous one,
in order to avoid event loop recursion which is not compatible with
asyncio. This involves refactoring of spawn_nofetch to provide an
asynchronous interface.

X-Gentoo-bug: 614116
X-Gentoo-bug-url: https://bugs.gentoo.org/show_bug.cgi?id=614116
Acked-by: Brian Dolbec  gentoo.org>

 pym/_emerge/EbuildBuild.py   |  18 -
 pym/portage/package/ebuild/_spawn_nofetch.py | 106 +--
 2 files changed, 85 insertions(+), 39 deletions(-)

diff --git a/pym/_emerge/EbuildBuild.py b/pym/_emerge/EbuildBuild.py
index 11eb1c93e..48f470483 100644
--- a/pym/_emerge/EbuildBuild.py
+++ b/pym/_emerge/EbuildBuild.py
@@ -22,7 +22,7 @@ import portage
 from portage import _encodings, _unicode_decode, _unicode_encode, os
 from portage.package.ebuild.digestcheck import digestcheck
 from portage.package.ebuild.doebuild import _check_temp_dir
-from portage.package.ebuild._spawn_nofetch import spawn_nofetch
+from portage.package.ebuild._spawn_nofetch import SpawnNofetchWithoutBuilddir
 
 class EbuildBuild(CompositeTask):
 
@@ -165,8 +165,22 @@ class EbuildBuild(CompositeTask):
def _fetchonly_exit(self, fetcher):
self._final_exit(fetcher)
if self.returncode != os.EX_OK:
+   self.returncode = None
portdb = self.pkg.root_config.trees[self._tree].dbapi
-   spawn_nofetch(portdb, self._ebuild_path, 
settings=self.settings)
+   self._start_task(SpawnNofetchWithoutBuilddir(
+   background=self.background,
+   portdb=portdb,
+   ebuild_path=self._ebuild_path,
+   scheduler=self.scheduler,
+   settings=self.settings),
+   self._nofetch_without_builddir_exit)
+   return
+
+   self.wait()
+
+   def _nofetch_without_builddir_exit(self, nofetch):
+   self._final_exit(nofetch)
+   self.returncode = 1
self.wait()
 
def _pre_clean_exit(self, pre_clean_phase):

diff --git a/pym/portage/package/ebuild/_spawn_nofetch.py 
b/pym/portage/package/ebuild/_spawn_nofetch.py
index 0fc53c8ca..bbfd5b72b 100644
--- a/pym/portage/package/ebuild/_spawn_nofetch.py
+++ b/pym/portage/package/ebuild/_spawn_nofetch.py
@@ -14,11 +14,14 @@ from portage.package.ebuild.prepare_build_dirs import 
prepare_build_dirs
 from portage.util._async.SchedulerInterface import SchedulerInterface
 from portage.util._eventloop.EventLoop import EventLoop
 from portage.util._eventloop.global_event_loop import global_event_loop
+from _emerge.CompositeTask import CompositeTask
 from _emerge.EbuildPhase import EbuildPhase
 
-def spawn_nofetch(portdb, ebuild_path, settings=None, fd_pipes=None):
+
+class SpawnNofetchWithoutBuilddir(CompositeTask):
"""
-   This spawns pkg_nofetch if appropriate. The settings parameter
+   This spawns pkg_nofetch if appropriate, while avoiding the
+   need to lock a global build directory. The settings parameter
is useful only if setcpv has already been called in order
to cache metadata. It will be cloned internally, in order to
prevent any changes from interfering with the calling code.
@@ -40,33 +43,42 @@ def spawn_nofetch(portdb, ebuild_path, settings=None, 
fd_pipes=None):
to be displayed for problematic packages even though they do
not set RESTRICT=fetch (bug #336499).
 
-   This function does nothing if the PORTAGE_PARALLEL_FETCHONLY
+   This class does nothing if the PORTAGE_PARALLEL_FETCHONLY
variable is set in the config instance.
"""
+   __slots__ = ('ebuild_path', 'fd_pipes', 'portdb', 'settings',
+   '_private_tmpdir')
+
+   def _start(self):
+   settings = self.settings
+   if settings is None:
+   settings = self.portdb.settings
+
+   if 'PORTAGE_PARALLEL_FETCHONLY' in settings:
+   # parallel-fetch mode
+   self.returncode = os.EX_OK
+   self._async_wait()
+   return
 
-   if settings is None:
-   settings = config(clone=portdb.settings)
-   else:
-   settings = config(clone=settings)
-
-   if 'PORTAGE_PARALLEL_FETCHONLY' in settings:
-   return os.EX_OK
-
-   # We must create our private PORTAGE_TMPDIR before calling
-   # 

[gentoo-commits] proj/portage:master commit in: pym/_emerge/

2017-04-03 Thread Zac Medico
commit: f05d0864653e082bd60db67b52132c4ba6515339
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Apr  3 01:50:45 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr  4 03:19:19 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=f05d0864

EbuildBuild: eliminate call to digestgen (bug 614116)

Eliminate the call to digestgen in EbuildBuild._fetchonly_exit,
and make Scheduler._generate_digests call it earlier when
--fetchonly is enabled. This avoids event loop recursion which
is not compatible with asyncio (digestgen makes many calls that
can trigger event loop recursion).

X-Gentoo-bug: 614116
X-Gentoo-bug-url: https://bugs.gentoo.org/show_bug.cgi?id=614116
Acked-by: Brian Dolbec  gentoo.org>

 pym/_emerge/EbuildBuild.py | 5 -
 pym/_emerge/Scheduler.py   | 3 ---
 2 files changed, 8 deletions(-)

diff --git a/pym/_emerge/EbuildBuild.py b/pym/_emerge/EbuildBuild.py
index 001f55fff..11eb1c93e 100644
--- a/pym/_emerge/EbuildBuild.py
+++ b/pym/_emerge/EbuildBuild.py
@@ -21,7 +21,6 @@ from _emerge.TaskSequence import TaskSequence
 import portage
 from portage import _encodings, _unicode_decode, _unicode_encode, os
 from portage.package.ebuild.digestcheck import digestcheck
-from portage.package.ebuild.digestgen import digestgen
 from portage.package.ebuild.doebuild import _check_temp_dir
 from portage.package.ebuild._spawn_nofetch import spawn_nofetch
 
@@ -168,10 +167,6 @@ class EbuildBuild(CompositeTask):
if self.returncode != os.EX_OK:
portdb = self.pkg.root_config.trees[self._tree].dbapi
spawn_nofetch(portdb, self._ebuild_path, 
settings=self.settings)
-   elif 'digest' in self.settings.features:
-   if not digestgen(mysettings=self.settings,
-   
myportdb=self.pkg.root_config.trees[self._tree].dbapi):
-   self.returncode = 1
self.wait()
 
def _pre_clean_exit(self, pre_clean_phase):

diff --git a/pym/_emerge/Scheduler.py b/pym/_emerge/Scheduler.py
index 58ff97139..079fac7b9 100644
--- a/pym/_emerge/Scheduler.py
+++ b/pym/_emerge/Scheduler.py
@@ -616,9 +616,6 @@ class Scheduler(PollScheduler):
tasks are started.
"""
 
-   if '--fetchonly' in self.myopts:
-   return os.EX_OK
-
digest = '--digest' in self.myopts
if not digest:
for pkgsettings in self.pkgsettings.values():



[gentoo-commits] proj/musl:master commit in: sys-libs/libomp/, sys-libs/libomp/files/

2017-04-03 Thread Aric Belsito
commit: 7cf428ec804bd740d67df06f778124ee2d10e492
Author: Aric Belsito  gmail  com>
AuthorDate: Tue Apr  4 03:15:16 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Tue Apr  4 03:15:16 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=7cf428ec

sys-libs/libomp: restore 3.9.1

Now marked stable

 sys-libs/libomp/Manifest   |  5 ++
 .../files/libomp-3.9.0-musl-strerror_r.patch   | 35 
 .../files/libomp-3.9.0-optional-aliases.patch  | 63 ++
 .../files/libomp-3.9.0-use-va_copy-macro.patch | 12 +
 sys-libs/libomp/libomp-3.9.1.ebuild| 50 +
 5 files changed, 165 insertions(+)

diff --git a/sys-libs/libomp/Manifest b/sys-libs/libomp/Manifest
index db06af9..66d96b2 100644
--- a/sys-libs/libomp/Manifest
+++ b/sys-libs/libomp/Manifest
@@ -1,5 +1,10 @@
 AUX 4.0.0/0001-test-Try-to-link-latomic-to-provide-atomics-when-ava.patch 3456 
SHA256 c88bbb1d1c81b69bcece498ae8d4861bd6cbca465d294a9a681796ce5eed96f1 SHA512 
677d6d7e316d6df028ebed606cde1a4225ed6e06bacbe81cd527acf57c705858ab5aed2f71946c2404336033bfa985dafee2d56423204a59954a80424ca856e0
 WHIRLPOOL 
cdea0f06b3436f48c1860da75e4c887c08ad031d938f080f1da7d334d73adbb0ae44ed56c94950f3665fb08d680046484f09277101093fbaa1483b5e29679b25
+AUX libomp-3.9.0-musl-strerror_r.patch 1159 SHA256 
b1aa6d44d4d613cb1383975831ad49ccf433de5e6ff80fec1686ec161edf3ee7 SHA512 
f35c5b9b1acf3cc636b505b8935a974796080fa71d96aee46e4edb559a5c5c03bf95457b27e1f026b4330a052654de539d556c4098f1b4a02cd2f95740bc3a4f
 WHIRLPOOL 
debde3f0265408f1a5c1376fcf4b84d6c210b9a8824343e22f86fdd8e1485ac20c2d8668e04ee692f14c8d8a7a13b1eaf0b117fde4565f21cc80aada9f498bb0
+AUX libomp-3.9.0-optional-aliases.patch 2536 SHA256 
31c143bdb761a969888348ced721f22be7af7413da0b5238642a75efd8c2fcd7 SHA512 
0cf501decca0997ee84754bc6c5b3401dbf408571dc169bbfd3fe892f6d0c730785a1bb4293e55eb47f8e808707810e22fac15702853a06cd7531d7a37c54265
 WHIRLPOOL 
fa722bd91c74307217d7c419a27d6d6a55730bcd144a5e2630c0ab48a974b9ce4686e1a2dc82da735dec525f8ad5c96885a5c27b900cc5ce0057a32c146ef414
+AUX libomp-3.9.0-use-va_copy-macro.patch 665 SHA256 
1f6df759676fb048c9e46da328f0068dd6ad448fbbb22ecf0f5a9a8873a411ed SHA512 
b02c23725a9f45320f2978f180cb815b92a0b64be4fc3b5ea019fae76c789d572f01cc79399383504b6c4fed3d2b8be059311013b23e26dc63640fa8e3408430
 WHIRLPOOL 
45b13ca42cf92d1b5ae38e2846247817e8751eaa1fe093c50f4c8b9477c3a57bb51ef6ea1e8869c2f56b836ffd6274c75b10f1dada91a6548d93de05ad1c5458
 AUX libomp-4.0.0-use-va_copy-macro.patch 689 SHA256 
ab1d7bbb5d2cac529b43eea8e068625b169d7aa1f00c072169fc4c29cbdbe8c2 SHA512 
ff1f2983c9ff0a8d8bccb937f8489d368a7de2cd5937b99f9a0c1b8f13331e93b910839ff42bf0384ad43b2c5322f6f9401243ef8828ab483fd429442bf7f149
 WHIRLPOOL 
af1232aa25622e0c36a9f8eae53484a69e88995d079a6139701fc0b34f3debe7f555668cd88d936473009887a46b666f8a73b6369ec1bbad075ecdadb3af4495
+DIST openmp-3.9.1.src.tar.xz 2031588 SHA256 
d23b324e422c0d5f3d64bae5f550ff1132c37a070e43c7ca93991676c86c7766 SHA512 
80924a6f9765f634d24d7b0aa036d92c912dbd8e067487a14bdd03b4c587fdfc92e83eb29926bfa637ef45be3f133a924f77ab12099ea3706c18e9c42774708b
 WHIRLPOOL 
b6ec75d4f9d2b86bb8e2927791cb46e61ff8657fc21f9e0ba9893d81d3382522aca330564f3156c1fbbf765de0499e875e41e11199abe2da8ed1bef057d5e8d8
 DIST openmp-4.0.0.src.tar.xz 2040104 SHA256 
db55d85a7bb289804dc42fc5c8e35ca24dfc3885782261b675a194fd7e206e26 SHA512 
3f17014a81dbaa7e8d1d0e5c0493d6cdec7ffce3f43a08ec010312ab5dfbd706d194a8fea24b9a38003b18a0824ee16f39fa72cabe22ad995773f278d27ad8f8
 WHIRLPOOL 
cec645575370ce728546c39f999e01dd353e8f4d241ab3b920a56f71421b7ea0d288c7e7ccea54ea62a777d96d3c56725e2d2bd509a6f933ff49a37dfcfbb59f
+EBUILD libomp-3.9.1.ebuild 1375 SHA256 
57c543884575e8370de4257784a419222a99cc93f03deab86ef513c5cb21c7d3 SHA512 
d95aa3e0da00843d61c2edb8d840cba377421a768cddffb760f3d2acb1be14892d8fd72e938e1af3cef6b83cc9b445825662ddf92e1705701cd7028a22265ab7
 WHIRLPOOL 
aabd36b3e9c03aa9297e5a019b51586d59622e6cb1e5c4137bc122084cabe226c3464d06c5fbe57844be680905143626f9cf83e971948f489cc9db7d809b2ae7
 EBUILD libomp-4.0.0.ebuild 2010 SHA256 
047dc3367a12d6bcde5e2752b125e6577062ea83eb0d5c5c23b15b555b1f5e2d SHA512 
f0d9a98b5479ba5c393b42935fddc6ae8574dfc14dd7bccf07f4c5d74abacfc81d137f006e4340edc8f41ef83798330f581d6e45299f41c403d252134fc7f0de
 WHIRLPOOL 
daabf79677739fd16d8a02b17b5d041e1d54eeded96616807f91d25bdc3572ea2d91ea30ae4485a51480a34bbdce46f1a92702d7fb76d92d967fce5cea5a33b2
 MISC metadata.xml 670 SHA256 
c32e97e9d85d756302a38aac03d55a14d3e5b43cc910f1dff35b9f0c8bea03b1 SHA512 
d4269bb7192e00feed26327bb2ac36db3b1c4f5d55417c22efb9a64fa5a006c17dd39459ecc305e8a9a3a954271ad10013fe5c9159a30ea609513aabddebf485
 WHIRLPOOL 
d0022a64d2cad055eab1c6921cdfd4372fcf9cabd40c5ba7bf74d49eaff5f3498545fe29bbfc20bbee2cc3fed596e6a4d9f408d912f39900bbfb1c6c4aabb61a

diff --git a/sys-libs/libomp/files/libomp-3.9.0-musl-strerror_r.patch 
b/sys-libs/libomp/files/libomp-3.9.0-musl-strerror_r.patch
new file mode 100644
index 

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

2017-04-03 Thread Patrick McLean
commit: eed9e5c2437dfb5dc4fabe484196b529679b5b22
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue Apr  4 02:14:47 2017 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Apr  4 02:14:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eed9e5c2

net-libs/libtorrent-rasterbar: Version bump to 1.1.3

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 net-libs/libtorrent-rasterbar/Manifest |   1 +
 .../libtorrent-rasterbar-1.1.3.ebuild  | 102 +
 2 files changed, 103 insertions(+)

diff --git a/net-libs/libtorrent-rasterbar/Manifest 
b/net-libs/libtorrent-rasterbar/Manifest
index 99d34b4f775..b0db994303f 100644
--- a/net-libs/libtorrent-rasterbar/Manifest
+++ b/net-libs/libtorrent-rasterbar/Manifest
@@ -2,3 +2,4 @@ DIST libtorrent-rasterbar-1.0.10.tar.gz 3324494 SHA256 
a865ceaca8b14acdd7be56d36
 DIST libtorrent-rasterbar-1.0.11.tar.gz 3325786 SHA256 
828d686770346f6da2c143c5a2844c5f5e407eb4a37982e90022763508abd62f SHA512 
770d16b241174ae4b121af9b2ac7bcde8b14c6ed99352b827b760a3cbdc2c0ebd0d505319762897720c5f72acdff506ee9948ac1140e6d4591805eca5439b184
 WHIRLPOOL 
e56bfe0830cfc7776436552171b14b08913d99a2c726c9eefa828027caaa96d9c3d97e6442a3b53f315eaa3e7e0f68175d813dbab1d6de1da5937054fc6cac9c
 DIST libtorrent-rasterbar-1.1.1.tar.gz 3641815 SHA256 
f70c82367b0980460ef95aff3e117fd4a174477892d529beec434f74d615b31f SHA512 
9d2409ee733f7579df61a63e37092d3c59a386b94031bae6a7ea64617131d2c347ba0825b3d337ce2fedad3b527c8f697e3b49cea643d6543c972a1ebc12
 WHIRLPOOL 
36c4a007e0bf684e9603cd88b594a8ff91193b7d73447375e5651f945dba713c91daf0c625f90af6bb35c2ab017ca69da50d856ac6ce6be2e13f6d04ee7b2e35
 DIST libtorrent-rasterbar-1.1.2.tar.gz 3909420 SHA256 
45e55f2374507bb67a9b9125f6b8d1c45e6cd33849c62b1d9cb56657354e359a SHA512 
8cbf6b08bb21c6cbc3b5215a74ecdcce81e312484c688f2b20f95b7288d7f154e7f1337dd0c7d213687159d731bd4518166a964d6a1bda47dc2bd46115a55600
 WHIRLPOOL 
ffd8f1afaece5762298fc8d3380ffe23ed79b5eb019e923d92fd408594054c2caf25e01b237b4cdc2c11181d93df6978301eecb44661378dc944dc89b3e6838a
+DIST libtorrent-rasterbar-1.1.3.tar.gz 3912760 SHA256 
44196a89932c26528f5db19289d0f0f4130730a61dccc61c9f1eac9ad3e881d8 SHA512 
c9d45ceed5cb56b0d7eb7961c3e641158738c5587ef921d98c73b4918b6f1ae0b40e50792b5289062267cc023e36aaa1f64f0f58d363f59875864791434229a5
 WHIRLPOOL 
4feb345444583317541639f8b42a53026b8ee87d7060254c3e32ef50f697f1f37ee678b3529dae7614938b336a6e937bba4c37cd1a62255594ec4b2f97cf5192

diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.3.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.3.ebuild
new file mode 100644
index 000..91626938f9c
--- /dev/null
+++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.1.3.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_REQ_USE="threads"
+DISTUTILS_OPTIONAL=true
+DISTUTILS_IN_SOURCE_BUILD=true
+
+inherit distutils-r1 eutils versionator
+
+MY_PV=$(replace_all_version_separators _)
+
+DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and 
scalability"
+HOMEPAGE="http://libtorrent.org;
+SRC_URI="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${MY_PV}/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0/9"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="debug +dht doc examples libressl python +ssl static-libs test"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   dev-libs/boost:=[threads]
+   virtual/libiconv
+   examples? ( !net-p2p/mldonkey )
+   python? (
+   ${PYTHON_DEPS}
+   dev-libs/boost:=[python,${PYTHON_USEDEP}]
+   )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:= )
+   )
+"
+DEPEND="${RDEPEND}
+   sys-devel/libtool
+"
+
+src_prepare() {
+   default
+
+   # bug 578026
+   # prepend -L${S}/... to ensure bindings link against the lib we just 
built
+   sed -i -e "s|^|-L${S}/src/.libs |" bindings/python/link_flags.in || die
+
+   # prepend -I${S}/... to ensure bindings use the right headers
+   sed -i -e "s|^|-I${S}/src/include |" bindings/python/compile_flags.in 
|| die
+
+   use python && distutils-r1_src_prepare
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable debug)
+   $(use_enable debug logging)
+   $(use_enable debug disk-stats)
+   $(use_enable dht dht $(usex debug logging yes))
+   $(use_enable examples)
+   $(use_enable ssl encryption)
+   $(use_enable static-libs static)
+   $(use_enable test tests)
+   --with-libiconv
+   )
+   econf "${myeconfargs[@]}"
+
+   if use python; then
+   python_configure() {
+   econf 

[gentoo-commits] repo/gentoo:master commit in: sys-libs/uclibc-ng/

2017-04-03 Thread Anthony G. Basile
commit: c03fd9aeed5fb3fae58d6e08121b9369b9f8c458
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Apr  4 02:02:51 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Apr  4 02:02:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c03fd9ae

sys-libs/uclibc-ng: remove older versions

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-libs/uclibc-ng/Manifest   |   3 -
 sys-libs/uclibc-ng/uclibc-ng-1.0.16.ebuild| 399 -
 sys-libs/uclibc-ng/uclibc-ng-1.0.17.ebuild| 399 -
 sys-libs/uclibc-ng/uclibc-ng-1.0.18-r1.ebuild | 408 --
 4 files changed, 1209 deletions(-)

diff --git a/sys-libs/uclibc-ng/Manifest b/sys-libs/uclibc-ng/Manifest
index 1025f878bc7..ecb210bdedf 100644
--- a/sys-libs/uclibc-ng/Manifest
+++ b/sys-libs/uclibc-ng/Manifest
@@ -1,6 +1,3 @@
-DIST uClibc-ng-1.0.16.tar.bz2 2769238 SHA256 
f0ded5cb1ff7aac670ca9df931fc820648d91b27085a3efecc1b7f06d65f57f6 SHA512 
05110f0b6651862f16b01d1b45d59258b93686a7635815f9e050ab6b8f0eb14581782c95f305649d62aa80e78060865620a5306a657ea7e9ac396c68d61347cb
 WHIRLPOOL 
d79830b46d4bcb2f19917da936a35443da95728c25a050e5a313f6a374669be8c29d5df12a6e9ac5efc65416a0206672a70c7b6d75cb3fdc4017220e3bf3
-DIST uClibc-ng-1.0.17.tar.bz2 2769872 SHA256 
fb4ab60698256d110bf30678a4cb27f14b3cf6eae60ed4ad21b2de5cac8c0bf3 SHA512 
de6c7bf2168fe76ad0fa3a59c2c4264040383683b4774e846c97c20802d92dc478d3fcf271800f008c5b2ee06d3f50baac47bc5f28b43366e418c65b11d3bdb4
 WHIRLPOOL 
430fcd6992097bcd995936e36450617d0d9f57182542ffc42f0bdf021a2e7c0a5c9f8bce50c498567e9219379ef80a20e444f872429ab36dc43eda11134a03f6
-DIST uClibc-ng-1.0.18.tar.bz2 2754404 SHA256 
71b2d401025c1235a061cfc80d394760fb37f3611566e105b39dd034f6ed001c SHA512 
579ddf4470d684979ba00b71545e7c34ca48d0ad58767222835f95c1401dea5435b6a945390c992e027cc59f2b419a9d835081d08c9d2e6db8b8ddeeed24f5cd
 WHIRLPOOL 
60cd9cc03668af81988d603edc637a8d3dba8276bc0d71e6e915263119c8cf629d293e2da73a57def5b07732cd37f35527b1bc7d3ef01ff09dd6fcc2cf7d3a59
 DIST uClibc-ng-1.0.19.tar.bz2 2748768 SHA256 
139c495d8f71ec31da97e0330b056302ff40f0acba66988fcd737cfb4eb445ed SHA512 
d385eca25c4a356b01b6d7acaef63daeeb172769d6306525fb95f62e818aca354cf04fae15af65bc346f19dcfdc601f87e52a8dc95f528d7392648d1b056fe63
 WHIRLPOOL 
1cc6b64df85df5f9e8c15c9cad3ed5641add20f402657a7d9c6283527ba7feac3c90ce293f2b15578c6d816c19018467336e50cd469a46482c2e4168f2addaf5
 DIST uClibc-ng-1.0.20.tar.bz2 2414313 SHA256 
0d0ee9d4df82958f65088f446ffd7548d88deb1f1b949f9ec3e673decb910597 SHA512 
c0d4fc442f087d9bf994a7b84fa12cfae96f2980061cbb39b1c2cf243692d44fcab79d4a686ac5a7889b9081682aa13d013da0ad99cb30ad2b7150bdb19de0de
 WHIRLPOOL 
16035dd540629aa453e023b6ea96eab5e577579e7bb940ed3411107ffd12bc78148e7a14222184207ae40633d30871d9e583c3456a04cc28b96dfd40b287e713
 DIST uClibc-ng-1.0.22.tar.bz2 2435181 SHA256 
430bebc26545022c5c3e9cebd4ee682db0053b94235e0be5df7eeab7ff19a9e0 SHA512 
d29a14813f6b795fbd380a9593742f696cd32ec8fd22001ce092382ca0059357bc921b8eac7d0a6ae2a9cab724b0ddd15f9959ec789b4824a5db820cbd00b6e7
 WHIRLPOOL 
14336e9e159585472a9a01cb69acc0cb59d8df89769e532c4deec4c1a6a0056d8ff091904163ad9ab29c2c5107fe57f3241c8d4e898fe831f21b1a8e685aaec1

diff --git a/sys-libs/uclibc-ng/uclibc-ng-1.0.16.ebuild 
b/sys-libs/uclibc-ng/uclibc-ng-1.0.16.ebuild
deleted file mode 100644
index ef86bc4a36e..000
--- a/sys-libs/uclibc-ng/uclibc-ng-1.0.16.ebuild
+++ /dev/null
@@ -1,399 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit flag-o-matic multilib savedconfig toolchain-funcs versionator
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="git://uclibc-ng.org/git/uclibc-ng"
-   inherit git-r3
-   MY_P=uclibc-ng-${PV}
-else
-   MY_P=uClibc-ng-${PV}
-fi
-
-DESCRIPTION="C library for developing embedded Linux systems"
-HOMEPAGE="http://www.uclibc-ng.org/;
-if [[ ${PV} != "" ]] ; then
-   PATCH_VER=""
-   SRC_URI="http://downloads.uclibc-ng.org/releases/${PV}/${MY_P}.tar.bz2;
-   KEYWORDS="-* amd64 arm ~mips ~ppc x86"
-fi
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="debug hardened iconv ipv6 rpc crosscompile_opts_headers-only"
-RESTRICT="strip"
-
-# 1) We can't upgrade from uclibc to uclibc-ng via a soft blocker since portage
-#will delete the ld.so sym link prematurely and break the system. So we
-#will hard block and give manual migration instructions.
-# 2) Currently uclibc and uclibc-ng's iconv are in bad shape.  We've been using
-#the breakout library.  The disadvantage here is that we have to sprinkle
-#LDFAGS=-liconv on build systems that need to link against libiconv.
-RDEPEND="
-   !!sys-libs/uclibc
-   iconv? ( dev-libs/libiconv )"
-
-S=${WORKDIR}/${MY_P}
-
-export CBUILD=${CBUILD:-${CHOST}}
-export CTARGET=${CTARGET:-${CHOST}}
-if [[ ${CHOST} == ${CTARGET} ]] ; then
-   if [[ ${CATEGORY} == cross-* ]] ; then
-

[gentoo-commits] repo/gentoo:master commit in: sys-libs/uclibc-ng/

2017-04-03 Thread Anthony G. Basile
commit: c528b47d481ff55a3bd0aff8f9f496a3778254db
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Apr  4 01:59:15 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Apr  4 01:59:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c528b47d

sys-libs/uclibc-ng: version bump to 1.0.23

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-libs/uclibc-ng/Manifest|   1 +
 sys-libs/uclibc-ng/uclibc-ng-1.0.23.ebuild | 411 +
 2 files changed, 412 insertions(+)

diff --git a/sys-libs/uclibc-ng/Manifest b/sys-libs/uclibc-ng/Manifest
index b741059944c..1025f878bc7 100644
--- a/sys-libs/uclibc-ng/Manifest
+++ b/sys-libs/uclibc-ng/Manifest
@@ -4,3 +4,4 @@ DIST uClibc-ng-1.0.18.tar.bz2 2754404 SHA256 
71b2d401025c1235a061cfc80d394760fb3
 DIST uClibc-ng-1.0.19.tar.bz2 2748768 SHA256 
139c495d8f71ec31da97e0330b056302ff40f0acba66988fcd737cfb4eb445ed SHA512 
d385eca25c4a356b01b6d7acaef63daeeb172769d6306525fb95f62e818aca354cf04fae15af65bc346f19dcfdc601f87e52a8dc95f528d7392648d1b056fe63
 WHIRLPOOL 
1cc6b64df85df5f9e8c15c9cad3ed5641add20f402657a7d9c6283527ba7feac3c90ce293f2b15578c6d816c19018467336e50cd469a46482c2e4168f2addaf5
 DIST uClibc-ng-1.0.20.tar.bz2 2414313 SHA256 
0d0ee9d4df82958f65088f446ffd7548d88deb1f1b949f9ec3e673decb910597 SHA512 
c0d4fc442f087d9bf994a7b84fa12cfae96f2980061cbb39b1c2cf243692d44fcab79d4a686ac5a7889b9081682aa13d013da0ad99cb30ad2b7150bdb19de0de
 WHIRLPOOL 
16035dd540629aa453e023b6ea96eab5e577579e7bb940ed3411107ffd12bc78148e7a14222184207ae40633d30871d9e583c3456a04cc28b96dfd40b287e713
 DIST uClibc-ng-1.0.22.tar.bz2 2435181 SHA256 
430bebc26545022c5c3e9cebd4ee682db0053b94235e0be5df7eeab7ff19a9e0 SHA512 
d29a14813f6b795fbd380a9593742f696cd32ec8fd22001ce092382ca0059357bc921b8eac7d0a6ae2a9cab724b0ddd15f9959ec789b4824a5db820cbd00b6e7
 WHIRLPOOL 
14336e9e159585472a9a01cb69acc0cb59d8df89769e532c4deec4c1a6a0056d8ff091904163ad9ab29c2c5107fe57f3241c8d4e898fe831f21b1a8e685aaec1
+DIST uClibc-ng-1.0.23.tar.bz2 2350186 SHA256 
3eeb53a2aa5a32f455fb9d197f7b598f2ff46bbf35d72073f5e554e70c17c782 SHA512 
eca892a0773cfbabaf5037347b1969706c040c903c93c612d2e0aca8d66b51d6d1cb7f3811a688898bc7e25ca235cc14b6bbd741c51dc135300a0e1408c6d1c3
 WHIRLPOOL 
1fb96469fb7860c05660fae7e58e9c60704cd76ad163a4c46e402e98ada35041a2069f6573498cf596a754044c08f30b4e3fd8fcba2d92c48ee7a7af9376af79

diff --git a/sys-libs/uclibc-ng/uclibc-ng-1.0.23.ebuild 
b/sys-libs/uclibc-ng/uclibc-ng-1.0.23.ebuild
new file mode 100644
index 000..c0d6e8d0953
--- /dev/null
+++ b/sys-libs/uclibc-ng/uclibc-ng-1.0.23.ebuild
@@ -0,0 +1,411 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit flag-o-matic multilib savedconfig toolchain-funcs versionator
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="git://uclibc-ng.org/git/uclibc-ng"
+   inherit git-r3
+   MY_P=uclibc-ng-${PV}
+else
+   MY_P=uClibc-ng-${PV}
+fi
+
+DESCRIPTION="C library for developing embedded Linux systems"
+HOMEPAGE="http://www.uclibc-ng.org/;
+if [[ ${PV} != "" ]] ; then
+   PATCH_VER=""
+   SRC_URI="http://downloads.uclibc-ng.org/releases/${PV}/${MY_P}.tar.bz2;
+   #KEYWORDS="-* ~amd64 ~arm ~mips ~ppc ~x86"
+   KEYWORDS="-* ~amd64 ~arm ~ppc ~x86"
+fi
+
+LICENSE="LGPL-2"
+SLOT="0"
+IUSE="debug hardened iconv ipv6 rpc symlink-compat 
crosscompile_opts_headers-only"
+RESTRICT="strip"
+
+# 1) We can't upgrade from uclibc to uclibc-ng via a soft blocker since portage
+#will delete the ld.so sym link prematurely and break the system. So we
+#will hard block and give manual migration instructions.
+# 2) Currently uclibc and uclibc-ng's iconv are in bad shape.  We've been using
+#the breakout library.  The disadvantage here is that we have to sprinkle
+#LDFAGS=-liconv on build systems that need to link against libiconv.
+RDEPEND="
+   !!sys-libs/uclibc
+   iconv? ( dev-libs/libiconv )"
+
+S=${WORKDIR}/${MY_P}
+
+export CBUILD=${CBUILD:-${CHOST}}
+export CTARGET=${CTARGET:-${CHOST}}
+if [[ ${CHOST} == ${CTARGET} ]] ; then
+   if [[ ${CATEGORY} == cross-* ]] ; then
+   export CTARGET=${CATEGORY#cross-}
+   fi
+fi
+
+is_crosscompile() {
+   [[ ${CHOST} != ${CTARGET} ]]
+}
+
+alt_build_kprefix() {
+   if [[ ${CBUILD} == ${CHOST} && ${CHOST} == ${CTARGET} ]] ; then
+   echo /usr/include
+   else
+   echo /usr/${CTARGET}/usr/include
+   fi
+}
+
+just_headers() {
+   use crosscompile_opts_headers-only && is_crosscompile
+}
+
+uclibc_endian() {
+   # XXX: this wont work for a toolchain which is bi-endian, but we
+   #  dont have any such thing at the moment, so not a big deal
+   touch "${T}"/endian.s
+   $(tc-getAS ${CTARGET}) "${T}"/endian.s -o "${T}"/endian.o
+   case $(file "${T}"/endian.o) in
+   *" MSB "*) echo "BIG";;
+   *" LSB "*) echo 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/ppx_tools/

2017-04-03 Thread Alexis Ballier
commit: 35c3e1acc59fe84469faff2b79e4faabc6b6fdf4
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Apr  3 22:08:50 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Apr  3 22:08:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35c3e1ac

dev-ml/ppx_tools: fix remote id

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/ppx_tools/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ppx_tools/metadata.xml b/dev-ml/ppx_tools/metadata.xml
index e9fc8c8473c..56d1f00f232 100644
--- a/dev-ml/ppx_tools/metadata.xml
+++ b/dev-ml/ppx_tools/metadata.xml
@@ -6,6 +6,6 @@
 Gentoo ML Project
   
   
-ocsigen/tyxml
+alainfrisch/ppx_tools
   
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/newsyslog/

2017-04-03 Thread Patrice Clement
commit: 8a91e3d56901b0b2fe6deabd17e1a69acd508779
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Apr  3 22:04:22 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Apr  3 22:04:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a91e3d5

app-admin/newsyslog: EAPI 6 bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-admin/newsyslog/newsyslog-1.1-r1.ebuild | 44 +
 1 file changed, 44 insertions(+)

diff --git a/app-admin/newsyslog/newsyslog-1.1-r1.ebuild 
b/app-admin/newsyslog/newsyslog-1.1-r1.ebuild
new file mode 100644
index 000..5f5290e27ad
--- /dev/null
+++ b/app-admin/newsyslog/newsyslog-1.1-r1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+#inherit eutils
+
+DESCRIPTION="a highly configurable program for managing and archiving log 
files"
+HOMEPAGE="http://www.weird.com/~woods/projects/newsyslog.html;
+SRC_URI="ftp://ftp.weird.com/pub/local/${P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND="sys-apps/groff"
+
+RDEPEND="
+   virtual/cron
+   app-arch/gzip"
+
+PATCHES=( "${FILESDIR}"/newsyslog-html.patch )
+
+DOCS=( newsyslog.conf AUTHORS ChangeLog INSTALL NEWS ToDo )
+
+src_configure() {
+   local myconf="--with-syslogd_pid=/var/run/syslog.pid"
+
+   has_version 'app-admin/syslog-ng' \
+   && myconf="--with-syslogd_pid=/var/run/syslog-ng.pid"
+
+   econf \
+   --with-gzip \
+   --with-newsyslog_conf=/etc/newsyslog.conf \
+   ${myconf}
+}
+
+src_install() {
+   emake \
+   DESTDIR="${D}" \
+   catmandir="${T}"/dont-install \
+   install
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad/

2017-04-03 Thread David Seifert
commit: 40dc75e77e917c8e16ba0893ea8d553c80d614dd
Author: David Seifert  gentoo  org>
AuthorDate: Mon Apr  3 21:36:46 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Apr  3 21:53:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40dc75e7

sci-electronics/kicad: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4354

 sci-electronics/kicad/Manifest  |   4 -
 sci-electronics/kicad/kicad-4.0.1-r1.ebuild | 191 
 2 files changed, 195 deletions(-)

diff --git a/sci-electronics/kicad/Manifest b/sci-electronics/kicad/Manifest
index c7a8c3794f4..59db11de40b 100644
--- a/sci-electronics/kicad/Manifest
+++ b/sci-electronics/kicad/Manifest
@@ -1,11 +1,7 @@
-DIST kicad-4.0.1-i18n.tar.gz 2273300 SHA256 
646f2f394046543be9fd57b2b5fc01f1869b4879958fc13a29f60b3502b7ca30 SHA512 
56c87f94bb8c3a1f92dee6a5d88fe0a7d6778110cf1fbd019e7481fa89d0d3df447eb90d49f7621dd7006a4e23ce16f752eeba368057d4d970e280c77e22cc25
 WHIRLPOOL 
3a592d6c59da763dd554ebf85f9d627da58fb6ca38c435712742e0e58ab60bb59ec6c6b5757e651c7c1656ea23153237d236d680a3f3276ef1e1d4b29b24f413
-DIST kicad-4.0.1-library.tar.gz 105054096 SHA256 
4d1ec105a422a0130be02f4d712d5c22ab223a7963f2b98e75b6847254269e46 SHA512 
88b9d31230ac85e4b4341b0b2194d6fc622c03d62e80c65d82d999e02324d902ce90881fd5592bde9e8c2695370cb0c35e8e4473f640d1a25eddf453637b6b6f
 WHIRLPOOL 
50cce4a0147982f8693009833831a3876c987ea24be938ed51a39d823935d424fbe7940b6f7565c42a318b4e71c24c31f8b0fcbfd5e63db247856312a775001b
-DIST kicad-4.0.1.tar.xz 10837804 SHA256 
73a9f8713ba93ce34e5f9c26e9667f33a22f4e33192fa6bd15d3fc0edea54bde SHA512 
da9d5ba7f6a323d80621304e368c9783febedf7c545f31a6ca69bddc8573e7c7aa127c774cc29e173eae947debd444b5a04b0483800d6c0d1303e32a714e3d26
 WHIRLPOOL 
0985d7b38df1224787b0509407f34043d71f4eac847486bf4633cacb9c3bc32df9590c0516e3189e4b0f5ba17fde93ead467e200e95ecb763f7054cc1baac107
 DIST kicad-4.0.4-i18n.tar.gz 2409039 SHA256 
aec8121fc64985b150c0843db937a3383afe1805697f339aa73009215c1b92cf SHA512 
5fcbf54aeff92c142652908dda9e727e8b076aec4531f2bb4d27aa9fd946e92621141a9709a9469c133010cca019e4e6bc9731366e8c1adbe38078f5a6fcaedf
 WHIRLPOOL 
65c940149ab3357341b41a70f7db35695a598ade462a6fc8e602c4d1b53458fc712706e0effbc8b27b24f95510980a223cb9445b8ca8d54669dd89a65d066a2c
 DIST kicad-4.0.4.tar.xz 10672424 SHA256 
6da5d3f7bc63a9c5b4d0f5e4b954411b45d712168596b5af02957343c87eda00 SHA512 
230eb10d42e004c51d790db0d21dc08653944ca6cc4b728ad34b506f1a2b009c23369ddae417c8fafd420cb8045900dd4145cd1071867c759ab406dd12be3242
 WHIRLPOOL 
c5e577bebfd11160528e9543d9a421a5814ad70134092e9a0bd759b7a941e730b33cac7059606eba049ad5ffc8e6d44a0079bdbe9446ad1f152fa04ec6150d4c
 DIST kicad-4.0.5-i18n.tar.gz 2464569 SHA256 
18538b050f7c85eec0aaf3b2fd0a7a37a4eba139bb3d60be3ef80732e8e4b840 SHA512 
ff33051202d3aa50284170ca1b0ebd6279ee60559c4ce88c577248d4fe3d5781bb5b75eea6c165fbbd4abc1fd681357a7d7877339c4413fb3774bc8a55264b81
 WHIRLPOOL 
b63b9b59ddaf21485e8e358c356c694e03608989e6d2e13fc96bc620789cf1df66cf7d4fb051713ebcbd756afe6b43d217746ef2c84b593eeae8909c5e4c781f
 DIST kicad-4.0.5.tar.xz 10626696 SHA256 
73f286733bb69b04749279a1848cbedfad908e7dcd1d11363c7fae7677c85331 SHA512 
1486a039237e8d97ed21d62905ab74cb953b76c9d15bdfe7edd7380cf93e4c4b9a23aa82c6f523f6d5272e1dbe06ee8853a80eaabb1d0d9db6e304265f53ba7f
 WHIRLPOOL 
a7ca4e8183d44423a2076ca81047965166ed5f15504967ac790c18bedd045e61fbce17e197341876eb73aaa4a9a2571242cc5fcc4853abec99a19b3433690c6e
-DIST kicad-footprints-4.0.1.tar.gz 801985 SHA256 
e3b195706c8f30928c34478a87607e996def94a19982f8987a783b8e4ffe112f SHA512 
4fef1792eee8be951c77a8684942ecfa9047b602796f90e746010d63f72f5981cb2c90efe28ba7bd7d22894256d23f71b47eb170056e7b4423f72120f5413725
 WHIRLPOOL 
b41eb7149b14af4c3dd37bc19f7bba9afcc896c1b5d523e7bead0c6695dad7255527f952042589181876dc598d7a85963ab4f86b6c3179e0e82e6f187712c298
 DIST kicad-footprints-4.0.4.tar.gz 1400434 SHA256 
2b23e282c64c7e72d9ad52a6f114c20572b8c0e3fd9895b9b87b7ccacc7b4479 SHA512 
7d42eea2c7c84961e05e0e61d6380e3d294d696e1321bb4406391125379fd6a3dc2b38e7ff8be51b684786bed892738452218f4c5a95c547319f1eaafc0cea6e
 WHIRLPOOL 
6f96d7ecbe94c511f99c6022466704742aec83578790685c2945926682a0a2c50f2ff176bf075b06cea4cd60fe7afbfb8c142096b6b7a1d73020f0327d1281a8
 DIST kicad-footprints-4.0.5.tar.gz 2330378 SHA256 
50cb02d9eb44b30f8fd68434172a25a93c62cd9a07877091116fd8db8238f9ad SHA512 
91122127be4b54bec7b37706d6438853463ed66b1c0c205e8d93709c159744e84ea58f3bf0cb1f4e18df6061f6df3d76f2ff0d6e698c6ba5ce3867d89838d95d
 WHIRLPOOL 
44283efb35c3522e73d36fc51d591bc236cf2f17b8901279d28908b5a227f791597c74c94bff3be904417df42248b5d16e93a9aaa061132809ffe0507911b186
 DIST kicad-libcontext.tar.gz 25599 SHA256 
37be6072a6016d402b4341e2ceba719cdd8e279e275ea7275d91e19e813a31a3 SHA512 
3b469dcf0e0f4e23f304d0068468a99516e89588d8f36a821af10e751f919cb8a9077d52109fdd43c1c2a443e026b38d0d3aa4774823d05755c9db35742d32d9
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: dev-util/cppcheck/

2017-04-03 Thread Michael Weber
commit: f439efc36affaf3ac2ea402e25032f7f6ca76711
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 21:49:47 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 21:50:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f439efc3

dev-util/cppcheck: Version bump (bug 614562, thanks Jens Lindenmeier).

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-util/cppcheck/Manifest |   1 +
 dev-util/cppcheck/cppcheck-1.78.ebuild | 104 +
 2 files changed, 105 insertions(+)

diff --git a/dev-util/cppcheck/Manifest b/dev-util/cppcheck/Manifest
index eda36963604..3d83dd57558 100644
--- a/dev-util/cppcheck/Manifest
+++ b/dev-util/cppcheck/Manifest
@@ -1,3 +1,4 @@
 DIST cppcheck-1.72.tar.bz2 1125775 SHA256 
9460b184ff2d8dd15344f3e2f42f634c86e4dd3303e1e9b3f13dc67536aab420 SHA512 
13b2348c97a3777feaad579f8620f18d90f6f934f92f5db712c7190af1f40042527500aefa4c8ccd348f7691b1c0d5f32115085c9385dec55460d5ba0804a410
 WHIRLPOOL 
790514f4b5b9c539a30daa691d268c6c5f1077743cde1af8834248eb4213224275e9f72cea46f3b378119a3d0944d7e8d63270c0cd47517c7f382c683a1938fe
 DIST cppcheck-1.75.tar.bz2 1152511 SHA256 
57c70043c1330ed915cbd1a17ecc5408f2637a05062970508e990b1ba28760a0 SHA512 
74116a7a2cd1c8c9a06c81f3f4de3de281f24ee30692729de5506dc7572ed694e55c32d1ad72196a9b95005e9f8d749bd82655323f8ff56051997c2ffc4ed57f
 WHIRLPOOL 
a42979e35041d382b1df755b0cdfb4c51951388d2b097856fa08b3ca6b39bdd99a13809a8b514b1fc0502ac0183a08e0f1ed742100e38a14ee2f7337ddda1f01
 DIST cppcheck-1.77.tar.bz2 1188453 SHA256 
1980ffe5c9c24bb6dea24514d42be3aa49d6ba7cc26c448b3543611fe8ba2619 SHA512 
df8dddf7758c342d45b3393246e07eaa11a53dca19e8a0d09de04f12ea6232538941328d9ca9ac52eb425871fd1c49d55c77e6e38b40772b6f856fd1e9e99779
 WHIRLPOOL 
9f7842eba0f53a93dbd23d09c10e5bd3dcca5ecbb0689e4ded8c7529d84fd939a57ce9cd267cdd21b2d79aeb6c07d672983ccb52be0fcc0b28ca80a31b59
+DIST cppcheck-1.78.tar.bz2 1201959 SHA256 
e42696f7d6321b98cb479ad9728d051effe543b26aca8102428f60b9850786b1 SHA512 
598556e9d657a3a77ff889cb6647291160017f7f9322326771416ff59d44126ce47c39767657b863cdb8a1b46d7c83bb337ec2fe0574500b37e99c33377b5dd8
 WHIRLPOOL 
2087ad837353d01bca828af940c427909a3e556e97e46d1822e0f2f527619c87b15d1a7f647992dd46eb3a2ef1eb4fb86344db31d7a01fb6f8a9070dfeecef96

diff --git a/dev-util/cppcheck/cppcheck-1.78.ebuild 
b/dev-util/cppcheck/cppcheck-1.78.ebuild
new file mode 100644
index 000..fcdd220729f
--- /dev/null
+++ b/dev-util/cppcheck/cppcheck-1.78.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1 eutils qt4-r2 toolchain-funcs flag-o-matic
+
+DESCRIPTION="static analyzer of C/C++ code"
+HOMEPAGE="http://cppcheck.sourceforge.net;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="htmlreport pcre qt4"
+
+RDEPEND="htmlreport? ( dev-python/pygments[${PYTHON_USEDEP}] )
+   >=dev-libs/tinyxml2-2
+   qt4? ( dev-qt/qtgui:4 )
+   pcre? ( dev-libs/libpcre )"
+DEPEND="${RDEPEND}
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   virtual/pkgconfig"
+
+src_prepare() {
+   append-cxxflags -std=c++0x
+
+   # Drop bundled libs, patch Makefile generator and re-run it
+   rm -r externals/tinyxml || die
+   epatch "${FILESDIR}"/${PN}-1.75-tinyxml2.patch
+   tc-export CXX
+   emake dmake
+   ./dmake || die
+
+   default
+}
+
+src_configure() {
+   if use pcre ; then
+   sed -e '/HAVE_RULES=/s:=no:=yes:' \
+   -i Makefile
+   fi
+   if use qt4 ; then
+   pushd gui
+   qt4-r2_src_configure
+   popd
+   fi
+}
+
+src_compile() {
+   export LIBS="$(pkg-config --libs tinyxml2)"
+   emake ${PN} man \
+   CFGDIR="${EROOT}usr/share/${PN}/cfg" \
+   
DB2MAN="${EROOT}usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl"
+
+   if use qt4 ; then
+   pushd gui
+   qt4-r2_src_compile
+   popd
+   fi
+   if use htmlreport ; then
+   pushd htmlreport
+   distutils-r1_src_compile
+   popd
+   fi
+}
+
+src_test() {
+   # safe final version
+   mv -v ${PN}{,.final}
+   mv -v lib/library.o{,.final}
+   mv -v cli/cppcheckexecutor.o{,.final}
+   #trigger recompile with CFGDIR inside ${S}
+   emake check CFGDIR="${S}/cfg"
+   # restore
+   mv -v ${PN}{.final,}
+   mv -v lib/library.o{.final,}
+   mv -v cli/cppcheckexecutor.o{.final,}
+}
+
+src_install() {
+   # it's not autotools-based, so "${ED}" here, not "${D}", bug 531760
+   emake install DESTDIR="${ED}"
+
+   insinto "/usr/share/${PN}/cfg"
+   doins cfg/*.cfg
+   if use qt4 ; then
+   dobin gui/${PN}-gui
+

[gentoo-commits] repo/gentoo:master commit in: app-backup/spideroak-bin/

2017-04-03 Thread Anthony G. Basile
commit: afa00281f4738f96127137eedc347b66ba46837c
Author: Fernandez-Alcon, Jose  atlantis  blackmagic  io>
AuthorDate: Mon Apr  3 15:51:31 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Apr  3 21:45:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afa00281

app-backup/spideroak-bin: version bump to 6.1.5, issue #582660

Reported-by: Frank Krömmelbein  gmx.de>

 app-backup/spideroak-bin/Manifest  |   2 +
 .../spideroak-bin/spideroak-bin-6.1.5.ebuild   | 100 +
 2 files changed, 102 insertions(+)

diff --git a/app-backup/spideroak-bin/Manifest 
b/app-backup/spideroak-bin/Manifest
index fde426b9247..e253b7b6c91 100644
--- a/app-backup/spideroak-bin/Manifest
+++ b/app-backup/spideroak-bin/Manifest
@@ -1,2 +1,4 @@
 DIST spideroak-bin-6.1.3_amd64.deb 26655852 SHA256 
65ecab3096e6de675fd9facf81f387775c2419158112c4914447fa0af07d8015 SHA512 
f9d4e4178721609ec4a544ac8b84e581088ad9be5aaf3aa68de12e2d7e17d7c148d9a619917b69ecfd9c08087d1987b0b67081673b81f56908089caa9ab0edc5
 WHIRLPOOL 
6751d84d9739bc66f189b52cf944544213f10e978b9e2cb1b85fcf1303fb4ae0373d7bf9633638586cceea659c2448a442b459fdaefc7306854f8b1f58c189d9
 DIST spideroak-bin-6.1.3_x86.deb 26173318 SHA256 
50fd7d442291bb9ec64d51308444c83b7d76d55bafcc3e9f5d3009e6a49eee0f SHA512 
0ddf1be909b44042e3fe0f7e791558e50c649a3d4472c3a05c78835c593d6db3369c0e862b79f2a4812232503346defc1c889fbc4c701a125d3364810b524481
 WHIRLPOOL 
2e19e4ac0f9028acea19eb2f395faba2031959c09544c07a7f10c690f67317558ac0fbdf2e1fe1b52a922e4ac9480486348b0c4cf053b03336018d3aef7f2dab
+DIST spideroak-bin-6.1.5_amd64.deb 26882606 SHA256 
7ef458381c17f7a3712043aa672b5509500e7e6999cd52ba5d85ba76f7a29d2c SHA512 
c23e41d359879ce671f8af66e32d08affe10c92492ed46dc6eea5942f14190d28a4b1b96722959bfcec98b05f9176c0a959c93c32bf22709139332b42d805a52
 WHIRLPOOL 
8f9b56f091951dafb6849cfbafd60314708dd5a5deed0852d5bb06869b36f1fa5d8e55508407c5bbf34024523531bfe26325fce7895ac04b59f6f1dd1aa50c58
+DIST spideroak-bin-6.1.5_x86.deb 26405076 SHA256 
a001e464b87406e775f421ff041fbc80a3f3b33548c792a095c9632e137a3e89 SHA512 
4aa87c2fd35569bb4acaf5492ca520d66bb9d53c5a53d5e8f418ae0518cb143f35bc769a7d37bc1ea6e4536b944780a3403d3800c45973bed537f573f3e07d0a
 WHIRLPOOL 
7471b8ebf394cbcbc05400cc0e0c390ea30d92194567458b6955bd9a25f5f40fbe27c52e30767e467aa4f45ecf6fa304b82ab60bf30d1408846c4cff7f4087b9

diff --git a/app-backup/spideroak-bin/spideroak-bin-6.1.5.ebuild 
b/app-backup/spideroak-bin/spideroak-bin-6.1.5.ebuild
new file mode 100644
index 000..885e81a1a1d
--- /dev/null
+++ b/app-backup/spideroak-bin/spideroak-bin-6.1.5.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+inherit eutils unpacker
+
+SRC_URI_BASE="https://spideroak.com/getbuild?platform=ubuntu;
+
+DESCRIPTION="Secure free online backup, storage, and sharing system"
+HOMEPAGE="https://spideroak.com;
+SRC_URI="x86? ( ${SRC_URI_BASE}=i386=${PV} -> ${P}_x86.deb )
+   amd64? ( ${SRC_URI_BASE}=x86_64=${PV} -> ${P}_amd64.deb )"
+RESTRICT="mirror strip"
+
+LICENSE="spideroak"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus X"
+
+DEPEND="dev-util/patchelf"
+RDEPEND="
+   app-crypt/mit-krb5[keyutils]
+   dbus? ( sys-apps/dbus )
+   X? (
+   media-libs/fontconfig
+   media-libs/freetype:2
+   dev-libs/glib:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   )
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Set RPATH for preserve-libs handling (bug #400979).
+   cd "${S}/opt/SpiderOakONE/lib" || die
+   local x
+   for x in `find` ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   patchelf --set-rpath '$ORIGIN' "${x}" || \
+   die "patchelf failed on ${x}"
+   done
+
+   #Remove the libraries that break compatibility in modern systems
+   #SpiderOak will use the system libs instead
+   rm -f "${S}/opt/SpiderOakONE/lib/libstdc++.so.6"
+   rm -f "${S}/opt/SpiderOakONE/lib/libgcc_s.so.1"
+   rm -f "${S}/opt/SpiderOakONE/lib/libpng12.so.0"
+   rm -f "${S}/opt/SpiderOakONE/lib/libz.so.1"
+}
+
+src_install() {
+   #install the wrapper script
+   exeinto /usr/bin
+   doexe usr/bin/SpiderOakONE
+
+   # inotify_dir_watcher needs to be marked executable, bug #453266
+   #chmod a+rx opt/SpiderOakONE/lib/inotify_dir_watcher
+
+   #install the executable
+   exeinto /opt/SpiderOakONE/lib
+   doexe opt/SpiderOakONE/lib/SpiderOakONE
+   doexe opt/SpiderOakONE/lib/inotify_dir_watcher
+   rm -f 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Module-Build/

2017-04-03 Thread Michael Weber
commit: 7e259e443d3de5285df2b2cee92a3af14be942d7
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 21:21:08 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 21:26:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e259e44

dev-perl/Module-Build: arm64 stable.

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-perl/Module-Build/Module-Build-0.421.600.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Module-Build/Module-Build-0.421.600.ebuild 
b/dev-perl/Module-Build/Module-Build-0.421.600.ebuild
index 9cdaf638ac0..916ea7b71ad 100644
--- a/dev-perl/Module-Build/Module-Build-0.421.600.ebuild
+++ b/dev-perl/Module-Build/Module-Build-0.421.600.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Build and install Perl modules"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-power/powertop/

2017-04-03 Thread Michael Weber
commit: 0e2903f2ad84a708e7f20bb17baffc17dd222d9f
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 21:26:02 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 21:26:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e2903f2

sys-power/powertop: arm ppc stable (bug 614320).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm arm64 ppc ppc64"

 sys-power/powertop/powertop-2.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-power/powertop/powertop-2.8.ebuild 
b/sys-power/powertop/powertop-2.8.ebuild
index 117886a9ced..0fd176bd6f9 100644
--- a/sys-power/powertop/powertop-2.8.ebuild
+++ b/sys-power/powertop/powertop-2.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
SRC_URI=""
 else
SRC_URI="https://01.org/sites/default/files/downloads/${PN}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~amd64 arm ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
 fi
 
 DESCRIPTION="tool that helps you find what software is using the most power"



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

2017-04-03 Thread Andreas Sturmlechner
commit: 764bd0aec1469a57b278cfa73f53631f7b24bb13
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  3 21:18:34 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  3 21:25:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=764bd0ae

x11-misc/andromeda: Remove last-rited pkg

Gentoo-bug: 602260

 x11-misc/andromeda/Manifest |  1 -
 x11-misc/andromeda/andromeda-0.3.ebuild | 36 -
 x11-misc/andromeda/metadata.xml | 11 --
 3 files changed, 48 deletions(-)

diff --git a/x11-misc/andromeda/Manifest b/x11-misc/andromeda/Manifest
deleted file mode 100644
index a0dca1dfe51..000
--- a/x11-misc/andromeda/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST andromeda-0.3.tar.gz 2225274 SHA256 
f0fad0017b95a6b2a2c4d253b96ae114fd58a30a9421ed9944f49178915fc078 SHA512 
a9600490b68cee92ae2bc0ff9d34d18ca1708806b4e345d49309cabd7156702315123e319542014bb7207c637b931ba64bf9bc403f44be45550c068881fcf80c
 WHIRLPOOL 
815e93556bb72edc82707d5452d87261362cd083654e26ce5f3db8592f121e658759c09ce3352b14340e0a332e5641e14341f7c62a22cf15f2f4218d4026fc8e

diff --git a/x11-misc/andromeda/andromeda-0.3.ebuild 
b/x11-misc/andromeda/andromeda-0.3.ebuild
deleted file mode 100644
index d9934f655a3..000
--- a/x11-misc/andromeda/andromeda-0.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils
-
-DESCRIPTION="Qt4-based filemanager"
-HOMEPAGE="https://github.com/ABBAPOH/andromeda;
-SRC_URI="https://dev.gentoo.org/~yngwin/distfiles/${P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="pdf"
-
-RDEPEND=">=dev-qt/qtcore-4.8.0:4
-   >=dev-qt/qtdbus-4.8.0:4
-   >=dev-qt/qtgui-4.8.0:4
-   >=dev-qt/qtopengl-4.8.0:4
-   >=dev-qt/qtwebkit-4.8.0:4
-   pdf? ( app-text/poppler )"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${PN}-${PN}
-
-DOCS="TODO.txt dist/changes-*"
-
-src_configure() {
-   # avoid building manual-only tests
-   local mycmakeargs=(
-   -DDISABLE_TESTS=true
-   $(cmake-utils_use_find_package pdf PopplerQt4)
-   )
-
-   cmake-utils_src_configure
-}

diff --git a/x11-misc/andromeda/metadata.xml b/x11-misc/andromeda/metadata.xml
deleted file mode 100644
index 81e3a4c5be0..000
--- a/x11-misc/andromeda/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   q...@gentoo.org
-   Gentoo Qt Project
-   
-   
-   ABBAPOH/andromeda
-   
-



[gentoo-commits] repo/gentoo:master commit in: media-video/lives/

2017-04-03 Thread Andreas Sturmlechner
commit: 9710264f4bd40ce38562d12bdea7b35ba55b9b4c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  3 21:06:50 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  3 21:25:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9710264f

media-video/lives: Remove last-rited pkg

 media-video/lives/Manifest  |  1 -
 media-video/lives/lives-1.4.6-r1.ebuild | 77 -
 media-video/lives/metadata.xml  | 14 --
 3 files changed, 92 deletions(-)

diff --git a/media-video/lives/Manifest b/media-video/lives/Manifest
deleted file mode 100644
index 94b7d32b8de..000
--- a/media-video/lives/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST LiVES-1.4.6.tar.bz2 3086311 SHA256 
67fb57571b80da680463f53f4e1aa2ac92d88f9437b7c9feb048faef7e617d59 SHA512 
64f0560537b34389d694bc80446838b91845fe548e7090338860034f3e0c8e35b3cce94ffbeb6fdc5f84a7fa45dedfe5038600ec3685e8c43ef2b9a0983f5757
 WHIRLPOOL 
1daf8f1d220c8f39bd77e3dbbbc588c45b7d0e33bc8ac4795759af009f48161c7279daed087906617b6c64feb86e56800bbb82694ed606458590f0a1345279ce

diff --git a/media-video/lives/lives-1.4.6-r1.ebuild 
b/media-video/lives/lives-1.4.6-r1.ebuild
deleted file mode 100644
index 50f71ed2f8d..000
--- a/media-video/lives/lives-1.4.6-r1.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit autotools eutils
-
-MY_P=LiVES-${PV}
-
-DESCRIPTION="LiVES is a Video Editing System"
-HOMEPAGE="http://lives.sf.net;
-SRC_URI="http://www.xs4all.nl/~salsaman/lives/current/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="libvisual matroska nls ogg theora" # static-libs
-
-RDEPEND="media-video/mplayer
-   dev-lang/perl
-   >=dev-libs/glib-2.14
-   >=x11-libs/gtk+-2.16:2
-   media-libs/libsdl
-   media-libs/libv4l
-   virtual/ffmpeg
-   virtual/imagemagick-tools
-   virtual/jpeg
-   media-sound/sox
-   virtual/cdrtools
-   || ( dev-lang/python:2.7 dev-lang/python:2.6 )
-   media-plugins/frei0r-plugins
-   media-sound/jack-audio-connection-kit
-   >=media-video/mjpegtools-1.6.2
-   sys-libs/libavc1394
-   libvisual? ( media-libs/libvisual )
-   matroska? ( media-video/mkvtoolnix )
-   ogg? ( media-sound/ogmtools )
-   theora? ( media-libs/libtheora )"
-DEPEND="${DEPEND}
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-DOCS=( AUTHORS BUGS ChangeLog FEATURES GETTING.STARTED NEWS README )
-
-src_prepare() {
-   esvn_clean
-
-   # Don't try to detect installed copies wrt #295293
-   sed -i -e '/^PKG_CHECK_MODULES(WEED/s:true:false:' configure.in || die
-   sed -i -e '/test/s:sendOSC:dIsAbLeAuToMaGiC:' 
libOSC/sendOSC/Makefile.am || die
-
-   # Use python 2.x as per reference in plugins
-   sed -i \
-   -e '/#!.*env/s:python:python2:' \
-   lives-plugins/plugins/encoders/multi_encoder* \
-   lives-plugins/marcos-encoders/lives_*_encoder* || die
-
-   AT_M4DIR="mk/autoconf" eautoreconf # for the seds
-}
-
-src_configure() {
-   # $(use_enable static-libs static)
-   econf \
-   --disable-static \
-   $(use_enable libvisual) \
-   $(use_enable nls)
-}
-
-src_install() {
-   default
-
-   rm -f "${ED}"usr/bin/lives #384727
-   dosym lives-exe /usr/bin/lives
-
-   find "${ED}"usr -name '*.la' -exec rm -f {} +
-   # use static-libs ||
-   rm -f "${ED}"usr/lib*/libweed-*.a
-}

diff --git a/media-video/lives/metadata.xml b/media-video/lives/metadata.xml
deleted file mode 100644
index 3662b69096a..000
--- a/media-video/lives/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-lu_z...@gentoo.org
-  
-  
-media-vi...@gentoo.org
-Gentoo Video project
-  
-  
-Enable libvisual support
-  
-



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyro/

2017-04-03 Thread Michael Weber
commit: 9b1dcadcea8c779751a6d85f3860d3cabc453fc5
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 21:10:02 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 21:19:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b1dcadc

dev-python/pyro: add ~ppc keyword (bug 612802).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="ppc"

 dev-python/pyro/pyro-4.56.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyro/pyro-4.56.ebuild b/dev-python/pyro/pyro-4.56.ebuild
index 3c6afee9006..60026395443 100644
--- a/dev-python/pyro/pyro-4.56.ebuild
+++ b/dev-python/pyro/pyro-4.56.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="4"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
 IUSE="doc examples test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-libs/jasper/

2017-04-03 Thread Michael Weber
commit: 985303b3f21b55ae6270f0d5172220814068a7be
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 21:18:21 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 21:19:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=985303b3

media-libs/jasper: arm stable (bug 614012).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

 media-libs/jasper/jasper-2.0.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/jasper/jasper-2.0.12.ebuild 
b/media-libs/jasper/jasper-2.0.12.ebuild
index b790f9e3818..4063f5bcf30 100644
--- a/media-libs/jasper/jasper-2.0.12.ebuild
+++ b/media-libs/jasper/jasper-2.0.12.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
 else
inherit vcs-snapshot
SRC_URI="https://github.com/mdadams/${PN}/archive/version-${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 fi
 
 # We limit memory usage to 128 MiB by default, specified in bytes



[gentoo-commits] repo/gentoo:master commit in: dev-db/percona-xtrabackup/, dev-db/percona-xtrabackup/files/

2017-04-03 Thread David Seifert
commit: a572009f71a0a16e50f0a250d6a00b6912e44e82
Author: David Seifert  gentoo  org>
AuthorDate: Mon Apr  3 21:12:30 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Apr  3 21:15:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a572009f

dev-db/percona-xtrabackup: [QA] Unbundle boost, fix ebuild

* Use cmake-utils.eclass instead of calling cmake explicitly
* Fix building with GCC 6
* Unbundle
  - Boost
  - lz4
  - libedit
  - libevent
  - zlib
* Install README using einstalldocs

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 ...percona-xtrabackup-2.4.6-fix-gcc6-isystem.patch | 112 +
 ...rabackup-2.4.6-remove-boost-version-check.patch |  19 
 .../percona-xtrabackup-2.4.6-r1.ebuild |  75 ++
 3 files changed, 206 insertions(+)

diff --git 
a/dev-db/percona-xtrabackup/files/percona-xtrabackup-2.4.6-fix-gcc6-isystem.patch
 
b/dev-db/percona-xtrabackup/files/percona-xtrabackup-2.4.6-fix-gcc6-isystem.patch
new file mode 100644
index 000..6418e34a8d6
--- /dev/null
+++ 
b/dev-db/percona-xtrabackup/files/percona-xtrabackup-2.4.6-fix-gcc6-isystem.patch
@@ -0,0 +1,112 @@
+Do not use -isystem to add headers, as they break GCC 6's header wrapping.
+See also: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70129
+
+--- a/client/base/CMakeLists.txt
 b/client/base/CMakeLists.txt
+@@ -49,7 +49,7 @@
+   mutex.cc
+   mysql_query_runner.cc
+   show_variable_query_extractor.cc
+-  COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem ${BOOST_INCLUDE_DIR}
++  COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -I${BOOST_INCLUDE_DIR}
+ )
+ 
+ TARGET_LINK_LIBRARIES(client_base mysqlclient)
+--- a/client/CMakeLists.txt
 b/client/CMakeLists.txt
+@@ -52,7 +52,7 @@
+ upgrade/program.cc
+   )
+ ADD_COMPILE_FLAGS(
+-  upgrade/program.cc COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem 
${BOOST_INCLUDE_DIR}
++  upgrade/program.cc COMPILE_FLAGS -I${BOOST_PATCHES_DIR} 
-I${BOOST_INCLUDE_DIR}
+ )
+ TARGET_LINK_LIBRARIES(mysql_upgrade mysqlclient client_base mysqlcheck_core)
+ ADD_DEPENDENCIES(mysql_upgrade GenFixPrivs GenSysSchema)
+--- a/client/dump/CMakeLists.txt
 b/client/dump/CMakeLists.txt
+@@ -68,7 +68,7 @@
+   ADD_COMPILE_FLAGS(
+ ${BOOST_LIB_SOURCES}
+ ${BOOST_THREAD_SOURCES}
+-COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem ${BOOST_INCLUDE_DIR}
++COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -I${BOOST_INCLUDE_DIR}
+ )
+ 
+   IF(HAVE_clock_gettime_IN_rt)
+@@ -163,7 +163,7 @@
+ 
+ ADD_COMPILE_FLAGS(
+   ${MYSQLPUMP_LIB_SOURCES}
+-  COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem ${BOOST_INCLUDE_DIR}
++  COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -I${BOOST_INCLUDE_DIR}
+   )
+ 
+ # Files that use Boost sources that trigger compilation warnings
+@@ -199,7 +199,7 @@
+ )
+ MYSQL_ADD_EXECUTABLE(mysqlpump  program.cc)
+ ADD_COMPILE_FLAGS(
+-  program.cc COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem 
${BOOST_INCLUDE_DIR}
++  program.cc COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -I${BOOST_INCLUDE_DIR}
+ )
+ 
+ TARGET_LINK_LIBRARIES(mysqlpump mysqlpump_lib ${LOCAL_BOOST_LIB})
+--- a/libmysqld/CMakeLists.txt
 b/libmysqld/CMakeLists.txt
+@@ -115,7 +115,7 @@
+   ../sql/item_geofunc_setops.cc
+   ../sql/item_json_func.cc
+   ../sql/spatial.cc
+-  COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem ${BOOST_INCLUDE_DIR}
++  COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -I${BOOST_INCLUDE_DIR}
+ )
+ 
+ # Fixes "C1128: number of sections exceeded object file format limit" in MSVC 
/MD
+--- a/sql/CMakeLists.txt
 b/sql/CMakeLists.txt
+@@ -309,7 +309,7 @@
+   item_geofunc_setops.cc
+   item_json_func.cc
+   spatial.cc
+-  COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem ${BOOST_INCLUDE_DIR}
++  COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -I${BOOST_INCLUDE_DIR}
+ )
+ 
+ # Fixes "C1128: number of sections exceeded object file format limit" in MSVC 
/MD
+--- a/storage/innobase/xtrabackup/src/CMakeLists.txt
 b/storage/innobase/xtrabackup/src/CMakeLists.txt
+@@ -68,7 +68,7 @@
+   ../../../../plugin/keyring/keyring_key.cc
+   ../../../../plugin/keyring/buffered_file_io.cc
+   ../../../../plugin/keyring/keys_container.cc
+-  COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem ${BOOST_INCLUDE_DIR}
++  COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -I${BOOST_INCLUDE_DIR}
+ )
+ 
+ ADD_COMPILE_FLAGS(
+--- a/unittest/gunit/CMakeLists.txt
 b/unittest/gunit/CMakeLists.txt
+@@ -378,7 +378,7 @@
+   ENDIF()
+   ADD_COMPILE_FLAGS(
+ ${MERGE_SMALL_TESTS}
+-COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem ${BOOST_INCLUDE_DIR}
++COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -I${BOOST_INCLUDE_DIR}
+   )
+   INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
+ 
+@@ -453,11 +453,11 @@
+   ENDIF()
+   ADD_COMPILE_FLAGS(
+ bounded_queue-t.cc
+-COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem ${BOOST_INCLUDE_DIR}
++COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -I${BOOST_INCLUDE_DIR}
+   )
+   ADD_COMPILE_FLAGS(
+ pump_object_filter-t.cc
+-COMPILE_FLAGS -I${BOOST_PATCHES_DIR} -isystem ${BOOST_INCLUDE_DIR}

[gentoo-commits] repo/gentoo:master commit in: app-crypt/gnupg/, app-crypt/gnupg/files/

2017-04-03 Thread Alon Bar-Lev
commit: b95dfb460fcfa4e34b412d81336cd2316cdd0e2d
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Mon Apr  3 21:09:23 2017 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Mon Apr  3 21:09:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b95dfb46

app-crypt/gnupg: version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-crypt/gnupg/Manifest   |   1 +
 ...shorter-socket-path-lengts-to-improve-tes.patch |  33 ++
 app-crypt/gnupg/gnupg-2.1.20.ebuild| 120 +
 3 files changed, 154 insertions(+)

diff --git a/app-crypt/gnupg/Manifest b/app-crypt/gnupg/Manifest
index 5604c65f8f2..77390597d02 100644
--- a/app-crypt/gnupg/Manifest
+++ b/app-crypt/gnupg/Manifest
@@ -2,3 +2,4 @@ DIST gnupg-1.4.21.tar.bz2 3689305 SHA256 
6b47a3100c857dcab3c60e6152e56a997f2c786
 DIST gnupg-2.1.15.tar.bz2 5723689 SHA256 
c28c1a208f1b8ad63bdb6b88d252f6734ff4d33de6b54e38494b11d49e00ffdd SHA512 
69c943e853e1a37e8b17b3bc34e1503f14bc8f189fa9f3ac6644bcc98ccce6eaef64da20ff9dd1c8de3a7789ea577167984ccf3ac286cac50752e6f7c2f42ab1
 WHIRLPOOL 
4c5a8cd4e8b7196f4a355ce7739cf6e23c43817414e10bbba219117e4e51c4c618ffb5dbce27cb836a2171eda58e003d5ddf78d4af09a813c2a1729963413151
 DIST gnupg-2.1.18.tar.bz2 6308666 SHA256 
d04c6fab7e5562ce4b915b22020e34d4c1a256847690cf149842264fc7cef994 SHA512 
b8357f0a883a33c2e4f6ab5a8f5ddb171c899b7a2899e8ce4cac232938fe1dffb789a54980dfc4b758c4cb47f11f1fc570fea905244735048dfc6f06b3353baf
 WHIRLPOOL 
c5f132beb3b454146747fe14cd12576fb4d9a9adb8cfd80fcae4482b111672fd38e412dba72caa75af717069d7182a99c7f30ea03dc9adf190f5aa1f01748247
 DIST gnupg-2.1.19.tar.bz2 6404836 SHA256 
46cced1f5641ce29cc28250f52fadf6e417e649b3bfdec49a5a0d0b22a639bf0 SHA512 
c6d0a2cb7f1f7ce851729559edab08d2356dffe00ee836fc1d71eb4c4e34b566e214a0352934d2985fb0183b9e7ecc1221422d258f3bd467e735c0a5c8a3d0ca
 WHIRLPOOL 
3fd482da52b2d4e6c2b2b8427df6b68fe9df9e49dd53b91d74757b14b7c59ab5697c7f2309283c0d05774c1d405574796a4d0267b9cf85d61aec8b4095addd97
+DIST gnupg-2.1.20.tar.bz2 6456128 SHA256 
24cf9a69369be64a9f6f8cc11a1be33ab7780ad77a6a1b93719438f49f69960d SHA512 
14a9890bc64e143f87cff121dd298d490d78dbd34e36883e0f25763ff9064e5706a7632893d7c5d0e8e9b8cf9cdb0d378b4ce1715348729f0fc080455b61eca9
 WHIRLPOOL 
fa6cbd66031cac41db308b10bebec87e37a19d3c63219d22fb874d7d016bcad057b93eeece7a64001718ee1f881199e3d3eebc8ef6625691f553b0d2dbc92624

diff --git 
a/app-crypt/gnupg/files/gnupg-2.1.20-gpgscm-Use-shorter-socket-path-lengts-to-improve-tes.patch
 
b/app-crypt/gnupg/files/gnupg-2.1.20-gpgscm-Use-shorter-socket-path-lengts-to-improve-tes.patch
new file mode 100644
index 000..dd75e3a5e96
--- /dev/null
+++ 
b/app-crypt/gnupg/files/gnupg-2.1.20-gpgscm-Use-shorter-socket-path-lengts-to-improve-tes.patch
@@ -0,0 +1,33 @@
+From e3bdb7d17264b8d5bd9abab97c96d9c4a50e4f61 Mon Sep 17 00:00:00 2001
+From: Kristian Fiskerstrand 
+Date: Mon, 3 Apr 2017 23:44:56 +0300
+Subject: [PATCH] gpgscm: Use shorter socket path lengts to improve test
+ reliability
+
+--
+As socket lengths are normally restricted to 108 characters
+(UNIX_PATH_MAX variable in /usr/include/linux/un.h), using 42 characters
+by default easily results in errors.
+---
+ tests/gpgscm/tests.scm | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/tests/gpgscm/tests.scm b/tests/gpgscm/tests.scm
+index 592b36f..f54a387 100644
+--- a/tests/gpgscm/tests.scm
 b/tests/gpgscm/tests.scm
+@@ -273,9 +273,9 @@
+   (canonical-path (_mkdtemp (if (null? components)
+   (path-join
+(get-temp-path)
+-   (string-append "gpgscm-" (get-isotime) "-"
++   (string-append "gscm"
+   (basename-suffix *scriptname* 
".scm")
+-  "-XX"))
++  "XX"))
+   (apply path-join components)
+ 
+ ;; Make a temporary directory and remove it at interpreter shutdown.
+-- 
+2.10.2
+

diff --git a/app-crypt/gnupg/gnupg-2.1.20.ebuild 
b/app-crypt/gnupg/gnupg-2.1.20.ebuild
new file mode 100644
index 000..86bb2664662
--- /dev/null
+++ b/app-crypt/gnupg/gnupg-2.1.20.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+DESCRIPTION="The GNU Privacy Guard, a GPL OpenPGP implementation"
+HOMEPAGE="http://www.gnupg.org/;
+LICENSE="GPL-3"
+
+MY_P="${P/_/-}"
+SRC_URI="mirror://gnupg/gnupg/${MY_P}.tar.bz2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+SLOT="0"
+IUSE="bzip2 doc +gnutls 

[gentoo-commits] repo/gentoo:master commit in: media-libs/jasper/

2017-04-03 Thread Michael Weber
commit: f2a07ff039515a144750b771ab3c8dbe0f0f7006
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 21:00:00 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 21:00:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2a07ff0

media-libs/jasper: ppc ppc64 stable (bug 614012).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="ppc ppc64"

 media-libs/jasper/jasper-2.0.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/jasper/jasper-2.0.12.ebuild 
b/media-libs/jasper/jasper-2.0.12.ebuild
index d2520b6d1e7..b790f9e3818 100644
--- a/media-libs/jasper/jasper-2.0.12.ebuild
+++ b/media-libs/jasper/jasper-2.0.12.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
 else
inherit vcs-snapshot
SRC_URI="https://github.com/mdadams/${PN}/archive/version-${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 fi
 
 # We limit memory usage to 128 MiB by default, specified in bytes



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libdbusmenu-qt/

2017-04-03 Thread Michael Weber
commit: 9411fe4f1b0df2f624c182975f12c7ef93acefbd
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:56:46 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 21:00:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9411fe4f

dev-libs/libdbusmenu-qt: ppc ppc64 stable (bug 614242).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="ppc ppc64"

 dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218.ebuild 
b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218.ebuild
index d7f2fb00a83..6e5bd9b38bf 100644
--- a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218.ebuild
+++ b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-0.9.3_pre20160218.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://launchpad.net/libdbusmenu-qt/;
 if [[ ${PV} != * ]] ; then
MY_PV=${PV/_pre/+16.04.}

SRC_URI="https://launchpad.net/ubuntu/+archive/primary/+files/${PN}_${MY_PV}.orig.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux"
+   KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux"
 fi
 
 LICENSE="LGPL-2"



[gentoo-commits] repo/gentoo:master commit in: dev-db/postgresql/

2017-04-03 Thread Austin English
commit: 315323499fa5e267317d413318481e7cfec8d7c9
Author: Austin English  gentoo  org>
AuthorDate: Mon Apr  3 20:51:52 2017 +
Commit: Austin English  gentoo  org>
CommitDate: Mon Apr  3 20:56:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31532349

dev-db/postgresql: respect PG_AUTOCONFIG env variable

This allows configuring postgresql without further input from the input
(i.e., makes it scriptable).

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

 dev-db/postgresql/postgresql-9.5.5.ebuild| 27 ---
 dev-db/postgresql/postgresql-9.5.6.ebuild| 26 +++---
 dev-db/postgresql/postgresql-9.6.1-r1.ebuild | 26 +++---
 dev-db/postgresql/postgresql-9.6.2.ebuild| 26 +++---
 dev-db/postgresql/postgresql-.ebuild | 26 +++---
 5 files changed, 76 insertions(+), 55 deletions(-)

diff --git a/dev-db/postgresql/postgresql-9.5.5.ebuild 
b/dev-db/postgresql/postgresql-9.5.5.ebuild
index b352149ac96..56cafc185c7 100644
--- a/dev-db/postgresql/postgresql-9.5.5.ebuild
+++ b/dev-db/postgresql/postgresql-9.5.5.ebuild
@@ -350,17 +350,22 @@ pkg_config() {
einfo "The database cluster will be created in:"
einfo "${DATA_DIR}"
einfo
-   while [ "$correct" != "true" ] ; do
-   einfo "Are you ready to continue? (y/n)"
-   read answer
-   if [[ $answer =~ ^[Yy]([Ee][Ss])?$ ]] ; then
-   correct="true"
-   elif [[ $answer =~ ^[Nn]([Oo])?$ ]] ; then
-   die "Aborting initialization."
-   else
-   echo "Answer not recognized"
-   fi
-   done
+
+   if [ -z "$PG_AUTOCONFIG" ] ; then
+   while [ "$correct" != "true" ] ; do
+   einfo "Are you ready to continue? (y/n)"
+   read answer
+   if [[ $answer =~ ^[Yy]([Ee][Ss])?$ ]] ; then
+   correct="true"
+   elif [[ $answer =~ ^[Nn]([Oo])?$ ]] ; then
+   die "Aborting initialization."
+   else
+   echo "Answer not recognized"
+   fi
+   done
+   else
+   einfo "PG_AUTOCONFIG set, not prompting"
+   fi
 
if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then
eerror "The given directory, '${DATA_DIR}', is not empty."

diff --git a/dev-db/postgresql/postgresql-9.5.6.ebuild 
b/dev-db/postgresql/postgresql-9.5.6.ebuild
index 8e8412b1fc7..eb493f3f392 100644
--- a/dev-db/postgresql/postgresql-9.5.6.ebuild
+++ b/dev-db/postgresql/postgresql-9.5.6.ebuild
@@ -350,17 +350,21 @@ pkg_config() {
einfo "The database cluster will be created in:"
einfo "${DATA_DIR}"
einfo
-   while [ "$correct" != "true" ] ; do
-   einfo "Are you ready to continue? (y/n)"
-   read answer
-   if [[ $answer =~ ^[Yy]([Ee][Ss])?$ ]] ; then
-   correct="true"
-   elif [[ $answer =~ ^[Nn]([Oo])?$ ]] ; then
-   die "Aborting initialization."
-   else
-   echo "Answer not recognized"
-   fi
-   done
+   if [ -z "$PG_AUTOCONFIG" ] ; then
+   while [ "$correct" != "true" ] ; do
+   einfo "Are you ready to continue? (y/n)"
+   read answer
+   if [[ $answer =~ ^[Yy]([Ee][Ss])?$ ]] ; then
+   correct="true"
+   elif [[ $answer =~ ^[Nn]([Oo])?$ ]] ; then
+   die "Aborting initialization."
+   else
+   echo "Answer not recognized"
+   fi
+   done
+   else
+   einfo "PG_AUTOCONFIG set, not prompting"
+   fi
 
if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then
eerror "The given directory, '${DATA_DIR}', is not empty."

diff --git a/dev-db/postgresql/postgresql-9.6.1-r1.ebuild 
b/dev-db/postgresql/postgresql-9.6.1-r1.ebuild
index 0c0ba8278ad..0e4412b472c 100644
--- a/dev-db/postgresql/postgresql-9.6.1-r1.ebuild
+++ b/dev-db/postgresql/postgresql-9.6.1-r1.ebuild
@@ -347,17 +347,21 @@ pkg_config() {
einfo "The database cluster will be created in:"
einfo "${DATA_DIR}"
einfo
-   while [ "$correct" != "true" ] ; do
-   einfo "Are you ready to continue? (y/n)"
-   read answer
-   if [[ $answer =~ ^[Yy]([Ee][Ss])?$ ]] ; then
-   correct="true"
-   elif [[ $answer =~ ^[Nn]([Oo])?$ ]] ; then
-   die "Aborting initialization."
-   else
-   echo "Answer not recognized"
-

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

2017-04-03 Thread Mats Lidell
commit: 623b145d4df33fb086859aec44fa7bef987a82dd
Author: Mats Lidell  gentoo  org>
AuthorDate: Sat Apr  1 23:12:56 2017 +
Commit: Mats Lidell  gentoo  org>
CommitDate: Mon Apr  3 20:53:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=623b145d

app-editors/xemacs: Remove old xemacs-21.5 ebuilds

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-editors/xemacs/Manifest |   2 -
 app-editors/xemacs/xemacs-21.5.31.ebuild| 238 --
 app-editors/xemacs/xemacs-21.5.33.ebuild| 236 --
 app-editors/xemacs/xemacs-21.5.34-r2.ebuild | 249 ---
 app-editors/xemacs/xemacs-21.5.34-r3.ebuild | 250 
 5 files changed, 975 deletions(-)

diff --git a/app-editors/xemacs/Manifest b/app-editors/xemacs/Manifest
index ba31b4f2285..21a3c53553a 100644
--- a/app-editors/xemacs/Manifest
+++ b/app-editors/xemacs/Manifest
@@ -1,6 +1,4 @@
 DIST NeXT_XEmacs.tar.gz 39571 SHA256 
35a0d988fd4ee801572639a99798571aa9fad140ddbed1455565ae9d5e0086c7 SHA512 
611ddbbf5be3d2274e7f76be7f8200c6c7f3cba917efcc24e73685aa5f61c94237e6e48ce66f2d59ee4b74862e686f3ea7a29cf006717d5d0674db24d243d566
 WHIRLPOOL 
d47aafa6fe7a11de94196dffb752c683722b8ead23979a7f4344c61964ebcd052a4f0ad6b9ab42a5d41f5551c0a543f46af59656fc8a79340257626272c1faae
 DIST xemacs-21.4.22.tar.gz 8357931 SHA256 
87fb7633106625935105e821eb8fe65e521a3de44d45fe864109779c3a8e4bd1 SHA512 
7ddd91f8d1a1b9f6d984a5bfddd98705dd6f7e3d6b4f81c1e03d971c93e33bff09b641bc2ad0a0d9d2e44170063550ad0399f3e28237dd34b8ad6200d8b197e8
 WHIRLPOOL 
f1d313aa2dee7f4238190b90c10dc951a31302563a8a098e69ed740e85f428ac360b363e44f1e618f2d97782b5532846df290e9f79f11abdc7648a1e380cb44e
 DIST xemacs-21.4.24.tar.gz 8543879 SHA256 
9016a51496d4978cf3dba75000a8e38bfc8cb4ca3a3f3e71371aa19259f26cd5 SHA512 
b7a88d5a4a9f74f74c2067ed60f7ea87ac8ccad5d9c2c1033ecf07f540250191f8fa5f9e6d23d9fedd0f2ab1eb5ea6c29a7665a310ec512d85e2e4f337447213
 WHIRLPOOL 
469d52341833037e22cebeb6b554435c81b3f5749f64d86ddf31c3990dfc08a57f49fab7e868ab8c2009d1cae665f4fd731813f25c942d5aafd287ad7736a049
-DIST xemacs-21.5.31.tar.gz 15802193 SHA256 
d59f90b7e72621376a23daa484f1929945d0527350a10989fd086bde9d0a997d SHA512 
17c385459edffc063d43537dae5b2883d2d7481e7f7596d02c9859ecb9dd4ee48921647b389ed979d65ede2745b647c9b196c9ef0873e6d526d21262f04b7f41
 WHIRLPOOL 
b2a1741af341f260671e1c8479f47c30113b515b240d86b41b6449abde96be896371d3f6b038ab72a96c422f84704de0a41e403a16c9ca2a4861e590e65b1f59
-DIST xemacs-21.5.33.tar.gz 15781151 SHA256 
448c76aa32cd5c84257027846f01b75a5e4f1e9db3278f95e68ff23d59fb8f94 SHA512 
75358b5cf2a012d23b95eb918e0ba1abf254db51d979d370f407b67871c6d09e2d59f59fe1acd46149933913222935e2c12be72cdf0314109c568f9f14438151
 WHIRLPOOL 
29d6a19d8cacc243afd3c21ed96cfabfa956531692e8ce4a454b958d32b08bb3eac47f52ada872ccfdb41082514145c602cc7ed81443bece7529365ba089f454
 DIST xemacs-21.5.34.tar.gz 15816932 SHA256 
33cc54a6a9a45224a64b6c57c8138b5a5f0f1be368951a6d9ec8c0aec5993ee5 SHA512 
b61d88fe530a77b88c2ed0cecd6597ed3c265450bc61f7c6823920f774b2d566ef6fc18a6c33928d846d08d465617d4ccd3c4656606ec8634127a683abbc929a
 WHIRLPOOL 
733aabc45309ff4172ab77492dd85e71f156722f2e06d9a185c0a4260b9fbea607ff8a41dc43fc009cb8cdf3f05d4523778610a501f27a4917ab43cea03c6209

diff --git a/app-editors/xemacs/xemacs-21.5.31.ebuild 
b/app-editors/xemacs/xemacs-21.5.31.ebuild
deleted file mode 100644
index 78de2d05cb4..000
--- a/app-editors/xemacs/xemacs-21.5.31.ebuild
+++ /dev/null
@@ -1,238 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# Note: xemacs currently does not work with a hardened profile. If you
-# want to use xemacs on a hardened profile then compile with the
-# -nopie flag in CFLAGS or help fix bug #75028.
-
-EAPI=4
-
-WANT_AUTOCONF="2.5"
-inherit eutils flag-o-matic multilib
-
-DESCRIPTION="highly customizable open source text editor and application 
development system"
-HOMEPAGE="http://www.xemacs.org/;
-SRC_URI="http://ftp.xemacs.org/xemacs-21.5/${P}.tar.gz
-   http://www.malfunction.de/afterstep/files/NeXT_XEmacs.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
-IUSE="alsa debug eolconv gif gpm pop postgres ldap xface nas dnd X jpeg tiff 
png mule motif freewnn canna xft xim athena neXt Xaw3d gdbm berkdb"
-
-X_DEPEND="x11-libs/libXt x11-libs/libXmu x11-libs/libXext x11-misc/xbitmaps"
-
-RDEPEND="
-   berkdb? ( >=sys-libs/db-4 !!=sys-libs/gdbm-1.8.3[berkdb(+)] )
-   >=sys-libs/zlib-1.1.4
-   >=dev-libs/openssl-0.9.6:0
-   >=media-libs/audiofile-0.2.3
-   gpm? ( >=sys-libs/gpm-1.19.6 )
-   postgres? ( dev-db/postgresql )
-   ldap? ( net-nds/openldap )
-   alsa? ( media-libs/alsa-lib )
-   nas? ( media-libs/nas )
-   X? ( $X_DEPEND !Xaw3d? ( !neXt? ( x11-libs/libXaw ) ) )
-   dnd? ( x11-libs/dnd )
-   motif? ( 

[gentoo-commits] repo/gentoo:master commit in: app-editors/xemacs/files/, app-editors/xemacs/

2017-04-03 Thread Mats Lidell
commit: 7bb54c579bb0a67bd3b5ea74fb676a74bed29f32
Author: Mats Lidell  gentoo  org>
AuthorDate: Sun Apr  2 22:37:29 2017 +
Commit: Mats Lidell  gentoo  org>
CommitDate: Mon Apr  3 20:53:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb54c57

app-editors/xemacs: Bump to 21.4.24-r1.

Remove deprecation warnings. Solves bug #552044 in a better way.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../xemacs/files/xemacs-21.4.24-glibc-macro.patch  |  28 +++
 app-editors/xemacs/xemacs-21.4.24-r1.ebuild| 243 +
 2 files changed, 271 insertions(+)

diff --git a/app-editors/xemacs/files/xemacs-21.4.24-glibc-macro.patch 
b/app-editors/xemacs/files/xemacs-21.4.24-glibc-macro.patch
new file mode 100644
index 000..62d26ccc053
--- /dev/null
+++ b/app-editors/xemacs/files/xemacs-21.4.24-glibc-macro.patch
@@ -0,0 +1,28 @@
+Don't define deprecated glibc symbol
+
+Avoid defining the deprecated symbols _BSD_SOURCE and _SVID_SOURCE
+that xmkmf thinks are needed to compile X programs.
+
+diff -r 09d56098ea2c -r 32a8151f8af7 configure.in
+--- a/configure.in Sat Feb 11 01:24:06 2017 +0100
 b/configure.in Sat Feb 11 01:59:40 2017 +0100
+@@ -2868,10 +2868,15 @@
+ * ) val=1 ;;
+   esac
+ dnl Avoid re-AC_DEFINE-ing xmkmf symbols we've already defined above.
+-  if grep "^#define $sym " confdefs.h >/dev/null; then :; else
+-if test "$val" = "1"
+-  then AC_DEFINE_UNQUOTED($sym)
+-  else AC_DEFINE_UNQUOTED($sym,$val)
++dnl Also, glibc doesn't like two of the traditional POSIX macros that xmkmf
++dnl likes us to define; ignore them if appropriate.
++  if grep "^#define $sym " confdefs.h >/dev/null  || \
++   test "$have_glibc" = "yes" -a "$sym" = "_BSD_SOURCE" || \
++   test "$have_glibc" = "yes" -a "$sym" = "_SVID_SOURCE";
++then :; else
++if test "$val" = "1"
++  then AC_DEFINE_UNQUOTED($sym)
++  else AC_DEFINE_UNQUOTED($sym,$val)
+ fi
+   fi  ;;
+   esac

diff --git a/app-editors/xemacs/xemacs-21.4.24-r1.ebuild 
b/app-editors/xemacs/xemacs-21.4.24-r1.ebuild
new file mode 100644
index 000..e9e6f8a04e2
--- /dev/null
+++ b/app-editors/xemacs/xemacs-21.4.24-r1.ebuild
@@ -0,0 +1,243 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+# Note: xemacs currently does not work with a hardened profile. If you
+# want to use xemacs on a hardened profile then compile with the
+# -nopie flag in CFLAGS or help fix bug #75028.
+
+EAPI="5"
+
+WANT_AUTOCONF="2.1"
+inherit autotools eutils flag-o-matic toolchain-funcs
+
+DESCRIPTION="highly customizable open source text editor and application 
development system"
+HOMEPAGE="http://www.xemacs.org/;
+SRC_URI="http://ftp.xemacs.org/xemacs-21.4/${P}.tar.gz
+   http://www.malfunction.de/afterstep/files/NeXT_XEmacs.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="eolconv gif gpm pop postgres ldap xface nas dnd X jpeg tiff png mule 
motif freewnn canna xim athena neXt Xaw3d gdbm berkdb"
+
+X_DEPEND="x11-libs/libXt x11-libs/libXmu x11-libs/libXext x11-misc/xbitmaps"
+
+RDEPEND="
+   berkdb? ( sys-libs/db:= )
+   gdbm? ( >=sys-libs/gdbm-1.8.3 )
+   >=sys-libs/zlib-1.1.4
+   >=dev-libs/openssl-0.9.6:0
+   >=media-libs/audiofile-0.2.3
+   gpm? ( >=sys-libs/gpm-1.19.6 )
+   postgres? ( dev-db/postgresql:= )
+   ldap? ( net-nds/openldap )
+   nas? ( media-libs/nas )
+   X? ( $X_DEPEND !Xaw3d? ( !neXt? ( x11-libs/libXaw ) ) )
+   dnd? ( x11-libs/dnd )
+   motif? ( >=x11-libs/motif-2.3:0 )
+   athena? ( x11-libs/libXaw )
+   Xaw3d? ( x11-libs/libXaw3d )
+   neXt? ( x11-libs/neXtaw )
+   xface? ( media-libs/compface )
+   tiff? ( media-libs/tiff:0 )
+   png? ( >=media-libs/libpng-1.2:0 )
+   jpeg? ( virtual/jpeg:0 )
+   canna? ( app-i18n/canna )
+   !amd64? ( freewnn? ( app-i18n/freewnn ) )
+   >=sys-libs/ncurses-5.2:=
+   >=app-eselect/eselect-emacs-1.15"
+
+DEPEND="${RDEPEND}
+   >=sys-apps/texinfo-5"
+
+PDEPEND="app-xemacs/xemacs-base
+   mule? ( app-xemacs/mule-base )"
+
+src_unpack() {
+   unpack ${P}.tar.gz
+   use neXt && unpack NeXT_XEmacs.tar.gz
+}
+
+src_prepare() {
+   # see bug 58350, 102540 and 143580
+   epatch "${FILESDIR}"/xemacs-21.4.19-db.patch
+   # see bug 576512
+   epatch "${FILESDIR}"/xemacs-21.4.24-gcc5.patch
+   epatch "${FILESDIR}"/xemacs-21.4.24-glibc-macro.patch
+
+   # Some binaries and man pages are installed under suffixed names
+   # to avoid collions with their GNU Emacs counterparts (see below).
+   # Fix internal filename references.
+   sed -i -e 's/exec gnuclient/&-xemacs/' lib-src/gnudoit || die
+   sed -i -e '/^\.so/s/etags/&-xemacs/' etc/ctags.1 || die
+   sed -i -e 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/B-Hooks-EndOfScope/

2017-04-03 Thread Michael Weber
commit: ad739d872feb5cbdf2341ee876ea6922e6d09f5b
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:44:28 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 20:44:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad739d87

dev-perl/B-Hooks-EndOfScope: ppc stable (bug 614470)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.200.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.200.0.ebuild 
b/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.200.0.ebuild
index 42da5329789..962892f6686 100644
--- a/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.200.0.ebuild
+++ b/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.200.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Execute code after a scope finished compilation"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc x86 ~ppc-aix ~x86-fbsd 
~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc x86 ~ppc-aix ~x86-fbsd ~x64-macos"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-Remove/

2017-04-03 Thread Michael Weber
commit: 736e935934c8619b99530a743b0280c96c399b90
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:41:41 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 20:41:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=736e9359

dev-perl/File-Remove: ppc ppc64 stable (bug 614440)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-perl/File-Remove/File-Remove-1.570.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-Remove/File-Remove-1.570.0.ebuild 
b/dev-perl/File-Remove/File-Remove-1.570.0.ebuild
index 8a337dc90a5..22a23805118 100644
--- a/dev-perl/File-Remove/File-Remove-1.570.0.ebuild
+++ b/dev-perl/File-Remove/File-Remove-1.570.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Remove files and directories"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_p11/

2017-04-03 Thread Michael Weber
commit: 097e701350b11734e6d1827b17127d47355721fc
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:47:17 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 20:47:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=097e7013

sys-auth/pam_p11: ppc ppc64 stable (bug 614434).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="ppc ppc64"

 sys-auth/pam_p11/pam_p11-0.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/pam_p11/pam_p11-0.1.6.ebuild 
b/sys-auth/pam_p11/pam_p11-0.1.6.ebuild
index 211bc345599..4c0e7e5760f 100644
--- a/sys-auth/pam_p11/pam_p11-0.1.6.ebuild
+++ b/sys-auth/pam_p11/pam_p11-0.1.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND="virtual/pam



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Variable-Magic/

2017-04-03 Thread Michael Weber
commit: d0352fcbd70465c2afe1821f6336ee0f763ba405
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:44:41 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 20:44:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0352fcb

dev-perl/Variable-Magic: ppc stable (bug 614470)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-perl/Variable-Magic/Variable-Magic-0.610.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Variable-Magic/Variable-Magic-0.610.0.ebuild 
b/dev-perl/Variable-Magic/Variable-Magic-0.610.0.ebuild
index 071a37bf64b..14eaec6a74c 100644
--- a/dev-perl/Variable-Magic/Variable-Magic-0.610.0.ebuild
+++ b/dev-perl/Variable-Magic/Variable-Magic-0.610.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Associate user-defined magic to variables from Perl"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~ppc-aix ~x86-fbsd 
~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ~ppc64 x86 ~ppc-aix ~x86-fbsd 
~x64-macos"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Method-Modifiers/

2017-04-03 Thread Michael Weber
commit: c889f7c253bc4f4d31276fb9413745fb43b4897b
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:16:16 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 20:19:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c889f7c2

dev-perl/Class-Method-Modifiers: ppc stable (bug 614510)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-perl/Class-Method-Modifiers/Class-Method-Modifiers-2.120.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/Class-Method-Modifiers/Class-Method-Modifiers-2.120.0.ebuild 
b/dev-perl/Class-Method-Modifiers/Class-Method-Modifiers-2.120.0.ebuild
index 7a58f018802..6614c97ec3a 100644
--- a/dev-perl/Class-Method-Modifiers/Class-Method-Modifiers-2.120.0.ebuild
+++ b/dev-perl/Class-Method-Modifiers/Class-Method-Modifiers-2.120.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="provides Moose-like method modifiers"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc x86 ~ppc-aix ~ppc-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ppc x86 ~ppc-aix ~ppc-macos ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Sub-Name/

2017-04-03 Thread Michael Weber
commit: 9bd21d710096819fbc02df47c734deb2aa563a8b
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:17:54 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 20:19:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd21d71

dev-perl/Sub-Name: ppc stable (bug 614514)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild 
b/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild
index bd6cb38411f..e57bb4377b5 100644
--- a/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild
+++ b/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="(Re)name a sub"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test suggested"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Sub-Quote/

2017-04-03 Thread Michael Weber
commit: 4b06b70cd005883bb156883dcbe249d02f1d0019
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:18:07 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 20:19:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b06b70c

dev-perl/Sub-Quote: ppc stable (bug 614514)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-perl/Sub-Quote/Sub-Quote-2.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Sub-Quote/Sub-Quote-2.3.1.ebuild 
b/dev-perl/Sub-Quote/Sub-Quote-2.3.1.ebuild
index 22cfc23f64e..f8b6f15d3c7 100644
--- a/dev-perl/Sub-Quote/Sub-Quote-2.3.1.ebuild
+++ b/dev-perl/Sub-Quote/Sub-Quote-2.3.1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="efficient generation of subroutines via string eval"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc x86"
+KEYWORDS="amd64 ~arm ~hppa ppc x86"
 IUSE="test minimal"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Devel-CheckBin/

2017-04-03 Thread Michael Weber
commit: 27ed8aae9f5c5d8edb6aa1b3883643325965c556
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:17:11 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 20:19:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27ed8aae

dev-perl/Devel-CheckBin: ppc stable (bug 614514)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild 
b/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
index fa28522883e..f3dbef520cf 100644
--- a/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
+++ b/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="check that a command is available"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-aix 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~ppc-aix 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Moo/

2017-04-03 Thread Michael Weber
commit: 1fc29b2768daa5a234de18734ab1693a3fd1a6de
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:17:26 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 20:19:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fc29b27

dev-perl/Moo: ppc stable (bug 614514)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-perl/Moo/Moo-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Moo/Moo-2.3.0.ebuild b/dev-perl/Moo/Moo-2.3.0.ebuild
index 967605f28b3..559c8aa8d16 100644
--- a/dev-perl/Moo/Moo-2.3.0.ebuild
+++ b/dev-perl/Moo/Moo-2.3.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Minimalist Object Orientation (with Moose compatiblity)"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc x86 ~ppc-aix ~ppc-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ppc x86 ~ppc-aix ~ppc-macos ~x86-solaris"
 IUSE="test"
 
 # needs Scalar::Util



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Role-Tiny/

2017-04-03 Thread Michael Weber
commit: f9b8496932b1063c68f978fa679132cca69014ec
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr  3 20:17:40 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr  3 20:19:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9b84969

dev-perl/Role-Tiny: ppc stable (bug 614514)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 dev-perl/Role-Tiny/Role-Tiny-2.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Role-Tiny/Role-Tiny-2.0.5.ebuild 
b/dev-perl/Role-Tiny/Role-Tiny-2.0.5.ebuild
index e49471cc6e7..bb97571053f 100644
--- a/dev-perl/Role-Tiny/Role-Tiny-2.0.5.ebuild
+++ b/dev-perl/Role-Tiny/Role-Tiny-2.0.5.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Roles. Like a nouvelle cuisine portion size slice of Moose"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~ppc-macos ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] proj/portage:master commit in: pym/portage/tests/locks/, pym/_emerge/

2017-04-03 Thread Zac Medico
commit: 916a0733c7201b7a8b22f5262bd5be8cbc8992a6
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Apr  2 20:50:09 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Apr  3 20:07:59 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=916a0733

AsynchronousLock: add async_unlock method (bug 614108)

Add an async_unlock method, in order to avoid event loop
recursion which is incompatible with asyncio.

X-Gentoo-bug: 614108
X-Gentoo-bug-url: https://bugs.gentoo.org/show_bug.cgi?id=614108
Acked-by: Brian Dolbec  gentoo.org>

 pym/_emerge/AsynchronousLock.py   | 89 +--
 pym/portage/tests/locks/test_asynchronous_lock.py | 15 +++-
 2 files changed, 92 insertions(+), 12 deletions(-)

diff --git a/pym/_emerge/AsynchronousLock.py b/pym/_emerge/AsynchronousLock.py
index c0b9b26dc..6a32d2d40 100644
--- a/pym/_emerge/AsynchronousLock.py
+++ b/pym/_emerge/AsynchronousLock.py
@@ -35,7 +35,7 @@ class AsynchronousLock(AsynchronousTask):
 
__slots__ = ('path', 'scheduler',) + \
('_imp', '_force_async', '_force_dummy', '_force_process', \
-   '_force_thread')
+   '_force_thread', '_unlock_future')
 
_use_process_by_default = True
 
@@ -84,6 +84,11 @@ class AsynchronousLock(AsynchronousTask):
return self.returncode
 
def unlock(self):
+   """
+   This method is deprecated in favor of async_unlock, since 
waiting
+   for the child process to respond can trigger event loop 
recursion
+   which is incompatible with asyncio.
+   """
if self._imp is None:
raise AssertionError('not locked')
if isinstance(self._imp, (_LockProcess, _LockThread)):
@@ -92,6 +97,28 @@ class AsynchronousLock(AsynchronousTask):
unlockfile(self._imp)
self._imp = None
 
+   def async_unlock(self):
+   """
+   Release the lock asynchronously. Release notification is 
available
+   via the add_done_callback method of the returned Future 
instance.
+
+   @returns: Future, result is None
+   """
+   if self._imp is None:
+   raise AssertionError('not locked')
+   if self._unlock_future is not None:
+   raise AssertionError("already unlocked")
+   if isinstance(self._imp, (_LockProcess, _LockThread)):
+   unlock_future = self._imp.async_unlock()
+   else:
+   unlockfile(self._imp)
+   unlock_future = self.scheduler.create_future()
+   self.scheduler.call_soon(unlock_future.set_result, None)
+   self._imp = None
+   self._unlock_future = unlock_future
+   return unlock_future
+
+
 class _LockThread(AbstractPollTask):
"""
This uses the portage.locks module to acquire a lock asynchronously,
@@ -105,7 +132,7 @@ class _LockThread(AbstractPollTask):
"""
 
__slots__ = ('path',) + \
-   ('_force_dummy', '_lock_obj', '_thread',)
+   ('_force_dummy', '_lock_obj', '_thread', '_unlock_future')
 
def _start(self):
self._registered = True
@@ -132,13 +159,35 @@ class _LockThread(AbstractPollTask):
pass
 
def unlock(self):
+   """
+   This method is deprecated in favor of async_unlock, for 
compatibility
+   with _LockProcess.
+   """
+   self._unlock()
+   self._unlock_future.set_result(None)
+
+   def _unlock(self):
if self._lock_obj is None:
raise AssertionError('not locked')
if self.returncode is None:
raise AssertionError('lock not acquired yet')
+   if self._unlock_future is not None:
+   raise AssertionError("already unlocked")
+   self._unlock_future = self.scheduler.create_future()
unlockfile(self._lock_obj)
self._lock_obj = None
 
+   def async_unlock(self):
+   """
+   Release the lock asynchronously. Release notification is 
available
+   via the add_done_callback method of the returned Future 
instance.
+
+   @returns: Future, result is None
+   """
+   self._unlock()
+   self.scheduler.call_soon(self._unlock_future.set_result, None)
+   return self._unlock_future
+
def _unregister(self):
self._registered = False
 
@@ -156,7 +205,8 @@ class _LockProcess(AbstractPollTask):
"""
 
__slots__ = ('path',) + \
-   ('_acquired', '_kill_test', '_proc', '_files', '_reg_id', 
'_unlocked')
+   ('_acquired', 

[gentoo-commits] proj/portage:master commit in: pym/portage/dbapi/, pym/_emerge/

2017-04-03 Thread Zac Medico
commit: f479250c9cb9d82af4d621aa008d4d1e37a28a39
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Apr  2 00:16:53 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Apr  3 20:01:57 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=f479250c

emerge: fix --autounmask-continue to work with --getbinpkg (bug 614474)

Fix action_build to populate binarytree instances with remote package
metadata following config reload, using a new getbinpkg_refresh=False
parameter to prevent redundant fetching of remote package metadata.

X-Gentoo-bug: 614474
X-Gentoo-bug-url: https://bugs.gentoo.org/show_bug.cgi?id=614474
Fixes: e2d88ef3ff59 ("Add emerge --autounmask-continue option (bug 582624)")
Acked-by: Brian Dolbec  gentoo.org>

 pym/_emerge/actions.py   | 15 +++
 pym/portage/dbapi/bintree.py | 19 +++
 2 files changed, 30 insertions(+), 4 deletions(-)

diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py
index cc0269d5d..818fab90a 100644
--- a/pym/_emerge/actions.py
+++ b/pym/_emerge/actions.py
@@ -347,6 +347,21 @@ def action_build(emerge_config, trees=DeprecationWarning,
adjust_configs(emerge_config.opts, emerge_config.trees)
settings, trees, mtimedb = emerge_config
 
+   # After config reload, the freshly instantiated 
binarytree
+   # instances need to load remote metadata if --getbinpkg
+   # is enabled. Use getbinpkg_refresh=False to use cached
+   # metadata, since the cache is already fresh.
+   if "--getbinpkg" in emerge_config.opts:
+   for root_trees in emerge_config.trees.values():
+   try:
+   root_trees["bintree"].populate(
+   getbinpkgs=True,
+   getbinpkg_refresh=False)
+   except ParseError as e:
+   writemsg("\n\n!!!%s.\nSee 
make.conf(5) for more info.\n"
+% e, 
noiselevel=-1)
+   return 1
+
if "--autounmask-only" in myopts:
mydepgraph.display_problems()
return 0

diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py
index 12c3d3e51..ca90ba8f9 100644
--- a/pym/portage/dbapi/bintree.py
+++ b/pym/portage/dbapi/bintree.py
@@ -510,8 +510,16 @@ class binarytree(object):
except PortageException:
pass
 
-   def populate(self, getbinpkgs=0):
-   "populates the binarytree"
+   def populate(self, getbinpkgs=False, getbinpkg_refresh=True):
+   """
+   Populates the binarytree with package metadata.
+
+   @param getbinpkgs: include remote packages
+   @type getbinpkgs: bool
+   @param getbinpkg_refresh: attempt to refresh the cache
+   of remote package metadata if getbinpkgs is also True
+   @type getbinpkg_refresh: bool
+   """
 
if self._populating:
return
@@ -522,13 +530,13 @@ class binarytree(object):
pkgindex_lock = lockfile(self._pkgindex_file,
wantnewlockfile=1)
self._populating = True
-   self._populate(getbinpkgs)
+   self._populate(getbinpkgs, 
getbinpkg_refresh=getbinpkg_refresh)
finally:
if pkgindex_lock:
unlockfile(pkgindex_lock)
self._populating = False
 
-   def _populate(self, getbinpkgs=0):
+   def _populate(self, getbinpkgs=False, getbinpkg_refresh=True):
if (not os.path.isdir(self.pkgdir) and not getbinpkgs):
return 0
 
@@ -832,6 +840,9 @@ class binarytree(object):
url = base_url.rstrip("/") + "/Packages"
f = None
 
+   if not getbinpkg_refresh and local_timestamp:
+   raise UseCachedCopyOfRemoteIndex()
+
try:
ttl = float(pkgindex.header.get("TTL", 
0))
except ValueError:



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

2017-04-03 Thread NP Hardass
commit: 36144d44310d120da5db4cfac4c60b1c711879f2
Author: NP-Hardass  gentoo  org>
AuthorDate: Mon Apr  3 19:49:03 2017 +
Commit: NP Hardass  gentoo  org>
CommitDate: Mon Apr  3 19:49:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36144d44

profiles: package.mask: Mask crossover-office-{pro-,}bin for removal

 profiles/package.mask | 8 
 1 file changed, 8 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index b73a7699376..95c9d55304d 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,14 @@
 
 #--- END OF EXAMPLES ---
 
+# NP-Hardassr  (03 Apr 2017)
+# Masked for removal in 30 days. Unable to generate new
+# hashes for the manifest, per Bug #612720, Bug #612718
+# Upstream has also deprecated these in favor of
+# app-emulation/crossover-bin
+app-emulation/crossover-office-bin
+app-emulation/crossover-office-pro-bin
+
 # Amadeusz Zolnowski  (2 Apr 2017)
 # Masked, committed accidentally. It's not tested yet, possibly broken.
 =net-im/ejabberd-17.01



[gentoo-commits] repo/gentoo:master commit in: app-xemacs/xemacs-packages-all/

2017-04-03 Thread Ulrich Müller
commit: 41f0bbf48401cafc4d3b604ec2941032b3cfddd6
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Apr  3 18:41:37 2017 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Apr  3 18:42:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41f0bbf4

app-xemacs/xemacs-packages-all: Bump to EAPI 6.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 .../xemacs-packages-all/xemacs-packages-all-2007.04.27-r1.ebuild  | 4 +++-
 app-xemacs/xemacs-packages-all/xemacs-packages-all-2010.07.29.ebuild  | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git 
a/app-xemacs/xemacs-packages-all/xemacs-packages-all-2007.04.27-r1.ebuild 
b/app-xemacs/xemacs-packages-all/xemacs-packages-all-2007.04.27-r1.ebuild
index db192cf2694..b9aba1bda95 100644
--- a/app-xemacs/xemacs-packages-all/xemacs-packages-all-2007.04.27-r1.ebuild
+++ b/app-xemacs/xemacs-packages-all/xemacs-packages-all-2007.04.27-r1.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 DESCRIPTION="Meta package for XEmacs elisp packages, similar to the sumo 
archives"
 HOMEPAGE="http://www.xemacs.org/;
 

diff --git 
a/app-xemacs/xemacs-packages-all/xemacs-packages-all-2010.07.29.ebuild 
b/app-xemacs/xemacs-packages-all/xemacs-packages-all-2010.07.29.ebuild
index 8be951ddf5f..2a9583db83b 100644
--- a/app-xemacs/xemacs-packages-all/xemacs-packages-all-2010.07.29.ebuild
+++ b/app-xemacs/xemacs-packages-all/xemacs-packages-all-2010.07.29.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 DESCRIPTION="Meta package for XEmacs elisp packages, similar to the sumo 
archives"
 HOMEPAGE="http://www.xemacs.org/;
 



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

2017-04-03 Thread Ulrich Müller
commit: d20d7f2ee97e81251c65c57fc20ddd9b04f715a5
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Apr  3 18:23:38 2017 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Apr  3 18:42:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d20d7f2e

xemacs-packages.eclass: Support EAPI 6.

- Do not export src_compile, as using the default has the same result.
- Precede PKG_CAT and EXPERIMENTAL variables with XEMACS_ for proper
  namespace.
- Explicitly assign S, because there is no fallback to WORKDIR in
  recent EAPIs.
- Move install directory logic into src_install function.
- Install into ${D}${EPREFIX} rather than ${D}.

Acked by: Mats Lidell  gentoo.org>

 eclass/xemacs-packages.eclass | 70 +++
 1 file changed, 31 insertions(+), 39 deletions(-)

diff --git a/eclass/xemacs-packages.eclass b/eclass/xemacs-packages.eclass
index d1a8b845159..a40487bae78 100644
--- a/eclass/xemacs-packages.eclass
+++ b/eclass/xemacs-packages.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: xemacs-packages.eclass
@@ -8,35 +8,13 @@
 # @DESCRIPTION:
 # This eclass supports ebuilds for packages distributed by XEmacs.
 
-EXPORT_FUNCTIONS src_unpack src_compile src_install
-
-RDEPEND="${RDEPEND} app-editors/xemacs"
-DEPEND="${DEPEND}"
-
-[ -z "$HOMEPAGE" ]&& HOMEPAGE="http://xemacs.org/;
-[ -z "$LICENSE" ] && LICENSE="GPL-2"
-
-# @ECLASS-VARIABLE: PKG_CAT
+# @ECLASS-VARIABLE: XEMACS_PKG_CAT
 # @REQUIRED
 # @DESCRIPTION:
 # The package category that the package is in. Can be either standard,
 # mule, or contrib.
 
-case "${PKG_CAT}" in
-   "standard" )
-   MY_INSTALL_DIR="/usr/lib/xemacs/xemacs-packages" ;;
-
-   "mule" )
-   MY_INSTALL_DIR="/usr/lib/xemacs/mule-packages" ;;
-
-   "contrib" )
-   MY_INSTALL_DIR="/usr/lib/xemacs/site-packages" ;;
-   *)
-   die "Unsupported package category in PKG_CAT (or unset)" ;;
-esac
-[ -n "$DEBUG" ] && einfo "MY_INSTALL_DIR is ${MY_INSTALL_DIR}"
-
-# @ECLASS-VARIABLE: EXPERIMENTAL
+# @ECLASS-VARIABLE: XEMACS_EXPERIMENTAL
 # @DEFAULT_UNSET
 # @DESCRIPTION:
 # If set then the package is downloaded from the experimental packages
@@ -44,24 +22,38 @@ esac
 # in the experimental repository are auto-generated from XEmacs VCS, so
 # they may not be well-tested.
 
-if [ -n "$EXPERIMENTAL" ]
-then
-   [ -z "$SRC_URI" ] && 
SRC_URI="http://ftp.xemacs.org/pub/xemacs/beta/experimental/packages/${P}-pkg.tar.gz;
+EXPORT_FUNCTIONS src_unpack src_install
+
+RDEPEND="app-editors/xemacs"
+S="${WORKDIR}"
+
+: ${HOMEPAGE:="http://xemacs.org/"}
+: ${LICENSE:="GPL-2+"}
+
+# Backwards compatibility code, to be removed after 2017-05-03
+: ${XEMACS_PKG_CAT:=${PKG_CAT}}
+: ${XEMACS_EXPERIMENTAL:=${EXPERIMENTAL}}
+
+if [[ -n ${XEMACS_EXPERIMENTAL} ]]; then
+   : 
${SRC_URI:="http://ftp.xemacs.org/pub/xemacs/beta/experimental/packages/${P}-pkg.tar.gz"}
 else
-   [ -z "$SRC_URI" ] && 
SRC_URI="http://ftp.xemacs.org/pub/xemacs/packages/${P}-pkg.tar.gz;
+   : 
${SRC_URI:="http://ftp.xemacs.org/pub/xemacs/packages/${P}-pkg.tar.gz"}
 fi
-[ -n "$DEBUG" ] && einfo "SRC_URI is ${SRC_URI}"
 
-xemacs-packages_src_unpack() {
-   return 0
-}
-
-xemacs-packages_src_compile() {
-   einfo "Nothing to compile"
-}
+xemacs-packages_src_unpack() { :; }
 
 xemacs-packages_src_install() {
-   dodir ${MY_INSTALL_DIR}
-   cd "${D}${MY_INSTALL_DIR}"
+   local install_dir
+
+   case ${XEMACS_PKG_CAT} in
+   standard) install_dir="/usr/lib/xemacs/xemacs-packages" ;;
+   mule) install_dir="/usr/lib/xemacs/mule-packages"   ;;
+   contrib)  install_dir="/usr/lib/xemacs/site-packages"   ;;
+   *) die "Unsupported package category in XEMACS_PKG_CAT (or 
unset)" ;;
+   esac
+   debug-print "install_dir is ${install_dir}"
+
+   dodir "${install_dir}"
+   cd "${D}${EPREFIX}${install_dir}" || die
unpack ${A}
 }



[gentoo-commits] repo/gentoo:master commit in: app-xemacs/build/, app-xemacs/forms/, app-xemacs/mule-base/, app-xemacs/auctex/, ...

2017-04-03 Thread Ulrich Müller
commit: 002df586457c235c538a3c45dc1c252925c92735
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Apr  3 18:36:31 2017 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Apr  3 18:42:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=002df586

app-xemacs: Bump all ebuilds inheriting xemacs-packages.eclass to EAPI 6.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-xemacs/ada/ada-1.14.ebuild   | 7 ---
 app-xemacs/apel/apel-1.32.ebuild | 7 ---
 app-xemacs/apel/apel-1.34.ebuild | 7 ---
 app-xemacs/auctex/auctex-1.47.ebuild | 7 ---
 app-xemacs/auctex/auctex-1.51.ebuild | 7 ---
 app-xemacs/bbdb/bbdb-1.32.ebuild | 7 ---
 app-xemacs/build/build-1.14.ebuild   | 7 ---
 app-xemacs/build/build-1.15.ebuild   | 7 ---
 app-xemacs/c-support/c-support-1.22.ebuild   | 7 ---
 app-xemacs/calc/calc-1.26.ebuild | 7 ---
 app-xemacs/calendar/calendar-1.32.ebuild | 7 ---
 app-xemacs/calendar/calendar-1.38.ebuild | 7 ---
 app-xemacs/cc-mode/cc-mode-1.45.ebuild   | 7 ---
 app-xemacs/cedet-common/cedet-common-1.01.ebuild | 7 ---
 app-xemacs/clearcase/clearcase-1.10.ebuild   | 7 ---
 app-xemacs/cogre/cogre-1.02.ebuild   | 7 ---
 app-xemacs/cookie/cookie-1.15.ebuild | 7 ---
 app-xemacs/crisp/crisp-1.15.ebuild   | 7 ---
 app-xemacs/debug/debug-1.18.ebuild   | 7 ---
 app-xemacs/dictionary/dictionary-1.16.ebuild | 7 ---
 app-xemacs/dired/dired-1.17.ebuild   | 7 ---
 app-xemacs/dired/dired-1.19.ebuild   | 7 ---
 app-xemacs/dired/dired-1.20.ebuild   | 7 ---
 app-xemacs/docbookide/docbookide-0.08.ebuild | 7 ---
 app-xemacs/easypg/easypg-1.02.ebuild | 7 ---
 app-xemacs/easypg/easypg-1.03-r1.ebuild  | 7 ---
 app-xemacs/ecb/ecb-1.22.ebuild   | 7 ---
 app-xemacs/ecrypto/ecrypto-0.20.ebuild   | 7 ---
 app-xemacs/ecrypto/ecrypto-0.21.ebuild   | 7 ---
 app-xemacs/ede/ede-1.03-r1.ebuild| 7 ---
 app-xemacs/edebug/edebug-1.22.ebuild | 7 ---
 app-xemacs/edict/edict-1.16.ebuild   | 7 ---
 app-xemacs/edict/edict-1.17.ebuild   | 7 ---
 app-xemacs/ediff/ediff-1.68.ebuild   | 7 ---
 app-xemacs/ediff/ediff-1.77.ebuild   | 7 ---
 app-xemacs/ediff/ediff-1.81.ebuild   | 7 ---
 app-xemacs/edit-utils/edit-utils-2.39.ebuild | 7 ---
 app-xemacs/edit-utils/edit-utils-2.43.ebuild | 7 ---
 app-xemacs/edit-utils/edit-utils-2.44.ebuild | 9 +
 app-xemacs/edt/edt-1.13.ebuild   | 7 ---
 app-xemacs/edt/edt-1.14.ebuild   | 7 ---
 app-xemacs/efs/efs-1.33.ebuild   | 7 ---
 app-xemacs/efs/efs-1.34.ebuild   | 7 ---
 app-xemacs/egg-its/egg-its-1.27.ebuild   | 7 ---
 app-xemacs/eieio/eieio-1.05.ebuild   | 7 ---
 app-xemacs/eieio/eieio-1.07.ebuild   | 7 ---
 app-xemacs/elib/elib-1.11.ebuild | 7 ---
 app-xemacs/elib/elib-1.13.ebuild | 7 ---
 app-xemacs/emerge/emerge-1.11.ebuild | 7 ---
 app-xemacs/erc/erc-0.21.ebuild   | 7 ---
 app-xemacs/erc/erc-0.23.ebuild   | 7 ---
 app-xemacs/escreen/escreen-1.01.ebuild   | 7 ---
 app-xemacs/eshell/eshell-1.10.ebuild | 7 ---
 app-xemacs/eshell/eshell-1.18.ebuild | 7 ---
 app-xemacs/ess/ess-1.03.ebuild   | 7 ---
 app-xemacs/eudc/eudc-1.39.ebuild | 7 ---
 app-xemacs/eudc/eudc-1.40.ebuild | 7 ---
 app-xemacs/footnote/footnote-1.16.ebuild | 7 ---
 app-xemacs/forms/forms-1.15.ebuild  

[gentoo-commits] repo/gentoo:master commit in: media-video/peek/

2017-04-03 Thread Bernard Cafarelli
commit: 302d3fc757f780bc04100c2bfaf53e181daf4155
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Apr  3 18:20:29 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Apr  3 18:20:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=302d3fc7

media-video/peek: drop old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-video/peek/Manifest |  1 -
 media-video/peek/peek-0.8.0-r1.ebuild | 40 ---
 2 files changed, 41 deletions(-)

diff --git a/media-video/peek/Manifest b/media-video/peek/Manifest
index 86ebcdb4bca..948c0e548b1 100644
--- a/media-video/peek/Manifest
+++ b/media-video/peek/Manifest
@@ -1,3 +1,2 @@
-DIST peek-0.8.0.tar.gz 70208 SHA256 
45261ecd3f1891962441266e723a50a7ec81ee00a699c2db64bdde5e6c01aaa9 SHA512 
88d16b1f23e7e710dd617389f632b2eb94c9050861615abc95bc1a76cda84727f0eaf3b1f9898536e457507d0943b3d994800b7340ce2943adb509eb4516236b
 WHIRLPOOL 
0b59668469067ef724e8e1ffcbf9dc6bd5a9a46ab61d133ce2f7bc6a1cb0de17bee53dc5975f4f1fd5bff228a490e3ca3c2b2a000a40b5662aef8ee120f2d0c2
 DIST peek-1.0.0.tar.gz 2595756 SHA256 
1430a92148a066185051664e3bd20a5ce0cc6c97345d1b2a959b698b291ea1fb SHA512 
0a152f3c5301dad33dd64a9291ba05408d08e0c378790ae2777069d0d6f3f13bf38b15b66117f253afe9e0829c7442b1eeef046686830b4698b1d3ca5c0b8e2f
 WHIRLPOOL 
b9483a0d725fc4c9480a7876420b9f771599e5f80d13bf59b33bcf663d6e952554ce0f45b1cc56b5f820fb28ac370b8c7ee58ffab4f7e9f3e1c7c31176f48e48
 DIST peek-1.0.1.tar.gz 2602750 SHA256 
7913664d33756b0e94fc190e1762eba581fcb4bf7100965df3417e90d6254ae3 SHA512 
c021e6e686de25afdd2e66bea9f2d50c08909847bf2e4d8dfbda8e18975febb2ed247a86d46c7f2a954768f8683cfc218be75ad8f495cd729e787e16f09b2dfe
 WHIRLPOOL 
ac6143f2fb71c5cfa36c8b820330decc319ee362513229596c1f1c3060bcaaba101caa97e3456001cd14035d6131fdebec86ff6006899526e45f989b16350628

diff --git a/media-video/peek/peek-0.8.0-r1.ebuild 
b/media-video/peek/peek-0.8.0-r1.ebuild
deleted file mode 100644
index e5f875468d0..000
--- a/media-video/peek/peek-0.8.0-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-VALA_MIN_API_VERSION="0.22"
-
-inherit gnome2 vala cmake-utils
-
-DESCRIPTION="Simple animated Gif screen recorder"
-HOMEPAGE="https://github.com/phw/peek;
-SRC_URI="https://github.com/phw/peek/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-libs/glib-2.38:2
-   media-video/ffmpeg[X,encode]
-   virtual/imagemagick-tools
-   >=x11-libs/gtk+-3.14:3"
-
-DEPEND="${RDEPEND}
-   $(vala_depend)
-   >=sys-devel/gettext-0.19"
-
-src_prepare() {
-   cmake-utils_src_prepare
-   gnome2_src_prepare
-   vala_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DGSETTINGS_COMPILE=OFF
-   -DVALA_EXECUTABLE="${VALAC}"
-   )
-
-   cmake-utils_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: media-video/peek/

2017-04-03 Thread Bernard Cafarelli
commit: 210b9438d1fa70ff0084a7a08531f6dc2ff42e85
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Apr  3 18:20:17 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Apr  3 18:20:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=210b9438

media-video/peek: 1.0.1 bump

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-video/peek/Manifest  |  1 +
 media-video/peek/peek-1.0.1.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/media-video/peek/Manifest b/media-video/peek/Manifest
index 1c423a85678..86ebcdb4bca 100644
--- a/media-video/peek/Manifest
+++ b/media-video/peek/Manifest
@@ -1,2 +1,3 @@
 DIST peek-0.8.0.tar.gz 70208 SHA256 
45261ecd3f1891962441266e723a50a7ec81ee00a699c2db64bdde5e6c01aaa9 SHA512 
88d16b1f23e7e710dd617389f632b2eb94c9050861615abc95bc1a76cda84727f0eaf3b1f9898536e457507d0943b3d994800b7340ce2943adb509eb4516236b
 WHIRLPOOL 
0b59668469067ef724e8e1ffcbf9dc6bd5a9a46ab61d133ce2f7bc6a1cb0de17bee53dc5975f4f1fd5bff228a490e3ca3c2b2a000a40b5662aef8ee120f2d0c2
 DIST peek-1.0.0.tar.gz 2595756 SHA256 
1430a92148a066185051664e3bd20a5ce0cc6c97345d1b2a959b698b291ea1fb SHA512 
0a152f3c5301dad33dd64a9291ba05408d08e0c378790ae2777069d0d6f3f13bf38b15b66117f253afe9e0829c7442b1eeef046686830b4698b1d3ca5c0b8e2f
 WHIRLPOOL 
b9483a0d725fc4c9480a7876420b9f771599e5f80d13bf59b33bcf663d6e952554ce0f45b1cc56b5f820fb28ac370b8c7ee58ffab4f7e9f3e1c7c31176f48e48
+DIST peek-1.0.1.tar.gz 2602750 SHA256 
7913664d33756b0e94fc190e1762eba581fcb4bf7100965df3417e90d6254ae3 SHA512 
c021e6e686de25afdd2e66bea9f2d50c08909847bf2e4d8dfbda8e18975febb2ed247a86d46c7f2a954768f8683cfc218be75ad8f495cd729e787e16f09b2dfe
 WHIRLPOOL 
ac6143f2fb71c5cfa36c8b820330decc319ee362513229596c1f1c3060bcaaba101caa97e3456001cd14035d6131fdebec86ff6006899526e45f989b16350628

diff --git a/media-video/peek/peek-1.0.1.ebuild 
b/media-video/peek/peek-1.0.1.ebuild
new file mode 100644
index 000..94e00bcb32f
--- /dev/null
+++ b/media-video/peek/peek-1.0.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+VALA_MIN_API_VERSION="0.22"
+
+inherit gnome2 vala cmake-utils
+
+DESCRIPTION="Simple animated Gif screen recorder"
+HOMEPAGE="https://github.com/phw/peek;
+SRC_URI="https://github.com/phw/peek/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-libs/glib-2.38:2
+   dev-libs/keybinder:3
+   media-video/ffmpeg[X,encode]
+   virtual/imagemagick-tools
+   >=x11-libs/gtk+-3.14:3"
+DEPEND="${RDEPEND}
+   $(vala_depend)
+   >=sys-devel/gettext-0.19"
+
+src_prepare() {
+   cmake-utils_src_prepare
+   gnome2_src_prepare
+   vala_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DGSETTINGS_COMPILE=OFF
+   -DVALA_EXECUTABLE="${VALAC}"
+   )
+
+   cmake-utils_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmpasman/

2017-04-03 Thread Bernard Cafarelli
commit: 9669cf95241c9eaab497909b431f73373de08ba7
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Apr  3 18:18:13 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Apr  3 18:18:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9669cf95

x11-plugins/wmpasman: drop old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 x11-plugins/wmpasman/Manifest|  1 -
 x11-plugins/wmpasman/wmpasman-0.8.4.1.ebuild | 31 
 2 files changed, 32 deletions(-)

diff --git a/x11-plugins/wmpasman/Manifest b/x11-plugins/wmpasman/Manifest
index 1999aa7c825..335314f3976 100644
--- a/x11-plugins/wmpasman/Manifest
+++ b/x11-plugins/wmpasman/Manifest
@@ -1,3 +1,2 @@
-DIST wmpasman-0.8.4.1.tar.gz 226277 SHA256 
79be58cad5d4e6c5e15969e3d5a4fa1dfe59687b59e81c5802426c900aecd733 SHA512 
59c811ad998a522c255c52bed656e2b5eb9cfbe01913d8fc0d686c82df22543bbe776104f2c141152bd0925990cf590216452e4e3cfe78c85e4ee4d67e69e4c8
 WHIRLPOOL 
51f51f2c92b9067cab2bedd814a0067daa9af72411a46a6f5b3980253f22a241c74ada6cef31e8ed82b05a2c515974024a5545dfd96e6cfb14be1c7dc9a75254
 DIST wmpasman-0.8.5.3.tar.gz 198779 SHA256 
7db784891a73d80e5c386911142fd66b3bee3bd5dcdc35da3355b87aff5ce4b6 SHA512 
d47bae993b1ea47ef2cf4cce0dc8d8f1e8e055650dbfc7854612176a0933a0a5079ad29bc85ba8e0370843e9be189d7e4d0b349590981d3eac4c3f01fe69ec87
 WHIRLPOOL 
8e9fce9faba17d03a2454c0fc8904206d6a2ec566f86e1c8538194aa313be4411c94e8d0d0d2bc26dacc2539305f21a5fbfbb87e8566c39d6f3f6451375cecb7
 DIST wmpasman-2.0.tar.gz 154433 SHA256 
967cc6670fbf6787b915785a85b2e668a9dcbb7882e96556a2ffc09b5b16aba8 SHA512 
32ab415d7b87f5277c96f1253b25a9d5002d2bf188d8635d96c169ff51ab7949e0cd2c05df43136eed4e5d9c4f037affb30ee4a45977d0a6e74bc9e332b9e8be
 WHIRLPOOL 
cd633b8003f3b61267a84c6fcb0f367145a0b0a1398de1e4e89d828b979fc626ed8c87f85571e234cc79d6aacf940d77af282fca2760f0c5c6f294ece5149b9d

diff --git a/x11-plugins/wmpasman/wmpasman-0.8.4.1.ebuild 
b/x11-plugins/wmpasman/wmpasman-0.8.4.1.ebuild
deleted file mode 100644
index 4effc063c48..000
--- a/x11-plugins/wmpasman/wmpasman-0.8.4.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Password storage/retrieval in a dockapp"
-HOMEPAGE="https://sourceforge.net/projects/wmpasman/;
-SRC_URI="mirror://sourceforge/wmpasman/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE=""
-
-RDEPEND=">=x11-libs/gtk+-2.4.1:2
-   >=app-crypt/mhash-0.9.1
-   >=app-crypt/mcrypt-2.6.4"
-DEPEND="${RDEPEND}
-   >=sys-apps/sed-4
-   virtual/pkgconfig
-   >=x11-libs/libXpm-3.5.5"
-
-src_prepare() {
-   # Solves compile error about undefined exit - Bug 140857
-   sed -i -e '/#include / { p ; s/stdio/stdlib/ }' 
wmgeneral/wmgeneral-gtk.c || die
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   dodoc BUGS ChangeLog README TODO WARNINGS
-}



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmpasman/

2017-04-03 Thread Bernard Cafarelli
commit: d879cf23e4b098a84aea8aea4efef617643d67f5
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Apr  3 18:17:30 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Apr  3 18:18:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d879cf23

x11-plugins/wmpasman: 2.0 version bump

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 x11-plugins/wmpasman/Manifest|  1 +
 x11-plugins/wmpasman/wmpasman-2.0.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/x11-plugins/wmpasman/Manifest b/x11-plugins/wmpasman/Manifest
index 727e11afecd..1999aa7c825 100644
--- a/x11-plugins/wmpasman/Manifest
+++ b/x11-plugins/wmpasman/Manifest
@@ -1,2 +1,3 @@
 DIST wmpasman-0.8.4.1.tar.gz 226277 SHA256 
79be58cad5d4e6c5e15969e3d5a4fa1dfe59687b59e81c5802426c900aecd733 SHA512 
59c811ad998a522c255c52bed656e2b5eb9cfbe01913d8fc0d686c82df22543bbe776104f2c141152bd0925990cf590216452e4e3cfe78c85e4ee4d67e69e4c8
 WHIRLPOOL 
51f51f2c92b9067cab2bedd814a0067daa9af72411a46a6f5b3980253f22a241c74ada6cef31e8ed82b05a2c515974024a5545dfd96e6cfb14be1c7dc9a75254
 DIST wmpasman-0.8.5.3.tar.gz 198779 SHA256 
7db784891a73d80e5c386911142fd66b3bee3bd5dcdc35da3355b87aff5ce4b6 SHA512 
d47bae993b1ea47ef2cf4cce0dc8d8f1e8e055650dbfc7854612176a0933a0a5079ad29bc85ba8e0370843e9be189d7e4d0b349590981d3eac4c3f01fe69ec87
 WHIRLPOOL 
8e9fce9faba17d03a2454c0fc8904206d6a2ec566f86e1c8538194aa313be4411c94e8d0d0d2bc26dacc2539305f21a5fbfbb87e8566c39d6f3f6451375cecb7
+DIST wmpasman-2.0.tar.gz 154433 SHA256 
967cc6670fbf6787b915785a85b2e668a9dcbb7882e96556a2ffc09b5b16aba8 SHA512 
32ab415d7b87f5277c96f1253b25a9d5002d2bf188d8635d96c169ff51ab7949e0cd2c05df43136eed4e5d9c4f037affb30ee4a45977d0a6e74bc9e332b9e8be
 WHIRLPOOL 
cd633b8003f3b61267a84c6fcb0f367145a0b0a1398de1e4e89d828b979fc626ed8c87f85571e234cc79d6aacf940d77af282fca2760f0c5c6f294ece5149b9d

diff --git a/x11-plugins/wmpasman/wmpasman-2.0.ebuild 
b/x11-plugins/wmpasman/wmpasman-2.0.ebuild
new file mode 100644
index 000..1d1725c8105
--- /dev/null
+++ b/x11-plugins/wmpasman/wmpasman-2.0.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Password storage/retrieval in a dockapp"
+HOMEPAGE="https://sourceforge.net/projects/wmpasman/;
+SRC_URI="mirror://sourceforge/wmpasman/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND="app-crypt/libsecret
+   >=x11-libs/gtk+-3.8.0:3"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+DOCS="ChangeLog WARNINGS"



[gentoo-commits] repo/gentoo:master commit in: net-wireless/uhd/

2017-04-03 Thread Richard Farina
commit: dbd002aeb6f82f1950189725cafcbc03b7ef7d29
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Apr  3 18:15:57 2017 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Apr  3 18:16:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbd002ae

net-wireless/uhd: drop old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 net-wireless/uhd/Manifest |  2 --
 net-wireless/uhd/uhd-3.8.2.ebuild | 45 ---
 2 files changed, 47 deletions(-)

diff --git a/net-wireless/uhd/Manifest b/net-wireless/uhd/Manifest
index 90d6d69e01b..146eb09af58 100644
--- a/net-wireless/uhd/Manifest
+++ b/net-wireless/uhd/Manifest
@@ -1,4 +1,2 @@
-DIST EttusResearch-UHD-3.8.2.tar.gz 2170233 SHA256 
04fc1e42010560a5c74c714be2729a252b06bf46b982321a3e47ca5ed72a3bce SHA512 
7a2939f883bd5445fc8f16e1e09d3fc3dc2b41481dfb4bdefd4a8e4f2c6c0d1c703f2a47e373b295d11419740b5c62d959557ed3fd880bf75977c9716316a844
 WHIRLPOOL 
ff883bd01768d68b7bc20b97d92e38e7f8ee79571a2cc62917f435482fdd415af7166b3032d71b842cabf12a42c3d3da09ea962f68393b7dc723acce49db65d3
 DIST EttusResearch-UHD-3.8.5.tar.gz 2910398 SHA256 
e0a36e64bffa7d06ac948fd8fc07ff3ce321e1efc3f7e8604b53e0c3ce842989 SHA512 
edbc79e5a524e655e6c9016d2e1d2f0d242a9c7dcfa0130995b4c7cf77b95d4c9ba486e31891554746db755e0b47c46b0b8b9323e8c5de250a15d1271a8ccfc1
 WHIRLPOOL 
3516b74e247bbf6930cb25f639ff34eec2c95102d7c38ddcf7c892c80394ebd7c3e0c91d77277bb4c719c05d83cd6fc507449f9fd072371456843a3a12f6b778
-DIST uhd-images_003.008.002-release.zip 24803095 SHA256 
5e3df6bff5040276208d25848ad085e0ecbbd9f8c528be04f19f91d3b169a1ee SHA512 
a2a970928f7f4e9bbf983f19c71bcf9b1b26a6f7bd66f1a171e6fc7d329a7107bff0e6425734299a88b639663951e27ec4a49efcb7731cb2f3e94c2cd4557e36
 WHIRLPOOL 
404bfe4f87e26e0f39b467abebd7735fef42833a117561b8a73917e36d59b20dc9d62fe89bfd19e9daa3d3e7069ec4b1e0a92808f835f8f5f17e8cccd153495a
 DIST uhd-images_003.008.005-release.zip 24897325 SHA256 
e04e5b63dd550d8bba8db4c6138996c18a54533a158015cea301800da387e198 SHA512 
4d3d60453320a05bf5008ffeddafdf01c08a906e6469a32ece9f1102072e03a8d140487febad7c392ba64f10fc3b94e2fdbe26e2e263a8fe1b1a29077a15e512
 WHIRLPOOL 
2493d969ae60b715592c7e47ee1648a418d808026b950cc524de492010de9b85087186f39c19d59c70e0d0cb1ebacf760e926ba9cf2edf608e95a6c3a7f30929

diff --git a/net-wireless/uhd/uhd-3.8.2.ebuild 
b/net-wireless/uhd/uhd-3.8.2.ebuild
deleted file mode 100644
index 101f0364ae8..000
--- a/net-wireless/uhd/uhd-3.8.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-inherit versionator python-single-r1 gnome2-utils cmake-utils multilib
-
-DESCRIPTION="Universal Software Radio Peripheral (USRP) Hardware Driver"
-HOMEPAGE="http://code.ettus.com/redmine/ettus/projects/uhd/wiki;
-
-image_version=uhd-images_00$(get_version_component_range 
1).00$(get_version_component_range 2).00$(get_version_component_range 3)-release
-SRC_URI="https://github.com/EttusResearch/uhd/archive/release_00$(get_version_component_range
 1)_00$(get_version_component_range 2)_00$(get_version_component_range 
3).tar.gz -> EttusResearch-UHD-$(get_version_component_range 
1).$(get_version_component_range 2).$(get_version_component_range 3).tar.gz \
-   http://files.ettus.com/binaries/images/${image_version}.zip;
-#https://github.com/EttusResearch/UHD-Mirror/tags
-#http://files.ettus.com/binaries/images/
-KEYWORDS="~amd64 ~arm ~x86"
-S="${WORKDIR}"/uhd-release_00$(get_version_component_range 
1)_00$(get_version_component_range 2)_00$(get_version_component_range 3)/host
-
-LICENSE="GPL-3"
-SLOT="0/1"
-IUSE=""
-RDEPEND="virtual/libusb:1
-   dev-lang/orc
-   

[gentoo-commits] repo/gentoo:master commit in: app-office/ledger/, app-office/ledger/files/

2017-04-03 Thread David Seifert
commit: c7ba297cbfbc9ddef908162932e90a11c218eba4
Author: David Seifert  gentoo  org>
AuthorDate: Mon Apr  3 18:11:54 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Apr  3 18:11:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7ba297c

app-office/ledger: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-office/ledger/Manifest |  2 -
 app-office/ledger/files/50ledger-gentoo-3.1.el |  5 --
 app-office/ledger/files/50ledger-gentoo.el |  5 --
 app-office/ledger/ledger-2.6.3-r1.ebuild   | 80 --
 app-office/ledger/ledger-3.1-r1.ebuild | 70 --
 5 files changed, 162 deletions(-)

diff --git a/app-office/ledger/Manifest b/app-office/ledger/Manifest
index 778c657a4f8..6cd37cd8db1 100644
--- a/app-office/ledger/Manifest
+++ b/app-office/ledger/Manifest
@@ -1,3 +1 @@
-DIST ledger-2.6.3.tar.gz 551325 SHA256 
e2c99d930fcf64b7fa901215c7fa25e3327f6365e8ee049620ef3632d53bf363 SHA512 
825e670d25d2f8d1791480fb5da4190f7b342ecc9b47bca60fd6f0e606e5af5f3f767ec7043339660396ef4c90451f4a4122d812b8761acf4ea964b67dbd43b5
 WHIRLPOOL 
e6d351ce8899079daa9cb0d1f9493b2b551a6d44e8ad7949c28ac8e544f80c87d54f06b350adfc21c4c8582e9042547313a506fa74096671bae30b462ae3e2df
 DIST ledger-3.1.1.tar.gz 842364 SHA256 
90f06561ab692b192d46d67bc106158da9c6c6813cc3848b503243a9dfd8548a SHA512 
3f81b98a414cdfc0e272de4e958770149fb1acc8bda880d270e1459ce35294a220c52820bb9af49a751ac3a80b878f81fc7799ba41e0a1be43eba72081351bf5
 WHIRLPOOL 
89a83818adbe206167dbfc999dd589f1943d199cf84979fa82754f597a863c115fec85bbdabc4413714b4253502833170e6327bfc0d2321c392b9a3d73400061
-DIST ledger-3.1.tar.gz 817624 SHA256 
eeb5d260729834923fc94822bcc54ca3080c434f81466a3f5dc4274b357ce694 SHA512 
caa84330eee05d3e88820e8afd4a906d22f6aaa9de4abc2f6813636754e052e6ec4d1b3d2fce68215aededc72651405c62aaf16a2c1b69d34e1b10ffece48519
 WHIRLPOOL 
fc3ce5e8eb59e1d4f83101063ebefd1379172c1be0e4f504079519924859b8127d616e7e3714837be49c7b38674b1684e321347d1f8561aeeba586b538341142

diff --git a/app-office/ledger/files/50ledger-gentoo-3.1.el 
b/app-office/ledger/files/50ledger-gentoo-3.1.el
deleted file mode 100644
index 1c2c5bde2f8..000
--- a/app-office/ledger/files/50ledger-gentoo-3.1.el
+++ /dev/null
@@ -1,5 +0,0 @@
-
-;;; app-office/ledger site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-(autoload 'ledger-mode "ledger-mode" "A mode for editing ledger data files." t)

diff --git a/app-office/ledger/files/50ledger-gentoo.el 
b/app-office/ledger/files/50ledger-gentoo.el
deleted file mode 100644
index 27836612139..000
--- a/app-office/ledger/files/50ledger-gentoo.el
+++ /dev/null
@@ -1,5 +0,0 @@
-
-;;; app-office/ledger site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-(autoload 'ledger-mode "ledger" "A mode for editing ledger data files." t)

diff --git a/app-office/ledger/ledger-2.6.3-r1.ebuild 
b/app-office/ledger/ledger-2.6.3-r1.ebuild
deleted file mode 100644
index 78b0e1fad19..000
--- a/app-office/ledger/ledger-2.6.3-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils elisp-common autotools
-
-DESCRIPTION="A double-entry accounting system with a command-line reporting 
interface"
-HOMEPAGE="http://ledger-cli.org/;
-SRC_URI="mirror://github/jwiegley/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x64-macos"
-SLOT="0"
-IUSE="emacs debug gnuplot ofx static-libs xml vim-syntax"
-
-DEPEND="
-   dev-libs/gmp:0
-   dev-libs/libpcre
-   ofx? ( >=dev-libs/libofx-0.9 )
-   xml? ( dev-libs/expat )
-   emacs? ( virtual/emacs )
-   gnuplot? ( sci-visualization/gnuplot )"
-RDEPEND="${DEPEND}
-   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )"
-
-DOCS=(sample.dat README NEWS)
-
-SITEFILE=50${PN}-gentoo.el
-
-src_prepare() {
-   sed -i -e "/ledger_LDFLAGS/d" Makefile.am
-   eautoreconf
-}
-
-src_configure() {
-   # Autodetection of dependencies may fail in the case of:
-   # USE=emacs disabled, app-editors/emacs not installed, 
app-editors/xemacs installed
-   use emacs || export EMACS=no
-   econf \
-   $(use_enable debug) \
-   $(use_with emacs lispdir "${EPREFIX}/${SITELISP}/${PN}") \
-   $(use_enable ofx) \
-   $(use_enable static-libs static) \
-   $(use_enable xml)
-}
-
-src_install() {
-   default
-
-   # One script uses vi, the outher the Finance perl module
-   # Did not add more use flags though
-   exeinto /usr/share/${PN}/scripts
-   doexe scripts/{entry,getquote,bal,bal-huquq}
-
-   # Remove timeclock since it is part of Emacs
-   rm -f "${ED}${SITELISP}/${PN}"/timeclock.*
-
-   use emacs && elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-
-   if use gnuplot; then
-   mv 

[gentoo-commits] proj/kde:master commit in: kde-misc/yakuake/

2017-04-03 Thread Johannes Huber
commit: 55e5fdb97b5b8787fc93262641e90a1f44aa91b1
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Apr  3 18:09:17 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Apr  3 18:09:17 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=55e5fdb9

kde-misc/yakuake: DEPEND on kde-frameworks/kwayland

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 kde-misc/yakuake/yakuake-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-misc/yakuake/yakuake-.ebuild 
b/kde-misc/yakuake/yakuake-.ebuild
index 65de201289..04fbb85f3b 100644
--- a/kde-misc/yakuake/yakuake-.ebuild
+++ b/kde-misc/yakuake/yakuake-.ebuild
@@ -31,6 +31,7 @@ DEPEND="
$(add_frameworks_dep knotifyconfig)
$(add_frameworks_dep kparts)
$(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwayland)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)



[gentoo-commits] repo/gentoo:master commit in: kde-misc/yakuake/files/, kde-misc/yakuake/

2017-04-03 Thread Johannes Huber
commit: b9bf42c1a5fa424e8e66ab2c1b0747bbb30e7939
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Apr  3 18:07:24 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Apr  3 18:07:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9bf42c1

kde-misc/yakuake: Remove 3.0.3

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 kde-misc/yakuake/Manifest |  1 -
 kde-misc/yakuake/files/yakuake-3.0.3-qt-5.7.patch | 30 --
 kde-misc/yakuake/yakuake-3.0.3.ebuild | 48 ---
 3 files changed, 79 deletions(-)

diff --git a/kde-misc/yakuake/Manifest b/kde-misc/yakuake/Manifest
index de74613f875..67d4ff326ec 100644
--- a/kde-misc/yakuake/Manifest
+++ b/kde-misc/yakuake/Manifest
@@ -1,3 +1,2 @@
 DIST yakuake-3.0.2.tar.xz 443516 SHA256 
e541e725246e20b755d8c9314185739f2439e18b884f6ae6f977343443948d6d SHA512 
11fb5b9c587bda8db6cf565129b5b1aecbcc2e1132841cce4e7755c61ca5a55775bd6024ca561d8a7c163a31186414175f7d637ebc9a9ad2782d97456e527584
 WHIRLPOOL 
4d5ae6b1d55fd6b7ed030f78c89ed46839d29bfdba54b178e813b90f1947fa2eb9775c453e055bda3757fd5ea28a9d860630e636cae0b0d4c56c9b27d844b45b
-DIST yakuake-3.0.3.tar.xz 367512 SHA256 
ef51aa3325916d352fde17870cf706397e41105103e4c9289cc4032a1b8609a7 SHA512 
deb1ab7fa2198cc324948a340e08e10d45bde389aab16e0050f78a6bac1b8b4dcc025f3aad966009d1a750712620f5345f6f2ce6dff7e1300f4ac8e53ccae601
 WHIRLPOOL 
ff314fa07cb0f08b79181b53f793ef885e0daaddf48ec5f3855ca85c4a79c9d7759052578e4c37c6de8665eec315e94a84798fb443469b2235e19f1845097f75
 DIST yakuake-3.0.4.tar.xz 367788 SHA256 
10e2b57c508e2ec5bfd09eac38c4c16a1ac4b93b394b3ce3120b7d8859b861e0 SHA512 
e50fe742349e02116bb9d7edd61178fcbc215ace39d50b48fb8ec3095c948a7ff91add7be5d8778c817f9d5b4663d4cefe3e0ef197c7ec6e0b88b3158ff39659
 WHIRLPOOL 
4223f973ddc5cb6d40289f8e9943740c9a734ffa9b05763c09a1baf1323065454e13f8fb86ff904672300a87bad6168e44808c23ea851cd92ecce9454f107d7d

diff --git a/kde-misc/yakuake/files/yakuake-3.0.3-qt-5.7.patch 
b/kde-misc/yakuake/files/yakuake-3.0.3-qt-5.7.patch
deleted file mode 100644
index 2cca499c0dc..000
--- a/kde-misc/yakuake/files/yakuake-3.0.3-qt-5.7.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 2290cf018e2fef96c737b4cfe3f330435ccbdc76 Mon Sep 17 00:00:00 2001
-From: Luca Beltrame 
-Date: Fri, 31 Mar 2017 17:44:22 +0200
-Subject: Fix build with Qt 5.7
-
-QPlatformSurfaceEvent is likely included by something else in Qt 5.8,
-but it doesn't in Qt 5.7.
-
-Observed in openSUSE Tumbleweed (which has Qt 5.7).
-
-CCMAIL: h...@kde.org

- app/mainwindow.cpp | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/app/mainwindow.cpp b/app/mainwindow.cpp
-index ea8ee8a..a7b0d89 100644
 a/app/mainwindow.cpp
-+++ b/app/mainwindow.cpp
-@@ -54,6 +54,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #if HAVE_X11
- #include 
--- 
-cgit v0.11.2
-

diff --git a/kde-misc/yakuake/yakuake-3.0.3.ebuild 
b/kde-misc/yakuake/yakuake-3.0.3.ebuild
deleted file mode 100644
index db8cd67e45c..000
--- a/kde-misc/yakuake/yakuake-3.0.3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit kde5
-
-DESCRIPTION="Quake-style terminal emulator based on konsole"
-HOMEPAGE="http://yakuake.kde.org/;
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-fi
-
-LICENSE="GPL-2 LGPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep kglobalaccel)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_kdeapps_dep konsole)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtx11extras)
-   x11-libs/libX11
-"
-RDEPEND="${DEPEND}
-   !kde-misc/yakuake:4
-"
-
-PATCHES=( "${FILESDIR}/${P}-qt-5.7.patch" )



[gentoo-commits] repo/gentoo:master commit in: kde-misc/yakuake/

2017-04-03 Thread Johannes Huber
commit: edbc5c659b214a51670cf2495989594ae5ce37c8
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Apr  3 18:05:42 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Apr  3 18:05:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edbc5c65

kde-misc/yakuake: Version bump 3.0.4

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 kde-misc/yakuake/Manifest |  1 +
 kde-misc/yakuake/yakuake-3.0.4.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/kde-misc/yakuake/Manifest b/kde-misc/yakuake/Manifest
index 6348f7b2669..de74613f875 100644
--- a/kde-misc/yakuake/Manifest
+++ b/kde-misc/yakuake/Manifest
@@ -1,2 +1,3 @@
 DIST yakuake-3.0.2.tar.xz 443516 SHA256 
e541e725246e20b755d8c9314185739f2439e18b884f6ae6f977343443948d6d SHA512 
11fb5b9c587bda8db6cf565129b5b1aecbcc2e1132841cce4e7755c61ca5a55775bd6024ca561d8a7c163a31186414175f7d637ebc9a9ad2782d97456e527584
 WHIRLPOOL 
4d5ae6b1d55fd6b7ed030f78c89ed46839d29bfdba54b178e813b90f1947fa2eb9775c453e055bda3757fd5ea28a9d860630e636cae0b0d4c56c9b27d844b45b
 DIST yakuake-3.0.3.tar.xz 367512 SHA256 
ef51aa3325916d352fde17870cf706397e41105103e4c9289cc4032a1b8609a7 SHA512 
deb1ab7fa2198cc324948a340e08e10d45bde389aab16e0050f78a6bac1b8b4dcc025f3aad966009d1a750712620f5345f6f2ce6dff7e1300f4ac8e53ccae601
 WHIRLPOOL 
ff314fa07cb0f08b79181b53f793ef885e0daaddf48ec5f3855ca85c4a79c9d7759052578e4c37c6de8665eec315e94a84798fb443469b2235e19f1845097f75
+DIST yakuake-3.0.4.tar.xz 367788 SHA256 
10e2b57c508e2ec5bfd09eac38c4c16a1ac4b93b394b3ce3120b7d8859b861e0 SHA512 
e50fe742349e02116bb9d7edd61178fcbc215ace39d50b48fb8ec3095c948a7ff91add7be5d8778c817f9d5b4663d4cefe3e0ef197c7ec6e0b88b3158ff39659
 WHIRLPOOL 
4223f973ddc5cb6d40289f8e9943740c9a734ffa9b05763c09a1baf1323065454e13f8fb86ff904672300a87bad6168e44808c23ea851cd92ecce9454f107d7d

diff --git a/kde-misc/yakuake/yakuake-3.0.4.ebuild 
b/kde-misc/yakuake/yakuake-3.0.4.ebuild
new file mode 100644
index 000..961c9b9d991
--- /dev/null
+++ b/kde-misc/yakuake/yakuake-3.0.4.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit kde5
+
+DESCRIPTION="Quake-style terminal emulator based on konsole"
+HOMEPAGE="http://yakuake.kde.org/;
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+fi
+
+LICENSE="GPL-2 LGPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   $(add_frameworks_dep karchive)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep kglobalaccel)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep knewstuff)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep knotifyconfig)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwayland)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_frameworks_dep kxmlgui)
+   $(add_kdeapps_dep konsole)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtx11extras)
+   x11-libs/libX11
+"
+RDEPEND="${DEPEND}
+   !kde-misc/yakuake:4
+"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/fddl/

2017-04-03 Thread Johannes Huber
commit: cef022f1bc848c8687249352ba96dcad9c264407
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Apr  3 17:56:59 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Apr  3 17:56:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cef022f1

dev-libs/fddl: Remove 2024 (r0)

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-libs/fddl/fddl-2024.ebuild | 39 --
 1 file changed, 39 deletions(-)

diff --git a/dev-libs/fddl/fddl-2024.ebuild 
b/dev-libs/fddl/fddl-2024.ebuild
deleted file mode 100644
index b72983f5435..000
--- a/dev-libs/fddl/fddl-2024.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-CMAKE_IN_SOURCE_BUILD=1
-
-inherit cmake-utils multilib vcs-snapshot
-
-DESCRIPTION="Free Decision Diagram Library"
-HOMEPAGE="http://itval.sourceforge.net/ https://github.com/atomopawn/FDDL;
-SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DOCS=( AUTHORS ChangeLog INSTALL RELEASE )
-
-src_prepare() {
-   # Remove references to files that were not shipped,
-   # prefer dynamic linking
-   sed -i \
-   -e 's|unaryoperation.cpp||g' \
-   -e 's|unaryoperation.h||g' \
-   -e 's|binaryoperation.cpp||g' \
-   -e 's|binaryoperation.h||g' \
-   -e '/add_library/s/FDDL /FDDL SHARED /' \
-   -e '/add_library/s/FDDL /FDDL SHARED /' \
-   -e "/^install/s:DESTINATION lib:DESTINATION $(get_libdir):" \
-   src/CMakeLists.txt || die
-   # Do not build tests that depend on above files
-   sed -i   \
-   {,tests/}CMakeLists.txt \
-   -e '/test_unaryop/d' \
-   -e '/test_binaryop/d' \
-   || die
-}



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

2017-04-03 Thread Johannes Huber
commit: c2c8c3c26c83247638796fc718e1f7cd8105e68f
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Apr  3 17:55:38 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Apr  3 17:55:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c8c3c2

media-gfx/scantailor: Remove 0.9.11.1

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-gfx/scantailor/Manifest  |   2 -
 ...cantailor-0.9.11.1-boost-lambda-namespace.patch | 144 -
 .../files/scantailor-0.9.9-environment_flags.patch |  24 
 media-gfx/scantailor/scantailor-0.9.11.1.ebuild|  54 
 4 files changed, 224 deletions(-)

diff --git a/media-gfx/scantailor/Manifest b/media-gfx/scantailor/Manifest
index b0ab6bae868..b81f80b5053 100644
--- a/media-gfx/scantailor/Manifest
+++ b/media-gfx/scantailor/Manifest
@@ -1,3 +1 @@
-DIST scantailor-0.9.11.1-boost-join-moc.patch 53044 SHA256 
c00772facafdb696bf0e36ba216050cf3ec5b45c15e0099e6ef4935bffa9ba00 SHA512 
77c6ee7988834c8694f9c09182fcdf87bdba64f3e69c9cc9b8347c4980a56c484a4368643f1c608ebbaeb469d4d6bc8d1a62f95fce18bc41dfce68137a457a61
 WHIRLPOOL 
0e5b04a65a5c47deeea6b3ec192549e50b22825df506bda2b87fbc1aa0254993a33c7c7907af1520c7e0ae4264a9a00b9e92d6114b1aee664408c69bb9bdcf00
-DIST scantailor-0.9.11.1.tar.gz 1190198 SHA256 
881647a4172c55a067a7b6687965441cf21176d79d93075b22a373ea9accd8d3 SHA512 
cec327fd12144f7cee5043adfee3880c75fb147474e4c3b5166385f7a8f47cb5650ed2df930bbe1f4b8ac2c7229a887ecba1ca105b47b1023f5d3d7d7b54bdb4
 WHIRLPOOL 
c064837bd4d5f4c3fbfa260493f3eccecff59910c934005148975f2f00511539ae0e66535d0a57bbf0458022c8ec249faa7f3df40ed8d89b2683530b885e4f6b
 DIST scantailor-0.9.12.2.tar.gz 1207379 SHA256 
1f7b96bbe5179d46e332aea8d51ba50545fe7c510811e51588b6a4919e4feeab SHA512 
d98603c5b3dfadeae3bda66d8b5ea085107edf9ee03efd299d50bf88a01f2b1092957f1ed4abe1a5d53b9028b7dec16dc5a8452d1a197fe0f3aaddeff6d02793
 WHIRLPOOL 
2ab46657538b5d95e2a564aa70775fdac8854136708f482c24c61507af217c75cb8974ace731a87b9a59d7e7da3788b23e28c178099fa479e2e01c3b767eb10c

diff --git 
a/media-gfx/scantailor/files/scantailor-0.9.11.1-boost-lambda-namespace.patch 
b/media-gfx/scantailor/files/scantailor-0.9.11.1-boost-lambda-namespace.patch
deleted file mode 100644
index 411341c9d1b..000
--- 
a/media-gfx/scantailor/files/scantailor-0.9.11.1-boost-lambda-namespace.patch
+++ /dev/null
@@ -1,144 +0,0 @@
-Namespace qualify bind, in order to avoid clashes with boost::placeholder
-Patches taken from FreeBSD:
-https://svnweb.freebsd.org/ports?view=revision=408592
-
 scantailor-0.9.11.1/filters/deskew/Filter.cpp
-+++ scantailor-0.9.11.1/filters/deskew/Filter.cpp
-@@ -85,9 +85,9 @@
-   
-   QDomElement filter_el(doc.createElement("deskew"));
-   writer.enumPages(
--  bind(
-+  boost::lambda::bind(
-   ::writePageSettings,
--  this, boost::ref(doc), var(filter_el), _1, _2
-+  this, boost::ref(doc), var(filter_el), 
boost::lambda::_1, boost::lambda::_2
-   )
-   );
-   
 scantailor-0.9.11.1/filters/fix_orientation/Filter.cpp
-+++ scantailor-0.9.11.1/filters/fix_orientation/Filter.cpp
-@@ -100,9 +100,9 @@
-   
-   QDomElement filter_el(doc.createElement("fix-orientation"));
-   writer.enumImages(
--  bind(
-+  boost::lambda::bind(
-   ::writeImageSettings,
--  this, boost::ref(doc), var(filter_el), _1, _2
-+  this, boost::ref(doc), var(filter_el), 
boost::lambda::_1, boost::lambda::_2
-   )
-   );
-   
 scantailor-0.9.11.1/filters/output/Filter.cpp
-+++ scantailor-0.9.11.1/filters/output/Filter.cpp
-@@ -93,9 +93,9 @@
-   
-   QDomElement filter_el(doc.createElement("output"));
-   writer.enumPages(
--  bind(
-+  boost::lambda::bind(
-   ::writePageSettings,
--  this, boost::ref(doc), var(filter_el), _1, _2
-+  this, boost::ref(doc), var(filter_el), 
boost::lambda::_1, boost::lambda::_2
-   )
-   );
-   
 scantailor-0.9.11.1/filters/page_layout/Filter.cpp
-+++ scantailor-0.9.11.1/filters/page_layout/Filter.cpp
-@@ -136,9 +136,9 @@
-   
-   QDomElement filter_el(doc.createElement("page-layout"));
-   writer.enumPages(
--  bind(
-+  boost::lambda::bind(
-   ::writePageSettings,
--  this, boost::ref(doc), var(filter_el), _1, _2
-+  this, boost::ref(doc), var(filter_el), 
boost::lambda::_1, boost::lambda::_2
-   )
-   );
-   
 scantailor-0.9.11.1/filters/page_split/Filter.cpp
-+++ scantailor-0.9.11.1/filters/page_split/Filter.cpp
-@@ -110,9 +110,9 @@
-   );
-   
-   writer.enumImages(
--  bind(
-+  boost::lambda::bind(
-

[gentoo-commits] repo/gentoo:master commit in: app-portage/prefix-chain-setup/files/

2017-04-03 Thread Michael Haubenwallner
commit: 4ba1714c12c07d298fb1e1c71c4d210a9c01b103
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Apr  3 16:53:03 2017 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Apr  3 16:53:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ba1714c

app-portage/prefix-chain-setup: use /usr/bin/env shebang

Package-Manager: portage-2.3.3

 app-portage/prefix-chain-setup/files/prefix-chain-setup.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/prefix-chain-setup/files/prefix-chain-setup.in 
b/app-portage/prefix-chain-setup/files/prefix-chain-setup.in
index dacb48318df..d3923f1b438 100644
--- a/app-portage/prefix-chain-setup/files/prefix-chain-setup.in
+++ b/app-portage/prefix-chain-setup/files/prefix-chain-setup.in
@@ -1,4 +1,4 @@
-#!/bin/env bash
+#!/usr/bin/env bash
 
 PARENT_EPREFIX="@GENTOO_PORTAGE_EPREFIX@"
 PARENT_CHOST="@GENTOO_PORTAGE_CHOST@"



[gentoo-commits] proj/sci:master commit in: sci-biology/igv/

2017-04-03 Thread Martin Mokrejs
commit: d384a8e567a575653b5714b4c3643c88ab3fae72
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Mon Apr  3 16:18:02 2017 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Mon Apr  3 16:18:02 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=d384a8e5

sci-biology/igv: fix SLOT operators

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 sci-biology/igv/igv-2.3.88.ebuild | 16 
 sci-biology/igv/igv-2.3.92.ebuild | 14 +++---
 2 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/sci-biology/igv/igv-2.3.88.ebuild 
b/sci-biology/igv/igv-2.3.88.ebuild
index 367ff7048..71298049f 100644
--- a/sci-biology/igv/igv-2.3.88.ebuild
+++ b/sci-biology/igv/igv-2.3.88.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -36,17 +36,17 @@ COMMON_DEPS="
dev-java/commons-compress
dev-java/commons-logging:0
>=dev-java/commons-io-2.1:1
-   dev-java/commons-math:*
-   dev-java/commons-jexl:*
+   dev-java/commons-math:2
+   dev-java/commons-jexl:2
dev-java/jcommon:*
-   dev-java/jfreechart:*
+   dev-java/jfreechart:1.0
dev-java/jlfgr:0
dev-java/log4j:0
-   dev-java/gson:*
-   dev-java/guava:*
-   dev-java/swing-layout:*
+   dev-java/gson:2.2.2
+   dev-java/guava:17
+   dev-java/swing-layout:1
dev-java/jgrapht:0
-   dev-java/junit:*"
+   dev-java/junit:4"
 
 DEPEND=">=virtual/jdk-1.7
app-arch/unzip

diff --git a/sci-biology/igv/igv-2.3.92.ebuild 
b/sci-biology/igv/igv-2.3.92.ebuild
index 72b0dcff1..71298049f 100644
--- a/sci-biology/igv/igv-2.3.92.ebuild
+++ b/sci-biology/igv/igv-2.3.92.ebuild
@@ -36,17 +36,17 @@ COMMON_DEPS="
dev-java/commons-compress
dev-java/commons-logging:0
>=dev-java/commons-io-2.1:1
-   >=dev-java/commons-math-2:*
-   >=dev-java/commons-jexl-2:*
+   dev-java/commons-math:2
+   dev-java/commons-jexl:2
dev-java/jcommon:*
-   >=dev-java/jfreechart-1.0:*
+   dev-java/jfreechart:1.0
dev-java/jlfgr:0
dev-java/log4j:0
-   >=dev-java/gson-2.2.2:*
-   =dev-java/guava-17:*
-   >=dev-java/swing-layout-1
+   dev-java/gson:2.2.2
+   dev-java/guava:17
+   dev-java/swing-layout:1
dev-java/jgrapht:0
-   >=dev-java/junit-4"
+   dev-java/junit:4"
 
 DEPEND=">=virtual/jdk-1.7
app-arch/unzip



[gentoo-commits] data/api:master commit in: files/overlays/

2017-04-03 Thread Michał Górny
commit: 207b0babc8266d72248f5c7c1de2ac58a3c13778
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr  3 15:57:18 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr  3 15:57:18 2017 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=207b0bab

repositories: Update contact for youbroketheinternet, #610882

 files/overlays/repositories.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 94aeb80..4aa1eed 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -5620,8 +5620,8 @@ FIN
 This overlay is a collaborative maintained Gentoo 
developer overlay. Some of us are involved with SecuShare, but we try out all 
sorts of XKEYSCORE-resistant technology. Some of our unique ebuilds are the 
full GNUnet suite, and software around the psyced chatserver. Some ebuilds are 
experimental/testing - refer to the included README for more info and details. 
If you would like to get involved read 
https://wiki.gentoo.org/wiki/Overlay:Youbroketheinternet
 http://youbroketheinternet.org/#overlay
 
-  ngillm...@runbox.com
-  N. "ng0" Gillmann
+  l...@youbroketheinternet.pages.de
+  lynX
 
 https://gnunet.org/git/youbroketheinternet-overlay.git
 git://cheettyiapsyciew.onion/youbroketheinternet-overlay



[gentoo-commits] proj/sci:master commit in: sci-biology/BBmap/

2017-04-03 Thread Martin Mokrejs
commit: f9975865d2ac4175a005d3fd9a315263b07a66c1
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Mon Apr  3 15:52:14 2017 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Mon Apr  3 15:52:14 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=f9975865

sci-biology/BBmap: add ~x86 to KEYWORDS, version bump

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 sci-biology/BBmap/BBmap-34.97.ebuild | 2 +-
 sci-biology/BBmap/BBmap-35.92.ebuild | 2 +-
 sci-biology/BBmap/BBmap-36.02.ebuild | 2 +-
 sci-biology/BBmap/BBmap-36.86.ebuild | 2 +-
 sci-biology/BBmap/{BBmap-35.92.ebuild => BBmap-37.02.ebuild} | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sci-biology/BBmap/BBmap-34.97.ebuild 
b/sci-biology/BBmap/BBmap-34.97.ebuild
index 7be2990a4..cf80ed6c8 100644
--- a/sci-biology/BBmap/BBmap-34.97.ebuild
+++ b/sci-biology/BBmap/BBmap-34.97.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://sourceforge.net/projects/bbmap/files/BBMap_"${PV}".tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="

diff --git a/sci-biology/BBmap/BBmap-35.92.ebuild 
b/sci-biology/BBmap/BBmap-35.92.ebuild
index f26586885..d8d2042ce 100644
--- a/sci-biology/BBmap/BBmap-35.92.ebuild
+++ b/sci-biology/BBmap/BBmap-35.92.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://sourceforge.net/projects/bbmap/files/BBMap_"${PV}".tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="

diff --git a/sci-biology/BBmap/BBmap-36.02.ebuild 
b/sci-biology/BBmap/BBmap-36.02.ebuild
index f26586885..d8d2042ce 100644
--- a/sci-biology/BBmap/BBmap-36.02.ebuild
+++ b/sci-biology/BBmap/BBmap-36.02.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://sourceforge.net/projects/bbmap/files/BBMap_"${PV}".tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="

diff --git a/sci-biology/BBmap/BBmap-36.86.ebuild 
b/sci-biology/BBmap/BBmap-36.86.ebuild
index f26586885..d8d2042ce 100644
--- a/sci-biology/BBmap/BBmap-36.86.ebuild
+++ b/sci-biology/BBmap/BBmap-36.86.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://sourceforge.net/projects/bbmap/files/BBMap_"${PV}".tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="

diff --git a/sci-biology/BBmap/BBmap-35.92.ebuild 
b/sci-biology/BBmap/BBmap-37.02.ebuild
similarity index 97%
copy from sci-biology/BBmap/BBmap-35.92.ebuild
copy to sci-biology/BBmap/BBmap-37.02.ebuild
index f26586885..d8d2042ce 100644
--- a/sci-biology/BBmap/BBmap-35.92.ebuild
+++ b/sci-biology/BBmap/BBmap-37.02.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://sourceforge.net/projects/bbmap/files/BBMap_"${PV}".tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] proj/sci:master commit in: sci-biology/igv/

2017-04-03 Thread Martin Mokrejs
commit: c2d81203011805abd24ae7adb6c8afc14ea02949
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Mon Apr  3 15:45:26 2017 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Mon Apr  3 15:45:26 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c2d81203

sci-biology/igv: version bump, cannot compile 
FlowSignalDistributionPanel.java:222

It seem this is related to Gentoo ebuild unbundling some of the bundled libs.
I can compile vanilla sources using ant without this issue.

[javac] Compiling 889 source files to 
/scratch/var/tmp/portage/sci-biology/igv-2.3.88/work/igv-2.3.88/tmp
[javac] 
/scratch/var/tmp/portage/sci-biology/igv-2.3.88/work/igv-2.3.88/src/org/broad/igv/tools/sort/BAMSorter.java:33:
 warning: NotImplementedException is internal proprietary API and may be 
removed in a future release
[javac] import 
sun.reflect.generics.reflectiveObjects.NotImplementedException;
[javac]  ^
[javac] 
/scratch/var/tmp/portage/sci-biology/igv-2.3.88/work/igv-2.3.88/src/com/iontorrent/views/FlowSignalDistributionPanel.java:222:
 error: cannot access PublicCloneable
[javac] dataset.addValue(data[j], seriename, cat);
[javac]^
[javac]   class file for org.jfree.util.PublicCloneable not found
[javac] 
/scratch/var/tmp/portage/sci-biology/igv-2.3.88/work/igv-2.3.88/src/com/iontorrent/views/FlowSignalDistributionPanel.java:266:
 error: cannot access Drawable
[javac] CategoryPlot plot = freechart.getCategoryPlot();
[javac]  ^
[javac]   class file for org.jfree.ui.Drawable not found
[javac] 
/scratch/var/tmp/portage/sci-biology/igv-2.3.88/work/igv-2.3.88/src/org/broad/igv/tools/sort/BAMSorter.java:102:
 warning: NotImplementedException is internal proprietary API and may be 
removed in a future release
[javac] throw new NotImplementedException();

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 sci-biology/igv/igv-2.3.92.ebuild | 87 +++
 1 file changed, 87 insertions(+)

diff --git a/sci-biology/igv/igv-2.3.92.ebuild 
b/sci-biology/igv/igv-2.3.92.ebuild
new file mode 100644
index 0..72b0dcff1
--- /dev/null
+++ b/sci-biology/igv/igv-2.3.92.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit java-pkg-2 java-ant-2
+
+[ "$PV" == "" ] && inherit git-r3
+
+if [ "$PV" == "" ]; then
+   #ESVN_REPO_URI="http://igv.googlecode.com/svn/trunk;
+   #ESVN_REPO_URI="http://igv.googlecode.com/svn/tags/Version_${PV};
+   EGIT_REPO_URI="https://github.com/broadinstitute/IGV.git;
+   KEYWORDS=""
+else
+   SRC_URI="https://github.com/broadinstitute/IGV/archive/v${PV}.zip -> 
${P}.zip"
+   KEYWORDS=""
+   # binaries
+   # http://www.broadinstitute.org/igv/projects/downloads/IGV_2.3.40.zip
+   # 
http://www.broadinstitute.org/igv/projects/downloads/igvtools_2.3.40.zip
+fi
+
+DESCRIPTION="Integrative Genomics Viewer"
+HOMEPAGE="http://www.broadinstitute.org/igv/;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE=""
+KEYWORDS="" # see upstream issue #332
+
+# actually more exactly the COMMON_DEPS should contain:
+#   >=dev-java/commons-compress-1.11 # use bundled library until 
dev-java/commons-compress is bumped, see bug #591696
+COMMON_DEPS="
+   dev-java/absolutelayout:0
+   dev-java/jama:0
+   dev-java/commons-compress
+   dev-java/commons-logging:0
+   >=dev-java/commons-io-2.1:1
+   >=dev-java/commons-math-2:*
+   >=dev-java/commons-jexl-2:*
+   dev-java/jcommon:*
+   >=dev-java/jfreechart-1.0:*
+   dev-java/jlfgr:0
+   dev-java/log4j:0
+   >=dev-java/gson-2.2.2:*
+   =dev-java/guava-17:*
+   >=dev-java/swing-layout-1
+   dev-java/jgrapht:0
+   >=dev-java/junit-4"
+
+DEPEND=">=virtual/jdk-1.7
+   app-arch/unzip
+   ${COMMON_DEPS}"
+RDEPEND=">=virtual/jre-1.7
+   ${COMMON_DEPS}"
+
+S="${WORKDIR}/igv-${PV}" # if the file unpacks into IGV_"${PV}" then you 
fetched wrong file with the precompiled jar
+
+EANT_BUILD_TARGET="all"
+JAVA_ANT_REWRITE_CLASSPATH="true"
+EANT_NEEDS_TOOLS="true"
+EANT_EXTRA_ARGS="-Dnotests=true"
+
+EANT_GENTOO_CLASSPATH="absolutelayout,jama,commons-logging,commons-math-2,commons-jexl-2,jfreechart-1.0,jlfgr,log4j,commons-io-1,"
+EANT_GENTOO_CLASSPATH+="gson-2.2.2,guava-20,swing-layout-1,jgrapht,junit-4"
+
+java_prepare() {
+   mv lib oldlib || die
+   mkdir lib || die
+
+   mv -v 
oldlib/{htsjdk-1.139-patched.jar,jide-oss-3.5.5.jar,goby-io-igv__V1.0.jar,jargs.jar,mongo-java-driver-2.11.3.jar,na12878kb-utils.jar,picard-lib.jar,mysql-connector-java-3.1.14-bin.jar}
 lib || die
+   mv -v oldlib/batik* lib || die
+
+   rm -rvf oldlib/* || die
+}
+
+src_install() {
+   java-pkg_newjar igv.jar
+
+  

[gentoo-commits] proj/openrc:master commit in: src/rc/

2017-04-03 Thread William Hubbs
commit: 9eb669591e16c5ee0ca07babe058d0b7b2396077
Author: Austin English  gmail  com>
AuthorDate: Fri Mar 31 18:59:38 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Apr  3 15:43:40 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=9eb66959

start-stop-daemon: warn if calling --start with --retry or --stop with --wait

This fixes #122

 src/rc/start-stop-daemon.c | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c
index e9f9848c..c88bc962 100644
--- a/src/rc/start-stop-daemon.c
+++ b/src/rc/start-stop-daemon.c
@@ -960,6 +960,9 @@ int main(int argc, char **argv)
if (redirect_stdout || redirect_stderr)
eerrorx("%s: --stdout and --stderr are only relevant"
" with --start", applet);
+   if (start_wait)
+   ewarn("using --wait with --stop has no effect,"
+   " use --retry instead");
} else {
if (!exec)
eerrorx("%s: nothing to start", applet);
@@ -1012,7 +1015,11 @@ int main(int argc, char **argv)
eerror("%s: %s does not exist", applet,
*exec_file ? exec_file : exec);
exit(EXIT_FAILURE);
+
}
+   if (start && retry)
+   ewarn("using --retry with --start has no effect,"
+   " use --wait instead");
 
/* If we don't have a pidfile we should check if it's interpreted
 * or not. If it we, we need to pass the interpreter through



[gentoo-commits] repo/gentoo:master commit in: profiles/prefix/

2017-04-03 Thread Michael Haubenwallner
commit: b5ce707d8bfa64ad51d2f5fded649f021d1562bd
Author: Michael Haubenwallner  gentoo  org>
AuthorDate: Mon Apr  3 15:36:04 2017 +
Commit: Michael Haubenwallner  gentoo  org>
CommitDate: Mon Apr  3 15:36:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5ce707d

profiles/prefix: disable python3_4, we have 3_5 already (#575096)

 profiles/prefix/make.defaults | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/prefix/make.defaults b/profiles/prefix/make.defaults
index 80957ae11ba..25d0d80f4e9 100644
--- a/profiles/prefix/make.defaults
+++ b/profiles/prefix/make.defaults
@@ -13,4 +13,4 @@ FEATURES="collision-protect"
 # Python 3.5 is unmasked for us, build stuff by default, in particular
 # for bug #572502 where the default python is set to 3.5 for it was
 # built first.
-PYTHON_TARGETS="${PYTHON_TARGETS} python3_5"
+PYTHON_TARGETS="-python3_4 python3_5"



[gentoo-commits] proj/sci:master commit in: dev-python/matplotlib2tikz/

2017-04-03 Thread Marius Brehler
commit: 103099c4b4996f320f5c832d7d48daa398d1fcf7
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Mon Apr  3 14:56:14 2017 +
Commit: Marius Brehler  linux  sungazer  de>
CommitDate: Mon Apr  3 14:56:14 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=103099c4

dev-python/matplotlib2tikz: Adopt changes from main tree

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../matplotlib2tikz/matplotlib2tikz-.ebuild|  8 +++
 dev-python/matplotlib2tikz/metadata.xml| 25 +++---
 2 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-.ebuild 
b/dev-python/matplotlib2tikz/matplotlib2tikz-.ebuild
index 802c649b6..47853ce1e 100644
--- a/dev-python/matplotlib2tikz/matplotlib2tikz-.ebuild
+++ b/dev-python/matplotlib2tikz/matplotlib2tikz-.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1 git-r3
 
-DESCRIPTION="Convert matplotlib figures into native Pgfplots (TikZ) figures"
+DESCRIPTION="Convert matplotlib figures into TikZ/PGFPlots"
 HOMEPAGE="https://github.com/nschloe/matplotlib2tikz;
 EGIT_REPO_URI="https://github.com/nschloe/${PN}.git 
git://github.com/nschloe/${PN}.git"
 KEYWORDS=""
@@ -18,9 +18,9 @@ IUSE=""
 
 PATCHES=( "${FILESDIR}/${PN}-0.6-init_pipdated.patch" )
 
-RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}]
+RDEPEND="
+   dev-python/matplotlib[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
-   >=dev-python/pillow-3.0.0[${PYTHON_USEDEP}]
-   dev-texlive/texlive-pictures"
+   dev-python/pillow[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}"
#test? ( dev-python/pytest[${PYTHON_USEDEP}] )"

diff --git a/dev-python/matplotlib2tikz/metadata.xml 
b/dev-python/matplotlib2tikz/metadata.xml
index 7d7b3f238..9c08eac01 100644
--- a/dev-python/matplotlib2tikz/metadata.xml
+++ b/dev-python/matplotlib2tikz/metadata.xml
@@ -1,16 +1,17 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-mar...@linux.sungazer.de
-Marius Brehler
-  
-  
-s...@gentoo.org
-Gentoo Science Project
-  
-  
-nschloe/matplotlib2tikz
-matplotlib2tikz
-  
+   
+   mar...@linux.sungazer.de
+   Marius Brehler
+   
+   
+   s...@gentoo.org
+   Gentoo Science Project
+   
+   matplotlib2tikz is a Python tool for converting 
matplotlib figures into PGFPlots (TikZ) figures like for native inclusion into 
LaTeX documents. The output of matplotlib2tikz is in PGFPlots, a LaTeX library 
that sits on top of TikZ and describes graphs in terms of axes, data etc. 
Consequently, the output of matplotlib2tikz retains more information, can be 
more easily understood, and is more easily editable than raw TikZ 
output.
+   
+   nschloe/matplotlib2tikz
+   matplotlib2tikz
+   
 



[gentoo-commits] proj/sci:master commit in: sci-visualization/mricrogl/

2017-04-03 Thread Marius Brehler
commit: 8817cf9f106f16f97244e463099fc3f848c79847
Author: Horea Christian  yandex  com>
AuthorDate: Sat Apr  1 11:15:27 2017 +
Commit: Marius Brehler  linux  sungazer  de>
CommitDate: Sat Apr  1 11:15:27 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=8817cf9f

sci-visualization/mricrogl: corrected library installation (#768)

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 sci-visualization/mricrogl/mricrogl-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-visualization/mricrogl/mricrogl-.ebuild 
b/sci-visualization/mricrogl/mricrogl-.ebuild
index 6b078f368..cb8d0273d 100644
--- a/sci-visualization/mricrogl/mricrogl-.ebuild
+++ b/sci-visualization/mricrogl/mricrogl-.ebuild
@@ -27,7 +27,7 @@ src_install() {
dobin MRIcroGL
 
insinto /usr/share/mricrogl
-   doins lut/* script/* shaders/*
+   doins -r lut script shaders
 
doicon -s scalable mricrogl.svg
make_desktop_entry MRIcroGL MRIcroGL 
/usr/share/icons/hicolor/scalable/apps/mricrogl.svg



[gentoo-commits] proj/sci:master commit in: sci-visualization/mricrogl/

2017-04-03 Thread Marius Brehler
commit: bf03ad3937677c61296bd8427469435e624e5f8b
Author: Horea Christian  yandex  com>
AuthorDate: Fri Mar 31 07:49:54 2017 +
Commit: Marius Brehler  linux  sungazer  de>
CommitDate: Fri Mar 31 07:49:54 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=bf03ad39

sci-visualization/mricrogl: more appropriate path for application libraries 
(#765)

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 sci-visualization/mricrogl/mricrogl-.ebuild | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/sci-visualization/mricrogl/mricrogl-.ebuild 
b/sci-visualization/mricrogl/mricrogl-.ebuild
index c1edf4138..6b078f368 100644
--- a/sci-visualization/mricrogl/mricrogl-.ebuild
+++ b/sci-visualization/mricrogl/mricrogl-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,9 @@ SLOT="0"
 
 RDEPEND=""
 DEPEND="dev-lang/fpc
-   >=dev-lang/lazarus-1.6.2"
+   >=dev-lang/lazarus-1.6.2
+   media-libs/mesa
+   "
 
 src_compile() {
lazbuild -B --lazarusdir="/usr/share/lazarus/" simplelaz.lpi || die
@@ -24,8 +26,8 @@ src_compile() {
 src_install() {
dobin MRIcroGL
 
-   insinto /usr/bin/shaders
-   doins shaders/*.txt
+   insinto /usr/share/mricrogl
+   doins lut/* script/* shaders/*
 
doicon -s scalable mricrogl.svg
make_desktop_entry MRIcroGL MRIcroGL 
/usr/share/icons/hicolor/scalable/apps/mricrogl.svg



[gentoo-commits] proj/sci:master commit in: sci-visualization/surf-ice/

2017-04-03 Thread Marius Brehler
commit: c2cced1664df52281d06f5f7ae3652d9e5212ff3
Author: Horea Christian  yandex  com>
AuthorDate: Fri Mar 31 07:49:04 2017 +
Commit: Marius Brehler  linux  sungazer  de>
CommitDate: Fri Mar 31 07:49:04 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c2cced16

sci-visualization/surf-ice: added proper app data install paths (#766)

* sci-visualization/surf-ice: added proper lib install paths

Package-Manager: Portage-2.3.4, Repoman-2.3.2

* sci-visualization/surf-ice: corrected executable name for GNOME launcer

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 sci-visualization/surf-ice/surf-ice-1.0.20170202.ebuild | 2 +-
 sci-visualization/surf-ice/surf-ice-.ebuild | 9 +++--
 2 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/sci-visualization/surf-ice/surf-ice-1.0.20170202.ebuild 
b/sci-visualization/surf-ice/surf-ice-1.0.20170202.ebuild
index 75be4debe..bd983444a 100644
--- a/sci-visualization/surf-ice/surf-ice-1.0.20170202.ebuild
+++ b/sci-visualization/surf-ice/surf-ice-1.0.20170202.ebuild
@@ -33,7 +33,7 @@ src_install() {
doins shadersOld/*.txt
 
doicon -s scalable Surfice.jpg
-   make_desktop_entry surf-ice surf-ice 
/usr/share/icons/hicolor/scalable/apps/Surfice.jpg
+   make_desktop_entry surfice surfice 
/usr/share/icons/hicolor/scalable/apps/Surfice.jpg
 }
 
 pkg_postinst() {

diff --git a/sci-visualization/surf-ice/surf-ice-.ebuild 
b/sci-visualization/surf-ice/surf-ice-.ebuild
index e193212e9..f90ef305f 100644
--- a/sci-visualization/surf-ice/surf-ice-.ebuild
+++ b/sci-visualization/surf-ice/surf-ice-.ebuild
@@ -24,14 +24,11 @@ src_compile() {
 src_install() {
dobin surfice
 
-   insinto /usr/bin/shaders
-   doins shaders/*.txt
-
-   insinto /usr/bin/shadersOld
-   doins shadersOld/*.txt
+   insinto /usr/share/surfice
+   doins lut/* script/* shaders/* shadersOld/*
 
doicon -s scalable Surfice.jpg
-   make_desktop_entry surf-ice surf-ice 
/usr/share/icons/hicolor/scalable/apps/Surfice.jpg
+   make_desktop_entry surfice surfice 
/usr/share/icons/hicolor/scalable/apps/Surfice.jpg
 }
 
 pkg_postinst() {



[gentoo-commits] proj/sci:master commit in: /

2017-04-03 Thread Marius Brehler
commit: 7d8c439ad8b8d0fe9fa3a93b877fb511b7d6b2eb
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Mon Apr  3 14:53:40 2017 +
Commit: Marius Brehler  linux  sungazer  de>
CommitDate: Mon Apr  3 14:53:40 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=7d8c439a

Merge remote-tracking branch 'github/master'

 net-misc/cernbox-client/Manifest |  1 +
 ...x-client-2.3.0.ebuild => cernbox-client-2.3.1.ebuild} |  0
 sci-biology/nilearn/nilearn-0.2.6.ebuild | 16 +++-
 sci-biology/nilearn/nilearn-.ebuild  | 16 +++-
 sci-visualization/mricrogl/mricrogl-.ebuild  | 10 ++
 sci-visualization/surf-ice/surf-ice-1.0.20170202.ebuild  |  2 +-
 sci-visualization/surf-ice/surf-ice-.ebuild  |  9 +++--
 7 files changed, 41 insertions(+), 13 deletions(-)



[gentoo-commits] proj/sci:master commit in: net-misc/cernbox-client/

2017-04-03 Thread Marius Brehler
commit: 23c589a3e07fb2b524902571c6dce1379e6c0b71
Author: olifre  googlemail  com>
AuthorDate: Fri Mar 31 07:49:32 2017 +
Commit: Marius Brehler  linux  sungazer  de>
CommitDate: Fri Mar 31 07:49:32 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=23c589a3

net-misc/cernbox-client: Bump to 2.3.1 release, (#764)

following owncloud-client.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 .../cernbox-client/cernbox-client-2.3.1.ebuild | 103 +
 1 file changed, 103 insertions(+)

diff --git a/net-misc/cernbox-client/cernbox-client-2.3.1.ebuild 
b/net-misc/cernbox-client/cernbox-client-2.3.1.ebuild
new file mode 100644
index 0..6f3ad8c70
--- /dev/null
+++ b/net-misc/cernbox-client/cernbox-client-2.3.1.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils rpm
+
+DESCRIPTION="Synchronize files from CERNbox EOS with your computer"
+
+# Origin is classic owncloud-client, branded for CERN during compilation.
+ORIGIN_P="owncloudclient"
+BRANDED_P="cernbox"
+BRANDED_PV="2.2.4"
+BRANDED_REL="1.1"
+
+HOMEPAGE="https://cernbox.cern.ch/;
+SRC_URI="http://download.owncloud.com/desktop/stable/${ORIGIN_P}-${PV}.tar.xz
+   
https://cernbox.cern.ch/cernbox/doc/Linux/repo/CentOS_7/src/${PN}-${BRANDED_PV}-${BRANDED_REL}.src.rpm;
+
+LICENSE="CC-BY-3.0 GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc dolphin nautilus samba +sftp test"
+
+COMMON_DEPEND=">=dev-db/sqlite-3.4:3
+   dev-libs/qtkeychain[qt5]
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsql:5
+   dev-qt/qtwebkit:5
+   sys-fs/inotify-tools
+   virtual/libiconv
+   dolphin? (
+   kde-frameworks/kcoreaddons:5
+   kde-frameworks/kio:5
+   )
+   nautilus? ( dev-python/nautilus-python )
+   samba? ( >=net-fs/samba-3.5 )
+   sftp? ( >=net-libs/libssh-0.5 )
+"
+RDEPEND="${COMMON_DEPEND}
+   !net-misc/ocsync
+   !net-misc/nextcloud-client
+"
+DEPEND="${COMMON_DEPEND}
+   dev-qt/linguist-tools:5
+   doc? (
+   dev-python/sphinx
+   dev-texlive/texlive-latexextra
+   virtual/latex-base
+   )
+   dolphin? ( kde-frameworks/extra-cmake-modules )
+   test? (
+   dev-util/cmocka
+   dev-qt/qttest:5
+   )
+"
+
+S=${WORKDIR}/owncloudclient-${PV}
+
+src_unpack() {
+   rpm_src_unpack ${PN}-${BRANDED_PV}-${BRANDED_REL}.src.rpm
+   mv ${PN/-}-${BRANDED_PV}/cernbox "${S}" || die "failed to extract 
branding"
+}
+
+src_prepare() {
+   # Keep tests in ${T}
+   sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die "sed failed"
+
+   if ! use nautilus; then
+   pushd shell_integration > /dev/null || die
+   cmake_comment_add_subdirectory nautilus
+   popd > /dev/null || die
+   fi
+   default
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc
+   -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
+   -DWITH_ICONV=ON
+   -DWITH_DOC=$(usex doc)
+   -DCMAKE_DISABLE_FIND_PACKAGE_KF5=$(usex !dolphin)
+   -DBUILD_WITH_QT4=OFF
+   -DCMAKE_DISABLE_FIND_PACKAGE_Libsmbclient=$(usex !samba)
+   -DCMAKE_DISABLE_FIND_PACKAGE_LibSSH=$(usex !sftp)
+   -DUNIT_TESTING=$(usex test)
+   -DOEM_THEME_DIR=${PWD}/${BRANDED_P}/mirall
+   )
+
+   cmake-utils_src_configure
+}
+
+pkg_postinst() {
+   if ! use doc ; then
+   elog "Documentation and man pages not installed"
+   elog "Enable doc USE-flag to generate them"
+   fi
+}



[gentoo-commits] proj/sci:master commit in: sci-visualization/surf-ice/

2017-04-03 Thread Marius Brehler
commit: 9d55f70915241b7bd616ae54c060e11e40c93e31
Author: Horea Christian  yandex  com>
AuthorDate: Sat Apr  1 11:15:18 2017 +
Commit: Marius Brehler  linux  sungazer  de>
CommitDate: Sat Apr  1 11:15:18 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=9d55f709

sci-visualization/surf-ice: corrected library installation (#767)

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 sci-visualization/surf-ice/surf-ice-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-visualization/surf-ice/surf-ice-.ebuild 
b/sci-visualization/surf-ice/surf-ice-.ebuild
index f90ef305f..e83201866 100644
--- a/sci-visualization/surf-ice/surf-ice-.ebuild
+++ b/sci-visualization/surf-ice/surf-ice-.ebuild
@@ -25,7 +25,7 @@ src_install() {
dobin surfice
 
insinto /usr/share/surfice
-   doins lut/* script/* shaders/* shadersOld/*
+   doins -r lut script shaders shadersOld
 
doicon -s scalable Surfice.jpg
make_desktop_entry surfice surfice 
/usr/share/icons/hicolor/scalable/apps/Surfice.jpg



[gentoo-commits] proj/sci:master commit in: sci-biology/nilearn/

2017-04-03 Thread Marius Brehler
commit: 82565e1bdb4b3f2d06f95c52597cb06f4703ebc3
Author: Horea Christian  yandex  com>
AuthorDate: Mon Mar 27 16:15:39 2017 +
Commit: Marius Brehler  linux  sungazer  de>
CommitDate: Mon Mar 27 16:15:39 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=82565e1b

sci-biology/nilearn: importing system joblib (#762)

* sci-biology/nilearn: importing system joblib

Package-Manager: Portage-2.3.4, Repoman-2.3.2

* sci-biology/nilearn: declaring local variable

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 sci-biology/nilearn/nilearn-0.2.6.ebuild | 16 +++-
 sci-biology/nilearn/nilearn-.ebuild  | 16 +++-
 2 files changed, 30 insertions(+), 2 deletions(-)

diff --git a/sci-biology/nilearn/nilearn-0.2.6.ebuild 
b/sci-biology/nilearn/nilearn-0.2.6.ebuild
index a6834596c..003d1753a 100644
--- a/sci-biology/nilearn/nilearn-0.2.6.ebuild
+++ b/sci-biology/nilearn/nilearn-0.2.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -27,6 +27,20 @@ RDEPEND="
sci-libs/nibabel[${PYTHON_USEDEP}]
plot? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
 
+# upstream is reluctant to *not* depend on bundled scikits_learn:
+# https://github.com/nilearn/nilearn/pull/1398
+python_prepare_all() {
+   local f
+   for f in nilearn/{*/*/,*/,}*.py; do
+   sed -r \
+   -e '/^from/s/(sklearn|\.|)\.externals\.joblib/joblib/' \
+   -e 's/from (sklearn|\.|)\.externals import/import/' \
+   -i $f || die
+   done
+
+   distutils-r1_python_prepare_all
+}
+
 python_test() {
echo "backend: Agg" > matplotlibrc
MPLCONFIGDIR=. nosetests -v || die

diff --git a/sci-biology/nilearn/nilearn-.ebuild 
b/sci-biology/nilearn/nilearn-.ebuild
index dcaa0ade5..d92ca884f 100644
--- a/sci-biology/nilearn/nilearn-.ebuild
+++ b/sci-biology/nilearn/nilearn-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -28,6 +28,20 @@ RDEPEND="
sci-libs/nibabel[${PYTHON_USEDEP}]
plot? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
 
+# upstream is reluctant to *not* depend on bundled scikits_learn:
+# https://github.com/nilearn/nilearn/pull/1398
+python_prepare_all() {
+   local f
+   for f in nilearn/{*/*/,*/,}*.py; do
+   sed -r \
+   -e '/^from/s/(sklearn|\.|)\.externals\.joblib/joblib/' \
+   -e 's/from (sklearn|\.|)\.externals import/import/' \
+   -i $f || die
+   done
+
+   distutils-r1_python_prepare_all
+}
+
 python_test() {
echo "backend: Agg" > matplotlibrc
MPLCONFIGDIR=. nosetests -v || die



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

2017-04-03 Thread William Hubbs
commit: 9952ed53730f7e530c84d0cf5c260d407ec58cc6
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Apr  3 14:39:16 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Apr  3 14:39:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9952ed53

net-misc/dhcpcd: remove 7.0.0_beta1 per request of the author

beta 3 will be out in 24-48 hours.

See https://dev.marples.name/T113

Package-Manager: Portage-2.3.3, Repoman-2.3.2

 net-misc/dhcpcd/Manifest  |   1 -
 net-misc/dhcpcd/dhcpcd-7.0.0_beta1.ebuild | 148 --
 2 files changed, 149 deletions(-)

diff --git a/net-misc/dhcpcd/Manifest b/net-misc/dhcpcd/Manifest
index 50067d05305..a6403af2bcd 100644
--- a/net-misc/dhcpcd/Manifest
+++ b/net-misc/dhcpcd/Manifest
@@ -2,4 +2,3 @@ DIST dhcpcd-6.10.1.tar.xz 180112 SHA256 
284abf8c3be0580bbac5eaca95359346ab0d78d4
 DIST dhcpcd-6.11.1.tar.xz 190956 SHA256 
5c823d607ed1d7513d16ec51c54e21657f1324899e0ba333a497682d88a8c6ee SHA512 
50ef755b13a96fe484623d9f2dbd91407fbea5ca728fd05dbf4259a61611a07cf3ffad7e8d20ecd513dbef80602074809abd1f5177daaa51ceccc2af5c88269f
 WHIRLPOOL 
a32350beee83184fc9d0dec5cd65f265a83aa95177b8ff700fcce2aaf2ac6c2600c322e3d8c65f1d2e9d3a2cbe71bc00b3a6efbf045fa9c805b76a3a1fca0de5
 DIST dhcpcd-6.11.3.tar.xz 194892 SHA256 
5abd12c4df2947d608f60a35227f9bf8ae8ab9de06ce975cdab1144d8f229b06 SHA512 
249185532cb239124f847c28e6bfb3e8a85e818e05a07eb0c6ac6843fbbab8afa8d6ebce4032b3537ccfb7fafb306dd0dc51c0e97f337f12f5071ba499686a70
 WHIRLPOOL 
66eebad0ceabf07324f41b7c5861b13f233d6cf3fb4f7c82804b6391594595cda8c981cec088aa75242a04614a7228be7400171d32c68ee6be354bf976a237d5
 DIST dhcpcd-6.11.5.tar.xz 198080 SHA256 
6f9674dc7e27e936cc787175404a6171618675ecfb6903ab9887b1b66a87d69e SHA512 
a23d5dde66567c4addbc86c8b3fbf2c5d4dba3b463659729778a310306ab0e949be8998154ef15401ac2d289bde2f090d44492bba6a1becd2f01890d4efe7051
 WHIRLPOOL 
1b4bdd56112db20a0c6b0c843549f7c9cd8c534a9353df026d2c63a4b4bfd624f7fbc68282e04fd4f4c7c257d996e5019d3aa624f01b532074311d63b151164f
-DIST dhcpcd-7.0.0-beta1.tar.xz 200224 SHA256 
5db752d39de8c6c0279a4d017c92721251af8b5eb7c96b0c69c67c2fa98e6917 SHA512 
4852d8353dbfee286f801a348ce4fbd5165438e604438c6bcb9b21eeabdf1d8e2a87678c82085fc40358c6f63b4214beac8ffa3ba963c1759e4e96ec651ebe5d
 WHIRLPOOL 
4cc31d9b237f0ca7fd757b10fe618e7c7eacece60878b76e6d7acc6661638c491953eff6e28c46268455cbcad14a4210363163baf6d29748ca59b751fd626283

diff --git a/net-misc/dhcpcd/dhcpcd-7.0.0_beta1.ebuild 
b/net-misc/dhcpcd/dhcpcd-7.0.0_beta1.ebuild
deleted file mode 100644
index deffde72be0..000
--- a/net-misc/dhcpcd/dhcpcd-7.0.0_beta1.ebuild
+++ /dev/null
@@ -1,148 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="git://roy.marples.name/dhcpcd"
-   inherit git-r3
-else
-   MY_P="${P/_alpha/-alpha}"
-   MY_P="${MY_P/_beta/-beta}"
-   MY_P="${MY_P/_rc/-rc}"
-   SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-inherit eutils systemd toolchain-funcs
-
-DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client"
-HOMEPAGE="http://roy.marples.name/projects/dhcpcd/;
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="elibc_glibc +embedded ipv6 kernel_linux +udev"
-
-COMMON_DEPEND="udev? ( virtual/udev )"
-DEPEND="${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}"
-
-src_configure()
-{
-   local dev hooks rundir
-   use udev || dev="--without-dev --without-udev"
-   hooks="--with-hook=ntp.conf"
-   use elibc_glibc && hooks="${hooks} --with-hook=yp.conf"
-   use kernel_linux && rundir="--rundir=${EPREFIX}/run"
-   econf \
-   --prefix="${EPREFIX}" \
-   --libexecdir="${EPREFIX}/lib/dhcpcd" \
-   --dbdir="${EPREFIX}/var/lib/dhcpcd" \
-   --localstatedir="${EPREFIX}/var" \
-   ${rundir} \
-   $(use_enable embedded) \
-   $(use_enable ipv6) \
-   ${dev} \
-   CC="$(tc-getCC)" \
-   ${hooks}
-}
-
-src_install()
-{
-   default
-   newinitd "${FILESDIR}"/${PN}.initd ${PN}
-   systemd_dounit "${FILESDIR}"/${PN}.service
-}
-
-pkg_postinst()
-{
-   local dbdir="${EROOT%/}"/var/lib/dhcpcd old_files=
-
-   local old_old_duid="${EROOT%/}"/var/lib/dhcpcd/dhcpcd.duid
-   local old_duid="${EROOT%/}"/etc/dhcpcd.duid
-   local new_duid="${dbdir}"/duid
-   if [ -e "${old_old_duid}" ]; then
-   # Upgrade the duid file to the new format if needed
-   if ! grep -q '..:..:..:..:..:..' "${old_old_duid}"; then
-   sed -i -e 's/\(..\)/\1:/g; s/:$//g' "${old_old_duid}"
-   fi
-
-   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/dynamips/, net-misc/leapcast/, dev-python/python-zipstream/, ...

2017-04-03 Thread Amy Liffey
commit: b84793beb6fb849b232b2aa895a4a6962315efe7
Author: Amy Liffey  gentoo  org>
AuthorDate: Mon Apr  3 14:31:36 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Apr  3 14:31:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b84793be

Clean up bug #463162

 app-emulation/dynamips/metadata.xml  | 4 
 app-emulation/vpcs/metadata.xml  | 5 +
 dev-python/aiohttp-cors/metadata.xml | 5 +
 dev-python/aiohttp/metadata.xml  | 4 
 dev-python/kiwisolver/metadata.xml   | 5 +
 dev-python/python-zipstream/metadata.xml | 5 +
 dev-python/raven/metadata.xml| 5 +
 net-firewall/fwbuilder/metadata.xml  | 4 
 net-misc/gns3-converter/metadata.xml | 5 +
 net-misc/gns3-gui/metadata.xml   | 5 +
 net-misc/gns3-server/metadata.xml| 5 +
 net-misc/leapcast/metadata.xml   | 5 +
 12 files changed, 9 insertions(+), 48 deletions(-)

diff --git a/app-emulation/dynamips/metadata.xml 
b/app-emulation/dynamips/metadata.xml
index 3b49ea6a897..a7d0bc6 100644
--- a/app-emulation/dynamips/metadata.xml
+++ b/app-emulation/dynamips/metadata.xml
@@ -2,10 +2,6 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   b...@gentoo.org
-   Aaron Bauman
-   
-   
pinkb...@gentoo.org
Sergey Popov


diff --git a/app-emulation/vpcs/metadata.xml b/app-emulation/vpcs/metadata.xml
index dd7e2b15596..8f5e451b671 100644
--- a/app-emulation/vpcs/metadata.xml
+++ b/app-emulation/vpcs/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   b...@gentoo.org
-   Aaron Bauman
-   
+   

vpcs


diff --git a/dev-python/aiohttp-cors/metadata.xml 
b/dev-python/aiohttp-cors/metadata.xml
index c89d18d815c..90e51cd4878 100644
--- a/dev-python/aiohttp-cors/metadata.xml
+++ b/dev-python/aiohttp-cors/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   b...@gentoo.org
-   Aaron Bauman
-   
+   

aio-libs/aiohttp-cors


diff --git a/dev-python/aiohttp/metadata.xml b/dev-python/aiohttp/metadata.xml
index bccf0d5b78b..d86e5838f4d 100644
--- a/dev-python/aiohttp/metadata.xml
+++ b/dev-python/aiohttp/metadata.xml
@@ -2,10 +2,6 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-b...@gentoo.org
-Aaron Bauman
-  
-  
 alund...@gentoo.org
 Alex Brandt
   

diff --git a/dev-python/kiwisolver/metadata.xml 
b/dev-python/kiwisolver/metadata.xml
index 02f7e7f1528..6ee72f23530 100644
--- a/dev-python/kiwisolver/metadata.xml
+++ b/dev-python/kiwisolver/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-b...@gentoo.org
-Aaron Bauman
-  
+
   
 kiwisolver
 nucleic/kiwi

diff --git a/dev-python/python-zipstream/metadata.xml 
b/dev-python/python-zipstream/metadata.xml
index e9586b0f334..34e9b246a7a 100644
--- a/dev-python/python-zipstream/metadata.xml
+++ b/dev-python/python-zipstream/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   b...@gentoo.org
-   Aaron Bauman
-   
+   

allanlei/python-zipstream

https://github.com/allanlei/python-zipstream/issues

diff --git a/dev-python/raven/metadata.xml b/dev-python/raven/metadata.xml
index 94f5623fbaa..4da41c04698 100644
--- a/dev-python/raven/metadata.xml
+++ b/dev-python/raven/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-b...@gentoo.org
-Aaron Bauman
-  
+
   
 raven
 getsentry/raven-python

diff --git a/net-firewall/fwbuilder/metadata.xml 
b/net-firewall/fwbuilder/metadata.xml
index 58fba7431a4..f2ba743ba4e 100644
--- a/net-firewall/fwbuilder/metadata.xml
+++ b/net-firewall/fwbuilder/metadata.xml
@@ -5,10 +5,6 @@
kevin.bauma...@gmail.com
Kevin Bauman

-   
-   b...@gentoo.org
-   Aaron Bauman
-   

proxy-ma...@gentoo.org
Gentoo Proxy Maintainers Project

diff --git a/net-misc/gns3-converter/metadata.xml 
b/net-misc/gns3-converter/metadata.xml
index 477445318b2..1bdf2ea1bb4 100644
--- a/net-misc/gns3-converter/metadata.xml
+++ b/net-misc/gns3-converter/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-b...@gentoo.org
-Aaron Bauman
-  
+
   
 gns3-converter
 dlintott/gns3-converter

diff --git a/net-misc/gns3-gui/metadata.xml b/net-misc/gns3-gui/metadata.xml
index 913fed4c205..e0f17e808d4 100644
--- a/net-misc/gns3-gui/metadata.xml
+++ b/net-misc/gns3-gui/metadata.xml
@@ -1,10 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   

[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-Remove/

2017-04-03 Thread Agostino Sarubbo
commit: e8f46ac40cf06a8d0854a776b55ae63c4b61156a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:32:35 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:32:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8f46ac4

dev-perl/File-Remove: x86 stable wrt bug #614440

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/File-Remove/File-Remove-1.570.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-Remove/File-Remove-1.570.0.ebuild 
b/dev-perl/File-Remove/File-Remove-1.570.0.ebuild
index 22babf8132c..8a337dc90a5 100644
--- a/dev-perl/File-Remove/File-Remove-1.570.0.ebuild
+++ b/dev-perl/File-Remove/File-Remove-1.570.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Remove files and directories"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Devel-CheckBin/

2017-04-03 Thread Agostino Sarubbo
commit: 2cd9767d0f402109a94ff5e3449505e49ba4eabe
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:32:50 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:32:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cd9767d

dev-perl/Devel-CheckBin: x86 stable wrt bug #614514

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild 
b/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
index 76080b57f56..fa28522883e 100644
--- a/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
+++ b/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="check that a command is available"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-aix 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Module-ScanDeps/

2017-04-03 Thread Agostino Sarubbo
commit: 4b5d716d934a55b387ed8941589e6c3cf218c822
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:33:14 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:33:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b5d716d

dev-perl/Module-ScanDeps: x86 stable wrt bug #614452

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Module-ScanDeps/Module-ScanDeps-1.230.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Module-ScanDeps/Module-ScanDeps-1.230.0.ebuild 
b/dev-perl/Module-ScanDeps/Module-ScanDeps-1.230.0.ebuild
index f80639d388a..e3a7ccb4d1c 100644
--- a/dev-perl/Module-ScanDeps/Module-ScanDeps-1.230.0.ebuild
+++ b/dev-perl/Module-ScanDeps/Module-ScanDeps-1.230.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Recursively scan Perl code for dependencies"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Sub-Quote/

2017-04-03 Thread Agostino Sarubbo
commit: 403fa87a04114e8d601c2b4efb5ef28f91f12864
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:33:08 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:33:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=403fa87a

dev-perl/Sub-Quote: x86 stable wrt bug #614514

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Sub-Quote/Sub-Quote-2.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Sub-Quote/Sub-Quote-2.3.1.ebuild 
b/dev-perl/Sub-Quote/Sub-Quote-2.3.1.ebuild
index cdaf60bfce8..22cfc23f64e 100644
--- a/dev-perl/Sub-Quote/Sub-Quote-2.3.1.ebuild
+++ b/dev-perl/Sub-Quote/Sub-Quote-2.3.1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="efficient generation of subroutines via string eval"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc x86"
 IUSE="test minimal"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Method-Modifiers/

2017-04-03 Thread Agostino Sarubbo
commit: 7ca203bd3bb3a5ab0ce2cb86896e8f4c8ad1b265
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:32:40 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:32:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ca203bd

dev-perl/Class-Method-Modifiers: x86 stable wrt bug #614510

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Class-Method-Modifiers/Class-Method-Modifiers-2.120.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/Class-Method-Modifiers/Class-Method-Modifiers-2.120.0.ebuild 
b/dev-perl/Class-Method-Modifiers/Class-Method-Modifiers-2.120.0.ebuild
index be43477a0c0..7a58f018802 100644
--- a/dev-perl/Class-Method-Modifiers/Class-Method-Modifiers-2.120.0.ebuild
+++ b/dev-perl/Class-Method-Modifiers/Class-Method-Modifiers-2.120.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="provides Moose-like method modifiers"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~x86 ~ppc-aix ~ppc-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ~ppc x86 ~ppc-aix ~ppc-macos ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Sub-Name/

2017-04-03 Thread Agostino Sarubbo
commit: 9b79e5b42c56dc86311f38b9fa52fcdc80175d70
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:33:04 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:33:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b79e5b4

dev-perl/Sub-Name: x86 stable wrt bug #614514

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild 
b/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild
index 61364d57e76..bd6cb38411f 100644
--- a/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild
+++ b/dev-perl/Sub-Name/Sub-Name-0.150.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="(Re)name a sub"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test suggested"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: mail-client/cone/

2017-04-03 Thread Agostino Sarubbo
commit: 0fd5a477b24daeca3db892a5af8406ed39a78655
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:33:20 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:33:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fd5a477

mail-client/cone: x86 stable wrt bug #612344

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 mail-client/cone/cone-0.92.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/cone/cone-0.92.ebuild 
b/mail-client/cone/cone-0.92.ebuild
index b20130ed011..b9a1b126c60 100644
--- a/mail-client/cone/cone-0.92.ebuild
+++ b/mail-client/cone/cone-0.92.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 IUSE="crypt fam gnutls idn ipv6 ldap"
 
 RDEPEND=">=dev-libs/openssl-0.9.6:*



[gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_p11/

2017-04-03 Thread Agostino Sarubbo
commit: e8687b4f07b0d4f9c4223fc935d73939cf0f0778
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:32:18 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:32:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8687b4f

sys-auth/pam_p11: x86 stable wrt bug #614434

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-auth/pam_p11/pam_p11-0.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/pam_p11/pam_p11-0.1.6.ebuild 
b/sys-auth/pam_p11/pam_p11-0.1.6.ebuild
index 73e97a4892f..211bc345599 100644
--- a/sys-auth/pam_p11/pam_p11-0.1.6.ebuild
+++ b/sys-auth/pam_p11/pam_p11-0.1.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND="virtual/pam



[gentoo-commits] repo/gentoo:master commit in: media-libs/jasper/

2017-04-03 Thread Agostino Sarubbo
commit: 818ca85a3e164ad2a257ef8d6cfad580837b8419
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:33:26 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:33:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=818ca85a

media-libs/jasper: x86 stable wrt bug #614012

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/jasper/jasper-2.0.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/jasper/jasper-2.0.12.ebuild 
b/media-libs/jasper/jasper-2.0.12.ebuild
index fe984f232d2..d2520b6d1e7 100644
--- a/media-libs/jasper/jasper-2.0.12.ebuild
+++ b/media-libs/jasper/jasper-2.0.12.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
 else
inherit vcs-snapshot
SRC_URI="https://github.com/mdadams/${PN}/archive/version-${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 fi
 
 # We limit memory usage to 128 MiB by default, specified in bytes



[gentoo-commits] repo/gentoo:master commit in: dev-perl/B-Hooks-EndOfScope/

2017-04-03 Thread Agostino Sarubbo
commit: 3168562c3389d6e1de7b8eacce7d17d3c37feb45
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:32:24 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:32:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3168562c

dev-perl/B-Hooks-EndOfScope: x86 stable wrt bug #614470

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.200.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.200.0.ebuild 
b/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.200.0.ebuild
index b63dc156d55..42da5329789 100644
--- a/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.200.0.ebuild
+++ b/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.200.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Execute code after a scope finished compilation"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~x86 ~ppc-aix ~x86-fbsd 
~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc x86 ~ppc-aix ~x86-fbsd 
~x64-macos"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Role-Tiny/

2017-04-03 Thread Agostino Sarubbo
commit: 74cbdfd5a7e327b724dfa3e23e909af094aa7348
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:32:59 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:32:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74cbdfd5

dev-perl/Role-Tiny: x86 stable wrt bug #614514

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Role-Tiny/Role-Tiny-2.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Role-Tiny/Role-Tiny-2.0.5.ebuild 
b/dev-perl/Role-Tiny/Role-Tiny-2.0.5.ebuild
index 15f5cdb73df..e49471cc6e7 100644
--- a/dev-perl/Role-Tiny/Role-Tiny-2.0.5.ebuild
+++ b/dev-perl/Role-Tiny/Role-Tiny-2.0.5.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Roles. Like a nouvelle cuisine portion size slice of Moose"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~x86-fbsd ~ppc-macos ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Variable-Magic/

2017-04-03 Thread Agostino Sarubbo
commit: d79f7c65109601d58a71a003716b3454997729a1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:32:29 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:32:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d79f7c65

dev-perl/Variable-Magic: x86 stable wrt bug #614470

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Variable-Magic/Variable-Magic-0.610.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Variable-Magic/Variable-Magic-0.610.0.ebuild 
b/dev-perl/Variable-Magic/Variable-Magic-0.610.0.ebuild
index 9ba65bb5e1d..071a37bf64b 100644
--- a/dev-perl/Variable-Magic/Variable-Magic-0.610.0.ebuild
+++ b/dev-perl/Variable-Magic/Variable-Magic-0.610.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Associate user-defined magic to variables from Perl"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~ppc-aix ~x86-fbsd 
~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~ppc-aix ~x86-fbsd 
~x64-macos"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Moo/

2017-04-03 Thread Agostino Sarubbo
commit: d10fa85a4834cbcc26610a0b7207e8f5de3c13ba
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Apr  3 12:32:54 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Apr  3 12:32:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d10fa85a

dev-perl/Moo: x86 stable wrt bug #614514

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Moo/Moo-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Moo/Moo-2.3.0.ebuild b/dev-perl/Moo/Moo-2.3.0.ebuild
index 144494f5080..967605f28b3 100644
--- a/dev-perl/Moo/Moo-2.3.0.ebuild
+++ b/dev-perl/Moo/Moo-2.3.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Minimalist Object Orientation (with Moose compatiblity)"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~x86 ~ppc-aix ~ppc-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ~ppc x86 ~ppc-aix ~ppc-macos ~x86-solaris"
 IUSE="test"
 
 # needs Scalar::Util



[gentoo-commits] repo/gentoo:master commit in: app-backup/burp/

2017-04-03 Thread Marek Szuba
commit: 7527b286cd5cf046ee232788ead82afeea974078
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Apr  3 11:41:09 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Apr  3 11:41:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7527b286

app-backup/burp: take over maintainership

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-backup/burp/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-backup/burp/metadata.xml b/app-backup/burp/metadata.xml
index 295b7305081..a002889edbe 100644
--- a/app-backup/burp/metadata.xml
+++ b/app-backup/burp/metadata.xml
@@ -2,8 +2,8 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   aide...@gentoo.org
-   Amadeusz Żołnowski
+   mare...@gentoo.org
+   Marek Szuba


Burp is a network backup and restore program. It uses librsync 
in order



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

2017-04-03 Thread Andreas Hüttel
commit: c95992906cf32ed3fc53adfe42e86391648ce992
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Apr  3 10:34:14 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon Apr  3 10:34:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9599290

app-text/pdf2htmlEX: New package. Seriously cool.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-text/pdf2htmlEX/Manifest |  1 +
 app-text/pdf2htmlEX/metadata.xml |  8 
 app-text/pdf2htmlEX/pdf2htmlEX-0.14.6.ebuild | 29 
 3 files changed, 38 insertions(+)

diff --git a/app-text/pdf2htmlEX/Manifest b/app-text/pdf2htmlEX/Manifest
new file mode 100644
index 000..30bb724d29f
--- /dev/null
+++ b/app-text/pdf2htmlEX/Manifest
@@ -0,0 +1 @@
+DIST pdf2htmlEX-0.14.6.tgz 8955179 SHA256 
320ac2e1c2ea4a2972970f52809d90073ee00a6c42ef6d9833fb48436222f0e5 SHA512 
0bef898653755da3d731a99f2850d11a686a1db589c615216c84dcac76f3a3c41f561732fe37be262cfec3f65970b2704819c3bd4d94d87cd63d26f062dacf50
 WHIRLPOOL 
bda12473493b02139480b6f53cdaf87746f445881a974cb862d538603a094da4d459063a5383c44c4d6075f9065ab561cf4c9cdb8c71645d87c732d79126ad9d

diff --git a/app-text/pdf2htmlEX/metadata.xml b/app-text/pdf2htmlEX/metadata.xml
new file mode 100644
index 000..c213922d0b1
--- /dev/null
+++ b/app-text/pdf2htmlEX/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+print...@gentoo.org
+Gentoo Printing Project
+  
+

diff --git a/app-text/pdf2htmlEX/pdf2htmlEX-0.14.6.ebuild 
b/app-text/pdf2htmlEX/pdf2htmlEX-0.14.6.ebuild
new file mode 100644
index 000..965311e3a29
--- /dev/null
+++ b/app-text/pdf2htmlEX/pdf2htmlEX-0.14.6.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="A precise PDF to HTML converter"
+HOMEPAGE="http://coolwanglu.github.io/pdf2htmlEX/;
+SRC_URI="https://github.com/coolwanglu/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE=""
+
+CDEPEND="
+   app-text/poppler:=[jpeg,png]
+   app-text/poppler-data
+   media-gfx/fontforge
+   media-libs/freetype
+   x11-libs/cairo[svg]
+"
+RDEPEND="${CDEPEND}
+"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig
+"



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/git-sources/

2017-04-03 Thread Mike Pagano
commit: c232778fd0ba93c5f430622e00bf98da655706d7
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Apr  3 10:31:26 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Apr  3 10:31:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c232778f

sys-kernel/git-sources: Linux patch 4.11-rc5

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-kernel/git-sources/Manifest|  1 +
 sys-kernel/git-sources/git-sources-4.11_rc5.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index 107990aa1e1..6e80b7da607 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -3,3 +3,4 @@ DIST patch-4.11-rc1.xz 6134384 SHA256 
556cdbb12cb25fc5de26da6d01c6c7a49a880ddf0b
 DIST patch-4.11-rc2.xz 6201348 SHA256 
edeba5ed13d2cd13f522c10d7808497f043b1f89b7ee3b843f4f6a108a5e6a53 SHA512 
01fcc1e67bba67a1bfef74acea99a52b489cdaf3f6feb59dd4e7719a3a9c07ff3131a754823a283ef50535d730929b4ddd31fa24c6bda2c68c3ad41283db49ec
 WHIRLPOOL 
24a47255118d47dc2e23d19d2ceb4429c7ba989e7cb2afa875830da3cbcb789c4a0e76b5690d0ac6b53d01d196b213186f863b32b2e8c094ac9c928cae8ee619
 DIST patch-4.11-rc3.xz 6296096 SHA256 
42bc915a0fec22541716a32167dab53f8f3417e31be33588820985b0a791382e SHA512 
88ff442fdcc41cd3734ddabc3cee54ea15ff5fef6b3bc1edc8f8c904ac888b45942a483ae35e3fee1a3b050d925755501b53de2e241a98905f63bb763a389086
 WHIRLPOOL 
6e4d22bbabae03776beef5da471c01dbb9f096a2f9d6fec2fba27e9d0209011dce41b44cee9d9ee0c3f8c37028482a68bcba247797704d236fc85304c74da941
 DIST patch-4.11-rc4.xz 6365804 SHA256 
04789539b677a10dae8080e35267923b9dbe570bf896986dfc2a4401c079b1cb SHA512 
d92866ffe4997a5e489c034fc1c378d7e588f76cfa18d642854ce0bf412cdbc82d8e850d6665fa5175084ec0b7662b0f53435231d2b46b13cefbb9ba63f73791
 WHIRLPOOL 
6de1bd0a9d45ca4e085e53529118aa9d39784c76b9f579d4b29296de4b33a326833bc2b8b2d1a6e05c08d08f0824541302ed537e78d76ffdec3f0532eaaf
+DIST patch-4.11-rc5.xz 6408648 SHA256 
6a73243ddc790655672d7b93a7bcf6d232f452903b68212c14e2b16f37119810 SHA512 
9b8b728eb8bb679d012c90f878739f02a3c9d13eb916248550fc61fad5a7ac5a0aee9c8166ff0c8b3180b96679f69ffbb5f79992f02a1693fd2c3616df1f6dd1
 WHIRLPOOL 
7a5be6360549fcdbf1bd4ffb8f77838ba6bcaa3dd7a3048bb0b12b05a246063389ef20a00352f3cd3d6db37cbab144c33bdd68e460276b56069d07c4b3132220

diff --git a/sys-kernel/git-sources/git-sources-4.11_rc5.ebuild 
b/sys-kernel/git-sources/git-sources-4.11_rc5.ebuild
new file mode 100644
index 000..2a1ec252ced
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-4.11_rc5.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="1"
+K_BASE_VER="4.10"
+K_EXP_GENPATCHES_NOUSE="1"
+K_FROM_GIT="yes"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.4"
+
+pkg_postinst() {
+   postinst_sources
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/merlin/

2017-04-03 Thread Alexis Ballier
commit: 461ea5502f9d20518d38584fd1e9f62dcbc66557
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Apr  3 10:22:23 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Apr  3 10:22:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=461ea550

dev-ml/merlin: Initial import

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/merlin/Manifest|  1 +
 dev-ml/merlin/merlin-2.5.3.ebuild | 33 +
 dev-ml/merlin/metadata.xml|  8 
 3 files changed, 42 insertions(+)

diff --git a/dev-ml/merlin/Manifest b/dev-ml/merlin/Manifest
new file mode 100644
index 000..c943d1c23c3
--- /dev/null
+++ b/dev-ml/merlin/Manifest
@@ -0,0 +1 @@
+DIST merlin-2.5.3.tar.gz 3090459 SHA256 
3538a02ad025090240825596fc4e1f86806d3808154d3135b090cc1a1192c2ca SHA512 
7399b8afc3cd6c0c26fab44aec80cc7614cbe148bafea3512be9a4165b0ba0c93bc738e2d7e5dcc4b51208c9b9f185cc83e408c484e38b2e72e357cefb9ad5f0
 WHIRLPOOL 
33f7a83f9bcdcfab4f681dddb6153d0aa7c9177b733e26a24119e50bb3521e310e831bbfbcdde24e27c7cf8a5c778384b6e65e947bee0c0852d1e184e56df9e5

diff --git a/dev-ml/merlin/merlin-2.5.3.ebuild 
b/dev-ml/merlin/merlin-2.5.3.ebuild
new file mode 100644
index 000..609f9767e4c
--- /dev/null
+++ b/dev-ml/merlin/merlin-2.5.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit findlib vim-plugin
+
+DESCRIPTION="Context sensitive completion for OCaml in Vim and Emacs"
+HOMEPAGE="https://github.com/ocaml/merlin;
+SRC_URI="https://github.com/ocaml/merlin/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+   dev-lang/ocaml:=
+   dev-ml/yojson:=
+"
+RDEPEND="${DEPEND}
+   || ( app-editors/vim[python] app-editors/gvim[python] )"
+
+src_configure() {
+   ./configure \
+   --prefix "${EPREFIX}/usr" \
+   --vimdir "${EPREFIX}//usr/share/vim/vimfiles" \
+   || die
+}
+
+src_install() {
+   default
+}

diff --git a/dev-ml/merlin/metadata.xml b/dev-ml/merlin/metadata.xml
new file mode 100644
index 000..ffac4d7ebc0
--- /dev/null
+++ b/dev-ml/merlin/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   m...@gentoo.org
+   Gentoo ML Project
+
+



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

2017-04-03 Thread Bernard Cafarelli
commit: fb24ead79c81b1e21582c9f1645624d2be12e823
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Apr  3 10:12:44 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Apr  3 10:12:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb24ead7

net-misc/plowshare: drop old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 net-misc/plowshare/Manifest  |  1 -
 net-misc/plowshare/plowshare-2.1.3-r1.ebuild | 67 
 2 files changed, 68 deletions(-)

diff --git a/net-misc/plowshare/Manifest b/net-misc/plowshare/Manifest
index a1d97285117..91d35994b08 100644
--- a/net-misc/plowshare/Manifest
+++ b/net-misc/plowshare/Manifest
@@ -1,3 +1,2 @@
-DIST plowshare-2.1.3.tar.gz 91534 SHA256 
2f54325158203cf64f0041b20708d47cac1f5a936f90e99aaad299cefd14757d SHA512 
759110b798de36b77737cebcf19a81872b4224df8c668ffe151415f3b15be2e50843ba865185e20d20fa17affa95228085edd86e1986aa4b1f22fa4ca921eaed
 WHIRLPOOL 
e33944c69caee6062ce7e1db9bddb3b53e7613d3131497b1596947a1362635a74b2448a85a9a3f6ee908ddd6cb94e238f4ab0b9b485ed3cf10fe360fb868559d
 DIST plowshare-2.1.5.tar.gz 94268 SHA256 
31a1d379b738b007ff000107b03562bf73ed5f05d7fa1ebef50082f0799a59ce SHA512 
1724580dd9fa818821e9686b758f904aad408c409e23e68444dbf6fc80cae81b03159fcfc816e7273777b02b1dbcc3ab93e13cc2b05f20145850a1c931da4342
 WHIRLPOOL 
853255b2a3abbe40349112e322e4e1bd9ca9261fe714e2d7f3802398b318a96e346238bc888eefeb78edd5050b19850b82c72050da59772ca1db0af41c14d3cb
 DIST plowshare-2.1.6.tar.gz 95946 SHA256 
2823f4bc82ad9b30c0c122a312125cb923acc55ce448c56a503e03fe0a4d97c4 SHA512 
bccc72f1add6389fd7fc41a27f9e169c622e3a4e7c9c1040c01a8a4569accc9b0b6910815a013d5e8aff7103ee26d943665ffeccc02db1879eca580b3892190d
 WHIRLPOOL 
4d4204199b6dc505a2ce231c95c41f5da1e93806fc04f875844566b54da31c41baa0657f6e65fa416baf68aebbaec02a2ead0ed1baf1ac3aa314ccfb7e502226

diff --git a/net-misc/plowshare/plowshare-2.1.3-r1.ebuild 
b/net-misc/plowshare/plowshare-2.1.3-r1.ebuild
deleted file mode 100644
index 52227ef820e..000
--- a/net-misc/plowshare/plowshare-2.1.3-r1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit bash-completion-r1
-
-DESCRIPTION="Command-line downloader and uploader for file-sharing websites"
-HOMEPAGE="https://github.com/mcrapet/plowshare;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
-IUSE="bash-completion +javascript view-captcha"
-
-SRC_URI="https://github.com/mcrapet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-RDEPEND="
-   >=app-shells/bash-4
-   || ( app-text/recode ( dev-lang/perl dev-perl/HTML-Parser ) )
-   dev-vcs/git
-   net-misc/curl
-   sys-apps/util-linux
-   virtual/imagemagick-tools[tiff]
-   javascript? ( || ( dev-lang/spidermonkey:0 dev-java/rhino ) )
-   view-captcha? ( || ( media-gfx/aview media-libs/libcaca ) )"
-DEPEND=""
-
-# NOTES:
-# javascript dep should be any javascript interpreter using /usr/bin/js
-
-src_prepare() {
-   # Fix doc install path
-   sed -i -e "/^DOCDIR/s|plowshare|${PF}|" Makefile || die "sed failed"
-
-   if ! use bash-completion
-   then
-   sed -i -e \ "/^install:/s/install_bash_completion//" \
-   Makefile || die "sed failed"
-   fi
-
-   default
-}
-
-src_compile() {
-   # There is a Makefile but it's not compiling anything, let's not try.
-   :
-}
-
-src_test() {
-   # Disable tests because all of them need a working Internet connection.
-   :
-}
-
-src_install() {
-   emake DESTDIR="${D}" PREFIX="/usr" \
-   PLOWSHARE_FORCE_VERSION="${PV}" install
-}
-
-pkg_postinst() {
-   elog "plowshare is not delivered with modules by default anymore"
-   elog "Per-user modules can be installed/updated with the plowmod 
command"
-   if ! use javascript; then
-   ewarn "Without javascript you will not be able to use modules"
-   ewarn "requering a Javascript shell (/usr/bin/js)"
-   fi
-}



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

2017-04-03 Thread Bernard Cafarelli
commit: 00d085ffb8328ae4dcc2043e32907c597d2e9fed
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Apr  3 10:05:06 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Apr  3 10:12:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00d085ff

net-misc/plowshare: 2.1.6 bump

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 net-misc/plowshare/Manifest   |  1 +
 net-misc/plowshare/plowshare-2.1.6.ebuild | 67 +++
 2 files changed, 68 insertions(+)

diff --git a/net-misc/plowshare/Manifest b/net-misc/plowshare/Manifest
index 4552d99a4c9..a1d97285117 100644
--- a/net-misc/plowshare/Manifest
+++ b/net-misc/plowshare/Manifest
@@ -1,2 +1,3 @@
 DIST plowshare-2.1.3.tar.gz 91534 SHA256 
2f54325158203cf64f0041b20708d47cac1f5a936f90e99aaad299cefd14757d SHA512 
759110b798de36b77737cebcf19a81872b4224df8c668ffe151415f3b15be2e50843ba865185e20d20fa17affa95228085edd86e1986aa4b1f22fa4ca921eaed
 WHIRLPOOL 
e33944c69caee6062ce7e1db9bddb3b53e7613d3131497b1596947a1362635a74b2448a85a9a3f6ee908ddd6cb94e238f4ab0b9b485ed3cf10fe360fb868559d
 DIST plowshare-2.1.5.tar.gz 94268 SHA256 
31a1d379b738b007ff000107b03562bf73ed5f05d7fa1ebef50082f0799a59ce SHA512 
1724580dd9fa818821e9686b758f904aad408c409e23e68444dbf6fc80cae81b03159fcfc816e7273777b02b1dbcc3ab93e13cc2b05f20145850a1c931da4342
 WHIRLPOOL 
853255b2a3abbe40349112e322e4e1bd9ca9261fe714e2d7f3802398b318a96e346238bc888eefeb78edd5050b19850b82c72050da59772ca1db0af41c14d3cb
+DIST plowshare-2.1.6.tar.gz 95946 SHA256 
2823f4bc82ad9b30c0c122a312125cb923acc55ce448c56a503e03fe0a4d97c4 SHA512 
bccc72f1add6389fd7fc41a27f9e169c622e3a4e7c9c1040c01a8a4569accc9b0b6910815a013d5e8aff7103ee26d943665ffeccc02db1879eca580b3892190d
 WHIRLPOOL 
4d4204199b6dc505a2ce231c95c41f5da1e93806fc04f875844566b54da31c41baa0657f6e65fa416baf68aebbaec02a2ead0ed1baf1ac3aa314ccfb7e502226

diff --git a/net-misc/plowshare/plowshare-2.1.6.ebuild 
b/net-misc/plowshare/plowshare-2.1.6.ebuild
new file mode 100644
index 000..52227ef820e
--- /dev/null
+++ b/net-misc/plowshare/plowshare-2.1.6.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit bash-completion-r1
+
+DESCRIPTION="Command-line downloader and uploader for file-sharing websites"
+HOMEPAGE="https://github.com/mcrapet/plowshare;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+IUSE="bash-completion +javascript view-captcha"
+
+SRC_URI="https://github.com/mcrapet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+RDEPEND="
+   >=app-shells/bash-4
+   || ( app-text/recode ( dev-lang/perl dev-perl/HTML-Parser ) )
+   dev-vcs/git
+   net-misc/curl
+   sys-apps/util-linux
+   virtual/imagemagick-tools[tiff]
+   javascript? ( || ( dev-lang/spidermonkey:0 dev-java/rhino ) )
+   view-captcha? ( || ( media-gfx/aview media-libs/libcaca ) )"
+DEPEND=""
+
+# NOTES:
+# javascript dep should be any javascript interpreter using /usr/bin/js
+
+src_prepare() {
+   # Fix doc install path
+   sed -i -e "/^DOCDIR/s|plowshare|${PF}|" Makefile || die "sed failed"
+
+   if ! use bash-completion
+   then
+   sed -i -e \ "/^install:/s/install_bash_completion//" \
+   Makefile || die "sed failed"
+   fi
+
+   default
+}
+
+src_compile() {
+   # There is a Makefile but it's not compiling anything, let's not try.
+   :
+}
+
+src_test() {
+   # Disable tests because all of them need a working Internet connection.
+   :
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="/usr" \
+   PLOWSHARE_FORCE_VERSION="${PV}" install
+}
+
+pkg_postinst() {
+   elog "plowshare is not delivered with modules by default anymore"
+   elog "Per-user modules can be installed/updated with the plowmod 
command"
+   if ! use javascript; then
+   ewarn "Without javascript you will not be able to use modules"
+   ewarn "requering a Javascript shell (/usr/bin/js)"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-websocket/

2017-04-03 Thread Alexis Ballier
commit: 7e3fa6a3010694fdc50538c0d7722f1362eabac3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Apr  3 09:36:39 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Apr  3 09:36:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e3fa6a3

dev-ml/ocaml-websocket: Initial import

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/ocaml-websocket/Manifest   |  1 +
 dev-ml/ocaml-websocket/metadata.xml   | 12 +
 dev-ml/ocaml-websocket/ocaml-websocket-2.9.ebuild | 54 +++
 3 files changed, 67 insertions(+)

diff --git a/dev-ml/ocaml-websocket/Manifest b/dev-ml/ocaml-websocket/Manifest
new file mode 100644
index 000..94a592d40bf
--- /dev/null
+++ b/dev-ml/ocaml-websocket/Manifest
@@ -0,0 +1 @@
+DIST ocaml-websocket-2.9.tar.gz 23946 SHA256 
fcf53aec904f0defbd76ec4aea9a4363bb38912b76c84cf97ffa1a5bfcd260c3 SHA512 
eab5e4f971985c03ca70b46abb54ca8a09491e5ebc803b57ddf8447447b6926da2117fd882c7cb5a9a7282290e756f535e4584f09cbd21ce2554f20df1db7ae8
 WHIRLPOOL 
fbefe08995de2721370571a66021c8dd6f51d65f142e310f1cf34f4fdcc8ea4adb6ab3dbec70fa01660cdf1a2c22cffc31a4c87ae674864b528839c06d96a423

diff --git a/dev-ml/ocaml-websocket/metadata.xml 
b/dev-ml/ocaml-websocket/metadata.xml
new file mode 100644
index 000..fa5c1b148ef
--- /dev/null
+++ b/dev-ml/ocaml-websocket/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   m...@gentoo.org
+   Gentoo ML Project
+
+  
+ Enables support for the dev-ml/async 
asynchronous execution library.
+ Enables support for the dev-ml/lwt 
cooperative light-weight thread library.
+  
+

diff --git a/dev-ml/ocaml-websocket/ocaml-websocket-2.9.ebuild 
b/dev-ml/ocaml-websocket/ocaml-websocket-2.9.ebuild
new file mode 100644
index 000..6dd48459ec4
--- /dev/null
+++ b/dev-ml/ocaml-websocket/ocaml-websocket-2.9.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Websocket library for OCaml"
+HOMEPAGE="https://github.com/vbmithr/ocaml-websocket;
+SRC_URI="https://github.com/vbmithr/ocaml-websocket/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="+ocamlopt async +ssl lwt"
+
+DEPEND="
+   dev-lang/ocaml:=[ocamlopt?]
+   dev-ml/astring:=[ocamlopt(+)?]
+   dev-ml/ocaml-cohttp:=[ocamlopt(+)?,async?,lwt?]
+   dev-ml/cppo:=[ocamlopt(+)?]
+   dev-ml/ocplib-endian:=[ocamlopt(+)?]
+   async? (
+   dev-ml/async:=[ocamlopt(+)?]
+   ssl? ( dev-ml/async_ssl:=[ocamlopt(+)?] )
+   )
+   lwt? ( dev-ml/lwt:=[ocamlopt(+)?] )
+   ssl? ( dev-ml/cryptokit:=[ocamlopt(+)?] )
+
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+   dev-ml/opam
+   dev-ml/ocamlbuild"
+
+src_compile() {
+   ocaml pkg/build.ml \
+   native=$(usex ocamlopt true false) \
+   native-dynlink=$(usex ocamlopt true false) \
+   lwt=$(usex lwt true false) \
+   async=$(usex async true false) \
+   async_ssl=$(usex async "$(usex ssl true false)" false) \
+   nocrypto=false \
+   cryptokit=$(usex ssl true false) \
+   test=false \
+   || die
+}
+
+src_install() {
+   opam-installer -i \
+   --prefix="${ED}/usr" \
+   --libdir="${D}/$(ocamlc -where)" \
+   --docdir="${ED}/usr/share/doc/${PF}" \
+   websocket.install || die
+   dodoc README CHANGES
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/flow_parser/

2017-04-03 Thread Alexis Ballier
commit: 454bdeedcddf0d7c7a77859d9ce8f29d1176cf58
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Apr  3 09:22:36 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Apr  3 09:22:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=454bdeed

dev-ml/flow_parser: Initial import.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/flow_parser/Manifest  |  1 +
 dev-ml/flow_parser/flow_parser-0.42.0.ebuild | 36 
 dev-ml/flow_parser/metadata.xml  |  8 +++
 3 files changed, 45 insertions(+)

diff --git a/dev-ml/flow_parser/Manifest b/dev-ml/flow_parser/Manifest
new file mode 100644
index 000..a5358b6d0c0
--- /dev/null
+++ b/dev-ml/flow_parser/Manifest
@@ -0,0 +1 @@
+DIST flow-0.42.0.tar.gz 3202876 SHA256 
5668a4a83242ac397239d001fbf071955a9e0a17ad255cb17b74345a434f7a93 SHA512 
adcf4e2193eb1e2fcfea781efeac98abf3696d5684cb40224ff258d1246a2396649177ea77536c4c9ff5a610c4c7deea79305fe33157fb5e07b9c4c83a56600e
 WHIRLPOOL 
58a2b392bc833c78b2690a75f6627f99082ae6f9e8405ef18421a50c2f531c4d3a009ae1740476c36863ffd8388b48aa9115fb1ea51971cbf36bf5d4f5b59ff0

diff --git a/dev-ml/flow_parser/flow_parser-0.42.0.ebuild 
b/dev-ml/flow_parser/flow_parser-0.42.0.ebuild
new file mode 100644
index 000..8460f51ef8b
--- /dev/null
+++ b/dev-ml/flow_parser/flow_parser-0.42.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit findlib
+
+DESCRIPTION="JavaScript parser written in OCaml"
+HOMEPAGE="https://github.com/facebook/flow/tree/master/src/parser;
+SRC_URI="https://github.com/facebook/flow/archive/v${PV}.tar.gz -> 
flow-${PV}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="dev-lang/ocaml:="
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+   dev-ml/ocamlbuild"
+
+S="${WORKDIR}/flow-${PV}/src/parser"
+
+src_compile() {
+   ocamlbuild parser_flow.cma parser_flow.cmxa || die
+}
+
+src_test() {
+   emake test-ocaml
+}
+
+src_install() {
+   findlib_src_preinst
+   emake ocamlfind-install
+   dodoc README.md
+}

diff --git a/dev-ml/flow_parser/metadata.xml b/dev-ml/flow_parser/metadata.xml
new file mode 100644
index 000..ffac4d7ebc0
--- /dev/null
+++ b/dev-ml/flow_parser/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   m...@gentoo.org
+   Gentoo ML Project
+
+



[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2017-04-03 Thread Lars Wendler
commit: 2af5b6db20d7eab6faff2ee4325ace40fa4f9386
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Apr  3 08:51:00 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Apr  3 08:51:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2af5b6db

net-fs/samba: Removed old.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 net-fs/samba/Manifest   |   2 -
 net-fs/samba/samba-4.5.6.ebuild | 266 ---
 net-fs/samba/samba-4.6.0.ebuild | 299 
 3 files changed, 567 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 1ffe6f5262a..324d5c4f7fb 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,10 +1,8 @@
 DIST samba-4.2.11.tar.gz 20875348 SHA256 
75bce53c922e51352933c9846f2c4b1e251fabb80927adb426a773a321ee01f8 SHA512 
293365f2718e756b66ccaec4b0dbce7044ade615b332f58968cf42dd1ec6b6445576590eaf5bd35fa00ba9aa4ba3be7720afc33763652e97731eebc3149f4820
 WHIRLPOOL 
1e04fd527e55c8d438c96a43d9a25a9b3e09a3edc504a2a5fe44bc8f9101c833c90e3ba3188b8872b046370916f3798e4fce0ffa7848b65f452b5c51ec7107f1
 DIST samba-4.2.14.tar.gz 20883281 SHA256 
db820a9947e44f04b0eb25e4aa0c3db32c4042fca541775ee8e2905093e888e6 SHA512 
269dd74ba788657434f51ac70953a293c94bcf98280eaa6f44634c5da54169a5ea7865d543a7c23860c4750a40cdee7caeaf5c7fc3dbc137f444e90f31a09890
 WHIRLPOOL 
925369c2f9c222d718bf4aacc7b1a83b8275acd96bbc1eca52ad96c86847327807560674ee9b180173d17a1e6109307ec4f70f1acbebe2efc8a9e67f2141e17d
-DIST samba-4.5.6.tar.gz 20978580 SHA256 
0d8ff81ef034344d09c9614fae7a2ad19cf7b175eb080e8548aa7783040ade70 SHA512 
089ffbeae5d967ad1c805db55f2778dd4cc23083ed732df04a6f1f9d9bd734004002e93c9f1dd3128cf363a26060d0baf30256a0ba78f797cd340ae478e2c0b0
 WHIRLPOOL 
03c6cd57e76bbfc8b2f6bcd2893376687063c0e3455e00646e71e32cb0c908d5e2bc8a33344cc9252cf466345bd8121e715e029f12d5ba10203dd5e302811ab5
 DIST samba-4.5.7.tar.gz 20981612 SHA256 
ac70f09af80639d8189e1b9bc0a554841ee44df2b1ef58e7e682ad5400fd9400 SHA512 
3515ab133470b902e35e77f43639881af87643adeb7b3f43f319a684bff9db2e2d5acffbd67d69d910c270f6676a2cbcc25730fc27015a00cb9d44154e60cf2d
 WHIRLPOOL 
016c2163162ed3ab126c16c47de4dc21b0d2b1116b207fc9359510a323e81d6d502f99b46885c6fee0cf8dd19c3ed5df5275eea79b47c3b0fc0ce935f3ec7db2
 DIST samba-4.5.8.tar.gz 20979104 SHA256 
f63b656d8823a280c50c9dbd6b692816cd7a88adfe9b47997ce697fd75bf81f0 SHA512 
8855af32632d517ea5ce86f8ce4a73367fba8ff2e7155f4ed14483cf7a0922f0e0df8fd1e5bc04cee67093fce8b92b6fa18844e6383c0099cce1d5042f004438
 WHIRLPOOL 
86018efcc8e505c3d6d50806d7e20a6925941a80bd42568b50155f714f5717d1ed9f68a37faa10fe037bf67971c6573de9dbe71a852a064bfde6aaee93ba173e
 DIST samba-4.6.0-disable-python-patches.tar.xz 7544 SHA256 
508adeea65604ef8f4da006504de7c27bed56d7003db1166dc5d3b01f5a6be6e SHA512 
07de2c0877aff31069ed0ab4fbe1c2272c854ae898ee5300a3b176ba31a218b05acff0b5120a5da0995592e7877c607865d2194c992df17b27c993836f58a654
 WHIRLPOOL 
12888f2ebf8d4ed5619860b2e6929599022b8ab1245970a5e1258f26e89aca1f87ab58fa54c7300dbd79a0c8fd6955e12c8aca6eeca246cdf06661d53ca3f6dd
-DIST samba-4.6.0.tar.gz 21090602 SHA256 
a3b3592e63d7064cae2624991f4925a443f3846c0dabb7011aee052c3fd4cc2b SHA512 
734582b540ba25ea73c5bf8b0801c01808eaea4a0d96b6b26c5ac18bcc4eb4fa42c9d3484891c577f80453bf9f7e5fe7c56b0ec7148e5c0dad0279889b9af93a
 WHIRLPOOL 
f20991345b490d78386a33c867f843e9151930f80997d4a00e0ef924bf6b1ea3fcc6a7786b6f153073213b530225108e012882f74c1a24398587827d0dffc672
 DIST samba-4.6.1.tar.gz 21097666 SHA256 
5d2751faa3cd33affd4f49681f700eff9f6c22d6b08e8858ae0d3cd8e51c535e SHA512 
8c759bb6483f67d632f35d779bf1afb44907fd478e3e5919fc95f36dd198e393819ed419686235ba01b5ec0e15ea80cb11e7fa8f22f37a1742bf0e818a3c6c14
 WHIRLPOOL 
a4ec6692a72979756acd2381f428c6f3f0f6dd909a4270d529ad5348cbdd4bbe9f19d37ff24977a8683c5b48323edb251d946b138f3ce44793c1fe03884435be
 DIST samba-4.6.2.tar.gz 21097045 SHA256 
927afcc16e444718985e3952de92d34e7b776b9ca0238179d866da18a6441c35 SHA512 
d64129b7fc65bf30cc06e34a07ac5cf04b52bf6639950eff48ae0ec27b0de44614df6a7c44b62b1859553fc7051f493b2d8216739da2232ac1caeaea81d328df
 WHIRLPOOL 
fed65abc7eb2b996062db57d40ccc57b10e8519412e97c9dd9147cd462f80f0b401939c2f00522595eed3f66f879c88039239d1dcf6fdc73c38c3fb7d43cef3a
 DIST samba-disable-python-patches-4.2.12.tar.xz 6052 SHA256 
8903eacbabdfaf7b64cbde03d7c367d1efdc92e54090f0f4b9ed5d2a462b1c18 SHA512 
c527d0a052d3211e5b12c17bc94db56cc5e5545189ed65a760c0656c94c22e27a4b159e6439eb0370873e1619873a741f3b3bd10d3876b38eb3914a87eace372
 WHIRLPOOL 
ad63db55d5dc96f56e6c9b30c2092e2f6e206b0ed5d13c249879d10753c8db2f475c5d4e651e2fc042ad992b648d3b4465f1b28c6b4bbf821cf503d27f741f7e

diff --git a/net-fs/samba/samba-4.5.6.ebuild b/net-fs/samba/samba-4.5.6.ebuild
deleted file mode 100644
index d76476baed2..000
--- a/net-fs/samba/samba-4.5.6.ebuild
+++ /dev/null
@@ -1,266 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6

[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2017-04-03 Thread Lars Wendler
commit: 7b0d98180d7a22df756a0c0064d1e19fe406db3b
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Apr  3 08:50:18 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Apr  3 08:51:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b0d9818

net-fs/samba: Bump to versions 4.5.8 and 4.6.2

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 net-fs/samba/Manifest  |  2 +
 .../{samba-4.6.1.ebuild => samba-4.5.8.ebuild} | 53 --
 net-fs/samba/samba-4.6.1.ebuild|  2 +-
 .../{samba-4.6.1.ebuild => samba-4.6.2.ebuild} |  2 +-
 4 files changed, 14 insertions(+), 45 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 5cd12965b66..1ffe6f5262a 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -2,9 +2,11 @@ DIST samba-4.2.11.tar.gz 20875348 SHA256 
75bce53c922e51352933c9846f2c4b1e251fabb
 DIST samba-4.2.14.tar.gz 20883281 SHA256 
db820a9947e44f04b0eb25e4aa0c3db32c4042fca541775ee8e2905093e888e6 SHA512 
269dd74ba788657434f51ac70953a293c94bcf98280eaa6f44634c5da54169a5ea7865d543a7c23860c4750a40cdee7caeaf5c7fc3dbc137f444e90f31a09890
 WHIRLPOOL 
925369c2f9c222d718bf4aacc7b1a83b8275acd96bbc1eca52ad96c86847327807560674ee9b180173d17a1e6109307ec4f70f1acbebe2efc8a9e67f2141e17d
 DIST samba-4.5.6.tar.gz 20978580 SHA256 
0d8ff81ef034344d09c9614fae7a2ad19cf7b175eb080e8548aa7783040ade70 SHA512 
089ffbeae5d967ad1c805db55f2778dd4cc23083ed732df04a6f1f9d9bd734004002e93c9f1dd3128cf363a26060d0baf30256a0ba78f797cd340ae478e2c0b0
 WHIRLPOOL 
03c6cd57e76bbfc8b2f6bcd2893376687063c0e3455e00646e71e32cb0c908d5e2bc8a33344cc9252cf466345bd8121e715e029f12d5ba10203dd5e302811ab5
 DIST samba-4.5.7.tar.gz 20981612 SHA256 
ac70f09af80639d8189e1b9bc0a554841ee44df2b1ef58e7e682ad5400fd9400 SHA512 
3515ab133470b902e35e77f43639881af87643adeb7b3f43f319a684bff9db2e2d5acffbd67d69d910c270f6676a2cbcc25730fc27015a00cb9d44154e60cf2d
 WHIRLPOOL 
016c2163162ed3ab126c16c47de4dc21b0d2b1116b207fc9359510a323e81d6d502f99b46885c6fee0cf8dd19c3ed5df5275eea79b47c3b0fc0ce935f3ec7db2
+DIST samba-4.5.8.tar.gz 20979104 SHA256 
f63b656d8823a280c50c9dbd6b692816cd7a88adfe9b47997ce697fd75bf81f0 SHA512 
8855af32632d517ea5ce86f8ce4a73367fba8ff2e7155f4ed14483cf7a0922f0e0df8fd1e5bc04cee67093fce8b92b6fa18844e6383c0099cce1d5042f004438
 WHIRLPOOL 
86018efcc8e505c3d6d50806d7e20a6925941a80bd42568b50155f714f5717d1ed9f68a37faa10fe037bf67971c6573de9dbe71a852a064bfde6aaee93ba173e
 DIST samba-4.6.0-disable-python-patches.tar.xz 7544 SHA256 
508adeea65604ef8f4da006504de7c27bed56d7003db1166dc5d3b01f5a6be6e SHA512 
07de2c0877aff31069ed0ab4fbe1c2272c854ae898ee5300a3b176ba31a218b05acff0b5120a5da0995592e7877c607865d2194c992df17b27c993836f58a654
 WHIRLPOOL 
12888f2ebf8d4ed5619860b2e6929599022b8ab1245970a5e1258f26e89aca1f87ab58fa54c7300dbd79a0c8fd6955e12c8aca6eeca246cdf06661d53ca3f6dd
 DIST samba-4.6.0.tar.gz 21090602 SHA256 
a3b3592e63d7064cae2624991f4925a443f3846c0dabb7011aee052c3fd4cc2b SHA512 
734582b540ba25ea73c5bf8b0801c01808eaea4a0d96b6b26c5ac18bcc4eb4fa42c9d3484891c577f80453bf9f7e5fe7c56b0ec7148e5c0dad0279889b9af93a
 WHIRLPOOL 
f20991345b490d78386a33c867f843e9151930f80997d4a00e0ef924bf6b1ea3fcc6a7786b6f153073213b530225108e012882f74c1a24398587827d0dffc672
 DIST samba-4.6.1.tar.gz 21097666 SHA256 
5d2751faa3cd33affd4f49681f700eff9f6c22d6b08e8858ae0d3cd8e51c535e SHA512 
8c759bb6483f67d632f35d779bf1afb44907fd478e3e5919fc95f36dd198e393819ed419686235ba01b5ec0e15ea80cb11e7fa8f22f37a1742bf0e818a3c6c14
 WHIRLPOOL 
a4ec6692a72979756acd2381f428c6f3f0f6dd909a4270d529ad5348cbdd4bbe9f19d37ff24977a8683c5b48323edb251d946b138f3ce44793c1fe03884435be
+DIST samba-4.6.2.tar.gz 21097045 SHA256 
927afcc16e444718985e3952de92d34e7b776b9ca0238179d866da18a6441c35 SHA512 
d64129b7fc65bf30cc06e34a07ac5cf04b52bf6639950eff48ae0ec27b0de44614df6a7c44b62b1859553fc7051f493b2d8216739da2232ac1caeaea81d328df
 WHIRLPOOL 
fed65abc7eb2b996062db57d40ccc57b10e8519412e97c9dd9147cd462f80f0b401939c2f00522595eed3f66f879c88039239d1dcf6fdc73c38c3fb7d43cef3a
 DIST samba-disable-python-patches-4.2.12.tar.xz 6052 SHA256 
8903eacbabdfaf7b64cbde03d7c367d1efdc92e54090f0f4b9ed5d2a462b1c18 SHA512 
c527d0a052d3211e5b12c17bc94db56cc5e5545189ed65a760c0656c94c22e27a4b159e6439eb0370873e1619873a741f3b3bd10d3876b38eb3914a87eace372
 WHIRLPOOL 
ad63db55d5dc96f56e6c9b30c2092e2f6e206b0ed5d13c249879d10753c8db2f475c5d4e651e2fc042ad992b648d3b4465f1b28c6b4bbf821cf503d27f741f7e
 DIST samba-disable-python-patches-4.2.9.tar.xz 6016 SHA256 
222d0153f03e28a0b906ee2b27076223ac88b84a998aaa285f658861edfa SHA512 
02fc666a36f8e733e522663d80775d130fabee9d5fb4e1c261d28815e07be425ae8977213f9216c7af62dd8b2619e7e13d71f9a25780b058c8119901c2115a18
 WHIRLPOOL 
ebba3a6d41a41844621759672aa8c984d26f44d12007c8e929405470c381bc262523ec68d3972e86cf675c45f092fa287496167e42940e70d704790753e47b03
 DIST samba-disable-python-patches-4.5.0_rc1.tar.xz 6204 SHA256 
fa0d776e04e3222c0dc4761e376717f4154937cdcb85f4117b8978dfb770a78e SHA512 

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

2017-04-03 Thread Tim Harder
commit: 81a38676ba525e2bf90c8c0d28e5af706fc6f940
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Apr  3 08:22:36 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Apr  3 08:34:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a38676

media-gfx/pngcrush: remove old

 media-gfx/pngcrush/Manifest   |  2 --
 media-gfx/pngcrush/pngcrush-1.8.10.ebuild | 40 ---
 2 files changed, 42 deletions(-)

diff --git a/media-gfx/pngcrush/Manifest b/media-gfx/pngcrush/Manifest
index 3ef53751e54..483f4e9e974 100644
--- a/media-gfx/pngcrush/Manifest
+++ b/media-gfx/pngcrush/Manifest
@@ -1,4 +1,2 @@
-DIST pngcrush-1.8.10-nolib.tar.xz 65196 SHA256 
8db04792f8912011c9c25caf732894276f16ff0b7612f3365d18971dfb56442b SHA512 
34d06b13ebbea77bb8f0e7d69ad8ddde5e36c8970adadc074bdf3715f5fe275e475680ea3e1b89349844b2aaeddcb00b35683c8dfc4ce2d78b59c20c626eca69
 WHIRLPOOL 
08b59025f59fb6ab9e13d2edd0271e25ff7f86f1506d18d55f3f2e7e22c974095ca98c020647a6a7752203446edb6ec8052e332d3a56aa754e96af5cc3e3ad3d
-DIST pngcrush-1.8.10.tar.xz 386240 SHA256 
a9c11e27fafaf49f4be9883fe39c1c222a9f7a492a223e53408e68a96594b90c SHA512 
fc858e1feec3c6311c7063665f21989d1e5d81afb1a32cce9f6dae63c714c07ec0c0272b06d6bc9f255948c1d3a439511b9768c62686093b44bcc2caeb49061f
 WHIRLPOOL 
dcdfac66ac32866e2f7e048806c9bcc64aefd0a8a6c41104aa0376d99372a33107fe98628e542c89d4a1da42b5105e484eaa864067f62de90799845712ed5bd8
 DIST pngcrush-1.8.11-nolib.tar.xz 65272 SHA256 
23a293a9e7b1e4ea94829ae0266c8672506ed2dfa80f69b11594c650bf1ae5dd SHA512 
1b6d1c5b934d3d349031da1e49f1b3206cb0540a3d3a36219a800f052cd30da305b80902f7bdccfcc1487babb826a925048d30f9fbae598ca8ca18d60b3c49e1
 WHIRLPOOL 
aa5f8177634bdef7617d443654fa600bf9231461ce141cf27d7613819a74f57d4aa95b941d4c0036fce8d58a8c495da1a392121a1b56a521accc12fbe0b7606e
 DIST pngcrush-1.8.11.tar.xz 388456 SHA256 
8d530328650ec82f3cbe998729ada8347eb3dbbdf706d9021c5786144d18f5b0 SHA512 
7110d3f55ec1d18bf9cf9b923bfd2e06bdf8c87fbc8ac09a6bc9e17cc5cda022185d70270f67ea63f733b18f904c05f1426a4794c29493630d5661bddbcaca2b
 WHIRLPOOL 
68f948e39d6a7b82de6ff87cdd5609a8e7a87eae813e97dc0eaa84d254319a6217f960943945e2a4c9645f9b033706d6fcb23d243cd3a74eec326213bcddd9e2

diff --git a/media-gfx/pngcrush/pngcrush-1.8.10.ebuild 
b/media-gfx/pngcrush/pngcrush-1.8.10.ebuild
deleted file mode 100644
index dba83bbd481..000
--- a/media-gfx/pngcrush/pngcrush-1.8.10.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit toolchain-funcs
-
-DESCRIPTION="Portable Network Graphics (PNG) optimizing utility"
-HOMEPAGE="http://pmt.sourceforge.net/pngcrush/;
-SRC_URI="system-libs? ( mirror://sourceforge/pmt/${P}-nolib.tar.xz )
-   !system-libs? ( mirror://sourceforge/pmt/${P}.tar.xz )"
-
-LICENSE="pngcrush"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="+system-libs"
-
-RDEPEND="
-   system-libs? (
-   media-libs/libpng:0=
-   sys-libs/zlib:=
-   )"
-DEPEND="${RDEPEND}
-   app-arch/xz-utils"
-
-pkg_setup() {
-   use system-libs && S+="-nolib"
-}
-
-src_compile() {
-   emake \
-   CC="$(tc-getCC)" \
-   LD="$(tc-getCC)" \
-   CFLAGS="${CFLAGS} ${CPPFLAGS} -Wall" \
-   LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   dobin ${PN}
-   dodoc ChangeLog.html
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/abcmidi/

2017-04-03 Thread Tim Harder
commit: f90370cd49fc53c2cc2c7091fe5aeb75e90c65d6
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Apr  3 08:27:06 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Apr  3 08:34:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f90370cd

media-sound/abcmidi: version bump to 2017.02.02

 media-sound/abcmidi/Manifest  |  1 +
 media-sound/abcmidi/abcmidi-2017.02.02.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/media-sound/abcmidi/Manifest b/media-sound/abcmidi/Manifest
index 7bec1afc4b8..4e808a1e940 100644
--- a/media-sound/abcmidi/Manifest
+++ b/media-sound/abcmidi/Manifest
@@ -1 +1,2 @@
 DIST abcMIDI-2016.09.25.zip 672254 SHA256 
730e8c5c11c4f6da996ee614e1f60c6e1d67a8ce82e5e75ceb74c976d5a06429 SHA512 
fa122a9fa4806057b1b7a4a457a5e5135e2192c219b235346bad6a4b76d8553604254b008ab04595e34d90ec4decd052d4eb4ae34f6c2871346b004448b3
 WHIRLPOOL 
29eaa87a06de1fdf30c9345c45bfd088d7a437b095deba6c0ac5951b090266bb8fc885e3d14d6fb696d1cd12c6f1dd51a3c821ef82876da06b9cd4797e0e624c
+DIST abcMIDI-2017.02.02.zip 549653 SHA256 
95f78749267711d0bf1de2bd5d9c202189c83cd4e3da54335780ac3b874c6df6 SHA512 
157db89bda7355a730ce8b8e18fcc1837df72753480a53518b0f670a352acf3d813665f2f6b64088b3696df215135f026cef0da0e1984a39fe07ad981f3df39a
 WHIRLPOOL 
2a5e923e150aab5455b7a66c21f4d86fdac78d9abf40ba943f83fec7d542a2a28e69f84c59deb8da029d836b32793d3cbd16da5a1e5b22107be0706f2e01bf32

diff --git a/media-sound/abcmidi/abcmidi-2017.02.02.ebuild 
b/media-sound/abcmidi/abcmidi-2017.02.02.ebuild
new file mode 100644
index 000..adf33138050
--- /dev/null
+++ b/media-sound/abcmidi/abcmidi-2017.02.02.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+MY_P="abcMIDI-${PV}"
+DESCRIPTION="Programs for processing ABC music notation files"
+HOMEPAGE="http://ifdo.ca/~seymour/runabc/top.html;
+SRC_URI="http://ifdo.ca/~seymour/runabc/${MY_P}.zip;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples"
+
+DEPEND="app-arch/unzip"
+
+S=${WORKDIR}/${PN}
+
+src_prepare() {
+   local PATCHES=( "${FILESDIR}"/${PN}-2016.05.05-docs.patch )
+   default
+
+   rm configure makefile || die
+   sed -i "s:-O2::" configure.ac || die
+
+   eautoreconf
+}
+
+src_install() {
+   default
+   dodoc 
doc/{AUTHORS,CHANGES,abcguide.txt,abcmatch.txt,history.txt,readme.txt,yapshelp.txt}
+
+   if use examples ; then
+   docinto examples
+   dodoc samples/*.abc
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/dateutils/

2017-04-03 Thread Tim Harder
commit: 8dd760e30f2c20d5950b0d34fa14780c8491212a
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Apr  3 08:28:03 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Apr  3 08:34:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dd760e3

app-misc/dateutils: remove old

 app-misc/dateutils/Manifest   |  2 --
 app-misc/dateutils/dateutils-0.3.5.ebuild | 32 ---
 app-misc/dateutils/dateutils-0.4.0.ebuild | 32 ---
 3 files changed, 66 deletions(-)

diff --git a/app-misc/dateutils/Manifest b/app-misc/dateutils/Manifest
index a7552a7e503..8c387ad9373 100644
--- a/app-misc/dateutils/Manifest
+++ b/app-misc/dateutils/Manifest
@@ -1,3 +1 @@
-DIST dateutils-0.3.5.tar.xz 593112 SHA256 
cff341d3e6394627d98cb9643b9ca1235b839037ede58983c927df4f27ee31a7 SHA512 
e0d732ce42551906da0c6635ac9e17aa4b12cb199e63f32355a33ded36afa2a37e05853c23716982daf6078be8b8dafb0d7c49a228876cbbafc4541c037e067a
 WHIRLPOOL 
4d50e485362813dc77f18c43c3071d69654ab31372852da35af612a465a0cf108a7ad7c5ba3d0a021923a02622acf6502f47668d7226498064ed6855f21de26b
-DIST dateutils-0.4.0.tar.xz 608364 SHA256 
d05af02bc60a82bdc21c0ac4779f1040f631b0a1233ed15c4f69a80d3dad23da SHA512 
06aeed8cc2e8bd22584d74fccd6a9739fbed191a01d5dfb5bab48d5b059dce01d48f8b5f4b6e927e26c1ac2143d7aeed1f20f0415d1275d172f2584ef9d776a9
 WHIRLPOOL 
7341e9b0b7fb5d0126355141934825880c9c7c85344e797ca712aab150b7cd74e2d4cc0586344ef8f1451f08213549c9770e815af7476f3ddfebd299cc45fbef
 DIST dateutils-0.4.1.tar.xz 611460 SHA256 
6ccce48975fc4d3af2e27c7893e181c46ab5df1cb37e4a428b4b521a77d55278 SHA512 
c13461de6dad483b0014692a2319a7bf9ed1677415b8ee168131b397086f75725eb8b4e833d8b4a22f4aa726d6aca74be2597c2e07ef75a036cfea9bf67ccf1b
 WHIRLPOOL 
2b6770306363f2653b0ddbdb12badc19927179dab707f5460c48f3219b96a475b5a0b6d451de5bba0f6567c7d348c40a6a2fdcf2afecc1e42034c832f7bc0177

diff --git a/app-misc/dateutils/dateutils-0.3.5.ebuild 
b/app-misc/dateutils/dateutils-0.3.5.ebuild
deleted file mode 100644
index 8facac0903f..000
--- a/app-misc/dateutils/dateutils-0.3.5.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="command line date and time utilities"
-HOMEPAGE="https://hroptatyr.github.com/dateutils/;
-SRC_URI="https://bitbucket.org/hroptatyr/${PN}/downloads/${P}.tar.xz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="app-arch/xz-utils
-   sys-libs/timezone-data"
-
-# bug 429810
-RDEPEND="!sys-fabric/dapl"
-
-src_configure() {
-   econf \
-   --docdir=/usr/share/doc/${PF}
-}
-
-src_compile() {
-   emake CFLAGS="${CFLAGS}"
-}
-
-src_test() {
-   # parallel tests failure
-   emake CFLAGS="${CFLAGS}" -j1 check
-}

diff --git a/app-misc/dateutils/dateutils-0.4.0.ebuild 
b/app-misc/dateutils/dateutils-0.4.0.ebuild
deleted file mode 100644
index f9a24de86d0..000
--- a/app-misc/dateutils/dateutils-0.4.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="command line date and time utilities"
-HOMEPAGE="https://hroptatyr.github.com/dateutils/;
-SRC_URI="https://bitbucket.org/hroptatyr/${PN}/downloads/${P}.tar.xz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="app-arch/xz-utils
-   sys-libs/timezone-data"
-
-# bug 429810
-RDEPEND="!sys-fabric/dapl"
-
-src_configure() {
-   econf \
-   --docdir=/usr/share/doc/${PF}
-}
-
-src_compile() {
-   emake CFLAGS="${CFLAGS}"
-}
-
-src_test() {
-   # parallel tests failure
-   emake CFLAGS="${CFLAGS}" -j1 check
-}



[gentoo-commits] repo/gentoo:master commit in: media-libs/libzen/

2017-04-03 Thread Tim Harder
commit: 968171fafbaee8f556fd3635e81f2716bbeda24c
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Apr  3 08:07:08 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Apr  3 08:34:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=968171fa

media-libs/libzen: version bump to 0.4.35

 media-libs/libzen/Manifest |  1 +
 media-libs/libzen/libzen-0.4.35.ebuild | 66 ++
 2 files changed, 67 insertions(+)

diff --git a/media-libs/libzen/Manifest b/media-libs/libzen/Manifest
index 68adb673a6b..f3eca824fa5 100644
--- a/media-libs/libzen/Manifest
+++ b/media-libs/libzen/Manifest
@@ -1 +1,2 @@
 DIST libzen_0.4.34.tar.bz2 119347 SHA256 
83774fe093bd14fb72da9c537021a8ffc3f6ff952a1401cd6f91de6628ac790a SHA512 
46a2457b72c5f8b585eaec9ca99405cc795ea96174494651ccb57c0ef9317f1b7632992bb1d430fe5e62cab9849f102effd3558e8f5b0c36bc9515ed81c4e386
 WHIRLPOOL 
9817dfc03af8c47dbde1b808c658b3523fc9494d875629b83f49677c6d4e5314b016ce3a467c4bcf5f65fb32052659fd1b9b4499e9705722096ae082ecbe52e8
+DIST libzen_0.4.35.tar.bz2 120440 SHA256 
7e21978d425801c498fcc4d5043c75b0bc3e4721618a180728fb39c71e8b4189 SHA512 
0f9faa7975c91a1bd3e0cf47881fc3d86f32bc81ac1b371f8708c9187ca126a1240049ee6d267faa5d9b24b9a7f2066990796f7b8386dbb574c5e967c5889f1d
 WHIRLPOOL 
81bfbb4f039a2acb82b4804a99a124e604c60829204ba2489b4010d281c46638521b5a5ee98b8f98c268818915e4d6201444e2fc61cd4519e92a416061e59fca

diff --git a/media-libs/libzen/libzen-0.4.35.ebuild 
b/media-libs/libzen/libzen-0.4.35.ebuild
new file mode 100644
index 000..57b62c25e90
--- /dev/null
+++ b/media-libs/libzen/libzen-0.4.35.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools multilib eutils
+
+MY_PN="ZenLib"
+DESCRIPTION="Shared library for libmediainfo and mediainfo"
+HOMEPAGE="https://github.com/MediaArea/ZenLib http://mediaarea.net/mediainfo/;
+SRC_URI="http://mediaarea.net/download/source/${PN}/${PV}/${P/-/_}.tar.bz2;
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc static-libs"
+
+DEPEND="virtual/pkgconfig
+   doc? ( app-doc/doxygen )"
+
+S=${WORKDIR}/${MY_PN}/Project/GNU/Library
+
+src_prepare() {
+   default
+   sed -i 's:-O2::' configure.ac || die
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --enable-unicode \
+   --enable-shared \
+   $(use_enable static-libs static)
+}
+
+src_compile() {
+   default
+
+   if use doc ; then
+   cd "${WORKDIR}"/${MY_PN}/Source/Doc
+   doxygen Doxyfile || die
+   fi
+}
+
+src_install() {
+   default
+
+   # remove since the pkgconfig file should be used instead
+   rm "${D}"/usr/bin/libzen-config
+
+   insinto /usr/$(get_libdir)/pkgconfig
+   doins ${PN}.pc
+
+   for x in ./ Format/Html Format/Http HTTP_Client ; do
+   insinto /usr/include/${MY_PN}/${x}
+   doins "${WORKDIR}"/${MY_PN}/Source/${MY_PN}/${x}/*.h
+   done
+
+   dodoc "${WORKDIR}"/${MY_PN}/History.txt
+   if use doc ; then
+   docinto html
+   dodoc "${WORKDIR}"/${MY_PN}/Doc/*
+   fi
+
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: app-backup/duplicity/

2017-04-03 Thread Tim Harder
commit: 7fc0b5ba5849eee0d383948cfe91ee94ac5c7636
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Apr  3 08:28:49 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Apr  3 08:34:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fc0b5ba

app-backup/duplicity: version bump to 0.7.12

 app-backup/duplicity/Manifest|  1 +
 app-backup/duplicity/duplicity-0.7.12.ebuild | 51 
 2 files changed, 52 insertions(+)

diff --git a/app-backup/duplicity/Manifest b/app-backup/duplicity/Manifest
index 2930f6525a9..03a75a38682 100644
--- a/app-backup/duplicity/Manifest
+++ b/app-backup/duplicity/Manifest
@@ -1,2 +1,3 @@
 DIST duplicity-0.7.10.tar.gz 1543523 SHA256 
485fef15526d163c061e00ec08de216cf7d652e67d41de5dc3bed9fb42214842 SHA512 
d04273384749c88d0a4f46bc1dcdcbb945ec1a78fb21064f12f0ca6c92cc73ad36fc3149461dbe0a660cd752a1147b2fa5d2b4056a5414c7790747eb5983e0bd
 WHIRLPOOL 
1532b1e5ffc764951155ce248662d3ebf23fff71c538270ee1b2d37c7ad0a90705361b34418a323dfb4947ede42cd356e0daba18e4124e7342e5baadc5d0af22
 DIST duplicity-0.7.11.tar.gz 1550197 SHA256 
b047a1590a1f5bb3974643ad2cc9dfdd32f61adbf2c1989191fb12cb59c2ec07 SHA512 
81ccb868625b261356b9cb2439659eb7574343c0a15ea7db099746216689a881d9a37b05711c232103ae0e7660b5cdc7dff6475eda81ecbdcfc28bced0eabe75
 WHIRLPOOL 
1c106933fe4e9ba535a7923e93474457f2ede8979c2f9ed400fb7a819872c05ec2adfd08920d7b81b3e97feb90844f141721fc5ff184e97ec0b3df9da1d311df
+DIST duplicity-0.7.12.tar.gz 1552442 SHA256 
11cbad44a90891af1bf9e294260ba7c21a1660ccd3ab2c6e736ba74ac5cf0fe6 SHA512 
8a532e7bb548c170184666a0ba2b41a15f3002c14edd64b1b1eb4df862647fc6dfde797d6ecf38e326d7c160c31ff521baf351e520835495e1d0e2ddbdb19f0f
 WHIRLPOOL 
872d0b52a0f73507849d585fd5888d4754d5711ab5cc48d72b571cfb14fd1278093022f52238facf608c8b26aa0149f2e614a4819c85aeb9ee94305e81824147

diff --git a/app-backup/duplicity/duplicity-0.7.12.ebuild 
b/app-backup/duplicity/duplicity-0.7.12.ebuild
new file mode 100644
index 000..f58453ccdf6
--- /dev/null
+++ b/app-backup/duplicity/duplicity-0.7.12.ebuild
@@ -0,0 +1,51 @@
+# 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 versionator
+
+DESCRIPTION="Secure backup system using gnupg to encrypt data"
+HOMEPAGE="http://www.nongnu.org/duplicity/;
+SRC_URI="https://code.launchpad.net/${PN}/$(get_version_component_range 
1-2)-series/${PV}/+download/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
+IUSE="s3 test"
+
+CDEPEND="
+   net-libs/librsync
+   app-crypt/gnupg
+   dev-python/lockfile
+"
+DEPEND="${CDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}
+   dev-python/paramiko[${PYTHON_USEDEP}]
+   s3? ( dev-python/boto[${PYTHON_USEDEP}] )
+"
+
+python_prepare_all() {
+   # workaround until failing test is fixed
+   local PATCHES=( "${FILESDIR}"/${PN}-0.6.24-skip-test.patch )
+
+   distutils-r1_python_prepare_all
+
+   sed -i "s/'COPYING',//" setup.py || die
+}
+
+python_test() {
+   esetup.py test
+}
+
+pkg_postinst() {
+   einfo "Duplicity has many optional dependencies to support various 
backends."
+   einfo "Currently it's up to you to install them as necessary."
+}



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/tig/

2017-04-03 Thread Tim Harder
commit: 3c69b9f3d2c2c1b1d14b688390ffc15e104120b3
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Apr  3 08:24:50 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Apr  3 08:34:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c69b9f3

dev-vcs/tig: remove old

 dev-vcs/tig/Manifest |  2 --
 dev-vcs/tig/tig-2.1.1.ebuild | 48 -
 dev-vcs/tig/tig-2.2.ebuild   | 56 
 3 files changed, 106 deletions(-)

diff --git a/dev-vcs/tig/Manifest b/dev-vcs/tig/Manifest
index 2026951154d..569be884c4f 100644
--- a/dev-vcs/tig/Manifest
+++ b/dev-vcs/tig/Manifest
@@ -1,3 +1 @@
-DIST tig-2.1.1.tar.gz 641710 SHA256 
50c5179fd564b829b6b2cec087e66f10cf8799601de19350df0772ae77e4852f SHA512 
be55ece813e1af938e3c4d805d4f034e78f75c1fcda7f4b5bc02de8b228d6d76b9f4921f6dc079485b8c13a3acc5ea2d146a0c437d28add45d50137ae6545f10
 WHIRLPOOL 
869012b9e5d47eaa24d7939202819bcf85c44ed4d2de742d7770d8610f3e86dfae43588f626de2785f10e78293c21151272b81b0f196163844ea8b76cce5d01c
 DIST tig-2.2.1.tar.gz 1028479 SHA256 
0b48080896de59179c45c980080b4b414bb235df65ad08d661a9c9e169c3fa71 SHA512 
6e483a400e222c01a4f518ee473b8d37933e820a2da1fc2cfe0ae9fb8217867d16f1aee3deecb14ce9af6a6dd2814d709d6ffce5f1f5054b94d2ab533b47008b
 WHIRLPOOL 
a4bcb381f81d07d92623a38c3ed5a78321043a776f0e4cb44e0f736cf960b01d2599b90f7a7f9056d0e0388ecd8112f25aed1b162c9b629c4bf9d10eaa98ebb7
-DIST tig-2.2.tar.gz 1030062 SHA256 
8f5213d3abb45ca9a79810b8d2a2a12d941112bc4682bcfa91f34db74942754c SHA512 
53b85a1309becc7a72e915801ef9412de113f3d113ab0e3915c77999b86a58f4144f267cd3a6c47af8229e00b6146d5e6c38a591077dd746a5f0518b6a50ceae
 WHIRLPOOL 
036cb1a2b66f8f4975b98f6dae049be014868c7508802858f7024b1c0518e8a8afc49181808a7fd4f941e44e4b79032333a30d612d74618fbef17d541e98edd6

diff --git a/dev-vcs/tig/tig-2.1.1.ebuild b/dev-vcs/tig/tig-2.1.1.ebuild
deleted file mode 100644
index 3613d23d432..000
--- a/dev-vcs/tig/tig-2.1.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit bash-completion-r1 toolchain-funcs
-
-DESCRIPTION="text mode interface for git"
-HOMEPAGE="http://jonas.nitro.dk/tig/;
-SRC_URI="http://jonas.nitro.dk/tig/releases/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="unicode"
-
-DEPEND="
-   sys-libs/ncurses:0=[unicode?]
-   sys-libs/readline:0="
-RDEPEND="${DEPEND}
-   dev-vcs/git"
-
-src_prepare() {
-   # pre-generated manpages are in the root directory
-   sed -i '/^MANDOC/s#doc/##g' Makefile || die
-}
-
-src_configure() {
-   econf $(use_with unicode ncursesw)
-}
-
-src_compile() {
-   emake V=1
-}
-
-src_test() {
-   # workaround parallel test failures
-   emake -j1 test
-}
-
-src_install() {
-   emake DESTDIR="${D}" install install-doc-man
-   dohtml manual.html README.html NEWS.html
-   newbashcomp contrib/tig-completion.bash ${PN}
-
-   docinto examples
-   dodoc contrib/*.tigrc
-}

diff --git a/dev-vcs/tig/tig-2.2.ebuild b/dev-vcs/tig/tig-2.2.ebuild
deleted file mode 100644
index 8867acfbaed..000
--- a/dev-vcs/tig/tig-2.2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit bash-completion-r1
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://github.com/jonas/tig.git;
-   inherit git-r3 autotools
-else
-   SRC_URI="http://jonas.nitro.dk/tig/releases/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-fi
-
-DESCRIPTION="text mode interface for git"
-HOMEPAGE="http://jonas.nitro.dk/tig/;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="unicode"
-
-DEPEND="
-   sys-libs/ncurses:0=[unicode?]
-   sys-libs/readline:0="
-RDEPEND="${DEPEND}
-   dev-vcs/git"
-[[ ${PV} == "" ]] && DEPEND+=" app-text/asciidoc"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   econf $(use_with unicode ncursesw)
-}
-
-src_compile() {
-   emake V=1
-   [[ ${PV} == "" ]] && emake V=1 doc-man doc-html
-}
-
-src_test() {
-   # workaround parallel test failures
-   emake -j1 test
-}
-
-src_install() {
-   emake DESTDIR="${D}" install install-doc-man
-   dodoc doc/manual.html README.html NEWS.html
-   newbashcomp contrib/tig-completion.bash ${PN}
-
-   docinto examples
-   dodoc contrib/*.tigrc
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/abcm2ps/

2017-04-03 Thread Tim Harder
commit: 1f3884286a2fca7fc952d0bb4ab536d54d1b2fc6
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Apr  3 08:29:29 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Apr  3 08:34:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f388428

media-sound/abcm2ps: version bump to 8.13.8

 media-sound/abcm2ps/Manifest  |  1 +
 media-sound/abcm2ps/abcm2ps-8.13.8.ebuild | 48 +++
 2 files changed, 49 insertions(+)

diff --git a/media-sound/abcm2ps/Manifest b/media-sound/abcm2ps/Manifest
index 9dd8b7e9554..a3b1a3ffa77 100644
--- a/media-sound/abcm2ps/Manifest
+++ b/media-sound/abcm2ps/Manifest
@@ -3,4 +3,5 @@ DIST abcm2ps-8.13.0.tar.gz 239062 SHA256 
26bc4b663fdba76d63388e05a5e9df6dce22533
 DIST abcm2ps-8.13.2.tar.gz 239542 SHA256 
78fb9f5a0a5fbb0d312d9f9fa194399c121801cfa7bda0b15d6ad7f34b4db917 SHA512 
309a0ca0b5d45c965650b297811f0843240b0b1ed1a84c9d5d0a9655dc3ff927f68aa9e1936456187db095e13c6b674301869426beb6c86b5a6b6e4d81034c97
 WHIRLPOOL 
733c440950282ae79cd29564ed2ef627beab2c77691638c8ce40cf996abf92ba4264220c83aea5e537573c92b64b4b3d331e41015fe2311bfb0fd0e617af444a
 DIST abcm2ps-8.13.3.tar.gz 247274 SHA256 
02edce1a978bc20830ab8f3242e959b0a65eb7e2183d5477355b013e8ab2f078 SHA512 
c1d4f9be0393407247593f4cd780319e4e4f74c0a822139c64af8c10d5b39c702d172e75756999e5d36f440bd9379c8e70b56e18dbc6ef637ff132d73f24e9f3
 WHIRLPOOL 
69b337514eeb3f68e9bc664b5ae1583e0313b031c5e67b5e69fbb0408d623127c2de41e44684f473e9a5fd38da35d9b70406698eb52efe20e1d6f0745816dbe4
 DIST abcm2ps-8.13.5.tar.gz 247642 SHA256 
ed945e87699d4a324ef00af5fca54c24ce99cfbb67092b0c229d488f7caf35de SHA512 
e411f67c90fbc36ffbef74c91617158fe3429e156bc3b1052eb82c27f91fdbb4bcf1de28904ac0b8ec832e61103486c7e50730a5cc429a7c814e174dbf10aad4
 WHIRLPOOL 
f735a8eb9e257017d1e1090003ef8e8c56ad966c640cdd34038ef89848dee86e39f05af49aa4e032e2cd75451cb307060dfc9f9285144caaa34a5518adf837f5
+DIST abcm2ps-8.13.8.tar.gz 248756 SHA256 
8ecbf6ae95093f784237020980fca2cd7345b347a3449a3aca9e4064db2d74e6 SHA512 
4cb98209c99631df9d4246af2131397baa5772ec5f30e3b3b381b1e31390aa867a7776af72a32caf1b389c0b35cbed22d4e2208551cb7d3154f0de10e7c30ad5
 WHIRLPOOL 
ffc168444241cf7e2353aef2a08a07a39cb8e023837a884893393f90befea935a5e13614971e392467bfddda3d2e84a69b1c797dcbcb8e09c5ea4dae35ad81c9
 DIST transpose_abc.pl 21045 SHA256 
bd6960872bfbc9f71f183f36d533ea33b8cf62a6027b447f0b0b8adfa25a2848 SHA512 
dc2623608a7b59d7e0c4d25160e69f696f170e9938dc3e035edbaf6f0163b4c6139892ec8734ea2aaba997507dcf32208562e898690600dc3c199046d4d151f3
 WHIRLPOOL 
81e327bbd76b40826adab06f7756c79c60289b21432b792c848db3ba1354528fa4f1a074cba890b6087cfac6e712427c6cbb2c9e6679c8ced22c362f6ec005f3

diff --git a/media-sound/abcm2ps/abcm2ps-8.13.8.ebuild 
b/media-sound/abcm2ps/abcm2ps-8.13.8.ebuild
new file mode 100644
index 000..2d4a35b5889
--- /dev/null
+++ b/media-sound/abcm2ps/abcm2ps-8.13.8.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit toolchain-funcs
+
+DESCRIPTION="A program to convert abc files to Postscript files"
+HOMEPAGE="http://moinejf.free.fr/;
+SRC_URI="http://moinejf.free.fr/${P}.tar.gz
+   http://moinejf.free.fr/transpose_abc.pl;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="examples pango"
+
+RDEPEND="pango? ( x11-libs/pango media-libs/freetype:2 )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_configure() {
+   econf \
+   --enable-a4 \
+   --enable-deco-is-roll \
+   $(use_enable pango)
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
+}
+
+src_install() {
+   dobin abcm2ps
+
+   insinto /usr/share/${PN}
+   doins *.fmt
+
+   dodoc Changes README *.txt
+
+   if use examples ; then
+   docinto examples
+   dodoc *.{abc,eps}
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+
+   docinto contrib
+   dodoc "${DISTDIR}"/transpose_abc.pl
+}



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

2017-04-03 Thread Tim Harder
commit: 789835b705ca94164cafdb79bd8fb043dfe93166
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Apr  3 08:20:43 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Apr  3 08:34:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=789835b7

media-gfx/pngcrush: stabilize 1.8.11

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

diff --git a/media-gfx/pngcrush/pngcrush-1.8.11.ebuild 
b/media-gfx/pngcrush/pngcrush-1.8.11.ebuild
index 4dd7937e711..2da3e2abd13 100644
--- a/media-gfx/pngcrush/pngcrush-1.8.11.ebuild
+++ b/media-gfx/pngcrush/pngcrush-1.8.11.ebuild
@@ -11,7 +11,7 @@ SRC_URI="system-libs? ( 
mirror://sourceforge/pmt/${P}-nolib.tar.xz )
 
 LICENSE="pngcrush"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
+KEYWORDS="~alpha amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="+system-libs"
 
 RDEPEND="



  1   2   >