[gentoo-commits] proj/portage:master commit in: pym/portage/sync/modules/rsync/, pym/portage/util/futures/, ...

2018-04-16 Thread Zac Medico
commit: e6ae7fdc18a876d3a0f5fcea437b5f448d1dcb4e
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Apr 17 05:44:14 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr 17 05:48:42 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=e6ae7fdc

Use asyncio shim for TimeoutError and other exceptions

 pym/portage/sync/modules/rsync/rsync.py   |  4 ++--
 pym/portage/tests/util/futures/test_retry.py  |  7 +++
 pym/portage/util/futures/_asyncio/__init__.py | 10 +-
 pym/portage/util/futures/retry.py |  4 ++--
 4 files changed, 16 insertions(+), 9 deletions(-)

diff --git a/pym/portage/sync/modules/rsync/rsync.py 
b/pym/portage/sync/modules/rsync/rsync.py
index de8327a55..180bf8571 100644
--- a/pym/portage/sync/modules/rsync/rsync.py
+++ b/pym/portage/sync/modules/rsync/rsync.py
@@ -25,7 +25,7 @@ warn = create_color_func("WARN")
 from portage.const import VCS_DIRS, TIMESTAMP_FORMAT, RSYNC_PACKAGE_ATOM
 from portage.util._eventloop.global_event_loop import global_event_loop
 from portage.util import writemsg, writemsg_stdout
-from portage.util.futures.futures import TimeoutError
+from portage.util.futures import asyncio
 from portage.sync.getaddrinfo_validate import getaddrinfo_validate
 from _emerge.UserQuery import UserQuery
 from portage.sync.syncbase import NewBase
@@ -163,7 +163,7 @@ class RsyncSync(NewBase):
decorated_func = 
retry_decorator(func_coroutine)

loop.run_until_complete(decorated_func())
out.eend(0)
-   except (GematoException, TimeoutError) as e:
+   except (GematoException, asyncio.TimeoutError) 
as e:
writemsg_level("!!! Manifest 
verification impossible due to keyring problem:\n%s\n"
% (e,),
level=logging.ERROR, 
noiselevel=-1)

diff --git a/pym/portage/tests/util/futures/test_retry.py 
b/pym/portage/tests/util/futures/test_retry.py
index 409f50971..27d8c7b61 100644
--- a/pym/portage/tests/util/futures/test_retry.py
+++ b/pym/portage/tests/util/futures/test_retry.py
@@ -12,7 +12,6 @@ from portage.tests import TestCase
 from portage.util._eventloop.global_event_loop import global_event_loop
 from portage.util.backoff import RandomExponentialBackoff
 from portage.util.futures import asyncio
-from portage.util.futures.futures import TimeoutError
 from portage.util.futures.retry import retry
 from portage.util.monotonic import monotonic
 
@@ -97,7 +96,7 @@ class RetryTestCase(TestCase):
decorated_func = decorator(func_coroutine)
done, pending = 
loop.run_until_complete(asyncio.wait([decorated_func()], loop=loop))
self.assertEqual(len(done), 1)
-   self.assertTrue(isinstance(done.pop().exception().__cause__, 
TimeoutError))
+   self.assertTrue(isinstance(done.pop().exception().__cause__, 
asyncio.TimeoutError))
 
def testHangForeverReraise(self):
loop = global_event_loop()._asyncio_wrapper
@@ -108,7 +107,7 @@ class RetryTestCase(TestCase):
decorated_func = decorator(func_coroutine)
done, pending = 
loop.run_until_complete(asyncio.wait([decorated_func()], loop=loop))
self.assertEqual(len(done), 1)
-   self.assertTrue(isinstance(done.pop().exception(), 
TimeoutError))
+   self.assertTrue(isinstance(done.pop().exception(), 
asyncio.TimeoutError))
 
def testCancelRetry(self):
loop = global_event_loop()._asyncio_wrapper
@@ -144,4 +143,4 @@ class RetryTestCase(TestCase):
decorated_func = decorator(func_coroutine)
done, pending = 
loop.run_until_complete(asyncio.wait([decorated_func()], loop=loop))
self.assertEqual(len(done), 1)
-   self.assertTrue(isinstance(done.pop().exception().__cause__, 
TimeoutError))
+   self.assertTrue(isinstance(done.pop().exception().__cause__, 
asyncio.TimeoutError))

