[gentoo-commits] repo/gentoo:master commit in: media-libs/fontconfig/files/, media-libs/fontconfig/

2018-03-14 Thread Ulrich Müller
commit: af2a402ec7449348b50332919a66e54b552d6da0
Author: Ulrich Müller  gentoo  org>
AuthorDate: Thu Mar 15 05:19:23 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Thu Mar 15 05:20:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af2a402e

media-libs/fontconfig: Do not call setlocale in the library.

Patch from upstream.
https://bugs.freedesktop.org/show_bug.cgi?id=105492

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

 .../files/fontconfig-2.13.0-locale.patch   | 200 +
 13.0-r1.ebuild => fontconfig-2.13.0-r2.ebuild} |   0
 2 files changed, 170 insertions(+), 30 deletions(-)

diff --git a/media-libs/fontconfig/files/fontconfig-2.13.0-locale.patch 
b/media-libs/fontconfig/files/fontconfig-2.13.0-locale.patch
index 70868b1abc1..002e493a409 100644
--- a/media-libs/fontconfig/files/fontconfig-2.13.0-locale.patch
+++ b/media-libs/fontconfig/files/fontconfig-2.13.0-locale.patch
@@ -1,37 +1,177 @@
 https://bugs.gentoo.org/650332
+Do not set locale in the library.
+Patch from upstream.
 
-From 923b5be626a6e03fbaeee0b5cd6d0246c2f8f36f Mon Sep 17 00:00:00 2001
-From: Akira TAGOH 
-Date: Wed, 14 Mar 2018 12:35:05 +0900
-Subject: [PATCH] Do not override locale if already set by app
-
-https://bugs.freedesktop.org/show_bug.cgi?id=105492

- src/fccfg.c | 7 ++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/src/fccfg.c b/src/fccfg.c
-index eb0b76d..e311f17 100644
+--- a/fc-cache/fc-cache.c
 b/fc-cache/fc-cache.c
+@@ -41,6 +41,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #if defined (_WIN32)
+ #define STRICT
+@@ -302,6 +303,7 @@
+ #if HAVE_GETOPT_LONG || HAVE_GETOPT
+ int   c;
+ 
++setlocale (LC_ALL, "");
+ #if HAVE_GETOPT_LONG
+ while ((c = getopt_long (argc, argv, "Efrsy:Vvh", longopts, NULL)) != -1)
+ #else
+--- a/fc-cat/fc-cat.c
 b/fc-cat/fc-cat.c
+@@ -40,6 +40,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #ifdef ENABLE_NLS
+ #include 
+@@ -271,6 +272,7 @@
+ #if HAVE_GETOPT_LONG || HAVE_GETOPT
+ int   c;
+ 
++setlocale (LC_ALL, "");
+ #if HAVE_GETOPT_LONG
+ while ((c = getopt_long (argc, argv, "Vvrh", longopts, NULL)) != -1)
+ #else
+--- a/fc-conflist/fc-conflist.c
 b/fc-conflist/fc-conflist.c
+@@ -38,6 +38,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #ifdef ENABLE_NLS
+ #include 
+@@ -102,6 +103,7 @@
+ #if HAVE_GETOPT_LONG || HAVE_GETOPT
+ int   c;
+ 
++setlocale (LC_ALL, "");
+ #if HAVE_GETOPT_LONG
+ while ((c = getopt_long (argc, argv, "Vh", longopts, NULL)) != -1)
+ #else
+--- a/fc-list/fc-list.c
 b/fc-list/fc-list.c
+@@ -27,6 +27,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #ifdef HAVE_CONFIG_H
+ #include 
+ #else
+@@ -117,6 +118,7 @@
+ #if HAVE_GETOPT_LONG || HAVE_GETOPT
+ int   c;
+ 
++setlocale (LC_ALL, "");
+ #if HAVE_GETOPT_LONG
+ while ((c = getopt_long (argc, argv, "vbf:qVh", longopts, NULL)) != -1)
+ #else
+--- a/fc-match/fc-match.c
 b/fc-match/fc-match.c
+@@ -36,6 +36,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #ifdef ENABLE_NLS
+ #include 
+@@ -121,6 +122,7 @@
+ #if HAVE_GETOPT_LONG || HAVE_GETOPT
+ int   c;
+ 
++setlocale (LC_ALL, "");
+ #if HAVE_GETOPT_LONG
+ while ((c = getopt_long (argc, argv, "asvbf:Vh", longopts, NULL)) != -1)
+ #else
+--- a/fc-pattern/fc-pattern.c
 b/fc-pattern/fc-pattern.c
+@@ -36,6 +36,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #ifdef ENABLE_NLS
+ #include 
+@@ -111,6 +112,7 @@
+ #if HAVE_GETOPT_LONG || HAVE_GETOPT
+ int   c;
+ 
++setlocale (LC_ALL, "");
+ #if HAVE_GETOPT_LONG
+ while ((c = getopt_long (argc, argv, "cdf:Vh", longopts, NULL)) != -1)
+ #else
+--- a/fc-query/fc-query.c
 b/fc-query/fc-query.c
+@@ -39,6 +39,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #ifdef ENABLE_NLS
+ #include 
+@@ -115,6 +116,7 @@
+ #if HAVE_GETOPT_LONG || HAVE_GETOPT
+ int   c;
+ 
++setlocale (LC_ALL, "");
+ #if HAVE_GETOPT_LONG
+ while ((c = getopt_long (argc, argv, "i:bf:Vh", longopts, NULL)) != -1)
+ #else
+--- a/fc-scan/fc-scan.c
 b/fc-scan/fc-scan.c
+@@ -39,6 +39,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #ifdef ENABLE_NLS
+ #include 
+@@ -110,6 +111,7 @@
+ #if HAVE_GETOPT_LONG || HAVE_GETOPT
+ int   c;
+ 
++setlocale (LC_ALL, "");
+ #if HAVE_GETOPT_LONG
+ while ((c = getopt_long (argc, argv, "bf:Vh", longopts, NULL)) != -1)
+ #else
 --- a/src/fccfg.c
 +++ b/src/fccfg.c
