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

2019-06-04 Thread Andreas K. Hüttel
commit: f0c46737f8e44a069d1b5aba3f2882dd57f4c8c3
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jun  5 05:03:21 2019 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Wed Jun  5 05:03:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0c46737

sys-apps/texinfo: -r3, agressively optimizes stability (no keywords)

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 sys-apps/texinfo/metadata.xml  |  1 +
 sys-apps/texinfo/texinfo-6.6-r3.ebuild | 60 ++
 2 files changed, 61 insertions(+)

diff --git a/sys-apps/texinfo/metadata.xml b/sys-apps/texinfo/metadata.xml
index e73fd846ffa..c939b6a3e97 100644
--- a/sys-apps/texinfo/metadata.xml
+++ b/sys-apps/texinfo/metadata.xml
@@ -11,5 +11,6 @@
 
 
Build Perl modules with embedded C code for speed; 
requires rebuilds on Perl update
+   Build standalone version that survives all 
Portage bugs
 
 

diff --git a/sys-apps/texinfo/texinfo-6.6-r3.ebuild 
b/sys-apps/texinfo/texinfo-6.6-r3.ebuild
new file mode 100644
index 000..f2545ebfff4
--- /dev/null
+++ b/sys-apps/texinfo/texinfo-6.6-r3.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Note: if your package uses the texi2dvi utility, it must depend on the
+# virtual/texi2dvi package to pull in all the right deps.  The tool is not
+# usable out-of-the-box because it requires the large tex packages.
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="The GNU info program and utilities"
+HOMEPAGE="https://www.gnu.org/software/texinfo/;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS=""
+IUSE="nls +standalone static"
+
+RDEPEND="
+   !=app-text/tetex-2*
+   >=sys-libs/ncurses-5.2-r2:0=
+   standalone? ( dev-lang/perl )
+   !standalone?  (
+   dev-lang/perl:=
+   dev-perl/libintl-perl
+   dev-perl/Unicode-EastAsianWidth
+   dev-perl/Text-Unidecode
+   )
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   nls? ( >=sys-devel/gettext-0.19.6 )"
+
+src_configure() {
+   # Respect compiler and CPPFLAGS/CFLAGS/LDFLAGS for Perl extensions. 
#622576
+   local -x PERL_EXT_CC="$(tc-getCC)" PERL_EXT_CPPFLAGS="${CPPFLAGS}" 
PERL_EXT_CFLAGS="${CFLAGS}" PERL_EXT_LDFLAGS="${LDFLAGS}"
+
+   use static && append-ldflags -static
+   local myeconfargs
+   if use standalone ; then
+   myeconfargs=(
+   --without-external-libintl-perl
+   --without-external-Unicode-EastAsianWidth
+   --without-external-Text-Unidecode
+   $(use_enable nls)
+   --disable-perl-xs
+   )
+   else
+   myeconfargs=(
+   --with-external-libintl-perl
+   --with-external-Unicode-EastAsianWidth
+   --with-external-Text-Unidecode
+   $(use_enable nls)
+   --enable-perl-xs
+   )
+   fi
+   econf "${myeconfargs[@]}"
+}



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

2019-06-04 Thread Andreas K. Hüttel
commit: d6e0516deec8d5aeedd03a92d47c044d37ea062e
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Jun  5 02:29:37 2019 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Wed Jun  5 02:30:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6e0516d

sys-apps/texinfo: Add useflag xs (default off) toggling C in Perl

When pure Perl is used, texinfo will be slower, however, there is no need for
rebuilds on Perl upgrade. Since this is our most frequent road bump at the
moment, see portage bug 638914, we take the slowdown by default and hope that
things improve. Not sure how well this will work out, however, since texinfo
again depends on other Perl modules, which are installed in version dependent
paths.

Bug: https://bugs.gentoo.org/638914
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 sys-apps/texinfo/metadata.xml  |  7 +
 sys-apps/texinfo/texinfo-6.6-r2.ebuild | 47 ++
 2 files changed, 54 insertions(+)

diff --git a/sys-apps/texinfo/metadata.xml b/sys-apps/texinfo/metadata.xml
index 56c12441305..e73fd846ffa 100644
--- a/sys-apps/texinfo/metadata.xml
+++ b/sys-apps/texinfo/metadata.xml
@@ -5,4 +5,11 @@
base-sys...@gentoo.org
Gentoo Base System
 
+
+   p...@gentoo.org
+   Gentoo Perl Project
+
+
+   Build Perl modules with embedded C code for speed; 
requires rebuilds on Perl update
+
 

diff --git a/sys-apps/texinfo/texinfo-6.6-r2.ebuild 
b/sys-apps/texinfo/texinfo-6.6-r2.ebuild
new file mode 100644
index 000..d142edb1221
--- /dev/null
+++ b/sys-apps/texinfo/texinfo-6.6-r2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Note: if your package uses the texi2dvi utility, it must depend on the
+# virtual/texi2dvi package to pull in all the right deps.  The tool is not
+# usable out-of-the-box because it requires the large tex packages.
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="The GNU info program and utilities"
+HOMEPAGE="https://www.gnu.org/software/texinfo/;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="nls static xs"
+
+RDEPEND="
+   !=app-text/tetex-2*
+   >=sys-libs/ncurses-5.2-r2:0=
+   xs?  ( dev-lang/perl:= )
+   !xs? ( dev-lang/perl )
+   dev-perl/libintl-perl
+   dev-perl/Unicode-EastAsianWidth
+   dev-perl/Text-Unidecode
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   nls? ( >=sys-devel/gettext-0.19.6 )"
+
+src_configure() {
+   # Respect compiler and CPPFLAGS/CFLAGS/LDFLAGS for Perl extensions. 
#622576
+   local -x PERL_EXT_CC="$(tc-getCC)" PERL_EXT_CPPFLAGS="${CPPFLAGS}" 
PERL_EXT_CFLAGS="${CFLAGS}" PERL_EXT_LDFLAGS="${LDFLAGS}"
+
+   use static && append-ldflags -static
+   local myeconfargs=(
+   --with-external-libintl-perl
+   --with-external-Unicode-EastAsianWidth
+   --with-external-Text-Unidecode
+   $(use_enable nls)
+   $(use_enable xs perl-xs)
+   )
+   econf "${myeconfargs[@]}"
+}



[gentoo-commits] proj/genkernel:master commit in: defaults/

2019-06-04 Thread Ben Kohler
commit: e2d7d2076ca4b49bd1532c8d8bf9a4670bf6598f
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jun  5 00:01:48 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jun  5 00:01:48 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=e2d7d207

kernel-generic-config: add IP_NF_NAT & IP6_NF_NAT

The 'nat' table used to be enabled by default in genkernel, but
somewhere along the way in the kernel's reorganization of
netfilter/iptables/nftables stuff, we seem to have lost it.  This commit
adds it back.

Signed-off-by: Ben Kohler  gentoo.org>

 defaults/kernel-generic-config | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/defaults/kernel-generic-config b/defaults/kernel-generic-config
index 82df29c..bb9e043 100644
--- a/defaults/kernel-generic-config
+++ b/defaults/kernel-generic-config
@@ -1099,6 +1099,7 @@ CONFIG_IP_NF_MATCH_TTL=m
 CONFIG_IP_NF_FILTER=m
 CONFIG_IP_NF_TARGET_REJECT=m
 CONFIG_IP_NF_TARGET_SYNPROXY=m
+CONFIG_IP_NF_NAT=m
 CONFIG_IP_NF_TARGET_MASQUERADE=m
 CONFIG_IP_NF_TARGET_NETMAP=m
 CONFIG_IP_NF_TARGET_REDIRECT=m
@@ -1151,6 +1152,7 @@ CONFIG_IP6_NF_TARGET_SYNPROXY=m
 CONFIG_IP6_NF_MANGLE=m
 CONFIG_IP6_NF_QUEUE=m
 CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_NAT=m
 CONFIG_IP6_NF_SECURITY=m
 CONFIG_NF_NAT_IPV6=m
 CONFIG_IP6_NF_TARGET_MASQUERADE=m



[gentoo-commits] repo/gentoo:master commit in: app-forensics/sleuthkit/

2019-06-04 Thread Göktürk Yüksek
commit: d8aeaed593df450e9284c3ff97c4d4d3f3f0fb56
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Wed Jun  5 00:01:59 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed Jun  5 00:01:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8aeaed5

app-forensics/sleuthkit: force libewf to link against local deps

We bundle a legacy version of libewf since that's the only version the
upstream officially supports. It should link against the cross
platform libc* libraries supplied in the tarball and not use the
system ones. Currently, this has no visible impact for Gentoo users as
aformentioned libraries do not exist in the tree yet.

Suggested-by: Anton Bolshakov  pentoo.ch>
Closes: https://bugs.gentoo.org/677252
Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Göktürk Yüksek  gentoo.org>

 app-forensics/sleuthkit/sleuthkit-4.6.5.ebuild | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/app-forensics/sleuthkit/sleuthkit-4.6.5.ebuild 
b/app-forensics/sleuthkit/sleuthkit-4.6.5.ebuild
index 7acead628b4..daf357f8c88 100644
--- a/app-forensics/sleuthkit/sleuthkit-4.6.5.ebuild
+++ b/app-forensics/sleuthkit/sleuthkit-4.6.5.ebuild
@@ -139,6 +139,20 @@ tsk_compile_libewf() {
--without-openssl
--without-libuuid
--without-libfuse
+
+   --with-libcstring=no
+   --with-libcerror=no
+   --with-libcdata=no
+   --with-libclocale=no
+   --with-libcnotify=no
+   --with-libcsplit=no
+   --with-libuna=no
+   --with-libcfile=no
+   --with-libcpath=no
+   --with-libbfio=no
+   --with-libfcache=no
+   --with-libfvalue=no
+
)
# We want to contain our build flags
local CFLAGS="${CFLAGS}"



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

2019-06-04 Thread Göktürk Yüksek
commit: d8a6efc572d98c67ed5e09275de6ee6aa64a4611
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Tue Jun  4 23:23:22 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Tue Jun  4 23:23:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8a6efc5

sys-auth/pam_u2f: bump to 1.0.8 #687400

Version 1.0.8 resolves the following CVEs: CVE-2019-12209,
CVE-2019-12210.

Bug: https://bugs.gentoo.org/687400
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Göktürk Yüksek  gentoo.org>

 sys-auth/pam_u2f/Manifest |  1 +
 sys-auth/pam_u2f/pam_u2f-1.0.8.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/sys-auth/pam_u2f/Manifest b/sys-auth/pam_u2f/Manifest
index cddc058a24e..7a352ed4c4d 100644
--- a/sys-auth/pam_u2f/Manifest
+++ b/sys-auth/pam_u2f/Manifest
@@ -1,3 +1,4 @@
 DIST pam_u2f-1.0.4.tar.gz 349114 BLAKE2B 
50811fe8b0076ff36af030e080593161a1f676f05d5eb970a50ea7092bac5bfe1832370d12b730be8422f7f42677ff950d5b3e932a6087a1698a4acba267c9d5
 SHA512 
324d1a1172eae567372f95971d9ee6bb237b47758b89c083f3cfb11275c4b0c22c4cf02a51380451f88d372dd6aaa415bdb671a43a7444062fbf8f50b658f087
 DIST pam_u2f-1.0.6.tar.gz 375181 BLAKE2B 
eac1457cbfd7951fd617ea0cff4220d6e5fe6f3e33cbc960024a28a1ca09f376fced27afa8e5a23dc5bab1881c226497c41fea7041dd891a36e1be7ba18c09f3
 SHA512 
e169d3d251a132213c04570099164aee0cdcea4bca233432f13af47b2cc5e420e14b3fb6dcde20cb8f77f9ed677459bd641aa3f9c1da65c88cd7490e26ab25e3
 DIST pam_u2f-1.0.7.tar.gz 378513 BLAKE2B 
a5b48e7ed36052a517941bc4af2c88a9d66e0a911620832a9c6256b294b1fe291860f2d481db32ab9fdf6a4deebb8dd0c31de97ac52ff2411d707679d7a997d1
 SHA512 
5b8fe116782684e5da395a4923b4c300b0d4b6d9e297c8de5cc4ca2ed633fda30cdbc4ae6bbb8a582faf8068dbed13048a2b2f742ebe9eea208fbb7a407caf0a
+DIST pam_u2f-1.0.8.tar.gz 384163 BLAKE2B 
99767601027db25e6f8d2e59aad5f72b078cf7344ca10fa310a990d512c5e5a4c9ff7c24acb5b21b88b82aa47b4052b9164a422426d1f0889c8f6776526e5c80
 SHA512 
0bdbea6307428bbed2af69129af207304f7951418ad7df339563f47d678a2cfe6b80321552382e15771cfc06306fae746521850056376f533c430556d051ad36

diff --git a/sys-auth/pam_u2f/pam_u2f-1.0.8.ebuild 
b/sys-auth/pam_u2f/pam_u2f-1.0.8.ebuild
new file mode 100644
index 000..a9733193367
--- /dev/null
+++ b/sys-auth/pam_u2f/pam_u2f-1.0.8.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools flag-o-matic pam
+
+DESCRIPTION="Library for authenticating against PAM with a Yubikey"
+HOMEPAGE="https://github.com/Yubico/pam-u2f;
+SRC_URI="https://developers.yubico.com/${PN/_/-}/Releases/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+RDEPEND="
+   app-crypt/libu2f-host
+   app-crypt/libu2f-server:=
+   virtual/pam"
+
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}/${PN}-1.0.2-fix-Makefile.patch" )
+
+src_prepare() {
+   default
+   use debug || append-cppflags -UDEBUG_PAM -UPAM_DEBUG
+   eautoreconf
+}
+
+src_configure() {
+   econf --with-pam-dir=$(getpam_mod_dir)
+}



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

2019-06-04 Thread Thomas Deutschmann
commit: 4aba3b25fc262907076415258a5abec8215da778
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 23:11:33 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 23:12:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aba3b25

app-admin/rsyslog: x86 stable (bug #687392)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-admin/rsyslog/rsyslog-8.1904.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/rsyslog/rsyslog-8.1904.0.ebuild 
b/app-admin/rsyslog/rsyslog-8.1904.0.ebuild
index 1161ca1f6d6..0890770de3e 100644
--- a/app-admin/rsyslog/rsyslog-8.1904.0.ebuild
+++ b/app-admin/rsyslog/rsyslog-8.1904.0.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == "" ]]; then
 
inherit git-r3
 else
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa x86"
 
SRC_URI="
https://www.rsyslog.com/files/download/${PN}/${P}.tar.gz



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

2019-06-04 Thread Thomas Deutschmann
commit: 7d5255ed41144621c67ed0599f143d64d16f5f1d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 23:12:00 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 23:12:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d5255ed

