[gentoo-commits] proj/grumpy:master commit in: backend/lib/

2016-12-04 Thread Mart Raudsepp
commit: dac532df96cb16626f4f1656b5aa2f82b8383c8d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Dec  4 07:59:39 2016 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Dec  4 07:59:39 2016 +
URL:https://gitweb.gentoo.org/proj/grumpy.git/commit/?id=dac532df

sync: Fix UTF-8 handling for projects.xml import

Need to feed response.content bytestring into ElementTree, not response.text.
With the latter ET seems to figure it's already decoded and goes all latin-1 on 
us.
>From response.content bytestream it notices the UTF-8 encoding XML markup and 
>does
things right.

Diagnosed-by: Doug Freed  mtu.edu>

 backend/lib/sync.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/backend/lib/sync.py b/backend/lib/sync.py
index 4894315..22419bf 100644
--- a/backend/lib/sync.py
+++ b/backend/lib/sync.py
@@ -13,7 +13,7 @@ def get_project_data():
 if not data:
 print("Failed retrieving projects.xml")
 return
-root = ET.fromstring(data.text)
+root = ET.fromstring(data.content)
 projects = {}
 # Parsing is based on http://www.gentoo.org/dtd/projects.dtd as of 
2016-11-10
 if root.tag.lower() != 'projects':



[gentoo-commits] proj/grumpy:master commit in: backend/lib/

2016-12-04 Thread Mart Raudsepp
commit: 9664464413b7cd59f861eff01148454974e23030
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Dec  4 08:02:10 2016 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Dec  4 08:02:10 2016 +
URL:https://gitweb.gentoo.org/proj/grumpy.git/commit/?id=96644644

sync: use requests response.json() directly instead of json.loads

This should ensure requests will handle UTF-8 fully correctly for us

Suggested-by: Doug Freed  mtu.edu>

 backend/lib/sync.py | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/backend/lib/sync.py b/backend/lib/sync.py
index 22419bf..2d6244c 100644
--- a/backend/lib/sync.py
+++ b/backend/lib/sync.py
@@ -1,5 +1,4 @@
 import xml.etree.ElementTree as ET
-from flask import json
 import requests
 from .. import app, db
 from .models import Category, Maintainer, Package, PackageVersion
@@ -111,7 +110,7 @@ def sync_categories():
 url = pkg_url_base + "categories.json"
 data = http_session.get(url)
 # TODO: Handle response error (if not data)
-categories = json.loads(data.text)
+categories = data.json()
 existing_categories = {}
 # TODO: Use UPSERT instead (on_conflict_do_update) if we can rely on 
postgresql:9.5
 for cat in Category.query.all():
@@ -131,7 +130,7 @@ def sync_packages():
 if not data:
 print("No JSON data for category %s" % category.name) # FIXME: 
Better handling; mark category as inactive/gone?
 continue
-packages = json.loads(data.text)['packages']
+packages = data.json()['packages']
 # TODO: Use UPSERT instead (on_conflict_do_update)
 existing_packages = {}
 for pkg in Package.query.all():
@@ -151,5 +150,5 @@ def sync_versions():
 print("No JSON data for package %s" % package.full_name) # FIXME: 
Handle better; e.g mark the package as removed if no pkgmove update
 continue
 from pprint import pprint
-pprint(json.loads(data.text))
+pprint(data.json())
 break



[gentoo-commits] repo/gentoo:master commit in: virtual/rubygems/

2016-12-04 Thread Hans de Graaff
commit: e36e01e56b84de0a327ba8a691b47b79ac3205a0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec  4 08:43:42 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec  4 08:43:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e36e01e5

virtual/rubygems: drop obsolete ruby19

Package-Manager: portage-2.3.0

 virtual/rubygems/rubygems-10.ebuild | 5 ++---
 virtual/rubygems/rubygems-11.ebuild | 5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/virtual/rubygems/rubygems-10.ebuild 
b/virtual/rubygems/rubygems-10.ebuild
index 16eb448..754708c 100644
--- a/virtual/rubygems/rubygems-10.ebuild
+++ b/virtual/rubygems/rubygems-10.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby20 ruby21"
 
 inherit ruby-ng
 
@@ -17,7 +17,6 @@ KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix
 IUSE=""
 
 RDEPEND="
-   ruby_targets_ruby19? ( 
>=dev-ruby/rubygems-1.8.10-r1[ruby_targets_ruby19] )
ruby_targets_ruby20? ( >=dev-ruby/rubygems-2.0.2[ruby_targets_ruby20] )
ruby_targets_ruby21? ( >=dev-ruby/rubygems-2.0.14[ruby_targets_ruby21] )
 "

diff --git a/virtual/rubygems/rubygems-11.ebuild 
b/virtual/rubygems/rubygems-11.ebuild
index efe92dd..c37687d 100644
--- a/virtual/rubygems/rubygems-11.ebuild
+++ b/virtual/rubygems/rubygems-11.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22 ruby23 rbx"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23 rbx"
 
 inherit ruby-ng
 
@@ -18,7 +18,6 @@ IUSE=""
 
 RDEPEND="
ruby_targets_rbx? ( dev-lang/rubinius )
-   ruby_targets_ruby19? ( 
>=dev-ruby/rubygems-1.8.10-r1[ruby_targets_ruby19] )
ruby_targets_ruby20? ( >=dev-ruby/rubygems-2.0.2[ruby_targets_ruby20] )
ruby_targets_ruby21? ( >=dev-ruby/rubygems-2.0.14[ruby_targets_ruby21] )
ruby_targets_ruby22? ( >=dev-ruby/rubygems-2.4.2[ruby_targets_ruby22] )



[gentoo-commits] proj/qa-scripts:master commit in: pkgcheck2html/

2016-12-04 Thread Michał Górny
commit: cce1dfea834ae526ebbe8506fdad19cc03287730
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec  3 20:56:23 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Dec  4 08:49:47 2016 +
URL:https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=cce1dfea

Add pkgcheck XML output to HTML formatter scripts

 pkgcheck2html/jinja2htmlcompress.py   | 150 +++
 pkgcheck2html/output.css  | 184 ++
 pkgcheck2html/output.html.jinja   |  67 +
 pkgcheck2html/pkgcheck2html.conf.json |  26 +
 pkgcheck2html/pkgcheck2html.py| 139 +
 5 files changed, 566 insertions(+)

diff --git a/pkgcheck2html/jinja2htmlcompress.py 
b/pkgcheck2html/jinja2htmlcompress.py
new file mode 100644
index 000..5dfb211
--- /dev/null
+++ b/pkgcheck2html/jinja2htmlcompress.py
@@ -0,0 +1,150 @@
+# -*- coding: utf-8 -*-
+"""
+jinja2htmlcompress
+~~
+
+A Jinja2 extension that eliminates useless whitespace at template
+compilation time without extra overhead.
+
+:copyright: (c) 2011 by Armin Ronacher.
+:license: BSD, see LICENSE for more details.
+"""
+import re
+from jinja2.ext import Extension
+from jinja2.lexer import Token, describe_token
+from jinja2 import TemplateSyntaxError
+
+
+_tag_re = re.compile(r'(?:<(/?)([a-zA-Z0-9_-]+)\s*|(>\s*))(?s)')
+_ws_normalize_re = re.compile(r'[ \t\r\n]+')
+
+
+class StreamProcessContext(object):
+
+def __init__(self, stream):
+self.stream = stream
+self.token = None
+self.stack = []
+
+def fail(self, message):
+raise TemplateSyntaxError(message, self.token.lineno,
+  self.stream.name, self.stream.filename)
+
+
+def _make_dict_from_listing(listing):
+rv = {}
+for keys, value in listing:
+for key in keys:
+rv[key] = value
+return rv
+
+
+class HTMLCompress(Extension):
+isolated_elements = set(['script', 'style', 'noscript', 'textarea'])
+void_elements = set(['br', 'img', 'area', 'hr', 'param', 'input',
+ 'embed', 'col'])
+block_elements = set(['div', 'p', 'form', 'ul', 'ol', 'li', 'table', 'tr',
+  'tbody', 'thead', 'tfoot', 'tr', 'td', 'th', 'dl',
+  'dt', 'dd', 'blockquote', 'h1', 'h2', 'h3', 'h4',
+  'h5', 'h6', 'pre'])
+breaking_rules = _make_dict_from_listing([
+(['p'], set(['#block'])),
+(['li'], set(['li'])),
+(['td', 'th'], set(['td', 'th', 'tr', 'tbody', 'thead', 'tfoot'])),
+(['tr'], set(['tr', 'tbody', 'thead', 'tfoot'])),
+(['thead', 'tbody', 'tfoot'], set(['thead', 'tbody', 'tfoot'])),
+(['dd', 'dt'], set(['dl', 'dt', 'dd']))
+])
+
+def is_isolated(self, stack):
+for tag in reversed(stack):
+if tag in self.isolated_elements:
+return True
+return False
+
+def is_breaking(self, tag, other_tag):
+breaking = self.breaking_rules.get(other_tag)
+return breaking and (tag in breaking or
+('#block' in breaking and tag in self.block_elements))
+
+def enter_tag(self, tag, ctx):
+while ctx.stack and self.is_breaking(tag, ctx.stack[-1]):
+self.leave_tag(ctx.stack[-1], ctx)
+if tag not in self.void_elements:
+ctx.stack.append(tag)
+
+def leave_tag(self, tag, ctx):
+if not ctx.stack:
+ctx.fail('Tried to leave "%s" but something closed '
+ 'it already' % tag)
+if tag == ctx.stack[-1]:
+ctx.stack.pop()
+return
+for idx, other_tag in enumerate(reversed(ctx.stack)):
+if other_tag == tag:
+for num in xrange(idx + 1):
+ctx.stack.pop()
+elif not self.breaking_rules.get(other_tag):
+break
+
+def normalize(self, ctx):
+pos = 0
+buffer = []
+def write_data(value):
+if not self.is_isolated(ctx.stack):
+value = _ws_normalize_re.sub(' ', value.strip())
+buffer.append(value)
+
+for match in _tag_re.finditer(ctx.token.value):
+closes, tag, sole = match.groups()
+preamble = ctx.token.value[pos:match.start()]
+write_data(preamble)
+if sole:
+write_data(sole)
+else:
+buffer.append(match.group())
+(closes and self.leave_tag or self.enter_tag)(tag, ctx)
+pos = match.end()
+
+write_data(ctx.token.value[pos:])
+return u''.join(buffer)
+
+def filter_stream(self, stream):
+ctx = StreamProcessContext(stream)
+for token in stream:
+if token.type != 'data':
+yield token
+continue
+ctx.token = token
+value = 

[gentoo-commits] proj/qa-scripts:master commit in: pkgcheck2html/

2016-12-04 Thread Michał Górny
commit: 61fc15ef48b0ffdabe101bb90a786600a6d56e1a
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec  4 08:53:29 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Dec  4 08:53:29 2016 +
URL:https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=61fc15ef

pkgcheck2html: Add stdin support

 pkgcheck2html/pkgcheck2html.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pkgcheck2html/pkgcheck2html.py b/pkgcheck2html/pkgcheck2html.py
index 466d8c1..44a9c2b 100755
--- a/pkgcheck2html/pkgcheck2html.py
+++ b/pkgcheck2html/pkgcheck2html.py
@@ -34,6 +34,8 @@ def result_sort_key(r):
 
 def get_results(input_paths, class_mapping):
 for input_path in input_paths:
+if input_path == '-':
+input_path = sys.stdin
 checks = xml.etree.ElementTree.parse(input_path).getroot()
 for r in checks:
 yield Result(r, class_mapping)



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

2016-12-04 Thread Lars Wendler
commit: 2e20c4065c1dcb043ae2783b0405069d8389b0ad
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Dec  4 12:23:14 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Dec  4 12:44:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e20c406

sys-libs/readline: Added sub-slot dependency for sys-libs/ncurses.

Package-Manager: portage-2.3.2

 sys-libs/readline/readline-4.3_p5.ebuild  | 4 ++--
 sys-libs/readline/readline-5.2_p14.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-libs/readline/readline-4.3_p5.ebuild 
b/sys-libs/readline/readline-4.3_p5.ebuild
index 416f92c..1c058b4 100644
--- a/sys-libs/readline/readline-4.3_p5.ebuild
+++ b/sys-libs/readline/readline-4.3_p5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -38,7 +38,7 @@ SLOT="${PV:0:1}"
 KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
 IUSE=""
 
-RDEPEND=">=sys-libs/ncurses-5.2-r2:0[${MULTILIB_USEDEP}]"
+RDEPEND=">=sys-libs/ncurses-5.2-r2:0=[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"
 
 S=${WORKDIR}/${MY_P}

diff --git a/sys-libs/readline/readline-5.2_p14.ebuild 
b/sys-libs/readline/readline-5.2_p14.ebuild
index 814c028..da11da0 100644
--- a/sys-libs/readline/readline-5.2_p14.ebuild
+++ b/sys-libs/readline/readline-5.2_p14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -38,7 +38,7 @@ SLOT="${PV:0:1}"
 KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 
~sparc-fbsd ~x86-fbsd"
 IUSE=""
 
-RDEPEND=">=sys-libs/ncurses-5.2-r2:0[${MULTILIB_USEDEP}]"
+RDEPEND=">=sys-libs/ncurses-5.2-r2:0=[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"
 
 S=${WORKDIR}/${MY_P}



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

2016-12-04 Thread Lars Wendler
commit: 51b50e46e53cf03281491b859d5a487b3c7af209
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Dec  4 12:19:15 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Dec  4 12:44:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51b50e46

app-shells/zsh: Added sub-slot dependency for sys-libs/ncurses.

Package-Manager: portage-2.3.2

 app-shells/zsh/zsh-5.0.5.ebuild  | 4 ++--
 app-shells/zsh/zsh-5.2-r1.ebuild | 2 +-
 app-shells/zsh/zsh-5.2.ebuild| 4 ++--
 app-shells/zsh/zsh-.ebuild   | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-shells/zsh/zsh-5.0.5.ebuild b/app-shells/zsh/zsh-5.0.5.ebuild
index ab68382..8ac0e82 100644
--- a/app-shells/zsh/zsh-5.0.5.ebuild
+++ b/app-shells/zsh/zsh-5.0.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -17,7 +17,7 @@ KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ppc ppc64 s390 
sh sparc x86 ~amd6
 IUSE="caps debug doc examples gdbm maildir pcre static unicode"
 
 RDEPEND="