-@@ -45,11 +45,16 @@ retry_locale:
- is_locale_initialized = (intptr_t) fc_atomic_ptr_get 
(_is_locale_initialized);
- if (!is_locale_initialized)
- {
-+  char *loc;
-+
-   is_locale_initialized = FcTrue;
-   if (!fc_atomic_ptr_cmpexch (_is_locale_initialized, NULL,
- 

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

2018-03-14 Thread William Hubbs
commit: 67020f6244b250669227587a0abd9e6a4a5a628b
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Mar 15 04:36:32 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Mar 15 04:37:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67020f62

sys-apps/openrc: 0.35.5 bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/openrc/Manifest |   1 +
 sys-apps/openrc/openrc-0.35.5.ebuild | 331 +++
 2 files changed, 332 insertions(+)

diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest
index 2178a7a3bf4..5d4ca992070 100644
--- a/sys-apps/openrc/Manifest
+++ b/sys-apps/openrc/Manifest
@@ -2,3 +2,4 @@ DIST openrc-0.34.11.tar.gz 228054 BLAKE2B 
8d4fdd7de4b3c44df0ccec728b91bd2624582d
 DIST openrc-0.35.2.tar.gz 241600 BLAKE2B 
09517a33ea7faf2e59d3a194876a3bb55a2477dde5f7f30915f77c24104531a27e752a59a049929878a115710ecbe1ed116e4283357f88c65cbe130787b88220
 SHA512 
61282509bae087a6c94a1947a30eddfa633cd2dbc91392511daa7240318d9f0c0a231005e329b6e46eece194fe497071f40387bea46d27ef09db9eb6e92f07d6
 DIST openrc-0.35.3.tar.gz 241587 BLAKE2B 
e8560243adb6ba4e6e463ad8906f203282ee9e0d16a22c0cf28e3ac7fe22321bb90f5292998745a70c269cee2a82bc6c899cba9ecf07a2e28bd4dc02c0fc737a
 SHA512 
2f247241fb6a7abb972efbd308c47f5621b7a10b11fce2fbbffe6ccb73c6d054bd2d1b860bf9d7bc38f6e2f0ed204a60eecad312347f394efb85b096a513eff1
 DIST openrc-0.35.4.tar.gz 241691 BLAKE2B 
1215cff77f9382dfe5201a10482e88cd7fbc24cdfa27a13633e3950aeebb163995eb15a2da88bed33779edd842c191307b5a713c09aa3593824ce95f294a167f
 SHA512 
821e82caf13da18284ceddf1149b9ae503ac95ddc08d3383150174123ed3bc5fcff9bbd574b492d622a06c2492750c4ce23e3c062850fe23b5709babaaae
+DIST openrc-0.35.5.tar.gz 241784 BLAKE2B 
6f63dcf30c430949f25108b0ca808f2317b2e58440419fa5c2aac04ed614c5b22105bfa38d51d54ee0d293be8b11f15b756b00d805ab71f9a2e92f44b98ce6e1
 SHA512 
655a0a32650ed46998ae84473e8a82aadd9de09904c5173cd9b9e2500fc8935e96539672b513a883c077ae862ece12ab768d4f379dbeb4389a7067ce7121dc0d

diff --git a/sys-apps/openrc/openrc-0.35.5.ebuild 
b/sys-apps/openrc/openrc-0.35.5.ebuild
new file mode 100644
index 000..3420adf2a4c
--- /dev/null
+++ b/sys-apps/openrc/openrc-0.35.5.ebuild
@@ -0,0 +1,331 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic pam toolchain-funcs
+
+DESCRIPTION="OpenRC manages the services, startup and shutdown of a host"
+HOMEPAGE="https://github.com/openrc/openrc/;
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://github.com/OpenRC/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+fi
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="audit debug ncurses pam newnet prefix +netifrc selinux static-libs
+   unicode kernel_linux kernel_FreeBSD"
+
+COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc 
sys-process/fuser-bsd ) )
+   ncurses? ( sys-libs/ncurses:0= )
+   pam? (
+   sys-auth/pambase
+   virtual/pam
+   )
+   audit? ( sys-process/audit )
+   kernel_linux? (
+   sys-process/psmisc
+   !=sys-libs/libselinux-2.6
+   )
+   !test
+# a value of "#" will just comment out the option
+set_config() {
+   local file="${ED}/$1" var=$2 val com
+   eval "${@:5}" && val=$3 || val=$4
+   [[ ${val} == "#" ]] && com="#" && val='\2'
+   sed -i -r -e "/^#?${var}=/{s:=([\"'])?([^ 
]*)\1?:=\1${val}\1:;s:^#?:${com}:}" "${file}"
+}
+
+set_config_yes_no() {
+   set_config "$1" "$2" YES NO "${@:3}"
+}
+
+src_install() {
+   emake ${MAKE_ARGS} DESTDIR="${D}" install
+
+   # move the shared libs back to /usr so ldscript can install
+   # more of a minimal set of files
+   # disabled for now due to #270646
+   #mv "${ED}"/$(get_libdir)/lib{einfo,rc}* "${ED}"/usr/$(get_libdir)/ || 
die
+   #gen_usr_ldscript -a einfo rc
+   gen_usr_ldscript libeinfo.so
+   gen_usr_ldscript librc.so
+
+   if ! use kernel_linux; then
+   keepdir /lib/rc/init.d
+   fi
+   keepdir /lib/rc/tmp
+
+   # Backup our default runlevels
+   dodir /usr/share/"${PN}"
+   cp -PR "${ED}"/etc/runlevels "${ED}"/usr/share/${PN} || die
+   rm -rf "${ED}"/etc/runlevels
+
+   # Setup unicode defaults for silly unicode users
+   set_config_yes_no /etc/rc.conf unicode use unicode
+
+   # Cater to the norm
+   set_config_yes_no /etc/conf.d/keymaps windowkeys '(' use x86 '||' use 
amd64 ')'
+
+   # On HPPA, do not run consolefont by default (bug #222889)
+   if use hppa; then
+   rm -f "${ED}"/usr/share/openrc/runlevels/boot/consolefont
+   fi
+
+   # Support for logfile rotation
+   insinto 

[gentoo-commits] proj/livecd-tools:master commit in: init.d/

2018-03-14 Thread William Hubbs
commit: f672cb58a56638c9df5695015742aa3b2c37f2e8
Author: William Hubbs  gmail  com>
AuthorDate: Thu Mar 15 04:30:30 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Mar 15 04:33:30 2018 +
URL:https://gitweb.gentoo.org/proj/livecd-tools.git/commit/?id=f672cb58

autoconfig: fix the indentation

 init.d/autoconfig | 23 ---
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/init.d/autoconfig b/init.d/autoconfig
index 715350e..848a102 100644
--- a/init.d/autoconfig
+++ b/init.d/autoconfig
@@ -386,22 +386,23 @@ start() {
ebegin "Starting autoconfig"
echo "0" > /proc/sys/kernel/printk
get_config
+
local numcpu="$(grep -c '^processor[[:space:]]\+:' /proc/cpuinfo)"
eindent
ebegin "Setting sane defaults in /etc/portage/make.conf"
-   if [ -f "/etc/portage/make.conf" ] && checkpath -W 
/etc/portage/make.conf; then
-   if ! grep -q 'EMERGE_DEFAULT_OPTS=.*--jobs' 
/etc/portage/make.conf; then
-   printf 
"EMERGE_DEFAULT_OPTS=\"\${EMERGE_DEFAULT_OPTS} --jobs=${numcpu} 
--load-average=${numcpu}\"\n" >> /etc/portage/make.conf
-   fi
-   elif [ ! -f "/etc/portage/make.conf" ] && [ ! -d 
"/etc/portage/make.conf" ] && checkpath -W /etc/portage; then
+   if [ -f "/etc/portage/make.conf" ] && checkpath -W 
/etc/portage/make.conf; then
+   if ! grep -q 'EMERGE_DEFAULT_OPTS=.*--jobs' 
/etc/portage/make.conf; then
printf "EMERGE_DEFAULT_OPTS=\"\${EMERGE_DEFAULT_OPTS} 
--jobs=${numcpu} --load-average=${numcpu}\"\n" >> /etc/portage/make.conf
-   elif [ -d "/etc/portage/make.conf" ]; then
-   if [ ! -f 
"/etc/portage/make.conf/livecd-tools-autoconfig" ] && checkpath -W 
/etc/portage/make.conf/livecd-tools-autoconfig; then
-   printf 
"EMERGE_DEFAULT_OPTS=\"\${EMERGE_DEFAULT_OPTS} --jobs=${numcpu} 
--load-average=${numcpu}\"\n" >> /etc/portage/make.conf/livecd-tools-autoconfig
-   fi
-   else
-   false
fi
+   elif [ ! -f "/etc/portage/make.conf" ] && [ ! -d 
"/etc/portage/make.conf" ] && checkpath -W /etc/portage; then
+   printf "EMERGE_DEFAULT_OPTS=\"\${EMERGE_DEFAULT_OPTS} 
--jobs=${numcpu} --load-average=${numcpu}\"\n" >> /etc/portage/make.conf
+   elif [ -d "/etc/portage/make.conf" ]; then
+   if [ ! -f "/etc/portage/make.conf/livecd-tools-autoconfig" ] && 
checkpath -W /etc/portage/make.conf/livecd-tools-autoconfig; then
+   printf "EMERGE_DEFAULT_OPTS=\"\${EMERGE_DEFAULT_OPTS} 
--jobs=${numcpu} --load-average=${numcpu}\"\n" >> 
/etc/portage/make.conf/livecd-tools-autoconfig
+   fi
+   else
+   false
+   fi
eend $? "Unable to write to /etc/portage/make.conf"
eoutdent
 



[gentoo-commits] proj/livecd-tools:master commit in: init.d/

2018-03-14 Thread Richard Farina
commit: 30c14caa2b383d7ce5a41019c01fbb77a6e04c17
Author: Rick Farina (Zero_Chaos)  gentoo  org>
AuthorDate: Thu Mar 15 03:50:04 2018 +
Commit: Richard Farina  gentoo  org>
CommitDate: Thu Mar 15 03:50:04 2018 +
URL:https://gitweb.gentoo.org/proj/livecd-tools.git/commit/?id=30c14caa

update make.conf with some nice defaults for emerge

just for fun, try to sane up the EMERGE_DEFAULT_OPTS for livecd users

 init.d/autoconfig | 23 ---
 1 file changed, 20 insertions(+), 3 deletions(-)

diff --git a/init.d/autoconfig b/init.d/autoconfig
index 71e1deb..715350e 100644
--- a/init.d/autoconfig
+++ b/init.d/autoconfig
@@ -179,8 +179,8 @@ check_svc() {
elif [ -n "${3}" ] && rc-service -e "${3}"
then
echo "${3}"
-   fi  
-   fi  
+   fi
+   fi
 }
 
 # Prints an ordered list of services that will be started by autoconfig.
@@ -386,12 +386,29 @@ start() {
ebegin "Starting autoconfig"
echo "0" > /proc/sys/kernel/printk
get_config
+   local numcpu="$(grep -c '^processor[[:space:]]\+:' /proc/cpuinfo)"
+   eindent
+   ebegin "Setting sane defaults in /etc/portage/make.conf"
+   if [ -f "/etc/portage/make.conf" ] && checkpath -W 
/etc/portage/make.conf; then
+   if ! grep -q 'EMERGE_DEFAULT_OPTS=.*--jobs' 
/etc/portage/make.conf; then
+   printf 
"EMERGE_DEFAULT_OPTS=\"\${EMERGE_DEFAULT_OPTS} --jobs=${numcpu} 
--load-average=${numcpu}\"\n" >> /etc/portage/make.conf
+   fi
+   elif [ ! -f "/etc/portage/make.conf" ] && [ ! -d 
"/etc/portage/make.conf" ] && checkpath -W /etc/portage; then
+   printf "EMERGE_DEFAULT_OPTS=\"\${EMERGE_DEFAULT_OPTS} 
--jobs=${numcpu} --load-average=${numcpu}\"\n" >> /etc/portage/make.conf
+   elif [ -d "/etc/portage/make.conf" ]; then
+   if [ ! -f 
"/etc/portage/make.conf/livecd-tools-autoconfig" ] && checkpath -W 
/etc/portage/make.conf/livecd-tools-autoconfig; then
+   printf 
"EMERGE_DEFAULT_OPTS=\"\${EMERGE_DEFAULT_OPTS} --jobs=${numcpu} 
--load-average=${numcpu}\"\n" >> /etc/portage/make.conf/livecd-tools-autoconfig
+   fi
+   else
+   false
+   fi
+   eend $? "Unable to write to /etc/portage/make.conf"
+   eoutdent
 
if yesno "${DETECT}"
then
eindent
ebegin "Hardware detection started"
-   local numcpu="$(grep -c '^processor[[:space:]]\+:' 
/proc/cpuinfo)"
local arch="$(uname -m)"
 
case ${arch} in



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

2018-03-14 Thread Craig Andrews
commit: 5970c9db9c4186be7bf480c024d1951d8d097fa0
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Mar 15 03:20:28 2018 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Mar 15 03:21:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5970c9db

dev-util/clinfo: 2.2.18.03.15 version bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-util/clinfo/Manifest   |  1 +
 dev-util/clinfo/clinfo-2.2.18.03.15.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-util/clinfo/Manifest b/dev-util/clinfo/Manifest
index 18616d34383..8255b9c74a3 100644
--- a/dev-util/clinfo/Manifest
+++ b/dev-util/clinfo/Manifest
@@ -1 +1,2 @@
 DIST clinfo-2.2.17.10.25.tar.gz 32992 BLAKE2B 
aedc6c48e557ca1222caa207a1e916f3d8e2d3666379c25dc8f28bfdbc74fee0d0918d0e5a84fd830a99cb5f09cbe452ed9329d44706783277d70600dcdd5c76
 SHA512 
9b035fb9ee052a8cff517032db70d16c796c3a2b82fefded5805dd7b012472b1226fc634d8b9e890be604f26f959a2a7438966158e2ccfc9e27af1fc03971c46
+DIST clinfo-2.2.18.03.15.tar.gz 35465 BLAKE2B 
f6a713b8e1af7ad048335409996143697f7bfea742bab979a7999a02fbbdb83f744dd4fc636877d083028177210a9b13012af0c8b47fc676b7711fb5d3d1e7dd
 SHA512 
fb0a38d14c9416dd82df4f44e6f66ded7156211f0ad65c9ac141df8d0d1e80bc003e5ee9a2206925a40b89fe278a1c6bd2880805dac745947f0ef324d5edb885

diff --git a/dev-util/clinfo/clinfo-2.2.18.03.15.ebuild 
b/dev-util/clinfo/clinfo-2.2.18.03.15.ebuild
new file mode 100644
index 000..7a1b5ce68d4
--- /dev/null
+++ b/dev-util/clinfo/clinfo-2.2.18.03.15.ebuild
@@ -0,0 +1,25 @@
+# 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/Oblomov/clinfo.git;
+   inherit git-r3
+   SRC_URI=""
+else
+   SRC_URI="https://github.com/Oblomov/clinfo/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="A tool to display info about the system's OpenCL capabilities"
+HOMEPAGE="https://github.com/Oblomov/clinfo;
+LICENSE="CC0-1.0"
+SLOT="0"
+
+DEPEND="virtual/opencl"
+RDEPEND="${DEPEND}"
+
+src_install() {
+   emake MANDIR="${ED}"/usr/share/man PREFIX="${ED}"/usr install
+}



[gentoo-commits] proj/openrc: New tag: 0.35.5

2018-03-14 Thread William Hubbs
commit: 
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Mar 15 03:03:27 2018 +

New tag: 0.35.5




[gentoo-commits] proj/openrc:0.35.x commit in: init.d/

2018-03-14 Thread William Hubbs
commit: d3f419900504b37aeda79b1bca68ac150d81efd6
Author: William Hubbs  gmail  com>
AuthorDate: Thu Mar 15 01:37:02 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Mar 15 02:26:07 2018 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=d3f41990

agetty.in: allow status to be displayed

 init.d/agetty.in | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/init.d/agetty.in b/init.d/agetty.in
index 390b1317..971ee86c 100644
--- a/init.d/agetty.in
+++ b/init.d/agetty.in
@@ -16,7 +16,6 @@ term_type="${term_type:-linux}"
 command=/sbin/agetty
 command_args_foreground="${agetty_options} ${port} ${baud} ${term_type}"
 pidfile="/run/${RC_SVCNAME}.pid"
-export EINFO_QUIET="${quiet:-yes}"
 
 depend() {
after local
@@ -29,5 +28,12 @@ start_pre() {
eerror "symbolic links to it for the ports you want to start"
eerror "agetty on and add those to the appropriate runlevels."
return 1
+   else
+   export EINFO_QUIET="${quiet:-yes}"
fi
 }
+
+stop_pre()
+{
+   export EINFO_QUIET="${quiet:-yes}"
+}



[gentoo-commits] proj/openrc:0.35.x commit in: /

2018-03-14 Thread William Hubbs
commit: 42cd8115b94525cad2f70a14cc14862e88c779be
Author: William Hubbs  gmail  com>
AuthorDate: Thu Mar 15 02:02:14 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Mar 15 02:02:14 2018 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=42cd8115

version 0.35.5

 Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.inc b/Makefile.inc
index 704ae004..f5ccaf41 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,3 +1,3 @@
 NAME=  openrc
-VERSION=   0.35.4
+VERSION=   0.35.5
 PKG=   ${NAME}-${VERSION}



[gentoo-commits] proj/openrc:0.35.x commit in: src/rc/

2018-03-14 Thread William Hubbs
commit: dc071dfacd23686dd3ae7168c60193618e36f0fa
Author: William Hubbs  gmail  com>
AuthorDate: Thu Mar 15 01:05:45 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Mar 15 02:26:07 2018 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=dc071dfa

supervise-daemon: fix off-by-one error

 src/rc/supervise-daemon.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/rc/supervise-daemon.c b/src/rc/supervise-daemon.c
index 669db3a2..952c610b 100644
--- a/src/rc/supervise-daemon.c
+++ b/src/rc/supervise-daemon.c
@@ -232,8 +232,8 @@ static char *make_cmdline(char **argv)
 
for (c = argv; c && *c; c++)
len += (strlen(*c) + 1);
-   cmdline = xmalloc(len);
-   memset(cmdline, 0, len);
+   cmdline = xmalloc(len+1);
+   memset(cmdline, 0, len+1);
for (c = argv; c && *c; c++) {
strcat(cmdline, *c);
strcat(cmdline, " ");



[gentoo-commits] proj/openrc:0.35.x commit in: /

2018-03-14 Thread William Hubbs
commit: 9d201d55bc02ec372a161e315e5f73a6ed20
Author: William Hubbs  gmail  com>
AuthorDate: Thu Mar 15 02:27:24 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Mar 15 02:27:24 2018 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=9d201d55

Update ChangeLog

 ChangeLog | 36 
 1 file changed, 24 insertions(+), 12 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 67ec5999..240df3b8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,27 @@
+commit d3f419900504b37aeda79b1bca68ac150d81efd6
+Author: William Hubbs 
+Commit: William Hubbs 
+
+agetty.in: allow status to be displayed
+
+commit dc071dfacd23686dd3ae7168c60193618e36f0fa
+Author: William Hubbs 
+Commit: William Hubbs 
+
+supervise-daemon: fix off-by-one error
+
+commit 42cd8115b94525cad2f70a14cc14862e88c779be
+Author: William Hubbs 
+Commit: William Hubbs 
+
+version 0.35.5
+
+commit d46beb28c4fec99253542442ecacf59499e3159f
+Author: William Hubbs 
+Commit: William Hubbs 
+
+Update ChangeLog
+
 commit f1c9d8429a484b4f37930998e82ef18e8657
 Author: William Hubbs 
 Commit: William Hubbs 
@@ -1878,15 +1902,3 @@ Author: William Hubbs 
 Commit: William Hubbs 
 
 update news file
-
-commit c333707cba356f4cacfd58a6fcc78f7c073dddcd
-Author: William Hubbs 
-Commit: William Hubbs 
-
-Remove all occurances of 'before *' from dependencies
-
-Using wildcards in dependencies causes issues when rc_parallel is set to
-yes because it can lead to deadlocks.
-All dependencies need to be explicit rather than implicit.
-
-This is the first stage of moving this direction.



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

2018-03-14 Thread Zac Medico
commit: 71c59145e0c7b631ec3f41e0d711445786d16f8f
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Mar 15 02:45:31 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Mar 15 02:49:02 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=71c59145

portage.util.futures.wait: fix arguments for asyncio compat

The bare "*" is not supported in python2.7, and in python3
the bare "*" means that keyword arguments must be used for
the arguments that follow.

Fixes: e43f6c583ed9 ("Add iter_completed convenience function (bug 648790)")

 pym/portage/util/futures/iter_completed.py |  2 +-
 pym/portage/util/futures/wait.py   | 16 +++-
 2 files changed, 4 insertions(+), 14 deletions(-)

diff --git a/pym/portage/util/futures/iter_completed.py 
b/pym/portage/util/futures/iter_completed.py
index 1050b6fa7..ad6275b49 100644
--- a/pym/portage/util/futures/iter_completed.py
+++ b/pym/portage/util/futures/iter_completed.py
@@ -52,7 +52,7 @@ def iter_completed(futures, max_jobs=None, max_load=None, 
loop=None):
# task_generator is exhausted
while future_map:
done, pending = loop.run_until_complete(
-   wait(*list(future_map.values()), 
return_when=FIRST_COMPLETED))
+   wait(list(future_map.values()), 
return_when=FIRST_COMPLETED))
for future in done:
del future_map[id(future)]
yield future

diff --git a/pym/portage/util/futures/wait.py b/pym/portage/util/futures/wait.py
index 3f0bdbff5..bd85bb053 100644
--- a/pym/portage/util/futures/wait.py
+++ b/pym/portage/util/futures/wait.py
@@ -11,15 +11,13 @@ except ImportError:
 from portage.util._eventloop.global_event_loop import global_event_loop
 
 
-# Use **kwargs since python2.7 does not allow arguments with defaults
-# to follow *futures.
-def wait(*futures, **kwargs):
+def wait(futures, loop=None, timeout=None, return_when=ALL_COMPLETED):
"""
Use portage's internal EventLoop to emulate asyncio.wait:
https://docs.python.org/3/library/asyncio-task.html#asyncio.wait
 
-   @param future: future to wait for
-   @type future: asyncio.Future (or compatible)
+   @param futures: futures to wait for
+   @type futures: asyncio.Future (or compatible)
@param timeout: number of seconds to wait (wait indefinitely if
not specified)
@type timeout: int or float
@@ -32,14 +30,6 @@ def wait(*futures, **kwargs):
@return: tuple of (done, pending).
@rtype: asyncio.Future (or compatible)
"""
-   if not futures:
-   raise TypeError("wait() missing 1 required positional argument: 
'future'")
-   loop = kwargs.pop('loop', None)
-   timeout = kwargs.pop('timeout', None)
-   return_when = kwargs.pop('return_when', ALL_COMPLETED)
-   if kwargs:
-   raise TypeError("wait() got an unexpected keyword argument 
'{}'".\
-   format(next(iter(kwargs
loop = loop or global_event_loop()
result_future = loop.create_future()
_Waiter(futures, timeout, return_when, result_future, loop)



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-mpg123/

2018-03-14 Thread Mart Raudsepp
commit: e7c5175f902f62005de85f0479eb30060faf9d99
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 02:21:49 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 02:30:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7c5175f

media-plugins/gst-plugins-mpg123-1.12.4: carry over ~arm keyword

No upstream code changes between 1.12.3 and 1.12.4, so just copy over the
fresh ~arm 1.12.3 keyword to 1.12.4

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-plugins/gst-plugins-mpg123/gst-plugins-mpg123-1.12.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-mpg123/gst-plugins-mpg123-1.12.4.ebuild 
b/media-plugins/gst-plugins-mpg123/gst-plugins-mpg123-1.12.4.ebuild
index 2420147ff45..4d4b45af6db 100644
--- a/media-plugins/gst-plugins-mpg123/gst-plugins-mpg123-1.12.4.ebuild
+++ b/media-plugins/gst-plugins-mpg123/gst-plugins-mpg123-1.12.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="MP3 decoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-meta/

2018-03-14 Thread Mart Raudsepp
commit: 4e86de39cb431ece784eaacb1993ab554d0873db
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 02:27:42 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 02:30:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e86de39

media-plugins/gst-plugins-meta-1.12.3: add back stable alpha keyword

alpha now has gst-plugins-mpg123 stable, so they can get the meta back too

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-plugins/gst-plugins-meta/gst-plugins-meta-1.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-meta/gst-plugins-meta-1.12.3.ebuild 
b/media-plugins/gst-plugins-meta/gst-plugins-meta-1.12.3.ebuild
index 746f3295530..aaedbb3f930 100644
--- a/media-plugins/gst-plugins-meta/gst-plugins-meta-1.12.3.ebuild
+++ b/media-plugins/gst-plugins-meta/gst-plugins-meta-1.12.3.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.gentoo.org;
 
 LICENSE="metapackage"
 SLOT="1.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ppc ppc64 x86"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ppc ppc64 x86"
 IUSE="aac a52 alsa cdda dts dv dvb dvd ffmpeg flac http jack lame libass 
libvisual mms mp3 modplug mpeg ogg opus oss pulseaudio taglib theora v4l vaapi 
vcd vorbis vpx wavpack X x264"
 REQUIRED_USE="opus? ( ogg ) theora? ( ogg ) vorbis? ( ogg )"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-meta/

2018-03-14 Thread Mart Raudsepp
commit: bb20b16ddf9f6eae29dde6ab473a0633fb5b97d9
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 02:30:14 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 02:30:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb20b16d

media-plugins/gst-plugins-meta-1.12.4: carry over ~arm keyword

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-plugins/gst-plugins-meta/gst-plugins-meta-1.12.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-meta/gst-plugins-meta-1.12.4.ebuild 
b/media-plugins/gst-plugins-meta/gst-plugins-meta-1.12.4.ebuild
index 34a89314ede..7543e4a6413 100644
--- a/media-plugins/gst-plugins-meta/gst-plugins-meta-1.12.4.ebuild
+++ b/media-plugins/gst-plugins-meta/gst-plugins-meta-1.12.4.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.gentoo.org;
 
 LICENSE="metapackage"
 SLOT="1.0"
-KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 IUSE="aac a52 alsa cdda dts dv dvb dvd ffmpeg flac http jack lame libass 
libvisual mms mp3 modplug mpeg ogg opus oss pulseaudio taglib theora v4l vaapi 
vcd vorbis vpx wavpack X x264"
 REQUIRED_USE="opus? ( ogg ) theora? ( ogg ) vorbis? ( ogg )"
 



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/prometheus-redis_exporter/, ...

2018-03-14 Thread Zac Medico
commit: 91fa43ef348cec7e91751f4fe05dc3ec280750c5
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Mar 15 02:15:22 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Mar 15 02:22:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91fa43ef

net-analyzer/prometheus-redis_exporter: new package

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-analyzer/prometheus-redis_exporter/Manifest|  1 +
 .../files/prometheus-redis_exporter.confd  | 30 +
 .../files/prometheus-redis_exporter.initd  | 19 
 .../files/prometheus-redis_exporter.logrotated |  7 +++
 .../files/prometheus-redis_exporter.service| 16 +++
 .../prometheus-redis_exporter/metadata.xml | 11 +
 .../prometheus-redis_exporter-0.15.0.ebuild| 52 ++
 7 files changed, 136 insertions(+)

diff --git a/net-analyzer/prometheus-redis_exporter/Manifest 
b/net-analyzer/prometheus-redis_exporter/Manifest
new file mode 100644
index 000..1cdcc45ab03
--- /dev/null
+++ b/net-analyzer/prometheus-redis_exporter/Manifest
@@ -0,0 +1 @@
+DIST prometheus-redis_exporter-0.15.0.tar.gz 1232990 BLAKE2B 
ade899ef0f21594d3bb59c379f44d941e2a42f06a5c2ba5b304cc0b8b83def12eb036e6011a7d88abe7d97104ae663cb025ca60287ec9aba7be93a734d84c959
 SHA512 
8892306500943ec18d8fa5110fc6f4954ec886fca4d0023cdc2134ee2498c6f39ab06bec8f998ecde796cc2053b66103146503b76a185db3da5cbab81ebd9f2a

diff --git 
a/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.confd 
b/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.confd
new file mode 100644
index 000..8573aef3540
--- /dev/null
+++ 
b/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.confd
@@ -0,0 +1,30 @@
+# -check-keys string
+#  Comma separated list of keys to export value and length/size
+# -debug
+#  Output verbose debug information
+# -log-format string
+#  Log format, valid options are txt and json (default "txt")
+# -namespace string
+#  Namespace for metrics (default "redis")
+# -redis-only-metrics
+#  Whether to export go runtime metrics also
+# -redis.addr string
+#  Address of one or more redis nodes, separated by separator
+# -redis.alias string
+#  Redis instance alias for one or more redis nodes, separated by separator
+# -redis.file string
+#  Path to file containing one or more redis nodes, separated by newline. 
NOTE: mutually exclusive with redis.addr
+# -redis.password string
+#  Password for one or more redis nodes, separated by separator
+# -separator string
+#  separator used to split redis.addr, redis.password and redis.alias into 
several elements. (default ",")
+# -use-cf-bindings
+#  Use Cloud Foundry service bindings
+# -version
+#  Show version information and exit
+# -web.listen-address string
+#  Address to listen on for web interface and telemetry. (default ":9121")
+# -web.telemetry-path string
+#  Path under which to expose metrics. (default "/metrics")
+
+#command_args="--web.listen-address=:9121 --redis.addr=localhost:6379"

diff --git 
a/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.initd 
b/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.initd
new file mode 100644
index 000..741a0b4e468
--- /dev/null
+++ 
b/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.initd
@@ -0,0 +1,19 @@
+#!/sbin/openrc-run
+# Copyright 2016-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+description="Prometheus Exporter for Redis Metrics"
+pidfile=${pidfile:-"/run/${RC_SVCNAME}.pid"}
+user=${user:-${RC_SVCNAME}}
+group=${group:-${RC_SVCNAME}}
+
+command="/usr/bin/redis_exporter"
+command_args="${command_args:---web.listen-address=:9121 
--redis.addr=localhost:6379}"
+command_background="true"
+start_stop_daemon_args="--user ${user} --group ${group} \
+   --stdout /var/log/${RC_SVCNAME}/${RC_SVCNAME}.log \
+   --stderr /var/log/${RC_SVCNAME}/${RC_SVCNAME}.log"
+
+depend() {
+   after net
+}

diff --git 
a/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.logrotated
 
b/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.logrotated
new file mode 100644
index 000..b1252b3d13f
--- /dev/null
+++ 
b/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.logrotated
@@ -0,0 +1,7 @@
+/var/log/prometheus-redis_exporter/prometheus-redis_exporter.log {
+   missingok
+   size 5M
+   rotate 3
+   compress
+   copytruncate
+}

diff --git 
a/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.service
 
b/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.service
new file mode 100644
index 000..9d2ba756a26
--- /dev/null
+++ 
b/net-analyzer/prometheus-redis_exporter/files/prometheus-redis_exporter.service
@@ -0,0 +1,16 @@

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

2018-03-14 Thread Mart Raudsepp
commit: ed521104e3c60fd0e603c96bb43814e026910129
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:33:18 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:33:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed521104

net-libs/phodav: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-libs/phodav/Manifest  |  1 -
 net-libs/phodav/phodav-2.1.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/net-libs/phodav/Manifest b/net-libs/phodav/Manifest
index 0d84bdc82f8..96718b331e3 100644
--- a/net-libs/phodav/Manifest
+++ b/net-libs/phodav/Manifest
@@ -1,2 +1 @@
-DIST phodav-2.1.tar.xz 293128 BLAKE2B 
bdb175812d742189b1efe5589f63a1fd50a18d7f1a59e0627a0eba0c8a82fd110bec1d434519c362a2d232680b3040c47768d9f960236c20dad0e036b7433529
 SHA512 
e43bd4c9ed97b7454e8452246c37211905b4cff430e91f3d2d36182736e1b8924d6ad477f58f110c98b85f02c085cd12c099020a0bea8abb19e65a9d52e1f4a8
 DIST phodav-2.2.tar.xz 294216 BLAKE2B 
e7062f933f407dff339b050a8b735e733fa41634cc34b0a37556b283b941ff620ae59a2ed3b7bce41530195f33a9fb3113f89e37190bb046352d90d72a750468
 SHA512 
1d16716c1bda674a6695b651e9b1bcb4b7cfefd9b60291ed3f5691f4f6f45f68a970d99fc4820bed0484cf0a43c1bf32e4d208fcc239ac0c0b7a75bf779e8913

diff --git a/net-libs/phodav/phodav-2.1.ebuild 
b/net-libs/phodav/phodav-2.1.ebuild
deleted file mode 100644
index 91ed0ed6f21..000
--- a/net-libs/phodav/phodav-2.1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 systemd udev
-
-DESCRIPTION="WebDav server implementation using libsoup"
-HOMEPAGE="https://wiki.gnome.org/phodav;
-
-LICENSE="LGPL-2.1+"
-SLOT="2.0"
-KEYWORDS="alpha amd64 arm ppc ppc64 x86"
-IUSE="spice systemd zeroconf"
-
-RDEPEND="
-   dev-libs/glib:2
-   >=net-libs/libsoup-2.48:2.4
-   dev-libs/libxml2
-   zeroconf? ( net-dns/avahi )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.10
-   >=dev-util/intltool-0.40.0
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-static \
-   --program-suffix=-${SLOT} \
-   $(use_with zeroconf avahi) \
-   --with-udevdir=$(get_udevdir) \
-   --with-systemdsystemunitdir=$(systemd_get_systemunitdir)
-
-   if ! use zeroconf ; then
-   sed -i -e 's|avahi-daemon.service||' data/spice-webdavd.service 
|| die
-   fi
-}
-
-src_install() {
-   gnome2_src_install
-
-   if use spice ; then
-   if ! use systemd ; then
-   newinitd "${FILESDIR}/spice-webdavd.initd" spice-webdavd
-   udev_dorules "${FILESDIR}/70-spice-webdavd.rules"
-   rm -r "${D}$(systemd_get_systemunitdir)" || die
-   fi
-   else
-   rm -r 
"${D}"{/usr/sbin,$(get_udevdir),$(systemd_get_systemunitdir)} || die
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-gnome-shell-extensions/

2018-03-14 Thread Mart Raudsepp
commit: 1da8590c37039253f6477cc85d20f8a397bad984
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:14:46 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:14:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1da8590c

app-eselect/eselect-gnome-shell-extensions-20180306: ALLARCHES stabilize

Previous version has been broken for a while with latest stable (and ~arch) 
eselect

Bug: https://bugs.gentoo.org/643498
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../eselect-gnome-shell-extensions-20180306.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20180306.ebuild
 
b/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20180306.ebuild
index 6d497dd4329..ab57eba3dae 100644
--- 
a/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20180306.ebuild
+++ 
b/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20180306.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://dev.gentoo.org/~leio/distfiles/${P}.tar.xz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 # gnome-shell schemas are used in pkg_postinst
 COMMON_DEPEND="app-admin/eselect



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

2018-03-14 Thread Mart Raudsepp
commit: a4ae156e48a9157825e11d5d43e2c27ffe9ac9cf
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:25:32 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:25:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ae156e

app-text/libgxps: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-text/libgxps/Manifest |  1 -
 app-text/libgxps/libgxps-0.2.5.ebuild | 48 ---
 2 files changed, 49 deletions(-)

diff --git a/app-text/libgxps/Manifest b/app-text/libgxps/Manifest
index c463b5e05bd..01f2d697f2d 100644
--- a/app-text/libgxps/Manifest
+++ b/app-text/libgxps/Manifest
@@ -1,2 +1 @@
-DIST libgxps-0.2.5.tar.xz 346532 BLAKE2B 
017ee2b2a7ad48b8755293e5b24c824e9c289d03b77d76ba46d03f857704edc31846569a4f3fd60cbcb16b28d0dd87daa7dda7b5efcd540fdbecee7399049c93
 SHA512 
f449c4cb989910797c84614ce9f141d4e9adcda0c18f309f656de397ba5deabfa9b4c558c81be7f52bc44c048c401616775989cd1ff9408eeea44f46ef56635b
 DIST libgxps-0.3.0.tar.xz 93000 BLAKE2B 
8e04ae281aa8ee637d597265992a5bf6df3592b7d251d657dae3833c8cca848f7142f926964d96586f50ce9987dee94841be15554a733816a3b4f0acef282f12
 SHA512 
283ce3041f0238ef1dcae30ce2adbc3f843677e00ae22f20ed3459828f3edaab6d05d87c20dddb613925ab248ed0b29855a94198b982606c3dcb2e59f800b013

diff --git a/app-text/libgxps/libgxps-0.2.5.ebuild 
b/app-text/libgxps/libgxps-0.2.5.ebuild
deleted file mode 100644
index 8573da92cd0..000
--- a/app-text/libgxps/libgxps-0.2.5.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-
-DESCRIPTION="Library for handling and rendering XPS documents"
-HOMEPAGE="https://wiki.gnome.org/Projects/libgxps;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ppc ppc64 sparc x86"
-IUSE="debug +introspection jpeg lcms static-libs tiff"
-
-RDEPEND="
-   >=app-arch/libarchive-2.8
-   >=dev-libs/glib-2.36:2
-   media-libs/freetype:2
-   media-libs/libpng:0
-   >=x11-libs/cairo-1.10[svg]
-   introspection? ( >=dev-libs/gobject-introspection-0.10.1:= )
-   jpeg? ( virtual/jpeg:0 )
-   lcms? ( media-libs/lcms:2 )
-   tiff? ( media-libs/tiff:0[zlib] )
-"
-DEPEND="${RDEPEND}
-   app-text/docbook-xsl-stylesheets
-   dev-libs/libxslt
-   dev-util/gtk-doc-am
-   virtual/pkgconfig
-"
-
-# There is no automatic test suite, only an interactive test application
-RESTRICT="test"
-
-src_configure() {
-   gnome2_src_configure \
-   --enable-man \
-   --disable-test \
-   $(use_enable debug) \
-   $(use_enable introspection) \
-   $(use_with jpeg libjpeg) \
-   $(use_with lcms liblcms2) \
-   $(use_enable static-libs static) \
-   $(use_with tiff libtiff)
-}



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

2018-03-14 Thread Mart Raudsepp
commit: 22e6adc823e231c2f0413d346374d9ca3b95aa97
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:34:30 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:34:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22e6adc8

x11-libs/gtksourceview: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-libs/gtksourceview/Manifest|  1 -
 x11-libs/gtksourceview/gtksourceview-3.22.2.ebuild | 58 --
 2 files changed, 59 deletions(-)

diff --git a/x11-libs/gtksourceview/Manifest b/x11-libs/gtksourceview/Manifest
index 70f08e9c6fc..0b6b4660448 100644
--- a/x11-libs/gtksourceview/Manifest
+++ b/x11-libs/gtksourceview/Manifest
@@ -1,3 +1,2 @@
 DIST gtksourceview-2.10.5.tar.bz2 1253321 BLAKE2B 
810a3eeca69bab4356b21c64129bb852e00d02c7937ad4a2ce3af9e48700da943d8d6834efcce9810dd49a54f39d4a074dc086a557128da51a593b2f23e58d48
 SHA512 
6f64acef6196bfc5953e0b148d7e460d366073b5e21367c01b01fc4d1c86ffe8aca71ecd77cf0814e47d8fc3085495f25bbbdc69e746987b02fd02fcda64886d
-DIST gtksourceview-3.22.2.tar.xz 1596384 BLAKE2B 
d638cdec2aaa510c0039d9cbda3105e0c6ca6586cbf6e542370efafcf52f01aaf59b163a44f93544dbcfa1535f3d6d2f84206e5a912d2101319b553b53b5e6d1
 SHA512 
1d51a975471172835cd9af64828ba93eb1b45e26fae91b1778c5963a8578404bbbdf1fe7f2c92953dff436bf2dac2d9e01a5188216d2a60a705e4635f0c91b81
 DIST gtksourceview-3.24.6.tar.xz 1623288 BLAKE2B 
2332b31534f4fb7e4115e3827c3d57fe4d465eda67c977d238521fc68e0390809e1f0fc46e75adec2b966c83fe5ce0caa3cf312eba97bba76b9b7719b94ca42b
 SHA512 
1b7621dbc1effc979fe08af8e6683ef43cc25563aab37a87abce15a0aa74bd0698bf10377a3fc2539b0cba1ad2f4bce2bb3981ef2dd4245bfe2fcba866d72f5d

diff --git a/x11-libs/gtksourceview/gtksourceview-3.22.2.ebuild 
b/x11-libs/gtksourceview/gtksourceview-3.22.2.ebuild
deleted file mode 100644
index 2bb8038d61b..000
--- a/x11-libs/gtksourceview/gtksourceview-3.22.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-VALA_MIN_API_VERSION="0.24"
-VALA_USE_DEPEND="vapigen"
-
-inherit gnome2 vala virtualx
-
-DESCRIPTION="A text widget implementing syntax highlighting and other features"
-HOMEPAGE="https://wiki.gnome.org/Projects/GtkSourceView;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="3.0/3"
-
-IUSE="glade +introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
-
-RDEPEND="
-   >=dev-libs/glib-2.48:2
-   >=dev-libs/libxml2-2.6:2
-   >=x11-libs/gtk+-3.20:3[introspection?]
-   glade? ( >=dev-util/glade-3.9:3.10 )
-   introspection? ( >=dev-libs/gobject-introspection-1.42:= )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.25
-   >=sys-devel/gettext-0.19.4
-   dev-util/itstool
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-"
-
-src_prepare() {
-   use vala && vala_src_prepare
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-deprecations \
-   $(use_enable glade glade-catalog) \
-   $(use_enable introspection) \
-   $(use_enable vala)
-}
-
-src_test() {
-   virtx emake check
-}
-
-src_install() {
-   gnome2_src_install
-
-   insinto /usr/share/${PN}-3.0/language-specs
-   doins "${FILESDIR}"/2.0/gentoo.lang
-}



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

2018-03-14 Thread Mart Raudsepp
commit: aaa3c07fd3261b4bad6a83548d20f75632853c90
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:37:00 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:37:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaa3c07f

x11-libs/pango: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-libs/pango/Manifest|  1 -
 x11-libs/pango/pango-1.40.3.ebuild | 57 --
 2 files changed, 58 deletions(-)

diff --git a/x11-libs/pango/Manifest b/x11-libs/pango/Manifest
index e1d5ba4c652..0321d7f3d8b 100644
--- a/x11-libs/pango/Manifest
+++ b/x11-libs/pango/Manifest
@@ -1,3 +1,2 @@
 DIST pango-1.40.12.tar.xz 856228 BLAKE2B 
c6fe562f64ac7b641b5b8519f831b999418ab06c1686ac07aa08b587bfba761a834e698f033bdb79666ea6ddd6c1f672ce968897c7594e4467c5b6dee644877e
 SHA512 
772792edac9ab5b6f76617cd3512432ca6b9af1d5ee6bfb87d0b60293f560026d479df059da66f53ba567f916a275e82f1cdd17ca75bb0da7ae2a79d4a75ed6d
 DIST pango-1.40.14.tar.xz 858388 BLAKE2B 
1afcff08c38aa59ec57cdf43aa503e70a8c03b7d59c730060c9e3537f78ffe9a63e3aa1cb74ce9ce8d72541b5a5be8becb951f665f4663b108114686c41452c8
 SHA512 
35ba7bc8be3992f206ccc2cc5aca0b94e2a3832f887fc9c45b0e29fddcb9051ce05a74377de0ca4ff95a87983b15688fa5d379d592faf87aa8eaca25ac18b7ea
-DIST pango-1.40.3.tar.xz 1061044 BLAKE2B 
79acd03144b58a3c160888cf4e3638faaf622cfcb406ddcd6a17907bddb7b3c6bf8c4a8ffbedb095664b7d19daa6837239e317d03e9a485f01b832227d1c3b7d
 SHA512 
ff82395e8487624dffe212975b72b3383dcebb197a8675c8b409665e3e2e30fc23d9a6c25c3129a115adb7182b2a71a49550dbe881eb7ee9bbc572de6ba18d27

diff --git a/x11-libs/pango/pango-1.40.3.ebuild 
b/x11-libs/pango/pango-1.40.3.ebuild
deleted file mode 100644
index 04d6674732f..000
--- a/x11-libs/pango/pango-1.40.3.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 multilib multilib-minimal toolchain-funcs
-
-DESCRIPTION="Internationalized text layout and rendering library"
-HOMEPAGE="http://www.pango.org/;
-
-LICENSE="LGPL-2+ FTL"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-
-IUSE="X +introspection test"
-
-RDEPEND="
-   >=media-libs/harfbuzz-0.9.30:=[glib(+),truetype(+),${MULTILIB_USEDEP}]
-   >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
-   >=media-libs/fontconfig-2.10.92:1.0=[${MULTILIB_USEDEP}]
-   >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}]
-   >=x11-libs/cairo-1.12.14-r4:=[X?,${MULTILIB_USEDEP}]
-   introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
-   X? (
-   >=x11-libs/libXrender-0.9.8[${MULTILIB_USEDEP}]
-   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
-   >=x11-libs/libXft-2.3.1-r1[${MULTILIB_USEDEP}]
-   )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.20
-   virtual/pkgconfig[${MULTILIB_USEDEP}]
-   test? ( media-fonts/cantarell )
-   X? ( >=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}] )
-   !<=sys-devel/autoconf-2.63:2.5
-"
-
-multilib_src_configure() {
-   tc-export CXX
-
-   ECONF_SOURCE=${S} \
-   gnome2_src_configure \
-   --with-cairo \
-   $(multilib_native_use_enable introspection) \
-   $(use_with X xft) \
-   "$(usex X --x-includes="${EPREFIX}/usr/include" "")" \
-   "$(usex X --x-libraries="${EPREFIX}/usr/$(get_libdir)" "")"
-
-   if multilib_is_native_abi; then
-   ln -s "${S}"/docs/html docs/html || die
-   fi
-}
-
-multilib_src_install() {
-   gnome2_src_install
-}



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-gnome-shell-extensions/