dev-libs/librelp: x86 stable (bug #687392)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/dev-libs/librelp/librelp-1.4.0.ebuild 
b/dev-libs/librelp/librelp-1.4.0.ebuild
index 7f2f302f832..c9f0ee10f78 100644
--- a/dev-libs/librelp/librelp-1.4.0.ebuild
+++ b/dev-libs/librelp/librelp-1.4.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="GPL-3+ doc? ( FDL-1.3 )"
 # subslot = soname version
 SLOT="0/0.5.0"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc x86"
 IUSE="debug doc +ssl +gnutls libressl openssl static-libs test"
 REQUIRED_USE="ssl? ( ^^ ( gnutls openssl ) )"
 



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

2019-06-04 Thread Thomas Deutschmann
commit: 294a2a9c271aa33aca1ad1c0988c15c80133a84f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 23:12:28 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 23:12:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=294a2a9c

dev-libs/librdkafka: x86 stable (bug #687392)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/dev-libs/librdkafka/librdkafka-1.0.1.ebuild 
b/dev-libs/librdkafka/librdkafka-1.0.1.ebuild
index 7ffc8964e5e..4f3e2e8a533 100644
--- a/dev-libs/librdkafka/librdkafka-1.0.1.ebuild
+++ b/dev-libs/librdkafka/librdkafka-1.0.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/edenhill/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc x86"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-misc/lksctp-tools/, net-misc/lksctp-tools/files/

2019-06-04 Thread Andreas Sturmlechner
commit: ba0b67d74b508cfe6eeb93138715c4494eb7a28d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 22:22:53 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 22:23:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba0b67d7

net-misc/lksctp-tools: Drop 1.0.13 and 1.0.16

All arches have newer versions stable.

Closes: https://bugs.gentoo.org/609620
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-misc/lksctp-tools/Manifest |  2 -
 .../files/lksctp-tools-1.0.13-build.patch  | 30 -
 net-misc/lksctp-tools/lksctp-tools-1.0.13.ebuild   | 50 --
 net-misc/lksctp-tools/lksctp-tools-1.0.16.ebuild   | 48 -
 4 files changed, 130 deletions(-)

diff --git a/net-misc/lksctp-tools/Manifest b/net-misc/lksctp-tools/Manifest
index dc04fa574de..5d31ff28f39 100644
--- a/net-misc/lksctp-tools/Manifest
+++ b/net-misc/lksctp-tools/Manifest
@@ -1,4 +1,2 @@
-DIST lksctp-tools-1.0.13.tar.gz 564530 BLAKE2B 
e9d374910e7acad2ce05f336e8f66c8ef22bce85912a02cf23c7f691b949b681e75cd9031cf676cb1f4911f311f0153e3a68730f3faba47714f020625924b5e2
 SHA512 
bdcf06223641ca062fd528ad87efbd3ac2a4e721b691bade528ae6d2ad8eaee5a6c0516eff42c83a3afed812c378f3ce782b93efe8ec830d91280b7419ce17b4
-DIST lksctp-tools-1.0.16.tar.gz 565446 BLAKE2B 
2eff562809f24b76b8f129698c8fef30f9612706482e3061356e3a6fef2503c677421de4e7cb0ab30c8830cdccf7541f67234469920394554fc574fe45833a88
 SHA512 
ea771f3ffeef4630638ee9cbdf01723d01b1b0ca2e8f147a2b61b907339bd1a0c5d621a58638a3b700b6ffc41de06c7b9002645254a471e279663b64b313f467
 DIST lksctp-tools-1.0.17.tar.gz 795762 BLAKE2B 
a37b653b1f9effd039c5241669c767d8b0918bf4790d9f017c70eefd4ce1efdbe5d76f6e88e15ddf214308267ee62a6004d2af781ad720ef847e8d99ae5a55f6
 SHA512 
055719130b7dda4da9cf002dcd5f1fb3d8cf75300a99365976e087b2b6971b4ccd357f95b515a44e37874af161f7b7f9b42c60191aff938d18fada5a49aa44c4
 DIST lksctp-tools-1.0.18.tar.gz 560302 BLAKE2B 
6151109a0f43044048ff64a6ca021710f28e695017b79513412a44999ec67bdbe7cb0bbba7d5e0deb28b8fdd097379100046ef77508678f726f18944b9799f22
 SHA512 
1d7275fadc0f2270865307cff2645810e9bab6c1a97e70be6115cace737334dbdd87a072fae25b89dd9cac2e05974556542de70ea8ef70b9e4f14873c82a5055

diff --git a/net-misc/lksctp-tools/files/lksctp-tools-1.0.13-build.patch 
b/net-misc/lksctp-tools/files/lksctp-tools-1.0.13-build.patch
deleted file mode 100644
index 919bb1728ae..000
--- a/net-misc/lksctp-tools/files/lksctp-tools-1.0.13-build.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 2f2ba4e271b91535860705ca5911a3a6e1f64121 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= 
-Date: Sat, 23 Feb 2013 23:08:49 -0800
-Subject: [PATCH lksctp-tools] build: fix out-of-tree build of withsctp.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-
-Signed-off-by: Diego Elio Pettenò 

- src/withsctp/Makefile.am | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/withsctp/Makefile.am b/src/withsctp/Makefile.am
-index e091049..cecf606 100644
 a/src/withsctp/Makefile.am
-+++ b/src/withsctp/Makefile.am
-@@ -10,7 +10,7 @@ include $(top_srcdir)/Makefile.rules
- bin_PROGRAMS = checksctp
- bin_SCRIPTS = withsctp
- 
--AM_CPPFLAGS=-I../include
-+AM_CPPFLAGS=-I$(top_srcdir)/src/include
- pkglib_LTLIBRARIES = libwithsctp.la
- libwithsctp_la_SOURCES = sctp_load_libs.c sctp_socket.c sctp_bind.c \
-   sctp_sockopt.c sctp_socket.h
--- 
-1.8.1.2
-

diff --git a/net-misc/lksctp-tools/lksctp-tools-1.0.13.ebuild 
b/net-misc/lksctp-tools/lksctp-tools-1.0.13.ebuild
deleted file mode 100644
index 993649af936..000
--- a/net-misc/lksctp-tools/lksctp-tools-1.0.13.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib flag-o-matic autotools autotools-utils linux-info
-
-DESCRIPTION="Tools for Linux Kernel Stream Control Transmission Protocol 
implementation"
-HOMEPAGE="http://lksctp.sourceforge.net/;
-SRC_URI="mirror://sourceforge/lksctp/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2+ LGPL-2.1 )"
-SLOT="0"
-KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
-IUSE="kernel_linux static-libs"
-
-# This is only supposed to work with Linux to begin with.
-DEPEND=">=sys-kernel/linux-headers-2.6"
-RDEPEND=""
-
-REQUIRED_USE="kernel_linux"
-
-CONFIG_CHECK="~IP_SCTP"
-WARNING_IP_SCTP="CONFIG_IP_SCTP:\tis not set when it should be."
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-1.0.8-prefix.patch #181602
-   epatch "${FILESDIR}"/${P}-build.patch
-   sed -i 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.in || die
-   eautoreconf
-}
-
-src_configure() {
-   append-flags -fno-strict-aliasing
-
-   autotools-utils_src_configure
-}
-
-DOCS=( AUTHORS ChangeLog INSTALL NEWS README ROADMAP )
-
-src_install() {
-   

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

2019-06-04 Thread Thomas Deutschmann
commit: d59874e63282d8bdb5b0b7e41f53cb2eb92dbf07
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 22:12:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 22:12:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d59874e6

sys-fs/lvm2: x86 stable (bug #687232)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-fs/lvm2/lvm2-2.02.184-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/lvm2/lvm2-2.02.184-r4.ebuild 
b/sys-fs/lvm2/lvm2-2.02.184-r4.ebuild
index 9100bbfa3e2..5731d014b4e 100644
--- a/sys-fs/lvm2/lvm2-2.02.184-r4.ebuild
+++ b/sys-fs/lvm2/lvm2-2.02.184-r4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://sourceware.org/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="readline static static-libs systemd lvm2create_initrd sanlock selinux 
+udev +thin device-mapper-only"
 REQUIRED_USE="device-mapper-only? ( !lvm2create_initrd !sanlock !thin )
systemd? ( udev )"



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

2019-06-04 Thread Andreas Sturmlechner
commit: 29307f23b735bc9daf89ff2675ac990e0574bd45
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 21:28:05 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 21:50:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29307f23

media-sound/abcde: Add media-sound/dagrab alternative to cdparanoia

Dropping USE cdparanoia.

Closes: https://bugs.gentoo.org/607474
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/abcde/abcde-2.9.3.ebuild | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/media-sound/abcde/abcde-2.9.3.ebuild 
b/media-sound/abcde/abcde-2.9.3.ebuild
index 75cd97243d2..ab9d4c57800 100644
--- a/media-sound/abcde/abcde-2.9.3.ebuild
+++ b/media-sound/abcde/abcde-2.9.3.ebuild
@@ -11,13 +11,18 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 # Enable MP3 related flags by default
-IUSE="aac cdparanoia cdr flac +id3tag +lame mac musepack musicbrainz normalize 
opus replaygain speex vorbis wavpack"
+IUSE="aac cdr flac +id3tag +lame mac musepack musicbrainz normalize opus 
replaygain speex vorbis wavpack"
 
 # See `grep :: abcde-musicbrainz-tool` output for USE musicbrainz dependencies
 RDEPEND="
media-sound/cd-discid
net-misc/wget
virtual/eject
+   || (
+   dev-libs/libcdio-paranoia
+   media-sound/cdparanoia
+   media-sound/dagrab
+   )
aac? (
media-libs/faac
|| (
@@ -25,10 +30,6 @@ RDEPEND="
media-video/atomicparsley-wez
)
)
-   cdparanoia? ( || (
-   dev-libs/libcdio-paranoia
-   media-sound/cdparanoia
-   ) )
cdr? ( virtual/cdrtools )
flac? ( media-libs/flac )
id3tag? (



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

2019-06-04 Thread Andreas Sturmlechner
commit: 155e7b9b1bb92e3fa1aa650413e35b7ee03118c2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 20:33:08 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 21:50:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=155e7b9b

media-sound/abcm2ps: Drop old

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/abcm2ps/Manifest   |  6 
 media-sound/abcm2ps/abcm2ps-8.12.9.ebuild  | 48 
 media-sound/abcm2ps/abcm2ps-8.13.10.ebuild | 48 
 media-sound/abcm2ps/abcm2ps-8.13.11.ebuild | 48 
 media-sound/abcm2ps/abcm2ps-8.13.12.ebuild | 51 --
 media-sound/abcm2ps/abcm2ps-8.13.9.ebuild  | 48 
 6 files changed, 249 deletions(-)

diff --git a/media-sound/abcm2ps/Manifest b/media-sound/abcm2ps/Manifest
index e2bc42fdabf..1cdee719f3d 100644
--- a/media-sound/abcm2ps/Manifest
+++ b/media-sound/abcm2ps/Manifest
@@ -1,7 +1 @@
-DIST abcm2ps-8.12.9.tar.gz 238669 BLAKE2B 
09e6c1c78fefed3b563a67e8ce232a2c75bd690aee04b17c85edef639756c5f3566b78afcbfdfb1af181d11d08f44e0538705a4415051173bcdf34bf3eb099b1
 SHA512 
77aa36fccfe508dcd132619c1a372d2b5a22957a58795610aec4eed0e4f5c9dc268298dcd86691a26b8e0b126d38c4c61ba4766a5a39adbd8279985a74229cd5
-DIST abcm2ps-8.13.10.tar.gz 249235 BLAKE2B 
b3a4fe8b1b3f41e1b35b3ce0574826719eb8586fc321d2ab87da7b778395850afc6635fa77840b2f710d2cc18003c5dfbec3d4634150ed6ff9bcc7e99ce9e5d2
 SHA512 
21e5c985c9b4ac0ba49973661f74bd6244a386030622919b6c8d5a220e5064b933929ddda0d025ad02638413d0b34c2687bb5370a858604c6a5e9a6b084369a4
-DIST abcm2ps-8.13.11.tar.gz 249332 BLAKE2B 
6ae96a64f5e0ef9e46222645f3013f85e1501b5d9f5b3ddce40af65be371f3dca3162c8d2cd72ade5bc9608a9c657d341d45b2a27adf976b74eeb29ff56eaa0c
 SHA512 
857102194fbc00a0ad21f36776a6fc3cdf0256a20f9a30eff5e9e060e78dd32178948b53a33517964e75ba9e2954e96e857daf076ca296fa123388879056
-DIST abcm2ps-8.13.12.tar.gz 249460 BLAKE2B 
2383d0f71d68dc8d8131aa5ffb5d756f2ded6a9773a5d6e5d7cde46c9c819628ac76c2504cc8dd6febf86f17e3a3da9f35db47564ed237b367ef427a657727b9
 SHA512 
3d708f02e358bde56b3f5407cd9f7d5a3645c6d0158f600ca7f2aef2a6c6ad03733d310e75375a65c8352a5a688c3b7841b74c014e857992d6eb128b81069f6b
-DIST abcm2ps-8.13.9.tar.gz 248893 BLAKE2B 
94744aa81c3b91b438af8f86b4c6cb65d72645a1735175aab9397d23e6a8fe2be1afe70e1c741f68df33bc1c075416cf475a63713fc3f7e1ec801a31bc615889
 SHA512 
7ce6efe605c073674ec7f30d26a34848e22a5c9f97058431243ee17598e35ebc991b760bc99847294f860f6b936e3ae2f504d2de842a487f226e32c47fac438e
 DIST abcm2ps-8.14.4.tar.gz 258383 BLAKE2B 
7f9163309cb7a31eaecf443b5bd754c7389b4717ed891e2082f618499b4491428ae0fff7b4804d2c21c8ff3d948557c9d649afb0c2a9ae9407aad39545ed66d5
 SHA512 
7ba5a25ef7ad18a46bdd45393836a0ede2838af2c24822ecf3c1759328619663fe600eaf607de900527f88fa4a9c21d1da8965cafa45f4aa6dc5754b37ae3722
-DIST transpose_abc.pl 21045 BLAKE2B 
08a28cd9021410ed461283e057ce89000846b9e733edd36343a476189c854a96007057a8fc4207a06504ad94e802b42a246ae4a0a1ed080909b60cc941ab724a
 SHA512 
dc2623608a7b59d7e0c4d25160e69f696f170e9938dc3e035edbaf6f0163b4c6139892ec8734ea2aaba997507dcf32208562e898690600dc3c199046d4d151f3

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

diff --git a/media-sound/abcm2ps/abcm2ps-8.13.10.ebuild 
b/media-sound/abcm2ps/abcm2ps-8.13.10.ebuild
deleted file mode 100644
index 2d4a35b5889..000
--- a/media-sound/abcm2ps/abcm2ps-8.13.10.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-

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

2019-06-04 Thread Andreas Sturmlechner
commit: a58f6e39aec913556246dbb222a9e19a9c21cae9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 21:51:57 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 21:51:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a58f6e39

media-video/ffdiaporama: Drop 2.2_pre20140701-r1

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../ffdiaporama-2.2_pre20140701-r1.ebuild  | 80 --
 1 file changed, 80 deletions(-)

diff --git a/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r1.ebuild 
b/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r1.ebuild
deleted file mode 100644
index 0a8509a3a0b..000
--- a/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit xdg-utils gnome2-utils qmake-utils
-
-MY_PV=${PV%_pre20140701}
-BIN_PV=${MY_PV}.devel.2014.0701
-RSC_PV=${MY_PV}.devel.2014.0503
-TMT_PV=1.0.2014.0125
-DESCRIPTION="Movie creator from photos and video clips"
-HOMEPAGE="http://ffdiaporama.tuxfamily.org;
-SRC_URI="http://download.tuxfamily.org/${PN}/Packages/Devel/${PN}_bin_${BIN_PV}.tar.gz
-   
http://download.tuxfamily.org/${PN}/Packages/Devel/${PN}_rsc_${RSC_PV}.tar.gz
-   https://dev.gentoo.org/~jstein/dist/ffdiaporama-2.2-libav11.patch
-   https://dev.gentoo.org/~jstein/dist/ffdiaporama-2.2-ffmpeg-3.0.patch
-   texturemate? ( 
http://download.tuxfamily.org/${PN}/Packages/Stable/${PN}_texturemate_${TMT_PV}.tar.gz
 )"
-
-LICENSE="GPL-2
-   texturemate? ( CC-BY-3.0 )"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="libav openclipart texturemate"
-
-RDEPEND="
-   media-gfx/exiv2
-   media-libs/taglib
-   openclipart? ( media-gfx/openclipart[svg,-gzip] )
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qthelp:5
-   dev-qt/qtmultimedia:5
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtsvg:5
-   dev-qt/qtxml:5
-   libav? ( >=media-video/libav-11:0=[encode] )
-   !libav? ( >=media-video/ffmpeg-2.8:0=[encode] )"
-DEPEND="${RDEPEND}"
-
-DOCS=( authors.txt )
-PATCHES=( "${DISTDIR}"/${PN}-${MY_PV}-{ffmpeg-3.0,libav11}.patch )
-
-S="${WORKDIR}/ffDiaporama"
-
-src_prepare() {
-   echo "SUBDIRS += ../ffDiaporama_rsc" >> ffDiaporama.pro || die
-   if use texturemate; then
-   echo "SUBDIRS += ../ffDiaporama_texturemate" >> ffDiaporama.pro 
|| die
-   fi
-   default_src_prepare
-}
-
-src_configure() {
-   eqmake5 QMAKE_CFLAGS_ISYSTEM=
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-   if use openclipart; then
-   dosym ../../clipart/openclipart 
/usr/share/ffDiaporama/clipart/openclipart
-   fi
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-   gnome2_icon_cache_update
-}



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

2019-06-04 Thread Andreas Sturmlechner
commit: 24a825873c4cb9220e0fe15fe1c1a15e85e710af
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 20:51:54 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 21:50:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24a82587

media-sound/abcm2ps: One line per dep, sort deps

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/abcm2ps/abcm2ps-8.14.4.ebuild | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/media-sound/abcm2ps/abcm2ps-8.14.4.ebuild 
b/media-sound/abcm2ps/abcm2ps-8.14.4.ebuild
index 9cb8e3df66a..644672be443 100644
--- a/media-sound/abcm2ps/abcm2ps-8.14.4.ebuild
+++ b/media-sound/abcm2ps/abcm2ps-8.14.4.ebuild
@@ -14,10 +14,12 @@ SLOT="0"
 KEYWORDS="amd64 ~ppc x86"
 IUSE="examples pango"
 
-BDEPEND="
-   virtual/pkgconfig
-"
-DEPEND="pango? ( x11-libs/pango media-libs/freetype:2 )"
+BDEPEND="virtual/pkgconfig"
+DEPEND="
+   pango? (
+   media-libs/freetype:2
+   x11-libs/pango
+   )"
 RDEPEND="${DEPEND}"
 
 src_configure() {



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

2019-06-04 Thread Andreas Sturmlechner
commit: c25903d34925c1f531f09d8fb44598459147e710
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 21:57:30 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 21:57:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c25903d3

app-editors/okteta: Drop 0.25.5

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-editors/okteta/Manifest |  1 -
 app-editors/okteta/okteta-0.25.5.ebuild | 66 -
 2 files changed, 67 deletions(-)

diff --git a/app-editors/okteta/Manifest b/app-editors/okteta/Manifest
index 62dfaad6a97..1571166e91f 100644
--- a/app-editors/okteta/Manifest
+++ b/app-editors/okteta/Manifest
@@ -1,2 +1 @@
-DIST okteta-0.25.5.tar.xz 953492 BLAKE2B 
ca8c40df7cf3fe40a4be6f6e2b9d1f787baa658910c3c14ced73f3f3d95c942c00ccfe559562b2e0330726723ffba8e4c7c526369453517e1fd45d3d5ce0336e
 SHA512 
dfe45a2bc3b3fbbce8342e6282981a63a342aee47d0d90cf07449f6974ebdbac53adc7fa9f0b37a7d003370994233f002df277ecebdb6f4c03995ce50d1dbd71
 DIST okteta-0.26.1.tar.xz 970532 BLAKE2B 
c04e0c4a2665f91cde26ee28b95f768f3074a08c8fd30920c75f3ce52fdfa717e3e6cea9acf87c3c5d53c830e5badb51faa2abcebd5b55839ea4ee52874a6d4c
 SHA512 
fa4e841c77ae255e9936b29e30fa0bc1f65594898820652ac8ba78497658ec5ef78cadf8b4d33cab09b2ee8da1d75b84377be28680b2d91c5af2dcdfe5da95e3

diff --git a/app-editors/okteta/okteta-0.25.5.ebuild 
b/app-editors/okteta/okteta-0.25.5.ebuild
deleted file mode 100644
index 207f0d58e0a..000
--- a/app-editors/okteta/okteta-0.25.5.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="true"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="amd64 x86"
-fi
-
-DESCRIPTION="Hex editor by KDE"
-HOMEPAGE="https://www.kde.org/applications/utilities/okteta
-https://utils.kde.org/projects/okteta/;
-IUSE="crypt designer"
-
-DEPEND="
-   $(add_frameworks_dep kbookmarks)
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kcodecs)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtscript 'scripttools')
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   crypt? ( app-crypt/qca:2[qt5(+)] )
-   designer? ( $(add_qt_dep designer) )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DOMIT_EXAMPLES=ON
-   $(cmake-utils_use_find_package crypt Qca-qt5)
-   -DBUILD_DESIGNERPLUGIN=$(usex designer)
-   )
-
-   kde5_src_configure
-}
-
-src_test() {
-   local myctestargs=( -j1 )
-
-   kde5_src_test
-}



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

2019-06-04 Thread Andreas Sturmlechner
commit: bb73f2053a06e13594909ed228b153858df1e5f6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 21:57:02 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 21:57:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb73f205

dev-libs/kdiagram: Drop 2.6.1 (r0)

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-libs/kdiagram/kdiagram-2.6.1.ebuild | 31 ---
 1 file changed, 31 deletions(-)

diff --git a/dev-libs/kdiagram/kdiagram-2.6.1.ebuild 
b/dev-libs/kdiagram/kdiagram-2.6.1.ebuild
deleted file mode 100644
index 6a4cc4834ec..000
--- a/dev-libs/kdiagram/kdiagram-2.6.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_EXAMPLES="true"
-KDE_QTHELP="true"
-KDE_TEST="true"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Powerful libraries (KChart, KGantt) for creating business 
diagrams"
-HOMEPAGE="https://www.kde.org/;
-IUSE=""
-
-REQUIRED_USE="test? ( examples )"
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   KEYWORDS="amd64 ~arm64 x86"
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
-fi
-
-RDEPEND="
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwidgets)
-"
-DEPEND="${RDEPEND}
-   $(add_qt_dep linguist-tools)
-"



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

2019-06-04 Thread Andreas Sturmlechner
commit: da7ec5f42b0690791b16e085dfd6e039bd483009
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 21:58:23 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 21:58:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da7ec5f4

app-editors/wily: Drop 1.0-r1

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-editors/wily/wily-1.0-r1.ebuild | 38 -
 1 file changed, 38 deletions(-)

