[gentoo-commits] proj/gnome:master commit in: gnome-base/librsvg/files/, profiles/, gnome-base/librsvg/

2018-01-28 Thread Gilles Dartiguelongue
commit: 9dafd4f5e7373393f09024ec05693c6844694882
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Jan 29 07:39:17 2018 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Jan 29 07:45:37 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=9dafd4f5

gnome-base/librsvg: experimental rust based ebuild

While build goes just fine, lots of unit tests are broken and there is
no multilib support for now.

Requires rust >=1.20 for bundled rust packages.

 .../files/librsvg-2.40.12-gtk-optional.patch   |  58 
 .../files/librsvg-2.40.2-vala-out-of-source.patch  |  28 ++
 gnome-base/librsvg/librsvg-2.42.1.ebuild   | 101 +
 gnome-base/librsvg/metadata.xml|  11 +++
 profiles/package.mask  |   4 +
 5 files changed, 202 insertions(+)

diff --git a/gnome-base/librsvg/files/librsvg-2.40.12-gtk-optional.patch 
b/gnome-base/librsvg/files/librsvg-2.40.12-gtk-optional.patch
new file mode 100644
index ..b7c5b852
--- /dev/null
+++ b/gnome-base/librsvg/files/librsvg-2.40.12-gtk-optional.patch
@@ -0,0 +1,58 @@
+From 18917f7fd3160afe06019f4b6234aeb78a3fdb4e Mon Sep 17 00:00:00 2001
+From: Ross Burton 
+Date: Tue, 19 Nov 2013 16:00:29 +
+Subject: [PATCH] configure: add option to enable/disable use of GTK+
+
+Distro packagers like predictability and automatically detected optional
+dependencies are not predicable.  Add a --with-gtk3 option (default to "auto")
+for forcibly controlling whether GTK+ will be used or not.
+
+Signed-off-by: Ross Burton 
+
+https://bugzilla.gnome.org/show_bug.cgi?id=712693
+---
+ configure.in |   17 +++--
+ 1 file changed, 11 insertions(+), 6 deletions(-)
+
+diff --git a/configure.in b/configure.in
+index f7a89dc..1498f72 100644
+--- a/configure.ac
 b/configure.ac
+@@ -119,17 +119,22 @@ AC_CHECK_FUNCS(strtok_r)
+ # GTK
+ # ===
+ 
+-PKG_CHECK_MODULES([GTK3],[gtk+-3.0 >= 
$GTK3_REQUIRED],[have_gtk_3=yes],[have_gtk_3=no])
+-
+ GTK3_BINARY_VERSION=
+ 
+-if test "$have_gtk_3" = "yes"; then
+-GTK3_BINARY_VERSION="`$PKG_CONFIG --variable=gtk_binary_version gtk+-3.0`"
++AC_MSG_CHECKING([whether to use GTK+ 3])
++AC_ARG_WITH([gtk3],
++  [AS_HELP_STRING([--without-gtk3],[Don't build GTK+3 tools (default=auto)])],
++  [],[PKG_CHECK_EXISTS([gtk+-3.0 >= 
$GTK3_REQUIRED],[with_gtk3=yes],[with_gtk3=no])])
++AC_MSG_RESULT([$with_gtk3])
++
++if test "$with_gtk3" = "yes"; then
++  PKG_CHECK_MODULES(GTK3, [gtk+-3.0 >= $GTK3_REQUIRED])
++  GTK3_BINARY_VERSION="`$PKG_CONFIG --variable=gtk_binary_version gtk+-3.0`"
+ fi
+ 
+ AC_SUBST([GTK3_BINARY_VERSION])
+ 
+-AM_CONDITIONAL([HAVE_GTK_3],[test "$have_gtk_3" = "yes"])
++AM_CONDITIONAL([HAVE_GTK_3],[test "$with_gtk3" = "yes"])
+ 
+ dnl 
===
+ dnl GDK-Pixbuf SVG loader
+@@ -305,6 +310,6 @@ librsvg-$VERSION
+   Build introspectable bindings:  ${found_introspection}
+   Build Vala bindings:${enable_vala}
+   Build GdkPixbuf loader: ${enable_pixbuf_loader}
+-GTK+ $GTK3_REQUIRED or later:   ${have_gtk_3}
++GTK 3.0:${with_gtk3}
+   Build miscellaneous tools:  ${build_misc_tools}
+ "
+-- 
+1.7.10.4
\ No newline at end of file

diff --git a/gnome-base/librsvg/files/librsvg-2.40.2-vala-out-of-source.patch 
b/gnome-base/librsvg/files/librsvg-2.40.2-vala-out-of-source.patch
new file mode 100644
index ..bda09057
--- /dev/null
+++ b/gnome-base/librsvg/files/librsvg-2.40.2-vala-out-of-source.patch
@@ -0,0 +1,28 @@
+From bf4da5524d50e1068f851bcbe50c8f8ae1948d73 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Wed, 18 Jun 2014 09:44:51 +0200
+Subject: [PATCH] build: Fix building .vapi out-of-source.
+
+Rsvg-2.0-custom.vala file resides in $(srcdir), and therefore full path
+needs to be given to vapigen. Otherwise, the build fails when build is
+performed out-of-source.
+---
+ Makefile.am | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index e881100..dc6b0c9 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -257,7 +257,7 @@ VAPIGEN_VAPIS = librsvg-$(RSVG_API_VERSION).vapi
+ 
+ librsvg_@RSVG_API_VERSION_U@_vapi_DEPS = gio-2.0 cairo
+ librsvg_@RSVG_API_VERSION_U@_vapi_METADATADIRS = $(srcdir)
+-librsvg_@RSVG_API_VERSION_U@_vapi_FILES = Rsvg-$(RSVG_API_VERSION).gir 
Rsvg-$(RSVG_API_VERSION)-custom.vala
++librsvg_@RSVG_API_VERSION_U@_vapi_FILES = Rsvg-$(RSVG_API_VERSION).gir 
$(srcdir)/Rsvg-$(RSVG_API_VERSION)-custom.vala
+ 
+ vapidir = $(datadir)/vala/vapi
+ vapi_DATA = $(VAPIGEN_VAPIS)
+-- 
+2.0.0
+

diff --git a/gnome-base/librsvg/librsvg-2.42.1.ebuild 
b/gnome-base/librsvg/librsvg-2.42.1.ebuild
new file mode 100644
index ..43fd2555
--- /dev/null
+++ b/gnome-base/librsvg/librsvg-2.42.1.ebuild

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

2018-01-28 Thread Gilles Dartiguelongue
commit: 308fde12eadda2a65ce732960577e46c65f77849
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Jan 29 07:40:27 2018 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Jan 29 07:41:14 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=308fde12

eclass: sync vala.eclass with gentoo repository

 eclass/vala.eclass | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/eclass/vala.eclass b/eclass/vala.eclass
index f2243dd1..f8a45cde 100644
--- a/eclass/vala.eclass
+++ b/eclass/vala.eclass
@@ -25,13 +25,13 @@ esac
 
 # @ECLASS-VARIABLE: VALA_MIN_API_VERSION
 # @DESCRIPTION:
-# Minimum vala API version (e.g. 0.26).
-VALA_MIN_API_VERSION=${VALA_MIN_API_VERSION:-0.26}
+# Minimum vala API version (e.g. 0.32).
+VALA_MIN_API_VERSION=${VALA_MIN_API_VERSION:-0.32}
 
 # @ECLASS-VARIABLE: VALA_MAX_API_VERSION
 # @DESCRIPTION:
 # Maximum vala API version (e.g. 0.32).
-VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.32}
+VALA_MAX_API_VERSION=${VALA_MAX_API_VERSION:-0.36}
 
 # @ECLASS-VARIABLE: VALA_USE_DEPEND
 # @DEFAULT_UNSET
@@ -49,7 +49,7 @@ vala_api_versions() {
local minimal_supported_minor_version minor_version
 
# Dependency atoms are not generated for Vala versions older than 
0.${minimal_supported_minor_version}.
-   minimal_supported_minor_version="26"
+   minimal_supported_minor_version="32"
 
for ((minor_version = ${VALA_MAX_API_VERSION#*.}; minor_version >= 
${VALA_MIN_API_VERSION#*.}; minor_version = minor_version - 2)); do
if ((minor_version >= minimal_supported_minor_version)); then



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

2018-01-28 Thread Gilles Dartiguelongue
commit: 252e03bdf22002317e64e6882567ff2dd6051ed9
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Jan 29 07:38:41 2018 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Jan 29 07:41:03 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=252e03bd

eclass: drop $Id$ header

 eclass/gnome2-live.eclass   | 3 ---
 eclass/gnome2-python.eclass | 1 -
 eclass/multibuild.eclass| 1 -
 eclass/vala.eclass  | 1 -
 4 files changed, 6 deletions(-)

diff --git a/eclass/gnome2-live.eclass b/eclass/gnome2-live.eclass
index 8bcc4ea4..4140e27c 100644
--- a/eclass/gnome2-live.eclass
+++ b/eclass/gnome2-live.eclass
@@ -1,8 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
-#
 # @ECLASS: gnome2-live.eclass
 # @MAINTAINER:
 # gn...@gentoo.org
@@ -12,7 +10,6 @@
 # @DESCRIPTION:
 # Exports additional functions used by live ebuilds written for GNOME packages
 # Always to be imported *AFTER* gnome2.eclass
-#
 
 inherit autotools eutils gnome2 gnome2-utils libtool git-r3 xdg
 

diff --git a/eclass/gnome2-python.eclass b/eclass/gnome2-python.eclass
index 5ee12d6e..a16e931e 100644
--- a/eclass/gnome2-python.eclass
+++ b/eclass/gnome2-python.eclass
@@ -1,6 +1,5 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
 # @ECLASS: gnome2-python.eclass
 # @MAINTAINER:

diff --git a/eclass/multibuild.eclass b/eclass/multibuild.eclass
index 912545c7..c29f4d89 100644
--- a/eclass/multibuild.eclass
+++ b/eclass/multibuild.eclass
@@ -1,6 +1,5 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
 # @ECLASS: multibuild.eclass
 # @MAINTAINER:

diff --git a/eclass/vala.eclass b/eclass/vala.eclass
index a70c9d87..f2243dd1 100644
--- a/eclass/vala.eclass
+++ b/eclass/vala.eclass
@@ -1,6 +1,5 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
 # @ECLASS: vala.eclass
 # @MAINTAINER:



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

2018-01-28 Thread Jeroen Roovers
commit: 3743fe30fe151a156e27543f468c3f8dd8799062
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Jan 29 07:17:23 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Jan 29 07:17:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3743fe30

net-analyzer/cacti: RDEPEND on dev-lang/php[pdo] by Nuno (bug #646024).

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 net-analyzer/cacti/cacti-1.1.20.ebuild | 2 +-
 net-analyzer/cacti/cacti-1.1.21.ebuild | 4 ++--
 net-analyzer/cacti/cacti-1.1.28.ebuild | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-analyzer/cacti/cacti-1.1.20.ebuild 
b/net-analyzer/cacti/cacti-1.1.20.ebuild
index d3b41fd3fc3..e85926548ee 100644
--- a/net-analyzer/cacti/cacti-1.1.20.ebuild
+++ b/net-analyzer/cacti/cacti-1.1.20.ebuild
@@ -18,7 +18,7 @@ IUSE="snmp doc"
 need_httpd
 
 RDEPEND="
-   dev-lang/php[cli,mysql,session,sockets,xml]
+   dev-lang/php[cli,mysql,pdo,session,sockets,xml]
dev-php/adodb
net-analyzer/rrdtool[graph]
virtual/cron

diff --git a/net-analyzer/cacti/cacti-1.1.21.ebuild 
b/net-analyzer/cacti/cacti-1.1.21.ebuild
index b0f3b50324d..7d51a73050c 100644
--- a/net-analyzer/cacti/cacti-1.1.21.ebuild
+++ b/net-analyzer/cacti/cacti-1.1.21.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -18,7 +18,7 @@ IUSE="snmp doc"
 need_httpd
 
 RDEPEND="
-   dev-lang/php[cli,mysql,session,sockets,xml]
+   dev-lang/php[cli,mysql,pdo,session,sockets,xml]
dev-php/adodb
net-analyzer/rrdtool[graph]
virtual/cron

diff --git a/net-analyzer/cacti/cacti-1.1.28.ebuild 
b/net-analyzer/cacti/cacti-1.1.28.ebuild
index 4dc1e3f0ccd..92113935854 100644
--- a/net-analyzer/cacti/cacti-1.1.28.ebuild
+++ b/net-analyzer/cacti/cacti-1.1.28.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -18,7 +18,7 @@ IUSE="snmp doc"
 need_httpd
 
 RDEPEND="
-   dev-lang/php[cli,mysql,session,sockets,xml]
+   dev-lang/php[cli,mysql,pdo,session,sockets,xml]
dev-php/adodb
net-analyzer/rrdtool[graph]
virtual/cron



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

2018-01-28 Thread Ulrich Müller
commit: 28ef9023d24bab72dec94e21237982be78c67c08
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Jan 19 20:57:20 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jan 29 07:08:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28ef9023

eutils.eclass: Remove built_with_use().

The function was deprecated in 2010 and is no longer used in the tree.
Use EAPI 2 use deps and has_version as replacement.

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

 eclass/eutils.eclass | 92 
 1 file changed, 92 deletions(-)

diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass
index 63f73db290f..be8251f5794 100644
--- a/eclass/eutils.eclass
+++ b/eclass/eutils.eclass
@@ -164,98 +164,6 @@ strip-linguas() {
export LINGUAS=${newls:1}
 }
 
-# @FUNCTION: built_with_use
-# @USAGE: [--hidden] [--missing ] [-a|-o]  
-# @DESCRIPTION:
-#
-# Deprecated: Use EAPI 2 use deps in DEPEND|RDEPEND and with has_version calls.
-#
-# A temporary hack until portage properly supports DEPENDing on USE
-# flags being enabled in packages.  This will check to see if the specified
-# DEPEND atom was built with the specified list of USE flags.  The
-# --missing option controls the behavior if called on a package that does
-# not actually support the defined USE flags (aka listed in IUSE).
-# The default is to abort (call die).  The -a and -o flags control
-# the requirements of the USE flags.  They correspond to "and" and "or"
-# logic.  So the -a flag means all listed USE flags must be enabled
-# while the -o flag means at least one of the listed IUSE flags must be
-# enabled.  The --hidden option is really for internal use only as it
-# means the USE flag we're checking is hidden expanded, so it won't be found
-# in IUSE like normal USE flags.
-#
-# Remember that this function isn't terribly intelligent so order of optional
-# flags matter.
-built_with_use() {
-   local hidden="no"
-   if [[ $1 == "--hidden" ]] ; then
-   hidden="yes"
-   shift
-   fi
-
-   local missing_action="die"
-   if [[ $1 == "--missing" ]] ; then
-   missing_action=$2
-   shift ; shift
-   case ${missing_action} in
-   true|false|die) ;;
-   *) die "unknown action '${missing_action}'";;
-   esac
-   fi
-
-   local opt=$1
-   [[ ${opt:0:1} = "-" ]] && shift || opt="-a"
-
-   local PKG=$(best_version $1)
-   [[ -z ${PKG} ]] && die "Unable to resolve $1 to an installed package"
-   shift
-
-   has "${EAPI:-0}" 0 1 2 && local EROOT=${ROOT}
-   local USEFILE=${EROOT}/var/db/pkg/${PKG}/USE
-   local IUSEFILE=${EROOT}/var/db/pkg/${PKG}/IUSE
-
-   # if the IUSE file doesn't exist, the read will error out, we need to 
handle
-   # this gracefully
-   if [[ ! -e ${USEFILE} ]] || [[ ! -e ${IUSEFILE} && ${hidden} == "no" ]] 
; then
-   case ${missing_action} in
-   true)   return 0;;
-   false)  return 1;;
-   die)die "Unable to determine what USE flags $PKG 
was built with";;
-   esac
-   fi
-
-   if [[ ${hidden} == "no" ]] ; then
-   local IUSE_BUILT=( $(<"${IUSEFILE}") )
-   # Don't check USE_EXPAND #147237
-   local expand
-   for expand in $(echo ${USE_EXPAND} | tr '[:upper:]' 
'[:lower:]') ; do
-   if [[ $1 == ${expand}_* ]] ; then
-   expand=""
-   break
-   fi
-   done
-   if [[ -n ${expand} ]] ; then
-   if ! has $1 ${IUSE_BUILT[@]#[-+]} ; then
-   case ${missing_action} in
-   true)  return 0;;
-   false) return 1;;
-   die)   die "$PKG does not actually 
support the $1 USE flag!";;
-   esac
-   fi
-   fi
-   fi
-
-   local USE_BUILT=$(<${USEFILE})
-   while [[ $# -gt 0 ]] ; do
-   if [[ ${opt} = "-o" ]] ; then
-   has $1 ${USE_BUILT} && return 0
-   else
-   has $1 ${USE_BUILT} || return 1
-   fi
-   shift
-   done
-   [[ ${opt} = "-a" ]]
-}
-
 # @FUNCTION: make_wrapper
 # @USAGE:   [chdir] [libpaths] [installpath]
 # @DESCRIPTION:



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

2018-01-28 Thread Ulrich Müller
commit: 5d1440912c5b39f20dfb938fee1fedae125440ba
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat Jan 20 11:46:01 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jan 29 07:08:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d144091

eutils.eclass: Update function documentation.

Mention that einstalldocs() and in_iuse() are provided by the package
manager in EAPI 6.

in_iuse "must not" (rather than "should not") be used in global scope.

 eclass/eutils.eclass | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass
index be8251f5794..8bbd561015a 100644
--- a/eclass/eutils.eclass
+++ b/eclass/eutils.eclass
@@ -362,12 +362,14 @@ case ${EAPI:-0} in
 
 # @FUNCTION: einstalldocs
 # @DESCRIPTION:
-# Install documentation using DOCS and HTML_DOCS.
+# Install documentation using DOCS and HTML_DOCS, in EAPIs that do not
+# provide this function.  When available (i.e., in EAPI 6 or later),
+# the package manager implementation should be used instead.
 #
 # If DOCS is declared and non-empty, all files listed in it are
-# installed. The files must exist, otherwise the function will fail.
-# In EAPI 4 and subsequent EAPIs DOCS may specify directories as well,
-# in other EAPIs using directories is unsupported.
+# installed.  The files must exist, otherwise the function will fail.
+# In EAPI 4 and 5, DOCS may specify directories as well; in earlier
+# EAPIs using directories is unsupported.
 #
 # If DOCS is not declared, the files matching patterns given
 # in the default EAPI implementation of src_install will be installed.
@@ -424,10 +426,11 @@ einstalldocs() {
 # @FUNCTION: in_iuse
 # @USAGE: 
 # @DESCRIPTION:
-# Determines whether the given flag is in IUSE. Strips IUSE default prefixes
-# as necessary.
+# Determines whether the given flag is in IUSE.  Strips IUSE default
+# prefixes as necessary.  In EAPIs where it is available (i.e., EAPI 6
+# or later), the package manager implementation should be used instead.
 #
-# Note that this function should not be used in the global scope.
+# Note that this function must not be used in the global scope.
 in_iuse() {
debug-print-function ${FUNCNAME} "${@}"
[[ ${#} -eq 1 ]] || die "Invalid args to ${FUNCNAME}()"



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

2018-01-28 Thread Ulrich Müller
commit: 2fb466d07fe55ef21a2d96e6bbea93deadd2ae06
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jan 29 07:07:19 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jan 29 07:07:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fb466d0

x-modular.eclass: Delete unused eclass.

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

 eclass/x-modular.eclass | 622 
 1 file changed, 622 deletions(-)

diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass
deleted file mode 100644
index 7c5ea3fbd90..000
--- a/eclass/x-modular.eclass
+++ /dev/null
@@ -1,622 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# @DEAD
-# Removal on 2018-02-01.
-#
-# DEPRECATED
-# This eclass has been superseded by xorg-2
-# Please modify your ebuilds to use that instead
-#
-# @ECLASS: x-modular.eclass
-# @MAINTAINER:
-# x...@gentoo.org
-# @BLURB: Reduces code duplication in the modularized X11 ebuilds.
-# @DESCRIPTION:
-# This eclass makes trivial X ebuilds possible for apps, fonts, drivers,
-# and more. Many things that would normally be done in various functions
-# can be accessed by setting variables instead, such as patching,
-# running eautoreconf, passing options to configure and installing docs.
-#
-# All you need to do in a basic ebuild is inherit this eclass and set
-# DESCRIPTION, KEYWORDS and RDEPEND/DEPEND. If your package is hosted
-# with the other X packages, you don't need to set SRC_URI. Pretty much
-# everything else should be automatic.
-
-if [[ ${PV} = * ]]; then
-   GIT_ECLASS="git"
-   SNAPSHOT="yes"
-   SRC_URI=""
-fi
-
-# If we're a font package, but not the font.alias one
-FONT_ECLASS=""
-if [[ "${PN/#font-}" != "${PN}" ]] \
-   && [[ "${CATEGORY}" = "media-fonts" ]] \
-   && [[ "${PN}" != "font-alias" ]] \
-   && [[ "${PN}" != "font-util" ]]; then
-   # Activate font code in the rest of the eclass
-   FONT="yes"
-
-   # Whether to inherit the font eclass
-   FONT_ECLASS="font"
-fi
-
-inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \
-   ${FONT_ECLASS} ${GIT_ECLASS}
-
-EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_preinst 
pkg_postinst pkg_postrm"
-
-case "${EAPI:-0}" in
-   0|1)
-   ;;
-   2)
-   EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare 
src_configure"
-   ;;
-   *)
-   die "Unknown EAPI ${EAPI}"
-   ;;
-esac
-
-# exports must be ALWAYS after inherit
-EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS}
-
-# @ECLASS-VARIABLE: XDIR
-# @DESCRIPTION:
-# Directory prefix to use for everything. If you want to install to a
-# non-default prefix (e.g., /opt/xorg), change XDIR. This has not been
-# recently tested. You may need to uncomment the setting of datadir and
-# mandir in x-modular_src_install() or add it back in if it's no longer
-# there. You may also want to change the SLOT.
-XDIR="/usr"
-
-IUSE=""
-HOMEPAGE="https://www.x.org/wiki/";
-
-# @ECLASS-VARIABLE: SNAPSHOT
-# @DESCRIPTION:
-# If set to 'yes' and configure.ac exists, eautoreconf will run. Set
-# before inheriting this eclass.
-: ${SNAPSHOT:=no}
-
-# Set up SRC_URI for individual modular releases
-BASE_INDIVIDUAL_URI="https://www.x.org/releases/individual";
-# @ECLASS-VARIABLE: MODULE
-# @DESCRIPTION:
-# The subdirectory to download source from. Possible settings are app,
-# doc, data, util, driver, font, lib, proto, xserver. Set above the
-# inherit to override the default autoconfigured module.
-if [[ -z ${MODULE} ]]; then
-   case ${CATEGORY} in
-   app-doc) MODULE="doc" ;;
-   media-fonts) MODULE="font";;
-   x11-apps|x11-wm) MODULE="app" ;;
-   x11-misc|x11-themes) MODULE="util";;
-   x11-drivers) MODULE="driver"  ;;
-   x11-base)MODULE="xserver" ;;
-   x11-proto)   MODULE="proto"   ;;
-   x11-libs)MODULE="lib" ;;
-   esac
-fi
-
-if [[ -n ${GIT_ECLASS} ]]; then
-   
EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}.git";
-else
-   SRC_URI="${SRC_URI} ${BASE_INDIVIDUAL_URI}/${MODULE}/${P}.tar.bz2"
-fi
-
-SLOT="0"
-
-# Set the license for the package. This can be overridden by setting
-# LICENSE after the inherit. Nearly all FreeDesktop-hosted X packages
-# are under the MIT license. (This is what Red Hat does in their rpms)
-LICENSE="MIT"
-
-# Set up shared dependencies
-if [[ -n "${SNAPSHOT}" ]]; then
-# FIXME: What's the minimal libtool version supporting arbitrary versioning?
-   DEPEND="${DEPEND}
-   >=sys-devel/libtool-1.5
-   >=sys-devel/m4-1.4"
-   WANT_AUTOCONF="latest"
-   WANT_AUTOMAKE="latest"
-fi
-
-if [[ -n "${FONT}" ]]; then
-   RDEPEND="${RDEPEND}
-  

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

2018-01-28 Thread Hans de Graaff
commit: f4aa3174bfcba744e797485cad88cbc47135fb45
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 29 06:52:58 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 29 06:52:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4aa3174

avoid need for bundler dependency

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

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

diff --git a/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild 
b/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild
index c550eaee033..ccf55cfb3cf 100644
--- a/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild
+++ b/dev-ruby/public_suffix/public_suffix-2.0.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRAINSTALL="data"
@@ -22,6 +22,7 @@ ruby_add_bdepend "test? ( dev-ruby/mocha )"
 
 all_ruby_prepare() {
sed -i -e '/rubocop/I s:^:#:' \
-   -e '/yardoc/,/end/ s:^:#:' Rakefile || die
+   -e '/yardoc/,/end/ s:^:#:' \
+   -e '/bundler/ s:^:#:' Rakefile || die
sed -i -e '/reporters/I s:^:#:' test/test_helper.rb || die
 }

diff --git a/dev-ruby/public_suffix/public_suffix-3.0.1.ebuild 
b/dev-ruby/public_suffix/public_suffix-3.0.1.ebuild
index 0994676f87e..38e346e0bee 100644
--- a/dev-ruby/public_suffix/public_suffix-3.0.1.ebuild
+++ b/dev-ruby/public_suffix/public_suffix-3.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -24,6 +24,7 @@ ruby_add_bdepend "test? ( dev-ruby/mocha )"
 
 all_ruby_prepare() {
sed -i -e '/rubocop/I s:^:#:' \
-   -e '/yardoc/,/CLOBBER.include/ s:^:#:' Rakefile || die
+   -e '/yardoc/,/CLOBBER.include/ s:^:#:' \
+   -e '/bundler/ s:^:#:' Rakefile || die
sed -i -e '/reporters/I s:^:#:' test/test_helper.rb || die
 }



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

2018-01-28 Thread Hans de Graaff
commit: 2eb2b70918e79b9b6dc8878ca01e412340ad6a27
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 29 06:43:52 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 29 06:43:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eb2b709

app-admin/puppet: also backport ruby 2.3.6 fix to puppet 5.x

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-admin/puppet/puppet-5.3.3-r1.ebuild | 147 
 1 file changed, 147 insertions(+)

diff --git a/app-admin/puppet/puppet-5.3.3-r1.ebuild 
b/app-admin/puppet/puppet-5.3.3-r1.ebuild
new file mode 100644
index 000..1f8461b191d
--- /dev/null
+++ b/app-admin/puppet/puppet-5.3.3-r1.ebuild
@@ -0,0 +1,147 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC="doc:all"
+
+RUBY_FAKEGEM_EXTRAINSTALL="locales"
+
+inherit eutils user ruby-fakegem versionator
+
+DESCRIPTION="A system automation and configuration management software."
+HOMEPAGE="http://puppetlabs.com/";
+SRC_URI="http://downloads.puppetlabs.com/puppet/${P}.tar.gz";
+
+LICENSE="Apache-2.0 GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+IUSE="augeas diff doc emacs ldap rrdtool selinux shadow sqlite vim-syntax"
+RESTRICT="test"
+
+ruby_add_rdepend "
+   dev-ruby/hiera
+   dev-ruby/json:=
+   >=dev-ruby/facter-3.0.0
+   augeas? ( dev-ruby/ruby-augeas )
+   diff? ( dev-ruby/diff-lcs )
+   doc? ( dev-ruby/rdoc )
+   ldap? ( dev-ruby/ruby-ldap )
+   shadow? ( dev-ruby/ruby-shadow )
+   sqlite? ( dev-ruby/sqlite3 )
+   virtual/ruby-ssl
+   dev-ruby/hocon"
+
+ruby_add_bdepend "
+   doc? ( dev-ruby/yard )
+   test? (
+   dev-ruby/mocha
+   dev-ruby/rack
+   dev-ruby/rspec-its
+   )"
+# this should go in the above lists, but isn't because of test deps not being 
keyworded
+#   dev-ruby/rspec-collection_matchers
+
+RDEPEND+=" ${RDEPEND}
+   rrdtool? ( >=net-analyzer/rrdtool-1.2.23[ruby] )
+   selinux? (
+   sys-libs/libselinux[ruby]
+   sec-policy/selinux-puppet
+   )
+   vim-syntax? ( >=app-vim/puppet-syntax-3.0.1 )
+   >=app-portage/eix-0.18.0"
+PDEPEND="emacs? ( >=app-emacs/puppet-mode-0.3-r1 )"
+
+pkg_setup() {
+   enewgroup puppet
+   enewuser puppet -1 -1 /var/lib/puppet puppet
+}
+
+all_ruby_prepare() {
+   # Avoid spec that require unpackaged json-schema.
+   rm spec/lib/matchers/json.rb $( grep -Rl matchers/json spec) || die
+
+   # can't be run within portage.
+   epatch "${FILESDIR}/puppet-fix-tests-4.7.0.patch"
+
+   # fix systemd path
+   epatch "${FILESDIR}/puppet-systemd.patch"
+
+   # backport upstream fix for ruby 2.3.6 compatibility
+   epatch "${FILESDIR}/puppet-4-webrick-ruby.patch"
+
+   # Avoid specs that can only run in the puppet.git repository. This
+   # should be narrowed down to the specific specs.
+   rm spec/integration/parser/compiler_spec.rb || die
+
+   # Avoid failing spec that need further investigation.
+   rm spec/unit/module_tool/metadata_spec.rb || die
+}
+
+each_ruby_install() {
+   each_fakegem_install
+#  dosym "/usr/$(get_libdir)/ruby/gems/$(ruby_get_version)/gems/${P}" 
"/usr/$(get_libdir)/ruby/gems/$(ruby_get_version)/gems/${PN}"
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   # systemd stuffs
+   insinto /usr/lib/systemd/system
+   doins "${WORKDIR}/all/${P}/ext/systemd/puppet.service"
+
+   # tmpfiles stuff
+   insinto /usr/lib/tmpfiles.d
+   newins "${FILESDIR}/tmpfiles.d" "puppet.conf"
+
+   # openrc init stuff
+   newinitd "${FILESDIR}"/puppet.init-4.x puppet
+   newinitd "${FILESDIR}"/puppetmaster.init-4.x puppetmaster
+   newconfd "${FILESDIR}"/puppetmaster.confd puppetmaster
+
+   keepdir /etc/puppetlabs/puppet/ssl
+
+   keepdir /var/lib/puppet/facts
+   keepdir /var/lib/puppet/files
+   fowners -R puppet:puppet /var/lib/puppet
+
+   fperms 0750 /var/lib/puppet
+
+   fperms 0750 /etc/puppetlabs
+   fperms 0750 /etc/puppetlabs/puppet
+   fperms 0750 /etc/puppetlabs/puppet/ssl
+   fowners -R :puppet /etc/puppetlabs
+   fowners -R :puppet /var/lib/puppet
+
+   if use ldap ; then
+   insinto /etc/openldap/schema; doins ext/ldap/puppet.schema
+   fi
+
+   # ext and examples files
+   for f in $(find ext examples -type f) ; do
+   docinto "$(dirname ${f})"; dodoc "${f}"
+   done
+}
+
+pkg_postinst() {
+   elog
+   elog "Please, *don't* include the --ask option in EMERGE_EXTRA_OPTS as 
this could"
+   elog "cause puppet to hang while installing packages."
+   elog
+   elog "Portage Puppet module with Gentoo-specific resources:"
+   elog "http://forge.puppet

[gentoo-commits] repo/gentoo:master commit in: net-vpn/libreswan/

2018-01-28 Thread Hans de Graaff
commit: 2fe2ff27da4349fbd7b2977482fc69d632e80a10
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 29 06:28:30 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 29 06:28:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fe2ff27

net-vpn/libreswan: amd64 stable, bug 645878

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-vpn/libreswan/libreswan-3.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/libreswan/libreswan-3.22.ebuild 
b/net-vpn/libreswan/libreswan-3.22.ebuild
index 685d5f7414a..d770c08f7ce 100644
--- a/net-vpn/libreswan/libreswan-3.22.ebuild
+++ b/net-vpn/libreswan/libreswan-3.22.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit systemd toolchain-funcs
 
 SRC_URI="https://download.libreswan.org/${P}.tar.gz";
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 
 DESCRIPTION="IPsec implementation for Linux, fork of Openswan"
 HOMEPAGE="https://libreswan.org/";



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

2018-01-28 Thread Hans de Graaff
commit: 266fc340ab84430db726dca7c023728526e84857
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 29 06:16:47 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 29 06:16:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=266fc340

dev-ruby/uglifier: add 4.1.5

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/uglifier/Manifest  |  1 +
 dev-ruby/uglifier/uglifier-4.1.5.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/uglifier/Manifest b/dev-ruby/uglifier/Manifest
index 01505d08144..73ffd408327 100644
--- a/dev-ruby/uglifier/Manifest
+++ b/dev-ruby/uglifier/Manifest
@@ -3,3 +3,4 @@ DIST uglifier-3.2.0.tar.gz 169273 BLAKE2B 
b0263853c882859db8cc04c19e7f7f4bcbcef9
 DIST uglifier-4.0.2.tar.gz 184915 BLAKE2B 
eaac0fae612f357a51332db420e31d568b120dfe199d4f838db92082af888085123f322c4666d9c7d350ef3a51dc2d09ef78d11887771e8c414c9211688f6bfa
 SHA512 
77795a2b20ac6e5fc1c12cb95f868062e040988e1efc9cd7c13cd093f0ad5447fd09b1d88d5c1c53d69c9ea4e9fa22c9331df53421af5ecd3010138e91a9a87b
 DIST uglifier-4.1.2.tar.gz 190343 BLAKE2B 
0f3b0052d7065f36dcf9c52c226d6ddd27bcafe5a85b1a1a56a9d1d31ce8e7e8986e68ff471aa33cc2dd46688bd579594bf370203bd2ace26554b5dc71764a33
 SHA512 
8b11b3f8dc9e6dd6d2fe856decf11a569bea2040f1443fe437759fe4d14c0410158ef40b2660f38cd548358e78f6ac27929712e8fbc5708dc215099e58de1f75
 DIST uglifier-4.1.3.tar.gz 193256 BLAKE2B 
c0337da0ba4b857b80b1573538ed7596950b3bc0c13661fa7f98ff96a80cc0b747ca5361fdf9e3e646ff1b476419342194386a2d66c468e5272d7200ae3c
 SHA512 
5b0b1e5e4cd50ca2639b034ee6da672898da2dd16e226c5bf4bd706ef219d0a85f2c8a13b167766005a77207d5b32a6cfc62dce133d176d8bd37b77b27638062
+DIST uglifier-4.1.5.tar.gz 195773 BLAKE2B 
cad0a33648ab6d048390f39da51425401fba81b68b47ceec624871e980c1667527b1a4a7683ce3cf9567b61b7e506f1315473f935bd6461eecb64620afee2158
 SHA512 
f7824386fe09f78eabaee2b009a396970488a9d30cd0c6ff4d2bd51185180fef914f3ae0242f887dea92c833c59c72524747822d03bceef931db5091f1578990

diff --git a/dev-ruby/uglifier/uglifier-4.1.5.ebuild 
b/dev-ruby/uglifier/uglifier-4.1.5.ebuild
new file mode 100644
index 000..8451683993d
--- /dev/null
+++ b/dev-ruby/uglifier/uglifier-4.1.5.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby wrapper for UglifyJS JavaScript compressor"
+HOMEPAGE="https://github.com/lautis/uglifier";
+SRC_URI="https://github.com/lautis/uglifier/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="4"
+KEYWORDS="~amd64 ~arm ~arm64 ~amd64-linux"
+
+IUSE="test"
+
+ruby_add_rdepend ">=dev-ruby/execjs-0.3.0:*"
+
+ruby_add_bdepend "test? ( dev-ruby/sourcemap )"
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files -z/find -print0/' ${RUBY_FAKEGEM_GEMSPEC} || 
die
+}



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