-   >=sys-libs/ncurses-5.1
+   >=sys-libs/ncurses-5.1:0=
static? ( >=sys-libs/ncurses-5.7-r4:0=[static-libs] )
caps? ( sys-libs/libcap )
pcre? ( >=dev-libs/libpcre-3.9

diff --git a/app-shells/zsh/zsh-5.2-r1.ebuild b/app-shells/zsh/zsh-5.2-r1.ebuild
index 263cdb5..8798b3d 100644
--- a/app-shells/zsh/zsh-5.2-r1.ebuild
+++ b/app-shells/zsh/zsh-5.2-r1.ebuild
@@ -23,7 +23,7 @@ SLOT="0"
 IUSE="caps debug doc examples gdbm maildir pcre static unicode"
 
 RDEPEND="
-   >=sys-libs/ncurses-5.1:0
+   >=sys-libs/ncurses-5.1:0=
static? ( >=sys-libs/ncurses-5.7-r4:0=[static-libs] )
caps? ( sys-libs/libcap )
pcre? (

diff --git a/app-shells/zsh/zsh-5.2.ebuild b/app-shells/zsh/zsh-5.2.ebuild
index 3a89b6f..74c57f7 100644
--- a/app-shells/zsh/zsh-5.2.ebuild
+++ b/app-shells/zsh/zsh-5.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -23,7 +23,7 @@ SLOT="0"
 IUSE="caps debug doc examples gdbm maildir pcre static unicode"
 
 RDEPEND="
-   >=sys-libs/ncurses-5.1:0
+   >=sys-libs/ncurses-5.1:0=
static? ( >=sys-libs/ncurses-5.7-r4:0=[static-libs] )
caps? ( sys-libs/libcap )
pcre? (

diff --git a/app-shells/zsh/zsh-.ebuild b/app-shells/zsh/zsh-.ebuild
index 263cdb5..8798b3d 100644
--- a/app-shells/zsh/zsh-.ebuild
+++ b/app-shells/zsh/zsh-.ebuild
@@ -23,7 +23,7 @@ SLOT="0"
 IUSE="caps debug doc examples gdbm maildir pcre static unicode"
 
 RDEPEND="
-   >=sys-libs/ncurses-5.1:0
+   >=sys-libs/ncurses-5.1:0=
static? ( >=sys-libs/ncurses-5.7-r4:0=[static-libs] )
caps? ( sys-libs/libcap )
pcre? (



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

2016-12-04 Thread Lars Wendler
commit: e638f21970e1c415c07326e7b1db309bc3cf3655
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Dec  4 12:20:55 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Dec  4 12:44:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e638f219

app-admin/whowatch: Added sub-slot dependency for sys-libs/ncurses.

Package-Manager: portage-2.3.2

 app-admin/whowatch/whowatch-1.8.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/whowatch/whowatch-1.8.5.ebuild 
b/app-admin/whowatch/whowatch-1.8.5.ebuild
index 1a5867a..c3cba27 100644
--- a/app-admin/whowatch/whowatch-1.8.5.ebuild
+++ b/app-admin/whowatch/whowatch-1.8.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -15,7 +15,7 @@ KEYWORDS="amd64 ~arm hppa ~mips ppc x86"
 IUSE=""
 
 RDEPEND="
-   sys-libs/ncurses
+   sys-libs/ncurses:0=
 "
 DEPEND="
${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: www-client/w3m/files/, www-client/w3m/

2016-12-04 Thread Yixun Lan
commit: 8ee43ba4e036db70fff258f3edb2f0335385e93f
Author: Yixun Lan  gentoo  org>
AuthorDate: Sun Dec  4 15:04:12 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Sun Dec  4 15:05:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ee43ba4

www-client/w3m: fix USE="-ssl" err, missing 

Gentoo-Bug: 601498

Package-Manager: portage-2.3.2

 www-client/w3m/files/w3m-0.5.3-fix-missing-time.patch | 13 +
 www-client/w3m/w3m-0.5.3-r9.ebuild|  8 +---
 2 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/www-client/w3m/files/w3m-0.5.3-fix-missing-time.patch 
b/www-client/w3m/files/w3m-0.5.3-fix-missing-time.patch
new file mode 100644
index ..03efd85
--- /dev/null
+++ b/www-client/w3m/files/w3m-0.5.3-fix-missing-time.patch
@@ -0,0 +1,13 @@
+diff --git a/html.h b/html.h
+index c490655..2a9a431 100644
+--- a/html.h
 b/html.h
+@@ -8,6 +8,8 @@
+ #include 
+ #endif/* USE_SSL */
+ 
++#include 
++
+ #define StrUFgets(f) StrISgets((f)->stream)
+ #define StrmyUFgets(f) StrmyISgets((f)->stream)
+ #define UFgetc(f) ISgetc((f)->stream)

diff --git a/www-client/w3m/w3m-0.5.3-r9.ebuild 
b/www-client/w3m/w3m-0.5.3-r9.ebuild
index a0f3e0b..bc191ce 100644
--- a/www-client/w3m/w3m-0.5.3-r9.ebuild
+++ b/www-client/w3m/w3m-0.5.3-r9.ebuild
@@ -34,11 +34,13 @@ RDEPEND=">=sys-libs/ncurses-5.2-r3:0=
 DEPEND="${RDEPEND}
virtual/pkgconfig"
 
-S="${WORKDIR}"/${MY_P}
+PATCHES=(
+   "${FILESDIR}/${P}-underlinking.patch"
+   "${FILESDIR}/${P}-fix-missing-time.patch"
+)
 
+S="${WORKDIR}"/${MY_P}
 src_prepare() {
-   epatch "${FILESDIR}/${PN}-0.5.3-underlinking.patch"
-
default
ecvs_clean
sed -i -e "/^AR=/s/ar/$(tc-getAR)/" {.,w3mimg,libwc}/Makefile.in || die



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

2016-12-04 Thread Michael Palimaka
commit: 7fa8d18f4521e5f2d46e8c0a2a26d92930a85d41
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Dec  4 17:06:21 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 17:06:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fa8d18f

media-gfx/kxstitch: version bump to 2.0.0

Package-Manager: portage-2.3.2

 media-gfx/kxstitch/Manifest  |  1 +
 media-gfx/kxstitch/kxstitch-2.0.0.ebuild | 40 
 2 files changed, 41 insertions(+)

diff --git a/media-gfx/kxstitch/Manifest b/media-gfx/kxstitch/Manifest
index 4941013..481e60e 100644
--- a/media-gfx/kxstitch/Manifest
+++ b/media-gfx/kxstitch/Manifest
@@ -1 +1,2 @@
 DIST kxstitch-1.3.0.tar.bz2 1982487 SHA256 
675fdcf0d7c171c8b41c8156143530a981a707c705e45663e70946ca4e707f16 SHA512 
f1a422b9f5e6850e1864b1c54c2af732d53af07d5b310241446e7cae810cfc0f97cfe99792ae3fb9e7ddf9efd5203fc8bede132a2a9c8b3be5057b4d338d4cda
 WHIRLPOOL 
75f6b9ab6638bf9e7960d55ca291d28c6bf814fb799b345f4c08b6072c702f6ed3889c0d4c53889493b5c5c29b6efa5253bf8d7089e33b6cf56f0dc13becf0a4
+DIST kxstitch-2.0.0.tar.xz 1681648 SHA256 
430db19729c907c845d35e2ab3887ace2bc21913ab08ea7471c71c9b84fcc783 SHA512 
0ce9ec517659fd9a3163671cdb32d451487aa812355c9abb38cf143192ed49e3e32afc003a0064e9a63303b5de40d8859f92066d886dc06c6d1fe03c8790122f
 WHIRLPOOL 
1c4965e7b536e2d6a2f98855372798c305840238e068465d95c2e2fccb7db419f049ad19d45461ccad544be8c55fcbd47c6cb02fc3c9dd333cbfca8a446e1e53

diff --git a/media-gfx/kxstitch/kxstitch-2.0.0.ebuild 
b/media-gfx/kxstitch/kxstitch-2.0.0.ebuild
new file mode 100644
index ..972e2c0
--- /dev/null
+++ b/media-gfx/kxstitch/kxstitch-2.0.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+KDE_HANDBOOK="forceoptional"
+inherit kde5
+
+DESCRIPTION="Program to create cross stitch patterns"
+HOMEPAGE="https://userbase.kde.org/KXStitch;
+SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+
+LICENSE="GPL-2+"
+SLOT="5"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtprintsupport)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtx11extras)
+   $(add_qt_dep qtxml)
+   media-gfx/imagemagick[cxx]
+   x11-libs/libX11
+   !media-gfx/kxstitch:4
+"
+DEPEND="${RDEPEND}
+   sys-devel/gettext
+"



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

2016-12-04 Thread Michael Palimaka
commit: 12665cb9019297686f4e960c03c41f6faa748b26
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Dec  4 17:07:44 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 17:07:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12665cb9

app-text/goldendict: add missing dependency

Gentoo-bug: 601596

Package-Manager: portage-2.3.2

 app-text/goldendict/goldendict-1.5.0_rc2-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-text/goldendict/goldendict-1.5.0_rc2-r1.ebuild 
b/app-text/goldendict/goldendict-1.5.0_rc2-r1.ebuild
index 225d45b..3c11533 100644
--- a/app-text/goldendict/goldendict-1.5.0_rc2-r1.ebuild
+++ b/app-text/goldendict/goldendict-1.5.0_rc2-r1.ebuild
@@ -45,6 +45,7 @@ RDEPEND="
)
 "
 DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
virtual/pkgconfig
 "
 



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

2016-12-04 Thread Kent Fredric
commit: 36836430b61181046ae9d6d0777f809f6849c832
Author: Kent Fredric  gentoo  org>
AuthorDate: Sun Dec  4 14:54:10 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sun Dec  4 14:54:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36836430

dev-python/fedmsg: Bump to version 0.18.1

Upstream:
- Handle STOMP message manging inside validation after JSON
  decoding.

Package-Manager: portage-2.3.2

 dev-python/fedmsg/Manifest |  1 +
 dev-python/fedmsg/fedmsg-0.18.1.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-python/fedmsg/Manifest b/dev-python/fedmsg/Manifest
index 0b4dcf1..a8fd292 100644
--- a/dev-python/fedmsg/Manifest
+++ b/dev-python/fedmsg/Manifest
@@ -1 +1,2 @@
 DIST fedmsg-0.18.0.tar.gz 539333 SHA256 
63ae0dd33032adbadbb710f5dc6aa03c6d60807bbce43c79a64e9ce8313cf307 SHA512 
a103ef1aca70ccbf2a8dcbc5832cc09116969e201fd8129ca6ad9cb2c0075fcad700c210773251740e1568346abc1109948fd123f8bde70204bc08d638ead8d5
 WHIRLPOOL 
bf0b3b10c5cf25c7722ce8403039ffa9c6367f0b6e3336f635f53ccd61a0720026472ef193e176427889cf2210299d00db9a93213e702e7ade7d7261595a55e3
+DIST fedmsg-0.18.1.tar.gz 539434 SHA256 
e2456f8f6fc46cfc5a63447d12077fcc0459cc53433e7beb211d708617331795 SHA512 
aca7bb54f520e0c967ff325c246dcc9376c5240d251bbdf23612562205fb8531627f88dd2524af5884f686e6ce11fdf1de3beaf3bf4fae04bb6c4bc612b1d2df
 WHIRLPOOL 
2c369ca33b43dd34333a3e75e0b81f811d792219bd3eebd96d3abdcc35943ea3390ed93dec9073ccc5fa0148d683c7a897a133712f41afe1c329a287e60f842e

diff --git a/dev-python/fedmsg/fedmsg-0.18.1.ebuild 
b/dev-python/fedmsg/fedmsg-0.18.1.ebuild
new file mode 100644
index ..39e3d4d
--- /dev/null
+++ b/dev-python/fedmsg/fedmsg-0.18.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+inherit distutils-r1
+
+DESCRIPTION="Fedora Messaging Client API"
+HOMEPAGE="http://www.fedmsg.com/ https://pypi.python.org/pypi/fedmsg;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+PATCHES=( "${FILESDIR}/0.18.0-endpoints.patch"
+ "${FILESDIR}/0.18.0-no_signatures.patch" )
+RDEPEND="
+   dev-python/pyzmq[${PYTHON_USEDEP}]
+   dev-python/kitchen[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/arrow[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/m2crypto[${PYTHON_USEDEP}]' 
'python2*')
+"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+   distutils-r1_python_install_all
+   insinto /etc/
+   doins -r "${S}/fedmsg.d"
+}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/Shapely/

2016-12-04 Thread Tiziano Müller
commit: a90e779dc40fe495a58b5b8ebd88c7e8bd16ca60
Author: Tiziano Müller  gentoo  org>
AuthorDate: Sun Dec  4 15:17:51 2016 +
Commit: Tiziano Müller  gentoo  org>
CommitDate: Sun Dec  4 15:17:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a90e779d

sci-libs/Shapely: rev-bump for EAPI 6 bump and fixed deps and tests

Package-Manager: portage-2.3.2

 sci-libs/Shapely/Shapely-1.5.17-r1.ebuild | 48 +++
 1 file changed, 48 insertions(+)

diff --git a/sci-libs/Shapely/Shapely-1.5.17-r1.ebuild 
b/sci-libs/Shapely/Shapely-1.5.17-r1.ebuild
new file mode 100644
index ..14cfe97
--- /dev/null
+++ b/sci-libs/Shapely/Shapely-1.5.17-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Geometric objects, predicates, and operations"
+HOMEPAGE="https://pypi.python.org/pypi/Shapely;
+
+if [[ ${PV} == "" ]] ; then
+   inherit git-r3
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/Toblerity/${PN}.git;
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND=">=sci-libs/geos-3.3
+   dev-python/numpy[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+   # fix install path for Cython definition file
+   sed -i \
+   -e "s|\(data_files.*\)'shapely'|\1'share/shapely'|" \
+   setup.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   distutils_install_for_testing
+   cd "${TEST_DIR}/lib" || die
+   cp -r "${S}/tests" . || die
+   py.test tests || die
+}



[gentoo-commits] proj/qt: Branch deleted: qmake-compile

2016-12-04 Thread Michael Palimaka
commit: 
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:37:53 2016 +

Branch deleted: qmake-compile




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

2016-12-04 Thread Michael Palimaka
commit: 6ca36831835e4aa4b120aec5afe19ab8bb459487
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:39:08 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ca36831

dev-perl/Role-Tiny: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

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

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



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

2016-12-04 Thread Michael Palimaka
commit: 7fb893f9b3c1ff44363e829a5ed1cc08a3357464
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:37:49 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fb893f9

dev-perl/Test-Needs: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

 dev-perl/Test-Needs/Test-Needs-0.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-Needs/Test-Needs-0.2.2.ebuild 
b/dev-perl/Test-Needs/Test-Needs-0.2.2.ebuild
index a675d2b..26b309d 100644
--- a/dev-perl/Test-Needs/Test-Needs-0.2.2.ebuild
+++ b/dev-perl/Test-Needs/Test-Needs-0.2.2.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 
 DESCRIPTION="Skip tests when modules not available"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86"
+KEYWORDS="~alpha ~amd64 ~x86 ~x86-fbsd"
 IUSE="test"
 
 RDEPEND=""



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

2016-12-04 Thread Michael Palimaka
commit: 6b38f5ea67dbc0fe1d7d97e17e9e1e32a323e42d
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:42:38 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b38f5ea

dev-perl/Perl-Tidy: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

 dev-perl/Perl-Tidy/Perl-Tidy-20160302.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Perl-Tidy/Perl-Tidy-20160302.0.0.ebuild 
b/dev-perl/Perl-Tidy/Perl-Tidy-20160302.0.0.ebuild
index 1bc91b8..f79bec4 100644
--- a/dev-perl/Perl-Tidy/Perl-Tidy-20160302.0.0.ebuild
+++ b/dev-perl/Perl-Tidy/Perl-Tidy-20160302.0.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://perltidy.sourceforge.net/ ${HOMEPAGE}"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 ~arm hppa ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
 IUSE="examples"
 
 RDEPEND=""



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

2016-12-04 Thread Michael Palimaka
commit: f22abf530bed159d720d57845bd5efe0a2c675d4
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:41:18 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f22abf53

dev-perl/Devel-LexAlias: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

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

diff --git a/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0.ebuild 
b/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0.ebuild
index 1271d5e..f684ea0 100644
--- a/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0.ebuild
+++ b/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Alias lexical variables"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ppc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ppc x86 ~x86-fbsd"
 IUSE=""
 
 DEPEND=">=dev-perl/Devel-Caller-2.03"



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

2016-12-04 Thread Michael Palimaka
commit: 4e2aaa7249b66bb70149dbdb5735fe27c202f7d5
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:08:58 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:44:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e2aaa72

dev-perl/Text-Diff: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=580962

 dev-perl/Text-Diff/Text-Diff-1.440.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Text-Diff/Text-Diff-1.440.0.ebuild 
b/dev-perl/Text-Diff/Text-Diff-1.440.0.ebuild
index 7aa4bef..ddcc7b3 100644
--- a/dev-perl/Text-Diff/Text-Diff-1.440.0.ebuild
+++ b/dev-perl/Text-Diff/Text-Diff-1.440.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Perform diffs on files and record sets"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
 IUSE=""
 
 RDEPEND="



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

2016-12-04 Thread Michael Palimaka
commit: 3434123a6f5ae84840b46659c7d5cc5929222168
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:36:58 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3434123a

dev-perl/DateTime: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

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

diff --git a/dev-perl/DateTime/DateTime-1.360.0.ebuild 
b/dev-perl/DateTime/DateTime-1.360.0.ebuild
index 9e7adac..aabf2e3 100644
--- a/dev-perl/DateTime/DateTime-1.360.0.ebuild
+++ b/dev-perl/DateTime/DateTime-1.360.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="A date and time object"
 
 LICENSE="Artistic-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86 ~ppc-aix ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="test"
 
 CONFLICTS="



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

2016-12-04 Thread Michael Palimaka
commit: 1679375a837850067095b7b15cba314a29d87041
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:42:00 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1679375a

dev-perl/namespace-clean: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

 dev-perl/namespace-clean/namespace-clean-0.260.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/namespace-clean/namespace-clean-0.260.0.ebuild 
b/dev-perl/namespace-clean/namespace-clean-0.260.0.ebuild
index bf96774..41982ea 100644
--- a/dev-perl/namespace-clean/namespace-clean-0.260.0.ebuild
+++ b/dev-perl/namespace-clean/namespace-clean-0.260.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Keep imports and functions out of your namespace"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix 
~x64-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix 
~x86-fbsd ~x64-macos"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] proj/lisp:master commit in: dev-lisp/contextl/

2016-12-04 Thread José María Alonso
commit: c72aed40d05a6944c897bfc3d2a3c9ececf0a6b7
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 17:41:45 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 17:41:45 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c72aed40

dev-lisp/contextl: Removes quotes from EAPI

 dev-lisp/contextl/contextl-0.61.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-lisp/contextl/contextl-0.61.ebuild 
b/dev-lisp/contextl/contextl-0.61.ebuild
index 4839b9b..1bcf3cf 100644
--- a/dev-lisp/contextl/contextl-0.61.ebuild
+++ b/dev-lisp/contextl/contextl-0.61.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="2"
+EAPI=2
+
 inherit common-lisp-2
 
 MY_P=${PN}_${PV}



[gentoo-commits] proj/lisp:master commit in: dev-lisp/lw-compat/

2016-12-04 Thread José María Alonso
commit: 553afcb3d8dd69828fe9552e679c0c10b7bfe4dd
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 17:48:04 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 17:48:04 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=553afcb3

dev-lisp/lw-compat: Updates header

 dev-lisp/lw-compat/lw-compat-0.23.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/lw-compat/lw-compat-0.23.ebuild 
b/dev-lisp/lw-compat/lw-compat-0.23.ebuild
index 3479dd8..c56a61c 100644
--- a/dev-lisp/lw-compat/lw-compat-0.23.ebuild
+++ b/dev-lisp/lw-compat/lw-compat-0.23.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2
 



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-darcs/

2016-12-04 Thread José María Alonso
commit: 22cb3e863921a0c4f20caddf07c63e95a21f92e9
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 13:21:49 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 13:21:49 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=22cb3e86

dev-lisp/cl-darcs: Updates header

 dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild 
b/dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild
index cb5df0b..4512d73 100644
--- a/dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild
+++ b/dev-lisp/cl-darcs/cl-darcs-0.2_p20080314-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2
 



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-gtk2/

2016-12-04 Thread José María Alonso
commit: 186848d871ae190c3bd140b56e3d747626c4f9b6
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 13:22:33 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 13:22:33 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=186848d8

dev-lisp/cl-gtk2: Updates header

 dev-lisp/cl-gtk2/cl-gtk2-0.1.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/cl-gtk2/cl-gtk2-0.1.1-r1.ebuild 
b/dev-lisp/cl-gtk2/cl-gtk2-0.1.1-r1.ebuild
index b45c404..8c885bc 100644
--- a/dev-lisp/cl-gtk2/cl-gtk2-0.1.1-r1.ebuild
+++ b/dev-lisp/cl-gtk2/cl-gtk2-0.1.1-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=3
 inherit common-lisp-3 eutils



[gentoo-commits] proj/lisp:master commit in: dev-lisp/mcclim/

2016-12-04 Thread José María Alonso
commit: 4f3c629db8cc25d9ac7f47d57501b06a944800bc
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 13:37:25 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 13:37:25 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=4f3c629d

dev-lisp/mcclim: Updates header

 dev-lisp/mcclim/mcclim-0.9.6-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/mcclim/mcclim-0.9.6-r3.ebuild 
b/dev-lisp/mcclim/mcclim-0.9.6-r3.ebuild
index 75df72f..79d97f1 100644
--- a/dev-lisp/mcclim/mcclim-0.9.6-r3.ebuild
+++ b/dev-lisp/mcclim/mcclim-0.9.6-r3.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2 elisp-common eutils
 



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

2016-12-04 Thread Pacho Ramos
commit: d1b385bc1bd5bd174b302c35cee00447d7fd1994
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 11:12:05 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 11:12:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1b385bc

net-wireless/bluez: Add missing MULTILIB_USEDEP dependency for glib (#601522 by 
Toralf Förster)

Package-Manager: portage-2.3.2

 net-wireless/bluez/bluez-5.43.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/bluez/bluez-5.43.ebuild 
b/net-wireless/bluez/bluez-5.43.ebuild
index 0ccd78b..16f4860 100644
--- a/net-wireless/bluez/bluez-5.43.ebuild
+++ b/net-wireless/bluez/bluez-5.43.ebuild
@@ -26,7 +26,7 @@ REQUIRED_USE="
 "
 
 CDEPEND="
-   >=dev-libs/glib-2.28:2
+   >=dev-libs/glib-2.28:2[${MULTILIB_USEDEP}]
>=sys-apps/dbus-1.6:=
>=sys-apps/hwids-20121202.2
cups? ( net-print/cups:= )



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-session/files/

2016-12-04 Thread Pacho Ramos
commit: 87fa953c4fdc56801a1c314496be82f98a647071
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 10:54:37 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 10:54:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87fa953c

gnome-base/gnome-session: Handle text/markdown mimetype too.

Package-Manager: portage-2.3.2

 gnome-base/gnome-session/files/defaults.list-r3 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnome-base/gnome-session/files/defaults.list-r3 
b/gnome-base/gnome-session/files/defaults.list-r3
index 6c62e32..5dfa6be 100644
--- a/gnome-base/gnome-session/files/defaults.list-r3
+++ b/gnome-base/gnome-session/files/defaults.list-r3
@@ -107,6 +107,7 @@ multipart/x-zip=org.gnome.FileRoller.desktop;
 text/plain=org.gnome.gedit.desktop;
 text/css=org.gnome.gedit.desktop;
 text/javascript=org.gnome.gedit.desktop;
+text/markdown=org.gnome.gedit.desktop;
 text/mathml=org.gnome.gedit.desktop;
 text/x-csrc=org.gnome.gedit.desktop;
 text/x-chdr=org.gnome.gedit.desktop;



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-common/

2016-12-04 Thread Pacho Ramos
commit: c2cdce5a758eaad375933233e2877866e3229947
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 10:59:17 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 10:59:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2cdce5a

gnome-base/gnome-common: People must DEPEND directly on 
sys-devel/autoconf-archive for the macros when needed instead of relying on 
dead/obsolete gnome-common ones (#594084)

Package-Manager: portage-2.3.2

 .../gnome-common/gnome-common-3.18.0-r1.ebuild | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/gnome-base/gnome-common/gnome-common-3.18.0-r1.ebuild 
b/gnome-base/gnome-common/gnome-common-3.18.0-r1.ebuild
new file mode 100644
index ..3175224
--- /dev/null
+++ b/gnome-base/gnome-common/gnome-common-3.18.0-r1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="Common files for development of Gnome packages"
+HOMEPAGE="https://git.gnome.org/browse/gnome-common;
+
+LICENSE="GPL-3"
+SLOT="3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+IUSE="+autoconf-archive"
+
+RDEPEND=""
+DEPEND=""
+
+src_configure() {
+   # Force people to rely on sys-devel/autoconf-archive, bug #594084
+   gnome2_src_configure --with-autoconf-archive
+}



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

2016-12-04 Thread Pacho Ramos
commit: 5660e27ea7bda2977416b30bbd82b4d6be63c6fa
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 11:16:20 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 11:16:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5660e27e

app-text/libwpd: Drop old

Package-Manager: portage-2.3.2

 app-text/libwpd/Manifest|  1 -
 app-text/libwpd/libwpd-0.10.0-r1.ebuild | 56 -
 2 files changed, 57 deletions(-)

diff --git a/app-text/libwpd/Manifest b/app-text/libwpd/Manifest
index 19a5369..c76ef36 100644
--- a/app-text/libwpd/Manifest
+++ b/app-text/libwpd/Manifest
@@ -1,3 +1,2 @@
-DIST libwpd-0.10.0.tar.xz 506220 SHA256 
9d8ba780cb9c0aed7859c59a602138d8ab360b40f6aa655e42f5f769f2cfd32c SHA512 
1d1962edd133b72ef835e1c7cf8d856cb959b231811009da14a272f20dc6ad3f9df02424791d26012bf130db05e22fa7862af355ecbaf3be30d9948aa719eba2
 WHIRLPOOL 
867049ca6128c9182a5df7d39189392618a1d2aae5631e518b6b5a33d6f2b08ddf2ad7b9d5fee8c8bef0edc6a6dae0cb0552475a73bf84db3a9ddeb19ae07449
 DIST libwpd-0.10.1.tar.xz 524004 SHA256 
09d3410bc770f9d9eedc8544b5c211771ea3322de3fee19b58ad7d40fb2984f6 SHA512 
976694b5e02fd9eb0b3769d5071e9ae88505f491d8fa34473e5b99cd350060a85ddfad9b3c38e9b37a280e695e4571d353fd69fe7b69a627097587912b58ad2c
 WHIRLPOOL 
c6c1124a7124edda4dad6788794c46067ad21c8fde0765ff1b1ca6305c08139e86ac0667d6fd6ca53e4bed41ad0b7aa6b4803fad5f7f72c529cf0c3b22bc7b43
 DIST libwpd-0.9.9.tar.xz 541608 SHA256 
b91df4ca0ef0f456be9531c9ee07cf6a5e50a16b52002abb99e8ebef13fac2b2 SHA512 
a71b4990670446270518e1318066e714c02c4a0752fba0be03037ea7bd434c5dd0219d61687448faabf7e31bc40e4e4a9d4b67d01fd362dae96322db513d79ac
 WHIRLPOOL 
c51155a0a88047abe856d0a83b05721b1629c4e5c24e68de65905ce8c735fd0144290c2739971d0118dfcf24eff47aea0f6b8b260c7eaa9af2a36cf8325d3c0a

diff --git a/app-text/libwpd/libwpd-0.10.0-r1.ebuild 
b/app-text/libwpd/libwpd-0.10.0-r1.ebuild
deleted file mode 100644
index b8ffa62..
--- a/app-text/libwpd/libwpd-0.10.0-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit alternatives eutils
-
-DESCRIPTION="WordPerfect Document import/export library"
-HOMEPAGE="http://libwpd.sf.net;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-
-LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
-SLOT="0.10"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~mips x86 ~x86-fbsd"
-IUSE="doc test +tools"
-
-RDEPEND="dev-libs/librevenge"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-   test? ( dev-util/cppunit )
-"
-RDEPEND="${RDEPEND}
-   !

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

2016-12-04 Thread Pacho Ramos
commit: d1d2d7c5307083aa500b5c9bfe83fc7d2ea5f7ec
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 11:15:53 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 11:15:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1d2d7c5

app-text/libwpd: amd64/x86 stable, bug #598509

Package-Manager: portage-2.3.2

 app-text/libwpd/libwpd-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/libwpd/libwpd-0.10.1.ebuild 
b/app-text/libwpd/libwpd-0.10.1.ebuild
index 2a49ff1..43b6109 100644
--- a/app-text/libwpd/libwpd-0.10.1.ebuild
+++ b/app-text/libwpd/libwpd-0.10.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
 
 LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
 SLOT="0.10"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~mips x86 ~x86-fbsd"
 IUSE="doc +tools"
 
 COMMON_DEPEND="dev-libs/librevenge"



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

2016-12-04 Thread Pacho Ramos
commit: 44d9cbc001c0d57980a958d1163a70ad851a9fce
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 11:25:01 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 11:25:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d9cbc0

net-wireless/bluez: amd64/x86 stable, bug #597486

Package-Manager: portage-2.3.2

 net-wireless/bluez/bluez-5.43.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/bluez/bluez-5.43.ebuild 
b/net-wireless/bluez/bluez-5.43.ebuild
index 16f4860..7788675 100644
--- a/net-wireless/bluez/bluez-5.43.ebuild
+++ b/net-wireless/bluez/bluez-5.43.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0/3"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 x86"
 
 IUSE="cups doc debug deprecated extra-tools experimental +obex +readline 
selinux systemd test test-programs +udev"
 # Since this release all remaining extra-tools need readline support, but this 
could



[gentoo-commits] repo/gentoo:master commit in: x11-themes/gnome-icon-theme-extras/

2016-12-04 Thread Pacho Ramos
commit: b4a7ff3066037dface89ed3b2bdc2456d830ffe0
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 10:32:19 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 10:32:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a7ff30

x11-themes/gnome-icon-theme-extras: Update ebuild

Package-Manager: portage-2.3.2

 .../gnome-icon-theme-extras/gnome-icon-theme-extras-3.12.0.ebuild | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git 
a/x11-themes/gnome-icon-theme-extras/gnome-icon-theme-extras-3.12.0.ebuild 
b/x11-themes/gnome-icon-theme-extras/gnome-icon-theme-extras-3.12.0.ebuild
index ccd75e4..0e371f1 100644
--- a/x11-themes/gnome-icon-theme-extras/gnome-icon-theme-extras-3.12.0.ebuild
+++ b/x11-themes/gnome-icon-theme-extras/gnome-icon-theme-extras-3.12.0.ebuild
@@ -1,14 +1,12 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="5"
-GCONF_DEBUG="no"
-
+EAPI=6
 inherit gnome2
 
 DESCRIPTION="Extra GNOME icons for specific devices and file types"
-HOMEPAGE="https://www.gnome.org/ 
https://git.gnome.org/browse/gnome-icon-theme-extras/;
+HOMEPAGE="https://git.gnome.org/browse/gnome-icon-theme-extras/;
 
 LICENSE="CC-BY-SA-3.0"
 SLOT="0"



[gentoo-commits] proj/qt:master commit in: eclass/

2016-12-04 Thread Davide Pesavento
commit: adec274a96ccf8a1dc925903ef9b78b8805cba0b
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Dec  4 15:35:56 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Dec  4 15:35:56 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=adec274a

qt5-build.eclass: drop support for Qt < 5.6

 eclass/qt5-build.eclass | 32 +---
 1 file changed, 9 insertions(+), 23 deletions(-)

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index 6ee55a6..301cc17 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -63,11 +63,7 @@ else
LICENSE="|| ( LGPL-2.1 LGPL-3 ) FDL-1.3"
 fi
 
-if [[ ${QT5_MINOR_VERSION} -ge 6 ]]; then
-   SLOT=5/$(get_version_component_range 1-2)
-else
-   SLOT=5
-fi
+SLOT=5/$(get_version_component_range 1-2)
 
 case ${PV} in
5.)
@@ -149,14 +145,8 @@ qt5-build_src_unpack() {
fi
if [[ $(gcc-major-version) -lt 4 ]] || \
   [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 
${min_gcc4_minor_version} ]]; then
-   if [[ ${QT5_MINOR_VERSION} -ge 6 ]]; then
-   eerror "GCC version 4.${min_gcc4_minor_version} 
or later is required to build this package"
-   die "GCC 4.${min_gcc4_minor_version} or later 
required"
-   else
-   ewarn
-   ewarn "Using a GCC version lower than 
4.${min_gcc4_minor_version} is not supported"
-   ewarn
-   fi
+   eerror "GCC version 4.${min_gcc4_minor_version} or 
later is required to build this package"
+   die "GCC 4.${min_gcc4_minor_version} or later required"
fi
fi
 
@@ -563,7 +553,7 @@ qt5_base_configure() {
 
# no need to forcefully build host tools in optimized mode,
# just follow the overall debug/release build type
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-optimized-tools)
+   -no-optimized-tools
 
# licensing stuff
-opensource -confirm-license
@@ -586,7 +576,7 @@ qt5_base_configure() {
-no-sql-psql -no-sql-sqlite -no-sql-sqlite2 -no-sql-tds
 
# ensure the QML debugging support (qmltooling) is built in 
qtdeclarative
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -qml-debug)
+   -qml-debug
 
# MIPS DSP instruction set extensions
$(is-flagq -mno-dsp   && echo -no-mips_dsp)
@@ -603,8 +593,7 @@ qt5_base_configure() {
 
# disable everything to prevent automagic deps (part 1)
-no-mtdev
-   -no-journald
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-syslog)
+   -no-journald -no-syslog
-no-libpng -no-libjpeg
-no-freetype -no-harfbuzz
-no-openssl -no-libproxy
@@ -645,7 +634,7 @@ qt5_base_configure() {
-no-pch
 
# link-time code generation is not something we want to enable 
by default
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-ltcg)
+   -no-ltcg
 
# reduced relocations cause major breakage on at least arm and 
ppc, so
# don't specify anything and let the configure figure out if 
they are
@@ -656,10 +645,7 @@ qt5_base_configure() {
#-use-gold-linker
 
# disable all platform plugins by default, override in qtgui
-   -no-xcb -no-eglfs -no-kms
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-gbm)
-   -no-directfb -no-linuxfb
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-mirclient)
+   -no-xcb -no-eglfs -no-kms -no-gbm -no-directfb -no-linuxfb 
-no-mirclient
 
# disable undocumented X11-related flags, override in qtgui
# (not shown in ./configure -help output)
@@ -687,7 +673,7 @@ qt5_base_configure() {
 
# respect system proxies by default: it's the most natural
# setting, and it'll become the new upstream default in 5.8
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -system-proxies)
+   -system-proxies
 
# do not build with -Werror
-no-warnings-are-errors



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

2016-12-04 Thread Alexis Ballier
commit: a08f6ec8298cffe4ec864db76b2c12fee02ca09f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Dec  4 11:57:01 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Dec  4 12:00:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a08f6ec8

media-video/ffmpeg: bump to 2.8.9

Package-Manager: portage-2.3.2

 media-video/ffmpeg/Manifest|   1 +
 media-video/ffmpeg/ffmpeg-2.8.9.ebuild | 458 +
 2 files changed, 459 insertions(+)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index 846737f..aa36312 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -1,3 +1,4 @@
 DIST ffmpeg-2.8.6.tar.bz2 8582420 SHA256 
40611e329bc354592c6f8f1deb033c31b91f80e91f5707ca4f9afceca78d8e62 SHA512 
68fb41884b95953025b9c56496b17e13062196800ff9834dac43a12e9a0048d4a763f50a2256418c91cc850b63713e1debbf9170737f29621f48946adef152dc
 WHIRLPOOL 
20a4b12b5a03f187b753cca43c65bd75b49cc21c9ffabad31b8ac0ab47fc8e017931ad5076b701c303bb594b20acb403d3ec2dabdf647fd262c070c8dabf1eea
 DIST ffmpeg-2.8.8.tar.bz2 8583641 SHA256 
b70848958feadca180315d17b1131a1b519527971590e6ee8363a4c568ed06a6 SHA512 
26fc2f9da8b0c62fb3147632476d328dff096f07efc83112dd3cf3a1da6b42edab053ef8f05d2035c5f824d9336020b3b4a99501243f83ec66255f082278bfb3
 WHIRLPOOL 
9ba67f08dcfbed0c3519767d9fea35f24a3652290ad095d01d928cf9f54e9e99afa410889c6afb84f22cd9882b5a7d44f304d602b41510973962517228f5f32f
+DIST ffmpeg-2.8.9.tar.bz2 8583736 SHA256 
7f979f1dd9a4d8f756636d4f52daf53fdc632ae2e27720f2ed9e9b2b0c659439 SHA512 
3d36c5937b8902299f826849d4e477cec5c280d56713b6f11d06a51679497ef18f5d6222f1984586a4e3fa553895f30a2e6c6e072184f17226376c9a0a09
 WHIRLPOOL 
23bfbad47426542cfa7a6365a30bdd17ff80a9c3fa25d3a96d8093723a9720a3d2a71115c7d6115e7711977a96229d805dc8ea93ea49aa1c1684c77aaa1ccb1e
 DIST ffmpeg-3.2.1.tar.bz2 9613356 SHA256 
72abc55bea5ff5397ac82320fa5c4843a05f527d0d7912d66784c92fdfbd12fb SHA512 
bdadad5a3879d9492c152541db39d96707ca2989d4663ef6b09a19169c67813da329ec99b274519ef119eaaa01a0dd4aee4a5841469068d7c73b27f8dafcd377
 WHIRLPOOL 
d85fd6a10b9e721cba60e5cf88c98148daa99499cd51caeb2796dd9a86a4117cc3c6df9ceef0bd980cad100d33113292323f211861cfc4e8236b5cc0a34d6d55

diff --git a/media-video/ffmpeg/ffmpeg-2.8.9.ebuild 
b/media-video/ffmpeg/ffmpeg-2.8.9.ebuild
new file mode 100644
index ..882a440
--- /dev/null
+++ b/media-video/ffmpeg/ffmpeg-2.8.9.ebuild
@@ -0,0 +1,458 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+# Subslot: libavutil major.libavcodec major.libavformat major
+# Since FFmpeg ships several libraries, subslot is kind of limited here.
+# Most consumers will use those three libraries, if a "less used" library
+# changes its soname, consumers will have to be rebuilt the old way
+# (preserve-libs).
+# If, for example, a package does not link to libavformat and only libavformat
+# changes its ABI then this package will be rebuilt needlessly. Hence, such a
+# package is free _not_ to := depend on FFmpeg but I would strongly encourage
+# doing so since such a case is unlikely.
+FFMPEG_SUBSLOT=54.56.56
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-2"
+   EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git"
+fi
+
+inherit eutils flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
+
+DESCRIPTION="Complete solution to record, convert and stream audio and video. 
Includes libavcodec"
+HOMEPAGE="http://ffmpeg.org/;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
+   SRC_URI="mirror://gentoo/${P}.tar.bz2"
+else # Release
+   SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2;
+fi
+FFMPEG_REVISION="${PV#*_p}"
+
+SLOT="0/${FFMPEG_SUBSLOT}"
+LICENSE="
+   !gpl? ( LGPL-2.1 )
+   gpl? ( GPL-2 )
+   amr? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   encode? (
+   aac? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   amrenc? (
+   gpl? ( GPL-3 )
+   !gpl? ( LGPL-3 )
+   )
+   )
+   samba? ( GPL-3 )
+"
+if [ "${PV#}" = "${PV}" ] ; then
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+fi
+
+# Options to use as use_enable in the foo[:bar] form.
+# This will feed configure with $(use_enable foo bar)
+# or $(use_enable foo foo) if no :bar is set.
+# foo is added to IUSE.
+FFMPEG_FLAG_MAP=(
+   +bzip2:bzlib cpudetection:runtime-cpudetect debug doc gnutls 
+gpl
+   +hardcoded-tables +iconv lzma +network openssl +postproc
+   samba:libsmbclient sdl:ffplay sdl vaapi vdpau X:xlib xcb:libxcb
+   xcb:libxcb-shm xcb:libxcb-xfixes +zlib
+   # 

[gentoo-commits] proj/lisp:master commit in: dev-lisp/cmucl/

2016-12-04 Thread José María Alonso
commit: 82bd8f398b5af111d5a3ca2aafe5e72f9c32c752
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 13:28:39 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 13:28:39 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=82bd8f39

dev-lisp/cmucl: Updates header

 dev-lisp/cmucl/cmucl-20d-r3.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/cmucl/cmucl-20d-r3.ebuild 
b/dev-lisp/cmucl/cmucl-20d-r3.ebuild
index fbe2119..225b9e4 100644
--- a/dev-lisp/cmucl/cmucl-20d-r3.ebuild
+++ b/dev-lisp/cmucl/cmucl-20d-r3.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=5
+
 inherit eutils glo-utils toolchain-funcs
 
 MY_PV=${PV:0:3}



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

2016-12-04 Thread Kent Fredric
commit: 4d53b8b72459e05d47ece6069dbcec61447d3178
Author: Kent Fredric  gentoo  org>
AuthorDate: Sun Dec  4 15:41:59 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sun Dec  4 15:52:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d53b8b7

dev-perl/DBD-mysql: Bump to version 4.41.0 re bug #601144

Upstream:
- Fixed use-after-free with repeated fetchrow_arrayref under
  mysql_server_prepare=1 (CVE-2016-1251)
- auto_reconnect now properly reconnects when receiving
  CR_SERVER_LOST instead of only CR_SERVER_GONE

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

Package-Manager: portage-2.3.2

 dev-perl/DBD-mysql/DBD-mysql-4.41.0.ebuild | 66 ++
 dev-perl/DBD-mysql/Manifest|  1 +
 2 files changed, 67 insertions(+)

diff --git a/dev-perl/DBD-mysql/DBD-mysql-4.41.0.ebuild 
b/dev-perl/DBD-mysql/DBD-mysql-4.41.0.ebuild
new file mode 100644
index ..14982c2
--- /dev/null
+++ b/dev-perl/DBD-mysql/DBD-mysql-4.41.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MICHIELB
+DIST_VERSION=4.041
+inherit eutils perl-module
+
+DESCRIPTION="MySQL driver for the Perl5 Database Interface (DBI)"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+
+# embedded=on disables ssl support
+# https://metacpan.org/source/MICHIELB/DBD-mysql-4.036/dbdimp.c#L1886
+REQUIRED_USE="?? ( embedded ssl )"
+IUSE="embedded test +ssl"
+
+RDEPEND=">=dev-perl/DBI-1.609.0
+   virtual/libmysqlclient:=
+   embedded? ( virtual/mysql[embedded] )
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   virtual/perl-Data-Dumper
+   test? (
+   dev-perl/Test-Deep
+   >=virtual/perl-Test-Simple-0.900.0
+   virtual/perl-Time-HiRes
+   )
+"
+
+src_configure() {
+   if use test; then
+   myconf="${myconf} --testdb=test \
+   --testhost=localhost \
+   --testuser=test \
+   --testpassword=test"
+   fi
+   myconf="${myconf} --$(usex ssl ssl nossl)"
+   use embedded && myconf="${myconf} --force-embedded 
--embedded=mysql_config"
+   perl-module_src_configure
+}
+
+# Parallel testing is broken as 2 tests create the same table
+# and mysql isn't acid compliant and can't limit visibility of tables
+# to a transaction...
+DIST_TEST="do"
+
+src_test() {
+   einfo
+   einfo "If tests fail, you have to configure your MySQL instance to 
create"
+   einfo "and grant some privileges to the test user."
+   einfo "You can run the following commands at the MySQL prompt: "
+   einfo "> CREATE USER 'test'@'localhost' IDENTIFIED BY 'test';"
+   einfo "> CREATE DATABASE test;"
+   einfo "> GRANT ALL PRIVILEGES ON test.* TO 'test'@'localhost';"
+   einfo
+   sleep 5
+   perl_rm_files t/pod.t t/manifest.t
+   # Don't be a hero and try to do EXTENDED_TESTING=1 unless you can figure
+   # out why 60leaks.t fails
+   perl-module_src_test
+}

diff --git a/dev-perl/DBD-mysql/Manifest b/dev-perl/DBD-mysql/Manifest
index f869398..ec3dfa8 100644
--- a/dev-perl/DBD-mysql/Manifest
+++ b/dev-perl/DBD-mysql/Manifest
@@ -5,3 +5,4 @@ DIST DBD-mysql-4.038.tar.gz 149016 SHA256 
4174bb885a5ccb34d942fc10fafb8bfcbc6d4b
 DIST DBD-mysql-4.038_01.tar.gz 148907 SHA256 
2cf04092f1ec55a46aa6a01325dddab0a07a284f2c5d9472c8330cf6b37b3c05 SHA512 
4b2e508a52fe55c66ca5d58f9676a5a72bc54b090a6e98aef8a201e46c61d2f0d407ea96ee5cf26728073a22757dc7350ee0121a1983421a1bd5140bd9015a6d
 WHIRLPOOL 
b0997048eaadc2a024402eb502b6690ee5720533fb01c7552bc8bff0069272eb06e95ac38e0348a656f007b3a24cc2abd557056eeba7246bd9a0effcbcabda4c
 DIST DBD-mysql-4.039.tar.gz 149928 SHA256 
1602a9d22e13bd2c5b27e8e2f2a7cc7fa08d6ce53162b0aa12b5d7d5e41a974c SHA512 
eb8fa2f7f67ee7eefb5062259a0b20a121df0a8101de1fb2e086d445163d8552939038a6caa5e49b7335d1eb3f9172b466cb6eb932654c1289df53767782b87b
 WHIRLPOOL 
35f4a53cb1137a844f56a708a18034e5cfcf6904fbc058fc2b89ad6a3c6a52e2ac1d04338f7a00a4a3b111efc83e524020043f017e263e6c8cbc077c46fb694b
 DIST DBD-mysql-4.040.tar.gz 149783 SHA256 
a3438bba3cce02b13870b146b9db76a519b98e978d9dfe8516a63daff2989040 SHA512 
43ed530e568ace51030ba36b3013fffaa19ae7c463d05f595f0343ea58e79801eac1c6ae280de343d280e043581f349306d960a153160f24e8457028866e474f
 WHIRLPOOL 
ba86ecf0d5303efcd1e3807f288e565faebff236406f7ee2171f109f570c57ab102e6a75a72ebddd79a21c89385bb8abc75da4ccef879cdd8af8e9e7b99fb747
+DIST DBD-mysql-4.041.tar.gz 150508 SHA256 
4777de11c464b515db9da95c08c225900d0594b65ba3256982dc21f9f9379040 SHA512 
8663c58f1dec273869ef5d3ee663d80cb36fa87b1956318fff07a4a801aaecc395510a8f31b7a51b823f7e9d6a73ebf13894c1b7f7b27fdc3f3956e6aba34777
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-core/, net-analyzer/nagios-core/files/

2016-12-04 Thread Michael Orlitzky
commit: 6371a02d00ea5b9bd43d92ab63ee8f81fa9b68e3
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sun Dec  4 15:46:25 2016 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sun Dec  4 16:10:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6371a02d

net-analyzer/nagios-core: new revision and init script to fix CVE-2016-8641.

The new version 4.2.3 was added to fix CVE-2016-8641 in commit
c9f880e. However, the root privilege exploit results from the use of
"chown" in the init script. We don't use upstream's init script, so a
proper fix requires an update to our init script as well.

The following changes were made to the init script:

  * We no longer attempt to delete the external command file before
starting or stopping the daemon. It's not clear why this was done,
and that file should not exist unless the user intentionally
creates it.

  * We do not create or change ownership of /var/nagios/nagios.log or
/var/nagios/status.sav when starting the daemon. The log file path
is defined in the config file, so the hard-coded path in the init
script might not have referred to the true location of the log file.

And when the nagios daemon creates these files on its own, they
should already have the correct permissions and ownership. By
removing the "chown", we have actually fixed the root privilege
exploit in CVE-2016-8641.

  * The two files /var/nagios/status.log and /var/nagios/nagios.tmp are
not deleted after the daemon has shut down. I can come up with no
compelling argument to do so.

Gentoo-Bug: 600864

Package-Manager: portage-2.3.0

 net-analyzer/nagios-core/files/nagios4-r1  | 46 ++
 ...re-4.2.3.ebuild => nagios-core-4.2.3-r1.ebuild} |  2 +-
 2 files changed, 47 insertions(+), 1 deletion(-)

diff --git a/net-analyzer/nagios-core/files/nagios4-r1 
b/net-analyzer/nagios-core/files/nagios4-r1
new file mode 100644
index ..dd2495c
--- /dev/null
+++ b/net-analyzer/nagios-core/files/nagios4-r1
@@ -0,0 +1,46 @@
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+extra_commands="checkconfig"
+extra_started_commands="reload"
+
+nagios_config="/etc/nagios/nagios.cfg"
+
+command="/usr/sbin/nagios"
+command_args="-d ${nagios_config}"
+pidfile="/var/nagios/nagios.lock"
+start_stop_daemon_args="-e HOME=/var/nagios/home"
+
+depend(){
+   need net
+   use dns logger firewall
+   after mysql postgresql
+}
+
+reload(){
+   checkconfig || return 1
+   ebegin "Reloading configuration"
+   start-stop-daemon --signal HUP --pidfile ${pidfile}
+   eend $?
+}
+
+checkconfig(){
+   ebegin "Verifying config files"
+
+   # Silent Check
+   ${command} -v ${nagios_config} > /dev/null 2>&1 && return 0
+
+   # Now we know there's a problem. Run the check again and
+   # this time, display the errors.
+   ${command} -v ${nagios_config}
+   eend $? "Configuration Error. Please fix your config file."
+}
+
+start_pre() {
+   # Without this, the "start" action will appear to succeed even
+   # when the config file contains errors and the daemon failed to
+   # start.
+   checkconfig || return 1
+}

diff --git a/net-analyzer/nagios-core/nagios-core-4.2.3.ebuild 
b/net-analyzer/nagios-core/nagios-core-4.2.3-r1.ebuild
similarity index 99%
rename from net-analyzer/nagios-core/nagios-core-4.2.3.ebuild
rename to net-analyzer/nagios-core/nagios-core-4.2.3-r1.ebuild
index f3d1d3e..2852d62 100644
--- a/net-analyzer/nagios-core/nagios-core-4.2.3.ebuild
+++ b/net-analyzer/nagios-core/nagios-core-4.2.3-r1.ebuild
@@ -142,7 +142,7 @@ src_install() {
insopts --mode=0644 # Back to the default...
fi
 
-   newinitd "${FILESDIR}"/nagios4 nagios
+   newinitd "${FILESDIR}"/nagios4-r1 nagios
newconfd "${FILESDIR}"/conf.d nagios
 
if use web ; then



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

2016-12-04 Thread Mike Gilbert
commit: ebd3ec0fe10d86f231487cdc944ece5e4ee26371
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Dec  4 16:10:56 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Dec  4 16:11:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebd3ec0f

www-client/chromium: dev channel bump (56.0.2924.14)

Depends on >=media-video/ffmpeg-3.

Bug: https://bugs.gentoo.org/601604
Package-Manager: portage-2.3.2_p13

 www-client/chromium/Manifest| 2 +-
 .../{chromium-56.0.2924.3.ebuild => chromium-56.0.2924.14.ebuild}   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 48f4799..e2ef177 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,4 +1,4 @@
 DIST chromium-54.0.2840.100.tar.xz 479762112 SHA256 
e2e7f54a780c93ec2e933af09e1126837e6cf940b57213d39f36d58df10c89df SHA512 
52f34db6f68bbf2c8a1ac71789dfa7b6ee17ea97519d0a9a1079d78324cffe55572652701e05055f08e03230d887674757322399062f2f5354b1e43c3fdf8f78
 WHIRLPOOL 
e9e47d695b32aff2a5c654cdec664ea3f94307639e9f330bd231ff6d762ea9caffe1130595dbb36443eefc8bccac92839bc967db89dbed236c5bfa91c6fc6e9b
 DIST chromium-55.0.2883.75.tar.xz 511256096 SHA256 
5bcf7180935bebc7648f7e2577f612da681f7846127f79dac22630ded9984e55 SHA512 
9830b02e05ebaf120b02b4c67196ba5c7f2d5aa917b9e5f8516b1f0cce1abd8e752c379e8ac1f16c7b7e451341486d9356d47a1b77b72ab5117390ce16b9
 WHIRLPOOL 
ab752b9e9a6c7a536424ac1384d9f0ad0f23dd40bbf6784e4185554602628e8e1f45acbb264fff33f7f00c8ee14f293bfaf23259d2db4f785c9c9c49e72b28eb
 DIST chromium-56.0.2924.10.tar.xz 512579188 SHA256 
6fd603951fdefc5e513f7b19325edd81ca17648e9aeb9bab458ff756a268953b SHA512 
6901587421fa47530d4343fe77a644bfe8759f7a310b234a563f5662251272fb70a9bde9b5b083bd98c72ef52378d0746eacb2c1baab8df4fbc0f6abc21b96a7
 WHIRLPOOL 
670eb556245d6c60cd954f7c8ffbc6ffbd2dce27dea85f9e171f8ba0941970f57e14cef3f3cdd8132faf61a0d4559250a1faf4d116094635cb60e460e58eaaf4
-DIST chromium-56.0.2924.3.tar.xz 512617776 SHA256 
f2b038048f11128b210039a3796b4bc79f9e8b71a8720638c495a3bf711b28a6 SHA512 
b7b56add5f9adc05b879678c7e1e71032d51d75c69dfb5a455bf688c41d6f20b1eed14c93e79fc36534b2fff6b4905fa7f12ac39b2dab3a2410ab3e0fabff484
 WHIRLPOOL 
e72a6d7e685bc300bab76d8cf9596dbbf178f475f363409cf8a82bde604dccd848ba645515d8eface403be1446c1f775f57ae7fa0418bd8dcc08033cd7e1c8e0
+DIST chromium-56.0.2924.14.tar.xz 513240844 SHA256 
4e8d340abdbdeb6c0ddbda7c8692010dd48515161c2f67532546947660f11b92 SHA512 
dd814726d786450c47719715264bad3dd5682d0c4bae9e84355e1f67772dd20032c06b491615e41c9af08f6af47204405f777f85543b36d9b5f51e8bba3d8042
 WHIRLPOOL 
12cd0fa35d0829cb6206b40ab91fae9cb7b42afdd9b89bc75edc0a6f8fe0e494d573912ac2bd9166ef30c9db3e536150dbf35875ec75d466594ddf891586d60d

diff --git a/www-client/chromium/chromium-56.0.2924.3.ebuild 
b/www-client/chromium/chromium-56.0.2924.14.ebuild
similarity index 99%
rename from www-client/chromium/chromium-56.0.2924.3.ebuild
rename to www-client/chromium/chromium-56.0.2924.14.ebuild
index 999d7a3..97f32c7 100644
--- a/www-client/chromium/chromium-56.0.2924.3.ebuild
+++ b/www-client/chromium/chromium-56.0.2924.14.ebuild
@@ -50,7 +50,7 @@ COMMON_DEPEND="
media-libs/libvpx:=[svc]
media-libs/speex:=
pulseaudio? ( media-sound/pulseaudio:= )
-   system-ffmpeg? ( >=media-video/ffmpeg-2.7.2:= )
+   system-ffmpeg? ( >=media-video/ffmpeg-3:= )
sys-apps/dbus:=
sys-apps/pciutils:=
>=sys-libs/libcap-2.22:=



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

2016-12-04 Thread Mike Gilbert
commit: 977a01d81f75dc1e2fc0e6dc479b6ae13469aec4
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Dec  4 15:58:00 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Dec  4 16:11:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=977a01d8

net-misc/freerdp: fix ffmpeg dependency

virtual/ffmpeg is only for tools usage.

Package-Manager: portage-2.3.2_p13

 net-misc/freerdp/freerdp-1.1.0_beta1_p20130710-r2.ebuild | 7 +--
 net-misc/freerdp/freerdp-1.2.1_pre20150326-r1.ebuild | 9 ++---
 net-misc/freerdp/freerdp-2.0.0_pre20160722.ebuild| 7 +--
 net-misc/freerdp/freerdp-.ebuild | 7 +--
 4 files changed, 21 insertions(+), 9 deletions(-)

diff --git a/net-misc/freerdp/freerdp-1.1.0_beta1_p20130710-r2.ebuild 
b/net-misc/freerdp/freerdp-1.1.0_beta1_p20130710-r2.ebuild
index c0ba86d..f9cb9db 100644
--- a/net-misc/freerdp/freerdp-1.1.0_beta1_p20130710-r2.ebuild
+++ b/net-misc/freerdp/freerdp-1.1.0_beta1_p20130710-r2.ebuild
@@ -23,7 +23,7 @@ HOMEPAGE="http://www.freerdp.com/;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE="alsa +client cups debug directfb doc ffmpeg gstreamer jpeg
+IUSE="alsa +client cups debug directfb doc ffmpeg gstreamer jpeg libav
pulseaudio server smartcard cpu_flags_x86_sse2 test usb X xinerama xv"
 
 RDEPEND="
@@ -48,7 +48,10 @@ RDEPEND="
)
)
directfb? ( dev-libs/DirectFB )
-   ffmpeg? ( virtual/ffmpeg )
+   ffmpeg? (
+   libav? ( media-video/libav:0= )
+   !libav? ( media-video/ffmpeg:0= )
+   )
gstreamer? (
media-libs/gstreamer:0.10
media-libs/gst-plugins-base:0.10

diff --git a/net-misc/freerdp/freerdp-1.2.1_pre20150326-r1.ebuild 
b/net-misc/freerdp/freerdp-1.2.1_pre20150326-r1.ebuild
index e914037..b0a3f97 100644
--- a/net-misc/freerdp/freerdp-1.2.1_pre20150326-r1.ebuild
+++ b/net-misc/freerdp/freerdp-1.2.1_pre20150326-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -22,7 +22,7 @@ HOMEPAGE="http://www.freerdp.com/;
 
 LICENSE="Apache-2.0"
 SLOT="0/1.2"
-IUSE="alsa +client cpu_flags_x86_sse2 cups debug doc ffmpeg gstreamer jpeg
+IUSE="alsa +client cpu_flags_x86_sse2 cups debug doc ffmpeg gstreamer jpeg 
libav
libressl neon pulseaudio server smartcard test usb wayland X xinerama 
xv"
 
 RDEPEND="
@@ -47,7 +47,10 @@ RDEPEND="
xv? ( x11-libs/libXv )
)
)
-   ffmpeg? ( >=virtual/ffmpeg-9 )
+   ffmpeg? (
+   libav? ( media-video/libav:0= )
+   !libav? ( media-video/ffmpeg:0= )
+   )
gstreamer? (
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0

diff --git a/net-misc/freerdp/freerdp-2.0.0_pre20160722.ebuild 
b/net-misc/freerdp/freerdp-2.0.0_pre20160722.ebuild
index 2a8b741..2d1221c 100644
--- a/net-misc/freerdp/freerdp-2.0.0_pre20160722.ebuild
+++ b/net-misc/freerdp/freerdp-2.0.0_pre20160722.ebuild
@@ -23,7 +23,7 @@ HOMEPAGE="http://www.freerdp.com/;
 
 LICENSE="Apache-2.0"
 SLOT="0/2"
-IUSE="alsa +client cpu_flags_x86_sse2 cups debug doc ffmpeg gstreamer jpeg 
libressl neon pulseaudio server smartcard systemd test usb wayland X xinerama 
xv"
+IUSE="alsa +client cpu_flags_x86_sse2 cups debug doc ffmpeg gstreamer jpeg 
libav libressl neon pulseaudio server smartcard systemd test usb wayland X 
xinerama xv"
 
 RDEPEND="
!libressl? ( dev-libs/openssl:0= )
@@ -47,7 +47,10 @@ RDEPEND="
xv? ( x11-libs/libXv )
)
)
-   ffmpeg? ( virtual/ffmpeg )
+   ffmpeg? (
+   libav? ( media-video/libav:0= )
+   !libav? ( media-video/ffmpeg:0= )
+   )
gstreamer? (
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0

diff --git a/net-misc/freerdp/freerdp-.ebuild 
b/net-misc/freerdp/freerdp-.ebuild
index 2df69d8..78307ff 100644
--- a/net-misc/freerdp/freerdp-.ebuild
+++ b/net-misc/freerdp/freerdp-.ebuild
@@ -23,7 +23,7 @@ HOMEPAGE="http://www.freerdp.com/;
 
 LICENSE="Apache-2.0"
 SLOT="0/2"
-IUSE="alsa +client cpu_flags_x86_sse2 cups debug doc ffmpeg gstreamer jpeg 
libressl neon pulseaudio server smartcard systemd test usb wayland X xinerama 
xv"
+IUSE="alsa +client cpu_flags_x86_sse2 cups debug doc ffmpeg gstreamer jpeg 
libav libressl neon pulseaudio server smartcard systemd test usb wayland X 
xinerama xv"
 
 RDEPEND="
!libressl? ( dev-libs/openssl:0= )
@@ -47,7 +47,10 @@ RDEPEND="
xv? ( x11-libs/libXv )
)
)
-   ffmpeg? ( virtual/ffmpeg )
+   ffmpeg? (
+   libav? ( media-video/libav:0= )
+   !libav? ( media-video/ffmpeg:0= )
+   )
gstreamer? (
media-libs/gstreamer:1.0

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

2016-12-04 Thread Michael Palimaka
commit: a6cac4241d355e57da5c28d7c02811b139548b43
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:39:52 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6cac424

dev-perl/Devel-Caller: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

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

diff --git a/dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild 
b/dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild
index 6431bbc..0b03fd3 100644
--- a/dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild
+++ b/dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Meatier versions of caller"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ppc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ppc x86 ~x86-fbsd"
 IUSE=""
 
 DEPEND="dev-perl/PadWalker"



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

2016-12-04 Thread Michael Palimaka
commit: 02a4caca8163b0e319d59e6abe7821f59efdf409
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:40:33 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02a4caca

dev-perl/Specio: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

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

diff --git a/dev-perl/Specio/Specio-0.310.0.ebuild 
b/dev-perl/Specio/Specio-0.310.0.ebuild
index 6d40ac7..83805cf 100644
--- a/dev-perl/Specio/Specio-0.310.0.ebuild
+++ b/dev-perl/Specio/Specio-0.310.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 
 DESCRIPTION="Type constraints and coercions for Perl"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86"
+KEYWORDS="~alpha ~amd64 ~x86 ~x86-fbsd"
 IUSE="test"
 
 PATCHES=("${FILESDIR}/${PN}-${DIST_VERSION}-installskip.patch")



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

2016-12-04 Thread Michael Palimaka
commit: 66947c27e6f3281e96d5cb442ef6168d1ce9cf66
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:38:24 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66947c27

dev-perl/B-Hooks-EndOfScope: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

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

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



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

2016-12-04 Thread Michael Palimaka
commit: f5a8d6f2096c0225f090b46f87d68f6de5f3e48f
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:35:14 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5a8d6f2

dev-perl/namespace-autoclean: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

 dev-perl/namespace-autoclean/namespace-autoclean-0.280.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/namespace-autoclean/namespace-autoclean-0.280.0.ebuild 
b/dev-perl/namespace-autoclean/namespace-autoclean-0.280.0.ebuild
index 0d3b80c..4883830 100644
--- a/dev-perl/namespace-autoclean/namespace-autoclean-0.280.0.ebuild
+++ b/dev-perl/namespace-autoclean/namespace-autoclean-0.280.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Keep imports out of your namespace"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ppc ~x86 ~ppc-aix ~x86-freebsd ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ppc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2016-12-04 Thread Michael Palimaka
commit: c809e184e112aaff38e0f9b74ad103a66c1ef362
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 01:36:08 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:43:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c809e184

dev-perl/Variable-Magic: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=599552

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

diff --git a/dev-perl/Variable-Magic/Variable-Magic-0.600.0.ebuild 
b/dev-perl/Variable-Magic/Variable-Magic-0.600.0.ebuild
index b26874f..3c08caf 100644
--- a/dev-perl/Variable-Magic/Variable-Magic-0.600.0.ebuild
+++ b/dev-perl/Variable-Magic/Variable-Magic-0.600.0.ebuild
@@ -12,7 +12,7 @@ inherit perl-module
 DESCRIPTION="Associate user-defined magic to variables from Perl"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~x86 ~ppc-aix ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~x86 ~ppc-aix ~x86-fbsd ~x64-macos"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] proj/lisp:master commit in: dev-lisp/filtered-functions/

2016-12-04 Thread José María Alonso
commit: fac5df05d088014cc79f7f794fb44efc1cc7c2ea
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 18:06:19 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 18:06:19 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=fac5df05

dev-lisp/filtered-functions: Updates header

 dev-lisp/filtered-functions/filtered-functions-0.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/filtered-functions/filtered-functions-0.10.ebuild 
b/dev-lisp/filtered-functions/filtered-functions-0.10.ebuild
index cf9c2e3..85f2f1e 100644
--- a/dev-lisp/filtered-functions/filtered-functions-0.10.ebuild
+++ b/dev-lisp/filtered-functions/filtered-functions-0.10.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2
 



[gentoo-commits] proj/lisp:master commit in: dev-lisp/aspectl/

2016-12-04 Thread José María Alonso
commit: b035a5222b4b303fb2ddf37fbdc1104977cd4d10
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 18:05:38 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 18:05:38 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=b035a522

dev-lisp/aspectl: Bumps version to 0.75.0

 dev-lisp/aspectl/aspectl-0.75.0.ebuild | 21 +
 1 file changed, 21 insertions(+)

diff --git a/dev-lisp/aspectl/aspectl-0.75.0.ebuild 
b/dev-lisp/aspectl/aspectl-0.75.0.ebuild
new file mode 100644
index 000..cb43f76
--- /dev/null
+++ b/dev-lisp/aspectl/aspectl-0.75.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit common-lisp-3
+
+DESCRIPTION="A CLOS extension for Aspect-oriented Programming."
+HOMEPAGE="http://common-lisp.net/project/closer/;
+SRC_URI="https://github.com/pcostanza/aspectl/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND="!dev-lisp/cl-${PN}
+   dev-lisp/lw-compat
+   dev-lisp/closer-mop
+   dev-lisp/contextl"



[gentoo-commits] repo/gentoo:master commit in: dev-java/japitools/

2016-12-04 Thread James Le Cuirot
commit: 7496c26e03e5823dbbcba332a434e71da07e119b
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Dec  4 13:38:23 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Dec  4 13:38:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7496c26e

dev-java/japitools: Fix classpath adjustment, broken by eclass change

Straight to stable, the current version is totally broken.

Package-Manager: portage-2.3.2

 ...apitools-0.9.7-r3.ebuild => japitools-0.9.7-r4.ebuild} | 15 +++
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/dev-java/japitools/japitools-0.9.7-r3.ebuild 
b/dev-java/japitools/japitools-0.9.7-r4.ebuild
similarity index 85%
rename from dev-java/japitools/japitools-0.9.7-r3.ebuild
rename to dev-java/japitools/japitools-0.9.7-r4.ebuild
index c80e8b9..dfcead4 100644
--- a/dev-java/japitools/japitools-0.9.7-r3.ebuild
+++ b/dev-java/japitools/japitools-0.9.7-r4.ebuild
@@ -15,8 +15,6 @@ SRC_URI="http://www.kaffe.org/~stuart/japi/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE=""
-
 RESTRICT="test"
 
 CDEPEND="dev-java/ant-core:0"