2018-03-14 Thread Mart Raudsepp
commit: 5b326dc5f4c840358bfe256c42a4bcd92f65a004
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:20:45 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:20:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b326dc5

app-eselect/eselect-gnome-shell-extensions: remove old, broken with current 
eselect

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../eselect-gnome-shell-extensions/Manifest|  1 -
 .../eselect-gnome-shell-extensions-20120911.ebuild | 49 --
 2 files changed, 50 deletions(-)

diff --git a/app-eselect/eselect-gnome-shell-extensions/Manifest 
b/app-eselect/eselect-gnome-shell-extensions/Manifest
index 9254e4b14c5..5bc974dad8d 100644
--- a/app-eselect/eselect-gnome-shell-extensions/Manifest
+++ b/app-eselect/eselect-gnome-shell-extensions/Manifest
@@ -1,2 +1 @@
-DIST eselect-gnome-shell-extensions-20120911.tar.xz 2792 BLAKE2B 
eaa0bf4217b095708131eb3f72b5a420b717f12b9f2088d8772567cd81c2631b68007a3bef0416b9d9016913f096094b3816dff2f1e7ba4495515c76cf03157b
 SHA512 
da54e2a0b74f3e8f8eaa26b1858d26c56fbaa398ec54b079f504377a4079df19ff52485991a9ea153f92c93a9fe871d70c3c2b841bad4b8dba402ad83c9297e2
 DIST eselect-gnome-shell-extensions-20180306.tar.xz 2676 BLAKE2B 
846e282f99828ce795ba98557bb97301f576895c46e98ae0c079dfee8461146756c85573c1ce24e4ca3690d2ea8383dd988e40d3fe271a32b1987e027b47e3ae
 SHA512 
2c0b9119219d8f3c54201f9865e1a9dd6889ccf26537802c591e89adb545f38aca13fa6b1119fe52d4183daf4adb6d2b1053b252d2756778b31626688092196d

diff --git 
a/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20120911.ebuild
 
b/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20120911.ebuild
deleted file mode 100644
index 33724f4f145..000
--- 
a/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20120911.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-DESCRIPTION="Manages system defaults for GNOME Shell extensions"
-HOMEPAGE="https://www.gentoo.org;
-SRC_URI="https://dev.gentoo.org/~tetromino/distfiles/${PN}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-# gnome-shell schemas are used in pkg_postinst
-COMMON_DEPEND="app-admin/eselect
-   >=dev-libs/glib-2.26:2
-   gnome-base/gsettings-desktop-schemas
-   gnome-base/gnome-shell"
-RDEPEND="${COMMON_DEPEND}
-   dev-lang/perl
-   dev-perl/JSON"
-DEPEND="${COMMON_DEPEND}
-   app-arch/xz-utils"
-
-src_install() {
-   insinto "/usr/share/eselect/modules"
-   doins gnome-shell-extensions.eselect
-   keepdir "/etc/eselect/gnome-shell-extensions"
-   # The actual gschema override file will be greated in pkg_postinst.
-   dosym "/etc/eselect/gnome-shell-extensions/${PN}.gschema.override" \
-   "/usr/share/glib-2.0/schemas/${PN}.gschema.override"
-}
-
-pkg_postinst() {
-   einfo "Updating list of installed extensions"
-   eselect gnome-shell-extensions update || die
-   local keyname="disabled-extensions"
-   has_version ">=gnome-base/gnome-shell-3.1.90" &&
-   keyname="enabled-extensions"
-   elog
-   elog "eselect gnome-shell-extensions manages the system default value 
of"
-   elog "the org.gnome.shell ${keyname} key. To override the default"
-   elog "for an individual user, use the gsettings command, e.g."
-   elog "\$ gsettings set org.gnome.shell ${keyname} \"['foo', 'bar']\""
-   elog "To undo per-user changes and use the system default, do"
-   elog "\$ gsettings reset org.gnome.shell ${keyname}"
-   elog
-}



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

2018-03-14 Thread Mart Raudsepp
commit: ffd8b87d04df252cb1dbbc7fbe03f18814f64f93
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:30:02 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:30:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffd8b87d

dev-util/glade: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-util/glade/Manifest|  1 -
 dev-util/glade/glade-3.20.0.ebuild | 89 --
 2 files changed, 90 deletions(-)

diff --git a/dev-util/glade/Manifest b/dev-util/glade/Manifest
index 66524da909c..99cf143707a 100644
--- a/dev-util/glade/Manifest
+++ b/dev-util/glade/Manifest
@@ -1,2 +1 @@
-DIST glade-3.20.0.tar.xz 3492928 BLAKE2B 
bab8682ec83a98f7f405a667e9fc9ad4b0fa334e0f1f3b1ba5bd8e17af1c61c65031ebe2fe56b8321df142f5a4d8dec348793bba0fc3c195c6722d635d52a291
 SHA512 
58c8da3522c75470f5b42492bddd83f61d828fa2a3fb8a78d15813f6d1f1df22bd808f25ae7228bf2e821bacdcc5665b889bac3ea8364c4dac288f95e817e98a
 DIST glade-3.20.2.tar.xz 3535064 BLAKE2B 
33e5e9477556ac5f645cf13658ff1eebdaf046c1bbbcf5ac528c00f9b5f76943ede8140cc6a3b73dc27ed96c363208700031306f19478ba0e9e2fbae8319f500
 SHA512 
45f850ed4d409aaf11153da45398e7974d7b85235bf5d5043bc11755c3e4d1201f59ed854786162a7414f0521c818982560d4e226f93625b9253dc598793118a

