[gentoo-commits] repo/gentoo:master commit in: media-radio/qrq/

2019-04-23 Thread Thomas Beierlein
commit: 24e65dcb1c48ed20e5832c8de616aac75e67d854
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Wed Apr 24 05:40:18 2019 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Wed Apr 24 05:40:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24e65dcb

media-radio/qrq: Fix wrong handling of USE-flags during src_install()

Thanks for testing Toralf.

Closes: https://bugs.gentoo.org/684148
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Beierlein  gentoo.org>

 media-radio/qrq/qrq-0.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/qrq/qrq-0.3.2.ebuild b/media-radio/qrq/qrq-0.3.2.ebuild
index e73c542665e..b5eeded2344 100644
--- a/media-radio/qrq/qrq-0.3.2.ebuild
+++ b/media-radio/qrq/qrq-0.3.2.ebuild
@@ -36,6 +36,6 @@ src_compile() {
 }
 
 src_install() {
-   emake DESTDIR="${D}/usr" install
+   emake $CONF DESTDIR="${D}/usr" install
dodoc AUTHORS ChangeLog README
 }



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

2019-04-23 Thread Aaron Bauman
commit: 5a85fb190b37206caed168691ad569c5c63932f7
Author: Stefan Strogin  gmail  com>
AuthorDate: Wed Apr 24 04:42:13 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 04:56:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a85fb19

net-misc/stunnel: update LibreSSL patch for 5.51

Closes: https://bugs.gentoo.org/682894
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Stefan Strogin  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11807
Signed-off-by: Aaron Bauman  gentoo.org>

 net-misc/stunnel/files/stunnel-5.51-libressl.patch | 268 +
 ...{stunnel-5.51.ebuild => stunnel-5.51-r1.ebuild} |   4 +-
 2 files changed, 270 insertions(+), 2 deletions(-)

diff --git a/net-misc/stunnel/files/stunnel-5.51-libressl.patch 
b/net-misc/stunnel/files/stunnel-5.51-libressl.patch
new file mode 100644
index 000..7ca8ace454d
--- /dev/null
+++ b/net-misc/stunnel/files/stunnel-5.51-libressl.patch
@@ -0,0 +1,268 @@
+diff --git a/src/client.c b/src/client.c
+index b67544a..6676529 100644
+--- a/src/client.c
 b/src/client.c
+@@ -680,7 +680,7 @@ NOEXPORT void transfer(CLI *c) {
+ }
+ 
+ /** wait for an event */
+-#if OPENSSL_VERSION_NUMBER >= 0x1010L
++#if OPENSSL_VERSION_NUMBER >= 0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
+ pending=SSL_pending(c->ssl) || SSL_has_pending(c->ssl);
+ #else
+ pending=SSL_pending(c->ssl);
+diff --git a/src/ctx.c b/src/ctx.c
+index b3dc684..0186968 100644
+--- a/src/ctx.c
 b/src/ctx.c