@@ -33,15 +31,16 @@ DEPEND="
 S="${WORKDIR}/${P}"
 
 JAVA_GENTOO_CLASSPATH="ant-core"
-
 JAVA_SRC_DIR="src"
 
-java_prepare() {
-   eapply_user
-   cd "${S}"/bin || die
-   rm *.bat || die
-   sed -e "s:../share/java:../share/${PN}/lib:" -i * \
+src_prepare() {
+   default
+
+   rm bin/*.bat || die
+   sed -e "s:\.\./share/java:../share/${PN}/lib:" -i bin/* \
|| die "Failed to correct the location of the jar file in perl 
scripts."
+
+   java-pkg-2_src_prepare
 }
 
 src_install() {



[gentoo-commits] proj/lisp:master commit in: dev-lisp/lispbuilder-sdl/

2016-12-04 Thread José María Alonso
commit: 1e8857cefb8ff9e99e0b52db4af21df4d7b35a4d
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 13:38:09 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 13:38:09 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=1e8857ce

dev-lisp/lispbuilder-sdl: Updates header

 dev-lisp/lispbuilder-sdl/lispbuilder-sdl-0.9.8.1-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/lispbuilder-sdl/lispbuilder-sdl-0.9.8.1-r1.ebuild 
b/dev-lisp/lispbuilder-sdl/lispbuilder-sdl-0.9.8.1-r1.ebuild
index 1b0df99..3c4cd8f 100644
--- a/dev-lisp/lispbuilder-sdl/lispbuilder-sdl-0.9.8.1-r1.ebuild
+++ b/dev-lisp/lispbuilder-sdl/lispbuilder-sdl-0.9.8.1-r1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=3
+
 inherit common-lisp-3 eutils
 
 DESCRIPTION="Lisp Application Builder Interface to libSDL"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/hunchentoot-vhost/

2016-12-04 Thread José María Alonso
commit: d24fb25c3e6e9c4f5090404bd3ba82e410692147
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 13:49:16 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 13:49:16 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=d24fb25c

dev-lisp/hunchentoot-vhost: Updates header

 dev-lisp/hunchentoot-vhost/hunchentoot-vhost-0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/hunchentoot-vhost/hunchentoot-vhost-0.2.ebuild 
b/dev-lisp/hunchentoot-vhost/hunchentoot-vhost-0.2.ebuild
index 20c7bf9..6a6584f 100644
--- a/dev-lisp/hunchentoot-vhost/hunchentoot-vhost-0.2.ebuild
+++ b/dev-lisp/hunchentoot-vhost/hunchentoot-vhost-0.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2 eutils
 



[gentoo-commits] proj/lisp:master commit in: dev-lisp/hunchentoot-cgi/

2016-12-04 Thread José María Alonso
commit: 63b06b91eaa8cb05e00a8ba9bacc5036aafbf6c9
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 13:47:46 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 13:47:46 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=63b06b91

dev-lisp/hunchentoot-cgi: Updates header

 dev-lisp/hunchentoot-cgi/hunchentoot-cgi-0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/hunchentoot-cgi/hunchentoot-cgi-0.2.ebuild 
b/dev-lisp/hunchentoot-cgi/hunchentoot-cgi-0.2.ebuild
index a41e595..d794fe0 100644
--- a/dev-lisp/hunchentoot-cgi/hunchentoot-cgi-0.2.ebuild
+++ b/dev-lisp/hunchentoot-cgi/hunchentoot-cgi-0.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2 eutils
 



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

2016-12-04 Thread Lars Wendler
commit: c3d3bdc215881e2712843708c42978b7bac96ba9
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Dec  4 16:06:54 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Dec  4 16:09:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d3bdc2

app-shells/bash: Revbump to add popd offset overflow fix to bash-4.3 (#600174).

Package-Manager: portage-2.3.2

 app-shells/bash/bash-4.3_p48-r1.ebuild | 253 +
 1 file changed, 253 insertions(+)

diff --git a/app-shells/bash/bash-4.3_p48-r1.ebuild 
b/app-shells/bash/bash-4.3_p48-r1.ebuild
new file mode 100644
index ..96ab004
--- /dev/null
+++ b/app-shells/bash/bash-4.3_p48-r1.ebuild
@@ -0,0 +1,253 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils flag-o-matic toolchain-funcs multilib
+
+# Official patchlevel
+# See ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/
+PLEVEL=${PV##*_p}
+MY_PV=${PV/_p*}
+MY_PV=${MY_PV/_/-}
+MY_P=${PN}-${MY_PV}
+[[ ${PV} != *_p* ]] && PLEVEL=0
+patches() {
+   local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
+   [[ ${plevel} -eq 0 ]] && return 1
+   eval set -- {1..${plevel}}
+   set -- $(printf "${pn}${pv/\.}-%03d " "$@")
+   if [[ ${opt} == -s ]] ; then
+   echo "${@/#/${DISTDIR}/}"
+   else
+   local u
+   for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
+   printf "${u}/${pn}-${pv}-patches/%s " "$@"
+   done
+   fi
+}
+
+# The version of readline this bash normally ships with.
+READLINE_VER="6.3"
+
+DESCRIPTION="The standard GNU Bourne again shell"
+HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html;
+SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
+[[ ${PV} == *_rc* ]] && SRC_URI+=" ftp://ftp.cwru.edu/pub/bash/${MY_P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline"
+
+DEPEND=">=sys-libs/ncurses-5.2-r2:0=
+   readline? ( >=sys-libs/readline-${READLINE_VER}:0= )
+   nls? ( virtual/libintl )"
+RDEPEND="${DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: app-shells/bash/, app-shells/bash/files/

2016-12-04 Thread Lars Wendler
commit: 6a35e4b98136e1aee0565435a9a039ffcbb7b8ef
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Dec  4 16:09:29 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Dec  4 16:09:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a35e4b9

app-shells/bash: Removed old.

Package-Manager: portage-2.3.2

 app-shells/bash/bash-4.3_p46-r1.ebuild | 254 -
 .../bash/files/bash-4.3-prompt-string-comsub.patch | 118 --
 2 files changed, 372 deletions(-)

diff --git a/app-shells/bash/bash-4.3_p46-r1.ebuild 
b/app-shells/bash/bash-4.3_p46-r1.ebuild
deleted file mode 100644
index 5234083..
--- a/app-shells/bash/bash-4.3_p46-r1.ebuild
+++ /dev/null
@@ -1,254 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit eutils flag-o-matic toolchain-funcs multilib
-
-# Official patchlevel
-# See ftp://ftp.cwru.edu/pub/bash/bash-4.3-patches/
-PLEVEL=${PV##*_p}
-MY_PV=${PV/_p*}
-MY_PV=${MY_PV/_/-}
-MY_P=${PN}-${MY_PV}
-[[ ${PV} != *_p* ]] && PLEVEL=0
-patches() {
-   local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
-   [[ ${plevel} -eq 0 ]] && return 1
-   eval set -- {1..${plevel}}
-   set -- $(printf "${pn}${pv/\.}-%03d " "$@")
-   if [[ ${opt} == -s ]] ; then
-   echo "${@/#/${DISTDIR}/}"
-   else
-   local u
-   for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
-   printf "${u}/${pn}-${pv}-patches/%s " "$@"
-   done
-   fi
-}
-
-# The version of readline this bash normally ships with.
-READLINE_VER="6.3"
-
-DESCRIPTION="The standard GNU Bourne again shell"
-HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html;
-SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
-[[ ${PV} == *_rc* ]] && SRC_URI+=" ftp://ftp.cwru.edu/pub/bash/${MY_P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
-IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline"
-
-DEPEND=">=sys-libs/ncurses-5.2-r2:0=
-   readline? ( >=sys-libs/readline-${READLINE_VER}:0= )
-   nls? ( virtual/libintl )"
-RDEPEND="${DEPEND}
-   !http://seclists.org/oss-sec/2016/q3/538
-https://bugs.gentoo.org/594496
-
-*** ../bash-4.3-patched/parse.y2015-08-13 15:11:54.0 -0400
 parse.y2016-03-07 15:44:14.0 -0500
-***
-*** 5259,5263 
-int result_size, result_index;
-int c, n, i;
-!   char *temp, octal_string[4];
-struct tm *tm;  
-time_t the_time;
 5259,5263 
-int result_size, result_index;
-int c, n, i;
-!   char *temp, *t_host, octal_string[4];
-struct tm *tm;  
-time_t the_time;
-***
-*** 5407,5411 
-   case 's':
- temp = base_pathname (shell_name);
-!temp = savestring (temp);
- goto add_string;
-  
 5407,5415 
-   case 's':
- temp = base_pathname (shell_name);
-!/* Try to quote anything the user can set in the file system */
-!if (promptvars || posixly_correct)
-!  temp = sh_backslash_quote_for_double_quotes (temp);
-!else
-!  temp = savestring (temp);
- goto add_string;
-  
-***
-*** 5497,5503 
-   case 'h':
-   case 'H':
-!temp = savestring (current_host_name);
-!if (c == 'h' && (t = (char *)strchr (temp, '.')))
-   *t = '\0';
- goto add_string;
-  
 5501,5515 
-   case 'h':
-   case 'H':
-!t_host = savestring (current_host_name);
-!if (c == 'h' && (t = (char *)strchr (t_host, '.')))
-   *t = '\0';
-+if (promptvars || posixly_correct)
-+  /* Make sure that expand_prompt_string is called with a
-+ second argument of Q_DOUBLE_QUOTES if we use this
-+ function here. */
-+  temp = sh_backslash_quote_for_double_quotes (t_host);
-+else
-+  temp = savestring (t_host);
-+free (t_host);
- goto add_string;
-  
-*** ../bash-4.3-patched/y.tab.c2015-08-13 15:11:54.0 -0400
 y.tab.c2016-03-07 15:44:14.0 -0500
-***
-*** 7571,7575 
-int result_size, result_index;
-int c, n, i;
-!   char *temp, octal_string[4];
-struct tm *tm;  
-time_t the_time;
 7571,7575 
-int result_size, result_index;
-int c, n, i;
-!   char *temp, *t_host, octal_string[4];
-struct tm *tm;  
-time_t the_time;
-***
-*** 7719,7723 
-   case 's':
- temp = base_pathname (shell_name);
-!temp = savestring (temp);
- goto add_string;
-  

[gentoo-commits] proj/kde:master commit in: kde-apps/kldap/files/, kde-apps/kldap/

2016-12-04 Thread Michael Palimaka
commit: ff5c9fd03609c296e1e8a66aad2649756af089dc
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Dec  3 17:52:39 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Dec  3 22:37:03 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ff5c9fd0

kde-apps/kldap: Drop unused DEPEND

Package-Manager: portage-2.3.0

 .../kldap/files/kldap-16.11.90-unused-dep.patch| 35 ++
 kde-apps/kldap/kldap-16.12.49..ebuild  |  3 +-
 2 files changed, 37 insertions(+), 1 deletion(-)

diff --git a/kde-apps/kldap/files/kldap-16.11.90-unused-dep.patch 
b/kde-apps/kldap/files/kldap-16.11.90-unused-dep.patch
new file mode 100644
index 000..b9a8653
--- /dev/null
+++ b/kde-apps/kldap/files/kldap-16.11.90-unused-dep.patch
@@ -0,0 +1,35 @@
+commit 30142edcebfd8d294fae205b2fc919d9586a003d
+Author: David Faure 
+Date:   Sat Nov 26 20:31:53 2016 +0100
+
+Nothing in here requires kmbox, remove dependency.
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 6cde803..c8ea9a5 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -22,11 +22,9 @@ include(ECMQtDeclareLoggingCategory)
+ 
+ set(KLDAP_LIB_VERSION ${PIM_VERSION})
+-set(MBOXLIB_VERSION "5.3.90")
+ 
+ find_package(KF5KIO ${KF5_VERSION} CONFIG REQUIRED)
+ find_package(KF5I18n ${KF5_VERSION} CONFIG REQUIRED)
+ find_package(KF5DocTools ${KF5_VERSION} CONFIG REQUIRED)
+-find_package(KF5Mbox ${MBOXLIB_VERSION} CONFIG REQUIRED)
+ add_definitions("-DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII")
+ 
+ 
+diff --git a/kioslave/src/ldap/CMakeLists.txt 
b/kioslave/src/ldap/CMakeLists.txt
+index 43c32bb..be686a9 100644
+--- a/kioslave/src/ldap/CMakeLists.txt
 b/kioslave/src/ldap/CMakeLists.txt
+@@ -4,7 +4,7 @@ ecm_qt_declare_logging_category(kio_ldap_PART_SRCS HEADER 
kldap_debug.h IDENTIFI
+ 
+ add_library(kio_ldap MODULE ${kio_ldap_PART_SRCS})
+ 
+-target_link_libraries(kio_ldap KF5::KIOCore KF5::I18n KF5::Ldap KF5::Mbox)
++target_link_libraries(kio_ldap KF5::KIOCore KF5::I18n KF5::Ldap)
+ set_target_properties(kio_ldap PROPERTIES OUTPUT_NAME "ldap")
+ install(TARGETS kio_ldap  DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf5/kio)
+ 

diff --git a/kde-apps/kldap/kldap-16.12.49..ebuild 
b/kde-apps/kldap/kldap-16.12.49..ebuild
index 3a311f2..694bdfa 100644
--- a/kde-apps/kldap/kldap-16.12.49..ebuild
+++ b/kde-apps/kldap/kldap-16.12.49..ebuild
@@ -18,7 +18,6 @@ DEPEND="
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
$(add_frameworks_dep kwidgetsaddons)
-   $(add_kdeapps_dep kmbox)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
net-nds/openldap
@@ -28,6 +27,8 @@ RDEPEND="${DEPEND}
!kde-apps/kdepim-kioslaves
 "
 
+PATCHES=( "${FILESDIR}/${PN}-16.11.90-unused-dep.patch" )
+
 src_prepare() {
kde5_src_prepare
 



[gentoo-commits] proj/kde:master commit in: kde-apps/kdeedu-meta/

2016-12-04 Thread Michael Palimaka
commit: 907971de5a41d8fafb2911baac0d98a9ea682ffc
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Dec  3 14:44:42 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Dec  3 22:30:44 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=907971de

kde-apps/kdeedu-meta: Drop kde-apps/kde4-l10n

Ebuild no longer pulls legacy packages.

Package-Manager: portage-2.3.0

 kde-apps/kdeedu-meta/kdeedu-meta-16.11.90.ebuild  | 5 +
 kde-apps/kdeedu-meta/kdeedu-meta-16.12.49..ebuild | 5 +
 kde-apps/kdeedu-meta/kdeedu-meta-.ebuild  | 5 +
 3 files changed, 3 insertions(+), 12 deletions(-)

diff --git a/kde-apps/kdeedu-meta/kdeedu-meta-16.11.90.ebuild 
b/kde-apps/kdeedu-meta/kdeedu-meta-16.11.90.ebuild
index 8072cfd..cda94c9 100644
--- a/kde-apps/kdeedu-meta/kdeedu-meta-16.11.90.ebuild
+++ b/kde-apps/kdeedu-meta/kdeedu-meta-16.11.90.ebuild
@@ -40,8 +40,5 @@ RDEPEND="
$(add_kdeapps_dep parley)
$(add_kdeapps_dep rocs)
$(add_kdeapps_dep step)
-   nls? (
-   $(add_kdeapps_dep kde-l10n '' ${L10N_MINIMAL})
-   $(add_kdeapps_dep kde4-l10n '' ${L10N_MINIMAL})
-   )
+   nls? ( $(add_kdeapps_dep kde-l10n '' ${L10N_MINIMAL}) )
 "

diff --git a/kde-apps/kdeedu-meta/kdeedu-meta-16.12.49..ebuild 
b/kde-apps/kdeedu-meta/kdeedu-meta-16.12.49..ebuild
index 6c26227..5f357b9 100644
--- a/kde-apps/kdeedu-meta/kdeedu-meta-16.12.49..ebuild
+++ b/kde-apps/kdeedu-meta/kdeedu-meta-16.12.49..ebuild
@@ -40,8 +40,5 @@ RDEPEND="
$(add_kdeapps_dep parley)
$(add_kdeapps_dep rocs)
$(add_kdeapps_dep step)
-   nls? (
-   $(add_kdeapps_dep kde-l10n '' ${L10N_MINIMAL})
-   $(add_kdeapps_dep kde4-l10n '' ${L10N_MINIMAL})
-   )
+   nls? ( $(add_kdeapps_dep kde-l10n '' ${L10N_MINIMAL}) )
 "

diff --git a/kde-apps/kdeedu-meta/kdeedu-meta-.ebuild 
b/kde-apps/kdeedu-meta/kdeedu-meta-.ebuild
index 6c26227..5f357b9 100644
--- a/kde-apps/kdeedu-meta/kdeedu-meta-.ebuild
+++ b/kde-apps/kdeedu-meta/kdeedu-meta-.ebuild
@@ -40,8 +40,5 @@ RDEPEND="
$(add_kdeapps_dep parley)
$(add_kdeapps_dep rocs)
$(add_kdeapps_dep step)
-   nls? (
-   $(add_kdeapps_dep kde-l10n '' ${L10N_MINIMAL})
-   $(add_kdeapps_dep kde4-l10n '' ${L10N_MINIMAL})
-   )
+   nls? ( $(add_kdeapps_dep kde-l10n '' ${L10N_MINIMAL}) )
 "



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

2016-12-04 Thread Tobias Klausmann
commit: 5b82896dd033562a9d2c94d63180de8f8351b7c7
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Dec  4 16:52:27 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Dec  4 16:52:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b82896d

sys-libs/ntdb-1.0-r1: keyworded for ~alpha

Gentoo-Bug: 591304

 sys-libs/ntdb/ntdb-1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/ntdb/ntdb-1.0-r1.ebuild b/sys-libs/ntdb/ntdb-1.0-r1.ebuild
index 736a6f9..d8835f4 100644
--- a/sys-libs/ntdb/ntdb-1.0-r1.ebuild
+++ b/sys-libs/ntdb/ntdb-1.0-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://samba.org/ftp/tdb/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="python"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



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

2016-12-04 Thread Tobias Klausmann
commit: 35f0df4ff269907e79eee13b3d99ca275459b0cd
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Dec  4 16:52:20 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Dec  4 16:52:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35f0df4f

sys-libs/nss_wrapper-1.1.3-r0: keyworded for ~alpha

Gentoo-Bug: 591304

 sys-libs/nss_wrapper/nss_wrapper-1.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/nss_wrapper/nss_wrapper-1.1.3.ebuild 
b/sys-libs/nss_wrapper/nss_wrapper-1.1.3.ebuild
index dae0b00..757a254 100644
--- a/sys-libs/nss_wrapper/nss_wrapper-1.1.3.ebuild
+++ b/sys-libs/nss_wrapper/nss_wrapper-1.1.3.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://cwrap.org/nss_wrapper.html;
 SRC_URI="https://ftp.samba.org/pub/cwrap/${P}.tar.gz;
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="test"
 
 DEPEND=""



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

2016-12-04 Thread Tobias Klausmann
commit: 75b170549fe05545b3cee79f0a5cfe3c459556f8
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Dec  4 16:52:27 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Dec  4 16:52:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75b17054

net-libs/socket_wrapper-1.1.7-r0: keyworded for ~alpha

Gentoo-Bug: 591304

 net-libs/socket_wrapper/socket_wrapper-1.1.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/socket_wrapper/socket_wrapper-1.1.7.ebuild 
b/net-libs/socket_wrapper/socket_wrapper-1.1.7.ebuild
index fa15b39..f2e068d 100644
--- a/net-libs/socket_wrapper/socket_wrapper-1.1.7.ebuild
+++ b/net-libs/socket_wrapper/socket_wrapper-1.1.7.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://cwrap.org/socket_wrapper.html;
 SRC_URI="https://ftp.samba.org/pub/cwrap/${P}.tar.gz;
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="test"
 
 DEPEND=""



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

2016-12-04 Thread Tobias Klausmann
commit: 0b0b93aee4ab4a488a94bfd5ad815a800bdc775e
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Dec  4 16:52:28 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Dec  4 16:52:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b0b93ae

sys-libs/uid_wrapper-1.2.1-r0: keyworded for ~alpha

Gentoo-Bug: 591304

 sys-libs/uid_wrapper/uid_wrapper-1.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/uid_wrapper/uid_wrapper-1.2.1.ebuild 
b/sys-libs/uid_wrapper/uid_wrapper-1.2.1.ebuild
index 2ba69e7..8614718 100644
--- a/sys-libs/uid_wrapper/uid_wrapper-1.2.1.ebuild
+++ b/sys-libs/uid_wrapper/uid_wrapper-1.2.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="ftp://ftp.samba.org/pub/cwrap/${P}.tar.gz
https://ftp.samba.org/pub/cwrap/${P}.tar.gz;
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="test"
 
 DEPEND=""



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

2016-12-04 Thread Tobias Klausmann
commit: 6ad65e76330c575548cb26eea47fde480cfcb58b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Dec  4 16:52:27 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Dec  4 16:52:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad65e76

net-fs/samba-4.2.11-r0: keyworded for ~alpha

Gentoo-Bug: 591304

 net-fs/samba/samba-4.2.11.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-fs/samba/samba-4.2.11.ebuild b/net-fs/samba/samba-4.2.11.ebuild
index f921a9d..fa019ce 100644
--- a/net-fs/samba/samba-4.2.11.ebuild
+++ b/net-fs/samba/samba-4.2.11.ebuild
@@ -16,8 +16,8 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz

https://dev.gentoo.org/~polynomial-c/samba-disable-python-patches-4.2.9.tar.xz;
-KEYWORDS="amd64 arm hppa ia64 ppc ppc64 sparc x86"
-[[ ${PV} = *_rc* ]] && KEYWORDS="arm hppa ppc64"
+KEYWORDS="~alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
+[[ ${PV} = *_rc* ]] && KEYWORDS="~alpha arm hppa ppc64"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="http://www.samba.org/;



[gentoo-commits] repo/gentoo:master commit in: x11-themes/gnome-icon-theme-extras/

2016-12-04 Thread Pacho Ramos
commit: afbe83979eaa0430330c4596a92caae70714d810
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 10:31:14 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 10:31:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afbe8397

x11-themes/gnome-icon-theme-extras: Drop old

Package-Manager: portage-2.3.2

 x11-themes/gnome-icon-theme-extras/Manifest|  1 -
 .../gnome-icon-theme-extras-3.6.2.ebuild   | 37 --
 2 files changed, 38 deletions(-)

diff --git a/x11-themes/gnome-icon-theme-extras/Manifest 
b/x11-themes/gnome-icon-theme-extras/Manifest
index 6cd679e..c4a757b 100644
--- a/x11-themes/gnome-icon-theme-extras/Manifest
+++ b/x11-themes/gnome-icon-theme-extras/Manifest
@@ -1,2 +1 @@
 DIST gnome-icon-theme-extras-3.12.0.tar.xz 1729576 SHA256 
4eec6cea8a7b09c4ed6ebab1a3b42539b9c61a53bec4b8872e774611cc619608 SHA512 
e74b1b31cdc6bc2d9410c874b8e0891521a657cd3cc86c391f58709fa2d35d9e983bd50faaca1f1378a11d716502143bc2b41942a9cdcd3caa2280429bb3f6f5
 WHIRLPOOL 
386b24c827dae192f87e58a42919fac94d52f112be1b497e5dff1c75cf9af8355a7116971474ef672645ebb98d04928050f43f4735c5c7a01ac9a5af8241e149
-DIST gnome-icon-theme-extras-3.6.2.tar.xz 1668040 SHA256 
93df40c85ebc42232a4d8e45ca507754b8e1271e797bbcdaded52bd03ec7 SHA512 
51d4bc256b9b72cf9f72067e8b5e7e3c95e1026b83af1ce092390299d220b73fdb8ef9b2f2f4946b97d594ff22925e574e84095592241eeb3b14fa95e4187cba
 WHIRLPOOL 
339f5816a0d50f1baa247859c1322a6c1d6ce9280c9ee286f7929725ca73007b61fe6f442836f463f8bd072f056a39c91f71c92c3bc2c45434252a2ffd982cd3

diff --git 
a/x11-themes/gnome-icon-theme-extras/gnome-icon-theme-extras-3.6.2.ebuild 
b/x11-themes/gnome-icon-theme-extras/gnome-icon-theme-extras-3.6.2.ebuild
deleted file mode 100644
index 8deb607..
--- a/x11-themes/gnome-icon-theme-extras/gnome-icon-theme-extras-3.6.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="no"
-
-inherit gnome2
-
-DESCRIPTION="Extra GNOME icons for specific devices and file types"
-HOMEPAGE="https://www.gnome.org/ 
https://git.gnome.org/browse/gnome-icon-theme-extras/;
-
-LICENSE="CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE=""
-
-RDEPEND=">=x11-themes/hicolor-icon-theme-0.10"
-DEPEND="${RDEPEND}
-   >=x11-misc/icon-naming-utils-0.8.7
-   virtual/pkgconfig"
-
-# This ebuild does not install any binaries
-RESTRICT="binchecks strip"
-# FIXME: double check potential LINGUAS problem
-
-src_prepare() {
-   DOCS="AUTHORS README NEWS"
-   G2CONF="${G2CONF} --enable-icon-mapping"
-
-   gnome2_src_prepare
-
-   # Always use pre-rendered icons
-   # FIXME: changing configure.ac triggers maintainer-mode rebuild
-   sed -e 's/"x$allow_rendering" = "xyes"/"x$allow_rendering" = 
"xdonotwant"/' \
-   -i configure || die
-}



[gentoo-commits] repo/gentoo:master commit in: media-video/minitube/, media-video/minitube/files/

2016-12-04 Thread Pacho Ramos
commit: 496dad02a26292e868a98d98422fd739e6ff30d2
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 10:37:53 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 10:37:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=496dad02

media-video/minitube: Drop old

Package-Manager: portage-2.3.2

 media-video/minitube/Manifest  |  2 -
 .../minitube/files/minitube-1.9-gcc47.patch| 12 ---
 .../files/minitube-2.0-disable-updates.patch   | 16 
 .../files/minitube-2.4-disable-updates.patch   | 13 ---
 media-video/minitube/minitube-2.0.ebuild   | 60 --
 media-video/minitube/minitube-2.4.ebuild   | 92 -
 media-video/minitube/minitube-2.5.2.ebuild | 96 --
 7 files changed, 291 deletions(-)

diff --git a/media-video/minitube/Manifest b/media-video/minitube/Manifest
index 8e5a612..a064b3c 100644
--- a/media-video/minitube/Manifest
+++ b/media-video/minitube/Manifest
@@ -1,3 +1 @@
-DIST minitube-2.0.tar.gz 713577 SHA256 
1ba1dd7725e6e0c92653fdee7bcfa4b833346d2ef4c091d94b181b60bb592554 SHA512 
f08f49549486f22d6156aa4344fd0698e03b0fcf669530010a648467cd3da1edbe6ee9e7c7578c69c7f410a03afe2e5c25bb84e6e1dc70c6534210566789f81e
 WHIRLPOOL 
415d5b17a0862aa74c09a4950be43cd78b5ab5f26c7d0bd5d4c4b78d97989b181ecdc86955f843348b52fc582346fbae32d664f43e5ba76fcc995a59c572776b
-DIST minitube-2.4.tar.gz 984265 SHA256 
1d8a427a4120d623c689969d92904bf66bf7d3edafcb0f6f9eb7f24d6db39c7b SHA512 
45a90322540a281b337511af5e52a25bb5d908d3e37b6d7d4a068a2cb0d598095b6a312f862c7043851ceeda63c66944213646ba154ae505229da7fbe48251dc
 WHIRLPOOL 
932ebcbf2397ceba78af6823f6eeb56edbf9b4c58dfd15218d10572d6a47110867b969b4711a1bcc0a00d3d47361ddec3c98fea7f69d5b56db40b842dba57b97
 DIST minitube-2.5.2.tar.gz 1063794 SHA256 
63678bf153e77e8cdaf6b43bb9a7bf2c5694c62698c3236f1a1133494362d6b5 SHA512 
4001ea95e6d3b541e9a8a2555830238f6e3a0b4749566dfd67ae48fdc6102ec77a38e162e04fb2637cc5ff2b3dccdca541119531302332ffa3b90d9db8809284
 WHIRLPOOL 
affb33b2a2b1dea771452c33b4167e0e250a4f5869080b6c4426c372303d62e1f220f62fc64f0d087a75940869042712678a523224cf250247de2bbda46b4248

diff --git a/media-video/minitube/files/minitube-1.9-gcc47.patch 
b/media-video/minitube/files/minitube-1.9-gcc47.patch
deleted file mode 100644
index 4589eb5..
--- a/media-video/minitube/files/minitube-1.9-gcc47.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Index: minitube/src/qtsingleapplication/qtlocalpeer.cpp
-===
 minitube.orig/src/qtsingleapplication/qtlocalpeer.cpp
-+++ minitube/src/qtsingleapplication/qtlocalpeer.cpp
-@@ -58,6 +58,7 @@ static PProcessIdToSessionId pProcessIdT
- #endif
- #if defined(Q_OS_UNIX)
- #include 
-+#include 
- #endif
- 
- namespace QtLP_Private {

diff --git a/media-video/minitube/files/minitube-2.0-disable-updates.patch 
b/media-video/minitube/files/minitube-2.0-disable-updates.patch
deleted file mode 100644
index 0117fd9..
--- a/media-video/minitube/files/minitube-2.0-disable-updates.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-https://bugs.gentoo.org/show_bug.cgi?id=455976
-
-Index: minitube/src/mainwindow.cpp
-===
 minitube.orig/src/mainwindow.cpp
-+++ minitube/src/mainwindow.cpp
-@@ -145,9 +145,6 @@ MainWindow::MainWindow() :
- mouseTimer->setInterval(5000);
- mouseTimer->setSingleShot(true);
- connect(mouseTimer, SIGNAL(timeout()), SLOT(hideMouse()));
--
--QTimer::singleShot(0, this, SLOT(checkForUpdate()));
--
- }
- 
- MainWindow::~MainWindow() {

diff --git a/media-video/minitube/files/minitube-2.4-disable-updates.patch 
b/media-video/minitube/files/minitube-2.4-disable-updates.patch
deleted file mode 100644
index 0c18317..
--- a/media-video/minitube/files/minitube-2.4-disable-updates.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: minitube-2.4/src/mainwindow.cpp
-===
 minitube-2.4.orig/src/mainwindow.cpp
-+++ minitube-2.4/src/mainwindow.cpp
-@@ -206,8 +206,6 @@ void MainWindow::lazyInit() {
- connect(mouseTimer, SIGNAL(timeout()), SLOT(hideMouse()));
- 
- JsFunctions::instance();
--
--checkForUpdate();
- }
- 
- void MainWindow::changeEvent(QEvent* event) {

diff --git a/media-video/minitube/minitube-2.0.ebuild 
b/media-video/minitube/minitube-2.0.ebuild
deleted file mode 100644
index 5a2feb6..
--- a/media-video/minitube/minitube-2.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PLOCALES="ar ca ca_ES da de_DE el en es es_AR es_ES fi fi_FI fr he_IL hr hu
-ia it jv nl pl pl_PL pt_BR ro ru sk sl tr zh_CN"
-
-inherit l10n qt4-r2
-
-DESCRIPTION="Qt4 YouTube Client"
-HOMEPAGE="http://flavio.tordini.org/minitube;

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

2016-12-04 Thread Pacho Ramos
commit: a76e48a1b9419e78ce6e6949b4b3e8ac376fd9a9
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 10:36:53 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 10:36:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a76e48a1

media-video/minitube: amd64/x86 stable, bug #601198

Package-Manager: portage-2.3.2

 media-video/minitube/minitube-2.5.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/minitube/minitube-2.5.2-r1.ebuild 
b/media-video/minitube/minitube-2.5.2-r1.ebuild
index 7e4078f..8ed4b9c 100644
--- a/media-video/minitube/minitube-2.5.2-r1.ebuild
+++ b/media-video/minitube/minitube-2.5.2-r1.ebuild
@@ -16,7 +16,7 @@ ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="debug download"
 
 DEPEND="dev-qt/qtgui:5[accessibility]



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

2016-12-04 Thread Pacho Ramos
commit: af7600db15fc13e225d8f2b1316cf4494126bded
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 10:32:56 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 10:32:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af7600db

package.mask: gnome-icon-theme-extras is still needed, bug #50

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

diff --git a/profiles/package.mask b/profiles/package.mask
index d87ee4d..e044cc1 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -179,11 +179,6 @@ www-apps/bitten
 media-sound/christine
 
 # Pacho Ramos  (27 Nov 2016)
-# Nothing needs this obsolete package anymore, bug #50, removal in a
-# month.
-x11-themes/gnome-icon-theme-extras
-
-# Pacho Ramos  (27 Nov 2016)
 # Relies on obsolete and vulnerable webkit-gtk versions, bug #600898
 www-client/vimb
 



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile/

2016-12-04 Thread Pacho Ramos
commit: 0e3a34942880a9a37e93c5afffda74eedcbcbc90
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 12:05:38 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 12:09:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e3a3494

dev-scheme/guile: Drop texmacs hack from guile-2 as it's not wanted (and 
neither needed for guile2 as texmacs is not using it), see bug #597184

Package-Manager: portage-2.3.2

 dev-scheme/guile/guile-2.0.13-r1.ebuild | 77 +
 1 file changed, 77 insertions(+)

diff --git a/dev-scheme/guile/guile-2.0.13-r1.ebuild 
b/dev-scheme/guile/guile-2.0.13-r1.ebuild
new file mode 100644
index ..9f02846
--- /dev/null
+++ b/dev-scheme/guile/guile-2.0.13-r1.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit flag-o-matic autotools
+
+DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions"
+HOMEPAGE="https://www.gnu.org/software/guile/;
+SRC_URI="mirror://gnu/guile/${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+LICENSE="LGPL-3+"
+IUSE="debug debug-malloc +deprecated +networking +nls +regex +threads" # 
upstream recommended +networking +nls
+
+# emacs useflag removal not working
+
+RDEPEND="
+   >=dev-libs/boehm-gc-7.0[threads?]
+   dev-libs/gmp:=
+   virtual/libffi
+   dev-libs/libltdl:=
+   dev-libs/libunistring:0=
+   sys-devel/libtool
+   sys-libs/ncurses:0=
+   sys-libs/readline:0="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   sys-apps/texinfo
+   sys-devel/gettext"
+
+SLOT="12/22" # subslot is soname version
+MAJOR="2.0"
+
+DOCS=( GUILE-VERSION HACKING README )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   # see bug #178499
+   filter-flags -ftree-vectorize
+
+   econf \
+   --disable-error-on-warning \
+   --disable-rpath \
+   --enable-posix \
+   --without-libgmp-prefix \
+   --without-libiconv-prefix \
+   --without-libintl-prefix \
+   --without-libltdl-prefix \
+   --without-libreadline-prefix \
+   --without-libunistring-prefix \
+   $(use_enable debug guile-debug) \
+   $(use_enable debug-malloc) \
+   $(use_enable deprecated) \
+   $(use_enable networking) \
+   $(use_enable nls) \
+   $(use_enable regex) \
+   $(use_with threads)
+}
+
+src_install() {
+   default
+
+   # From Novell
+   #   https://bugzilla.novell.com/show_bug.cgi?id=874028#c0
+   dodir /usr/share/gdb/auto-load/$(get_libdir)
+   mv "${ED}"/usr/$(get_libdir)/libguile-*-gdb.scm 
"${ED}"/usr/share/gdb/auto-load/$(get_libdir) || die
+
+   # necessary for registering slib, see bug 206896
+   keepdir /usr/share/guile/site
+
+   # Dark magic necessary for some deps
+   dosym libguile-2.0.so /usr/$(get_libdir)/libguile.so
+}



[gentoo-commits] proj/lisp:master commit in: dev-lisp/hunchentoot-auth/

2016-12-04 Thread José María Alonso
commit: 7b25341b518543d3dda07753fcfa4a7b9c9e7479
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 13:42:22 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 13:42:22 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=7b25341b

dev-lisp/hunchentoot-auth: Updates header

 dev-lisp/hunchentoot-auth/hunchentoot-auth-0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/hunchentoot-auth/hunchentoot-auth-0.2.ebuild 
b/dev-lisp/hunchentoot-auth/hunchentoot-auth-0.2.ebuild
index 672dcbe..28d3851 100644
--- a/dev-lisp/hunchentoot-auth/hunchentoot-auth-0.2.ebuild
+++ b/dev-lisp/hunchentoot-auth/hunchentoot-auth-0.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2 eutils
 



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

2016-12-04 Thread Davide Pesavento
commit: 57f067c2d27364b6cef3d17d5fdd35297529f7db
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Dec  4 15:31:30 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Dec  4 15:31:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57f067c2

qt5-build.eclass: drop support for Qt < 5.6

 eclass/qt5-build.eclass | 32 +---
 1 file changed, 9 insertions(+), 23 deletions(-)

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index 012918f..7e9bf41 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -62,11 +62,7 @@ else
LICENSE="|| ( LGPL-2.1 LGPL-3 ) FDL-1.3"
 fi
 
-if [[ ${QT5_MINOR_VERSION} -ge 6 ]]; then
-   SLOT=5/$(get_version_component_range 1-2)
-else
-   SLOT=5
-fi
+SLOT=5/$(get_version_component_range 1-2)
 
 case ${PV} in
5.)
@@ -148,14 +144,8 @@ qt5-build_src_unpack() {
fi
if [[ $(gcc-major-version) -lt 4 ]] || \
   [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 
${min_gcc4_minor_version} ]]; then
-   if [[ ${QT5_MINOR_VERSION} -ge 6 ]]; then
-   eerror "GCC version 4.${min_gcc4_minor_version} 
or later is required to build this package"
-   die "GCC 4.${min_gcc4_minor_version} or later 
required"
-   else
-   ewarn
-   ewarn "Using a GCC version lower than 
4.${min_gcc4_minor_version} is not supported"
-   ewarn
-   fi
+   eerror "GCC version 4.${min_gcc4_minor_version} or 
later is required to build this package"
+   die "GCC 4.${min_gcc4_minor_version} or later required"
fi
fi
 
@@ -532,7 +522,7 @@ qt5_base_configure() {
 
# no need to forcefully build host tools in optimized mode,
# just follow the overall debug/release build type
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-optimized-tools)
+   -no-optimized-tools
 
# licensing stuff
-opensource -confirm-license
@@ -555,7 +545,7 @@ qt5_base_configure() {
-no-sql-psql -no-sql-sqlite -no-sql-sqlite2 -no-sql-tds
 
# ensure the QML debugging support (qmltooling) is built in 
qtdeclarative
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -qml-debug)
+   -qml-debug
 
# MIPS DSP instruction set extensions
$(is-flagq -mno-dsp   && echo -no-mips_dsp)
@@ -572,8 +562,7 @@ qt5_base_configure() {
 
# disable everything to prevent automagic deps (part 1)
-no-mtdev
-   -no-journald
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-syslog)
+   -no-journald -no-syslog
-no-libpng -no-libjpeg
-no-freetype -no-harfbuzz
-no-openssl -no-libproxy
@@ -614,7 +603,7 @@ qt5_base_configure() {
-no-pch
 
# link-time code generation is not something we want to enable 
by default
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-ltcg)
+   -no-ltcg
 
# reduced relocations cause major breakage on at least arm and 
ppc, so
# don't specify anything and let the configure figure out if 
they are
@@ -625,10 +614,7 @@ qt5_base_configure() {
#-use-gold-linker
 
# disable all platform plugins by default, override in qtgui
-   -no-xcb -no-eglfs -no-kms
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-gbm)
-   -no-directfb -no-linuxfb
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-mirclient)
+   -no-xcb -no-eglfs -no-kms -no-gbm -no-directfb -no-linuxfb 
-no-mirclient
 
# disable undocumented X11-related flags, override in qtgui
# (not shown in ./configure -help output)
@@ -656,7 +642,7 @@ qt5_base_configure() {
 
# respect system proxies by default: it's the most natural
# setting, and it'll become the new upstream default in 5.8
-   $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -system-proxies)
+   -system-proxies
 
# do not build with -Werror
-no-warnings-are-errors



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

2016-12-04 Thread Lars Wendler
commit: ccbdd1cfc3f3cfa322d438a90d783e5b9bac763b
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Dec  4 15:45:08 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Dec  4 15:45:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccbdd1cf

sys-libs/ncurses: Stable for amd64 and x86 (bug #594338).

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="amd64,x86"

 sys-libs/ncurses/ncurses-6.0-r1.ebuild | 2 +-
 sys-libs/ncurses/ncurses-6.0.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-libs/ncurses/ncurses-6.0-r1.ebuild 
b/sys-libs/ncurses/ncurses-6.0-r1.ebuild
index 0141b3b..0fb9c34 100644
--- a/sys-libs/ncurses/ncurses-6.0-r1.ebuild
+++ b/sys-libs/ncurses/ncurses-6.0-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://gnu/ncurses/${MY_P}.tar.gz"
 LICENSE="MIT"
 # The subslot reflects the SONAME.
 SLOT="0/6"
-KEYWORDS="alpha ~amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="ada +cxx debug doc gpm minimal profile static-libs test threads tinfo 
trace unicode"
 
 DEPEND="gpm? ( sys-libs/gpm[${MULTILIB_USEDEP}] )"

diff --git a/sys-libs/ncurses/ncurses-6.0.ebuild 
b/sys-libs/ncurses/ncurses-6.0.ebuild
index d2c48a4..240e395 100644
--- a/sys-libs/ncurses/ncurses-6.0.ebuild
+++ b/sys-libs/ncurses/ncurses-6.0.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://www.gnu.org/software/ncurses/ 
http://dickey.his.com/ncurses/;
 
 LICENSE="metapackage"
 SLOT="5/6"
-KEYWORDS="alpha ~amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="ada +cxx gpm static-libs tinfo unicode"
 
 
DEPEND="sys-libs/ncurses:0/6[ada?,cxx?,gpm?,static-libs?,tinfo?,unicode?,${MULTILIB_USEDEP}]"



[gentoo-commits] proj/qt: New branch: qmake-compile

2016-12-04 Thread Michael Palimaka
commit: 
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:37:03 2016 +

New branch: qmake-compile




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

2016-12-04 Thread Michael Palimaka
commit: 11f8aaeadc56e2e7655caec587c5314373ad3388
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Dec  4 17:12:20 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 17:12:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11f8aaea

media-gfx/inkscape: restore ~arm keyword

Gentoo-bug: 601560

Package-Manager: portage-2.3.2

 media-gfx/inkscape/inkscape-0.91-r2.ebuild | 2 +-
 media-gfx/inkscape/inkscape-0.91-r3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/inkscape/inkscape-0.91-r2.ebuild 
b/media-gfx/inkscape/inkscape-0.91-r2.ebuild
index 29bf178..adfe18e 100644
--- a/media-gfx/inkscape/inkscape-0.91-r2.ebuild
+++ b/media-gfx/inkscape/inkscape-0.91-r2.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://inkscape.global.ssl.fastly.net/media/resources/file/${P}.tar.bz
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
 IUSE="cdr dia dbus exif gnome imagemagick openmp postscript inkjar jpeg latex 
lcms nls spell static-libs visio wpg"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 

diff --git a/media-gfx/inkscape/inkscape-0.91-r3.ebuild 
b/media-gfx/inkscape/inkscape-0.91-r3.ebuild
index 4941131..b1aeae5 100644
--- a/media-gfx/inkscape/inkscape-0.91-r3.ebuild
+++ b/media-gfx/inkscape/inkscape-0.91-r3.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://inkscape.global.ssl.fastly.net/media/resources/file/${P}.tar.bz
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~sparc-solaris 
~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-solaris"
 IUSE="cdr dia dbus exif gnome imagemagick openmp postscript inkjar jpeg latex"
 IUSE+=" lcms nls spell static-libs visio wpg"
 



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

2016-12-04 Thread Pacho Ramos
commit: e89ced6c4e37a27e0b32de185d3ed610278629a0
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 12:32:08 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 12:32:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e89ced6c

net-misc/hylafaxplus: Make repoman more happy

Package-Manager: portage-2.3.2

 net-misc/hylafaxplus/hylafaxplus-5.5.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/hylafaxplus/hylafaxplus-5.5.5.ebuild 
b/net-misc/hylafaxplus/hylafaxplus-5.5.5.ebuild
index 7b0d1a0..02b7b55 100644
--- a/net-misc/hylafaxplus/hylafaxplus-5.5.5.ebuild
+++ b/net-misc/hylafaxplus/hylafaxplus-5.5.5.ebuild
@@ -22,8 +22,8 @@ DEPEND="
>=sys-libs/zlib-1.1.4
app-text/ghostscript-gpl
virtual/mta
-   media-libs/tiff[jbig?]
-   virtual/jpeg
+   media-libs/tiff:0[jbig?]
+   virtual/jpeg:0
jbig? ( media-libs/jbigkit )
virtual/awk
ldap? (  net-nds/openldap )



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

2016-12-04 Thread Pacho Ramos
commit: df813437d115ebcd3c07a5a116a200b24247c14e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 12:31:27 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 12:31:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df813437

net-misc/hylafaxplus: We always need mgetty not to be built with fax USE 
(#430784 by Toralf Förster).

Package-Manager: portage-2.3.2

 net-misc/hylafaxplus/hylafaxplus-5.5.5.ebuild | 14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/net-misc/hylafaxplus/hylafaxplus-5.5.5.ebuild 
b/net-misc/hylafaxplus/hylafaxplus-5.5.5.ebuild
index 16fb6fd..7b0d1a0 100644
--- a/net-misc/hylafaxplus/hylafaxplus-5.5.5.ebuild
+++ b/net-misc/hylafaxplus/hylafaxplus-5.5.5.ebuild
@@ -1,9 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI="5"
-
 inherit eutils multilib pam toolchain-funcs
 
 MY_PN="${PN/plus/}"
@@ -19,7 +18,8 @@ KEYWORDS="~amd64 ~x86"
 
 IUSE="jbig html ldap mgetty pam"
 
-DEPEND=">=sys-libs/zlib-1.1.4
+DEPEND="
+   >=sys-libs/zlib-1.1.4
app-text/ghostscript-gpl
virtual/mta
media-libs/tiff[jbig?]
@@ -28,11 +28,13 @@ DEPEND=">=sys-libs/zlib-1.1.4
virtual/awk
ldap? (  net-nds/openldap )
pam? ( virtual/pam )
-   mgetty? ( net-dialup/mgetty[-fax] )"
-
+   mgetty? ( net-dialup/mgetty[-fax] )
+   !net-dialup/mgetty[fax]
+"
 RDEPEND="${DEPEND}
net-mail/metamail
-   !net-dialup/sendpage"
+   !net-dialup/sendpage
+"
 
 S="${WORKDIR}/${MY_P}"
 



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

2016-12-04 Thread Kent Fredric
commit: 36f547aa2da7f93e974ae34b89248d86b07e4455
Author: Kent Fredric  gentoo  org>
AuthorDate: Sun Dec  4 13:55:21 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sun Dec  4 13:56:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36f547aa

dev-perl/Cache-Cache: Disable parallel testing

Parallel testing causes tests to fail on a regular basis.

Bug: https://rt.cpan.org/Ticket/Display.html?id=92600

Package-Manager: portage-2.3.2

 dev-perl/Cache-Cache/Cache-Cache-1.80.0.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-perl/Cache-Cache/Cache-Cache-1.80.0.ebuild 
b/dev-perl/Cache-Cache/Cache-Cache-1.80.0.ebuild
index dfd7d87..b5ad97e 100644
--- a/dev-perl/Cache-Cache/Cache-Cache-1.80.0.ebuild
+++ b/dev-perl/Cache-Cache/Cache-Cache-1.80.0.ebuild
@@ -24,3 +24,6 @@ RDEPEND="
 DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
 "
+# https://rt.cpan.org/Ticket/Display.html?id=92600
+# Parallel testing causes failure
+DIST_TEST="do"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/lw-compat/

2016-12-04 Thread José María Alonso
commit: 60b57de271905d6f076d2ac78695418e9b781044
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 17:58:40 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 17:58:40 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=60b57de2

dev-lisp/lw-compat: Bumps version to 1.0.0

 dev-lisp/lw-compat/lw-compat-1.0.0.ebuild | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/dev-lisp/lw-compat/lw-compat-1.0.0.ebuild 
b/dev-lisp/lw-compat/lw-compat-1.0.0.ebuild
new file mode 100644
index 000..a7bf1a6
--- /dev/null
+++ b/dev-lisp/lw-compat/lw-compat-1.0.0.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit common-lisp-3
+
+DESCRIPTION="A few utility functions from the LispWorks library"
+HOMEPAGE="http://common-lisp.net/project/closer;
+SRC_URI="https://github.com/pcostanza/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND="!dev-lisp/cl-${PN}"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/gcl/

2016-12-04 Thread José María Alonso
commit: 4327a503e4048977b53182e7b05f783a48e7439b
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 12:22:49 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 12:22:49 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=4327a503

dev-lisp/gcl: Updates header

 dev-lisp/gcl/gcl-2.6.8_pre20090419-r1.ebuild | 4 ++--
 dev-lisp/gcl/gcl-2.7.0_alpha.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-lisp/gcl/gcl-2.6.8_pre20090419-r1.ebuild 
b/dev-lisp/gcl/gcl-2.6.8_pre20090419-r1.ebuild
index 62f8665..e207c0c 100644
--- a/dev-lisp/gcl/gcl-2.6.8_pre20090419-r1.ebuild
+++ b/dev-lisp/gcl/gcl-2.6.8_pre20090419-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=2
 

diff --git a/dev-lisp/gcl/gcl-2.7.0_alpha.ebuild 
b/dev-lisp/gcl/gcl-2.7.0_alpha.ebuild
index 3a1703e..30aebef 100644
--- a/dev-lisp/gcl/gcl-2.7.0_alpha.ebuild
+++ b/dev-lisp/gcl/gcl-2.7.0_alpha.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=1
 



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-smtp/

2016-12-04 Thread José María Alonso
commit: 9bce3b7bd78dfe41c834dd8df6ac9caa608b5c8c
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 13:25:24 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 13:25:24 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=9bce3b7b

dev-lisp/cl-smtp: Updates header

 dev-lisp/cl-smtp/cl-smtp-20100505.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/cl-smtp/cl-smtp-20100505.1.ebuild 
b/dev-lisp/cl-smtp/cl-smtp-20100505.1.ebuild
index fce216e..3ef23fd 100644
--- a/dev-lisp/cl-smtp/cl-smtp-20100505.1.ebuild
+++ b/dev-lisp/cl-smtp/cl-smtp-20100505.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-3
 



[gentoo-commits] proj/gamerlay:master commit in: licenses/

2016-12-04 Thread Azamat H. Hackimov
commit: 927fb40364eac4a11c5d05b27dcf4af059f54101
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Dec  4 13:24:46 2016 +
Commit: Azamat H. Hackimov  gentoo  ru>
CommitDate: Sun Dec  4 13:25:56 2016 +
URL:https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=927fb403

New license for Aseprite

https://github.com/aseprite/aseprite/blob/master/EULA.txt

 licenses/Aseprite-EULA | 40 
 1 file changed, 40 insertions(+)

diff --git a/licenses/Aseprite-EULA b/licenses/Aseprite-EULA
new file mode 100644
index 000..001d3ea
--- /dev/null
+++ b/licenses/Aseprite-EULA
@@ -0,0 +1,40 @@
+END-USER LICENSE AGREEMENT FOR ASEPRITE
+
+IMPORTANT: PLEASE READ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT 
CAREFULLY BEFORE CONTINUING WITH THIS PROGRAM INSTALL. This End-User License 
Agreement ("EULA") is a legal agreement between you (either an individual or a 
single entity) and David Capello, for the software product(s) identified above 
which may include associated software components, media, printed materials, and 
"online" or electronic documentation ("SOFTWARE PRODUCT"). By installing, 
copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the 
terms of this EULA. This license agreement represents the entire agreement 
concerning the program between you and David Capello, (referred to as 
"licenser"), and it supersedes any prior proposal, representation, or 
understanding between the parties. If you do not agree to the terms of this 
EULA, do not install or use the SOFTWARE PRODUCT.
+
+The SOFTWARE PRODUCT is protected by copyright laws and international 
copyright treaties, as well as other intellectual property laws and treaties. 
The SOFTWARE PRODUCT is licensed, not sold.
+
+1. GRANT OF LICENSE.
+The SOFTWARE PRODUCT is licensed as follows:
+(a) Installation and Use.
+David Capello grants you the right to install and use copies of the SOFTWARE 
PRODUCT on your computer running a validly licensed copy of the operating 
system for which the SOFTWARE PRODUCT was designed.
+(b) Backup Copies.
+You may also make copies of the SOFTWARE PRODUCT as may be necessary for 
backup and archival purposes.
+
+2. DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.
+(a) Maintenance of Copyright Notices.
+You must not remove or alter any copyright notices on any and all copies of 
the SOFTWARE PRODUCT.
+(b) Distribution.
+You may not distribute copies of the SOFTWARE PRODUCT to third parties. 
Evaluation versions available for download from David Capello's websites may be 
freely distributed.
+(c) Prohibition on Reverse Engineering, Decompilation, and Disassembly.
+You may not reverse engineer, decompile, or disassemble the SOFTWARE PRODUCT, 
except and only to the extent that such activity is expressly permitted by 
applicable law notwithstanding this limitation.
+(d) Rental.
+You may not rent, lease, or lend the SOFTWARE PRODUCT.
+(e) Support Services.
+David Capello may provide you with support services related to the SOFTWARE 
PRODUCT ("Support Services"). Any supplemental software code provided to you as 
part of the Support Services shall be considered part of the SOFTWARE PRODUCT 
and subject to the terms and conditions of this EULA.
+(f) Compliance with Applicable Laws.
+You must comply with all applicable laws regarding use of the SOFTWARE PRODUCT.
+(g) Source code.
+You may only compile and modify the source code of the SOFTWARE PRODUCT for 
your own personal purpose or to propose a contribution to the SOFTWARE PRODUCT.
+
+3. TERMINATION
+Without prejudice to any other rights, David Capello may terminate this EULA 
if you fail to comply with the terms and conditions of this EULA. In such 
event, you must destroy all copies of the SOFTWARE PRODUCT in your possession.
+
+4. COPYRIGHT
+All title, including but not limited to copyrights, in and to the SOFTWARE 
PRODUCT and any copies thereof are owned by David Capello or its suppliers. All 
title and intellectual property rights in and to the content which may be 
accessed through use of the SOFTWARE PRODUCT is the property of the respective 
content owner and may be protected by applicable copyright or other 
intellectual property laws and treaties. This EULA grants you no rights to use 
such content. All rights not expressly granted are reserved by David Capello.
+
+5. NO WARRANTIES
+David Capello expressly disclaims any warranty for the SOFTWARE PRODUCT. The 
SOFTWARE PRODUCT is provided 'As Is' without any express or implied warranty of 
any kind, including but not limited to any warranties of merchantability, 
noninfringement, or fitness of a particular purpose. David Capello does not 
warrant or assume responsibility for the accuracy or completeness of any 
information, text, graphics, links or other items contained within the SOFTWARE 
PRODUCT. David Capello makes no warranties respecting any harm that may be 
caused by the transmission of a computer virus, worm, time bomb, 

[gentoo-commits] proj/lisp:master commit in: dev-lisp/clozurecl/

2016-12-04 Thread José María Alonso
commit: 74ea22c8fbe7ab8437a03d96cad58596909ba76a
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 13:26:31 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 13:26:31 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=74ea22c8

dev-lisp/clozure-cl: Updates header

 dev-lisp/clozurecl/clozurecl-1.9-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/clozurecl/clozurecl-1.9-r3.ebuild 
b/dev-lisp/clozurecl/clozurecl-1.9-r3.ebuild
index 80504ab..49b1024 100644
--- a/dev-lisp/clozurecl/clozurecl-1.9-r3.ebuild
+++ b/dev-lisp/clozurecl/clozurecl-1.9-r3.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=5
 inherit eutils multilib toolchain-funcs



[gentoo-commits] proj/gamerlay:master commit in: dev-games/aseprite/files/, dev-games/aseprite/

2016-12-04 Thread Azamat H. Hackimov
commit: 610ab98339659c9c06b8db010c5f35cfa55ab442
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Sun Dec  4 13:24:28 2016 +
Commit: Azamat H. Hackimov  gentoo  ru>
CommitDate: Sun Dec  4 13:25:56 2016 +
URL:https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=610ab983

dev-games/aseprite: bump to 1.1.9

New license (Aseprite EULA)

Package-Manager: portage-2.3.0
Manifest-Sign-Key: A018DE8C

 dev-games/aseprite/{aseprite-1.1.7.ebuild => aseprite-1.1.9.ebuild}  | 5 +++--
 ...punned_pointer.patch => aseprite-1.1.9_type-punned_pointer.patch} | 0
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-games/aseprite/aseprite-1.1.7.ebuild 
b/dev-games/aseprite/aseprite-1.1.9.ebuild
similarity index 96%
rename from dev-games/aseprite/aseprite-1.1.7.ebuild
rename to dev-games/aseprite/aseprite-1.1.9.ebuild
index 45b24cd..8d177fc 100644
--- a/dev-games/aseprite/aseprite-1.1.7.ebuild
+++ b/dev-games/aseprite/aseprite-1.1.9.ebuild
@@ -10,12 +10,13 @@ DESCRIPTION="Animated sprite editor & pixel art tool"
 HOMEPAGE="http://www.aseprite.org;
 
SRC_URI="https://github.com/aseprite/aseprite/releases/download/v${PV}/Aseprite-v${PV}-Source.zip;
 
-# See https://github.com/aseprite/aseprite#credits
+# See https://github.com/aseprite/aseprite#license
 # Some bundled third-party packages built-in:
 # gtest duktape modp_b64 simpleini
-LICENSE="BSD GPL-2 MIT"
+LICENSE="Aseprite-EULA"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
+RESTRICT="mirror"
 
 IUSE="bundled-libs debug kde gtk3 test webp"
 

diff --git a/dev-games/aseprite/files/aseprite-1.1.7_type-punned_pointer.patch 
b/dev-games/aseprite/files/aseprite-1.1.9_type-punned_pointer.patch
similarity index 100%
rename from dev-games/aseprite/files/aseprite-1.1.7_type-punned_pointer.patch
rename to dev-games/aseprite/files/aseprite-1.1.9_type-punned_pointer.patch



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

2016-12-04 Thread Michael Palimaka
commit: 9e733cb9af479d8a86b81e8cce09c5a878687158
Author: Yuta Satoh  gmail  com>
AuthorDate: Sun Dec  4 00:49:39 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:46:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e733cb9

dev-perl/Devel-CheckBin: add ~x86-fbsd KEYWORDS

https://bugs.gentoo.org/show_bug.cgi?id=579720

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

diff --git a/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild 
b/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
index 8be0fc2..ebcd1c0 100644
--- a/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
+++ b/dev-perl/Devel-CheckBin/Devel-CheckBin-0.40.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 
 DESCRIPTION="check that a command is available"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~x86 ~x86-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2016-12-04 Thread Kent Fredric
commit: e2e5da0226f6cf989e210529e823fdb9a2692c2c
Author: Kent Fredric  gentoo  org>
AuthorDate: Sun Dec  4 17:10:41 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sun Dec  4 17:16:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2e5da02

dev-perl/CryptX: Bump to version 0.44.0

Upstream:
- Fix  Math::BigInt::LTM compat with newer and older Math::BigInts
- RSA now supports insecure "none" padding in sign/verify
- RC2 now supports lower (insecure) minimum keylenghts (40bit)
- Fixed memory leak in ECC
- DSA Properly handles FIPS 186-4

Package-Manager: portage-2.3.2

 dev-perl/CryptX/CryptX-0.44.0.ebuild | 36 
 dev-perl/CryptX/Manifest |  1 +
 2 files changed, 37 insertions(+)

diff --git a/dev-perl/CryptX/CryptX-0.44.0.ebuild 
b/dev-perl/CryptX/CryptX-0.44.0.ebuild
new file mode 100644
index ..76298eb
--- /dev/null
+++ b/dev-perl/CryptX/CryptX-0.44.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+DIST_AUTHOR=MIK
+DIST_VERSION=0.044
+inherit perl-module
+
+DESCRIPTION="Self-contained crypto toolkit"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test minimal"
+
+RDEPEND="
+   >=virtual/perl-Exporter-5.590.0
+   !minimal? (
+   || ( dev-perl/JSON-XS virtual/perl-JSON-PP )
+   )
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.880.0
+   !minimal? (
+   >=virtual/perl-Math-BigInt-1.999.715
+   >=virtual/perl-Storable-2.0.0
+   )
+   )
+"
+
+src_test() {
+   perl_rm_files t/003_all_pm_pod.t
+   perl-module_src_test
+}

diff --git a/dev-perl/CryptX/Manifest b/dev-perl/CryptX/Manifest
index 318f240..7f124f6 100644
--- a/dev-perl/CryptX/Manifest
+++ b/dev-perl/CryptX/Manifest
@@ -1,2 +1,3 @@
 DIST CryptX-0.025.tar.gz 1322492 SHA256 
f8b7e3ec1713c8dfe3eef9d114f45f223b97e2340f81a20589b5605fa49cfe38 SHA512 
73495601ff9ca70090dc2eb75ab382ef34ca1357b4f6cf82c07fe5c1a38ab5b4cf8fa79b44dcf9145be13ca0b2e7e5e99903d5a9fd425de2e46526fd4ac17554
 WHIRLPOOL 
12c338aca513b5ccbce69359acb99e5ca1182a61467d864050990e68fe8f2010604676f39fe650890ae8b37745954364f781e0d7ee6d20c1658a782c81500f65
 DIST CryptX-0.039.tar.gz 1200451 SHA256 
2d06975459d53799d50b0f07971c995bd2cbfceac7d26c571e852ce79a701087 SHA512 
7bb0401628873721ab1d38fdc98b8b8f4f53f1c82aa4c22f095fe997b8ffa2e8072b24f6f2e8c3784ccdad2ebbd1aec67cffa6aaf57e8005f9b2b0532454b9d5
 WHIRLPOOL 
3e0df5b890526cb0e886caede4f62d77e76a1650877d4e25b1c7f2d66e0d74519bda0d235bff25e24c890db26057c69ef4c607ed5279f8fbf84bca2d78ea0a89
+DIST CryptX-0.044.tar.gz 1201145 SHA256 
15e5e6bd7b90af24c7e730751fec7b10d8e22ef4380d527bda242dee7dd20443 SHA512 
b28a73fa97f15695c75e5570ae969df69b4f08320f090034bfd1f680ae3b386004c20b305c2f470f252686948f6912f4de61ac9beeccc45d94c6f9da5152dbbd
 WHIRLPOOL 
b4f532d870499f7d1e16e62f2b67a20c11f5d9c76eb9145ac1e1226117fc9ec7b8e992989eea143eb08dbf060c8ce9034699f83aaa9bc0a04343b2fb01cdd3b7



[gentoo-commits] proj/lisp:master commit in: dev-lisp/ecls/

2016-12-04 Thread José María Alonso
commit: 4dfdf6e14751f73107dfc86f33ffd89e832b3e1a
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 12:27:53 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 12:27:53 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=4dfdf6e1

dev-lisp/ecls: Updates header

 dev-lisp/ecls/ecls-12.12.1-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/ecls/ecls-12.12.1-r4.ebuild 
b/dev-lisp/ecls/ecls-12.12.1-r4.ebuild
index ee5cc64..51cf922 100644
--- a/dev-lisp/ecls/ecls-12.12.1-r4.ebuild
+++ b/dev-lisp/ecls/ecls-12.12.1-r4.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=5
 inherit eutils multilib



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

2016-12-04 Thread Jeroen Roovers
commit: 479db2501b49209d8944db052e69392d1c5b9272
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Dec  4 15:01:21 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Dec  4 15:09:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=479db250

sys-apps/fakeroot: Stable for PPC64 too.

Package-Manager: portage-2.3.2
RepoMan-Options: --ignore-arches

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

diff --git a/sys-apps/fakeroot/fakeroot-1.20.2.ebuild 
b/sys-apps/fakeroot/fakeroot-1.20.2.ebuild
index 4a6bfad..c69ac82 100644
--- a/sys-apps/fakeroot/fakeroot-1.20.2.ebuild
+++ b/sys-apps/fakeroot/fakeroot-1.20.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${P/-/_}.orig.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="acl debug static-libs test"
 
 DEPEND="acl? ( sys-apps/acl )



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

2016-12-04 Thread Jeroen Roovers
commit: 97ca9b263dd48e346ffb4246af94d77008a4b262
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Dec  4 15:08:04 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Dec  4 15:09:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97ca9b26

dev-util/debhelper: Set sys-apps/fakeroot test dependency on 9.* too (bug 
#595782).

Package-Manager: portage-2.3.2

 dev-util/debhelper/debhelper-9.20160814.ebuild | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/dev-util/debhelper/debhelper-9.20160814.ebuild 
b/dev-util/debhelper/debhelper-9.20160814.ebuild
index 91550ea..b3645b3 100644
--- a/dev-util/debhelper/debhelper-9.20160814.ebuild
+++ b/dev-util/debhelper/debhelper-9.20160814.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux"
+KEYWORDS="alpha amd64 ~arm hppa ~m68k ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux"
 IUSE="test"
 DH_LINGUAS=( de es fr )
 IUSE+=" ${DH_LINGUAS[@]/#/linguas_}"
@@ -26,9 +26,13 @@ RDEPEND="
dev-perl/TimeDate
virtual/perl-Getopt-Long
 "
-DEPEND="${RDEPEND}
+DEPEND="
+   ${RDEPEND}
${NLS_DEPEND}
-   test? ( dev-perl/Test-Pod )
+   test? (
+   dev-perl/Test-Pod
+   sys-apps/fakeroot
+   )
 "
 
 S=${WORKDIR}/${PN}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kwallet/

2016-12-04 Thread Michael Palimaka
commit: 2ccda80d6f77416f1f7d7f0978692a47e5b64814
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Dec  3 18:09:26 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:49:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ccda80d

kde-frameworks/kwallet: Add gpgme[cxx]-enabled version

Package-Manager: portage-2.3.0

 kde-frameworks/kwallet/kwallet-5.28.0-r1.ebuild | 52 +
 1 file changed, 52 insertions(+)

diff --git a/kde-frameworks/kwallet/kwallet-5.28.0-r1.ebuild 
b/kde-frameworks/kwallet/kwallet-5.28.0-r1.ebuild
new file mode 100644
index ..8f39077
--- /dev/null
+++ b/kde-frameworks/kwallet/kwallet-5.28.0-r1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit kde5
+
+DESCRIPTION="Framework providing desktop-wide storage for passwords"
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="gpg +man"
+
+RDEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtwidgets)
+   dev-libs/libgcrypt:0=
+   gpg? ( >=app-crypt/gpgme-1.7.1[cxx,qt5] )
+"
+DEPEND="${RDEPEND}
+   man? ( $(add_frameworks_dep kdoctools) )
+"
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_DISABLE_FIND_PACKAGE_KF5Gpgmepp=ON
+   $(cmake-utils_use_find_package gpg Gpgmepp)
+   $(cmake-utils_use_find_package man KF5DocTools)
+   )
+
+   kde5_src_configure
+}
+
+pkg_postinst() {
+   if ! has_version "kde-plasma/kwallet-pam" || ! has_version 
"kde-apps/kwalletmanager:5" ; then
+   elog
+   elog "Install kde-plasma/kwallet-pam for auto-unlocking after 
account login."
+   elog "Install kde-apps/kwalletmanager:5 to manage your kwallet."
+   elog
+   fi
+}



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