diff --git a/pym/portage/util/futures/_asyncio/__init__.py 
b/pym/portage/util/futures/_asyncio/__init__.py
index d1584fdea..9ae050874 100644
--- a/pym/portage/util/futures/_asyncio/__init__.py
+++ b/pym/portage/util/futures/_asyncio/__init__.py
@@ -6,7 +6,10 @@ __all__ = (
'FIRST_COMPLETED',
'FIRST_EXCEPTION',
'ensure_future',
+   'CancelledError',
'Future',
+   'InvalidStateError',
+   'TimeoutError',
'get_child_watcher',
'get_event_loop',
'set_child_watcher',
@@ -26,7 +29,12 @@ import portage
 portage.proxy.lazyimport.lazyimport(globals(),
'portage.util.futures.unix_events:DefaultEventLoopPolicy',
 )
-from portage.util.futures.futures import Future
+from 

[gentoo-commits] repo/gentoo:master commit in: net-mail/courier-imap/

2018-04-16 Thread Michael Orlitzky
commit: 9870ebfbf0e777e471b3fd452fec1428c8e8023a
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Tue Apr 17 04:49:50 2018 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Tue Apr 17 04:50:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9870ebfb

net-mail/courier-imap: drop old courier-imap-4.15-r2.ebuild.

Bug: https://bugs.gentoo.org/616726
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-mail/courier-imap/Manifest|   1 -
 net-mail/courier-imap/courier-imap-4.15-r2.ebuild | 229 --
 2 files changed, 230 deletions(-)

diff --git a/net-mail/courier-imap/Manifest b/net-mail/courier-imap/Manifest
index 21c0d7f7c4b..9284ad63939 100644
--- a/net-mail/courier-imap/Manifest
+++ b/net-mail/courier-imap/Manifest
@@ -1,3 +1,2 @@
-DIST courier-imap-4.15.tar.bz2 3266353 BLAKE2B 
08b44e9a58f13ead65174b913e9caca3305aff5155adf4fc495c79b31f51326fa4917a6c3335d9ab956b7895f98d66b6c65501faa3dcf1a13527cae8c7c137de
 SHA512 
7829662282db5e6f414a1d34f06a94c2dd028e263510f01b49ebd3a1a4994055ecc08604568f5a44a30f6411e3a34e0d6c38807c29eaf255752191e885f82e1a
 DIST courier-imap-4.17.3.tar.bz2 3202534 BLAKE2B 
c42eb369bdcb65e7f904b3bd7b018e2785e48fddcc1690374ba254ce17a76b3191c301a81626f0fe44587f4f4b9e4f34edc06e8e8098c509b2c76e3830db2563
 SHA512 
3166cc703cdc09a71d33257671a662d95cfdb8977bc3b19e0218a4d25eb99a1a108d2868a6eb593106e6538aadf684f11ff0426cd58d522e3ca4b2988f0a88f1
 DIST courier-imap-4.18.0.tar.bz2 3202389 BLAKE2B 
3889d8db1bca082b1a8a1f1c8f04996ddcdf30b46e2aa3d16b45c46987426f75721223fc63810884a8fa2d8f8daf60d85c2909321abf0ef27e77cfcd0dc3c531
 SHA512 
16dedefe8a43ef48f76388c65ee7f100aaf12c30d9610f4c85f9adbd1adab374f9a0978930e70c221b551a60ed3d804f6b5e87a979b549f5c8249c34af1a3a64

diff --git a/net-mail/courier-imap/courier-imap-4.15-r2.ebuild 
b/net-mail/courier-imap/courier-imap-4.15-r2.ebuild
deleted file mode 100644
index 1f85f454e15..000
--- a/net-mail/courier-imap/courier-imap-4.15-r2.ebuild
+++ /dev/null
@@ -1,229 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils multilib libtool systemd
-
-DESCRIPTION="An IMAP daemon designed specifically for maildirs"
-HOMEPAGE="http://www.courier-mta.org/;
-SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
-IUSE="berkdb debug fam +gdbm ipv6 selinux gnutls trashquota"
-
-REQUIRED_USE="|| ( berkdb gdbm )"
-
-CDEPEND="
-   gnutls? ( net-libs/gnutls )
-   !gnutls? ( >=dev-libs/openssl-0.9.6:0= )
-   >=net-libs/courier-authlib-0.61
-   >=net-mail/mailbase-0.00-r8
-   berkdb? ( sys-libs/db:= )
-   fam? ( virtual/fam )
-   gdbm? ( >=sys-libs/gdbm-1.8.0 )"
-DEPEND="${CDEPEND}
-   dev-lang/perl
-   !mail-mta/courier
-   userland_GNU? ( sys-process/procps )"
-RDEPEND="${CDEPEND}
-   selinux? ( sec-policy/selinux-courier )"
-
-# get rid of old style virtual - bug 350792
-# all blockers really needed?
-RDEPEND="${RDEPEND}
-   !mail-mta/courier
-   !net-mail/bincimap
-   !net-mail/cyrus-imapd
-   !net-mail/uw-imap"
-
-RC_VER="4.0.6-r1"
-INITD_VER="4.0.6-r1"
-
-src_prepare() {
-   # Bug #48838. Patch to enable/disable FAM support.
-   # 20 Aug 2004 langth...@gentoo.org
-   # This patch should fix bug #51540. fam USE flag is not needed for 
shared folder support.
-   epatch "${FILESDIR}"/${P}-disable-fam-configure.ac.patch
-
-   # Kill unneeded call to AC_PROG_SYSCONFTOOL (bug #168206).
-   epatch "${FILESDIR}"/${P}-aclocal-fix.patch
-
-   # These patches should fix problems detecting BerkeleyDB.
-   # We now can compile with db4 support.
-   if use berkdb ; then
-   epatch \
-   "${FILESDIR}"/${P}-db4-bdbobj_configure.ac.patch \
-   "${FILESDIR}"/${P}-db4-configure.ac.patch
-   fi
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=""
-
-   # 19 Aug 2004 langth...@gentoo.org
-   # Default to gdbm if both berkdb and gdbm are present.
-   if use gdbm ; then
-   einfo "Building with GDBM support"
-   myconf="${myconf} --with-db=gdbm"
-   elif use berkdb ; then
-   einfo "Building with BerkeleyDB support"
-   myconf="${myconf} --with-db=db"
-   fi
-
-   # Disabling unicode is no longer supported
-   # By default all available character sets are included
-   # Set ENABLE_UNICODE=iso-8859-1,utf-8,iso-8859-10
-   # to include only specified translation tables.
-   if [[ -z "${ENABLE_UNICODE}" ]] ; then
-   einfo "ENABLE_UNICODE is not set, building with all available 
character sets"
-   myconf="${myconf} --enable-unicode"
-   else
-   einfo "ENABLE_UNICODE is set, building with 
unicode=${ENABLE_UNICODE}"
-  

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

2018-04-16 Thread Hans de Graaff
commit: dae38f21bde148af9283c410e5f662bacf57ebfa
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr 17 04:46:03 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr 17 04:46:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae38f21

dev-ruby/public_suffix: add ruby25

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/public_suffix/public_suffix-2.0.5.ebuild | 2 +-
 dev-ruby/public_suffix/public_suffix-3.0.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild 
b/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild
index d179489e04c..64a4157487a 100644
--- a/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild
+++ b/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRAINSTALL="data"

diff --git a/dev-ruby/public_suffix/public_suffix-3.0.2.ebuild 
b/dev-ruby/public_suffix/public_suffix-3.0.2.ebuild
index 49bc31f2424..6d100fd9668 100644
--- a/dev-ruby/public_suffix/public_suffix-3.0.2.ebuild
+++ b/dev-ruby/public_suffix/public_suffix-3.0.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRAINSTALL="data"



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

2018-04-16 Thread Hans de Graaff
commit: 5e91f0244a7eec0c4427a909456d24b391b35c83
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr 17 04:41:30 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr 17 04:41:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e91f024

dev-ruby/webmock: use the correct version of http for tests

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/webmock/webmock-2.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/webmock/webmock-2.3.2.ebuild 
b/dev-ruby/webmock/webmock-2.3.2.ebuild
index 40aee18ba47..e8260499166 100644
--- a/dev-ruby/webmock/webmock-2.3.2.ebuild
+++ b/dev-ruby/webmock/webmock-2.3.2.ebuild
@@ -35,7 +35,7 @@ all_ruby_prepare() {
# Remove bundler support
rm Gemfile || die
sed -i -e '/[Bb]undler/d' Rakefile || die
-   sed -i -e '/simplecov/I s:^:#:' spec/spec_helper.rb || die
+   sed -i -e '/simplecov/I s:^:#:' -e '1i gem "http", "~>0.8"' 
spec/spec_helper.rb || die
sed -i -e '1igem "test-unit"' test/test_helper.rb || die
 
# There is now optional support for curb and typhoeus which we don't



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

2018-04-16 Thread Hans de Graaff
commit: 173a72f3b89309a61686f30ed06610b43cc46204
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr 17 03:26:50 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr 17 03:26:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=173a72f3

dev-ruby/capistrano: add 3.10.2

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/capistrano/Manifest |  1 +
 dev-ruby/capistrano/capistrano-3.10.2.ebuild | 40 
 2 files changed, 41 insertions(+)

diff --git a/dev-ruby/capistrano/Manifest b/dev-ruby/capistrano/Manifest
index 05ba61ef9cb..f71689366a9 100644
--- a/dev-ruby/capistrano/Manifest
+++ b/dev-ruby/capistrano/Manifest
@@ -1,5 +1,6 @@
 DIST capistrano-2.15.5.gem 132096 BLAKE2B 
bbaa6bd482cf9bbe7aa01540aa5dab3f32401ffa1476d9057bb8ad420194f1ab2c32d8e744d7c982ebece5c4b5369133dc8378b7adf54c78732f9cb249db2a9e
 SHA512 
10168080c7481ec6fc6f918ac90a3b1ce8f2b36f77411375e33cc915b02d5196ab061ac47e767edd724c82cffd1c2ad0a23ba1f0519cf1f2aae5b429167b19ff
 DIST capistrano-3.10.0.gem 77824 BLAKE2B 
5d361a0d249959b28354e627ff7659d5f48d66a73997a1da58f6aaf33690f593042595ff0f73d29885df5c8771e49c8659363f584239af657baa022ffd8b1791
 SHA512 
5408d0feb813af2be37e7527b56fd3569ac69ec27e02b52438de4c1433358521c2c7d9c2fa619ba714a5f14415b8e3b589a9e2baf54d81d4e31a6ac267e07953
 DIST capistrano-3.10.1.gem 77824 BLAKE2B 
548c86c0740703a5b0b92890806411221ea7a9942776d88fc999ce998e3cf5842d809e293d05111ce44cb849719900c7335c43d3795d7147688d48d53a19a133
 SHA512 
6f3f11498d26c426da740873022767ded44e1be1aea01772d1a5c43dcf2589d5cf2279625470e2e2733d60d3ec865a39640ad4a14b2ef9a64b3da2da579b
+DIST capistrano-3.10.2.gem 78336 BLAKE2B 
782cf09f810fd91f4878e126c12d57d19b75c1ccdf3dfee7b2078904743bf51047d1f948e64e6c41460fdaf0a3a9e5a2b646bd6a797f8ce97bc29fab9ca9c533
 SHA512 
a7eadcd0b949baab2d6ad09c2243f71ec803f85b5c3cf455068d3b0889be30d0f6bbee4ef0bdf90b9c7ec6c3e01886d350fd8a70824366383f7dcc49f0a8c92e
 DIST capistrano-3.4.1.gem 46080 BLAKE2B 
0e02a401b04733e7c55dae4397486ddeb518ba91fd9b543cb86c0398524471f1b8f00a41fb7ebae64e69bff806f1267fcd8a634c76f944dfccc10eb4118360cf
 SHA512 
ef3b8735aa91137234937b5704a74b965be729581e71df9794324303dba60eacb91c66c1b38f8154f315cd4d17f98e8ab6f491cd1634b59b51b320f2244f6ae1
 DIST capistrano-3.9.1.gem 77312 BLAKE2B 
1aedc4739451fb028fa0d91f1bb1c1501c373f971c6ae7f8e15f7cd3ee13483b7d8d05ee967a96f3efcf3021d112be40ccb562f0bccde273cc7b5e4bb78cada1
 SHA512 
b9dcb21c43ee03cb250a5d740a3fb1ccced720efecf5168a394e8dc0ea56130fd77255f0ead260a7b221d222d34361e99ee68f29cbf498e599e6e5c73c099907

diff --git a/dev-ruby/capistrano/capistrano-3.10.2.ebuild 
b/dev-ruby/capistrano/capistrano-3.10.2.ebuild
new file mode 100644
index 000..4f29f3288d2
--- /dev/null
+++ b/dev-ruby/capistrano/capistrano-3.10.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A distributed application deployment system"
+HOMEPAGE="http://capistranorb.com/;
+
+LICENSE="MIT"
+SLOT="3"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/airbrussh-1.0.0
+   >=dev-ruby/sshkit-1.9:0
+   >=dev-ruby/rake-10.0.0
+   dev-ruby/i18n:*
+   !!http://goo.gl/SxB0lr;
+   einfo "If you're upgrading Capistrano from 2.x, we recommend to read 
the upgrade guide: http://goo.gl/4536kB;
+   einfo "The 'deploy:restart' hook for passenger applications is now in a 
separate gem called capistrano-passenger.  Just add it to your Gemfile and 
require it in your Capfile."
+}



[gentoo-commits] repo/gentoo:master commit in: www-apps/nanoc/

2018-04-16 Thread Hans de Graaff
commit: aa31d700dd52184f92f56910438cd913492e507a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr 17 04:27:36 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr 17 04:27:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa31d700

www-apps/nanoc: add ruby24

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/nanoc/nanoc-4.8.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/nanoc/nanoc-4.8.10.ebuild 
b/www-apps/nanoc/nanoc-4.8.10.ebuild
index b1c3454fd12..a98bfc00657 100644
--- a/www-apps/nanoc/nanoc-4.8.10.ebuild
+++ b/www-apps/nanoc/nanoc-4.8.10.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23"
+USE_RUBY="ruby23 ruby24"
 
 RUBY_FAKEGEM_EXTRADOC="NEWS.md README.md"
 



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

2018-04-16 Thread Hans de Graaff
commit: cc81854cc5e57a992cf65d3fc620c40985432c0d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr 17 04:18:43 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr 17 04:18:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc81854c

dev-ruby/pdf-reader: add ruby25

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/pdf-reader/pdf-reader-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/pdf-reader/pdf-reader-2.1.0.ebuild 
b/dev-ruby/pdf-reader/pdf-reader-2.1.0.ebuild
index 357c7c001c5..334dc6886ff 100644
--- a/dev-ruby/pdf-reader/pdf-reader-2.1.0.ebuild
+++ b/dev-ruby/pdf-reader/pdf-reader-2.1.0.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 GITHUB_USER=yob
 
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/portage/

2018-04-16 Thread Zac Medico
commit: e53d4dff6dbac4307b93d2d17a0f65d1228261f0
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Apr 17 03:08:23 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr 17 03:11:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e53d4dff

sys-apps/portage: version bump to 2.3.29

  #649588 - asyncio.AbstractEventLoop implementation based on internal
event loop
  #652938 - binary packages built against older subslot trigger
downgrade of installed package
  #653230 - app-portage/porthole PORTDIR KeyError
  #650696 - default to sync-rsync-verify-jobs = 1
  #653352 - Stripping of files broken with >=sys-apps/file-5.33

Package-Manager: Portage-2.3.29, Repoman-2.3.9

 sys-apps/portage/Manifest  |   1 +
 sys-apps/portage/portage-2.3.29.ebuild | 284 +
 2 files changed, 285 insertions(+)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index 14ba1b5806f..4df28171a0a 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -5,4 +5,5 @@ DIST portage-2.3.24.tar.bz2 959266 BLAKE2B 
bc15f10599c694ad29f5a55264e929d0a04a9
 DIST portage-2.3.26.tar.bz2 970245 BLAKE2B 
b854bef894327b9e4beabca55d70368d326548d96efdc5b63e47f77971da195d041c8e8412bbb308ef6922be02964727c99f9dcc92a2a4b0a7372e0a1c774ffe
 SHA512 
5acb8a00fdbc72a8c3e79f8b1c2ba17c9b469205edf1e56592db9ccfeb54b4dc83a98548ff0e01c408456a1c962262377967f6d70510c8d1b0e7ab15eab51079
 DIST portage-2.3.27.tar.bz2 970480 BLAKE2B 
dc46362773544102d9a07e686759d454a37177e9ac6e88d664c1aeb1676b9fb4e12662500f1de63644ad5eaf69d58bf85f38339c18d695cdc42930746dedb731
 SHA512 
791c87ffe958e883fe16562e69e606dd7ff860c13b2262b3eaa665f78acacdcb547c5e124b69d2c0faa36147fdc7c1d60669dee43b7401ea4f89784a619f81fe
 DIST portage-2.3.28.tar.bz2 975684 BLAKE2B 
70f944700bba66e369877ffdb76c829d6521d429c65ded482482058639478c1c6e27366cb509252e59a4c3d2d295211f4efc2cecd84f7790674429a42a399a72
 SHA512 
208237faeee844bca829adc42b0407c246e09e91d5c5850c27696eb201f1009a87dce0b28cbbca4a27f2c9d58c0c102387a41483c976642acade83679a980777
+DIST portage-2.3.29.tar.bz2 985401 BLAKE2B 
b0811fa0506fce7e6c8e7ddba8383e54990113da9300d6ecd65ceff1cfd7cc5dc916e6f2e29885ca2d526dd009be7844076bb152c4c9a437b47b746b400c9d59
 SHA512 
47acbcdacb01253bc30758d523eee0b90ac0cc2061464870bf5a3a72b80776fe686ae73875f1f46f1ed51d4f30677f3f1ec6d75d9d79a24bf60ba9d8e5e950cc
 DIST portage-2.3.8.tar.bz2 938062 BLAKE2B 
3f7bedf6268131a3b3539d53c8a7bb069b533b3a78e5eec521b6201439c8ee5e66996e798fe295561d0a94bfcd32adf414d4f8b5e7a93035cea09749406e64a3
 SHA512 
4b4b2de20323799b9b0f7a8812f939aa9a96d2744a0f65ad5287ba49744c491b55169cdb21f2885317a6a7c960d2070775ffd798f247b44eebc677c33c271eb8

diff --git a/sys-apps/portage/portage-2.3.29.ebuild 
b/sys-apps/portage/portage-2.3.29.ebuild
new file mode 100644
index 000..376030121e0
--- /dev/null
+++ b/sys-apps/portage/portage-2.3.29.ebuild
@@ -0,0 +1,284 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=(
+   pypy
+   python3_4 python3_5 python3_6
+   python2_7
+)
+PYTHON_REQ_USE='bzip2(+),threads(+)'
+
+inherit distutils-r1 systemd
+
+DESCRIPTION="Portage is the package management and distribution system for 
Gentoo"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+SLOT="0"
+IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
+
+DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') )
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   >=sys-apps/sed-4.0.5 sys-devel/patch
+   doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 )
+   epydoc? ( >=dev-python/epydoc-2.0[$(python_gen_usedep 'python2*')] )"
+# Require sandbox-2.2 for bug #288863.
+# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's
+# quite slow, so it's not considered in the dependencies as an alternative to
+# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so
+# for now, don't pull in xattr deps for other kernels.
+# For whirlpool hash, require python[ssl] (bug #425046).
+# For compgen, require bash[readline] (bug #445576).
+# app-portage/gemato goes without PYTHON_USEDEP since we're calling
+# the executable.
+RDEPEND="
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   !build? (
+   >=sys-apps/sed-4.0.5
+   app-shells/bash:0[readline]
+   >=app-admin/eselect-1.2
+   $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' \
+   python{2_7,3_4,3_5} pypy)
+   rsync-verify? (
+   >=app-portage/gemato-12.1
+   app-crypt/gentoo-keys
+   >=app-crypt/gnupg-2.2.4-r2[ssl(-)]
+   )
+   )
+   

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

2018-04-16 Thread Zac Medico
commit: 97c4179e03e709a4281c36c6ac8c3ea9f8dfb529
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Apr 17 02:55:03 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr 17 02:55:03 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=97c4179e

Updates for portage-2.3.29 release

 NEWS  |  5 +
 RELEASE-NOTES | 12 
 setup.py  |  2 +-
 3 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/NEWS b/NEWS
index ab8328229..f71cc33f7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,10 @@
 News (mainly features/major bug fixes)
 
+portage-2.3.29
+
+* Portage API consumers can use asyncio with portage's internal event
+  loop, see portage.util.futures.unix_events.DefaultEventLoopPolicy.
+
 portage-2.3.25
 
 * Experimental support for EAPI 7_pre1.

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 9835baa00..9cb516fb8 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,18 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+portage-2.3.29
+==
+* Bug Fixes:
+- Bug 649588 asyncio.AbstractEventLoop implementation based on
+  internal event loop
+- Bug 652938 binary packages built against older subslot trigger
+  downgrade of installed package
+- Bug 653230 app-portage/porthole PORTDIR KeyError
+- Bug 650696 default to sync-rsync-verify-jobs = 1
+- Bug 653352 Stripping of files broken with >=sys-apps/file-5.33
+
+
 portage-2.3.28
 ==
 * Bug Fixes:

diff --git a/setup.py b/setup.py
index 2cdb3becd..16864168d 100755
--- a/setup.py
+++ b/setup.py
@@ -663,7 +663,7 @@ class build_ext(_build_ext):
 
 setup(
name = 'portage',
-   version = '2.3.28',
+   version = '2.3.29',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



[gentoo-commits] proj/portage: New tag: portage-2.3.29

2018-04-16 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr 17 03:13:47 2018 +

New tag: portage-2.3.29




[gentoo-commits] proj/portage:master commit in: man/, cnf/, pym/portage/sync/modules/rsync/

2018-04-16 Thread Zac Medico
commit: 7b448e90034de00bc177b3d809aeaf9b94d55ee2
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Apr 13 17:01:45 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr 17 02:25:25 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=7b448e90

rsync: default to sync-rsync-verify-jobs = 1 (bug 650696)

Some users have reported that using all processors to verify
manifests results in overloading, therefore default to using
a single processor. On modern hardware, verification of the
gentoo repository completes in less than 20 seconds, so using
multiple processors is not really necessary. Also, gemato-13.0
disables parallel verification due to the unresolved deadlock
issue reported in bug 647964, so this brings the default
portage configuration into alignment with current gemato
behavior.

Bug: https://bugs.gentoo.org/650696
Bug: https://bugs.gentoo.org/647964

 cnf/repos.conf  | 1 +
 man/portage.5   | 8 +---
 pym/portage/sync/modules/rsync/rsync.py | 7 ++-
 3 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/cnf/repos.conf b/cnf/repos.conf
index 5759b8b43..987be6462 100644
--- a/cnf/repos.conf
+++ b/cnf/repos.conf
@@ -6,6 +6,7 @@ location = /usr/portage
 sync-type = rsync
 sync-uri = rsync://rsync.gentoo.org/gentoo-portage
 auto-sync = yes
+sync-rsync-verify-jobs = 1
 sync-rsync-verify-metamanifest = yes
 sync-rsync-verify-max-age = 24
 sync-openpgp-key-path = 
/var/lib/gentoo/gkeys/keyrings/gentoo/release/pubring.gpg

diff --git a/man/portage.5 b/man/portage.5
index 82a50a8f4..5adb07d82 100644
--- a/man/portage.5
+++ b/man/portage.5
@@ -1105,9 +1105,11 @@ Ignore vcs directories that may be present in the 
repository. It is the
 user's responsibility to set sync-rsync-extra-opts to protect vcs
 directories if appropriate.
 .TP
-.B sync\-rsync\-verify\-jobs
-Number of parallel jobs to use when verifying nested Manifests. Defaults
-to the apparent number of processors.
+.B sync\-rsync\-verify\-jobs = 1
+Number of parallel jobs to use when verifying nested Manifests. When
+set to 0, this will use the apparent number of processors if parallel
+verification is supported by the installed version of app-portage/gemato.
+Defaults to 1.
 .TP
 .B sync\-rsync\-verify\-max\-age
 Warn if repository is older than the specified number of days. Disabled

diff --git a/pym/portage/sync/modules/rsync/rsync.py 
b/pym/portage/sync/modules/rsync/rsync.py
index 763f41699..de8327a55 100644
--- a/pym/portage/sync/modules/rsync/rsync.py
+++ b/pym/portage/sync/modules/rsync/rsync.py
@@ -107,12 +107,17 @@ class RsyncSync(NewBase):
if self.verify_jobs is not None:
try:
self.verify_jobs = int(self.verify_jobs)
-   if self.verify_jobs <= 0:
+   if self.verify_jobs < 0:
raise ValueError(self.verify_jobs)
except ValueError:
writemsg_level("!!! sync-rsync-verify-jobs not 
a positive integer: %s\n" % (self.verify_jobs,),
level=logging.WARNING, noiselevel=-1)
self.verify_jobs = None
+   else:
+   if self.verify_jobs == 0:
+   # Use the apparent number of processors 
if gemato
+   # supports it.
+   self.verify_jobs = None
# Support overriding max age.
self.max_age = self.repo.module_specific_options.get(
'sync-rsync-verify-max-age', '')



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

2018-04-16 Thread Zac Medico
commit: 3628eaf7d4691c249943e9059ba2ddc60253ba82
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Apr 16 01:33:59 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr 17 02:22:00 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=3628eaf7

config.environ(): filter PORTDIR only when required (bug 653230)

The changes related bug 373349 were more aggressive than necessary,
causing the PORTDIR variable to be omitted from config.environ()
calls when the EAPI is defined. We really only need to filter the
PORTDIR variable when the current EAPI requires it.

Fixes: 802e7d0bdd96 ("Do not export PORTDIR & ECLASSDIR in EAPI 7")
Bug: https://bugs.gentoo.org/653230

 pym/portage/eapi.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/portage/eapi.py b/pym/portage/eapi.py
index cdbbf07fb..b0f993a14 100644
--- a/pym/portage/eapi.py
+++ b/pym/portage/eapi.py
@@ -159,7 +159,7 @@ def _get_eapi_attrs(eapi):
dots_in_use_flags = (eapi is None or 
eapi_allows_dots_in_use_flags(eapi)),
empty_groups_always_true = (eapi is not None and 
eapi_empty_groups_always_true(eapi)),
exports_EBUILD_PHASE_FUNC = (eapi is None or 
eapi_exports_EBUILD_PHASE_FUNC(eapi)),
-   exports_PORTDIR = (eapi is not None and 
eapi_exports_PORTDIR(eapi)),
+   exports_PORTDIR = (eapi is None or eapi_exports_PORTDIR(eapi)),
exports_ECLASSDIR = (eapi is not None and 
eapi_exports_ECLASSDIR(eapi)),
feature_flag_test = True,
feature_flag_targetroot = (eapi is not None and 
eapi_has_targetroot(eapi)),



[gentoo-commits] proj/portage:master commit in: pym/portage/tests/util/futures/asyncio/, pym/portage/util/futures/

2018-04-16 Thread Zac Medico
commit: 72914c0dbae1dfab7565a627451b616e330b8889
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Apr 15 10:11:21 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr 17 02:19:57 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=72914c0d

Implement AbstractEventLoop.connect_write_pipe (bug 649588)

In python versions that support asyncio, this allows API consumers
to use subprocess.PIPE for asyncio.create_subprocess_exec() stdin
parameters.

Bug: https://bugs.gentoo.org/649588

 .../util/futures/asyncio/test_subprocess_exec.py   |  34 +++
 pym/portage/util/futures/transports.py |  90 +++
 pym/portage/util/futures/unix_events.py| 259 -
 3 files changed, 373 insertions(+), 10 deletions(-)

diff --git a/pym/portage/tests/util/futures/asyncio/test_subprocess_exec.py 
b/pym/portage/tests/util/futures/asyncio/test_subprocess_exec.py
index 94984fc93..8c8c395ca 100644
--- a/pym/portage/tests/util/futures/asyncio/test_subprocess_exec.py
+++ b/pym/portage/tests/util/futures/asyncio/test_subprocess_exec.py
@@ -191,3 +191,37 @@ class SubprocessExecTestCase(TestCase):
self.assertEqual(loop.run_until_complete(proc.wait()), 
os.EX_OK)
 
self._run_test(test)
+
+   def testWriteTransport(self):
+   """
+   Test asyncio.create_subprocess_exec(stdin=subprocess.PIPE) which
+   requires an AbstractEventLoop.connect_write_pipe implementation
+   (and a WriteTransport implementation for it to return).
+   """
+   if not hasattr(asyncio, 'create_subprocess_exec'):
+   self.skipTest('create_subprocess_exec not implemented 
for python2')
+
+   stdin_data = b'hello world'
+   cat_binary = find_binary("cat")
+   self.assertNotEqual(cat_binary, None)
+   cat_binary = cat_binary.encode()
+
+   def test(loop):
+   proc = loop.run_until_complete(
+   asyncio.create_subprocess_exec(
+   cat_binary,
+   stdin=subprocess.PIPE,
+   stdout=subprocess.PIPE, 
stderr=subprocess.STDOUT))
+
+   # This buffers data when necessary to avoid blocking.
+   proc.stdin.write(stdin_data)
+   # Any buffered data is written asynchronously after the
+   # close method is called.
+   proc.stdin.close()
+
+   self.assertEqual(
+   loop.run_until_complete(proc.stdout.read()),
+   stdin_data)
+   self.assertEqual(loop.run_until_complete(proc.wait()), 
os.EX_OK)
+
+   self._run_test(test)

diff --git a/pym/portage/util/futures/transports.py 
b/pym/portage/util/futures/transports.py
new file mode 100644
index 0..60ea93073
--- /dev/null
+++ b/pym/portage/util/futures/transports.py
@@ -0,0 +1,90 @@
+# Copyright 2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+try:
+   from asyncio.transports import Transport as _Transport
+except ImportError:
+   _Transport = object
+
+
+class _FlowControlMixin(_Transport):
+   """
+   This is identical to the standard library's private
+   asyncio.transports._FlowControlMixin class.
+
+   All the logic for (write) flow control in a mix-in base class.
+
+   The subclass must implement get_write_buffer_size().  It must call
+   _maybe_pause_protocol() whenever the write buffer size increases,
+   and _maybe_resume_protocol() whenever it decreases.  It may also
+   override set_write_buffer_limits() (e.g. to specify different
+   defaults).
+
+   The subclass constructor must call super().__init__(extra).  This
+   will call set_write_buffer_limits().
+
+   The user may call set_write_buffer_limits() and
+   get_write_buffer_size(), and their protocol's pause_writing() and
+   resume_writing() may be called.
+   """
+
+   def __init__(self, extra=None, loop=None):
+   super().__init__(extra)
+   assert loop is not None
+   self._loop = loop
+   self._protocol_paused = False
+   self._set_write_buffer_limits()
+
+   def _maybe_pause_protocol(self):
+   size = self.get_write_buffer_size()
+   if size <= self._high_water:
+   return
+   if not self._protocol_paused:
+   self._protocol_paused = True
+   try:
+   self._protocol.pause_writing()
+   except Exception as exc:
+   self._loop.call_exception_handler({
+   'message': 

[gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/, bin/

2018-04-16 Thread Zac Medico
commit: ae6d6aa22d074c04cd9caefe1ca02bf615bfd86f
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Tue Apr 17 02:06:38 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr 17 02:11:19 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ae6d6aa2

estrip, install-qa-check.d/10ignored-flags: fix bug 653352

Update detection of ELF files to work with >=sys-apps/file-5.33.

Bug: https://bugs.gentoo.org/653352

 bin/estrip | 3 ++-
 bin/install-qa-check.d/10ignored-flags | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/bin/estrip b/bin/estrip
index 030d9e8bf..5709b862c 100755
--- a/bin/estrip
+++ b/bin/estrip
@@ -427,7 +427,8 @@ do
${STRIP} -g "${x}"
fi
fi
-   elif [[ ${f} == *"SB executable"* || ${f} == *"SB shared object"* ]] ; 
then
+   elif [[ ${f} == *"SB executable"* || ${f} == *"SB pie executable"* ||
+   ${f} == *"SB shared object"* ]] ; then
process_elf "${x}" "${inode_link}" ${PORTAGE_STRIP_FLAGS}
elif [[ ${f} == *"SB relocatable"* ]] ; then
process_elf "${x}" "${inode_link}" ${SAFE_STRIP_FLAGS}

diff --git a/bin/install-qa-check.d/10ignored-flags 
b/bin/install-qa-check.d/10ignored-flags
index 28aec6787..dc160e182 100644
--- a/bin/install-qa-check.d/10ignored-flags
+++ b/bin/install-qa-check.d/10ignored-flags
@@ -32,7 +32,7 @@ ignored_flag_check() {
# similar to how prepstrip uses it.
f=$(file "${x}") || continue
[[ -z ${f} ]] && continue
-   if [[ ${f} == *"SB executable"* ||
+   if [[ ${f} == *"SB executable"* || ${f} == *"SB pie 
executable"* ||
${f} == *"SB shared object"* ]] ; then
echo "${x}" >> "${T}"/scanelf-ignored-CFLAGS.log
fi



[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-server/, x11-base/xorg-server/files/

2018-04-16 Thread Matt Turner
commit: 4abddc5e499eef7cdb177e4b8c98219284c376e4
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Apr 17 01:35:22 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Apr 17 01:35:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4abddc5e

x11-base/xorg-server: Cherry-pick two patches from upstream

Closes: https://bugs.gentoo.org/653288
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 ...-Move-GBM-code-inside-ifdef-GLAMOR_HAS_GB.patch |  48 ++
 99.904-xwayland-Fix-build-without-glamor.patch | 175 +
 .../xorg-server/xorg-server-1.19.99.904.ebuild |   7 +-
 3 files changed, 227 insertions(+), 3 deletions(-)

diff --git 
a/x11-base/xorg-server/files/xorg-server-1.19.99.904-modesetting-Move-GBM-code-inside-ifdef-GLAMOR_HAS_GB.patch
 
b/x11-base/xorg-server/files/xorg-server-1.19.99.904-modesetting-Move-GBM-code-inside-ifdef-GLAMOR_HAS_GB.patch
new file mode 100644
index 000..f0c4ed58d33
--- /dev/null
+++ 
b/x11-base/xorg-server/files/xorg-server-1.19.99.904-modesetting-Move-GBM-code-inside-ifdef-GLAMOR_HAS_GB.patch
@@ -0,0 +1,48 @@
+From a98a95b798a0062783ae6fd2135ad488af5efcfd Mon Sep 17 00:00:00 2001
+From: Matt Turner 
+Date: Sun, 15 Apr 2018 23:37:45 -0700
+Subject: [PATCH xserver 2/2] modesetting: Move GBM code inside #ifdef
+ GLAMOR_HAS_GBM
+
+Fixes a compilation error without Glamor.
+
+Bugzilla: https://bugs.gentoo.org/653288
+Signed-off-by: Matt Turner 
+Reviewed-by: Olivier Fourdan 
+---
+ hw/xfree86/drivers/modesetting/drmmode_display.c | 14 +++---
+ 1 file changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/hw/xfree86/drivers/modesetting/drmmode_display.c 
b/hw/xfree86/drivers/modesetting/drmmode_display.c
+index 322ef050b..79e91f0f8 100644
+--- a/hw/xfree86/drivers/modesetting/drmmode_display.c
 b/hw/xfree86/drivers/modesetting/drmmode_display.c
+@@ -998,18 +998,18 @@ static Bool
+ drmmode_create_bo(drmmode_ptr drmmode, drmmode_bo *bo,
+   unsigned width, unsigned height, unsigned bpp)
+ {
+-uint32_t format;
+-
+-if (drmmode->scrn->depth == 30)
+-format = GBM_FORMAT_ARGB2101010;
+-else
+-format = GBM_FORMAT_ARGB;
+-
+ bo->width = width;
+ bo->height = height;
+ 
+ #ifdef GLAMOR_HAS_GBM
+ if (drmmode->glamor) {
++uint32_t format;
++
++if (drmmode->scrn->depth == 30)
++format = GBM_FORMAT_ARGB2101010;
++else
++format = GBM_FORMAT_ARGB;
++
+ #ifdef GBM_BO_WITH_MODIFIERS
+ uint32_t num_modifiers;
+ uint64_t *modifiers = NULL;
+-- 
+2.16.1
+

diff --git 
a/x11-base/xorg-server/files/xorg-server-1.19.99.904-xwayland-Fix-build-without-glamor.patch
 
b/x11-base/xorg-server/files/xorg-server-1.19.99.904-xwayland-Fix-build-without-glamor.patch
new file mode 100644
index 000..312a5e05cdc
--- /dev/null
+++ 
b/x11-base/xorg-server/files/xorg-server-1.19.99.904-xwayland-Fix-build-without-glamor.patch
@@ -0,0 +1,175 @@
+From c3ae963a7b19e05b8296aae8b6354587756d48fa Mon Sep 17 00:00:00 2001
+From: Olivier Fourdan 
+Date: Mon, 16 Apr 2018 09:39:09 +0200
+Subject: [PATCH xserver 1/2] xwayland: Fix build without glamor
+
+Present support in Xwayland relies on glamor, make sure Xwayland can
+be built without glamor by moving references to Present code inside
+the conditional GLAMOR_HAS_GBM.
+
+Reported-by: Matt Turner 
+Signed-off-by: Olivier Fourdan 
+Reviewed-by: Matt Turner 
+Reviewed-by: Roman Gilg 
+---
+ hw/xwayland/Makefile.am |  4 ++--
+ hw/xwayland/meson.build |  3 +--
+ hw/xwayland/xwayland.c  | 10 +-
+ hw/xwayland/xwayland.h  |  7 ++-
+ 4 files changed, 18 insertions(+), 6 deletions(-)
+
+diff --git a/hw/xwayland/Makefile.am b/hw/xwayland/Makefile.am
+index 0291afee7..80d3a1f19 100644
+--- a/hw/xwayland/Makefile.am
 b/hw/xwayland/Makefile.am
+@@ -11,7 +11,6 @@ Xwayland_CFLAGS =\
+ 
+ Xwayland_SOURCES =\
+   xwayland.c  \
+-  xwayland-present.c  \
+   xwayland-input.c\
+   xwayland-cursor.c   \
+   xwayland-shm.c  \
+@@ -35,7 +34,8 @@ Xwayland_built_sources =
+ 
+ if GLAMOR_EGL
+ Xwayland_SOURCES +=   \
+-  xwayland-glamor.c
++  xwayland-glamor.c   \
++  xwayland-present.c
+ if XV
+ Xwayland_SOURCES +=   \
+   xwayland-glamor-xv.c
+diff --git a/hw/xwayland/meson.build b/hw/xwayland/meson.build
+index 69a5c819a..8d178825e 100644
+--- a/hw/xwayland/meson.build
 b/hw/xwayland/meson.build
+@@ -1,6 +1,5 @@
+ srcs = [
+ 'xwayland.c',
+-'xwayland-present.c',
+ 'xwayland-input.c',
+ 'xwayland-cursor.c',
+ 

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

2018-04-16 Thread Aaron Bauman
commit: ccbc8eb528dabbf77dacba34e5ea545231a55b90
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 17 01:31:09 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 17 01:31:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccbc8eb5

dev-libs/libressl: enable REQUIRED_USE for tests and drop eutils

Upstream has noted that tests require static-libs. As such, require that
static-libs USE flag is set. Additionally, drop eutils eclass in favor
of ltprune as the only function called is prune_libtool_files.

Closes: https://bugs.gentoo.org/625266
Closes: https://bugs.gentoo.org/607960
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-libs/libressl/libressl-2.6.0.ebuild | 7 +++
 dev-libs/libressl/libressl-2.6.4.ebuild | 5 +++--
 dev-libs/libressl/libressl-2.7.2.ebuild | 5 +++--
 3 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/dev-libs/libressl/libressl-2.6.0.ebuild 
b/dev-libs/libressl/libressl-2.6.0.ebuild
index 44ecf27ddcb..2613eb39b53 100644
--- a/dev-libs/libressl/libressl-2.6.0.ebuild
+++ b/dev-libs/libressl/libressl-2.6.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit eutils multilib-minimal
+inherit ltprune multilib-minimal
 
 DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
 HOMEPAGE="https://www.libressl.org/;
@@ -15,14 +15,13 @@ LICENSE="ISC openssl"
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/43"
 KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86"
-IUSE="+asm static-libs"
+IUSE="+asm static-libs test"
+REQUIRED_USE="test? ( static-libs )"
 
 RDEPEND="!dev-libs/openssl:0"
 DEPEND="${RDEPEND}"
 PDEPEND="app-misc/ca-certificates"
 
-RESTRICT="test" # bug #625266
-
 src_prepare() {
touch crypto/Makefile.in
 

diff --git a/dev-libs/libressl/libressl-2.6.4.ebuild 
b/dev-libs/libressl/libressl-2.6.4.ebuild
index b4987334136..d8f2130d4b1 100644
--- a/dev-libs/libressl/libressl-2.6.4.ebuild
+++ b/dev-libs/libressl/libressl-2.6.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit eutils multilib-minimal
+inherit ltprune multilib-minimal
 
 DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
 HOMEPAGE="https://www.libressl.org/;
@@ -15,7 +15,8 @@ LICENSE="ISC openssl"
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/44"
 KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
-IUSE="+asm static-libs"
+IUSE="+asm static-libs test"
+REQUIRED_USE="test? ( static-libs )"
 
 RDEPEND="!dev-libs/openssl:0"
 DEPEND="${RDEPEND}"

diff --git a/dev-libs/libressl/libressl-2.7.2.ebuild 
b/dev-libs/libressl/libressl-2.7.2.ebuild
index af207c40014..d988e0c8f01 100644
--- a/dev-libs/libressl/libressl-2.7.2.ebuild
+++ b/dev-libs/libressl/libressl-2.7.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit eutils multilib-minimal
+inherit ltprune multilib-minimal
 
 DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
 HOMEPAGE="https://www.libressl.org/;
@@ -16,7 +16,8 @@ LICENSE="ISC openssl"
 SLOT="0/45"
 #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 KEYWORDS=""
-IUSE="+asm static-libs"
+IUSE="+asm static-libs test"
+REQUIRED_USE="test? ( static-libs )"
 
 RDEPEND="!dev-libs/openssl:0"
 DEPEND="${RDEPEND}"



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

2018-04-16 Thread Zac Medico
commit: 9772f8f2a58a858a80ad1542d1ce46193616be67
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Apr 16 23:55:14 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr 17 00:49:09 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=9772f8f2

EventLoop._idle_add: use thread-safe deque append

This fixes previously unsafe usage of self._idle_callbacks when it was
a dictionary. The deque append is thread-safe, but it does *not* notify
the loop's thread, so the caller must notify if appropriate.

Fixes: 1ee8971ba1cb ("EventLoop: eliminate thread safety from call_soon")

 pym/portage/util/_eventloop/EventLoop.py | 90 
 1 file changed, 58 insertions(+), 32 deletions(-)

diff --git a/pym/portage/util/_eventloop/EventLoop.py 
b/pym/portage/util/_eventloop/EventLoop.py
index ae5a0a70a..d4f20c6ed 100644
--- a/pym/portage/util/_eventloop/EventLoop.py
+++ b/pym/portage/util/_eventloop/EventLoop.py
@@ -3,6 +3,7 @@
 
 from __future__ import division
 
+import collections
 import errno
 import functools
 import logging
@@ -30,7 +31,6 @@ portage.proxy.lazyimport.lazyimport(globals(),

'portage.util.futures.unix_events:_PortageEventLoop,_PortageChildWatcher',
 )
 
-from portage import OrderedDict
 from portage.util import writemsg_level
 from portage.util.monotonic import monotonic
 from ..SlotObject import SlotObject
@@ -55,7 +55,7 @@ class EventLoop(object):
__slots__ = ("callback", "data", "pid", "source_id")
 
class _idle_callback_class(SlotObject):
-   __slots__ = ("args", "callback", "calling", "source_id")
+   __slots__ = ("_args", "_callback", "_calling", "_cancelled")
 
class _io_handler_class(SlotObject):
__slots__ = ("args", "callback", "f", "source_id")
@@ -141,10 +141,10 @@ class EventLoop(object):
# If this attribute has changed since the last time that the
# call_soon callbacks have been called, then it's not safe to
# wait on self._thread_condition without a timeout.
-   self._call_soon_id = 0
-   # Use OrderedDict in order to emulate the FIFO queue behavior
-   # of the AbstractEventLoop.call_soon method.
-   self._idle_callbacks = OrderedDict()
+   self._call_soon_id = None
+   # Use deque, with thread-safe append, in order to emulate the 
FIFO
+   # queue behavior of the AbstractEventLoop.call_soon method.
+   self._idle_callbacks = collections.deque()
self._timeout_handlers = {}
self._timeout_interval = None
self._default_executor = None
@@ -298,7 +298,10 @@ class EventLoop(object):
events_handled += 1
timeouts_checked = True
 
-   call_soon = prev_call_soon_id != 
self._call_soon_id
+   call_soon = prev_call_soon_id is not 
self._call_soon_id
+   if self._call_soon_id is not None and 
self._call_soon_id._cancelled:
+   # Allow garbage collection of cancelled 
callback.
+   self._call_soon_id = None
 
if (not call_soon and not event_handlers
and not events_handled and may_block):
@@ -501,8 +504,9 @@ class EventLoop(object):
 
@type callback: callable
@param callback: a function to call
-   @rtype: int
-   @return: an integer ID
+   @return: a handle which can be used to cancel the callback
+   via the source_remove method
+   @rtype: object
"""
with self._thread_condition:
source_id = self._idle_add(callback, *args)
@@ -511,32 +515,51 @@ class EventLoop(object):
 
def _idle_add(self, callback, *args):
"""Like idle_add(), but without thread safety."""
-   source_id = self._call_soon_id = self._new_source_id()
-   self._idle_callbacks[source_id] = self._idle_callback_class(
-   args=args, callback=callback, source_id=source_id)
-   return source_id
+   # Hold self._thread_condition when assigning self._call_soon_id,
+   # since it might be modified via a thread-safe method.
+   with self._thread_condition:
+   handle = self._call_soon_id = self._idle_callback_class(
+   _args=args, _callback=callback)
+   # This deque append is thread-safe, but it does *not* notify the
+   # loop's thread, so the caller must notify if appropriate.
+   self._idle_callbacks.append(handle)
+   return handle
 
def 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Random-Source/

2018-04-16 Thread Kent Fredric
commit: 677c2ef997704ee03213643cf224cc5db9a4009a
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:33:49 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=677c2ef9

dev-perl/Crypt-Random-Source: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Crypt-Random-Source-0.110.0.ebuild | 35 --
 .../Crypt-Random-Source-0.70.0-r1.ebuild   | 29 --
 dev-perl/Crypt-Random-Source/Manifest  |  2 --
 3 files changed, 66 deletions(-)

diff --git a/dev-perl/Crypt-Random-Source/Crypt-Random-Source-0.110.0.ebuild 
b/dev-perl/Crypt-Random-Source/Crypt-Random-Source-0.110.0.ebuild
deleted file mode 100644
index 4ab18b3e626..000
--- a/dev-perl/Crypt-Random-Source/Crypt-Random-Source-0.110.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=ETHER
-DIST_VERSION=0.11
-inherit perl-module
-
-DESCRIPTION="Get weak or strong random data from pluggable sources"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
-   >=dev-perl/Capture-Tiny-0.80.0
-   virtual/perl-Carp
-   virtual/perl-File-Spec
-   >=virtual/perl-IO-1.140.0
-   dev-perl/Module-Find
-   dev-perl/Module-Runtime
-   dev-perl/Moo
-   dev-perl/Sub-Exporter
-   dev-perl/Type-Tiny
-   >=dev-perl/namespace-clean-0.110.0
-"
-DEPEND="${RDEPEND}
-   >=dev-perl/Module-Build-Tiny-0.34.0
-   test? (
-   virtual/perl-ExtUtils-MakeMaker
-   dev-perl/Test-Exception
-   >=virtual/perl-Test-Simple-1.1.10
-   )
-"

diff --git a/dev-perl/Crypt-Random-Source/Crypt-Random-Source-0.70.0-r1.ebuild 
b/dev-perl/Crypt-Random-Source/Crypt-Random-Source-0.70.0-r1.ebuild
deleted file mode 100644
index f10b8ecaca9..000
--- a/dev-perl/Crypt-Random-Source/Crypt-Random-Source-0.70.0-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=NUFFIN
-MODULE_VERSION=0.07
-inherit perl-module
-
-DESCRIPTION="Get weak or strong random data from pluggable sources"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="
-   >=dev-perl/Any-Moose-0.11
-   >=dev-perl/Capture-Tiny-0.08
-   dev-perl/Module-Find
-   dev-perl/Sub-Exporter
-   >=dev-perl/namespace-clean-0.08
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-perl/Test-Exception
-   >=virtual/perl-Test-Simple-1.1.10
-   )"
-
-SRC_TEST="do"

diff --git a/dev-perl/Crypt-Random-Source/Manifest 
b/dev-perl/Crypt-Random-Source/Manifest
index 6f0e7ec9dfd..5c638a8ee37 100644
--- a/dev-perl/Crypt-Random-Source/Manifest
+++ b/dev-perl/Crypt-Random-Source/Manifest
@@ -1,3 +1 @@
-DIST Crypt-Random-Source-0.07.tar.gz 18883 BLAKE2B 
5354f790c948a57eb2c9245ea663ff00c70aa03d46022f9b79ddc201fd7561248b38dc8e017c4d063fe28b006382611ed4d8282ef1ae6ccb21712e22ebb177b5
 SHA512 
b6d075e89914237262432f933916046151d6d24b19b19c2185f2aaabd166ce3cda2505ff12c3be35c76b48c532fcfdf056fd8a7c2627f48c58817b6c42ce871b
-DIST Crypt-Random-Source-0.11.tar.gz 34276 BLAKE2B 
3a54bb8e09b9cc871490f5154e3b93fac9cf0fb3a5f9c0e521c8033f37d237074d403748be879310de2ea1f7a859fe7f4777befe7b82cf6ee5bea2b841a35a2d
 SHA512 
0c0d6dfbf904c1047b5e502fba30aaebcd022cb7cd3e6f58800dd51ab6aba4c4bb834ac66b2501fa72e26d3034dd64b8aa945cb5b089661bc291670bb74d4bba
 DIST Crypt-Random-Source-0.12.tar.gz 34495 BLAKE2B 
bd01673a8ec5fe84b7c22000ebb282b7b7c8a4b5ebe5b9404d1b37d92b670a669ad86225439f30ca44b406272f817f670dcaec98609d5eb4095da2153aa43c0b
 SHA512 
821f464a9b344cd7e19f881acbf295a39ccf3b924f8822acb757c06f7ed2aa95fbee740b98a514dfdd24aae2dc9b5c7898751eab5bf7ea6f88218a6b162c4c34



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Load-XS/

2018-04-16 Thread Kent Fredric
commit: bc20439c8e2abcd848d25e56a751b87feafa6661
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:25:39 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc20439c

dev-perl/Class-Load-XS: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Class-Load-XS/Class-Load-XS-0.60.0-r1.ebuild   | 31 -
 dev-perl/Class-Load-XS/Class-Load-XS-0.90.0.ebuild | 32 --
 dev-perl/Class-Load-XS/Manifest|  2 --
 3 files changed, 65 deletions(-)

diff --git a/dev-perl/Class-Load-XS/Class-Load-XS-0.60.0-r1.ebuild 
b/dev-perl/Class-Load-XS/Class-Load-XS-0.60.0-r1.ebuild
deleted file mode 100644
index 156d46cc72b..000
--- a/dev-perl/Class-Load-XS/Class-Load-XS-0.60.0-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=DROLSKY
-MODULE_VERSION=0.06
-inherit perl-module
-
-DESCRIPTION="XS implementation of parts of Class::Load"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm hppa ppc ppc64 x86 ~x86-fbsd ~x64-macos"
-IUSE="test"
-
-RDEPEND="
-   >=dev-perl/Class-Load-0.200.0
-
-"
-DEPEND="${RDEPEND}
-   >=dev-perl/Module-Build-0.360.100
-   test? (
-   >=virtual/perl-Test-Simple-0.880.0
-   >=dev-perl/Module-Implementation-0.40.0
-   dev-perl/Test-Fatal
-   dev-perl/Test-Requires
-   )
-"
-
-SRC_TEST=do

diff --git a/dev-perl/Class-Load-XS/Class-Load-XS-0.90.0.ebuild 
b/dev-perl/Class-Load-XS/Class-Load-XS-0.90.0.ebuild
deleted file mode 100644
index d4eaab7c28d..000
--- a/dev-perl/Class-Load-XS/Class-Load-XS-0.90.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
-
-DIST_AUTHOR=ETHER
-DIST_VERSION=0.09
-inherit perl-module
-
-DESCRIPTION="XS implementation of parts of Class::Load"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x64-macos"
-IUSE="test"
-
-RDEPEND="
-   >=dev-perl/Class-Load-0.200.0
-   virtual/perl-XSLoader
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   virtual/perl-File-Spec
-   >=virtual/perl-CPAN-Meta-2.120.900
-   >=virtual/perl-Test-Simple-0.880.0
-   >=dev-perl/Module-Implementation-0.40.0
-   dev-perl/Test-Fatal
-   dev-perl/Test-Requires
-   virtual/perl-version
-   )
-"

diff --git a/dev-perl/Class-Load-XS/Manifest b/dev-perl/Class-Load-XS/Manifest
index be22070c96e..3c147b0f35c 100644
--- a/dev-perl/Class-Load-XS/Manifest
+++ b/dev-perl/Class-Load-XS/Manifest
@@ -1,3 +1 @@
-DIST Class-Load-XS-0.06.tar.gz 56141 BLAKE2B 
e3612af5f8741a4766df09fb2488cec5df80b242d05d40435d9b537acf7af87f5043263de3a2efa85464df5493d6dda6f72faf15317657adc349a202dc4f6a21
 SHA512 
07effa62cef0c27f25c5918e7dbc9aec3aa2ad88dfd06963cef2908c562532ea3048feb97717f0a120ca40250f3629f31a2d9d2263036e6de61158bebb6afe36
-DIST Class-Load-XS-0.09.tar.gz 73186 BLAKE2B 
bda5f8541aa2dbb31effcc415377a23924ed42264bd3a937eb7103df41a17f6fa9165e39b90c96a40cac70ffbd805b920b3d30714e6ec926b4e6d216c229f7f8
 SHA512 
9b24637cf7b035ba369f05e42c0bd5a8590e001f2395b46df078635a50bb3df58ad57850be0010d092ae2530d9a545bbcc5f0055f6ae7f166c93905c022d469d
 DIST Class-Load-XS-0.10.tar.gz 77930 BLAKE2B 
8d7540797a11fadf5f1d3622df0f39a1a8e97ec35aff807c04e55bfaf3ae3438c0cf777bfae8a39b44b4948b42fd05f8dbf476617b3321a1dee2149bd013a4b9
 SHA512 
16ab845dc393567f0b0e9597eda7d7678b8a41d218823a166bacdfd4dc93e704a6aff98662340b8d7f4d045a60530071bb84ea8da8be5a6930af47722207d126



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Data-Inheritable/

2018-04-16 Thread Kent Fredric
commit: c719b3552d26a795e0ab1bb34715a680ddb8a6bb
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:20:59 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c719b355

dev-perl/Class-Data-Inheritable: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Class-Data-Inheritable-0.80.0-r1.ebuild  | 16 
 1 file changed, 16 deletions(-)

diff --git 
a/dev-perl/Class-Data-Inheritable/Class-Data-Inheritable-0.80.0-r1.ebuild 
b/dev-perl/Class-Data-Inheritable/Class-Data-Inheritable-0.80.0-r1.ebuild
deleted file mode 100644
index eaae65a33cc..000
--- a/dev-perl/Class-Data-Inheritable/Class-Data-Inheritable-0.80.0-r1.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=TMTM
-MODULE_VERSION=0.08
-inherit perl-module
-
-DESCRIPTION="Inheritable, overridable class data"
-
-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 ~x86-solaris"
-IUSE=""
-
-export OPTIMIZE="${CFLAGS}"



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

2018-04-16 Thread Kent Fredric
commit: 373df121cffdb0cc0cb2974fe01ff2ee1519ca20
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 11:06:09 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=373df121

dev-perl/Class-C3: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Class-C3/Class-C3-0.310.0.ebuild | 25 -
 dev-perl/Class-C3/Manifest|  1 -
 2 files changed, 26 deletions(-)

diff --git a/dev-perl/Class-C3/Class-C3-0.310.0.ebuild 
b/dev-perl/Class-C3/Class-C3-0.310.0.ebuild
deleted file mode 100644
index fe93836b847..000
--- a/dev-perl/Class-C3/Class-C3-0.310.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=HAARG
-DIST_VERSION=0.31
-inherit perl-module
-
-DESCRIPTION="A pragma to use the C3 method resolution order algortihm"
-
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~ppc-aix ~ppc-macos ~x64-macos 
~x86-solaris"
-IUSE="test"
-
-RDEPEND="
-   >=dev-perl/Algorithm-C3-0.70.0
-   virtual/perl-Scalar-List-Utils
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   >=virtual/perl-Test-Simple-0.470.0
-   )
-"

diff --git a/dev-perl/Class-C3/Manifest b/dev-perl/Class-C3/Manifest
index e29f69aadcf..55c208d8b28 100644
--- a/dev-perl/Class-C3/Manifest
+++ b/dev-perl/Class-C3/Manifest
@@ -1,2 +1 @@
-DIST Class-C3-0.31.tar.gz 27257 BLAKE2B 
87a3e583dbc04893c8691236b0c7ef1e5d0630aab7732b426e4244a2871601f2e11919e1669e584656e58bd7e7c20e353a9b154029e52c36ff91247f359b0c9f
 SHA512 
f299e69e6ecfb51536babe89994a66e44179583c1e43cb79e23072f82db35ca3d2cabbc8119bdd59ed7d2119337ada79e55338a6d7b8509a40ea7896cd7f6173
 DIST Class-C3-0.33.tar.gz 27163 BLAKE2B 
81f970446076796e05412bb300170dcc65fec20b9f10bb112e412be1019eba4af16ec3276af20c6432862a835b48ebab976d4d4ca3b1410af049036fd6aa3639
 SHA512 
f72cff75c1222d7b42041b44b5ec7c8ff79e8c53f84ff11e1976a69dcde49093c52e66ebc19ce72f70c99332a9528a07a7d9eab7c74f5b6ce77464434b36cd7b



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

2018-04-16 Thread Kent Fredric
commit: 318f49b58d598a751c60e71c6bf72e45045b8e15
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:19:58 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=318f49b5

dev-perl/Class-DBI: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Class-DBI/Class-DBI-3.0.17-r1.ebuild | 32 ---
 1 file changed, 32 deletions(-)

diff --git a/dev-perl/Class-DBI/Class-DBI-3.0.17-r1.ebuild 
b/dev-perl/Class-DBI/Class-DBI-3.0.17-r1.ebuild
deleted file mode 100644
index c51d2d5e2d9..000
--- a/dev-perl/Class-DBI/Class-DBI-3.0.17-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=TMTM
-MY_P=${PN}-v${PV}
-S=${WORKDIR}/${MY_P}
-
-inherit perl-module
-
-DESCRIPTION="Simple Database Abstraction"
-
-LICENSE="|| ( Artistic GPL-2 )"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86 ~x86-solaris"
-IUSE=""
-
-# Tests aren't possible since they require interaction with the DB's
-
-RDEPEND=">=dev-perl/Class-Data-Inheritable-0.02
-   >=dev-perl/Class-Accessor-0.18
-   >=dev-perl/Class-Trigger-0.07
-   virtual/perl-File-Temp
-   virtual/perl-Storable
-   virtual/perl-Test-Simple
-   virtual/perl-Scalar-List-Utils
-   dev-perl/Clone
-   >=dev-perl/Ima-DBI-0.33
-   virtual/perl-version
-   >=dev-perl/UNIVERSAL-moniker-0.06"
-DEPEND="${RDEPEND}"



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

2018-04-16 Thread Kent Fredric
commit: 371e76b68a67af695a9b8bf1ec7e1d91a8cc4175
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:22:15 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=371e76b6

dev-perl/Class-ErrorHandler: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Class-ErrorHandler-0.30.0.ebuild   | 24 --
 dev-perl/Class-ErrorHandler/Manifest   |  1 -
 2 files changed, 25 deletions(-)

diff --git a/dev-perl/Class-ErrorHandler/Class-ErrorHandler-0.30.0.ebuild 
b/dev-perl/Class-ErrorHandler/Class-ErrorHandler-0.30.0.ebuild
deleted file mode 100644
index cc631586901..000
--- a/dev-perl/Class-ErrorHandler/Class-ErrorHandler-0.30.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=TOKUHIROM
-MODULE_VERSION=0.03
-inherit perl-module
-
-DESCRIPTION="Automated accessor generation"
-
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ~mips ~ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
-IUSE=""
-
-DEPEND="
-   dev-perl/Module-Build
-   virtual/perl-CPAN-Meta
-   >=virtual/perl-Parse-CPAN-Meta-1.441.400
-"
-# see bug 542584 for Parse::CPAN::Meta
-
-SRC_TEST="do"
-PREFER_BUILDPL="no"

diff --git a/dev-perl/Class-ErrorHandler/Manifest 
b/dev-perl/Class-ErrorHandler/Manifest
index f5395a454a5..bd8a7346a3c 100644
--- a/dev-perl/Class-ErrorHandler/Manifest
+++ b/dev-perl/Class-ErrorHandler/Manifest
@@ -1,2 +1 @@
-DIST Class-ErrorHandler-0.03.tar.gz 10061 BLAKE2B 
f0b1f7dc2046ffa2e9fac321d96979f66594c4e766f56bf4d33f40eb004915b974bb1117fac159acc4d2d2470132227cb11a619f9ebb97eb596e48a358b7e792
 SHA512 
aefc6497b8ebdd3efe1643a84051b2739879f5472753a484b8eb14a29ba1826806bdc17ddb46efb50e969ceedae309fe7cfa965d9c45054b40fe2fbaed7b60a7
 DIST Class-ErrorHandler-0.04.tar.gz 9821 BLAKE2B 
f92318211d23b42652eee40aaf538567f0047daeb8b7b5bc80c91759c5e103314ca3bf712524ffe66897873e10b689be13ce10ad0a83604743c3dc927d24f320
 SHA512 
9e235da1c2091f9422723af4528305b8ed2b50920a865e6fee76380a8c512fcd837d752f4ea5146df12c506c776e88c1075419ab3809be3296995387df759c83



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-RIPEMD160/files/, dev-perl/Crypt-RIPEMD160/

2018-04-16 Thread Kent Fredric
commit: 1de087008bc636d6f80ba69b48bffb25e16288d4
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:32:11 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1de08700

dev-perl/Crypt-RIPEMD160: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Crypt-RIPEMD160/Crypt-RIPEMD160-0.50.0-r1.ebuild   | 18 --
 dev-perl/Crypt-RIPEMD160/Manifest  |  1 -
 dev-perl/Crypt-RIPEMD160/files/0.50.0-header.patch |  8 
 3 files changed, 27 deletions(-)

diff --git a/dev-perl/Crypt-RIPEMD160/Crypt-RIPEMD160-0.50.0-r1.ebuild 
b/dev-perl/Crypt-RIPEMD160/Crypt-RIPEMD160-0.50.0-r1.ebuild
deleted file mode 100644
index 70cbd4617a2..000
--- a/dev-perl/Crypt-RIPEMD160/Crypt-RIPEMD160-0.50.0-r1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=TODDR
-MODULE_VERSION=0.05
-inherit perl-module
-
-DESCRIPTION="Crypt::RIPEMD160 module for perl"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris"
-IUSE=""
-
-export OPTIMIZE="$CFLAGS"
-PATCHES=( "${FILESDIR}"/0.50.0-header.patch )
-SRC_TEST=do

diff --git a/dev-perl/Crypt-RIPEMD160/Manifest 
b/dev-perl/Crypt-RIPEMD160/Manifest
index 6af5249d8d8..636428fc604 100644
--- a/dev-perl/Crypt-RIPEMD160/Manifest
+++ b/dev-perl/Crypt-RIPEMD160/Manifest
@@ -1,2 +1 @@
-DIST Crypt-RIPEMD160-0.05.tar.gz 58960 BLAKE2B 
f5f68e828a80ed5ba6a771f36900a546889b6e47329a0ae833fd0f879941ff3db864f30f233ef9ec1b49814598874702e3db876a6f2c5d003661fd2a
 SHA512 
75536a00adf47e91fbeef45919ae05ed8520e170c715a3df801a304d0e0de4d9360b561e0c2b952000281e76836bb1a9a87396cfeb032fa4b3e74f452c22316d
 DIST Crypt-RIPEMD160-0.06.tar.gz 58766 BLAKE2B 
91d59a068be8a37243f21610a0ca490affcbe3d7b49081710e60bd46036ed68db38b7c1731172b6e8ef9c916b87e4c26099517c3a4dc2d3c1af9e65a8a14f075
 SHA512 
5c009f8e3a9e42d5fb172f74eb97ab9b7e2912b23d62556f999d6d4f244ff972f7925d357cc3dd5d1e9e708a8350f8f131f8875aae076927c6bfb506bafcc755

diff --git a/dev-perl/Crypt-RIPEMD160/files/0.50.0-header.patch 
b/dev-perl/Crypt-RIPEMD160/files/0.50.0-header.patch
deleted file mode 100644
index e2abeda1073..000
--- a/dev-perl/Crypt-RIPEMD160/files/0.50.0-header.patch
+++ /dev/null
@@ -1,8 +0,0 @@
 Crypt-RIPEMD160-0.05/wrap_160.c
-+++ Crypt-RIPEMD160-0.05/wrap_160.c
-@@ -1,4 +1,5 @@
- #include 
-+#include 
- 
- #include "rmd160.h"
- #include "wrap_160.h"



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

2018-04-16 Thread Kent Fredric
commit: 974fc5c754a70a3515483a0fa8f69a55b39341a9
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:24:31 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=974fc5c7

dev-perl/Class-ISA: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Class-ISA/Class-ISA-0.36-r1.ebuild | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/dev-perl/Class-ISA/Class-ISA-0.36-r1.ebuild 
b/dev-perl/Class-ISA/Class-ISA-0.36-r1.ebuild
deleted file mode 100644
index bb9152a5adc..000
--- a/dev-perl/Class-ISA/Class-ISA-0.36-r1.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=SMUELLER
-inherit perl-module
-
-DESCRIPTION="Report the search path thru an ISA tree"
-
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-solaris"
-IUSE=""
-
-SRC_TEST="do"



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

2018-04-16 Thread Kent Fredric
commit: e5596ea6b92a66ec7fb8c6c95a8f4f24dd12d7e8
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:29:07 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5596ea6

dev-perl/Config-IniFiles: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Config-IniFiles/Config-IniFiles-2.880.0.ebuild | 36 
 .../Config-IniFiles/Config-IniFiles-2.920.0.ebuild | 39 --
 dev-perl/Config-IniFiles/Manifest  |  2 --
 3 files changed, 77 deletions(-)

diff --git a/dev-perl/Config-IniFiles/Config-IniFiles-2.880.0.ebuild 
b/dev-perl/Config-IniFiles/Config-IniFiles-2.880.0.ebuild
deleted file mode 100644
index c576b41338d..000
--- a/dev-perl/Config-IniFiles/Config-IniFiles-2.880.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=SHLOMIF
-MODULE_VERSION=2.88
-inherit perl-module
-
-DESCRIPTION="A module for reading .ini-style configuration files"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="test"
-
-# needs List::Util and Scalar::Util
-RDEPEND="
-   virtual/perl-Carp
-   virtual/perl-File-Temp
-   virtual/perl-Scalar-List-Utils
-"
-DEPEND="${RDEPEND}
-   >=dev-perl/Module-Build-0.360.0
-   virtual/perl-File-Spec
-   test? (
-   virtual/perl-Test-Simple
-   )
-"
-
-SRC_TEST="do parallel"
-
-src_test() {
-   perl_rm_files t/pod.t t/pod-coverage.t   \
-   t/cpan-changes.t t/style-trailing-space.t
-   perl-module_src_test
-}

diff --git a/dev-perl/Config-IniFiles/Config-IniFiles-2.920.0.ebuild 
b/dev-perl/Config-IniFiles/Config-IniFiles-2.920.0.ebuild
deleted file mode 100644
index d80b76706b6..000
--- a/dev-perl/Config-IniFiles/Config-IniFiles-2.920.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=SHLOMIF
-DIST_VERSION=2.92
-inherit perl-module
-
-DESCRIPTION="A module for reading .ini-style configuration files"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="test"
-
-# needs List::Util and Scalar::Util
-RDEPEND="
-   virtual/perl-Carp
-   virtual/perl-File-Temp
-   dev-perl/IO-stringy
-   >=virtual/perl-Scalar-List-Utils-1.330.0
-"
-DEPEND="${RDEPEND}
-   >=dev-perl/Module-Build-0.280.0
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   virtual/perl-Exporter
-   virtual/perl-File-Spec
-   virtual/perl-IO
-   virtual/perl-Test-Simple
-   )
-"
-src_test() {
-   perl_rm_files t/pod.t t/pod-coverage.t   \
-   t/author-{pod-syntax,pod-coverage}.t \
-   t/release-{cpan-changes,kwalitee}.t  \
-   t/cpan-changes.t t/style-trailing-space.t
-   perl-module_src_test
-}

diff --git a/dev-perl/Config-IniFiles/Manifest 
b/dev-perl/Config-IniFiles/Manifest
index 8163747fdd1..a6dfd0a608c 100644
--- a/dev-perl/Config-IniFiles/Manifest
+++ b/dev-perl/Config-IniFiles/Manifest
@@ -1,3 +1 @@
-DIST Config-IniFiles-2.88.tar.gz 80137 BLAKE2B 
52a1bdf33814862cce3effa22dd428569410f4d0c0f55cddb26a5ef9f1a71e5d8e84fb07ea43461756c2fc7b6235164e5f73015b4509d1311a67accbf30bb454
 SHA512 
f6cd704ee60760860e3404a5f964cee367b55ab0900781c09b3d5eebb9fac6f458cf0c865a8edb1d3ec647c6923aa33e60b8a6e966fc9a6fb2f33bd9b3d73d04
-DIST Config-IniFiles-2.92.tar.gz 64569 BLAKE2B 
5e7fb2fb12d56e1424bd69f04598cf00366f43d663345f3efbaeb3328862906deb1a5e9b50e2c593538a508ffc8638c550caf43257765d02f5bfa41f5292d256
 SHA512 
198613fec1a175f30003968960f17f95e558abee25106d87b1fab73f443686437a2e45e64d9f4bc358e05b56a445df9f864008e7b4a39a81013c9bcb3bbd98d9
 DIST Config-IniFiles-2.94.tar.gz 65322 BLAKE2B 
ae3271acf5ebea9f479fa9142c0931192134ea0d25d361c2a0caa90b7ad95234983d6b4469ab73d302bda7ce2a719374b593233de728e5428511675fe3766eba
 SHA512 
9ca9950f31a00bde580dc73b5120971070aa053f36f9a0ee29532b17b9a070de8ad3184631427ad442dbcbe087a9680366849b5e10f264e20694ddade7e3ca7c



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

2018-04-16 Thread Kent Fredric
commit: a86a5999ce40936038bec0463d4cef189813c08f
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:37:03 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a86a5999

dev-perl/Cwd-Guard: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Cwd-Guard/Cwd-Guard-0.40.0.ebuild | 29 -
 dev-perl/Cwd-Guard/Manifest|  1 -
 2 files changed, 30 deletions(-)

diff --git a/dev-perl/Cwd-Guard/Cwd-Guard-0.40.0.ebuild 
b/dev-perl/Cwd-Guard/Cwd-Guard-0.40.0.ebuild
deleted file mode 100644
index 2c83b42b35a..000
--- a/dev-perl/Cwd-Guard/Cwd-Guard-0.40.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=KAZEBURO
-MODULE_VERSION=0.04
-inherit perl-module
-
-DESCRIPTION="Temporary changing working directory (chdir)"
-
-SLOT="0"
-KEYWORDS="amd64 hppa ~ppc ~x86"
-IUSE=""
-# Cwd -> perl-File-Spec
-RDEPEND="
-   virtual/perl-File-Spec
-   virtual/perl-Exporter
-   virtual/perl-if
-   virtual/perl-parent
-"
-# CPAN::Meta::Prereqs -> perl-CPAN-Meta
-DEPEND="
-   virtual/perl-CPAN-Meta
-   >=dev-perl/Module-Build-0.380.0
-   ${RDEPEND}
-"
-
-SRC_TEST="do"

diff --git a/dev-perl/Cwd-Guard/Manifest b/dev-perl/Cwd-Guard/Manifest
index 3e32126817f..b383b071481 100644
--- a/dev-perl/Cwd-Guard/Manifest
+++ b/dev-perl/Cwd-Guard/Manifest
@@ -1,2 +1 @@
-DIST Cwd-Guard-0.04.tar.gz 9883 BLAKE2B 
fa9d7ea8d378a223e4449c635dda13f08176295241c9d799b87d943c4df0b0d13ef06f4d9ad752f6bae5c64621e5cec2effd9c8452a29f9c7b4bff8a9750
 SHA512 
7402203a51b1be99e91e9dfd1cf0e3577e5ba16afe8d808ab594bcff1603665399dc48fe867d40d9849cccbacfda0572fab09e8ef81934a251bb44625eade6f9
 DIST Cwd-Guard-0.05.tar.gz 10253 BLAKE2B 
cd11c91769212a5b77ce267542d6ddc231ff4ee64baa5abf88035d3fedfe005141e571b516b799f611488347d89896f16660c66a58e20729b0cddc6753b89163
 SHA512 
14aa68e535cec8f7182d5648558c539cbf6eebe2fee9c59d0b06f5b45cca1c6c652104a58f71b5a56f796f03d139e3e74962e45fb127bf038803b05cb9f32b82



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

2018-04-16 Thread Kent Fredric
commit: 670fc74647cb3268c939f7c04d6e89efc857bb42
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:30:04 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=670fc746

dev-perl/Crypt-DH: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Crypt-DH/Crypt-DH-0.70.0-r1.ebuild | 28 
 1 file changed, 28 deletions(-)

diff --git a/dev-perl/Crypt-DH/Crypt-DH-0.70.0-r1.ebuild 
b/dev-perl/Crypt-DH/Crypt-DH-0.70.0-r1.ebuild
deleted file mode 100644
index f94e7ac14dc..000
--- a/dev-perl/Crypt-DH/Crypt-DH-0.70.0-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=MITHALDU
-MODULE_VERSION=0.07
-inherit perl-module
-
-DESCRIPTION="Diffie-Hellman key exchange system"
-
-SLOT="0"
-KEYWORDS="amd64 hppa x86"
-IUSE=""
-
-RDEPEND="
-   dev-libs/gmp
-   dev-perl/Math-BigInt-GMP
-   >=virtual/perl-Math-BigInt-1.60
-   dev-perl/Crypt-Random
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   sed -i -e 's/use inc::Module::Install;/use lib q[.]; use 
inc::Module::Install;/' Makefile.PL ||
-   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
-   perl-module_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Factory-Util/

2018-04-16 Thread Kent Fredric
commit: fed31732591342911edd51764d0af774d276d9f6
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:23:11 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fed31732

dev-perl/Class-Factory-Util: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Class-Factory-Util-1.700.0-r1.ebuild   | 18 --
 1 file changed, 18 deletions(-)

diff --git a/dev-perl/Class-Factory-Util/Class-Factory-Util-1.700.0-r1.ebuild 
b/dev-perl/Class-Factory-Util/Class-Factory-Util-1.700.0-r1.ebuild
deleted file mode 100644
index a122c72cd3c..000
--- a/dev-perl/Class-Factory-Util/Class-Factory-Util-1.700.0-r1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=DROLSKY
-MODULE_VERSION=1.7
-inherit perl-module
-
-DESCRIPTION="Provide utility methods for factory classes"
-
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ppc ~ppc64 sparc x86 ~ppc-aix ~x86-fbsd 
~x86-solaris"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   >=dev-perl/Module-Build-0.28"



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

2018-04-16 Thread Kent Fredric
commit: dd7c43b225b6e03888ae3e6dd92976e61875305b
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:27:55 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd7c43b2

dev-perl/Config-Grammar: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Config-Grammar/Config-Grammar-1.100.0-r1.ebuild | 16 
 dev-perl/Config-Grammar/Config-Grammar-1.110.0.ebuild   | 17 -
 dev-perl/Config-Grammar/Manifest|  2 --
 3 files changed, 35 deletions(-)

diff --git a/dev-perl/Config-Grammar/Config-Grammar-1.100.0-r1.ebuild 
b/dev-perl/Config-Grammar/Config-Grammar-1.100.0-r1.ebuild
deleted file mode 100644
index f80e642f734..000
--- a/dev-perl/Config-Grammar/Config-Grammar-1.100.0-r1.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=DSCHWEI
-MODULE_VERSION=1.10
-inherit perl-module
-
-DESCRIPTION="A grammar-based, user-friendly config parser"
-
-SLOT="0"
-KEYWORDS="amd64 ~hppa ~sparc x86"
-IUSE=""
-
-SRC_TEST="do"

diff --git a/dev-perl/Config-Grammar/Config-Grammar-1.110.0.ebuild 
b/dev-perl/Config-Grammar/Config-Grammar-1.110.0.ebuild
deleted file mode 100644
index 49ed4bddd63..000
--- a/dev-perl/Config-Grammar/Config-Grammar-1.110.0.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=DSCHWEI
-DIST_VERSION=1.11
-inherit perl-module
-
-DESCRIPTION="A grammar-based, user-friendly config parser"
-
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~sparc ~x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="virtual/perl-ExtUtils-MakeMaker"

diff --git a/dev-perl/Config-Grammar/Manifest b/dev-perl/Config-Grammar/Manifest
index 74bbb9b3b93..a4985a1df46 100644
--- a/dev-perl/Config-Grammar/Manifest
+++ b/dev-perl/Config-Grammar/Manifest
@@ -1,3 +1 @@
-DIST Config-Grammar-1.10.tar.gz 17877 BLAKE2B 
d2a9fbe3e7fc9bc91905b2459057242958453e4fa81fdaa5a50ee47d0d762e620d8826bd3b451122df280b324df7a63d070d8bc87c955aee72e77ed83aabdca5
 SHA512 
0891984da560a9dd758fff0678cd577898f4b1796d275dfbed27d411941aca7830f7b6f8a4a4a913572bf0ea7b62414b3d852c0a37b5e629db6ae437c1db0690
-DIST Config-Grammar-1.11.tar.gz 18955 BLAKE2B 
4753f0fae155d228182a766cc0312197677fff56b7c84959a0c868ef387019fda4596f8825944519d4d7ccc777171d12a1fc9bb03550eea189009e677749fbba
 SHA512 
d80f63fdad8f30cef914842299a491a4abcd1ed0e122e9cb61375a22ea0261fc4e8b3b7b928086a4bacccb511b96cd52ea7f31e14bdd8ee78beff69ed2e9ccc4
 DIST Config-Grammar-1.12.tar.gz 26163 BLAKE2B 
ed0e1e38698dc1d3d09f7eb5026765a6a91d599b2d222016ac82d44d8da18035603e2ae97e13c1066d7bf0259993e0e9bcde2257f17c18854b9e713b74896332
 SHA512 
44d46019b32d891830d224b6002c2c73fd59c772b0308ac27ab68b5899bb921c74184a0c354a41c8bef3eb876eb1fdc0f07334bcaf4394d907059fae903ba12e



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

2018-04-16 Thread Kent Fredric
commit: 5d8cae37d48a7bed50d894d98978cabe01785ca1
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:36:20 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d8cae37

dev-perl/Curses-UI: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Curses-UI/Curses-UI-0.960.900-r1.ebuild | 29 
 1 file changed, 29 deletions(-)

diff --git a/dev-perl/Curses-UI/Curses-UI-0.960.900-r1.ebuild 
b/dev-perl/Curses-UI/Curses-UI-0.960.900-r1.ebuild
deleted file mode 100644
index f316f73d728..000
--- a/dev-perl/Curses-UI/Curses-UI-0.960.900-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=MDXI
-MODULE_VERSION=0.9609
-inherit perl-module
-
-DESCRIPTION="Perl UI framework based on the curses library"
-
-SLOT="0"
-KEYWORDS="amd64 hppa ppc ppc64 x86"
-IUSE="test"
-
-RDEPEND="dev-perl/Curses
-   dev-perl/TermReadKey"
-DEPEND="${RDEPEND}
-   test? ( virtual/perl-Test-Simple )
-"
-
-SRC_TEST="do"
-
-src_prepare() {
-   use test && perl_rm_files t/05pod.t
-   sed -i -e 's/use inc::Module::Install;/use lib q[.]; use 
inc::Module::Install;/' Makefile.PL ||
-   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
-   perl-module_src_prepare
-}



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

2018-04-16 Thread Kent Fredric
commit: f40528d71ec09680d3227e469a016d725a4aeddf
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 10:45:03 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f40528d7

dev-perl/Chatbot-Eliza: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Chatbot-Eliza/Chatbot-Eliza-1.60.0.ebuild | 22 -
 dev-perl/Chatbot-Eliza/Chatbot-Eliza-1.70.0.ebuild | 23 --
 dev-perl/Chatbot-Eliza/Manifest|  2 --
 3 files changed, 47 deletions(-)

diff --git a/dev-perl/Chatbot-Eliza/Chatbot-Eliza-1.60.0.ebuild 
b/dev-perl/Chatbot-Eliza/Chatbot-Eliza-1.60.0.ebuild
deleted file mode 100644
index de30489c315..000
--- a/dev-perl/Chatbot-Eliza/Chatbot-Eliza-1.60.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=NEILB
-DIST_VERSION=1.06
-inherit perl-module
-
-DESCRIPTION="A clone of the classic Eliza program"
-
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm ppc ppc64 x86"
-IUSE="test"
-
-RDEPEND="
-   virtual/perl-Carp
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? ( >=virtual/perl-Test-Simple-0.880.0 )
-"

diff --git a/dev-perl/Chatbot-Eliza/Chatbot-Eliza-1.70.0.ebuild 
b/dev-perl/Chatbot-Eliza/Chatbot-Eliza-1.70.0.ebuild
deleted file mode 100644
index 805109f371e..000
--- a/dev-perl/Chatbot-Eliza/Chatbot-Eliza-1.70.0.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=GRANTG
-DIST_VERSION=1.07
-DIST_EXAMPLES=("examples/*")
-inherit perl-module
-
-DESCRIPTION="A clone of the classic Eliza program"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
-IUSE="test"
-
-RDEPEND="
-   virtual/perl-Carp
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? ( >=virtual/perl-Test-Simple-0.880.0 )
-"

diff --git a/dev-perl/Chatbot-Eliza/Manifest b/dev-perl/Chatbot-Eliza/Manifest
index 659721f430a..ead8b551c80 100644
--- a/dev-perl/Chatbot-Eliza/Manifest
+++ b/dev-perl/Chatbot-Eliza/Manifest
@@ -1,3 +1 @@
-DIST Chatbot-Eliza-1.06.tar.gz 40050 BLAKE2B 
0395d7ae58aa69b7db4ca572a42acb6d590c94847c51b2a05b7a90bd2a37bf76aa9d8bed1f8ee18f0cd185232f6c589aa2713b4c11d71ddabd672063c8f6268c
 SHA512 
3626b7abe24a70855bdb6c297376447a2fda58e51802dffd56ddce7b65ed0bed427623cc410c23c7a4323d7bd90e12302cf4b2fe941f76bf2a0a7e4840330b47
-DIST Chatbot-Eliza-1.07.tar.gz 40241 BLAKE2B 
e0fb454498f6be1019b4aa173ff3a6476ab0454a329d721b657c73aa1b0af454fd139a90098365fae6b60ae7f630aa8b4c5372d85833707823189889d983a633
 SHA512 
d9155ca13d9fc6f6741d9e99da764df25df5e762717eccb6e944c86a5f51d60eedc240f2cb8bde6f508ce075f96f605352fdb8f606eeb59896e2437a85c54109
 DIST Chatbot-Eliza-1.08.tar.gz 40294 BLAKE2B 
74c84eec13daecab44d15d2d8a27c9c08f1ac590948e9e89842df3cf77f28c3abb7c00b6763f563f54063c4151e9ca22a044411276424b980d6ecc0041b92334
 SHA512 
9d90fc0064541167c85491e03bb8a8d8bee16986cd7a07a1e1ff99d4e80bb854e1d87869b9bb2f6b33de5c84bf479aa95a045a234317226f53f490eebde506d0



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

2018-04-16 Thread Kent Fredric
commit: b0d779441acd3f8eb2d9d55e83048334eb26fb44
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 19:18:29 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0d77944

dev-perl/Class-Container: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Class-Container/Class-Container-0.120.0-r1.ebuild | 19 ---
 1 file changed, 19 deletions(-)

diff --git a/dev-perl/Class-Container/Class-Container-0.120.0-r1.ebuild 
b/dev-perl/Class-Container/Class-Container-0.120.0-r1.ebuild
deleted file mode 100644
index 16c340efd9b..000
--- a/dev-perl/Class-Container/Class-Container-0.120.0-r1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=KWILLIAMS
-MODULE_VERSION=0.12
-inherit perl-module
-
-DESCRIPTION="Class-Container module for perl"
-
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc sparc x86"
-IUSE=""
-
-RDEPEND=">=dev-perl/Params-Validate-0.24-r1
-   >=virtual/perl-Scalar-List-Utils-1.08"
-DEPEND="${RDEPEND}
-   >=dev-perl/Module-Build-0.28"



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

2018-04-16 Thread Kent Fredric
commit: e129e7b0fad71d7cbe9e4c7d4663d86a1265b68d
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 10:36:34 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e129e7b0

dev-perl/CDDB: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/CDDB/CDDB-1.222.0-r1.ebuild | 16 
 1 file changed, 16 deletions(-)

diff --git a/dev-perl/CDDB/CDDB-1.222.0-r1.ebuild 
b/dev-perl/CDDB/CDDB-1.222.0-r1.ebuild
deleted file mode 100644
index ba071f8aac5..000
--- a/dev-perl/CDDB/CDDB-1.222.0-r1.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=RCAPUTO
-MODULE_VERSION=1.222
-inherit perl-module
-
-DESCRIPTION="high-level interface to cddb/freedb protocol"
-
-SLOT="0"
-KEYWORDS="amd64 ia64 ppc sparc x86"
-IUSE=""
-
-SRC_TEST=no



[gentoo-commits] repo/gentoo:master commit in: dev-perl/CPAN-Meta-Check/

2018-04-16 Thread Kent Fredric
commit: bab07119a5d14aef5b6b5a83bafef4d7eaf68e11
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 10:40:34 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bab07119

dev-perl/CPAN-Meta-Check: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../CPAN-Meta-Check/CPAN-Meta-Check-0.13.0.ebuild  | 30 --
 dev-perl/CPAN-Meta-Check/Manifest  |  1 -
 2 files changed, 31 deletions(-)

diff --git a/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.13.0.ebuild 
b/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.13.0.ebuild
deleted file mode 100644
index 449203598ae..000
--- a/dev-perl/CPAN-Meta-Check/CPAN-Meta-Check-0.13.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=LEONT
-DIST_VERSION=0.013
-inherit perl-module
-
-DESCRIPTION="Verify requirements in a CPAN::Meta object"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd"
-IUSE="test"
-
-# CPAN::Meta::Prereqs -> perl-CPAN-Meta
-RDEPEND="
-   >=virtual/perl-CPAN-Meta-2.132.830
-   >=virtual/perl-CPAN-Meta-Requirements-2.121.0
-   virtual/perl-Exporter
-   >=virtual/perl-Module-Metadata-1.0.23
-"
-DEPEND="${RDEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.300.0
-   test? (
-   virtual/perl-File-Spec
-   dev-perl/Test-Deep
-   >=virtual/perl-Test-Simple-0.880.0
-   )
-"

diff --git a/dev-perl/CPAN-Meta-Check/Manifest 
b/dev-perl/CPAN-Meta-Check/Manifest
index 33626cff139..5211a917af4 100644
--- a/dev-perl/CPAN-Meta-Check/Manifest
+++ b/dev-perl/CPAN-Meta-Check/Manifest
@@ -1,2 +1 @@
-DIST CPAN-Meta-Check-0.013.tar.gz 12555 BLAKE2B 
148a66ee49cce352eba1dce4d1c89af6410a2143aa4ddd3516208ff333168bcc432629ce6f973e0e5912d234e54f82b3510bf26b49714b2fe6bf2796a2ccc48e
 SHA512 
c7bb972ce6afd21f415d0bca03f9ebefe0298e8b7db32e42f0195ae5da535da079f482c9d2bf598cb39d234b467397eb4b949b93c34c4d02b113caf76fd5a9c5
 DIST CPAN-Meta-Check-0.014.tar.gz 13187 BLAKE2B 
49e21dd269265f6ce279fe88430d9eb3b7bcd65e932da18eb7b6e762a69c20683279c9413157b8df432c480a8950097ee288013e648e062fe55280088276a48c
 SHA512 
a10af09a7ce771ca3983adea8053d141750fd09849609a28e7f973831fd3a3ece55281841aec93c099154bb59135986da4983bf612ae4e956c45dbb3f2770f5e



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

2018-04-16 Thread Kent Fredric
commit: 97da6cba988e1aa4d7aa2ee5e77a209dadc2f432
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 10:38:22 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97da6cba

dev-perl/CGI-FastTemplate: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../CGI-FastTemplate/CGI-FastTemplate-1.90.0-r1.ebuild | 14 --
 1 file changed, 14 deletions(-)

diff --git a/dev-perl/CGI-FastTemplate/CGI-FastTemplate-1.90.0-r1.ebuild 
b/dev-perl/CGI-FastTemplate/CGI-FastTemplate-1.90.0-r1.ebuild
deleted file mode 100644
index f6fdcb6ea4a..000
--- a/dev-perl/CGI-FastTemplate/CGI-FastTemplate-1.90.0-r1.ebuild
+++ /dev/null
@@ -1,14 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=JMOORE
-MODULE_VERSION=1.09
-inherit perl-module
-
-DESCRIPTION="The Perl CGI::FastTemplate Module"
-
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc sparc x86"
-IUSE=""



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Carp-Assert-More/

2018-04-16 Thread Kent Fredric
commit: 7b1ca1dae9ea16caa6cc28da4f60cd081fde5827
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Apr 16 10:42:52 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 17 00:05:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b1ca1da

dev-perl/Carp-Assert-More: Cleanup old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Carp-Assert-More-1.140.0.ebuild | 21 -
 dev-perl/Carp-Assert-More/Manifest  |  1 -
 2 files changed, 22 deletions(-)

diff --git a/dev-perl/Carp-Assert-More/Carp-Assert-More-1.140.0.ebuild 
b/dev-perl/Carp-Assert-More/Carp-Assert-More-1.140.0.ebuild
deleted file mode 100644
index fa902476eed..000
--- a/dev-perl/Carp-Assert-More/Carp-Assert-More-1.140.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=PETDANCE
-MODULE_VERSION=1.14
-inherit perl-module
-
-DESCRIPTION="convenience wrappers around Carp::Assert"
-
-SLOT="0"
-KEYWORDS="amd64 ia64 ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
-IUSE="test"
-
-RDEPEND="virtual/perl-Scalar-List-Utils
-   dev-perl/Carp-Assert"
-DEPEND="${RDEPEND}
-   test? ( dev-perl/Test-Exception )"
-
-SRC_TEST="do"

diff --git a/dev-perl/Carp-Assert-More/Manifest 
b/dev-perl/Carp-Assert-More/Manifest
index 80c168e3252..47447242f6a 100644
--- a/dev-perl/Carp-Assert-More/Manifest
+++ b/dev-perl/Carp-Assert-More/Manifest
@@ -1,2 +1 @@
-DIST Carp-Assert-More-1.14.tar.gz 10304 BLAKE2B 
8fb42bd9c90632666d6b3c27a3fa32779ba2ab0c3aa9c992fb57ed8fc28155088fb803112f4fda95f69306164c3293246f07f168402b538eb291103e2d6a4994
 SHA512 
0411908afd5cc45cedce83fb10e67f78f7513fa788421d9c4e0f0f0064bf6fdd7154c2414a449456ff4c600f31eba138fb4d3f94e68743af4b71f7368c30b398
 DIST Carp-Assert-More-1.16.tar.gz 12290 BLAKE2B 
818badbd216e70813993ea859796a16c531c767211ed6b294fab870dd342117b5445db73601f4fc955ec907d1340bfce6f17a784580bac8823a9d72153af38ea
 SHA512 
9f81604574eab5a0a5003ad747ffec3a3dd33bc63e67d12697e4e30de8cb234a73e225f82a4d0f31576e19382cc2d6a402962f5fe1e4c5289e080ca23b30c0fe



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

2018-04-16 Thread Lars Wendler
commit: f020c0d027dad4fa5e45af639259c7fdecc12e7a
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Apr 16 23:45:08 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Apr 16 23:45:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f020c0d0

x11-plugins/enigmail: Bump to version 2.0.2

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 x11-plugins/enigmail/Manifest  |  1 +
 x11-plugins/enigmail/enigmail-2.0.2.ebuild | 83 ++
 2 files changed, 84 insertions(+)

diff --git a/x11-plugins/enigmail/Manifest b/x11-plugins/enigmail/Manifest
index ceb90af8342..59471b4dc13 100644
--- a/x11-plugins/enigmail/Manifest
+++ b/x11-plugins/enigmail/Manifest
@@ -1,3 +1,4 @@
 DIST enigmail-1.9.9.tar.gz 1787556 BLAKE2B 
729cf7e404b4cc5d964df476e627b476916cd6c834ce5f220a26738bc32eabbd9fd2c4c3cbaccef6e1d8c4b5b7313b54278a4170808f8b722443b338fda87b55
 SHA512 
39b37305362c88527d897ed95aa9d8457137d5f026359d19b838ab9df531c14099e157afdc8fefae78a6fa2ddded8dbfbeaf84eb91ac6cfbb05ae808731da2cb
 DIST enigmail-2.0.1.tar.gz 2527950 BLAKE2B 
4abb734b23cd6ae2be149d017d3ccc36881b7cc82e3551ca5506cb25f22c1023f7329a4d7e1139b9e1a4e2eed5f3b12e444e0e88801dfd4aff547d5f6bc7bab3
 SHA512 
1795e7e15d8388990fbe1c8aed1747e190c319e8d30dc8d08110714f3fa64dd86aadddcfc1d0644e1f1f915396fe85237e976796a7089b24b7644cc049f8ac80
+DIST enigmail-2.0.2.tar.gz 2524805 BLAKE2B 
aa4d8d6bfeff19eb586156240fc1b22dc1712cbf7ddce93122eec2538a1968f2116fd7148bfa1d3955a907d36cc9935524616c7fb209c845a8b4feeb2284b1cd
 SHA512 
30dcdc0d9fa5f9bceb5497eb9eec83f0c58987d8995a805017fac8bdd1ca8a231dcb219794b90749941e1cc1877b830c0a57ef698dff065a98187b0c3a6d4246
 DIST enigmail-2.0.tar.gz 2526788 BLAKE2B 
ee41681bba5874b0e8dac5362f49304101567a8dd5da4a8d31c7db353ca61adbe09a5e622a1d69e77a61e82f060266a8644a8c05a241a0f332e4955aed72fff0
 SHA512 
bbf7c743d51d6010e8dcca575e1530561944b552dd940119cda874c4b70109eedaaee437c108b1ead17a8414935f48083e2bde8020f3504f927bf9e01fb7b4ae

diff --git a/x11-plugins/enigmail/enigmail-2.0.2.ebuild 
b/x11-plugins/enigmail/enigmail-2.0.2.ebuild
new file mode 100644
index 000..9e8d0cbb395
--- /dev/null
+++ b/x11-plugins/enigmail/enigmail-2.0.2.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-any-r1
+
+DESCRIPTION="Mozilla extension to provide GPG support in mail clients"
+HOMEPAGE="http://www.enigmail.net/;
+
+SLOT="0"
+LICENSE="MPL-2.0 GPL-3"
+IUSE=""
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://git.code.sf.net/p/enigmail/source;
+   S="${WORKDIR}/${P}"
+else
+   if [[ ${PV} = *_beta* ]] ; then
+   SRC_URI="http://www.enigmail.net/download/beta/${P/_/-}.tar.gz;
+   else
+   SRC_URI="http://www.enigmail.net/download/source/${P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+   fi
+   S="${WORKDIR}/${PN}"
+fi
+
+RDEPEND="|| (
+   ( >=app-crypt/gnupg-2.0
+   || (
+   app-crypt/pinentry[gtk(-)]
+   app-crypt/pinentry[qt4(-)]
+   app-crypt/pinentry[qt5(-)]
+   )
+   )
+   =app-crypt/gnupg-1.4*
+   )
+   !/!d; s/.*\({.*}\).*/\1/; p; q' 
build/dist/install.rdf)
+   [[ -n ${emid} ]] || die "Could not scrape EM:ID from install.rdf"
+
+   mv build/enigmail*.xpi build/"${emid}.xpi" || die 'Could not rename XPI 
to match EM:ID'
+
+   # thunderbird
+   insinto 
"/usr/share/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}"
+   doins build/"${emid}.xpi"
+
+   # seamonkey
+   insinto 
"/usr/share/mozilla/extensions/{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}"
+   doins build/"${emid}.xpi"
+}
+
+pkg_postinst() {
+   local peimpl=$(eselect --brief --colour=no pinentry show)
+   case "${peimpl}" in
+   *gtk*|*qt*) ;;
+   *)  ewarn "The pinentry front-end currently selected is not one 
supported by thunderbird."
+   ewarn "You may be prompted for your password in an inaccessible 
shell!!"
+   ewarn "Please use 'eselect pinentry' to select either the gtk 
or qt front-end"
+   ;;
+   esac
+   if [[ -n ${REPLACING_VERSIONS} ]]; then
+   elog
+   elog "Please restart thunderbird and/or seamonkey in order for 
them to use"
+   elog "the newly installed version of enigmail."
+   fi
+}



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

2018-04-16 Thread Lars Wendler
commit: 3dac56ea0827ee3a29225f07ffabb7551ed47ddf
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Apr 16 23:45:52 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Apr 16 23:45:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dac56ea

x11-plugins/enigmail: Removed old.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 x11-plugins/enigmail/Manifest|  1 -
 x11-plugins/enigmail/enigmail-2.0.ebuild | 83 
 2 files changed, 84 deletions(-)

diff --git a/x11-plugins/enigmail/Manifest b/x11-plugins/enigmail/Manifest
index 59471b4dc13..a58d56065f8 100644
--- a/x11-plugins/enigmail/Manifest
+++ b/x11-plugins/enigmail/Manifest
@@ -1,4 +1,3 @@
 DIST enigmail-1.9.9.tar.gz 1787556 BLAKE2B 
729cf7e404b4cc5d964df476e627b476916cd6c834ce5f220a26738bc32eabbd9fd2c4c3cbaccef6e1d8c4b5b7313b54278a4170808f8b722443b338fda87b55
 SHA512 
39b37305362c88527d897ed95aa9d8457137d5f026359d19b838ab9df531c14099e157afdc8fefae78a6fa2ddded8dbfbeaf84eb91ac6cfbb05ae808731da2cb
 DIST enigmail-2.0.1.tar.gz 2527950 BLAKE2B 
4abb734b23cd6ae2be149d017d3ccc36881b7cc82e3551ca5506cb25f22c1023f7329a4d7e1139b9e1a4e2eed5f3b12e444e0e88801dfd4aff547d5f6bc7bab3
 SHA512 
1795e7e15d8388990fbe1c8aed1747e190c319e8d30dc8d08110714f3fa64dd86aadddcfc1d0644e1f1f915396fe85237e976796a7089b24b7644cc049f8ac80
 DIST enigmail-2.0.2.tar.gz 2524805 BLAKE2B 
aa4d8d6bfeff19eb586156240fc1b22dc1712cbf7ddce93122eec2538a1968f2116fd7148bfa1d3955a907d36cc9935524616c7fb209c845a8b4feeb2284b1cd
 SHA512 
30dcdc0d9fa5f9bceb5497eb9eec83f0c58987d8995a805017fac8bdd1ca8a231dcb219794b90749941e1cc1877b830c0a57ef698dff065a98187b0c3a6d4246
-DIST enigmail-2.0.tar.gz 2526788 BLAKE2B 
ee41681bba5874b0e8dac5362f49304101567a8dd5da4a8d31c7db353ca61adbe09a5e622a1d69e77a61e82f060266a8644a8c05a241a0f332e4955aed72fff0
 SHA512 
bbf7c743d51d6010e8dcca575e1530561944b552dd940119cda874c4b70109eedaaee437c108b1ead17a8414935f48083e2bde8020f3504f927bf9e01fb7b4ae

diff --git a/x11-plugins/enigmail/enigmail-2.0.ebuild 
b/x11-plugins/enigmail/enigmail-2.0.ebuild
deleted file mode 100644
index 9e8d0cbb395..000
--- a/x11-plugins/enigmail/enigmail-2.0.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-any-r1
-
-DESCRIPTION="Mozilla extension to provide GPG support in mail clients"
-HOMEPAGE="http://www.enigmail.net/;
-
-SLOT="0"
-LICENSE="MPL-2.0 GPL-3"
-IUSE=""
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://git.code.sf.net/p/enigmail/source;
-   S="${WORKDIR}/${P}"
-else
-   if [[ ${PV} = *_beta* ]] ; then
-   SRC_URI="http://www.enigmail.net/download/beta/${P/_/-}.tar.gz;
-   else
-   SRC_URI="http://www.enigmail.net/download/source/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
-   fi
-   S="${WORKDIR}/${PN}"
-fi
-
-RDEPEND="|| (
-   ( >=app-crypt/gnupg-2.0
-   || (
-   app-crypt/pinentry[gtk(-)]
-   app-crypt/pinentry[qt4(-)]
-   app-crypt/pinentry[qt5(-)]
-   )
-   )
-   =app-crypt/gnupg-1.4*
-   )
-   !/!d; s/.*\({.*}\).*/\1/; p; q' 
build/dist/install.rdf)
-   [[ -n ${emid} ]] || die "Could not scrape EM:ID from install.rdf"
-
-   mv build/enigmail*.xpi build/"${emid}.xpi" || die 'Could not rename XPI 
to match EM:ID'
-
-   # thunderbird
-   insinto 
"/usr/share/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}"
-   doins build/"${emid}.xpi"
-
-   # seamonkey
-   insinto 
"/usr/share/mozilla/extensions/{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}"
-   doins build/"${emid}.xpi"
-}
-
-pkg_postinst() {
-   local peimpl=$(eselect --brief --colour=no pinentry show)
-   case "${peimpl}" in
-   *gtk*|*qt*) ;;
-   *)  ewarn "The pinentry front-end currently selected is not one 
supported by thunderbird."
-   ewarn "You may be prompted for your password in an inaccessible 
shell!!"
-   ewarn "Please use 'eselect pinentry' to select either the gtk 
or qt front-end"
-   ;;
-   esac
-   if [[ -n ${REPLACING_VERSIONS} ]]; then
-   elog
-   elog "Please restart thunderbird and/or seamonkey in order for 
them to use"
-   elog "the newly installed version of enigmail."
-   fi
-}



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

2018-04-16 Thread Aaron Bauman
commit: 54b8a1356be743cb24ad757bb1be706b5d3a1222
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Apr 16 22:51:35 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Apr 16 22:51:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54b8a135

net-misc/mosh: amd64 stable wrt bug #653002

Bug: https://bugs.gentoo.org/653002
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 net-misc/mosh/mosh-1.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/mosh/mosh-1.3.2.ebuild b/net-misc/mosh/mosh-1.3.2.ebuild
index 73919ad6dbf..87075efe916 100644
--- a/net-misc/mosh/mosh-1.3.2.ebuild
+++ b/net-misc/mosh/mosh-1.3.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mosh.org/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~arm-linux 
~x86-linux ~x64-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~arm-linux ~x86-linux 
~x64-macos"
 IUSE="+client examples +mosh-hardening +server ufw +utempter"
 
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/iozone/

2018-04-16 Thread Aaron Bauman
commit: 626fb80299f0ea978b6619a24632ac0de54f4092
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Apr 16 22:54:08 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Apr 16 22:54:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=626fb802

app-benchmarks/iozone: amd64 stable wrt bug #653336

Bug: https://bugs.gentoo.org/653336
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-benchmarks/iozone/iozone-3.471.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-benchmarks/iozone/iozone-3.471.ebuild 
b/app-benchmarks/iozone/iozone-3.471.ebuild
index f65231ed5f2..3fb09fe74d3 100644
--- a/app-benchmarks/iozone/iozone-3.471.ebuild
+++ b/app-benchmarks/iozone/iozone-3.471.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -28,7 +28,7 @@ SRC_URI="http://www.iozone.org/src/current/${PN}${PV/./_}.tar;
 
 LICENSE="freedist"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 
 S=${WORKDIR}/${PN}${PV/./_}



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

2018-04-16 Thread Michael Weber
commit: f00e22c1e63a2220e5c6f188d0be2f8f9ea415e8
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr 16 22:46:02 2018 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr 16 22:46:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f00e22c1

x11-wm/xpra: Version bump.

Package-Manager: Portage-2.3.27, Repoman-2.3.9

 x11-wm/xpra/Manifest  |   1 +
 x11-wm/xpra/xpra-2.2.6.ebuild | 148 ++
 2 files changed, 149 insertions(+)

diff --git a/x11-wm/xpra/Manifest b/x11-wm/xpra/Manifest
index 68f478d8e6e..ea040408485 100644
--- a/x11-wm/xpra/Manifest
+++ b/x11-wm/xpra/Manifest
@@ -2,3 +2,4 @@ DIST xpra-1.0.9.tar.xz 1899744 BLAKE2B 
a8577712c29ff637e69f0faf8224c3318397d1043
 DIST xpra-2.1.3.tar.xz 2070192 BLAKE2B 
b1f54705c877317bf0a3397303af2a516f6e7deb6baa252065f768bd3fd07ec87991b04c14a3aa054da0655543185dfdb99fa2972fb1cd8a2a04d72bb31fafc6
 SHA512 
aa916953d34477c2c80d99a4d5733586b4122edbc18f2c9952a5d3c9581f7b8e8c55cb1ed4077989876a9a7431faa9c4f7f96f82fc007034f92cacad16429ef8
 DIST xpra-2.2.1.tar.xz 2195508 BLAKE2B 
5f94e96ddce7df0001ca3ffbc64570c59f02b1b49fc45c364999f47d188b1ef349018e36ed070cf8c26f60efc77c24741f44856f307b68535c982e6082dc0d7a
 SHA512 
fca213a72805b6b1d533f91cd5e4186bd881e083663488b697c71c79fb4a3bf312fd1491aef78cf363e429c5841d706e444c9e69c72351b1551ea7fc9395c0c6
 DIST xpra-2.2.2.tar.xz 2195836 BLAKE2B 
39d8354738df399d98248a0d455c3b7fa6124f374f0f6e0a476bae53b9728b9ab16c11bd759b6ff52a28295445809fb18b3379b7fc620f0916944f738a00b280
 SHA512 
5c09e29732c9ca7d03557e4e6070517b192484e67944532d5aeca53e518c8617f7d3a5919a2557050fbb9aa4123a0302a53720dd7036823db83588264dd3e6d2
+DIST xpra-2.2.6.tar.xz 2198720 BLAKE2B 
41f238e98dbb60598cffcc3960375a525658c72db478acace0acb964fe3ee039acb5e352a76ffb5724b6c4acd63ea510505f6841f688c67d0ae2a3cbc2270642
 SHA512 
f47b7a8b08fc90bdf3cba91e4f7343785cdf6e24a0979f4564e9f6885b0f36c03ff5656e2d7ac5fd21895faca7b00e8839ebd66c82122a2c7cab2b40bd44e745

diff --git a/x11-wm/xpra/xpra-2.2.6.ebuild b/x11-wm/xpra/xpra-2.2.6.ebuild
new file mode 100644
index 000..5dcafddd7a5
--- /dev/null
+++ b/x11-wm/xpra/xpra-2.2.6.ebuild
@@ -0,0 +1,148 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# PyCObject_Check and PyCObject_AsVoidPtr vanished with python 3.3
+PYTHON_COMPAT=( python2_7 )
+inherit xdg distutils-r1 eutils flag-o-matic user tmpfiles prefix
+
+DESCRIPTION="X Persistent Remote Apps (xpra) and Partitioning WM (parti) based 
on wimpiggy"
+HOMEPAGE="http://xpra.org/ http://xpra.org/src/;
+SRC_URI="http://xpra.org/src/${P}.tar.xz;
+
+LICENSE="GPL-2 BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+client +clipboard csc cups dbus dec_avcodec2 enc_ffmpeg enc_x264 
enc_x265 jpeg libav +lz4 lzo opengl pillow pulseaudio server sound test vpx 
webcam webp"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   clipboard? ( || ( server client ) )
+   cups? ( dbus )
+   opengl? ( client )
+   || ( client server )
+   client? ( enc_x264? ( dec_avcodec2 ) enc_x265? ( dec_avcodec2 ) )"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   dev-python/pygobject:2[${PYTHON_USEDEP}]
+   dev-python/pygtk:2[${PYTHON_USEDEP}]
+   x11-libs/gtk+:2
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libXtst
+   x11-libs/libxkbfile
+   csc? (
+   !libav? ( >=media-video/ffmpeg-1.2.2:0= )
+   libav? ( media-video/libav:0= )
+   )
+   dec_avcodec2? (
+   !libav? ( >=media-video/ffmpeg-2:0= )
+   libav? ( media-video/libav:0= )
+   )
+   enc_ffmpeg? (
+   !libav? ( >=media-video/ffmpeg-3.2.2:0= )
+   libav? ( media-video/libav:0= )
+   )
+   enc_x264? ( media-libs/x264
+   !libav? ( >=media-video/ffmpeg-1.0.4:0= )
+   libav? ( media-video/libav:0= )
+   )
+   enc_x265? ( media-libs/x265
+   !libav? ( >=media-video/ffmpeg-2:0= )
+   libav? ( media-video/libav:0= ) )
+   jpeg? ( media-libs/libjpeg-turbo )
+   opengl? ( dev-python/pygtkglext )
+   pulseaudio? ( media-sound/pulseaudio )
+   sound? ( media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   dev-python/gst-python:1.0 )
+   vpx? ( media-libs/libvpx virtual/ffmpeg )
+   webp? ( media-libs/libwebp )"
+
+RDEPEND="${COMMON_DEPEND}
+   dev-python/ipython[${PYTHON_USEDEP}]
+   dev-python/netifaces[${PYTHON_USEDEP}]
+   dev-python/rencode[${PYTHON_USEDEP}]
+   virtual/ssh
+   x11-apps/xmodmap
+   cups? ( dev-python/pycups[${PYTHON_USEDEP}] )
+   dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
+   lz4? ( dev-python/lz4[${PYTHON_USEDEP}] )
+   lzo? ( >=dev-python/python-lzo-0.7.0[${PYTHON_USEDEP}] )
+   

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

2018-04-16 Thread Michael Weber
commit: 4319feb929ae6fab18d005ed8828e9f954e50dd1
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr 16 22:15:55 2018 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr 16 22:16:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4319feb9

dev-util/pycharm-community: Version bump.

Closes: https://github.com/gentoo/gentoo/pull/7987
Closes: https://bugs.gentoo.org/653146
Package-Manager: Portage-2.3.27, Repoman-2.3.9

 dev-util/pycharm-community/Manifest|  1 +
 .../pycharm-community-2018.1.1.ebuild  | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/dev-util/pycharm-community/Manifest 
b/dev-util/pycharm-community/Manifest
index 443c4e57eed..601506bad8e 100644
--- a/dev-util/pycharm-community/Manifest
+++ b/dev-util/pycharm-community/Manifest
@@ -1,3 +1,4 @@
 DIST pycharm-community-2017.3.3.tar.gz 279677180 BLAKE2B 
373276332c918a325290e9ca0fa37ac7512025e0c0ee8149c3c08321b0477a0a5263fc24dece443c471f2a96a1b147153b0952466e374acf62389e1c49a1f114
 SHA512 
d4e9dffa7d2abef825fdbe7ce2665e2d249b18d81f7dab5051a0a2fda7896e5df7cce16e19518225dd23205c346df8fc5c5b3cb39280886004340cba60aeacd4
 DIST pycharm-community-2017.3.4.tar.gz 279847033 BLAKE2B 
451540aae6434f39a94a664d4aa8747071c9c045793a7d445bf1acf4c0412309448b9e05b01c7e86d5b6915d144cb5175956981597d24064b2a7f934bd043bf3
 SHA512 
0478ca55a0dbd45b54c3d1af45a6cfdc562f0a863e3fe09922421ed121e22f5182c71fbc05b0e9fe7a8e92b197f6ad473da34b30b867297690d7bd9df5fda730
+DIST pycharm-community-2018.1.1.tar.gz 264905980 BLAKE2B 
d769c1038eb08ce50c93091a435138e30f0b1ff725c59a59e8bcf0c14825b46448856240841f017a24b1c32e501f1282c77716a59ef7841c87fa48d322f16d03
 SHA512 
c5b9b14b4ef887a242c018f1eab445d756ca96a894f193493c24819e36bc86a734b3a8bf8d540dce5b915a0157fd56acb1f1755bfe0846da218cf3c7f1a2b28b
 DIST pycharm-community-2018.1.tar.gz 264891672 BLAKE2B 
4fc85276f1e214ac4f03c11593dfa4e9d50bdca043192816c5bd4f768df436c83ec723683315e8b3558a7129542e371c47945e531d977567e8d87f78b412add4
 SHA512 
41090a3973a19a53440b68625a1dd448e5c92b07813ab8497478867a06d0b847668db2e9bb179caa967fdaac914073a43fa6db5ec371cc17c491f9614a2ce600

diff --git a/dev-util/pycharm-community/pycharm-community-2018.1.1.ebuild 
b/dev-util/pycharm-community/pycharm-community-2018.1.1.ebuild
new file mode 100644
index 000..4cba69da598
--- /dev/null
+++ b/dev-util/pycharm-community/pycharm-community-2018.1.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils readme.gentoo-r1 xdg
+
+DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
+HOMEPAGE="http://www.jetbrains.com/pycharm/;
+SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
+
+LICENSE="Apache-2.0 BSD CDDL MIT-with-advertising"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=virtual/jre-1.8"
+
+RESTRICT="mirror strip"
+
+QA_PREBUILT="opt/${PN}/bin/fsnotifier
+   opt/${PN}/bin/fsnotifier64
+   opt/${PN}/bin/fsnotifier-arm"
+
+MY_PN=${PN/-community/}
+
+src_prepare() {
+   default
+
+   rm -rf jre || die
+}
+
+src_install() {
+   insinto /opt/${PN}
+   doins -r *
+
+   fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
+
+   dosym ../../opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
+   newicon bin/${MY_PN}.png ${PN}.png
+   make_desktop_entry ${PN} ${PN} ${PN}
+
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-04-16 Thread Michael Weber
commit: bbcfa297a5c41f692440d46b7ac93e29b0bb256d
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr 16 22:12:35 2018 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr 16 22:16:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbcfa297

dev-util/pycharm-professional: Version bump.

Closes: https://github.com/gentoo/gentoo/pull/7987
Closes: https://bugs.gentoo.org/653148
Package-Manager: Portage-2.3.27, Repoman-2.3.9

 dev-util/pycharm-professional/Manifest |  1 +
 .../pycharm-professional-2018.1.1.ebuild   | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/dev-util/pycharm-professional/Manifest 
b/dev-util/pycharm-professional/Manifest
index 51a3e081de5..8c6b9d7b9ce 100644
--- a/dev-util/pycharm-professional/Manifest
+++ b/dev-util/pycharm-professional/Manifest
@@ -1,3 +1,4 @@
 DIST pycharm-professional-2017.3.3.tar.gz 356063034 BLAKE2B 
afe45081582983c05590602ed10b66ee687bd3ef4995bb0ae0404dddefe795ff8e93af2ac384ffa37600f2eebc882fa1bc6de8b6831341957ea69bda4e4632c3
 SHA512 
1e6d9fc1de13ecea5f4a2cf5bd9f2d7116a40802c24cf21ac731183d4b20aab480e34e039f1ca2fa36b4d873c85204febea975392d73da5a32f239037c7bd59e
 DIST pycharm-professional-2017.3.4.tar.gz 356283723 BLAKE2B 
3d2abed57f0459e49034a6b081c69008628ec8a16322ce90e15e0a42c670554ea4eca66b73279ea0f9aeac116dc86e8d52590861d712ccdf93d2be31c2d1211e
 SHA512 
8adc3c46b50c4ed895d0d40b0c235a047fcac7e4ab5262aa88ba69deffa9402b652bc69ec1ee3d7682900698d14bb2ecb7f82a89f998979c009fcadb98ef4517
+DIST pycharm-professional-2018.1.1.tar.gz 343686899 BLAKE2B 
ac177856ea754bb30561d117925363b9f0dd435187500814e0879ff02c4410280ec6c1a19082e10ec02aff0c0779c7c39b8d95f5ba52631b82378c686bc9d6e9
 SHA512 
1fc149ac269ace8cdf2fd1154ec9603d740271f867c1934d2fe80bd13f903abdcc23c1b1190cebf8fc83ebbe10c5ba1f4c71d309f528d911ea499cdb1a1f4a5c
 DIST pycharm-professional-2018.1.tar.gz 343431274 BLAKE2B 
b88ccc821a2e7d35bc2d19582c69493f23bd766c338c2b2964cc0c4993d308783245daf9d6a09fae5206c0d0eee7e1048fb265968b51f614ca4dc9c55c58a2c7
 SHA512 
a32069fd846e328caa1c0acae3821f73ce98f5268ad934e276adca5ff39371b017f2ce1246e808692fdce8d174f8191fd7c12ef893d0976262059df25e58f3c6

diff --git a/dev-util/pycharm-professional/pycharm-professional-2018.1.1.ebuild 
b/dev-util/pycharm-professional/pycharm-professional-2018.1.1.ebuild
new file mode 100644
index 000..5dc7e67e051
--- /dev/null
+++ b/dev-util/pycharm-professional/pycharm-professional-2018.1.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils readme.gentoo-r1 xdg
+
+DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
+HOMEPAGE="http://www.jetbrains.com/pycharm/;
+SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
+
+LICENSE="PyCharm_Academic PyCharm_Classroom PyCharm PyCharm_OpenSource 
PyCharm_Preview"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=virtual/jre-1.8
+dev-python/pip"
+
+RESTRICT="mirror strip"
+
+QA_PREBUILT="opt/${PN}/bin/fsnotifier
+   opt/${PN}/bin/fsnotifier64
+   opt/${PN}/bin/fsnotifier-arm
+   opt/${PN}/bin/libyjpagent-linux.so
+   opt/${PN}/bin/libyjpagent-linux64.so"
+
+MY_PN=${PN/-professional/}
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_prepare() {
+   default
+
+   rm -rf jre || die
+}
+
+src_install() {
+   insinto /opt/${PN}
+   doins -r *
+
+   fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
+
+   dosym ../../opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
+   newicon bin/${MY_PN}.png ${PN}.png
+   make_desktop_entry ${PN} ${PN} ${PN}
+
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-04-16 Thread Michael Weber
commit: c72bdfe75b08e7c710f592e6d985bc7e6553f893
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr 16 22:03:06 2018 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr 16 22:16:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c72bdfe7

dev-util/pycharm-community: Remove old.

Package-Manager: Portage-2.3.27, Repoman-2.3.9

 dev-util/pycharm-community/Manifest|  1 -
 .../pycharm-community-2017.3.ebuild| 55 --
 2 files changed, 56 deletions(-)

diff --git a/dev-util/pycharm-community/Manifest 
b/dev-util/pycharm-community/Manifest
index 2f30a809615..443c4e57eed 100644
--- a/dev-util/pycharm-community/Manifest
+++ b/dev-util/pycharm-community/Manifest
@@ -1,4 +1,3 @@
 DIST pycharm-community-2017.3.3.tar.gz 279677180 BLAKE2B 
373276332c918a325290e9ca0fa37ac7512025e0c0ee8149c3c08321b0477a0a5263fc24dece443c471f2a96a1b147153b0952466e374acf62389e1c49a1f114
 SHA512 
d4e9dffa7d2abef825fdbe7ce2665e2d249b18d81f7dab5051a0a2fda7896e5df7cce16e19518225dd23205c346df8fc5c5b3cb39280886004340cba60aeacd4
 DIST pycharm-community-2017.3.4.tar.gz 279847033 BLAKE2B 
451540aae6434f39a94a664d4aa8747071c9c045793a7d445bf1acf4c0412309448b9e05b01c7e86d5b6915d144cb5175956981597d24064b2a7f934bd043bf3
 SHA512 
0478ca55a0dbd45b54c3d1af45a6cfdc562f0a863e3fe09922421ed121e22f5182c71fbc05b0e9fe7a8e92b197f6ad473da34b30b867297690d7bd9df5fda730
-DIST pycharm-community-2017.3.tar.gz 282451011 BLAKE2B 
250265d7cb0cb3ba94733c9404f6bc1c6e4f62207721011e9eec65780f9e4c92148626065051a1e875124d013cff488c8d7ab9861c094bf4a33c0b8596e717e9
 SHA512 
4e835f671971171966f52a4219f47fda2675b2fcf38f0f91ff90b1aa00508ed3b5445a488750c6e9d82515780e9f190201da918230c0b80d869d6b16ab352cc6
 DIST pycharm-community-2018.1.tar.gz 264891672 BLAKE2B 
4fc85276f1e214ac4f03c11593dfa4e9d50bdca043192816c5bd4f768df436c83ec723683315e8b3558a7129542e371c47945e531d977567e8d87f78b412add4
 SHA512 
41090a3973a19a53440b68625a1dd448e5c92b07813ab8497478867a06d0b847668db2e9bb179caa967fdaac914073a43fa6db5ec371cc17c491f9614a2ce600

diff --git a/dev-util/pycharm-community/pycharm-community-2017.3.ebuild 
b/dev-util/pycharm-community/pycharm-community-2017.3.ebuild
deleted file mode 100644
index bcd9bbba0a3..000
--- a/dev-util/pycharm-community/pycharm-community-2017.3.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils xdg-utils readme.gentoo-r1
-
-DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
-HOMEPAGE="http://www.jetbrains.com/pycharm/;
-SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
-
-LICENSE="Apache-2.0 BSD CDDL MIT-with-advertising"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.8"
-DEPEND=""
-
-RESTRICT="mirror strip"
-
-QA_PREBUILT="opt/${PN}/bin/fsnotifier
-   opt/${PN}/bin/fsnotifier64
-   opt/${PN}/bin/fsnotifier-arm"
-
-MY_PN=${PN/-community/}
-
-src_prepare() {
-   default
-
-   rm -rf jre || die
-}
-
-src_install() {
-   insinto /opt/${PN}
-   doins -r *
-
-   fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
-
-   dosym ../../opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
-   newicon bin/${MY_PN}.png ${PN}.png
-   make_desktop_entry ${PN} ${PN} ${PN}
-
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   gnome2_icon_cache_update
-}



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

2018-04-16 Thread Michael Weber
commit: 783532931b70790c88dc3ff3c7098243d6480a3b
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Apr 16 22:01:53 2018 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Apr 16 22:16:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78353293

dev-util/pycharm-professional: Remove old.

Package-Manager: Portage-2.3.27, Repoman-2.3.9

 dev-util/pycharm-professional/Manifest |  1 -
 .../pycharm-professional-2017.3.ebuild | 59 --
 2 files changed, 60 deletions(-)

diff --git a/dev-util/pycharm-professional/Manifest 
b/dev-util/pycharm-professional/Manifest
index 896a300dc4a..51a3e081de5 100644
--- a/dev-util/pycharm-professional/Manifest
+++ b/dev-util/pycharm-professional/Manifest
@@ -1,4 +1,3 @@
 DIST pycharm-professional-2017.3.3.tar.gz 356063034 BLAKE2B 
afe45081582983c05590602ed10b66ee687bd3ef4995bb0ae0404dddefe795ff8e93af2ac384ffa37600f2eebc882fa1bc6de8b6831341957ea69bda4e4632c3
 SHA512 
1e6d9fc1de13ecea5f4a2cf5bd9f2d7116a40802c24cf21ac731183d4b20aab480e34e039f1ca2fa36b4d873c85204febea975392d73da5a32f239037c7bd59e
 DIST pycharm-professional-2017.3.4.tar.gz 356283723 BLAKE2B 
3d2abed57f0459e49034a6b081c69008628ec8a16322ce90e15e0a42c670554ea4eca66b73279ea0f9aeac116dc86e8d52590861d712ccdf93d2be31c2d1211e
 SHA512 
8adc3c46b50c4ed895d0d40b0c235a047fcac7e4ab5262aa88ba69deffa9402b652bc69ec1ee3d7682900698d14bb2ecb7f82a89f998979c009fcadb98ef4517
-DIST pycharm-professional-2017.3.tar.gz 358504339 BLAKE2B 
4ac1eb3feed289326a0122e3e4f869d7be740db1fd8d1c5f5c80400a8d8aa2daa444d4fa279c33865aecec4af4a28999e10b100714a44aa1d772d7f598ac05f4
 SHA512 
b7a085eda5d3e4ca8a918009f80cd7d90a281f2e522718211b4813f199a9c3a8f38f9742600336c09db479691c789d852ddc1d99e9ee2b11876e85728ae51b44
 DIST pycharm-professional-2018.1.tar.gz 343431274 BLAKE2B 
b88ccc821a2e7d35bc2d19582c69493f23bd766c338c2b2964cc0c4993d308783245daf9d6a09fae5206c0d0eee7e1048fb265968b51f614ca4dc9c55c58a2c7
 SHA512 
a32069fd846e328caa1c0acae3821f73ce98f5268ad934e276adca5ff39371b017f2ce1246e808692fdce8d174f8191fd7c12ef893d0976262059df25e58f3c6

diff --git a/dev-util/pycharm-professional/pycharm-professional-2017.3.ebuild 
b/dev-util/pycharm-professional/pycharm-professional-2017.3.ebuild
deleted file mode 100644
index a52a5ee20aa..000
--- a/dev-util/pycharm-professional/pycharm-professional-2017.3.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils xdg-utils readme.gentoo-r1
-
-DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
-HOMEPAGE="http://www.jetbrains.com/pycharm/;
-SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
-
-LICENSE="PyCharm_Academic PyCharm_Classroom PyCharm PyCharm_OpenSource 
PyCharm_Preview"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.8
-dev-python/pip"
-DEPEND=""
-
-RESTRICT="mirror strip"
-
-QA_PREBUILT="opt/${PN}/bin/fsnotifier
-   opt/${PN}/bin/fsnotifier64
-   opt/${PN}/bin/fsnotifier-arm
-   opt/${PN}/bin/libyjpagent-linux.so
-   opt/${PN}/bin/libyjpagent-linux64.so"
-
-MY_PN=${PN/-professional/}
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_prepare() {
-   default
-
-   rm -rf jre || die
-}
-
-src_install() {
-   insinto /opt/${PN}
-   doins -r *
-
-   fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
-
-   dosym ../../opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
-   newicon bin/${MY_PN}.png ${PN}.png
-   make_desktop_entry ${PN} ${PN} ${PN}
-
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   gnome2_icon_cache_update
-}



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

2018-04-16 Thread Mikle Kolyada
commit: 13edce93e6c762ca7f53195cdbeb4333e1a09bf8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 22:14:52 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 22:14:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13edce93

profiles/package.mask: Cleanup old entries

 profiles/package.mask | 48 
 1 file changed, 48 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index cb84238efb1..63f3539e682 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -532,42 +532,11 @@ dev-java/commons-betwixt
 # Removal in 90 days. Bug #650464
 =net-dns/dnscrypt-proxy-1.9.5-r1
 
-# Pacho Ramos  (13 Mar 2018)
-# Tests need network, nothing requires this old lib anymore and upstream is
-# dead for a long time (#335233). Removal in a month.
-net-libs/netembryo
-
-# Pacho Ramos  (13 Mar 2018)
-# Fails to build (#371401, #642676). Removal in a month.
-net-misc/netkit-rwall
-
-# Pacho Ramos  (13 Mar 2018)
-# Incomplete and unclear LICENSE, missing files in SRC_URI (#472602).
-# Removal in a month.
-sci-electronics/balsa
-
 # Pacho Ramos  (13 Mar 2018)
 # Upstream dead for a long time, requires obsolete gstreamer and other old
 # libs (#629192), buggy (#490344). Removal in a month.
 media-tv/me-tv
 
-# Pacho Ramos  (13 Mar 2018)
-# Doesn't build for a long time (#514432). Removal in a month.
-sci-biology/beast-mcmc
-
-# Pacho Ramos  (13 Mar 2018)
-# Fails to build (#514632, #585606, #588710). Removal in a month.
-sys-power/phc-k8
-
-# Pacho Ramos  (13 Mar 2018)
-# Fails to build for a long time (#515734, 649840). Removal in a month.
-sys-fs/gfs2-utils
-
-# Pacho Ramos  (13 Mar 2018)
-# Many other ident daemons in the tree over this completely dead and
-# unmaintained (since 2003) implementation (#535868). Removal in a month.
-net-misc/linux-identd
-
 # Pacho Ramos  (13 Mar 2018)
 # Major version bump pending (#540322), current version in the tree is
 # completely broken in several ways (#471428, #598260, #621784, #638364).
@@ -600,23 +569,6 @@ net-p2p/tribler
 # Breaks XFCE, 1.19.6 was fine (in that regard). Bug #650228
 >=x11-base/xorg-server-1.19.7
 
-# Andreas K. Hüttel  (03 Mar 2018)
-# Fails to build without rpc support in glibc (bug 631044);
-# no maintainer, requires obsolete hardware. Removal in
-# 30 days.
-app-pda/p3nfs
-
-# Andreas K. Hüttel  (03 Mar 2018)
-# Fails to build without rpc support in glibc (bug 377867);
-# fails to build with libtirpc; apparently functionality is
-# now included in libtirpc. No consumers. Removal in 30 days.
-net-libs/librpcsecgss
-
-# Andreas K. Hüttel  (03 Mar 2018)
-# Marked obsolete on CTAN. EAPI=3 ebuild. No consumers.
-# Masked for removal in 30 days. Bug 644258
-app-text/noweb
-
 # Tim Harder  (01 Mar 2018)
 # Masked for testing.
 >=dev-python/aiohttp-3



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

2018-04-16 Thread Mikle Kolyada
commit: 731ba54e20e04cd32d6a32f267cf737a0151a708
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 22:06:11 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 22:06:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=731ba54e

dev-perl/Class-Inspector: arm stable wrt bug #652534

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Class-Inspector/Class-Inspector-1.320.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Class-Inspector/Class-Inspector-1.320.0.ebuild 
b/dev-perl/Class-Inspector/Class-Inspector-1.320.0.ebuild
index dd6f687451a..61d918da73c 100644
--- a/dev-perl/Class-Inspector/Class-Inspector-1.320.0.ebuild
+++ b/dev-perl/Class-Inspector/Class-Inspector-1.320.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Provides information about Classes"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2018-04-16 Thread Mikle Kolyada
commit: 341084334e1a224d1d92987836f1a602acb392d4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 22:04:37 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 22:04:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34108433

x11-misc/xscreensaver: arm stable wrt bug #649176

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/x11-misc/xscreensaver/xscreensaver-5.38.ebuild 
b/x11-misc/xscreensaver/xscreensaver-5.38.ebuild
index 62c3eab2b11..aa05146673b 100644
--- a/x11-misc/xscreensaver/xscreensaver-5.38.ebuild
+++ b/x11-misc/xscreensaver/xscreensaver-5.38.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ~ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
 IUSE="gdm jpeg new-login offensive opengl pam +perl selinux suid xinerama"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-apps/dbus/

2018-04-16 Thread Mikle Kolyada
commit: 7afd8dc15674351245948a23afaecb7bf13c2de2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 22:01:29 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 22:01:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7afd8dc1

sys-apps/dbus: arm stable wrt bug #648306

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/dbus/dbus-1.10.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/dbus/dbus-1.10.24.ebuild 
b/sys-apps/dbus/dbus-1.10.24.ebuild
index 5ac6753ce0a..934c8f73391 100644
--- a/sys-apps/dbus/dbus-1.10.24.ebuild
+++ b/sys-apps/dbus/dbus-1.10.24.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://dbus.freedesktop.org/releases/dbus/${P}.tar.gz;
 
 LICENSE="|| ( AFL-2.1 GPL-2 )"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="debug doc elogind selinux static-libs systemd test user-session X"
 
 #RESTRICT="test"



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

2018-04-16 Thread Mikle Kolyada
commit: 9f6db227caaa95e72b1e8c8ff167272c300b5a73
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 21:57:13 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 21:57:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f6db227

app-text/mupdf: arm stable wrt bug #634678

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-text/mupdf/mupdf-1.12.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/mupdf/mupdf-1.12.0-r2.ebuild 
b/app-text/mupdf/mupdf-1.12.0-r2.ebuild
index e9e48938d09..332a932e6d2 100644
--- a/app-text/mupdf/mupdf-1.12.0-r2.ebuild
+++ b/app-text/mupdf/mupdf-1.12.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mupdf.com/downloads/${P}-source.tar.gz;
 
 LICENSE="AGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="X +curl javascript lcms libressl opengl +openssl static static-libs 
vanilla"
 
 LIB_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-client/lynx/

2018-04-16 Thread Mikle Kolyada
commit: 6ecd0f6f233dcc99db0800328860cdbc571e08ef
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 21:54:13 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 21:54:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ecd0f6f

www-client/lynx: arm stable wrt bug #651560

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-client/lynx/lynx-2.8.9_pre16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/lynx/lynx-2.8.9_pre16.ebuild 
b/www-client/lynx/lynx-2.8.9_pre16.ebuild
index 99a00e76363..2e47a85b23c 100644
--- a/www-client/lynx/lynx-2.8.9_pre16.ebuild
+++ b/www-client/lynx/lynx-2.8.9_pre16.ebuild
@@ -21,7 +21,7 @@ 
SRC_URI="http://invisible-mirror.net/archives/lynx/tarballs/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 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="bzip2 cjk gnutls idn ipv6 nls ssl unicode libressl"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-libs/neXtaw/

2018-04-16 Thread Mikle Kolyada
commit: 149a58a76a72550d1c4502b9e090b86f3fa41b53
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 21:52:20 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 21:52:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=149a58a7

x11-libs/neXtaw: arm stable wrt bug #648366

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-libs/neXtaw/neXtaw-0.15.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/neXtaw/neXtaw-0.15.1-r2.ebuild 
b/x11-libs/neXtaw/neXtaw-0.15.1-r2.ebuild
index 9fde6ad6d63..ea38789cddf 100644
--- a/x11-libs/neXtaw/neXtaw-0.15.1-r2.ebuild
+++ b/x11-libs/neXtaw/neXtaw-0.15.1-r2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://siag.nu/pub/neXtaw/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
 IUSE=""
 
 RDEPEND="x11-libs/libICE



[gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/

2018-04-16 Thread Mikle Kolyada
commit: d56f8e3cbf9507973df19313f75067957ee8f417
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 21:48:27 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 21:48:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d56f8e3c

net-p2p/syncthing: arm stable wrt bug #626786

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-p2p/syncthing/syncthing-0.14.38.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-p2p/syncthing/syncthing-0.14.38.ebuild 
b/net-p2p/syncthing/syncthing-0.14.38.ebuild
index 81547999f09..ca236b559e8 100644
--- a/net-p2p/syncthing/syncthing-0.14.38.ebuild
+++ b/net-p2p/syncthing/syncthing-0.14.38.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MPL-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 arm x86"
 IUSE="selinux tools"
 
 RDEPEND="selinux? ( sec-policy/selinux-syncthing )"



[gentoo-commits] repo/gentoo:master commit in: net-nntp/tin/

2018-04-16 Thread Mikle Kolyada
commit: 6c0f2481c606a9b646d7d8754f8fb489cea4adf1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 21:42:57 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 21:42:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c0f2481

net-nntp/tin: arm stable wrt bug #649042

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-nntp/tin/tin-2.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-nntp/tin/tin-2.4.2.ebuild b/net-nntp/tin/tin-2.4.2.ebuild
index a6966e6ca51..65abd1a1078 100644
--- a/net-nntp/tin/tin-2.4.2.ebuild
+++ b/net-nntp/tin/tin-2.4.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="ftp://ftp.tin.org/pub/news/clients/tin/stable/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 arm ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="cancel-locks debug doc +etiquette gpg idn ipv6 mime nls sasl socks5 
spell unicode"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-apps/sandbox/

2018-04-16 Thread Mikle Kolyada
commit: 9ab8548189e151b247bd4c56b4592c7c6789fdcb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 21:38:45 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 21:38:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ab85481

sys-apps/sandbox: arm stable wrt bug #651336

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/sandbox/sandbox-2.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/sandbox/sandbox-2.13.ebuild 
b/sys-apps/sandbox/sandbox-2.13.ebuild
index 1e98ec137b5..c5f91584485 100644
--- a/sys-apps/sandbox/sandbox-2.13.ebuild
+++ b/sys-apps/sandbox/sandbox-2.13.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
 IUSE=""
 
 DEPEND="app-arch/xz-utils



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

2018-04-16 Thread Mikle Kolyada
commit: a1b889adc1c98cb9493445060531311be330c6a4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 21:36:30 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 21:36:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1b889ad

dev-perl/Canary-Stability: arm stable wrt bug #652490

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Canary-Stability/Canary-Stability-2012.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Canary-Stability/Canary-Stability-2012.0.0.ebuild 
b/dev-perl/Canary-Stability/Canary-Stability-2012.0.0.ebuild
index 49e688ebe80..3d1868428a6 100644
--- a/dev-perl/Canary-Stability/Canary-Stability-2012.0.0.ebuild
+++ b/dev-perl/Canary-Stability/Canary-Stability-2012.0.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Canary to check perl compatibility for schmorp's modules"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: sci-visualization/gnuplot/

2018-04-16 Thread Mikle Kolyada
commit: 749d3815c83c0175e209bcd55f0c93b8b42b9fa1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 21:34:25 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 21:34:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=749d3815

sci-visualization/gnuplot: arm stable wrt bug #650580

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sci-visualization/gnuplot/gnuplot-5.0.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-visualization/gnuplot/gnuplot-5.0.7.ebuild 
b/sci-visualization/gnuplot/gnuplot-5.0.7.ebuild
index bc81e2f3988..e162e8ede71 100644
--- a/sci-visualization/gnuplot/gnuplot-5.0.7.ebuild
+++ b/sci-visualization/gnuplot/gnuplot-5.0.7.ebuild
@@ -17,11 +17,11 @@ if [[ -z ${PV%%*} ]]; then
ECVS_CVS_OPTIONS="-dP"
MY_P="${PN}"
SRC_URI=""
-   KEYWORDS="alpha amd64 ia64 x86"
+   KEYWORDS="alpha amd64 arm ia64 x86"
 else
MY_P="${P/_/.}"
SRC_URI="mirror://sourceforge/gnuplot/${MY_P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~s390 ~sparc 
x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~s390 ~sparc 
x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="gnuplot bitmap? ( free-noncomm )"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/PerlIO-via-Timeout/

2018-04-16 Thread Sergei Trofimovich
commit: 7f60f65e0eb911b6dba42a898006fd038e8e2c64
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:13:02 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:25:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f60f65e

dev-perl/PerlIO-via-Timeout: stable 0.320.0 for ppc, bug #647724

Bug: https://bugs.gentoo.org/647724
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 dev-perl/PerlIO-via-Timeout/PerlIO-via-Timeout-0.320.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/PerlIO-via-Timeout/PerlIO-via-Timeout-0.320.0.ebuild 
b/dev-perl/PerlIO-via-Timeout/PerlIO-via-Timeout-0.320.0.ebuild
index f9776788baf..f4b6df8b40b 100644
--- a/dev-perl/PerlIO-via-Timeout/PerlIO-via-Timeout-0.320.0.ebuild
+++ b/dev-perl/PerlIO-via-Timeout/PerlIO-via-Timeout-0.320.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PerlIO layer that adds read & write timeout to a handle"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc x86"
+KEYWORDS="amd64 ~arm ppc x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-irc/dccserver/

2018-04-16 Thread Sergei Trofimovich
commit: 92fef3632f61b95c616776064970ac4d58a5ff92
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:13:22 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:25:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92fef363

net-irc/dccserver: stable 0.5-r1 for ppc, bug #647726

Bug: https://bugs.gentoo.org/647726
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 net-irc/dccserver/dccserver-0.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/dccserver/dccserver-0.5-r1.ebuild 
b/net-irc/dccserver/dccserver-0.5-r1.ebuild
index 866226b755b..24b57491576 100644
--- a/net-irc/dccserver/dccserver-0.5-r1.ebuild
+++ b/net-irc/dccserver/dccserver-0.5-r1.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="http://www.nih.at/dccserver/;
 SRC_URI="${HOMEPAGE}${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE=""
 
 DEPEND=""



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

2018-04-16 Thread Sergei Trofimovich
commit: b2bf8e670d9f9d6d869ddb9f61c3e5963196db30
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:13:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:25:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2bf8e67

net-libs/libident: stable 0.32-r1 for ppc, bug #647732

Bug: https://bugs.gentoo.org/647732
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 net-libs/libident/libident-0.32-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libident/libident-0.32-r1.ebuild 
b/net-libs/libident/libident-0.32-r1.ebuild
index 673e864c277..182b8f4bb1d 100644
--- a/net-libs/libident/libident-0.32-r1.ebuild
+++ b/net-libs/libident/libident-0.32-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://people.via.ecp.fr/~rem/libident/${P}.tar.bz2;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~mips ~ppc ppc64 ~s390 ~sparc x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sparc x86"
 IUSE=""
 
 RDEPEND=""



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

2018-04-16 Thread Sergei Trofimovich
commit: ec09abde43702579bb8723a71ab9228c8fd76b1a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:12:33 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:25:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec09abde

app-editors/scite: stable 4.0.2 for ppc, bug #647584

Bug: https://bugs.gentoo.org/647584
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

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

diff --git a/app-editors/scite/scite-4.0.2.ebuild 
b/app-editors/scite/scite-4.0.2.ebuild
index b480aae0dad..f5d3f5c8774 100644
--- a/app-editors/scite/scite-4.0.2.ebuild
+++ b/app-editors/scite/scite-4.0.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz"
 
 LICENSE="HPND lua? ( MIT )"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="lua"
 
 RDEPEND="dev-libs/glib:=



[gentoo-commits] repo/gentoo:master commit in: dev-perl/IO-Socket-Timeout/

2018-04-16 Thread Sergei Trofimovich
commit: 9753d90341ec2d812eacb6091f09a745e8b24ddd
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:23:31 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:25:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9753d903

dev-perl/IO-Socket-Timeout: stable 0.320.0 for ppc, bug #647724

Bug: https://bugs.gentoo.org/647724
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 dev-perl/IO-Socket-Timeout/IO-Socket-Timeout-0.320.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/IO-Socket-Timeout/IO-Socket-Timeout-0.320.0.ebuild 
b/dev-perl/IO-Socket-Timeout/IO-Socket-Timeout-0.320.0.ebuild
index 404bb0616c5..c1fd8f0487b 100644
--- a/dev-perl/IO-Socket-Timeout/IO-Socket-Timeout-0.320.0.ebuild
+++ b/dev-perl/IO-Socket-Timeout/IO-Socket-Timeout-0.320.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="IO::Socket with read/write timeout"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc x86"
+KEYWORDS="amd64 ~arm ppc x86"
 IUSE="test"
 
 RDEPEND="



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

2018-04-16 Thread Sergei Trofimovich
commit: d9b3b0f320223ebf38a18b60b96210f1c34c69c3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:14:00 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:25:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9b3b0f3

net-misc/wput: stable 0.6.1-r1 for ppc, bug #647736

Bug: https://bugs.gentoo.org/647736
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 net-misc/wput/wput-0.6.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wput/wput-0.6.1-r1.ebuild 
b/net-misc/wput/wput-0.6.1-r1.ebuild
index 95361822ca9..4622df77796 100644
--- a/net-misc/wput/wput-0.6.1-r1.ebuild
+++ b/net-misc/wput/wput-0.6.1-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~sparc x86"
 IUSE="debug nls ssl"
 
 RDEPEND="ssl? ( net-libs/gnutls )"



[gentoo-commits] repo/gentoo:master commit in: net-irc/muh/

2018-04-16 Thread Sergei Trofimovich
commit: 94ad1b15e0605bd721a258dc22a1fd86edbdcb76
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:13:35 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:25:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94ad1b15

net-irc/muh: stable 2.2a-r1 for ppc, bug #647728

Bug: https://bugs.gentoo.org/647728
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 net-irc/muh/muh-2.2a-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/muh/muh-2.2a-r1.ebuild b/net-irc/muh/muh-2.2a-r1.ebuild
index cb57115efd2..a640b84e78d 100644
--- a/net-irc/muh/muh-2.2a-r1.ebuild
+++ b/net-irc/muh/muh-2.2a-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ~mips ~ppc ~sparc x86"
+KEYWORDS="alpha amd64 ~hppa ~mips ppc ~sparc x86"
 IUSE="ipv6"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: net-dns/updatedd/

2018-04-16 Thread Sergei Trofimovich
commit: 9fb761036eedf4b65d3a81087130671229301984
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:13:12 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:25:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb76103

net-dns/updatedd: stable 2.6-r5 for ppc, bug #647724

Bug: https://bugs.gentoo.org/647724
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 net-dns/updatedd/updatedd-2.6-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/updatedd/updatedd-2.6-r5.ebuild 
b/net-dns/updatedd/updatedd-2.6-r5.ebuild
index bec39311837..341328f5421 100644
--- a/net-dns/updatedd/updatedd-2.6-r5.ebuild
+++ b/net-dns/updatedd/updatedd-2.6-r5.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://savannah.nongnu.org/download/updatedd/${PN}_${PV}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc x86"
+KEYWORDS="amd64 ~arm ppc x86"
 IUSE=""
 
 DEPEND=""



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

2018-04-16 Thread Sergei Trofimovich
commit: 532a1faf690907c3b6f68ecfa04a80b141476483
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:12:16 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:25:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=532a1faf

media-gfx/quat: stable 1.20-r1 for ppc, bug #647522

Bug: https://bugs.gentoo.org/647522
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 media-gfx/quat/quat-1.20-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/quat/quat-1.20-r1.ebuild 
b/media-gfx/quat/quat-1.20-r1.ebuild
index db86e456d4c..8c1256dbdd0 100644
--- a/media-gfx/quat/quat-1.20-r1.ebuild
+++ b/media-gfx/quat/quat-1.20-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://www.physcip.uni-stuttgart.de/phy11733/download/quat-1.20.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="X debug"
 
 DEPEND="X? ( =x11-libs/fltk-1*



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

2018-04-16 Thread Mikle Kolyada
commit: ec41ddee64e69435109e6a1e3f839d0051c1591e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Apr 16 21:24:53 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Apr 16 21:25:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec41ddee

media-libs/gexiv2: arm stable wrt bug #647408

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/media-libs/gexiv2/gexiv2-0.10.8.ebuild 
b/media-libs/gexiv2/gexiv2-0.10.8.ebuild
index 311e9d0dfdf..dca051d1b59 100644
--- a/media-libs/gexiv2/gexiv2-0.10.8.ebuild
+++ b/media-libs/gexiv2/gexiv2-0.10.8.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://gnome/sources/${PN}/${MY_PV}/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 sparc x86"
 IUSE="introspection python static-libs test vala"
 
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/ponyprog/, dev-embedded/ponyprog/files/

2018-04-16 Thread David Seifert
commit: cbb6b76bb0a1f24b59237c7a4d3dcfc569b0d890
Author: ktrace  bks  tv>
AuthorDate: Thu Mar 29 08:03:50 2018 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Apr 16 21:12:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbb6b76b

dev-embedded/ponyprog: bump version to 3.0.0

  new version, dynamically linked with app-editors/qhexedit2

Package-Manager: Portage-2.3.13, Repoman-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/6763

 dev-embedded/ponyprog/Manifest |   1 +
 .../ponyprog/files/ponyprog-3.0.0-desktop-qa.patch |  17 +++
 .../files/ponyprog-3.0.0-fix-build-system.patch| 124 +
 dev-embedded/ponyprog/ponyprog-3.0.0.ebuild|  41 +++
 4 files changed, 183 insertions(+)

diff --git a/dev-embedded/ponyprog/Manifest b/dev-embedded/ponyprog/Manifest
index be10936fa82..8bc89ddebca 100644
--- a/dev-embedded/ponyprog/Manifest
+++ b/dev-embedded/ponyprog/Manifest
@@ -1 +1,2 @@
 DIST Pony_Prog2000-2.07c.tar.gz 653300 BLAKE2B 
7b20450dfefb4370fb813b5532e6ba504b6ac8e598a2e46615ba522537e91b7798f6f86fbf93320fc71be5fe756ceef3351304196da191f7e68670f75ab5f865
 SHA512 
33cd14fa8283ce8af8265a48df7d960c7c2779551d0f204f6728a9e1e54204f52ea608c4e6090dc56f7634a02abd9bb960230f75a3a9716b1639708a57c31809
+DIST ponyprog-3.0.0.tar.gz 933166 BLAKE2B 
46eb0a720c91ed187ef06907b28d8b84ecbe4c62a92cabf2b9ff58c553e3f8afc949e523d6b97af0cbf168c545b71e0395e02e5c182714a76bbacce645a1d890
 SHA512 
a1779b28e03f824fb242d6eb063f0e038af26602c26d5392884f69cbbccac8a934660dffa9bec7489aeb2656e35f21e2b097fc6fe011f278046894e180023881

diff --git a/dev-embedded/ponyprog/files/ponyprog-3.0.0-desktop-qa.patch 
b/dev-embedded/ponyprog/files/ponyprog-3.0.0-desktop-qa.patch
new file mode 100644
index 000..6883606592f
--- /dev/null
+++ b/dev-embedded/ponyprog/files/ponyprog-3.0.0-desktop-qa.patch
@@ -0,0 +1,17 @@
+--- a/desktop/ponyprog.desktop
 b/desktop/ponyprog.desktop
+@@ -1,12 +1,12 @@
+ [Desktop Entry]
+-Version=3.0.0
++Version=1.1
+ Name=Ponyprog
+ Comment=EEPROM and microcontroller flasher
+ GenericName=Ponyprog
+ TryExec=ponyprog
+ Exec=ponyprog
+ Terminal=false
+-Icon=ponyprog.png
++Icon=ponyprog
+ Type=Application
+ Categories=Utility;Qt;
+ 

diff --git a/dev-embedded/ponyprog/files/ponyprog-3.0.0-fix-build-system.patch 
b/dev-embedded/ponyprog/files/ponyprog-3.0.0-fix-build-system.patch
new file mode 100644
index 000..c83b62a3a73
--- /dev/null
+++ b/dev-embedded/ponyprog/files/ponyprog-3.0.0-fix-build-system.patch
@@ -0,0 +1,124 @@
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -1,9 +1,7 @@
+ PROJECT(ponyprog)
+ 
+ # Configure CMake ...
+-CMAKE_MINIMUM_REQUIRED(VERSION 2.8 FATAL_ERROR)
+-CMAKE_POLICY(SET CMP0003 OLD)
+-CMAKE_POLICY(SET CMP0015 OLD)
++CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12 FATAL_ERROR)
+ 
+ # set the Qt version to 4 or 5
+ OPTION (USE_QT5 "Using of Qt5 version for compiling" ON)
+@@ -52,13 +50,7 @@
+ OPTION (USE_PROFILER "Include in binary file profiling information" OFF)
+ 
+ 
+-
+-IF(${USE_DEBUGGER})
+-  SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS_DEBUG} -Wall")
+-ELSE()
+-  SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS_RELEASE} -Wall")
+-ENDIF()
+-
++ADD_COMPILE_OPTIONS("-Wall")
+ MESSAGE(STATUS "CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}")
+ 
+ INCLUDE(CheckIncludeFile)
+@@ -202,7 +194,6 @@
+ SET ( UI_HEADERS_DIR temp )
+ SET ( UI_SOURCES_DIR temp )
+ 
+-ADD_SUBDIRECTORY(qhexedit2/src)
+ ADD_SUBDIRECTORY(SrcPony)
+ 
+ INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR} 
${CMAKE_CURRENT_SOURCE_DIR}/qhexedit2/src/ ${CMAKE_CURRENT_SOURCE_DIR}/SrcPony/ 
)
+@@ -265,6 +256,8 @@
+   MESSAGE(STATUS "QT LIBRARIES: ${QT_LIBRARIES} ${Qt5Widgets_LIBRARIES} 
${Qt5Multimedia_LIBRARIES} ${Qt5PrintSupport_LIBRARIES} ${Qt5Core_LIBRARIES}")
+ ENDIF()
+ 
++TARGET_LINK_LIBRARIES(${CMAKE_PROJECT_NAME} qhexedit)
++
+ ADD_CUSTOM_TARGET (tags
+ COMMAND  ctags -R -f tags ${CMAKE_SOURCE_DIR}/SrcPony
+ WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
+--- a/distribution/posix/CMakeLists.txt
 b/distribution/posix/CMakeLists.txt
+@@ -5,6 +5,8 @@
+ SET(CPACK_INSTALL_PREFIX "/usr") 
+ SET(CPACK_PACKAGE_INSTALL_DIRECTORY "/usr")
+ 
++INCLUDE(GNUInstallDirs)
++
+ MESSAGE("CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}")
+ 
+ # SET( CPACK_PACKAGE_GROUP "${PONYPROG_CPACK_PACKAGE_GROUP}" )
+@@ -12,46 +14,40 @@
+ SET( CPACK_PACKAGE_SHLIBDEPS "${PONYPROG_CPACK_PACKAGE_SHLIBDEPS}" )
+ # SET( CPACK_PACKAGE_DEPENDS "${PONYPROG_CPACK_PACKAGE_DEPENDS}" )
+ 
+-INSTALL(PROGRAMS "${CURRENT_BUILD_DIR}/ponyprog" 
+-DESTINATION "bin/" 
+-COMPONENT "application" 
+-PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ GROUP_EXECUTE 
GROUP_READ WORLD_EXECUTE WORLD_READ
++INSTALL(PROGRAMS "${CURRENT_BUILD_DIR}/ponyprog"
++DESTINATION "${CMAKE_INSTALL_BINDIR}"
++COMPONENT "application"
+ )
+ 
+-INSTALL(DIRECTORY "${PROJECT_SOURCE_DIR}/icons/"
+-DESTINATION "share/icons/" 
+-COMPONENT "application" 
+-

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

2018-04-16 Thread David Seifert
commit: 65f94bf298f1b868f641ee525bbd367c3f9ee791
Author: ktrace  bks  tv>
AuthorDate: Thu Mar 29 14:07:31 2018 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Apr 16 21:12:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65f94bf2

app-editors/qhexedit2: change git branch to ponyprog

 change git branch to ponyprog for succesfully build ponyprog 3.0.0, add
 headers installing.

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 app-editors/qhexedit2/Manifest |  1 +
 .../qhexedit2/qhexedit2-0.8.4_p20170719.ebuild | 86 ++
 2 files changed, 87 insertions(+)

diff --git a/app-editors/qhexedit2/Manifest b/app-editors/qhexedit2/Manifest
index 961c901f02e..89e26c7dbc8 100644
--- a/app-editors/qhexedit2/Manifest
+++ b/app-editors/qhexedit2/Manifest
@@ -1 +1,2 @@
 DIST qhexedit2-0.8.4.tar.gz 340766 BLAKE2B 
af24031fdd9f8d677f7e8ab8fd69667852dd971db30f5406b908bf7f2dc692c87e99c141f355adc82c8226b5b29f53ce07ba63656d866f8688cb2cbc67f2
 SHA512 
8ed831d75c8ec1897dfd7ef497423908b26b0f56e6577928ed035654e52b437f64edd61cfcc1de6eaf5d1f29f9dc97da84d2edd7f427e3c09c9d75d7bc6504ff
+DIST qhexedit2-0.8.4_p20170719.tar.gz 342037 BLAKE2B 
667a7c3e93ed3422f21da53b6811fca53b210cfaf2603cf2a61e377e68f295b5024a9fa73d444c1e50af274bdbc6faa62bc2ab4aad176a8b3a6d7540117c5a30
 SHA512 
3c412b9bbe4f84f6f445b6ad530fc51dc5422a0a5bb6184edc7df92595aa5215c345e2b16effae8de758b299c5f7f7d44cf54dd65a180941c30790194679baa8

diff --git a/app-editors/qhexedit2/qhexedit2-0.8.4_p20170719.ebuild 
b/app-editors/qhexedit2/qhexedit2-0.8.4_p20170719.ebuild
new file mode 100644
index 000..e4e30e3c8f4
--- /dev/null
+++ b/app-editors/qhexedit2/qhexedit2-0.8.4_p20170719.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+
+DISTUTILS_OPTIONAL=1
+
+inherit distutils-r1 qmake-utils
+
+EGIT_COMMIT="5f3ca79dbe8c765b685636a1751d242a6bfabb7d"
+DESCRIPTION="Hex editor library, Qt application written in C++ with Python 
bindings"
+HOMEPAGE="https://github.com/lancos/qhexedit2/;
+SRC_URI="https://github.com/lancos/${PN}/archive/${EGIT_COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc +gui python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.8.4-fixtest.patch"
+   "${FILESDIR}/${PN}-0.8.4-setup.py.patch"
+)
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   python? (
+   dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}]
+   dev-python/sip[${PYTHON_USEDEP}]
+   ${PYTHON_DEPS}
+   )
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
+
+src_prepare() {
+   default
+   sed -i -e '/^unix:DESTDIR/ d' -e "\$atarget.path = /usr/$(get_libdir)" \
+   -e "\$aINSTALLS += target" src/qhexedit.pro \
+   || die "src/qhexedit.pro: sed failed"
+   use python && distutils-r1_src_prepare
+}
+
+src_configure() {
+   eqmake5 src/qhexedit.pro
+   if use gui; then
+   cd example || die "can't cd example"
+   eqmake5 qhexedit.pro
+   fi
+}
+
+src_compile() {
+   default
+   use python && distutils-r1_src_compile
+   use gui && emake -C example
+}
+
+python_compile() {
+   use python && distutils-r1_python_compile build_ext 
--library-dirs="${S}"
+}
+
+src_test() {
+   cd test || die "can't cd test"
+   mkdir logs || die "can't create logs dir"
+   eqmake5 chunks.pro
+   emake
+   ./chunks || die "test run failed"
+   grep -q "^NOK" logs/Summary.log && die "test failed"
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   doheader src/*.h
+   use python && distutils-r1_src_install
+   use gui && dobin example/qhexedit
+   if use doc; then
+   dodoc -r doc/html
+   dodoc doc/release.txt
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/ponyprog/

2018-04-16 Thread David Seifert
commit: d2ca0c2ae8a801e0be2cf8365732ceb31a7dadce
Author: ktrace  bks  tv>
AuthorDate: Thu Mar 29 10:38:19 2018 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Apr 16 21:12:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2ca0c2a

dev-embedded/ponyprog: add maintainer, add github

- Add myself and proxy as maintainers
- add github as sources

Package-Manager: Portage-2.3.24, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/6763

 dev-embedded/ponyprog/metadata.xml | 9 +
 1 file changed, 9 insertions(+)

diff --git a/dev-embedded/ponyprog/metadata.xml 
b/dev-embedded/ponyprog/metadata.xml
index ae49e889b04..844c5157aa1 100644
--- a/dev-embedded/ponyprog/metadata.xml
+++ b/dev-embedded/ponyprog/metadata.xml
@@ -5,7 +5,16 @@
embed...@gentoo.org
Embedded Gentoo

+   
+   coy...@bks.tv
+   Victor Kustov
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

+   lancos/ponyprog
ponyprog

 



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

2018-04-16 Thread Sergei Trofimovich
commit: 879ffc0fc6804ebcf5b7d3dc8f18a74e3e550585
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:05:53 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:05:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=879ffc0f

dev-python/asn1crypto: stable 0.24.0 for ppc, bug #647000

Bug: https://bugs.gentoo.org/647000
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild 
b/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild
index 99e79237c16..336dff94114 100644
--- a/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild
+++ b/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/wbond/asn1crypto/archive/${PV}.tar.gz -> ${P}.gh.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ppc64 ~sparc ~x86 
~amd64-fbsd ~x64-macos ~x64-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-fbsd ~x64-macos ~x64-solaris"
 IUSE="test"
 
 RDEPEND=""



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

2018-04-16 Thread Sergei Trofimovich
commit: 69e30e55516ee0e6dfe0a71b1156f5c6840cfe78
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:06:08 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:06:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69e30e55

dev-python/cryptography: stable 2.1.4 for ppc, bug #647000

Bug: https://bugs.gentoo.org/647000
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-python/cryptography/cryptography-2.1.4.ebuild 
b/dev-python/cryptography/cryptography-2.1.4.ebuild
index 1315bb5010f..f646f58aab9 100644
--- a/dev-python/cryptography/cryptography-2.1.4.ebuild
+++ b/dev-python/cryptography/cryptography-2.1.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 IUSE="libressl test"
 
 # the openssl 1.0.2l-r1 needs to be updated again :(



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

2018-04-16 Thread Sergei Trofimovich
commit: 71bf4902ef89a1c91e208b4d74a468916af646e7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 21:06:20 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:06:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71bf4902

dev-python/pyopenssl: stable 17.5.0 for ppc, bug #647000

Bug: https://bugs.gentoo.org/647000
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild 
b/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
index 3b897df8a75..076b670faa3 100644
--- a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
+++ b/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-client/lynx/

2018-04-16 Thread Sergei Trofimovich
commit: ac36778486ba6ab9fc9fdf8143d40de7fb24f93f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 20:55:41 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:02:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac367784

www-client/lynx: stable 2.8.9_pre16 for ia64, bug #651560

Bug: https://bugs.gentoo.org/651560
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 www-client/lynx/lynx-2.8.9_pre16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/lynx/lynx-2.8.9_pre16.ebuild 
b/www-client/lynx/lynx-2.8.9_pre16.ebuild
index 5ad47845e97..99a00e76363 100644
--- a/www-client/lynx/lynx-2.8.9_pre16.ebuild
+++ b/www-client/lynx/lynx-2.8.9_pre16.ebuild
@@ -21,7 +21,7 @@ 
SRC_URI="http://invisible-mirror.net/archives/lynx/tarballs/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 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="bzip2 cjk gnutls idn ipv6 nls ssl unicode libressl"
 
 RDEPEND="



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

2018-04-16 Thread Sergei Trofimovich
commit: 15256ed5cc8006b8bd1ff88bd629dccd7aaeff55
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 20:55:47 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:02:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15256ed5

dev-libs/openssl: stable 1.0.2o for ia64, bug #651730

Bug: https://bugs.gentoo.org/651730
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 dev-libs/openssl/openssl-1.0.2o.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/openssl/openssl-1.0.2o.ebuild 
b/dev-libs/openssl/openssl-1.0.2o.ebuild
index b19312505a6..0c7d4a84c0d 100644
--- a/dev-libs/openssl/openssl-1.0.2o.ebuild
+++ b/dev-libs/openssl/openssl-1.0.2o.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://openssl/source/${MY_P}.tar.gz
 
 LICENSE="openssl"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 IUSE="+asm bindist gmp kerberos rfc3779 sctp cpu_flags_x86_sse2 sslv2 +sslv3 
static-libs test +tls-heartbeat vanilla zlib"
 RESTRICT="!bindist? ( bindist )"
 



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/wireshark/

2018-04-16 Thread Sergei Trofimovich
commit: a6d7bd0fd10c88b36e89103b7eee59a95a033ec6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 20:56:04 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:03:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6d7bd0f

net-analyzer/wireshark: stable 2.4.6 for ia64, bug #652402

Bug: https://bugs.gentoo.org/652402
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 net-analyzer/wireshark/wireshark-2.4.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/wireshark/wireshark-2.4.6.ebuild 
b/net-analyzer/wireshark/wireshark-2.4.6.ebuild
index f80d12f33c7..f0e31f02e87 100644
--- a/net-analyzer/wireshark/wireshark-2.4.6.ebuild
+++ b/net-analyzer/wireshark/wireshark-2.4.6.ebuild
@@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~ppc ~ppc64 x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~ppc ~ppc64 x86 ~x86-fbsd"
 IUSE="
adns androiddump +capinfos +caps +captype ciscodump cpu_flags_x86_sse4_2
+dftest doc doc-pdf +dumpcap +editcap geoip gtk kerberos libssh libxml2 
lua



[gentoo-commits] repo/gentoo:master commit in: app-shells/zsh/

2018-04-16 Thread Sergei Trofimovich
commit: 031aadc8a6caff6a4699bdd6d56bb462df61bc22
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 20:55:53 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:02:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=031aadc8

app-shells/zsh: stable 5.5 for ia64, bug #651860

Bug: https://bugs.gentoo.org/651860
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 app-shells/zsh/zsh-5.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/zsh/zsh-5.5.ebuild b/app-shells/zsh/zsh-5.5.ebuild
index 670155fecbc..4d02f6fa49e 100644
--- a/app-shells/zsh/zsh-5.5.ebuild
+++ b/app-shells/zsh/zsh-5.5.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3 autotools
EGIT_REPO_URI="git://git.code.sf.net/p/zsh/code"
 else
-   KEYWORDS="alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc x86 ~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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
SRC_URI="https://www.zsh.org/pub/${P}.tar.gz
doc? ( https://www.zsh.org/pub/${P}-doc.tar.xz )"
 fi



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

2018-04-16 Thread Sergei Trofimovich
commit: 6662e3eb97a4e09c2e0f29c906e4e5d49af18754
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Apr 16 20:55:35 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 21:02:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6662e3eb

dev-python/beaker: stable 1.8.1 for ia64, bug #650904

Bug: https://bugs.gentoo.org/650904
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

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

diff --git a/dev-python/beaker/beaker-1.8.1.ebuild 
b/dev-python/beaker/beaker-1.8.1.ebuild
index a70ac89e5ca..52927d4be20 100644
--- a/dev-python/beaker/beaker-1.8.1.ebuild
+++ b/dev-python/beaker/beaker-1.8.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/bbangert/beaker/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux 
~x86-linux ~x64-macos ~x86-macos"
 IUSE="test"
 
 RDEPEND="virtual/python-funcsigs[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-fonts/ubuntu-font-family/

2018-04-16 Thread Aaron Bauman
commit: 36bf97457b98a3664b0073899c9a19922874b3d3
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Apr 16 20:59:20 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Apr 16 21:01:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36bf9745

media-fonts/ubuntu-font-family: amd64 stable wrt bug #653322

Bug: https://bugs.gentoo.org/653322
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-fonts/ubuntu-font-family/ubuntu-font-family-0.83-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/ubuntu-font-family/ubuntu-font-family-0.83-r1.ebuild 
b/media-fonts/ubuntu-font-family/ubuntu-font-family-0.83-r1.ebuild
index 75c978bd3a5..5954321136e 100644
--- a/media-fonts/ubuntu-font-family/ubuntu-font-family-0.83-r1.ebuild
+++ b/media-fonts/ubuntu-font-family/ubuntu-font-family-0.83-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://font.ubuntu.com/download/${P}.zip;
 
 LICENSE="UbuntuFontLicense-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
 IUSE=""
 
 DEPEND="app-arch/unzip"



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

2018-04-16 Thread Patrice Clement
commit: 85e3040a7f399c1a43bbdcf3c103083a9842595a
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Apr 16 20:35:33 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Apr 16 20:48:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85e3040a

dev-db/sqlite: add back proxy-maint to metadata.xml file.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-db/sqlite/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-db/sqlite/metadata.xml b/dev-db/sqlite/metadata.xml
index 271ee2dfe20..ae2540a300e 100644
--- a/dev-db/sqlite/metadata.xml
+++ b/dev-db/sqlite/metadata.xml
@@ -5,6 +5,10 @@
arfrever@gmail.com
Arfrever Frehtes Taifersar Arahesis

+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

Enable overwriting of deleted 
content with zeros by default 
(http://sqlite.org/pragma.html#pragma_secure_delete), causing some performance 
penalty
Install additional tools



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

2018-04-16 Thread Sergei Trofimovich
commit: f40f3445169c77e50fc912a4d64d4cc6ca1b6c38
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Apr 16 20:05:34 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr 16 20:43:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f40f3445

media-libs/openh264: stable 1.7.0-r1 for sparc

Bug: https://bugs.gentoo.org/604420
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 media-libs/openh264/openh264-1.7.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/openh264/openh264-1.7.0-r1.ebuild 
b/media-libs/openh264/openh264-1.7.0-r1.ebuild
index 45714df04ee..99ef3ac5206 100644
--- a/media-libs/openh264/openh264-1.7.0-r1.ebuild
+++ b/media-libs/openh264/openh264-1.7.0-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/cisco/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz
https://github.com/mozilla/gmp-api/archive/Firefox${MOZVER}.tar.gz -> 
gmp-api-Firefox${MOZVER}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="+plugin utils"
 
 RESTRICT="bindist"



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

2018-04-16 Thread Richard Farina
commit: 18586f89d26652245ec2e1225aa701577adaa5cc
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Apr 16 20:28:30 2018 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Apr 16 20:37:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18586f89

net-wireless/wpa_supplicant: bug 640492

adding eapol_test support accidently introduced -Werror, fixing

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 net-wireless/wpa_supplicant/wpa_supplicant-2.6-r5.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r5.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r5.ebuild
index d66cafc5abd..db98a23c929 100644
--- a/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r5.ebuild
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r5.ebuild
@@ -142,6 +142,9 @@ src_prepare() {
eapply 
"${FILESDIR}/2017-1/rebased-v2.6-0006-TDLS-Reject-TPK-TK-reconfiguration.patch"
eapply 
"${FILESDIR}/2017-1/rebased-v2.6-0007-WNM-Ignore-WNM-Sleep-Mode-Response-without-pending-r.patch"
eapply 
"${FILESDIR}/2017-1/rebased-v2.6-0008-FT-Do-not-allow-multiple-Reassociation-Response-fram.patch"
+
+   # bug (640492)
+   sed -i 's#-Werror ##' wpa_supplicant/Makefile || die
 }
 
 src_configure() {



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

2018-04-16 Thread Richard Farina
commit: 8f5b90cb427022c57de4b025302742fb35520474
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Apr 16 20:13:56 2018 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Apr 16 20:37:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f5b90cb

net-wireless/wpa_supplicant: bug #609368

for completeness adding a minimum version dep when relaxing the fasteap
  restriction.  I expect this to harm no one

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 .../{wpa_supplicant-2.6-r4.ebuild => wpa_supplicant-2.6-r5.ebuild}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r4.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r5.ebuild
similarity index 99%
rename from net-wireless/wpa_supplicant/wpa_supplicant-2.6-r4.ebuild
rename to net-wireless/wpa_supplicant/wpa_supplicant-2.6-r5.ebuild
index 02b2a20e35f..d66cafc5abd 100644
--- a/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r4.ebuild
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r5.ebuild
@@ -13,7 +13,7 @@ LICENSE="|| ( GPL-2 BSD )"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd"
 IUSE="ap dbus eap-sim eapol_test fasteap gnutls +hs2-0 libressl p2p privsep 
ps3 qt5 readline selinux smartcard ssl tdls uncommon-eap-types wimax wps 
kernel_linux kernel_FreeBSD"
-REQUIRED_USE="fasteap? ( !ssl ) smartcard? ( ssl )"
+REQUIRED_USE="smartcard? ( ssl )"
 
 CDEPEND="dbus? ( sys-apps/dbus )
kernel_linux? (
@@ -38,7 +38,7 @@ CDEPEND="dbus? ( sys-apps/dbus )
net-libs/gnutls:=
)
!gnutls? (
-   !libressl? ( dev-libs/openssl:0= )
+   !libressl? ( >=dev-libs/openssl-1.0.2k:0= )
libressl? ( dev-libs/libressl:0= )
)
)



[gentoo-commits] repo/gentoo:master commit in: sys-apps/init-system-helpers/files/, sys-apps/init-system-helpers/

2018-04-16 Thread Brian Evans
commit: 54dea0df66ba2fd29542d6fb59aff5afaf034eb3
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Apr 16 20:33:26 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Apr 16 20:33:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54dea0df

sys-apps/init-system-helpers: Revbump to remove OpenRC symlink mgmt

This function is just insane letting a script try to manage started
instead of letting the init system handle it

Closes: https://bugs.gentoo.org/641836
Closes: https://bugs.gentoo.org/649014
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 .../files/revert-openrc-management.patch   | 32 ++
 .../init-system-helpers-1.49-r1.ebuild | 29 
 2 files changed, 61 insertions(+)

diff --git a/sys-apps/init-system-helpers/files/revert-openrc-management.patch 
b/sys-apps/init-system-helpers/files/revert-openrc-management.patch
new file mode 100644
index 000..49b4916fab3
--- /dev/null
+++ b/sys-apps/init-system-helpers/files/revert-openrc-management.patch
@@ -0,0 +1,32 @@
+--- a/script/service
 b/script/service
+@@ -159,23 +160,6 @@ run_via_sysvinit() {
+fi
+ }
+ 
+-update_openrc_started_symlinks() {
+-   # maintain the symlinks of /run/openrc/started so that
+-   # rc-status works with the service command as well
+-   if [ -d /run/openrc/started ] ; then
+-  case "${ACTION}" in
+-  start)
+- if [ ! -h /run/openrc/started/$SERVICE ] ; then
+-ln -s $SERVICEDIR/$SERVICE /run/openrc/started/$SERVICE || true
+- fi
+-  ;;
+-  stop)
+- rm /run/openrc/started/$SERVICE || true
+-  ;;
+-  esac
+-   fi
+-}
+-
+ # When this machine is running systemd, standard service calls are turned into
+ # systemctl calls.
+ if [ -n "$is_systemd" ]
+@@ -210,5 +228,4 @@ then
+esac
+ fi
+ 
+-update_openrc_started_symlinks
+ run_via_sysvinit

diff --git a/sys-apps/init-system-helpers/init-system-helpers-1.49-r1.ebuild 
b/sys-apps/init-system-helpers/init-system-helpers-1.49-r1.ebuild
new file mode 100644
index 000..23885a965ed
--- /dev/null
+++ b/sys-apps/init-system-helpers/init-system-helpers-1.49-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Helper scripts useful for both OpenRC and systemd"
+HOMEPAGE="https://packages.debian.org/sid/init-system-helpers;
+# git repo: https://anonscm.debian.org/git/collab-maint/init-system-helpers.git
+SRC_URI="http://http.debian.net/debian/pool/main/i/${PN}/${PN}_${PV}.tar.xz;
+
+LICENSE="BSD GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: sys-apps/init-system-helpers/

2018-04-16 Thread Brian Evans
commit: fc8004071660fd512a27411d69e07294d67c478c
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Apr 16 20:35:08 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Apr 16 20:35:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc800407

sys-apps/init-system-helpers: Fast stable for OpenRC mis-mgmt

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 .../init-system-helpers-1.49-r1.ebuild |  2 +-
 .../init-system-helpers-1.49.ebuild| 27 --
 2 files changed, 1 insertion(+), 28 deletions(-)

diff --git a/sys-apps/init-system-helpers/init-system-helpers-1.49-r1.ebuild 
b/sys-apps/init-system-helpers/init-system-helpers-1.49-r1.ebuild
index 23885a965ed..97888bcce01 100644
--- a/sys-apps/init-system-helpers/init-system-helpers-1.49-r1.ebuild
+++ b/sys-apps/init-system-helpers/init-system-helpers-1.49-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://http.debian.net/debian/pool/main/i/${PN}/${PN}_${PV}.tar.xz;
 
 LICENSE="BSD GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
 IUSE=""
 
 DEPEND=""

diff --git a/sys-apps/init-system-helpers/init-system-helpers-1.49.ebuild 
b/sys-apps/init-system-helpers/init-system-helpers-1.49.ebuild
deleted file mode 100644
index 5d7222aa8db..000
--- a/sys-apps/init-system-helpers/init-system-helpers-1.49.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Helper scripts useful for both OpenRC and systemd"
-HOMEPAGE="https://packages.debian.org/sid/init-system-helpers;
-# git repo: https://anonscm.debian.org/git/collab-maint/init-system-helpers.git
-SRC_URI="http://http.debian.net/debian/pool/main/i/${PN}/${PN}_${PV}.tar.xz;
-
-LICENSE="BSD GPL-2+"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: games-arcade/gish-demo/

2018-04-16 Thread Pacho Ramos
commit: d1b949fcb1dd825b942cc9b78edcca4651e302d9
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 20:06:08 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1b949fc

games-arcade/gish-demo: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/gish-demo/gish-demo-1.6.ebuild | 36 -
 1 file changed, 36 deletions(-)

diff --git a/games-arcade/gish-demo/gish-demo-1.6.ebuild 
b/games-arcade/gish-demo/gish-demo-1.6.ebuild
deleted file mode 100644
index cbfaf9f283b..000
--- a/games-arcade/gish-demo/gish-demo-1.6.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils games
-
-DESCRIPTION="Play as an amorphous ball of tar that rolls and squishes around"
-HOMEPAGE="http://www.chroniclogic.com/gish.htm;
-SRC_URI="http://www.chroniclogic.com/demos/gishdemo.tar.gz -> ${P}.tar.gz"
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE=""
-RESTRICT="mirror bindist strip"
-QA_PREBUILT="${GAMES_PREFIX_OPT:1}/${PN}/gish"
-
-RDEPEND="media-libs/libsdl
-   media-libs/libvorbis
-   virtual/opengl
-   x11-libs/libX11
-   >=media-libs/openal-1.6.372"
-
-S=${WORKDIR}/gishdemo
-
-src_install() {
-   local dir=${GAMES_PREFIX_OPT}/${PN}
-   local gishbin=gishdemo
-   use amd64 && gishbin=gishdemo_64
-
-   insinto "${dir}"
-   doins -r *
-   fperms +x "${dir}"/${gishbin}
-   games_make_wrapper gish ./${gishbin} "${dir}"
-   prepgamesdirs
-}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/gnujump/

2018-04-16 Thread Pacho Ramos
commit: b5a558e85c81195af4db66f5c1f1f7591eaf59f3
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 20:10:41 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5a558e8

games-arcade/gnujump: Stop using games.eclass

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/gnujump/gnujump-1.0.8-r1.ebuild | 35 
 1 file changed, 35 insertions(+)

diff --git a/games-arcade/gnujump/gnujump-1.0.8-r1.ebuild 
b/games-arcade/gnujump/gnujump-1.0.8-r1.ebuild
new file mode 100644
index 000..271171a2cf0
--- /dev/null
+++ b/games-arcade/gnujump/gnujump-1.0.8-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit desktop flag-o-matic
+
+DESCRIPTION="Xjump clone with added features"
+HOMEPAGE="http://gnujump.es.gnu.org;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="media-libs/libsdl[sound,video]
+   media-libs/sdl-image[png]
+   media-libs/sdl-mixer[vorbis]
+   virtual/opengl
+   x11-libs/libX11
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   append-libs -lm
+}
+
+src_install() {
+   default
+   einstalldocs
+
+   newicon skins/xjump/hero1.0.png ${PN}.png
+   make_desktop_entry ${PN} "GNUjump"
+}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/gnake/

2018-04-16 Thread Pacho Ramos
commit: 9601cae656c2af4029a6c3ae7f06c84e27822ea9
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 20:07:50 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9601cae6

games-arcade/gnake: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/gnake/gnake-0.94b.ebuild | 30 --
 1 file changed, 30 deletions(-)

diff --git a/games-arcade/gnake/gnake-0.94b.ebuild 
b/games-arcade/gnake/gnake-0.94b.ebuild
deleted file mode 100644
index e1e5ccf4a42..000
--- a/games-arcade/gnake/gnake-0.94b.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit games
-
-DESCRIPTION="An ncurses-based Nibbles clone"
-HOMEPAGE="http://lightless.org/gnake;
-SRC_URI="mirror://gentoo/Gnake.${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="sys-libs/ncurses:0"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-S=${WORKDIR}/${PN}
-
-src_compile() {
-   emake LDLIBS="$(pkg-config ncurses --libs)" gnake
-}
-
-src_install() {
-   dogamesbin gnake
-   dodoc README
-   prepgamesdirs
-}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/grande-KXL/

2018-04-16 Thread Pacho Ramos
commit: b4a70d4715f763e2a3296d28ec7c0367214965e6
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 20:18:36 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a70d47

games-arcade/grande-KXL: Stop using games.eclass

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/grande-KXL/grande-KXL-0.6-r1.ebuild | 34 
 1 file changed, 34 insertions(+)

diff --git a/games-arcade/grande-KXL/grande-KXL-0.6-r1.ebuild 
b/games-arcade/grande-KXL/grande-KXL-0.6-r1.ebuild
new file mode 100644
index 000..b256aa38420
--- /dev/null
+++ b/games-arcade/grande-KXL/grande-KXL-0.6-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools desktop
+
+DESCRIPTION="ZANAC type game"
+HOMEPAGE="http://triring.net/ps2linux/games/kxl/kxlgames.html;
+SRC_URI="mirror://gentoo/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-games/KXL"
+RDEPEND="${DEPEND}
+   media-fonts/font-adobe-100dpi
+"
+
+src_prepare() {
+   default
+   eapply "${FILESDIR}"/${P}-{configure.in,cflags}.patch
+   mv configure.{in,ac}
+   rm aclocal.m4
+   eautoreconf
+}
+
+src_install() {
+   dodir /var/lib
+   default
+   newicon src/bmp/boss1.bmp ${PN}.bmp
+   make_desktop_entry grande Grande /usr/share/pixmaps/${PN}.bmp
+}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/gnake/

2018-04-16 Thread Pacho Ramos
commit: e40c6a1c8a43387e19e4afdf84d8e6d3cf4eb787
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 20:07:41 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e40c6a1c

games-arcade/gnake: Stop using games.eclass

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/gnake/gnake-0.94b-r1.ebuild | 29 +
 1 file changed, 29 insertions(+)

diff --git a/games-arcade/gnake/gnake-0.94b-r1.ebuild 
b/games-arcade/gnake/gnake-0.94b-r1.ebuild
new file mode 100644
index 000..a1cce857258
--- /dev/null
+++ b/games-arcade/gnake/gnake-0.94b-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="An ncurses-based Nibbles clone"
+HOMEPAGE="http://lightless.org/gnake;
+SRC_URI="mirror://gentoo/Gnake.${PV}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+IUSE=""
+
+RDEPEND="sys-libs/ncurses:0"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+S="${WORKDIR}/${PN}"
+
+src_compile() {
+   emake LDLIBS="$(pkg-config ncurses --libs)" gnake
+}
+
+src_install() {
+   dobin gnake
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/grande-KXL/

2018-04-16 Thread Pacho Ramos
commit: 71a5abdce43a11d81d78751266405d59482d1ea3
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 20:18:44 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71a5abdc

games-arcade/grande-KXL: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/grande-KXL/grande-KXL-0.6.ebuild | 33 ---
 1 file changed, 33 deletions(-)

diff --git a/games-arcade/grande-KXL/grande-KXL-0.6.ebuild 
b/games-arcade/grande-KXL/grande-KXL-0.6.ebuild
deleted file mode 100644
index 83439fb55b6..000
--- a/games-arcade/grande-KXL/grande-KXL-0.6.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils games
-
-DESCRIPTION="ZANAC type game"
-HOMEPAGE="http://triring.net/ps2linux/games/kxl/kxlgames.html;
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-games/KXL"
-RDEPEND="${DEPEND}
-   media-fonts/font-adobe-100dpi"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-{configure.in,cflags}.patch
-   mv configure.{in,ac}
-   rm aclocal.m4
-   eautoreconf
-}
-
-src_install() {
-   dodir "${GAMES_STATEDIR}"
-   default
-   newicon src/bmp/boss1.bmp ${PN}.bmp
-   make_desktop_entry grande Grande /usr/share/pixmaps/${PN}.bmp
-   prepgamesdirs
-}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/gnujump/

2018-04-16 Thread Pacho Ramos
commit: 8480f8e44558232d10b6890d06796610d7d6d1d6
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 20:10:53 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8480f8e4

games-arcade/gnujump: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/gnujump/gnujump-1.0.8.ebuild | 35 ---
 1 file changed, 35 deletions(-)

diff --git a/games-arcade/gnujump/gnujump-1.0.8.ebuild 
b/games-arcade/gnujump/gnujump-1.0.8.ebuild
deleted file mode 100644
index 5232fcb51fe..000
--- a/games-arcade/gnujump/gnujump-1.0.8.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils flag-o-matic games
-
-DESCRIPTION="Xjump clone with added features"
-HOMEPAGE="http://gnujump.es.gnu.org;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="media-libs/libsdl[sound,video]
-   media-libs/sdl-image[png]
-   media-libs/sdl-mixer[vorbis]
-   virtual/opengl
-   x11-libs/libX11"
-RDEPEND=${DEPEND}
-
-src_prepare() {
-   append-libs -lm
-}
-
-src_install() {
-   DOCS=( AUTHORS ChangeLog README )
-   default
-
-   newicon skins/xjump/hero1.0.png ${PN}.png
-   make_desktop_entry ${PN} "GNUjump"
-
-   prepgamesdirs
-}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/funnyboat/

2018-04-16 Thread Pacho Ramos
commit: 40ec599a87f53eea35202fd853851afe5fca183b
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 19:56:39 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ec599a

games-arcade/funnyboat: Stop using games.eclass

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/funnyboat/funnyboat-1.5-r2.ebuild | 50 ++
 1 file changed, 50 insertions(+)

diff --git a/games-arcade/funnyboat/funnyboat-1.5-r2.ebuild 
b/games-arcade/funnyboat/funnyboat-1.5-r2.ebuild
new file mode 100644
index 000..64866dc95d9
--- /dev/null
+++ b/games-arcade/funnyboat/funnyboat-1.5-r2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils gnome2-utils python-single-r1
+
+DESCRIPTION="A side scrolling shooter game starring a steamboat on the sea"
+HOMEPAGE="http://funnyboat.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
+
+LICENSE="GPL-2 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="${DEPEND}
+   >=dev-python/pygame-1.6.2[${PYTHON_USEDEP}]"
+DEPEND="${DEPEND}
+   app-arch/unzip"
+
+S="${WORKDIR}/${PN}"
+
+src_install() {
+   insinto /usr/share/${PN}
+   doins -r data *.py
+   python_optimize "${ED%/}"/usr/share/${PN}
+
+   dodoc *.txt
+
+   make_wrapper ${PN} "${EPYTHON} main.py" /usr/share/${PN}
+
+   newicon -s 32 data/kuvake.png ${PN}.png
+   make_desktop_entry ${PN} "Trip on the Funny Boat"
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/gav/, games-arcade/gav/files/

2018-04-16 Thread Pacho Ramos
commit: a7517f62a306c88c4dd0086ef90bb3fcf9bb5add
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 20:03:24 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7517f62

games-arcade/gav: Stop using games.eclass

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/gav/files/gav-0.9.0-gcc43.patch   |  4 +-
 games-arcade/gav/files/gav-0.9.0-ldflags.patch |  8 ++--
 games-arcade/gav/gav-0.9.0-r1.ebuild   | 66 ++
 3 files changed, 72 insertions(+), 6 deletions(-)

diff --git a/games-arcade/gav/files/gav-0.9.0-gcc43.patch 
b/games-arcade/gav/files/gav-0.9.0-gcc43.patch
index 06bc1a5d254..c9b8a6e588b 100644
--- a/games-arcade/gav/files/gav-0.9.0-gcc43.patch
+++ b/games-arcade/gav/files/gav-0.9.0-gcc43.patch
@@ -1,5 +1,5 @@
 Configuration.cpp
-+++ Configuration.cpp
+--- a/Configuration.cpp
 b/Configuration.cpp
 @@ -25,6 +25,7 @@
  #include 
  #include 

diff --git a/games-arcade/gav/files/gav-0.9.0-ldflags.patch 
b/games-arcade/gav/files/gav-0.9.0-ldflags.patch
index 04188320ac4..dd49e616166 100644
--- a/games-arcade/gav/files/gav-0.9.0-ldflags.patch
+++ b/games-arcade/gav/files/gav-0.9.0-ldflags.patch
@@ -1,5 +1,5 @@
 CommonHeader.old   2010-10-12 13:08:23.0 +0200
-+++ CommonHeader   2010-10-12 13:08:48.0 +0200
+--- a/CommonHeader.old 2010-10-12 13:08:23.0 +0200
 b/CommonHeader 2010-10-12 13:08:48.0 +0200
 @@ -31,9 +31,9 @@
  endif
  
@@ -12,8 +12,8 @@
  endif
  
  SRCS  =   $(wildcard *.cpp)
 Makefile.Linux.old 2010-10-12 14:36:47.0 +0200
-+++ Makefile.Linux 2010-10-12 14:37:02.0 +0200
+--- a/Makefile.Linux.old   2010-10-12 14:36:47.0 +0200
 b/Makefile.Linux   2010-10-12 14:37:02.0 +0200
 @@ -38,8 +38,7 @@
$(MAKE) -C $(@D:%_module.o=%)
  

diff --git a/games-arcade/gav/gav-0.9.0-r1.ebuild 
b/games-arcade/gav/gav-0.9.0-r1.ebuild
new file mode 100644
index 000..d039cac137a
--- /dev/null
+++ b/games-arcade/gav/gav-0.9.0-r1.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit desktop
+
+DESCRIPTION="GPL Arcade Volleyball"
+HOMEPAGE="http://gav.sourceforge.net/;
+# the themes are behind a lame php-counter script.
+SRC_URI="mirror://sourceforge/gav/${P}.tar.gz
+   mirror://gentoo/fabeach.tgz
+   mirror://gentoo/florindo.tgz
+   mirror://gentoo/inverted.tgz
+   mirror://gentoo/naive.tgz
+   mirror://gentoo/unnamed.tgz
+   mirror://gentoo/yisus.tgz
+   mirror://gentoo/yisus2.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+IUSE=""
+
+DEPEND="media-libs/sdl-image[jpeg,png]
+   media-libs/sdl-net
+   media-libs/libsdl[joystick,video]"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+
+   local d
+
+   eapply "${FILESDIR}"/${P}-ldflags.patch
+
+   for d in . automa menu net ; do
+   cp ${d}/Makefile.Linux ${d}/Makefile || die "cp ${d}/Makefile 
failed"
+   done
+
+   eapply "${FILESDIR}"/${P}-gcc43.patch
+   sed -i \
+   -e "/^CXXFLAGS=/s: -g : ${CXXFLAGS} :" CommonHeader \
+   || die "sed failed"
+
+   # Now, move the additional themes in the proper directory
+   mv ../{fabeach,florindo,inverted,naive,unnamed,yisus,yisus2} themes
+
+   # no reason to have executable files in the themes
+   find themes -type f -exec chmod a-x \{\} \;
+}
+
+src_compile() {
+   # bug #41530 - doesn't like the hot parallel make action.
+   emake -C automa
+   emake -C menu
+   emake -C net
+   emake
+}
+
+src_install() {
+   dodir /usr/bin
+   emake ROOT="${D}" install
+   insinto /usr/share/${PN}
+   doins -r sounds
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/frozen-bubble/, games-arcade/frozen-bubble/files/

2018-04-16 Thread Pacho Ramos
commit: de4b7db665badb939dadb36e8ad6bb6917e183e2
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 19:52:59 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de4b7db6

games-arcade/frozen-bubble: Stop using games.eclass, apply Fedora fixes

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 .../files/frozen-bubble-2.2.1_beta1-Werror.patch   |  4 +-
 ...frozen-bubble-2.2.1_beta1-fix-buffer-size.patch | 69 ++
 .../frozen-bubble-2.2.1_beta1-r1.ebuild| 83 ++
 3 files changed, 154 insertions(+), 2 deletions(-)

diff --git 
a/games-arcade/frozen-bubble/files/frozen-bubble-2.2.1_beta1-Werror.patch 
b/games-arcade/frozen-bubble/files/frozen-bubble-2.2.1_beta1-Werror.patch
index d891d8e71a6..0573e50fee9 100644
--- a/games-arcade/frozen-bubble/files/frozen-bubble-2.2.1_beta1-Werror.patch
+++ b/games-arcade/frozen-bubble/files/frozen-bubble-2.2.1_beta1-Werror.patch
@@ -2,8 +2,8 @@ From: Julian Ospald 
 Date: Sun Feb 10 14:48:58 UTC 2013
 Subject: remove Werror compiler flag wrt #456654
 
 inc/My/Builder.pm
-+++ inc/My/Builder.pm
+--- a/inc/My/Builder.pm
 b/inc/My/Builder.pm
 @@ -123,7 +123,7 @@
  push @ofiles, $cbuilder->compile(
  source   => catfile($server_directory, $cfile),

diff --git 
a/games-arcade/frozen-bubble/files/frozen-bubble-2.2.1_beta1-fix-buffer-size.patch
 
b/games-arcade/frozen-bubble/files/frozen-bubble-2.2.1_beta1-fix-buffer-size.patch
new file mode 100644
index 000..b1b3bfcb1ed
--- /dev/null
+++ 
b/games-arcade/frozen-bubble/files/frozen-bubble-2.2.1_beta1-fix-buffer-size.patch
@@ -0,0 +1,69 @@
+From aa2ce32185b4477e659ed7c70d09c440610ef67b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
+Date: Fri, 2 Feb 2018 12:44:15 +0100
+Subject: [PATCH] Fix buffer size when formatting current date
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+gcc-8 and glibc-2.26.9000 reports this error:
+
+server/log.c:64:54: error: '%03d' directive output may be truncated writing 
between 3 and 11 bytes into a region of size between 0 and 49 
[-Werror=format-truncation=]
+ snprintf(current_date, sizeof(current_date), "%s.%03d", buf, (int)(1000 * 
(time-seconds)));
+  ^~~~
+
+This patch fixes two mistakes in the get_current_date() function:
+
+First strftime() can fail and then buf content is undefined. The patch
+makes sure the buf content is properly null-termited.
+
+Second if strftime() uses up the the whole buf array, no space will be
+left for appending miliseconds to current_date value in the subsequent
+snprintf() call. The patch increases current_data size so that things
+will always fit.
+
+In reality, all this should not matter because sane strftime() will
+return fixed-lenght string. But for all the cases and for sake of the
+compiler check this patch should be applied.
+
+Signed-off-by: Petr Písař 
+---
+ server/log.c | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/server/log.c b/server/log.c
+index 2fe7b7c..f696752 100644
+--- a/server/log.c
 b/server/log.c
+@@ -52,15 +52,17 @@ double get_current_time_exact(void)
+ return (double) now.tv_sec + now.tv_usec / 1e6;  // bad bad idea to use 
float as precision is not down to the seconds then
+ }
+ 
+-char current_date[50];
++char current_date[70];
+ char* get_current_date(void) 
+ {
+ struct tm * lt;
+ char buf[50];
+ double time = get_current_time_exact();
+ time_t seconds = (time_t)time;
++size_t length;
+ lt = localtime();
+-strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", lt);
++length = strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", lt);
++buf[length] = '\0';
+ snprintf(current_date, sizeof(current_date), "%s.%03d", buf, (int)(1000 * 
(time-seconds)));
+ return current_date;
+ }
+diff -up frozen-bubble-2.2.1-beta1/server/log.h~ 
frozen-bubble-2.2.1-beta1/server/log.h
+--- frozen-bubble-2.2.1-beta1/server/log.h~2010-08-07 15:36:27.0 
+0200
 frozen-bubble-2.2.1-beta1/server/log.h 2018-02-08 14:09:52.472451694 
+0100
+@@ -23,7 +23,7 @@
+ time_t get_current_time(void);
+ double get_current_time_exact(void);
+ 
+-extern char current_date[50];
++extern char current_date[70];
+ char* get_current_date(void);
+ 
+ enum output_types { OUTPUT_TYPE_DEBUG, OUTPUT_TYPE_CONNECT, OUTPUT_TYPE_INFO, 
OUTPUT_TYPE_ERROR };

diff --git a/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild 
b/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
new file mode 100644
index 000..9315ab5159b
--- /dev/null
+++ b/games-arcade/frozen-bubble/frozen-bubble-2.2.1_beta1-r1.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the 

[gentoo-commits] repo/gentoo:master commit in: games-arcade/gish-demo/

2018-04-16 Thread Pacho Ramos
commit: 13a19fdab9fab0e640ae52317482a49205715a43
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 20:05:58 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13a19fda

games-arcade/gish-demo: Stop using games.eclass

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/gish-demo/gish-demo-1.6-r1.ebuild | 40 ++
 1 file changed, 40 insertions(+)

diff --git a/games-arcade/gish-demo/gish-demo-1.6-r1.ebuild 
b/games-arcade/gish-demo/gish-demo-1.6-r1.ebuild
new file mode 100644
index 000..1116e16d52e
--- /dev/null
+++ b/games-arcade/gish-demo/gish-demo-1.6-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="Play as an amorphous ball of tar that rolls and squishes around"
+HOMEPAGE="http://www.chroniclogic.com/gish.htm;
+SRC_URI="http://www.chroniclogic.com/demos/gishdemo.tar.gz -> ${P}.tar.gz"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE=""
+RESTRICT="mirror bindist strip"
+QA_PREBUILT="${GAMES_PREFIX_OPT:1}/${PN}/gish"
+
+RDEPEND="
+   media-libs/libsdl
+   media-libs/libvorbis
+   virtual/opengl
+   x11-libs/libX11
+   >=media-libs/openal-1.6.372
+"
+DEPEND=""
+
+S="${WORKDIR}/gishdemo"
+
+src_install() {
+   local dir=/opt/${PN}
+   local gishbin=gishdemo
+   use amd64 && gishbin=gishdemo_64
+
+   insinto "${dir}"
+   doins -r *
+   fperms +x "${dir}"/${gishbin}
+   make_wrapper gish ./${gishbin} "${dir}"
+
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/funnyboat/

2018-04-16 Thread Pacho Ramos
commit: efe5051ef855a7a4374f77d0ffc527af2e53c77d
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 19:56:49 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe5051e

games-arcade/funnyboat: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/funnyboat/funnyboat-1.5-r1.ebuild | 55 --
 1 file changed, 55 deletions(-)

diff --git a/games-arcade/funnyboat/funnyboat-1.5-r1.ebuild 
b/games-arcade/funnyboat/funnyboat-1.5-r1.ebuild
deleted file mode 100644
index fca880216fc..000
--- a/games-arcade/funnyboat/funnyboat-1.5-r1.ebuild
+++ /dev/null
@@ -1,55 +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 eutils gnome2-utils python-single-r1 games
-
-DESCRIPTION="A side scrolling shooter game starring a steamboat on the sea"
-HOMEPAGE="http://funnyboat.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
-
-LICENSE="GPL-2 MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="${DEPEND}
-   >=dev-python/pygame-1.6.2[${PYTHON_USEDEP}]"
-DEPEND="${DEPEND}
-   app-arch/unzip"
-
-S=${WORKDIR}/${PN}
-
-pkg_setup() {
-   python-single-r1_pkg_setup
-   games_pkg_setup
-}
-
-src_install() {
-   insinto "${GAMES_DATADIR}"/${PN}
-   doins -r data *.py
-   python_optimize "${ED%/}/${GAMES_DATADIR}"/${PN}
-
-   dodoc *.txt
-   games_make_wrapper ${PN} "${EPYTHON} main.py" "${GAMES_DATADIR}"/${PN}
-   newicon -s 32 data/kuvake.png ${PN}.png
-   make_desktop_entry ${PN} "Trip on the Funny Boat"
-   prepgamesdirs
-}
-
-pkg_preinst() {
-   games_pkg_preinst
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   games_pkg_postinst
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/gav/

2018-04-16 Thread Pacho Ramos
commit: f67fc6c86a3923599412c73a2eed05ba35022f58
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 20:03:32 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f67fc6c8

games-arcade/gav: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/gav/gav-0.9.0.ebuild | 69 ---
 1 file changed, 69 deletions(-)

diff --git a/games-arcade/gav/gav-0.9.0.ebuild 
b/games-arcade/gav/gav-0.9.0.ebuild
deleted file mode 100644
index 058dbaf64bc..000
--- a/games-arcade/gav/gav-0.9.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils games
-
-DESCRIPTION="GPL Arcade Volleyball"
-HOMEPAGE="http://gav.sourceforge.net/;
-# the themes are behind a lame php-counter script.
-SRC_URI="mirror://sourceforge/gav/${P}.tar.gz
-   mirror://gentoo/fabeach.tgz
-   mirror://gentoo/florindo.tgz
-   mirror://gentoo/inverted.tgz
-   mirror://gentoo/naive.tgz
-   mirror://gentoo/unnamed.tgz
-   mirror://gentoo/yisus.tgz
-   mirror://gentoo/yisus2.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND="media-libs/sdl-image[jpeg,png]
-   media-libs/sdl-net
-   media-libs/libsdl[joystick,video]"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   local d
-
-   epatch "${FILESDIR}"/${P}-ldflags.patch
-
-   for d in . automa menu net ; do
-   cp ${d}/Makefile.Linux ${d}/Makefile || die "cp ${d}/Makefile 
failed"
-   done
-
-   epatch "${FILESDIR}"/${P}-gcc43.patch
-   sed -i \
-   -e "s:/usr/bin:${GAMES_BINDIR}:" \
-   Makefile \
-   || die "sed failed"
-   sed -i \
-   -e "/^CXXFLAGS=/s: -g : ${CXXFLAGS} :" CommonHeader \
-   || die "sed failed"
-
-   # Now, move the additional themes in the proper directory
-   mv ../{fabeach,florindo,inverted,naive,unnamed,yisus,yisus2} themes
-
-   # no reason to have executable files in the themes
-   find themes -type f -exec chmod a-x \{\} \;
-}
-
-src_compile() {
-   # bug #41530 - doesn't like the hot parallel make action.
-   emake -C automa
-   emake -C menu
-   emake -C net
-   emake
-}
-
-src_install() {
-   dodir "${GAMES_BINDIR}"
-   emake ROOT="${D}" install
-   insinto "${GAMES_DATADIR}"/${PN}
-   doins -r sounds
-   dodoc CHANGELOG README
-   prepgamesdirs
-}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/fishsupper/

2018-04-16 Thread Pacho Ramos
commit: ee0d64d31ff1c2096850a0fa9a74b86833d92e45
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr 16 19:43:48 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr 16 20:26:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee0d64d3

games-arcade/fishsupper: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 games-arcade/fishsupper/fishsupper-0.1.6.ebuild | 36 -
 1 file changed, 36 deletions(-)

diff --git a/games-arcade/fishsupper/fishsupper-0.1.6.ebuild 
b/games-arcade/fishsupper/fishsupper-0.1.6.ebuild
deleted file mode 100644
index afde3499291..000
--- a/games-arcade/fishsupper/fishsupper-0.1.6.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils autotools games
-
-DESCRIPTION="A simple arcade/puzzle game, loosely based on the retro classic 
Frogger"
-HOMEPAGE="https://sourceforge.net/projects/fishsupper/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="CC-BY-SA-2.5 GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="media-libs/libsdl[sound,video,opengl,X]
-   media-libs/sdl-image[png]
-   media-libs/sdl-mixer[wav]
-   virtual/opengl"
-DEPEND="${RDEPEND}
-   dev-libs/boost"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-ovflfix.patch \
-   "${FILESDIR}"/${P}-asneeded.patch \
-   "${FILESDIR}"/${P}-gcc6.patch
-   eautoreconf
-}
-
-src_install() {
-   default
-   newicon data/images/fs_sprite_042.png ${PN}.png
-   make_desktop_entry ${PN} "Fish Supper"
-
-   prepgamesdirs
-}



  1   2   3   >