+@@ -91,7 +91,7 @@ NOEXPORT void set_prompt(const char *);
+ NOEXPORT int ui_retry();
+ 
+ /* session tickets */
+-#if OPENSSL_VERSION_NUMBER >= 0x10101000L
++#if OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined(LIBRESSL_VERSION_NUMBER)
+ NOEXPORT int generate_session_ticket_cb(SSL *, void *);
+ NOEXPORT int decrypt_session_ticket_cb(SSL *, SSL_SESSION *,
+ const unsigned char *, size_t, SSL_TICKET_STATUS, void *);
+@@ -125,7 +125,7 @@ NOEXPORT void sslerror_log(unsigned long, const char *, 
int, char *);
+ 
+ / initialize section->ctx */
+ 
+-#if OPENSSL_VERSION_NUMBER>=0x1010L
++#if OPENSSL_VERSION_NUMBER>=0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
+ typedef long unsigned SSL_OPTIONS_TYPE;
+ #else
+ typedef long SSL_OPTIONS_TYPE;
+@@ -133,7 +133,7 @@ typedef long SSL_OPTIONS_TYPE;
+ 
+ int context_init(SERVICE_OPTIONS *section) { /* init TLS context */
+ /* create TLS context */
+-#if OPENSSL_VERSION_NUMBER>=0x1010L
++#if OPENSSL_VERSION_NUMBER>=0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
+ if(section->option.client)
+ section->ctx=SSL_CTX_new(TLS_client_method());
+ else /* server mode */
+@@ -229,7 +229,7 @@ int context_init(SERVICE_OPTIONS *section) { /* init TLS 
context */
+ #endif
+ 
+ /* setup session tickets */
+-#if OPENSSL_VERSION_NUMBER >= 0x10101000L
++#if OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined(LIBRESSL_VERSION_NUMBER)
+ SSL_CTX_set_session_ticket_cb(section->ctx, generate_session_ticket_cb,
+ decrypt_session_ticket_cb, NULL);
+ #endif /* OpenSSL 1.1.1 or later */
+@@ -483,7 +483,7 @@ NOEXPORT int ecdh_init(SERVICE_OPTIONS *section) {
+ / initialize OpenSSL CONF */
+ 
+ NOEXPORT int conf_init(SERVICE_OPTIONS *section) {
+-#if OPENSSL_VERSION_NUMBER>=0x10002000L
++#if OPENSSL_VERSION_NUMBER>=0x10002000L && !defined(LIBRESSL_VERSION_NUMBER)
+ SSL_CONF_CTX *cctx;
+ NAME_LIST *curr;
+ char *cmd, *param;
+@@ -969,7 +969,7 @@ NOEXPORT int ui_retry() {
+ 
+ / session tickets */
+ 
+-#if OPENSSL_VERSION_NUMBER >= 0x10101000L
++#if OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined(LIBRESSL_VERSION_NUMBER)
+ 
+ typedef struct {
+ void *session_authenticated;
+@@ -1412,7 +1412,7 @@ NOEXPORT void info_callback(const SSL *ssl, int where, 
int ret) {
+ 
+ c=SSL_get_ex_data((SSL *)ssl, index_ssl_cli);
+ if(c) {
+-#if OPENSSL_VERSION_NUMBER>=0x1010L
++#if OPENSSL_VERSION_NUMBER>=0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
+ OSSL_HANDSHAKE_STATE state=SSL_get_state(ssl);
+ #else
+ int state=SSL_get_state((SSL *)ssl);
+diff --git a/src/options.c b/src/options.c
+index c7bd5c5..5441b80 100644
+--- a/src/options.c
 b/src/options.c
+@@ -81,7 +81,7 @@ NOEXPORT char *sni_init(SERVICE_OPTIONS *);
+ NOEXPORT void sni_free(SERVICE_OPTIONS *);
+ #endif /* !defined(OPENSSL_NO_TLSEXT) */
+ 
+-#if OPENSSL_VERSION_NUMBER>=0x1010L
++#if OPENSSL_VERSION_NUMBER>=0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
+ NOEXPORT int str_to_proto_version(const char *);
+ #else /* OPENSSL_VERSION_NUMBER<0x1010L */
+ NOEXPORT char *tls_methods_set(SERVICE_OPTIONS *, const char *);
+@@ -3098,7 +3098,7 @@ NOEXPORT char *parse_service_option(CMD cmd, 
SERVICE_OPTIONS **section_ptr,
+ break;
+ }
+ 
+-#if 

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

2019-04-23 Thread Aaron Bauman
commit: 204c01a26f58bb2e4768e265e13e1d717c305e6e
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 04:46:43 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 04:47:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=204c01a2

dev-python/openstackdocstheme: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

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

diff --git a/dev-python/openstackdocstheme/openstackdocstheme-1.18.1.ebuild 
b/dev-python/openstackdocstheme/openstackdocstheme-1.18.1.ebuild
index 9a877dce62e..0f02124249a 100644
--- a/dev-python/openstackdocstheme/openstackdocstheme-1.18.1.ebuild
+++ b/dev-python/openstackdocstheme/openstackdocstheme-1.18.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



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

2019-04-23 Thread Hans de Graaff
commit: a0f2a2776276fbb69a92d45f495f5db32c5a298e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Apr 24 04:34:18 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Apr 24 04:34:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f2a277

dev-ruby/serverengine: add 2.1.1

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-ruby/serverengine/Manifest  |  1 +
 dev-ruby/serverengine/serverengine-2.1.1.ebuild | 35 +
 2 files changed, 36 insertions(+)

diff --git a/dev-ruby/serverengine/Manifest b/dev-ruby/serverengine/Manifest
index b080968ae55..87ca3edf003 100644
--- a/dev-ruby/serverengine/Manifest
+++ b/dev-ruby/serverengine/Manifest
@@ -1,3 +1,4 @@
 DIST serverengine-2.0.6.gem 38400 BLAKE2B 
51722d222bfcb9c0063f64ceed666be147bcb4dce9947fd60b723507c5f3e2479b445902bd2a2e985d0a8216462b91b1545ccc458e36e7134fa11a4a746302a7
 SHA512 
ffb35eb51226793181a5266e3ddaf3255ce38e7fda90c2257fa16044829199dc5ee30cb9c38925f1820cb20fd36d01a47af0a8cbee96edc0ecb5206e2ab17da3
 DIST serverengine-2.0.7.gem 38400 BLAKE2B 
b457925fae394ede56e9d866ebc0ebe02262b1ec799cc03090eb8b037b5e617836dd96860bf1e23a7c62fd09139f007dbf561f378d839cd07d3da70e11b5983b
 SHA512 
5e4dee38ab00641d5f47c29cf765220a327aee3fdd3dface4e1996f7b12abd65de8ac03278e528467d0a508921aa3e504d7a34a7ebf2ddae419618262faf6616
 DIST serverengine-2.1.0.gem 38912 BLAKE2B 
d89298a8f7a985a8daad8604c88e63c7f534fe1b9020141ba704e34b48ea0b78f6da855d6253bec29abb449c58b51d6c7d83a97add36abf962b7fb478b6c68a6
 SHA512 
57231afbf28d8e54c90c99adc4c9443d865592a6fdaed85c66dd8e123af06d8b72567f6d0f3b058af388293c25fb52ff954d37517c21ae518314b3f5c307c8da
+DIST serverengine-2.1.1.gem 38912 BLAKE2B 
110adef1bfc4538dcbd9cddc5aabcda00f0e6276f3092cccd54bdd92d644bc6121300c1963276d3bbb810fc2be44c9c833d1d74b524b3d7faae8424b98e45e3f
 SHA512 
627ba0ad0235536009ed22cca017d23d76ad7863b9ed83e90504d374bb3c1b887c73ed0b120378327485ba7c68a18bf354228529da84e134ac4d3b6dd96d14e1

diff --git a/dev-ruby/serverengine/serverengine-2.1.1.ebuild 
b/dev-ruby/serverengine/serverengine-2.1.1.ebuild
new file mode 100644
index 000..125a668bc72
--- /dev/null
+++ b/dev-ruby/serverengine/serverengine-2.1.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="Changelog README.md"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A framework to implement robust multiprocess servers"
+HOMEPAGE="https://github.com/fluent/serverengine;
+LICENSE="Apache-2.0"
+
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/sigdump-0.2.2:0"
+
+ruby_add_bdepend "test? ( dev-ruby/bundler )"
+
+all_ruby_prepare() {
+   sed -i -e '/rake/ s/~>/>=/' \
+   -e '/rspec/ s/2.13.0/2.13/' \
+   -e '/rake-compiler/ s:^:#:' serverengine.gemspec || die
+}
+
+each_ruby_test() {
+   # The specs spawn ruby processes with bundler support
+   ${RUBY} -S bundle exec rspec-2 spec || die
+}



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

2019-04-23 Thread Aaron Bauman
commit: 8d47cb564e25186bfafa5eb8966ed22722ecb0e9
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 04:16:48 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 04:19:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d47cb56

arm64/package.use.mask: drop mask

* both packages now carry keywords

Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/arch/arm64/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 12ec4c3294a..5c446bccba8 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -543,10 +543,6 @@ dev-libs/libpcre jit
 # unkeyworded deps for bug 379657 and bug 379651
 app-admin/packagekit-base entropy
 
-# Robin H. Johnson  (03 Sep 2011)
-# Remove this for your arch after you keyword dev-utils/google-perftools and 
virtual/gsasl (bug #381737)
-dev-libs/libmemcached sasl
-
 # Sebastian Pipping  (22 Feb 2011)
 # No media-sound/lilypond here, yet (bug #356069)
 app-text/asciidoc test



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

2019-04-23 Thread Aaron Bauman
commit: 5e988b49180375115ea5091e85d6811ce0bc8e4c
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 04:18:18 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 04:19:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e988b49

arm64/package.use.mask: drop mask

* media-sound/lilypond has stable keywords

Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/arch/arm64/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 5c446bccba8..945bfc9b285 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -543,10 +543,6 @@ dev-libs/libpcre jit
 # unkeyworded deps for bug 379657 and bug 379651
 app-admin/packagekit-base entropy
 
-# Sebastian Pipping  (22 Feb 2011)
-# No media-sound/lilypond here, yet (bug #356069)
-app-text/asciidoc test
-
 # Jim Ramsay  (5 Nov 2008)
 # app-admin/gkrellm may pull in net-libs/libntlm, which is not keyworded
 app-admin/gkrellm ntlm



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

2019-04-23 Thread Aaron Bauman
commit: 3b5a9b398294fff3946734ea1d2426b523e4afbd
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 04:15:33 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 04:19:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b5a9b39

arm64/package.use.mask: drop media-libs/phonon vlc mask

* media-video/vlc is now keyworded

Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/arch/arm64/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 335830597c8..12ec4c3294a 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -520,10 +520,6 @@ app-accessibility/speech-dispatcher flite
 # mask app-office/libreoffice java extensions
 app-office/libreoffice libreoffice_extensions_scripting-beanshell 
libreoffice_extensions_scripting-javascript 
libreoffice_extensions_wiki-publisher
 
-# Markus Meier  (25 Jul 2012)
-# no stable media-video/vlc yet, bug #401313
-media-libs/phonon vlc
-
 # Alexandre Rostovtsev  (12 Apr 2012)
 # Temporary mask-in-base, unmask-in-arch for dev-python/mako keywording for
 # gobject-introspection[doctool], bug #411761



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

2019-04-23 Thread Aaron Bauman
commit: fe3f58ced1dfe91a6f8c025e0a39978c3d946260
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 04:01:39 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 04:19:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe3f58ce

arm64/package.use.mask: drop dev-python/stevedor [doc] mask

* dev-python/pillow is now stable

Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/arch/arm64/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index bd36fe5173d..a899fb3ed06 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -102,10 +102,6 @@ sci-electronics/kicad occ oce ngspice
 # media-libs/dav1d is not yet keyworded
 media-video/vlc aribsub chromecast dav1d
 
-# Matthew Thode  (30 Aug 2018)
-# Needs pillow and it's deps to build docs
->=dev-python/stevedore-1.28.0 doc
-
 # Tomáš Mózes  (10 Aug 2018)
 # Needs dev-libs/libmaxminddb which isn't keyworded
 app-admin/syslog-ng geoip2



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

2019-04-23 Thread Aaron Bauman
commit: d412923a9b5f9bcd0d91a7652a342d82f871fb60
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 04:06:14 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 04:19:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d412923a

arm64/package.use.mask: drop mask on dev-libs/xxhash

* it is keyworded now

Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/arch/arm64/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index a899fb3ed06..cd31830acb6 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -115,10 +115,6 @@ dev-python/networkx pandas test
 dev-python/matplotlib doc
 net-libs/gnome-online-accounts gnome
 
-# Thomas Deutschmann  (04 Jul 2018)
-# dev-libs/xxhash not keyworded for arm64
-app-admin/rsyslog xxhash
-
 # Tomáš Mózes  (19 Jun 2018)
 # Needs dev-libs/libmaxminddb which isn't keyworded
 www-servers/nginx nginx_modules_http_geoip2 nginx_modules_stream_geoip2



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

2019-04-23 Thread Aaron Bauman
commit: 31ad9d0408b427f69b0e6a73274fa9fa1ebdc905
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 04:13:12 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 04:19:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31ad9d04

arm64/package.use.mask: drop cddb mask

* media-libs/libcddb is keyworded now

Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/arch/arm64/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index cd31830acb6..335830597c8 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -412,10 +412,6 @@ dev-libs/appstream-glib stemmer
 # app-admin/hddtemp not keyworded
 app-admin/gkrellm hddtemp
 
-# Mart Raudsepp  (28 Jan 2017)
-# media-libs/libcddb not keyworded yet
-dev-libs/libcdio cddb
-
 # Steev Klimaszewski  (04 March 2016)
 # Chromium uses an internal tcmalloc that doesn't support this arch yet.
 www-client/chromium tcmalloc



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

2019-04-23 Thread Aaron Bauman
commit: c6d5cecc1977c3fe66ebdb666a4e8bc1bfaa1dc2
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 04:19:17 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 04:19:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6d5cecc

arm64/package.use.mask: drop mask

* net-libs/zeromq is stable

Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/arch/arm64/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 945bfc9b285..ddfd5453f31 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -554,10 +554,6 @@ dev-libs/boost mpi
 media-sound/sox ladspa
 media-plugins/gst-plugins-meta aac dts dv lame libvisual taglib vcd wavpack
 
-# Ultrabug  (05 Sept 2011)
-# missing keyword for net-libs/zeromq
-app-admin/rsyslog zeromq
-
 # Ian Whyman  (05 Sept 2017)
 # missing keywords dev-lang/duktape media-libs/lastfmlib
 net-misc/gerbera javascript lastfm



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

2019-04-23 Thread Rick Farina
commit: df704718f10468578ce9b1de71c02d1edc11963f
Author: Rick Farina  gentoo  org>
AuthorDate: Wed Apr 24 03:15:36 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Wed Apr 24 03:15:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df704718

net-wireless/wpa_supplicant: libressl suiteb works

thanks for the testing b-man

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Rick Farina  gentoo.org>

 .../{wpa_supplicant-2.8.ebuild => wpa_supplicant-2.8-r1.ebuild}  | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.8.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.8-r1.ebuild
similarity index 97%
rename from net-wireless/wpa_supplicant/wpa_supplicant-2.8.ebuild
rename to net-wireless/wpa_supplicant/wpa_supplicant-2.8-r1.ebuild
index 69128d52bd2..d5ae9e59fef 100644
--- a/net-wireless/wpa_supplicant/wpa_supplicant-2.8.ebuild
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.8-r1.ebuild
@@ -225,10 +225,8 @@ src_configure() {
Kconfig_style_config OWE
Kconfig_style_config SAE
Kconfig_style_config DPP
-   Kconfig_style_config SUITEB192
-   fi
-   if ! use bindist && ! use libressl; then
Kconfig_style_config SUITEB
+   Kconfig_style_config SUITEB192
fi
 
if use smartcard ; then
@@ -418,11 +416,6 @@ pkg_postinst() {
ewarn "This is incredibly undesirable"
fi
fi
-   if use libressl; then
-   ewarn "Libressl doesn't support SUITEB (part of WPA3)"
-   ewarn "but it does support SUITEB192 (the upgraded strength 
version of the same)"
-   ewarn "You probably don't care.  Patches welcome"
-   fi
 
# Mea culpa, feel free to remove that after some time --mgorny.
local fn



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

2019-04-23 Thread Rick Farina
commit: 1ca007c22b7e0fd67b90aa52d8788e4dbee51d86
Author: Rick Farina  gentoo  org>
AuthorDate: Wed Apr 24 02:39:36 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Wed Apr 24 02:39:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ca007c2

net-wireless/wpa_supplicant: bump

some minor changes trying to enable things which make sense

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Rick Farina  gentoo.org>

 net-wireless/wpa_supplicant/Manifest|  1 +
 net-wireless/wpa_supplicant/metadata.xml|  1 +
 ...licant-.ebuild => wpa_supplicant-2.8.ebuild} | 21 -
 .../wpa_supplicant/wpa_supplicant-.ebuild   | 12 
 4 files changed, 26 insertions(+), 9 deletions(-)

diff --git a/net-wireless/wpa_supplicant/Manifest 
b/net-wireless/wpa_supplicant/Manifest
index 6c70e97a288..5bfd97437ba 100644
--- a/net-wireless/wpa_supplicant/Manifest
+++ b/net-wireless/wpa_supplicant/Manifest
@@ -1,2 +1,3 @@
 DIST wpa_supplicant-2.6.tar.gz 2753524 BLAKE2B 
99c61326c402f60b384fa6c9a7381e43d4d021d7e44537a6e05552909270f30997da91b690d8a30aa690f0d1ce0aed7798bd8bb8972fcf6830c282ccc91193ac
 SHA512 
46442cddb6ca043b8b08d143908f149954c238e0f3a57a0df73ca4fab9c1acd91b078f3f26375a1d99cd1d65625986328018c735d8705882c8f91e389cad28a6
 DIST wpa_supplicant-2.7.tar.gz 3093713 BLAKE2B 
bbf961b6e13757e9d7bb8b9de1808382a551265cd2d54de14e24bde3567aa5298b48fdcd0df75db79189a051532c54b28eab5519c32fc8fc00459365b57039aa
 SHA512 
8b6eb5b5f30d351c73db63d73c09f24028a18166246539b4a4f89f0d226fb42751afa2ff72296df33317f615150325d285e8e7bda30e0d88abcdc9637ab731d3
+DIST wpa_supplicant-2.8.tar.gz 3155904 BLAKE2B 
260b4830949a3e051ef4f33f279b3b225ab9fd95100e4b270d29af457cf07601421fac636d9f1d8927271d7c76aecb0b7c93ddab35203e31a0fd84c3e327d951
 SHA512 
b37d254d32a4b7a1f95fcb18ec1be0ffb9d025e0b21c42c53acc4cd839be355df1b125b32cc073f9fe09b746807321e23dbe25dc2fc8a7cafa1e71add69f245b

diff --git a/net-wireless/wpa_supplicant/metadata.xml 
b/net-wireless/wpa_supplicant/metadata.xml
index 4d369c2c386..a2085baaa25 100644
--- a/net-wireless/wpa_supplicant/metadata.xml
+++ b/net-wireless/wpa_supplicant/metadata.xml
@@ -10,6 +10,7 @@
Add support for EAP-SIM authentication 
algorithm
Build and install eapol_test 
binary
Add support for FAST-EAP authentication 
algorithm
+   Add support for Fast Initial Link Setup 
(802.11ai)
Add support for 802.11u and Passpoint for 
HotSpot 2.0
Add support for wired macsec
Add support for Wi-Fi Direct mode

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.8.ebuild
similarity index 94%
copy from net-wireless/wpa_supplicant/wpa_supplicant-.ebuild
copy to net-wireless/wpa_supplicant/wpa_supplicant-2.8.ebuild
index e0e179eeae0..69128d52bd2 100644
--- a/net-wireless/wpa_supplicant/wpa_supplicant-.ebuild
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.8.ebuild
@@ -18,7 +18,7 @@ else
 fi
 
 SLOT="0"
-IUSE="ap bindist dbus eap-sim eapol_test fasteap +hs2-0 libressl macsec p2p 
privsep ps3 qt5 readline selinux smartcard tdls uncommon-eap-types wimax wps 
kernel_linux kernel_FreeBSD"
+IUSE="ap bindist dbus eap-sim eapol_test fasteap +fils +hs2-0 libressl macsec 
p2p privsep ps3 qt5 readline selinux smartcard tdls uncommon-eap-types wimax 
wps kernel_linux kernel_FreeBSD"
 
 CDEPEND="dbus? ( sys-apps/dbus )
kernel_linux? (
@@ -138,6 +138,8 @@ src_configure() {
Kconfig_style_config OCV
Kconfig_style_config TLSV11
Kconfig_style_config TLSV12
+   Kconfig_style_config GETRANDOM
+   Kconfig_style_config MBO
 
# Basic authentication methods
# NOTE: we don't set GPSK or SAKE as they conflict
@@ -211,19 +213,23 @@ src_configure() {
 
Kconfig_style_config TLS openssl
Kconfig_style_config FST
-   if ! use bindist; then
+   if ! use bindist || use libressl; then
Kconfig_style_config EAP_PWD
-   Kconfig_style_config FILS
-   Kconfig_style_config FILS_SK_PFS
+   if use fils; then
+   Kconfig_style_config FILS
+   Kconfig_style_config FILS_SK_PFS
+   fi
# Enabling mesh networks.
Kconfig_style_config MESH
#WPA3
Kconfig_style_config OWE
Kconfig_style_config SAE
Kconfig_style_config DPP
-   Kconfig_style_config SUITEB
Kconfig_style_config SUITEB192
fi
+   if ! use bindist && ! use libressl; then
+   Kconfig_style_config SUITEB
+   fi
 
if use smartcard ; then
Kconfig_style_config SMARTCARD
@@ -412,6 +418,11 @@ pkg_postinst() {
ewarn "This is incredibly undesirable"
fi
 

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

2019-04-23 Thread Aaron Bauman
commit: bdb5baba73bd306c4bed0593f286f9137553292a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 02:01:25 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 02:01:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdb5baba

sys-apps/gawk: arm64 stable (bug #684176)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 sys-apps/gawk/gawk-4.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/gawk/gawk-4.2.1-r1.ebuild 
b/sys-apps/gawk/gawk-4.2.1-r1.ebuild
index 35e40662f1d..562767da2d9 100644
--- a/sys-apps/gawk/gawk-4.2.1-r1.ebuild
+++ b/sys-apps/gawk/gawk-4.2.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/gawk/${P}.tar.xz"
 
 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="forced-sandbox mpfr nls readline"
 
 RDEPEND="



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

2019-04-23 Thread Aaron Bauman
commit: b26a92d37bac239dffd8b05c293bd64cfdc77d8d
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 01:57:01 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 01:57:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b26a92d3

dev-libs/libressl: add newline

Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/dev-libs/libressl/libressl-2.9.1.ebuild 
b/dev-libs/libressl/libressl-2.9.1.ebuild
index e7bdc1e5c69..b9ba51552c3 100644
--- a/dev-libs/libressl/libressl-2.9.1.ebuild
+++ b/dev-libs/libressl/libressl-2.9.1.ebuild
@@ -59,4 +59,4 @@ multilib_src_test() {
 multilib_src_install_all() {
einstalldocs
find "${D}" -name '*.la' -exec rm -f {} + || die
-}
\ No newline at end of file
+}



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

2019-04-23 Thread Aaron Bauman
commit: 05c614b23b17fbf174b168d7a80a153fa5afa0f5
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 01:48:41 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 01:48:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05c614b2

dev-libs/libressl: really drop old stuff

* deps remaining that have a hard requirement:

dev-lua/lua-openssl
dev-python/pypy-bin

Signed-off-by: Aaron Bauman  gentoo.org>

 dev-libs/libressl/Manifest  |  2 --
 dev-libs/libressl/libressl-2.7.5.ebuild | 53 ---
 dev-libs/libressl/libressl-2.9.0.ebuild | 56 -
 3 files changed, 111 deletions(-)

diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
index 182b62b8294..215e38910cd 100644
--- a/dev-libs/libressl/Manifest
+++ b/dev-libs/libressl/Manifest
@@ -1,5 +1,3 @@
 DIST libressl-2.6.5.tar.gz 3225481 BLAKE2B 
fcdf0d8b4b68fdb6c17299f4b9897c84f51ec3407abc6c1bf8d474c4424161c563667ca1fb26c45dd20a0e895457e9210b7bd0539581472b94d594cc32a68191
 SHA512 
0601c73bb5c3d149df7eca3566831f1b35713aa16a15788a291922fce0bffa1ba0bc6ea9cac1fcecfd980009f2292b08b2a57d66b517fc1bc8c7364a24dbbd9d
-DIST libressl-2.7.5.tar.gz 3539591 BLAKE2B 
0cda7307f01cea21584b3e814a20053ab128016f0b639856eb04b52f91156c74b8fdba485401e099f472ae7d9a35e9be54d169e3ddf743540595c2ffa0f979ff
 SHA512 
00828dd115f6395186ce4c9cadb604612763f67f2ad2236a331062add8115f6494a655cbec237ae069e373ffb915ed4025c993e06456c3da69b279e5f7e2b8d4
 DIST libressl-2.8.3.tar.gz 3366196 BLAKE2B 
e32c097b31998d68a31266fbbf3624d5ab8ca716f8c53e423bcf09b3a8ab3542c92a99e259ded7b86f99b45cc199cd44791520a609f18c35d150365de5768eec
 SHA512 
3967e08b3dc2277bf77057ea1f11148df7f96a2203cd21cf841902f2a1ec11320384a001d01fa58154d35612f7981bf89d5b1a60a2387713d5657677f76cc682
-DIST libressl-2.9.0.tar.gz 3400383 BLAKE2B 
652ac9ff962fd187563f2f6f9ea423d682f743c8443954ad3a8adc810530711482705f0cac1a805e2f85697ed1fed156c80da913dc07c8c13cd6ce78e44b6c4d
 SHA512 
db7fec664bef8d76204ca691c11df236abce3c85b2a51011eec5bd302e273b62fa3cfce0430980915c3f3ce34176d5ef9c187902f0b39d7fc151e69e552b499c
 DIST libressl-2.9.1.tar.gz 3607116 BLAKE2B 
a4542d7fc97bfd213162fe908e28b27d52329e2b6a5d77e0cb67d1a6732c500ca772d0c5735c9fcd036c477e6ede330305b4675bfcff9f72fd7886a781f30015
 SHA512 
7051911e566bb093c48a70da72c9981b870e3bf49a167ba6c934eece873084cc41221fbe3cd0c8baba268d0484070df7164e4b937854e716337540a87c214354

diff --git a/dev-libs/libressl/libressl-2.7.5.ebuild 
b/dev-libs/libressl/libressl-2.7.5.ebuild
deleted file mode 100644
index 288540105ec..000
--- a/dev-libs/libressl/libressl-2.7.5.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib-minimal
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="https://www.libressl.org/;
-SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz;
-
-LICENSE="ISC openssl"
-# Reflects ABI of libcrypto.so and libssl.so.  Since these can differ,
-# we'll try to use the max of either.  However, if either change between
-# versions, we have to change the subslot to trigger rebuild of consumers.
-SLOT="0/45"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
-IUSE="+asm static-libs test"
-REQUIRED_USE="test? ( static-libs )"
-
-RDEPEND="!dev-libs/openssl:0"
-DEPEND="${RDEPEND}"
-PDEPEND="app-misc/ca-certificates"
-
-src_prepare() {
-   touch crypto/Makefile.in
-
-   sed -i \
-   -e '/^[ \t]*CFLAGS=/s#-g ##' \
-   -e '/^[ \t]*CFLAGS=/s#-g"#"#' \
-   -e '/^[ \t]*CFLAGS=/s#-O2 ##' \
-   -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \
-   -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \
-   -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \
-   configure || die "fixing CFLAGS failed"
-
-   eapply_user
-}
-
-multilib_src_configure() {
-   ECONF_SOURCE="${S}" econf \
-   $(use_enable asm) \
-   $(use_enable static-libs static)
-}
-
-multilib_src_test() {
-   emake check
-}
-
-multilib_src_install_all() {
-   einstalldocs
-   find "${D}" -name '*.la' -exec rm -f {} + || die
-}

diff --git a/dev-libs/libressl/libressl-2.9.0.ebuild 
b/dev-libs/libressl/libressl-2.9.0.ebuild
deleted file mode 100644
index 9356bf70659..000
--- a/dev-libs/libressl/libressl-2.9.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib-minimal libtool
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="https://www.libressl.org/;
-SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz;
-
-LICENSE="ISC openssl"
-# Reflects ABI of libcrypto.so and libssl.so.  Since these can differ,
-# we'll try to use the max of either.  However, if 

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

2019-04-23 Thread Aaron Bauman
commit: 97348f4d666c0272884dd9fc206cc2c643d65398
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 01:47:28 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 01:47:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97348f4d

Revert "dev-libs/libressl: drop old versions"

This reverts commit 9f94e7fb392cd089b8806819d0a99270cb0ed181.

* A couple of deps depend on <2.7.0 and slot 0/44

Signed-off-by: Aaron Bauman  gentoo.org>

 dev-libs/libressl/Manifest  |  3 ++
 dev-libs/libressl/libressl-2.6.5.ebuild | 56 +
 dev-libs/libressl/libressl-2.7.5.ebuild | 53 +++
 dev-libs/libressl/libressl-2.9.0.ebuild | 56 +
 4 files changed, 168 insertions(+)

diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
index 3ecddb3fac5..182b62b8294 100644
--- a/dev-libs/libressl/Manifest
+++ b/dev-libs/libressl/Manifest
@@ -1,2 +1,5 @@
+DIST libressl-2.6.5.tar.gz 3225481 BLAKE2B 
fcdf0d8b4b68fdb6c17299f4b9897c84f51ec3407abc6c1bf8d474c4424161c563667ca1fb26c45dd20a0e895457e9210b7bd0539581472b94d594cc32a68191
 SHA512 
0601c73bb5c3d149df7eca3566831f1b35713aa16a15788a291922fce0bffa1ba0bc6ea9cac1fcecfd980009f2292b08b2a57d66b517fc1bc8c7364a24dbbd9d
+DIST libressl-2.7.5.tar.gz 3539591 BLAKE2B 
0cda7307f01cea21584b3e814a20053ab128016f0b639856eb04b52f91156c74b8fdba485401e099f472ae7d9a35e9be54d169e3ddf743540595c2ffa0f979ff
 SHA512 
00828dd115f6395186ce4c9cadb604612763f67f2ad2236a331062add8115f6494a655cbec237ae069e373ffb915ed4025c993e06456c3da69b279e5f7e2b8d4
 DIST libressl-2.8.3.tar.gz 3366196 BLAKE2B 
e32c097b31998d68a31266fbbf3624d5ab8ca716f8c53e423bcf09b3a8ab3542c92a99e259ded7b86f99b45cc199cd44791520a609f18c35d150365de5768eec
 SHA512 
3967e08b3dc2277bf77057ea1f11148df7f96a2203cd21cf841902f2a1ec11320384a001d01fa58154d35612f7981bf89d5b1a60a2387713d5657677f76cc682
+DIST libressl-2.9.0.tar.gz 3400383 BLAKE2B 
652ac9ff962fd187563f2f6f9ea423d682f743c8443954ad3a8adc810530711482705f0cac1a805e2f85697ed1fed156c80da913dc07c8c13cd6ce78e44b6c4d
 SHA512 
db7fec664bef8d76204ca691c11df236abce3c85b2a51011eec5bd302e273b62fa3cfce0430980915c3f3ce34176d5ef9c187902f0b39d7fc151e69e552b499c
 DIST libressl-2.9.1.tar.gz 3607116 BLAKE2B 
a4542d7fc97bfd213162fe908e28b27d52329e2b6a5d77e0cb67d1a6732c500ca772d0c5735c9fcd036c477e6ede330305b4675bfcff9f72fd7886a781f30015
 SHA512 
7051911e566bb093c48a70da72c9981b870e3bf49a167ba6c934eece873084cc41221fbe3cd0c8baba268d0484070df7164e4b937854e716337540a87c214354

diff --git a/dev-libs/libressl/libressl-2.6.5.ebuild 
b/dev-libs/libressl/libressl-2.6.5.ebuild
new file mode 100644
index 000..d4870428f99
--- /dev/null
+++ b/dev-libs/libressl/libressl-2.6.5.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
+HOMEPAGE="https://www.libressl.org/;
+SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz;
+
+LICENSE="ISC openssl"
+# Reflects ABI of libcrypto.so and libssl.so.  Since these can differ,
+# we'll try to use the max of either.  However, if either change between
+# versions, we have to change the subslot to trigger rebuild of consumers.
+SLOT="0/44"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
+IUSE="+asm static-libs test"
+REQUIRED_USE="test? ( static-libs )"
+
+RDEPEND="!dev-libs/openssl:0"
+DEPEND="${RDEPEND}"
+PDEPEND="app-misc/ca-certificates"
+
+PATCHES=( "${FILESDIR}/libressl-2.6.4-hppa-asm.patch" )
+
+src_prepare() {
+   touch crypto/Makefile.in
+
+   sed -i \
+   -e '/^[ \t]*CFLAGS=/s#-g ##' \
+   -e '/^[ \t]*CFLAGS=/s#-g"#"#' \
+   -e '/^[ \t]*CFLAGS=/s#-O2 ##' \
+   -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \
+   -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \
+   -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \
+   configure || die "fixing CFLAGS failed"
+
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable asm) \
+   $(use_enable static-libs static)
+}
+
+multilib_src_test() {
+   emake check
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}

diff --git a/dev-libs/libressl/libressl-2.7.5.ebuild 
b/dev-libs/libressl/libressl-2.7.5.ebuild
new file mode 100644
index 000..288540105ec
--- /dev/null
+++ b/dev-libs/libressl/libressl-2.7.5.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit multilib-minimal
+
+DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
+HOMEPAGE="https://www.libressl.org/;

[gentoo-commits] proj/grs:desktop-amd64-hardened commit in: scripts/

2019-04-23 Thread Anthony G. Basile
commit: bc055816e595e6101998c5095f52613b0852a7af
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Apr 24 01:37:18 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Apr 24 01:37:18 2019 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=bc055816

Revert "scripts/kernel-config: switch to  4.19.27-gentoo-r1"

This reverts commit bf1e3cbc99443ab365df92df6477d361ce861231.

Fails to boot with a kernel panic.

Signed-off-by: Anthony G. Basile  gentoo.org>

 scripts/kernel-config | 2488 ++---
 1 file changed, 1129 insertions(+), 1359 deletions(-)

diff --git a/scripts/kernel-config b/scripts/kernel-config
index 482f937..c3e7bab 100644
--- a/scripts/kernel-config
+++ b/scripts/kernel-config
@@ -1,14 +1,48 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.19.27-gentoo-r1 Kernel Configuration
+# Linux/x86 4.14.113 Kernel Configuration
 #
-
-#
-# Compiler: gcc (Gentoo Hardened 8.2.0-r6 p1.7) 8.2.0
-#
-CONFIG_CC_IS_GCC=y
-CONFIG_GCC_VERSION=80200
-CONFIG_CLANG_VERSION=0
+CONFIG_64BIT=y
+CONFIG_X86_64=y
+CONFIG_X86=y
+CONFIG_INSTRUCTION_DECODER=y
+CONFIG_OUTPUT_FORMAT="elf64-x86-64"
+CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
+CONFIG_LOCKDEP_SUPPORT=y
+CONFIG_STACKTRACE_SUPPORT=y
+CONFIG_MMU=y
+CONFIG_ARCH_MMAP_RND_BITS_MIN=28
+CONFIG_ARCH_MMAP_RND_BITS_MAX=32
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
+CONFIG_NEED_DMA_MAP_STATE=y
+CONFIG_NEED_SG_DMA_LENGTH=y
+CONFIG_GENERIC_ISA_DMA=y
+CONFIG_GENERIC_BUG=y
+CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
+CONFIG_GENERIC_HWEIGHT=y
+CONFIG_ARCH_MAY_HAVE_PC_FDC=y
+CONFIG_RWSEM_XCHGADD_ALGORITHM=y
+CONFIG_GENERIC_CALIBRATE_DELAY=y
+CONFIG_ARCH_HAS_CPU_RELAX=y
+CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
+CONFIG_HAVE_SETUP_PER_CPU_AREA=y
+CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
+CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
+CONFIG_ARCH_HIBERNATION_POSSIBLE=y
+CONFIG_ARCH_SUSPEND_POSSIBLE=y
+CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
+CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
+CONFIG_ZONE_DMA32=y
+CONFIG_AUDIT_ARCH=y
+CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
+CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
+CONFIG_HAVE_INTEL_TXT=y
+CONFIG_X86_64_SMP=y
+CONFIG_ARCH_SUPPORTS_UPROBES=y
+CONFIG_FIX_EARLYCON_MEM=y
+CONFIG_PGTABLE_LEVELS=4
+CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
 CONFIG_IRQ_WORK=y
 CONFIG_BUILDTIME_EXTABLE_SORT=y
 CONFIG_THREAD_INFO_IN_TASK=y
@@ -17,10 +51,10 @@ CONFIG_THREAD_INFO_IN_TASK=y
 # General setup
 #
 CONFIG_INIT_ENV_ARG_LIMIT=32
+CONFIG_CROSS_COMPILE=""
 # CONFIG_COMPILE_TEST is not set
 CONFIG_LOCALVERSION=""
 # CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_BUILD_SALT=""
 CONFIG_HAVE_KERNEL_GZIP=y
 CONFIG_HAVE_KERNEL_BZIP2=y
 CONFIG_HAVE_KERNEL_LZMA=y
@@ -40,6 +74,7 @@ CONFIG_SYSVIPC_SYSCTL=y
 CONFIG_POSIX_MQUEUE=y
 CONFIG_POSIX_MQUEUE_SYSCTL=y
 CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_FHANDLE=y
 CONFIG_USELIB=y
 CONFIG_AUDIT=y
 CONFIG_HAVE_ARCH_AUDITSYSCALL=y
@@ -61,8 +96,7 @@ CONFIG_IRQ_SIM=y
 CONFIG_IRQ_DOMAIN_HIERARCHY=y
 CONFIG_GENERIC_MSI_IRQ=y
 CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
-CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
-CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
+# CONFIG_IRQ_DOMAIN_DEBUG is not set
 CONFIG_IRQ_FORCED_THREADING=y
 CONFIG_SPARSE_IRQ=y
 # CONFIG_GENERIC_IRQ_DEBUGFS is not set
@@ -85,9 +119,6 @@ CONFIG_NO_HZ_IDLE=y
 # CONFIG_NO_HZ_FULL is not set
 CONFIG_NO_HZ=y
 CONFIG_HIGH_RES_TIMERS=y
-# CONFIG_PREEMPT_NONE is not set
-CONFIG_PREEMPT_VOLUNTARY=y
-# CONFIG_PREEMPT is not set
 
 #
 # CPU/Task time and stats accounting
@@ -101,7 +132,6 @@ CONFIG_TASKSTATS=y
 CONFIG_TASK_DELAY_ACCT=y
 CONFIG_TASK_XACCT=y
 CONFIG_TASK_IO_ACCOUNTING=y
-CONFIG_CPU_ISOLATION=y
 
 #
 # RCU Subsystem
@@ -129,7 +159,6 @@ CONFIG_PAGE_COUNTER=y
 CONFIG_MEMCG=y
 CONFIG_MEMCG_SWAP=y
 # CONFIG_MEMCG_SWAP_ENABLED is not set
-CONFIG_MEMCG_KMEM=y
 CONFIG_BLK_CGROUP=y
 # CONFIG_DEBUG_BLK_CGROUP is not set
 CONFIG_CGROUP_WRITEBACK=y
@@ -149,13 +178,13 @@ CONFIG_CGROUP_PERF=y
 CONFIG_CGROUP_BPF=y
 # CONFIG_CGROUP_DEBUG is not set
 CONFIG_SOCK_CGROUP_DATA=y
+CONFIG_CHECKPOINT_RESTORE=y
 CONFIG_NAMESPACES=y
 CONFIG_UTS_NS=y
 CONFIG_IPC_NS=y
 CONFIG_USER_NS=y
 CONFIG_PID_NS=y
 CONFIG_NET_NS=y
-CONFIG_CHECKPOINT_RESTORE=y
 CONFIG_SCHED_AUTOGROUP=y
 # CONFIG_SYSFS_DEPRECATED is not set
 CONFIG_RELAY=y
@@ -181,8 +210,11 @@ CONFIG_MULTIUSER=y
 CONFIG_SGETMASK_SYSCALL=y
 CONFIG_SYSFS_SYSCALL=y
 CONFIG_SYSCTL_SYSCALL=y
-CONFIG_FHANDLE=y
 CONFIG_POSIX_TIMERS=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
 CONFIG_PRINTK=y
 CONFIG_PRINTK_NMI=y
 CONFIG_BUG=y
@@ -195,20 +227,14 @@ CONFIG_EPOLL=y
 CONFIG_SIGNALFD=y
 CONFIG_TIMERFD=y
 CONFIG_EVENTFD=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
 CONFIG_SHMEM=y
 CONFIG_AIO=y
 CONFIG_ADVISE_SYSCALLS=y
-CONFIG_MEMBARRIER=y
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
-CONFIG_KALLSYMS_BASE_RELATIVE=y

[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: scripts/

2019-04-23 Thread Anthony G. Basile
commit: 98317713eee0c39af9c65bd48e68881e10dc4cfd
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Apr 24 01:36:22 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Apr 24 01:36:47 2019 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=98317713

scripts/kernel-config: switch to 4.14.113

Signed-off-by: Anthony G. Basile  gentoo.org>

 scripts/kernel-config | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/kernel-config b/scripts/kernel-config
index 7963ce9..c3e7bab 100644
--- a/scripts/kernel-config
+++ b/scripts/kernel-config
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.14.112 Kernel Configuration
+# Linux/x86 4.14.113 Kernel Configuration
 #
 CONFIG_64BIT=y
 CONFIG_X86_64=y



[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: scripts/

2019-04-23 Thread Anthony G. Basile
commit: fd57d8e37f346ccc665dab3c55bb7b2e00792c66
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Apr 24 01:34:34 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Apr 24 01:35:25 2019 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=fd57d8e3

Revert "scripts/kernel-config: switch to 4.19.27-gentoo-r1"

This reverts commit 82a41caf5688f33a5936e75124ede70c16f6ca86.

Fails to boot with a kernel panic.

Signed-off-by: Anthony G. Basile  gentoo.org>

 scripts/kernel-config | 2488 ++---
 1 file changed, 1129 insertions(+), 1359 deletions(-)

diff --git a/scripts/kernel-config b/scripts/kernel-config
index 482f937..7963ce9 100644
--- a/scripts/kernel-config
+++ b/scripts/kernel-config
@@ -1,14 +1,48 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.19.27-gentoo-r1 Kernel Configuration
+# Linux/x86 4.14.112 Kernel Configuration
 #
-
-#
-# Compiler: gcc (Gentoo Hardened 8.2.0-r6 p1.7) 8.2.0
-#
-CONFIG_CC_IS_GCC=y
-CONFIG_GCC_VERSION=80200
-CONFIG_CLANG_VERSION=0
+CONFIG_64BIT=y
+CONFIG_X86_64=y
+CONFIG_X86=y
+CONFIG_INSTRUCTION_DECODER=y
+CONFIG_OUTPUT_FORMAT="elf64-x86-64"
+CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
+CONFIG_LOCKDEP_SUPPORT=y
+CONFIG_STACKTRACE_SUPPORT=y
+CONFIG_MMU=y
+CONFIG_ARCH_MMAP_RND_BITS_MIN=28
+CONFIG_ARCH_MMAP_RND_BITS_MAX=32
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
+CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
+CONFIG_NEED_DMA_MAP_STATE=y
+CONFIG_NEED_SG_DMA_LENGTH=y
+CONFIG_GENERIC_ISA_DMA=y
+CONFIG_GENERIC_BUG=y
+CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
+CONFIG_GENERIC_HWEIGHT=y
+CONFIG_ARCH_MAY_HAVE_PC_FDC=y
+CONFIG_RWSEM_XCHGADD_ALGORITHM=y
+CONFIG_GENERIC_CALIBRATE_DELAY=y
+CONFIG_ARCH_HAS_CPU_RELAX=y
+CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
+CONFIG_HAVE_SETUP_PER_CPU_AREA=y
+CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
+CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
+CONFIG_ARCH_HIBERNATION_POSSIBLE=y
+CONFIG_ARCH_SUSPEND_POSSIBLE=y
+CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
+CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
+CONFIG_ZONE_DMA32=y
+CONFIG_AUDIT_ARCH=y
+CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
+CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
+CONFIG_HAVE_INTEL_TXT=y
+CONFIG_X86_64_SMP=y
+CONFIG_ARCH_SUPPORTS_UPROBES=y
+CONFIG_FIX_EARLYCON_MEM=y
+CONFIG_PGTABLE_LEVELS=4
+CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
 CONFIG_IRQ_WORK=y
 CONFIG_BUILDTIME_EXTABLE_SORT=y
 CONFIG_THREAD_INFO_IN_TASK=y
@@ -17,10 +51,10 @@ CONFIG_THREAD_INFO_IN_TASK=y
 # General setup
 #
 CONFIG_INIT_ENV_ARG_LIMIT=32
+CONFIG_CROSS_COMPILE=""
 # CONFIG_COMPILE_TEST is not set
 CONFIG_LOCALVERSION=""
 # CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_BUILD_SALT=""
 CONFIG_HAVE_KERNEL_GZIP=y
 CONFIG_HAVE_KERNEL_BZIP2=y
 CONFIG_HAVE_KERNEL_LZMA=y
@@ -40,6 +74,7 @@ CONFIG_SYSVIPC_SYSCTL=y
 CONFIG_POSIX_MQUEUE=y
 CONFIG_POSIX_MQUEUE_SYSCTL=y
 CONFIG_CROSS_MEMORY_ATTACH=y
+CONFIG_FHANDLE=y
 CONFIG_USELIB=y
 CONFIG_AUDIT=y
 CONFIG_HAVE_ARCH_AUDITSYSCALL=y
@@ -61,8 +96,7 @@ CONFIG_IRQ_SIM=y
 CONFIG_IRQ_DOMAIN_HIERARCHY=y
 CONFIG_GENERIC_MSI_IRQ=y
 CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
-CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
-CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
+# CONFIG_IRQ_DOMAIN_DEBUG is not set
 CONFIG_IRQ_FORCED_THREADING=y
 CONFIG_SPARSE_IRQ=y
 # CONFIG_GENERIC_IRQ_DEBUGFS is not set
@@ -85,9 +119,6 @@ CONFIG_NO_HZ_IDLE=y
 # CONFIG_NO_HZ_FULL is not set
 CONFIG_NO_HZ=y
 CONFIG_HIGH_RES_TIMERS=y
-# CONFIG_PREEMPT_NONE is not set
-CONFIG_PREEMPT_VOLUNTARY=y
-# CONFIG_PREEMPT is not set
 
 #
 # CPU/Task time and stats accounting
@@ -101,7 +132,6 @@ CONFIG_TASKSTATS=y
 CONFIG_TASK_DELAY_ACCT=y
 CONFIG_TASK_XACCT=y
 CONFIG_TASK_IO_ACCOUNTING=y
-CONFIG_CPU_ISOLATION=y
 
 #
 # RCU Subsystem
@@ -129,7 +159,6 @@ CONFIG_PAGE_COUNTER=y
 CONFIG_MEMCG=y
 CONFIG_MEMCG_SWAP=y
 # CONFIG_MEMCG_SWAP_ENABLED is not set
-CONFIG_MEMCG_KMEM=y
 CONFIG_BLK_CGROUP=y
 # CONFIG_DEBUG_BLK_CGROUP is not set
 CONFIG_CGROUP_WRITEBACK=y
@@ -149,13 +178,13 @@ CONFIG_CGROUP_PERF=y
 CONFIG_CGROUP_BPF=y
 # CONFIG_CGROUP_DEBUG is not set
 CONFIG_SOCK_CGROUP_DATA=y
+CONFIG_CHECKPOINT_RESTORE=y
 CONFIG_NAMESPACES=y
 CONFIG_UTS_NS=y
 CONFIG_IPC_NS=y
 CONFIG_USER_NS=y
 CONFIG_PID_NS=y
 CONFIG_NET_NS=y
-CONFIG_CHECKPOINT_RESTORE=y
 CONFIG_SCHED_AUTOGROUP=y
 # CONFIG_SYSFS_DEPRECATED is not set
 CONFIG_RELAY=y
@@ -181,8 +210,11 @@ CONFIG_MULTIUSER=y
 CONFIG_SGETMASK_SYSCALL=y
 CONFIG_SYSFS_SYSCALL=y
 CONFIG_SYSCTL_SYSCALL=y
-CONFIG_FHANDLE=y
 CONFIG_POSIX_TIMERS=y
+CONFIG_KALLSYMS=y
+CONFIG_KALLSYMS_ALL=y
+CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
+CONFIG_KALLSYMS_BASE_RELATIVE=y
 CONFIG_PRINTK=y
 CONFIG_PRINTK_NMI=y
 CONFIG_BUG=y
@@ -195,20 +227,14 @@ CONFIG_EPOLL=y
 CONFIG_SIGNALFD=y
 CONFIG_TIMERFD=y
 CONFIG_EVENTFD=y
+CONFIG_BPF_SYSCALL=y
+CONFIG_BPF_JIT_ALWAYS_ON=y
 CONFIG_SHMEM=y
 CONFIG_AIO=y
 CONFIG_ADVISE_SYSCALLS=y
-CONFIG_MEMBARRIER=y
-CONFIG_KALLSYMS=y
-CONFIG_KALLSYMS_ALL=y
-CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
-CONFIG_KALLSYMS_BASE_RELATIVE=y

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

2019-04-23 Thread Aaron Bauman
commit: bc9e32947b1bfb37273069ad753eba71e1250f94
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 01:05:07 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 01:05:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc9e3294

profiles/package.mask: drop libressl mask

* dev-libs/libressl-2.9.1 is now considered stable upstream.

* Dropping the mask will allow wider testing before stabilizing.

Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index dea82fd3c02..99092e38d15 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -675,11 +675,6 @@ dev-db/pgadmin3
 # x11-drivers/nvidia-drivers. Work in progress.
 media-libs/libglvnd
 
-# Aaron Bauman  (30 Apr 2018)
-# Masked for testing. Will implement more of the 1.1 API
-# Which will require patch updates across the tree
-=dev-libs/libressl-2.9*
-
 # Brian Evans  (20 Apr 2018)
 # Likely to break a lot of software
 # Masked for initial testing



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

2019-04-23 Thread Aaron Bauman
commit: 939290a549c369484b8558aa4e993647fa4830bd
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 00:57:30 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 00:57:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=939290a5

dev-libs/libressl: bump to 2.9.1 stable release

* This is considered stable upstream, but will remain keyworded for a
bit to test.

* Tests were altered in this release. Thus, we have to explicitly
disable tests when --disable-static is passed to the build system which
is default for Gentoo. (Thanks to Jory Pratt for this fix)

* Tests still run when the required static-libs is set.  No changes
here.

Reviewed-by: Jory Pratt  gentoo.org>
Signed-off-by: Aaron Bauman  gentoo.org>

 dev-libs/libressl/Manifest  |  1 +
 dev-libs/libressl/libressl-2.9.1.ebuild | 62 +
 2 files changed, 63 insertions(+)

diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
index 4f5caa7d95b..182b62b8294 100644
--- a/dev-libs/libressl/Manifest
+++ b/dev-libs/libressl/Manifest
@@ -2,3 +2,4 @@ DIST libressl-2.6.5.tar.gz 3225481 BLAKE2B 
fcdf0d8b4b68fdb6c17299f4b9897c84f51ec
 DIST libressl-2.7.5.tar.gz 3539591 BLAKE2B 
0cda7307f01cea21584b3e814a20053ab128016f0b639856eb04b52f91156c74b8fdba485401e099f472ae7d9a35e9be54d169e3ddf743540595c2ffa0f979ff
 SHA512 
00828dd115f6395186ce4c9cadb604612763f67f2ad2236a331062add8115f6494a655cbec237ae069e373ffb915ed4025c993e06456c3da69b279e5f7e2b8d4
 DIST libressl-2.8.3.tar.gz 3366196 BLAKE2B 
e32c097b31998d68a31266fbbf3624d5ab8ca716f8c53e423bcf09b3a8ab3542c92a99e259ded7b86f99b45cc199cd44791520a609f18c35d150365de5768eec
 SHA512 
3967e08b3dc2277bf77057ea1f11148df7f96a2203cd21cf841902f2a1ec11320384a001d01fa58154d35612f7981bf89d5b1a60a2387713d5657677f76cc682
 DIST libressl-2.9.0.tar.gz 3400383 BLAKE2B 
652ac9ff962fd187563f2f6f9ea423d682f743c8443954ad3a8adc810530711482705f0cac1a805e2f85697ed1fed156c80da913dc07c8c13cd6ce78e44b6c4d
 SHA512 
db7fec664bef8d76204ca691c11df236abce3c85b2a51011eec5bd302e273b62fa3cfce0430980915c3f3ce34176d5ef9c187902f0b39d7fc151e69e552b499c
+DIST libressl-2.9.1.tar.gz 3607116 BLAKE2B 
a4542d7fc97bfd213162fe908e28b27d52329e2b6a5d77e0cb67d1a6732c500ca772d0c5735c9fcd036c477e6ede330305b4675bfcff9f72fd7886a781f30015
 SHA512 
7051911e566bb093c48a70da72c9981b870e3bf49a167ba6c934eece873084cc41221fbe3cd0c8baba268d0484070df7164e4b937854e716337540a87c214354

diff --git a/dev-libs/libressl/libressl-2.9.1.ebuild 
b/dev-libs/libressl/libressl-2.9.1.ebuild
new file mode 100644
index 000..e7bdc1e5c69
--- /dev/null
+++ b/dev-libs/libressl/libressl-2.9.1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit multilib-minimal libtool
+
+DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
+HOMEPAGE="https://www.libressl.org/;
+SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz;
+
+LICENSE="ISC openssl"
+# Reflects ABI of libcrypto.so and libssl.so.  Since these can differ,
+# we'll try to use the max of either.  However, if either change between
+# versions, we have to change the subslot to trigger rebuild of consumers.
+SLOT="0/47"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE="+asm static-libs test"
+REQUIRED_USE="test? ( static-libs )"
+
+RDEPEND="!dev-libs/openssl:0"
+DEPEND="${RDEPEND}"
+PDEPEND="app-misc/ca-certificates"
+
+src_prepare() {
+   touch crypto/Makefile.in
+
+   sed -i \
+   -e '/^[ \t]*CFLAGS=/s#-g ##' \
+   -e '/^[ \t]*CFLAGS=/s#-g"#"#' \
+   -e '/^[ \t]*CFLAGS=/s#-O2 ##' \
+   -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \
+   -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \
+   -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \
+   configure || die "fixing CFLAGS failed"
+
+   if ! use test ; then
+   sed -i \
+   -e '/^[ \t]*SUBDIRS =/s#tests##' \
+   Makefile.in || die "Removing tests failed"
+   fi
+
+   eapply "${FILESDIR}"/${PN}-2.8.3-solaris10.patch
+   eapply_user
+
+   elibtoolize  # for Solaris
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable asm) \
+   $(use_enable static-libs static)
+}
+
+multilib_src_test() {
+   emake check
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}
\ No newline at end of file



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

2019-04-23 Thread Aaron Bauman
commit: 9f94e7fb392cd089b8806819d0a99270cb0ed181
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 24 01:07:09 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 24 01:07:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f94e7fb

dev-libs/libressl: drop old versions

* hppa needs to catch up if they want libressl support

Signed-off-by: Aaron Bauman  gentoo.org>

 dev-libs/libressl/Manifest  |  3 --
 dev-libs/libressl/libressl-2.6.5.ebuild | 56 -
 dev-libs/libressl/libressl-2.7.5.ebuild | 53 ---
 dev-libs/libressl/libressl-2.9.0.ebuild | 56 -
 4 files changed, 168 deletions(-)

diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
index 182b62b8294..3ecddb3fac5 100644
--- a/dev-libs/libressl/Manifest
+++ b/dev-libs/libressl/Manifest
@@ -1,5 +1,2 @@
-DIST libressl-2.6.5.tar.gz 3225481 BLAKE2B 
fcdf0d8b4b68fdb6c17299f4b9897c84f51ec3407abc6c1bf8d474c4424161c563667ca1fb26c45dd20a0e895457e9210b7bd0539581472b94d594cc32a68191
 SHA512 
0601c73bb5c3d149df7eca3566831f1b35713aa16a15788a291922fce0bffa1ba0bc6ea9cac1fcecfd980009f2292b08b2a57d66b517fc1bc8c7364a24dbbd9d
-DIST libressl-2.7.5.tar.gz 3539591 BLAKE2B 
0cda7307f01cea21584b3e814a20053ab128016f0b639856eb04b52f91156c74b8fdba485401e099f472ae7d9a35e9be54d169e3ddf743540595c2ffa0f979ff
 SHA512 
00828dd115f6395186ce4c9cadb604612763f67f2ad2236a331062add8115f6494a655cbec237ae069e373ffb915ed4025c993e06456c3da69b279e5f7e2b8d4
 DIST libressl-2.8.3.tar.gz 3366196 BLAKE2B 
e32c097b31998d68a31266fbbf3624d5ab8ca716f8c53e423bcf09b3a8ab3542c92a99e259ded7b86f99b45cc199cd44791520a609f18c35d150365de5768eec
 SHA512 
3967e08b3dc2277bf77057ea1f11148df7f96a2203cd21cf841902f2a1ec11320384a001d01fa58154d35612f7981bf89d5b1a60a2387713d5657677f76cc682
-DIST libressl-2.9.0.tar.gz 3400383 BLAKE2B 
652ac9ff962fd187563f2f6f9ea423d682f743c8443954ad3a8adc810530711482705f0cac1a805e2f85697ed1fed156c80da913dc07c8c13cd6ce78e44b6c4d
 SHA512 
db7fec664bef8d76204ca691c11df236abce3c85b2a51011eec5bd302e273b62fa3cfce0430980915c3f3ce34176d5ef9c187902f0b39d7fc151e69e552b499c
 DIST libressl-2.9.1.tar.gz 3607116 BLAKE2B 
a4542d7fc97bfd213162fe908e28b27d52329e2b6a5d77e0cb67d1a6732c500ca772d0c5735c9fcd036c477e6ede330305b4675bfcff9f72fd7886a781f30015
 SHA512 
7051911e566bb093c48a70da72c9981b870e3bf49a167ba6c934eece873084cc41221fbe3cd0c8baba268d0484070df7164e4b937854e716337540a87c214354

diff --git a/dev-libs/libressl/libressl-2.6.5.ebuild 
b/dev-libs/libressl/libressl-2.6.5.ebuild
deleted file mode 100644
index d4870428f99..000
--- a/dev-libs/libressl/libressl-2.6.5.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="https://www.libressl.org/;
-SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz;
-
-LICENSE="ISC openssl"
-# Reflects ABI of libcrypto.so and libssl.so.  Since these can differ,
-# we'll try to use the max of either.  However, if either change between
-# versions, we have to change the subslot to trigger rebuild of consumers.
-SLOT="0/44"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
-IUSE="+asm static-libs test"
-REQUIRED_USE="test? ( static-libs )"
-
-RDEPEND="!dev-libs/openssl:0"
-DEPEND="${RDEPEND}"
-PDEPEND="app-misc/ca-certificates"
-
-PATCHES=( "${FILESDIR}/libressl-2.6.4-hppa-asm.patch" )
-
-src_prepare() {
-   touch crypto/Makefile.in
-
-   sed -i \
-   -e '/^[ \t]*CFLAGS=/s#-g ##' \
-   -e '/^[ \t]*CFLAGS=/s#-g"#"#' \
-   -e '/^[ \t]*CFLAGS=/s#-O2 ##' \
-   -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \
-   -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \
-   -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \
-   configure || die "fixing CFLAGS failed"
-
-   default
-   eautoreconf
-}
-
-multilib_src_configure() {
-   ECONF_SOURCE="${S}" econf \
-   $(use_enable asm) \
-   $(use_enable static-libs static)
-}
-
-multilib_src_test() {
-   emake check
-}
-
-multilib_src_install_all() {
-   einstalldocs
-   find "${D}" -name '*.la' -exec rm -f {} + || die
-}

diff --git a/dev-libs/libressl/libressl-2.7.5.ebuild 
b/dev-libs/libressl/libressl-2.7.5.ebuild
deleted file mode 100644
index 288540105ec..000
--- a/dev-libs/libressl/libressl-2.7.5.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib-minimal
-
-DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
-HOMEPAGE="https://www.libressl.org/;
-SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz;
-
-LICENSE="ISC openssl"
-# Reflects ABI of 

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

2019-04-23 Thread Aaron Bauman
commit: de5f29e26745c7a4388737e6495b3253090d1b2a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 22:06:46 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 22:07:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de5f29e2

media-gfx/qrencode: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 media-gfx/qrencode/qrencode-4.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/qrencode/qrencode-4.0.2.ebuild 
b/media-gfx/qrencode/qrencode-4.0.2.ebuild
index 14b1fb90df6..973d1bda896 100644
--- a/media-gfx/qrencode/qrencode-4.0.2.ebuild
+++ b/media-gfx/qrencode/qrencode-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
@@ -9,7 +9,7 @@ SRC_URI="https://fukuchi.org/works/${PN}/${P}.tar.bz2;
 
 LICENSE="LGPL-2"
 SLOT="0/4"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="test"
 
 RDEPEND="media-libs/libpng:0="



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

2019-04-23 Thread Aaron Bauman
commit: 0b69f78342098b74fec4e8a61df92e5203d1b565
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 22:07:21 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 22:07:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b69f783

app-shells/fish: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

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

diff --git a/app-shells/fish/fish-2.7.1.ebuild 
b/app-shells/fish/fish-2.7.1.ebuild
index 2bc49389213..b5c48166ee1 100644
--- a/app-shells/fish/fish-2.7.1.ebuild
+++ b/app-shells/fish/fish-2.7.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${PN}-shell/${PN}-shell/releases/download/${MY_PV}/$
 LICENSE="GPL-2"
 SLOT="0"
 [[ "${PV}" = *_* ]] || \
-KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm arm64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x86-solaris"
 IUSE="nls test"
 
 RDEPEND="



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

2019-04-23 Thread Aaron Bauman
commit: 41e98cf98bb842e618673ad4453b2b81c29ab426
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 22:06:22 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 22:07:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e98cf9

x11-misc/xdotool: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

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

diff --git a/x11-misc/xdotool/xdotool-3.20160805.1.ebuild 
b/x11-misc/xdotool/xdotool-3.20160805.1.ebuild
index 42794df4d8f..69122be839e 100644
--- a/x11-misc/xdotool/xdotool-3.20160805.1.ebuild
+++ b/x11-misc/xdotool/xdotool-3.20160805.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/jordansissel/xdotool/releases/download/v${PV}/${P}.t
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~x86"
 IUSE="examples"
 
 RDEPEND="



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

2019-04-23 Thread Andreas K. Hüttel
commit: 3fb59ae860a9cd5cdd34b5c63fa006b7025a4604
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue Apr 23 22:04:53 2019 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Tue Apr 23 22:05:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fb59ae8

sys-libs/glibc: Add riscv dynamic linker locations

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

 sys-libs/glibc/glibc-2.29-r2.ebuild | 3 +++
 sys-libs/glibc/glibc-.ebuild| 3 +++
 2 files changed, 6 insertions(+)

diff --git a/sys-libs/glibc/glibc-2.29-r2.ebuild 
b/sys-libs/glibc/glibc-2.29-r2.ebuild
index c0f14491fe7..60641cf7a5d 100644
--- a/sys-libs/glibc/glibc-2.29-r2.ebuild
+++ b/sys-libs/glibc/glibc-2.29-r2.ebuild
@@ -1180,6 +1180,9 @@ glibc_do_src_install() {
# powerpc
ppc /lib/ld.so.1
ppc64   /lib64/ld64.so.1
+   # riscv
+   lp64d   /lib/ld-linux-riscv64-lp64d.so.1
+   lp64/lib/ld-linux-riscv64-lp64.so.1
# s390
s390/lib/ld.so.1
s390x   /lib/ld64.so.1

diff --git a/sys-libs/glibc/glibc-.ebuild b/sys-libs/glibc/glibc-.ebuild
index 4951020d519..3655b03320f 100644
--- a/sys-libs/glibc/glibc-.ebuild
+++ b/sys-libs/glibc/glibc-.ebuild
@@ -1181,6 +1181,9 @@ glibc_do_src_install() {
# powerpc
ppc /lib/ld.so.1
ppc64   /lib64/ld64.so.1
+   # riscv
+   lp64d   /lib/ld-linux-riscv64-lp64d.so.1
+   lp64/lib/ld-linux-riscv64-lp64.so.1
# s390
s390/lib/ld.so.1
s390x   /lib/ld64.so.1



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

2019-04-23 Thread Aaron Bauman
commit: 7ae43c3e30aa5e6a4f0d207ad7b2714b5ff94138
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:40:19 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:40:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ae43c3e

arm64/package.use.mask: drop mask on spell

* app-text/gspell is now stable

Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/arch/arm64/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 3e5052c5e13..bd36fe5173d 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -69,10 +69,6 @@ virtual/ffmpeg -sdl
 # It builds OK but is not yet in ::gentoo. bug #678404
 kde-apps/cantor lua
 
-# Mart Raudsepp  (23 Feb 2019)
-# app-text/gspell not keyworded yet
-app-text/evince spell
-
 # Davide Pesavento  (27 Dec 2018)
 # The corresponding Qt5 modules are not keyworded on arm64, and we don't want 
to
 # keyword them solely because of PyQt5 while there are no other in-tree users.



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-uk/

2019-04-23 Thread Aaron Bauman
commit: 2560ace5baf5d939f0b42b66d6a027e71ceb253c
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:30:45 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2560ace5

app-dicts/myspell-uk: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-uk/myspell-uk-1.6.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-uk/myspell-uk-1.6.5.ebuild 
b/app-dicts/myspell-uk/myspell-uk-1.6.5.ebuild
index 976ffda1ffb..a60e934a7c1 100644
--- a/app-dicts/myspell-uk/myspell-uk-1.6.5.ebuild
+++ b/app-dicts/myspell-uk/myspell-uk-1.6.5.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
@@ -25,5 +25,5 @@ 
SRC_URI="http://extensions.libreoffice.org/extension-center/ukrainian-spelling-d
 
 LICENSE="GPL-3 LGPL-2.1 MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-ms/

2019-04-23 Thread Aaron Bauman
commit: d6a317792020e08487e4ebcf2022c2e66361924a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:33:11 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6a31779

app-dicts/myspell-ms: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-ms/myspell-ms-20100407.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/myspell-ms/myspell-ms-20100407.ebuild 
b/app-dicts/myspell-ms/myspell-ms-20100407.ebuild
index 525be75be2f..8c5245549eb 100644
--- a/app-dicts/myspell-ms/myspell-ms-20100407.ebuild
+++ b/app-dicts/myspell-ms/myspell-ms-20100407.ebuild
@@ -22,5 +22,5 @@ 
HOMEPAGE="https://extensions.openoffice.org/en/project/kamus-bahasa-malaysia-mal
 SRC_URI="mirror://sourceforge/aoo-extensions/ms_my.oxt -> ${P}.oxt"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-ca/

2019-04-23 Thread Aaron Bauman
commit: 739140d70f4ad78b3ed3378e9ae744c8fdbf0488
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:37:05 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:39:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=739140d7

app-dicts/myspell-ca: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-ca/myspell-ca-2.3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-ca/myspell-ca-2.3.0.ebuild 
b/app-dicts/myspell-ca/myspell-ca-2.3.0.ebuild
index 0429eda9f81..f4a858edd28 100644
--- a/app-dicts/myspell-ca/myspell-ca-2.3.0.ebuild
+++ b/app-dicts/myspell-ca/myspell-ca-2.3.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
@@ -22,7 +22,7 @@ 
SRC_URI="http://www.softcatala.org/diccionaris/actualitzacions/OOo/catalan.oxt -
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-nb/

2019-04-23 Thread Aaron Bauman
commit: f9dd3efac2e4ea32c92884341092698db13590ce
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:37:26 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:39:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9dd3efa

app-dicts/myspell-nb: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-nb/myspell-nb-2.0.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-nb/myspell-nb-2.0.10.ebuild 
b/app-dicts/myspell-nb/myspell-nb-2.0.10.ebuild
index 0171ccad56b..44952b2440c 100644
--- a/app-dicts/myspell-nb/myspell-nb-2.0.10.ebuild
+++ b/app-dicts/myspell-nb/myspell-nb-2.0.10.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
@@ -25,7 +25,7 @@ 
SRC_URI="https://alioth.debian.org/frs/download.php/2357/no_NO-pack2-${PV}.zip;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 src_unpack() {



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-el/

2019-04-23 Thread Aaron Bauman
commit: 70003fe2a607c2283326738ad9a4e12d60eb8251
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:35:17 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70003fe2

app-dicts/myspell-el: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-el/myspell-el-0.9.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-el/myspell-el-0.9.ebuild 
b/app-dicts/myspell-el/myspell-el-0.9.ebuild
index 35d827d71f0..09521b9262b 100644
--- a/app-dicts/myspell-el/myspell-el-0.9.ebuild
+++ b/app-dicts/myspell-el/myspell-el-0.9.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
@@ -23,5 +23,5 @@ 
SRC_URI="http://elspell.math.upatras.gr/files/ooffice/el_GR-${PV}.zip http://els
 
 LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-sl/

2019-04-23 Thread Aaron Bauman
commit: 0e66364226b2e4be5e21e0d0435aa65aa3e2d45a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:28:57 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e663642

app-dicts/myspell-sl: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-sl/myspell-sl-2012.01.04.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-sl/myspell-sl-2012.01.04.ebuild 
b/app-dicts/myspell-sl/myspell-sl-2012.01.04.ebuild
index 1249270dd9b..4dc59f481ce 100644
--- a/app-dicts/myspell-sl/myspell-sl-2012.01.04.ebuild
+++ b/app-dicts/myspell-sl/myspell-sl-2012.01.04.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
@@ -25,5 +25,5 @@ 
SRC_URI="http://extensions.libreoffice.org/extension-center/slovenian-dictionary
 
 LICENSE="GPL-3 LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-ku/

2019-04-23 Thread Aaron Bauman
commit: 466aa6ae640e4515b45e119115297e019f623a2e
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:31:06 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=466aa6ae

app-dicts/myspell-ku: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-ku/myspell-ku-0.21.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-ku/myspell-ku-0.21.ebuild 
b/app-dicts/myspell-ku/myspell-ku-0.21.ebuild
index de2f4b5eace..3fcc101f166 100644
--- a/app-dicts/myspell-ku/myspell-ku-0.21.ebuild
+++ b/app-dicts/myspell-ku/myspell-ku-0.21.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
@@ -22,5 +22,5 @@ 
SRC_URI="mirror://sourceforge/myspellkurdish/ku_TR-${PV/./}.zip"
 
 LICENSE="GPL-3 LGPL-3 MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-km/

2019-04-23 Thread Aaron Bauman
commit: 592e6c2de05e136332531cae7843f424a408c72d
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:34:55 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=592e6c2d

app-dicts/myspell-km: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-km/myspell-km-1.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-km/myspell-km-1.6.ebuild 
b/app-dicts/myspell-km/myspell-km-1.6.ebuild
index e0c375acfb5..ab770b635b0 100644
--- a/app-dicts/myspell-km/myspell-km-1.6.ebuild
+++ b/app-dicts/myspell-km/myspell-km-1.6.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
@@ -22,5 +22,5 @@ 
SRC_URI="http://extensions.libreoffice.org/extension-center/khmer-spelling-check
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-ro/

2019-04-23 Thread Aaron Bauman
commit: 8204e5b80e4339f9c00cb3f9c7109f5e350f8df4
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:32:50 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8204e5b8

app-dicts/myspell-ro: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-ro/myspell-ro-3.3.10.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-ro/myspell-ro-3.3.10.ebuild 
b/app-dicts/myspell-ro/myspell-ro-3.3.10.ebuild
index bdcb11f5828..94d8408cd7d 100644
--- a/app-dicts/myspell-ro/myspell-ro-3.3.10.ebuild
+++ b/app-dicts/myspell-ro/myspell-ro-3.3.10.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=5
@@ -29,5 +29,5 @@ SRC_URI="
 
 LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-et/

2019-04-23 Thread Aaron Bauman
commit: ea6dde252ffb16253eb1390d37c760a8d26aa7c7
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:33:34 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea6dde25

app-dicts/myspell-et: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-et/myspell-et-20030606.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-et/myspell-et-20030606.ebuild 
b/app-dicts/myspell-et/myspell-et-20030606.ebuild
index 523450c8450..c652d8fce5d 100644
--- a/app-dicts/myspell-et/myspell-et-20030606.ebuild
+++ b/app-dicts/myspell-et/myspell-et-20030606.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
@@ -23,7 +23,7 @@ 
SRC_URI="http://www.meso.ee/~jjpp/speller/ispell-et_${PV}.tar.gz;
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 S="${WORKDIR}/ispell-et-${PV}"



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-it/

2019-04-23 Thread Aaron Bauman
commit: 87e4eb1fc19f27abdd8a67c02ce25827ecf15e5e
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:36:44 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:39:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87e4eb1f

app-dicts/myspell-it: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-it/myspell-it-20081129-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-it/myspell-it-20081129-r1.ebuild 
b/app-dicts/myspell-it/myspell-it-20081129-r1.ebuild
index dfca78f79f2..a25648ed5c9 100644
--- a/app-dicts/myspell-it/myspell-it-20081129-r1.ebuild
+++ b/app-dicts/myspell-it/myspell-it-20081129-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
@@ -25,7 +25,7 @@ 
SRC_URI="mirror://sourceforge/linguistico/Dizionari.IT_${PV}.oxt"
 
 LICENSE="AGPL-3 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-eo/

2019-04-23 Thread Aaron Bauman
commit: e40bede93c8cc7c14abb1adc4a128c7ee959
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:34:34 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e40bede9

app-dicts/myspell-eo: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-eo/myspell-eo-1.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-eo/myspell-eo-1.0-r1.ebuild 
b/app-dicts/myspell-eo/myspell-eo-1.0-r1.ebuild
index e05f6123750..4255fee546a 100644
--- a/app-dicts/myspell-eo/myspell-eo-1.0-r1.ebuild
+++ b/app-dicts/myspell-eo/myspell-eo-1.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -22,7 +22,7 @@ 
SRC_URI="mirror://sourceforge/aoo-extensions/3377/1/${PV}-dev.oxt -> ${P}.oxt"
 
 LICENSE="GPL-2 LGPL-3 MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-cs/

2019-04-23 Thread Aaron Bauman
commit: d718953d73c90a9cba809c7f4ca3640882a91fb0
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:36:01 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d718953d

app-dicts/myspell-cs: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-cs/myspell-cs-20110224.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-cs/myspell-cs-20110224.ebuild 
b/app-dicts/myspell-cs/myspell-cs-20110224.ebuild
index a0986dc2a1f..3158a741e5d 100644
--- a/app-dicts/myspell-cs/myspell-cs-20110224.ebuild
+++ b/app-dicts/myspell-cs/myspell-cs-20110224.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
@@ -25,5 +25,5 @@ SRC_URI="${HOMEPAGE}/dict-cs-2.oxt -> ${P}.zip"
 
 LICENSE="GPL-2 MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-en/

2019-04-23 Thread Aaron Bauman
commit: cefd72eb30b07badb938d397c1a3c4f6bbee4277
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:30:24 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cefd72eb

app-dicts/myspell-en: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-en/myspell-en-20190101.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-en/myspell-en-20190101.ebuild 
b/app-dicts/myspell-en/myspell-en-20190101.ebuild
index 932b93b49c6..d71c0aee1b2 100644
--- a/app-dicts/myspell-en/myspell-en-20190101.ebuild
+++ b/app-dicts/myspell-en/myspell-en-20190101.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="7"
@@ -13,7 +13,7 @@ 
SRC_URI="https://extensions.libreoffice.org/extensions/english-dictionaries/${MY
 
 LICENSE="BSD MIT LGPL-3+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE=""
 
 PLOCALES=( "en" "en-AU" "en-CA" "en-GB" "en-US" "en-ZA" )



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-cy/

2019-04-23 Thread Aaron Bauman
commit: 0b62b5734d5bd98ffac456877f20e8065e794c64
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:34:14 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b62b573

app-dicts/myspell-cy: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-cy/myspell-cy-20130708.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-cy/myspell-cy-20130708.ebuild 
b/app-dicts/myspell-cy/myspell-cy-20130708.ebuild
index 396e9dfc4be..9a9ad744550 100644
--- a/app-dicts/myspell-cy/myspell-cy-20130708.ebuild
+++ b/app-dicts/myspell-cy/myspell-cy-20130708.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
@@ -22,5 +22,5 @@ SRC_URI="mirror://sourceforge/aoo-extensions/geiriadur-cy.oxt 
-> ${P}.oxt"
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-da/

2019-04-23 Thread Aaron Bauman
commit: 465af2eff372d00024f00a933f55a5e15a6cb29d
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:32:30 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=465af2ef

app-dicts/myspell-da: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-da/myspell-da-2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/myspell-da/myspell-da-2.3.ebuild 
b/app-dicts/myspell-da/myspell-da-2.3.ebuild
index b137d33220c..1e87df274ca 100644
--- a/app-dicts/myspell-da/myspell-da-2.3.ebuild
+++ b/app-dicts/myspell-da/myspell-da-2.3.ebuild
@@ -24,5 +24,5 @@ 
SRC_URI="https://extensions.libreoffice.org/extensions/stavekontrolden-danish-di
 
 LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-fr/

2019-04-23 Thread Aaron Bauman
commit: 6403c395cd7b7d0b6b2aeb9e81b9e806724b90ae
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:36:22 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6403c395

app-dicts/myspell-fr: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-fr/myspell-fr-4.5-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-fr/myspell-fr-4.5-r1.ebuild 
b/app-dicts/myspell-fr/myspell-fr-4.5-r1.ebuild
index 56c5d6037d0..bd227f42483 100644
--- a/app-dicts/myspell-fr/myspell-fr-4.5-r1.ebuild
+++ b/app-dicts/myspell-fr/myspell-fr-4.5-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
@@ -36,7 +36,7 @@ SRC_URI="
 
 LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-linux ~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-linux ~x86-macos"
 IUSE=""
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-nl/

2019-04-23 Thread Aaron Bauman
commit: 17cf29bc1f08edd104918f6902ea60c4e0cac3f3
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:35:38 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17cf29bc

app-dicts/myspell-nl: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-nl/myspell-nl-2.10g-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/myspell-nl/myspell-nl-2.10g-r1.ebuild 
b/app-dicts/myspell-nl/myspell-nl-2.10g-r1.ebuild
index b7cd4d74214..bcbca840a4d 100644
--- a/app-dicts/myspell-nl/myspell-nl-2.10g-r1.ebuild
+++ b/app-dicts/myspell-nl/myspell-nl-2.10g-r1.ebuild
@@ -30,7 +30,7 @@ SRC_URI="
 
 LICENSE="BSD-2 CC-BY-3.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-sv/

2019-04-23 Thread Aaron Bauman
commit: 507e3abea4bd38b0b0e7ee82136a436a526c25c2
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:30:02 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=507e3abe

app-dicts/myspell-sv: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-sv/myspell-sv-2.14.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-sv/myspell-sv-2.14.ebuild 
b/app-dicts/myspell-sv/myspell-sv-2.14.ebuild
index 67d5167e040..f1bb2e4edf9 100644
--- a/app-dicts/myspell-sv/myspell-sv-2.14.ebuild
+++ b/app-dicts/myspell-sv/myspell-sv-2.14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -35,5 +35,5 @@ SRC_URI="
 
 LICENSE="CC-BY-SA-3.0 GPL-2 LGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-lt/

2019-04-23 Thread Aaron Bauman
commit: b73cf16523eb9b46e4610432bd63408947acfd57
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:33:54 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b73cf165

app-dicts/myspell-lt: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-lt/myspell-lt-1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/myspell-lt/myspell-lt-1.3.ebuild 
b/app-dicts/myspell-lt/myspell-lt-1.3.ebuild
index c66c7c2e3ed..8a222f6d245 100644
--- a/app-dicts/myspell-lt/myspell-lt-1.3.ebuild
+++ b/app-dicts/myspell-lt/myspell-lt-1.3.ebuild
@@ -22,5 +22,5 @@ 
SRC_URI="https://launchpad.net/ispell-lt/main/${PV}/+download/${P}.zip;
 
 LICENSE="BSD LPPL-1.3b"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-af/

2019-04-23 Thread Aaron Bauman
commit: 6d8849b50b8dfeff622fcab4dfd8167541cf8764
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:32:09 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d8849b5

app-dicts/myspell-af: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-af/myspell-af-20080701.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-af/myspell-af-20080701.ebuild 
b/app-dicts/myspell-af/myspell-af-20080701.ebuild
index 76f59d3f03e..6f9d90af5dd 100644
--- a/app-dicts/myspell-af/myspell-af-20080701.ebuild
+++ b/app-dicts/myspell-af/myspell-af-20080701.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
@@ -23,5 +23,5 @@ 
SRC_URI="mirror://sourceforge/aoo-extensions/1109/0/dict-af.oxt"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-sq/

2019-04-23 Thread Aaron Bauman
commit: d194bad7778dac9233f4c7f0c0f22f5c8eb0f80d
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:31:27 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d194bad7

app-dicts/myspell-sq: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-sq/myspell-sq-1.6.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-sq/myspell-sq-1.6.4.ebuild 
b/app-dicts/myspell-sq/myspell-sq-1.6.4.ebuild
index f673f929185..226fb182265 100644
--- a/app-dicts/myspell-sq/myspell-sq-1.6.4.ebuild
+++ b/app-dicts/myspell-sq/myspell-sq-1.6.4.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
@@ -22,7 +22,7 @@ SRC_URI="http://www.shkenca.org/shkarkime/${PN}_AL-${PV}.zip;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 S="${WORKDIR}/${PN}_AL-${PV}"



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-kk/

2019-04-23 Thread Aaron Bauman
commit: 234c0a540f91407cb394538bcc53bb20111caa59
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:31:48 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=234c0a54

app-dicts/myspell-kk: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-kk/myspell-kk-1.1.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-kk/myspell-kk-1.1.2.ebuild 
b/app-dicts/myspell-kk/myspell-kk-1.1.2.ebuild
index 2bf60fe77cf..0ed8b6be01f 100644
--- a/app-dicts/myspell-kk/myspell-kk-1.1.2.ebuild
+++ b/app-dicts/myspell-kk/myspell-kk-1.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -20,6 +20,6 @@ 
SRC_URI="https://github.com/kergalym/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2+ LGPL-2+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 
 S="${WORKDIR}/${P}" # override eclass assignment



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-mk/

2019-04-23 Thread Aaron Bauman
commit: e264eb8e7ecb16bc00d18e7ff6082be5e0ef4ffc
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:29:38 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e264eb8e

app-dicts/myspell-mk: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-mk/myspell-mk-20091211.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/myspell-mk/myspell-mk-20091211.ebuild 
b/app-dicts/myspell-mk/myspell-mk-20091211.ebuild
index c8e25221066..2d84fa2acbc 100644
--- a/app-dicts/myspell-mk/myspell-mk-20091211.ebuild
+++ b/app-dicts/myspell-mk/myspell-mk-20091211.ebuild
@@ -22,5 +22,5 @@ 
HOMEPAGE="https://extensions.openoffice.org/en/project/macedonian-spellchecker-d
 SRC_URI="mirror://sourceforge/aoo-extensions/dict-mk.oxt -> ${P}.oxt"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-id/

2019-04-23 Thread Aaron Bauman
commit: bb4924c4166d1fd176d8943b4ce6ca8920798f0b
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 21:29:17 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 21:38:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb4924c4

app-dicts/myspell-id: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-dicts/myspell-id/myspell-id-2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/myspell-id/myspell-id-2.0.ebuild 
b/app-dicts/myspell-id/myspell-id-2.0.ebuild
index a51e0cf0c48..b5d4258641a 100644
--- a/app-dicts/myspell-id/myspell-id-2.0.ebuild
+++ b/app-dicts/myspell-id/myspell-id-2.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
@@ -23,5 +23,5 @@ 
SRC_URI="http://extensions.libreoffice.org/extension-center/indonesian-dictionar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



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

2019-04-23 Thread Sergei Trofimovich
commit: ea731870dfd0e38480d0a61460ae805565bcf5b0
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Apr 23 20:59:26 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Apr 23 21:14:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea731870

dev-ruby/text: bring back sparc

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

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

diff --git a/dev-ruby/text/text-1.3.1.ebuild b/dev-ruby/text/text-1.3.1.ebuild
index 076341161fe..dc2d7466773 100644
--- a/dev-ruby/text/text-1.3.1.ebuild
+++ b/dev-ruby/text/text-1.3.1.ebuild
@@ -15,5 +15,5 @@ HOMEPAGE="https://github.com/threedaymonk/text;
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE=""



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

2019-04-23 Thread Tim Harder
commit: 93db10819702996001052ea20116317733a7cd7b
Author: Tim Harder  gentoo  org>
AuthorDate: Tue Apr 23 21:11:13 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Apr 23 21:13:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93db1081

dev-python/pycairo: version bump to 1.18.1

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

Signed-off-by: Tim Harder  gentoo.org>

 dev-python/pycairo/Manifest  |  1 +
 dev-python/pycairo/pycairo-1.18.1.ebuild | 54 
 2 files changed, 55 insertions(+)

diff --git a/dev-python/pycairo/Manifest b/dev-python/pycairo/Manifest
index f9e41f94403..719ee186422 100644
--- a/dev-python/pycairo/Manifest
+++ b/dev-python/pycairo/Manifest
@@ -1,2 +1,3 @@
 DIST pycairo-1.16.3.tar.gz 188610 BLAKE2B 
71034891bae636e23379a3fdc49c9163cff61183fe46c4027bbad3206e72255e60081dbc3cb02808d5c3840b618f6c12f8106ca5a08ddb226a65917ba2da390c
 SHA512 
d60978f85eb0430f2038b0e7d0bce23602e8c180a7611eea424fd8bc3cdd8ce249af364abd0e77ab3b7ab439761721cba5c2398f51af2a89add3fb7fda8aa5db
 DIST pycairo-1.17.0.tar.gz 192182 BLAKE2B 
b7a4db8258b03b89878fca6b5e27bb9037b74b1792ded23edfe38a0aa5e9ba5003bbac2c8623a6ace8033960c3199b307dcb689650e21ba2df0d81a36a71b6cf
 SHA512 
c073f04d92c9a577f7dcea8d46335751ebd896a65e682e99e4453877d8ba2cadad4437f4ceb1ce8c05eb87d5757a2bd78ac2549e63e38720f4c9276e6f70bdd5
+DIST pycairo-1.18.1.tar.gz 200610 BLAKE2B 
47e707f3481d816e9fcd72d169d7ab9210f746396a45a6c9cdac946b4dca9529515ebe1a288d985eed659ff23488bec2cf3e0fb8d11c160349530871ed05881f
 SHA512 
fef6b0d863d45a182a1ba671ddc4f6cb15745447cdaed3e1efeb05fad97f02aa0a56698517648a942bde263d74e06ad7781bcf487757aeb3b124ef64dc525024

diff --git a/dev-python/pycairo/pycairo-1.18.1.ebuild 
b/dev-python/pycairo/pycairo-1.18.1.ebuild
new file mode 100644
index 000..c45b52a594f
--- /dev/null
+++ b/dev-python/pycairo/pycairo-1.18.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy{,3} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for the cairo library"
+HOMEPAGE="https://www.cairographics.org/pycairo/ 
https://github.com/pygobject/pycairo;
+SRC_URI="https://github.com/pygobject/${PN}/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+IUSE="doc examples test"
+
+RDEPEND="
+   >=x11-libs/cairo-1.13.1[svg]
+"
+DEPEND="${RDEPEND}
+   doc? ( dev-python/sphinx )
+   test? (
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   )
+"
+
+python_compile_all() {
+   if use doc; then
+   sphinx-build docs -b html _build/html || die
+   fi
+}
+
+python_test() {
+   esetup.py test
+}
+
+python_install() {
+   distutils-r1_python_install \
+   install_pkgconfig 
--pkgconfigdir="${EPREFIX}/usr/$(get_libdir)/pkgconfig"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( _build/html/. )
+
+   if use examples; then
+   dodoc -r examples
+   fi
+
+   distutils-r1_python_install_all
+}



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

2019-04-23 Thread Tim Harder
commit: 9f316ec42e3234a6a9f5183569426a96fe876cc8
Author: Tim Harder  gentoo  org>
AuthorDate: Tue Apr 23 21:12:32 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Apr 23 21:13:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f316ec4

sys-process/parallel: version bump to 20190422

Signed-off-by: Tim Harder  gentoo.org>

 sys-process/parallel/Manifest |  1 +
 sys-process/parallel/parallel-20190422.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/sys-process/parallel/Manifest b/sys-process/parallel/Manifest
index a09ce0f5127..64d9bc78309 100644
--- a/sys-process/parallel/Manifest
+++ b/sys-process/parallel/Manifest
@@ -1,2 +1,3 @@
 DIST parallel-20181122.tar.bz2 1797525 BLAKE2B 
59fa14fffd205ec9846c6054e2b6832f4480ed9ba78466a0d3a3004e0aa4bb3d21f533d49d705d091bd8d55406f74404555453892036a21b8b4b69c8ca83458b
 SHA512 
f832f4d5ca1b7f6149e73074b03fa7ce34e66b0e7d579651a1b52959dde658448da0ec3c9b066275c146a1a39715881237cc42f58a0c413d04240f0c15a98ed7
 DIST parallel-20190322.tar.bz2 2009995 BLAKE2B 
41f066ac0969be9da782be16011c4d72977bbd11dcaebe858db0f0803eeb31a0d8aeafc425632a23863f2296dcfd03d286ece359f75ee2ff0c3f38fb4399ef85
 SHA512 
4d16a9be66f3f72334afcae7121ab55f0118c142a31fb6120d2fbee3006252de9ea519cfc62d366f9f4b2e28e6180dc3f7ea591debe25ee66969f7d9a87f
+DIST parallel-20190422.tar.bz2 2011139 BLAKE2B 
09da0f286ae0b7ed09225d0281eee1e73dfcec40723a35c6107f737d4d8cb50cda8df0391ac65f9a9a23d4e2af106991e3584007dd1828369c8e9decdf3b3433
 SHA512 
0b08b2883d8eb33ccebfdd3707a53f16db9d70ac3ca0637d369e6159408c494d34c494c868c7b537083f17a1145040f3f2e6290380d302a18d337d752ae219ef

diff --git a/sys-process/parallel/parallel-20190422.ebuild 
b/sys-process/parallel/parallel-20190422.ebuild
new file mode 100644
index 000..2ff42c43ef5
--- /dev/null
+++ b/sys-process/parallel/parallel-20190422.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A shell tool for executing jobs in parallel locally or on remote 
machines"
+HOMEPAGE="https://www.gnu.org/software/parallel/;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="dev-lang/perl:=
+   dev-perl/Devel-Size
+   virtual/perl-Data-Dumper
+   virtual/perl-File-Temp
+   virtual/perl-IO"
+DEPEND="${RDEPEND}"
+
+DOCS="NEWS README"
+
+src_configure() {
+   econf --docdir="${EPREFIX}"/usr/share/doc/${PF}/html
+}
+
+src_install() {
+   default
+
+   # See src/Makefile.am for this one:
+   rm -f "${ED}"/usr/bin/sem || die
+   dosym ${PN} /usr/bin/sem
+}
+
+pkg_postinst() {
+   elog "To distribute jobs to remote machines you'll need these 
dependencies"
+   elog " net-misc/openssh"
+   elog " net-misc/rsync"
+}



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

2019-04-23 Thread Tim Harder
commit: dd3b9229355dd64a9005ef7ed5dda3960247a4a8
Author: Tim Harder  gentoo  org>
AuthorDate: Sun Apr 21 21:24:35 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Apr 23 21:13:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd3b9229

media-libs/exiftool: version bump to 11.37

Signed-off-by: Tim Harder  gentoo.org>

 media-libs/exiftool/Manifest  |  1 +
 media-libs/exiftool/exiftool-11.37.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/media-libs/exiftool/Manifest b/media-libs/exiftool/Manifest
index 08d45d6b61a..9ba5a04f0da 100644
--- a/media-libs/exiftool/Manifest
+++ b/media-libs/exiftool/Manifest
@@ -1,3 +1,4 @@
 DIST Image-ExifTool-11.29.tar.gz 4503877 BLAKE2B 
9afbb695edebb1be2c673abbdf32626482c81c847610840e82ca0cb1fa83d697aeb2635ad4b62a692f09ae1effb8f2261aa3968adc35d72e82f1261db393b48a
 SHA512 
fa9a7d28ef09dcbc52e43e1f5b938fa857d4d2b949b47b36ea259bf010637852b3aa7fe8d51bbf5ab22adc6fb67f7858f38a08c2be143f0b0139960347688a3f
 DIST Image-ExifTool-11.32.tar.gz 4513430 BLAKE2B 
cae07a83ab5c46297ce0b4a12707450b9ded1a4e7edca08413e9671105a34d82ba7ee35eaf39ca64dfbd2b4607cd672b2399a325f8a3d3a76e18e348456fa550
 SHA512 
9dbb0d297292051171c28cf110976557f96df7079ea7ee38a722ed6ea9efbd758849ca77d9503c7d61964da5e48ab766c8cf58b3c5dfa96d499cbe6b5fb8
 DIST Image-ExifTool-11.33.tar.gz 4526448 BLAKE2B 
a286809cdfc10c4015ddca95666ea7ac294c1b4c04c36cc2895918406e2cfed005b5b194a7f2a9c66e6d8f3551553e86ccfbc22339a14b2f9b906038b5fe8a6f
 SHA512 
96a3a2421e3849ae6a2e49b7099415c11c2f65db1a49bebaf8b0c7f4de285aff0d412fb4ac12fa3d7fb59939199fdd49d86be0e55c72cd8b2056803a16fe5eb9
+DIST Image-ExifTool-11.37.tar.gz 4531738 BLAKE2B 
2ed39e3767aed9766dad91869ae55503aaec7abd20a70a4bdf69646559fa2886e9a484c83dd3ae6257399267ceef8cc8f6a44dbbd71c0814fb8b1e7b342505cf
 SHA512 
582198247e4804caa94df8acf684c6ac27b9f0b9b90b163079ed03b2f150ce7861f8d6464e56dec54a58e416d00f78ce8b02051b64f5e4df6df49a0c4c3ca25b

diff --git a/media-libs/exiftool/exiftool-11.37.ebuild 
b/media-libs/exiftool/exiftool-11.37.ebuild
new file mode 100644
index 000..f6bf1a90acd
--- /dev/null
+++ b/media-libs/exiftool/exiftool-11.37.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_NAME=Image-ExifTool
+inherit perl-module
+
+DESCRIPTION="Read and write meta information in image, audio and video files"
+HOMEPAGE="https://www.sno.phy.queensu.ca/~phil/exiftool/ ${HOMEPAGE}"
+SRC_URI="https://www.sno.phy.queensu.ca/~phil/exiftool/${DIST_P}.tar.gz;
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x64-macos"
+IUSE="doc"
+
+SRC_TEST="do"
+
+src_install() {
+   perl-module_src_install
+   use doc && dodoc -r html/
+
+   insinto /usr/share/${PN}
+   doins -r fmt_files config_files arg_files
+}



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

2019-04-23 Thread Andreas Sturmlechner
commit: e593d1796c252a3cb4237495afa1e88ce29384d6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Apr 23 20:49:04 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Apr 23 21:00:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e593d179

media-libs/freealut: Drop back to ~sparc

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

 media-libs/freealut/freealut-1.1.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/freealut/freealut-1.1.0-r3.ebuild 
b/media-libs/freealut/freealut-1.1.0-r3.ebuild
index 5a8934e3e71..6e80353c534 100644
--- a/media-libs/freealut/freealut-1.1.0-r3.ebuild
+++ b/media-libs/freealut/freealut-1.1.0-r3.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=5
@@ -10,7 +10,7 @@ 
SRC_URI="http://connect.creativelabs.com/openal/Downloads/ALUT/${P}.tar.gz;
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
 IUSE="static-libs"
 
 RDEPEND="



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

2019-04-23 Thread Andreas Sturmlechner
commit: 85bd3af742c114de0cdba2e550c8fd731f4732a1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Apr 23 20:53:31 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Apr 23 21:00:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85bd3af7

profiles: sparc: Add openal to use.stable.mask

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 profiles/arch/sparc/use.stable.mask | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/profiles/arch/sparc/use.stable.mask 
b/profiles/arch/sparc/use.stable.mask
index f7854f24191..61dfb9a46bf 100644
--- a/profiles/arch/sparc/use.stable.mask
+++ b/profiles/arch/sparc/use.stable.mask
@@ -4,6 +4,9 @@
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in use.mask
 
+# Andreas Sturmlechner  (23 Apr 2019)
+openal
+
 # Andreas Sturmlechner  (09 Apr 2019)
 # sys-auth/elogind not stable yet. bug #682158
 elogind



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

2019-04-23 Thread Sergei Trofimovich
commit: eb18119a03c050c28be6e3eeb6a0ea588b95f35b
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Apr 23 18:49:05 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Apr 23 20:59:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb18119a

media-libs/libdvbpsi: stable 1.3.2 for sparc, bug #681472

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

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

diff --git a/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild 
b/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild
index 21457d4c024..e85f9623a18 100644
--- a/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild
+++ b/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2;
 LICENSE="LGPL-2.1"
 # Sublot == libdvbpsi.so major
 SLOT="0/10"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc ~ppc64 sparc ~x86 ~amd64-fbsd 
~x86-fbsd"
 IUSE="doc static-libs"
 
 RDEPEND=""



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

2019-04-23 Thread Sergei Trofimovich
commit: c358b0d33e6edd6efe1584f0f5672b07f2c1fc1c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Apr 23 18:51:56 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Apr 23 20:59:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c358b0d3

dev-vcs/git: stable 2.20.1 for hppa, bug #676262

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

 dev-vcs/git/git-2.20.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.20.1.ebuild b/dev-vcs/git/git-2.20.1.ebuild
index 27d3e60dbff..578fe8036f5 100644
--- a/dev-vcs/git/git-2.20.1.ebuild
+++ b/dev-vcs/git/git-2.20.1.ebuild
@@ -45,7 +45,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~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 ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~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 ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2019-04-23 Thread Sergei Trofimovich
commit: 1a7eae270e5c15e6d38b5a91b0966060c1a7b912
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Apr 23 20:39:35 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Apr 23 20:59:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a7eae27

sys-fs/ntfs3g: stable 2017.3.23-r2 for sparc, bug #683388

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

 sys-fs/ntfs3g/ntfs3g-2017.3.23-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/ntfs3g/ntfs3g-2017.3.23-r2.ebuild 
b/sys-fs/ntfs3g/ntfs3g-2017.3.23-r2.ebuild
index 8ab92bc6ce9..9794ca22ed0 100644
--- a/sys-fs/ntfs3g/ntfs3g-2017.3.23-r2.ebuild
+++ b/sys-fs/ntfs3g/ntfs3g-2017.3.23-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://tuxera.com/opensource/${MY_P}.tgz;
 LICENSE="GPL-2"
 # The subslot matches the SONAME major #.
 SLOT="0/88"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="acl debug +external-fuse ntfsdecrypt +ntfsprogs static-libs suid xattr"
 
 RDEPEND="!

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

2019-04-23 Thread Sergei Trofimovich
commit: 4aaae873a002deb257577692bd82b836dcfdb467
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Apr 23 20:40:25 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Apr 23 20:59:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aaae873

sys-apps/gawk: stable 4.2.1-r1 for sparc, bug #684176

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

 sys-apps/gawk/gawk-4.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/gawk/gawk-4.2.1-r1.ebuild 
b/sys-apps/gawk/gawk-4.2.1-r1.ebuild
index eeab36a65b6..35e40662f1d 100644
--- a/sys-apps/gawk/gawk-4.2.1-r1.ebuild
+++ b/sys-apps/gawk/gawk-4.2.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/gawk/${P}.tar.xz"
 
 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="forced-sandbox mpfr nls readline"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/ufed/

2019-04-23 Thread Sergei Trofimovich
commit: 66af7e279841d3e60a91cdd2696eb7818f940798
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Apr 23 18:48:28 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Apr 23 20:59:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66af7e27

app-portage/ufed: stable 0.94 for sparc, bug #684066

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

 app-portage/ufed/ufed-0.94.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/ufed/ufed-0.94.ebuild 
b/app-portage/ufed/ufed-0.94.ebuild
index 4f4b99de2f9..80974660ed9 100644
--- a/app-portage/ufed/ufed-0.94.ebuild
+++ b/app-portage/ufed/ufed-0.94.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/ufed.git;
 else
SRC_URI="https://gitweb.gentoo.org/proj/ufed.git/snapshot/${P}.tar.bz2;
-   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 
 inherit autotools out-of-source



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

2019-04-23 Thread Sergei Trofimovich
commit: f0c2fe474b495d30b6cd9adcd5165984dcb545c6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Apr 23 18:53:14 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Apr 23 20:59:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0c2fe47

dev-vcs/git: stable 2.21.0 for hppa, bug #676262

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

 dev-vcs/git/git-2.21.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.21.0.ebuild b/dev-vcs/git/git-2.21.0.ebuild
index 93e54911277..7144f46a58e 100644
--- a/dev-vcs/git/git-2.21.0.ebuild
+++ b/dev-vcs/git/git-2.21.0.ebuild
@@ -45,7 +45,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~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 ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~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 ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2019-04-23 Thread Sergei Trofimovich
commit: 5a9712a6b4ff4048599f53135871d055feb133d4
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Apr 23 18:50:03 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Apr 23 20:59:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a9712a6

dev-ruby/multi_json: stable 1.13.1 for sparc, bug #684078

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

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

diff --git a/dev-ruby/multi_json/multi_json-1.13.1.ebuild 
b/dev-ruby/multi_json/multi_json-1.13.1.ebuild
index 66903d98fe1..5a5dead22be 100644
--- a/dev-ruby/multi_json/multi_json-1.13.1.ebuild
+++ b/dev-ruby/multi_json/multi_json-1.13.1.ebuild
@@ -20,7 +20,7 @@ DESCRIPTION="A gem to provide swappable JSON backends"
 HOMEPAGE="https://github.com/intridea/multi_json;
 LICENSE="MIT"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



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

2019-04-23 Thread Andreas Sturmlechner
commit: 3c6b1a8b8ca4712f3063eb612fef919d72fb4572
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Apr 23 20:30:40 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Apr 23 20:30:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c6b1a8b

media-libs/gexiv2: Drop 0.10.8

De-stabilising hppa, the old version was broken by exiv2-0.27 anyway.

Closes: https://bugs.gentoo.org/674970
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/gexiv2/Manifest |  1 -
 media-libs/gexiv2/gexiv2-0.10.8.ebuild | 66 --
 2 files changed, 67 deletions(-)

diff --git a/media-libs/gexiv2/Manifest b/media-libs/gexiv2/Manifest
index 03b2c919d20..efbe59e9dd0 100644
--- a/media-libs/gexiv2/Manifest
+++ b/media-libs/gexiv2/Manifest
@@ -1,2 +1 @@
 DIST gexiv2-0.10.10.tar.xz 638168 BLAKE2B 
ae75a06007dcaca4c22e463661073d796b77921a313a5bb450c488ee963f72c6095d7abc12dedc0d089a28905cf386062221073100ba3513d9fb13eb524365ee
 SHA512 
41e5b4a9d81882ea4b1bc6f3b9ced95ca4d03f836de30ff90b7a43311e5319f7c0f46cbad767bf2b00926c8e5fd2c1e8ca2a2113c308e23b7a4c21205399abf7
-DIST gexiv2-0.10.8.tar.xz 634696 BLAKE2B 
182cda3bac5b3211e5ef8267628a86cc496c0242f25c5cd94ed9eab81c7460022373f3bb794c976fd0b9a10e49f9ca7109521ac6f99bbe7a4e0306a31db899da
 SHA512 
4c25cf6884495151947a70e62a096f3279223673bece4d4ff02720b2820aaad9e80c8715e02bf46c3f5598f582fdf07b4b3ddabd017d53001245e3381a4cc286

diff --git a/media-libs/gexiv2/gexiv2-0.10.8.ebuild 
b/media-libs/gexiv2/gexiv2-0.10.8.ebuild
deleted file mode 100644
index d7e373f5f3e..000
--- a/media-libs/gexiv2/gexiv2-0.10.8.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
-
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-inherit autotools eutils multilib python-r1 toolchain-funcs versionator vala 
xdg-utils
-
-MY_PV=$(get_version_component_range 1-2)
-
-DESCRIPTION="GObject-based wrapper around the Exiv2 library"
-HOMEPAGE="https://wiki.gnome.org/Projects/gexiv2;
-SRC_URI="mirror://gnome/sources/${PN}/${MY_PV}/${P}.tar.xz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd"
-IUSE="introspection python static-libs test vala"
-
-REQUIRED_USE="
-   python? ( introspection ${PYTHON_REQUIRED_USE} )
-   test? ( python introspection )
-   vala? ( introspection )
-"
-
-RDEPEND="${PYTHON_DEPS}
-   >=dev-libs/glib-2.26.1:2
-   >=media-gfx/exiv2-0.21:0=
-   introspection? ( dev-libs/gobject-introspection:= )
-   vala? ( $(vala_depend) )
-"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/pygobject
-   media-gfx/exiv2[xmp]
-   )
-   dev-libs/gobject-introspection-common
-   virtual/pkgconfig"
-
-src_prepare() {
-   xdg_environment_reset
-   tc-export CXX
-   use vala && vala_src_prepare
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   $(use_enable introspection) \
-   $(use_enable static-libs static) \
-   $(use_enable vala)
-}
-
-src_install() {
-   emake DESTDIR="${D}" LIB="$(get_libdir)" install
-   dodoc AUTHORS NEWS README THANKS
-
-   if use python ; then
-   python_moduleinto gi/overrides/
-   python_foreach_impl python_domodule GExiv2.py
-   fi
-
-   use static-libs || prune_libtool_files --modules
-}



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

2019-04-23 Thread Andreas Sturmlechner
commit: b0bd88379cd38bb86b9a195a2feaffc0a6bcfde2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Apr 23 18:06:50 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Apr 23 20:24:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0bd8837

kde-misc/kdiff3: 1.8.0_pre20190420 snapshot bump

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

 kde-misc/kdiff3/Manifest|  1 +
 kde-misc/kdiff3/kdiff3-1.8.0_pre20190420.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/kde-misc/kdiff3/Manifest b/kde-misc/kdiff3/Manifest
index 83756717027..78df42f7901 100644
--- a/kde-misc/kdiff3/Manifest
+++ b/kde-misc/kdiff3/Manifest
@@ -1,2 +1,3 @@
 DIST kdiff3-0.9.98_p20170219.tar.xz 798588 BLAKE2B 
6b9604f0f5cececa586fc2fadb7da1bdf060c114d1f644d95ace5d898eb3c62e3addc5c53a6b2e7b959411742b1f13b07bf05667dc32f793fa5faf16f52c4927
 SHA512 
847410bb6eb9ba19f4dab2d2a8c46c78a6c3c90a578df22bedad8d471902c8bf393c91d77050b68ad0f4e4a4cc1f7898ef11b66c1ddcb34e182506a43932df64
 DIST kdiff3-1.8.0_pre20190331.tar.gz 505587 BLAKE2B 
7dbe2efc548291848d30d8889f28ccf75610c2cb88e12d918fccd524ee8619e07501788d7e103175c211000aecc7ad1a48193b40d296f9a30eefcda02b1cda34
 SHA512 
02c6840a0015f096f0f3561a0306a078508520ea09733690522f74351925a00122b78eda2886267b3b0eb3d744bcfe80b7f710164bb1f22997e0fd0814e64649
+DIST kdiff3-1.8.0_pre20190420.tar.gz 506141 BLAKE2B 
bbeacffb4fb0cc49ff17f936fa73aca4721798c212e0534ec984ee79071990c1f59cfda6d6f32758cc24fc577c7911bd10472abfb086e6e1527ee8799dd1e0dc
 SHA512 
1923a286fff2cb884eb8f7559558e1f157afad536e7bdc47152140b420179d322d135c72e1e8be5154783d85c798e0e00ed58e7b97bb19fe41b5ee70160196f2

diff --git a/kde-misc/kdiff3/kdiff3-1.8.0_pre20190420.ebuild 
b/kde-misc/kdiff3/kdiff3-1.8.0_pre20190420.ebuild
new file mode 100644
index 000..1fe53c0bc06
--- /dev/null
+++ b/kde-misc/kdiff3/kdiff3-1.8.0_pre20190420.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+COMMIT="5b50c4c7b0ce7d5e06287c24b6b5600b6c2d68df"
+KDE_HANDBOOK="forceoptional"
+inherit kde5
+
+DESCRIPTION="Frontend to diff3 based on KDE Frameworks"
+HOMEPAGE="https://userbase.kde.org/KDiff3;
+SRC_URI="https://github.com/KDE/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtprintsupport)
+   $(add_qt_dep qtwidgets)
+"
+RDEPEND="${DEPEND}
+   sys-apps/diffutils
+   !kde-misc/kdiff3:4
+"
+
+S="${WORKDIR}/${PN}-${COMMIT}"



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

2019-04-23 Thread Andreas Sturmlechner
commit: 0df3b80bfae73b380f35503187f090ecbdffb1ce
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Apr 23 17:40:12 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Apr 23 20:24:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0df3b80b

sci-visualization/labplot: Drop 2.5.0-r1

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

 sci-visualization/labplot/Manifest|  1 -
 sci-visualization/labplot/labplot-2.5.0-r1.ebuild | 70 ---
 2 files changed, 71 deletions(-)

diff --git a/sci-visualization/labplot/Manifest 
b/sci-visualization/labplot/Manifest
index 3ca755dac2b..97ecc1c1fb3 100644
--- a/sci-visualization/labplot/Manifest
+++ b/sci-visualization/labplot/Manifest
@@ -1,2 +1 @@
-DIST labplot-2.5.0.tar.xz 11831656 BLAKE2B 
b6c122509874f1f7a554814b7ac9889b416d36f750ff831773aed313f9eff23abc0809f40f6f591051b287bd1a875af455f5d500ce54130c4d8ddfe5fcfa0870
 SHA512 
a4b285917e30b0ac00cb8c8ad6827ba3884d95fccc0511a0a317bb2d637e48e6579929c45cfb8bba737bb5a01472a2baa9d812a688730ac4fa40b23cc6625eba
 DIST labplot-2.6.0.tar.xz 12360732 BLAKE2B 
f6259de30deb0adb4ddd47f0401fe8753a277aa01ade27c220ec832eb7f6c3e568c765085d2567529799777c9fe2442da777bd4089e5f488cc1aefb25a61d5a8
 SHA512 
6ebc96b3cfb25ebd62a6631d8cca0d9574f84548c04271eb8a10ff3ef9ebbdd0bf842b9b6129a995953412c5e6f902440dc91dbaa01d97fc220d7f6b19dc46af

diff --git a/sci-visualization/labplot/labplot-2.5.0-r1.ebuild 
b/sci-visualization/labplot/labplot-2.5.0-r1.ebuild
deleted file mode 100644
index be9f065e8b5..000
--- a/sci-visualization/labplot/labplot-2.5.0-r1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="forceoptional"
-inherit kde5
-
-DESCRIPTION="Scientific data analysis and visualisation based on KDE 
Frameworks"
-HOMEPAGE="https://www.kde.org/applications/education/labplot/;
-[[ ${KDE_BUILD_TYPE} != live ]] && 
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE="cantor fftw fits hdf5 libcerf netcdf"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdelibs4support)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep syntax-highlighting)
-   $(add_qt_dep qtconcurrent)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtserialport)
-   $(add_qt_dep qtsql)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwidgets)
-   >=sci-libs/gsl-1.15:=
-   cantor? ( $(add_kdeapps_dep cantor) )
-   fftw? ( sci-libs/fftw:3.0= )
-   fits? ( sci-libs/cfitsio:= )
-   hdf5? ( sci-libs/hdf5:= )
-   libcerf? ( sci-libs/libcerf )
-   netcdf? ( sci-libs/netcdf:= )
-"
-DEPEND="${COMMON_DEPEND}
-   sys-devel/bison
-   sys-devel/gettext
-   x11-misc/shared-mime-info
-"
-RDEPEND="${COMMON_DEPEND}
-   !sci-visualization/labplot:4
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_CANTOR=$(usex cantor)
-   -DENABLE_FFTW=$(usex fftw)
-   -DENABLE_FITS=$(usex fits)
-   -DENABLE_HDF5=$(usex hdf5)
-   -DENABLE_LIBCERF=$(usex libcerf)
-   -DENABLE_NETCDF=$(usex netcdf)
-   -DENABLE_TESTS=$(usex test)
-   )
-
-   kde5_src_configure
-}



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

2019-04-23 Thread Andreas Sturmlechner
commit: 7c82f36523f1661a5740f0ebed6d6f788afe99cc
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Apr 23 18:07:07 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Apr 23 20:24:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c82f365

kde-misc/kdiff3: Drop 1.8.0_pre20190331

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

 kde-misc/kdiff3/Manifest|  1 -
 kde-misc/kdiff3/kdiff3-1.8.0_pre20190331.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/kde-misc/kdiff3/Manifest b/kde-misc/kdiff3/Manifest
index 78df42f7901..19e4a9bf616 100644
--- a/kde-misc/kdiff3/Manifest
+++ b/kde-misc/kdiff3/Manifest
@@ -1,3 +1,2 @@
 DIST kdiff3-0.9.98_p20170219.tar.xz 798588 BLAKE2B 
6b9604f0f5cececa586fc2fadb7da1bdf060c114d1f644d95ace5d898eb3c62e3addc5c53a6b2e7b959411742b1f13b07bf05667dc32f793fa5faf16f52c4927
 SHA512 
847410bb6eb9ba19f4dab2d2a8c46c78a6c3c90a578df22bedad8d471902c8bf393c91d77050b68ad0f4e4a4cc1f7898ef11b66c1ddcb34e182506a43932df64
-DIST kdiff3-1.8.0_pre20190331.tar.gz 505587 BLAKE2B 
7dbe2efc548291848d30d8889f28ccf75610c2cb88e12d918fccd524ee8619e07501788d7e103175c211000aecc7ad1a48193b40d296f9a30eefcda02b1cda34
 SHA512 
02c6840a0015f096f0f3561a0306a078508520ea09733690522f74351925a00122b78eda2886267b3b0eb3d744bcfe80b7f710164bb1f22997e0fd0814e64649
 DIST kdiff3-1.8.0_pre20190420.tar.gz 506141 BLAKE2B 
bbeacffb4fb0cc49ff17f936fa73aca4721798c212e0534ec984ee79071990c1f59cfda6d6f32758cc24fc577c7911bd10472abfb086e6e1527ee8799dd1e0dc
 SHA512 
1923a286fff2cb884eb8f7559558e1f157afad536e7bdc47152140b420179d322d135c72e1e8be5154783d85c798e0e00ed58e7b97bb19fe41b5ee70160196f2

diff --git a/kde-misc/kdiff3/kdiff3-1.8.0_pre20190331.ebuild 
b/kde-misc/kdiff3/kdiff3-1.8.0_pre20190331.ebuild
deleted file mode 100644
index 437350e6feb..000
--- a/kde-misc/kdiff3/kdiff3-1.8.0_pre20190331.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-COMMIT="12d54309def29c3bcb69d92e1b70540c4aa0f9cd"
-KDE_HANDBOOK="forceoptional"
-inherit kde5
-
-DESCRIPTION="Frontend to diff3 based on KDE Frameworks"
-HOMEPAGE="https://userbase.kde.org/KDiff3;
-SRC_URI="https://github.com/KDE/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtwidgets)
-"
-RDEPEND="${DEPEND}
-   sys-apps/diffutils
-   !kde-misc/kdiff3:4
-"
-
-S="${WORKDIR}/${PN}-${COMMIT}"



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

2019-04-23 Thread Andreas Sturmlechner
commit: ca0ef60117624ebf53729c4fd376e8fb29e838c2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Apr 23 17:20:29 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Apr 23 20:24:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca0ef601

kde-frameworks/kdeclarative: Drop 5.57.0 (r0)

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

 .../kdeclarative/kdeclarative-5.57.0.ebuild| 31 --
 1 file changed, 31 deletions(-)

diff --git a/kde-frameworks/kdeclarative/kdeclarative-5.57.0.ebuild 
b/kde-frameworks/kdeclarative/kdeclarative-5.57.0.ebuild
deleted file mode 100644
index 5633863dfd6..000
--- a/kde-frameworks/kdeclarative/kdeclarative-5.57.0.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_TEST="false"
-inherit kde5
-
-DESCRIPTION="Framework providing integration of QML and KDE work spaces"
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE=""
-
-DEPEND="
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kglobalaccel)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kpackage)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtwidgets)
-   media-libs/libepoxy
-"
-RDEPEND="${DEPEND}"



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

2019-04-23 Thread Andreas Sturmlechner
commit: 2c97d4353bf652f6d0fd6bfa8f8eb923f7219259
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Apr 23 18:04:05 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Apr 23 20:24:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c97d435

app-office/skrooge: 2.19.1 version bump

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

 app-office/skrooge/Manifest | 2 +-
 app-office/skrooge/{skrooge-2.19.0.ebuild => skrooge-2.19.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/skrooge/Manifest b/app-office/skrooge/Manifest
index 49f1fc36610..a86009a8d2a 100644
--- a/app-office/skrooge/Manifest
+++ b/app-office/skrooge/Manifest
@@ -1,2 +1,2 @@
 DIST skrooge-2.18.0.tar.xz 20951548 BLAKE2B 
7679c519cab88a165c878dbba0a077d7f4cddc9bd1252ce5fd1e6f2d90c98b9fc39b8251df83470debdc8a6fb4f093fcff55768aa41b6a4c379c9e4c4f558f25
 SHA512 
b8a222947f535eee9041e6bc71703a053fa9a201de352c5f39fcbf35be5259f76532ed5291becab4c676ff8eaba7727730f6d957af36bac54aa4ada11db25da3
-DIST skrooge-2.19.0.tar.xz 21105420 BLAKE2B 
d5c65f46085de5aecdb5d939ce54c3ae1ba6c3557a747be3671210fd9a47fa05996dc64b45c7cfb26865b9884812b7afdb2a7bd81eb4b2b3691d49c179f13da0
 SHA512 
030b64c1461bcbfa311e7dc12f49f73b3f251002fa9f3a1598b6584f75507fa3c89dabbab6e24cc02cfb7638a548453c9495e9977699dca3d34217a71df6bf00
+DIST skrooge-2.19.1.tar.xz 2836 BLAKE2B 
5a1a7a8212699ce657e33f5b2ab12b305a3c6840dccaeff20fc42796b3587d02a60cd1f2313909b6411e9ad71c4f1bd254349d9a9846c6707a31736507713fef
 SHA512 
4c9addaf56bda0a575c995a2d9229927f6c23ca1931d8ea50ec83afab31149006fd0cc339af79afe0d046c00b5d3dbe4c629e48eac404a31fbe45b3747dcb869

diff --git a/app-office/skrooge/skrooge-2.19.0.ebuild 
b/app-office/skrooge/skrooge-2.19.1.ebuild
similarity index 100%
rename from app-office/skrooge/skrooge-2.19.0.ebuild
rename to app-office/skrooge/skrooge-2.19.1.ebuild



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

2019-04-23 Thread Andreas Sturmlechner
commit: 1c1d954689729cd69259192e064168f3fcda874b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Apr 23 17:21:19 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Apr 23 20:24:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c1d9546

kde-frameworks/ktexteditor: Drop 5.57.0 (r0)

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

 .../ktexteditor/ktexteditor-5.57.0.ebuild  | 56 --
 1 file changed, 56 deletions(-)

diff --git a/kde-frameworks/ktexteditor/ktexteditor-5.57.0.ebuild 
b/kde-frameworks/ktexteditor/ktexteditor-5.57.0.ebuild
deleted file mode 100644
index 4413fff5064..000
--- a/kde-frameworks/ktexteditor/ktexteditor-5.57.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Framework providing a full text editor component"
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="editorconfig git"
-
-BDEPEND="
-   test? ( $(add_frameworks_dep kservice) )
-"
-DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kauth)
-   $(add_frameworks_dep kcodecs)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kguiaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep sonnet)
-   $(add_frameworks_dep syntax-highlighting)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   editorconfig? ( app-text/editorconfig-core-c )
-   git? ( dev-libs/libgit2:= )
-"
-RDEPEND="${DEPEND}"
-
-RESTRICT+=" test"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package editorconfig EditorConfig)
-   $(cmake-utils_use_find_package git LibGit2)
-   )
-
-   kde5_src_configure
-}



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

2019-04-23 Thread Mikle Kolyada
commit: 928f89d2b3caf6c9042660a006c74fbc28d5882a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:33:05 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:33:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=928f89d2

dev-ruby/gherkin: amd64 stable wrt bug #684076

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

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

diff --git a/dev-ruby/gherkin/gherkin-5.1.0.ebuild 
b/dev-ruby/gherkin/gherkin-5.1.0.ebuild
index f7869dda0bb..186f18233d9 100644
--- a/dev-ruby/gherkin/gherkin-5.1.0.ebuild
+++ b/dev-ruby/gherkin/gherkin-5.1.0.ebuild
@@ -19,6 +19,6 @@ DESCRIPTION="Fast Gherkin lexer and parser"
 HOMEPAGE="https://github.com/cucumber/gherkin;
 LICENSE="MIT"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 SLOT="5"
 IUSE=""



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

2019-04-23 Thread Mikle Kolyada
commit: 1f01050e3c83d211cd25991d7fbcb9bd7823e9dc
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:32:44 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:32:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f01050e

dev-util/cucumber: amd64 stable wrt bug #684076

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

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

diff --git a/dev-util/cucumber/cucumber-3.1.2.ebuild 
b/dev-util/cucumber/cucumber-3.1.2.ebuild
index f608147f4b6..4420acad479 100644
--- a/dev-util/cucumber/cucumber-3.1.2.ebuild
+++ b/dev-util/cucumber/cucumber-3.1.2.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P}
 RUBY_S="cucumber-ruby-${PV}"
 LICENSE="Ruby"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
 SLOT="0"
 IUSE="examples test"
 



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

2019-04-23 Thread Mikle Kolyada
commit: 8f21145ad91d7b8a16870c057f45bcf159f0b1b9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:32:52 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:32:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f21145a

dev-util/cucumber-tag_expressions: amd64 stable wrt bug #684076

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

 dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild 
b/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild
index b02e7e9ff31..19d4e1ed7cb 100644
--- a/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild
+++ b/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild
@@ -14,5 +14,5 @@ DESCRIPTION="Cucumber tag expressions for ruby"
 HOMEPAGE="https://docs.cucumber.io/tag-expressions/;
 LICENSE="MIT"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 SLOT="1"



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

2019-04-23 Thread Mikle Kolyada
commit: b9242a718d18e52c3364914604160efec67aea95
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:32:55 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:32:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9242a71

dev-util/cucumber-wire: amd64 stable wrt bug #684076

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

 dev-util/cucumber-wire/cucumber-wire-0.0.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/cucumber-wire/cucumber-wire-0.0.1-r1.ebuild 
b/dev-util/cucumber-wire/cucumber-wire-0.0.1-r1.ebuild
index 67f2affad61..4609ca30c41 100644
--- a/dev-util/cucumber-wire/cucumber-wire-0.0.1-r1.ebuild
+++ b/dev-util/cucumber-wire/cucumber-wire-0.0.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
@@ -14,7 +14,7 @@ DESCRIPTION="Executable feature scenarios"
 HOMEPAGE="https://github.com/aslakhellesoy/cucumber/wikis;
 LICENSE="Ruby"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 SLOT="0"
 IUSE="test"
 



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

2019-04-23 Thread Mikle Kolyada
commit: 611cb86b4e873cefcd10a2daa2b2e1b3758021e3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:32:50 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:32:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=611cb86b

dev-util/cucumber-expressions: amd64 stable wrt bug #684076

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

 dev-util/cucumber-expressions/cucumber-expressions-6.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/cucumber-expressions/cucumber-expressions-6.0.1.ebuild 
b/dev-util/cucumber-expressions/cucumber-expressions-6.0.1.ebuild
index 35a304a5cd3..49b4d95cd2e 100644
--- a/dev-util/cucumber-expressions/cucumber-expressions-6.0.1.ebuild
+++ b/dev-util/cucumber-expressions/cucumber-expressions-6.0.1.ebuild
@@ -14,5 +14,5 @@ DESCRIPTION="a simpler alternative to Regular Expressions"
 HOMEPAGE="https://github.com/cucumber/cucumber-expressions-ruby#readme;
 LICENSE="MIT"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 SLOT="6.0"



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

2019-04-23 Thread Mikle Kolyada
commit: 98f1d9f3d6f4fa7ce20a234c03958a02b3824362
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:32:58 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:32:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f1d9f3

dev-util/aruba: amd64 stable wrt bug #684076

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

 dev-util/aruba/aruba-0.6.2-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/aruba/aruba-0.6.2-r2.ebuild 
b/dev-util/aruba/aruba-0.6.2-r2.ebuild
index ac44f384dbc..e6e35a1dbb1 100644
--- a/dev-util/aruba/aruba-0.6.2-r2.ebuild
+++ b/dev-util/aruba/aruba-0.6.2-r2.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
@@ -16,7 +16,7 @@ DESCRIPTION="Cucumber steps for driving out command line 
applications"
 HOMEPAGE="https://github.com/cucumber/aruba;
 LICENSE="MIT"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 SLOT="0"
 IUSE=""
 



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

2019-04-23 Thread Mikle Kolyada
commit: 146d6f2a1f952381104d0a841c719fb42ff2e724
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:33:00 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:33:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=146d6f2a

dev-ruby/backports: amd64 stable wrt bug #684076

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

 dev-ruby/backports/backports-3.11.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/backports/backports-3.11.4.ebuild 
b/dev-ruby/backports/backports-3.11.4.ebuild
index 2bf2c4c834e..0b928124ed0 100644
--- a/dev-ruby/backports/backports-3.11.4.ebuild
+++ b/dev-ruby/backports/backports-3.11.4.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 @@ HOMEPAGE="https://github.com/marcandre/backports;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 
 all_ruby_prepare() {



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

2019-04-23 Thread Mikle Kolyada
commit: 56fe8753da58bee57fd831cffd01e0f08962a016
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:32:48 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:32:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56fe8753

dev-util/cucumber-core: amd64 stable wrt bug #684076

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

 dev-util/cucumber-core/cucumber-core-3.2.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/cucumber-core/cucumber-core-3.2.1.ebuild 
b/dev-util/cucumber-core/cucumber-core-3.2.1.ebuild
index 4a7fc81d984..80c223dfaad 100644
--- a/dev-util/cucumber-core/cucumber-core-3.2.1.ebuild
+++ b/dev-util/cucumber-core/cucumber-core-3.2.1.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
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/cucumber/cucumber-ruby-core/archive/v${PV}.tar.gz ->
 RUBY_S="cucumber-ruby-core-${PV}"
 LICENSE="Ruby"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 SLOT="$(ver_cut 1-2)"
 IUSE="test"
 



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

2019-04-23 Thread Mikle Kolyada
commit: cf94c6687c58cb9e2fcc487c0d7fd0a0deddcdb1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:33:02 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:33:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf94c668

dev-ruby/diff-lcs: amd64 stable wrt bug #684076

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

 dev-ruby/diff-lcs/diff-lcs-1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/diff-lcs/diff-lcs-1.3.ebuild 
b/dev-ruby/diff-lcs/diff-lcs-1.3.ebuild
index 455a82f68d5..d4ce4fddcb7 100644
--- a/dev-ruby/diff-lcs/diff-lcs-1.3.ebuild
+++ b/dev-ruby/diff-lcs/diff-lcs-1.3.ebuild
@@ -16,5 +16,5 @@ HOMEPAGE="https://github.com/halostatue/diff-lcs;
 
 LICENSE="|| ( MIT Ruby GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""



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

2019-04-23 Thread Mikle Kolyada
commit: eb66d6f8d2c0ad6b05838a2239cb21ea9e71d18d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:30:19 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:30:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb66d6f8

dev-ruby/tilt: amd64 stable wrt bug #684082

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

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

diff --git a/dev-ruby/tilt/tilt-2.0.9.ebuild b/dev-ruby/tilt/tilt-2.0.9.ebuild
index 7c15d083a41..2107ebf1b6c 100644
--- a/dev-ruby/tilt/tilt-2.0.9.ebuild
+++ b/dev-ruby/tilt/tilt-2.0.9.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/rtomayko/tilt;
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 # Block on some of the potential test dependencies. These dependencies



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

2019-04-23 Thread Mikle Kolyada
commit: 3e5919ab19de39028ec8a92f61487368ccc5c166
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:30:15 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:30:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e5919ab

dev-ruby/sass: amd64 stable wrt bug #684082

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

 dev-ruby/sass/sass-3.4.25.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/sass/sass-3.4.25.ebuild b/dev-ruby/sass/sass-3.4.25.ebuild
index 589654628bd..9a44dcebca7 100644
--- a/dev-ruby/sass/sass-3.4.25.ebuild
+++ b/dev-ruby/sass/sass-3.4.25.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
@@ -17,7 +17,7 @@ DESCRIPTION="An extension of CSS3, adding nested rules, 
variables, mixins, and m
 HOMEPAGE="http://sass-lang.com/;
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux"
 SLOT="$(get_version_component_range 1-2)"
 IUSE=""
 



[gentoo-commits] repo/gentoo:master commit in: net-ftp/lftp/

2019-04-23 Thread Mikle Kolyada
commit: d650acf8c3269a3a31e95a18260bc78884154d6e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:28:09 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:28:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d650acf8

net-ftp/lftp: amd64 stable wrt bug #662882

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

 net-ftp/lftp/lftp-4.8.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/lftp/lftp-4.8.4-r1.ebuild 
b/net-ftp/lftp/lftp-4.8.4-r1.ebuild
index 5faea52009e..61948d62fc5 100644
--- a/net-ftp/lftp/lftp-4.8.4-r1.ebuild
+++ b/net-ftp/lftp/lftp-4.8.4-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-3"
 SLOT="0"
-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 
~sparc-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 
~sparc-solaris ~x86-solaris"
 IUSE="convert-mozilla-cookies +gnutls idn ipv6 libressl nls socks5 +ssl 
verify-file"
 RESTRICT="test"
 



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

2019-04-23 Thread Mikle Kolyada
commit: b233c064c8118d714449ad25c2c2ac57f97b81a9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:27:03 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:27:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b233c064

app-crypt/qca: amd64 stable wrt bug #679680

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

 app-crypt/qca/qca-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/qca/qca-2.2.0.ebuild b/app-crypt/qca/qca-2.2.0.ebuild
index d42db14e774..8454bdb8253 100644
--- a/app-crypt/qca/qca-2.2.0.ebuild
+++ b/app-crypt/qca/qca-2.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="2"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
 
 IUSE="botan debug doc examples gcrypt gpg libressl logger nss pkcs11 sasl 
softstore +ssl test"
 



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

2019-04-23 Thread Mikle Kolyada
commit: d4ca9bf51b0129cb2a992b798eb4860fda71afc4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:26:12 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:26:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4ca9bf5

sys-fs/ntfs3g: amd64 stable wrt bug #683388

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

 sys-fs/ntfs3g/ntfs3g-2017.3.23-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/ntfs3g/ntfs3g-2017.3.23-r2.ebuild 
b/sys-fs/ntfs3g/ntfs3g-2017.3.23-r2.ebuild
index fb67e549b9c..8ab92bc6ce9 100644
--- a/sys-fs/ntfs3g/ntfs3g-2017.3.23-r2.ebuild
+++ b/sys-fs/ntfs3g/ntfs3g-2017.3.23-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://tuxera.com/opensource/${MY_P}.tgz;
 LICENSE="GPL-2"
 # The subslot matches the SONAME major #.
 SLOT="0/88"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="acl debug +external-fuse ntfsdecrypt +ntfsprogs static-libs suid xattr"
 
 RDEPEND="!

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

2019-04-23 Thread Mikle Kolyada
commit: 223a772e6bb65ac6e5005430fe773b5dee94cba2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:25:32 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:25:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=223a772e

sys-apps/gawk: amd64 stable wrt bug #684176

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

 sys-apps/gawk/gawk-4.2.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/gawk/gawk-4.2.1-r1.ebuild 
b/sys-apps/gawk/gawk-4.2.1-r1.ebuild
index 4cc3bdbff8e..eeab36a65b6 100644
--- a/sys-apps/gawk/gawk-4.2.1-r1.ebuild
+++ b/sys-apps/gawk/gawk-4.2.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"
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/gawk/${P}.tar.xz"
 
 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="forced-sandbox mpfr nls readline"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-portage/ufed/

2019-04-23 Thread Mikle Kolyada
commit: a2c10646a291c5b49599a67637bc34f1bb3967b5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:24:27 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:24:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2c10646

app-portage/ufed: amd64 stable wrt bug #684066

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

 app-portage/ufed/ufed-0.94.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/ufed/ufed-0.94.ebuild 
b/app-portage/ufed/ufed-0.94.ebuild
index 3a357527b71..4f4b99de2f9 100644
--- a/app-portage/ufed/ufed-0.94.ebuild
+++ b/app-portage/ufed/ufed-0.94.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/ufed.git;
 else
SRC_URI="https://gitweb.gentoo.org/proj/ufed.git/snapshot/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 
 inherit autotools out-of-source



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

2019-04-23 Thread Mikle Kolyada
commit: f8b8343863bf8e7e9f545bc0fac99173dc5a1635
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:23:16 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:23:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8b83438

gnome-extra/nm-applet: amd64 stable wrt bug #683958

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

 gnome-extra/nm-applet/nm-applet-1.8.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/nm-applet/nm-applet-1.8.20.ebuild 
b/gnome-extra/nm-applet/nm-applet-1.8.20.ebuild
index 601b8b123ea..09f924064ec 100644
--- a/gnome-extra/nm-applet/nm-applet-1.8.20.ebuild
+++ b/gnome-extra/nm-applet/nm-applet-1.8.20.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
 LICENSE="GPL-2+"
 SLOT="0"
 IUSE="ayatana +introspection +gcr +modemmanager selinux teamd"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 RDEPEND="
>=app-crypt/libsecret-0.18



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

2019-04-23 Thread Mikle Kolyada
commit: bb9d32087d5f95a3f0b2fa84d7ae5a6c9a4488ae
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:23:03 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:23:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb9d3208

net-misc/networkmanager: amd64 stable wrt bug #683958

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

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

diff --git a/net-misc/networkmanager/networkmanager-1.16.0.ebuild 
b/net-misc/networkmanager/networkmanager-1.16.0.ebuild
index 3373543269d..979cc766898 100644
--- a/net-misc/networkmanager/networkmanager-1.16.0.ebuild
+++ b/net-misc/networkmanager/networkmanager-1.16.0.ebuild
@@ -27,7 +27,7 @@ REQUIRED_USE="
?? ( consolekit elogind systemd )
 "
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 # gobject-introspection-0.10.3 is needed due to gnome bug 642300
 # wpa_supplicant-0.7.3-r3 is needed due to bug 359271



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

2019-04-23 Thread Mikle Kolyada
commit: 00bd2dd3158e7ea343c97b15d863e2a42768f0b0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:23:23 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:23:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00bd2dd3

net-vpn/networkmanager-openvpn: amd64 stable wrt bug #683958

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

 net-vpn/networkmanager-openvpn/networkmanager-openvpn-1.8.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-vpn/networkmanager-openvpn/networkmanager-openvpn-1.8.10.ebuild 
b/net-vpn/networkmanager-openvpn/networkmanager-openvpn-1.8.10.ebuild
index be8cb945aed..d71748a8c33 100644
--- a/net-vpn/networkmanager-openvpn/networkmanager-openvpn-1.8.10.ebuild
+++ b/net-vpn/networkmanager-openvpn/networkmanager-openvpn-1.8.10.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="gtk test"
 
 RDEPEND="



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

2019-04-23 Thread Mikle Kolyada
commit: e332b74c840cb1abf02b7eb8b17a65296feed1a5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Apr 23 19:23:19 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Apr 23 19:23:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e332b74c

net-vpn/networkmanager-libreswan: amd64 stable wrt bug #683958

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

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

diff --git 
a/net-vpn/networkmanager-libreswan/networkmanager-libreswan-1.2.10.ebuild 
b/net-vpn/networkmanager-libreswan/networkmanager-libreswan-1.2.10.ebuild
index afd895a544a..4042bac148a 100644
--- a/net-vpn/networkmanager-libreswan/networkmanager-libreswan-1.2.10.ebuild
+++ b/net-vpn/networkmanager-libreswan/networkmanager-libreswan-1.2.10.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager/VPN;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="gtk"
 
 RDEPEND="



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

2019-04-23 Thread Anthony G. Basile
commit: a5f068a990f905bb254e665c65731b766811beef
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Apr 23 19:21:07 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Apr 23 19:21:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5f068a9

dev-python/urllib3: 1.24.2 stable on amd64

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

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

diff --git a/dev-python/urllib3/urllib3-1.24.2.ebuild 
b/dev-python/urllib3/urllib3-1.24.2.ebuild
index 08d3d35b05c..b1181968b0f 100644
--- a/dev-python/urllib3/urllib3-1.24.2.ebuild
+++ b/dev-python/urllib3/urllib3-1.24.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 #RESTRICT="test"
 



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

2019-04-23 Thread Anthony G. Basile
commit: 724461fe0355401158aef5c53d4d1423414949aa
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Apr 23 18:42:37 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Apr 23 18:42:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=724461fe

dev-python/urllib3: version bump to 1.24.2, security bug #683890

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 dev-python/urllib3/Manifest  |  1 +
 dev-python/urllib3/urllib3-1.24.2.ebuild | 67 
 2 files changed, 68 insertions(+)

diff --git a/dev-python/urllib3/Manifest b/dev-python/urllib3/Manifest
index 38255868286..3013380bd0a 100644
--- a/dev-python/urllib3/Manifest
+++ b/dev-python/urllib3/Manifest
@@ -1,3 +1,4 @@
 DIST urllib3-1.22.tar.gz 226083 BLAKE2B 
6d3067ea1c9c90e2e759e6319115ed3d29ca1e31c4d1721d7e7aeed432ea4df22635d92fdb9ea91a411bbe67c72160abaa19e0d42870be0b0a866c003db6ec62
 SHA512 
132b69d7f390916bdcde66d46fbf0189d0c1f976f91778dcb0a9ef8174487b7bb4b37b9139e84f7c70234803be95284448aba0b820f3b54530c0c497ca7a1dc9
 DIST urllib3-1.23.tar.gz 228314 BLAKE2B 
63cd0ed046ade8b775067df92f3589bdfa21788481292724ec6af85b5789cc990cd267e1a0dfd925529d147441232a89b4f1b23a1276fc7a68a7047cbf2ae8a4
 SHA512 
6baa76ad3bebc639d7ec0a042d809fba7ef3110de6164a321756389c250e218728d178708611049d91f39d17f24b8b08585edb2f2c260c987bd4c7204e0c0b5f
 DIST urllib3-1.24.1.tar.gz 229688 BLAKE2B 
ee72e61d417ef266af43b5c4d3eb0b154eac41a392b0a7e9d19523fdb00786b60f8067a8e876c1b7813b127431b1625b1480d9812d623a6d3c540a8ecf646242
 SHA512 
4c12d08076b0f260727d5aac780f5e9a24e0164755ff05b02a1f5a697876741ff13ba278fdd6e46ef678e8e1146bc39de1fc49ee10ee839229a70540a9424a99
+DIST urllib3-1.24.2.tar.gz 230699 BLAKE2B 
9c2f2be8fa743f542493d75072c02423d1bd40189561fa0ea393a8a2515b24da9a2a383aeec35b55bdd2a9954d3d585450d759548358ed91ecfdb9ec03d391b6
 SHA512 
9939e9e7c4da30b5effb334969cd835c9d0404a136761098203c699570aab02e63fb3f1b4ab680def0bc0906fabe5f0782ab94cf3095ff10ccf9b3c371653cf2

diff --git a/dev-python/urllib3/urllib3-1.24.2.ebuild 
b/dev-python/urllib3/urllib3-1.24.2.ebuild
new file mode 100644
index 000..08d3d35b05c
--- /dev/null
+++ b/dev-python/urllib3/urllib3-1.24.2.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy{,3} )
+PYTHON_REQ_USE="ssl(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="HTTP library with thread-safe connection pooling, file post, and 
more"
+HOMEPAGE="https://github.com/shazow/urllib3;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc test"
+#RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}]
+   !~dev-python/PySocks-1.5.7[${PYTHON_USEDEP}]
+   =dev-python/cryptography-1.3.4[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}]
+   >=dev-python/idna-2.0.0[${PYTHON_USEDEP}]
+   virtual/python-ipaddress[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   >=www-servers/tornado-4.2.1[$(python_gen_usedep 'python*')]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )
+   doc? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   )
+"
+
+# Testsuite written requiring mock to be installed under all Cpythons
+
+python_prepare_all() {
+   # skip appengine tests
+   rm -r test/appengine || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   use doc && emake -C docs SPHINXOPTS= html
+}
+
+python_test() {
+   # FIXME: get tornado ported
+   if [[ ${EPYTHON} == python* ]]; then
+   py.test -v || die "Tests fail with ${EPYTHON}"
+   fi
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+   distutils-r1_python_install_all
+}



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