2016-12-04 Thread Michael Palimaka
commit: 8252e6792b366ad2fdab0d2ffacb1a497799d33a
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Dec  3 18:03:55 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:49:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8252e679

profiles: Mask kde-frameworks/kwallet-5.28.0-r1

It depends on masked app-crypt/gpgme[cxx].

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

diff --git a/profiles/package.mask b/profiles/package.mask
index e044cc1..ac997a8 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -307,6 +307,7 @@ dev-qt/qtopenvg
 # Michael Palimaka  (12 Nov 2016)
 # Depends on masked app-crypt/gpgme[cxx]
 =app-office/kmymoney-4.8*
+=kde-frameworks/kwallet-5.28.0-r1
 =kde-apps/kwalletd-16.04.3-r1
 
 # Gilles Dartiguelongue  (12 Nov 2016)



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/ki18n/

2016-12-04 Thread Michael Palimaka
commit: bb1d4f5039b5c69ebcf56379597dc8b35361b7b1
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Dec  3 16:04:38 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Dec  4 16:47:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb1d4f50

kde-frameworks/ki18n: Add missing test DEPEND

Gentoo-bug: 600202

Package-Manager: portage-2.3.0

 kde-frameworks/ki18n/ki18n-5.26.0.ebuild | 5 -
 kde-frameworks/ki18n/ki18n-5.28.0.ebuild | 5 -
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/ki18n/ki18n-5.26.0.ebuild 
b/kde-frameworks/ki18n/ki18n-5.26.0.ebuild
index 2fd5bdd..bb5d90f 100644
--- a/kde-frameworks/ki18n/ki18n-5.26.0.ebuild
+++ b/kde-frameworks/ki18n/ki18n-5.26.0.ebuild
@@ -21,7 +21,10 @@ RDEPEND="
virtual/libintl
 "
 DEPEND="${RDEPEND}