2018-01-28 Thread Benda XU
commit: 08047a53f5d51d7a370ec0d5d047253cad60dc2a
Author: Benda Xu  gentoo  org>
AuthorDate: Thu Jan 25 12:08:17 2018 +
Commit: Benda XU  gentoo  org>
CommitDate: Thu Jan 25 12:08:17 2018 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=08047a53

bootstrap-prefix.sh: expose stage3 dynamic linker early on.

  The stage3 ld should use stage3 dynamic linker, to prevent from
  symbol clashes between host dynamic linker and stage3 shared
  libraries, like the errors below.

  4  /home/xxx/gentoo/usr/bin/ld: /lib64/libc.so.6: version
  `GLIBC_2.14' not found (required by /home/xxx/gentoo/usr/bin/ld
  5  /home/xxx/gentoo/usr/bin/ld: /lib64/libc.so.6: version
  `GLIBC_2.14' not found (required by 
/home/xxx/gentoo/usr/lib64/binutils/x86_64-pc-linux-gnu/2.29.1/libbfd-2.29.1.so)
  6  /home/xxx/gentoo/usr/bin/ld: /lib64/libc.so.6: version
  `GLIBC_2.14' not found (required by /home/xxx/gentoo/usr/lib64/libz.so.1)

 scripts/bootstrap-prefix.sh | 16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 5f2e0d473f..6e63af8575 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1627,14 +1627,22 @@ bootstrap_stage3() {
app-portage/elt-patches
sys-kernel/linux-headers
sys-libs/glibc
-   sys-devel/binutils-config
-   sys-libs/zlib
-   ${linker}
)
 
BOOTSTRAP_RAP=yes \
emerge_pkgs --nodeps "${pkgs[@]}" || return 1
grep -q 'apiversion=' "${ROOT}"/usr/bin/perl && rm 
"${ROOT}"/usr/bin/perl
+
+   pkgs=(
+   sys-devel/binutils-config
+   sys-libs/zlib
+   ${linker}
+   )
+   # use the new dynamic linker in place of rpath from now on.
+   RAP_DLINKER=$(echo "${ROOT}"/$(get_libdir)/ld*.so.[0-9])
+   export LDFLAGS="-L${ROOT}/usr/$(get_libdir) 
-Wl,--dynamic-linker=${RAP_DLINKER}"
+   emerge_pkgs --nodeps "${pkgs[@]}" || return 1
+
# remove stage2 ld so that stage3 ld is used by stage2 gcc.
[[ -f ${ROOT}/tmp/usr/${CHOST}/bin/ld ]] && mv 
${ROOT}/tmp/usr/${CHOST}/bin/ld{,.stage2}
else
@@ -1681,11 +1689,9 @@ bootstrap_stage3() {
&& ln -s ../../../libc++.1.dylib libstdc++.6.0.9.dylib )
fi
 
-   RAP_DLINKER=$(echo "${ROOT}"/$(get_libdir)/ld*.so.[0-9])
# try to get ourself out of the mudd, bug #575324
EXTRA_ECONF="--disable-compiler-version-checks $(rapx --disable-lto)" \
MYCMAKEARGS="-DCMAKE_USE_SYSTEM_LIBRARY_LIBUV=OFF" \
-   LDFLAGS="${LDFLAGS} $(rapx -Wl,--dynamic-linker=${RAP_DLINKER})" \
PYTHON_COMPAT_OVERRIDE=python2.7 \
emerge_pkgs --nodeps ${compiler} || return 1
# undo libgcc_s.so path of stage2



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

2018-01-28 Thread Ian Stakenvicius
commit: 189d79bd0c180d00159dde8fefcb929d7ce308be
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Mon Jan 29 05:28:02 2018 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Mon Jan 29 05:28:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=189d79bd

mail-client/thunderbird-bin: bump to 52.6 for security bug 645820

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 mail-client/thunderbird-bin/Manifest   | 116 ++---
 ...52.5.2.ebuild => thunderbird-bin-52.6.0.ebuild} |   0
 2 files changed, 58 insertions(+), 58 deletions(-)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index 21d376f9028..a18a99b51da 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -1,59 +1,59 @@
 DIST lightning-5.4.5.tar.xz 1898160 BLAKE2B 
ed8c2f54140444610fdcc91e375636d53d7ede9e70e114e072a55867278130e09bf54bb4e04cec789efa47ed8e92586b2217b53663e6057d6556df1a5a25f48f
 SHA512 
621d21c20bd74271f83ce9eb89b1f65cb43ab6182793bb7b9b3ca04799644f6700d15a59c6b312459d0471f5f243c3b9f534d1adf4bc72c36c2bd04f2937e3d3
-DIST thunderbird-52.5.2-ar.xpi 604235 BLAKE2B 
e3f465394770c70093d9f55642c5686a07ab2ee9cb9ccc240cb62897cd3468e50e3eabf2fa61784c19cf1d30891fa474564ece3bfdf13e42648a375376b3f23a
 SHA512 
02210011b262f75447f73ed31e584d5ca0774cf4f4a71621e7f0f118f1e5f8007ac362de51bcc1b246103171e5e17e2978b2fdb4b47dc2ffe298e74a6da06084
-DIST thunderbird-52.5.2-ast.xpi 541173 BLAKE2B 
536340ece0791c11b67d6b4a23f7ade2fa4e1609a96652bcb7cfd6ee0f3ce3613f5095bf3ae964035cc9bca47ccf66413748a8e1bb53258371e054ea4defd720
 SHA512 
8dffec5aa3c0a20d7b85fef5160efc38f9296b9099eb3c085fca5528e9eb290a9226ab46097594c5e6799e3b67c13c2075f1ea7b39f039a87b80b1a29e0166bf
-DIST thunderbird-52.5.2-be.xpi 570931 BLAKE2B 
c21d79d4f2e7eb77710e59b459713e83204f44cfd19084a3a31801f55033ef7cd04448cbc220d33fd1e4a32931554df1ce460046a81d0929a421edde8b545ac0
 SHA512 
5fc0de75825b5fca44221a838354c74ac39dc72153d1646dfc5f9508fe2d0e54af351bb87cee1ce85b4551571311c223080fbc40a8d95e065e8e9beed08ca1ed
-DIST thunderbird-52.5.2-bg.xpi 634897 BLAKE2B 
32cf339ed4c1f0ab6c48f24662682917a283235223f543e7790cd28a8892175d9fb5424a5987b1883f347bea173468103f9aec0f7227d85ce71f21d80c433f11
 SHA512 
211191e4b0f309e89573801ec74e18bc5fdea89df30ee2283b3a746ddd6a4909d5c8c2b81d222cdf69c36d64573d6f08c36992d1ccbfa6c897bdc538f077b154
-DIST thunderbird-52.5.2-bn-BD.xpi 676900 BLAKE2B 
1d9d7a25f782d6f7e685c4521fd0c74730581a259cfb206086c4589d859e99c7f7c92432c5af5538cb2ef6c05f7c083cbb6cc6a0a0e63988ab72818c58e69f3e
 SHA512 
18722a193c17873ff88e8abb206bc0e94868c7755173203489f6082603cfa23b39140665b3c3028dfcd288792fa631aa4baf58eb36ef59435f384a75ffac91b0
-DIST thunderbird-52.5.2-br.xpi 559380 BLAKE2B 
e34d0d44e6e1fb0199a7124acd785351beaf4e810f4bb77f38da012a35b729ac2eeda2ab4f6f63506a35e090c13760b22d5970476cdc1f33d06c0b4841bafdf7
 SHA512 
7dc1e29d4f49b7e649a2bdf1e4eeab6b59aa3683fb414beabe6f8ce771cca9f6647739d30f6742f20f8005b52bcf2ae3af2f98c4ef55670c88781d527f2c64e4
-DIST thunderbird-52.5.2-ca.xpi 569910 BLAKE2B 
d89970dc33faa486ec290bf7a968e6d3335e2c5cdbef38fbfd7486c76a87ef170930c1a4590d79b2eebf157181acea695cdd5fbb765153183aaab04c3281be38
 SHA512 
1e033db56d0e211bd3999c62fc53efddde70d5f9c7ed3adcee5782b71f06ac21cbef36785938875dba1ff2bff3670e81ced888bf0c4a8c10acecf672f2678623
-DIST thunderbird-52.5.2-cs.xpi 579149 BLAKE2B 
b252feb937865690a61d0f3395c9869cb013c72f5ae8162a3c37e9c8238d10163e478ee6e78b1b9c0fee8298334855b46298d7f84c1a4dd4c299c3892adf
 SHA512 
13645959796cb9bdc90f5418884a9ddfe1c16ff449cc1408199163980eaef0a38c08717c0a63c4028f44677defa04c794a6c6713518720deb83be7314d4c870a
-DIST thunderbird-52.5.2-cy.xpi 554857 BLAKE2B 
a1dd0fb805a3c222faa3c128b5b392ce33ecfe1b41d723d56781b302c89aba2a61a4a56ee7b722d9cf425aa93c52678ce131164f0ce399ab2c3c58547e99ea77
 SHA512 
d66380cd6b98bc1ce8910ba35962e2f573b10ca809aba131efe15b3417a43eaf9398403e3ba11de276c66bf3ec65f62c49a2c2e1bd6b3d0df7b9e6ba89a6a172
-DIST thunderbird-52.5.2-da.xpi 543334 BLAKE2B 
616af0c6d509a7342266e05286185b938e35c9b2ff427be2d755b22ef692a569605a81a147b6941f37ee3e2b2e5dc64ff2ca16a3be074cfc4dceedc0e92dbe34
 SHA512 
4e9490db2c1edf8e7e0c9aa7c8f11a348a1432585b07d8fbf072882e0f1f7a46acc9d79a3b0ad84016cf146c30336eded1645f4c390f120c89750ae2c8438725
-DIST thunderbird-52.5.2-de.xpi 555742 BLAKE2B 
e0ac00b1744dd58078d584ab2c1e4107a8224c217f80aaa559d99528d8b2692dac057c62c64b3dfe394d46ff5eefc2f96d50003d2c80abbc86d4c7d311e68196
 SHA512 
aff86f3d89004554e5d893548c48d11941ef46114aa513143237da2cc3206014d6769c9885d99e6448337aefcd7d5df57376d9515b268e0c459118493b6ac573
-DIST thunderbird-52.5.2-el.xpi 662964 BLAKE2B 
f81280db8e759117d4ad42fc50d39df24b3531e47e5b525ea478ac0c98a0ed570fc534dce695f3ad40b3d8484e77236a5040b28b9c0c1e8010814ef130e8a198
 SHA512 
d7a84df9711dc4b2efb8fea2e9e033558ff5357f1e1aea4096ec877fe75e72becfc535d1dbfa4678bddde7c5835e40e6296a4cb468272f1d475a50cc2148c654
-DIST thunderbird-52.5.2-en-GB.xpi 531234 BLAKE2B 
d38c668ff79f3

[gentoo-commits] repo/gentoo:master commit in: www-client/firefox/, eclass/

2018-01-28 Thread Ian Stakenvicius
commit: ab6c61a91b1e2d945cd9def0f9b9f2976a366efd
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Mon Jan 29 05:17:09 2018 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Mon Jan 29 05:21:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab6c61a9

www-client/firefox: bump to 58.0

Apulse users may have issues with sound support; pulseaudio and alsa seem solid 
however.

Bug: http://bugs.gentoo.org/645494
Package-Manager: Portage-2.3.13, Repoman-2.3.3

 eclass/mozconfig-v6.58.eclass  | 394 +
 www-client/firefox/Manifest| 186 +-
 .../{firefox-57.0.4.ebuild => firefox-58.0.ebuild} |  87 ++---
 3 files changed, 510 insertions(+), 157 deletions(-)

diff --git a/eclass/mozconfig-v6.58.eclass b/eclass/mozconfig-v6.58.eclass
new file mode 100644
index 000..c3d5bc5e3ca
--- /dev/null
+++ b/eclass/mozconfig-v6.58.eclass
@@ -0,0 +1,394 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+#
+# @ECLASS: mozconfig-v6.57.eclass
+# @MAINTAINER:
+# mozilla team 
+# @BLURB: the new mozilla common configuration eclass for FF33 and newer, v6
+# @DESCRIPTION:
+# This eclass is used in mozilla ebuilds (firefox, thunderbird, seamonkey)
+# to provide a single common place for the common mozilla engine compoments.
+#
+# The eclass provides all common dependencies as well as common use flags.
+#
+# Some use flags which may be optional in particular mozilla packages can be
+# supported through setting eclass variables.
+#
+# This eclass inherits mozconfig helper functions as defined in mozcoreconf-v3,
+# and so ebuilds inheriting this eclass do not need to inherit that.
+
+case ${EAPI} in
+   0|1|2|3|4)
+   die "EAPI=${EAPI} not supported"
+   ;;
+   5)
+   inherit multilib
+   ;;
+esac
+
+inherit flag-o-matic toolchain-funcs mozcoreconf-v5
+
+# @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_WIFI
+# @DESCRIPTION:
+# Set this variable before the inherit line, when an ebuild needs to provide
+# optional necko-wifi support via IUSE="wifi".  Currently this would include
+# ebuilds for firefox, and potentially seamonkey.
+#
+# Leave the variable UNSET if necko-wifi support should not be available.
+# Set the variable to "enabled" if the use flag should be enabled by default.
+# Set the variable to any value if the use flag should exist but not be 
default-enabled.
+
+# @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_JIT
+# @DESCRIPTION:
+# Set this variable before the inherit line, when an ebuild needs to provide
+# deterministic jit support via IUSE="jit".  The upstream default will be used
+# otherwise, which is generally to enable jit unless support for the platform
+# is missing.
+#
+# Set the variable to "enabled" if the use flag should be enabled by default.
+# Set the variable to any value if the use flag should exist but not be 
default-enabled.
+
+# @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_GTK3
+# @DESCRIPTION:
+# Set this variable before the inherit line, when an ebuild can provide
+# optional gtk3 support via IUSE="force-gtk3".  Currently this would include
+# thunderbird and seamonkey in the future, once support is ready for testing.
+#
+# Leave the variable UNSET if gtk3 support should not be optionally available.
+# Set the variable to "enabled" if the use flag should be enabled by default.
+# Set the variable to any value if the use flag should exist but not be 
default-enabled.
+# If gtk+:3 is to be the standard toolkit, do not use this and instead use
+# MOZCONFIG_OPTIONAL_GTK2ONLY.
+
+# @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_GTK2ONLY
+# @DESCRIPTION:
+# Set this variable before the inherit line, when an ebuild can provide
+# optional gtk2-only support via IUSE="gtk2".
+#
+# Note that this option conflicts directly with MOZCONFIG_OPTIONAL_GTK3, both
+# variables cannot be set at the same time and this variable will be ignored if
+# MOZCONFIG_OPTIONAL_GTK3 is set.
+#
+# Leave the variable UNSET if gtk2-only support should not be available.
+# Set the variable to "enabled" if the use flag should be enabled by default.
+# Set the variable to any value if the use flag should exist but not be 
default-enabled.
+
+# @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_QT5
+# @DESCRIPTION:
+# Set this variable before the inherit line, when an ebuild can provide
+# optional qt5 support via IUSE="qt5".  Currently this would include
+# ebuilds for firefox, but thunderbird and seamonkey could follow in the 
future.
+#
+# Leave the variable UNSET if qt5 support should not be available.
+# Set the variable to "enabled" if the use flag should be enabled by default.
+# Set the variable to any value if the use flag should exist but not be 
default-enabled.
+
+# use-flags common among all mozilla ebuilds
+IUSE="${IUSE} dbus debug neon pulseaudio selinux startup-notification 
system-harfbuzz
+ system-icu system-jpeg system-libevent system

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

2018-01-28 Thread Ian Stakenvicius
commit: 1e97240791b182b3f5fed0df6d82565bf79befe0
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Sat Jan 27 15:15:01 2018 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Mon Jan 29 05:21:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e972407

mail-client/thunderbird: bump to 52.6 for security bug 645820

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 mail-client/thunderbird/Manifest  |  57 
 mail-client/thunderbird/thunderbird-52.6.0.ebuild | 342 ++
 2 files changed, 399 insertions(+)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 15eeca68aa7..1284cf44c1d 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -177,3 +177,60 @@ DIST thunderbird-52.5.2-vi.xpi 637163 BLAKE2B 
500b5ead1dfee91cb5978ee4d0b3005046
 DIST thunderbird-52.5.2-zh-CN.xpi 593611 BLAKE2B 
20f22074684477f55a65b55e19f1d0c619b33dac325eb23bad3e2d57669d92e7a04c96d5fbe45876bd78ee1164df5e45e6bb47cf6497d11e6437c8e5fbaeda8f
 SHA512 
49f429b4fedac5179a5529e8eecfdb1f1872778382ff887c51a57deae2cb8a34680a0d7f7f7dd7684f640d12bbfaefe0d52f4fde272a9cbb9bb7664e3e14f7fc
 DIST thunderbird-52.5.2-zh-TW.xpi 595728 BLAKE2B 
65ba2aa3945820cb2fce6a16e7f21cb023da2a867dc414100dfe0f33ba230407495c596b63c96c14fe4976a516a34634b058d42e4d7697d98b871517a93d7249
 SHA512 
e2dc77c43bdc4c7e8dbf43618c0a526825eda4bf630ae60438878b376b9ac2c36c71dcba7a68f3ac6b41d9fc4fc6e7e79679a53c3f3765fa0ebe4ae6d6b4b73b
 DIST thunderbird-52.5.2.source.tar.xz 230369636 BLAKE2B 
b1fe2dab986298de590cf7beab9845459ac7582119179599842a4577de7e402d7cdc569dd6b36db017690245df576f96066bf3dfa77be24a35b700559ce56942
 SHA512 
d626d3d37959539b15b5d2ae4a580fcc160380974bfc1a69a1fc8ff2435932e90a69fa386d5ecb6721d9154603c6b7d063e3368f6f995fea057eb593c06ef4ff
+DIST thunderbird-52.6.0-ar.xpi 604236 BLAKE2B 
fb3d14519457fee343dc1be376338f55cbb9f68b33cf9fd11c3c9d9300bf10dee9b65c44d01d20bc9a2b626194625f6a23fe0e517c1ce0c97d809dd9ad2415e2
 SHA512 
6d9be27bc7fd08b55d68b07eba1791db4d18af06e2fadf4ed252934cc610954b85fdfc5fca5366d15444a6f693f60fcd7f466ed5cf23881c586f214d15e3
+DIST thunderbird-52.6.0-ast.xpi 541173 BLAKE2B 
63aa8617d4824525ac7c9287d01b8066a48958dbc9e19f51c48d63e0a52f4f51ded9b1205edc8bdc1e1ef1ebdba5a2a1c81045c483bae8b7a39dcf674a9efe6f
 SHA512 
7838b5195baa3bd0c46ac4a81e8ebb9a4e113062fc217a619a41300795abecf277de7e0898a58f52575d37ca7fef841a2f27ce6ced90cc508fdebe9a40381d3a
+DIST thunderbird-52.6.0-be.xpi 570932 BLAKE2B 
1aacf13bbe52c14f6bfa5e484663ea49eb0cf4272feb7010a60574de0002d9dcc1733e058ebfac0c2fb0acc707fe4a8cc1c6fac9d9bc403bbcd12dc27b46c3d4
 SHA512 
914968e2fe7dc279deaf0e30d676ab7f028953aff890153bdc2f2b07cb47f9225c4f9bcf9ffafa44f8b289f29f1132466b443cb976deba6021cadf9a9ae1a59e
+DIST thunderbird-52.6.0-bg.xpi 634897 BLAKE2B 
309da88bd5224953b04e34e28ae480782c0b25ec1e63c50b27340dd6877b3ef388df875b31d27a87dee67b5644a304b7e3c91179d89a27c3a27f6003a56a1e36
 SHA512 
60e85b6c842a779668b1ba3c73a6fb2254846db7fbf37fbe06fbfe71b65deade435f45511b43920a293ab9d4d32276809196169a7513a7a982fd904c3671c5b9
+DIST thunderbird-52.6.0-bn-BD.xpi 676901 BLAKE2B 
98c01cff6b1f47879a87cdb192f0512d14626c9bc334d58b8c25d172dac92b24e45444de9ed4fdae2aa6c866942ddebb11ea2f2ad74ca787c1422a531c8616d6
 SHA512 
d4576943e7ab07973e9384c287840d7ae0d70a5d30f57f6dd0ee2e050a78eabc74db4ca2c1473ebce981af8cba903c65f349e523585d5fcf63f1dc4c0a6d
+DIST thunderbird-52.6.0-br.xpi 559380 BLAKE2B 
472e60477e224ccc5c421ef5de08b2096bc4035a843ead771fc108e0abeab38c5b40d53b76576d694c5c305f9ac1845625491e20baa2f4d1b718f9c491e6f658
 SHA512 
2620ad382f20d84073e1f2a6e21dff2ddd722d4d17ef14e57ffeb2efe2359b6767dc418c81e250864db73d204326ae61ed5550d65b557c503f01c57cc780778a
+DIST thunderbird-52.6.0-ca.xpi 569910 BLAKE2B 
346e7ad2f20e1af7563a159c20e66f0512587167f4e2076422ac3a1f84a7b7cd68e0f03fda20deb5319eaa68f71e4ec9be43fb84bdb173c4b30fa1441d7514a1
 SHA512 
0cd3b488b3af4b30304d892544d605d992ece56909290571e097c832c572a883de7664a451b631b71e561e75b4fa2fee07efb75400d90a75007d96d20b13fab2
+DIST thunderbird-52.6.0-cs.xpi 579150 BLAKE2B 
f866368547878453df392565d641e8b7343176f53132c97891da5d10de70c242539c06f0eaa8066b5520f1424cdd9771a82796ec416edefb2ac81ba31dd87fa5
 SHA512 
ea681ffcb8ed9c7b8b251f42614283852319d62a5fea537f4df43978deb63b221669253a59110eb86320dd7923be1d7d79d85f87c4256c79d2d4ef40db833035
+DIST thunderbird-52.6.0-cy.xpi 554858 BLAKE2B 
23341d1bc4647632789aaf10625e59b0c4450ba45b3096bfc8f913c4f28ab7045739d2a694f84884ff7a37eff0414505208e1f6ca9aa4c68378a5d8a5e215179
 SHA512 
5e199d720027526fb8f477530ee99d41bd283b4e751fdc58ea55dbc558d0ebbbd61ffeace8cda176e2ea69afb08d57567b5dcf09443608100184884548ea1041
+DIST thunderbird-52.6.0-da.xpi 543336 BLAKE2B 
3c6d894db0e1cd89857fa394698f81b815e7e8b023f0435268440b6e45c0603425d0bb19011c08135eb4d1a0e0dc5e548ae66d705c46bfec58e4a45022592ec2
 SHA512 
8de93f940992627068a68d2d817c1bca290b056eddfc04a01662eed23e370f4275f5cdb8ed26b25fa549eef2046c1022b6caa2391a0728dff3a296cc709

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

2018-01-28 Thread Ian Stakenvicius
commit: 142e53e2913e00711827d3a984a7e9608c7957e8
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Mon Jan 29 05:11:35 2018 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Mon Jan 29 05:11:35 2018 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=142e53e2

mozconfig-v6.58: drop doubled pulseaudio dep

 eclass/mozconfig-v6.58.eclass | 2 --
 1 file changed, 2 deletions(-)

diff --git a/eclass/mozconfig-v6.58.eclass b/eclass/mozconfig-v6.58.eclass
index c3d5bc5..c77e88e 100644
--- a/eclass/mozconfig-v6.58.eclass
+++ b/eclass/mozconfig-v6.58.eclass
@@ -103,8 +103,6 @@ RDEPEND=">=app-text/hunspell-1.5.4:=
media-libs/fontconfig
>=media-libs/freetype-2.4.10
kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) )
-   pulseaudio? ( || ( media-sound/pulseaudio
-   >=media-sound/apulse-0.1.9 ) )
virtual/freedesktop-icon-theme
dbus? ( >=sys-apps/dbus-0.60
>=dev-libs/dbus-glib-0.72 )



[gentoo-commits] proj/mozilla:master commit in: www-client/firefox/

2018-01-28 Thread Ian Stakenvicius
commit: 2e3aa91d6516cc0aff84107ffb3d33302cb5644e
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Mon Jan 29 05:11:12 2018 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Mon Jan 29 05:11:12 2018 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=2e3aa91d

firefox-58: fix alsa, drop USE=nsplugin

 www-client/firefox/Manifest|  2 +-
 www-client/firefox/firefox-58.0.ebuild | 12 
 2 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 28bcf06..690b992 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -66,7 +66,7 @@ DIST firefox-58.0-nl.xpi 465557 SHA256 
9e6fc901b49c666796ff2fd1dd1cbd7d536eebae0
 DIST firefox-58.0-nn-NO.xpi 458437 SHA256 
627ec9b8a42f0d5c8bde791642bb1a3b8aa99d2e0f391176d37a6da6d86ae50f SHA512 
7280bbeea871060beff687f1aaef0cdecd580aee31e20cd940ba31b7435703e5bd7cc5dc5c388b9c24b8524d23fbd8e8f605ec5fe7b76aa6ebeecde25765
 WHIRLPOOL 
89beaab266674d86b93791d375155584ed41e38ad940f30312058fb5a26ea6704812f67c3db7ca8ef5204289924eb1df5cb991ab905e229cc4b644f995f7b189
 DIST firefox-58.0-or.xpi 502794 SHA256 
02b420331fd283f381440edf189fd95d5b0dcbf4970c944c17138908164c3102 SHA512 
ce655189eb82c3d069198f62ae27c2d069ffd744f86176e0a277e6f4f436f2b56bfe1c616bfd4f583947fc0c286cfcbca57f7c91537df2e5f2444cbb68777560
 WHIRLPOOL 
294721973ed93719ad1910b87d9190bce6b1f2d64767dee4c1ac21fc80806850c44fa95025703d086ccae528135e2a193bca174966ca182f8b8c15c9eba7c25b
 DIST firefox-58.0-pa-IN.xpi 500540 SHA256 
627b3dc246f4abccba6096f1931208d90517201c934f6f1c7918d67f85e3ddd1 SHA512 
44a2afa33b1d6f8ce31d60fc7ccf05db5d82da6106fb3c6c378a15841801b86d81ba89cde7bfc84312865cc1933529b4116363cc1e967b82d7c30a9985314391
 WHIRLPOOL 
78b72f08bfa7498166a0ac5729772ada7c41b6f1844966da3ae872edcb9ea650d54b09ab683de46889a3c46e435ac1c0c9a4f6f3614d83b062bf8d71159606da
-DIST firefox-58.0-patches-01.tar.xz 10712 SHA256 
08e47229a30664458f7b5bcd888aefffd188bf6c897ef1d70333886d7883694c SHA512 
4f41ae45a94a124074c834f10b0924c97ad0a7deef7798069a597c650a92a4e95cb1263b574057490787832c6b05e17da8bd31f226051eb24df5396c1555a042
 WHIRLPOOL 
dae857134793b9ef1a545959a02d2295f2a307dd4d252c824f84dd41557b661adefde358129bd9f4ead4bddc9ba21b6bcf571e8bbdb36badbaaa9694b9b3f1d7
+DIST firefox-58.0-patches-02.tar.xz 11136 SHA256 
98008f39610346aeb989fe5b54b44bbdd3df9586e321987c1e6f505a4994 SHA512 
dc70d807bd1a5cca08b4e3373fe10a864409b37f8ca8446f4db87edc917eab1b17f154d5f4066f09887d69cbf71fe920c32170b75fec0e46b8cb95da57bc9733
 WHIRLPOOL 
a85ff50d8c3339d721612e5a31415b3686c01cdf3fb7376c6075b2ca9a43f1fb26be6777f915d46632041e76dcdc842e71e2d0b577ddda919441e2c9a69081b2
 DIST firefox-58.0-pl.xpi 365868 SHA256 
046511fc3966d0e5ac4e6e1dfe836e212024cec0a43a0ef975583db8cc2ed471 SHA512 
e60235d342bf8abf09d7c22608668db5f4987dfa3ecac84443204f0cedbe80b82870f6d32a623cabde2dae194366519ae1f56a327e54ccd328d2c5add9106d64
 WHIRLPOOL 
c45012b2765a75ced5407816d2487111329a104121ec2dad1578eaf7efdc8c02ab9ad0d86373e042be3db502b0f20ecc7218aa18b6229a6b7d7a5442651964c5
 DIST firefox-58.0-pt-BR.xpi 463581 SHA256 
845810f1585a41f4ba1acb70644e1df4899c4c67fea8c1fa9e17ff8b7a0edb9d SHA512 
df64cd8f7c18757cd8df9ba2ff86408e17ab1afa72d73b0a757d936b5738461f268dbb90afe1a2e02af2c81a0225f71ff709d8ee0823668e8866538ce0663ea8
 WHIRLPOOL 
596819d565306f04b94f1d97903bbc4199258c398433300eed2e8bcd31ff28dd394533f3ab1b0356c558cd9e3d5afbe8de3e6ec363b66773279b3dd29e9a47e8
 DIST firefox-58.0-pt-PT.xpi 466900 SHA256 
1e391e4236a6bd9af4ab7edf6264b861e3adc151c149b70a71b6a471c07a17b3 SHA512 
4149884abd4f852b14f3d3271ed1e2330f53c17b7c697da7cdd18f3aaeefe3ba3d36a7ec44188cfa515c4e08f692b66c977bcc6e4c38fb096154947b13d342be
 WHIRLPOOL 
91b5ce14c9acdaf060622ce6ad5c6ad38e77ef06dd1f71c7a6634988251ea9de11403f920adb902cfee755c48c439325e3aa632588e05911266970c24c2d997d

diff --git a/www-client/firefox/firefox-58.0.ebuild 
b/www-client/firefox/firefox-58.0.ebuild
index d95e617..6fb6841 100644
--- a/www-client/firefox/firefox-58.0.ebuild
+++ b/www-client/firefox/firefox-58.0.ebuild
@@ -24,7 +24,7 @@ if [[ ${MOZ_ESR} == 1 ]]; then
 fi
 
 # Patch version
-PATCH="${PN}-58.0-patches-01"
+PATCH="${PN}-58.0-patches-02"
 MOZ_HTTP_URI="https://archive.mozilla.org/pub/${PN}/releases";
 
 MOZCONFIG_OPTIONAL_WIFI=1
@@ -39,7 +39,7 @@ KEYWORDS="~amd64 ~x86"
 
 SLOT="0"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
-IUSE="bindist eme-free +gmp-autoupdate hardened hwaccel jack nsplugin 
+screenshot selinux test"
+IUSE="bindist eme-free +gmp-autoupdate hardened hwaccel jack +screenshot 
selinux test"
 RESTRICT="!bindist? ( bindist )"
 
 PATCH_URIS=( 
https://dev.gentoo.org/~{anarchy,axs,polynomial-c}/mozilla/patchsets/${PATCH}.tar.xz
 )
@@ -258,12 +258,6 @@ src_install() {

"${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \
|| die
 
-   if use nsplugin; then
-   echo "pref(\"plugin.load_flash_only\", false);" >> \
-

[gentoo-commits] repo/gentoo:master commit in: dev-lang/sassc/

2018-01-28 Thread Alexandre Rostovtsev
commit: 9915b3d36444c3e439657bdfca9022f0200b609f
Author: Alexandre Rostovtsev  gentoo  org>
AuthorDate: Mon Jan 29 03:17:12 2018 +
Commit: Alexandre Rostovtsev  gentoo  org>
CommitDate: Mon Jan 29 03:17:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9915b3d3

dev-lang/sassc: version bump to 3.4.8

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 dev-lang/sassc/Manifest   |  1 +
 dev-lang/sassc/sassc-3.4.8.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-lang/sassc/Manifest b/dev-lang/sassc/Manifest
index 45e9aa7f3ae..9eb4a8d8d7f 100644
--- a/dev-lang/sassc/Manifest
+++ b/dev-lang/sassc/Manifest
@@ -1 +1,2 @@
 DIST sassc-3.4.7.tar.gz 25834 BLAKE2B 
7eaeed2f3e454420c82e0f0b8b3877a3256835297d33e35b34517a8981d96e708de5e94364db97ffc6b702e4c136bc37db6e6d11347388b8dbecb75373bf1593
 SHA512 
f515241260557f17932ed2fc205375169c40d5b83c7a24577487426e33be607a5a8a90e58512a4e6d4ed3796f391b09ef6e148f9b293a76c73cea267dcf9440b
+DIST sassc-3.4.8.tar.gz 25840 BLAKE2B 
6292202cf9ec361e65cc6c9505bd7cd800880b7c9dd4b28eece7550c215144ba5a4bec3e06376cb056b827d9920cde2386ab3d622b218913c87c43f21316eceb
 SHA512 
ea62f1e0e9c03683a45522cfca0efdc25308f8dca56b86de0733c802268a9b9017ab7df7dbde8b3916b04ca662a96fc4a4984e02baa3b612dcfe4007743bc868

diff --git a/dev-lang/sassc/sassc-3.4.8.ebuild 
b/dev-lang/sassc/sassc-3.4.8.ebuild
new file mode 100644
index 000..6e0a0b03d30
--- /dev/null
+++ b/dev-lang/sassc/sassc-3.4.8.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+if [[ ${PV} = * ]]; then
+   EGIT_REPO_URI="https://github.com/sass/sassc.git";
+   inherit git-r3
+   KEYWORDS=
+else
+   SRC_URI="https://github.com/sass/sassc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86 ~amd64-linux"
+fi
+
+DESCRIPTION="A libsass command line driver"
+HOMEPAGE="https://github.com/sass/sassc";
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND=">=dev-libs/libsass-3.4:="
+DEPEND="${RDEPEND}"
+
+DOCS=( Readme.md )
+
+src_prepare() {
+   default
+
+   if [[ ${PV} != * ]]; then
+   [[ -f VERSION ]] || echo "${PV}" > VERSION
+   fi
+
+   eautoreconf
+}



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

2018-01-28 Thread Alexandre Rostovtsev
commit: 002f07d42fc7adad88f740c19a0fc44f1f88dc87
Author: Alexandre Rostovtsev  gentoo  org>
AuthorDate: Mon Jan 29 03:14:38 2018 +
Commit: Alexandre Rostovtsev  gentoo  org>
CommitDate: Mon Jan 29 03:15:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=002f07d4

dev-libs/libsass: version bump to 3.4.8

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 dev-libs/libsass/Manifest |  1 +
 dev-libs/libsass/libsass-3.4.8.ebuild | 54 +++
 2 files changed, 55 insertions(+)

diff --git a/dev-libs/libsass/Manifest b/dev-libs/libsass/Manifest
index 09cff5a0af8..a03bf97da79 100644
--- a/dev-libs/libsass/Manifest
+++ b/dev-libs/libsass/Manifest
@@ -1 +1,2 @@
 DIST libsass-3.4.7.tar.gz 319824 BLAKE2B 
ca3e7091816474e318fb1eaefa01e5e361a66715b6267500a93f80dfc8b34bdc595e6ddc4b1872e4399093468d4ac06a9760685d8941d92f18e1834df7715b04
 SHA512 
5d743d4345b11e9e5315aa858637d3388d2b464150a46bc8a712e1e5d1b3df9c1e6b4dcac26f91827f1c38db24a5a084d04c0962a428f2994f42ad66a25b35a8
+DIST libsass-3.4.8.tar.gz 320415 BLAKE2B 
dc7b377134ffe6619687e3a7f4c47b5a5d79d0dc530c2d301845f2af0956b674a840bb8cacbc764abfb15a001b15db2642c3f51142c746e98a15cca184c51adf
 SHA512 
5cbf5621ee45111f4a31113d2ea39f03be51d42c6e8978e7b2bfd89a8863c262a19fc17a31b910c9547dc687696b1fd4e17f2d050ec2afc4c4266dbc2ad00b72

diff --git a/dev-libs/libsass/libsass-3.4.8.ebuild 
b/dev-libs/libsass/libsass-3.4.8.ebuild
new file mode 100644
index 000..78b45f223a4
--- /dev/null
+++ b/dev-libs/libsass/libsass-3.4.8.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils ltprune multilib-minimal
+
+if [[ ${PV} = * ]]; then
+   EGIT_REPO_URI="https://github.com/sass/libsass.git";
+   inherit git-r3
+   KEYWORDS=
+else
+   SRC_URI="https://github.com/sass/libsass/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86 ~amd64-linux"
+fi
+
+DESCRIPTION="A C/C++ implementation of a Sass CSS compiler"
+HOMEPAGE="https://github.com/sass/libsass";
+LICENSE="MIT"
+SLOT="0/0" # libsass soname
+IUSE="static-libs"
+
+RDEPEND=""
+DEPEND="${RDEPEND}"
+
+DOCS=( Readme.md SECURITY.md )
+
+src_prepare() {
+   default
+
+   if [[ ${PV} != * ]]; then
+   [[ -f VERSION ]] || echo "${PV}" > VERSION
+   fi
+   eautoreconf
+
+   # only sane way to deal with various version-related scripts, env 
variables etc.
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   econf \
+   $(use_enable static-libs static) \
+   --enable-shared
+}
+
+multilib_src_install() {
+   emake DESTDIR="${D}" install
+   prune_libtool_files
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   dodoc -r "${S}/docs"
+}



[gentoo-commits] repo/gentoo:master commit in: sci-physics/lammps/

2018-01-28 Thread Christoph Junghans
commit: 307e866d964377e434e66d5134dde840daa416c3
Author: Christoph Junghans  gentoo  org>
AuthorDate: Sat Jan 27 03:07:16 2018 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Jan 29 02:58:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=307e866d

sci-physics/lammps: version bump

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sci-physics/lammps/Manifest   |   1 +
 sci-physics/lammps/lammps-20180117.ebuild | 131 ++
 2 files changed, 132 insertions(+)

diff --git a/sci-physics/lammps/Manifest b/sci-physics/lammps/Manifest
index 4f44c46a59c..66f3eaa1b88 100644
--- a/sci-physics/lammps/Manifest
+++ b/sci-physics/lammps/Manifest
@@ -18,4 +18,5 @@ DIST lammps-7Dec15.tar.gz 82168656 BLAKE2B 
c32a2f543ba5c9eaa96486f169228b4748d08
 DIST lammps-8Dec15.tar.gz 90700099 BLAKE2B 
04dcc39e9fb47e4033ba41eee7455d503c9c9616a11a2d8881948a2708bdde6c502ef1b7ab912c027c390bb40b927714de3fba91afdced0f26dfc0fa86775ed3
 SHA512 
0382683a363975bd27cc1722932cd5b8eda9933bc9c676af135d7e4d784acd93cf60b2b47a19dbb9e4a05e5cf2fbf6ccc2c2a914c39e92e87009e23ead2eb497
 DIST lammps-9Dec15.tar.gz 82374079 BLAKE2B 
8b5054b59162b98bf98980a8ece344af733ded5befe67404f03ed48c8191dbf640992b978f8fabcfb6936c876bf0e756aee68b4a50542dfc9c28f5d448846717
 SHA512 
a35ef5b3ee99162b96ce1a6d6cc3b0dc18bab7f693b824fc7ad52a7477234ed45c3081c399155725f1ebc3bd1bed312176f08d3fc807e7099d4b41b8f75fd11c
 DIST lammps-9Jan17.tar.gz 109694893 BLAKE2B 
dc3af18d4a7db43d22bc4d2ed79366f7f1b73cd5f8951d289ce6ad0a572b14fd8f1bc946382afe9fc60bc46354beb374caf09d195419235e077bf9386259f194
 SHA512 
ea7c61bc9607ff0e4c0af5c1a668d400841dfc11c6d6aacc6131a48a5a0d11cb6857303626b583d5119e5257b5b338853c5afafcc3870bb30d5743ff5648348c
+DIST lammps-patch_17Jan2018.tar.gz 91721592 BLAKE2B 
d606a5fd699f3e7aaa777065532f778e96a5b21b88de3fcce69e79c4931fea233ed1ad68f56120865061623c6e33282b9f23f927a7a9820f8f824a241e5cd823
 SHA512 
533ada073882e9bfc6431db62c4899005983d9efbbb043bcb50b2b0a7af2b11c411bbcc6523b2ffbd5d46531b24573f4b98a07dc757bacbc2f27bb056d7956ff
 DIST lammps-patch_1Sep2017.tar.gz 88751184 BLAKE2B 
013ba612c67767c0e11b64f0b726a81c534ceb763ac9eba9a94ef9e02166278c28cb5937162b83f783b80fef6471b0e265e45245cc5594eaa2b27ec2d5f972cf
 SHA512 
01b56484d6e9d03c0cdc2f8100f571d6e0a354b08bda7f22176744f2724e566443514e7d8abb0571d4207709155441644d4c6dbcf17ee2a8dc4f10cb6c3e8ac1

diff --git a/sci-physics/lammps/lammps-20180117.ebuild 
b/sci-physics/lammps/lammps-20180117.ebuild
new file mode 100644
index 000..1f8951205bb
--- /dev/null
+++ b/sci-physics/lammps/lammps-20180117.ebuild
@@ -0,0 +1,131 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit cmake-utils fortran-2 python-r1
+
+convert_month() {
+   local months=( "" Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec )
+   echo ${months[${1#0}]}
+}
+
+MY_PV="patch_$((10#${PV:6:2}))$(convert_month ${PV:4:2})${PV:0:4}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="Large-scale Atomic/Molecular Massively Parallel Simulator"
+HOMEPAGE="http://lammps.sandia.gov/";
+SRC_URI="https://github.com/lammps/lammps/archive/${MY_PV}.tar.gz -> 
${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="cuda examples gzip lammps-memalign mpi netcdf python test"
+
+DEPEND="
+   app-arch/gzip
+   media-libs/libpng:0
+   sys-libs/zlib
+   mpi? (
+   virtual/mpi
+   sci-libs/hdf5[mpi]
+   )
+   python? ( ${PYTHON_DEPS} )
+   sci-libs/voro++
+   virtual/blas
+   virtual/lapack
+   sci-libs/fftw:3.0
+   netcdf? ( sci-libs/netcdf )
+   cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 )
+   dev-cpp/eigen:3
+   "
+RDEPEND="${DEPEND}"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+S="${WORKDIR}/${MY_P}/cmake"
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=ON
+   -DENABLE_MPI=$(usex mpi)
+   -DENABLE_GPU=$(usex cuda)
+   -DENABLE_TESTING=$(usex test)
+   -DENABLE_ASPHERE=ON
+   -DENABLE_BODY=ON
+   -DENABLE_CLASS2=ON
+   -DENABLE_COLLOID=ON
+   -DENABLE_COMPRESS=ON
+   -DENABLE_CORESHELL=ON
+   -DENABLE_DIPOLE=ON
+   -DENABLE_GRANULAR=ON
+   -DENABLE_KSPACE=ON
+   -DFFT=FFTW3
+   -DENABLE_MANYBODY=ON
+   -DENABLE_MC=ON
+   -DENABLE_MEAM=ON
+   -DENABLE_MISC=ON
+   -DLAMMPS_XDR=ON #630444
+   -DENABLE_MOLECULE=ON
+   -DENABLE_PERI=ON
+   -DENABLE_QEQ=ON
+   -DENABLE_REAX=ON
+   -DENABLE_REPLICA=ON
+   -DENABLE_RIGID=ON
+   -DENABLE_SHOCK=ON
+   -DENABLE_SNAP=ON
+   -DENABLE_SRD=ON
+   -DENABLE_PYTHO

[gentoo-commits] repo/gentoo:master commit in: net-firewall/shorewall/

2018-01-28 Thread Thomas Deutschmann
commit: 5ee08f7bcc4f812c43f064a53bc5cd984c4e1c0b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 02:38:09 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 02:38:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ee08f7b

net-firewall/shorewall: Bump to v5.1.11.2

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 net-firewall/shorewall/Manifest  |   7 +
 net-firewall/shorewall/shorewall-5.1.11.2.ebuild | 456 +++
 2 files changed, 463 insertions(+)

diff --git a/net-firewall/shorewall/Manifest b/net-firewall/shorewall/Manifest
index e05d33ffa18..86a4324585a 100644
--- a/net-firewall/shorewall/Manifest
+++ b/net-firewall/shorewall/Manifest
@@ -1,28 +1,35 @@
 DIST shorewall-5.1.10.1.tar.bz2 535652 BLAKE2B 
afeb0c79e5e191e923f0e44f9925ec32f2d97a5962dd6fcc75e28ded1b3b13f33ddcbd4f60f261b2b7b4cf2112ff9074545d88c8dfc02bf2147c3c0c2b941c97
 SHA512 
75b63b418bfacf3151f1833547ca187a9d87e1657bf02f9225d5067bc05a137cabb74709cf6d64c37e2f8fd8d5304154f265968e8b707ba08167d91be93f4ef5
 DIST shorewall-5.1.10.2.tar.bz2 535735 BLAKE2B 
49594b997e90859db4fd94f3017ea47696579791cca881460fd916eba1c477d62f9ed2fbc25b22a3ff425084a169260cf6a6d00f1f59e574c996b97dfccb7232
 SHA512 
6f0d88ecef130be4283103ebf2c31ddad6791caf113448fcf29664a951067a070a7becf495e4a5cbe96aff81aff7d2028011421208e6d0dbbfa4608f3350f401
 DIST shorewall-5.1.11.1.tar.bz2 538193 BLAKE2B 
88e2d83eab34edb8009469e1b9b30631f313e43f431287acdf2b6bdb4bdd4660717219c56968f0cfa95db8247e3f0078f9b90da0095f64f5995f55bce5d72658
 SHA512 
c8d273e9a387a1c68ca4b1790604a25b928ef015c4ac170d9633d62acac3b38f33e6cdb50f56343750c3b7d565c361d4f5f8cdc0e0fdf7feb594dc5460b3808a
+DIST shorewall-5.1.11.2.tar.bz2 551818 BLAKE2B 
f0bc4b7f55e0e5189b50c1fb274229c4485802ea891256cb39c1bb89ff90b8a7e6c46d095fcedc9900ff211d218627c7822db9abc5e3bb6d6764be75b2462f01
 SHA512 
d214d497b70a56e40af115148907fd36cfc3daa8bd8689605cdc52c0312a0843d081f8c6a33f725cfd6778b400a91eb5c5d538f5083c8ac27f72652ce026714c
 DIST shorewall-5.1.9.tar.bz2 529237 BLAKE2B 
abf9b54ef6083d322bd2e4fc00f98c2058759b2bf0e30f4aeebbc3cbb0e943543c7c304c8fb3b00ed7fd60391d1afa7d713cb88040a76eb8db549426ba3450e3
 SHA512 
a29155d8d92e21b7fc6d3fb3ec0be5ff4a648237317ff83aac523ce6d04c863c2ff48a14d368130431c41897e15068a54a2c0d3d0d9867017c11ba50a14e02b5
 DIST shorewall-core-5.1.10.1.tar.bz2 83398 BLAKE2B 
4c0f2321cecd35f7590cdb533e7ae08616f9f9c2a1e125382d568f681e0459dd9bf027c1f2a23531830ca9dbed181f5b57e0c688c6eb0eff5653fc199a78d4d2
 SHA512 
5f7b924505f3c78df2602c3dc637983f21b0f15383bf1b346205cb54ddf129c04a7a7e10617aeb624a2b1fc770d23b0f5e844db5ec639eab7af468942e3eda3e
 DIST shorewall-core-5.1.10.2.tar.bz2 83729 BLAKE2B 
774aab1eb21c73f5d1ad116b2fdbc91d7fe692124aad527c59fb2f88cfb38529d43fbf8a20e95d9b3679f8c5690a6d31bc3b474f0f9ccc65b2d160d809754021
 SHA512 
3977ee81d37107889c51a1d68c450073e16558ef84518a083932134abdbce195ca00f3149691dd42f224bea5f87d4d18a4456d440ac7759ab1418ebf54c76bef
 DIST shorewall-core-5.1.11.1.tar.bz2 85004 BLAKE2B 
ae3f016b8d22ea93bbb4f49cae958ec44e443e92a8a39675fe3d8b75335dee38649806069f14458d7c3a7905734bbd5ca2677e6c4b640f2034108314173bacd0
 SHA512 
a87b857db961d001fc0ffe2f504df01e8b08ba05014986132e63dbe01e07411983a0c0b16b1e3618f2551d3d3a3fbb02d20569cb295ffd8ffc77ad65ff745b0b
+DIST shorewall-core-5.1.11.2.tar.bz2 85166 BLAKE2B 
7e6d3d858163fa6ab20a3b663bc59339c4d2a244f0f4b00a125e48a45739dadaa102a4c8637e662db5452967bcc36b0ee95752c0d92bcfd8cd9dcaaf6d03fadc
 SHA512 
6951a4d3139bd624ecc654a1992dba367cee84d6de218f20d6c2929b34de51a6a53f94061e1e9dc286094312ece75f113e123983c80de0f450d6e786093c6030
 DIST shorewall-core-5.1.9.tar.bz2 81533 BLAKE2B 
5c47197c6dc6d43c63efef4806707948c0edfb39b237a214249522200a6b0429b0a2a0e8350af5cf448f28ca2b07a9258f91a88d8e9fb7112b2f265100fdc666
 SHA512 
633ac2f5bd25946f90d6351ea510976b01a61292616856f119602813510e1c24b55e8d86531a854fdbca03572d9eb2865a8e94a1566d36bf286c411e92182877
 DIST shorewall-docs-html-5.1.10.1.tar.bz2 4279932 BLAKE2B 
64ec2a5b544e3f8ded23271022599799190cce0653b35e7183f9e56ae94f6ecec1fd8633a7c5ccef4b5dafcef0cdfe59e317f2aab46e8dce6bec433545f2241f
 SHA512 
22bbf18fabd63edc605b1f25c8a3a34e3677554beafa0b3e698d73675a566a134b8a6d1389fca4e2d98fe984ec92a3540ab1fc720ecd78a4b75587c53ce59cb0
 DIST shorewall-docs-html-5.1.10.2.tar.bz2 4280287 BLAKE2B 
7db8c9d9f2f8793ab9c318f3d2a4983792b72e84d6b81f7509ce36143c8540aec805733e428d507d3effe43928f7b83404b59530aae99092e240db4b57b6df96
 SHA512 
8991d41c22d7c1771a328fa94cd76069a6e6d54c0db48866e3b5638f96ea9eeb91df96caff266a437017802fd2f85b09fbca89baa161eb8677b3035e41907234
 DIST shorewall-docs-html-5.1.11.1.tar.bz2 4280930 BLAKE2B 
259c333d27e41201a808714df2a632a60cc61dd24bdf47472e71dc520f6c9ec04ed03f6f21f993649f727e023130a9562cb2bdcbe5b750f7dfaedea1d7feab1e
 SHA512 
68f17e6f99192a8c47f377dbd298a84a77054d8c47e73c838e2f8eb68f9504ef73e60915d505fc33327ae4994db879414dce26f3b5dc2d637aea2aa42335daeb
+DIST shorewall-docs-html-5.1.11.2.tar.bz2 4281096 BLAKE2B 
467

[gentoo-commits] repo/gentoo:master commit in: app-admin/paxtest/, sys-apps/paxctl/, sys-kernel/hardened-sources/, ...

2018-01-28 Thread Mike Frysinger
commit: d20e55e6797e5b14f2cbb91be5458f14606d2f43
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Jan 29 02:12:35 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Jan 29 02:13:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d20e55e6

use https:// with grsecurity.net

 app-admin/paxtest/paxtest-0.9.15-r1.ebuild   | 4 ++--
 eclass/pax-utils.eclass  | 2 +-
 sys-apps/gradm/gradm-3.1.201603152148.ebuild | 2 +-
 sys-apps/gradm/gradm-3.1.201607172312.ebuild | 2 +-
 sys-apps/gradm/gradm-3.1.201608131257.ebuild | 2 +-
 sys-apps/gradm/gradm-3.1.201708012022.ebuild | 2 +-
 sys-apps/paxctl/paxctl-0.7-r2.ebuild | 4 ++--
 sys-apps/paxctl/paxctl-0.8.ebuild| 4 ++--
 sys-apps/paxctl/paxctl-0.9.ebuild| 4 ++--
 sys-apps/paxctld/paxctld-1.2.2.ebuild| 4 ++--
 sys-kernel/hardened-sources/metadata.xml | 2 +-
 11 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/app-admin/paxtest/paxtest-0.9.15-r1.ebuild 
b/app-admin/paxtest/paxtest-0.9.15-r1.ebuild
index f90f07439b8..ed402aa9eaf 100644
--- a/app-admin/paxtest/paxtest-0.9.15-r1.ebuild
+++ b/app-admin/paxtest/paxtest-0.9.15-r1.ebuild
@@ -6,8 +6,8 @@ EAPI="6"
 inherit eutils multilib toolchain-funcs
 
 DESCRIPTION="PaX regression test suite"
-HOMEPAGE="http://pax.grsecurity.net";
-SRC_URI="http://grsecurity.net/~spender/${P}.tar.gz";
+HOMEPAGE="https://pax.grsecurity.net";
+SRC_URI="https://grsecurity.net/~spender/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/eclass/pax-utils.eclass b/eclass/pax-utils.eclass
index ca8f15d9c91..ac64ee35fed 100644
--- a/eclass/pax-utils.eclass
+++ b/eclass/pax-utils.eclass
@@ -47,7 +47,7 @@ PAX_MARKINGS=${PAX_MARKINGS:="PT XT"}
 # @CODE
 #
 # Default flags are 'PeMRS', which are the most restrictive settings.  Refer
-# to http://pax.grsecurity.net/ for details on what these flags are all about.
+# to https://pax.grsecurity.net/ for details on what these flags are all about.
 #
 # Please confirm any relaxation of restrictions with the Gentoo Hardened team.
 # Either ask on the gentoo-hardened mailing list, or CC/assign hardened@g.o on

diff --git a/sys-apps/gradm/gradm-3.1.201603152148.ebuild 
b/sys-apps/gradm/gradm-3.1.201603152148.ebuild
index 1501e02d909..5b0e441a008 100644
--- a/sys-apps/gradm/gradm-3.1.201603152148.ebuild
+++ b/sys-apps/gradm/gradm-3.1.201603152148.ebuild
@@ -7,7 +7,7 @@ inherit flag-o-matic toolchain-funcs versionator eutils udev
 MY_PV="$(replace_version_separator 2 -)"
 
 DESCRIPTION="Administrative interface for the grsecurity Role Based Access 
Control system"
-HOMEPAGE="http://www.grsecurity.net/";
+HOMEPAGE="https://www.grsecurity.net/";
 
SRC_URI="https://dev.gentoo.org/~blueness/hardened-sources/gradm/${PN}-${MY_PV}.tar.gz";
 LICENSE="GPL-2"
 

diff --git a/sys-apps/gradm/gradm-3.1.201607172312.ebuild 
b/sys-apps/gradm/gradm-3.1.201607172312.ebuild
index 1501e02d909..5b0e441a008 100644
--- a/sys-apps/gradm/gradm-3.1.201607172312.ebuild
+++ b/sys-apps/gradm/gradm-3.1.201607172312.ebuild
@@ -7,7 +7,7 @@ inherit flag-o-matic toolchain-funcs versionator eutils udev
 MY_PV="$(replace_version_separator 2 -)"
 
 DESCRIPTION="Administrative interface for the grsecurity Role Based Access 
Control system"
-HOMEPAGE="http://www.grsecurity.net/";
+HOMEPAGE="https://www.grsecurity.net/";
 
SRC_URI="https://dev.gentoo.org/~blueness/hardened-sources/gradm/${PN}-${MY_PV}.tar.gz";
 LICENSE="GPL-2"
 

diff --git a/sys-apps/gradm/gradm-3.1.201608131257.ebuild 
b/sys-apps/gradm/gradm-3.1.201608131257.ebuild
index 92ec90a2790..a12d1fbde72 100644
--- a/sys-apps/gradm/gradm-3.1.201608131257.ebuild
+++ b/sys-apps/gradm/gradm-3.1.201608131257.ebuild
@@ -7,7 +7,7 @@ inherit flag-o-matic toolchain-funcs versionator eutils udev
 MY_PV="$(replace_version_separator 2 -)"
 
 DESCRIPTION="Administrative interface for the grsecurity Role Based Access 
Control system"
-HOMEPAGE="http://www.grsecurity.net/";
+HOMEPAGE="https://www.grsecurity.net/";
 
SRC_URI="https://dev.gentoo.org/~blueness/hardened-sources/gradm/${PN}-${MY_PV}.tar.gz";
 LICENSE="GPL-2"
 

diff --git a/sys-apps/gradm/gradm-3.1.201708012022.ebuild 
b/sys-apps/gradm/gradm-3.1.201708012022.ebuild
index 58076065718..31c5550113d 100644
--- a/sys-apps/gradm/gradm-3.1.201708012022.ebuild
+++ b/sys-apps/gradm/gradm-3.1.201708012022.ebuild
@@ -7,7 +7,7 @@ inherit flag-o-matic toolchain-funcs versionator eutils udev
 MY_PV="$(replace_version_separator 2 -)"
 
 DESCRIPTION="Administrative interface for the grsecurity Role Based Access 
Control system"
-HOMEPAGE="http://www.grsecurity.net/";
+HOMEPAGE="https://www.grsecurity.net/";
 
SRC_URI="https://dev.gentoo.org/~blueness/hardened-sources/gradm/${PN}-${MY_PV}.tar.gz";
 LICENSE="GPL-2"
 

diff --git a/sys-apps/paxctl/paxctl-0.7-r2.ebuild 
b/sys-apps/paxctl/paxctl-0.7-r2.ebuild
index 37fad4c8031..9457562da53 100644
--- a/sys-apps/paxctl/paxctl-0.7-r2.ebuild
+++ b/sys-apps/paxctl/paxctl-0.7-r2.ebuild
@

[gentoo-commits] repo/gentoo:master commit in: games-board/tablebase-syzygy/

2018-01-28 Thread Thomas Deutschmann
commit: 0c91f45af8d087a4184f4ece1ec28bd9bfdd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 01:08:27 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 01:08:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c91f45a

games-board/tablebase-syzygy: stable for x86. mark stable for the remaining 
arches using the ALLARCHES policy.

Bug: https://bugs.gentoo.org/637318
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213-r100.ebuild | 2 +-
 games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213-r100.ebuild 
b/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213-r100.ebuild
index d3a168c7796..4c25faf0de4 100644
--- a/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213-r100.ebuild
+++ b/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213-r100.ebuild
@@ -40,7 +40,7 @@ unset i j k m tb345
 
 LICENSE="public-domain" # machine-generated tables
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="6-pieces"
 
 # there is no use-conditional mirror restriction,

diff --git a/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213.ebuild 
b/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213.ebuild
index b7a21c851ee..1ede75fed76 100644
--- a/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213.ebuild
+++ b/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213.ebuild
@@ -34,7 +34,7 @@ unset i j k l m tb6
 
 LICENSE="public-domain" # machine-generated tables
 SLOT="nofetch"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 RESTRICT="fetch"
 
 RDEPEND="~${CATEGORY}/${P}:0"



[gentoo-commits] repo/gentoo:master commit in: sys-devel/llvmgold/

2018-01-28 Thread Thomas Deutschmann
commit: 8c976a2ab04728259ee88814ce37c0b795d3258e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:34:26 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:34:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c976a2a

sys-devel/llvmgold: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-devel/llvmgold/llvmgold-5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/llvmgold/llvmgold-5.ebuild 
b/sys-devel/llvmgold/llvmgold-5.ebuild
index 9b125c94f65..7a4104c540f 100644
--- a/sys-devel/llvmgold/llvmgold-5.ebuild
+++ b/sys-devel/llvmgold/llvmgold-5.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE=""
 
 RDEPEND="sys-devel/llvm:${PV}[gold]



[gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/

2018-01-28 Thread Thomas Deutschmann
commit: b32e0fbd05a064c0e995ad4414038eda85496423
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:35:36 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:35:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32e0fbd

sys-devel/clang: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-devel/clang/clang-5.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/clang/clang-5.0.1.ebuild 
b/sys-devel/clang/clang-5.0.1.ebuild
index c3f455ad897..8b668622e89 100644
--- a/sys-devel/clang/clang-5.0.1.ebuild
+++ b/sys-devel/clang/clang-5.0.1.ebuild
@@ -30,7 +30,7 @@ LLVM_TARGET_USEDEPS=${ALL_LLVM_TARGETS[@]/%/?}
 
 LICENSE="UoI-NCSA"
 SLOT="$(ver_cut 1)"
-KEYWORDS="amd64 ~arm64 ~x86 ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm64 x86 ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="debug default-compiler-rt default-libcxx doc +static-analyzer
test xml z3 kernel_FreeBSD ${ALL_LLVM_TARGETS[*]}"
 



[gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt-sanitizers/

2018-01-28 Thread Thomas Deutschmann
commit: ec5a12832f8ca10eb4d7178a0f91d9f3f38e0b21
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:35:19 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:35:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec5a1283

sys-libs/compiler-rt-sanitizers: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-5.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-5.0.1.ebuild 
b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-5.0.1.ebuild
index 2506cbdc154..5ee85dd9e6c 100644
--- a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-5.0.1.ebuild
+++ b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-5.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz
 
 LICENSE="|| ( UoI-NCSA MIT )"
 SLOT="${PV%_*}"
-KEYWORDS="amd64 ~arm64 ~x86 ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm64 x86 ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="test"
 
 LLVM_SLOT=${SLOT%%.*}



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

2018-01-28 Thread Thomas Deutschmann
commit: 003b2d48a4857847f22037eeeca615770a8aa988
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:37:02 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:37:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=003b2d48

dev-python/lit: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

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

diff --git a/dev-python/lit/lit-5.0.1.ebuild b/dev-python/lit/lit-5.0.1.ebuild
index d0a8dea336d..7dc0572aa36 100644
--- a/dev-python/lit/lit-5.0.1.ebuild
+++ b/dev-python/lit/lit-5.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz";
 
 LICENSE="UoI-NCSA"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="test"
 
 S=${WORKDIR}/${MY_P}/utils/lit



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

2018-01-28 Thread Thomas Deutschmann
commit: d3663816bd19411349acbdbf98d09e2106a03e38
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:31:15 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:31:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3663816

sys-apps/systemd: x86 stable (bug #638972)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-apps/systemd/systemd-236-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/systemd/systemd-236-r5.ebuild 
b/sys-apps/systemd/systemd-236-r5.ebuild
index 595d8f608fa..c4083d365b1 100644
--- a/sys-apps/systemd/systemd-236-r5.ebuild
+++ b/sys-apps/systemd/systemd-236-r5.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} ==  ]]; then
 else
SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> 
${P}.tar.gz
https://dev.gentoo.org/~floppym/dist/${P}-patches-2.tar.gz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
 fi
 
 PYTHON_COMPAT=( python{3_4,3_5,3_6} )



[gentoo-commits] repo/gentoo:master commit in: net-vpn/libreswan/

2018-01-28 Thread Thomas Deutschmann
commit: ee06e4527b2f0f1e2a01d1c4365b766ebbb1ac39
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:45:45 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:45:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee06e452

net-vpn/libreswan: x86 stable (bug #645878)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 net-vpn/libreswan/libreswan-3.22.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-vpn/libreswan/libreswan-3.22.ebuild 
b/net-vpn/libreswan/libreswan-3.22.ebuild
index bef31f06ba4..685d5f7414a 100644
--- a/net-vpn/libreswan/libreswan-3.22.ebuild
+++ b/net-vpn/libreswan/libreswan-3.22.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit systemd toolchain-funcs
 
 SRC_URI="https://download.libreswan.org/${P}.tar.gz";
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 
 DESCRIPTION="IPsec implementation for Linux, fork of Openswan"
 HOMEPAGE="https://libreswan.org/";



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

2018-01-28 Thread Thomas Deutschmann
commit: 942e6ba4330a632a86bdd48a3931ccac1d48ebb5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:43:40 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:43:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=942e6ba4

dev-python/logbook: x86 stable (bug #645354)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 dev-python/logbook/logbook-1.1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/logbook/logbook-1.1.0.ebuild 
b/dev-python/logbook/logbook-1.1.0.ebuild
index 119a2db9139..60fd3362286 100644
--- a/dev-python/logbook/logbook-1.1.0.ebuild
+++ b/dev-python/logbook/logbook-1.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/mitsuhiko/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="doc test"
 DISTUTILS_IN_SOURCE_BUILD=1
 



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

2018-01-28 Thread Thomas Deutschmann
commit: 6bed9db6223978a6cdf74962edec4bd42e6d7b25
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:33:32 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:33:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bed9db6

sys-libs/llvm-libunwind: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-libs/llvm-libunwind/llvm-libunwind-5.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-5.0.1.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-5.0.1.ebuild
index 46dcf6b21a5..22e26e7dbe5 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-5.0.1.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-5.0.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://releases.llvm.org/${PV/_//}/libunwind-${PV/_/}.src.tar.xz";
 
 LICENSE="|| ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="debug +static-libs"
 
 RDEPEND="!sys-libs/libunwind"



[gentoo-commits] repo/gentoo:master commit in: games-board/tablebase-syzygy/

2018-01-28 Thread Thomas Deutschmann
commit: 855d3ef92388b466ad7dcbf3aad4c0ebc2f46c2b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:42:15 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:42:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=855d3ef9

games-board/tablebase-syzygy: x86 stable (bug #637318)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 .../tablebase-syzygy/tablebase-syzygy-0_pre20131213-r100.ebuild   | 4 ++--
 games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213.ebuild| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213-r100.ebuild 
b/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213-r100.ebuild
index 2c9b00663c8..d3a168c7796 100644
--- a/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213-r100.ebuild
+++ b/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213-r100.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -40,7 +40,7 @@ unset i j k m tb345
 
 LICENSE="public-domain" # machine-generated tables
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="6-pieces"
 
 # there is no use-conditional mirror restriction,

diff --git a/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213.ebuild 
b/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213.ebuild
index 6a9ea68aa70..b7a21c851ee 100644
--- a/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213.ebuild
+++ b/games-board/tablebase-syzygy/tablebase-syzygy-0_pre20131213.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -34,7 +34,7 @@ unset i j k l m tb6
 
 LICENSE="public-domain" # machine-generated tables
 SLOT="nofetch"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 RESTRICT="fetch"
 
 RDEPEND="~${CATEGORY}/${P}:0"



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

2018-01-28 Thread Thomas Deutschmann
commit: 37706cf3787b2b2f94b2a47d9fa2a82110991cd0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:32:23 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:32:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37706cf3

net-mail/mu: x86 stable (bug #645860)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 net-mail/mu/mu-0.9.18-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-mail/mu/mu-0.9.18-r2.ebuild b/net-mail/mu/mu-0.9.18-r2.ebuild
index a4ac8770cf9..288e651c506 100644
--- a/net-mail/mu/mu-0.9.18-r2.ebuild
+++ b/net-mail/mu/mu-0.9.18-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/djcb/mu/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="emacs"
 
 # net-mail/mailutils also installes /usr/bin/mu.  Block it until somebody



[gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm-common/

2018-01-28 Thread Thomas Deutschmann
commit: 0e89d288d1a7f6151bd498b08deae0a71dda73e3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:34:44 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:34:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e89d288

sys-devel/llvm-common: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-devel/llvm-common/llvm-common-5.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/llvm-common/llvm-common-5.0.1.ebuild 
b/sys-devel/llvm-common/llvm-common-5.0.1.ebuild
index 2d7d68c0d3f..28511c6310f 100644
--- a/sys-devel/llvm-common/llvm-common-5.0.1.ebuild
+++ b/sys-devel/llvm-common/llvm-common-5.0.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz";
 
 LICENSE="UoI-NCSA"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~x86 ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~ppc-macos ~x64-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="!sys-devel/llvm:0"



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

2018-01-28 Thread Thomas Deutschmann
commit: b4926a5bfc67f90c02418d398837f9d94ddef57b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:36:38 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:36:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4926a5b

sys-libs/libcxx: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

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

diff --git a/sys-libs/libcxx/libcxx-5.0.1.ebuild 
b/sys-libs/libcxx/libcxx-5.0.1.ebuild
index 62e1063b3e7..ff69acef179 100644
--- a/sys-libs/libcxx/libcxx-5.0.1.ebuild
+++ b/sys-libs/libcxx/libcxx-5.0.1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://releases.llvm.org/${PV/_//}/${P/_/}.src.tar.xz";
 
 LICENSE="|| ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="elibc_glibc elibc_musl +libcxxabi libcxxrt +libunwind +static-libs test"
 REQUIRED_USE="libunwind? ( || ( libcxxabi libcxxrt ) )
?? ( libcxxabi libcxxrt )"



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/gpsd/

2018-01-28 Thread Thomas Deutschmann
commit: 924657c9a71cf20258821fd14cee91515c90976a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:44:35 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:44:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=924657c9

sci-geosciences/gpsd: x86 stable (bug #632372)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sci-geosciences/gpsd/gpsd-3.17-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-geosciences/gpsd/gpsd-3.17-r2.ebuild 
b/sci-geosciences/gpsd/gpsd-3.17-r2.ebuild
index 13be867bc3d..7f2eb654ad0 100644
--- a/sci-geosciences/gpsd/gpsd-3.17-r2.ebuild
+++ b/sci-geosciences/gpsd/gpsd-3.17-r2.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-2
 else
SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
 fi
 
 DESCRIPTION="GPS daemon and library for USB/serial GPS devices and GPS/mapping 
clients"



[gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/

2018-01-28 Thread Thomas Deutschmann
commit: 7c52972c398ddfa1cbbcca0d39380597b3e44560
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:36:20 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:36:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c52972c

sys-devel/llvm: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-devel/llvm/llvm-5.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/llvm/llvm-5.0.1.ebuild b/sys-devel/llvm/llvm-5.0.1.ebuild
index de5bfd4188d..3ed4a1f47f0 100644
--- a/sys-devel/llvm/llvm-5.0.1.ebuild
+++ b/sys-devel/llvm/llvm-5.0.1.ebuild
@@ -33,7 +33,7 @@ ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
 LICENSE="UoI-NCSA rc BSD public-domain
llvm_targets_ARM? ( LLVM-Grant )"
 SLOT="$(ver_cut 1)"
-KEYWORDS="amd64 ~arm ~arm64 ~x86 ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="debug doc gold libedit +libffi ncurses test
kernel_Darwin ${ALL_LLVM_TARGETS[*]}"
 



[gentoo-commits] repo/gentoo:master commit in: games-util/pyfa/

2018-01-28 Thread Thomas Deutschmann
commit: bb854d5f9966054c960b55621f3b4aef55973875
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:43:23 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:43:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb854d5f

games-util/pyfa: x86 stable (bug #645354)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 games-util/pyfa/pyfa-1.34.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-util/pyfa/pyfa-1.34.0.ebuild 
b/games-util/pyfa/pyfa-1.34.0.ebuild
index dbd5180ef37..471fc242d02 100644
--- a/games-util/pyfa/pyfa-1.34.0.ebuild
+++ b/games-util/pyfa/pyfa-1.34.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -15,10 +15,10 @@ SLOT="0"
 if [[ ${PV} =  ]]; then
EGIT_REPO_URI="https://github.com/pyfa-org/Pyfa.git";
inherit git-r3
-   KEYWORDS=""
+   KEYWORDS="x86"
 else
SRC_URI="https://github.com/pyfa-org/Pyfa/archive/v${PV}.tar.gz -> 
pyfa-${PV}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 x86"
 fi
 IUSE="+graph"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2018-01-28 Thread Thomas Deutschmann
commit: 84244a5ffc10c561157ccaed302c15903f383d94
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:33:52 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:33:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84244a5f

sys-libs/libomp: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

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

diff --git a/sys-libs/libomp/libomp-5.0.1.ebuild 
b/sys-libs/libomp/libomp-5.0.1.ebuild
index 9075688c9e4..a6754f30794 100644
--- a/sys-libs/libomp/libomp-5.0.1.ebuild
+++ b/sys-libs/libomp/libomp-5.0.1.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://releases.llvm.org/${PV/_//}/openmp-${PV/_/}.src.tar.xz";
 
 LICENSE="|| ( UoI-NCSA MIT ) MIT LLVM-Grant"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="hwloc ompt test"
 RESTRICT="!test? ( test )"
 



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

2018-01-28 Thread Thomas Deutschmann
commit: ad3612668bea8ecdb23f83a699a11fc4938e6d35
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:34:08 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:34:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad361266

sys-libs/compiler-rt: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-libs/compiler-rt/compiler-rt-5.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/compiler-rt/compiler-rt-5.0.1.ebuild 
b/sys-libs/compiler-rt/compiler-rt-5.0.1.ebuild
index dac697f4468..5218e6b3500 100644
--- a/sys-libs/compiler-rt/compiler-rt-5.0.1.ebuild
+++ b/sys-libs/compiler-rt/compiler-rt-5.0.1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://releases.llvm.org/${PV/_//}/${P/_/}.src.tar.xz";
 
 LICENSE="|| ( UoI-NCSA MIT )"
 SLOT="${PV%_*}"
-KEYWORDS="amd64 ~arm64 ~x86 ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm64 x86 ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="+clang test"
 
 LLVM_SLOT=${SLOT%%.*}



[gentoo-commits] repo/gentoo:master commit in: sys-devel/clang-runtime/

2018-01-28 Thread Thomas Deutschmann
commit: c6081468ea25ad90af68f865bd542a7e5f86e21e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:35:00 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:35:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6081468

sys-devel/clang-runtime: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-devel/clang-runtime/clang-runtime-5.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/clang-runtime/clang-runtime-5.0.1.ebuild 
b/sys-devel/clang-runtime/clang-runtime-5.0.1.ebuild
index 826ee6bdd65..4b1f7085e47 100644
--- a/sys-devel/clang-runtime/clang-runtime-5.0.1.ebuild
+++ b/sys-devel/clang-runtime/clang-runtime-5.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI=""
 
 LICENSE="metapackage"
 SLOT="${PV%_*}"
-KEYWORDS="amd64 ~arm64 ~x86 ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm64 x86 ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="+compiler-rt libcxx openmp +sanitize"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-process/systemd-cron/

2018-01-28 Thread Thomas Deutschmann
commit: 74e6dc52d0aa74f7bc2bbc0cf2a91d0932d1a233
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:29:54 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:29:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74e6dc52

sys-process/systemd-cron: x86 stable (bug #638972)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-process/systemd-cron/systemd-cron-1.5.12-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/systemd-cron/systemd-cron-1.5.12-r1.ebuild 
b/sys-process/systemd-cron/systemd-cron-1.5.12-r1.ebuild
index c2c3644c42d..e2f62555753 100644
--- a/sys-process/systemd-cron/systemd-cron-1.5.12-r1.ebuild
+++ b/sys-process/systemd-cron/systemd-cron-1.5.12-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/systemd-cron/${PN}/archive/v${PV}.tar.gz -> systemd-
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="cron-boot etc-crontab-systemd minutely setgid test yearly"
 
 RDEPEND=">=sys-apps/systemd-217



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

2018-01-28 Thread Thomas Deutschmann
commit: f7b83cc7bd5071d8850846c6687041e471b87e2b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:33:17 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:33:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7b83cc7

dev-python/llvmlite: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

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

diff --git a/dev-python/llvmlite/llvmlite-0.21.0.ebuild 
b/dev-python/llvmlite/llvmlite-0.21.0.ebuild
index 714971bdf14..84e5156b8be 100644
--- a/dev-python/llvmlite/llvmlite-0.21.0.ebuild
+++ b/dev-python/llvmlite/llvmlite-0.21.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="examples"
 
 LLVM_MAX_SLOT=5



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

2018-01-28 Thread Thomas Deutschmann
commit: 198b98d828b200b551d4adf5bf7fa3515004d4e3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 29 00:32:56 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 29 00:32:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=198b98d8

sys-libs/libcxxabi: x86 stable (bug #644814)

Package-Manager: Portage-2.3.20, Repoman-2.3.6

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

diff --git a/sys-libs/libcxxabi/libcxxabi-5.0.1.ebuild 
b/sys-libs/libcxxabi/libcxxabi-5.0.1.ebuild
index 6c9be83baee..b273a72c3cc 100644
--- a/sys-libs/libcxxabi/libcxxabi-5.0.1.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-5.0.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz
 
 LICENSE="|| ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="+libunwind +static-libs test"
 
 RDEPEND="



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

2018-01-28 Thread Mike Gilbert
commit: 74d9b472b71b77df7d96c9effbe4f169451c8627
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Jan 29 00:22:08 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Jan 29 00:22:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74d9b472

sys-apps/systemd: remove old

Package-Manager: Portage-2.3.19_p11, Repoman-2.3.6_p45

 sys-apps/systemd/Manifest  |   2 -
 sys-apps/systemd/systemd-235-r1.ebuild | 448 -
 sys-apps/systemd/systemd-236-r4.ebuild | 437 
 3 files changed, 887 deletions(-)

diff --git a/sys-apps/systemd/Manifest b/sys-apps/systemd/Manifest
index ef084cc869a..1c99439b959 100644
--- a/sys-apps/systemd/Manifest
+++ b/sys-apps/systemd/Manifest
@@ -1,7 +1,5 @@
 DIST systemd-233-man.tar.gz 31386 BLAKE2B 
e4947e658db3efeec6b5a6adf340d2cc8e8aff2a14db4932720f90c3dc898b1e78595db983948373a2e28191fb3b0aad234f80feb91ee8ae4b607a44038a9cae
 SHA512 
cc5215d3590ffc3c9203a64c14d6adeb0148c421c1396b8c1e43dcb58763b687ce99bdee327dd8a00abab7198171e73b22109a3f2032e4cec6adf2dcc85acf40
 DIST systemd-233-patches.tar.gz 12553 BLAKE2B 
5d19f2dc82cc6cbd9b2e9393f932dfa3c88a981358b282fe56d43cd432d0ee0c0245e9c13d5460b94d83908b84a382dad3348b999f2356ab3ef2ae2c542a867d
 SHA512 
3081f4cf64542ba64a28fe2eff11d8040af42255eb99b5210db9d583fc4b4360a4a4bb8769a1e43d38474d69ead681974cb98d4605968b38f98fd3d9b40bf211
 DIST systemd-233.tar.gz 4660737 BLAKE2B 
38cdd74543447b3c02391b328428fed169fe2cf2df6e9341dcaf2f7d3d977612ec102301e144c1cada90d61e9e9bda3b2faaef708c8ff4bd0b52b143760a83b2
 SHA512 
5ad5329ea116d973cf67096f7e7ad28e9ea0905696e9451291f1d25e5064f4a9bfcfae87e912996c6a38397e9f4a148d4ccecfa9b70f7ecdf04deadb61784c8e
-DIST systemd-235.tar.gz 6586406 BLAKE2B 
f2e46a6c51fc9445800c4b7eee66f23ae83b42c2fedf2304acf612e6cb99122afe67f1b93cf72ed022b52384975afb92ab38cfb4efc6026384602c973d2eb98e
 SHA512 
243f2eb5340fa37dd1286eaa63e83387bda9e03953af266cd6196a37535a13491482caf14c6ab10608bba4ed23b6c41923608e52017e0c26988ed72ddd2b9993
-DIST systemd-236-patches-1.tar.gz 3331 BLAKE2B 
c4ef8881252e79f920572eb73210b205f36ee2a45aaba4bea5e5e8b2f89b92b79deb8e30a62c9163fd0bb2fbc2215e0dda6ca3388b71e4349a8659591c23064e
 SHA512 
d4c93968d03b5f2f2279b030e65399a7d1971eab4d9be8f2122eab67b1fb7b24eef46993beab8400fc782954dc78f400778c3fff5ba4f6c51a14eeb1931c3862
 DIST systemd-236-patches-2.tar.gz 54737 BLAKE2B 
bce5f9e234c975a2b6e474ca2a0c2c82e704f02cf19885134dddc5edbd0b7bfb3773d737f88f78ba2ab81093dfceeb44d76ecda99cf2b916072dcdfa84720c19
 SHA512 
b74ab6944135c938b2d0d2a1dd40ac4cc4ff26d072603d6bfbe4529d808b2e481eb910155895bce14607842ad6d30751aded51654a53f76278becbb5e317b875
 DIST systemd-236.tar.gz 6759035 BLAKE2B 
0fc26bd67fb6cc3b0565c763fc26e38186c4b05c3d38652b73a2189dfbfb46382dba239f7f6f889eec57ad1d8f69d4098745c8f4ca16a707aa23b7771f2328f3
 SHA512 
1a9672960e03e05c09e41fb8cfe9b0f25e867fd43f37f8371515fdbd4270afd746a6da733f6d1d3b2cc43db1ecc7a9f2245f2dac2ec233db74e9e70e4f6d

diff --git a/sys-apps/systemd/systemd-235-r1.ebuild 
b/sys-apps/systemd/systemd-235-r1.ebuild
deleted file mode 100644
index 2727ae07b8b..000
--- a/sys-apps/systemd/systemd-235-r1.ebuild
+++ /dev/null
@@ -1,448 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} ==  ]]; then
-   EGIT_REPO_URI="https://github.com/systemd/systemd.git";
-   inherit git-r3
-else
-   SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
-fi
-
-PYTHON_COMPAT=( python{3_4,3_5,3_6} )
-
-inherit bash-completion-r1 linux-info meson multilib-minimal ninja-utils pam 
python-any-r1 systemd toolchain-funcs udev user
-
-DESCRIPTION="System and service manager for Linux"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/systemd";
-
-LICENSE="GPL-2 LGPL-2.1 MIT public-domain"
-SLOT="0/2"
-IUSE="acl apparmor audit build cryptsetup curl elfutils +gcrypt gnuefi http
-   idn importd +kmod libidn2 +lz4 lzma nat pam policykit
-   qrcode +seccomp selinux ssl sysv-utils test vanilla xkb"
-
-REQUIRED_USE="importd? ( curl gcrypt lzma )"
-RESTRICT="!test? ( test )"
-
-MINKV="3.11"
-
-COMMON_DEPEND=">=sys-apps/util-linux-2.30:0=[${MULTILIB_USEDEP}]
-   sys-libs/libcap:0=[${MULTILIB_USEDEP}]
-   !=sys-process/audit-2:0= )
-   cryptsetup? ( >=sys-fs/cryptsetup-1.6:0= )
-   curl? ( net-misc/curl:0= )
-   elfutils? ( >=dev-libs/elfutils-0.158:0= )
-   gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[${MULTILIB_USEDEP}] )
-   http? (
-   >=net-libs/libmicrohttpd-0.9.33:0=
-   ssl? ( >=net-libs/gnutls-3.1.4:0= )
-   )
-   idn? (
-   libidn2? ( net-dns/libidn2 )
-   !libidn2? ( net-dns/libidn )
-   )
-   importd? (
-   app-arch/bzip2:0=
-   sys-libs/zlib:0=
-   )
-   kmod? ( >=sys-apps/kmod-15

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

2018-01-28 Thread Mike Gilbert
commit: 7aa61bec8531a286253adb75f9ec725d17e30418
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Jan 29 00:19:54 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Jan 29 00:20:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aa61bec

sys-apps/systemd: remove sysvinit from DEPEND

Package-Manager: Portage-2.3.19_p11, Repoman-2.3.6_p45

 sys-apps/systemd/systemd-233-r6.ebuild | 4 ++--
 sys-apps/systemd/systemd-236-r5.ebuild | 4 ++--
 sys-apps/systemd/systemd-.ebuild   | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-apps/systemd/systemd-233-r6.ebuild 
b/sys-apps/systemd/systemd-233-r6.ebuild
index a9934d81992..307333c182d 100644
--- a/sys-apps/systemd/systemd-233-r6.ebuild
+++ b/sys-apps/systemd/systemd-233-r6.ebuild
@@ -57,8 +57,6 @@ 
COMMON_DEPEND=">=sys-apps/util-linux-2.27.1:0=[${MULTILIB_USEDEP}]
qrcode? ( media-gfx/qrencode:0= )
seccomp? ( >=sys-libs/libseccomp-2.3.1:0= )
selinux? ( sys-libs/libselinux:0= )
-   sysv-utils? ( !sys-apps/sysvinit )
-   !sysv-utils? ( sys-apps/sysvinit )
xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= )
abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r9
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )"
@@ -67,6 +65,8 @@ 
COMMON_DEPEND=">=sys-apps/util-linux-2.27.1:0=[${MULTILIB_USEDEP}]
 RDEPEND="${COMMON_DEPEND}
>=sys-apps/baselayout-2.2
selinux? ( sec-policy/selinux-base-policy[systemd] )
+   sysv-utils? ( !sys-apps/sysvinit )
+   !sysv-utils? ( sys-apps/sysvinit )
!build? ( || (
sys-apps/util-linux[kill(-)]
sys-process/procps[kill(+)]

diff --git a/sys-apps/systemd/systemd-236-r5.ebuild 
b/sys-apps/systemd/systemd-236-r5.ebuild
index 4156ce618fe..595d8f608fa 100644
--- a/sys-apps/systemd/systemd-236-r5.ebuild
+++ b/sys-apps/systemd/systemd-236-r5.ebuild
@@ -58,8 +58,6 @@ 
COMMON_DEPEND=">=sys-apps/util-linux-2.30:0=[${MULTILIB_USEDEP}]
qrcode? ( media-gfx/qrencode:0= )
seccomp? ( >=sys-libs/libseccomp-2.3.1:0= )
selinux? ( sys-libs/libselinux:0= )
-   sysv-utils? ( !sys-apps/sysvinit )
-   !sysv-utils? ( sys-apps/sysvinit )
xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= )
abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r9
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )"
@@ -68,6 +66,8 @@ 
COMMON_DEPEND=">=sys-apps/util-linux-2.30:0=[${MULTILIB_USEDEP}]
 RDEPEND="${COMMON_DEPEND}
>=sys-apps/baselayout-2.2
selinux? ( sec-policy/selinux-base-policy[systemd] )
+   sysv-utils? ( !sys-apps/sysvinit )
+   !sysv-utils? ( sys-apps/sysvinit )
!build? ( || (
sys-apps/util-linux[kill(-)]
sys-process/procps[kill(+)]

diff --git a/sys-apps/systemd/systemd-.ebuild 
b/sys-apps/systemd/systemd-.ebuild
index 36144514e86..f3e56e3d25d 100644
--- a/sys-apps/systemd/systemd-.ebuild
+++ b/sys-apps/systemd/systemd-.ebuild
@@ -57,8 +57,6 @@ 
COMMON_DEPEND=">=sys-apps/util-linux-2.30:0=[${MULTILIB_USEDEP}]
qrcode? ( media-gfx/qrencode:0= )
seccomp? ( >=sys-libs/libseccomp-2.3.1:0= )
selinux? ( sys-libs/libselinux:0= )
-   sysv-utils? ( !sys-apps/sysvinit )
-   !sysv-utils? ( sys-apps/sysvinit )
xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= )
abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r9
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )"
@@ -67,6 +65,8 @@ 
COMMON_DEPEND=">=sys-apps/util-linux-2.30:0=[${MULTILIB_USEDEP}]
 RDEPEND="${COMMON_DEPEND}
>=sys-apps/baselayout-2.2
selinux? ( sec-policy/selinux-base-policy[systemd] )
+   sysv-utils? ( !sys-apps/sysvinit )
+   !sysv-utils? ( sys-apps/sysvinit )
!build? ( || (
sys-apps/util-linux[kill(-)]
sys-process/procps[kill(+)]



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

2018-01-28 Thread Mike Pagano
commit: 16ea775f8665c1e75dc39897c4977e45d5acaaad
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jan 28 23:41:10 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jan 28 23:41:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16ea775f

sys-kernel/vanilla-sources: Linux patch 4.15.0

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-kernel/vanilla-sources/Manifest  |  1 +
 sys-kernel/vanilla-sources/vanilla-sources-4.15.0.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 7ea56987a5f..456c0987a20 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -2,6 +2,7 @@ DIST linux-3.16.tar.xz 80501624 BLAKE2B 
46de37c6e1bc3c57d4b77f772ccd372fd77f9698
 DIST linux-3.2.tar.xz 65065516 BLAKE2B 
ca7a8e7f7de9ac8ec811db330bc5dc830849c6745e0066898c29314217d9bc58707f465e51ec6060ff1b95fb76f15ad37854d2c273a4bf93d6ad58eae012617f
 SHA512 
77e9a52d78d6c8e951df1e166023eebe5defc5ef3c45d3ac84b613137b3c2e55cee5693d828ebd06c5034bd89ea2a5f862f55824f2b7839c9ad7212c81e3ecb0
 DIST linux-4.1.tar.xz 83017828 BLAKE2B 
d1dc4e458db191f16306b3d2d7eb60ef5e04307406c769cccdd88beb407f8de228ab1f095a44d6e992b06d01cd896fda31dec1cdf16667f4ca0b628da594aee3
 SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 DIST linux-4.14.tar.xz 100770500 BLAKE2B 
85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a
 SHA512 
77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8
+DIST linux-4.15.tar.xz 102181404 BLAKE2B 
5fd831356c2174d2779ab31033caec6929b2f47857f0bb82ef43ad1140c639d0dc5553e64d062f67486eeff780d5df8d971051fd5a626b51bed170067fea11e0
 SHA512 
c00d92659df815a53dcac7dde145b742b1f20867d380c07cb09ddb3295d6ff10f8931b21ef0b09d7156923a3957b39d74d87c883300173b2e20690d2b4ec35ea
 DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb
 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 DIST patch-3.16.53.xz 1861772 BLAKE2B 
4f575ae7d31911628052f56d1fef2ec8d8e9de9a8794752cec55d354234becc267d1af4fc4e0f58034096d09a9131270ce2089bf34a7cbb822989b97e65fa6d4
 SHA512 
2b703e84be6814f696a0929b9d5d352a01a75442a1992a7008c73cbdf5dc8049db7768f34984eff26fe207938948721ac1bdf7688024174d9173067dd7563bfd

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.15.0.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.15.0.ebuild
new file mode 100644
index 000..9f9c2bf5ccf
--- /dev/null
+++ b/sys-kernel/vanilla-sources/vanilla-sources-4.15.0.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_SECURITY_UNSUPPORTED="1"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="Full sources for the Linux kernel"
+HOMEPAGE="https://www.kernel.org";
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"



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

2018-01-28 Thread Mike Pagano
commit: 60368557b97b866e807b7b0ec478a62eb83a5a5f
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jan 28 23:40:07 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jan 28 23:40:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60368557

sys-kernel/gentoo-sources: Linux patch 4.15.0. Patch to support for namespace 
user.pax.* on tmpfs. Patch to Desc: Path to enable link security restrictions 
by default. Workaround to enable poweroff on Mac Pro 11. Patcg to add UAS 
disable quirk. See bug #640082. hid-apple patch to enable swapping of the FN 
and left Control keys and some additional on some apple keyboards. Patch to 
ensure that /dev/root doesn't appear in /proc/mounts when bootint without an 
initramfs. Bootsplash patch ported by Conrad Kostecki. Patch to enable control 
of the unaligned access control policy from sysctl. Add Gentoo Linux support 
config settings and defaults. Kernel patch that enables gcc >= v4.9 
optimizations for additional.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-kernel/gentoo-sources/Manifest |  4 
 .../gentoo-sources/gentoo-sources-4.15.0.ebuild| 28 ++
 2 files changed, 32 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 3f87ef7d7a0..bffac5f93ff 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -46,6 +46,9 @@ DIST genpatches-4.14-19.extras.tar.xz 17480 BLAKE2B 
e214124df420df163c22a8d904a7
 DIST genpatches-4.14-20.base.tar.xz 480536 BLAKE2B 
de076ea8dfcec740a606a347c1ea52d723ed1d809156bc31cbda4814af03bf7c6711f01e479bb2c88a37f83fc53db17700c6e2f1d79f3fde8ca5f0f8f1aa
 SHA512 
5744952e167b94607690e83ccad17a0851763647365d16811f6cc59f64020da3c19436f58c1bb19e3790baa082eaedad2826d04a9da9cf340d89ad7b3064fafb
 DIST genpatches-4.14-20.experimental.tar.xz 5180 BLAKE2B 
d8482323b0d5ef996d3e6830ff6e88c6d1e19f722108affbceab8bbc032e64363a4c9f470ed64a353bbacb1dd08dee007634e868f072f2329f2e2c612e84e2ec
 SHA512 
5187fcf6b730ee81e3afba9caa1b8f3c8873c5e59243f4b5006fb3f5b821577425b04cef90658be77cad7ca60bc8e1c56ec39e271f9b543e9e63b93994475f63
 DIST genpatches-4.14-20.extras.tar.xz 17492 BLAKE2B 
9540c0fbc4c6f824a235fe80a3ba3ccdbd274eaf65db74d748057da8146004f0391a8fef75bc2a0ae79d17535320840e5bee91afef4b567e0c972952a20f1482
 SHA512 
12e435f75c8907c985bcce2bc5b572385e905a8970712f53e85616c3b61a9c4f1567a4b7662758c537a2f533078a2dbb7f723b96c5bc9b61931d644d04833032
+DIST genpatches-4.15-1.base.tar.xz 5908 BLAKE2B 
6627ff7c5bd6b799dae5e61b1638ccc538715cc253521fd07faa0c5ea7dc9aed5204c040742d37a9d172509577ae5442526d11cbe8714540ee8e1f1637d0fbbc
 SHA512 
c7b8cb613f4a2e6570808d179be6972511ea45c849c4415509e38e1d4688014cab15486628bb282178f306ff786e83718fb2171d1391057bb817ed67a0508caf
+DIST genpatches-4.15-1.experimental.tar.xz 5184 BLAKE2B 
814356256c11ea5bb67706f47ed76d6fe6f8b4232b989ca042509ed2a7f3088f55bd113d3cac25342a66e4803f90864cca803c91661af106141b78ac9cf5fe18
 SHA512 
e840928a463a764d59013424045f64c1fdc8e5d18cf1d20c9ea15388d5f4c4b9ec6aa86e88c33add716366d6b18be175943c22b6bb1c88d3cdbaebb606a38b10
+DIST genpatches-4.15-1.extras.tar.xz 17492 BLAKE2B 
1242891d2ebe519d6c9d43eb6a0b2e9dd1c51ae76dc8aaf71f14dfbf3b9c52097cfc4ad59c5e2add1da4ded0a34a06e2d302a0366a8afb665f1536f899fa3f9d
 SHA512 
21830b23a1b16291beba81ac122a36e8bcf9268b548aa6e9258f18283e80f610ed249ccf320f27b0a45acd35e3bd8ba5ceb0420e360ae94635121f89d74903b6
 DIST genpatches-4.4-107.base.tar.xz 1587988 BLAKE2B 
827d3ae42c0fc412c165568edaf1f8550bf828d7e2edb7c5abd3013a2b639dbeb68d2e3a9656e2995baee07c7619695918e654174528ce3eebc8a891715bc636
 SHA512 
1fffc6d7b2c186c87c8b343d4bf5fcf94086dae9f4e70b2965f5dc8c18ff4753d417074ec4ad7deca29ff597a6e5d0cfca4bf325609596678febea5ac2f5ea24
 DIST genpatches-4.4-107.experimental.tar.xz 87776 BLAKE2B 
b239fcc9ee1d0344a9fac8b6ae8e712bdf97df7547a2d3d1d6b39ea23f50d8836ae8fac3bfffcc401b3af52dd333b2b2b1e1626fb739da608d247be5fc67dbf3
 SHA512 
49e0cbc980cfafc7992d92e0bd2dd07d594ec39b9ba0bae27dd915eaffbd78c5af6d3d47847a98ee9a619447b3b220faf0c44484dc99088609ff8053f3c5d907
 DIST genpatches-4.4-107.extras.tar.xz 16468 BLAKE2B 
1ece602969ead12faab3e0e5d5703a75c737a18efe873d5bdda71ff134387f5760a76105262270543b4a0e882a9b5434905b3846bd68cc3af5bc1b0383122cd2
 SHA512 
0843f4cc2cb2b3219f7e1343d68062a9c86f08c51c67a801f82c7685c8c0eb92ea32841a8a6d4bb8da9fc9882eeb965bc66317d7c14e7a5ffbb58214f962dc35
@@ -127,5 +130,6 @@ DIST genpatches-4.9-81.extras.tar.xz 17356 BLAKE2B 
3e26281722b92a9720a04bdc35910
 DIST linux-4.1.tar.xz 83017828 BLAKE2B 
d1dc4e458db191f16306b3d2d7eb60ef5e04307406c769cccdd88beb407f8de228ab1f095a44d6e992b06d01cd896fda31dec1cdf16667f4ca0b628da594aee3
 SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 DIST linux-4.12.tar.xz 99186576 BLAKE2B 
02d031c7f2f29849c06a6b5b589af78bc486a05a758267e47f2ff16844ae8ca701fff53cb859fcc105f7ea92c0769acf8d7f7cc

[gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-vault/

2018-01-28 Thread Andreas Sturmlechner
commit: a12e2c52d9b8382214b37cc6e482a4f36bbb3e3a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 28 23:39:31 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:39:31 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a12e2c52

kde-plasma/plasma-vault: Prefer sys-fs/encfs over sys-fs/cryfs

Upstream commit a07e32648224d6ddf29daadc2fbf00ab6f3e764c

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 kde-plasma/plasma-vault/plasma-vault-5.12.49..ebuild | 2 +-
 kde-plasma/plasma-vault/plasma-vault-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-plasma/plasma-vault/plasma-vault-5.12.49..ebuild 
b/kde-plasma/plasma-vault/plasma-vault-5.12.49..ebuild
index ea2eea076d..2431f95f60 100644
--- a/kde-plasma/plasma-vault/plasma-vault-5.12.49..ebuild
+++ b/kde-plasma/plasma-vault/plasma-vault-5.12.49..ebuild
@@ -30,5 +30,5 @@ DEPEND="
$(add_qt_dep qtwidgets)
 "
 RDEPEND="${DEPEND}
-   || ( sys-fs/cryfs >=sys-fs/encfs-1.9.2 )
+   || ( >=sys-fs/encfs-1.9.2 sys-fs/cryfs )
 "

diff --git a/kde-plasma/plasma-vault/plasma-vault-.ebuild 
b/kde-plasma/plasma-vault/plasma-vault-.ebuild
index ea2eea076d..2431f95f60 100644
--- a/kde-plasma/plasma-vault/plasma-vault-.ebuild
+++ b/kde-plasma/plasma-vault/plasma-vault-.ebuild
@@ -30,5 +30,5 @@ DEPEND="
$(add_qt_dep qtwidgets)
 "
 RDEPEND="${DEPEND}
-   || ( sys-fs/cryfs >=sys-fs/encfs-1.9.2 )
+   || ( >=sys-fs/encfs-1.9.2 sys-fs/cryfs )
 "



[gentoo-commits] repo/gentoo:master commit in: sys-auth/yubikey-personalization-gui/

2018-01-28 Thread Andreas Sturmlechner
commit: e48431ace367599d6ac127fbafbcc20e3b3a4f73
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 28 23:33:34 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:34:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e48431ac

sys-auth/yubikey-personalization-gui: Drop old Qt4-based

Closes: https://bugs.gentoo.org/633444
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-auth/yubikey-personalization-gui/Manifest  |  2 --
 .../yubikey-personalization-gui-3.1.23.ebuild  | 40 --
 .../yubikey-personalization-gui-3.1.24.ebuild  | 40 --
 3 files changed, 82 deletions(-)

diff --git a/sys-auth/yubikey-personalization-gui/Manifest 
b/sys-auth/yubikey-personalization-gui/Manifest
index 77dad7368ea..cecb9a1e3a1 100644
--- a/sys-auth/yubikey-personalization-gui/Manifest
+++ b/sys-auth/yubikey-personalization-gui/Manifest
@@ -1,3 +1 @@
-DIST yubikey-personalization-gui-3.1.23.tar.gz 1450340 BLAKE2B 
fb183d939334b13faf1464dc65a0a03180a2b402ae628f556dba7211e66e89628718e797a86189f654ca88225c3b834df67b497e7a94d0e210edc433bfff49b8
 SHA512 
912bcbcac5cad285c43995f646de6aa68cc99a4d047b7632786cd93e38c031e2fb8dcc4f57f45647ba3e276de03aaea6ed9757f72ec2c42a43780c19edcca51b
-DIST yubikey-personalization-gui-3.1.24.tar.gz 947135 BLAKE2B 
846fa6792c71b57ffb99c548efe6780571c1d52061393805f0f9a76a7e7722b3fc2851ead913b09028d7798ae7bab4670260cae63a98ef0c0d1b176266fa4338
 SHA512 
149237a719277a6571916473d31e6099c3f3a2003fcb2893c2becee80788102496dbbc8e424f75fe1f1dd3ac87122bd35b6908cf784458635069d89e7e706cfa
 DIST yubikey-personalization-gui-3.1.25.tar.gz 942121 BLAKE2B 
edc581824f917b50664dd758a0447fa9a61c85844cd220d82661c9e1f1bbabc1bda77545c1eda2e56a43b8176479c1b161f8e9ad5feb3d61cdc37d301ebde9fc
 SHA512 
6d45c2a9e9c452a44fba5ff3830150ce65e968899215c59fd7b412317143015c466ac706dcfa49def2c4304a01866a3674ba7cc37e47dff4e8c6acb8166fcf45

diff --git 
a/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.23.ebuild
 
b/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.23.ebuild
deleted file mode 100644
index 9f4e92b5148..000
--- 
a/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.23.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils qmake-utils
-
-DESCRIPTION="GUI for personalization of Yubico's YubiKey"
-SRC_URI="http://yubico.github.io/yubikey-personalization-gui/releases/${P}.tar.gz";
-HOMEPAGE="https://github.com/Yubico/yubikey-personalization-gui";
-
-KEYWORDS="~amd64"
-SLOT="0"
-LICENSE="BSD-2"
-IUSE="debug"
-
-RDEPEND="
-   >=sys-auth/ykpers-1.14.0
-   >=sys-auth/libyubikey-1.6
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qttest:4
-   dev-libs/glib:2
-   virtual/libusb:1"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-DOCS=( NEWS README )
-
-src_configure() {
-   eqmake4 YKPersonalization.pro
-}
-
-src_install() {
-   dobin build/release/yubikey-personalization-gui
-   doman resources/lin/yubikey-personalization-gui.1
-   domenu resources/lin/yubikey-personalization-gui.desktop
-   doicon resources/lin/yubikey-personalization-gui.xpm
-   doicon -s 128 resources/lin/yubikey-personalization-gui.png
-}

diff --git 
a/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.24.ebuild
 
b/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.24.ebuild
deleted file mode 100644
index 3e2afce422b..000
--- 
a/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.24.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils qmake-utils
-
-DESCRIPTION="GUI for personalization of Yubico's YubiKey"
-SRC_URI="http://yubico.github.io/yubikey-personalization-gui/releases/${P}.tar.gz";
-HOMEPAGE="https://github.com/Yubico/yubikey-personalization-gui";
-
-KEYWORDS="~amd64"
-SLOT="0"
-LICENSE="BSD-2"
-IUSE="debug"
-
-RDEPEND="
-   >=sys-auth/ykpers-1.14.0
-   >=sys-auth/libyubikey-1.6
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qttest:4
-   dev-libs/glib:2
-   virtual/libusb:1"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-DOCS=( NEWS README )
-
-src_configure() {
-   eqmake4 YKPersonalization.pro
-}
-
-src_install() {
-   dobin build/release/yubikey-personalization-gui
-   doman resources/lin/yubikey-personalization-gui.1
-   domenu resources/lin/yubikey-personalization-gui.desktop
-   doicon resources/lin/yubikey-personalization-gui.xpm
-   doicon -s 128 resources/lin/yubikey-personalization-gui.png
-}



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

2018-01-28 Thread Andreas Hüttel
commit: c9fe40f4117d42015253a3771cf1ffca812eb059
Author: charIes17  arcor  de>
AuthorDate: Sun Jan 21 18:47:52 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sun Jan 28 23:26:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9fe40f4

dev-libs/dotconf: Bump to EAPI=6

  repo.eapi.deprecated  1
   dev-libs/dotconf/dotconf-1.3.ebuild: 3

Bug: https://bugs.gentoo.org/642274
Closes: https://github.com/gentoo/gentoo/pull/6925
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-libs/dotconf/dotconf-1.3-r1.ebuild | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/dev-libs/dotconf/dotconf-1.3-r1.ebuild 
b/dev-libs/dotconf/dotconf-1.3-r1.ebuild
new file mode 100644
index 000..22a423f8221
--- /dev/null
+++ b/dev-libs/dotconf/dotconf-1.3-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="dot.conf configuration file parser"
+HOMEPAGE="https://github.com/williamh/dotconf";
+SRC_URI="mirror://gentoo/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+IUSE=""
+
+DEPEND=">=sys-devel/autoconf-2.58"
+RDEPEND=""
+
+src_compile() {
+   emake CC=$(tc-getCC)
+}
+
+pkg_postinst() {
+   ewarn 'This version requires that you run revdep-rebuild after'
+   ewarn 'the upgrade.'
+}



[gentoo-commits] proj/linux-patches: New tag: 4.15-1

2018-01-28 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jan 28 23:22:32 2018 +

New tag: 4.15-1




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

2018-01-28 Thread Andreas Sturmlechner
commit: 56db17fcc2aaabab6c422a86afa9df7d75497b1c
Author: Francesco Turco  fastmail  fm>
AuthorDate: Sat Jan 27 12:27:53 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56db17fc

net-p2p/bitcoin-cli: use HTTPS instead of HTTP

 net-p2p/bitcoin-cli/bitcoin-cli-0.15.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-p2p/bitcoin-cli/bitcoin-cli-0.15.1.ebuild 
b/net-p2p/bitcoin-cli/bitcoin-cli-0.15.1.ebuild
index e143f8a4489..fc2989de9d2 100644
--- a/net-p2p/bitcoin-cli/bitcoin-cli-0.15.1.ebuild
+++ b/net-p2p/bitcoin-cli/bitcoin-cli-0.15.1.ebuild
@@ -15,17 +15,17 @@ KNOTS_P="${MyPN}-${KNOTS_PV}"
 IUSE="knots libressl"
 
 DESCRIPTION="Command-line JSON-RPC client specifically for interfacing with 
bitcoind"
-HOMEPAGE="http://bitcoincore.org/ http://bitcoinknots.org/";
+HOMEPAGE="https://bitcoincore.org/ https://bitcoinknots.org/";
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc x86 ~amd64-linux ~x86-linux"
 
 SRC_URI="

https://github.com/${MyPN}/${MyPN}/archive/${BITCOINCORE_COMMITHASH}.tar.gz -> 
${MyPN}-v${PV}.tar.gz
-   http://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.patches.txz 
-> ${KNOTS_P}.patches.tar.xz
+   
https://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.patches.txz -> 
${KNOTS_P}.patches.tar.xz
 "
 CORE_DESC="https://bitcoincore.org/en/2017/11/11/release-${PV}/";
-KNOTS_DESC="http://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.desc.html";
+KNOTS_DESC="https://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.desc.html";
 
 RDEPEND="
!libressl? ( dev-libs/openssl:0=[-bindist] )



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

2018-01-28 Thread Andreas Sturmlechner
commit: d5a928bd6995d0f0da2cebb5d572b576218972ee
Author: Francesco Turco  fastmail  fm>
AuthorDate: Sat Jan 27 12:25:57 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5a928bd

net-libs/libbitcoinconsensus: use HTTPS instead of HTTP

 net-libs/libbitcoinconsensus/libbitcoinconsensus-0.15.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-libs/libbitcoinconsensus/libbitcoinconsensus-0.15.1.ebuild 
b/net-libs/libbitcoinconsensus/libbitcoinconsensus-0.15.1.ebuild
index 58ed3be69a9..2efa92b909e 100644
--- a/net-libs/libbitcoinconsensus/libbitcoinconsensus-0.15.1.ebuild
+++ b/net-libs/libbitcoinconsensus/libbitcoinconsensus-0.15.1.ebuild
@@ -15,17 +15,17 @@ KNOTS_P="${MyPN}-${KNOTS_PV}"
 IUSE="+asm knots libressl"
 
 DESCRIPTION="Bitcoin Core consensus library"
-HOMEPAGE="http://bitcoincore.org/ http://bitcoinknots.org/";
+HOMEPAGE="https://bitcoincore.org/ https://bitcoinknots.org/";
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc x86 ~amd64-linux ~x86-linux"
 
 SRC_URI="

https://github.com/${MyPN}/${MyPN}/archive/${BITCOINCORE_COMMITHASH}.tar.gz -> 
${MyPN}-v${PV}.tar.gz
-   http://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.patches.txz 
-> ${KNOTS_P}.patches.tar.xz
+   
https://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.patches.txz -> 
${KNOTS_P}.patches.tar.xz
 "
 CORE_DESC="https://bitcoincore.org/en/2017/11/11/release-${PV}/";
-KNOTS_DESC="http://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.desc.html";
+KNOTS_DESC="https://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.desc.html";
 
 RDEPEND="
!libressl? ( dev-libs/openssl:0=[-bindist] )



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

2018-01-28 Thread Andreas Sturmlechner
commit: d431cc2483474e83efb49b660ca463791939dd82
Author: Hector Martin  marcan  st>
AuthorDate: Sat Jan 20 08:43:29 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d431cc24

media-sound/jack2-1.9.12-r1: Add USE ieee1394

Pulling in media-libs/libffado.

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

 media-sound/jack2/jack2-1.9.12-r1.ebuild | 91 
 1 file changed, 91 insertions(+)

diff --git a/media-sound/jack2/jack2-1.9.12-r1.ebuild 
b/media-sound/jack2/jack2-1.9.12-r1.ebuild
new file mode 100644
index 000..4856ae84043
--- /dev/null
+++ b/media-sound/jack2/jack2-1.9.12-r1.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="threads(+)"
+inherit python-single-r1 waf-utils multilib-minimal
+
+DESCRIPTION="Jackdmp jack implemention for multi-processor machine"
+HOMEPAGE="http://jackaudio.org/";
+
+if [[ "${PV}" = "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/jackaudio/${PN}.git";
+else
+   MY_PV="${PV/_rc/-RC}"
+   MY_P="${PN}-${MY_PV}"
+   S="${WORKDIR}/${MY_P}"
+   
SRC_URI="https://github.com/jackaudio/jack2/releases/download/v${MY_PV}/${MY_P}.tar.gz";
+   KEYWORDS="~amd64 ~ppc ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="2"
+IUSE="alsa celt +classic dbus doc ieee1394 libsamplerate opus pam readline 
sndfile"
+
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   || ( classic dbus )"
+
+CDEPEND="${PYTHON_DEPS}
+   media-libs/libsamplerate
+   media-libs/libsndfile
+   sys-libs/readline:0=
+   alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
+   celt? ( media-libs/celt:0[${MULTILIB_USEDEP}] )
+   dbus? (
+   dev-libs/expat[${MULTILIB_USEDEP}]
+   sys-apps/dbus[${MULTILIB_USEDEP}]
+   )
+   ieee1394? ( media-libs/libffado:=[${MULTILIB_USEDEP}] )
+   opus? ( media-libs/opus[custom-modes,${MULTILIB_USEDEP}] )"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig
+   doc? ( app-doc/doxygen )"
+RDEPEND="${CDEPEND}
+   dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
+   pam? ( sys-auth/realtime-base )
+   !media-sound/jack-audio-connection-kit:0"
+
+DOCS=( ChangeLog README README_NETJACK2 TODO )
+
+src_prepare() {
+   default
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   local mywafconfargs=(
+   --htmldir=/usr/share/doc/${PF}/html
+   $(usex dbus --dbus "")
+   $(usex classic --classic "")
+   --alsa=$(usex alsa yes no)
+   --celt=$(usex celt yes no)
+   --doxygen=$(multilib_native_usex doc yes no)
+   --firewire=$(usex ieee1394 yes no)
+   --freebob=no
+   --iio=no
+   --opus=$(usex opus yes no)
+   --portaudio=no
+   --readline=$(multilib_native_usex readline yes no)
+   --samplerate=$(multilib_native_usex libsamplerate yes no)
+   --sndfile=$(multilib_native_usex sndfile yes no)
+   --winmme=no
+   )
+
+   waf-utils_src_configure ${mywafconfargs[@]}
+}
+
+multilib_src_compile() {
+   WAF_BINARY="${BUILD_DIR}"/waf waf-utils_src_compile
+}
+
+multilib_src_install() {
+   WAF_BINARY="${BUILD_DIR}"/waf waf-utils_src_install
+}
+
+multilib_src_install_all() {
+   python_fix_shebang "${ED}"
+}



[gentoo-commits] repo/gentoo:master commit in: sys-auth/yubikey-personalization-gui/

2018-01-28 Thread Andreas Sturmlechner
commit: 59b7ca6071743f139d43a8304a0a4961b6ebc1bc
Author: Jouni Kosonen  tukesoft  com>
AuthorDate: Sun Jan 28 17:40:34 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b7ca60

sys-auth/yubikey-personalization-gui: version bump to 3.1.25

Also, port to Qt5 and EAPI 6.

Bug: https://bugs.gentoo.org/633444
Closes: https://github.com/gentoo/gentoo/pull/6988

 sys-auth/yubikey-personalization-gui/Manifest  |  1 +
 .../yubikey-personalization-gui-3.1.25.ebuild  | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-auth/yubikey-personalization-gui/Manifest 
b/sys-auth/yubikey-personalization-gui/Manifest
index 90f67cf0348..77dad7368ea 100644
--- a/sys-auth/yubikey-personalization-gui/Manifest
+++ b/sys-auth/yubikey-personalization-gui/Manifest
@@ -1,2 +1,3 @@
 DIST yubikey-personalization-gui-3.1.23.tar.gz 1450340 BLAKE2B 
fb183d939334b13faf1464dc65a0a03180a2b402ae628f556dba7211e66e89628718e797a86189f654ca88225c3b834df67b497e7a94d0e210edc433bfff49b8
 SHA512 
912bcbcac5cad285c43995f646de6aa68cc99a4d047b7632786cd93e38c031e2fb8dcc4f57f45647ba3e276de03aaea6ed9757f72ec2c42a43780c19edcca51b
 DIST yubikey-personalization-gui-3.1.24.tar.gz 947135 BLAKE2B 
846fa6792c71b57ffb99c548efe6780571c1d52061393805f0f9a76a7e7722b3fc2851ead913b09028d7798ae7bab4670260cae63a98ef0c0d1b176266fa4338
 SHA512 
149237a719277a6571916473d31e6099c3f3a2003fcb2893c2becee80788102496dbbc8e424f75fe1f1dd3ac87122bd35b6908cf784458635069d89e7e706cfa
+DIST yubikey-personalization-gui-3.1.25.tar.gz 942121 BLAKE2B 
edc581824f917b50664dd758a0447fa9a61c85844cd220d82661c9e1f1bbabc1bda77545c1eda2e56a43b8176479c1b161f8e9ad5feb3d61cdc37d301ebde9fc
 SHA512 
6d45c2a9e9c452a44fba5ff3830150ce65e968899215c59fd7b412317143015c466ac706dcfa49def2c4304a01866a3674ba7cc37e47dff4e8c6acb8166fcf45

diff --git 
a/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.25.ebuild
 
b/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.25.ebuild
new file mode 100644
index 000..1439f9f0ac2
--- /dev/null
+++ 
b/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.25.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit desktop flag-o-matic qmake-utils
+
+DESCRIPTION="GUI for personalization of Yubico's YubiKey"
+SRC_URI="https://github.com/Yubico/yubikey-personalization-gui/archive/${P}.tar.gz";
+HOMEPAGE="https://github.com/Yubico/yubikey-personalization-gui";
+
+KEYWORDS="~amd64"
+SLOT="0"
+LICENSE="BSD-2"
+IUSE="debug test"
+
+RDEPEND="
+   dev-libs/glib:2
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=sys-auth/libyubikey-1.6
+   >=sys-auth/ykpers-1.14.0
+   virtual/libusb:1"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   test? ( dev-qt/qttest:5 )"
+
+S="${WORKDIR}/${PN}-${P}"
+
+src_prepare() {
+   default
+   if ! use test ; then
+   sed -i YKPersonalization.pro \
+   -e 's/src \\/src/' \
+   -e '/tests/d' || die
+   fi
+}
+
+src_configure() {
+   append-cxxflags -std=c++11
+
+   eqmake5 "CONFIG+=nosilent" YKPersonalization.pro
+}
+
+src_install() {
+   dobin build/release/yubikey-personalization-gui
+   doman resources/lin/yubikey-personalization-gui.1
+   domenu resources/lin/yubikey-personalization-gui.desktop
+   doicon resources/lin/yubikey-personalization-gui.xpm
+   doicon -s 128 resources/lin/yubikey-personalization-gui.png
+}



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

2018-01-28 Thread Andreas Sturmlechner
commit: 78ac13b0f06dce216ded292ccc8b16ed349ddaf7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 28 23:05:23 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78ac13b0

profiles: ppc32: Mask media-sound/jack2[ieee1394]

Requires media-libs/libffado, which requires dev-python/PyQt5,
which is not keyworded.

 profiles/arch/powerpc/ppc32/package.use.mask | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/profiles/arch/powerpc/ppc32/package.use.mask 
b/profiles/arch/powerpc/ppc32/package.use.mask
index 6de1a3b185d..7f775e70af6 100644
--- a/profiles/arch/powerpc/ppc32/package.use.mask
+++ b/profiles/arch/powerpc/ppc32/package.use.mask
@@ -1,6 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Andreas Sturmlechner  (29 Jan 2018)
+# Requires media-libs/libffado, which requires dev-python/PyQt5,
+# which is not keyworded.
+media-sound/jack2 ieee1394
+
 # Sergei Trofimovich  (3 Oct 2017)
 # Incomplete support, bug #605878.
 net-vpn/tor seccomp



[gentoo-commits] repo/gentoo:master commit in: app-crypt/moolticute/

2018-01-28 Thread Andreas Sturmlechner
commit: d90f17a1975bb3c36cea2e502fb08b06764e7a2a
Author: Pierre-Olivier Mercier  nemunai  re>
AuthorDate: Fri Jan 26 10:12:52 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d90f17a1

app-crypt/moolticute: remove old

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 app-crypt/moolticute/Manifest  |  2 -
 app-crypt/moolticute/moolticute-0.10.0_beta.ebuild | 64 --
 app-crypt/moolticute/moolticute-0.11.4_beta.ebuild | 64 --
 3 files changed, 130 deletions(-)

diff --git a/app-crypt/moolticute/Manifest b/app-crypt/moolticute/Manifest
index ccda40db65c..ffa42fddf8c 100644
--- a/app-crypt/moolticute/Manifest
+++ b/app-crypt/moolticute/Manifest
@@ -1,3 +1 @@
-DIST moolticute-0.10.0_beta.tar.gz 4945663 BLAKE2B 
371ab382239d635251b3921cbae24ee8f0ccefdd2ca2a102e73ecf2eccdef5a86f1613d9cc051871b37ebe9936ffb5f95719f7e3c36c4d7fdc58a18ba9948b73
 SHA512 
febb828cc179cbbc40684b7c382babfe998d8e14c59358d985658dabc0c414de7b5bec3187336459b286fb85b79f8d781254c7dc55ecd6519fc4ea50952af9b4
-DIST moolticute-0.11.4_beta.tar.gz 5278216 BLAKE2B 
7d78549e9ea384669ea2fcea3f543e543ece87b9ce016fbb8675d0ea9065957c0d10bd6048a43c37715de3d1638fa75c518640feca22702713c7c7ab6c9e2ea1
 SHA512 
4c832b286784c4e8fbfc2eea498e4b7c57377ba745ba226c88001a3ab564d6e7c719dcdb849a409e367eaebc43a8b4c6e756b8a3e90a722f48554df4822e7a19
 DIST moolticute-0.11.6_beta.tar.gz 5279167 BLAKE2B 
4b93dbb038f75502907729398e7315397d5fd46fd7ee57214d5ea2f8df6c6d1e02242384ec8ca3a67a94711b7b3b68f28e4bb63cb24b224fcdfd75de1435
 SHA512 
5caf3ad6063da6d1761af37e52561b5834753abbc433e221b874788dd5c98782af8b4e723a78b2e849b8fe7cd0378e9304e5e93ac47e76d547dfc6b8ebe3c92a

diff --git a/app-crypt/moolticute/moolticute-0.10.0_beta.ebuild 
b/app-crypt/moolticute/moolticute-0.10.0_beta.ebuild
deleted file mode 100644
index 6176b1bb867..000
--- a/app-crypt/moolticute/moolticute-0.10.0_beta.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/mooltipass/moolticute.git";
-   inherit git-r3
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/mooltipass/moolticute/archive/v${PV/_/-}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-inherit gnome2-utils qmake-utils udev
-
-DESCRIPTION="Mooltipass crossplatform daemon/tools"
-HOMEPAGE="https://github.com/mooltipass/moolticute";
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   >=dev-libs/libusb-1.0.20
-   >=dev-qt/qtcore-5.6:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qttest:5
-   dev-qt/qtwebsockets:5
-   dev-qt/qtwidgets:5
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${P/_/-}"
-
-src_prepare() {
-   default
-
-   # Fill version.h with package version
-   if [[ ${PV} != * ]]; then
-   sed -i "s/\"git\"/\"v${PV/_/-}\"/" src/version.h || die
-   fi
-}
-
-src_configure() {
-   eqmake5 PREFIX="/usr" Moolticute.pro
-}
-
-src_install() {
-   emake install INSTALL_ROOT="${D}"
-
-   udev_dorules "${FILESDIR}/50-mooltipass.rule"
-   newinitd "${FILESDIR}/moolticuted.init" moolticuted
-}
-
-pkg_postinst() {
-   udev_reload
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}

diff --git a/app-crypt/moolticute/moolticute-0.11.4_beta.ebuild 
b/app-crypt/moolticute/moolticute-0.11.4_beta.ebuild
deleted file mode 100644
index 6176b1bb867..000
--- a/app-crypt/moolticute/moolticute-0.11.4_beta.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/mooltipass/moolticute.git";
-   inherit git-r3
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/mooltipass/moolticute/archive/v${PV/_/-}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-fi
-
-inherit gnome2-utils qmake-utils udev
-
-DESCRIPTION="Mooltipass crossplatform daemon/tools"
-HOMEPAGE="https://github.com/mooltipass/moolticute";
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   >=dev-libs/libusb-1.0.20
-   >=dev-qt/qtcore-5.6:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qttest:5
-   dev-qt/qtwebsockets:5
-   dev-qt/qtwidgets:5
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${P/_/-}"
-
-src_prepare() {
-   default
-
-   # Fill version.h with package version
-   if [[ ${PV} != * ]]; then
-   sed -i "s/\"git\"/\"v${PV/_/-}\"/" src/version.h || die
-   fi
-}
-
-src_configure() {
-   eqmake5 PREFIX="/usr" Moolticute.pro
-}
-
-src_install() {
-   emake install INSTALL_ROOT="${D}"
-
-   udev_dorules "${FILESDIR}/

[gentoo-commits] repo/gentoo:master commit in: sys-auth/yubikey-personalization-gui/

2018-01-28 Thread Andreas Sturmlechner
commit: 43469d6dadf42cba43f5a3a3ecf5489c65f3e6c3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 28 22:55:09 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43469d6d

sys-auth/yubikey-personalization-gui: DEPENDs on dev-qt/qtgui:5

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 .../yubikey-personalization-gui-3.1.25.ebuild| 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.25.ebuild
 
b/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.25.ebuild
index 1439f9f0ac2..e3c1da150af 100644
--- 
a/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.25.ebuild
+++ 
b/sys-auth/yubikey-personalization-gui/yubikey-personalization-gui-3.1.25.ebuild
@@ -17,6 +17,7 @@ IUSE="debug test"
 RDEPEND="
dev-libs/glib:2
dev-qt/qtcore:5
+   dev-qt/qtgui:5
dev-qt/qtwidgets:5
>=sys-auth/libyubikey-1.6
>=sys-auth/ykpers-1.14.0



[gentoo-commits] repo/gentoo:master commit in: app-crypt/moolticute/

2018-01-28 Thread Andreas Sturmlechner
commit: 263c1153ed8d6f2c489d7d064101384fb3424137
Author: Pierre-Olivier Mercier  nemunai  re>
AuthorDate: Fri Jan 26 10:08:40 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=263c1153

app-crypt/moolticute: 0.11.6_beta version bump

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

 app-crypt/moolticute/Manifest  |  1 +
 app-crypt/moolticute/moolticute-0.11.6_beta.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/app-crypt/moolticute/Manifest b/app-crypt/moolticute/Manifest
index ca47fbdbee3..ccda40db65c 100644
--- a/app-crypt/moolticute/Manifest
+++ b/app-crypt/moolticute/Manifest
@@ -1,2 +1,3 @@
 DIST moolticute-0.10.0_beta.tar.gz 4945663 BLAKE2B 
371ab382239d635251b3921cbae24ee8f0ccefdd2ca2a102e73ecf2eccdef5a86f1613d9cc051871b37ebe9936ffb5f95719f7e3c36c4d7fdc58a18ba9948b73
 SHA512 
febb828cc179cbbc40684b7c382babfe998d8e14c59358d985658dabc0c414de7b5bec3187336459b286fb85b79f8d781254c7dc55ecd6519fc4ea50952af9b4
 DIST moolticute-0.11.4_beta.tar.gz 5278216 BLAKE2B 
7d78549e9ea384669ea2fcea3f543e543ece87b9ce016fbb8675d0ea9065957c0d10bd6048a43c37715de3d1638fa75c518640feca22702713c7c7ab6c9e2ea1
 SHA512 
4c832b286784c4e8fbfc2eea498e4b7c57377ba745ba226c88001a3ab564d6e7c719dcdb849a409e367eaebc43a8b4c6e756b8a3e90a722f48554df4822e7a19
+DIST moolticute-0.11.6_beta.tar.gz 5279167 BLAKE2B 
4b93dbb038f75502907729398e7315397d5fd46fd7ee57214d5ea2f8df6c6d1e02242384ec8ca3a67a94711b7b3b68f28e4bb63cb24b224fcdfd75de1435
 SHA512 
5caf3ad6063da6d1761af37e52561b5834753abbc433e221b874788dd5c98782af8b4e723a78b2e849b8fe7cd0378e9304e5e93ac47e76d547dfc6b8ebe3c92a

diff --git a/app-crypt/moolticute/moolticute-0.11.6_beta.ebuild 
b/app-crypt/moolticute/moolticute-0.11.6_beta.ebuild
new file mode 100644
index 000..b5153ad45a3
--- /dev/null
+++ b/app-crypt/moolticute/moolticute-0.11.6_beta.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/mooltipass/moolticute.git";
+   inherit git-r3
+   KEYWORDS=""
+else
+   
SRC_URI="https://github.com/mooltipass/moolticute/archive/v${PV/_/-}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm"
+fi
+
+inherit gnome2-utils qmake-utils udev
+
+DESCRIPTION="Mooltipass crossplatform daemon/tools"
+HOMEPAGE="https://github.com/mooltipass/moolticute";
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   >=dev-libs/libusb-1.0.20
+   >=dev-qt/qtcore-5.6:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qttest:5
+   dev-qt/qtwebsockets:5
+   dev-qt/qtwidgets:5
+"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${P/_/-}"
+
+src_prepare() {
+   default
+
+   # Fill version.h with package version
+   if [[ ${PV} != * ]]; then
+   sed -i "s/\"git\"/\"v${PV/_/-}\"/" src/version.h || die
+   fi
+}
+
+src_configure() {
+   eqmake5 PREFIX="/usr" Moolticute.pro
+}
+
+src_install() {
+   emake install INSTALL_ROOT="${D}"
+
+   udev_dorules "${FILESDIR}/50-mooltipass.rule"
+   newinitd "${FILESDIR}/moolticuted.init" moolticuted
+}
+
+pkg_postinst() {
+   udev_reload
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2018-01-28 Thread Andreas Sturmlechner
commit: 9bf114e8d6b1056857e13473c026264abd815220
Author: Chris Mayo  gmail  com>
AuthorDate: Sun Jan 28 19:16:51 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bf114e8

media-gfx/gscan2pdf: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-gfx/gscan2pdf/Manifest   |  2 -
 media-gfx/gscan2pdf/gscan2pdf-1.8.8.ebuild | 63 --
 media-gfx/gscan2pdf/gscan2pdf-1.8.9.ebuild | 63 --
 3 files changed, 128 deletions(-)

diff --git a/media-gfx/gscan2pdf/Manifest b/media-gfx/gscan2pdf/Manifest
index d3b5c85b597..aab8059cf4a 100644
--- a/media-gfx/gscan2pdf/Manifest
+++ b/media-gfx/gscan2pdf/Manifest
@@ -1,4 +1,2 @@
 DIST gscan2pdf-1.8.10.tar.xz 406128 BLAKE2B 
328c05f377e12742bbf8ebf92f327afddc4556533e4f7500b237d968fa07b6505f0a3be2c02f42318740e9d185611c094cf96c66804af02197097eebd16b880c
 SHA512 
334979b10238d510da8c5807290920b50e3a06ddda99dad41ced96d33e1ca8467cafe1f3112fb81b6705f80bc232eb6f041d588a57e04d5eecd09a201f007a49
 DIST gscan2pdf-1.8.11.tar.xz 409212 BLAKE2B 
37cb716f13818eaffc39c210b810b845368cc5e323569e8f9d5603b5b412c4182520798321358e4c21339fdbd5f15026a0acd6421a49e7db79ecca86633c3ab0
 SHA512 
1ea09b8768771be4a1700cb8a6523d5f74fcbf0ebe459d97796032b56f896fd0c50e5ca1ed4c96aedef7e61f6952a92986153cc70173dd5ad91ccfb72461c565
-DIST gscan2pdf-1.8.8.tar.xz 404456 BLAKE2B 
23e81ad9d46867863f7cf14e0350cce568d9f9e7a57fd8eb9a4b1a56a112d72008adacf7cc4514c6d93dd6b225684d57494a5baa295c8f84a927de7bd208d722
 SHA512 
331821c0f9d7365866b7ba6bdbcd29d03b69516e44f95d186296a9a105887924c747fd1c89740bd708f04d5d67a65481b972d57fef09d8bee16dfe1b2655b9e3
-DIST gscan2pdf-1.8.9.tar.xz 405780 BLAKE2B 
2b0b818f314064e03ecd6b1eed988f9d45808a7142c00d190dba552ac87f06da74aacb47341ce749a9e1c916cf607eafd4f1d412a6a239a07426e57c16e62dc9
 SHA512 
a9042b2a184b03bb7a53d5fa56abc93e873c6e675350db4094e38c04e3f7e784eb6f0369a950f598b052474e8cbaea007af10849a2cee18cdb18d90605d4d90a

diff --git a/media-gfx/gscan2pdf/gscan2pdf-1.8.8.ebuild 
b/media-gfx/gscan2pdf/gscan2pdf-1.8.8.ebuild
deleted file mode 100644
index 00f29f30d45..000
--- a/media-gfx/gscan2pdf/gscan2pdf-1.8.8.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils perl-module
-
-DESCRIPTION="Scan documents, perform OCR, produce PDFs and DjVus"
-HOMEPAGE="http://gscan2pdf.sourceforge.net/";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# OCR tests fail with tesseract[opencl], not fixed by addpredict
-# and others on Wayland and the console
-RESTRICT="test"
-
-RDEPEND="
-   dev-perl/Config-General
-   dev-perl/Date-Calc
-   dev-perl/Data-UUID
-   dev-perl/Filesys-Df
-   dev-perl/glib-perl
-   dev-perl/Goo-Canvas
-   dev-perl/Gtk2-Ex-PodViewer
-   dev-perl/Gtk2-Ex-Simple-List
-   dev-perl/Gtk2-ImageView
-   dev-perl/Gtk2
-   dev-perl/HTML-Parser
-   dev-perl/Image-Sane
-   dev-perl/Locale-gettext
-   dev-perl/List-MoreUtils
-   dev-perl/Log-Log4perl
-   dev-perl/PDF-API2
-   dev-perl/Proc-ProcessTable
-   dev-perl/Readonly
-   dev-perl/Set-IntSpan
-   dev-perl/Try-Tiny
-   virtual/perl-Archive-Tar
-   virtual/perl-Carp
-   virtual/perl-Data-Dumper
-   virtual/perl-File-Temp
-   virtual/perl-Getopt-Long
-   virtual/perl-threads
-   virtual/perl-threads-shared
-   media-gfx/gtkimageview
-   media-gfx/imagemagick[png,tiff,perl]
-   media-gfx/sane-backends
-   media-libs/tiff"
-
-mydoc="History"
-
-pkg_postinst() {
-   optfeature "DjVu file support" "app-text/djvu[tiff] 
media-gfx/imagemagick[djvu]"
-   optfeature "creating PostScript files from PDFs" app-text/poppler[utils]
-   optfeature "adding to an existing PDF" app-text/poppler[utils]
-   optfeature "Optical Character Recognition" app-text/tesseract[osd,tiff]
-   optfeature "scan post-processing" app-text/unpaper
-   optfeature "automatic document feeder support" media-gfx/sane-frontends
-   optfeature "sending PDFs as email attachments" x11-misc/xdg-utils
-}

diff --git a/media-gfx/gscan2pdf/gscan2pdf-1.8.9.ebuild 
b/media-gfx/gscan2pdf/gscan2pdf-1.8.9.ebuild
deleted file mode 100644
index 00f29f30d45..000
--- a/media-gfx/gscan2pdf/gscan2pdf-1.8.9.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils perl-module
-
-DESCRIPTION="Scan documents, perform OCR, produce PDFs and DjVus"
-HOMEPAGE="http://gscan2pdf.sourceforge.net/";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# OCR tests fail with tesseract[opencl], not fixed b

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

2018-01-28 Thread Andreas Sturmlechner
commit: c41a74c537f7ec4cc991122952fe66869cfb9920
Author: Francesco Turco  fastmail  fm>
AuthorDate: Sat Jan 27 12:31:55 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c41a74c5

net-p2p/bitcoind: use HTTPS instead of HTTP

 net-p2p/bitcoind/bitcoind-0.15.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-p2p/bitcoind/bitcoind-0.15.1.ebuild 
b/net-p2p/bitcoind/bitcoind-0.15.1.ebuild
index 0d8788ad457..3f1f2e08693 100644
--- a/net-p2p/bitcoind/bitcoind-0.15.1.ebuild
+++ b/net-p2p/bitcoind/bitcoind-0.15.1.ebuild
@@ -16,17 +16,17 @@ KNOTS_P="${MyPN}-${KNOTS_PV}"
 IUSE="+asm +bitcoin_policy_rbf examples knots libressl test upnp +wallet 
zeromq"
 
 DESCRIPTION="Original Bitcoin crypto-currency wallet for automated services"
-HOMEPAGE="http://bitcoincore.org/ http://bitcoinknots.org/";
+HOMEPAGE="https://bitcoincore.org/ https://bitcoinknots.org/";
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc x86 ~amd64-linux ~x86-linux"
 
 SRC_URI="

https://github.com/${MyPN}/${MyPN}/archive/${BITCOINCORE_COMMITHASH}.tar.gz -> 
${MyPN}-v${PV}.tar.gz
-   http://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.patches.txz 
-> ${KNOTS_P}.patches.tar.xz
+   
https://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.patches.txz -> 
${KNOTS_P}.patches.tar.xz
 "
 CORE_DESC="https://bitcoincore.org/en/2017/11/11/release-${PV}/";
-KNOTS_DESC="http://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.desc.html";
+KNOTS_DESC="https://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.desc.html";
 
 RDEPEND="
!libressl? ( dev-libs/openssl:0=[-bindist] )



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-l10n/

2018-01-28 Thread Andreas Sturmlechner
commit: 8bd069eaf37cc7383d1c1ed1b2fa5f2be8490d8b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan 27 20:22:09 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:18:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bd069ea

app-office/libreoffice-l10n: 6.0.0.3 version bump, no keywords

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 app-office/libreoffice-l10n/Manifest   | 168 +
 .../libreoffice-l10n-6.0.0.3.ebuild|  89 +++
 2 files changed, 257 insertions(+)

diff --git a/app-office/libreoffice-l10n/Manifest 
b/app-office/libreoffice-l10n/Manifest
index 0c4b597d935..c13c71cbe63 100644
--- a/app-office/libreoffice-l10n/Manifest
+++ b/app-office/libreoffice-l10n/Manifest
@@ -334,3 +334,171 @@ DIST LibreOffice_5.4.4.2_Linux_x86_rpm_langpack_xh.tar.gz 
437828 BLAKE2B 7d878a6
 DIST LibreOffice_5.4.4.2_Linux_x86_rpm_langpack_zh-CN.tar.gz 515564 BLAKE2B 
f7076f4082760c78b08a49a9f03b4c57d5e40c8d4fdfea0dae14729e7eac4f8d11ee87bd8e2d923fdb0333fdbdfbd3f504d8302004f216040e26b7264e6efa28
 SHA512 
50421cf9d62308e64b5cca61cbad826f65071572827a27c6ce599c085298faf2425778deb34f2eee99c7112f763fe37037f6f117eea236864b9670020532e76d
 DIST LibreOffice_5.4.4.2_Linux_x86_rpm_langpack_zh-TW.tar.gz 512438 BLAKE2B 
9b65057cc7bb2c5b698a353215b33c59b166f3165a8c68a349b997cc6daa11b98a19604a6e775a2bab45ccb94607e1fed00d5691692d8235937e99104f13e9af
 SHA512 
ceb05ca39ab854b7e8dc6ce10d3ee8bd70759d67f58e09c2c547991d6b715cdfb84b5bd95c36544d410e719a9608f45e6a60823989abbaa7d8a0a4caf9ef5a02
 DIST LibreOffice_5.4.4.2_Linux_x86_rpm_langpack_zu.tar.gz 439692 BLAKE2B 
b7d53ebde5636f3e8540af3b50ce417698555ac6948cc4b16615851547938492af7478845aab895b195da71ba5fc3a747d4c7ee08be55f8626e8ec2758e025ec
 SHA512 
a7c877b15cde0a0b2c4af42f2f3b251dfbf289cd5c3f8e838fbe7e4c0f6d2658825a9e28dab1894297c3bdf221542b141dd648b513b5439874271ce0cd68d71a
+DIST LibreOffice_6.0.0.3_Linux_x86_rpm_helppack_am.tar.gz 7989351 BLAKE2B 
f861c20ac50616ff281f0ab01445c80b9333120b8a727edbaf7935475eae0b315c956dc43ac54525807762a313f7af3210375d4c84e69093204d631e72d15361
 SHA512 
24089678a28a929052c7e00adc7af7d51fa4b10d2ec8c077b5f06a06ce84c91794a6777a0332128c65c8ff4d0b063e8a74e644986235c5f900e9a0d2cc52ee28
+DIST LibreOffice_6.0.0.3_Linux_x86_rpm_helppack_ast.tar.gz 7905050 BLAKE2B 
b40231005b499352b100f6d42d11731750cee8577017fdc7906ba7002bfd37a01c484ead7d2e2a83524a3e6b7f2b0e0e9218483cec77d53cabcfd194876c5eff
 SHA512 
3eca59d20465704da4c09545d605003a24a9d5fc32ba2338598d1671e8ef11091fd0a2c8ce83de70e89b1f7dfdfe8779eec0eb78b1d41b42ff38e350f64a84e8
+DIST LibreOffice_6.0.0.3_Linux_x86_rpm_helppack_bg.tar.gz 8467092 BLAKE2B 
0357115e066e43fa3a663c18f3e032b4130455697552fec36519d7d2ee6683ce964f0ce99f692919b414e683fd64ed1280dcaba5adeccfca3aa4f97e4e21862f
 SHA512 
a5215515aa13c05d50906aaac69f9009df0b3c480c8fcd51a8e3c0caf6ac1dda65caf71141e89322f77f54d370511a3c6a78d7ea961c6c48432cfcce337c972f
+DIST LibreOffice_6.0.0.3_Linux_x86_rpm_helppack_bn-IN.tar.gz 9145176 BLAKE2B 
4a631b1f302ed2924e3073699a7b78a631d1e0e7c34253729c430cb614a9358505f821c2602974bb4b4d486944c96119b4347464b54ab495f8f57b0d7ef00f87
 SHA512 
03ad8567196d251aeabf504a4fcc6e69c90c217ea6957f8c08247f26afdf819d5e6ae49e6f47aa301bfa1b0f69f56856e756e86216bd033a046ee8c9db5af74b
+DIST LibreOffice_6.0.0.3_Linux_x86_rpm_helppack_bn.tar.gz 9145251 BLAKE2B 
58e94bbc40e55037f054d356f1d22e3e80874e60944da2de6a6bf15225d9e4825318820f097f21d6f53a8bb50a63c09d5e724bd3770b1f9211d0919e0d08f4aa
 SHA512 
92ca0f582c7ce88455709614b997af36423a2a6a3c91ac1f26eb366a3f851fcade9160c6c7e40140855ddafa092dabb498f2d7744fe1e3db4200fc0e4d3c1709
+DIST LibreOffice_6.0.0.3_Linux_x86_rpm_helppack_bo.tar.gz 8891341 BLAKE2B 
49a7f0061fac5afb9ec991ccae2f681440cee20027f69f68ce0b9385e235c4171deb1fe8f228dfd3195bd9f67d18a79d2ee6fc9ebc47076dbf1f66fa4b1f3b40
 SHA512 
6b7729b8678644e6acb319d8600d4c37b5d7a1e56cb6ec6cd3f4b3a679f093f0236d643f2f879fb3ad04c8c66e6da545328854089b4cf26f537d2ac36b280d16
+DIST LibreOffice_6.0.0.3_Linux_x86_rpm_helppack_bs.tar.gz 7211190 BLAKE2B 
e95403dbff55498ddaebb29c6aa14329ea29d7950e0775daa7013174f1950ada5611688733c44de899fd00278a46bdae81038f325943537e98272e20bfd88c02
 SHA512 
78e617d9921ade5ed4efcd4cbeb9f720e657858e2e4e2310fbd7518bf5fa612d4a8555acd68ed7907c40de003ee8a43aea6e6c68df6852a91c45412ab8c7491e
+DIST LibreOffice_6.0.0.3_Linux_x86_rpm_helppack_ca-valencia.tar.gz 8092139 
BLAKE2B 
b45530fe77c51bcad4c1673da80636b4dad3d75534ff5e7b094456aedf36961502910ee6edfead6b0f17002a8c809bd3df05d98b3f437f4033e066145ceee3ce
 SHA512 
11a028ebc3f8efbd7c55576d64af4dfa29e9f9d5ef1bfa302603dce1a06e79809fce464302702accb4346de91399fd0e1ab0cd97e7f723e61cfa8d4455415aa2
+DIST LibreOffice_6.0.0.3_Linux_x86_rpm_helppack_ca.tar.gz 8094090 BLAKE2B 
764a621cbb13a13920e61b8d0c7b6ef45b09c86026085a2f7efb2a300107a8d5b0a17a5e08125a415a0a1310f9c40191e2a1ff8a7b1072ef02bec72524ce25dd
 SHA512 
3d060d60a7ce96a0fc061f44ff4f85e39565ae180cb548d33e017fde4ef49b22a97189

[gentoo-commits] repo/gentoo:master commit in: kde-apps/cantor/, kde-apps/cantor/files/

2018-01-28 Thread Andreas Sturmlechner
commit: e0effca2fa74d987cc4634553ff8ab59a7ac977e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 28 19:53:23 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:18:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0effca2

kde-apps/cantor: Drop 16.12.3

Closes: https://bugs.gentoo.org/619534
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 kde-apps/cantor/Manifest   |   1 -
 kde-apps/cantor/cantor-16.12.3.ebuild  | 108 -
 kde-apps/cantor/files/cantor-16.12.2-bashism.patch |  13 ---
 3 files changed, 122 deletions(-)

diff --git a/kde-apps/cantor/Manifest b/kde-apps/cantor/Manifest
index 06520bd2aed..940af934614 100644
--- a/kde-apps/cantor/Manifest
+++ b/kde-apps/cantor/Manifest
@@ -1,3 +1,2 @@
-DIST cantor-16.12.3.tar.xz 378460 BLAKE2B 
189ab04d6fda6864d1827abbd7689b87f59e784ed838613b8d00c44774b9672afad7456665310cc39d95345c5845b60f44708a28550842d14104948333a1e9af
 SHA512 
e6401d5472797894931b4c1c0a4cda7e900ede0d9c5e7d1b5a2ff518741f7f62a7f6187b5081edb231f47c1de163aa537cc195e381334ed60890eb6c73374768
 DIST cantor-17.08.3.tar.xz 1062400 BLAKE2B 
c9ee9ca23679566c7e8b1895a6ef5a332d486f8abea75242529cd5a5f99f506cd1b3dfef5591a6275272a5a0b8441ff9ef1cf8621c236a7357c5391d187e60be
 SHA512 
92d40921b4121e7053381f071eaf08ba2a5bfdd42272ff749db726aa300878561b8079118a0ea61173269abb04fa1cbfeb8dba27da8701ecd2b17876c64a108b
 DIST cantor-17.12.1.tar.xz 1064476 BLAKE2B 
64eb91b1f0f033c5d6d33c21c9077cac1eb3ccfe33f25047dd18af8fec029cf1b5b26c5f68908eb3d12741ea48857639bb38db97748e48a6880993d37568711a
 SHA512 
d15d9699e05a01fe5f376942dd39fdc9f6e8189819d44b11dbadb7ac43638766a233a361d107aa572e16df598eec4e220bfb9740d741d60a10ea7b00bb6fe095

diff --git a/kde-apps/cantor/cantor-16.12.3.ebuild 
b/kde-apps/cantor/cantor-16.12.3.ebuild
deleted file mode 100644
index 14332980db5..000
--- a/kde-apps/cantor/cantor-16.12.3.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="forceoptional"
-PYTHON_COMPAT=( python2_7 )
-# FIXME: PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-inherit kde5 python-r1
-
-DESCRIPTION="Interface for doing mathematics and scientific computing"
-HOMEPAGE="https://www.kde.org/applications/education/cantor 
https://edu.kde.org/cantor";
-SRC_URI="mirror://kde/Attic/applications/${PV}/src/${P}.tar.xz"
-
-KEYWORDS="amd64 x86"
-IUSE="analitza julia lua postscript python qalculate +R"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-# TODO Add Sage Mathematics Software backend (http://www.sagemath.org)
-# FIXME: $(python_gen_cond_dep 'dev-qt/qtdbus:5' 'python3*')
-DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kpty)
-   $(add_frameworks_dep ktexteditor)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   $(add_qt_dep qtxmlpatterns)
-   analitza? ( $(add_kdeapps_dep analitza) )
-   julia? ( dev-lang/julia )
-   lua? ( dev-lang/luajit:2 )
-   qalculate? (
-   sci-libs/cln
-   sci-libs/libqalculate:=
-   )
-   postscript? ( app-text/libspectre )
-   python? ( ${PYTHON_DEPS} )
-   R? ( dev-lang/R )
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT+=" test"
-
-PATCHES=( "${FILESDIR}"/${PN}-16.12.2-bashism.patch )
-
-pkg_pretend() {
-   kde5_pkg_pretend
-
-   if ! has_version sci-mathematics/maxima && ! has_version 
sci-mathematics/octave && \
-   ! use analitza && ! use julia && ! use lua && ! use python && ! 
use qalculate && ! use R; then
-   einfo "You have decided to build ${PN} with no backend."
-   einfo "To have this application functional, please enable one 
of the backends via USE flag:"
-   einfo "analitza, julia, lua, python, qalculate, R"
-   einfo "Alternatively, install one of these:"
-   einfo "# emerge sci-mathematics/maxima"
-   einfo "# emerge sci-mathematics/octave"
-   einfo
-   fi
-
-   if ! has_version virtual/latex-base; then
-   einfo "For LaTeX support:"
-   einfo "# emerge virtual/latex-base"
-   fi
-}
-
-pkg_setup() {
-   use python && python_setup
-   kde5_pkg_setup
-}
-
-src_prepare() {
-   kde5_src

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

2018-01-28 Thread Andreas Sturmlechner
commit: 1c7e2111a4772a5ecbeab885f29bf36cc8f4d544
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 28 13:16:11 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:18:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c7e2111

kde-misc/kio-gdrive: Drop old

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 kde-misc/kio-gdrive/Manifest  |  1 -
 kde-misc/kio-gdrive/kio-gdrive-1.2.0.1.ebuild | 44 ---
 2 files changed, 45 deletions(-)

diff --git a/kde-misc/kio-gdrive/Manifest b/kde-misc/kio-gdrive/Manifest
index 1e3071d2d8f..5299deeb1c3 100644
--- a/kde-misc/kio-gdrive/Manifest
+++ b/kde-misc/kio-gdrive/Manifest
@@ -1,2 +1 @@
-DIST kio-gdrive-1.2.0.1.tar.xz 34356 BLAKE2B 
3abf9e723415ad239e2da2ba25fe6870592429d75145a46f1227fc0a2ffca830e611a3d860e8fc439106f99eeda862ee2dc510e9c49631f64c68abba3a897c01
 SHA512 
8f3cff889ff91c7775733f067ba45097d89e2f98a5ba1202d2fd55645973ffcf03f18002ce73fb5221706d51551af3d44ee2c41229f5c272ccf6913fcdb78c47
 DIST kio-gdrive-1.2.1.tar.xz 33820 BLAKE2B 
5f1e4ec09b07b135b49bf887c560ee873eb32e918024899bd4790208e6d1e52957480acc9d5cdfa0d0a003c864cd554bf11b2466d123e4bf804306ea4508ff69
 SHA512 
021612192adc4173d936ee5f16d959db6c2d74aadae0d6dcb25aa1b8f1cd06f650e870d62eb72c9efbd9b581b06a949fcd78f494ec63eaac9ad67b16a0f0ab79

diff --git a/kde-misc/kio-gdrive/kio-gdrive-1.2.0.1.ebuild 
b/kde-misc/kio-gdrive/kio-gdrive-1.2.0.1.ebuild
deleted file mode 100644
index e4dbff89ec3..000
--- a/kde-misc/kio-gdrive/kio-gdrive-1.2.0.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_APPS_MINIMAL="17.04.0"
-KDE_HANDBOOK="true"
-KDE_TEST="optional"
-inherit kde5
-
-DESCRIPTION="KIO Slave for Google Drive service"
-HOMEPAGE="https://phabricator.kde.org/project/profile/72/";
-
-if [[ ${KDE_BUILD_TYPE} != live ]] ; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="amd64 x86"
-fi
-
-IUSE="+kaccounts"
-
-RDEPEND="
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knotifications)
-   $(add_kdeapps_dep libkgapi)
-   $(add_qt_dep qtwidgets)
-   kaccounts? ( $(add_kdeapps_dep kaccounts-integration) )
-   !kaccounts? ( dev-libs/qtkeychain:=[qt5(+)] )
-"
-DEPEND="${RDEPEND}
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   dev-util/intltool
-"
-
-DOCS=( README.md )
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package kaccounts KAccounts)
-   )
-   kde5_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2018-01-28 Thread Andreas Sturmlechner
commit: 5c817e1b0bcc1f067390ff409feff4e8ffd605d6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan 27 19:27:57 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:18:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c817e1b

app-office/libreoffice: Add 6.0 patchset for gtk3-kde5 vcl plugin

Switches 6.0 branch USE=kde away from kdelibs4.

Thanks-to: Andrius Štikonas  stikonas.eu>
Bug: https://bugs.gentoo.org/645558
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 app-office/libreoffice/Manifest|  1 +
 app-office/libreoffice/libreoffice-6.0..ebuild | 45 --
 2 files changed, 26 insertions(+), 20 deletions(-)

diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest
index 83d7c49cecb..ca35e8495a0 100644
--- a/app-office/libreoffice/Manifest
+++ b/app-office/libreoffice/Manifest
@@ -6,6 +6,7 @@ DIST 798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip 1521926 
BLAKE2B d2769842c18
 DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 BLAKE2B 
51db6bd90585b13857ecb494c805c9fb6874e1e65d7aee73d23e1716670836a14b376bcca810f96fd55b0ed653b2660a268030f246c822cbb04f867ef763a3b3
 SHA512 
2d3835f7ac356805025cafedcad97faa48d0f5da386e6ac7b7451030059df8e2fdb0861ade07a576ebf9fb5b88a973585ab0437944b06aac9289d6898ba8586a
 DIST libreoffice-5.4.2.2.tar.xz 192795940 BLAKE2B 
35672c2d7c78b5aca71e4f492dd41475f4da0ca01433c0d05a811bfee39467c037e510552258b149f463f0c05dec83d2d7109342b88bc7d7775a51bf6831891a
 SHA512 
37edf44b4b3c3e694f5b5915647f9555413c3fcc6d29f5f8d74806439b65ed90418905476d7b75ce58a032abb1f55cecf1ca74b63279666ca2af5f3ac95a645c
 DIST libreoffice-5.4.4.2.tar.xz 193657116 BLAKE2B 
1be8565481bbdf930f6bbbd894dbe5d0be7faeba068517e15a2b23acfd2d8d06960e5991fd9d990c49ad13857177020e22fdb5c272587bc25cac4bdf23bb7fa1
 SHA512 
f7142fd73aa037b0bbffd3fa5af58049ab6688900976296ba2e53956227aef8920cb229aad4eec05ff36c8dde584415f7893893cc81cac72b305f67b80e36882
+DIST libreoffice-6.0.0.3-patchset-01.tar.xz 33032 BLAKE2B 
1fad88d703b9ff097a6870d6f74731de3e6bd5f7b91938e674b28bf82bae0b075d910a930b2e3c82fc1ff5dff81f13575fed351f8165cec67903e8949e06b9d4
 SHA512 
2fb4f02e93b648fbf611b62ad8bfe93fd4b228bee84612a9d62e9bc061cabf51ae76d7d9cbfbad186669db109fe829765c816eb27960f97ca37e7fe0536d72e9
 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B 
f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883
 SHA512 
785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f
 DIST libreoffice-help-5.4.2.2.tar.xz 2343504 BLAKE2B 
7d446d5b078adc8943be3fced92f367101f84c8639b84d86a1b8c2386d8aeec61dc01706078cbb251ad81abebb914acc7f5e977aa17fcd1f55db65c0861814e2
 SHA512 
ba845653d6388bae53eaa945abebb367fedace81c1949ed975a2ad0c270c688649b385b463256b362a6397f18d214aed9b876869434c6c3868649180e57c3112
 DIST libreoffice-help-5.4.4.2.tar.xz 2343352 BLAKE2B 
d94528f6dcc85730f2443f3a84beff0cd113bb9c423d767c74d831649e56b0c92279474a0f1169ebc0ffd7804d57dba86aaa352e7fd1d9df9721f3ff6059047c
 SHA512 
55abdde1cf0f62d213a897cc30b92ae04960c9b1e6e69c4f86242d2beecd787f44be9c3d0c8684d775ffe40b17d685a71739c9c2f08753649c4e1298fdf94226

diff --git a/app-office/libreoffice/libreoffice-6.0..ebuild 
b/app-office/libreoffice/libreoffice-6.0..ebuild
index 90f72941a9b..4ef05313f50 100644
--- a/app-office/libreoffice/libreoffice-6.0..ebuild
+++ b/app-office/libreoffice/libreoffice-6.0..ebuild
@@ -17,7 +17,7 @@ DEV_URI="
 ADDONS_URI="https://dev-www.libreoffice.org/src/";
 
 BRANDING="${PN}-branding-gentoo-0.8.tar.xz"
-# PATCHSET="${P}-patchset-01.tar.xz"
+PATCHSET="${PN}-6.0.0.3-patchset-01.tar.xz"
 
 [[ ${PV} == ** ]] && SCM_ECLASS="git-r3"
 inherit multiprocessing autotools bash-completion-r1 check-reqs gnome2-utils 
java-pkg-opt-2 pax-utils python-single-r1 toolchain-funcs flag-o-matic 
versionator xdg-utils qmake-utils ${SCM_ECLASS}
@@ -26,7 +26,7 @@ unset SCM_ECLASS
 DESCRIPTION="A full office productivity suite"
 HOMEPAGE="https://www.libreoffice.org";
 SRC_URI="branding? ( https://dev.gentoo.org/~dilfridge/distfiles/${BRANDING} )"
-[[ -n ${PATCHSET} ]] && SRC_URI+=" 
http://dev.gentooexperimental.org/~scarabeus/${PATCHSET}";
+[[ -n ${PATCHSET} ]] && SRC_URI+=" 
https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}";
 
 # Split modules following git/tarballs
 # Core MUST be first!
@@ -157,17 +157,23 @@ COMMON_DEPEND="${PYTHON_DEPS}
x11-libs/gdk-pixbuf
>=x11-libs/gtk+-2.24:2
)
+   kde? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtx11extras:5
+   dev-qt/qtwidgets:5
+   kde-frameworks/kconfig:5
+   kde-frameworks/kcoreaddons:5
+   kde-frameworks/ki18n:5
+   kde-frameworks/kio:5
+   kde-frameworks/kwindowsystem:5
+   )

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

2018-01-28 Thread Andreas Sturmlechner
commit: 2bcef572a4a5192e17003dd1b213c95bfe8a6f92
Author: Francesco Turco  fastmail  fm>
AuthorDate: Sat Jan 27 12:23:33 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bcef572

dev-util/bitcoin-tx: use HTTPS instead of HTTP

Closes: https://github.com/gentoo/gentoo/pull/6975

 dev-util/bitcoin-tx/bitcoin-tx-0.15.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-util/bitcoin-tx/bitcoin-tx-0.15.1.ebuild 
b/dev-util/bitcoin-tx/bitcoin-tx-0.15.1.ebuild
index d5c34e353b8..35051137b2e 100644
--- a/dev-util/bitcoin-tx/bitcoin-tx-0.15.1.ebuild
+++ b/dev-util/bitcoin-tx/bitcoin-tx-0.15.1.ebuild
@@ -15,17 +15,17 @@ KNOTS_P="${MyPN}-${KNOTS_PV}"
 IUSE="knots libressl"
 
 DESCRIPTION="Command-line Bitcoin transaction tool"
-HOMEPAGE="http://bitcoincore.org/ http://bitcoinknots.org/";
+HOMEPAGE="https://bitcoincore.org/ https://bitcoinknots.org/";
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc x86 ~amd64-linux ~x86-linux"
 
 SRC_URI="

https://github.com/${MyPN}/${MyPN}/archive/${BITCOINCORE_COMMITHASH}.tar.gz -> 
${MyPN}-v${PV}.tar.gz
-   http://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.patches.txz 
-> ${KNOTS_P}.patches.tar.xz
+   
https://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.patches.txz -> 
${KNOTS_P}.patches.tar.xz
 "
 CORE_DESC="https://bitcoincore.org/en/2017/11/11/release-${PV}/";
-KNOTS_DESC="http://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.desc.html";
+KNOTS_DESC="https://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.desc.html";
 
 RDEPEND="
!libressl? ( dev-libs/openssl:0=[-bindist] )



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2018-01-28 Thread Andreas Sturmlechner
commit: 3961a215058b8c479555d58991e438cfc81a9541
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan 27 22:19:21 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:18:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3961a215

app-office/libreoffice: Simplify src_unpack()

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 app-office/libreoffice/libreoffice-.ebuild | 13 +
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/app-office/libreoffice/libreoffice-.ebuild 
b/app-office/libreoffice/libreoffice-.ebuild
index 3b3a7ad4a07..4869257cf96 100644
--- a/app-office/libreoffice/libreoffice-.ebuild
+++ b/app-office/libreoffice/libreoffice-.ebuild
@@ -243,6 +243,8 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}
 "
 
 PATCHES=(
+   # "${WORKDIR}"/${PATCHSET/.tar.xz/}
+
# not upstreamable stuff
"${FILESDIR}/${PN}-5.4-system-pyuno.patch"
"${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch"
@@ -289,13 +291,9 @@ pkg_setup() {
 }
 
 src_unpack() {
-   [[ -n ${PATCHSET} ]] && unpack ${PATCHSET}
-   use branding && unpack "${BRANDING}"
+   default
 
-   if [[ ${PV} != ** ]]; then
-   unpack "${P}.tar.xz"
-   unpack "${PN}-help-${PV}.tar.xz"
-   else
+   if [[ ${PV} = ** ]]; then
local base_uri branch mypv
base_uri="https://anongit.freedesktop.org/git";
branch="master"
@@ -310,7 +308,6 @@ src_unpack() {
 }
 
 src_prepare() {
-   [[ -n ${PATCHSET} ]] && eapply "${WORKDIR}/${PATCHSET/.tar.xz/}"
default
 
AT_M4DIR="m4" eautoreconf
@@ -425,8 +422,8 @@ src_configure() {
$(use_enable bluetooth sdremote-bluetooth)
$(use_enable coinmp)
$(use_enable cups)
-   $(use_enable debug)
$(use_enable dbus)
+   $(use_enable debug)
$(use_enable eds evolution2)
$(use_enable firebird firebird-sdbc)
$(use_enable gstreamer gstreamer-1-0)



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

2018-01-28 Thread Andreas Sturmlechner
commit: 39db90d4a8bb494b3588b4161bf2e5498773033d
Author: Francesco Turco  fastmail  fm>
AuthorDate: Sat Jan 27 12:30:06 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39db90d4

net-p2p/bitcoin-qt: use HTTPS instead of HTTP

 net-p2p/bitcoin-qt/bitcoin-qt-0.15.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-p2p/bitcoin-qt/bitcoin-qt-0.15.1.ebuild 
b/net-p2p/bitcoin-qt/bitcoin-qt-0.15.1.ebuild
index 864deba6ffd..9f10fc64fac 100644
--- a/net-p2p/bitcoin-qt/bitcoin-qt-0.15.1.ebuild
+++ b/net-p2p/bitcoin-qt/bitcoin-qt-0.15.1.ebuild
@@ -18,17 +18,17 @@ LANGS="af af:af_ZA am ar be:be_BY bg bg:bg_BG bn bs ca 
ca@valencia ca:ca_ES cs c
 KNOTS_LANGS="am hu_HU is ms pl_PL pt sn"
 
 DESCRIPTION="An end-user Qt GUI for the Bitcoin crypto-currency"
-HOMEPAGE="http://bitcoincore.org/ http://bitcoinknots.org/";
+HOMEPAGE="https://bitcoincore.org/ https://bitcoinknots.org/";
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc x86 ~amd64-linux ~x86-linux"
 
 SRC_URI="

https://github.com/${MyPN}/${MyPN}/archive/${BITCOINCORE_COMMITHASH}.tar.gz -> 
${MyPN}-v${PV}.tar.gz
-   http://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.patches.txz 
-> ${KNOTS_P}.patches.tar.xz
+   
https://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.patches.txz -> 
${KNOTS_P}.patches.tar.xz
 "
 CORE_DESC="https://bitcoincore.org/en/2017/11/11/release-${PV}/";
-KNOTS_DESC="http://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.desc.html";
+KNOTS_DESC="https://bitcoinknots.org/files/0.15.x/${KNOTS_PV}/${KNOTS_P}.desc.html";
 
 RDEPEND="
!libressl? ( dev-libs/openssl:0=[-bindist] )



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

2018-01-28 Thread Andreas Sturmlechner
commit: 768bdebc9dda4867a9543257a84bdeec4529ca9b
Author: Chris Mayo  gmail  com>
AuthorDate: Sun Jan 28 19:15:42 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:19:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=768bdebc

media-gfx/gscan2pdf: version bump to 1.8.11

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

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

diff --git a/media-gfx/gscan2pdf/Manifest b/media-gfx/gscan2pdf/Manifest
index 01db31587fb..d3b5c85b597 100644
--- a/media-gfx/gscan2pdf/Manifest
+++ b/media-gfx/gscan2pdf/Manifest
@@ -1,3 +1,4 @@
 DIST gscan2pdf-1.8.10.tar.xz 406128 BLAKE2B 
328c05f377e12742bbf8ebf92f327afddc4556533e4f7500b237d968fa07b6505f0a3be2c02f42318740e9d185611c094cf96c66804af02197097eebd16b880c
 SHA512 
334979b10238d510da8c5807290920b50e3a06ddda99dad41ced96d33e1ca8467cafe1f3112fb81b6705f80bc232eb6f041d588a57e04d5eecd09a201f007a49
+DIST gscan2pdf-1.8.11.tar.xz 409212 BLAKE2B 
37cb716f13818eaffc39c210b810b845368cc5e323569e8f9d5603b5b412c4182520798321358e4c21339fdbd5f15026a0acd6421a49e7db79ecca86633c3ab0
 SHA512 
1ea09b8768771be4a1700cb8a6523d5f74fcbf0ebe459d97796032b56f896fd0c50e5ca1ed4c96aedef7e61f6952a92986153cc70173dd5ad91ccfb72461c565
 DIST gscan2pdf-1.8.8.tar.xz 404456 BLAKE2B 
23e81ad9d46867863f7cf14e0350cce568d9f9e7a57fd8eb9a4b1a56a112d72008adacf7cc4514c6d93dd6b225684d57494a5baa295c8f84a927de7bd208d722
 SHA512 
331821c0f9d7365866b7ba6bdbcd29d03b69516e44f95d186296a9a105887924c747fd1c89740bd708f04d5d67a65481b972d57fef09d8bee16dfe1b2655b9e3
 DIST gscan2pdf-1.8.9.tar.xz 405780 BLAKE2B 
2b0b818f314064e03ecd6b1eed988f9d45808a7142c00d190dba552ac87f06da74aacb47341ce749a9e1c916cf607eafd4f1d412a6a239a07426e57c16e62dc9
 SHA512 
a9042b2a184b03bb7a53d5fa56abc93e873c6e675350db4094e38c04e3f7e784eb6f0369a950f598b052474e8cbaea007af10849a2cee18cdb18d90605d4d90a

diff --git a/media-gfx/gscan2pdf/gscan2pdf-1.8.11.ebuild 
b/media-gfx/gscan2pdf/gscan2pdf-1.8.11.ebuild
new file mode 100644
index 000..96b14c3454a
--- /dev/null
+++ b/media-gfx/gscan2pdf/gscan2pdf-1.8.11.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils perl-module
+
+DESCRIPTION="Scan documents, perform OCR, produce PDFs and DjVus"
+HOMEPAGE="http://gscan2pdf.sourceforge.net/";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# OCR tests fail with tesseract[opencl], not fixed by addpredict
+# and others on Wayland and the console
+RESTRICT="test"
+
+RDEPEND="
+   dev-perl/Config-General
+   dev-perl/Date-Calc
+   dev-perl/Data-UUID
+   dev-perl/Filesys-Df
+   dev-perl/glib-perl
+   dev-perl/Goo-Canvas
+   dev-perl/Gtk2-Ex-PodViewer
+   dev-perl/Gtk2-Ex-Simple-List
+   dev-perl/Gtk2-ImageView
+   dev-perl/Gtk2
+   dev-perl/HTML-Parser
+   dev-perl/Image-Sane
+   dev-perl/Locale-gettext
+   dev-perl/List-MoreUtils
+   dev-perl/Log-Log4perl
+   dev-perl/PDF-API2
+   dev-perl/Proc-ProcessTable
+   dev-perl/Readonly
+   dev-perl/Set-IntSpan
+   dev-perl/Try-Tiny
+   virtual/perl-Archive-Tar
+   virtual/perl-Carp
+   virtual/perl-Data-Dumper
+   virtual/perl-File-Temp
+   virtual/perl-Getopt-Long
+   virtual/perl-threads
+   virtual/perl-threads-shared
+   media-gfx/gtkimageview
+   media-gfx/imagemagick[png,tiff,perl]
+   media-gfx/sane-backends
+   media-libs/tiff"
+
+mydoc="History"
+
+pkg_postinst() {
+   optfeature "DjVu file support" "app-text/djvu[tiff] 
media-gfx/imagemagick[djvu]"
+   optfeature "creating PostScript files from PDFs" app-text/poppler[utils]
+   optfeature "adding to an existing PDF" app-text/poppler[utils]
+   optfeature "Optical Character Recognition" app-text/tesseract[osd,tiff]
+   optfeature "scan post-processing" app-text/unpaper
+   optfeature "automatic document feeder support" media-gfx/sane-frontends
+   optfeature "sending PDFs as email attachments" x11-misc/xdg-utils
+}



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2018-01-28 Thread Andreas Sturmlechner
commit: b4ee378213f13b2bd7ede5ee2d3d24e6366b9245
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan 27 20:21:20 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 28 23:18:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4ee3782

app-office/libreoffice: 6.0.0.3 version bump, no keywords

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 app-office/libreoffice/Manifest   |   2 +
 app-office/libreoffice/libreoffice-6.0.0.3.ebuild | 569 ++
 2 files changed, 571 insertions(+)

diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest
index ca35e8495a0..e41c90ed889 100644
--- a/app-office/libreoffice/Manifest
+++ b/app-office/libreoffice/Manifest
@@ -7,6 +7,8 @@ DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 
BLAKE2B 51db6bd9058
 DIST libreoffice-5.4.2.2.tar.xz 192795940 BLAKE2B 
35672c2d7c78b5aca71e4f492dd41475f4da0ca01433c0d05a811bfee39467c037e510552258b149f463f0c05dec83d2d7109342b88bc7d7775a51bf6831891a
 SHA512 
37edf44b4b3c3e694f5b5915647f9555413c3fcc6d29f5f8d74806439b65ed90418905476d7b75ce58a032abb1f55cecf1ca74b63279666ca2af5f3ac95a645c
 DIST libreoffice-5.4.4.2.tar.xz 193657116 BLAKE2B 
1be8565481bbdf930f6bbbd894dbe5d0be7faeba068517e15a2b23acfd2d8d06960e5991fd9d990c49ad13857177020e22fdb5c272587bc25cac4bdf23bb7fa1
 SHA512 
f7142fd73aa037b0bbffd3fa5af58049ab6688900976296ba2e53956227aef8920cb229aad4eec05ff36c8dde584415f7893893cc81cac72b305f67b80e36882
 DIST libreoffice-6.0.0.3-patchset-01.tar.xz 33032 BLAKE2B 
1fad88d703b9ff097a6870d6f74731de3e6bd5f7b91938e674b28bf82bae0b075d910a930b2e3c82fc1ff5dff81f13575fed351f8165cec67903e8949e06b9d4
 SHA512 
2fb4f02e93b648fbf611b62ad8bfe93fd4b228bee84612a9d62e9bc061cabf51ae76d7d9cbfbad186669db109fe829765c816eb27960f97ca37e7fe0536d72e9
+DIST libreoffice-6.0.0.3.tar.xz 203284136 BLAKE2B 
2d8190499439afa017f12b22c4b80001169af5021a546cdbf5eaea3c47a2ac1d190e98efe5022050431805417824c29295068631ec596a6357b13528c52d
 SHA512 
2b2c0fafec5db23317a2c3236b482b0cef9c0edfabab94495a0fd3007b271eaa1dbfa97711819b3b8fb2e2375fbdfb4c662df4ffc8c519255ac84357b4c45e62
 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B 
f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883
 SHA512 
785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f
 DIST libreoffice-help-5.4.2.2.tar.xz 2343504 BLAKE2B 
7d446d5b078adc8943be3fced92f367101f84c8639b84d86a1b8c2386d8aeec61dc01706078cbb251ad81abebb914acc7f5e977aa17fcd1f55db65c0861814e2
 SHA512 
ba845653d6388bae53eaa945abebb367fedace81c1949ed975a2ad0c270c688649b385b463256b362a6397f18d214aed9b876869434c6c3868649180e57c3112
 DIST libreoffice-help-5.4.4.2.tar.xz 2343352 BLAKE2B 
d94528f6dcc85730f2443f3a84beff0cd113bb9c423d767c74d831649e56b0c92279474a0f1169ebc0ffd7804d57dba86aaa352e7fd1d9df9721f3ff6059047c
 SHA512 
55abdde1cf0f62d213a897cc30b92ae04960c9b1e6e69c4f86242d2beecd787f44be9c3d0c8684d775ffe40b17d685a71739c9c2f08753649c4e1298fdf94226
+DIST libreoffice-help-6.0.0.3.tar.xz 2972556 BLAKE2B 
6805f6a28cf29c6d55732051763f12ad2dc2c76c27c518dc40b85f2ef8f7ad4943de3a55629da4de77ee1ebd3b62a8e225e0ee260081f3c25cbffc60a21970c1
 SHA512 
9058edf71e34e55e23f5559af94d12d5f12c38385b30d75919283f435eac07dfc790d116b556aca0d0aa30f5119aea39f07a123a1f1e5ad172f5b19b3f7dc4b0

diff --git a/app-office/libreoffice/libreoffice-6.0.0.3.ebuild 
b/app-office/libreoffice/libreoffice-6.0.0.3.ebuild
new file mode 100644
index 000..c42d12a1a85
--- /dev/null
+++ b/app-office/libreoffice/libreoffice-6.0.0.3.ebuild
@@ -0,0 +1,569 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_REQ_USE="threads,xml"
+
+# experimental ; release ; old
+# Usually the tarballs are moved a lot so this should make
+# everyone happy.
+DEV_URI="
+   https://dev-builds.libreoffice.org/pre-releases/src
+   https://download.documentfoundation.org/libreoffice/src/${PV:0:5}/
+   https://download.documentfoundation.org/libreoffice/old/${PV}/
+"
+ADDONS_URI="https://dev-www.libreoffice.org/src/";
+
+BRANDING="${PN}-branding-gentoo-0.8.tar.xz"
+PATCHSET="${PN}-6.0.0.3-patchset-01.tar.xz"
+
+[[ ${PV} == ** ]] && SCM_ECLASS="git-r3"
+inherit multiprocessing autotools bash-completion-r1 check-reqs gnome2-utils 
java-pkg-opt-2 pax-utils python-single-r1 toolchain-funcs flag-o-matic 
versionator xdg-utils qmake-utils ${SCM_ECLASS}
+unset SCM_ECLASS
+
+DESCRIPTION="A full office productivity suite"
+HOMEPAGE="https://www.libreoffice.org";
+SRC_URI="branding? ( https://dev.gentoo.org/~dilfridge/distfiles/${BRANDING} )"
+[[ -n ${PATCHSET} ]] && SRC_URI+=" 
https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}";
+
+# Split modules following git/tarballs
+# Core MUST be first!
+# Help is used

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

2018-01-28 Thread Andreas Hüttel
commit: baf0e1a9320029b5b58882b9032735941c84620d
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 28 23:13:04 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sun Jan 28 23:13:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baf0e1a9

app-text/scrollkeeper-dtd: EAPI bump, bug 642308

Bug: https://bugs.gentoo.org/642308
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 .../scrollkeeper-dtd-1.0-r1.ebuild | 57 ++
 1 file changed, 57 insertions(+)

diff --git a/app-text/scrollkeeper-dtd/scrollkeeper-dtd-1.0-r1.ebuild 
b/app-text/scrollkeeper-dtd/scrollkeeper-dtd-1.0-r1.ebuild
new file mode 100644
index 000..af4997b06e6
--- /dev/null
+++ b/app-text/scrollkeeper-dtd/scrollkeeper-dtd-1.0-r1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DTD_FILE="scrollkeeper-omf.dtd"
+
+DESCRIPTION="DTD from the Scrollkeeper package"
+HOMEPAGE="http://scrollkeeper.sourceforge.net/";
+SRC_URI="http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/${DTD_FILE}";
+
+LICENSE="FDL-1.1"
+SLOT="1.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND=">=dev-libs/libxml2-2.4.19"
+DEPEND="${RDEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: media-tv/plex-media-server/

2018-01-28 Thread Jonathan Vasquez
commit: 45282acdcd2bfdb74d8d74ebc712b4cddeadd2e9
Author: Jonathan Vasquez  gentoo  org>
AuthorDate: Sun Jan 28 23:05:47 2018 +
Commit: Jonathan Vasquez  gentoo  org>
CommitDate: Sun Jan 28 23:09:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45282acd

media-tv/plex-media-server: Stabilizing 1.10.1 and Fixing #644694.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-tv/plex-media-server/Manifest|   1 -
 .../plex-media-server-1.10.0.ebuild| 135 -
 .../plex-media-server-1.10.1.ebuild|   9 +-
 3 files changed, 7 insertions(+), 138 deletions(-)

diff --git a/media-tv/plex-media-server/Manifest 
b/media-tv/plex-media-server/Manifest
index 940fda1f236..3731189161f 100644
--- a/media-tv/plex-media-server/Manifest
+++ b/media-tv/plex-media-server/Manifest
@@ -1,2 +1 @@
-DIST plexmediaserver_1.10.0.4523-648bc61d4_amd64.deb 108257188 BLAKE2B 
7b8ab929ef059ba7f2c6aea061348216361f0fa5af19a5e70fed134760e615f2bd28133a37337660711b3de4af883aede52e63e1a585b6ab15ca93d6ec7e8251
 SHA512 
8b4111c73ad04e28a2b8040fbd60b8272e2556d4a492442c25fab2b681eb7dc1477e5ec30261884a622eb9c6ab99836318c97cbb726ac07c31495c450258c0cc
 DIST plexmediaserver_1.10.1.4602-f54242b6b_amd64.deb 108445778 BLAKE2B 
8c71bbc7a90d5465aa23b4ddaddbec8ccc81f7e5f09e2e3b98a878c5375158381c5fc20fd6542a3a9e642007ab06045eb3afe210ef5f16a5f60f1d3abd8c3fe7
 SHA512 
16f3f28e1ba409b141c8f2f7ecb912bcf47485e68d8e813c4908465407d8e6e3c455e6358538445e06b73380f82c46a5b29e6d02d4b4576407dc8d7bc0644b38

diff --git a/media-tv/plex-media-server/plex-media-server-1.10.0.ebuild 
b/media-tv/plex-media-server/plex-media-server-1.10.0.ebuild
deleted file mode 100644
index b5a991388dc..000
--- a/media-tv/plex-media-server/plex-media-server-1.10.0.ebuild
+++ /dev/null
@@ -1,135 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit eutils user systemd unpacker pax-utils python-single-r1
-
-MINOR_VERSION="4523-648bc61d4"
-
-_APPNAME="plexmediaserver"
-_USERNAME="plex"
-_SHORTNAME="${_USERNAME}"
-_FULL_VERSION="${PV}.${MINOR_VERSION}"
-
-URI="https://downloads.plex.tv/plex-media-server";
-
-DESCRIPTION="A free media library that is intended for use with a plex client."
-HOMEPAGE="http://www.plex.tv/";
-SRC_URI="amd64? ( 
${URI}/${_FULL_VERSION}/plexmediaserver_${_FULL_VERSION}_amd64.deb )"
-SLOT="0"
-LICENSE="Plex"
-RESTRICT="bindist strip"
-KEYWORDS="-* amd64"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="
-   sys-apps/fix-gnustack
-   dev-python/virtualenv[${PYTHON_USEDEP}]"
-
-RDEPEND="
-   net-dns/avahi
-   ${PYTHON_DEPS}"
-
-QA_DESKTOP_FILE="usr/share/applications/plexmediamanager.desktop"
-QA_PREBUILT="*"
-QA_MULTILIB_PATHS=(
-   "usr/lib/${_APPNAME}/.*"
-   "usr/lib/${_APPNAME}/Resources/Python/lib/python2.7/.*"
-)
-
-EXECSTACKED_BINS=( "${ED%/}/usr/lib/plexmediaserver/libgnsdk_dsp.so*" )
-BINS_TO_PAX_MARK=( "${ED%/}/usr/lib/plexmediaserver/Plex Script Host" )
-
-S="${WORKDIR}"
-PATCHES=( "${FILESDIR}/virtualenv_start_pms.patch" )
-
-pkg_setup() {
-   enewgroup ${_USERNAME}
-   enewuser ${_USERNAME} -1 /bin/bash /var/lib/${_APPNAME} 
"${_USERNAME},video"
-   python-single-r1_pkg_setup
-}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_install() {
-   # Move the config to the correct place
-   local CONFIG_VANILLA="/etc/default/plexmediaserver"
-   local CONFIG_PATH="/etc/${_SHORTNAME}"
-   dodir "${CONFIG_PATH}"
-   insinto "${CONFIG_PATH}"
-   doins "${CONFIG_VANILLA#/}"
-   sed -e "s#${CONFIG_VANILLA}#${CONFIG_PATH}/${_APPNAME}#g" -i 
"${S}"/usr/sbin/start_pms || die
-
-   # Remove Debian specific files
-   rm -rf "usr/share/doc" || die
-
-   # Copy main files over to image and preserve permissions so it is 
portable
-   cp -rp usr/ "${ED}" || die
-
-   # Make sure the logging directory is created
-   local LOGGING_DIR="/var/log/pms"
-   dodir "${LOGGING_DIR}"
-   chown "${_USERNAME}":"${_USERNAME}" "${ED%/}/${LOGGING_DIR}" || die
-
-   # Create default library folder with correct permissions
-   local DEFAULT_LIBRARY_DIR="/var/lib/${_APPNAME}"
-   dodir "${DEFAULT_LIBRARY_DIR}"
-   chown "${_USERNAME}":"${_USERNAME}" "${ED%/}/${DEFAULT_LIBRARY_DIR}" || 
die
-
-   # Install the OpenRC init/conf files
-   doinitd "${FILESDIR}/init.d/${PN}"
-   doconfd "${FILESDIR}/conf.d/${PN}"
-
-   _handle_multilib
-
-   # Install systemd service file
-   local INIT_NAME="${PN}.service"
-   local INIT="${FILESDIR}/systemd/${INIT_NAME}"
-   systemd_newunit "${INIT}" "${INIT_NAME}"
-
-   _remove_execstack_markings
-   _add_pax_markings
-
-   einfo "Configuring virtualenv"
-   virtualenv -v --no-pip --no-setuptools --no-wheel 
"${ED}"usr/lib/plexmediaserver/Resources/Python || die
-   pushd "${E

[gentoo-commits] repo/gentoo:master commit in: sys-boot/gnu-efi/files/, sys-boot/gnu-efi/

2018-01-28 Thread Sergei Trofimovich
commit: c62fc5c0068b7cf27a79700cf9f0e7f20a625641
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jan 28 22:54:24 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jan 28 22:58:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c62fc5c0

sys-boot/gnu-efi: fix linker script on .gnu.hash systems, bug #575300

Two patches here:
- gnu-hash.patch: fix linker script to work on .gnu.hash-only systems
- ia64-setjmp.patch: fix build breakage on ia64 systems

Reported-by: Émeric Maschino
Closes: https://bugs.gentoo.org/575300
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 .../files/gnu-efi-3.0.6-ia64-gnu-hash.patch| 149 +++
 .../gnu-efi/files/gnu-efi-3.0.6-ia64-setjmp.patch  | 163 +
 sys-boot/gnu-efi/gnu-efi-3.0.6-r2.ebuild   |  93 
 3 files changed, 405 insertions(+)

diff --git a/sys-boot/gnu-efi/files/gnu-efi-3.0.6-ia64-gnu-hash.patch 
b/sys-boot/gnu-efi/files/gnu-efi-3.0.6-ia64-gnu-hash.patch
new file mode 100644
index 000..9487ba4c673
--- /dev/null
+++ b/sys-boot/gnu-efi/files/gnu-efi-3.0.6-ia64-gnu-hash.patch
@@ -0,0 +1,149 @@
+https://sourceforge.net/p/gnu-efi/code/merge-requests/1/
+
+From 2cc0b085fb82e80d43cc08c8376dff9f9532a72d Mon Sep 17 00:00:00 2001
+From: Sergei Trofimovich 
+Date: Sat, 27 Jan 2018 20:29:05 +
+Subject: [PATCH] gnuefi: preserve .gnu.hash sections (unbreaks elilo on IA-64)
+
+Gentoo has slightly modified linker defaults: --hash-style=gnu
+This means all ELF files in system have '.gnu.hash' section
+but no '.hash' section.
+
+gnuefi's ldscript did not account for it and as a result
+one symbol 'ImageBase' did not resolve locally for elilo.so
+and caused 'elilo' to fail to load by ia64 EFI:
+  Loading.: Gentoo (try new elilo)
+  ImageAddress: pointer is outside of image
+  ImageAddress: pointer is outside of image
+
+Those two relocations come from crt0-efi-ia64.S PE32 entry point
+fdescr:
+
+```
+#define IMAGE_REL_BASED_DIR64<->10
+.section .reloc, "a"
+data4   _start_plabel // Page RVA
+data4   12// Block Size (2*4+2*2)
+data2   (IMAGE_REL_BASED_DIR64<<12) +  0 // reloc for plabel's entry point
+data2   (IMAGE_REL_BASED_DIR64<<12) +  8 // reloc for plabel's global 
pointer
+```
+
+These refer ImageBase.
+
+The change adds '.gnu.hash' collection (follows existing '.hash'
+collection).
+
+Tested on IA-64 by successfully booting elilo-3.16.
+
+Bug: https://bugs.gentoo.org/575300
+Signed-off-by: Sergei Trofimovich 
+---
+ README.gnuefi  | 8 +++-
+ gnuefi/elf_ia32_efi.lds| 4 +++-
+ gnuefi/elf_ia32_fbsd_efi.lds   | 4 +++-
+ gnuefi/elf_ia64_efi.lds| 4 +++-
+ gnuefi/elf_x86_64_efi.lds  | 4 +++-
+ gnuefi/elf_x86_64_fbsd_efi.lds | 4 +++-
+ 6 files changed, 22 insertions(+), 6 deletions(-)
+
+diff --git a/README.gnuefi b/README.gnuefi
+index a7feec0..512698c 100644
+--- a/README.gnuefi
 b/README.gnuefi
+@@ -231,11 +231,17 @@ and page sized.These eight sections are used to group 
together the much
+ greater number of sections that are typically present in ELF object files.
+ Specifically:
+ 
+- .hash
++ .hash (and/or .gnu.hash)
+   Collects the ELF .hash info (this section _must_ be the first
+   section in order to build a shared object file; the section is
+   not actually loaded or used at runtime).
+ 
++  GNU binutils provides a mechanism to generate different hash info
++  via --hash-style= option. In this case output
++  shared object will contain .hash section, .gnu.hash section or
++  both. In order to generate correct output linker script preserves
++  both types of hash sections.
++
+  .text
+   Collects all sections containing executable code.
+ 
+diff --git a/gnuefi/elf_ia32_efi.lds b/gnuefi/elf_ia32_efi.lds
+index 6cc4ce1..f27fe5f 100644
+--- a/gnuefi/elf_ia32_efi.lds
 b/gnuefi/elf_ia32_efi.lds
+@@ -5,7 +5,9 @@ SECTIONS
+ {
+   . = 0;
+   ImageBase = .;
+-  .hash : { *(.hash) }/* this MUST come first! */
++  /* .hash and/or .gnu.hash MUST come first! */
++  .hash : { *(.hash) }
++  .gnu.hash : { *(.gnu.hash) }
+   . = ALIGN(4096);
+   .text :
+   {
+diff --git a/gnuefi/elf_ia32_fbsd_efi.lds b/gnuefi/elf_ia32_fbsd_efi.lds
+index 77d6fad..cd309e2 100644
+--- a/gnuefi/elf_ia32_fbsd_efi.lds
 b/gnuefi/elf_ia32_fbsd_efi.lds
+@@ -5,7 +5,9 @@ SECTIONS
+ {
+   . = 0;
+   ImageBase = .;
+-  .hash : { *(.hash) }/* this MUST come first! */
++  /* .hash and/or .gnu.hash MUST come first! */
++  .hash : { *(.hash) }
++  .gnu.hash : { *(.gnu.hash) }
+   . = ALIGN(4096);
+   .text :
+   {
+diff --git a/gnuefi/elf_ia64_efi.lds b/gnuefi/elf_ia64_efi.lds
+index baca962..190792a 100644
+--- a/gnuefi/elf_ia64_efi.lds
 b/gnuefi/elf_ia64_efi.lds
+@@ -5,7 +5,9 @@ SECTIONS
+ {
+   . = 0;
+   ImageBase = .;
+-  .hash : { *(.hash) }/* this MUST come first! */
++  /* .hash and/or .gnu.hash MUST come first! */
++  .hash : { *

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

2018-01-28 Thread Sergei Trofimovich
commit: 1174d7f67f05259a33dcb65572cf6e5445b6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jan 28 22:40:18 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jan 28 22:40:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1174d7f6

net-dns/bind: stable 9.11.2_p1 for ppc, bug #644706

Package-Manager: Portage-2.3.20, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc"

 net-dns/bind/bind-9.11.2_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/bind/bind-9.11.2_p1.ebuild 
b/net-dns/bind/bind-9.11.2_p1.ebuild
index 7b6a91a6d80..3643fb446cc 100644
--- a/net-dns/bind/bind-9.11.2_p1.ebuild
+++ b/net-dns/bind/bind-9.11.2_p1.ebuild
@@ -38,7 +38,7 @@ 
SRC_URI="https://www.isc.org/downloads/file/${MY_P}/?version=tar-gz -> ${P}.tar.
 
 LICENSE="Apache-2.0 BSD BSD-2 GPL-2 HPND ISC MPL-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 # -berkdb by default re bug 602682
 IUSE="-berkdb +caps dlz dnstap doc filter- fixed-rrset geoip gost gssapi 
idn ipv6
 json ldap libressl lmdb mysql nslint odbc postgres python rpz seccomp selinux 
ssl static-libs



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

2018-01-28 Thread Sergei Trofimovich
commit: cac2cc1b2e03a71a3614589d6eb2bdaef49b33ee
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jan 28 22:29:13 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jan 28 22:29:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cac2cc1b

net-dns/bind: stable 9.11.2_p1 for ia64, bug #644706

Package-Manager: Portage-2.3.20, Repoman-2.3.6
RepoMan-Options: --include-arches="ia64"

 net-dns/bind/bind-9.11.2_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/bind/bind-9.11.2_p1.ebuild 
b/net-dns/bind/bind-9.11.2_p1.ebuild
index 4f0dde8aa52..7b6a91a6d80 100644
--- a/net-dns/bind/bind-9.11.2_p1.ebuild
+++ b/net-dns/bind/bind-9.11.2_p1.ebuild
@@ -38,7 +38,7 @@ 
SRC_URI="https://www.isc.org/downloads/file/${MY_P}/?version=tar-gz -> ${P}.tar.
 
 LICENSE="Apache-2.0 BSD BSD-2 GPL-2 HPND ISC MPL-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 # -berkdb by default re bug 602682
 IUSE="-berkdb +caps dlz dnstap doc filter- fixed-rrset geoip gost gssapi 
idn ipv6
 json ldap libressl lmdb mysql nslint odbc postgres python rpz seccomp selinux 
ssl static-libs



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

2018-01-28 Thread Sergei Trofimovich
commit: 4e99d5397a98f1beb45f08205c70793a620ad444
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jan 28 22:29:21 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jan 28 22:29:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e99d539

net-dns/bind-tools: stable 9.11.2_p1 for ia64, bug #644706

Package-Manager: Portage-2.3.20, Repoman-2.3.6
RepoMan-Options: --include-arches="ia64"

 net-dns/bind-tools/bind-tools-9.11.2_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/bind-tools/bind-tools-9.11.2_p1.ebuild 
b/net-dns/bind-tools/bind-tools-9.11.2_p1.ebuild
index 4ec43afe6ce..093d70344b6 100644
--- a/net-dns/bind-tools/bind-tools-9.11.2_p1.ebuild
+++ b/net-dns/bind-tools/bind-tools-9.11.2_p1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://www.isc.org/downloads/file/${MY_P}/?version=tar-gz -> ${MY_PN}-
 
 LICENSE="Apache-2.0 BSD BSD-2 GPL-2 HPND ISC MPL-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc gost gssapi idn ipv6 libressl readline seccomp ssl urandom xml"
 # no PKCS11 currently as it requires OpenSSL to be patched, also see bug 409687
 



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus/

2018-01-28 Thread Markus Meier
commit: 0bef1c49dc1cb1bd6cfc5db41277242cc4986cf1
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 21:49:24 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 21:49:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bef1c49

app-i18n/ibus: arm stable, bug #641276

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 app-i18n/ibus/ibus-1.5.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus/ibus-1.5.16.ebuild b/app-i18n/ibus/ibus-1.5.16.ebuild
index 5550caecc20..bf065ab00f1 100644
--- a/app-i18n/ibus/ibus-1.5.16.ebuild
+++ b/app-i18n/ibus/ibus-1.5.16.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.gz";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ia64 ppc ppc64 ~sparc x86"
 IUSE="+X +emoji gconf +gtk +gtk2 +introspection kde +libnotify nls +python 
test vala wayland"
 REQUIRED_USE="emoji? ( gtk )
gtk2? ( gtk )



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

2018-01-28 Thread Mike Gilbert
commit: 46cc6eaa9b024f87198d2c6e8f91ea041e80399b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jan 28 21:22:38 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jan 28 21:25:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46cc6eaa

app-shells/ksh: bump to 93.20180128

Package-Manager: Portage-2.3.19_p11, Repoman-2.3.6_p45

 app-shells/ksh/Manifest  |  1 +
 app-shells/ksh/files/ksh-prefix-r1.patch | 51 
 app-shells/ksh/ksh-93.20180128.ebuild| 36 ++
 3 files changed, 88 insertions(+)

diff --git a/app-shells/ksh/Manifest b/app-shells/ksh/Manifest
index a7b9569906b..caf1dcac4ed 100644
--- a/app-shells/ksh/Manifest
+++ b/app-shells/ksh/Manifest
@@ -1,3 +1,4 @@
 DIST INIT.2014-06-25.tgz 385531 BLAKE2B 
9bd7fd46db725e134a6a35197c8793ada92a5aa293fbd21a94893443392cee5978c4526a09c47c19f650fc1b36eef0b0241ece4ebe6d4b6bdf2546195a5c26ad
 SHA512 
9034cdf5b798c134472d786195d0f5d14e7e7a1f8226dcbccf962880cd59cd59d3a5597307587163f90a9187cce0232235cf79bcd66842044b2c624b335ba730
 DIST ast-base.2014-06-25.tgz 9609090 BLAKE2B 
1a961eee6c4f40abbe92166ea0697c97c97a486165e225c8eceae9899f8cf8df84ba93135d0f64f67e8319d5734c3f9597cd2444a5710f2645639bce9c40bc37
 SHA512 
3006dd187c6042798ffd6da5aad8d6340bf4fbad687338b2b9797556136966b65d90295eb267dba198a83ea5b651a9a339d9ff48179f3d7e25b3de76c41bf737
 DIST ksh-93.20160110.tar.gz 26416127 BLAKE2B 
2e3d7f24e1c7292283f2859b86abca6b31c9104949f870cd5b35dc726dd917eefc826363f19a3ae120bba022fca31a4e38c8998c9010ef46a6c186619068b763
 SHA512 
cf6e13e5f6b0fd62b12cbcd007c09306ba1ff7e733c207be34cb360b6b269b8e75f2134a32775c65626ea6cfbdf1bbffecab22c7b2ff244fe91981b3d8fa8688
+DIST ksh-93.20180128.tar.gz 16076705 BLAKE2B 
1787a883827211f7573a97c78c4b7fca10ea9ca91ada66b148942bdbd36039bb420a6a44659010e870303e8840bf34828233130626c997d5bc264301880b35ad
 SHA512 
d88e369aa79a273971756111d3c019a0dea830bb4ae26741fe91f4182ac46a4d178452a36433ee26db64ad8ec7dd2b003bb50acf51868a28ee1c7203a7f10f4a

diff --git a/app-shells/ksh/files/ksh-prefix-r1.patch 
b/app-shells/ksh/files/ksh-prefix-r1.patch
new file mode 100644
index 000..d2cfd6c0c15
--- /dev/null
+++ b/app-shells/ksh/files/ksh-prefix-r1.patch
@@ -0,0 +1,51 @@
+From b7769b1f336ba533c4510f1b112fecf84a638a08 Mon Sep 17 00:00:00 2001
+From: Mike Gilbert 
+Date: Sun, 28 Jan 2018 16:14:42 -0500
+Subject: [PATCH] EPREFIX support
+
+---
+ src/cmd/ksh93/data/msg.c | 14 +++---
+ 1 file changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/src/cmd/ksh93/data/msg.c b/src/cmd/ksh93/data/msg.c
+index eabe59e2..61512280 100644
+--- a/src/cmd/ksh93/data/msg.c
 b/src/cmd/ksh93/data/msg.c
+@@ -182,7 +182,7 @@ const char e_heading[] = "Current option settings";
+ const char e_sptbnl[] = " \t\n";
+ const char e_tolower[] = "tolower";
+ const char e_toupper[] = "toupper";
+-const char e_defpath[] = "/bin:/usr/bin:";
++const char e_defpath[] = 
"@GENTOO_PORTAGE_EPREFIX@/bin:@GENTOO_PORTAGE_EPREFIX@/usr/bin:";
+ const char e_defedit[] = _pth_ed;
+ const char e_unknown[] = "";
+ const char e_devnull[] = "/dev/null";
+@@ -190,19 +190,19 @@ const char e_traceprompt[] = "+ ";
+ const char e_supprompt[] = "# ";
+ const char e_stdprompt[] = "$ ";
+ const char e_profile[] = "$HOME/.profile";
+-const char e_sysprofile[] = "/etc/profile";
+-const char e_suidprofile[] = "/etc/suid_profile";
+-const char e_sysrc[] = "/etc/ksh.kshrc";
++const char e_sysprofile[] = "@GENTOO_PORTAGE_EPREFIX@/etc/profile";
++const char e_suidprofile[] = "@GENTOO_PORTAGE_EPREFIX@/etc/suid_profile";
++const char e_sysrc[] = "@GENTOO_PORTAGE_EPREFIX@/etc/ksh.kshrc";
+ #if SHOPT_BASH
+-const char e_bash_sysrc[] = "/etc/bash.bashrc";
++const char e_bash_sysrc[] = "@GENTOO_PORTAGE_EPREFIX@/etc/bash/bashrc";
+ const char e_bash_rc[] = "$HOME/.bashrc";
+ const char e_bash_login[] = "$HOME/.bash_login";
+ const char e_bash_logout[] = "$HOME/.bash_logout";
+ const char e_bash_profile[] = "$HOME/.bash_profile";
+ #endif  // SHOPT_BASH
+-const char e_crondir[] = "/usr/spool/cron/atjobs";
++const char e_crondir[] = "@GENTOO_PORTAGE_EPREFIX@/usr/spool/cron/atjobs";
+ const char e_prohibited[] = "login setuid/setgid shells prohibited";
+-const char e_suidexec[] = "/etc/suid_exec";
++const char e_suidexec[] = "@GENTOO_PORTAGE_EPREFIX@/etc/suid_exec";
+ const char hist_fname[] = "/.sh_history";
+ const char e_dot[] = ".";
+ const char e_envmarker[] = "A__z";
+-- 
+2.16.1
+

diff --git a/app-shells/ksh/ksh-93.20180128.ebuild 
b/app-shells/ksh/ksh-93.20180128.ebuild
new file mode 100644
index 000..32db068808f
--- /dev/null
+++ b/app-shells/ksh/ksh-93.20180128.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit meson prefix
+
+DESCRIPTION="The Original Korn Shell, 1993 revision (ksh93)"
+HOMEPAGE="http://www.kornshell.com/";
+
+COMMIT="0c8dbe3001d1bbef4f76673dc9c1629d90da9862"
+S

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

2018-01-28 Thread Lars Wendler
commit: 4fd44c420590de54cd5ba151b618561471c48e19
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Jan 28 21:21:17 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Jan 28 21:21:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd44c42

package.mask: Masked =sys-libs/ncurses-6.1 for testing.

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

diff --git a/profiles/package.mask b/profiles/package.mask
index df702c2d79b..bd4b237d061 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Lars Wendler  (28 Jan 2018)
+# Masked for testing.
+# At least app-misc/mc is broken when using a 256color TERM setting.
+=sys-libs/ncurses-6.1
+
 # Patrice Clement  (28 Jan 2018)
 # Duplicate of app-admin/clog. My apologies.
 # Masked for removal in 30 days.



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

2018-01-28 Thread Lars Wendler
commit: c4d1bb725b2bfdd90e2bc1b54960666e2ec5f091
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Jan 28 21:18:55 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Jan 28 21:21:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4d1bb72

sys-libs/ncurses: Bump to version 6.1

Package-Manager: Portage-2.3.20, Repoman-2.3.6

 sys-libs/ncurses/Manifest   |   1 +
 sys-libs/ncurses/ncurses-6.1.ebuild | 292 
 2 files changed, 293 insertions(+)

diff --git a/sys-libs/ncurses/Manifest b/sys-libs/ncurses/Manifest
index 28bbb993e81..e42031303a1 100644
--- a/sys-libs/ncurses/Manifest
+++ b/sys-libs/ncurses/Manifest
@@ -1,2 +1,3 @@
 DIST ncurses-5.9.tar.gz 2826473 BLAKE2B 
91101b049a5eb6a2674fb86b5eba56515207f490dc7a6348f3194bbc50649717a26aff7a0df64f67ca318b5f244455cd57e760c65b9e551f6ec65b8c035a6ae1
 SHA512 
d7c5e54b6d4d8b9211f0006ca8786f7609d180cc1aaebf4f25e7e35e12959779cf66447359a602daed625621ca32b0d910d67aef3eb8b6fdc3c373819a88faa1
 DIST ncurses-6.0.tar.gz 3131891 BLAKE2B 
68670ebdaba28c7a750631da01a0e3681b476cc9e9ae6fd9eae5a254f41fab5f1a5df5fa9897a92d1da751f1cc0b72f2ffee4603865900e67fcbb949c102cf78
 SHA512 
9ec194f4783dae6de8c529cac31b5cfbfcfea212c5d47b1f87cd49df013e38f8580a9e7aa1384918df0921b4ba999d5e73eb6d6362cce2d7287e64308b673963
+DIST ncurses-6.1.tar.gz 3365395 BLAKE2B 
1248a5088bc982d0880cb9550b1192457f6f624937c4b66807668c22a608002ba6c38d876986f2c2b9ee46f91d087c88bc0b19920733e4c7ca0ed8e92d9d47de
 SHA512 
e308af43f8b7e01e98a55f4f6c4ee4d1c39ce09d95399fa555b3f0cdf5fd0db0f4c4d820b4af78a63f6cf6d8627587114a40af48cfc066134b600520808a77ee

diff --git a/sys-libs/ncurses/ncurses-6.1.ebuild 
b/sys-libs/ncurses/ncurses-6.1.ebuild
new file mode 100644
index 000..1e12299cee0
--- /dev/null
+++ b/sys-libs/ncurses/ncurses-6.1.ebuild
@@ -0,0 +1,292 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs multilib-minimal
+
+MY_PV=${PV:0:3}
+PV_SNAP=${PV:4}
+MY_P=${PN}-${MY_PV}
+DESCRIPTION="console display library"
+HOMEPAGE="https://www.gnu.org/software/ncurses/ http://dickey.his.com/ncurses/";
+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 ~x86-fbsd"
+IUSE="ada +cxx debug doc gpm minimal profile static-libs test threads tinfo 
trace unicode"
+
+DEPEND="gpm? ( sys-libs/gpm[${MULTILIB_USEDEP}] )"
+#  berkdb? ( sys-libs/db )"
+# Block the older ncurses that installed all files w/SLOT=5. #557472
+RDEPEND="${DEPEND}
+   !<=sys-libs/ncurses-5.9-r4:5
+   !& 
/dev/null \
+   || lbuildflags="${dbuildflags}"
+
+   # We can't re-use the multilib BUILD_DIR because we run outside 
of it.
+   BUILD_DIR="${WORKDIR}" \
+   CHOST=${CBUILD} \
+   CFLAGS=${BUILD_CFLAGS} \
+   CXXFLAGS=${BUILD_CXXFLAGS} \
+   CPPFLAGS=${BUILD_CPPFLAGS} \
+   LDFLAGS="${BUILD_LDFLAGS} ${lbuildflags}" \
+   do_configure cross --without-shared --with-normal
+   fi
+   multilib-minimal_src_configure
+}
+
+multilib_src_configure() {
+   local t
+   for t in "${NCURSES_TARGETS[@]}" ; do
+   do_configure "${t}"
+   done
+}
+
+do_configure() {
+   local target=$1
+   shift
+
+   mkdir "${BUILD_DIR}/${target}"
+   cd "${BUILD_DIR}/${target}" || die
+
+   local conf=(
+   # We need the basic terminfo files in /etc, bug #37026.  We will
+   # add '--with-terminfo-dirs' and then populate /etc/terminfo in
+   # src_install() ...
+   
--with-terminfo-dirs="${EPREFIX}/etc/terminfo:${EPREFIX}/usr/share/terminfo"
+
+   # Disabled until #245417 is sorted out.
+   #$(use_with berkdb hashed-db)
+
+   # ncurses is dumb and doesn't install .pc files unless 
pkg-config
+   # is also installed.  Force the tests to go our way.  Note that 
it
+   # doesn't actually use pkg-config ... it just looks for set 
vars.
+   # This is fixed in newer versions:
+   # 
https://lists.gnu.org/archive/html/bug-ncurses/2015-08/msg00026.html
+   --enable-pc-files
+   --with-pkg-config="$(tc-getPKG_CONFIG)"
+   # This path is used to control where the .pc files are 
installed.
+   
--with-pkg-config-libdir="${EPREFIX}/usr/$(get_libdir)/pkgconfig"
+
+   # Now the rest of the various standard flags.
+   --with-shared
+   --without-hashed-db
+   $(use_with ada)
+   $(use_with cxx)
+   $(use_with cxx cxx-binding)
+   --with-cxx-shared
+   $(use_with debug)
+   $(use_with 

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

2018-01-28 Thread Markus Meier
commit: b0618cdaff22d351db5c387976ac1f7a46d6ef5e
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:28:21 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:38:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0618cda

media-gfx/hugin: version bump

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-gfx/hugin/Manifest|  1 +
 media-gfx/hugin/hugin-2018.0_rc2.ebuild | 89 +
 2 files changed, 90 insertions(+)

diff --git a/media-gfx/hugin/Manifest b/media-gfx/hugin/Manifest
index a0fa04ab92b..f25e50664a5 100644
--- a/media-gfx/hugin/Manifest
+++ b/media-gfx/hugin/Manifest
@@ -1,2 +1,3 @@
 DIST hugin-2016.2.0.tar.bz2 10386216 BLAKE2B 
8437a360880903fac33be7dc12fcdff7fbd16b15153de32e127bdc2b5fe5a47e9ebefe8bc4fb088ba2b818743b8bee9348560aaeb53781bfd0eeb57ec1adbe0b
 SHA512 
9c652e685d0135afef6418bdf5fce39cec8ef1ec0dbe3a325151957c91495db0a2a3171ee04a28955a638493913c1bc800a90c37347ad17612584646c8a65510
 DIST hugin-2017.0.tar.bz2 9803272 BLAKE2B 
fa7475347f6b1b561132d5370172fee410afd4f8b15c2c5d7d356023716d15cdcc5ecb8a13d743ce13f3c15ebb7f4b42f0e9653b9f94e752d5e6dea3ecef05b7
 SHA512 
bfd39135119fddb559ecec220da36a4c15d96bda7f93e738d8815aafca94685ba879239202e2cc81c87787188ee3b1b6dc5cbe8014aa12e2f95d654591dc1969
+DIST hugin-2018.0rc2.tar.bz2 9838518 BLAKE2B 
dc6d786e4e6a298d4dd4e48b2c42f9c9c297b4c431fbc00fa9090f129a4633f599e222402aef1f2a467aa9b498d356f3bbaca9548954cf697d331950afa6693a
 SHA512 
30061f4af695137f349526272e8c3c2f1f6a167305acb32466a30629c46dabea3818bc2c3a77b6102fcb67aa390a803cdc5ba8d8a2ecc6065f88726392529cbc

diff --git a/media-gfx/hugin/hugin-2018.0_rc2.ebuild 
b/media-gfx/hugin/hugin-2018.0_rc2.ebuild
new file mode 100644
index 000..33d44b9ffac
--- /dev/null
+++ b/media-gfx/hugin/hugin-2018.0_rc2.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+WX_GTK_VER="3.0"
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit python-single-r1 wxwidgets versionator cmake-utils
+
+DESCRIPTION="GUI for the creation & processing of panoramic images"
+HOMEPAGE="http://hugin.sf.net";
+SRC_URI="mirror://sourceforge/${PN}/${P/_/}.tar.bz2"
+
+LICENSE="GPL-2 SIFT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+LANGS=" ca ca-valencia cs da de en-GB es eu fi fr hu it ja nl pl pt-BR ro ru 
sk sv zh-CN zh-TW"
+IUSE="debug lapack python sift $(echo ${LANGS//\ /\ l10n_})"
+
+CDEPEND="
+   !!dev-util/cocom
+   dev-db/sqlite:3
+   dev-libs/boost:=
+   dev-libs/zthread
+   >=media-gfx/enblend-4.0
+   media-gfx/exiv2:=
+   media-libs/freeglut
+   media-libs/glew:=
+   >=media-libs/libpano13-2.9.19_beta1:0=
+   media-libs/libpng:0=
+   media-libs/openexr:=
+   media-libs/tiff:0
+   >=media-libs/vigra-1.11.0[openexr]
+   sci-libs/fftw:3.0=
+   sci-libs/flann
+   sys-libs/zlib
+   virtual/glu
+   virtual/jpeg:0
+   virtual/opengl
+   x11-libs/wxGTK:3.0=[X,opengl]
+   lapack? ( virtual/blas virtual/lapack )
+   python? ( ${PYTHON_DEPS} )
+   sift? ( media-gfx/autopano-sift-C )"
+RDEPEND="${CDEPEND}
+   media-libs/exiftool"
+DEPEND="${CDEPEND}
+   dev-cpp/tclap
+   sys-devel/gettext
+   virtual/pkgconfig
+   python? ( >=dev-lang/swig-2.0.4 )"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+DOCS=( authors.txt README TODO )
+
+S=${WORKDIR}/${PN}-$(get_version_component_range 1-2).0
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+   setup-wxwidgets
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_HSI=$(usex python)
+   -DENABLE_LAPACK=$(usex lapack)
+   )
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+   use python && python_optimize
+
+   local lang
+   for lang in ${LANGS} ; do
+   case ${lang} in
+   ca) dir=ca_ES;;
+   ca-valencia) dir=ca_ES@valencia;;
+   cs) dir=cs_CZ;;
+   *) dir=${lang/-/_};;
+   esac
+   if ! use l10n_${lang} ; then
+   rm -r "${ED%/}"/usr/share/locale/${dir} || die
+   fi
+   done
+}



[gentoo-commits] repo/gentoo:master commit in: app-i18n/unicode-cldr/

2018-01-28 Thread Markus Meier
commit: 99d91a996287eae1175d449352c07234819702a2
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:29:02 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:38:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99d91a99

app-i18n/unicode-cldr: arm stable, bug #641276

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 app-i18n/unicode-cldr/unicode-cldr-31.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/unicode-cldr/unicode-cldr-31.0.1.ebuild 
b/app-i18n/unicode-cldr/unicode-cldr-31.0.1.ebuild
index c0121926edd..ae99b05d9ff 100644
--- a/app-i18n/unicode-cldr/unicode-cldr-31.0.1.ebuild
+++ b/app-i18n/unicode-cldr/unicode-cldr-31.0.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://${PN%-*}.org/Public/${PN/*-}/${PV}/core.zip -> 
${PN}-common-${PV
 
 LICENSE="unicode"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ia64 ppc ppc64 ~sparc x86"
 IUSE=""
 
 DEPEND="app-arch/unzip"



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

2018-01-28 Thread Markus Meier
commit: 03ada14e9788c4aa9b8d5b2999a454c2bf8d8cc1
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:40:23 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:40:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03ada14e

dev-python/flask: arm stable, bug #641290

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-python/flask/flask-0.12.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/flask/flask-0.12.2.ebuild 
b/dev-python/flask/flask-0.12.2.ebuild
index 16c9c5949fa..498dd328b2f 100644
--- a/dev-python/flask/flask-0.12.2.ebuild
+++ b/dev-python/flask/flask-0.12.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/pallets/flask/";
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples test"
 
 RDEPEND=">=dev-python/blinker-1[${PYTHON_USEDEP}]



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

2018-01-28 Thread Markus Meier
commit: 5fc41d92d3036594ba3120c4acb8f520f44e1f3b
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:40:33 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:40:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fc41d92

dev-python/werkzeug: arm stable, bug #641290

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-python/werkzeug/werkzeug-0.12.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/werkzeug/werkzeug-0.12.2.ebuild 
b/dev-python/werkzeug/werkzeug-0.12.2.ebuild
index ba55a631e50..257a868ec10 100644
--- a/dev-python/werkzeug/werkzeug-0.12.2.ebuild
+++ b/dev-python/werkzeug/werkzeug-0.12.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="test"
 
 RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]"



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

2018-01-28 Thread Markus Meier
commit: 5babf91f5abc02bbb06892f39810c35cfd774347
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:40:11 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:40:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5babf91f

dev-python/itsdangerous: arm stable, bug #641290

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-python/itsdangerous/itsdangerous-0.24.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/itsdangerous/itsdangerous-0.24.ebuild 
b/dev-python/itsdangerous/itsdangerous-0.24.ebuild
index 06431083809..5a16979b180 100644
--- a/dev-python/itsdangerous/itsdangerous-0.24.ebuild
+++ b/dev-python/itsdangerous/itsdangerous-0.24.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2018-01-28 Thread Markus Meier
commit: c622bb457b40c50aaebe4ba48c9f1fbc5cb52f4c
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:28:39 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:38:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c622bb45

dev-db/unixODBC: arm stable, bug #641282

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-db/unixODBC/unixODBC-2.3.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/unixODBC/unixODBC-2.3.4-r1.ebuild 
b/dev-db/unixODBC/unixODBC-2.3.4-r1.ebuild
index 34c6f5d3344..e64c6e479c7 100644
--- a/dev-db/unixODBC/unixODBC-2.3.4-r1.ebuild
+++ b/dev-db/unixODBC/unixODBC-2.3.4-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.unixodbc.org/pub/${PN}/${P}.tar.gz";
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+minimal odbcmanual static-libs unicode"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-i18n/unicode-emoji/

2018-01-28 Thread Markus Meier
commit: 5e0ce729661ed0f48a30c6ae7ba634141994fc77
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:28:57 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:38:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e0ce729

app-i18n/unicode-emoji: arm stable, bug #641276

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild 
b/app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild
index 8bd9909b988..9500273f081 100644
--- a/app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild
+++ b/app-i18n/unicode-emoji/unicode-emoji-5.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="${BASE_URI}/${PN/*-}-data.txt -> ${PN}-data-${PV}.txt
 
 LICENSE="unicode"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ia64 ppc ppc64 ~sparc x86"
 IUSE=""
 
 S="${WORKDIR}"



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

2018-01-28 Thread Markus Meier
commit: ebc28b82fa97ef3c55f06efe7ff89c6058354dda
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:37:52 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:38:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebc28b82

dev-libs/expat: arm stable, bug #641288

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-libs/expat/expat-2.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/expat/expat-2.2.5.ebuild 
b/dev-libs/expat/expat-2.2.5.ebuild
index 89481cd1dad..f54089fc397 100644
--- a/dev-libs/expat/expat-2.2.5.ebuild
+++ b/dev-libs/expat/expat-2.2.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/libexpat/libexpat/releases/download/R_${PV//\./_}/ex
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="elibc_FreeBSD examples static-libs unicode"
 DEPEND="unicode? ( ${AUTOTOOLS_DEPEND} )"
 RDEPEND="abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r6



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

2018-01-28 Thread Markus Meier
commit: a03565cc16eb56acee349f222ba8a47d84093eb1
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:40:06 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:40:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a03565cc

dev-python/psutil: arm stable, bug #641290

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-python/psutil/psutil-5.4.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/psutil/psutil-5.4.1.ebuild 
b/dev-python/psutil/psutil-5.4.1.ebuild
index 49c08f08253..753462aa960 100644
--- a/dev-python/psutil/psutil-5.4.1.ebuild
+++ b/dev-python/psutil/psutil-5.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 DEPEND="



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

2018-01-28 Thread Markus Meier
commit: c799d15a66f28feee2e4d0336547e0e36bfd73ae
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:40:16 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:40:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c799d15a

dev-python/blinker: arm stable, bug #641290

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-python/blinker/blinker-1.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/blinker/blinker-1.4.ebuild 
b/dev-python/blinker/blinker-1.4.ebuild
index 2dacb55730f..fd16f4a1195 100644
--- a/dev-python/blinker/blinker-1.4.ebuild
+++ b/dev-python/blinker/blinker-1.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}] )"



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

2018-01-28 Thread Markus Meier
commit: f93e87c07bb9b8a9aa4f07c89a4194cf18bafee2
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:40:58 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:40:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f93e87c0

dev-python/pygments: arm stable, bug #641298

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-python/pygments/pygments-2.2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pygments/pygments-2.2.0.ebuild 
b/dev-python/pygments/pygments-2.2.0.ebuild
index 9e8fbe328a5..cde3649dec9 100644
--- a/dev-python/pygments/pygments-2.2.0.ebuild
+++ b/dev-python/pygments/pygments-2.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2018-01-28 Thread Markus Meier
commit: 64dcaf29df65dcca37df8028752eac524de791e4
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:40:01 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:40:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64dcaf29

dev-python/pytest-cache: arm stable, bug #641290

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-python/pytest-cache/pytest-cache-1.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pytest-cache/pytest-cache-1.0-r1.ebuild 
b/dev-python/pytest-cache/pytest-cache-1.0-r1.ebuild
index 6672f1d3a75..baa4e6ab638 100644
--- a/dev-python/pytest-cache/pytest-cache-1.0-r1.ebuild
+++ b/dev-python/pytest-cache/pytest-cache-1.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="dev-python/execnet[${PYTHON_USEDEP}]"



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

2018-01-28 Thread Markus Meier
commit: 984b14e28849f70ce02cec21063254850afe5ca4
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jan 28 20:40:28 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jan 28 20:40:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=984b14e2

dev-python/pytest-xprocess: arm stable, bug #641290

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 dev-python/pytest-xprocess/pytest-xprocess-0.12.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pytest-xprocess/pytest-xprocess-0.12.1.ebuild 
b/dev-python/pytest-xprocess/pytest-xprocess-0.12.1.ebuild
index 2bedbb17416..ee3fbac5a9f 100644
--- a/dev-python/pytest-xprocess/pytest-xprocess-0.12.1.ebuild
+++ b/dev-python/pytest-xprocess/pytest-xprocess-0.12.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2018-01-28 Thread Michael Weber
commit: b26167d59f433a40d55f7e71915033fdf180dafd
Author: Michael Weber  gentoo  org>
AuthorDate: Sun Jan 28 20:30:32 2018 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sun Jan 28 20:30:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b26167d5

x11-wm/xpra: Add DEPEND=x11-libs/libxkbfile (thanks Thomas Deutschmann).

Closes: https://bugs.gentoo.org/642244
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 x11-wm/xpra/xpra-1.0.9.ebuild | 1 +
 x11-wm/xpra/xpra-2.1.3.ebuild | 1 +
 x11-wm/xpra/xpra-2.2.1.ebuild | 1 +
 x11-wm/xpra/xpra-2.2.2.ebuild | 1 +
 4 files changed, 4 insertions(+)

diff --git a/x11-wm/xpra/xpra-1.0.9.ebuild b/x11-wm/xpra/xpra-1.0.9.ebuild
index 92ba444e0a6..299bde46e31 100644
--- a/x11-wm/xpra/xpra-1.0.9.ebuild
+++ b/x11-wm/xpra/xpra-1.0.9.ebuild
@@ -33,6 +33,7 @@ COMMON_DEPEND=""${PYTHON_DEPS}"
x11-libs/libXfixes
x11-libs/libXrandr
x11-libs/libXtst
+   x11-libs/libxkbfile
csc? (
!libav? ( >=media-video/ffmpeg-1.2.2:0= )
libav? ( media-video/libav:0= )

diff --git a/x11-wm/xpra/xpra-2.1.3.ebuild b/x11-wm/xpra/xpra-2.1.3.ebuild
index a557140e32c..d9f9bec1770 100644
--- a/x11-wm/xpra/xpra-2.1.3.ebuild
+++ b/x11-wm/xpra/xpra-2.1.3.ebuild
@@ -33,6 +33,7 @@ COMMON_DEPEND="${PYTHON_DEPS}
x11-libs/libXfixes
x11-libs/libXrandr
x11-libs/libXtst
+   x11-libs/libxkbfile
csc? (
!libav? ( >=media-video/ffmpeg-1.2.2:0= )
libav? ( media-video/libav:0= )

diff --git a/x11-wm/xpra/xpra-2.2.1.ebuild b/x11-wm/xpra/xpra-2.2.1.ebuild
index bfe8a102633..5dcafddd7a5 100644
--- a/x11-wm/xpra/xpra-2.2.1.ebuild
+++ b/x11-wm/xpra/xpra-2.2.1.ebuild
@@ -33,6 +33,7 @@ COMMON_DEPEND="${PYTHON_DEPS}
x11-libs/libXfixes
x11-libs/libXrandr
x11-libs/libXtst
+   x11-libs/libxkbfile
csc? (
!libav? ( >=media-video/ffmpeg-1.2.2:0= )
libav? ( media-video/libav:0= )

diff --git a/x11-wm/xpra/xpra-2.2.2.ebuild b/x11-wm/xpra/xpra-2.2.2.ebuild
index bfe8a102633..5dcafddd7a5 100644
--- a/x11-wm/xpra/xpra-2.2.2.ebuild
+++ b/x11-wm/xpra/xpra-2.2.2.ebuild
@@ -33,6 +33,7 @@ COMMON_DEPEND="${PYTHON_DEPS}
x11-libs/libXfixes
x11-libs/libXrandr
x11-libs/libXtst
+   x11-libs/libxkbfile
csc? (
!libav? ( >=media-video/ffmpeg-1.2.2:0= )
libav? ( media-video/libav:0= )



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/speech-dispatcher/

2018-01-28 Thread Michael Weber
commit: adc72bb8a7dcdd0866e9030ff4610e9c13cce08b
Author: Michael Weber  gentoo  org>
AuthorDate: Sun Jan 28 20:21:05 2018 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sun Jan 28 20:21:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc72bb8

app-accessibility/speech-dispatcher: Limit errornous git invocation to 
${WORKDIR} by exporting GIT_CEILING_DIRECTORIES.

Closes: https://bugs.gentoo.org/573732
Bug: https://bugs.gentoo.org/558556
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 app-accessibility/speech-dispatcher/speech-dispatcher-0.8.3.ebuild | 5 -
 app-accessibility/speech-dispatcher/speech-dispatcher-0.8.7.ebuild | 3 +++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.3.ebuild 
b/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.3.ebuild
index 3725e90a4d3..2c177405d33 100644
--- a/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.3.ebuild
+++ b/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -35,6 +35,9 @@ DEPEND="${COMMON_DEPEND}
dev-python/pyxdg"
 
 src_configure() {
+   # bug 573732
+   export GIT_CEILING_DIRECTORIES="${WORKDIR}"
+
local myeconfargs=(
--disable-python
$(use_enable static-libs static)

diff --git a/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.7.ebuild 
b/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.7.ebuild
index 22d52defd6d..d6b4819cee3 100644
--- a/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.7.ebuild
+++ b/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.7.ebuild
@@ -36,6 +36,9 @@ RDEPEND="${COMMON_DEPEND}
dev-python/pyxdg"
 
 src_configure() {
+   # bug 573732
+   export GIT_CEILING_DIRECTORIES="${WORKDIR}"
+
local myeconfargs=(
--disable-python
$(use_enable static-libs static)



[gentoo-commits] proj/gnome:master commit in: app-text/evince/

2018-01-28 Thread Sobhan Mohammadpour
commit: 871a2861e3c2a64fbc5660cc73f286fa1b9f1986
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Sun Jan 28 20:01:19 2018 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Sun Jan 28 20:01:19 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=871a2861

app-text/evince: version bump to 3.26.0

Package-Manager: Portage-2.3.20, Repoman-2.3.6
RepoMan-Options: --force
Manifest-Sign-Key: 0x7DF238CF0AA182E1

 app-text/evince/evince-3.26.0.ebuild | 99 
 1 file changed, 99 insertions(+)

diff --git a/app-text/evince/evince-3.26.0.ebuild 
b/app-text/evince/evince-3.26.0.ebuild
new file mode 100644
index ..af4f9e25
--- /dev/null
+++ b/app-text/evince/evince-3.26.0.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2 systemd
+
+DESCRIPTION="Simple document viewer for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/Evince";
+
+LICENSE="GPL-2+ CC-BY-SA-3.0"
+# subslot = evd3.(suffix of libevdocument3)-evv3.(suffix of libevview3)
+SLOT="0/evd3.4-evv3.3"
+IUSE="djvu dvi gstreamer gnome gnome-keyring +introspection nautilus nsplugin 
+postscript t1lib tiff xps"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
+
+# atk used in libview
+# gdk-pixbuf used all over the place
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.36:2[dbus]
+   >=dev-libs/libxml2-2.5:2
+   sys-libs/zlib:=
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.16.0:3[introspection?]
+   gnome-base/gsettings-desktop-schemas
+   >=x11-libs/cairo-1.10:=
+   >=app-text/poppler-0.33[cairo]
+   >=app-arch/libarchive-3.1.2
+   djvu? ( >=app-text/djvu-3.5.22:= )
+   dvi? (
+   virtual/tex-base
+   dev-libs/kpathsea:=
+   t1lib? ( >=media-libs/t1lib-5:= ) )
+   gstreamer? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   media-libs/gst-plugins-good:1.0 )
+   gnome? ( gnome-base/gnome-desktop:3= )
+   gnome-keyring? ( >=app-crypt/libsecret-0.5 )
+   introspection? ( >=dev-libs/gobject-introspection-1:= )
+   nautilus? ( >=gnome-base/nautilus-2.91.4[introspection?] )
+   postscript? ( >=app-text/libspectre-0.2:= )
+   tiff? ( >=media-libs/tiff-3.6:0= )
+   xps? ( >=app-text/libgxps-0.2.1:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   gnome-base/gvfs
+   gnome-base/librsvg
+   || (
+   >=x11-themes/adwaita-icon-theme-2.17.1
+   >=x11-themes/hicolor-icon-theme-0.10 )
+"
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xml-dtd:4.3
+   app-text/yelp-tools
+   dev-util/gdbus-codegen
+   >=dev-util/gtk-doc-am-1.13
+   >=dev-util/intltool-0.35
+   dev-util/itstool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+# eautoreconf needs:
+#  app-text/yelp-tools
+
+src_prepare() {
+   gnome2_src_prepare
+
+   # Do not depend on adwaita-icon-theme, bug #326855, #391859
+   # https://bugs.freedesktop.org/show_bug.cgi?id=29942
+   sed -e 's/adwaita-icon-theme >= $ADWAITA_ICON_THEME_REQUIRED//g' \
+   -i configure || die "sed failed"
+}
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-static \
+   --enable-pdf \
+   --enable-comics \
+   --enable-thumbnailer \
+   --with-platform=gnome \
+   --enable-dbus \
+   $(use_enable djvu) \
+   $(use_enable dvi) \
+   $(use_enable gstreamer multimedia) \
+   $(use_enable gnome libgnome-desktop) \
+   $(use_with gnome-keyring keyring) \
+   $(use_enable introspection) \
+   $(use_enable nautilus) \
+   $(use_enable nsplugin browser-plugin) \
+   $(use_enable postscript ps) \
+   $(use_enable t1lib) \
+   $(use_enable tiff) \
+   $(use_enable xps) \
+   
BROWSER_PLUGIN_DIR="${EPREFIX}"/usr/$(get_libdir)/nsbrowser/plugins \
+   --with-systemduserunitdir="$(systemd_get_userunitdir)"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/vala/

2018-01-28 Thread Michael Weber
commit: aa48765f6497dd0443a7bfb747386e7c15e80d90
Author: Michael Weber  gentoo  org>
AuthorDate: Sun Jan 28 19:49:10 2018 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sun Jan 28 19:49:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa48765f

dev-lang/vala: Limit errornous git invocation to ${WORKDIR} by exporting 
GIT_CEILING_DIRECTORIES.

Bug: https://bugs.gentoo.org/558556
Closes: https://bugs.gentoo.org/483134
Package-Manager: Portage-2.3.20, Repoman-2.3.6

 dev-lang/vala/vala-0.32.1.ebuild | 5 -
 dev-lang/vala/vala-0.34.9.ebuild | 5 -
 dev-lang/vala/vala-0.36.7.ebuild | 3 +++
 3 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/dev-lang/vala/vala-0.32.1.ebuild b/dev-lang/vala/vala-0.32.1.ebuild
index fdcc64bbe9c..fd8f0fcc8fc 100644
--- a/dev-lang/vala/vala-0.32.1.ebuild
+++ b/dev-lang/vala/vala-0.32.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -29,5 +29,8 @@ DEPEND="${RDEPEND}
 "
 
 src_configure() {
+   # bug 483134
+   export GIT_CEILING_DIRECTORIES="${WORKDIR}"
+
gnome2_src_configure --disable-unversioned
 }

diff --git a/dev-lang/vala/vala-0.34.9.ebuild b/dev-lang/vala/vala-0.34.9.ebuild
index e5d2bad715f..f8ba9cf18ab 100644
--- a/dev-lang/vala/vala-0.34.9.ebuild
+++ b/dev-lang/vala/vala-0.34.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -29,5 +29,8 @@ DEPEND="${RDEPEND}
 "
 
 src_configure() {
+   # bug 483134
+   export GIT_CEILING_DIRECTORIES="${WORKDIR}"
+
gnome2_src_configure --disable-unversioned
 }

diff --git a/dev-lang/vala/vala-0.36.7.ebuild b/dev-lang/vala/vala-0.36.7.ebuild
index 391db3d4864..88fabb447e9 100644
--- a/dev-lang/vala/vala-0.36.7.ebuild
+++ b/dev-lang/vala/vala-0.36.7.ebuild
@@ -29,6 +29,9 @@ DEPEND="${RDEPEND}
 "
 
 src_configure() {
+   # bug 483134
+   export GIT_CEILING_DIRECTORIES="${WORKDIR}"
+
# weasyprint enables generation of PDF from HTML
gnome2_src_configure \
--disable-unversioned \



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

2018-01-28 Thread Patrice Clement
commit: dfb1a427ea916214a7374f8b7f479ee80c154c17
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Jan 28 19:39:23 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Jan 28 19:43:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfb1a427

dev-perl/Capture-Tiny: add amd64-fbsd keyword.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-perl/Capture-Tiny/Capture-Tiny-0.360.0.ebuild | 4 ++--
 dev-perl/Capture-Tiny/Capture-Tiny-0.420.0.ebuild | 4 ++--
 dev-perl/Capture-Tiny/Capture-Tiny-0.460.0.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-perl/Capture-Tiny/Capture-Tiny-0.360.0.ebuild 
b/dev-perl/Capture-Tiny/Capture-Tiny-0.360.0.ebuild
index f4d78cc9240..4bcd81489dc 100644
--- a/dev-perl/Capture-Tiny/Capture-Tiny-0.360.0.ebuild
+++ b/dev-perl/Capture-Tiny/Capture-Tiny-0.360.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ DESCRIPTION="Capture STDOUT and STDERR from Perl, XS or 
external programs"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="

diff --git a/dev-perl/Capture-Tiny/Capture-Tiny-0.420.0.ebuild 
b/dev-perl/Capture-Tiny/Capture-Tiny-0.420.0.ebuild
index f04be9b1e9d..185779e219b 100644
--- a/dev-perl/Capture-Tiny/Capture-Tiny-0.420.0.ebuild
+++ b/dev-perl/Capture-Tiny/Capture-Tiny-0.420.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ DESCRIPTION="Capture STDOUT and STDERR from Perl, XS or 
external programs"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="test"
 
 RDEPEND="

diff --git a/dev-perl/Capture-Tiny/Capture-Tiny-0.460.0.ebuild 
b/dev-perl/Capture-Tiny/Capture-Tiny-0.460.0.ebuild
index 14fde4751bc..b7306835bfb 100644
--- a/dev-perl/Capture-Tiny/Capture-Tiny-0.460.0.ebuild
+++ b/dev-perl/Capture-Tiny/Capture-Tiny-0.460.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ DESCRIPTION="Capture STDOUT and STDERR from Perl, XS or 
external programs"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2018-01-28 Thread Patrice Clement
commit: 9fcffb71b25165a726b77ca74bfe10dbc1232784
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Jan 28 19:39:12 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Jan 28 19:42:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fcffb71

dev-perl/Try-Tiny: add amd64-fbsd keyword.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-perl/Try-Tiny/Try-Tiny-0.220.0.ebuild | 4 ++--
 dev-perl/Try-Tiny/Try-Tiny-0.240.0.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-perl/Try-Tiny/Try-Tiny-0.220.0.ebuild 
b/dev-perl/Try-Tiny/Try-Tiny-0.220.0.ebuild
index 6eb151cae78..f69df614b9c 100644
--- a/dev-perl/Try-Tiny/Try-Tiny-0.220.0.ebuild
+++ b/dev-perl/Try-Tiny/Try-Tiny-0.220.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ DESCRIPTION="Minimal try/catch with proper localization of $@"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x86-fbsd ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x86-solaris"
 IUSE="test"
 
 RDEPEND="

diff --git a/dev-perl/Try-Tiny/Try-Tiny-0.240.0.ebuild 
b/dev-perl/Try-Tiny/Try-Tiny-0.240.0.ebuild
index 7ab17217447..f8ccd15ac9f 100644
--- a/dev-perl/Try-Tiny/Try-Tiny-0.240.0.ebuild
+++ b/dev-perl/Try-Tiny/Try-Tiny-0.240.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ DESCRIPTION="Minimal try/catch with proper localization of 
\$@"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~x86-fbsd ~amd64-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="test minimal"
 
 RDEPEND="



  1   2   3   >