diff --git a/dev-util/glade/glade-3.20.0.ebuild 
b/dev-util/glade/glade-3.20.0.ebuild
deleted file mode 100644
index d2a03c7b833..000
--- a/dev-util/glade/glade-3.20.0.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python2_7 )
-
-inherit gnome2 python-single-r1 versionator virtualx
-
-DESCRIPTION="A user interface designer for GTK+ and GNOME"
-HOMEPAGE="https://glade.gnome.org/;
-
-LICENSE="GPL-2+ FDL-1.1+"
-SLOT="3.10/6" # subslot = suffix of libgladeui-2.so
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
-
-IUSE="debug +introspection python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-   dev-libs/atk[introspection?]
-   >=dev-libs/glib-2.32:2
-   >=dev-libs/libxml2-2.4.0:2
-   x11-libs/cairo:=
-   x11-libs/gdk-pixbuf:2[introspection?]
-   >=x11-libs/gtk+-3.20.0:3[introspection?]
-   x11-libs/pango[introspection?]
-   introspection? ( >=dev-libs/gobject-introspection-1.32:= )
-   python? (
-   ${PYTHON_DEPS}
-   >=dev-python/pygobject-3.8:3[${PYTHON_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/yelp-tools
-   dev-libs/libxslt
-   >=dev-util/gtk-doc-am-1.13
-   >=dev-util/intltool-0.41.0
-   dev-util/itstool
-   virtual/pkgconfig
-
-   dev-libs/gobject-introspection-common
-   gnome-base/gnome-common
-"
-# eautoreconf requires:
-#  dev-libs/gobject-introspection-common
-#  gnome-base/gnome-common
-
-PATCHES=(
-   # To avoid file collison with other slots, rename help module.
-   # Prevent the UI from loading glade:3's gladeui devhelp documentation.
-   "${FILESDIR}"/${PN}-3.14.1-doc-version.patch
-)
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-static \
-   --enable-gladeui \
-   --enable-libtool-lock \
-   $(usex debug --enable-debug ' ') \
-   $(use_enable introspection) \
-   $(use_enable python)
-}
-
-src_test() {
-   virtx emake check
-}
-
-src_install() {
-   # modify Name in .desktop file to avoid confusion with other slots
-   sed -e 's:^\(Name.*=Glade\):\1 '$(get_version_component_range 1-2): \
-   -i data/glade.desktop || die "sed of data/glade.desktop failed"
-   # modify name in .devhelp2 file to avoid shadowing with glade:3 docs
-   sed -e 's:name="gladeui":name="gladeui-2":' \
-   -i doc/html/gladeui.devhelp2 || die "sed of gladeui.devhelp2 
failed"
-   gnome2_src_install
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-   if ! has_version dev-util/devhelp ; then
-   elog "You may want to install dev-util/devhelp for integration 
API"
-   elog "documentation support."
-   fi
-}



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

2018-03-14 Thread Mart Raudsepp
commit: 55a25406512007bc9bf56b92c5c0a771e74cb0d9
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:32:23 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:32:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55a25406

gnome-base/libgtop: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/libgtop/Manifest  |  1 -
 gnome-base/libgtop/libgtop-2.34.2.ebuild | 29 -
 2 files changed, 30 deletions(-)

diff --git a/gnome-base/libgtop/Manifest b/gnome-base/libgtop/Manifest
index 24f969ac4e4..bb1da6b6f6c 100644
--- a/gnome-base/libgtop/Manifest
+++ b/gnome-base/libgtop/Manifest
@@ -1,2 +1 @@
-DIST libgtop-2.34.2.tar.xz 725720 BLAKE2B 
fc69a6d64f86e16490f417748937b196c090de7afb68052a42258c06b7b65b686edb41abbf69ad42065a44b5811def0776969c2caa01009c2087355e9b1b2e9f
 SHA512 
22ae4792236c47fda265f1b16f66f8685122f84a76e14adf2fd9e5e669c1f9776a58a2ec00564e37add98084d7e3cea621b38b8ad09b15e348f9c74f5345f19a
 DIST libgtop-2.36.0.tar.xz 727072 BLAKE2B 
46f24573bde0bcfeb2210ea08446f6e6590fadc5697745178133ce5f3aec2e464cbce8446d2dbddb9f05d4a16eb7daf110c4554778a28573116b2b59edcf556f
 SHA512 
2768c628fa3e872a940246042b2c78ad4618612ecb2cf2b95fb70343a4f1a01bb558d0ce9e5b3468f395349f338ca33d460e1d91f2c123ad39243cd0ff20d5e5

diff --git a/gnome-base/libgtop/libgtop-2.34.2.ebuild 
b/gnome-base/libgtop/libgtop-2.34.2.ebuild
deleted file mode 100644
index acafa2277c4..000
--- a/gnome-base/libgtop/libgtop-2.34.2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="A library that provides top functionality to applications"
-HOMEPAGE="https://git.gnome.org/browse/libgtop;
-
-LICENSE="GPL-2"
-SLOT="2/10" # libgtop soname version
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
-IUSE="+introspection"
-
-RDEPEND="
-   >=dev-libs/glib-2.26:2
-   introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.4
-   >=sys-devel/gettext-0.19.4
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-static \
-   $(use_enable introspection)
-}



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

2018-03-14 Thread Mart Raudsepp
commit: d9f7d184a846334ccf0d2f4772c3bc4d249c6d93
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:43:31 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:43:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9f7d184

sys-apps/hwids-20171003: arm64 stable

Package-Manager: Portage-2.3.19, Repoman-2.3.6

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

diff --git a/sys-apps/hwids/hwids-20171003.ebuild 
b/sys-apps/hwids/hwids-20171003.ebuild
index 03b4277f644..ea2219711fb 100644
--- a/sys-apps/hwids/hwids-20171003.ebuild
+++ b/sys-apps/hwids/hwids-20171003.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="${HOMEPAGE}.git"
 else
SRC_URI="${HOMEPAGE}/archive/${P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+   KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 fi
 
 LICENSE="|| ( GPL-2 BSD ) public-domain"



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

2018-03-14 Thread Mart Raudsepp
commit: 45313e89d919f9486e8e54c9bd4824adfc95397e
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:47:28 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:47:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45313e89

virtual/libgudev-232: arm64 stable

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 virtual/libgudev/libgudev-232.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/libgudev/libgudev-232.ebuild 
b/virtual/libgudev/libgudev-232.ebuild
index ee0261c8e7e..8da645dc345 100644
--- a/virtual/libgudev/libgudev-232.ebuild
+++ b/virtual/libgudev/libgudev-232.ebuild
@@ -6,7 +6,7 @@ inherit multilib-build
 
 DESCRIPTION="Virtual for libgudev providers"
 SLOT="0/0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
 IUSE="introspection static-libs"
 
 
RDEPEND=">=dev-libs/libgudev-232:0/0[${MULTILIB_USEDEP},introspection?,static-libs?]"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/eudev/

2018-03-14 Thread Mart Raudsepp
commit: a900bf1d6f2f539955f0c4e57d1ca8c530e8d19e
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:49:20 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:49:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a900bf1d

sys-fs/eudev-3.2.5: arm64 stable (bug #645280)

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-fs/eudev/eudev-3.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/eudev/eudev-3.2.5.ebuild b/sys-fs/eudev/eudev-3.2.5.ebuild
index 4c63601d78c..eced618a09b 100644
--- a/sys-fs/eudev/eudev-3.2.5.ebuild
+++ b/sys-fs/eudev/eudev-3.2.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = * ]]; then
inherit git-r3
 else
SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz;
-   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc 
x86"
+   KEYWORDS="alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc 
x86"
 fi
 
 DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"



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

2018-03-14 Thread Mart Raudsepp
commit: 710c51102fafbe7329b4ce086b4ac1d3fb1ab12e
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:45:29 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:45:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=710c5110

dev-libs/libgudev-232: arm64 stable

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-libs/libgudev/libgudev-232.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libgudev/libgudev-232.ebuild 
b/dev-libs/libgudev/libgudev-232.ebuild
index c79e4b9556c..e05ba73f477 100644
--- a/dev-libs/libgudev/libgudev-232.ebuild
+++ b/dev-libs/libgudev/libgudev-232.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
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/libgudev;
 
 LICENSE="LGPL-2.1"
 SLOT="0/0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE="introspection static-libs"
 
 COMMON_DEPEND="



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

2018-03-14 Thread Mart Raudsepp
commit: 74ccc66f3dfb1dda0abcaa73609979815662365f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:31:45 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:31:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74ccc66f

gnome-base/gvfs: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 gnome-base/gvfs/Manifest   |   1 -
 gnome-base/gvfs/gvfs-1.30.4.ebuild | 132 -
 2 files changed, 133 deletions(-)

diff --git a/gnome-base/gvfs/Manifest b/gnome-base/gvfs/Manifest
index e0b74591460..cd115213434 100644
--- a/gnome-base/gvfs/Manifest
+++ b/gnome-base/gvfs/Manifest
@@ -1,3 +1,2 @@
-DIST gvfs-1.30.4.tar.xz 1895304 BLAKE2B 
7e7dbcde464ac3afc982d6d04916ecbee4b0cfae9481d2f75e2195b4816e8f92a5fe3d434f630dbea684b4020721825133205f303d4bf527d8826033355b547e
 SHA512 
305b2abc8cfcb4bdea1fb84f5a7df4aac9697494f5d63d40ce1eb234b547aed497deb4d88a2cb17f9ab4fc188d49ff56033993a17cbfebae6d65a33dc84a633a
 DIST gvfs-1.32.1-patches.tar.xz 53288 BLAKE2B 
2394f0931927069b4aeab69769df74c823ebffca2e7e73245b3597e085f2fff5c98999e6eccd052fa3564339b75d764f2124592c0977fddd2eb4afeca819b965
 SHA512 
c3e9de02e013aaf707878f8ffab96c42ac558412020f8462f928d2c7bd8b9756aa980e6b8db50e6f0ff0ad91f250ef1a26358d80b5d1cdaa9234475ec3a3db4f
 DIST gvfs-1.32.1.tar.xz 1813212 BLAKE2B 
4b349e968eaab75d75ac9e7b66087298754ad81668e415812c4db74e2e393ac2cddea1b55771656dcd67ffdca23e4cf1642afef101498d309c643519fcefcca3
 SHA512 
7bd4d137437c1704faf6a9c2712bddcc327284e752c552c2cc18c64beb5e6d291af321e92d02d4f09b619762121129cee82c13ec2a4ca39d045196ebeeb28dd8