2019-04-23 Thread Aaron Bauman
commit: cfb472f24ce395c648222ee754a3929baaeb9c8f
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 16:51:49 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 16:52:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfb472f2

x11-misc/dmenu: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

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

diff --git a/x11-misc/dmenu/dmenu-4.8.ebuild b/x11-misc/dmenu/dmenu-4.8.ebuild
index aaf42bf59d9..916ea5565a5 100644
--- a/x11-misc/dmenu/dmenu-4.8.ebuild
+++ b/x11-misc/dmenu/dmenu-4.8.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~ppc ~ppc64 x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm arm64 hppa ~ppc ~ppc64 x86 ~x86-fbsd"
 IUSE="xinerama"
 
 RDEPEND="



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

2019-04-23 Thread Aaron Bauman
commit: c86f184cc241d1eb011e2804d83dacb9b45859e2
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 16:51:20 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 16:52:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c86f184c

x11-misc/xclip: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 x11-misc/xclip/xclip-0.13.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xclip/xclip-0.13.ebuild b/x11-misc/xclip/xclip-0.13.ebuild
index 0f925d76b52..8faeb8b5ff9 100644
--- a/x11-misc/xclip/xclip-0.13.ebuild
+++ b/x11-misc/xclip/xclip-0.13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 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://github.com/astrand/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
 
 RDEPEND="