diff --git a/app-editors/wily/wily-1.0-r1.ebuild 
b/app-editors/wily/wily-1.0-r1.ebuild
deleted file mode 100644
index cb3089155b1..000
--- a/app-editors/wily/wily-1.0-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit toolchain-funcs
-
-MY_P="${P/1.0/9libs}"
-
-DESCRIPTION="An emulation of ACME, Plan9's hybrid window system, shell and 
editor"
-HOMEPAGE="https://www.netlib.org/research/9libs/;
-SRC_URI="${HOMEPAGE}${MY_P}.tar.gz"
-
-LICENSE="Artistic"
-SLOT="0"
-KEYWORDS="x86"
-IUSE=""
-
-DEPEND="dev-libs/9libs
-   >=x11-libs/libX11-1.0.0
-   >=x11-libs/libXt-1.0.0
-   >=x11-libs/libICE-1.0.0
-   >=x11-libs/libSM-1.0.0"
-
-S="${WORKDIR}/${MY_P}"
-
-src_compile() {
-   export CC="$(tc-getCC)"
-   econf --includedir="/usr/include/9libs" || die "configure failed."
-   emake || die "make failed."
-}
-
-src_install() {
-   make DESTDIR="${D}" install || die "make install failed."
-   dodoc README
-   insinto /usr/share/${PN}
-   doins "${S}"/misc/*
-}



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

2019-06-04 Thread Andreas Sturmlechner
commit: 2907bd3420436b5cf3d5fabedcde857d77421f29
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 21:43:16 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 21:50:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2907bd34

media-sound/abcde: Add USE aiff

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/abcde/abcde-2.9.3.ebuild | 3 ++-
 media-sound/abcde/metadata.xml   | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-sound/abcde/abcde-2.9.3.ebuild 
b/media-sound/abcde/abcde-2.9.3.ebuild
index ab9d4c57800..57117596365 100644
--- a/media-sound/abcde/abcde-2.9.3.ebuild
+++ b/media-sound/abcde/abcde-2.9.3.ebuild
@@ -11,7 +11,7 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 # Enable MP3 related flags by default
-IUSE="aac cdr flac +id3tag +lame mac musepack musicbrainz normalize opus 
replaygain speex vorbis wavpack"
+IUSE="aac aiff cdr flac +id3tag +lame mac musepack musicbrainz normalize opus 
replaygain speex vorbis wavpack"
 
 # See `grep :: abcde-musicbrainz-tool` output for USE musicbrainz dependencies
 RDEPEND="
@@ -30,6 +30,7 @@ RDEPEND="
media-video/atomicparsley-wez
)
)
+   aiff? ( virtual/ffmpeg )
cdr? ( virtual/cdrtools )
flac? ( media-libs/flac )
id3tag? (

diff --git a/media-sound/abcde/metadata.xml b/media-sound/abcde/metadata.xml
index 658ab9a36ef..3069c6bba43 100644
--- a/media-sound/abcde/metadata.xml
+++ b/media-sound/abcde/metadata.xml
@@ -6,6 +6,7 @@
Gentoo Sound project


+   Enable support for Audio Interchange File 
Format (AIFF) output encoding
Support ID3, ID3v2 tagging of audio 
files
Enable support for Monkey's Audio files
Add support for normalizing audio file 
volume levels



[gentoo-commits] repo/gentoo:master commit in: media-sound/abcde/, media-sound/abcde/files/

2019-06-04 Thread Andreas Sturmlechner
commit: dc4c7b00d316faeef9f1b245d6ff5f5ad591b98b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 21:18:49 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 21:50:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc4c7b00

media-sound/abcde: 2.9.3 version bump, EAPI-7 bump

Reported-by: Derek Dolney  dolney.com>
Closes: https://bugs.gentoo.org/687230
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/abcde/Manifest |  1 +
 media-sound/abcde/abcde-2.9.3.ebuild   | 77 ++
 media-sound/abcde/files/abcde-2.9.3-Makefile.patch | 11 
 3 files changed, 89 insertions(+)

diff --git a/media-sound/abcde/Manifest b/media-sound/abcde/Manifest
index 40407ca3edf..cc26e3b0e0e 100644
--- a/media-sound/abcde/Manifest
+++ b/media-sound/abcde/Manifest
@@ -1 +1,2 @@
 DIST abcde-2.8.1.tar.gz 149238 BLAKE2B 
0adb1ea164e72292ee1e5b7e99c6bd9a92342f9eb5036280b91ad43ab62e5b0ef79652d094a81f38f4052c749d874e12da76eaf74134d07517fc8fac1f0d7e64
 SHA512 
18e9e46ec69d0b99fc5e2b71ec549e3961e5f6d7f88cef1a6c8da154689554a70cc8bc748c1ef78f81583a510f8b03906b8a4fec454aa0b06f0169d0bc4a7b36
+DIST abcde-2.9.3.tar.gz 160876 BLAKE2B 
cb3ebc372b4bfcf002beda567c2aa91dba11e77fdaeee8ec0d351fe907d6209ccb9013135db2a3ea0f85148eeaaa91f06243c607ac732a1b13f7a0a54d721fb0
 SHA512 
51a1dfa1f1d2dab6b8dad7d9f70d0139938151bc2dae0e9fc80da5385b4bba4d71c89a4d1b2dec5bd24787a542cb0caeacbef423cf32b8014cf6320c391b4236

diff --git a/media-sound/abcde/abcde-2.9.3.ebuild 
b/media-sound/abcde/abcde-2.9.3.ebuild
new file mode 100644
index 000..75cd97243d2
--- /dev/null
+++ b/media-sound/abcde/abcde-2.9.3.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Command line CD encoder"
+HOMEPAGE="https://abcde.einval.com/;
+SRC_URI="https://abcde.einval.com/download/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+# Enable MP3 related flags by default
+IUSE="aac cdparanoia cdr flac +id3tag +lame mac musepack musicbrainz normalize 
opus replaygain speex vorbis wavpack"
+
+# See `grep :: abcde-musicbrainz-tool` output for USE musicbrainz dependencies
+RDEPEND="
+   media-sound/cd-discid
+   net-misc/wget
+   virtual/eject
+   aac? (
+   media-libs/faac
+   || (
+   media-video/atomicparsley
+   media-video/atomicparsley-wez
+   )
+   )
+   cdparanoia? ( || (
+   dev-libs/libcdio-paranoia
+   media-sound/cdparanoia
+   ) )
+   cdr? ( virtual/cdrtools )
+   flac? ( media-libs/flac )
+   id3tag? (
+   dev-python/eyeD3:0.7
+   >=media-sound/id3-0.12
+   media-sound/id3v2
+   )
+   lame? ( media-sound/lame )
+   mac? (
+   media-sound/apetag
+   media-sound/mac
+   )
+   musepack? ( media-sound/musepack-tools )
+   musicbrainz? (
+   dev-perl/MusicBrainz-DiscID
+   >=dev-perl/WebService-MusicBrainz-1.0.4
+   virtual/perl-Digest-SHA
+   virtual/perl-Getopt-Long
+   )
+   normalize? ( >=media-sound/normalize-0.7.4 )
+   opus? ( media-sound/opus-tools )
+   replaygain? (
+   lame? ( media-sound/mp3gain )
+   vorbis? ( media-sound/vorbisgain )
+   )
+   speex? ( media-libs/speex )
+   vorbis? ( media-sound/vorbis-tools )
+   wavpack? ( media-sound/wavpack )
+"
+
+PATCHES=( "${FILESDIR}/${P}-Makefile.patch" )
+
+src_prepare() {
+   default
+   sed -e 's:etc/abcde.co:etc/abcde/abcde.co:g' -i abcde || die
+   sed -e '/^prefix/s/=/?=/' -e '/^sysconfdir/s/=/?=/' -i Makefile || die
+}
+
+src_install() {
+   emake DESTDIR="${D}" prefix="/usr" sysconfdir="/etc/abcde" install
+
+   dodoc changelog FAQ README
+
+   docinto examples
+   dodoc examples/*
+}

diff --git a/media-sound/abcde/files/abcde-2.9.3-Makefile.patch 
b/media-sound/abcde/files/abcde-2.9.3-Makefile.patch
new file mode 100644
index 000..01b6e9c329a
--- /dev/null
+++ b/media-sound/abcde/files/abcde-2.9.3-Makefile.patch
@@ -0,0 +1,11 @@
+--- a/Makefile 2019-02-05 11:19:03.0 +0100
 b/Makefile 2019-06-04 23:14:03.410131738 +0200
+@@ -19,8 +19,6 @@
+   $(INSTALL) -m 755 abcde cddb-tool abcde-musicbrainz-tool 
$(DESTDIR)$(bindir)
+   $(INSTALL) -d -m 755 $(DESTDIR)$(sysconfdir)
+   $(INSTALL) -m 644 abcde.conf $(DESTDIR)$(sysconfdir)
+-  $(INSTALL) -d -m 755 $(DESTDIR)$(docdir)
+-  $(INSTALL) -m 644 changelog COPYING FAQ README $(DESTDIR)$(docdir)
+   $(INSTALL) -d -m 755 $(DESTDIR)$(mandir)/man1
+   $(INSTALL) -m 644 abcde.1 cddb-tool.1 $(DESTDIR)$(mandir)/man1
+ 



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

2019-06-04 Thread Andreas Sturmlechner
commit: f8bce9d5fbcdd29591d15d928f9eeffb8c35243d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 21:56:19 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 21:56:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8bce9d5

app-office/kmymoney: Drop 5.0.3

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-office/kmymoney/Manifest  |   1 -
 app-office/kmymoney/kmymoney-5.0.3.ebuild | 125 --
 2 files changed, 126 deletions(-)

diff --git a/app-office/kmymoney/Manifest b/app-office/kmymoney/Manifest
index f1f0efb11be..81df6f2943a 100644
--- a/app-office/kmymoney/Manifest
+++ b/app-office/kmymoney/Manifest
@@ -1,2 +1 @@
-DIST kmymoney-5.0.3.tar.xz 11690060 BLAKE2B 
beb836c4753caa81ee3a06f12fce65fd584fbeaa228cba087b77284e0f3ecce8b88b030466198db62fdf23af26cee5caad59eb845653006d700cf68a0793231f
 SHA512 
9f8aaa26a3cb3f5eb2a61936ecc54f97096f98d4f0ffbfbfb6adbe099a559f797d997b1d23bb7f18d31d76182f8fa8601a70176a4bc16f5cdf2fac0af8903fc0
 DIST kmymoney-5.0.4.tar.xz 11708760 BLAKE2B 
62fd279039ef41078fddfc4a69d9a8e7c425965114ad91464ef94f7e8f72f07ed9cc16989d1ed6ee01fdc8cdd274afb231fbfe43e8a5e0c8d17c33aa17fcb70b
 SHA512 
406460f33b32941796e8b0a2fb21f783db6c2444b35b0402647e688b78ecccb82401a7a1fa7c008ffd840cbd88c82db91e367be917f9ab7b231a0208b439b91f

diff --git a/app-office/kmymoney/kmymoney-5.0.3.ebuild 
b/app-office/kmymoney/kmymoney-5.0.3.ebuild
deleted file mode 100644
index 15c71b91914..000
--- a/app-office/kmymoney/kmymoney-5.0.3.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_BRANCH="5.0"
-PYTHON_COMPAT=( python2_7 )
-
-KDE_GCC_MINIMAL="6.4"
-KDE_HANDBOOK="optional"
-KDE_TEST="forceoptional"
-VIRTUALX_REQUIRED="test"
-VIRTUALDBUS_TEST="true"
-inherit kde5 python-single-r1
-
-DESCRIPTION="Personal finance manager based on KDE Frameworks"
-HOMEPAGE="https://kmymoney.org;
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-fi
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 x86"
-IUSE="activities addressbook calendar hbci holidays ofx quotes webkit weboob"
-
-REQUIRED_USE="weboob? ( ${PYTHON_REQUIRED_USE} )"
-
-BDEPEND="virtual/pkgconfig"
-COMMON_DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kcodecs)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kitemmodels)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwallet)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep sonnet)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtsql)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   >=app-crypt/gpgme-1.7.1-r1[cxx]
-   >=app-office/libalkimia-6.0.0
-   dev-libs/gmp:0=
-   dev-libs/kdiagram:5
-   dev-libs/libgpg-error
-   activities? ( $(add_frameworks_dep kactivities) )
-   addressbook? (
-   $(add_kdeapps_dep akonadi)
-   $(add_kdeapps_dep kcontacts)
-   $(add_kdeapps_dep kidentitymanagement)
-   )
-   calendar? ( dev-libs/libical:= )
-   hbci? (
-   >=net-libs/aqbanking-5.6.5
-   >=sys-libs/gwenhywfar-4.15.3-r1[qt5]
-   )
-   holidays? ( $(add_frameworks_dep kholidays) )
-   ofx? ( dev-libs/libofx )
-   webkit? (
-   $(add_frameworks_dep kdewebkit)
-   >=dev-qt/qtwebkit-5.212.0_pre20180120:5
-   )
-   !webkit? ( $(add_qt_dep qtwebengine 'widgets') )
-   weboob? (
-   ${PYTHON_DEPS}
-   $(add_qt_dep qtconcurrent)
-   www-client/weboob[${PYTHON_USEDEP}]
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-libs/boost
-"
-RDEPEND="${COMMON_DEPEND}
-   !app-office/kmymoney:4
-   quotes? ( dev-perl/Finance-Quote )
-"
-
-pkg_setup() {
-   use weboob && python_setup
-   kde5_pkg_setup
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DUSE_QT_DESIGNER=OFF
-   $(cmake-utils_use_find_package activities KF5Activities)
-   $(cmake-utils_use_find_package addressbook KF5Akonadi)
-   $(cmake-utils_use_find_package addressbook KF5Contacts)
-  

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

2019-06-04 Thread Michał Górny
commit: c2c4d117edd043693a83710aa8c5d9036664499a
Author: Chris Mayo  gmail  com>
AuthorDate: Tue Jun  4 19:12:53 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun  4 21:30:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c4d117

media-gfx/gscan2pdf: remove old 2.4.0

Signed-off-by: Chris Mayo  gmail.com>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/11795
Signed-off-by: Michał Górny  gentoo.org>

 media-gfx/gscan2pdf/Manifest   |  1 -
 media-gfx/gscan2pdf/gscan2pdf-2.4.0.ebuild | 59 --
 2 files changed, 60 deletions(-)

diff --git a/media-gfx/gscan2pdf/Manifest b/media-gfx/gscan2pdf/Manifest
index eeac1457626..bfd3e8a5ca9 100644
--- a/media-gfx/gscan2pdf/Manifest
+++ b/media-gfx/gscan2pdf/Manifest
@@ -1,4 +1,3 @@
 DIST gscan2pdf-1.8.11.tar.xz 409212 BLAKE2B 
37cb716f13818eaffc39c210b810b845368cc5e323569e8f9d5603b5b412c4182520798321358e4c21339fdbd5f15026a0acd6421a49e7db79ecca86633c3ab0
 SHA512 
1ea09b8768771be4a1700cb8a6523d5f74fcbf0ebe459d97796032b56f896fd0c50e5ca1ed4c96aedef7e61f6952a92986153cc70173dd5ad91ccfb72461c565
-DIST gscan2pdf-2.4.0.tar.xz 437096 BLAKE2B 
947c1d3c4c726254ba61be4f7a34ae867d0af9b6ebf53e4594aeb908dfda43ff1e85791641b42e9e13b978a56cfe523a6fa23566e14ad130278d05e7836d34d8
 SHA512 
90ec9d8cc56a2fe9d7a77c928f548c87a81bdfb62f1caa491b32a42600c5677974ec613b0bf384bd806953a9a5d29ccf3077df7c0b3dd73d06866003c3a01791
 DIST gscan2pdf-2.5.1.tar.xz 440484 BLAKE2B 
375434ee633f895da29d69672faa6da5247e6f45e25b7fe394c03c2a6a6e482973365733a7d123c2a94ef40d2d7ce8666b5c632a6465f31ef09f237100fa
 SHA512 
677f9081fb4f6ecd064f965399be20802e10f470d40ef00da5afd6de37ed9914c856fe01e28daedf900e8c8bd75a798f1579a7970509fc789382bbe2b1923804
 DIST gscan2pdf-2.5.3.tar.xz 447188 BLAKE2B 
e34441c4680fbe2a03bafb12c754df143c800ca6aa56c33623ff5e26fc86d08e120794d84c1e33aa25d76498138098249ace4a7f79023fc1ff97372dcf7e76a7
 SHA512 
d8f798eadc3c2fbc8a1553bbf542f2636861aba793ab61b66449938bbe115d5e765e018f6afdcd7280b34ccadeb77febda924334f35cf5b7459f93f93c58e782

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



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

2019-06-04 Thread Michał Górny
commit: 09c3fb9a9381816695f58014de809367443b6346
Author: Chris Mayo  gmail  com>
AuthorDate: Tue Jun  4 19:12:53 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun  4 21:29:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09c3fb9a

media-gfx/gscan2pdf: version bump to 2.5.3, add test support

Signed-off-by: Chris Mayo  gmail.com>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Michał Górny  gentoo.org>

 media-gfx/gscan2pdf/Manifest   |  1 +
 media-gfx/gscan2pdf/gscan2pdf-2.5.3.ebuild | 87 ++
 2 files changed, 88 insertions(+)

diff --git a/media-gfx/gscan2pdf/Manifest b/media-gfx/gscan2pdf/Manifest
index c3fc6c68b72..eeac1457626 100644
--- a/media-gfx/gscan2pdf/Manifest
+++ b/media-gfx/gscan2pdf/Manifest
@@ -1,3 +1,4 @@
 DIST gscan2pdf-1.8.11.tar.xz 409212 BLAKE2B 
37cb716f13818eaffc39c210b810b845368cc5e323569e8f9d5603b5b412c4182520798321358e4c21339fdbd5f15026a0acd6421a49e7db79ecca86633c3ab0
 SHA512 
1ea09b8768771be4a1700cb8a6523d5f74fcbf0ebe459d97796032b56f896fd0c50e5ca1ed4c96aedef7e61f6952a92986153cc70173dd5ad91ccfb72461c565
 DIST gscan2pdf-2.4.0.tar.xz 437096 BLAKE2B 
947c1d3c4c726254ba61be4f7a34ae867d0af9b6ebf53e4594aeb908dfda43ff1e85791641b42e9e13b978a56cfe523a6fa23566e14ad130278d05e7836d34d8
 SHA512 
90ec9d8cc56a2fe9d7a77c928f548c87a81bdfb62f1caa491b32a42600c5677974ec613b0bf384bd806953a9a5d29ccf3077df7c0b3dd73d06866003c3a01791
 DIST gscan2pdf-2.5.1.tar.xz 440484 BLAKE2B 
375434ee633f895da29d69672faa6da5247e6f45e25b7fe394c03c2a6a6e482973365733a7d123c2a94ef40d2d7ce8666b5c632a6465f31ef09f237100fa
 SHA512 
677f9081fb4f6ecd064f965399be20802e10f470d40ef00da5afd6de37ed9914c856fe01e28daedf900e8c8bd75a798f1579a7970509fc789382bbe2b1923804
+DIST gscan2pdf-2.5.3.tar.xz 447188 BLAKE2B 
e34441c4680fbe2a03bafb12c754df143c800ca6aa56c33623ff5e26fc86d08e120794d84c1e33aa25d76498138098249ace4a7f79023fc1ff97372dcf7e76a7
 SHA512 
d8f798eadc3c2fbc8a1553bbf542f2636861aba793ab61b66449938bbe115d5e765e018f6afdcd7280b34ccadeb77febda924334f35cf5b7459f93f93c58e782

diff --git a/media-gfx/gscan2pdf/gscan2pdf-2.5.3.ebuild 
b/media-gfx/gscan2pdf/gscan2pdf-2.5.3.ebuild
new file mode 100644
index 000..9c77f58fad7
--- /dev/null
+++ b/media-gfx/gscan2pdf/gscan2pdf-2.5.3.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_TEST="do"
+
+inherit eutils perl-module virtualx
+
+DESCRIPTION="Scan documents, perform OCR, produce PDFs and DjVus"
+HOMEPAGE="http://gscan2pdf.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   dev-perl/Config-General
+   dev-perl/Data-UUID
+   dev-perl/Date-Calc
+   dev-perl/Filesys-Df
+   dev-perl/glib-perl
+   dev-perl/GooCanvas2
+   dev-perl/Gtk3
+   dev-perl/Gtk3-SimpleList
+   dev-perl/HTML-Parser
+   dev-perl/Image-Sane
+   dev-perl/List-MoreUtils
+   dev-perl/Locale-gettext
+   dev-perl/Log-Log4perl
+   dev-perl/PDF-API2
+   dev-perl/Proc-ProcessTable
+   dev-perl/Readonly
+   dev-perl/Set-IntSpan
+   dev-perl/Try-Tiny
+   virtual/perl-Archive-Tar
+   virtual/perl-Carp
+   virtual/perl-Data-Dumper
+   virtual/perl-File-Temp
+   virtual/perl-Getopt-Long
+   virtual/perl-threads
+   virtual/perl-threads-shared
+   media-gfx/imagemagick[png,tiff,perl]
+   media-gfx/sane-backends
+   media-libs/tiff"
+
+DEPEND="test? (
+   ${RDEPEND}
+   dev-perl/Sub-Override
+   media-libs/fontconfig
+
+   app-text/djvu[tiff]
+   app-text/poppler[utils]
+   app-text/tesseract[-opencl,osd,tiff]
+   app-text/unpaper
+   media-gfx/imagemagick[djvu,png,tiff,perl]
+   media-gfx/sane-backends[sane_backends_test]
+   media-gfx/sane-frontends
+   )"
+
+PERL_RM_FILES=( t/{90_MANIFEST,91_critic,99_pod}.t )
+
+mydoc="History"
+
+pkg_postinst() {
+   optfeature "DjVu file support" "app-text/djvu[tiff] 
media-gfx/imagemagick[djvu]"
+   optfeature "creating PostScript files from PDFs" app-text/poppler[utils]
+   optfeature "adding to an existing PDF" app-text/poppler[utils]
+   optfeature "Optical Character Recognition" app-text/tesseract[osd,tiff]
+   optfeature "scan post-processing" app-text/unpaper
+   optfeature "automatic document feeder support" media-gfx/sane-frontends
+   optfeature "sending PDFs as email attachments" x11-misc/xdg-utils
+}
+
+src_test(){
+   local confdir="${HOME}/.config/ImageMagick"
+   mkdir -p "${confdir}" || die
+   cat > "${confdir}/policy.xml" <<-EOT || die
+   
+   
+   
+   
+   EOT
+   virtx perl-module_src_test
+}



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

2019-06-04 Thread Agostino Sarubbo
commit: dda9e405e57965d8efa26ffb569a057f31421884
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 21:02:48 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 21:02:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda9e405

app-text/mupdf: s390 stable wrt bug #684972

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

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

diff --git a/app-text/mupdf/mupdf-1.14.0-r3.ebuild 
b/app-text/mupdf/mupdf-1.14.0-r3.ebuild
index f310b3ee636..19c9e02c1a8 100644
--- a/app-text/mupdf/mupdf-1.14.0-r3.ebuild
+++ b/app-text/mupdf/mupdf-1.14.0-r3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://mupdf.com/downloads/archive/${P}-source.tar.xz;
 
 LICENSE="AGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ppc64 ~s390 x86 ~amd64-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ppc64 s390 x86 ~amd64-linux 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="X curl +javascript libressl opengl ssl static-libs +vanilla"
 
 RDEPEND="



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

2019-06-04 Thread Agostino Sarubbo
commit: 513a39ee5d8efcc319b567bc373c6bfb693ba46d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:59:56 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:59:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=513a39ee

sys-libs/talloc: ia64 stable wrt bug #664316

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

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

diff --git a/sys-libs/talloc/talloc-2.1.14.ebuild 
b/sys-libs/talloc/talloc-2.1.14.ebuild
index 440cdcc32db..d0408380310 100644
--- a/sys-libs/talloc/talloc-2.1.14.ebuild
+++ b/sys-libs/talloc/talloc-2.1.14.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.samba.org/ftp/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-3 LGPL-3+ 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 ~x86-linux ~x64-macos 
~sparc-solaris ~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~sparc-solaris ~x64-solaris"
 IUSE="compat +python"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2019-06-04 Thread Agostino Sarubbo
commit: d55894d116b880a42b88841599f48948f4b2f524
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:59:34 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:59:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d55894d1

dev-util/lttng-ust: ia64 stable wrt bug #664316

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

 dev-util/lttng-ust/lttng-ust-2.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-ust/lttng-ust-2.8.1.ebuild 
b/dev-util/lttng-ust/lttng-ust-2.8.1.ebuild
index fa4342b4dda..2f9d68e96be 100644
--- a/dev-util/lttng-ust/lttng-ust-2.8.1.ebuild
+++ b/dev-util/lttng-ust/lttng-ust-2.8.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ppc ppc64 ~sparc x86"
 IUSE="examples"
 
 DEPEND="dev-libs/userspace-rcu:="



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

2019-06-04 Thread Agostino Sarubbo
commit: d61ef031854cc137fa1d2953bbf73eaed89c0a71
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:59:31 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:59:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d61ef031

dev-libs/userspace-rcu: ia64 stable wrt bug #664316

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

 dev-libs/userspace-rcu/userspace-rcu-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/userspace-rcu/userspace-rcu-0.10.1.ebuild 
b/dev-libs/userspace-rcu/userspace-rcu-0.10.1.ebuild
index 2a1262088b2..cefca5c03e1 100644
--- a/dev-libs/userspace-rcu/userspace-rcu-0.10.1.ebuild
+++ b/dev-libs/userspace-rcu/userspace-rcu-0.10.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://lttng.org/files/urcu/${P}.tar.bz2;
 
 LICENSE="LGPL-2.1"
 SLOT="0/6" # subslot = soname version
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ppc ppc64 ~sparc x86"
 IUSE="static-libs regression-test test"
 
 DEPEND="test? ( sys-process/time )"



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

2019-06-04 Thread Agostino Sarubbo
commit: e6af5d25d5b51724f54e2e83f455b0ee6ec86144
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:59:49 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:59:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6af5d25

net-fs/samba: ia64 stable wrt bug #664316

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

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

diff --git a/net-fs/samba/samba-4.8.6-r2.ebuild 
b/net-fs/samba/samba-4.8.6-r2.ebuild
index fdf14efaacd..e259498d82a 100644
--- a/net-fs/samba/samba-4.8.6-r2.ebuild
+++ b/net-fs/samba/samba-4.8.6-r2.ebuild
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/;



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

2019-06-04 Thread Agostino Sarubbo
commit: 33565f9aefd498060977250af0a9c44bad1aaac5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:59:54 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:59:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33565f9a

sys-libs/ldb: ia64 stable wrt bug #664316

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

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

diff --git a/sys-libs/ldb/ldb-1.3.6.ebuild b/sys-libs/ldb/ldb-1.3.6.ebuild
index ab24cb6707f..623144c72d8 100644
--- a/sys-libs/ldb/ldb-1.3.6.ebuild
+++ b/sys-libs/ldb/ldb-1.3.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.samba.org/ftp/pub/${PN}/${P}.tar.gz;
 
 LICENSE="LGPL-3"
 SLOT="0/${PV}"
-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="doc +ldap python"
 
 RDEPEND="



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

2019-06-04 Thread Agostino Sarubbo
commit: 617843448c7e87d5d15cc6a49f9fdcaa5d896a9b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:59:59 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:59:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61784344

sys-libs/tdb: ia64 stable wrt bug #664316

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

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

diff --git a/sys-libs/tdb/tdb-1.3.16.ebuild b/sys-libs/tdb/tdb-1.3.16.ebuild
index 126bbd80256..a90b101da44 100644
--- a/sys-libs/tdb/tdb-1.3.16.ebuild
+++ b/sys-libs/tdb/tdb-1.3.16.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://samba.org/ftp/tdb/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="python"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2019-06-04 Thread Agostino Sarubbo
commit: 577827e6c54fede4268af87e6f6abc6a23770808
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 21:00:02 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 21:00:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=577827e6

sys-libs/tevent: ia64 stable wrt bug #664316

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

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

diff --git a/sys-libs/tevent/tevent-0.9.37.ebuild 
b/sys-libs/tevent/tevent-0.9.37.ebuild
index 91b6e1b6b32..37b6a5daec4 100644
--- a/sys-libs/tevent/tevent-0.9.37.ebuild
+++ b/sys-libs/tevent/tevent-0.9.37.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.samba.org/ftp/tevent/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="elibc_glibc python"
 
 RDEPEND="!elibc_FreeBSD? ( dev-libs/libbsd[${MULTILIB_USEDEP}] )



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

2019-06-04 Thread Thomas Deutschmann
commit: 947ea45bd4823433b460304753e610f04d5bf5e2
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:41:45 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=947ea45b

app-office/kmymoney: x86 stable (bug #686340)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-office/kmymoney/kmymoney-5.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/kmymoney/kmymoney-5.0.4.ebuild 
b/app-office/kmymoney/kmymoney-5.0.4.ebuild
index 9c92a22c0ae..1d8243bf1c6 100644
--- a/app-office/kmymoney/kmymoney-5.0.4.ebuild
+++ b/app-office/kmymoney/kmymoney-5.0.4.ebuild
@@ -18,7 +18,7 @@ if [[ ${KDE_BUILD_TYPE} = release ]]; then
 fi
 
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="activities addressbook calendar hbci holidays ofx quotes webkit weboob"
 
 REQUIRED_USE="weboob? ( ${PYTHON_REQUIRED_USE} )"



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

2019-06-04 Thread Thomas Deutschmann
commit: 8d9e2b311789a6ae8a5bc6fee80478320561884d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:43:40 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d9e2b31

media-video/motion: x86 stable (bug #681494)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 media-video/motion/motion-4.1.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/motion/motion-4.1.1-r1.ebuild 
b/media-video/motion/motion-4.1.1-r1.ebuild
index 3113cd0a5fc..05a3311cb02 100644
--- a/media-video/motion/motion-4.1.1-r1.ebuild
+++ b/media-video/motion/motion-4.1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/Motion-Project/${PN}/archive/release-${PV}.tar.gz ->
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="ffmpeg libav mmal mysql postgres sqlite v4l webp"
 
 RDEPEND="



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

2019-06-04 Thread Thomas Deutschmann
commit: d1efaee68331dcf9b2d7436e583ba235ccf690e0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:44:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1efaee6

app-editors/wily: x86 stable (bug #679242)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-editors/wily/wily-1.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/wily/wily-1.0-r2.ebuild 
b/app-editors/wily/wily-1.0-r2.ebuild
index 18430e835c6..15660cf2033 100644
--- a/app-editors/wily/wily-1.0-r2.ebuild
+++ b/app-editors/wily/wily-1.0-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="${HOMEPAGE}${MY_P}.tar.gz"
 
 LICENSE="Artistic"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DEPEND="
dev-libs/9libs



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-menus/

2019-06-04 Thread Thomas Deutschmann
commit: d5f8d34d744db7b087557bd99d8d7fd604c38c40
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:31:09 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f8d34d

gnome-extra/cinnamon-menus: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gnome-extra/cinnamon-menus/cinnamon-menus-4.0.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnome-extra/cinnamon-menus/cinnamon-menus-4.0.0.ebuild 
b/gnome-extra/cinnamon-menus/cinnamon-menus-4.0.0.ebuild
index b966e8ccad3..c467e2de66e 100644
--- a/gnome-extra/cinnamon-menus/cinnamon-menus-4.0.0.ebuild
+++ b/gnome-extra/cinnamon-menus/cinnamon-menus-4.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/linuxmint/cinnamon-menus/archive/${PV}.tar.gz -> ${P
 
 LICENSE="GPL-2+ LGPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="debug +introspection"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-translations/

2019-06-04 Thread Thomas Deutschmann
commit: b848bb1316df6f978d878d2f8a59a376a6739272
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:30:50 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b848bb13

gnome-extra/cinnamon-translations: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gnome-extra/cinnamon-translations/cinnamon-translations-4.0.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/gnome-extra/cinnamon-translations/cinnamon-translations-4.0.0.ebuild 
b/gnome-extra/cinnamon-translations/cinnamon-translations-4.0.0.ebuild
index 2e0a21f6b1f..8e9e3b5d2f6 100644
--- a/gnome-extra/cinnamon-translations/cinnamon-translations-4.0.0.ebuild
+++ b/gnome-extra/cinnamon-translations/cinnamon-translations-4.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/linuxmint/cinnamon-translations/archive/${PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 DEPEND=">gnome-extra/cinnamon-settings-daemon-3.6"



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/nemo/

2019-06-04 Thread Thomas Deutschmann
commit: 0b001f2d79a432ca6d8838566ce62218f0bf3a8a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:29:39 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b001f2d

gnome-extra/nemo: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gnome-extra/nemo/nemo-4.0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/nemo/nemo-4.0.6.ebuild 
b/gnome-extra/nemo/nemo-4.0.6.ebuild
index 5d84190d07e..bf80e469e59 100644
--- a/gnome-extra/nemo/nemo-4.0.6.ebuild
+++ b/gnome-extra/nemo/nemo-4.0.6.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/linuxmint/nemo/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2+ LGPL-2+ FDL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="exif +introspection +nls packagekit selinux tracker xmp"
 RESTRICT=test
 



[gentoo-commits] repo/gentoo:master commit in: sys-boot/woeusb/

2019-06-04 Thread Thomas Deutschmann
commit: 29372137a65ced51ed246b0e7c86684f5d5d175a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:44:55 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29372137

sys-boot/woeusb: x86 stable (bug #683334)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-boot/woeusb/woeusb-3.2.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-boot/woeusb/woeusb-3.2.12.ebuild 
b/sys-boot/woeusb/woeusb-3.2.12.ebuild
index cad25750e3c..573d9db62c7 100644
--- a/sys-boot/woeusb/woeusb-3.2.12.ebuild
+++ b/sys-boot/woeusb/woeusb-3.2.12.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/slacka/WoeUSB/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="minimal"
 
 RDEPEND="



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

2019-06-04 Thread Thomas Deutschmann
commit: 76e14f1d6a74ff5c87f871d9e3b1af95546d1486
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:44:04 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76e14f1d

app-editors/okteta: x86 stable (bug #683700)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/app-editors/okteta/okteta-0.26.1.ebuild 
b/app-editors/okteta/okteta-0.26.1.ebuild
index 6ffa594faf9..4a9e25c1f16 100644
--- a/app-editors/okteta/okteta-0.26.1.ebuild
+++ b/app-editors/okteta/okteta-0.26.1.ebuild
@@ -10,7 +10,7 @@ inherit kde5
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="amd64 ~x86"
+   KEYWORDS="amd64 x86"
 fi
 
 DESCRIPTION="Hex editor by KDE"



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-screensaver/

2019-06-04 Thread Thomas Deutschmann
commit: 9617676780781bb7e4941ee64f0ea53b4917ca51
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:30:14 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96176767

gnome-extra/cinnamon-screensaver: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gnome-extra/cinnamon-screensaver/cinnamon-screensaver-4.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-4.0.1.ebuild 
b/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-4.0.1.ebuild
index 9ecb20be477..606bd2a2bd6 100644
--- a/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-4.0.1.ebuild
+++ b/gnome-extra/cinnamon-screensaver/cinnamon-screensaver-4.0.1.ebuild
@@ -14,7 +14,7 @@ LICENSE="GPL-2+"
 SLOT="0"
 IUSE="debug doc pam systemd xinerama"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 COMMON_DEPEND="
>=dev-libs/glib-2.37.3:2[dbus]



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-settings-daemon/

2019-06-04 Thread Thomas Deutschmann
commit: 59bffdddaf90a69abd484c7c5cbe9beda023c2fe
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:31:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59bffddd

gnome-extra/cinnamon-settings-daemon: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 .../cinnamon-settings-daemon/cinnamon-settings-daemon-4.0.2.ebuild| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-4.0.2.ebuild 
b/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-4.0.2.ebuild
index 22efbf589c1..ddd327b61d8 100644
--- a/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-4.0.2.ebuild
+++ b/gnome-extra/cinnamon-settings-daemon/cinnamon-settings-daemon-4.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/linuxmint/cinnamon-settings-daemon/archive/${PV}.tar
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+colord cups input_devices_wacom smartcard systemd"
 RESTRICT=test
 



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-desktop/

2019-06-04 Thread Thomas Deutschmann
commit: ed4b1ae2ed66c0ba18467e80a1785706abfb3b39
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:32:04 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed4b1ae2

gnome-extra/cinnamon-desktop: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gnome-extra/cinnamon-desktop/cinnamon-desktop-4.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/cinnamon-desktop/cinnamon-desktop-4.0.1.ebuild 
b/gnome-extra/cinnamon-desktop/cinnamon-desktop-4.0.1.ebuild
index 8f712eb3961..359414c8cd9 100644
--- a/gnome-extra/cinnamon-desktop/cinnamon-desktop-4.0.1.ebuild
+++ b/gnome-extra/cinnamon-desktop/cinnamon-desktop-4.0.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/linuxmint/cinnamon-desktop/archive/${PV}.tar.gz -> $
 
 LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
 SLOT="0/4" # subslot = libcinnamon-desktop soname version
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+introspection systemd"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2019-06-04 Thread Thomas Deutschmann
commit: 0c8f6d1d277aba8cbf7ced772a52edea73413fff
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:44:20 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c8f6d1d

sys-fs/vhba: x86 stable (bug #686700)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/sys-fs/vhba/vhba-20190410.ebuild b/sys-fs/vhba/vhba-20190410.ebuild
index cb0c8673716..157ae2ff9f9 100644
--- a/sys-fs/vhba/vhba-20190410.ebuild
+++ b/sys-fs/vhba/vhba-20190410.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/cdemu/${MY_P}.tar.bz2"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="virtual/udev"



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

2019-06-04 Thread Thomas Deutschmann
commit: 9d1be9741737939acebd4f03abefe880d3ca54b5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:32:49 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d1be974

x11-libs/xapps: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 x11-libs/xapps/xapps-1.4.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/xapps/xapps-1.4.2.ebuild 
b/x11-libs/xapps/xapps-1.4.2.ebuild
index b5abeaa603a..2ec1ee135cd 100644
--- a/x11-libs/xapps/xapps-1.4.2.ebuild
+++ b/x11-libs/xapps/xapps-1.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/linuxmint/xapps/;
 LICENSE="GPL-3"
 
 SRC_URI="https://github.com/linuxmint/xapps/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 SLOT="0"
 IUSE="introspection static-libs"



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

2019-06-04 Thread Thomas Deutschmann
commit: 59b46ac3471f24d9a34daff3469a17eb3da51f4c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:45:23 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b46ac3

media-sound/zynaddsubfx: x86 stable (bug #686966)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 media-sound/zynaddsubfx/zynaddsubfx-3.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/zynaddsubfx/zynaddsubfx-3.0.5.ebuild 
b/media-sound/zynaddsubfx/zynaddsubfx-3.0.5.ebuild
index e2fb4d3256b..e3cbf1ed921 100644
--- a/media-sound/zynaddsubfx/zynaddsubfx-3.0.5.ebuild
+++ b/media-sound/zynaddsubfx/zynaddsubfx-3.0.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/zynaddsubfx/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="alsa doc dssi +fltk jack lash portaudio"
 
 REQUIRED_USE="|| ( alsa jack portaudio )"



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

2019-06-04 Thread Thomas Deutschmann
commit: c1e379d6562db25bc22ed1e53a6289f832a1d8fe
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:43:03 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1e379d6

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

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/sys-devel/llvm/llvm-6.0.1-r2.ebuild 
b/sys-devel/llvm/llvm-6.0.1-r2.ebuild
index 97625a81a46..e63c8ba26ae 100644
--- a/sys-devel/llvm/llvm-6.0.1-r2.ebuild
+++ b/sys-devel/llvm/llvm-6.0.1-r2.ebuild
@@ -32,7 +32,7 @@ ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )
 LICENSE="UoI-NCSA rc BSD public-domain
llvm_targets_ARM? ( LLVM-Grant )"
 SLOT="$(ver_cut 1)"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86 ~amd64-fbsd ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos"
 IUSE="debug doc gold libedit +libffi ncurses test xar xml
kernel_Darwin ${ALL_LLVM_TARGETS[*]}"
 RESTRICT="!test? ( test )"



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

2019-06-04 Thread Thomas Deutschmann
commit: 19915758b8cf47d5a7649d55ab76a2983e8d6b5a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:33:26 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19915758

media-libs/Field3D: x86 stable (bug #642278)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/media-libs/Field3D/Field3D-1.7.2.ebuild 
b/media-libs/Field3D/Field3D-1.7.2.ebuild
index 1af0862f0c6..4fe5e045774 100644
--- a/media-libs/Field3D/Field3D-1.7.2.ebuild
+++ b/media-libs/Field3D/Field3D-1.7.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/imageworks/Field3D/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="mpi"
 
 BDEPEND="virtual/pkgconfig"



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

2019-06-04 Thread Thomas Deutschmann
commit: fcd58472254051f509d461d94fb460f789a511b9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:32:31 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcd58472

x11-wm/muffin: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 x11-wm/muffin/muffin-4.0.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-wm/muffin/muffin-4.0.3.ebuild 
b/x11-wm/muffin/muffin-4.0.3.ebuild
index 612e2ad001a..2d8ef25a6a8 100644
--- a/x11-wm/muffin/muffin-4.0.3.ebuild
+++ b/x11-wm/muffin/muffin-4.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> ${P}.tar.gz
 LICENSE="GPL-2+"
 SLOT="0"
 IUSE="+introspection test xinerama"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 RESTRICT="test"
 



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

2019-06-04 Thread Thomas Deutschmann
commit: b4a0928a66d19123ef2df1dc89bdba16c85e543c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:42:05 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a0928a

dev-libs/kdiagram: x86 stable (bug #686340)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-libs/kdiagram/kdiagram-2.6.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/kdiagram/kdiagram-2.6.1-r1.ebuild 
b/dev-libs/kdiagram/kdiagram-2.6.1-r1.ebuild
index 84b8bfdc1cc..d03b24c8394 100644
--- a/dev-libs/kdiagram/kdiagram-2.6.1-r1.ebuild
+++ b/dev-libs/kdiagram/kdiagram-2.6.1-r1.ebuild
@@ -10,7 +10,7 @@ VIRTUALX_REQUIRED="test"
 inherit kde5
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   KEYWORDS="amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 x86"
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cjs/

2019-06-04 Thread Thomas Deutschmann
commit: 2f84278f475a737cf5e3f65b94ebdc7a3e3c2b78
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:30:37 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f84278f

gnome-extra/cjs: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gnome-extra/cjs/cjs-4.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/cjs/cjs-4.0.0-r1.ebuild 
b/gnome-extra/cjs/cjs-4.0.0-r1.ebuild
index ac8896b3736..71e459d64bf 100644
--- a/gnome-extra/cjs/cjs-4.0.0-r1.ebuild
+++ b/gnome-extra/cjs/cjs-4.0.0-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/linuxmint/cjs/archive/${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )"
 SLOT="0"
 IUSE="+cairo examples gtk test"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 RDEPEND="
dev-lang/spidermonkey:52



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

2019-06-04 Thread Thomas Deutschmann
commit: 703e5e8246a2b20896d6d2f4a1b359c45106883e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:33:08 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:58:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=703e5e82

media-video/ffdiaporama: x86 stable (bug #686452)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r2.ebuild 
b/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r2.ebuild
index f9cdfff4684..b67615051ed 100644
--- a/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r2.ebuild
+++ b/media-video/ffdiaporama/ffdiaporama-2.2_pre20140701-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -21,7 +21,7 @@ 
SRC_URI="https://download.tuxfamily.org/${PN}/Packages/Devel/${PN}_bin_${BIN_PV}
 LICENSE="GPL-2
texturemate? ( CC-BY-3.0 )"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="libav openclipart texturemate"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-control-center/

2019-06-04 Thread Thomas Deutschmann
commit: 7075462c7b0eba6749a28a0626f5630c8ba87542
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:28:43 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7075462c

gnome-extra/cinnamon-control-center: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 .../cinnamon-control-center/cinnamon-control-center-4.0.0.ebuild  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/gnome-extra/cinnamon-control-center/cinnamon-control-center-4.0.0.ebuild 
b/gnome-extra/cinnamon-control-center/cinnamon-control-center-4.0.0.ebuild
index 2b78cee3d3f..f5e5a58d506 100644
--- a/gnome-extra/cinnamon-control-center/cinnamon-control-center-4.0.0.ebuild
+++ b/gnome-extra/cinnamon-control-center/cinnamon-control-center-4.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/linuxmint/cinnamon-control-center/archive/${PV}.tar.
 LICENSE="GPL-2+"
 SLOT="0"
 IUSE="+colord +cups debug input_devices_wacom systemd"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 # False positives caused by nested configure scripts
 QA_CONFIGURE_OPTIONS=".*"



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

2019-06-04 Thread Thomas Deutschmann
commit: e47c4e625244ffe9a3b4407c4713264fb21df002
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:26:41 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e47c4e62

media-gfx/argyllcms: x86 stable (bug #684636)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/media-gfx/argyllcms/argyllcms-2.1.1.ebuild 
b/media-gfx/argyllcms/argyllcms-2.1.1.ebuild
index 13a4b210e34..ef4e72f84e6 100644
--- a/media-gfx/argyllcms/argyllcms-2.1.1.ebuild
+++ b/media-gfx/argyllcms/argyllcms-2.1.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://www.argyllcms.com/${MY_P}_src.zip;
 
 LICENSE="AGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 hppa ~x86"
+KEYWORDS="~amd64 ~arm64 hppa x86"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon-session/

2019-06-04 Thread Thomas Deutschmann
commit: a1a9e9ec0f6299d41e6c29cda1187796989b6972
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:29:07 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a9e9ec

gnome-extra/cinnamon-session: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gnome-extra/cinnamon-session/cinnamon-session-4.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/cinnamon-session/cinnamon-session-4.0.0-r1.ebuild 
b/gnome-extra/cinnamon-session/cinnamon-session-4.0.0-r1.ebuild
index 54fe4a32199..e9c6fa57b92 100644
--- a/gnome-extra/cinnamon-session/cinnamon-session-4.0.0-r1.ebuild
+++ b/gnome-extra/cinnamon-session/cinnamon-session-4.0.0-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/linuxmint/cinnamon-session/archive/${PV}.tar.gz -> $
 
 LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="doc elogind ipv6 systemd"
 REQUIRED_USE="^^ ( elogind systemd )"
 



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/cinnamon/

2019-06-04 Thread Thomas Deutschmann
commit: 4e8235c6f19681bb1ad4adcfa18d594004eea555
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:28:12 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e8235c6

gnome-extra/cinnamon: x86 stable (bug #687348)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gnome-extra/cinnamon/cinnamon-4.0.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/cinnamon/cinnamon-4.0.3-r2.ebuild 
b/gnome-extra/cinnamon/cinnamon-4.0.3-r2.ebuild
index 01d93daa666..4f3f0ec4da3 100644
--- a/gnome-extra/cinnamon/cinnamon-4.0.3-r2.ebuild
+++ b/gnome-extra/cinnamon/cinnamon-4.0.3-r2.ebuild
@@ -27,7 +27,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}
|| ( $(python_gen_useflags 'python3*') )
 "
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 COMMON_DEPEND="${PYTHON_DEPS}
app-accessibility/at-spi2-atk:2



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

2019-06-04 Thread Thomas Deutschmann
commit: b8fefd9b1fb5c1253a8ff07aded407484c78fe9a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun  4 20:27:08 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun  4 20:57:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8fefd9b

sys-apps/bleachbit: x86 stable (bug #686258)

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/sys-apps/bleachbit/bleachbit-2.2.ebuild 
b/sys-apps/bleachbit/bleachbit-2.2.ebuild
index cb4c5a71633..02a519d7392 100644
--- a/sys-apps/bleachbit/bleachbit-2.2.ebuild
+++ b/sys-apps/bleachbit/bleachbit-2.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+gtk"
 
 RDEPEND="gtk? ( dev-python/pygtk:2[$PYTHON_USEDEP] )"



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

2019-06-04 Thread Sergei Trofimovich
commit: 094fca54ea5836935ed36a3cc0a86fd3a4e4c3f6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun  4 20:45:37 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun  4 20:57:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=094fca54

sys-devel/gcc: stable 8.3.0-r1 for hppa, bug #685144

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-devel/gcc/gcc-8.3.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gcc/gcc-8.3.0-r1.ebuild 
b/sys-devel/gcc/gcc-8.3.0-r1.ebuild
index 6edc590338d..eb795f49ca9 100644
--- a/sys-devel/gcc/gcc-8.3.0-r1.ebuild
+++ b/sys-devel/gcc/gcc-8.3.0-r1.ebuild
@@ -7,7 +7,7 @@ PATCH_VER="1.1"
 
 inherit toolchain
 
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 RDEPEND=""
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-init-scripts/

2019-06-04 Thread Agostino Sarubbo
commit: 98823a1f75edb74d55a01f849b9379d49c2e7927
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:57:03 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:57:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98823a1f

dev-db/mysql-init-scripts: ppc stable wrt bug #670808

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

 dev-db/mysql-init-scripts/mysql-init-scripts-2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql-init-scripts/mysql-init-scripts-2.3.ebuild 
b/dev-db/mysql-init-scripts/mysql-init-scripts-2.3.ebuild
index 26152bab62c..479db65fb66 100644
--- a/dev-db/mysql-init-scripts/mysql-init-scripts-2.3.ebuild
+++ b/dev-db/mysql-init-scripts/mysql-init-scripts-2.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI=""
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~x86-fbsd"
 IUSE=""
 
 DEPEND=""



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

2019-06-04 Thread Agostino Sarubbo
commit: ef477120d791616f7caa3c1f99d4628e77f493d5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:57:14 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:57:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef477120

dev-db/phpmyadmin: ppc stable wrt bug #672938

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

 dev-db/phpmyadmin/phpmyadmin-4.8.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/phpmyadmin/phpmyadmin-4.8.5.ebuild 
b/dev-db/phpmyadmin/phpmyadmin-4.8.5.ebuild
index 91a1c7541e7..43eb7003543 100644
--- a/dev-db/phpmyadmin/phpmyadmin-4.8.5.ebuild
+++ b/dev-db/phpmyadmin/phpmyadmin-4.8.5.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://www.phpmyadmin.net/;
 SRC_URI="https://files.phpmyadmin.net/${MY_PN}/${MY_PV}/${MY_P}.tar.xz;
 
 LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 sparc x86 ~x86-fbsd 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="setup"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-print/cups/

2019-06-04 Thread Agostino Sarubbo
commit: 5803a398e100d8a532e8644f7338a653ada5bc3e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:57:09 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:57:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5803a398

net-print/cups: ppc stable wrt bug #672742

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

 net-print/cups/cups-2.2.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/cups/cups-2.2.11.ebuild 
b/net-print/cups/cups-2.2.11.ebuild
index 5fb5c49d9e2..6f3de10b022 100644
--- a/net-print/cups/cups-2.2.11.ebuild
+++ b/net-print/cups/cups-2.2.11.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]]; then
 else
#SRC_URI="https://github.com/apple/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"

SRC_URI="https://github.com/apple/cups/releases/download/v${PV}/${P}-source.tar.gz;
-   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
+   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
 fi
 
 DESCRIPTION="The Common Unix Printing System"



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

2019-06-04 Thread Agostino Sarubbo
commit: bd78db60aea423efaab5145ab143078595d34bb1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:57:00 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:57:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd78db60

dev-db/mariadb: ppc stable wrt bug #670808

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-db/mariadb/mariadb-10.2.22-r1.ebuild 
b/dev-db/mariadb/mariadb-10.2.22-r1.ebuild
index b681242f1a4..90a02ff89a6 100644
--- a/dev-db/mariadb/mariadb-10.2.22-r1.ebuild
+++ b/dev-db/mariadb/mariadb-10.2.22-r1.ebuild
@@ -42,7 +42,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2019-06-04 Thread Agostino Sarubbo
commit: 9cd3074fbc74bc668338b37357936aa3218ce5e9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:53:23 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:53:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cd3074f

app-misc/tdl: amd64 stable wrt bug #683884

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-misc/tdl/tdl-1.5.2-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tdl/tdl-1.5.2-r3.ebuild b/app-misc/tdl/tdl-1.5.2-r3.ebuild
index bf296a8e67c..28dca9d47c7 100644
--- a/app-misc/tdl/tdl-1.5.2-r3.ebuild
+++ b/app-misc/tdl/tdl-1.5.2-r3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="doc readline"
 
 RDEPEND="



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

2019-06-04 Thread Agostino Sarubbo
commit: e933673ad325613453697ba3fdb37db308085809
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:54:00 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:54:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e933673a

media-sound/abcm2ps: amd64 stable wrt bug #681410

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 media-sound/abcm2ps/abcm2ps-8.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/abcm2ps/abcm2ps-8.14.4.ebuild 
b/media-sound/abcm2ps/abcm2ps-8.14.4.ebuild
index cae3c4401e4..9cb8e3df66a 100644
--- a/media-sound/abcm2ps/abcm2ps-8.14.4.ebuild
+++ b/media-sound/abcm2ps/abcm2ps-8.14.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/leesavide/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="examples pango"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-fonts/arabeyes-fonts/

2019-06-04 Thread Agostino Sarubbo
commit: d416ae8d6f72ba9cf55722d517f2f4994ee96d5a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:54:15 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:54:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d416ae8d

media-fonts/arabeyes-fonts: amd64 stable wrt bug #683876

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild 
b/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild
index f9d43847878..41ace604a14 100644
--- a/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild
+++ b/media-fonts/arabeyes-fonts/arabeyes-fonts-2.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/arabeyes/${MY_PN}_${PV}.tar.bz2"
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc s390 ~sh ~sparc x86 ~x86-fbsd"
 
 FONT_SUFFIX="ttf"
 



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

2019-06-04 Thread Agostino Sarubbo
commit: d936d85f90db426cc9233a5486b89d2257f6eaaf
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:54:19 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:54:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d936d85f

media-sound/rplay: amd64 stable wrt bug #683878

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 media-sound/rplay/rplay-3.3.2-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/rplay/rplay-3.3.2-r3.ebuild 
b/media-sound/rplay/rplay-3.3.2-r3.ebuild
index a3e73222a9c..2c750a251c8 100644
--- a/media-sound/rplay/rplay-3.3.2-r3.ebuild
+++ b/media-sound/rplay/rplay-3.3.2-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}dist/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~s390 sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~s390 sparc x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-sound/gsm"



[gentoo-commits] repo/gentoo:master commit in: app-forensics/memdump/

2019-06-04 Thread Agostino Sarubbo
commit: a0f5d692bdb402c828fd1fe4b59a08df04b008d2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:54:23 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:54:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f5d692

app-forensics/memdump: amd64 stable wrt bug #683882

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-forensics/memdump/memdump-1.01-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-forensics/memdump/memdump-1.01-r1.ebuild 
b/app-forensics/memdump/memdump-1.01-r1.ebuild
index 94c56047b02..1c531655322 100644
--- a/app-forensics/memdump/memdump-1.01-r1.ebuild
+++ b/app-forensics/memdump/memdump-1.01-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.porcupine.org/forensics/${P}.tar.gz;
 
 LICENSE="IBM"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 
 PATCHES=( "${FILESDIR}"/${P}-linux3.patch )
 



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

2019-06-04 Thread Agostino Sarubbo
commit: bf3915032f4397ea084e4c9538cb07bae28f0baf
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:53:55 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:53:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf391503

sys-kernel/dracut: amd64 stable wrt bug #680890

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 sys-kernel/dracut/dracut-048-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/dracut/dracut-048-r1.ebuild 
b/sys-kernel/dracut/dracut-048-r1.ebuild
index 613d658b4ca..e2d3cf1647f 100644
--- a/sys-kernel/dracut/dracut-048-r1.ebuild
+++ b/sys-kernel/dracut/dracut-048-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://kernel/linux/utils/boot/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 sparc x86"
 IUSE="debug selinux"
 
 # Tests need root privileges, bug #298014



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

2019-06-04 Thread Agostino Sarubbo
commit: 1201fbdb91e929e156499bd7d6e4cc74d863416a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:53:29 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:53:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1201fbdb

sys-process/parallel: amd64 stable wrt bug #684188

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 sys-process/parallel/parallel-20190322.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/parallel/parallel-20190322.ebuild 
b/sys-process/parallel/parallel-20190322.ebuild
index 18bc1771d7f..c2cccfe01b9 100644
--- a/sys-process/parallel/parallel-20190322.ebuild
+++ b/sys-process/parallel/parallel-20190322.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="dev-lang/perl:=



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

2019-06-04 Thread Agostino Sarubbo
commit: 6cae1ab39640b5620e9939c364ed51a2e9b45110
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:53:33 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:53:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cae1ab3

media-video/blinkentools: amd64 stable wrt bug #684210

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/media-video/blinkentools/blinkentools-2.9-r1.ebuild 
b/media-video/blinkentools/blinkentools-2.9-r1.ebuild
index 3d99422fde2..86bc1954ebe 100644
--- a/media-video/blinkentools/blinkentools-2.9-r1.ebuild
+++ b/media-video/blinkentools/blinkentools-2.9-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://blinkenlights.de/dist/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 DEPEND="media-libs/blib
media-libs/libmng"



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

2019-06-04 Thread Agostino Sarubbo
commit: 8d51203850437a1043b5033faf0fc8f07152f07a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:53:19 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:53:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d512038

net-firewall/ipset: amd64 stable wrt bug #663616

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 net-firewall/ipset/ipset-6.38.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/ipset/ipset-6.38.ebuild 
b/net-firewall/ipset/ipset-6.38.ebuild
index a2ebc6e6e4f..687c9290f43 100644
--- a/net-firewall/ipset/ipset-6.38.ebuild
+++ b/net-firewall/ipset/ipset-6.38.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://ipset.netfilter.org/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ppc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ~x86"
 
 RDEPEND=">=net-firewall/iptables-1.4.7
net-libs/libmnl"



[gentoo-commits] repo/gentoo:master commit in: net-print/cups/

2019-06-04 Thread Agostino Sarubbo
commit: f0b0882553ec8ba31348e671f8392e20577e98f9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:53:44 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:53:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0b08825

net-print/cups: amd64 stable wrt bug #672742

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 net-print/cups/cups-2.2.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-print/cups/cups-2.2.11.ebuild 
b/net-print/cups/cups-2.2.11.ebuild
index 7952450f19f..5fb5c49d9e2 100644
--- a/net-print/cups/cups-2.2.11.ebuild
+++ b/net-print/cups/cups-2.2.11.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]]; then
 else
#SRC_URI="https://github.com/apple/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"

SRC_URI="https://github.com/apple/cups/releases/download/v${PV}/${P}-source.tar.gz;
-   KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
+   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
 fi
 
 DESCRIPTION="The Common Unix Printing System"



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

2019-06-04 Thread Agostino Sarubbo
commit: 30864ca8371d4ca6c9c8777eb87c904ea2abed41
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:54:04 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:54:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30864ca8

dev-vcs/bfg: amd64 stable wrt bug #683100

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-vcs/bfg/bfg-1.13.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-vcs/bfg/bfg-1.13.0.ebuild b/dev-vcs/bfg/bfg-1.13.0.ebuild
index d321b327388..491e6642dfc 100644
--- a/dev-vcs/bfg/bfg-1.13.0.ebuild
+++ b/dev-vcs/bfg/bfg-1.13.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="https://repo1.maven.org/maven2/com/madgag/${PN}/${PV}/${P}.jar;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND=">=virtual/jre-1.7"
 



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

2019-06-04 Thread Agostino Sarubbo
commit: 2d780ea47da361cb45e5c15cc243c0aa96f90486
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 20:54:11 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 20:54:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d780ea4

app-editors/scite: amd64 stable wrt bug #683652

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/app-editors/scite/scite-4.1.3.ebuild 
b/app-editors/scite/scite-4.1.3.ebuild
index 34f980abbb4..35836ad1ea2 100644
--- a/app-editors/scite/scite-4.1.3.ebuild
+++ b/app-editors/scite/scite-4.1.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://www.scintilla.org/${PN}${MY_PV}.tgz -> 
${P}.tgz"
 
 LICENSE="HPND lua? ( MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="lua"
 
 RDEPEND="



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

2019-06-04 Thread Jeroen Roovers
commit: 17418e89902ac41bb1e6a59036e7dcd0d180511b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jun  4 20:38:31 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jun  4 20:39:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17418e89

net-libs/nodejs: Version 12.4.0

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-libs/nodejs/Manifest |   1 +
 net-libs/nodejs/nodejs-12.4.0.ebuild | 208 +++
 2 files changed, 209 insertions(+)

diff --git a/net-libs/nodejs/Manifest b/net-libs/nodejs/Manifest
index 7eaf335aa89..2c1c284254c 100644
--- a/net-libs/nodejs/Manifest
+++ b/net-libs/nodejs/Manifest
@@ -5,6 +5,7 @@ DIST node-v11.14.0.tar.xz 22106812 BLAKE2B 
3a8dd9feb5916f235bf69d0610e32c1861e64
 DIST node-v11.15.0.tar.xz 22115480 BLAKE2B 
ed1f621e46d24051f8d84255875e7cb2c1bc0f9432a12fcc35dc5e336a71bb3e7f511146d112d1f236f9f978a68987d80331c22699479ce63b7bf30e50643219
 SHA512 
48270620fab3eef86c21387b316ce9054e2b0aac60a36f7fc08d18ad4a11c8d2082886ca20a455fb4a74a561d7e97c77403227ec9a83a13c47fa230b47a5af2e
 DIST node-v12.3.0.tar.xz 22448392 BLAKE2B 
8c6e40d9bcfee315b6bb5f97846db27ebeae2520fcde5ede942af2f24032101c06653dded9d4fa77992fcdaf5b0f67452e5e3cbb032bd33cde4dc496a652c283
 SHA512 
4b97524781efb8c284337b36d1b02576aa6703aa37d0775329eff735f38bcb5391364bd420914fa75088b97e72fe087e263a41fb2367fc8e8f7f63ebf4a949e6
 DIST node-v12.3.1.tar.xz 22462972 BLAKE2B 
f28b5594aca3701735a178873ae426ebde27a6abb5b13115c6ca2a32bb2e2532f60a96722b07737246bdf8a1dce799e86f920a355278ad8619d9931319a6e81a
 SHA512 
40e05550d48b0b8739fcd6ef66a70e53e85106af486c2f99aad58fe10c8f33e5473ab5afb59849960ce828f5c8bb21f26cecbbfb31852a2f2c6aa3916449b44d
+DIST node-v12.4.0.tar.xz 22479676 BLAKE2B 
86abd574843a8aa8a17fed378e3041288eea1f41c51f0613150129be9bd38ce83e88dde884cef81fe84f746f47f027ffe37bc07773112c4a9b1a3b12ffd40ee2
 SHA512 
04a9eeedaef2c151e993d9ca3d43d56d85e24b5f5d04fbee1b4556d192badb3e4f3c735dee58abf0a43775d2de335f054e23aedae48140148e2466245311d306
 DIST node-v4.9.1.tar.xz 13250164 BLAKE2B 
7a689b99bb4bf507f7f21dd2c096a5766d023a8174c0f468cab37365af1920b8700da04157e1a406917790524255ef32c243a74662fd50ef7d3567d189dac9cf
 SHA512 
690c9fdf608e5194069a10955bdd94ec87cb1c308f13bc4d2cae92fa01436ace10fadf58f2e51d477dde6c570b23edc1c71fafea79bfc9cab2903eb2fa5f87aa
 DIST node-v6.14.4.tar.xz 15842824 BLAKE2B 
fc56364be64fe5824e2bb50d861ebf8f58f9895f2c9c108b8df3315b127ffb2755eac85c28165ac9779adab4611ce8f5ea1a5745f43ebaa1389e82b8215c6396
 SHA512 
1ead0c097ec125230dd631f19a5c3ec06a1371f9ca3b392b5ad08fcc227dd0142f33ad52f96890c2c17448a4951a635b9099dfff00d7d8b3ffb59b07904d1bfa
 DIST node-v6.17.1.tar.xz 15858444 BLAKE2B 
ad050f71452f0ddf989e66a4eb02e88e4e5001faa2bcb0eae6b57784da87ba1d8251201e3a3d15245bb4d846f31f39854ddfae47aa1212c0526ec717438ba778
 SHA512 
6938c4864a96f5698ebc4e9a1228644820789d5402f42348eb1ff9ccd64f31bb91309a1f3301636b1117424c88b0b41b42baae51a1070d5c532604e5d7d7b868

diff --git a/net-libs/nodejs/nodejs-12.4.0.ebuild 
b/net-libs/nodejs/nodejs-12.4.0.ebuild
new file mode 100644
index 000..1d6bf82084f
--- /dev/null
+++ b/net-libs/nodejs/nodejs-12.4.0.ebuild
@@ -0,0 +1,208 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="threads"
+inherit bash-completion-r1 flag-o-matic pax-utils python-single-r1 
toolchain-funcs
+
+DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine"
+HOMEPAGE="https://nodejs.org/;
+SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz;
+
+LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos"
+IUSE="cpu_flags_x86_sse2 debug doc icu inspector +npm +snapshot +ssl systemtap 
test"
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   inspector? ( icu ssl )
+   npm? ( ssl )
+"
+
+RDEPEND="
+   >=dev-libs/libuv-1.29.1:=
+   >=net-dns/c-ares-1.15.0
+   >=net-libs/http-parser-2.8.0:=
+   >=net-libs/nghttp2-1.38.0
+   sys-libs/zlib
+   icu? ( >=dev-libs/icu-64.2:= )
+   ssl? ( >=dev-libs/openssl-1.1.1:0= )
+"
+DEPEND="
+   ${RDEPEND}
+   ${PYTHON_DEPS}
+   systemtap? ( dev-util/systemtap )
+   test? ( net-misc/curl )
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-10.3.0-global-npm-config.patch
+   "${FILESDIR}"/${PN}--llhttp.patch
+)
+S="${WORKDIR}/node-v${PV}"
+
+pkg_pretend() {
+   (use x86 && ! use cpu_flags_x86_sse2) && \
+   die "Your CPU doesn't support the required SSE2 instruction."
+
+   ( [[ ${MERGE_TYPE} != "binary" ]] && ! test-flag-CXX -std=c++11 ) && \
+   die "Your compiler doesn't support C++11. Use GCC 4.8, Clang 
3.3 or newer."
+}
+
+src_prepare() {
+   tc-export CC CXX PKG_CONFIG
+   export V=1
+   export BUILDTYPE=Release
+
+   # fix compilation on Darwin

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

2019-06-04 Thread Jeroen Roovers
commit: 9b10a112e87bf31998ac95867956e222300230ae
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jun  4 20:39:26 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jun  4 20:39:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b10a112

net-libs/nodejs: Old

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-libs/nodejs/Manifest |   1 -
 net-libs/nodejs/nodejs-12.3.0.ebuild | 208 ---
 2 files changed, 209 deletions(-)

diff --git a/net-libs/nodejs/Manifest b/net-libs/nodejs/Manifest
index 2c1c284254c..99d7df16991 100644
--- a/net-libs/nodejs/Manifest
+++ b/net-libs/nodejs/Manifest
@@ -3,7 +3,6 @@ DIST node-v10.15.3.tar.xz 20262632 BLAKE2B 
d65d4e274fa829be5cda1970b0ebe7081e847
 DIST node-v10.16.0.tar.xz 21480088 BLAKE2B 
de91e718893aa0bb87b75225a484281370ca1054fed919d6177911ca8e57228a0925c077a02397efd05594f72438d47b264d6f4b91623173e3a577a58a5d86db
 SHA512 
df197c7b929fe1e0acf0334dbeb45be4c0cfa3266f9ddb513eafffcd6405bc02cba2fcbd34a7a5bef2e45a1d61ef3734ca0afe7295904ed563744fe06751cc62
 DIST node-v11.14.0.tar.xz 22106812 BLAKE2B 
3a8dd9feb5916f235bf69d0610e32c1861e64f427b6de5ec27b3634268f273826f271cf5ea821042420d3b3f348124be2ce2fda13d0addea092db1338c9f95f7
 SHA512 
4e8033ea0f326fe5a8372c81771cd58242881ac7db905f697ce79ef9cb3ba2dfe2b94fb24a36775761c72ac531096c5e18a8574f933d76c1b652b18419b25446
 DIST node-v11.15.0.tar.xz 22115480 BLAKE2B 
ed1f621e46d24051f8d84255875e7cb2c1bc0f9432a12fcc35dc5e336a71bb3e7f511146d112d1f236f9f978a68987d80331c22699479ce63b7bf30e50643219
 SHA512 
48270620fab3eef86c21387b316ce9054e2b0aac60a36f7fc08d18ad4a11c8d2082886ca20a455fb4a74a561d7e97c77403227ec9a83a13c47fa230b47a5af2e
-DIST node-v12.3.0.tar.xz 22448392 BLAKE2B 
8c6e40d9bcfee315b6bb5f97846db27ebeae2520fcde5ede942af2f24032101c06653dded9d4fa77992fcdaf5b0f67452e5e3cbb032bd33cde4dc496a652c283
 SHA512 
4b97524781efb8c284337b36d1b02576aa6703aa37d0775329eff735f38bcb5391364bd420914fa75088b97e72fe087e263a41fb2367fc8e8f7f63ebf4a949e6
 DIST node-v12.3.1.tar.xz 22462972 BLAKE2B 
f28b5594aca3701735a178873ae426ebde27a6abb5b13115c6ca2a32bb2e2532f60a96722b07737246bdf8a1dce799e86f920a355278ad8619d9931319a6e81a
 SHA512 
40e05550d48b0b8739fcd6ef66a70e53e85106af486c2f99aad58fe10c8f33e5473ab5afb59849960ce828f5c8bb21f26cecbbfb31852a2f2c6aa3916449b44d
 DIST node-v12.4.0.tar.xz 22479676 BLAKE2B 
86abd574843a8aa8a17fed378e3041288eea1f41c51f0613150129be9bd38ce83e88dde884cef81fe84f746f47f027ffe37bc07773112c4a9b1a3b12ffd40ee2
 SHA512 
04a9eeedaef2c151e993d9ca3d43d56d85e24b5f5d04fbee1b4556d192badb3e4f3c735dee58abf0a43775d2de335f054e23aedae48140148e2466245311d306
 DIST node-v4.9.1.tar.xz 13250164 BLAKE2B 
7a689b99bb4bf507f7f21dd2c096a5766d023a8174c0f468cab37365af1920b8700da04157e1a406917790524255ef32c243a74662fd50ef7d3567d189dac9cf
 SHA512 
690c9fdf608e5194069a10955bdd94ec87cb1c308f13bc4d2cae92fa01436ace10fadf58f2e51d477dde6c570b23edc1c71fafea79bfc9cab2903eb2fa5f87aa

diff --git a/net-libs/nodejs/nodejs-12.3.0.ebuild 
b/net-libs/nodejs/nodejs-12.3.0.ebuild
deleted file mode 100644
index 54f1648d778..000
--- a/net-libs/nodejs/nodejs-12.3.0.ebuild
+++ /dev/null
@@ -1,208 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="threads"
-inherit bash-completion-r1 flag-o-matic pax-utils python-single-r1 
toolchain-funcs
-
-DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine"
-HOMEPAGE="https://nodejs.org/;
-SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz;
-
-LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos"
-IUSE="cpu_flags_x86_sse2 debug doc icu inspector +npm +snapshot +ssl systemtap 
test"
-REQUIRED_USE="
-   ${PYTHON_REQUIRED_USE}
-   inspector? ( icu ssl )
-   npm? ( ssl )
-"
-
-RDEPEND="
-   >=dev-libs/libuv-1.28.0:=
-   >=net-dns/c-ares-1.15.0
-   >=net-libs/http-parser-2.8.0:=
-   >=net-libs/nghttp2-1.38.0
-   sys-libs/zlib
-   icu? ( >=dev-libs/icu-64.2:= )
-   ssl? ( >=dev-libs/openssl-1.1.1:0= )
-"
-DEPEND="
-   ${RDEPEND}
-   ${PYTHON_DEPS}
-   systemtap? ( dev-util/systemtap )
-   test? ( net-misc/curl )
-"
-PATCHES=(
-   "${FILESDIR}"/${PN}-10.3.0-global-npm-config.patch
-   "${FILESDIR}"/${PN}--llhttp.patch
-)
-S="${WORKDIR}/node-v${PV}"
-
-pkg_pretend() {
-   (use x86 && ! use cpu_flags_x86_sse2) && \
-   die "Your CPU doesn't support the required SSE2 instruction."
-
-   ( [[ ${MERGE_TYPE} != "binary" ]] && ! test-flag-CXX -std=c++11 ) && \
-   die "Your compiler doesn't support C++11. Use GCC 4.8, Clang 
3.3 or newer."
-}
-
-src_prepare() {
-   tc-export CC CXX PKG_CONFIG
-   export V=1
-   export BUILDTYPE=Release
-
-   # fix compilation on Darwin
- 

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

2019-06-04 Thread Alfredo Tupone
commit: e6b4639944e6e7626ac2e2e2325500daf4401e71
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Tue Jun  4 20:27:29 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Jun  4 20:27:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6b46399

dev-ada/gnatcoll-db: Fix dependency

Signed-off-by: Alfredo Tupone  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-ada/gnatcoll-db/gnatcoll-db-2018-r1.ebuild | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-ada/gnatcoll-db/gnatcoll-db-2018-r1.ebuild 
b/dev-ada/gnatcoll-db/gnatcoll-db-2018-r1.ebuild
index 98215d07880..8e99e1edcd4 100644
--- a/dev-ada/gnatcoll-db/gnatcoll-db-2018-r1.ebuild
+++ b/dev-ada/gnatcoll-db/gnatcoll-db-2018-r1.ebuild
@@ -18,21 +18,22 @@ KEYWORDS="~amd64 ~x86"
 IUSE="gnat_2016 gnat_2017 +gnat_2018 gnat_2019 gnatcoll_db2ada gnatinspect 
postgres
+shared sql sqlite static-libs static-pic xref"
 
-RDEPEND="dev-ada/gnatcoll-core[gnat_2016=,gnat_2017=,gnat_2018=,gnat_2019=]
+RDEPEND="dev-ada/gnatcoll-core[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]
dev-ada/gnatcoll-core[shared?,static-libs?,static-pic?]
sqlite? ( dev-db/sqlite:3 )
postgres? ( dev-db/postgresql:* )
xref? (

dev-ada/gnatcoll-bindings[iconv,shared?,static-libs?,static-pic?]
-   
dev-ada/gnatcoll-bindings[gnat_2016=,gnat_2017=,gnat_2018=,gnat_2019=]
+   
dev-ada/gnatcoll-bindings[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]
)"
 DEPEND="${RDEPEND}
-   dev-ada/gprbuild[gnat_2016=,gnat_2017=,gnat_2018=,gnat_2019=]"
+   
dev-ada/gprbuild[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]"
 
 REQUIRED_USE="gnatinspect? ( xref )
xref? ( sqlite )
sqlite? ( sql )
-   gnatcoll_db2ada? ( sql )"
+   gnatcoll_db2ada? ( sql )
+   ^^ ( gnat_2016 gnat_2017 gnat_2018 gnat_2019 )"
 
 S="${WORKDIR}"/${MYP}-src
 



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

2019-06-04 Thread Sergei Trofimovich
commit: b977392278b13652dfc02ddb4c90524cd6d41e9e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun  4 20:10:44 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun  4 20:25:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9773922

net-misc/rdesktop: stable 1.8.6 for sparc, bug #687268

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/net-misc/rdesktop/rdesktop-1.8.6.ebuild 
b/net-misc/rdesktop/rdesktop-1.8.6.ebuild
index 763ecc28c29..a30a9cd7f5f 100644
--- a/net-misc/rdesktop/rdesktop-1.8.6.ebuild
+++ b/net-misc/rdesktop/rdesktop-1.8.6.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="alsa ao debug ipv6 kerberos libressl libsamplerate oss pcsc-lite xrandr"
 
 S=${WORKDIR}/${PN}-${MY_PV}



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

2019-06-04 Thread Sergei Trofimovich
commit: 8b64a053b9656cbd7122016c79f3cb0e47311656
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun  4 20:14:58 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun  4 20:25:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b64a053

dev-lang/spidermonkey: stable 52.9.1_pre1 for sparc, bug #661470

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild 
b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild
index 008d33dbce3..b00a1c665fe 100644
--- a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild
+++ b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="http://ftp.mozilla.org/pub/spidermonkey/prereleases/52/pre1/mozjs-52.9.
 
 LICENSE="NPL-1.1"
 SLOT="52"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86 
~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~x86-fbsd"
 IUSE="debug minimal +system-icu test"
 
 RESTRICT="ia64? ( test )"



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

2019-06-04 Thread Sergei Trofimovich
commit: 2b8d7977109c0c50e170b93be034e742ed9f78de
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun  4 20:18:18 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun  4 20:25:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b8d7977

sys-auth/polkit: stable 0.115-r3 for sparc, bug #661470

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-auth/polkit/polkit-0.115-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/polkit/polkit-0.115-r3.ebuild 
b/sys-auth/polkit/polkit-0.115-r3.ebuild
index 3816fe25186..cbd703c0cb5 100644
--- a/sys-auth/polkit/polkit-0.115-r3.ebuild
+++ b/sys-auth/polkit/polkit-0.115-r3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz;
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86"
 IUSE="consolekit elogind examples gtk +introspection jit kde nls pam selinux 
systemd test"
 
 REQUIRED_USE="^^ ( consolekit elogind systemd )"



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

2019-06-04 Thread Sergei Trofimovich
commit: ebad1d859929a7683196596b1da78b5296130bbc
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun  4 20:14:05 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun  4 20:25:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebad1d85

dev-lang/php: stable 7.3.6 for sparc, bug #687026

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-lang/php/php-7.3.6.ebuild b/dev-lang/php/php-7.3.6.ebuild
index 9beafd38ebd..ba36d414da5 100644
--- a/dev-lang/php/php-7.3.6.ebuild
+++ b/dev-lang/php/php-7.3.6.ebuild
@@ -19,7 +19,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-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"
+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"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ada/gnatcoll-bindings/

2019-06-04 Thread Alfredo Tupone
commit: 0e6f26e9bbf890e5a581cc97d303314692cb8726
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Tue Jun  4 20:19:24 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Jun  4 20:19:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e6f26e9

dev-ada/gnatcoll-bindings: fix dependency

Signed-off-by: Alfredo Tupone  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-ada/gnatcoll-bindings/gnatcoll-bindings-2018-r1.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dev-ada/gnatcoll-bindings/gnatcoll-bindings-2018-r1.ebuild 
b/dev-ada/gnatcoll-bindings/gnatcoll-bindings-2018-r1.ebuild
index dcebe0e138e..e4b95d410d3 100644
--- a/dev-ada/gnatcoll-bindings/gnatcoll-bindings-2018-r1.ebuild
+++ b/dev-ada/gnatcoll-bindings/gnatcoll-bindings-2018-r1.ebuild
@@ -20,13 +20,14 @@ IUSE="gnat_2016 gnat_2017 +gnat_2018 gnat_2019 gmp iconv 
python readline +shared
static-libs static-pic syslog"
 
 RDEPEND="python? ( ${PYTHON_DEPS} )
-   dev-ada/gnatcoll-core[gnat_2016=,gnat_2017=,gnat_2018=,gnat_2019=]
+   
dev-ada/gnatcoll-core[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]
dev-ada/gnatcoll-core[shared?,static-libs?,static-pic?]
gmp? ( dev-libs/gmp:* )"
 DEPEND="${RDEPEND}
-   dev-ada/gprbuild[gnat_2016=,gnat_2017=,gnat_2018=,gnat_2019=]"
+   
dev-ada/gprbuild[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]"
 
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
+   ^^ ( gnat_2016 gnat_2017 gnat_2018 gnat_2019 )"
 
 S="${WORKDIR}"/${MYP}-src
 



[gentoo-commits] repo/gentoo:master commit in: dev-ada/aws/

2019-06-04 Thread Alfredo Tupone
commit: 98feebc95d552a05d9281f16bb1cdab5ace7778c
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Tue Jun  4 20:12:09 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Jun  4 20:12:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98feebc9

dev-ada/aws: Fix dependency

Signed-off-by: Alfredo Tupone  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-ada/aws/aws-2018-r1.ebuild | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-ada/aws/aws-2018-r1.ebuild b/dev-ada/aws/aws-2018-r1.ebuild
index 14d971edcf9..a3ffe95306c 100644
--- a/dev-ada/aws/aws-2018-r1.ebuild
+++ b/dev-ada/aws/aws-2018-r1.ebuild
@@ -17,14 +17,14 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="gnat_2016 gnat_2017 +gnat_2018 gnat_2019"
 
-RDEPEND="dev-ada/xmlada[gnat_2016=,gnat_2017=,gnat_2018(-)=,gnat_2019(-)=]
+RDEPEND="dev-ada/xmlada[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]
dev-ada/xmlada[shared,static-libs]"
 DEPEND="${RDEPEND}
-   gnat_2016? ( dev-ada/asis[gnat_2016] )
-   gnat_2017? ( dev-ada/asis[gnat_2017] )
-   gnat_2018? ( dev-ada/asis[gnat_2018] )
-   gnat_2019? ( dev-ada/asis[gnat_2019] )
-   dev-ada/gprbuild[gnat_2016=,gnat_2017=,gnat_2018(-)=,gnat_2019(-)=]"
+   dev-ada/asis[gnat_2016(-)?]
+   dev-ada/asis[gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]
+   
dev-ada/gprbuild[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]"
+
+REQUIRED_USE="^^ ( gnat_2016 gnat_2017 gnat_2018 gnat_2019 )"
 
 S="${WORKDIR}"/${MY_P}
 



[gentoo-commits] repo/gentoo:master commit in: media-sound/qmmp/, media-sound/qmmp/files/

2019-06-04 Thread Andreas Sturmlechner
commit: 8c91853e176a75b036099d06b0c2b35ec0715f9f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 19:18:53 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 19:49:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c91853e

media-sound/qmmp: Drop old

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/qmmp/Manifest  |   3 -
 .../qmmp/files/qmmp-1.3.0-projectm-3.1.patch   |  91 ---
 media-sound/qmmp/qmmp-1.2.6.ebuild | 164 
 media-sound/qmmp/qmmp-1.3.0.ebuild | 172 -
 media-sound/qmmp/qmmp-1.3.1.ebuild | 168 
 5 files changed, 598 deletions(-)

diff --git a/media-sound/qmmp/Manifest b/media-sound/qmmp/Manifest
index cb91ce18e3e..778391cc4b5 100644
--- a/media-sound/qmmp/Manifest
+++ b/media-sound/qmmp/Manifest
@@ -1,4 +1 @@
-DIST qmmp-1.2.6.tar.bz2 1181291 BLAKE2B 
fb039d8abcc0e2c6e2e1aa64c603f1f8b81858c48332eaa480d9d71e77958af52352772394fe5c22be653fcb01bc2acc44011e5cf30ab38863f2a2deca6c0ef2
 SHA512 
c816f530a7b4dabfbe327f4c726c3412c8c22bc9713a288df0f0b405d9831f4958be01b3f9abd35818e54f03e5568eb79cec85bf154ac9ed8075c0bf3fd5a442
-DIST qmmp-1.3.0.tar.bz2 1220426 BLAKE2B 
0a64b36876ed672c380c097897aa69f6d44f9d5fc7fdc2006ece63c91438fc72f3df67cf4c63d17dab526d8e67c45593b035df0e1ccfc1c179824807637aa812
 SHA512 
e91dc40ca8e96c1a5527ca73443e192bb8f2198a449f46911894b0e2779011766b2c6fd3b1786d2fbe3d87ccc7ee6b987ece0a3260144981bb74b96b3b7c3bb3
-DIST qmmp-1.3.1.tar.bz2 1221322 BLAKE2B 
ab0a4ecf5746926f2778a99d076f2756883621a4962f8f78a57d5eacb9977def9e8c3d186576715735763d991e6ee88d1ecd6f02e601a4b302ccd7ddf4176866
 SHA512 
936928bbe058253dc8cf95fb17b5ba840b3b51240d68ed9fefe4f09fd918d0908d1fc7ec816b7b08386c3da72fe78da73316e36b1b52018017d2a23fd8275556
 DIST qmmp-1.3.2.tar.bz2 1221919 BLAKE2B 
3081aa6b3ef4712ea064d5bb23e9ac7da5e102fde820c378438c13723bd007fe8e79ac351b0ad01ca0aa22c50f6b6773965ce418742cf1386d2ae1d7ba7b1758
 SHA512 
5c68d87650abf10d03dc8638df73a6694e470af1121a936bb983bcbcea04d95616ad8a55d87e8874b51b7424a890dad2c5353afe65db7029f6513a382e2144e4

diff --git a/media-sound/qmmp/files/qmmp-1.3.0-projectm-3.1.patch 
b/media-sound/qmmp/files/qmmp-1.3.0-projectm-3.1.patch
deleted file mode 100644
index 0db7359bff4..000
--- a/media-sound/qmmp/files/qmmp-1.3.0-projectm-3.1.patch
+++ /dev/null
@@ -1,91 +0,0 @@
-Index: qmmp/src/plugins/Visual/projectm/CMakeLists.txt
-===
 qmmp/src/plugins/Visual/projectm/CMakeLists.txt(revision 8708)
-+++ qmmp/src/plugins/Visual/projectm/CMakeLists.txt(revision 8709)
-@@ -15,6 +15,12 @@
-   MESSAGE(WARNING "Unsuppoted OpenGL implementation, projectM disabled")
- ENDIF(${Qt5Gui_OPENGL_IMPLEMENTATION} STREQUAL GL)
- 
-+pkg_search_module(PROJECTM_31 libprojectM>=3.1.0)
-+
-+IF(PROJECTM_31_FOUND)
-+ADD_DEFINITIONS(-DPROJECTM_31)
-+ENDIF(PROJECTM_31_FOUND)
-+
- find_file(PROJECTM_CONFIG config.inp
-   PATHS "/usr/share/projectM/" "/usr/local/share/projectM/")
- 
-Index: qmmp/src/plugins/Visual/projectm/projectm.pro
-===
 qmmp/src/plugins/Visual/projectm/projectm.pro  (revision 8708)
-+++ qmmp/src/plugins/Visual/projectm/projectm.pro  (revision 8709)
-@@ -13,6 +13,8 @@
- 
- RESOURCES = translations/translations.qrc
- 
-+#DEFINES += PROJECTM_31
-+
- unix {
- PKGCONFIG += libprojectM
- target.path = $$PLUGIN_DIR/Visual
-Index: qmmp/src/plugins/Visual/projectm/projectmwrapper.cpp
-===
 qmmp/src/plugins/Visual/projectm/projectmwrapper.cpp   (revision 8708)
-+++ qmmp/src/plugins/Visual/projectm/projectmwrapper.cpp   (revision 8709)
-@@ -1,5 +1,5 @@
- /***
-- *   Copyright (C) 2013 by Ilya Kotov  *
-+ *   Copyright (C) 2013-2019 by Ilya Kotov *
-  *   forkoto...@ya.ru  *
-  * *
-  *   This program is free software; you can redistribute it and/or modify  *
-@@ -40,8 +40,16 @@
- projectM::selectPreset(index);
- }
- 
-+#ifdef PROJECTM_31
-+void ProjectMWrapper::presetSwitchedEvent(bool isHardCut, size_t index) const
-+{
-+Q_UNUSED(isHardCut);
-+emit currentPresetChanged(index);
-+}
-+#else
- void ProjectMWrapper::presetSwitchedEvent(bool isHardCut, unsigned int index) 
const
- {
- Q_UNUSED(isHardCut);
- emit currentPresetChanged(index);
- }
-+#endif
-Index: qmmp/src/plugins/Visual/projectm/projectmwrapper.h
-===
 

[gentoo-commits] repo/gentoo:master commit in: media-plugins/qmmp-plugin-pack/

2019-06-04 Thread Andreas Sturmlechner
commit: abaa6a5cfaf4bb3c9e51ee752e01b89889ec8334
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 19:17:50 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 19:49:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abaa6a5c

media-plugins/qmmp-plugin-pack: Drop 1.2.4

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-plugins/qmmp-plugin-pack/Manifest|  1 -
 .../qmmp-plugin-pack/qmmp-plugin-pack-1.2.4.ebuild | 29 --
 2 files changed, 30 deletions(-)

diff --git a/media-plugins/qmmp-plugin-pack/Manifest 
b/media-plugins/qmmp-plugin-pack/Manifest
index 2a056b53028..539a47e448c 100644
--- a/media-plugins/qmmp-plugin-pack/Manifest
+++ b/media-plugins/qmmp-plugin-pack/Manifest
@@ -1,2 +1 @@
-DIST qmmp-plugin-pack-1.2.4.tar.bz2 252589 BLAKE2B 
562cacdc2e17e5e8163da4a545bda3398eaf638d3dc7a1a5426a9b8786b031e555106be9c82a306c0b8a3d12ee8dbf160fe76d9a3b1f4d776388e4da5bab6fb3
 SHA512 
10c1de2e5f5f84eb79eb1e2fb590ec07745e75fff103530057445021dbc2e00a58397533f076959a7e6ac569dbfad3876cbfb7c695808ec384de76993f77c01d
 DIST qmmp-plugin-pack-1.3.0.tar.bz2 230625 BLAKE2B 
a26926c81dee6e47c4a97cd40328329722fa3ccc9c244fddb962ef268337b6a9ea7db6b9568af83f469f88cbf4c60c2154b968276209b118f3124871a6764057
 SHA512 
5d320938cc5cdd540149f131e41c87c0eb5b4db79fa6f6706dcf30177ce988733c291d95c731e14df13a2d1f9af13916de060d8eaf38910bfcef42aac68bc900

diff --git a/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.2.4.ebuild 
b/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.2.4.ebuild
deleted file mode 100644
index a1326457122..000
--- a/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.2.4.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake-utils
-
-DESCRIPTION="A set of extra plugins for Qmmp"
-HOMEPAGE="http://qmmp.ylsoftware.com/;
-SRC_URI="http://qmmp.ylsoftware.com/files/plugins/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   media-libs/libsamplerate
-   >=media-libs/taglib-1.10
-   media-sound/mpg123
-   =media-sound/qmmp-$(ver_cut 1-2)*
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-"
-DEPEND="${RDEPEND}
-   dev-lang/yasm
-   dev-qt/linguist-tools:5
-"



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

2019-06-04 Thread Andreas Sturmlechner
commit: 0d268e560eca98115f4eb85f6e4e1cd097be9d55
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 19:15:31 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 19:49:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d268e56

kde-misc/kshutdown: Drop 4.2

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-misc/kshutdown/Manifest |  1 -
 kde-misc/kshutdown/kshutdown-4.2.ebuild | 53 -
 2 files changed, 54 deletions(-)

diff --git a/kde-misc/kshutdown/Manifest b/kde-misc/kshutdown/Manifest
index 659a69202ef..75339049cf9 100644
--- a/kde-misc/kshutdown/Manifest
+++ b/kde-misc/kshutdown/Manifest
@@ -1,2 +1 @@
-DIST kshutdown-source-4.2.zip 463140 BLAKE2B 
b398a004e91ebfa7651eed7bfffeccfc1cb332868ff3bbcea50ccd40088084ff1079d73ee2c922c8e882c0d39e1c6bc2741d0b416b5a2742eb5c6686b03f29a5
 SHA512 
00d4a5c1c8efdac0d86009bc0218a673435ca315f3b4fa949af414bf525ff65088f26edb0ed0d9fd2209ea81d58619efcffa5091d49bd2b841ddd4749b05a21f
 DIST kshutdown-source-5.0.zip 454848 BLAKE2B 
481cafbf5bd3831088ec9168b6eb82e342106b9b570279b6b8ca1db1f2df8c5640b3942f76032559396b504903b18fe106eb940e81822472a63f235e1a004644
 SHA512 
7a3920315db142f150227e624fa4a765966ec8367a08686214cb072d94a62d24f3a22fbef8fc84411d385be935102cf85df1b001b2922399455cc320c1e0f0db

diff --git a/kde-misc/kshutdown/kshutdown-4.2.ebuild 
b/kde-misc/kshutdown/kshutdown-4.2.ebuild
deleted file mode 100644
index 6cb0e984c17..000
--- a/kde-misc/kshutdown/kshutdown-4.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_TEST="false"
-KDE_AUTODEPS="false"
-inherit kde5
-
-DESCRIPTION="Shutdown manager for desktop environments like KDE Plasma"
-HOMEPAGE="https://kshutdown.sourceforge.io;
-SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV/_}.zip"
-
-LICENSE="GPL-2+"
-KEYWORDS="amd64 x86"
-IUSE="+kde"
-
-COMMON_DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   kde? (
-   kde-frameworks/kconfig:5
-   kde-frameworks/kconfigwidgets:5
-   kde-frameworks/kcoreaddons:5
-   kde-frameworks/kdbusaddons:5
-   kde-frameworks/kglobalaccel:5
-   kde-frameworks/ki18n:5
-   kde-frameworks/kidletime:5
-   kde-frameworks/knotifications:5
-   kde-frameworks/knotifyconfig:5
-   kde-frameworks/kwidgetsaddons:5
-   kde-frameworks/kxmlgui:5
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   app-arch/unzip
-   kde? ( kde-frameworks/extra-cmake-modules:5 )
-   sys-devel/gettext
-"
-RDEPEND="${COMMON_DEPEND}
-   !kde-misc/kshutdown:4
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DKS_KF5=$(usex kde)
-   -DKS_PURE_QT=$(usex !kde)
-   )
-
-   kde5_src_configure
-}



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

2019-06-04 Thread Andreas Sturmlechner
commit: 8341c97fd2aeccd008c55d4a88e7af48026e3f69
Author: David Michael  redhat  com>
AuthorDate: Tue Mar 12 00:13:58 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 19:49:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8341c97f

dev-cpp/gtest: EAPI=7

This allows the cmake eclass to use BDEPEND, so the host cmake can be
used without having to cross-compile it.

Signed-off-by: David Michael  redhat.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-cpp/gtest/{gtest-.ebuild => gtest-1.8.1-r1.ebuild} | 5 ++---
 dev-cpp/gtest/gtest-.ebuild| 5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/dev-cpp/gtest/gtest-.ebuild 
b/dev-cpp/gtest/gtest-1.8.1-r1.ebuild
similarity index 95%
copy from dev-cpp/gtest/gtest-.ebuild
copy to dev-cpp/gtest/gtest-1.8.1-r1.ebuild
index 7a444173666..50abe1209db 100644
--- a/dev-cpp/gtest/gtest-.ebuild
+++ b/dev-cpp/gtest/gtest-1.8.1-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI=7
 
 # Python is required for tests and some build tasks.
 PYTHON_COMPAT=( python2_7 pypy )
@@ -47,7 +47,6 @@ multilib_src_configure() {
local mycmakeargs=(
-DBUILD_GMOCK=ON
-DINSTALL_GTEST=ON
-   -DBUILD_SHARED_LIBS=ON
 
# tests
-Dgmock_build_tests=$(usex test)

diff --git a/dev-cpp/gtest/gtest-.ebuild b/dev-cpp/gtest/gtest-.ebuild
index 7a444173666..50abe1209db 100644
--- a/dev-cpp/gtest/gtest-.ebuild
+++ b/dev-cpp/gtest/gtest-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI=7
 
 # Python is required for tests and some build tasks.
 PYTHON_COMPAT=( python2_7 pypy )
@@ -47,7 +47,6 @@ multilib_src_configure() {
local mycmakeargs=(
-DBUILD_GMOCK=ON
-DINSTALL_GTEST=ON
-   -DBUILD_SHARED_LIBS=ON
 
# tests
-Dgmock_build_tests=$(usex test)



[gentoo-commits] repo/gentoo:master commit in: sci-astronomy/kstars/

2019-06-04 Thread Andreas Sturmlechner
commit: 10026afab1eda4ce9a8aa548c0a850fcecfae001
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 19:14:34 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 19:49:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10026afa

sci-astronomy/kstars: Drop 3.1.1

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-astronomy/kstars/Manifest|  1 -
 sci-astronomy/kstars/kstars-3.1.1.ebuild | 85 
 2 files changed, 86 deletions(-)

diff --git a/sci-astronomy/kstars/Manifest b/sci-astronomy/kstars/Manifest
index 30da1b8fa9a..0cdd2a2c59b 100644
--- a/sci-astronomy/kstars/Manifest
+++ b/sci-astronomy/kstars/Manifest
@@ -1,3 +1,2 @@
-DIST kstars-3.1.1.tar.xz 70308140 BLAKE2B 
97c32773bb600b6601f6b0f64cb951d9931760f3f83bd40e9968a49643c26af666756fde7b8fb59c634cdfdd7391d4ea8674e99acbe0955bc07b194f4285
 SHA512 
f482a0bf82eda596a6da9ab8641059aaae8c1983b3c28e963b18665aec3d6418472997aa3d94f6cdff496a95f4151f4b5ca2171bed4c9ff3f7f95177a8fd67c0
 DIST kstars-3.2.2.tar.xz 70730772 BLAKE2B 
f92510e7e1a077d685e67a3e2ddadb1f5ca0c79a4775a07db9d05e25cd871c8faf04d2cf827c60e1c0173ac35b170d3460ec747b5e00b2a1d2cc3a60c6354524
 SHA512 
05bdb1ce739ae05a0557082fa3ad299a9ea233d747def20a0ec3ded566d66cd9fa15d6d2cc338429c63dfe61385bbfc961ead195208b429a39111ca9ea44a5e1
 DIST kstars-3.2.3.tar.xz 70750660 BLAKE2B 
ea44b1ab2ba5d34a472b513180c148093defeff9fc2b8fb823621149b836a6fb7d6f53e0e50765de7c423fcdcdfc8fac6ae4feb4c4670d475353e091fa14d20c
 SHA512 
29c534c860cb1ab2c52e497061b16c7870e63253a7184f79ed8565d56abbc2909160d7f8c649764e4eb7462630e30e4428a88753e7987e97e530b174076cbd37

diff --git a/sci-astronomy/kstars/kstars-3.1.1.ebuild 
b/sci-astronomy/kstars/kstars-3.1.1.ebuild
deleted file mode 100644
index 6fd64bafb98..000
--- a/sci-astronomy/kstars/kstars-3.1.1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_HANDBOOK="forceoptional"
-PYTHON_COMPAT=( python2_7 )
-inherit kde5 python-single-r1
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
-   KEYWORDS="amd64 x86"
-fi
-
-DESCRIPTION="Desktop Planetarium"
-HOMEPAGE="https://www.kde.org/applications/education/kstars 
https://edu.kde.org/kstars/;
-IUSE="fits indi +password raw wcs"
-
-REQUIRED_USE="indi? ( fits ) ${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep kauth)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kplotting)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtdatavis3d)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtsql)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwebsockets)
-   $(add_qt_dep qtwidgets)
-   sys-libs/zlib
-   fits? ( sci-libs/cfitsio )
-   indi? ( >=sci-libs/indilib-1.7.5 )
-   password? ( dev-libs/qtkeychain:= )
-   raw? ( media-libs/libraw:= )
-   wcs? ( sci-astronomy/wcslib )
-"
-# TODO: Add back when re-enabled by upstream
-#  opengl? (
-#  $(add_qt_dep qtopengl)
-#  virtual/opengl
-#  )
-DEPEND="${COMMON_DEPEND}
-   $(add_qt_dep qtconcurrent)
-   dev-cpp/eigen:3
-"
-RDEPEND="${COMMON_DEPEND}
-   ${PYTHON_DEPS}
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DFETCH_TRANSLATIONS=OFF
-   $(cmake-utils_use_find_package fits CFitsio)
-   $(cmake-utils_use_find_package indi INDI)
-   $(cmake-utils_use_find_package password Qt5Keychain)
-   $(cmake-utils_use_find_package raw LibRaw)
-   $(cmake-utils_use_find_package wcs WCSLIB)
-   )
-
-   kde5_src_configure
-}
-
-pkg_postinst () {
-   kde5_pkg_postinst
-
-   if [[ -z "${REPLACING_VERSIONS}" ]] && ! has_version "x11-misc/xplanet" 
; then
-   elog "${PN} has optional runtime support for x11-misc/xplanet"
-   fi
-   # same for AstrometryNet, which is not packaged.
-}



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

2019-06-04 Thread Andreas Sturmlechner
commit: 947146579d95c78b26505f1a394ca6d672db2062
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun  4 19:15:15 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun  4 19:49:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94714657

kde-misc/kshutdown: 5.0 amd64 stable

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-misc/kshutdown/kshutdown-5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/kshutdown/kshutdown-5.0.ebuild 
b/kde-misc/kshutdown/kshutdown-5.0.ebuild
index 8eb6bd516db..c8a2047def2 100644
--- a/kde-misc/kshutdown/kshutdown-5.0.ebuild
+++ b/kde-misc/kshutdown/kshutdown-5.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://kshutdown.sourceforge.io;
 SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV}.zip"
 
 LICENSE="GPL-2+"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="+kde"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-ada/gnatcoll-core/

2019-06-04 Thread Alfredo Tupone
commit: 8b53ff1525ad6a7890e42a9fc1f8f49a46fff6d8
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Tue Jun  4 19:44:02 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Jun  4 19:44:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b53ff15

dev-ada/gnatcoll-core: Use a better dependency

Signed-off-by: Alfredo Tupone  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild 
b/dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild
index 6deb1e582be..e3449f09b04 100644
--- a/dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild
+++ b/dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild
@@ -17,13 +17,11 @@ KEYWORDS="~amd64 ~x86"
 IUSE="gnat_2016 gnat_2017 +gnat_2018 gnat_2019 +shared static-libs static-pic"
 
 RDEPEND="
-   dev-ada/libgpr[gnat_2016?,gnat_2017?,gnat_2018?,gnat_2019?]
+   dev-ada/libgpr[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]
dev-ada/libgpr[shared?,static-libs?,static-pic?]
!dev-ada/gnatcoll"
 DEPEND="${RDEPEND}
-   dev-ada/gprbuild
-   gnat_2016? ( dev-ada/gprbuild[gnat_2016] )
-   dev-ada/gprbuild[gnat_2017?,gnat_2018?,gnat_2019?]"
+   
dev-ada/gprbuild[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]"
 
 REQUIRED_USE="^^ ( gnat_2016 gnat_2017 gnat_2018 gnat_2019 )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-memcached/

2019-06-04 Thread Brian Evans
commit: b629a0a0f639eb0ed28657ce29714fb44e914baf
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Jun  4 19:37:04 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Jun  4 19:37:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b629a0a0

dev-php/pecl-memcached: Fast stable revision to account for missing deps

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Brian Evans  gentoo.org>

 dev-php/pecl-memcached/pecl-memcached-3.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-memcached/pecl-memcached-3.1.3-r1.ebuild 
b/dev-php/pecl-memcached/pecl-memcached-3.1.3-r1.ebuild
index 59f9df533fc..8bcef3bb7f3 100644
--- a/dev-php/pecl-memcached/pecl-memcached-3.1.3-r1.ebuild
+++ b/dev-php/pecl-memcached/pecl-memcached-3.1.3-r1.ebuild
@@ -12,7 +12,7 @@ USE_PHP="php7-1 php7-2 php7-3" # But only truly build for 
these three.
 DESCRIPTION="Interface PHP with memcached via libmemcached library"
 LICENSE="PHP-3"
 SLOT="7"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="examples igbinary json sasl +session test"
 
 COMMON_DEPEND=">=dev-libs/libmemcached-1.0.14[sasl?]



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-memcached/

2019-06-04 Thread Brian Evans
commit: ffcead0653bbc5784f6f2339d09eeb6253ae0966
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Jun  4 19:35:47 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Jun  4 19:35:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffcead06

dev-php/pecl-memcached: Revbump to add php 5.6; reorganize other deps

Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Brian Evans  gentoo.org>

 .../pecl-memcached/pecl-memcached-3.1.3-r1.ebuild  | 75 ++
 1 file changed, 75 insertions(+)

diff --git a/dev-php/pecl-memcached/pecl-memcached-3.1.3-r1.ebuild 
b/dev-php/pecl-memcached/pecl-memcached-3.1.3-r1.ebuild
new file mode 100644
index 000..59f9df533fc
--- /dev/null
+++ b/dev-php/pecl-memcached/pecl-memcached-3.1.3-r1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PHP_EXT_NAME="memcached"
+DOCS=( ChangeLog README.markdown )
+
+USE_PHP="php5-6 php7-1 php7-2 php7-3" # Pretend to support all four targets...
+inherit php-ext-pecl-r3
+USE_PHP="php7-1 php7-2 php7-3" # But only truly build for these three.
+
+DESCRIPTION="Interface PHP with memcached via libmemcached library"
+LICENSE="PHP-3"
+SLOT="7"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples igbinary json sasl +session test"
+
+COMMON_DEPEND=">=dev-libs/libmemcached-1.0.14[sasl?]
+   sys-libs/zlib
+"
+
+RDEPEND="
+   php_targets_php7-1? (
+   ${COMMON_DEPEND} dev-lang/php:7.1[session?,json?]
+   igbinary? ( dev-php/igbinary[php_targets_php7-1(-)] )
+   )
+   php_targets_php7-2? (
+   ${COMMON_DEPEND} dev-lang/php:7.2[session?,json?]
+   igbinary? ( dev-php/igbinary[php_targets_php7-2(-)] )
+   )
+   php_targets_php7-3? (
+   ${COMMON_DEPEND} dev-lang/php:7.3[session?,json?]
+   igbinary? ( dev-php/igbinary[php_targets_php7-3(-)] )
+   )"
+DEPEND="${RDEPEND} test? ( net-misc/memcached )"
+RDEPEND="${RDEPEND} php_targets_php5-6? ( 
dev-php/pecl-memcached:0[php_targets_php5-6(-)] )"
+
+src_prepare(){
+   if use php_targets_php7-1 || use php_targets_php7-2 || use 
php_targets_php7-3 ; then
+   php-ext-source-r3_src_prepare
+   else
+   default_src_prepare
+   fi
+}
+
+src_configure() {
+   local PHP_EXT_ECONF_ARGS="--enable-memcached
+   $(use_enable session memcached-session)
+   $(use_enable sasl memcached-sasl)
+   $(use_enable json memcached-json)
+   $(use_enable igbinary memcached-igbinary)"
+
+   php-ext-source-r3_src_configure
+}
+
+src_test() {
+   if use php_targets_php7-1 || use php_targets_php7-2 || use 
php_targets_php7-3 ; then
+   local memcached_opts=( -d -P "${T}/memcached.pid" -p 11211 -l 
127.0.0.1 )
+   [[ ${EUID} == 0 ]] && memcached_opts+=( -u portage )
+   memcached "${memcached_opts[@]}" || die "Can't start memcached 
test server"
+
+   local exit_status
+   php-ext-source-r3_src_test
+   exit_status=$?
+
+   kill "$(<"${T}/memcached.pid")"
+   return ${exit_status}
+   fi
+}
+
+src_install(){
+   if use php_targets_php7-1 || use php_targets_php7-2 || use 
php_targets_php7-3 ; then
+   php-ext-source-r3_src_install
+   fi
+}



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

2019-06-04 Thread Agostino Sarubbo
commit: 8b62bddfeca79063545e553094a8735aa63f5831
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 19:00:36 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 19:00:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b62bddf

dev-python/numpy: ppc stable wrt bug #627952

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-python/numpy/numpy-1.14.5.ebuild 
b/dev-python/numpy/numpy-1.14.5.ebuild
index bf86ed5bd1c..c3ea7cf29a0 100644
--- a/dev-python/numpy/numpy-1.14.5.ebuild
+++ b/dev-python/numpy/numpy-1.14.5.ebuild
@@ -24,7 +24,7 @@ SRC_URI="
)"
 LICENSE="BSD"
 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 ~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="doc lapack test"
 
 RDEPEND="lapack? ( virtual/cblas virtual/lapack )"



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

2019-06-04 Thread Agostino Sarubbo
commit: df40ab8bc76fe89bd6c9b925a2d237d6bc68300f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 19:00:26 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 19:00:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df40ab8b

dev-util/ctags: ppc stable wrt bug #524004

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-util/ctags/ctags-20190331.ebuild 
b/dev-util/ctags/ctags-20190331.ebuild
index 6926af8635d..163fe14340e 100644
--- a/dev-util/ctags/ctags-20190331.ebuild
+++ b/dev-util/ctags/ctags-20190331.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/universal-ctags/ctags/archive/${COMMITHASH}.tar.gz -
 
 LICENSE="GPL-2+"
 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 ~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 ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="json xml yaml"
 
 CDEPEND="



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

2019-06-04 Thread Agostino Sarubbo
commit: 855be18f13b48533754b260327183988714e13f8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 19:00:49 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 19:00:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=855be18f

app-text/enchant: ppc stable wrt bug #662484

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

 app-text/enchant/enchant-1.6.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/enchant/enchant-1.6.1-r1.ebuild 
b/app-text/enchant/enchant-1.6.1-r1.ebuild
index fe0b03a0537..9bb5111fd25 100644
--- a/app-text/enchant/enchant-1.6.1-r1.ebuild
+++ b/app-text/enchant/enchant-1.6.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/AbiWord/enchant/releases/download/${PN}-${MY_PV}/${P
 
 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 ~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 ~x86-macos 
~x86-solaris"
 
 IUSE="aspell +hunspell static-libs test"
 REQUIRED_USE="|| ( hunspell aspell )"



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

2019-06-04 Thread Agostino Sarubbo
commit: ad8211dc35338bca74b625c84bbc08a1c324c556
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 19:01:08 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 19:01:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad8211dc

dev-db/mariadb: ppc stable wrt bug #670388

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

 dev-db/mariadb/mariadb-10.1.37.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mariadb/mariadb-10.1.37.ebuild 
b/dev-db/mariadb/mariadb-10.1.37.ebuild
index c277d4c6046..613cf33056b 100644
--- a/dev-db/mariadb/mariadb-10.1.37.ebuild
+++ b/dev-db/mariadb/mariadb-10.1.37.ebuild
@@ -40,7 +40,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2019-06-04 Thread Agostino Sarubbo
commit: 4012cca3ff21c0cedc2d130547b5e4b48922ae81
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 19:00:45 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 19:00:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4012cca3

net-mail/cyrus-imapd: ppc stable wrt bug #649996

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

 net-mail/cyrus-imapd/cyrus-imapd-3.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/cyrus-imapd/cyrus-imapd-3.0.5.ebuild 
b/net-mail/cyrus-imapd/cyrus-imapd-3.0.5.ebuild
index 2383aa3d9fd..ba030ccce89 100644
--- a/net-mail/cyrus-imapd/cyrus-imapd-3.0.5.ebuild
+++ b/net-mail/cyrus-imapd/cyrus-imapd-3.0.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="ftp://ftp.cyrusimap.org/cyrus-imapd/${MY_P}.tar.gz;
 
 LICENSE="BSD-with-attribution"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
 IUSE="afs backup calalarm caps clamav http jmap kerberos ldap lmdb \
mysql nntp pam perl postgres replication +server sieve snmp \
sphinx sqlite ssl static-libs tcpd test xapian"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/libcacard/

2019-06-04 Thread Agostino Sarubbo
commit: b1b16c0764a83065b19cba91d6f1512a9346e241
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 19:00:31 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 19:00:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b16c07

app-emulation/libcacard: ppc stable wrt bug #611348

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"

 app-emulation/libcacard/libcacard-2.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/libcacard/libcacard-2.6.0.ebuild 
b/app-emulation/libcacard/libcacard-2.6.0.ebuild
index bcadfa4df66..724f2f32cb0 100644
--- a/app-emulation/libcacard/libcacard-2.6.0.ebuild
+++ b/app-emulation/libcacard/libcacard-2.6.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://www.spice-space.org/download/libcacard/${P}.tar.xz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ppc ppc64 ~sparc x86"
 IUSE="+passthrough static-libs"
 
 RDEPEND=">=dev-libs/nss-3.13



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

2019-06-04 Thread Agostino Sarubbo
commit: 1c472f5fea7900ef28b016c623e783be37f41280
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 18:58:19 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 18:58:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c472f5f

dev-python/numpy: ia64 stable wrt bug #627952

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

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

diff --git a/dev-python/numpy/numpy-1.14.5.ebuild 
b/dev-python/numpy/numpy-1.14.5.ebuild
index 5d8cfcbd1f0..bf86ed5bd1c 100644
--- a/dev-python/numpy/numpy-1.14.5.ebuild
+++ b/dev-python/numpy/numpy-1.14.5.ebuild
@@ -24,7 +24,7 @@ SRC_URI="
)"
 LICENSE="BSD"
 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 ~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="doc lapack test"
 
 RDEPEND="lapack? ( virtual/cblas virtual/lapack )"



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

2019-06-04 Thread Agostino Sarubbo
commit: ecab2bee04e9cd9babdca8cfa266d583a44e9a88
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 18:58:55 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 18:58:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecab2bee

app-text/enchant: ia64 stable wrt bug #662484

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

 app-text/enchant/enchant-1.6.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/enchant/enchant-1.6.1-r1.ebuild 
b/app-text/enchant/enchant-1.6.1-r1.ebuild
index e0241d6..fe0b03a0537 100644
--- a/app-text/enchant/enchant-1.6.1-r1.ebuild
+++ b/app-text/enchant/enchant-1.6.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/AbiWord/enchant/releases/download/${PN}-${MY_PV}/${P
 
 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 ~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 ~x86-macos 
~x86-solaris"
 
 IUSE="aspell +hunspell static-libs test"
 REQUIRED_USE="|| ( hunspell aspell )"



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

2019-06-04 Thread Agostino Sarubbo
commit: c24cedb91de629d97b0f7ebc8f46a090c5aad152
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 18:58:52 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 18:58:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c24cedb9

media-video/ffmpeg: ia64 stable wrt bug #660924

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

 media-video/ffmpeg/ffmpeg-3.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/ffmpeg/ffmpeg-3.4.5.ebuild 
b/media-video/ffmpeg/ffmpeg-3.4.5.ebuild
index 0b3f6ac5c7c..6718843acf2 100644
--- a/media-video/ffmpeg/ffmpeg-3.4.5.ebuild
+++ b/media-video/ffmpeg/ffmpeg-3.4.5.ebuild
@@ -54,7 +54,7 @@ LICENSE="
samba? ( GPL-3 )
 "
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x64-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x64-solaris ~x86-solaris"
 fi
 
 # Options to use as use_enable in the foo[:bar] form.



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

2019-06-04 Thread Agostino Sarubbo
commit: f0d28085cb31e59ece1fcd465ef7e9a2d82c8e54
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jun  4 18:57:22 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jun  4 18:57:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0d28085

dev-python/pyyaml: s390 stable wrt bug #659348

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

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

diff --git a/dev-python/pyyaml/pyyaml-5.1.ebuild 
b/dev-python/pyyaml/pyyaml-5.1.ebuild
index 6940c4fe1b2..5670e600aae 100644
--- a/dev-python/pyyaml/pyyaml-5.1.ebuild
+++ b/dev-python/pyyaml/pyyaml-5.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://pyyaml.org/download/${PN}/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ~ppc ppc64 ~riscv s390 
~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="examples libyaml"
 
 RDEPEND="libyaml? ( dev-libs/libyaml )"



  1   2   3   >