-   test? ( $(add_qt_dep qtconcurrent) )
+   test? (
+   $(add_qt_dep qtconcurrent)
+   $(add_qt_dep qtdeclarative)
+   )
 "
 
 pkg_setup() {

diff --git a/kde-frameworks/ki18n/ki18n-5.28.0.ebuild 
b/kde-frameworks/ki18n/ki18n-5.28.0.ebuild
index c45c633..8ff611c 100644
--- a/kde-frameworks/ki18n/ki18n-5.28.0.ebuild
+++ b/kde-frameworks/ki18n/ki18n-5.28.0.ebuild
@@ -21,7 +21,10 @@ RDEPEND="
virtual/libintl
 "
 DEPEND="${RDEPEND}
-   test? ( $(add_qt_dep qtconcurrent) )
+   test? (
+   $(add_qt_dep qtconcurrent)
+   $(add_qt_dep qtdeclarative)
+   )
 "
 
 pkg_setup() {



[gentoo-commits] proj/lisp:master commit in: dev-lisp/contextl/

2016-12-04 Thread José María Alonso
commit: f779b953fc0d37023fe27bc5aa070a552dfd
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 17:39:00 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 17:39:00 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=f779b953

dev-lisp/contextl: Updates header

 dev-lisp/contextl/contextl-0.61.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/contextl/contextl-0.61.ebuild 
b/dev-lisp/contextl/contextl-0.61.ebuild
index 1cabb40..4839b9b 100644
--- a/dev-lisp/contextl/contextl-0.61.ebuild
+++ b/dev-lisp/contextl/contextl-0.61.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI="2"
 inherit common-lisp-2



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

2016-12-04 Thread Tobias Klausmann
commit: a14caffe052e87811309cf28306ab72d5eaba3e7
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Dec  4 18:49:21 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Dec  4 18:49:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a14caffe

media-sound/quodlibet: Bump version to 3.7.1

Package-Manager: portage-2.3.2

 media-sound/quodlibet/Manifest   |  1 +
 media-sound/quodlibet/metadata.xml   |  4 ++
 media-sound/quodlibet/quodlibet-3.7.1.ebuild | 71 
 3 files changed, 76 insertions(+)

diff --git a/media-sound/quodlibet/Manifest b/media-sound/quodlibet/Manifest
index 3acb662..f5503b6 100644
--- a/media-sound/quodlibet/Manifest
+++ b/media-sound/quodlibet/Manifest
@@ -1,3 +1,4 @@
 DIST quodlibet-3.5.1.tar.gz 3421676 SHA256 
f168606ce931c30fcd478d354916bb07ae4ca9a61113af9b988e33f73adcb6c6 SHA512 
c14447b17d15ad65fc54e4c81b26b190fa4622b1d83b0b7a4c85e42e332585fe067f93a2f0236bab20186072fb2af0a334bb2741660edb282f1e5e7a00a23c9d
 WHIRLPOOL 
733a7bc88797561a27d2757422bb65bb09f366f91824772b54ac99aefa95b8769f1f566772424a8a819fc7e861bead048ab5c2f4ffc4656d46235454739d09b0
 DIST quodlibet-3.6.2.tar.gz 3454566 SHA256 
289233ddd26d3d436139e63b01177ead3017b5aa51ff4bd6e6198ec177c6e318 SHA512 
2551f5149feb4125087f2102e1e0cfb4b810b92b3ffd9f2b1ed37a7b821933c6b7d718c6b3674569eb2dfe1fd75176bf4d5e4b6587cbbb4f405229dcd7b4a850
 WHIRLPOOL 
ef3acbf8e809fbcd2e638347de4c6af328919114adb9ee3aa17a220a42e2fee96177598a7730a48cfa7d977f055a58a7442694d5bd6c92e953732f4fa4303b05
 DIST quodlibet-3.7.0.tar.gz 3651906 SHA256 
a7bf4bd1dadd6e0156380c5e82fbde396106da15a5600484f54c6904d2d9e550 SHA512 
900fd49cc2ece6e681116962529e6648ed487fcb7492832940ad2210bf47a4a0fefb0500c1a1477bd440d2cb5be9a330a1b0e4a87b7d332d710e25bf087779fb
 WHIRLPOOL 
5dc12fbe05b2a6c4ca86d510498bb6376e37cda8cfbda6614686cc543ef1ac926167ef03997caf40e83a136c8391dfb9aaa369106204e3a0cd57778340d099af
+DIST quodlibet-3.7.1.tar.gz 3651908 SHA256 
229a26289880860abfd0ec31d9f0aa830c84a3f78205feb11f3ec710e02f02cd SHA512 
73f2a909e29178fb4074dbf451a6d04170aebecb7934248b04b909f9639c9098054eefe3343cfb67cc3c622f6d453b5417e5233d4d2ec9c87c48a0c5b4debf4f
 WHIRLPOOL 
2149daf74da7bc01a9822d841de7634c72cca02ef2ab59ae8ac2cd4716e72bed2d6f3342c3b32ddd66c393ecab7c311729e424175a8c7264de0edf2525391187

diff --git a/media-sound/quodlibet/metadata.xml 
b/media-sound/quodlibet/metadata.xml
index 4f37676..34f78c1 100644
--- a/media-sound/quodlibet/metadata.xml
+++ b/media-sound/quodlibet/metadata.xml
@@ -5,6 +5,10 @@
tam...@gentoo.org
Matthias Maier

+   
+   klaus...@gentoo.org
+   Tobias Klausmann
+   

so...@gentoo.org
Gentoo Sound project

diff --git a/media-sound/quodlibet/quodlibet-3.7.1.ebuild 
b/media-sound/quodlibet/quodlibet-3.7.1.ebuild
new file mode 100644
index ..1453339
--- /dev/null
+++ b/media-sound/quodlibet/quodlibet-3.7.1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+inherit distutils-r1 gnome2-utils fdo-mime
+
+DESCRIPTION="audio library tagger, manager, and player for GTK+"
+HOMEPAGE="http://quodlibet.readthedocs.org;
+SRC_URI="https://github.com/${PN}/${PN}/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="+dbus gstreamer ipod +udev"
+
+RDEPEND="dev-libs/keybinder:3[introspection]
+   dev-python/feedparser[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=media-libs/mutagen-1.32[${PYTHON_USEDEP}]
+   x11-libs/gtk+[introspection]
+   gstreamer? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   media-libs/gst-plugins-good:1.0
+   media-plugins/gst-plugins-meta:1.0
+   )
+   !gstreamer? ( media-libs/xine-lib )
+   dbus? (
+   app-misc/media-player-info
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   )
+   ipod? ( media-libs/libgpod[python,${PYTHON_USEDEP}] )
+   udev? ( virtual/udev )
+   !media-plugins/quodlibet-plugins"
+DEPEND="dev-util/intltool"
+REQUIRED_USE="ipod? ( dbus )"
+
+S="${WORKDIR}/${PN}-release-${PV}/${PN}"
+
+src_prepare() {
+   local qlconfig=${PN}/config.py
+
+   if ! use gstreamer; then
+   sed -i -e '/backend/s:gstbe:xinebe:' ${qlconfig} || die
+   fi
+
+   sed -i -e '/gst_pipeline/s:"":"alsasink":' ${qlconfig} || die
+
+   distutils-r1_src_prepare
+}
+
+src_install() {
+   distutils-r1_src_install
+   dodoc NEWS README
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   fdo-mime_desktop_database_update
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   fdo-mime_desktop_database_update
+   

[gentoo-commits] proj/lisp:master commit in: dev-lisp/chronicity/

2016-12-04 Thread José María Alonso
commit: 054f0cb0afa2af40281634b698d8939819d7
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 18:58:09 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 18:58:09 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=054f0cb0

dev-lisp/chronicity: Updates header

 dev-lisp/chronicity/chronicity-0.2.6.ebuild | 4 ++--
 dev-lisp/chronicity/chronicity-0.2.7.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-lisp/chronicity/chronicity-0.2.6.ebuild 
b/dev-lisp/chronicity/chronicity-0.2.6.ebuild
index 63e57f3..a8f94f3 100644
--- a/dev-lisp/chronicity/chronicity-0.2.6.ebuild
+++ b/dev-lisp/chronicity/chronicity-0.2.6.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=5
 

diff --git a/dev-lisp/chronicity/chronicity-0.2.7.ebuild 
b/dev-lisp/chronicity/chronicity-0.2.7.ebuild
index 67c3e20..52a0242 100644
--- a/dev-lisp/chronicity/chronicity-0.2.7.ebuild
+++ b/dev-lisp/chronicity/chronicity-0.2.7.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=5
 



[gentoo-commits] proj/lisp:master commit in: dev-lisp/trivial-features/

2016-12-04 Thread José María Alonso
commit: fd9bdfb2def5b49b818b109eb0bc0eb4f41fea83
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 19:55:12 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 19:55:12 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=fd9bdfb2

dev-lisp/trivial-features: Bumps version to 0.8

 .../trivial-features/trivial-features-0.8.ebuild| 21 +
 1 file changed, 21 insertions(+)

diff --git a/dev-lisp/trivial-features/trivial-features-0.8.ebuild 
b/dev-lisp/trivial-features/trivial-features-0.8.ebuild
new file mode 100644
index 000..9484d2a
--- /dev/null
+++ b/dev-lisp/trivial-features/trivial-features-0.8.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit common-lisp-3
+
+DESCRIPTION="Ensures consistent *FEATURES* across multiple Common Lisp 
implementations."
+HOMEPAGE="http://www.cliki.net/trivial-features;
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+src_install() {
+   common-lisp-3_src_install
+   dodoc README.md SPEC.md
+}



[gentoo-commits] proj/lisp:master commit in: dev-lisp/environment/

2016-12-04 Thread José María Alonso
commit: db3c20acbf0696d134365b23af322c7210355266
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 20:36:59 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 20:36:59 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=db3c20ac

dev-lisp/environment: Updates header

 dev-lisp/environment/environment-1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/environment/environment-1.3.ebuild 
b/dev-lisp/environment/environment-1.3.ebuild
index a98b67f..7ed2263 100644
--- a/dev-lisp/environment/environment-1.3.ebuild
+++ b/dev-lisp/environment/environment-1.3.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2
 



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

2016-12-04 Thread Mike Pagano
commit: 7facbc2cedd46417c537491d55ba38d77337b26f
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Dec  4 21:20:55 2016 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Dec  4 21:20:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7facbc2c

kernel-2.eclass: Convert eclass to use documentation standards

 eclass/kernel-2.eclass | 442 +
 1 file changed, 333 insertions(+), 109 deletions(-)

diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass
index 91a24e9..b19a396 100644
--- a/eclass/kernel-2.eclass
+++ b/eclass/kernel-2.eclass
@@ -2,89 +2,199 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-# Description: kernel.eclass rewrite for a clean base regarding the 2.6
-#  series of kernel with back-compatibility for 2.4
-#
-# Original author: John Mylchreest 
-# Maintainer: ker...@gentoo.org
-#
+# @ECLASS: kernel-2.eclass
+# @MAINTAINER: 
+# Gentoo Kernel project 
+# @AUTHOR: 
+# John Mylchreest 
+# Mike Pagano 
+# 
+# @BLURB: Eclass for kernel packages
+# @DESCRIPTION:
+# This ia the kernel.eclass rewrite for a clean base regarding the 2.6
+# series of kernel with back-compatibility for 2.4
 # Please direct your bugs to the current eclass maintainer :)
-
 # added functionality:
 # unipatch - a flexible, singular method to extract, add and 
remove patches.
 
-# A Couple of env vars are available to effect usage of this eclass
-# These are as follows:
-#
-# K_USEPV  - When setting the EXTRAVERSION 
variable, it should
-#add PV to the end.
-#this is useful for thigns 
like wolk. IE:
-#EXTRAVERSION would be 
something like : -wolk-4.19-r1
-# K_NOSETEXTRAVERSION  - if this is set then EXTRAVERSION will not be
-#automatically set within the 
kernel Makefile
-# K_NOUSENAME  - if this is set then EXTRAVERSION will not 
include the
-#first part of ${PN} in 
EXTRAVERSION
-# K_NOUSEPR- if this is set then EXTRAVERSION will 
not include the
-#anything based on ${PR}.
-# K_PREPATCHED - if the patchset is prepatched (ie: mm-sources,
-#ck-sources, ac-sources) it 
will use PR (ie: -r5) as
-#the patchset version for
-#and not use it as a true 
package revision
-# K_EXTRAEINFO - this is a new-line seperated list of einfo 
displays in
-#postinst and can be used to 
carry additional postinst
-#messages
-# K_EXTRAELOG  - same as K_EXTRAEINFO except using elog 
instead of einfo
-# K_EXTRAEWARN - same as K_EXTRAEINFO except using ewarn 
instead of einfo
-# K_SYMLINK- if this is set, then forcably create 
symlink anyway
-#
-# K_BASE_VER   - for git-sources, declare the base version 
this patch is
-#based off of.
-# K_DEFCONFIG  - Allow specifying a different defconfig target.
-#If length zero, defaults to 
"defconfig".
-# K_WANT_GENPATCHES- Apply genpatches to kernel source. Provide any
-#combination of "base", 
"extras" or "experimental".
-# K_EXP_GENPATCHES_PULL- If set, we pull "experimental" regardless of 
the USE FLAG
-#but expect the ebuild 
maintainer to use K_EXP_GENPATCHES_LIST.
-# K_EXP_GENPATCHES_NOUSE   - If set, no USE flag will be provided for 
"experimental";
-#as a result the user cannot 
choose to apply those patches.
-# K_EXP_GENPATCHES_LIST- A list of patches to pick from "experimental" 
to apply when
-#the USE flag is unset and 
K_EXP_GENPATCHES_PULL is set.
-# K_FROM_GIT - If set, this variable signals that the kernel sources derives 
from a git tree and special
-#  handling will be applied so that any patches that are applied will 
actually apply.
-#
-# K_GENPATCHES_VER - The version of the genpatches tarball(s) to 
apply.
-#A value of "5" would apply 
genpatches-2.6.12-5 to
-#my-sources-2.6.12.ebuild
-# K_SECURITY_UNSUPPORTED- If set, this 

[gentoo-commits] proj/lisp:master commit in: dev-lisp/garbage-pools/

2016-12-04 Thread José María Alonso
commit: 2c3036f608225c853a95e97f56349e649749ecd7
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 21:36:52 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 21:36:52 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=2c3036f6

dev-lisp/garbage-pools: Updates header

 dev-lisp/garbage-pools/garbage-pools-0.1.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/garbage-pools/garbage-pools-0.1.2.ebuild 
b/dev-lisp/garbage-pools/garbage-pools-0.1.2.ebuild
index ca6ab5b..92b48a1 100644
--- a/dev-lisp/garbage-pools/garbage-pools-0.1.2.ebuild
+++ b/dev-lisp/garbage-pools/garbage-pools-0.1.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2 eutils
 



[gentoo-commits] proj/lisp:master commit in: dev-lisp/trivial-http/

2016-12-04 Thread José María Alonso
commit: bd7ba719843864cbf649c7b73af93a920f0aec40
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 21:57:20 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 21:57:20 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=bd7ba719

dev-lisp/trivial-http: Updates header

 dev-lisp/trivial-http/trivial-http-1.3.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-lisp/trivial-http/trivial-http-1.3.0.ebuild 
b/dev-lisp/trivial-http/trivial-http-1.3.0.ebuild
index 8fc6e33..7307ea0 100644
--- a/dev-lisp/trivial-http/trivial-http-1.3.0.ebuild
+++ b/dev-lisp/trivial-http/trivial-http-1.3.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2
 
-DESCRIPTION="TRIVIAL-HTTP is a library for doing HTTP POST, HEAD and GET over 
a socket interface."
+DESCRIPTION="Library for doing HTTP POST, HEAD and GET over a socket 
interface."
 HOMEPAGE="http://common-lisp.net/project/trivial-http/;
 SRC_URI="http://common-lisp.net/~sionescu/files/${P}.tar.bz2;
 



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

2016-12-04 Thread Aaron Bauman
commit: 023b204a3ff9f6692bb70b54cd23ecd0bb10f9d1
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Dec  5 01:50:39 2016 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Dec  5 01:50:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=023b204a

dev-libs/libgit2: revert cleanup wrt security bug #596758

This reverts commit 9b64de1489263019495731928a65665e3ab3daba.

 dev-libs/libgit2/Manifest  |  2 +
 dev-libs/libgit2/libgit2-0.22.3.ebuild | 75 +
 dev-libs/libgit2/libgit2-0.23.4.ebuild | 76 ++
 3 files changed, 153 insertions(+)

diff --git a/dev-libs/libgit2/Manifest b/dev-libs/libgit2/Manifest
index 485c6a3..0a02cf0 100644
--- a/dev-libs/libgit2/Manifest
+++ b/dev-libs/libgit2/Manifest
@@ -1 +1,3 @@
+DIST libgit2-0.22.3.tar.gz 3594098 SHA256 
511fe60e7c12c3525b4e0489861e5c1fe0e331d604bee9a3dfb8420c2f288f60 SHA512 
2bbb04789702d206e65b18d96752113d2c1b0af7b7779cf7c90c326ec47f535b36327b0171ae1f614179c24275e2c04c51d62e44eedba87530509a29c15ab25c
 WHIRLPOOL 
2fbb2739856e6cef3ae1a103e1b999b3362c79536423e5cd6d46d60276a14e87298ec36e2e03e8ea0fa8ebe28a140ba20ce077fb30ab3fc0d1337ec3b04fde87
+DIST libgit2-0.23.4.tar.gz 4065303 SHA256 
c7f5e2d7381dbc4d7e878013d14f9993ae8a41bd23f032718e39ffba57894029 SHA512 
f2f6244dfee4dab2dc5ef9607808404467a1f6baa684aa4e24b7116e7e7f63f396eef3282c1bcffbef47f19824731c2887deadbe3b2dad8a075b0639e5965d9e
 WHIRLPOOL 
7346fd24616ba68929f02d686229a2f91caf2bf44ff88aadbb663ffb776dc6a5a222f0a9d7145ac9ef08ebcd321671e5c3d0175eca77230955bfaa2ca375ca6a
 DIST libgit2-0.24.2.tar.gz 4177238 SHA256 
00f0a7403143fba69601accc80cacf49becc568b890ba232f300c1b2a37475e6 SHA512 
aaba85ef65e00b5916642121dbf0e785c20332f29312e772186eef0eebba5c997a60f94dfb651cbab25c3070c7b4cc37e8619d9cb9fed590e1fb0460bcb7af02
 WHIRLPOOL 
090cc7b3f8ec3db468128d1441b4c4b02e8ec02b1e9f3d73ced5973083c81a811ac0e50ecfb61470e4a85a57af94772a74e9cf9d71fccac17e36938b05892e8a

diff --git a/dev-libs/libgit2/libgit2-0.22.3.ebuild 
b/dev-libs/libgit2/libgit2-0.22.3.ebuild
new file mode 100644
index ..699bee9
--- /dev/null
+++ b/dev-libs/libgit2/libgit2-0.22.3.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils multilib
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/${PN}/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="amd64 x86 ~ppc-macos"
+fi
+
+DESCRIPTION="A linkable library for Git"
+HOMEPAGE="https://libgit2.github.com/;
+
+LICENSE="GPL-2-with-linking-exception"
+SLOT="0/22"
+IUSE="examples gssapi ssh test threads trace"
+
+RDEPEND="
+   dev-libs/openssl:0
+   sys-libs/zlib
+   net-libs/http-parser
+   gssapi? ( virtual/krb5 )
+   ssh? ( net-libs/libssh2 )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md )
+
+src_prepare() {
+   # skip online tests
+   sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die
+
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)"
+   $(cmake-utils_use_build test CLAR)
+   $(cmake-utils_use_enable trace TRACE)
+   $(cmake-utils_use_use gssapi GSSAPI)
+   $(cmake-utils_use_use ssh SSH)
+   $(cmake-utils_use threads THREADSAFE)
+   )
+   cmake-utils_src_configure
+}
+
+src_test() {
+   if [[ ${EUID} -eq 0 ]] ; then
+   # repo::iterator::fs_preserves_error fails if run as root
+   # since root can still access dirs with  perms
+   ewarn "Skipping tests: non-root privileges are required for all 
tests to pass"
+   else
+   local TEST_VERBOSE=1
+   cmake-utils_src_test
+   fi
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   if use examples ; then
+   egit_clean examples
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}