x11-libs/libX11



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

2019-04-23 Thread Aaron Bauman
commit: 13dae7d60ae568357ee8736413f1ecf9af200279
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 16:50:53 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 16:52:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13dae7d6

app-admin/pass: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

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

diff --git a/app-admin/pass/pass-1.7.3.ebuild b/app-admin/pass/pass-1.7.3.ebuild
index 02fd3b80191..40951a9abdb 100644
--- a/app-admin/pass/pass-1.7.3.ebuild
+++ b/app-admin/pass/pass-1.7.3.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://git.zx2c4.com/password-store/snapshot/password-store-${PV}.tar.
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm ~ppc64 x86 ~x86-macos"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86 ~x86-macos"
 IUSE="+git X zsh-completion fish-completion emacs dmenu importers elibc_Darwin"
 
 RDEPEND="



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

2019-04-23 Thread Aaron Bauman
commit: 0cadaff0571ed8a14222562108ef6cd648e23552
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 17:34:58 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 17:34:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cadaff0

www-apps/gitea: arm64 keyworded

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

Signed-off-by: Aaron Bauman  gentoo.org>

 www-apps/gitea/gitea-1.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/gitea/gitea-1.8.0.ebuild 
b/www-apps/gitea/gitea-1.8.0.ebuild
index f62591346a4..7905bbf3153 100644
--- a/www-apps/gitea/gitea-1.8.0.ebuild
+++ b/www-apps/gitea/gitea-1.8.0.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 inherit golang-vcs-snapshot systemd user
 
 EGO_PN="code.gitea.io/gitea"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~arm64"
 
 DESCRIPTION="A painless self-hosted Git service"
 HOMEPAGE="https://gitea.io;



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

2019-04-23 Thread Aaron Bauman
commit: 9a5022689f407d2c879365849b3c2d418096d44c
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Apr 23 16:52:13 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Apr 23 16:52:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a502268

app-shells/gentoo-zsh-completions: arm64 stable

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 .../gentoo-zsh-completions/gentoo-zsh-completions-20180228.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/app-shells/gentoo-zsh-completions/gentoo-zsh-completions-20180228.ebuild 
b/app-shells/gentoo-zsh-completions/gentoo-zsh-completions-20180228.ebuild
index 8a7da71514a..0139664c96a 100644
--- a/app-shells/gentoo-zsh-completions/gentoo-zsh-completions-20180228.ebuild
+++ b/app-shells/gentoo-zsh-completions/gentoo-zsh-completions-20180228.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
@@ -8,7 +8,7 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/gentoo/gentoo-zsh-completions.git;
 else
SRC_URI="https://github.com/gentoo/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc64-solaris"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc64-solaris"
 fi
 
 DESCRIPTION="Gentoo specific zsh completion support (includes emerge and 
ebuild commands)"



  1   2   >