diff --git a/gnome-base/gvfs/gvfs-1.30.4.ebuild 
b/gnome-base/gvfs/gvfs-1.30.4.ebuild
deleted file mode 100644
index dec41a2ad23..000
--- a/gnome-base/gvfs/gvfs-1.30.4.ebuild
+++ /dev/null
@@ -1,132 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit autotools bash-completion-r1 gnome2 systemd
-
-DESCRIPTION="Virtual filesystem implementation for gio"
-HOMEPAGE="https://wiki.gnome.org/Projects/gvfs;
-
-LICENSE="LGPL-2+"
-SLOT="0"
-
-IUSE="afp archive bluray cdda fuse google gnome-keyring gnome-online-accounts 
gphoto2 gtk +http ios mtp nfs policykit samba systemd test +udev udisks 
zeroconf"
-REQUIRED_USE="
-   cdda? ( udev )
-   google? ( gnome-online-accounts )
-   mtp? ( udev )
-   udisks? ( udev )
-   systemd? ( udisks )
-"
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris 
~x86-solaris"
-
-RDEPEND="
-   app-crypt/gcr:=
-   >=dev-libs/glib-2.49.3:2
-   sys-apps/dbus
-   dev-libs/libxml2:2
-   net-misc/openssh
-   afp? ( >=dev-libs/libgcrypt-1.2.2:0= )
-   archive? ( app-arch/libarchive:= )
-   bluray? ( media-libs/libbluray:= )
-   fuse? ( >=sys-fs/fuse-2.8.0 )
-   gnome-keyring? ( app-crypt/libsecret )
-   gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.7.1:= )
-   google? (
-   >=dev-libs/libgdata-0.17.7:=[crypt,gnome-online-accounts]
-   >=net-libs/gnome-online-accounts-3.17.1:= )
-   gphoto2? ( >=media-libs/libgphoto2-2.5.0:= )
-   gtk? ( >=x11-libs/gtk+-3.0:3 )
-   http? ( >=net-libs/libsoup-2.42:2.4 )
-   ios? (
-   >=app-pda/libimobiledevice-1.2:=
-   >=app-pda/libplist-1:= )
-   mtp? ( >=media-libs/libmtp-1.1.12 )
-   nfs? ( >=net-fs/libnfs-1.9.7 )
-   policykit? (
-   sys-auth/polkit
-   sys-libs/libcap )
-   samba? ( >=net-fs/samba-4[client] )
-   systemd? ( >=sys-apps/systemd-206:0= )
-   udev? (
-   cdda? ( dev-libs/libcdio-paranoia )
-   virtual/libgudev:=
-   virtual/libudev:= )
-   udisks? ( >=sys-fs/udisks-1.97:2 )
-   zeroconf? ( >=net-dns/avahi-0.6 )
-"
-DEPEND="${RDEPEND}
-   app-text/docbook-xsl-stylesheets
-   dev-libs/libxslt
-   >=sys-devel/gettext-0.19.4
-   virtual/pkgconfig
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   test? (
-   >=dev-python/twisted-core-12.3.0
-   || (
-   net-analyzer/netcat
-   net-analyzer/netcat6 ) )
-   !udev? ( >=dev-libs/libgcrypt-1.2.2:0 )
-"
-# libgcrypt.m4, provided by libgcrypt, needed for eautoreconf, bug #399043
-# test dependencies needed per https://bugzilla.gnome.org/700162
-
-# Tests with multiple failures, this is being handled upstream at:
-# https://bugzilla.gnome.org/700162
-RESTRICT="test"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.30.2-sysmacros.patch #580234
-)
-
-src_prepare() {
-   if ! use udev; then
-   sed -e 's/gvfsd-burn/ /' \
-   -e 's/burn.mount.in/ /' \
-   -e 's/burn.mount/ /' \
-   -i 

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

2018-03-14 Thread Mart Raudsepp
commit: bda044ddabab613b8496195033c7fb5c9e5f004d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Mar 15 01:35:42 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Mar 15 01:35:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bda044dd

x11-libs/libwnck: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-libs/libwnck/Manifest  |  1 -
 x11-libs/libwnck/libwnck-3.20.1.ebuild | 45 --
 2 files changed, 46 deletions(-)

diff --git a/x11-libs/libwnck/Manifest b/x11-libs/libwnck/Manifest
index 03c5d380ec0..95a64fdd730 100644
--- a/x11-libs/libwnck/Manifest
+++ b/x11-libs/libwnck/Manifest
@@ -1,3 +1,2 @@
 DIST libwnck-2.31.0.tar.xz 630792 BLAKE2B 
8201537d3c9a8a0a8668fc16d33a8eaa05c14312401f1c763c922402df04ef03260dd259f5c46508f85390f7aefd551e83143e654b24b412272dddb7c7c4bd62
 SHA512 
54262a08882021f08f3ba7f2ddfa33fc1f02e391a0f61cf999a50a089e0d277dfe13ab133c1a46e9abf0599bd24c21dacff80b51013cbb1375d2cd71ac9abbe9
-DIST libwnck-3.20.1.tar.xz 693932 BLAKE2B 
6a411ce9aa721ad158ba4c6cde6ca33892f8346b8bbcfa769f1cfe34e8de8cab434691d8dfdc1cd7b35a015d7b39db952bf882554db0b85ee3ff641f49dbda67
 SHA512 
68e9ec8795a0c54edfb31299f48daed5b8c8aab9462a38fd6336f88c29cb96cff66bf852a6049fc34c28bd6cab2e5e6863a711b0ce726999ca7f8e9b07f0eaf0
 DIST libwnck-3.24.1.tar.xz 821508 BLAKE2B 
18bc01a08107e0b2b040cb6036a80cb289955aa9365b7568292aa1c29dc77758bc9b11caa57b8cff6bebb75dd1d0bf7135b0cebed1e42c6ccc1c1372c6a224b5
 SHA512 
e8a31ab2dc0c282f1e0994ce6a2ccd18678dc5c140943399262e795052b7f5da2d6a5d388a74f4b10f8fac66ab138983a9caaee4e72c92a17c01ca5c39b731e1

diff --git a/x11-libs/libwnck/libwnck-3.20.1.ebuild 
b/x11-libs/libwnck/libwnck-3.20.1.ebuild
deleted file mode 100644
index 8cca04622fb..000
--- a/x11-libs/libwnck/libwnck-3.20.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit flag-o-matic gnome2
-
-DESCRIPTION="A window navigation construction kit"
-HOMEPAGE="https://developer.gnome.org/libwnck/stable/;
-
-LICENSE="LGPL-2+"
-SLOT="3"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-solaris ~x86-solaris"
-
-IUSE="+introspection startup-notification tools"
-
-RDEPEND="
-   x11-libs/cairo[X]
-   >=x11-libs/gtk+-3.16:3[introspection?]
-   >=dev-libs/glib-2.32:2
-   x11-libs/libX11
-   x11-libs/libXres
-   x11-libs/libXext
-   introspection? ( >=dev-libs/gobject-introspection-0.6.14:= )
-   startup-notification? ( >=x11-libs/startup-notification-0.4 )
-"
-DEPEND="${RDEPEND}
-   dev-util/gtk-doc-am
-   >=dev-util/intltool-0.40.6
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-# eautoreconf needs
-#  gnome-base/gnome-common
-
-src_configure() {
-   # Don't collide with SLOT=1
-   gnome2_src_configure \
-   --disable-static \
-   $(use_enable introspection) \
-   $(use_enable startup-notification) \
-   $(use_enable tools) \
-   --program-suffix=-${SLOT}
-}



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

2018-03-14 Thread William Hubbs
commit: 5346fbf2c90b33b3abc01588e4727d4402f8db62
Author: William Hubbs  gmail  com>
AuthorDate: Thu Mar 15 01:05:45 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Mar 15 01:05:45 2018 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=5346fbf2

supervise-daemon: fix off-by-one error

 src/rc/supervise-daemon.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/rc/supervise-daemon.c b/src/rc/supervise-daemon.c
index 669db3a2..952c610b 100644
--- a/src/rc/supervise-daemon.c
+++ b/src/rc/supervise-daemon.c
@@ -232,8 +232,8 @@ static char *make_cmdline(char **argv)
 
for (c = argv; c && *c; c++)
len += (strlen(*c) + 1);
-   cmdline = xmalloc(len);
-   memset(cmdline, 0, len);
+   cmdline = xmalloc(len+1);
+   memset(cmdline, 0, len+1);
for (c = argv; c && *c; c++) {
strcat(cmdline, *c);
strcat(cmdline, " ");



[gentoo-commits] proj/openrc:master commit in: init.d/

2018-03-14 Thread William Hubbs
commit: 40aa69cf3a99fa080375a702631da4d2311ebf3e
Author: William Hubbs  gmail  com>
AuthorDate: Thu Mar 15 01:37:02 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Mar 15 01:37:02 2018 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=40aa69cf

agetty.in: allow status to be displayed

 init.d/agetty.in | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/init.d/agetty.in b/init.d/agetty.in
index 390b1317..971ee86c 100644
--- a/init.d/agetty.in
+++ b/init.d/agetty.in
@@ -16,7 +16,6 @@ term_type="${term_type:-linux}"
 command=/sbin/agetty
 command_args_foreground="${agetty_options} ${port} ${baud} ${term_type}"
 pidfile="/run/${RC_SVCNAME}.pid"
-export EINFO_QUIET="${quiet:-yes}"
 
 depend() {
after local
@@ -29,5 +28,12 @@ start_pre() {
eerror "symbolic links to it for the ports you want to start"
eerror "agetty on and add those to the appropriate runlevels."
return 1
+   else
+   export EINFO_QUIET="${quiet:-yes}"
fi
 }
+
+stop_pre()
+{
+   export EINFO_QUIET="${quiet:-yes}"
+}



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

2018-03-14 Thread Matt Turner
commit: ef3ceeff1510c699296d1830b0c46c0563e61eda
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 15 01:00:32 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 15 01:01:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef3ceeff

dev-python/jaraco-packaging-4.1: alpha stable, bug 641304

 dev-python/jaraco-packaging/jaraco-packaging-4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/jaraco-packaging/jaraco-packaging-4.1.ebuild 
b/dev-python/jaraco-packaging/jaraco-packaging-4.1.ebuild
index 7c1303e6a17..797e49f795a 100644
--- a/dev-python/jaraco-packaging/jaraco-packaging-4.1.ebuild
+++ b/dev-python/jaraco-packaging/jaraco-packaging-4.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd"
 IUSE="doc test"
 
 RDEPEND=">=dev-python/six-1.4[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/backports-unittest-mock/

2018-03-14 Thread Matt Turner
commit: 14967f7b7f6e74faac752ef6c9a229224d4707ab
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 15 01:00:25 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 15 01:01:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14967f7b

dev-python/backports-unittest-mock-1.3: alpha stable, bug 641304

 dev-python/backports-unittest-mock/backports-unittest-mock-1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/backports-unittest-mock/backports-unittest-mock-1.3.ebuild 
b/dev-python/backports-unittest-mock/backports-unittest-mock-1.3.ebuild
index a69fe3c17b5..982263b9fab 100644
--- a/dev-python/backports-unittest-mock/backports-unittest-mock-1.3.ebuild
+++ b/dev-python/backports-unittest-mock/backports-unittest-mock-1.3.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE="doc test"
 
 RDEPEND="dev-python/backports[${PYTHON_USEDEP}]



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

2018-03-14 Thread Matt Turner
commit: cb132bed5dc7af3cf2c84c1536a6a24fabd58c47
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 15 01:00:31 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 15 01:01:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb132bed

dev-python/contextlib2-0.5.5: alpha stable, bug 641304

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

diff --git a/dev-python/contextlib2/contextlib2-0.5.5.ebuild 
b/dev-python/contextlib2/contextlib2-0.5.5.ebuild
index 7402f9ece8d..289e8ae3c1e 100644
--- a/dev-python/contextlib2/contextlib2-0.5.5.ebuild
+++ b/dev-python/contextlib2/contextlib2-0.5.5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="PSF-2.4"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
 IUSE="test"
 
 DEPEND="



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

2018-03-14 Thread Matt Turner
commit: 15774d9f775a61f703a70cd0edeb3220137b2c94
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 15 01:00:36 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 15 01:01:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15774d9f

dev-python/pytest-virtualenv-1.2.11: alpha stable, bug 641304

 dev-python/pytest-virtualenv/pytest-virtualenv-1.2.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-virtualenv/pytest-virtualenv-1.2.11.ebuild 
b/dev-python/pytest-virtualenv/pytest-virtualenv-1.2.11.ebuild
index afd49265a83..f5a30d21712 100644
--- a/dev-python/pytest-virtualenv/pytest-virtualenv-1.2.11.ebuild
+++ b/dev-python/pytest-virtualenv/pytest-virtualenv-1.2.11.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-03-14 Thread Matt Turner
commit: 1adfa60f048045ca76246c69c100a9ed9d8c0405
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 15 01:00:37 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 15 01:01:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1adfa60f

dev-python/setuptools-36.7.2: alpha stable, bug 641304

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

diff --git a/dev-python/setuptools/setuptools-36.7.2.ebuild 
b/dev-python/setuptools/setuptools-36.7.2.ebuild
index d3c64a1e792..e5ca338a851 100644
--- a/dev-python/setuptools/setuptools-36.7.2.ebuild
+++ b/dev-python/setuptools/setuptools-36.7.2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
-   KEYWORDS="amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc ~x86"
+   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc ~x86"
 fi
 
 DESCRIPTION="Collection of extensions to Distutils"



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

2018-03-14 Thread Matt Turner
commit: 1a47a2cc942c3c0b26dc185ea21b6e7f4da00540
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 15 01:00:38 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 15 01:01:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a47a2cc

dev-python/setuptools-git-1.2: alpha stable, bug 641304

 dev-python/setuptools-git/setuptools-git-1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/setuptools-git/setuptools-git-1.2.ebuild 
b/dev-python/setuptools-git/setuptools-git-1.2.ebuild
index cc4e41eefcc..b7d50c22835 100644
--- a/dev-python/setuptools-git/setuptools-git-1.2.ebuild
+++ b/dev-python/setuptools-git/setuptools-git-1.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 dev-vcs/git"



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

2018-03-14 Thread Matt Turner
commit: 7d33f339cda7c835065f05503d9686238456c9e2
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 15 01:00:35 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 15 01:01:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d33f339

dev-python/pytest-shutil-1.2.11: alpha stable, bug 641304

 dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild 
b/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild
index fe6ba12790e..48386333be4 100644
--- a/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild
+++ b/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-03-14 Thread Matt Turner
commit: 8cf80e9784caf6eee256bf8f17e9c55f12b57716
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 15 01:00:33 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 15 01:01:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cf80e97

dev-python/pytest-3.2.2: alpha stable, bug 641304

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

diff --git a/dev-python/pytest/pytest-3.2.2.ebuild 
b/dev-python/pytest/pytest-3.2.2.ebuild
index a8ed90ecf52..4fb6a33bc31 100644
--- a/dev-python/pytest/pytest-3.2.2.ebuild
+++ b/dev-python/pytest/pytest-3.2.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 # When bumping, please check setup.py for the proper py version



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

2018-03-14 Thread Matt Turner
commit: 17567b1e830f42ae12a7b1c9e4c39e37157e6a40
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 15 01:00:32 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 15 01:01:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17567b1e

dev-python/py-1.4.34: alpha stable, bug 641304

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

diff --git a/dev-python/py/py-1.4.34.ebuild b/dev-python/py/py-1.4.34.ebuild
index e1e287c9481..f6554568f47 100644
--- a/dev-python/py/py-1.4.34.ebuild
+++ b/dev-python/py/py-1.4.34.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 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 ~amd64-fbsd"
+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"
 IUSE="doc test"
 
 RDEPEND=""



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

2018-03-14 Thread Matt Turner
commit: a3c7db9ec0da62dee4772674e86a31c4745ff9e9
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar 15 01:00:34 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar 15 01:01:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3c7db9e

dev-python/pytest-fixture-config-1.2.11: alpha stable, bug 641304

 dev-python/pytest-fixture-config/pytest-fixture-config-1.2.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/pytest-fixture-config/pytest-fixture-config-1.2.11.ebuild 
b/dev-python/pytest-fixture-config/pytest-fixture-config-1.2.11.ebuild
index 5560a4f6101..72f60e041bd 100644
--- a/dev-python/pytest-fixture-config/pytest-fixture-config-1.2.11.ebuild
+++ b/dev-python/pytest-fixture-config/pytest-fixture-config-1.2.11.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/prometheus-uwsgi_exporter/, ...

2018-03-14 Thread Zac Medico
commit: bf56188b53f889093ae3c99cb0a43a0a0ddae3f9
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Mar 15 00:51:34 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Mar 15 00:55:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf56188b

net-analyzer/prometheus-uwsgi_exporter: new package

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-analyzer/prometheus-uwsgi_exporter/Manifest|  1 +
 .../files/prometheus-uwsgi_exporter.confd  | 16 +++
 .../files/prometheus-uwsgi_exporter.initd  | 19 
 .../files/prometheus-uwsgi_exporter.logrotated |  7 +++
 .../files/prometheus-uwsgi_exporter.service| 16 +++
 .../prometheus-uwsgi_exporter/metadata.xml | 11 +
 .../prometheus-uwsgi_exporter-0.7.0.ebuild | 54 ++
 7 files changed, 124 insertions(+)

diff --git a/net-analyzer/prometheus-uwsgi_exporter/Manifest 
b/net-analyzer/prometheus-uwsgi_exporter/Manifest
new file mode 100644
index 000..63942cda2bb
--- /dev/null
+++ b/net-analyzer/prometheus-uwsgi_exporter/Manifest
@@ -0,0 +1 @@
+DIST prometheus-uwsgi_exporter-0.7.0.tar.gz 3039893 BLAKE2B 
a6efdae7f9a19ad21a283b586b5667bd99456274ed419d1b64aaf4cdb4df1e1c4fb2a08edf6df2b15813d21311fe54c2f2394f0bf25ac11c49db8a924596da05
 SHA512 
380ef4515eaa81d4dee853682efa7a5e82af2ec00c096e7471028c9932d46e0a7406b75cb40f0f8efec15cd77b06c5477a07919d0b44720e3e194b5bb023b593

diff --git 
a/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.confd 
b/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.confd
new file mode 100644
index 000..6db54fb3cc0
--- /dev/null
+++ 
b/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.confd
@@ -0,0 +1,16 @@
+# --web.listen-address=":9117"
+# Address on which to expose metrics and web interfaces.
+# --web.telemetry-path="/metrics"
+# Path under which to expose metrics.
+# --stats.uri=""  URI for accessing uwsgi stats.
+# --stats.timeout=5s  Timeout for trying to get stats from uwsgi.
+# --collect.cores Collect cores information per uwsgi worker.
+# --log.level="info"  Only log messages with the given severity or above.
+# Valid levels: [debug, info, warn, error, fatal]
+# --log.format="logger:stderr"
+# Set the log target and format. Example:
+# "logger:syslog?appname=bob=7" or
+# "logger:stdout?json=true"
+# --version   Show application version.
+
+#command_args="--web.listen-address=:9117 --stats.uri=http://localhost:1717;

diff --git 
a/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.initd 
b/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.initd
new file mode 100644
index 000..b456a0b1050
--- /dev/null
+++ 
b/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.initd
@@ -0,0 +1,19 @@
+#!/sbin/openrc-run
+# Copyright 2016-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+description="uWSGI metrics exporter for prometheus.io"
+pidfile=${pidfile:-"/run/${RC_SVCNAME}.pid"}
+user=${user:-${RC_SVCNAME}}
+group=${group:-${RC_SVCNAME}}
+
+command="/usr/bin/uwsgi_exporter"
+command_args="${command_args:---web.listen-address=:9117 
--stats.uri=http://localhost:1717};
+command_background="true"
+start_stop_daemon_args="--user ${user} --group ${group} \
+   --stdout /var/log/${RC_SVCNAME}/${RC_SVCNAME}.log \
+   --stderr /var/log/${RC_SVCNAME}/${RC_SVCNAME}.log"
+
+depend() {
+   after net
+}

diff --git 
a/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.logrotated
 
b/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.logrotated
new file mode 100644
index 000..8703cb2be38
--- /dev/null
+++ 
b/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.logrotated
@@ -0,0 +1,7 @@
+/var/log/prometheus-uwsgi_exporter/prometheus-uwsgi_exporter.log {
+   missingok
+   size 5M
+   rotate 3
+   compress
+   copytruncate
+}

diff --git 
a/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.service
 
b/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.service
new file mode 100644
index 000..39824c7efe7
--- /dev/null
+++ 
b/net-analyzer/prometheus-uwsgi_exporter/files/prometheus-uwsgi_exporter.service
@@ -0,0 +1,16 @@
+[Unit]
+Description=uWSGI metrics exporter for prometheus.io
+Documentation=https://github.com/timonwong/uwsgi_exporter/
+After=network-online.target
+
+[Service]
+User=prometheus-uwsgi_exporter
+Restart=on-failure
+Environment=UWSGI_EXPORTER_ARGS="--web.listen-address=:9117 
--stats.uri=http://localhost:1717;
+ExecStart=/usr/bin/uwsgi_exporter $UWSGI_EXPORTER_ARGS
+ExecReload=/bin/kill -HUP $MAINPID
+TimeoutStopSec=20s
+SendSIGKILL=no
+
+[Install]

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

2018-03-14 Thread Kent Fredric
commit: 20a3692fe68aaf1750c5064915b395cc91b0426f
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Mar 15 00:02:19 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Mar 15 00:02:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20a3692f

dev-perl/Test-FailWarnings: EAPI6 + tests

- EAPI6ify
- Enable tests
- Add missing CPAN remote-id's

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Test-FailWarnings-0.8.0-r1.ebuild  | 32 ++
 dev-perl/Test-FailWarnings/metadata.xml|  4 +++
 2 files changed, 36 insertions(+)

diff --git a/dev-perl/Test-FailWarnings/Test-FailWarnings-0.8.0-r1.ebuild 
b/dev-perl/Test-FailWarnings/Test-FailWarnings-0.8.0-r1.ebuild
new file mode 100644
index 000..b7693d84120
--- /dev/null
+++ b/dev-perl/Test-FailWarnings/Test-FailWarnings-0.8.0-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=DAGOLDEN
+DIST_VERSION=0.008
+inherit perl-module
+
+DESCRIPTION="Add test failures if warnings are caught"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+IUSE="test"
+LICENSE="Apache-2.0"
+
+RDEPEND="
+   virtual/perl-Carp
+   virtual/perl-File-Spec
+   >=virtual/perl-Test-Simple-0.860.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=dev-perl/Capture-Tiny-0.120.0
+   virtual/perl-File-Spec
+   virtual/perl-File-Temp
+   virtual/perl-IO
+   virtual/perl-Scalar-List-Utils
+   >=virtual/perl-Test-Simple-0.960.0
+   )
+"

diff --git a/dev-perl/Test-FailWarnings/metadata.xml 
b/dev-perl/Test-FailWarnings/metadata.xml
index 2b9a936fc0a..6336c0ada21 100644
--- a/dev-perl/Test-FailWarnings/metadata.xml
+++ b/dev-perl/Test-FailWarnings/metadata.xml
@@ -5,4 +5,8 @@
 p...@gentoo.org
 Gentoo Perl Project
   
+  
+Test-FailWarnings
+Test::FailWarnings
+  
 



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

2018-03-14 Thread Kent Fredric
commit: b217f1888a440b2744cecbc0c735b18520d31a0c
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Mar 15 00:04:10 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Mar 15 00:04:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b217f188

dev-perl/Test-Files: Add missing CPAN remote-id's

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Test-Files/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-perl/Test-Files/metadata.xml b/dev-perl/Test-Files/metadata.xml
index 2b9a936fc0a..8de4cac0a52 100644
--- a/dev-perl/Test-Files/metadata.xml
+++ b/dev-perl/Test-Files/metadata.xml
@@ -5,4 +5,8 @@
 p...@gentoo.org
 Gentoo Perl Project
   
+  
+Test-Files
+Test::Files
+  
 



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

2018-03-14 Thread Kent Fredric
commit: 70b6568e12ce4de82d871b3cfd476d8d9a16a215
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Mar 15 00:23:07 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Mar 15 00:23:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70b6568e

dev-perl/Test-UseAllModules: EAPI6 + tests

- EAPI6ify
- Fix DESCRIPTION
- Enable tests
- Purge POD tests

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Test-UseAllModules-0.170.0-r1.ebuild   | 23 ++
 1 file changed, 23 insertions(+)

diff --git a/dev-perl/Test-UseAllModules/Test-UseAllModules-0.170.0-r1.ebuild 
b/dev-perl/Test-UseAllModules/Test-UseAllModules-0.170.0-r1.ebuild
new file mode 100644
index 000..d4a84bef4d6
--- /dev/null
+++ b/dev-perl/Test-UseAllModules/Test-UseAllModules-0.170.0-r1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+DIST_AUTHOR=ISHIGAKI
+DIST_VERSION=0.17
+inherit perl-module
+
+DESCRIPTION="do use_ok() for all the MANIFESTed modules"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   virtual/perl-Exporter
+   virtual/perl-ExtUtils-Manifest
+   >=virtual/perl-Test-Simple-0.600.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+"
+PERL_RM_FILES=( "t/99_podcoverage.t" "t/99_pod.t" )



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

2018-03-14 Thread Kent Fredric
commit: 90647978a2ff965a3966973620c1ad3e90ac6d92
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Mar 15 00:06:08 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Mar 15 00:06:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90647978

dev-perl/Test-RequiresInternet: Add missing CPAN remote-id's

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Test-RequiresInternet/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-perl/Test-RequiresInternet/metadata.xml 
b/dev-perl/Test-RequiresInternet/metadata.xml
index 2b9a936fc0a..fab50ea3dfd 100644
--- a/dev-perl/Test-RequiresInternet/metadata.xml
+++ b/dev-perl/Test-RequiresInternet/metadata.xml
@@ -5,4 +5,8 @@
 p...@gentoo.org
 Gentoo Perl Project
   
+  
+Test-RequiresInternet
+Test::RequiresInternet
+  
 



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

2018-03-14 Thread Kent Fredric
commit: 37520e9418b63418e656df447c624ac6e261709f
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Mar 14 23:51:19 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Mar 14 23:54:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37520e94

dev-perl/Term-ReadPassword: EAPI6 + tests

- EAPI6ify
- Restore tests by disabling interactive tests
- Fix DESCRIPTION

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../Term-ReadPassword/Term-ReadPassword-0.110.0-r2.ebuild | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/dev-perl/Term-ReadPassword/Term-ReadPassword-0.110.0-r2.ebuild 
b/dev-perl/Term-ReadPassword/Term-ReadPassword-0.110.0-r2.ebuild
new file mode 100644
index 000..f9a405bd69c
--- /dev/null
+++ b/dev-perl/Term-ReadPassword/Term-ReadPassword-0.110.0-r2.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=PHOENIX
+DIST_VERSION=0.11
+inherit perl-module
+
+DESCRIPTION="Asking the user for a password"
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE=""
+PERL_RM_FILES=( "t/2_interactive.t" )



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

2018-03-14 Thread Sergei Trofimovich
commit: 68824d14ab27998f7cd752cbb19be6cdff15ba49
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 23:26:33 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 23:26:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68824d14

sys-apps/cciss_vol_status: stable 1.12 for ia64, bug #647412

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

 sys-apps/cciss_vol_status/cciss_vol_status-1.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/cciss_vol_status/cciss_vol_status-1.12.ebuild 
b/sys-apps/cciss_vol_status/cciss_vol_status-1.12.ebuild
index b70b2f6a0b9..ecf7efc2f4b 100644
--- a/sys-apps/cciss_vol_status/cciss_vol_status-1.12.ebuild
+++ b/sys-apps/cciss_vol_status/cciss_vol_status-1.12.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
@@ -8,7 +8,7 @@ DESCRIPTION="Shows status of logical drives attached to HP 
SmartArray controller
 HOMEPAGE="http://cciss.sourceforge.net/#cciss_utils;
 LICENSE="GPL-2"
 SRC_URI="mirror://sourceforge/cciss/${P}.tar.gz"
-KEYWORDS="~amd64 ~ia64 ~x86"
+KEYWORDS="~amd64 ia64 ~x86"
 SLOT="0"
 RDEPEND=""
 DEPEND=""



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

2018-03-14 Thread Sergei Trofimovich
commit: dcebc34a6f32cc0200df1eb64563b1dabeb38203
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 23:13:42 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 23:13:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcebc34a

net-misc/ntp: stable 4.2.8_p11 for ia64, bug #649612

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

 net-misc/ntp/ntp-4.2.8_p11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/ntp/ntp-4.2.8_p11.ebuild 
b/net-misc/ntp/ntp-4.2.8_p11.ebuild
index ddb9e17c839..4364041d141 100644
--- a/net-misc/ntp/ntp-4.2.8_p11.ebuild
+++ b/net-misc/ntp/ntp-4.2.8_p11.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-${PV:0:3}/${MY_P}.tar
 
 LICENSE="HPND BSD ISC"
 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 ~m68k-mint"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~m68k-mint"
 IUSE="caps debug ipv6 libressl openntpd parse-clocks readline samba selinux 
snmp ssl +threads vim-syntax zeroconf"
 
 CDEPEND="readline? ( >=sys-libs/readline-4.1:0= )



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

2018-03-14 Thread Lars Wendler
commit: 3b00281c39622552e14cd761adf2dcdbce9cf0f2
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Mar 14 22:57:35 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Mar 14 22:58:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b00281c

base/package.use.mask: Masked dmapi USE flag for net-fs/samba

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

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index f17935ae57b..384f18b714c 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -7,6 +7,11 @@
 # This file is only for generic masks. For arch-specific masks (i.e.
 # mask everywhere, unmask on arch/*) use arch/base.
 
+# Lars Wendler  (14 Mar 2018)
+# Broken on all 32bit arches. Globally masked because of sys-apps/dmapi having
+# no active upstream anymore.
+net-fs/samba dmapi
+
 # Jan Ziak <0xe2.0x9a.0...@gmail.com> (14 Mar 2018)
 # Mask local USE flag to satisfy repoman
 app-emulation/fuse backend-svga



[gentoo-commits] repo/gentoo:master commit in: www-misc/zoneminder/

2018-03-14 Thread Kent Fredric
commit: e0878ef31bfa691c5d0bb46331b7ac477ce9ec56
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Mar 14 05:24:55 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Mar 14 22:47:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0878ef3

www-misc/zoneminder: Fix build failure w/ TZ=factory bug #630470

Acked-By: dilfridge
Closes: https://bugs.gentoo.org/630470
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-misc/zoneminder/zoneminder-1.30.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-misc/zoneminder/zoneminder-1.30.4.ebuild 
b/www-misc/zoneminder/zoneminder-1.30.4.ebuild
index 12ed2a18ac9..1d8a7f29939 100644
--- a/www-misc/zoneminder/zoneminder-1.30.4.ebuild
+++ b/www-misc/zoneminder/zoneminder-1.30.4.ebuild
@@ -100,7 +100,7 @@ src_prepare() {
 src_configure() {
append-cxxflags -D__STDC_CONSTANT_MACROS
perl_set_version
-
+   export TZ=UTC # bug 630470
mycmakeargs=(
-DZM_PERL_SUBPREFIX=${VENDOR_LIB#/usr}
-DZM_TMPDIR=/var/tmp/zm



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

2018-03-14 Thread Patrice Clement
commit: 1ed2a12d336ac185e3fcf6b12704dfbafc66d2f1
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Mar 14 22:07:47 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Mar 14 22:07:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ed2a12d

dev-python/brython: version bump.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-python/brython/Manifest b/dev-python/brython/Manifest
index 345283e89fe..599ef0fcb21 100644
--- a/dev-python/brython/Manifest
+++ b/dev-python/brython/Manifest
@@ -1,3 +1,4 @@
 DIST brython-3.3.3.zip 10040987 BLAKE2B 
a6a238ac6189e9170653c1987db46f2e0735f25deccaf0318ebc669b48dce1330acf333ef27300f1061e7e18044cfa24fadc02265d0fe3a83d0aa8b97f4de684
 SHA512 
e182a6c859cd18b90b205f751260b0b5c8d250746e48844c59cd61608dfdaf0fd6f0f25b8061de9505b7c5d094ac68fe57536c52cb31adb48f04c2cc5624e249
 DIST brython-3.3.4.zip 10047374 BLAKE2B 
ba4719476206fd71f412d646deb6a7eea3a0aef930814d7fa3589a3e736818f2bc7edf7f642998ae1471da87e3ad05ce89fd9dd32d569267ba45174543e4e520
 SHA512 
818181e040eefaeffd1e8866af471626ff5874fd99c3ee9fcc09c46a4b4b836619045a2712a8e16121a1132c86407b0676a8125e707eff4c7e867851cf20cecd
 DIST brython-3.3.5.tar.gz 9215864 BLAKE2B 
985671d9d60396101b01813b151798d57ca8b7e6450c9a0eae2f14e65cf06cd12e416715219128ac17ff8fa66f1aa3e736dcbfb17537140b7373598d4c873eb1
 SHA512 
5226d01e4d0f824885329403e2d9b80dd0bec3ed456102f54fcb3900ff08508e3268111b51b892687db21f2936d4feb4bfd328775812206790bcccb4d9e366a8
+DIST brython-3.4.0.tar.gz 9303732 BLAKE2B 
18ef80ce4390f052b6743a545236f57339378ebb3df5e51cf56385fc6c25e43a8e40fe4887d86d8390475c3e02e148188c9be1622fbda4938031559a3fb72bf1
 SHA512 
4533dd07293efd96b8e6d8f690decb65bbe6c511654f2872b4751e549e4fae0bd48ac80f80983d1b5c7ec029b8df455dec83ba544286dd84c64124d55fdd68e1

diff --git a/dev-python/brython/brython-3.4.0.ebuild 
b/dev-python/brython/brython-3.4.0.ebuild
new file mode 100644
index 000..50f67db8982
--- /dev/null
+++ b/dev-python/brython/brython-3.4.0.ebuild
@@ -0,0 +1,36 @@
+# 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 webapp python-single-r1
+
+DESCRIPTION="A Python 3 implementation for client-side web programming"
+HOMEPAGE="http://www.brython.info;
+SRC_URI="https://github.com/${PN}-dev/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+need_httpd_cgi
+
+pkg_setup() {
+   webapp_pkg_setup
+   python-single-r1_pkg_setup
+}
+
+src_install() {
+   dodoc LICENCE.txt README.md
+   rm -v LICENCE.txt README.md bower.json .{git*,tra*} server.py || die
+
+   webapp_src_preinst
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+
+   webapp_src_install
+}



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

2018-03-14 Thread Sergei Trofimovich
commit: 0c68181dff5aa4396e4d3c007d94b275e2740740
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 14 17:39:52 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:45:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c68181d

dev-python/pyopenssl: keyworded 17.5.0 for sparc, bug #626836

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

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



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

2018-03-14 Thread Sergei Trofimovich
commit: 58d22a2f73f4d36c3d4882edcbf2cb006e09ed13
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 14 17:36:46 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:45:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58d22a2f

dev-python/asn1crypto: keyworded 0.24.0 for sparc, bug #626836

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

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



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

2018-03-14 Thread Sergei Trofimovich
commit: 678b0b2821c90defe2796a02b8206ad386311e88
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 14 18:34:55 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:45:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=678b0b28

net-fs/samba: stable 4.5.16 for sparc, bug #650382

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 net-fs/samba/samba-4.5.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-fs/samba/samba-4.5.16.ebuild b/net-fs/samba/samba-4.5.16.ebuild
index 05538c6aadf..b74545cc6d5 100644
--- a/net-fs/samba/samba-4.5.16.ebuild
+++ b/net-fs/samba/samba-4.5.16.ebuild
@@ -16,7 +16,7 @@ SRC_PATH="stable"
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz

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



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

2018-03-14 Thread Sergei Trofimovich
commit: 9bedc9517f32b4b9ac2a3adc1d9c1d50ef4cab6a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Mar 14 17:38:32 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:45:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bedc951

dev-python/cryptography: keyworded 2.1.4 for sparc, bug #626836

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-python/cryptography/cryptography-2.1.4.ebuild 
b/dev-python/cryptography/cryptography-2.1.4.ebuild
index be060682982..ca6ef79819a 100644
--- a/dev-python/cryptography/cryptography-2.1.4.ebuild
+++ b/dev-python/cryptography/cryptography-2.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=6
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd 
~x64-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x64-solaris"
 IUSE="libressl test"
 
 RDEPEND="



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

2018-03-14 Thread Sergei Trofimovich
commit: f74365d9ad4a66ae5e0a889b68657f2ec927e2c1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:34:52 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f74365d9

dev-lang/vala: stable 0.36.7 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 dev-lang/vala/vala-0.36.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/vala/vala-0.36.7.ebuild b/dev-lang/vala/vala-0.36.7.ebuild
index 5f30428f041..ff5ba10c583 100644
--- a/dev-lang/vala/vala-0.36.7.ebuild
+++ b/dev-lang/vala/vala-0.36.7.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 LICENSE="LGPL-2.1"
 SLOT="0.36"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2018-03-14 Thread Sergei Trofimovich
commit: daa2fe859020013560a9bb88f20608fe594ae642
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:34:01 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daa2fe85

x11-libs/pango: stable 1.40.14 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 x11-libs/pango/pango-1.40.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/pango/pango-1.40.14.ebuild 
b/x11-libs/pango/pango-1.40.14.ebuild
index 6b7cd561888..6030ed55d42 100644
--- a/x11-libs/pango/pango-1.40.14.ebuild
+++ b/x11-libs/pango/pango-1.40.14.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://www.pango.org/;
 
 LICENSE="LGPL-2+ FTL"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 
 IUSE="X +introspection test"
 



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

2018-03-14 Thread Sergei Trofimovich
commit: 9168cba97e5327c3b6b2874694252efc668f2b80
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:35:00 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9168cba9

dev-libs/glib: stable 2.52.3 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-libs/glib/glib-2.52.3.ebuild b/dev-libs/glib/glib-2.52.3.ebuild
index c593914e226..70b6b763713 100644
--- a/dev-libs/glib/glib-2.52.3.ebuild
+++ b/dev-libs/glib/glib-2.52.3.ebuild
@@ -27,7 +27,7 @@ REQUIRED_USE="
test? ( ${PYTHON_REQUIRED_USE} )
 "
 
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 
 # Added util-linux multilib dependency to have libmount support (which
 # is always turned on on linux systems, unless explicitly disabled, but



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

2018-03-14 Thread Sergei Trofimovich
commit: 487ec01eab3ddbbadf1264f28aba3387b90cfe94
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:39:37 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=487ec01e

gnome-base/gvfs: stable 1.32.1-r1 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 gnome-base/gvfs/gvfs-1.32.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/gvfs/gvfs-1.32.1-r1.ebuild 
b/gnome-base/gvfs/gvfs-1.32.1-r1.ebuild
index 57c42a13cc8..a4dbfa65679 100644
--- a/gnome-base/gvfs/gvfs-1.32.1-r1.ebuild
+++ b/gnome-base/gvfs/gvfs-1.32.1-r1.ebuild
@@ -23,7 +23,7 @@ REQUIRED_USE="
udisks? ( udev )
systemd? ( !elogind udisks )
 "
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris 
~x86-solaris"
 
 RDEPEND="
app-crypt/gcr:=



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

2018-03-14 Thread Sergei Trofimovich
commit: e450f8b1b1408b74a0f2af7d43d2928a04127cdd
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:31 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e450f8b1

gnome-base/libgtop: stable 2.36.0 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 gnome-base/libgtop/libgtop-2.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/libgtop/libgtop-2.36.0.ebuild 
b/gnome-base/libgtop/libgtop-2.36.0.ebuild
index 1ad7f8198af..dd04cae7630 100644
--- a/gnome-base/libgtop/libgtop-2.36.0.ebuild
+++ b/gnome-base/libgtop/libgtop-2.36.0.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://git.gnome.org/browse/libgtop;
 
 LICENSE="GPL-2"
 SLOT="2/10" # libgtop soname version
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ~ppc64 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="+introspection"
 
 RDEPEND="



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

2018-03-14 Thread Sergei Trofimovich
commit: 532919a400f4b13b4af393ee936acf2a6f4d4938
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:50 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=532919a4

x11-libs/gtksourceview: stable 3.24.6 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 x11-libs/gtksourceview/gtksourceview-3.24.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/gtksourceview/gtksourceview-3.24.6.ebuild 
b/x11-libs/gtksourceview/gtksourceview-3.24.6.ebuild
index d64aad47989..51f9cbe9b68 100644
--- a/x11-libs/gtksourceview/gtksourceview-3.24.6.ebuild
+++ b/x11-libs/gtksourceview/gtksourceview-3.24.6.ebuild
@@ -16,7 +16,7 @@ SLOT="3.0/3"
 IUSE="glade +introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.48:2



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

2018-03-14 Thread Sergei Trofimovich
commit: f46d03d78da100a46c60a2379da7179247d202f7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:34:07 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f46d03d7

x11-libs/vte: stable 0.48.4 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 x11-libs/vte/vte-0.48.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/vte/vte-0.48.4.ebuild b/x11-libs/vte/vte-0.48.4.ebuild
index 5b9f4f89570..88361a8c8e8 100644
--- a/x11-libs/vte/vte-0.48.4.ebuild
+++ b/x11-libs/vte/vte-0.48.4.ebuild
@@ -13,7 +13,7 @@ 
HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Terminal/VTE;
 LICENSE="LGPL-2+"
 SLOT="2.91"
 IUSE="+crypt debug glade +introspection vala vanilla"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris"
 REQUIRED_USE="vala? ( introspection )"
 
 SRC_URI="${SRC_URI} !vanilla? ( 
https://dev.gentoo.org/~eva/distfiles/${PN}/${P}-command-notify.patch.xz )"



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

2018-03-14 Thread Sergei Trofimovich
commit: ebd8d093d83d88dc26fa6da59fef66f1e0ca1c11
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:56 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebd8d093

x11-libs/libwnck: stable 3.24.1 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 x11-libs/libwnck/libwnck-3.24.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libwnck/libwnck-3.24.1.ebuild 
b/x11-libs/libwnck/libwnck-3.24.1.ebuild
index 09324dcb482..eb8b6e20f37 100644
--- a/x11-libs/libwnck/libwnck-3.24.1.ebuild
+++ b/x11-libs/libwnck/libwnck-3.24.1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://developer.gnome.org/libwnck/stable/;
 
 LICENSE="LGPL-2+"
 SLOT="3"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-solaris ~x86-solaris"
 
 IUSE="+introspection startup-notification tools"
 



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

2018-03-14 Thread Sergei Trofimovich
commit: 89eeb015801d374b71bbacbec26b2e99979f1093
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:18 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89eeb015

dev-util/glade: stable 3.20.2 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 dev-util/glade/glade-3.20.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/glade/glade-3.20.2.ebuild 
b/dev-util/glade/glade-3.20.2.ebuild
index 8d5c4fa322b..fcb9aec14d7 100644
--- a/dev-util/glade/glade-3.20.2.ebuild
+++ b/dev-util/glade/glade-3.20.2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://glade.gnome.org/;
 
 LICENSE="GPL-2+ FDL-1.1+"
 SLOT="3.10/6" # subslot = suffix of libgladeui-2.so
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 
 IUSE="debug +introspection python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



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

2018-03-14 Thread Sergei Trofimovich
commit: 29f842fdb3642d3be5b8217fb23f74a6af139e20
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:32:58 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29f842fd

dev-libs/libxml2: stable 2.9.7 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-libs/libxml2/libxml2-2.9.7.ebuild 
b/dev-libs/libxml2/libxml2-2.9.7.ebuild
index ab0fa96f306..0660af14c41 100644
--- a/dev-libs/libxml2/libxml2-2.9.7.ebuild
+++ b/dev-libs/libxml2/libxml2-2.9.7.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.xmlsoft.org/;
 
 LICENSE="MIT"
 SLOT="2"
-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"
+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"
 IUSE="debug examples icu ipv6 lzma python readline static-libs test"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2018-03-14 Thread Sergei Trofimovich
commit: 9b2a0f45a732ef84ff6cde6441391c9ca4e3003e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:02 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b2a0f45

dev-libs/vala-common: stable 0.36.7 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 dev-libs/vala-common/vala-common-0.36.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/vala-common/vala-common-0.36.7.ebuild 
b/dev-libs/vala-common/vala-common-0.36.7.ebuild
index 94dc77be9d4..706dbbf907f 100644
--- a/dev-libs/vala-common/vala-common-0.36.7.ebuild
+++ b/dev-libs/vala-common/vala-common-0.36.7.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 LICENSE="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 ~arm-linux ~x86-linux ~x64-macos 
~x64-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~x64-solaris"
 IUSE=""
 
 # Previously ${PN} was part of dev-lang/vala



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

2018-03-14 Thread Sergei Trofimovich
commit: 6def9024db7e108707128ba84691696ba353f256
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:36 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6def9024

net-libs/libsoup: stable 2.58.2 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/net-libs/libsoup/libsoup-2.58.2.ebuild 
b/net-libs/libsoup/libsoup-2.58.2.ebuild
index 4bdb947cb34..194a65bc08c 100644
--- a/net-libs/libsoup/libsoup-2.58.2.ebuild
+++ b/net-libs/libsoup/libsoup-2.58.2.ebuild
@@ -17,7 +17,7 @@ SLOT="2.4"
 IUSE="debug gssapi +introspection samba ssl test vala"
 REQUIRED_USE="vala? ( introspection )"
 
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]



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

2018-03-14 Thread Sergei Trofimovich
commit: f78070be53ebfca76d6ce7b65a4f69e7e828e5a2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:08 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f78070be

dev-python/pygobject: stable 3.24.1 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-python/pygobject/pygobject-3.24.1.ebuild 
b/dev-python/pygobject/pygobject-3.24.1.ebuild
index 748c4ceee17..0eae8c8d750 100644
--- a/dev-python/pygobject/pygobject-3.24.1.ebuild
+++ b/dev-python/pygobject/pygobject-3.24.1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/PyGObject;
 
 LICENSE="LGPL-2.1+"
 SLOT="3"
-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 ~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 ~x64-solaris ~x86-solaris"
 IUSE="+cairo examples test +threads"
 
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gsettings-desktop-schemas/

2018-03-14 Thread Sergei Trofimovich
commit: 0d25b13c050ffc90e736c3925439ace7d5f2f53f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:22 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d25b13c

gnome-base/gsettings-desktop-schemas: stable 3.24.1 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 .../gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild 
b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild
index c076beb388f..8285b4be973 100644
--- 
a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild
+++ 
b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild
@@ -10,7 +10,7 @@ 
HOMEPAGE="https://git.gnome.org/browse/gsettings-desktop-schemas;
 LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="+introspection"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~sparc-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.31:2



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

2018-03-14 Thread Sergei Trofimovich
commit: 150b7b1d7c4813ba6a60c0ff08d808d1fb4ca4aa
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:32:25 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=150b7b1d

app-text/iso-codes: stable 3.76 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 app-text/iso-codes/iso-codes-3.76.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/iso-codes/iso-codes-3.76.ebuild 
b/app-text/iso-codes/iso-codes-3.76.ebuild
index ae8e00e4fec..e445ec26b7f 100644
--- a/app-text/iso-codes/iso-codes-3.76.ebuild
+++ b/app-text/iso-codes/iso-codes-3.76.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://pkg-isocodes.alioth.debian.org/downloads/${P}.tar.xz;
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x86-solaris"
 IUSE=""
 
 RDEPEND=""



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

2018-03-14 Thread Sergei Trofimovich
commit: 9dbbe3e94febc7146341067f810d6b08c96aea5f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:38:32 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dbbe3e9

dev-libs/libusb: stable 1.0.21 for ppc64, bug #630342

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-libs/libusb/libusb-1.0.21.ebuild 
b/dev-libs/libusb/libusb-1.0.21.ebuild
index 18292129857..18cbced9c97 100644
--- a/dev-libs/libusb/libusb-1.0.21.ebuild
+++ b/dev-libs/libusb/libusb-1.0.21.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.bz2;
 
 LICENSE="LGPL-2.1"
 SLOT="1"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86 -x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 -x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 IUSE="debug doc examples static-libs test udev"
 
 RDEPEND="udev? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP},static-libs?] )"



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

2018-03-14 Thread Sergei Trofimovich
commit: 23ae6f6206edc49cb9d547dfcf4b9346d4287694
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:32:53 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23ae6f62

dev-libs/libinput: stable 1.9.4 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-libs/libinput/libinput-1.9.4.ebuild 
b/dev-libs/libinput/libinput-1.9.4.ebuild
index b3e44c5d7f6..3503d7f08cd 100644
--- a/dev-libs/libinput/libinput-1.9.4.ebuild
+++ b/dev-libs/libinput/libinput-1.9.4.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz;
 
 LICENSE="MIT"
 SLOT="0/10"
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc 
x86"
 IUSE="doc input_devices_wacom test"
 # Tests require write access to udev rules directory which is a no-no for live 
system.
 # Other tests are just about logs, exported symbols and autotest of the test 
library.



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

2018-03-14 Thread Sergei Trofimovich
commit: 913de61f2a8f88da9e567dd5c55a380809e5ddee
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:34:11 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=913de61f

x11-themes/adwaita-icon-theme: stable 3.24.0 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.24.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.24.0.ebuild 
b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.24.0.ebuild
index 10774fa65dd..4eae362cdd3 100644
--- a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.24.0.ebuild
+++ b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-3.24.0.ebuild
@@ -17,7 +17,7 @@ LICENSE="
 "
 SLOT="0"
 IUSE="branding"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris 
~x64-solaris ~x86-solaris"
 
 # gtk+:3 is needed for build for the gtk-encode-symbolic-svg utility
 # librsvg is needed for gtk-encode-symbolic-svg to be able to read the source 
SVG via its pixbuf loader and at runtime for rendering scalable icons shipped 
by the theme



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

2018-03-14 Thread Sergei Trofimovich
commit: 6389b3e0adae1e563079f0e5cd95b9a5264e8cd4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:41 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6389b3e0

net-libs/phodav: stable 2.2 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/net-libs/phodav/phodav-2.2.ebuild 
b/net-libs/phodav/phodav-2.2.ebuild
index d6f4f3b32ce..05ff09d38b5 100644
--- a/net-libs/phodav/phodav-2.2.ebuild
+++ b/net-libs/phodav/phodav-2.2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/phodav;
 
 LICENSE="LGPL-2.1+"
 SLOT="2.0"
-KEYWORDS="alpha amd64 arm ppc ~ppc64 x86"
+KEYWORDS="alpha amd64 arm ppc ppc64 x86"
 IUSE="spice systemd zeroconf"
 
 # It included g_uuid_* symbols of its own from an unapplied patch to glib; now 
that they



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

2018-03-14 Thread Sergei Trofimovich
commit: f093ca6b5652ed84a93539ca3db2e3108e072b9b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:35:05 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f093ca6b

dev-libs/gobject-introspection: stable 1.52.1 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 dev-libs/gobject-introspection/gobject-introspection-1.52.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/gobject-introspection/gobject-introspection-1.52.1.ebuild 
b/dev-libs/gobject-introspection/gobject-introspection-1.52.1.ebuild
index 80e6d06a770..d66d9a3032d 100644
--- a/dev-libs/gobject-introspection/gobject-introspection-1.52.1.ebuild
+++ b/dev-libs/gobject-introspection/gobject-introspection-1.52.1.ebuild
@@ -17,7 +17,7 @@ REQUIRED_USE="
${PYTHON_REQUIRED_USE}
test? ( cairo )
 "
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~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 ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # virtual/pkgconfig needed at runtime, bug #505408
 # We force glib and g-i to be in sync by this way as explained in bug #518424



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

2018-03-14 Thread Sergei Trofimovich
commit: 85f880ee12709a7169dca9b9a6f8414397767231
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:46 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:41:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85f880ee

virtual/libgudev: stable 232 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 virtual/libgudev/libgudev-232.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/libgudev/libgudev-232.ebuild 
b/virtual/libgudev/libgudev-232.ebuild
index 532dfa55ced..ee0261c8e7e 100644
--- a/virtual/libgudev/libgudev-232.ebuild
+++ b/virtual/libgudev/libgudev-232.ebuild
@@ -6,7 +6,7 @@ inherit multilib-build
 
 DESCRIPTION="Virtual for libgudev providers"
 SLOT="0/0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
 IUSE="introspection static-libs"
 
 
RDEPEND=">=dev-libs/libgudev-232:0/0[${MULTILIB_USEDEP},introspection?,static-libs?]"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/gobject-introspection-common/

2018-03-14 Thread Sergei Trofimovich
commit: 4fbf82cf6262eee4f74669b9858e36f27bbd3e31
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:32:48 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fbf82cf

dev-libs/gobject-introspection-common: stable 1.52.1 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 .../gobject-introspection-common-1.52.1.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-libs/gobject-introspection-common/gobject-introspection-common-1.52.1.ebuild
 
b/dev-libs/gobject-introspection-common/gobject-introspection-common-1.52.1.ebuild
index 952b9dab053..06ad2d2e99e 100644
--- 
a/dev-libs/gobject-introspection-common/gobject-introspection-common-1.52.1.ebuild
+++ 
b/dev-libs/gobject-introspection-common/gobject-introspection-common-1.52.1.ebuild
@@ -11,7 +11,7 @@ 
HOMEPAGE="https://wiki.gnome.org/Projects/GObjectIntrospection;
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~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 ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="!<${CATEGORY}/${PN/-common}-${PV}"



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/glibmm/

2018-03-14 Thread Sergei Trofimovich
commit: 6b5ab4b4b3f748baa06f675722beb27c0ce6309d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:32:29 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b5ab4b4

dev-cpp/glibmm: stable 2.52.1 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 dev-cpp/glibmm/glibmm-2.52.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/glibmm/glibmm-2.52.1.ebuild 
b/dev-cpp/glibmm/glibmm-2.52.1.ebuild
index 0a82dc7a4e9..925442a83ae 100644
--- a/dev-cpp/glibmm/glibmm-2.52.1.ebuild
+++ b/dev-cpp/glibmm/glibmm-2.52.1.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://www.gtkmm.org;
 
 LICENSE="LGPL-2.1+ GPL-2+" # GPL-2+ applies only to the build system
 SLOT="2"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 IUSE="doc debug test"
 
 RDEPEND="



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

2018-03-14 Thread Sergei Trofimovich
commit: e9585364b3f81fcdd2807b62f75ff29cb4863e75
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:33:12 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9585364

dev-util/gdbus-codegen: stable 2.52.3 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 dev-util/gdbus-codegen/gdbus-codegen-2.52.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.52.3.ebuild 
b/dev-util/gdbus-codegen/gdbus-codegen-2.52.3.ebuild
index f15827b2a57..11a5b9640c4 100644
--- a/dev-util/gdbus-codegen/gdbus-codegen-2.52.3.ebuild
+++ b/dev-util/gdbus-codegen/gdbus-codegen-2.52.3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://www.gtk.org/;
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~x86-macos"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}"



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

2018-03-14 Thread Sergei Trofimovich
commit: 442f940306b09879845bbfa2e1bf60228624abab
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:32:37 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:40:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=442f9403

dev-libs/atk: stable 2.24.0 for ppc64, bug #631656

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-libs/atk/atk-2.24.0.ebuild b/dev-libs/atk/atk-2.24.0.ebuild
index 22c52cdc2e5..3d011579c0c 100644
--- a/dev-libs/atk/atk-2.24.0.ebuild
+++ b/dev-libs/atk/atk-2.24.0.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Accessibility;
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
 IUSE="+introspection nls test"
 
 RDEPEND="



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

2018-03-14 Thread Maxim Koltsov
commit: 68aefb9ca8c13eed00b671f88ee18d9b83bdf519
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Mar 14 21:16:22 2018 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Wed Mar 14 21:32:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68aefb9c

x11-wm/awesome: add warning message for upgrade from awesome-3.5

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-wm/awesome/awesome-4.2-r1.ebuild | 120 +++
 1 file changed, 120 insertions(+)

diff --git a/x11-wm/awesome/awesome-4.2-r1.ebuild 
b/x11-wm/awesome/awesome-4.2-r1.ebuild
new file mode 100644
index 000..9e84ef199bf
--- /dev/null
+++ b/x11-wm/awesome/awesome-4.2-r1.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils eutils pax-utils versionator
+
+DESCRIPTION="A dynamic floating and tiling window manager"
+HOMEPAGE="https://awesomewm.org/;
+SRC_URI="https://github.com/awesomeWM/awesome-releases/raw/master/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="dbus doc elibc_FreeBSD gnome luajit"
+
+RDEPEND="
+   >=dev-lang/lua-5.1:0
+   dev-libs/glib:2
+   >=dev-libs/libxdg-basedir-1
+   >=dev-lua/lgi-0.8
+   x11-libs/cairo[xcb]
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/libxcb-1.6
+   >=x11-libs/pango-1.19.3[introspection]
+   >=x11-libs/startup-notification-0.10_p20110426
+   >=x11-libs/xcb-util-0.3.8
+   x11-libs/xcb-util-cursor
+   >=x11-libs/xcb-util-keysyms-0.3.4
+   >=x11-libs/xcb-util-wm-0.3.8
+   >=x11-libs/xcb-util-xrm-1.0
+   x11-libs/libXcursor
+   x11-libs/libxkbcommon[X]
+   >=x11-libs/libX11-1.3.99.901
+   dbus? ( >=sys-apps/dbus-1 )
+   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )"
+
+# graphicsmagick's 'convert -channel' has no Alpha support, bug #352282
+DEPEND="${RDEPEND}
+   >=app-text/asciidoc-8.4.5
+   app-text/xmlto
+   dev-util/gperf
+   virtual/pkgconfig
+   media-gfx/imagemagick[png]
+   >=x11-proto/xcb-proto-1.5
+   >=x11-proto/xproto-7.0.15
+   doc? ( dev-lua/ldoc )
+   luajit? ( dev-lang/luajit:2 )"
+
+DOCS=( docs/{00-authors,01-readme,02-contributing}.md )
+PATCHES=(
+   "${FILESDIR}/${PN}-4.0-convert-path.patch"  # bug #408025
+   "${FILESDIR}/${PN}-xsession.patch"  # bug #408025
+   "${FILESDIR}/${PN}-4.0-cflag-cleanup.patch" # bug #509658
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DSYSCONFDIR="${EPREFIX}"/etc
+   -DWITH_DBUS=$(usex dbus)
+   -DWITH_GENERATE_DOC=$(usex doc $(usex doc) n)
+   )
+   if use luajit; then
+   
mycmakeargs+=("-DLUA_INCLUDE_DIR=${EPREFIX}/usr/include/luajit-2.0")
+   
mycmakeargs+=("-DLUA_LIBRARY=${EPREFIX}/usr/$(get_libdir)/libluajit-5.1.so")
+   fi
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   pax-mark m "${ED%/}"/usr/bin/awesome
+
+   exeinto /etc/X11/Sessions
+   newexe "${FILESDIR}"/${PN}-session ${PN}
+
+   # GNOME-based awesome
+   if use gnome; then
+   # GNOME session
+   insinto /usr/share/gnome-session/sessions
+   newins "${FILESDIR}"/${PN}-gnome-3.session ${PN}-gnome.session
+
+   # Application launcher
+   domenu "${FILESDIR}"/${PN}-gnome.desktop
+
+   # X Session
+   insinto /usr/share/xsessions
+   doins "${FILESDIR}"/${PN}-gnome-xsession.desktop
+   fi
+}
+
+pkg_postinst() {
+   # bug #447308
+   if use gnome; then
+   elog "You have enabled the gnome USE flag."
+   elog "Please note that quitting awesome won't kill your gnome 
session."
+   elog "To really quit the session, you should bind your quit key"
+   elog "to the following command:"
+   elog "  gnome-session-quit --logout"
+   elog "For more info visit"
+   elog "  https://bugs.gentoo.org/show_bug.cgi?id=447308;
+   fi
+
+   # bug #440724
+   elog "If you are having issues with Java application windows being"
+   elog "completely blank, try installing"
+   elog "  x11-misc/wmname"
+   elog "and setting the WM name to LG3D."
+   elog "For more info visit"
+   elog "  https://bugs.gentoo.org/show_bug.cgi?id=440724;
+
+   for v in ${REPLACING_VERSIONS}; do
+   if [ "$(get_major_version ${v})" = "3" ]; then
+   elog "Awesome-4 introduced breaking changes. For 
release notes and porting guide see"
+   elog 
"https://awesomewm.org/apidoc/documentation/89-NEWS.md.html#v4 and"
+   elog 
"https://awesomewm.org/apidoc/documentation/17-porting-tips.md.html#v4;
+   fi
+   done
+}



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

2018-03-14 Thread Maxim Koltsov
commit: 6e9ff1b67f0507de9e484c11d750aa828c7e8a59
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Mar 14 21:19:00 2018 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Wed Mar 14 21:32:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e9ff1b6

x11-wm/awesome: drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-wm/awesome/Manifest|   4 -
 x11-wm/awesome/awesome-3.5.7.ebuild| 137 -
 x11-wm/awesome/awesome-3.5.8.ebuild| 137 -
 x11-wm/awesome/awesome-3.5.9-r1.ebuild | 137 -
 x11-wm/awesome/awesome-4.0-r1.ebuild   | 112 ---
 x11-wm/awesome/awesome-4.0.ebuild  | 107 -
 x11-wm/awesome/awesome-4.1.ebuild  | 112 ---
 7 files changed, 746 deletions(-)

diff --git a/x11-wm/awesome/Manifest b/x11-wm/awesome/Manifest
index 34bd0cbc33a..39df01fc758 100644
--- a/x11-wm/awesome/Manifest
+++ b/x11-wm/awesome/Manifest
@@ -1,7 +1,3 @@
 DIST awesome-3.5.6.tar.xz 720112 BLAKE2B 
38836f4a90181335ffa282af57bf738635f3935b81b3bea5ec4e7c4b5142eb5031a642fd6252999557deb73cf7ed6d725d1900c157f894fd40c8b250c5895aaf
 SHA512 
8d89bf46956276a8bcf106bb255c051e8382b08617e17691134a8f3e5db3ec9f7773581c02ce62d23e72499f7b1e60fe4322c211e41219b5bffd1897a96f6cf6
-DIST awesome-3.5.7.tar.xz 722864 BLAKE2B 
f39ba45a9f23a68de770dc0327a5e324ba703cc10cec5bcef39b855bc67e16ffbc0caf9247e97c2b47b375332e570b405c246a7b02ed2938be76bcf07f2342a7
 SHA512 
0b57efa6ba55e28fee56bec96dbf3c47249b2d70b21e1a7760d4367a0ba42d9936c1c6b78afa4aa3050a60cf34189551ea53b208ec8ec9f6563a905463550515
-DIST awesome-3.5.8.tar.xz 723000 BLAKE2B 
76faf07e8084f233654141bbd05c723b67da621e30f3c5e92d846ddd3c0dbbda94923cb672f3b4532b52dde8b24028ce23b194531cf98b78079961eeec8fb730
 SHA512 
be5604821e256e36067750c341ca6f8669e159527b93654c8fc41bcd161da6d87fa0e3c5fccc51821586d163535ac78363d12d99ed81b6fb14e26da59136d5ef
 DIST awesome-3.5.9.tar.xz 723084 BLAKE2B 
96f4c5df98147399f28d1b1455ac53800f969599486c2f79b73ba36cfa237270cd5972d4e10e0a4f774a54dfa92948bba5d2e0438687d36739e12c3f5ecc
 SHA512 
6a4c679b293e8cd85d1f7e13f6dea704cbb267e42b9260496a54b657a66d6148aae51521d802d61baaeb23df0d4a8ad0b28d9dc922ea5da2a347b4251cce5e25
-DIST awesome-4.0.tar.xz 930664 BLAKE2B 
b30f410272b1d1224a1a145523f71ac6779c9592b572f798ff924bc26e62bd55ee5a0d45bc9d0ea8faa8362333b8eea51fccf954a49c71ee3090a4ebbf7e4de7
 SHA512 
80bdfe5f9166f5e9b0266cd630b48607d17605330d0f172666dbfa3f239ef04aeafafebe8949c3bf1c31a7bd372b60252d56c815048a24e015858585c3d0432b
-DIST awesome-4.1.tar.xz 960768 BLAKE2B 
e3d77fdbfca7ddb041069fa6a9bf1406b4bfbe96b09b26b6ecf7a7ea081e4f6d7d7766b2f06a7e3cd4c59bb7e16450bdde5bfb9d9c0b6a3760500b25fe44b733
 SHA512 
e0c1ed5fc8f0455258ec2566e430b24e52b78d1ae54357f5de1bf08f2e44682e9b2c5548905a90cc4526d98d2b6700e087b679abc9e620d3751ea420df9434f6
 DIST awesome-4.2.tar.xz 987024 BLAKE2B 
b2aaa993bafa83121d165d21083dfcac825e373be9547490f8b93b8e8b0f90470395a0238affaf9990f719b8bd2f36a255f6468b6422406787a3c96946c4e831
 SHA512 
134dd3625c86243861b3d0701cc8bfd8c00986d7027f0832016c3f5e59e6b9a1ef2f677bb0d1d66ece63449533e4b13d8d7388e96e6f9014212030a79f163e09

diff --git a/x11-wm/awesome/awesome-3.5.7.ebuild 
b/x11-wm/awesome/awesome-3.5.7.ebuild
deleted file mode 100644
index 839456e65e9..000
--- a/x11-wm/awesome/awesome-3.5.7.ebuild
+++ /dev/null
@@ -1,137 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-inherit cmake-utils eutils
-
-DESCRIPTION="A dynamic floating and tiling window manager"
-HOMEPAGE="http://awesome.naquadah.org/;
-SRC_URI="http://awesome.naquadah.org/download/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
-IUSE="dbus doc elibc_FreeBSD gnome"
-
-COMMON_DEPEND="
-   >=dev-lang/lua-5.1:0
-   dev-libs/glib:2
-   >=dev-libs/libxdg-basedir-1
-   >=dev-lua/lgi-0.7
-   x11-libs/cairo[xcb]
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/libxcb-1.6
-   >=x11-libs/pango-1.19.3[introspection]
-   >=x11-libs/startup-notification-0.10_p20110426
-   >=x11-libs/xcb-util-0.3.8
-   x11-libs/xcb-util-cursor
-   x11-libs/libXcursor
-   >=x11-libs/libX11-1.3.99.901
-   dbus? ( >=sys-apps/dbus-1 )
-   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )"
-
-# graphicsmagick's 'convert -channel' has no Alpha support, bug #352282
-DEPEND="${COMMON_DEPEND}
-   >=app-text/asciidoc-8.4.5
-   app-text/xmlto
-   dev-util/gperf
-   virtual/pkgconfig
-   media-gfx/imagemagick[png]
-   >=x11-proto/xcb-proto-1.5
-   >=x11-proto/xproto-7.0.15
-   doc? (
-   app-doc/doxygen
-   media-gfx/graphviz
-   )"
-
-RDEPEND="${COMMON_DEPEND}"
-
-DOCS="AUTHORS BUGS PATCHES README STYLE"
-
-src_prepare() {
-   # bug #408025

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

2018-03-14 Thread Maxim Koltsov
commit: 4151c03ce462ccc599fcd3e492ea497cb5ec48c5
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Wed Mar 14 21:06:16 2018 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Wed Mar 14 21:32:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4151c03c

x11-wm/awesome: use PATCHES

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

 x11-wm/awesome/awesome-3.5.9-r2.ebuild | 127 +
 1 file changed, 127 insertions(+)

diff --git a/x11-wm/awesome/awesome-3.5.9-r2.ebuild 
b/x11-wm/awesome/awesome-3.5.9-r2.ebuild
new file mode 100644
index 000..4d6a201ca16
--- /dev/null
+++ b/x11-wm/awesome/awesome-3.5.9-r2.ebuild
@@ -0,0 +1,127 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+inherit cmake-utils eutils
+
+DESCRIPTION="A dynamic floating and tiling window manager"
+HOMEPAGE="http://awesome.naquadah.org/;
+SRC_URI="http://awesome.naquadah.org/download/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
+IUSE="dbus doc elibc_FreeBSD gnome"
+
+COMMON_DEPEND="
+   >=dev-lang/lua-5.1:0
+   dev-libs/glib:2
+   >=dev-libs/libxdg-basedir-1
+   >=dev-lua/lgi-0.7
+   x11-libs/cairo[xcb]
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/libxcb-1.6
+   >=x11-libs/pango-1.19.3[introspection]
+   >=x11-libs/startup-notification-0.10_p20110426
+   >=x11-libs/xcb-util-0.3.8
+   x11-libs/xcb-util-cursor
+   x11-libs/libXcursor
+   >=x11-libs/libX11-1.3.99.901
+   dbus? ( >=sys-apps/dbus-1 )
+   elibc_FreeBSD? ( || ( dev-libs/libexecinfo 
>=sys-freebsd/freebsd-lib-10.0 ) )"
+
+# graphicsmagick's 'convert -channel' has no Alpha support, bug #352282
+DEPEND="${COMMON_DEPEND}
+   >=app-text/asciidoc-8.4.5
+   app-text/xmlto
+   dev-util/gperf
+   virtual/pkgconfig
+   media-gfx/imagemagick[png]
+   >=x11-proto/xcb-proto-1.5
+   >=x11-proto/xproto-7.0.15
+   doc? (
+   app-doc/doxygen
+   media-gfx/graphviz
+   )"
+
+RDEPEND="${COMMON_DEPEND}"
+
+DOCS="AUTHORS BUGS PATCHES README STYLE"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-3.5_rc1-convert-path.patch"
+   "${FILESDIR}/${PN}-xsession.patch"
+   "${FILESDIR}/${PN}-3.5.5-util.lua-xdg-icons-fix.patch"
+   "${FILESDIR}/${PN}-3.5.5-cflag-cleanup.patch"
+)
+
+src_configure() {
+   mycmakeargs=(
+   -DSYSCONFDIR="${EPREFIX}"/etc
+   $(cmake-utils_use_with dbus DBUS)
+   $(cmake-utils_use doc GENERATE_DOC)
+   )
+
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   local myargs="all"
+
+   if use doc ; then
+   myargs="${myargs} doc"
+   fi
+   cmake-utils_src_make ${myargs}
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   if use doc ; then
+   (
+   cd "${CMAKE_BUILD_DIR}"/doc
+   mv html doxygen
+   dohtml -r doxygen || die
+   )
+   fi
+   rm -rf "${ED}"/usr/share/doc/${PN} || die "Cleanup of dupe docs failed"
+
+   exeinto /etc/X11/Sessions
+   newexe "${FILESDIR}"/${PN}-session ${PN} || die
+
+   # GNOME-based awesome
+   if use gnome ; then
+   # GNOME session
+   insinto /usr/share/gnome-session/sessions
+   newins "${FILESDIR}/${PN}-gnome-3.session" 
"${PN}-gnome.session" || die
+   # Application launcher
+   domenu "${FILESDIR}/${PN}-gnome.desktop" || die
+   # X Session
+   insinto /usr/share/xsessions/
+   doins "${FILESDIR}/${PN}-gnome-xsession.desktop" || die
+   fi
+}
+
+pkg_postinst() {
+   # bug #447308
+   if use gnome; then
+   elog
+   elog "You have enabled the gnome USE flag."
+   elog "Please note that quitting awesome won't kill your gnome 
session."
+   elog "To really quit the session, you should bind your quit key"
+   elog "to the following command:"
+   elog "  gnome-session-quit --logout"
+   elog "For more info visit"
+   elog "  https://bugs.gentoo.org/show_bug.cgi?id=447308;
+   fi
+
+   # bug #440724
+   elog
+   elog "If you are having issues with Java application windows being"
+   elog "completely blank, try installing"
+   elog "  x11-misc/wmname"
+   elog "and setting the WM name to LG3D."
+   elog "For more info visit"
+   elog "  https://bugs.gentoo.org/show_bug.cgi?id=440724;
+   elog
+}



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

2018-03-14 Thread Anthony G. Basile
commit: a8c64c939ba8210d461c1c52bd7f7d851bec4e3a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Mar 14 21:31:25 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Mar 14 21:31:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8c64c93

net-misc/curl: version bump to 7.59.0

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-misc/curl/Manifest   |   1 +
 net-misc/curl/curl-7.59.0.ebuild | 249 +++
 2 files changed, 250 insertions(+)

diff --git a/net-misc/curl/Manifest b/net-misc/curl/Manifest
index 6b13943fe42..8a7bdfeff8f 100644
--- a/net-misc/curl/Manifest
+++ b/net-misc/curl/Manifest
@@ -1,2 +1,3 @@
 DIST curl-7.57.0.tar.bz2 2849283 BLAKE2B 
05bf62df8908a7c2b00abbc31067b8e12e8f8527594597e0c92e950a83e359e3ad430930face01057e0d2e6af8e8d759a9e078bd179cdbd69bc7fe2d10c5c5e3
 SHA512 
f366d2e931d7aff63bac0e1f760ced32c849252947d522427ba92124566906a7e6bd081b6d1630df36895dda2a00ac4cf1bed1470740693ef47ab90c6a270377
 DIST curl-7.58.0.tar.bz2 2891868 BLAKE2B 
d13efab3e3e677804c0821257958eb6f4260234e3d939092e7de862a12ab84500aa50073e37610774b3be9e5a2910c3ba703a716296d31f799916c3046dc214b
 SHA512 
853b945fbfe87e8dcf2186d8cc6609681b9ed3727f9f075bb434d5df07d633fdf30795f6d5956e3355a5cf94a3780e4a3603b08cbd0368e44103de27085b
+DIST curl-7.59.0.tar.bz2 2904158 BLAKE2B 
c44d9985a19cb7b1e273f868181b0017c7b00683c195fd2c6696b9976e3c6a80d8b80490379c2dce653a9b2d698d1be33fce71a0e61844f38c12c44594909c35
 SHA512 
9b5586f443a3c9fed947debce86861a8dea0fbf59bf8838cfd72a0884f13073630cf9d369b5535a059d122decd738c652705567752517f5cb11148cc16f693fb

diff --git a/net-misc/curl/curl-7.59.0.ebuild b/net-misc/curl/curl-7.59.0.ebuild
new file mode 100644
index 000..f094148a3c4
--- /dev/null
+++ b/net-misc/curl/curl-7.59.0.ebuild
@@ -0,0 +1,249 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools eutils prefix multilib-minimal
+
+DESCRIPTION="A Client that groks URLs"
+HOMEPAGE="https://curl.haxx.se/;
+SRC_URI="https://curl.haxx.se/download/${P}.tar.bz2;
+
+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"
+IUSE="adns brotli http2 idn ipv6 kerberos ldap metalink rtmp samba ssh ssl 
static-libs test threads"
+IUSE+=" curl_ssl_axtls curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls 
curl_ssl_nss +curl_ssl_openssl curl_ssl_winssl"
+IUSE+=" elibc_Winnt"
+
+#lead to lots of false negatives, bug #285669
+RESTRICT="test"
+
+RDEPEND="ldap? ( net-nds/openldap[${MULTILIB_USEDEP}] )
+   brotli? ( app-arch/brotli:= )
+   ssl? (
+   curl_ssl_axtls? (
+   net-libs/axtls:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_gnutls? (
+   net-libs/gnutls:0=[static-libs?,${MULTILIB_USEDEP}]
+   dev-libs/nettle:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_libressl? (
+   dev-libs/libressl:0=[static-libs?,${MULTILIB_USEDEP}]
+   )
+   curl_ssl_mbedtls? (
+   net-libs/mbedtls:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_openssl? (
+   dev-libs/openssl:0=[static-libs?,${MULTILIB_USEDEP}]
+   )
+   curl_ssl_nss? (
+   dev-libs/nss:0[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   )
+   http2? ( net-libs/nghttp2[${MULTILIB_USEDEP}] )
+   idn? ( net-dns/libidn2:0[static-libs?,${MULTILIB_USEDEP}] )
+   adns? ( net-dns/c-ares:0[${MULTILIB_USEDEP}] )
+   kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
+   metalink? ( >=media-libs/libmetalink-0.1.1[${MULTILIB_USEDEP}] )
+   rtmp? ( media-video/rtmpdump[${MULTILIB_USEDEP}] )
+   ssh? ( net-libs/libssh2[static-libs?,${MULTILIB_USEDEP}] )
+   sys-libs/zlib[${MULTILIB_USEDEP}]
+   abi_x86_32? (
+   !<=app-emulation/emul-linux-x86-baselibs-20140508-r13
+   !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
+   )"
+
+# Do we need to enforce the same ssl backend for curl and rtmpdump? Bug #423303
+#  rtmp? (
+#  media-video/rtmpdump
+#  curl_ssl_gnutls? ( media-video/rtmpdump[gnutls] )
+#  curl_ssl_openssl? ( media-video/rtmpdump[-gnutls,ssl] )
+#  )
+
+# ssl providers to be added:
+# fbopenssl  $(use_with spnego)
+
+DEPEND="${RDEPEND}
+   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+   test? (
+   

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

2018-03-14 Thread Sergei Trofimovich
commit: 6161d5f1b46a86d377045db8cf21c65009cbce43
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 20:02:11 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:29:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6161d5f1

profiles/arch/powerpc/ppc64: unmask ruby23, bug #639476

Bug: https://bugs.gentoo.org/639476
Signed-off-by: Sergei Trofimovich  gentoo.org>

 profiles/arch/powerpc/ppc64/make.defaults   | 4 
 profiles/arch/powerpc/ppc64/use.stable.mask | 4 
 2 files changed, 8 deletions(-)

diff --git a/profiles/arch/powerpc/ppc64/make.defaults 
b/profiles/arch/powerpc/ppc64/make.defaults
index 6ea71879630..fe54e02e4ef 100644
--- a/profiles/arch/powerpc/ppc64/make.defaults
+++ b/profiles/arch/powerpc/ppc64/make.defaults
@@ -39,7 +39,3 @@ VIDEO_CARDS="fbdev mach64 mga nv r128 radeon vesa"
 
 # Enable abi_ppc_64 for packages that don't have it forced.
 ABI_PPC="64"
-
-# Hans de Graaff  (21 Jan 2018)
-# Temporary entry to support stable bug 639476
-RUBY_TARGETS="ruby22"

diff --git a/profiles/arch/powerpc/ppc64/use.stable.mask 
b/profiles/arch/powerpc/ppc64/use.stable.mask
index fe877c3e26a..e797af411b7 100644
--- a/profiles/arch/powerpc/ppc64/use.stable.mask
+++ b/profiles/arch/powerpc/ppc64/use.stable.mask
@@ -3,7 +3,3 @@
 
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in use.mask
-
-# Hans de Graaff  (21 Jan 2018)
-# Temporary mask to support stable bug 639476
-ruby_targets_ruby23



[gentoo-commits] repo/gentoo:master commit in: app-emacs/ruby-mode/

2018-03-14 Thread Sergei Trofimovich
commit: 0c5c715c54c3446be65cdd0de22efd28c5d09d28
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 20:00:20 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:29:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c5c715c

app-emacs/ruby-mode: stable 2.3.0 for ppc64, bug #639476

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 app-emacs/ruby-mode/ruby-mode-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/ruby-mode/ruby-mode-2.3.0.ebuild 
b/app-emacs/ruby-mode/ruby-mode-2.3.0.ebuild
index 1709ca29f20..89b3d232540 100644
--- a/app-emacs/ruby-mode/ruby-mode-2.3.0.ebuild
+++ b/app-emacs/ruby-mode/ruby-mode-2.3.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://ruby/ruby-${PV}.tar.xz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ~ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 
 S="${WORKDIR}/ruby-${PV}/misc"
 DOCS="README"



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/powerpc/ppc64/32ul/

2018-03-14 Thread Sergei Trofimovich
commit: 9a026b8c2330ad8f016d032111b3d1a982f4eda5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 21:06:40 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:29:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a026b8c

Revert "profiles/arch/powerpc/ppc64/32ul: sync ruby flags wih ppc32"

ppc64 got stable ruby23. Drop explicit override.

 profiles/arch/powerpc/ppc64/32ul/make.defaults   |  5 -
 profiles/arch/powerpc/ppc64/32ul/use.stable.mask | 10 --
 2 files changed, 15 deletions(-)

diff --git a/profiles/arch/powerpc/ppc64/32ul/make.defaults 
b/profiles/arch/powerpc/ppc64/32ul/make.defaults
index e9b4141df62..9865b69f345 100644
--- a/profiles/arch/powerpc/ppc64/32ul/make.defaults
+++ b/profiles/arch/powerpc/ppc64/32ul/make.defaults
@@ -14,8 +14,3 @@ ACCEPT_KEYWORDS="${ARCH} -ppc64"
 # Michał Górny  (27 Jun 2014)
 # Make the ABI flag implicit for compatibility with native ebuilds.
 IUSE_IMPLICIT="abi_ppc_32 -abi_ppc_64"
-
-# Sergei Trofimovich  (14 Mar 2018)
-# We need to match up to 'arch/powerpc/ppc32' defaults here.
-# Remove it when ruby23 goes stable on ppc64
-RUBY_TARGETS="ruby22 ruby23"

diff --git a/profiles/arch/powerpc/ppc64/32ul/use.stable.mask 
b/profiles/arch/powerpc/ppc64/32ul/use.stable.mask
deleted file mode 100644
index fcdddf46c03..000
--- a/profiles/arch/powerpc/ppc64/32ul/use.stable.mask
+++ /dev/null
@@ -1,10 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# This file requires eapi 5 or later. New entries go on top.
-# Please use the same syntax as in use.mask
-
-# Sergei Trofimovich  (14 Mar 2018)
-# We need to match up to 'arch/powerpc/ppc32' defaults here.
-# Remove it when ruby23 goes stable on ppc64
--ruby_targets_ruby23



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

2018-03-14 Thread Sergei Trofimovich
commit: b22e6d310914232d9fbb3b18dc2067b48c028d13
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 20:00:42 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:29:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b22e6d31

dev-ruby/rdoc: stable 4.3.0 for ppc64, bug #639476

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-ruby/rdoc/rdoc-4.3.0.ebuild b/dev-ruby/rdoc/rdoc-4.3.0.ebuild
index 5a685b8b2fc..d80896bee77 100644
--- a/dev-ruby/rdoc/rdoc-4.3.0.ebuild
+++ b/dev-ruby/rdoc/rdoc-4.3.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/rdoc/rdoc/;
 
 LICENSE="Ruby MIT"
 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=""
 
 ruby_add_bdepend "



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-ruby/

2018-03-14 Thread Sergei Trofimovich
commit: df9e436f309a99a0c5dcdcdc456d975854cee2ae
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 20:00:25 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:29:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9e436f

app-eselect/eselect-ruby: stable 20170723 for ppc64, bug #639476

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 app-eselect/eselect-ruby/eselect-ruby-20170723.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-ruby/eselect-ruby-20170723.ebuild 
b/app-eselect/eselect-ruby/eselect-ruby-20170723.ebuild
index a66c83896db..626966b494c 100644
--- a/app-eselect/eselect-ruby/eselect-ruby-20170723.ebuild
+++ b/app-eselect/eselect-ruby/eselect-ruby-20170723.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://dev.gentoo.org/~graaff/ruby-team/ruby.eselect-${PVR}.xz;
 
 LICENSE="GPL-2"
 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 ~m68k-mint ~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 ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND=">=app-admin/eselect-1.0.2"



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

2018-03-14 Thread Sergei Trofimovich
commit: df94f76a61358584875edaa650bf57ae60808447
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 20:02:58 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:29:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df94f76a

dev-lang/ruby: stable 2.3.6 for ppc64, bug #639476

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-lang/ruby/ruby-2.3.6.ebuild b/dev-lang/ruby/ruby-2.3.6.ebuild
index 49f830b95aa..c0e688aa9c1 100644
--- a/dev-lang/ruby/ruby-2.3.6.ebuild
+++ b/dev-lang/ruby/ruby-2.3.6.ebuild
@@ -30,7 +30,7 @@ SRC_URI="mirror://ruby/${SLOT}/${MY_P}.tar.xz
 
https://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2;
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="berkdb debug doc examples gdbm ipv6 jemalloc libressl +rdoc rubytests 
socks5 ssl tk xemacs ncurses +readline"
 
 RDEPEND="



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

2018-03-14 Thread Sergei Trofimovich
commit: 526c7c3483b5d7630820f3fb7be40b31d1b1a549
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 20:00:32 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:29:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=526c7c34

dev-ruby/did_you_mean: stable 1.0.2 for ppc64, bug #639476

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild 
b/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
index f9186f25898..ac4fcdb899f 100644
--- a/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
+++ b/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/yuki24/did_you_mean;
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd"
 IUSE=""
 
 all_ruby_prepare() {



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

2018-03-14 Thread Sergei Trofimovich
commit: 2a689c69ca67c239485ec99424b79d0a42505ef3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 20:00:37 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:29:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a689c69

dev-ruby/net-telnet: stable 0.1.1-r1 for ppc64, bug #639476

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 dev-ruby/net-telnet/net-telnet-0.1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/net-telnet/net-telnet-0.1.1-r1.ebuild 
b/dev-ruby/net-telnet/net-telnet-0.1.1-r1.ebuild
index 789d3a8390f..789a5c92785 100644
--- a/dev-ruby/net-telnet/net-telnet-0.1.1-r1.ebuild
+++ b/dev-ruby/net-telnet/net-telnet-0.1.1-r1.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/ruby/net-telnet/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
 SLOT="1"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~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 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 ruby_add_bdepend "test? ( dev-ruby/minitest )"



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

2018-03-14 Thread Sergei Trofimovich
commit: 9c1967a0038a18c12f245ab97048cb7b066313ab
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Mar 14 20:00:46 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Mar 14 21:29:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c1967a0

dev-ruby/racc: stable 1.4.14 for ppc64, bug #639476

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-ruby/racc/racc-1.4.14.ebuild b/dev-ruby/racc/racc-1.4.14.ebuild
index 90e52547d88..5c202171e11 100644
--- a/dev-ruby/racc/racc-1.4.14.ebuild
+++ b/dev-ruby/racc/racc-1.4.14.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/tenderlove/racc;
 LICENSE="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="doc test"
 
 ruby_add_bdepend "dev-ruby/rake



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

2018-03-14 Thread Michał Górny
commit: e620b14c615696255f7e00ef9c8cecf01d792cac
Author: Georgy Yakovlev  sysdump  net>
AuthorDate: Wed Mar 14 05:03:35 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 14 21:16:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e620b14c

profiles: Mask dnscrypt-proxy-1.x for removal

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 215bc36e2a7..e0627588978 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Georgy Yakovlev  (13 Mar 2018)
+# 1.x version is no longer maintained by upstream
+# 2.x is in the tree and is better in almost every way
+# Removal in 90 days. Bug #650464
+=net-dns/dnscrypt-proxy-1.9.5-r1
+
 # Pacho Ramos  (13 Mar 2018)
 # Tests need network, nothing requires this old lib anymore and upstream is
 # dead for a long time (#335233). Removal in a month.



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

2018-03-14 Thread Markus Meier
commit: e39b2c759d5e0ae65c583880bacf583dff01f7b3
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Mar 14 21:07:21 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Mar 14 21:09:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e39b2c75

net-fs/davfs2: add ~arm, bug #640402

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

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

diff --git a/net-fs/davfs2/davfs2-1.5.4.ebuild 
b/net-fs/davfs2/davfs2-1.5.4.ebuild
index d786cfd9320..40f41a2c4a0 100644
--- a/net-fs/davfs2/davfs2-1.5.4.ebuild
+++ b/net-fs/davfs2/davfs2-1.5.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=6
@@ -11,7 +11,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ppc x86"
+KEYWORDS="amd64 ~arm ppc x86"
 IUSE="nls"
 RESTRICT="test"
 



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

2018-03-14 Thread Markus Meier
commit: 9a10582d3c32b0886af0cd200666b6ab0e5e50b9
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Mar 14 21:05:14 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Mar 14 21:08:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a10582d

x11-libs/pango: arm stable, bug #631656

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

 x11-libs/pango/pango-1.40.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/pango/pango-1.40.14.ebuild 
b/x11-libs/pango/pango-1.40.14.ebuild
index 13a5d87e979..6b7cd561888 100644
--- a/x11-libs/pango/pango-1.40.14.ebuild
+++ b/x11-libs/pango/pango-1.40.14.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://www.pango.org/;
 
 LICENSE="LGPL-2+ FTL"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 
 IUSE="X +introspection test"
 



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

2018-03-14 Thread Markus Meier
commit: 52d28754bca18b12a1533b6838e46c241659a953
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Mar 14 20:21:27 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Mar 14 21:08:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52d28754

dev-libs/libxml2: arm stable, bug #631656

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

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

diff --git a/dev-libs/libxml2/libxml2-2.9.7.ebuild 
b/dev-libs/libxml2/libxml2-2.9.7.ebuild
index 3b180423071..ab0fa96f306 100644
--- a/dev-libs/libxml2/libxml2-2.9.7.ebuild
+++ b/dev-libs/libxml2/libxml2-2.9.7.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.xmlsoft.org/;
 
 LICENSE="MIT"
 SLOT="2"
-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"
+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"
 IUSE="debug examples icu ipv6 lzma python readline static-libs test"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gsettings-desktop-schemas/

2018-03-14 Thread Markus Meier
commit: df49b7d28f0e3b9b6249c8ff8d35b715ab741fed
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Mar 14 20:21:47 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Mar 14 21:08:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df49b7d2

gnome-base/gsettings-desktop-schemas: arm stable, bug #631656

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

 .../gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild 
b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild
index 2e366afcc5c..c076beb388f 100644
--- 
a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild
+++ 
b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.24.1.ebuild
@@ -10,7 +10,7 @@ 
HOMEPAGE="https://git.gnome.org/browse/gsettings-desktop-schemas;
 LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="+introspection"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~sparc-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.31:2



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

2018-03-14 Thread Markus Meier
commit: 344052f853df220d4e860708b976600283569bdd
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Mar 14 21:04:55 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Mar 14 21:08:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=344052f8

net-libs/phodav: arm stable, bug #631656

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

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

diff --git a/net-libs/phodav/phodav-2.2.ebuild 
b/net-libs/phodav/phodav-2.2.ebuild
index 5faffa3afdb..d6f4f3b32ce 100644
--- a/net-libs/phodav/phodav-2.2.ebuild
+++ b/net-libs/phodav/phodav-2.2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/phodav;
 
 LICENSE="LGPL-2.1+"
 SLOT="2.0"
-KEYWORDS="alpha amd64 ~arm ppc ~ppc64 x86"
+KEYWORDS="alpha amd64 arm ppc ~ppc64 x86"
 IUSE="spice systemd zeroconf"
 
 # It included g_uuid_* symbols of its own from an unapplied patch to glib; now 
that they



  1   2   3   >