diff --git a/dev-libs/libgit2/libgit2-0.23.4.ebuild 
b/dev-libs/libgit2/libgit2-0.23.4.ebuild
new file mode 100644
index ..7881474
--- /dev/null
+++ b/dev-libs/libgit2/libgit2-0.23.4.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils multilib
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/${PN}/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="amd64 ~arm x86 ~ppc-macos"
+fi
+
+DESCRIPTION="A linkable library for Git"
+HOMEPAGE="https://libgit2.github.com/;
+

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

2016-12-04 Thread Zac Medico
commit: ab07ac68fa1e04ed64e2e0f6c753ff169a32d517
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Dec  5 02:38:49 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Dec  5 04:55:32 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ab07ac68

depgraph: select highest version involved in slot conflict (bug 554070)

Fix depgraph's package selection logic to choose the highest version
involved in a slot conflict, for correct operation of conflict_downgrade
logic in the dep_zapdeps function which was introduced in commit
a9064d08ef4c92a5d0d1bfb3dc8a01b7850812b0. This will prevent incorrect
re-ordering of || deps in dep_zapdeps, as reported in bug 554070.

X-Gentoo-Bug: 554070
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=554070
Fixes a9064d08ef4c ("Solve more slot-operator conflicts (531656)")
Acked-by: Brian Dolbec  gentoo.org>

 pym/_emerge/depgraph.py | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
index 9161914..ee6cf68 100644
--- a/pym/_emerge/depgraph.py
+++ b/pym/_emerge/depgraph.py
@@ -6071,8 +6071,15 @@ class depgraph(object):
# will always end with a break 
statement below
# this point.
if find_existing_node:
-   e_pkg = 
next(self._dynamic_config._package_tracker.match(
-   root, pkg.slot_atom, 
installed=False), None)
+   # Use reversed iteration in 
order to get
+   # descending order here, so 
that the highest
+   # version involved in a slot 
conflict is
+   # selected. This is needed for 
correct operation
+   # of conflict_downgrade logic 
in the dep_zapdeps
+   # function (see bug 554070).
+   e_pkg = next(reversed(list(
+   
self._dynamic_config._package_tracker.match(
+   root, pkg.slot_atom, 
installed=False))), None)
 
if not e_pkg:
break



[gentoo-commits] proj/lisp:master commit in: dev-lisp/contextl/

2016-12-04 Thread José María Alonso
commit: a34cce137f6f4b5e82319e0c67e30dff7bef5764
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 18:52:33 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 18:52:33 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=a34cce13

dev-lisp/contextl: Bumps version to 1.0.0

 dev-lisp/contextl/contextl-1.0.0.ebuild | 20 
 1 file changed, 20 insertions(+)

diff --git a/dev-lisp/contextl/contextl-1.0.0.ebuild 
b/dev-lisp/contextl/contextl-1.0.0.ebuild
new file mode 100644
index 000..5834ee2
--- /dev/null
+++ b/dev-lisp/contextl/contextl-1.0.0.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit common-lisp-3
+
+DESCRIPTION="CLOS extension for context-oriented Programming"
+HOMEPAGE="http://common-lisp.net/project/closer/;
+SRC_URI="https://github.com/pcostanza/contextl/archive/v1.0.0.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND="!dev-lisp/cl-${PN}
+   dev-lisp/lw-compat
+   >=dev-lisp/closer-mop-0.60"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/flexichain/

2016-12-04 Thread José María Alonso
commit: 884325924cd6184317e87fe57ab209d7e26c33a4
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 20:25:15 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 20:25:15 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=88432592

dev-lisp/flexichain: Updates header

 dev-lisp/flexichain/flexichain-1.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/flexichain/flexichain-1.5.1.ebuild 
b/dev-lisp/flexichain/flexichain-1.5.1.ebuild
index 38f6ebb..02edfe6 100644
--- a/dev-lisp/flexichain/flexichain-1.5.1.ebuild
+++ b/dev-lisp/flexichain/flexichain-1.5.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2
 



[gentoo-commits] proj/lisp:master commit in: dev-lisp/portable-threads/

2016-12-04 Thread José María Alonso
commit: c24adb2b27b1d5fab33afc94e2d5dd4a146eba99
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sun Dec  4 20:26:34 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sun Dec  4 20:26:34 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c24adb2b

dev-lisp/portable-threads: Updates header

 dev-lisp/portable-threads/portable-threads-0.9.6_p20071120.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/portable-threads/portable-threads-0.9.6_p20071120.ebuild 
b/dev-lisp/portable-threads/portable-threads-0.9.6_p20071120.ebuild
index 4a54d43..247baae 100644
--- a/dev-lisp/portable-threads/portable-threads-0.9.6_p20071120.ebuild
+++ b/dev-lisp/portable-threads/portable-threads-0.9.6_p20071120.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 inherit common-lisp-2
 



  1   2   >