[gentoo-commits] gentoo commit in src/patchsets/gcc/6.4.0/gentoo: 97_all_libjava-ucontext.patch README.history

2018-01-11 Thread Sergei Trofimovich (slyfox)
slyfox  18/01/12 07:36:17

  Modified: README.history
  Added:97_all_libjava-ucontext.patch
  Log:
  gcc: fix building against glibc-2.26 (ucontext_t change), bug #629502#c20
  
  Reported-by: Andrey Grozin
  Bug: https://bugs.gentoo.org/629502#c20

Revision  ChangesPath
1.5  src/patchsets/gcc/6.4.0/gentoo/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/README.history?rev=1.5=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/README.history?rev=1.5=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/README.history?r1=1.4=1.5

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/6.4.0/gentoo/README.history,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- README.history  6 Jan 2018 19:34:57 -   1.4
+++ README.history  12 Jan 2018 07:36:17 -  1.5
@@ -1,3 +1,5 @@
+1.312 Jan 2018
+   + 97_all_libjava-ucontext.patch
 1.206 Jan 2018
+ 95_all_static_override_pie.patch
+ 96_all_powerpc_pie.patch



1.1  
src/patchsets/gcc/6.4.0/gentoo/97_all_libjava-ucontext.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/97_all_libjava-ucontext.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/6.4.0/gentoo/97_all_libjava-ucontext.patch?rev=1.1=text/plain

Index: 97_all_libjava-ucontext.patch
===
https://bugs.gentoo.org/629502

>From 9b9287cde20ea57578cf07efb2a96ed4cc0da36f Mon Sep 17 00:00:00 2001
From: doko 
Date: Thu, 7 Sep 2017 07:22:07 +
Subject: [PATCH] 2017-09-07  Matthias Klose  

* include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): Replace
'struct ucontext' with ucontext_t.
* include/i386-signal.h (HANDLE_DIVIDE_OVERFLOW): Likewise.
* include/s390-signal.h (HANDLE_DIVIDE_OVERFLOW): Likewise.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@251832 
138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/include/i386-signal.h   | 2 +-
 libjava/include/s390-signal.h   | 2 +-
 libjava/include/x86_64-signal.h | 2 +-
 4 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/libjava/include/i386-signal.h b/libjava/include/i386-signal.h
index c2409b0e301..ef77e7e99ae 100644
--- a/libjava/include/i386-signal.h
+++ b/libjava/include/i386-signal.h
@@ -29,7 +29,7 @@ static void _Jv_##_name (int, siginfo_t *,
\
 #define HANDLE_DIVIDE_OVERFLOW \
 do \
 {  \
-  struct ucontext *_uc = (struct ucontext *)_p;
\
+  ucontext_t *_uc = (ucontext_t *)_p;  \
   gregset_t &_gregs = _uc->uc_mcontext.gregs;  \
   unsigned char *_eip = (unsigned char *)_gregs[REG_EIP];  \
\
diff --git a/libjava/include/s390-signal.h b/libjava/include/s390-signal.h
index 4ca4c108864..9261b52be6e 100644
--- a/libjava/include/s390-signal.h
+++ b/libjava/include/s390-signal.h
@@ -51,7 +51,7 @@ do
\
   struct\
   { \
 unsigned long int uc_flags; \
-struct ucontext *uc_link;   \
+ucontext_t *uc_link;\
 stack_t uc_stack;   \
 mcontext_t uc_mcontext; \
 unsigned long sigmask[2];   \
diff --git a/libjava/include/x86_64-signal.h b/libjava/include/x86_64-signal.h
index 12383b5485a..e36c5a32a64 100644
--- a/libjava/include/x86_64-signal.h
+++ b/libjava/include/x86_64-signal.h
@@ -28,7 +28,7 @@ static void _Jv_##_name (int, siginfo_t *,
\
 #define HANDLE_DIVIDE_OVERFLOW \
 do \
 {  \
-  struct ucontext *_uc = (struct ucontext *)_p;
\
+  ucontext_t *_uc = (ucontext_t *)_p;  \
   gregset_t &_gregs = _uc->uc_mcontext.gregs;  \
   unsigned 

[gentoo-commits] gentoo commit in src/patchsets/gcc/5.4.0/gentoo: 95_all_libjava-ucontext.patch README.history

2018-01-11 Thread Sergei Trofimovich (slyfox)
slyfox  18/01/12 07:36:17

  Modified: README.history
  Added:95_all_libjava-ucontext.patch
  Log:
  gcc: fix building against glibc-2.26 (ucontext_t change), bug #629502#c20
  
  Reported-by: Andrey Grozin
  Bug: https://bugs.gentoo.org/629502#c20

Revision  ChangesPath
1.9  src/patchsets/gcc/5.4.0/gentoo/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history?rev=1.9=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history?rev=1.9=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history?r1=1.8=1.9

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- README.history  26 Oct 2017 20:55:03 -  1.8
+++ README.history  12 Jan 2018 07:36:16 -  1.9
@@ -1,3 +1,5 @@
+1.812 Jan 2018
+   + 95_all_libjava-ucontext.patch
 1.726 Oct 2017
+ 94_all_no-sigaltstack.patch
 1.626 Oct 2017



1.1  
src/patchsets/gcc/5.4.0/gentoo/95_all_libjava-ucontext.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/95_all_libjava-ucontext.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/95_all_libjava-ucontext.patch?rev=1.1=text/plain

Index: 95_all_libjava-ucontext.patch
===
https://bugs.gentoo.org/629502

>From 9b9287cde20ea57578cf07efb2a96ed4cc0da36f Mon Sep 17 00:00:00 2001
From: doko 
Date: Thu, 7 Sep 2017 07:22:07 +
Subject: [PATCH] 2017-09-07  Matthias Klose  

* include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): Replace
'struct ucontext' with ucontext_t.
* include/i386-signal.h (HANDLE_DIVIDE_OVERFLOW): Likewise.
* include/s390-signal.h (HANDLE_DIVIDE_OVERFLOW): Likewise.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@251832 
138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/include/i386-signal.h   | 2 +-
 libjava/include/s390-signal.h   | 2 +-
 libjava/include/x86_64-signal.h | 2 +-
 4 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/libjava/include/i386-signal.h b/libjava/include/i386-signal.h
index c2409b0e301..ef77e7e99ae 100644
--- a/libjava/include/i386-signal.h
+++ b/libjava/include/i386-signal.h
@@ -29,7 +29,7 @@ static void _Jv_##_name (int, siginfo_t *,
\
 #define HANDLE_DIVIDE_OVERFLOW \
 do \
 {  \
-  struct ucontext *_uc = (struct ucontext *)_p;
\
+  ucontext_t *_uc = (ucontext_t *)_p;  \
   gregset_t &_gregs = _uc->uc_mcontext.gregs;  \
   unsigned char *_eip = (unsigned char *)_gregs[REG_EIP];  \
\
diff --git a/libjava/include/s390-signal.h b/libjava/include/s390-signal.h
index 4ca4c108864..9261b52be6e 100644
--- a/libjava/include/s390-signal.h
+++ b/libjava/include/s390-signal.h
@@ -51,7 +51,7 @@ do
\
   struct\
   { \
 unsigned long int uc_flags; \
-struct ucontext *uc_link;   \
+ucontext_t *uc_link;\
 stack_t uc_stack;   \
 mcontext_t uc_mcontext; \
 unsigned long sigmask[2];   \
diff --git a/libjava/include/x86_64-signal.h b/libjava/include/x86_64-signal.h
index 12383b5485a..e36c5a32a64 100644
--- a/libjava/include/x86_64-signal.h
+++ b/libjava/include/x86_64-signal.h
@@ -28,7 +28,7 @@ static void _Jv_##_name (int, siginfo_t *,
\
 #define HANDLE_DIVIDE_OVERFLOW \
 do \
 {  \
-  struct ucontext *_uc = (struct ucontext *)_p;
\
+  ucontext_t *_uc = (ucontext_t *)_p;  \
   gregset_t &_gregs = _uc->uc_mcontext.gregs;  \
   unsigned char *_rip = 

[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.4/gentoo: 98_all_libjava-ucontext.patch README.history

2018-01-11 Thread Sergei Trofimovich (slyfox)
slyfox  18/01/12 07:36:16

  Modified: README.history
  Added:98_all_libjava-ucontext.patch
  Log:
  gcc: fix building against glibc-2.26 (ucontext_t change), bug #629502#c20
  
  Reported-by: Andrey Grozin
  Bug: https://bugs.gentoo.org/629502#c20

Revision  ChangesPath
1.4  src/patchsets/gcc/4.9.4/gentoo/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/gentoo/README.history?rev=1.4=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/gentoo/README.history?rev=1.4=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/gentoo/README.history?r1=1.3=1.4

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.9.4/gentoo/README.history,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- README.history  27 Oct 2017 22:36:03 -  1.3
+++ README.history  12 Jan 2018 07:36:16 -  1.4
@@ -1,3 +1,5 @@
+1.312 Jan 2018
+   + 98_all_libjava-ucontext.patch
 1.227 Oct 2017
+ 95_all_asan-signal_h.patch
+ 96_all_ucontext-to-ucontext_t.patch



1.1  
src/patchsets/gcc/4.9.4/gentoo/98_all_libjava-ucontext.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/gentoo/98_all_libjava-ucontext.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.4/gentoo/98_all_libjava-ucontext.patch?rev=1.1=text/plain

Index: 98_all_libjava-ucontext.patch
===
https://bugs.gentoo.org/629502

>From 9b9287cde20ea57578cf07efb2a96ed4cc0da36f Mon Sep 17 00:00:00 2001
From: doko 
Date: Thu, 7 Sep 2017 07:22:07 +
Subject: [PATCH] 2017-09-07  Matthias Klose  

* include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): Replace
'struct ucontext' with ucontext_t.
* include/i386-signal.h (HANDLE_DIVIDE_OVERFLOW): Likewise.
* include/s390-signal.h (HANDLE_DIVIDE_OVERFLOW): Likewise.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@251832 
138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/include/i386-signal.h   | 2 +-
 libjava/include/s390-signal.h   | 2 +-
 libjava/include/x86_64-signal.h | 2 +-
 4 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/libjava/include/i386-signal.h b/libjava/include/i386-signal.h
index c2409b0e301..ef77e7e99ae 100644
--- a/libjava/include/i386-signal.h
+++ b/libjava/include/i386-signal.h
@@ -29,7 +29,7 @@ static void _Jv_##_name (int, siginfo_t *,
\
 #define HANDLE_DIVIDE_OVERFLOW \
 do \
 {  \
-  struct ucontext *_uc = (struct ucontext *)_p;
\
+  ucontext_t *_uc = (ucontext_t *)_p;  \
   gregset_t &_gregs = _uc->uc_mcontext.gregs;  \
   unsigned char *_eip = (unsigned char *)_gregs[REG_EIP];  \
\
diff --git a/libjava/include/s390-signal.h b/libjava/include/s390-signal.h
index 4ca4c108864..9261b52be6e 100644
--- a/libjava/include/s390-signal.h
+++ b/libjava/include/s390-signal.h
@@ -51,7 +51,7 @@ do
\
   struct\
   { \
 unsigned long int uc_flags; \
-struct ucontext *uc_link;   \
+ucontext_t *uc_link;\
 stack_t uc_stack;   \
 mcontext_t uc_mcontext; \
 unsigned long sigmask[2];   \
diff --git a/libjava/include/x86_64-signal.h b/libjava/include/x86_64-signal.h
index 12383b5485a..e36c5a32a64 100644
--- a/libjava/include/x86_64-signal.h
+++ b/libjava/include/x86_64-signal.h
@@ -28,7 +28,7 @@ static void _Jv_##_name (int, siginfo_t *,
\
 #define HANDLE_DIVIDE_OVERFLOW \
 do \
 {  \
-  struct ucontext *_uc = (struct ucontext *)_p;
\
+  ucontext_t *_uc = (ucontext_t *)_p;  \
   gregset_t &_gregs = _uc->uc_mcontext.gregs;  \
   

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

2018-01-11 Thread Hans de Graaff
commit: d4dda9b31289c2773014c5015717bf325deac108
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 12 06:48:02 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 12 06:55:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4dda9b3

dev-ruby/parallel: cleanup

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-ruby/parallel/Manifest   |  1 -
 dev-ruby/parallel/parallel-1.11.2.ebuild | 51 
 2 files changed, 52 deletions(-)

diff --git a/dev-ruby/parallel/Manifest b/dev-ruby/parallel/Manifest
index 6e112f6ddba..39aac437743 100644
--- a/dev-ruby/parallel/Manifest
+++ b/dev-ruby/parallel/Manifest
@@ -1,3 +1,2 @@
-DIST parallel-1.11.2.tar.gz 20403 BLAKE2B 
dc10982b8bbfc5db07784fd991fff65dec673f37ae428cd657f2fd105c1fb1e79b3a94ddc4b2a826ae476523b3b4e3811a534f2c32f26706c29e00593d4c78f9
 SHA512 
4763abeb76ba5eb88c85f661a794d784e457ed7ba6bd1367e65d802006bfd05cad017fb9a8fa3ca45ee87bb54c2dda218099fe78b2f6f36b05632d2ccd3d
 DIST parallel-1.12.0.tar.gz 20472 BLAKE2B 
b6e998588f94e07194c19d4bf38964aa5e846b7f62c7a267041473a237a9d8fdebb4dc501695b00902c852021ce7817b24bfe01dcf4c0e18445b46d46c7cb42b
 SHA512 
8ca41cf577ee4743ef50abe693d0040eaab12b61eca17c3d6c33d3720c38563e2df9a0eb5af0fe9d8c34c3b910f1c626ce141fd2eb7d2edfbe5abbcb9f54191b
 DIST parallel-1.12.1.tar.gz 20499 BLAKE2B 
f0fa25b9fe65e44804854f703dd2d80e53572e64c2072c418d0462922bd04f89cff0e023caf4293d8a1504ad66a2a29ebbdd01920fc6fe400837859da0f0eb78
 SHA512 
f0ab332dfa60bb3190bba8275dbdf7b54d3de205ab76099d11f0a64e1fc28e1ba7e72d1a242bd615015c2d09a3f08df01c382869fd6990b854b01fe182245857

diff --git a/dev-ruby/parallel/parallel-1.11.2.ebuild 
b/dev-ruby/parallel/parallel-1.11.2.ebuild
deleted file mode 100644
index fb6b05d0a0e..000
--- a/dev-ruby/parallel/parallel-1.11.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-RUBY_FAKEGEM_EXTRAINSTALL="Readme.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Run any code in parallel Processes or Threads"
-HOMEPAGE="https://github.com/grosser/parallel;
-LICENSE="MIT"
-SRC_URI="https://github.com/grosser/parallel/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-KEYWORDS="~amd64"
-SLOT="1"
-IUSE="test"
-
-DEPEND+="test? ( sys-process/lsof )"
-
-ruby_add_bdepend "
-   test? ( dev-ruby/ruby-progressbar dev-ruby/activerecord:4.2 
dev-ruby/sqlite3 )"
-
-each_ruby_prepare() {
-   # Make sure the correct ruby is used for testing
-   sed -e 's:ruby :'${RUBY}' :' -i spec/parallel_spec.rb || die
-}
-
-all_ruby_prepare() {
-   sed -i -e '/bundler/ s:^:#:' \
-   -e '1i require "tempfile"; gem "activerecord", "~>4.2.0"' 
spec/cases/helper.rb || die
-   sed -i -e '3irequire "timeout"' spec/spec_helper.rb || die
-
-   # Avoid a failing spec regarding to pipes. The spec seems like it
-   # should always fail.
-   sed -e '/does not open unnecessary pipes/,/end/ s:^:#:' \
-   -i spec/parallel_spec.rb || die
-
-   # Avoid fragile ar sqlite tests. They throw ReadOnly errors every now 
and then.
-   sed -i -e '/works with SQLite in/,/end/ s:^:#:' spec/parallel_spec.rb 
|| die
-}
-
-each_ruby_test() {
-   # Set RUBYLIB explicitly for the ruby's that get started from the specs.
-   TRAVIS=true RUBYLIB="lib" ${RUBY} -S rspec-3 spec || die
-}



[gentoo-commits] repo/gentoo:master commit in: sys-block/sas3ircu/

2018-01-11 Thread Robin H. Johnson
commit: dff605dffa9eada23260f734010f6366a941faa6
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jan 12 06:15:05 2018 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jan 12 06:15:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dff605df

sys-block/sas3ircu: update digests.

Closes: https://bugs.gentoo.org/show_bug.cgi?id=642918
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Signed-off-by: Robin H. Johnson  gentoo.org>

 sys-block/sas3ircu/Manifest | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-block/sas3ircu/Manifest b/sys-block/sas3ircu/Manifest
index a9fd0403938..4e2a047b3b9 100644
--- a/sys-block/sas3ircu/Manifest
+++ b/sys-block/sas3ircu/Manifest
@@ -1,5 +1,5 @@
-DIST SAS3IRCU_P14.zip 6536687 SHA256 
9766821f41fce1f2181383537172e52f93e4e0d0bfcf1815289e940410132ec1 SHA512 
50125edf382b12aec88c83b6a11e94f766d0ecd94247e0f5e16f6dc3571c34e21ccfedf15563b41bc48983d881a216a2291fad66353370bc076f4f513863a288
 WHIRLPOOL 
226b28904d2288dd28380caf496ed96b01945aec8e928c9b66749c0f215bcf7c1f9006dd3274f117a2e653658089ce33e55d1dff044b499b78b824257bed216f
-DIST SAS3IRCU_P15.zip 6577897 SHA256 
0fafdccbaa2809ed70b30e1715a7eaffeda5bcbd71781516271eae38d9b85e69 SHA512 
d2020a4148a04109c82025dd99401d9c110201a294a4c03aca32483e8d54d179c2104fd12e427c577652b257ec9dbe9ea54089929bc35b5fd9cf1a166d6902c1
 WHIRLPOOL 
32a8668abc64fdd9516464d0e4f71891a204e21a6789b78313cb6cf884f96fe8acaa9892a6d6a17d464b7c720fceffbc0bd79fb2be70da721b1817447045
-DIST SAS3IRCU_P5.zip 2655605 SHA256 
8a05cefa544063c61a5eddd8030e48375545a74e0480c735ad5ed76a99c04d28 SHA512 
233ec5ea8e32123652382a9072831fa35f496ce0755d8fd7113139f43e57837053e00eb7cae5f5273177510444f384fc6f08f7278232fe3d6601771ee214d9dc
 WHIRLPOOL 
643f935d5b1162e91df6af820bf4b70930974630a89cb772cb003e3e30b98a50ca7c9c9c63a309eab5fdf4bd759cc7c11bf4bf925c10edbdd6fa92a600f61d5f
-DIST SAS3IRCU_UG.pdf 690245 SHA256 
0920984018e0873d65c0587c1ee436d3e72e6de3558730d61c33b53f4fad64b4 SHA512 
9e7a47f32bd19b708b1eedd63d7d7112a17c8da952b74630196dc2891cd14f758394dcc14b8be05666e6133a3bb10e77784bd62749fe4b1e2d7f7c71ae26fe2b
 WHIRLPOOL 
ef0f2dd0c5d807bd0f82ac56fcfec23d2c16b15a7567dc7a29d0c15b076d4b1f0aa160fe2d1c9cc679579eb41e51ab7b6639f1e35c3a5124ebf088536ba7d8df
-DIST SAS3_IR_UG.pdf 714573 SHA256 
29f3c564e1a314807fa9ee8fc35fc1091f207f42526bc1836caf62a17c9f653f SHA512 
4db16dedcadc3daf853e62531ac620af4a3e41d001b58fcd333692f9121d1ca3ec8b9de0113693506b31da714b9368ff55addb0398f2f843e4a6a1bf3d665433
 WHIRLPOOL 
f5e155d393c08d3dc45eb8f5e83367356de96fab2ea2e5f274ead05af1024947eba5c23817f20fd97cc1af92e4dc5afdfce3cf6c6dff3fa0c84985377522ddf0
+DIST SAS3IRCU_P14.zip 6536687 BLAKE2B 
c8f5fbf9e92aa752baf173f23536e90920dbce94813ad4408a38a616ee4c0ab1fac302ca8ae324b5052813e2e1f025704b80a7f098176aa614f381017779cfd6
 SHA512 
50125edf382b12aec88c83b6a11e94f766d0ecd94247e0f5e16f6dc3571c34e21ccfedf15563b41bc48983d881a216a2291fad66353370bc076f4f513863a288
+DIST SAS3IRCU_P15.zip 6577897 BLAKE2B 
8bb7a9deefee875f88f4ac7ac8432e9e5d7ac0122454a009b2946ba82ef48d6ffb1582ecc438a0fcda928780999c221c1475640d0a9b28be5fedbf3c4be8aba8
 SHA512 
d2020a4148a04109c82025dd99401d9c110201a294a4c03aca32483e8d54d179c2104fd12e427c577652b257ec9dbe9ea54089929bc35b5fd9cf1a166d6902c1
+DIST SAS3IRCU_P5.zip 2655605 BLAKE2B 
78b7b3555d725166bad03b6619e890c025901fd41be80ac7657945acf9429fa05b91881fe98dd76061c676a373c95079c429196ba73b24407ccfae7f11f48a41
 SHA512 
233ec5ea8e32123652382a9072831fa35f496ce0755d8fd7113139f43e57837053e00eb7cae5f5273177510444f384fc6f08f7278232fe3d6601771ee214d9dc
+DIST SAS3IRCU_UG.pdf 690245 BLAKE2B 
781ec32443eaa99dc0c7d30739ecde21deb62e013b6c08d617cd46567d3905913711a36cd26eccf6e260fda9ed1ec4c0aaffee4a434224ca864379519967debb
 SHA512 
9e7a47f32bd19b708b1eedd63d7d7112a17c8da952b74630196dc2891cd14f758394dcc14b8be05666e6133a3bb10e77784bd62749fe4b1e2d7f7c71ae26fe2b
+DIST SAS3_IR_UG.pdf 714573 BLAKE2B 
09a3a47abf6118343f023f4cdf85ab2f5f583f806e305dafa6397d1099fc01ecc33b331afd10d63ac8bb75a365d09c931c19fc673fa707b5171feb23d64f97bf
 SHA512 
4db16dedcadc3daf853e62531ac620af4a3e41d001b58fcd333692f9121d1ca3ec8b9de0113693506b31da714b9368ff55addb0398f2f843e4a6a1bf3d665433



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

2018-01-11 Thread Hans de Graaff
commit: 22b9426d61cc825c4b622660de0e8ceb2e312be3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 12 05:56:00 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 12 05:56:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22b9426d

dev-ruby/msgpack: cleanup

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-ruby/msgpack/Manifest |  2 --
 dev-ruby/msgpack/msgpack-0.7.6.ebuild | 44 ---
 dev-ruby/msgpack/msgpack-1.0.3.ebuild | 44 ---
 dev-ruby/msgpack/msgpack-1.1.0.ebuild | 44 ---
 4 files changed, 134 deletions(-)

diff --git a/dev-ruby/msgpack/Manifest b/dev-ruby/msgpack/Manifest
index b71aecb2378..46700971533 100644
--- a/dev-ruby/msgpack/Manifest
+++ b/dev-ruby/msgpack/Manifest
@@ -1,4 +1,2 @@
-DIST msgpack-0.7.6.gem 74752 BLAKE2B 
4ad445ce73c1ba2889a7989f15a06ddafc8c304a53096ed3b0881da3829d7a90e4456a017536dcac49c48fdaf39776534ef3270581ed58ee79375741dd93632c
 SHA512 
9d30533175118c08f671015a99664e4798c845f63595495933b42f0fa95c160a6708e472da70baeb64537a704dd4768cdc9ab99a19045daabd92555b21f4e389
-DIST msgpack-1.0.3.gem 77312 BLAKE2B 
57b02566009c19ff9c7886b82e6ac300c598462cfc3a8f29f07bf53e037508aeba5f6a783a865a49014bc9a99d5256f6dc59b20739ab7a3d34c84bc534cafb7f
 SHA512 
b76db7f5c91128d1964c7bf8c914a7e85e374fc0149bf5d0b470729fa01f4fdf173f7397e6f8df32af760a622a405cdc6d268f45b776b172bb39b9f1f4f7
 DIST msgpack-1.1.0.gem 78336 BLAKE2B 
34b450bfded43cbbde3246ec581191de85131b6b74b4bf57ce6dce26cde3d6d40ab9f018e28b4b2e2b144c44cfaafd704ca4edd641371b179b3779f43c6ce23a
 SHA512 
0142c9a446a476a7b4f9212513dd7b1fbe107193a473873f4eb6f4321d5515c42ea3540ac4de17f37f9e833f19bb75594d14b84ccf70b16d2a3840e066c873da
 DIST msgpack-1.2.0.gem 77824 BLAKE2B 
15b44b5de8ae02ec6864323241a8827099d912850158c1bb81d32840ff7f0c7e53351d30b209f7c0bfea9e099c34ec724c98420bec45e0701918d883a16a8367
 SHA512 
c81d68519d5dfc6188799a889fde3d5aec0fc4231366da61914b028e8ef23c8de0bdc2399e634327ca1885566c14ceffe08def795417e386834d07dddf5f8836

diff --git a/dev-ruby/msgpack/msgpack-0.7.6.ebuild 
b/dev-ruby/msgpack/msgpack-0.7.6.ebuild
deleted file mode 100644
index a4a1f467aa3..000
--- a/dev-ruby/msgpack/msgpack-0.7.6.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_TASK_DOC="doc"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.rdoc"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Binary-based efficient data interchange format for ruby binding"
-HOMEPAGE="http://msgpack.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86-fbsd"
-IUSE="doc"
-
-ruby_add_bdepend "doc? ( dev-ruby/yard )"
-
-all_ruby_prepare() {
-   sed -i -e '/bundler/I s:^:#:' Rakefile || die
-
-   # Remove jruby-specific specs that are run also for other rubies.
-   rm -rf spec/jruby || die
-
-   sed -i -e '/git ls-files/d' msgpack.gemspec || die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/${PN} extconf.rb || die "Configuration of extension 
failed."
-
-   # rb_num2int is not inlined on 32 bit arches but also not explicitly
-   # defined, bug 582968
-   sed -i -e 's:-Wl,--no-undefined::' ext/${PN}/Makefile || die
-}
-
-each_ruby_compile() {
-   emake V=1 -Cext/${PN}
-   cp ext/${PN}/msgpack$(get_modname) lib/${PN} || die "Unable to install 
msgpack library."
-}

diff --git a/dev-ruby/msgpack/msgpack-1.0.3.ebuild 
b/dev-ruby/msgpack/msgpack-1.0.3.ebuild
deleted file mode 100644
index 08bed06564e..000
--- a/dev-ruby/msgpack/msgpack-1.0.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_TASK_DOC="doc"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.rdoc"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="Binary-based efficient data interchange format for ruby binding"
-HOMEPAGE="https://msgpack.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~x86-fbsd"
-IUSE="doc"
-
-ruby_add_bdepend "doc? ( dev-ruby/yard )"
-
-all_ruby_prepare() {
-   sed -i -e '/bundler/I s:^:#:' Rakefile || die
-
-   # Remove jruby-specific specs that are run also for other rubies.
-   rm -rf spec/jruby || die
-
-   sed -i -e '/git ls-files/d' msgpack.gemspec || die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/${PN} extconf.rb || die "Configuration of extension 
failed."
-
-   # rb_num2int is not inlined on 32 bit arches but also not explicitly
-   # defined, bug 582968
-   sed -i -e 's:-Wl,--no-undefined::' ext/${PN}/Makefile || die
-}
-
-each_ruby_compile() {
-   emake V=1 -Cext/${PN}
-   cp ext/${PN}/msgpack$(get_modname) lib/${PN} || die "Unable 

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

2018-01-11 Thread Hans de Graaff
commit: c72aaa19a046fe297fb95ba339f0611a8827e091
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 12 06:00:53 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 12 06:00:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c72aaa19

dev-ruby/msgpack: add 1.2.2

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-ruby/msgpack/Manifest |  1 +
 dev-ruby/msgpack/msgpack-1.2.2.ebuild | 44 +++
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/msgpack/Manifest b/dev-ruby/msgpack/Manifest
index 46700971533..350606dffbc 100644
--- a/dev-ruby/msgpack/Manifest
+++ b/dev-ruby/msgpack/Manifest
@@ -1,2 +1,3 @@
 DIST msgpack-1.1.0.gem 78336 BLAKE2B 
34b450bfded43cbbde3246ec581191de85131b6b74b4bf57ce6dce26cde3d6d40ab9f018e28b4b2e2b144c44cfaafd704ca4edd641371b179b3779f43c6ce23a
 SHA512 
0142c9a446a476a7b4f9212513dd7b1fbe107193a473873f4eb6f4321d5515c42ea3540ac4de17f37f9e833f19bb75594d14b84ccf70b16d2a3840e066c873da
 DIST msgpack-1.2.0.gem 77824 BLAKE2B 
15b44b5de8ae02ec6864323241a8827099d912850158c1bb81d32840ff7f0c7e53351d30b209f7c0bfea9e099c34ec724c98420bec45e0701918d883a16a8367
 SHA512 
c81d68519d5dfc6188799a889fde3d5aec0fc4231366da61914b028e8ef23c8de0bdc2399e634327ca1885566c14ceffe08def795417e386834d07dddf5f8836
+DIST msgpack-1.2.2.gem 78848 BLAKE2B 
b3ae75ebd6159a78c6a31ecc45bfe0474d5fe91672b6c9dfe96a561b07ebb5bc9ebf91477bc370fba199c5a8c187faa4995a90aa0209b8af81e6d06cd2e58b7b
 SHA512 
7f7fa3350485c3888a42a78fc53f91029208bc6ee483b4c1a082dfa515d435295b6d2f57e9c4cc3f7805349e4a21854585997075d2535c0343af4ae1ec66a802

diff --git a/dev-ruby/msgpack/msgpack-1.2.2.ebuild 
b/dev-ruby/msgpack/msgpack-1.2.2.ebuild
new file mode 100644
index 000..ea2b33ee6ac
--- /dev/null
+++ b/dev-ruby/msgpack/msgpack-1.2.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_TASK_DOC="doc"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.rdoc"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Binary-based efficient data interchange format for ruby binding"
+HOMEPAGE="https://msgpack.org/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~x86-fbsd"
+IUSE="doc"
+
+ruby_add_bdepend "doc? ( dev-ruby/yard )"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/I s:^:#:' Rakefile || die
+
+   # Remove jruby-specific specs that are run also for other rubies.
+   rm -rf spec/jruby || die
+
+   sed -i -e '/git ls-files/d' msgpack.gemspec || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/${PN} extconf.rb || die "Configuration of extension 
failed."
+
+   # rb_num2int is not inlined on 32 bit arches but also not explicitly
+   # defined, bug 582968
+   sed -i -e 's:-Wl,--no-undefined::' ext/${PN}/Makefile || die
+}
+
+each_ruby_compile() {
+   emake V=1 -Cext/${PN}
+   cp ext/${PN}/msgpack$(get_modname) lib/${PN} || die "Unable to install 
msgpack library."
+}



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

2018-01-11 Thread Mike Frysinger
commit: 1f66be9308e62a580e4a4c00fa198069fa49cb15
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 04:37:56 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:37:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f66be93

sys-auth/pambase: mark 20150213-r1 arm64/m68k/s390/sh stable

 sys-auth/pambase/pambase-20150213-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/pambase/pambase-20150213-r1.ebuild 
b/sys-auth/pambase/pambase-20150213-r1.ebuild
index 612b2fec2ef..70909df20d8 100644
--- a/sys-auth/pambase/pambase-20150213-r1.ebuild
+++ b/sys-auth/pambase/pambase-20150213-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://dev.gentoo.org/~vapier/dist/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 -sparc-fbsd -x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc 
x86 -sparc-fbsd -x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="consolekit +cracklib debug elogind gnome-keyring minimal mktemp +nullok 
pam_krb5 pam_ssh passwdqc securetty selinux +sha512 systemd"
 
 RESTRICT="binchecks"



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

2018-01-11 Thread Mike Frysinger
commit: 7593221abf949d6e093b986a2d596e9ddf1a504c
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 05:30:41 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 05:30:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7593221a

net-misc/dropbear: version bump to 2017.75 #619002

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

 net-misc/dropbear/Manifest|  1 +
 net-misc/dropbear/dropbear-2017.75.ebuild | 98 +++
 2 files changed, 99 insertions(+)

diff --git a/net-misc/dropbear/Manifest b/net-misc/dropbear/Manifest
index 33ccc37b906..007e427b8dd 100644
--- a/net-misc/dropbear/Manifest
+++ b/net-misc/dropbear/Manifest
@@ -1 +1,2 @@
 DIST dropbear-2016.74.tar.bz2 1622234 BLAKE2B 
c729a2c1afd13e1ca07f3c9cfe3ff0ea7888cc1687ea2793275134b3224118164ef81583f55dbec53d6322be53eaa7a7324216133919722390d0e2dfbd929f07
 SHA512 
c0f4ea7840077b8302b48e27b5b588a4babac6583740dfdb845c40f633aa3ec96174d1d2ade81d2c3e23ea99b75e906312c512d8c7580e6e4105b2dbd37e5e22
+DIST dropbear-2017.75.tar.bz2 1623392 BLAKE2B 
c024037d3ebcb3f16aed2a5f24e07c06699a510b327a0ea528db7160ad2a8e554af2a233a266f869e0e30c78f3b0b7792a817d9c07f058f605dbf2dc749a4fda
 SHA512 
9c2f2a5e718339f83abc0ad7719bda12bfc75e5bcb87a7c0eec0afefc743e5c0a1575d290d5fde152ff2100b0f0e6fd5ef4431f7bbcb5ca9a332d93c20f5a8f4

diff --git a/net-misc/dropbear/dropbear-2017.75.ebuild 
b/net-misc/dropbear/dropbear-2017.75.ebuild
new file mode 100644
index 000..44611e4e459
--- /dev/null
+++ b/net-misc/dropbear/dropbear-2017.75.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+inherit eutils savedconfig pam user
+
+DESCRIPTION="small SSH 2 client/server designed for small memory environments"
+HOMEPAGE="http://matt.ucc.asn.au/dropbear/dropbear.html;
+SRC_URI="http://matt.ucc.asn.au/dropbear/releases/${P}.tar.bz2
+   http://matt.ucc.asn.au/dropbear/testing/${P}.tar.bz2;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="bsdpty minimal multicall pam +shadow static +syslog zlib"
+
+LIB_DEPEND="zlib? ( sys-libs/zlib[static-libs(+)] )
+   dev-libs/libtommath[static-libs(+)]"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
+   pam? ( virtual/pam )"
+DEPEND="${RDEPEND}
+   static? ( ${LIB_DEPEND} )"
+RDEPEND+=" pam? ( >=sys-auth/pambase-20080219.1 )"
+
+REQUIRED_USE="pam? ( !static )"
+
+set_options() {
+   progs=(
+   dropbear dbclient dropbearkey
+   $(usex minimal "" "dropbearconvert scp")
+   )
+   makeopts=(
+   MULTI=$(usex multicall 1 0)
+   STATIC=$(usex static 1 0)
+   )
+}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-0.46-dbscp.patch
+   sed -i \
+   -e '/SFTPSERVER_PATH/s:".*":"/usr/lib/misc/sftp-server":' \
+   options.h || die
+   sed -i \
+   -e '/pam_start/s:sshd:dropbear:' \
+   svr-authpam.c || die
+   restore_config options.h
+}
+
+src_configure() {
+   # XXX: Need to add libtomcrypt to the tree and re-enable this.
+   #   --disable-bundled-libtom
+   econf \
+   $(use_enable zlib) \
+   $(use_enable pam) \
+   $(use_enable !bsdpty openpty) \
+   $(use_enable shadow) \
+   $(use_enable syslog)
+}
+
+src_compile() {
+   set_options
+   emake "${makeopts[@]}" PROGRAMS="${progs[*]}"
+}
+
+src_install() {
+   set_options
+   emake "${makeopts[@]}" PROGRAMS="${progs[*]}" DESTDIR="${D}" install
+   doman *.8
+   newinitd "${FILESDIR}"/dropbear.init.d dropbear
+   newconfd "${FILESDIR}"/dropbear.conf.d dropbear
+   dodoc CHANGES README TODO SMALL MULTI
+
+   # The multi install target does not install the links right.
+   if use multicall ; then
+   cd "${ED}"/usr/bin
+   local x
+   for x in "${progs[@]}" ; do
+   ln -sf dropbearmulti ${x} || die "ln -s dropbearmulti 
to ${x} failed"
+   done
+   rm -f dropbear
+   dodir /usr/sbin
+   dosym ../bin/dropbearmulti /usr/sbin/dropbear
+   cd "${S}"
+   fi
+   save_config options.h
+
+   if ! use minimal ; then
+   mv "${ED}"/usr/bin/{,db}scp || die
+   fi
+
+   pamd_mimic system-remote-login dropbear auth account password session
+}
+
+pkg_preinst() {
+   enewgroup sshd 22
+   enewuser sshd 22 -1 /var/empty sshd
+}



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

2018-01-11 Thread Mike Frysinger
commit: ff3d3f469414600e47cdd640ac5b4c289805bd3c
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 04:18:39 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:18:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff3d3f46

sys-apps/baselayout: mark 2.4.1-r2 arm64/m68k/s390/sh stable

 sys-apps/baselayout/baselayout-2.4.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/baselayout/baselayout-2.4.1-r2.ebuild 
b/sys-apps/baselayout/baselayout-2.4.1-r2.ebuild
index bc82d2ddcdb..ec9e36e9794 100644
--- a/sys-apps/baselayout/baselayout-2.4.1-r2.ebuild
+++ b/sys-apps/baselayout/baselayout-2.4.1-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://gitweb.gentoo.org/proj/baselayout.git/snapshot/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="build kernel_linux"
 
 pkg_setup() {



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

2018-01-11 Thread Mike Frysinger
commit: b4ab0dbe044d4b9a9838f0d5425d47bed5d78814
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 04:18:18 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:18:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4ab0dbe

sys-apps/hwids: mark 20170328 m68k/s390/sh stable

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

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



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

2018-01-11 Thread Mike Frysinger
commit: a3be134848de0e2ae62d01d63dab867e2d611c2a
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 04:14:24 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:14:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3be1348

sys-devel/gdb: mark 7.12.1 arm64/m68k/s390 stable

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

diff --git a/sys-devel/gdb/gdb-7.12.1.ebuild b/sys-devel/gdb/gdb-7.12.1.ebuild
index 928e2912f4e..493828f2db3 100644
--- a/sys-devel/gdb/gdb-7.12.1.ebuild
+++ b/sys-devel/gdb/gdb-7.12.1.ebuild
@@ -57,7 +57,7 @@ LICENSE="GPL-2 LGPL-2"
 SLOT="0"
 if [[ ${PV} != * ]] ; then
# alpha #562128
-   KEYWORDS="-alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 
~s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+   KEYWORDS="-alpha amd64 arm arm64 ~hppa ia64 m68k ~mips ppc ppc64 s390 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 fi
 IUSE="+client lzma multitarget nls +python +server test vanilla xml"
 REQUIRED_USE="



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

2018-01-11 Thread Matt Thode
commit: 2cc5d6326649c1986b3156f9ced537e4051062e5
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan 12 04:10:11 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jan 12 04:11:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cc5d632

dev-libs/libmemcache: update to eapi6

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 .../libmemcache/libmemcache-1.4.0_rc2-r2.ebuild| 41 ++
 1 file changed, 41 insertions(+)

diff --git a/dev-libs/libmemcache/libmemcache-1.4.0_rc2-r2.ebuild 
b/dev-libs/libmemcache/libmemcache-1.4.0_rc2-r2.ebuild
new file mode 100644
index 000..30154cf1996
--- /dev/null
+++ b/dev-libs/libmemcache/libmemcache-1.4.0_rc2-r2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools eutils toolchain-funcs
+
+MY_P=${PN}-${PV/_/.}
+
+DESCRIPTION="C API for memcached"
+HOMEPAGE="http://people.freebsd.org/~seanc/libmemcache/;
+SRC_URI="http://people.freebsd.org/~seanc/libmemcache/${MY_P}.tar.bz2;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~sparc-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE=""
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-inline.patch
+   epatch "${FILESDIR}"/${P}-implicit_pointer.patch
+   [[ $(tc-arch) == ppc* ]] && epatch "${FILESDIR}"/${P}-ppc_ftbfs.patch
+
+   rm -rf test/unit || die
+   sed -i -e '/DIR/s,unit,,g' test/Makefile.am || die
+   sed -i \
+   -e 's,test/unit/Makefile,,g' \
+   -e '/^CFLAGS=.*Wall.*pipe/s,-Wall,${CFLAGS} -Wall,g' \
+   -e '/^OPTIMIZE=/d' \
+   -e '/^PROFILE=/d' \
+   configure.ac || die
+
+   eautoreconf
+   default
+}
+
+src_install() {
+   emake DESTDIR="${D}" install || die
+   dodoc ChangeLog
+}



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

2018-01-11 Thread Mike Frysinger
commit: 1fd7e03ba0fb1a9b84030e2f35cfd29b3b1e5752
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:43:42 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fd7e03b

dev-util/diffstat: mark 1.60 arm64/s390/sh stable

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

diff --git a/dev-util/diffstat/diffstat-1.60.ebuild 
b/dev-util/diffstat/diffstat-1.60.ebuild
index d0628ec89c7..de0a11a9089 100644
--- a/dev-util/diffstat/diffstat-1.60.ebuild
+++ b/dev-util/diffstat/diffstat-1.60.ebuild
@@ -9,7 +9,7 @@ SRC_URI="ftp://invisible-island.net/diffstat/${P}.tgz;
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 IUSE=""
 
 src_configure() {



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

2018-01-11 Thread Mike Frysinger
commit: 5c7a50331fac13ff05387d3ce696c326b5cce724
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 01:44:53 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:07:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c7a5033

app-text/po4a: mark 0.47-r1 m68k/s390/sh stable

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

diff --git a/app-text/po4a/po4a-0.47-r1.ebuild 
b/app-text/po4a/po4a-0.47-r1.ebuild
index f08c5240759..f5c19f7c5d9 100644
--- a/app-text/po4a/po4a-0.47-r1.ebuild
+++ b/app-text/po4a/po4a-0.47-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://debian/pool/main/p/po4a/${PN}_${PV}.orig.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris 
~x86-solaris"
 IUSE="test"
 
 RDEPEND="dev-perl/SGMLSpm



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-CPAN-Meta/

2018-01-11 Thread Mike Frysinger
commit: 30d173837010264b35d4bcc195b2bad76c189b33
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 01:42:35 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:07:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30d17383

virtual/perl-CPAN-Meta: mark 2.150.5-r1 m68k/s390/sh stable

 virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.150.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.150.5-r1.ebuild 
b/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.150.5-r1.ebuild
index 59c986a886b..d4d2b5b78ac 100644
--- a/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.150.5-r1.ebuild
+++ b/virtual/perl-CPAN-Meta/perl-CPAN-Meta-2.150.5-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
|| ( =dev-lang/perl-5.24* ~perl-core/${PN#perl-}-${PV} )



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

2018-01-11 Thread Mike Frysinger
commit: a15e8e9f46d8a7af131b107c587813ad85dbdbeb
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:46:19 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a15e8e9f

app-crypt/mhash: mark 0.9.9.9-r2 m68k/s390/sh stable

 app-crypt/mhash/mhash-0.9.9.9-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild 
b/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild
index e719837a52a..10bc239c95b 100644
--- a/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild
+++ b/app-crypt/mhash/mhash-0.9.9.9-r2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/mhash/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="static-libs"
 
 RDEPEND=""



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

2018-01-11 Thread Mike Frysinger
commit: 7ae43cffe1a61bc3c83e4c7bf8288e6fda1d2253
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:50:02 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ae43cff

dev-python/certifi: mark 2017.4.17 m68k/s390/sh stable

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

diff --git a/dev-python/certifi/certifi-2017.4.17.ebuild 
b/dev-python/certifi/certifi-2017.4.17.ebuild
index 5d86bae9c5b..a7fa755182c 100644
--- a/dev-python/certifi/certifi-2017.4.17.ebuild
+++ b/dev-python/certifi/certifi-2017.4.17.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND=""



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

2018-01-11 Thread Mike Frysinger
commit: 91aebf6ea866f412e680ddfd4534772a503e199a
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 01:42:58 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:07:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91aebf6e

virtual/perl-version: mark 0.991.600-r1 m68k/s390/sh stable

 virtual/perl-version/perl-version-0.991.600-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-version/perl-version-0.991.600-r1.ebuild 
b/virtual/perl-version/perl-version-0.991.600-r1.ebuild
index 75fc3ce6051..fc9869aba36 100644
--- a/virtual/perl-version/perl-version-0.991.600-r1.ebuild
+++ b/virtual/perl-version/perl-version-0.991.600-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
|| ( =dev-lang/perl-5.24* ~perl-core/${PN#perl-}-${PV} )



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

2018-01-11 Thread Mike Frysinger
commit: 55860ac72a46f97b53ec646c343635b1ce4b5086
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:46:27 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55860ac7

app-misc/ca-certificates: mark 20161130.3.30.2 m68k/s390/sh stable

 app-misc/ca-certificates/ca-certificates-20161130.3.30.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/ca-certificates/ca-certificates-20161130.3.30.2.ebuild 
b/app-misc/ca-certificates/ca-certificates-20161130.3.30.2.ebuild
index c538eb461d5..4dc1cd363d4 100644
--- a/app-misc/ca-certificates/ca-certificates-20161130.3.30.2.ebuild
+++ b/app-misc/ca-certificates/ca-certificates-20161130.3.30.2.ebuild
@@ -58,7 +58,7 @@ fi
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="insecure_certs"
 ${PRECOMPILED} || IUSE+=" cacert"
 



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

2018-01-11 Thread Mike Frysinger
commit: c752d93b5b6647e634b252914bb121afd9fb20d7
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:36:38 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:07:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c752d93b

net-libs/libnsl: mark 0 m68k/s390/sh stable

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

diff --git a/net-libs/libnsl/libnsl-0.ebuild b/net-libs/libnsl/libnsl-0.ebuild
index 37bd022979c..eeebf1d587c 100644
--- a/net-libs/libnsl/libnsl-0.ebuild
+++ b/net-libs/libnsl/libnsl-0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/thkukuk/libnsl;
 
 SLOT="0/1"
 LICENSE="LGPL-2.1+"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-linux ~arm-linux ~x86-linux"
 
 IUSE=""
 



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

2018-01-11 Thread Mike Frysinger
commit: f34394f4d76803ee7828f3f7efa5f2e84965caf0
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:52:51 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f34394f4

net-misc/curl: mark 7.57.0 arm64/m68k/s390/sh stable

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

diff --git a/net-misc/curl/curl-7.57.0.ebuild b/net-misc/curl/curl-7.57.0.ebuild
index b41e8b8dd99..e2b69c36295 100644
--- a/net-misc/curl/curl-7.57.0.ebuild
+++ b/net-misc/curl/curl-7.57.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://curl.haxx.se/download/${P}.tar.bz2;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="adns http2 idn ipv6 kerberos ldap metalink rtmp samba ssh ssl 
static-libs test threads"
 IUSE+=" curl_ssl_axtls curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls 
curl_ssl_nss +curl_ssl_openssl curl_ssl_winssl"
 IUSE+=" elibc_Winnt"



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

2018-01-11 Thread Mike Frysinger
commit: b8aadcee174f277f18e4768eb5235a95b5225bf4
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:46:53 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8aadcee

app-admin/sudo: mark 1.8.20_p2 arm64/m68k/s390/sh stable

 app-admin/sudo/sudo-1.8.20_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/sudo/sudo-1.8.20_p2.ebuild 
b/app-admin/sudo/sudo-1.8.20_p2.ebuild
index 621ff50e219..08ea19d2a3b 100644
--- a/app-admin/sudo/sudo-1.8.20_p2.ebuild
+++ b/app-admin/sudo/sudo-1.8.20_p2.ebuild
@@ -23,7 +23,7 @@ 
SRC_URI="http://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz
 LICENSE="ISC BSD"
 SLOT="0"
 if [[ ${PV} != *_beta* ]] && [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~sparc-solaris"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~sparc-solaris"
 fi
 IUSE="gcrypt ldap nls pam offensive openssl selinux skey +sendmail"
 



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

2018-01-11 Thread Mike Frysinger
commit: 10191f8c2c544d355f437d120a6926d3e062c07d
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:40:04 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10191f8c

app-text/tree: mark 1.7.0 m68k/s390/sh stable

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

diff --git a/app-text/tree/tree-1.7.0.ebuild b/app-text/tree/tree-1.7.0.ebuild
index 2eb6dc1b99f..403081c551c 100644
--- a/app-text/tree/tree-1.7.0.ebuild
+++ b/app-text/tree/tree-1.7.0.ebuild
@@ -10,7 +10,7 @@ SRC_URI="ftp://mama.indstate.edu/linux/tree/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="!=sci-biology/meme-4.8.1"



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

2018-01-11 Thread Mike Frysinger
commit: a2903a29b90f5646f7fc43dcf3c6cd1fe7fd061d
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:54:21 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2903a29

net-dns/libidn2: mark 2.0.4 arm64/m68k/s390/sh stable

 net-dns/libidn2/libidn2-2.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/libidn2/libidn2-2.0.4.ebuild 
b/net-dns/libidn2/libidn2-2.0.4.ebuild
index c647d4fc56a..465abcdfd36 100644
--- a/net-dns/libidn2/libidn2-2.0.4.ebuild
+++ b/net-dns/libidn2/libidn2-2.0.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2+ LGPL-3+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="static-libs"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-CPAN-Meta-YAML/

2018-01-11 Thread Mike Frysinger
commit: 366ae4f40d0992ad3ab8fdfe9548694aa1099cd7
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 01:43:18 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:07:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=366ae4f4

virtual/perl-CPAN-Meta-YAML: mark 0.18.0-r2 m68k/s390/sh stable

 virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.18.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.18.0-r2.ebuild 
b/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.18.0-r2.ebuild
index 4e28e37defb..4152d3bf49d 100644
--- a/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.18.0-r2.ebuild
+++ b/virtual/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML-0.18.0-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
|| ( =dev-lang/perl-5.26* =dev-lang/perl-5.24* 
~perl-core/${PN#perl-}-${PV} )



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

2018-01-11 Thread Mike Frysinger
commit: 85a3d1c322269f69d781f55c162fb4beb0b22099
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:46:45 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85a3d1c3

app-crypt/shash: mark 0.2.6-r2 m68k/s390/sh stable

 app-crypt/shash/shash-0.2.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/shash/shash-0.2.6-r2.ebuild 
b/app-crypt/shash/shash-0.2.6-r2.ebuild
index a94cb91d0ad..c8774700c9c 100644
--- a/app-crypt/shash/shash-0.2.6-r2.ebuild
+++ b/app-crypt/shash/shash-0.2.6-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://mcrypt.hellug.gr/pub/mcrypt/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="static"
 
 DEPEND=">=app-crypt/mhash-0.8.18-r1"



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

2018-01-11 Thread Mike Frysinger
commit: 4afefbc65b5ef08c4b5c6a0657e69f921de67d38
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:31:14 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:07:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4afefbc6

sys-apps/keyutils: mark 1.5.9-r4 arm/arm64/ia64/m68k/s390/sh stable

 sys-apps/keyutils/keyutils-1.5.9-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/keyutils/keyutils-1.5.9-r4.ebuild 
b/sys-apps/keyutils/keyutils-1.5.9-r4.ebuild
index c5a160fb145..9a2e98de587 100644
--- a/sys-apps/keyutils/keyutils-1.5.9-r4.ebuild
+++ b/sys-apps/keyutils/keyutils-1.5.9-r4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://people.redhat.com/dhowells/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 m68k ~mips ppc ppc64 s390 sh 
~sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="static static-libs test"
 
 RDEPEND=""



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

2018-01-11 Thread Mike Frysinger
commit: 40d027fcf44e7cd0360dff9dcff37cfc680b46cd
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:57:00 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40d027fc

net-libs/gnutls: mark 3.5.15 arm64/m68k/s390/sh stable

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

diff --git a/net-libs/gnutls/gnutls-3.5.15.ebuild 
b/net-libs/gnutls/gnutls-3.5.15.ebuild
index 3d5cbc760e0..ea87930e307 100644
--- a/net-libs/gnutls/gnutls-3.5.15.ebuild
+++ b/net-libs/gnutls/gnutls-3.5.15.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnupg/gnutls/v$(get_version_component_range 
1-2)/${P}.tar.xz"
 
 LICENSE="GPL-3 LGPL-2.1"
 SLOT="0/30" # libgnutls.so number
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="+cxx dane doc examples guile +idn nls openpgp +openssl pkcs11 seccomp 
sslv2 sslv3 static-libs test test-full +tls-heartbeat tools valgrind zlib"
 
 REQUIRED_USE="



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

2018-01-11 Thread Mike Frysinger
commit: 18669375832aee76c42a6dd3d7a4a27bec5b7ea4
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:53:24 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18669375

dev-vcs/git: mark 2.13.6 arm64/s390/sh stable

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

diff --git a/dev-vcs/git/git-2.13.6.ebuild b/dev-vcs/git/git-2.13.6.ebuild
index 5046a24af69..81e7734629c 100644
--- a/dev-vcs/git/git-2.13.6.ebuild
+++ b/dev-vcs/git/git-2.13.6.ebuild
@@ -38,7 +38,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 ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-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-apps/openrc/

2018-01-11 Thread Mike Frysinger
commit: 99d42d2d9c05c3ed80748fddf960fb61466ebb66
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 04:00:34 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99d42d2d

sys-apps/openrc: mark 0.34.11 m68k/s390/sh stable

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

diff --git a/sys-apps/openrc/openrc-0.34.11.ebuild 
b/sys-apps/openrc/openrc-0.34.11.ebuild
index 91c0a038078..129eefba81e 100644
--- a/sys-apps/openrc/openrc-0.34.11.ebuild
+++ b/sys-apps/openrc/openrc-0.34.11.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



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

2018-01-11 Thread Mike Frysinger
commit: 53e34cc89efa2ca14b312eb9afa8246c95649e30
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:48:40 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53e34cc8

dev-lang/python: mark 3.6.3-r1 arm64/m68k/s390/sh stable

 dev-lang/python/python-3.6.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.6.3-r1.ebuild 
b/dev-lang/python/python-3.6.3-r1.ebuild
index d904618dc9a..d94998bb240 100644
--- a/dev-lang/python/python-3.6.3-r1.ebuild
+++ b/dev-lang/python/python-3.6.3-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://www.python.org/ftp/python/${PV}/${MY_P}.tar.xz
 
 LICENSE="PSF-2"
 SLOT="3.6/3.6m"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="build examples gdbm hardened ipv6 libressl +ncurses +readline sqlite 
+ssl test +threads tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2018-01-11 Thread Mike Frysinger
commit: b504ddb2e1262c3d722c46daf77e1bde42f1eaed
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:35:52 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:07:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b504ddb2

virtual/perl-podlators: mark 4.70.0-r1 m68k/s390/sh stable

 virtual/perl-podlators/perl-podlators-4.70.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-podlators/perl-podlators-4.70.0-r1.ebuild 
b/virtual/perl-podlators/perl-podlators-4.70.0-r1.ebuild
index c27e26d5291..81174d4e433 100644
--- a/virtual/perl-podlators/perl-podlators-4.70.0-r1.ebuild
+++ b/virtual/perl-podlators/perl-podlators-4.70.0-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 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"
 
 RDEPEND="
|| ( =dev-lang/perl-5.24* ~perl-core/${PN#perl-}-${PV} )



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

2018-01-11 Thread Mike Frysinger
commit: 8c64b37bd1690d7b9baf5f7e1b30ef6e9872d8c3
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 04:01:11 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c64b37b

dev-util/intltool: mark 0.51.0-r2 m68k/s390/sh stable

 dev-util/intltool/intltool-0.51.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/intltool/intltool-0.51.0-r2.ebuild 
b/dev-util/intltool/intltool-0.51.0-r2.ebuild
index fac4bd79110..2bde1170cf1 100644
--- a/dev-util/intltool/intltool-0.51.0-r2.ebuild
+++ b/dev-util/intltool/intltool-0.51.0-r2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND="



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

2018-01-11 Thread Mike Frysinger
commit: f4f093efba15d4ed5cbec1a717ab3c8d91cd
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:59:59 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4f093ef

sys-libs/libcap-ng: mark 0.7.8 arm64/m68k/s390/sh stable

 sys-libs/libcap-ng/libcap-ng-0.7.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libcap-ng/libcap-ng-0.7.8.ebuild 
b/sys-libs/libcap-ng/libcap-ng-0.7.8.ebuild
index 4d8132b1ac0..6b6283bc78f 100644
--- a/sys-libs/libcap-ng/libcap-ng-0.7.8.ebuild
+++ b/sys-libs/libcap-ng/libcap-ng-0.7.8.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://people.redhat.com/sgrubb/${PN}/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~arm-linux ~x86-linux"
 IUSE="python static-libs"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2018-01-11 Thread Mike Frysinger
commit: 674ec56f2f25ed0b19feea12683d9b273ceccb1b
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 04:01:54 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=674ec56f

sys-apps/util-linux: mark 2.30.2 arm64/m68k/s390/sh stable

 sys-apps/util-linux/util-linux-2.30.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/util-linux/util-linux-2.30.2.ebuild 
b/sys-apps/util-linux/util-linux-2.30.2.ebuild
index d5d2a35f984..941bf4695f5 100644
--- a/sys-apps/util-linux/util-linux-2.30.2.ebuild
+++ b/sys-apps/util-linux/util-linux-2.30.2.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} ==  ]] ; then

EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git"
 else
[[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~amd64-linux ~arm-linux ~x86-linux"

SRC_URI="mirror://kernel/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz"
 fi
 



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

2018-01-11 Thread Mike Frysinger
commit: 936f33d805d1c453f6bc8951a9bb27f6bb96bef5
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:28:40 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:07:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=936f33d8

dev-libs/mpc: mark 1.0.3 arm/arm64/m68k/s390/sh stable

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

diff --git a/dev-libs/mpc/mpc-1.0.3.ebuild b/dev-libs/mpc/mpc-1.0.3.ebuild
index 198111c0b08..415e8304f4e 100644
--- a/dev-libs/mpc/mpc-1.0.3.ebuild
+++ b/dev-libs/mpc/mpc-1.0.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.multiprecision.org/mpc/download/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 DEPEND=">=dev-libs/gmp-4.3.2[${MULTILIB_USEDEP},static-libs?]



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

2018-01-11 Thread Mike Frysinger
commit: b05b984dbc360daaa20e24003e17d473e678305b
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Jan 12 03:43:14 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Fri Jan 12 04:08:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b05b984d

net-libs/libssh2: mark 1.7.0 arm64/s390/sh stable

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

diff --git a/net-libs/libssh2/libssh2-1.7.0.ebuild 
b/net-libs/libssh2/libssh2-1.7.0.ebuild
index 2bc942b4d5f..65ef8f62b81 100644
--- a/net-libs/libssh2/libssh2-1.7.0.ebuild
+++ b/net-libs/libssh2/libssh2-1.7.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.${PN}.org/download/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-solaris"
 IUSE="gcrypt libressl static-libs test zlib"
 
 DEPEND="



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

2018-01-11 Thread Anthony G. Basile
commit: 071d5f069d47c6be066696120b2bf0b4a4a96aaa
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Jan 12 02:43:17 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jan 12 02:43:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=071d5f06

profiles: video_cards{i915,intel} work on musl

 profiles/default/linux/musl/use.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/default/linux/musl/use.mask 
b/profiles/default/linux/musl/use.mask
index 4e935628268..d8d5f75fd37 100644
--- a/profiles/default/linux/musl/use.mask
+++ b/profiles/default/linux/musl/use.mask
@@ -4,3 +4,7 @@
 -elibc_musl
 elibc_uclibc
 elibc_glibc
+
+# video cards that work on musl
+-video_cards_i915
+-video_cards_intel



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

2018-01-11 Thread Matt Thode
commit: 541bcacad770afb2f6296cf766294e17cd5dbec4
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan 12 01:56:03 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jan 12 01:56:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=541bcaca

Revert "dev-python/aiosmtpd: Clean old up"

This reverts commit 6a096a85b582a3c4de9bf24624d4897d71a3c822.

 dev-python/aiosmtpd/Manifest|  1 +
 dev-python/aiosmtpd/aiosmtpd-1.0.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-python/aiosmtpd/Manifest b/dev-python/aiosmtpd/Manifest
index 35bdebd8ba9..725fae4abd8 100644
--- a/dev-python/aiosmtpd/Manifest
+++ b/dev-python/aiosmtpd/Manifest
@@ -1 +1,2 @@
+DIST aiosmtpd-1.0.tar.gz 49930 BLAKE2B 
7c8f845746b51e2b77f2ff00de2c88c3a090a4cd65e55fa69fc371f8ac5a2966c31e3e7184188a1b4af1f5c3d22b7af5655c5673d199b9920865ddf56c119a06
 SHA512 
874b3505dd35cbb176cba058a8816329eb4177db705b10c3883f88d76e3f587efc35543812fd36a03f453c8c1ee359bb3f0239d8a246908c5c17b59be134d933
 DIST aiosmtpd-1.1.tar.gz 50722 BLAKE2B 
c7d21eea7816a758fb69061c0f1c4c5dbb7bd28a6daddc436211e4d8066380847255af537904ad5c09badb813269d0bc4b54dbb527b7b0c717d498c9475c8c2d
 SHA512 
b61df616f2e14d1da67ac05149543bf48b14a31d44437d9a1dd11b166b98b56220c00e7c55e18d4fd99872d724e23f272922dd3548150632a189d9cb9b652883

diff --git a/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild 
b/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild
new file mode 100644
index 000..8595ce17c0d
--- /dev/null
+++ b/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_4 python3_5 python3_6 )
+inherit distutils-r1
+
+DESCRIPTION="asyncio based SMTP server"
+HOMEPAGE="http://aiosmtpd.readthedocs.io/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/atpublic[${PYTHON_USEDEP}]"
+
+src_prepare() {
+   rm -r examples
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] proj/forums: New branch: master

2018-01-11 Thread John Graham
commit: 
Commit: John Graham  gentoo  org>
CommitDate: Fri Jan 12 01:19:13 2018 +

New branch: master




[gentoo-commits] repo/gentoo:master commit in: x11-terms/terminator/

2018-01-11 Thread Zac Medico
commit: ae8578706ed2b690cefe273bc08f3a4bcc369b21
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Jan 12 00:12:16 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jan 12 00:12:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae857870

x11-terms/terminator: add chutzpah as maintainer

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 x11-terms/terminator/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/x11-terms/terminator/metadata.xml 
b/x11-terms/terminator/metadata.xml
index c129c91cdf5..44b22d322ad 100644
--- a/x11-terms/terminator/metadata.xml
+++ b/x11-terms/terminator/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   chutz...@gentoo.org
+   Patrick McLean
+   

Much of the behaviour of Terminator is based on GNOME Terminal, 
and
we are adding more features from that as time goes by, but we 
also



[gentoo-commits] repo/gentoo:master commit in: dev-python/pysaml2/, dev-python/pysaml2/files/

2018-01-11 Thread Matt Thode
commit: 9aa9a0f4330a09c7fba77e116058d5488f083de8
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan 12 00:06:23 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jan 12 00:07:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aa9a0f4

dev-python/pysaml2: really fix bug 644016

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 .../files/pysaml-4.0.2_CVE-2017-1000433.patch  | 29 ++
 ...ml2-4.0.2-r2.ebuild => pysaml2-4.0.2-r3.ebuild} |  0
 2 files changed, 24 insertions(+), 5 deletions(-)

diff --git a/dev-python/pysaml2/files/pysaml-4.0.2_CVE-2017-1000433.patch 
b/dev-python/pysaml2/files/pysaml-4.0.2_CVE-2017-1000433.patch
index e745263d236..7abc765c298 100644
--- a/dev-python/pysaml2/files/pysaml-4.0.2_CVE-2017-1000433.patch
+++ b/dev-python/pysaml2/files/pysaml-4.0.2_CVE-2017-1000433.patch
@@ -1,7 +1,18 @@
-diff -Naur pysaml2/src/saml2/authn.py pysaml2.new/src/saml2/authn.py
 1/src/saml2/authn.py 2018-01-11 17:23:27.198775074 -0600
-+++ 2/src/saml2/authn.py 2018-01-11 17:22:57.909567278 -0600
-@@ -147,7 +147,8 @@
+From 6312a41e037954850867f29d329e5007df1424a5 Mon Sep 17 00:00:00 2001
+From: Ioannis Kakavas 
+Date: Tue, 12 Sep 2017 12:22:47 +0300
+Subject: [PATCH] Quick fix for the authentication bypass due to optimizations
+ #451
+
+---
+ src/saml2/authn.py | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/src/saml2/authn.py b/src/saml2/authn.py
+index 1f2d02cf..1e1a220b 100644
+--- a/src/saml2/authn.py
 b/src/saml2/authn.py
+@@ -146,7 +146,8 @@ def __call__(self, cookie=None, policy_url=None, 
logo_url=None,
  return resp
  
  def _verify(self, pwd, user):
@@ -11,4 +22,12 @@ diff -Naur pysaml2/src/saml2/authn.py 
pysaml2.new/src/saml2/authn.py
  
  def verify(self, request, **kwargs):
  """
-
+@@ -176,7 +177,7 @@ def verify(self, request, **kwargs):
+ return_to = create_return_url(self.return_to, _dict["query"][0],
+   **{self.query_param: "true"})
+ resp = Redirect(return_to, headers=[cookie])
+-except (AssertionError, KeyError):
++except (ValueError, KeyError):
+ resp = Unauthorized("Unknown user or wrong password")
+ 
+ return resp

diff --git a/dev-python/pysaml2/pysaml2-4.0.2-r2.ebuild 
b/dev-python/pysaml2/pysaml2-4.0.2-r3.ebuild
similarity index 100%
rename from dev-python/pysaml2/pysaml2-4.0.2-r2.ebuild
rename to dev-python/pysaml2/pysaml2-4.0.2-r3.ebuild



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

2018-01-11 Thread Andreas Sturmlechner
commit: 087ba48a1b12b4ca931ee1e3bbb6e1fc332dca33
Author: Hector Martin  marcan  st>
AuthorDate: Thu Jan 11 04:11:52 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 11 23:57:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=087ba48a

media-libs/libffado: bump to 2.4.0 and switch to qt5

Bug: https://bugs.gentoo.org/642530
Closes: https://github.com/gentoo/gentoo/pull/6826

 media-libs/libffado/Manifest   |   1 +
 .../libffado-2.4.0-additional-py3-fixes.patch  |  96 ++
 .../files/libffado-2.4.0-crossbar-router-fix.patch |  11 ++
 .../files/libffado-2.4.0-py3-pyqt5-fixes.patch | 197 +
 .../libffado-2.4.0-pyqt5-dbus-detection.patch  |  30 
 .../files/libffado-2.4.0-rme-bigendian-fix.patch   |  50 ++
 media-libs/libffado/libffado-2.4.0.ebuild  | 119 +
 7 files changed, 504 insertions(+)

diff --git a/media-libs/libffado/Manifest b/media-libs/libffado/Manifest
index db5966e713e..16c3238487b 100644
--- a/media-libs/libffado/Manifest
+++ b/media-libs/libffado/Manifest
@@ -1 +1,2 @@
 DIST libffado-2.3.0.tgz 1239253 BLAKE2B 
cb470a590df8018975f40f56cde50468a2b51c9504b719b70ce5941406829f25452a96b8ac897aba1ed6c8d4cafa712e7872430e7bb2ebec0822f7b4720084c5
 SHA512 
24a8853281a17b04623e41dc590f7a9b8f4aebe4dfaece2e3b8fe28457a6ff011586e817712b4913d1fca660b701dddc70576c12d8c56470cf991eb17b4297c4
+DIST libffado-2.4.0.tgz 1228916 BLAKE2B 
21a3a2a96377f698e7c1a43912c761624aabe5401f0e147fee4fa203c4534166494de8867320b4b6bc3ff200b65c77bb62ab2c4e98948ed0ee74e6171d162deb
 SHA512 
7df37584925cc908cc284dba344609928d39e006f71ae4ede62e4531b2628271ebd0db00407418e943fb569b5b8b919a76c90aaeed03005cefbd3c1c16ee1627

diff --git 
a/media-libs/libffado/files/libffado-2.4.0-additional-py3-fixes.patch 
b/media-libs/libffado/files/libffado-2.4.0-additional-py3-fixes.patch
new file mode 100644
index 000..fd5d2f44bab
--- /dev/null
+++ b/media-libs/libffado/files/libffado-2.4.0-additional-py3-fixes.patch
@@ -0,0 +1,96 @@
+--- a/support/mixer-qt4/ffado/panelmanager.py  2018-01-11 12:27:20.518923209 
+0900
 a/support/mixer-qt4/ffado/panelmanager.py  2018-01-11 12:31:03.956299962 
+0900
+@@ -38,6 +38,7 @@
+ 
+ import sys
+ import time
++import importlib
+ 
+ import logging
+ log = logging.getLogger('panelmanager')
+@@ -302,20 +303,15 @@
+ #
+ # Specific (or dummy) mixer widgets get loaded in the following
+ #
++found = False
+ if 'mixer' in dev and dev['mixer'] != None:
+ mixerapp = dev['mixer']
+-global mixerwidget
+-exec( """
+-try:
+-import ffado.mixer.%s
+-globals()["mixerwidget"] = ffado.mixer.%s.%s( w )
+-found = True
+-except ImportError:
+-log.debug("bypassdbus set, %s module not available: ignored")
+-found = False
+-""" % (mixerapp.lower(), mixerapp.lower(), mixerapp, mixerapp.lower()) )
+-else:
+-found = False
++try:
++mixer_module = importlib.import_module("ffado.mixer.%s" % 
mixerapp.lower())
++mixerwidget = getattr(mixer_module, mixerapp)(w)
++found = True
++except ImportError:
++log.debug("bypassdbus set, %s module not available: ignored" 
% mixerapp.lower())
+ 
+ if not found:
+ mixerwidget = Dummy( w )
+--- a/support/mixer-qt4/ffado/widgets/crossbarrouter.py2018-01-11 
12:34:10.200777889 +0900
 b/support/mixer-qt4/ffado/widgets/crossbarrouter.py2018-01-11 
12:45:13.278911705 +0900
+@@ -194,7 +194,7 @@
+ #log.debug("Got %i peaks" % len(peakvalues))
+ for peak in peakvalues:
+ #log.debug("peak = [%s,%s]" % (str(peak[0]),str(peak[1])))
+-if peak[0] >= 0:
++if peak[1] >= 0:
+ self.switchers[peak[0]].peakValue(peak[1])
+ 
+ def updateMixerRouting(self):
+--- a/support/mixer-qt4/ffado/widgets/matrixmixer.py   2018-01-11 
12:54:27.545361864 +0900
 b/support/mixer-qt4/ffado/widgets/matrixmixer.py   2018-01-11 
12:56:36.899124318 +0900
+@@ -512,7 +512,7 @@
+ self.rowHeaders[j].lbl.setText(row_name)
+ 
+ def updateValues(self, n):
+-nbitems = len(n)/3
++nbitems = len(n) // 3
+ for i in range(nbitems):
+ n_0 = n[3*i]
+ n_1 = n[3*i+1]   
+@@ -951,7 +951,7 @@
+ return self.interface.setValue(In, Out, val)
+ 
+ def updateValues(self, n):
+-nbitems = len(n)/3
++nbitems = len(n) // 3
+ for j in range(nbitems):
+ n_0 = n[3*j]
+ n_1 = n[3*j+1]   
+@@ -1406,7 +1406,7 @@
+ def matrixControlChanged(self, n):
+ # Update value needed for "per Out" view
+ #log.debug("Update per Output( %s )" % str(n))
+-nbitems = len(n)/3
++nbitems = len(n) // 3
+ if (self.rule == 

[gentoo-commits] repo/gentoo:master commit in: x11-terms/terminator/, x11-terms/terminator/files/, profiles/

2018-01-11 Thread Sebastian Pipping
commit: c150d6ab20f93daf0400a75e2ff9ec035ad6a740
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Thu Jan 11 23:42:44 2018 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Thu Jan 11 23:46:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c150d6ab

x11-terms/terminator: 1.91

Bump to prevent removal in entirety

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

 profiles/package.mask  |  3 +-
 x11-terms/terminator/Manifest  |  1 +
 .../terminator/files/terminator-1.91-desktop.patch | 12 
 x11-terms/terminator/terminator-1.91.ebuild| 67 ++
 4 files changed, 82 insertions(+), 1 deletion(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 008307e8e8e..50c5e98d58f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -294,9 +294,10 @@ dev-vcs/monotone
 app-misc/tasque
 
 # Pacho Ramos  (28 Dec 2017)
+# Sebastian Pipping  (12 Jan 2018)
 # Needs a major version bump and relies on lots of dead libs (#624160).
 # Removal in a month.
-x11-terms/terminator
+ (28 Dec 2017)
 # Requires dead gnome2 python bindings (#629180) and old gstreamer, also all

diff --git a/x11-terms/terminator/Manifest b/x11-terms/terminator/Manifest
index 649a265bcb6..5fb65d1d112 100644
--- a/x11-terms/terminator/Manifest
+++ b/x11-terms/terminator/Manifest
@@ -1,3 +1,4 @@
 DIST terminator-0.97.tar.gz 5025337 BLAKE2B 
2d220166d76d0d5380f3541f2a0817cf22d6b04272af6970d76bd2ff1cd0b120b9f2766ee79d099a9ccbdf4c78dca917a87907b02ee03a21b16e3cc2f85a3806
 SHA512 
ac1dfb5c014323ddd3b3347645ac26083d96fe8e895d31c5992d185863d40b5f1a67c5db1315b48f483d9511faeb1adb16133a4aef1e1f178656f3437d4a7470
 DIST terminator-0.98.tar.gz 6007243 BLAKE2B 
852182a52470646dc11a44b6d2ba4e3002bcdaef3482117ff2d5da6c5b6f96d00f0bb3e5e051c46f98a8e5f59d81aab9ccef0942f45da355ca4d0e4418c3eb43
 SHA512 
c40ac1929bb446239f769d33f37a6d49ee79ea10755dda4bbbd228763f13661f0ef7efd950a592462150237e516077311318e2a19c9f08adac76a418cf633573
 DIST terminator-1.0.tar.gz 881675 BLAKE2B 
89c89f24c7950c7a7589a051d1deaf1198c519d31a4c887c0205df6ce30f66fd557acfa7c5d16a70c0a8e4e388efcb4f4125c9f7315aeb81fd4e98bac9b4d1e7
 SHA512 
5dbd7463dd8eca2f3554d7d51ae4b8745279485f39b3160feff93c8a02e5e753fff24ecbeaed756320e8ef3e58f14f2c367efa41180224176cff49eaed04d590
+DIST terminator-1.91.tar.gz 910536 BLAKE2B 
887eef489dc3eb73f7ae8f6284104ee5e6a23b33bc8486b203f9b53c7de5a11a43fdc6a344b02f269c0d4ce71cfc82f0c8285440900870870a43cd10d99326b9
 SHA512 
6feee96cda08f913601d3b01e51632bed87712ddb5ce577df1daa8a5fe4e8dc39075d5e21f87b865d1f007c7e1070ee2c0c814540c9c7786f0f24fbee762a03d

diff --git a/x11-terms/terminator/files/terminator-1.91-desktop.patch 
b/x11-terms/terminator/files/terminator-1.91-desktop.patch
new file mode 100644
index 000..4cbbfa4626d
--- /dev/null
+++ b/x11-terms/terminator/files/terminator-1.91-desktop.patch
@@ -0,0 +1,12 @@
+--- a/data/terminator.desktop.in
 b/data/terminator.desktop.in
+@@ -9,8 +9,8 @@
+ StartupNotify=true
+ X-Ubuntu-Gettext-Domain=terminator
+ X-Ayatana-Desktop-Shortcuts=NewWindow;
+ Keywords=terminal;shell;prompt;command;commandline;
+-[NewWindow Shortcut Group]
++[X-NewWindow Shortcut Group]
+ Name=Open a New Window
+ Exec=terminator
+ TargetEnvironment=Unity

diff --git a/x11-terms/terminator/terminator-1.91.ebuild 
b/x11-terms/terminator/terminator-1.91.ebuild
new file mode 100644
index 000..727c4abd75a
--- /dev/null
+++ b/x11-terms/terminator/terminator-1.91.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+inherit gnome2 distutils-r1 virtualx
+
+DESCRIPTION="Multiple GNOME terminals in one window"
+HOMEPAGE="https://launchpad.net/terminator/;
+SRC_URI="https://launchpad.net/${PN}/gtk3/${PV}/+download/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="dbus +libnotify"
+
+RDEPEND="
+   >=x11-libs/gtk+-3.16:3
+   >=dev-libs/glib-2.32:2
+   dev-libs/keybinder:3[introspection]
+   dev-python/psutil
+   x11-libs/vte:2.91[introspection]
+   dbus? ( sys-apps/dbus )
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   libnotify? (
+   dev-python/notify-python[${PYTHON_USEDEP}]
+   x11-libs/libnotify[introspection]
+   )
+"
+DEPEND="
+   dev-util/intltool
+"
+
+python_prepare_all() {
+   local PATCHES=(
+   "${FILESDIR}"/0.90-without-icon-cache.patch
+   "${FILESDIR}"/${P}-desktop.patch
+   )
+
+   local i p
+   if [[ -n "${LINGUAS+x}" ]] ; then
+   pushd "${S}"/po > /dev/null
+   strip-linguas -i .
+   for i in *.po; do
+   if ! has ${i%.po} ${LINGUAS} ; then
+   rm ${i} || 

[gentoo-commits] repo/gentoo:master commit in: dev-python/pysaml2/files/, dev-python/pysaml2/

2018-01-11 Thread Matt Thode
commit: 8c31196d00e344da82cf4facf4f6f5d2826c692a
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Jan 11 23:29:34 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jan 11 23:29:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c31196d

dev-python/pysaml2: fix bug 644016 CVE-2017-1000433

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 .../files/pysaml-4.0.2_CVE-2017-1000433.patch  | 14 
 dev-python/pysaml2/pysaml2-4.0.2-r2.ebuild | 39 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-python/pysaml2/files/pysaml-4.0.2_CVE-2017-1000433.patch 
b/dev-python/pysaml2/files/pysaml-4.0.2_CVE-2017-1000433.patch
new file mode 100644
index 000..e745263d236
--- /dev/null
+++ b/dev-python/pysaml2/files/pysaml-4.0.2_CVE-2017-1000433.patch
@@ -0,0 +1,14 @@
+diff -Naur pysaml2/src/saml2/authn.py pysaml2.new/src/saml2/authn.py
+--- 1/src/saml2/authn.py 2018-01-11 17:23:27.198775074 -0600
 2/src/saml2/authn.py 2018-01-11 17:22:57.909567278 -0600
+@@ -147,7 +147,8 @@
+ return resp
+ 
+ def _verify(self, pwd, user):
+-assert is_equal(pwd, self.passwd[user])
++if not is_equal(pwd, self.passwd[user]):
++raise ValueError("Wrong password")
+ 
+ def verify(self, request, **kwargs):
+ """
+

diff --git a/dev-python/pysaml2/pysaml2-4.0.2-r2.ebuild 
b/dev-python/pysaml2/pysaml2-4.0.2-r2.ebuild
new file mode 100644
index 000..34cc46c5c0d
--- /dev/null
+++ b/dev-python/pysaml2/pysaml2-4.0.2-r2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of SAML Version 2 to be used in a WSGI 
environment"
+HOMEPAGE="https://github.com/rohe/pysaml2;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+PATCHES=(
+   "${FILESDIR}/xxe-4.0.2.patch"
+   "${FILESDIR}/pysaml-4.0.2_CVE-2017-1000433.patch"
+)
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+RDEPEND="
+   dev-python/decorator[${PYTHON_USEDEP}]
+   >=dev-python/requests-1.0.0[${PYTHON_USEDEP}]
+   dev-python/future[${PYTHON_USEDEP}]
+   dev-python/paste[${PYTHON_USEDEP}]
+   dev-python/zope-interface[${PYTHON_USEDEP}]
+   dev-python/repoze-who[${PYTHON_USEDEP}]
+   >=dev-python/pycrypto-2.5[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+"



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

2018-01-11 Thread Mike Frysinger
commit: 3cf490bf1147f06cce2002f7cd87384744c89d6f
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jan 11 23:24:07 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 11 23:26:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cf490bf

app-admin/metalog: mark 3-r2 arm64/m68k/s390/sh stable

 app-admin/metalog/metalog-3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/metalog/metalog-3-r2.ebuild 
b/app-admin/metalog/metalog-3-r2.ebuild
index 4988c910ee2..657afdf1224 100644
--- a/app-admin/metalog/metalog-3-r2.ebuild
+++ b/app-admin/metalog/metalog-3-r2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="unicode"
 
 RDEPEND=">=dev-libs/libpcre-3.4"



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

2018-01-11 Thread Patrice Clement
commit: 1bf78530c6e388c4d0e6d330ad9f750b8657ba2a
Author: Moritz Schlarb  metalabs  de>
AuthorDate: Mon Jan  8 14:22:10 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jan 11 22:51:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf78530

net-libs/ccnet: version bump to 6.1.4.

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

 net-libs/ccnet/Manifest   |  1 +
 net-libs/ccnet/ccnet-6.1.4.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/net-libs/ccnet/Manifest b/net-libs/ccnet/Manifest
index 9aa6d1ff23b..e2eee348d1d 100644
--- a/net-libs/ccnet/Manifest
+++ b/net-libs/ccnet/Manifest
@@ -1,3 +1,4 @@
 DIST ccnet-6.0.7.tar.gz 179356 BLAKE2B 
cc7a3fb70013e575845c8fd638847f1fd9670b0ea1997d208fd89f917f1c4c60ed86064c31db118bf5969dda27bc055d5e3abf0bb1ad63bc00ad49ba5819dda6
 SHA512 
66df998bb544ad614479d853820e3ee3119c2b08087d82a2a0633202c860447a7ac79f3639e587d531c2443def3cd58bf9ccdb2fed350c8bd7005737fb3d85fd
 DIST ccnet-6.1.0.tar.gz 179362 BLAKE2B 
a7c10433a3af69456f15df75c02d92e203628f7f4d64a9f57849cc80e8d0913fccc7767b58e161551a2105cbffd79074144237fbacba5663972eadea661131d1
 SHA512 
0053d342cf9256a37ca2ebf774794c791cb08caa7d608035c1b307a271e11719da1d4c272870ab51ad1cd8d8c0a84d22959b513865ddf98b4691cba35bc93018
 DIST ccnet-6.1.3.tar.gz 179321 BLAKE2B 
23f6877ee9e3d80d4413e7b059688d83f99e21f3b665abaf41389366cf99fcb841e730535808e6874f4c1ba09818f637bbf222858ebb1ec3473cd40b6b03d0b0
 SHA512 
1700237749dd250798b6bd3ea2d74bd09f72e3f5502520d413671c247eeeae05f92947a4a4429035f8ab6414c9c67353939025de046b00941956b6854f4cfcc3
+DIST ccnet-6.1.4.tar.gz 179357 BLAKE2B 
5f0a83ef15f43394655c68d2b2a13ca91e0df93fb661f598814d8f0c4a31eddb26d0b8a0f0679d9c3babf7200f8ce1bb75818e0a6d445f41527358b4c6102d2c
 SHA512 
99ec3f41ad1e6c06455ca1622b6e5219d76ce85014523db6bfd15cbbd9b54fd4027f87906fc47bd7bafcbabc9febdbccb6839c5b8fa10133ddb461dca4f46ce0

diff --git a/net-libs/ccnet/ccnet-6.1.4.ebuild 
b/net-libs/ccnet/ccnet-6.1.4.ebuild
new file mode 100644
index 000..111ba410838
--- /dev/null
+++ b/net-libs/ccnet/ccnet-6.1.4.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-single-r1 vala
+
+DESCRIPTION="Ccnet is a framework for writing networked applications in C"
+HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/;
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   net-libs/libsearpc[${PYTHON_USEDEP}]
+   >=dev-libs/glib-2.16.0:2
+   >=dev-libs/libevent-2.0
+   dev-libs/openssl:0=
+   dev-db/sqlite:3"
+DEPEND="${RDEPEND}
+   $(vala_depend)"
+
+src_prepare() {
+   default
+   sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
+   sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
+   eautoreconf
+   vala_src_prepare
+}
+
+src_install() {
+   default
+   # Remove unnecessary .la files, as recommended by ltprune.eclass
+   find "${ED}" -name '*.la' -delete || die
+}



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

2018-01-11 Thread Patrice Clement
commit: 1e813c21117ea89df20699715f989c54b72a41c4
Author: Moritz Schlarb  metalabs  de>
AuthorDate: Mon Jan  8 14:22:54 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jan 11 22:51:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e813c21

net-misc/seafile-client: version bump to 6.1.4.

 net-misc/seafile-client/Manifest   |  1 +
 .../seafile-client/seafile-client-6.1.4.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/net-misc/seafile-client/Manifest b/net-misc/seafile-client/Manifest
index 543b1759480..22217eef1c9 100644
--- a/net-misc/seafile-client/Manifest
+++ b/net-misc/seafile-client/Manifest
@@ -1,3 +1,4 @@
 DIST seafile-client-6.0.7.tar.gz 2192384 BLAKE2B 
89bd8821b2b5a10ddb94d48ea43f796622acab24db7982ae7006c32117f4dd4fe63839643c308e3e1dc97c47be813248ae3164caded4c1551fed3f86aa6dd83f
 SHA512 
4baa15d454a9c937c9ae944b2bcc6b549fc41a1558e40578a273497ccb120a9131580f2b5db047ce6d7e0503105bd0fa5312e823ab475241fb07f5ba0021224f
 DIST seafile-client-6.1.0.tar.gz 2246388 BLAKE2B 
f57e89e9ae9364e8712e2f3a464cf2204b72a3ed141a7562a54c5c6f678497053b37ba64ca3de84e114a596a76fd1391ee8f98574627536abf8aee5271c7c154
 SHA512 
c6e3191afcaa833876c24690566be36ccc94e7a333c94f78df9201f23a3eed37397641e237e63b70cdc413ed6dc5683737d2eefa5c2c628b5e207bef1176b0d5
 DIST seafile-client-6.1.3.tar.gz 2358459 BLAKE2B 
75bd2a98de25c135060e5c14ac984a98dc0d6da903b675cc456b1bb52475c5a60a2c2b78be5665aa80a4c05d3fc8f2cf5e016e28ba25feb8e957a1d8d9d93ad1
 SHA512 
be5426ef472ac7e788e164f601c4c2b2ca91e305b15dac7eddf9874af5639141bf845e36c5385c4af1d2f6df4c7af6554497bd107cbccb35f8c904694705497d
+DIST seafile-client-6.1.4.tar.gz 2210086 BLAKE2B 
35b118c28ab8cc011e6ebf6ff7532f7078d4acb7251e7cfadf3e1b4e7d4507b09f5beefca1fdb2ba9daafcb118981af743b80698662cf4ed73b15781c0282c87
 SHA512 
582b630d6da28c06ef8c3841268d3e8cbfd7dbd8fc8f78fb77e20d86f6fb97ee72f5a1cac722cd1cb5874d9ad6e687e4d03097971230f92c90ce6b02da90c243

diff --git a/net-misc/seafile-client/seafile-client-6.1.4.ebuild 
b/net-misc/seafile-client/seafile-client-6.1.4.ebuild
new file mode 100644
index 000..69b7bcb82bb
--- /dev/null
+++ b/net-misc/seafile-client/seafile-client-6.1.4.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-utils
+
+DESCRIPTION="Seafile desktop client"
+HOMEPAGE="https://github.com/haiwen/seafile-client/ http://www.seafile.com/;
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="shibboleth test"
+
+RDEPEND="net-libs/libsearpc
+   =net-libs/ccnet-${PV}
+   =net-misc/seafile-${PV}
+   >=dev-libs/libevent-2.0
+   >=dev-libs/jansson-2.0
+   dev-libs/openssl:0=
+   dev-db/sqlite:3
+
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtdbus:5
+   shibboleth? ( || ( dev-qt/qtwebengine:5[widgets] dev-qt/qtwebkit:5 ) )"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+   test? ( dev-qt/qttest:5 )"
+
+src_prepare() {
+   eapply "${FILESDIR}/${PN}-select-qt5.patch"
+   cmake-utils_src_prepare
+   if use shibboleth ; then
+   if ! has_version "dev-qt/qtwebengine:5[widgets]" ; then
+   sed -i -e 's/IF(WIN32 OR DETECTED_QT_VERSION 
VERSION_LESS 5.6.0)/IF(TRUE)/' CMakeLists.txt || die
+   fi
+   fi
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHIBBOLETH_SUPPORT="$(usex shibboleth)"
+   -DBUILD_TESTING="$(usex test)"
+   )
+   cmake-utils_src_configure
+}



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

2018-01-11 Thread Patrice Clement
commit: 4a25c4ea1a7b89aa1d8d577939fb8002756b95d8
Author: Tomas Mozes  gmail  com>
AuthorDate: Tue Jan  9 05:55:26 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jan 11 22:51:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a25c4ea

app-admin/syslog-ng: drop python3.

Closes: https://bugs.gentoo.org/643948
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/6802

 app-admin/syslog-ng/syslog-ng-3.12.1.ebuild | 4 ++--
 app-admin/syslog-ng/syslog-ng-3.13.2.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-admin/syslog-ng/syslog-ng-3.12.1.ebuild 
b/app-admin/syslog-ng/syslog-ng-3.12.1.ebuild
index b608df78696..4dd8f23a9bf 100644
--- a/app-admin/syslog-ng/syslog-ng-3.12.1.ebuild
+++ b/app-admin/syslog-ng/syslog-ng-3.12.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_COMPAT=( python2_7 )
 
 inherit autotools python-single-r1 eutils multilib systemd versionator
 

diff --git a/app-admin/syslog-ng/syslog-ng-3.13.2.ebuild 
b/app-admin/syslog-ng/syslog-ng-3.13.2.ebuild
index ddb99e5c2c8..fc965332d85 100644
--- a/app-admin/syslog-ng/syslog-ng-3.13.2.ebuild
+++ b/app-admin/syslog-ng/syslog-ng-3.13.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_COMPAT=( python2_7 )
 
 inherit autotools python-single-r1 eutils multilib systemd versionator
 



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

2018-01-11 Thread Patrice Clement
commit: bce1dd7089958b1ea0fae5dd1296db2d3274dcee
Author: Tomas Mozes  gmail  com>
AuthorDate: Tue Jan  9 06:01:21 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jan 11 22:51:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce1dd70

app-admin/syslog-ng: add myself as maintainer.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-admin/syslog-ng/metadata.xml | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/app-admin/syslog-ng/metadata.xml b/app-admin/syslog-ng/metadata.xml
index 90774e400b0..42f30628ff4 100644
--- a/app-admin/syslog-ng/metadata.xml
+++ b/app-admin/syslog-ng/metadata.xml
@@ -1,7 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   hydrapo...@gmail.com
+   Tomáš Mózes
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

Enable support for AMQP destinations
Enable support for HTTP destinations



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

2018-01-11 Thread Patrice Clement
commit: d015b79433436a3f0582f9c040aed68ee2325715
Author: Moritz Schlarb  metalabs  de>
AuthorDate: Mon Jan  8 14:22:32 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jan 11 22:51:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d015b794

net-misc/seafile: version bump to 6.1.4.

 net-misc/seafile/Manifest |  1 +
 net-misc/seafile/seafile-6.1.4.ebuild | 43 +++
 2 files changed, 44 insertions(+)

diff --git a/net-misc/seafile/Manifest b/net-misc/seafile/Manifest
index 73b544be615..816e9f64351 100644
--- a/net-misc/seafile/Manifest
+++ b/net-misc/seafile/Manifest
@@ -1,3 +1,4 @@
 DIST seafile-6.0.7.tar.gz 823384 BLAKE2B 
eedb4e4333d01bc6e5a7d18bc0035aa921a00d2c2fadc151dc34971dbb0191c7220607e91422a5b75d957f037d90aa814faffdf3f7cd4dbc5bee5d17a49c1c92
 SHA512 
ec33fbb6b925d4be9b89140d75287115e09f570654946aff994eb50d2ca46e233005b8e0e917682822806d0b5fd70cb9b8a728bb0fd09d124adaadaf3efc849a
 DIST seafile-6.1.0.tar.gz 823289 BLAKE2B 
446606192eac43b5c0b56a322452e0573b1f9f80d66167fa67a99dc236f0e7f2d8d167129a01f70d138208afca467779ffab6f911f7f0bc99a4c730c0181c3ba
 SHA512 
ccf2c66288093da7a00c24d019a1d765c6072485584d045b0d7acec4faee3448f52448113976eaf63950b1feda2c08d8ebda274f3178ca8ca6c643a822dde3fa
 DIST seafile-6.1.3.tar.gz 823078 BLAKE2B 
320f237db2d4c6f1bc7928627c404a1fcdc55a381d62a572e31a086e06abc35cae6ae848d28771e0882911a51477322436c8da58fc7948af201f731ea88b27c7
 SHA512 
c8c046952d5c8910f0ba444cdcaa2659260d328ba6449099777850e7d04f494186c56a2fd00e43fd20372c817d977e1a2fe36be040521ca92742c48d83d0b777
+DIST seafile-6.1.4.tar.gz 824276 BLAKE2B 
c21d01640128d52a9ee0ff05454107d84535942d5f5117de507e1898367fb9cd6adcaa15054a86ca3abbf9f5e69810cf26ac75d9f12b1439811d88aa5b87603f
 SHA512 
5efcb3122877f9091f76b0946ba66104baf626bc1be9bc0eb980e26aa07ffdbe5ee74ea6780043796603d0f2bfe7ea2800718085acdae6f07268275a8f54269f

diff --git a/net-misc/seafile/seafile-6.1.4.ebuild 
b/net-misc/seafile/seafile-6.1.4.ebuild
new file mode 100644
index 000..8c268d75d84
--- /dev/null
+++ b/net-misc/seafile/seafile-6.1.4.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-single-r1 vala
+
+DESCRIPTION="File syncing and sharing software with file encryption and group 
sharing"
+HOMEPAGE="https://github.com/haiwen/seafile/ http://www.seafile.com/;
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   net-libs/libsearpc[${PYTHON_USEDEP}]
+   =net-libs/ccnet-${PV}[${PYTHON_USEDEP}]
+   >=dev-libs/glib-2.16.0:2
+   >=dev-libs/libevent-2.0
+   >=dev-libs/jansson-2.2.1
+   >=sys-libs/zlib-1.2.0
+   >=net-misc/curl-7.17
+   dev-libs/openssl:0=
+   dev-db/sqlite:3"
+DEPEND="${RDEPEND}
+   $(vala_depend)"
+
+src_prepare() {
+   default
+   sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
+   eautoreconf
+   vala_src_prepare
+}
+
+src_install() {
+   default
+   # Remove unnecessary .la files, as recommended by ltprune.eclass
+   find "${ED}" -name '*.la' -delete || die
+   python_fix_shebang "${ED}"usr/bin
+}



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

2018-01-11 Thread Mike Frysinger
commit: 9f0551388658e87b024bb090df0b14e63fba40f0
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jan 11 22:48:27 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 11 22:48:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f055138

sys-devel/automake: mark 1.15.1-r1 arm64/m68k/s390/sh stable

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

diff --git a/sys-devel/automake/automake-1.15.1-r1.ebuild 
b/sys-devel/automake/automake-1.15.1-r1.ebuild
index 9c72a5654c2..0e92910b4dd 100644
--- a/sys-devel/automake/automake-1.15.1-r1.ebuild
+++ b/sys-devel/automake/automake-1.15.1-r1.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} ==  ]] ; then
 
inherit git-r3
 else
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-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 ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
if [[ ${PV/_beta} == ${PV} ]]; then
MY_P=${P}
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz



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

2018-01-11 Thread Mike Frysinger
commit: 38a86bb5e98febec424ff4378cdf63945bed0fea
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jan 11 22:48:03 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 11 22:48:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38a86bb5

sys-devel/autoconf: mark 2.69-r4 arm64/m68k/s390/sh stable

 sys-devel/autoconf/autoconf-2.69-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autoconf/autoconf-2.69-r4.ebuild 
b/sys-devel/autoconf/autoconf-2.69-r4.ebuild
index aa826be6365..de76549b818 100644
--- a/sys-devel/autoconf/autoconf-2.69-r4.ebuild
+++ b/sys-devel/autoconf/autoconf-2.69-r4.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]] ; then
 else
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
ftp://alpha.gnu.org/pub/gnu/${PN}/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 inherit toolchain-autoconf



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

2018-01-11 Thread Mike Frysinger
commit: 7201e15fb7fb54425691e8808cd784586c5ae895
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jan 11 22:47:24 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 11 22:47:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7201e15f

app-emacs/autoconf-mode: add mips love to 2.69

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

diff --git a/app-emacs/autoconf-mode/autoconf-mode-2.69.ebuild 
b/app-emacs/autoconf-mode/autoconf-mode-2.69.ebuild
index 2d9f4f984a5..ba5dec44511 100644
--- a/app-emacs/autoconf-mode/autoconf-mode-2.69.ebuild
+++ b/app-emacs/autoconf-mode/autoconf-mode-2.69.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/autoconf/autoconf-${PV}.tar.xz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 
 SITEFILE="50${PN}-gentoo.el"
 S="${WORKDIR}/autoconf-${PV}/lib/emacs"



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

2018-01-11 Thread Mike Frysinger
commit: b3770d1862020d5cc1e0a689b97816b5303d1ec9
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jan 11 22:37:25 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 11 22:37:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3770d18

sys-libs/libseccomp: version bump to 2.3.3

 sys-libs/libseccomp/Manifest|  1 +
 sys-libs/libseccomp/libseccomp-2.3.3.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/sys-libs/libseccomp/Manifest b/sys-libs/libseccomp/Manifest
index 4613f66001d..3949345d101 100644
--- a/sys-libs/libseccomp/Manifest
+++ b/sys-libs/libseccomp/Manifest
@@ -1,3 +1,4 @@
 DIST libseccomp-2.3.0.tar.gz 546948 BLAKE2B 
084ad3b0dd9833a5439ab4cfcf3ecf3bfa4f4943a20c249f02229fcfbc60024de18b1593235dd14fa5701d5ab53f29518b5d2fcb39b2b0054b1172238e8a2536
 SHA512 
398643af0920ff446b37a74e48f7a96ad2bec4f514e92fc6f8242b7515dcb8f5d06c2894790b22f62387c2d9b75efd54a4d5944f973239a05f06ec840f2a5a0b
 DIST libseccomp-2.3.1.tar.gz 552299 BLAKE2B 
24460f29dff3bbbef809fb82c2ee58deb1b659ae236d369c554212dbfb8a27497bc44dc27fc76ad0eed6d1f9c50c52f05e52ce7f4996aa6dbbe3c0d960edae17
 SHA512 
246b30e1c513d5e1fa35a47905d99036e276c1e6483a96f3e79ddca536a8c6f641c11bf324ed10c9c8d18fa27d73667c9c72fc7459f827d2883926769ac1cb45
 DIST libseccomp-2.3.2.tar.gz 559238 BLAKE2B 
0040ad977431ae9731dadcae11b0099d3ec788462f89cdf80c77b71405ce02c122c3859836aaa9469ec7112b0bf32cc87c9b102bb3e8b2e669ded54677db64d1
 SHA512 
0864a53ba2be61d0207f7361af94bcda4acff84a1814f915e6ccb19ab24f6ccc978da0eedc5cee047fa655dc1a583e2eeb7ab985ebfc77491c6a2606727b79ec
+DIST libseccomp-2.3.3.tar.gz 564546 BLAKE2B 
b5249379baf07ab2fef8a8659a30c9e87cbf05f99c38a07c1516948d2ede27d505f6670426f46422d2a927d7bfe97a33d8f871899ae9c30a26fbd10fba609df8
 SHA512 
845c7e0e916b5f5ad74da446ceff3250148b745c909185f6d5059e807d1b42fa6b74f356cce2a396bff0d4c7a3120e7cdad98d490a97d549327c7693fe1918be

diff --git a/sys-libs/libseccomp/libseccomp-2.3.3.ebuild 
b/sys-libs/libseccomp/libseccomp-2.3.3.ebuild
new file mode 100644
index 000..e70326756c7
--- /dev/null
+++ b/sys-libs/libseccomp/libseccomp-2.3.3.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+# TODO: Add python support.
+
+EAPI="5"
+
+inherit eutils multilib-minimal
+
+DESCRIPTION="high level interface to Linux seccomp filter"
+HOMEPAGE="https://github.com/seccomp/libseccomp;
+SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~x86"
+IUSE="static-libs"
+
+# We need newer kernel headers; we don't keep strict control of the exact
+# version here, just be safe and pull in the latest stable ones. #551248
+DEPEND=">=sys-kernel/linux-headers-4.3"
+
+src_prepare() {
+   sed -i \
+   -e '/_LDFLAGS/s:-static::' \
+   tools/Makefile.in || die
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE=${S} \
+   econf \
+   $(use_enable static-libs static) \
+   --disable-python
+}
+
+multilib_src_install_all() {
+   find "${ED}" -name libseccomp.la -delete
+   einstalldocs
+}



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

2018-01-11 Thread Sergei Trofimovich
commit: c4106b91eb8ac247548def89af4a43e137c0f183
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 11 22:33:19 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 11 22:33:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4106b91

sys-kernel/linux-firmware: stable 20180103-r1 for ia64, bug #643476

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

 sys-kernel/linux-firmware/linux-firmware-20180103-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/linux-firmware/linux-firmware-20180103-r1.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-20180103-r1.ebuild
index 3a0c0e67d64..a0da2d99cd2 100644
--- a/sys-kernel/linux-firmware/linux-firmware-20180103-r1.ebuild
+++ b/sys-kernel/linux-firmware/linux-firmware-20180103-r1.ebuild
@@ -8,13 +8,13 @@ if [[ ${PV} == * ]]; then
inherit git-r3
SRC_URI=""

EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git;
-   KEYWORDS="amd64 ppc ppc64 x86"
+   KEYWORDS="amd64 ia64 ppc ppc64 x86"
 else
GIT_COMMIT="2eefafb2e9dcbafdf4b83d8c43fcd6b75fd4ac78"

SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${GIT_COMMIT}.tar.gz
 -> ${P}.tar.gz
mirror://gentoo/microcode_amd_fam17h.tar.gz

https://dev.gentoo.org/~whissi/dist/${PN}/microcode_amd_fam17h.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 
~sh ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc x86"
 fi
 
 DESCRIPTION="Linux firmware files"



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

2018-01-11 Thread Mike Frysinger
commit: 74bd0353b24b2ece74f1ca561fbe4c18df5ca0d3
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jan 11 22:32:23 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 11 22:32:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74bd0353

sys-libs/libseccomp: mark 2.3.2 arm64/s390 stable

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

diff --git a/sys-libs/libseccomp/libseccomp-2.3.2.ebuild 
b/sys-libs/libseccomp/libseccomp-2.3.2.ebuild
index 503a145f6af..46e82ccd129 100644
--- a/sys-libs/libseccomp/libseccomp-2.3.2.ebuild
+++ b/sys-libs/libseccomp/libseccomp-2.3.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="-* amd64 arm ~arm64 ~mips ppc ppc64 ~s390 x86"
+KEYWORDS="-* amd64 arm arm64 ~mips ppc ppc64 s390 x86"
 IUSE="static-libs"
 
 # We need newer kernel headers; we don't keep strict control of the exact



[gentoo-commits] repo/gentoo:master commit in: net-dns/avahi/files/, net-dns/avahi/

2018-01-11 Thread Andreas Sturmlechner
commit: f97f8e63b790fb4507a613a6ca5d0c35392fe243
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 11 22:26:56 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 11 22:31:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f97f8e63

net-dns/avahi: Don't call moc directly

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

 net-dns/avahi/avahi-0.6.32-r2.ebuild  |  5 -
 net-dns/avahi/avahi-0.7.ebuild|  5 -
 net-dns/avahi/files/avahi-0.6.32-mocqt4.patch | 12 
 3 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/net-dns/avahi/avahi-0.6.32-r2.ebuild 
b/net-dns/avahi/avahi-0.6.32-r2.ebuild
index 92aba59f400..876f83bcf2d 100644
--- a/net-dns/avahi/avahi-0.6.32-r2.ebuild
+++ b/net-dns/avahi/avahi-0.6.32-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -112,6 +112,9 @@ src_prepare() {
# Update the init scripts for the new openrc, bug #594622
epatch "${FILESDIR}"/${PN}-0.6.32-openrc-0.21.7-fix-init-scripts.patch
 
+   # Don't pick up wrong moc based on qtchooser default, bug #587830
+   epatch "${FILESDIR}"/${PN}-0.6.32-mocqt4.patch
+
# Bug #525832
epatch_user
 

diff --git a/net-dns/avahi/avahi-0.7.ebuild b/net-dns/avahi/avahi-0.7.ebuild
index d77bb4af9a0..bfb9882d472 100644
--- a/net-dns/avahi/avahi-0.7.ebuild
+++ b/net-dns/avahi/avahi-0.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -96,6 +96,9 @@ src_prepare() {
-e 
"s:\\.\\./\\.\\./\\.\\./doc/avahi-docs/html/:../../../doc/${PF}/html/:" \
doxygen_to_devhelp.xsl || die
 
+   # Don't pick up wrong moc based on qtchooser default, bug #587830
+   eapply "${FILESDIR}"/${PN}-0.6.32-mocqt4.patch
+
eapply_user
 
# Prevent .pyc files in DESTDIR

diff --git a/net-dns/avahi/files/avahi-0.6.32-mocqt4.patch 
b/net-dns/avahi/files/avahi-0.6.32-mocqt4.patch
new file mode 100644
index 000..bba25e97163
--- /dev/null
+++ b/net-dns/avahi/files/avahi-0.6.32-mocqt4.patch
@@ -0,0 +1,12 @@
+--- a/configure.ac 2018-01-11 23:00:47.503309612 +0100
 b/configure.ac 2018-01-11 23:10:04.373295395 +0100
+@@ -516,8 +516,7 @@
+ PKG_CHECK_MODULES( QT4, [ QtCore >= 4.0.0 ])
+ AC_SUBST(QT4_CFLAGS)
+ AC_SUBST(QT4_LIBS)
+-  QT4_PREFIX="`$PKG_CONFIG --variable=prefix QtCore`/bin"
+-AC_PATH_PROGS(MOC_QT4, [moc-qt4 moc], no, [$QT4_PREFIX])
++MOC_QT4="`$PKG_CONFIG --variable=moc_location QtCore`"
+ if test "$MOC_QT4" = no; then
+ AC_MSG_ERROR([Could not find QT4 moc])
+ fi



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

2018-01-11 Thread Sergei Trofimovich
commit: 32400685b41390b4d63e86758cc2cf173f8bd976
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 11 22:31:10 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 11 22:31:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32400685

sys-apps/kmod: stable 24 for ppc/ppc64, bug #643986

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

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

diff --git a/sys-apps/kmod/kmod-24.ebuild b/sys-apps/kmod/kmod-24.ebuild
index 77b0a8b5ccd..92bdb2382b3 100644
--- a/sys-apps/kmod/kmod-24.ebuild
+++ b/sys-apps/kmod/kmod-24.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]]; then
inherit autotools git-2
 else
SRC_URI="mirror://kernel/linux/utils/kernel/kmod/${P}.tar.xz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh sparc ~x86"
inherit libtool
 fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-tex/hlatex/

2018-01-11 Thread Andreas Hüttel
commit: 44ec1932b03923f8213eba239561ee2ef7d2fcfc
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Jan 11 22:32:02 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Jan 11 22:32:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44ec1932

dev-tex/hlatex: EAPI bump

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-tex/hlatex/hlatex-1.0.1-r1.ebuild | 115 ++
 1 file changed, 115 insertions(+)

diff --git a/dev-tex/hlatex/hlatex-1.0.1-r1.ebuild 
b/dev-tex/hlatex/hlatex-1.0.1-r1.ebuild
new file mode 100644
index 000..c1cf71c7a38
--- /dev/null
+++ b/dev-tex/hlatex/hlatex-1.0.1-r1.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs latex-package
+
+MY_P="HLaTeX-${PV}"
+DESCRIPTION="HLaTeX is a LaTeX package to use Hangul with LaTeX"
+HOMEPAGE="http://project.ktug.or.kr/hlatex/;
+UHCFONTS="uhc-myoungjo-1.0.tar.gz
+   uhc-gothic-1.0.tar.gz
+   uhc-taza-1.0.tar.gz
+   uhc-graphic-1.0.tar.gz
+   uhc-gungseo-1.0.tar.gz
+   uhc-shinmun-1.0.tar.gz
+   uhc-pilgi-1.0.tar.gz
+   uhc-pen-1.0.tar.gz
+   uhc-bom-1.0.tar.gz
+   uhc-yetgul-1.0.tar.gz
+   uhc-jamo-1.0.tar.gz
+   uhc-vada-1.0.tar.gz
+   uhc-pilgia-1.0.tar.gz
+   uhc-dinaru-1.0.tar.gz"
+
+SRC_URI="ftp://ftp.ktug.or.kr/pub/ktug/hlatex/${MY_P}.tar.gz
+   ftp://ftp.ktug.or.kr/pub/ktug/hlatex/fonts/uhc-fonts-1.0.tar.gz
+   ${UHCFONTS//uhc-/ftp://ftp.ktug.or.kr/pub/ktug/hlatex/fonts/uhc-};
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE=""
+
+S="${WORKDIR}/HLaTeX"
+
+src_unpack() {
+   unpack ${MY_P}.tar.gz
+   unpack uhc-fonts-1.0.tar.gz
+   cd "${S}"/contrib
+   cat >Makefile <<-EOF
+CC=$(tc-getCC)
+all: hmakeindex hbibtex
+hmakeindex: hmakeindex.c
+hbibtex: hbibtex.c
+EOF
+}
+
+src_compile() {
+   cd "${S}"/contrib
+   emake
+}
+
+src_install() {
+   cd "${S}"/latex
+   insinto ${TEXMF}/tex/latex/hlatex
+   doins *
+
+   cd "${S}"/lambda
+   insinto ${TEXMF}/tex/lambda/hlatex
+   doins u8hangul.tex uhc-test.tex uhc*.fd
+
+   insinto ${TEXMF}/omega/otp/hlatex
+   doins hlatex.otp
+
+   insinto ${TEXMF}/omega/ocp/hlatex
+   doins hlatex.ocp
+
+   cd "${S}"/contrib
+   insinto ${TEXMF}/tex/latex/hlatex
+   doins hbname-k.tex khyper.sty showhkeys.sty showhtags.sty
+   doins hangulfn.sty hfn-k.tex
+
+   insinto ${TEXMF}/tex/lambda/hlatex
+   doins hbname-u.tex hfn-u.tex
+
+   insinto ${TEXMF}/bibtex/bst/hlatex
+   doins halpha.bst
+
+   insinto ${TEXMF}/makeindex
+   doins hind.ist hglo.ist
+
+   dobin hmakeindex hbibtex
+
+   cd "${S}"
+   dodoc ChangeLog.ko NEWS* README.en
+
+   cd "${WORKDIR}"/uhc-fonts-1.0
+   insinto ${TEXMF}/fonts/map/hlatex
+   doins uhc-base.map uhc-extra.map
+
+   cd "${ED}"/${TEXMF}/fonts
+   for X in ${UHCFONTS}
+   do
+   unpack ${X}
+   done
+}
+
+pkg_postinst() {
+   updmap-sys --enable Map=uhc-base.map
+   updmap-sys --enable Map=uhc-extra.map
+   texhash
+}
+
+pkg_postrm() {
+   if [ ! -e "${EPREFIX}"${TEXMF}/fonts/map/hlatex/uhc-base.map ] ; then
+   updmap-sys --disable Map=uhc-base.map
+   fi
+
+   if [ ! -e "${EPREFIX}"${TEXMF}/fonts/map/hlatex/uhc-extra.map ] ; then
+   updmap-sys --disable Map=uhc-extra.map
+   fi
+
+   texhash
+}



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

2018-01-11 Thread Sergei Trofimovich
commit: 09d562051c60ecc5c378717a539e09099d399e72
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 11 22:31:22 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 11 22:31:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d56205

media-gfx/xfig: stable 3.2.6a for ppc/ppc64, bug #644204

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

 media-gfx/xfig/xfig-3.2.6a.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/xfig/xfig-3.2.6a.ebuild 
b/media-gfx/xfig/xfig-3.2.6a.ebuild
index 3ae5e4b5530..9f61211e852 100644
--- a/media-gfx/xfig/xfig-3.2.6a.ebuild
+++ b/media-gfx/xfig/xfig-3.2.6a.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/mcj/${PN}-full-${PV}.tar.xz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ppc ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="jpeg nls postscript"
 
 RDEPEND="



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

2018-01-11 Thread Mike Frysinger
commit: cb969442e87840fda81d44c2ed78d246f6aaf5ef
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jan 11 22:26:19 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 11 22:27:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb969442

net-analyzer/netcat: version bump to 110.20180111

 net-analyzer/netcat/Manifest   |  1 +
 net-analyzer/netcat/netcat-110.20180111.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/net-analyzer/netcat/Manifest b/net-analyzer/netcat/Manifest
index d7e93716fe6..89ba3032b44 100644
--- a/net-analyzer/netcat/Manifest
+++ b/net-analyzer/netcat/Manifest
@@ -1,3 +1,4 @@
 DIST nc-v6-2918.patch.gz 8740 BLAKE2B 
56274ee32a77f335c31b5593ae92afdb1758ee02bec2b06eb8e06c2cdf856af26f568be7caf287f248909f9b519f9dc77c78623337024d8c1afc770307187cac
 SHA512 
56326fc7c40ea676173f150842367ea1782e700de682d790bb0f2c0df86e72a30f4c3ea0d937deb9d92f5eed47d2d4cb53edaca7dd23eb394a498b2f424bb2fe
+DIST nc110.20180111.tar.xz 69984 BLAKE2B 
cb345db31d8857fc1c3973eba45c7a45ec0c5721829a19c46f1ec91a792d9d6309930b3bba5df1180989025f7a04ec8c85cf4832ac6f4199d13f15764f000420
 SHA512 
4413849c07c6ec5aae07c6e2baa1ba9a99721fa6ac08cf9e7d15379937a207246eb4f4299dd8c049445a72eac9cfe0a3633a87e4e01e21036db1217ea7a1e330
 DIST nc110.tgz 75267 BLAKE2B 
203b5f54805ddef2c3e9627300dfb6d14f098e88433ca807c8db01f009dec1ccc329925025238dae00b5e82e91c0787ef25536d08310ac127cda1775cfb2afb3
 SHA512 
c9a7f5045f76d9ffef4e83fcc3e82f69ac4eb05e061686db51e9367949bfe0b90226b290a059dc68dcf3bf2040b95b5c78545199674da57a7c73e2f9145cf812
 DIST netcat-110-patches-1.0.tar.bz2 25751 BLAKE2B 
c0be51a057981ad1df932f7317a1c317c8788efa670778a4f5bbf67c9d983754bd20188a15e7ced3d849a25244926afc54129e0a2df07bc34932d15a3efbf302
 SHA512 
b9e7e35aa7e26d30f0115d87aff34fd0cadfad99fdb77cc5aa3ba51bec331f632e180484927c4368172ee9cc6c996b8691bd19bad8806912d8820158a98eab46

diff --git a/net-analyzer/netcat/netcat-110.20180111.ebuild 
b/net-analyzer/netcat/netcat-110.20180111.ebuild
new file mode 100644
index 000..760fe86cdf9
--- /dev/null
+++ b/net-analyzer/netcat/netcat-110.20180111.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+inherit toolchain-funcs flag-o-matic
+
+MY_P="nc${PV}"
+DESCRIPTION="the network swiss army knife"
+HOMEPAGE="http://nc110.sourceforge.net/;
+SRC_URI="mirror://sourceforge/nc110/${MY_P}.tar.xz"
+
+LICENSE="netcat"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc64-solaris ~x64-solaris"
+IUSE="ipv6 static"
+
+S=${WORKDIR}/nc110
+
+src_prepare() {
+   sed -i \
+   -e '/#define HAVE_BIND/s:#define:#undef:' \
+   -e '/#define FD_SETSIZE 16/s:16:1024: #34250' \
+   netcat.c || die
+   [[ ${CHOST} == *-solaris* ]] && \
+   sed -i 's:gethostbyname2 *(\([^)]\+\)):getipnodebyname (\1, 
AI_DEFAULT, NULL):' netcat.c
+}
+
+src_configure() {
+   use ipv6 || sed -i '/#define INET6/d' generic.h
+   append-cppflags -DTELNET -DGAPING_SECURITY_HOLE
+}
+
+src_compile() {
+   local xlibs
+   [[ ${CHOST} == *-solaris* ]] && xlibs+=" -lnsl -lsocket"
+   emake \
+   LD="$(tc-getCC) ${LDFLAGS}" \
+   DFLAGS="${CPPFLAGS}" \
+   XFLAGS="${CFLAGS}" \
+   STATIC=$(usex static '-static' '') \
+   XLIBS="${xlibs}" \
+   nc
+}
+
+src_install() {
+   dobin nc
+   dodoc README* netcat.blurb
+   doman nc.1
+   docinto scripts
+   dodoc scripts/*
+}



[gentoo-commits] repo/gentoo:master commit in: dev-tex/abntex/

2018-01-11 Thread Andreas Hüttel
commit: 09d3ec85098358fdf7e86d0fff3b62045accb18e
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Jan 11 22:25:41 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Jan 11 22:25:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d3ec85

dev-tex/abntex: EAPI bump

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 ...ex-0.9_beta2.ebuild => abntex-0.9_beta2-r1.ebuild} | 19 ++-
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/dev-tex/abntex/abntex-0.9_beta2.ebuild 
b/dev-tex/abntex/abntex-0.9_beta2-r1.ebuild
similarity index 72%
rename from dev-tex/abntex/abntex-0.9_beta2.ebuild
rename to dev-tex/abntex/abntex-0.9_beta2-r1.ebuild
index a2c742a8a63..e198e8baa33 100644
--- a/dev-tex/abntex/abntex-0.9_beta2.ebuild
+++ b/dev-tex/abntex/abntex-0.9_beta2-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=3
+EAPI=6
 
 inherit latex-package
 
@@ -30,30 +30,31 @@ src_prepare() {
# fix permissions
find . -type f -exec chmod 0644 "{}" + || die 'chmod 0644 failed.'
find . -type d -exec chmod 0755 "{}" + || die 'chmod 0755 failed.'
+   default
 }
 
 src_install() {
-   dobin bin/geratss || die 'dobin failed.'
+   dobin bin/geratss
 
if use examples; then
insinto /usr/share/doc/${PF}/examples
-   doins -r texmf/doc/* || die 'could not install examples.'
+   doins -r texmf/doc/*
fi
 
-   rm -rf texmf/doc
+   rm -rf texmf/doc || die
 
insinto /usr/share/texmf-site
-   doins -r texmf/* || die 'could not install texmf.'
+   doins -r texmf/*
 
if use lyx; then
insinto /usr/share/lyx
-   doins -r lyx/* || die 'could not install lyx files.'
+   doins -r lyx/*
fi
 
-   dodoc LEIAME || die 'could not install LEIAME'
+   dodoc LEIAME
 
if use doc; then
insinto /usr/share/doc/${PF}/docs
-   doins -r compiled.docs/* || die "could not install doc"
+   doins -r compiled.docs/*
fi
 }



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

2018-01-11 Thread Andreas Hüttel
commit: a31fdf10b2123589d65169047841dd1efbb42551
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Jan 11 22:10:40 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Jan 11 22:10:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a31fdf10

dev-libs/libunicode: EAPI bump

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-libs/libunicode/libunicode-0.4-r2.ebuild | 28 
 1 file changed, 28 insertions(+)

diff --git a/dev-libs/libunicode/libunicode-0.4-r2.ebuild 
b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
new file mode 100644
index 000..88dcbf104bb
--- /dev/null
+++ b/dev-libs/libunicode/libunicode-0.4-r2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Unicode library"
+HOMEPAGE="https://www.gnome.org/;
+SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.gnome.tar.gz;
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86"
+IUSE=""
+
+src_prepare() {
+   default
+   # The build system is too old, regenerate here to fix crossbuild and
+   # respect LDFLAGS and probably other problems too.
+   sed -i -e "/testsuite/d" configure.in || die
+   eautoreconf
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   dodoc AUTHORS ChangeLog NEWS README THANKS TODO
+}



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

2018-01-11 Thread Andreas Hüttel
commit: 96bf26d768c0f353c450250daff0cd460586ac31
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Jan 11 21:58:36 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Jan 11 21:58:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96bf26d7

app-text/xhtml1: EAPI bump

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-text/xhtml1/xhtml1-20020801-r5.ebuild | 80 +++
 1 file changed, 80 insertions(+)

diff --git a/app-text/xhtml1/xhtml1-20020801-r5.ebuild 
b/app-text/xhtml1/xhtml1-20020801-r5.ebuild
new file mode 100644
index 000..a1093ba390c
--- /dev/null
+++ b/app-text/xhtml1/xhtml1-20020801-r5.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit sgml-catalog eutils
+
+DESCRIPTION="DTDs for the eXtensible HyperText Markup Language 1.0"
+HOMEPAGE="http://www.w3.org/TR/xhtml1/;
+SRC_URI="http://www.w3.org/TR/xhtml1/xhtml1.tgz;
+LICENSE="W3C"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE=""
+
+DEPEND="app-text/sgml-common
+   dev-libs/libxml2"
+RDEPEND=""
+
+xml_catalog_setup() {
+   CATALOG="${EROOT}etc/xml/catalog"
+   XMLTOOL="${EROOT}usr/bin/xmlcatalog"
+   DTDDIR="${EROOT}usr/share/sgml/${PN}"
+
+   [ -x "${XMLTOOL}" ] || return 1
+
+   return 0
+}
+
+src_prepare() {
+   sgml-catalog_cat_include "/etc/sgml/${PN}.cat" \
+   "/usr/share/sgml/${PN}/xhtml.soc"
+
+   epatch "${FILESDIR}"/${PN}-catalog.patch
+}
+
+src_install() {
+   insinto /usr/share/sgml/${PN}
+   doins DTD/xhtml.soc DTD/*.dcl DTD/*.dtd DTD/*.ent
+   insinto /etc/sgml
+   dodoc *.pdf *.ps
+   dohtml *.html *.png *.css
+}
+
+pkg_postinst() {
+   sgml-catalog_pkg_postinst
+   xml_catalog_setup || return
+
+   einfo "Installing xhtml1 in the global XML catalog"
+
+   $XMLTOOL --noout --add 'public' '-//W3C//DTD XHTML 1.0 Strict//EN' \
+   ${DTDDIR}/xhtml1-strict.dtd $CATALOG
+   $XMLTOOL --noout --add 'public' '-//W3C//DTD XHTML 1.0 
Transitional//EN' \
+   ${DTDDIR}/xhtml1-transitional.dtd $CATALOG
+   $XMLTOOL --noout --add 'public' '-//W3C//DTD XHTML 1.0 Frameset//EN' \
+   ${DTDDIR}/xhtml1-frameset.dtd $CATALOG
+   $XMLTOOL --noout --add 'rewriteSystem' 
'http://www.w3.org/TR/xhtml1/DTD' \
+   ${DTDDIR} $CATALOG
+   $XMLTOOL --noout --add 'rewriteURI' 'http://www.w3.org/TR/xhtml1/DTD' \
+   ${DTDDIR} $CATALOG
+}
+
+pkg_postrm() {
+   sgml-catalog_pkg_postrm
+   xml_catalog_setup || return
+
+   if [ -d "$DTDDIR" ]; then
+   einfo "The xhtml1 data directory still exists."
+   einfo "No entries will be removed from the XML catalog."
+   return
+   fi
+
+   einfo "Removing xhtml1 from the global XML catalog"
+
+   $XMLTOOL --noout --del '-//W3C//DTD XHTML 1.0 Strict//EN' $CATALOG
+   $XMLTOOL --noout --del '-//W3C//DTD XHTML 1.0 Transitional//EN' $CATALOG
+   $XMLTOOL --noout --del '-//W3C//DTD XHTML 1.0 Frameset//EN' $CATALOG
+   $XMLTOOL --noout --del 'http://www.w3.org/TR/xhtml1/DTD' $CATALOG
+}



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

2018-01-11 Thread Sergei Trofimovich
commit: 4eda2828c86d57d31b6a06fdacf4e1677c786980
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 11 21:53:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 11 21:55:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eda2828

sys-kernel/linux-headers: stable 4.13 for alpha/arm/ppc/ppc64/arm64, bug #640080

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

 sys-kernel/linux-headers/linux-headers-4.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/linux-headers/linux-headers-4.13.ebuild 
b/sys-kernel/linux-headers/linux-headers-4.13.ebuild
index 47a5d616564..11e2bf649ba 100644
--- a/sys-kernel/linux-headers/linux-headers-4.13.ebuild
+++ b/sys-kernel/linux-headers/linux-headers-4.13.ebuild
@@ -12,7 +12,7 @@ PATCH_VER="1"
 SRC_URI="mirror://gentoo/gentoo-headers-base-${PV}.tar.xz
${PATCH_VER:+mirror://gentoo/gentoo-headers-${PV}-${PATCH_VER}.tar.xz}"
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
 
 DEPEND="app-arch/xz-utils
dev-lang/perl"



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

2018-01-11 Thread Sergei Trofimovich
commit: a2180516150cedbac5876d6c0d7ec00732b7f032
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 11 21:39:37 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 11 21:55:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2180516

x11-libs/wxGTK: stable 3.0.3 for hppa, bug #643956

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

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

diff --git a/x11-libs/wxGTK/wxGTK-3.0.3.ebuild 
b/x11-libs/wxGTK/wxGTK-3.0.3.ebuild
index 987bcd12355..135db8994cc 100644
--- a/x11-libs/wxGTK/wxGTK-3.0.3.ebuild
+++ b/x11-libs/wxGTK/wxGTK-3.0.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/wxWidgets/wxWidgets/releases/download/v${PV}/wxWidge
https://dev.gentoo.org/~leio/distfiles/wxGTK-3.0.3_p20180104.tar.xz
doc? ( 
https://github.com/wxWidgets/wxWidgets/releases/download/v${PV}/wxWidgets-${PV}-docs-html.tar.bz2
 )"
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="+X aqua doc debug gstreamer libnotify opengl sdl tiff"
 
 SLOT="3.0"



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

2018-01-11 Thread Andreas Sturmlechner
commit: 90ec095ddc2b7eeb6a45ad67082cf895ff7b852c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 11 21:52:16 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 11 21:54:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90ec095d

media-video/simplescreenrecorder: Fix Qt5LinguistTools detection

See also: https://github.com/MaartenBaert/ssr/pull/614

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../files/simplescreenrecorder-0.3.9-cmake.patch   | 106 +
 .../simplescreenrecorder-0.3.9-r1.ebuild   |   1 +
 2 files changed, 107 insertions(+)

diff --git 
a/media-video/simplescreenrecorder/files/simplescreenrecorder-0.3.9-cmake.patch 
b/media-video/simplescreenrecorder/files/simplescreenrecorder-0.3.9-cmake.patch
new file mode 100644
index 000..6d9fc1fa607
--- /dev/null
+++ 
b/media-video/simplescreenrecorder/files/simplescreenrecorder-0.3.9-cmake.patch
@@ -0,0 +1,106 @@
+From 7f8f72ac5f7ba7b060b4366828200050b96a9df0 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Thu, 11 Jan 2018 21:28:15 +0100
+Subject: [PATCH 1/3] Fix Qt5LinguistTools detection/lrelease binary location
+
+Correctly find the Qt5 module that provides the path to Qt5-based lrelease.
+Only available since >= Qt-5.3.1 which is a low enough minimum dependency.
+---
+ src/CMakeLists.txt  | 10 ++
+ src/translations/CMakeLists.txt |  7 ++-
+ 2 files changed, 12 insertions(+), 5 deletions(-)
+
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 64652c5..5779a49 100644
+--- a/src/CMakeLists.txt
 b/src/CMakeLists.txt
+@@ -17,10 +17,12 @@ if(WITH_JACK)
+ endif()
+ 
+ if(WITH_QT5)
+-  find_package(Qt5Core REQUIRED)
+-  find_package(Qt5Gui REQUIRED)
+-  find_package(Qt5Widgets REQUIRED)
+-  find_package(Qt5X11Extras REQUIRED)
++  set(QT_MIN_VERSION "5.3.1")
++  find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED
++  Gui
++  Widgets
++  X11Extras
++  )
+ else()
+   find_package(Qt4 REQUIRED QtGui)
+ endif()
+diff --git a/src/translations/CMakeLists.txt b/src/translations/CMakeLists.txt
+index 455fdb2..0902cfd 100644
+--- a/src/translations/CMakeLists.txt
 b/src/translations/CMakeLists.txt
+@@ -1,6 +1,11 @@
+ # translations for 'simplescreenrecorder' executable
+ 
+-find_program(LRELEASE lrelease)
++if(WITH_QT5)
++  find_package(Qt5LinguistTools REQUIRED)
++  set(LRELEASE Qt5::lrelease)
++else()
++  find_program(LRELEASE lrelease)
++endif()
+ 
+ if(LRELEASE)
+ 
+-- 
+2.15.1
+
+
+From 24db02e2a689e08f737c4d720e195a3758cba2eb Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Thu, 11 Jan 2018 21:43:08 +0100
+Subject: [PATCH 2/3] Use FeatureSummary
+
+---
+ CMakeLists.txt | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index e770251..cb36d7d 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -25,6 +25,7 @@ option(WITH_GLINJECT "Build the 'libssr-glinject' library. 
Required for OpenGL r
+ 
+ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
+ 
++include(FeatureSummary)
+ include(GNUInstallDirs)
+ 
+ # try to guess the correct 32-bit library path on 64-bit systems
+@@ -106,3 +107,5 @@ if(WITH_SIMPLESCREENRECORDER)
+   )
+ 
+ endif()
++
++feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
+-- 
+2.15.1
+
+
+From 329ec866097de4f011cd1bbde9dad784acbb487f Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Thu, 11 Jan 2018 22:07:39 +0100
+Subject: [PATCH 3/3] FindFFmpeg.cmake: Provide FFMPEG_FOUND
+
+---
+ cmake/FindFFmpeg.cmake | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/cmake/FindFFmpeg.cmake b/cmake/FindFFmpeg.cmake
+index 117e654..993219b 100644
+--- a/cmake/FindFFmpeg.cmake
 b/cmake/FindFFmpeg.cmake
+@@ -28,3 +28,4 @@ mark_as_advanced(SWSCALE_INCLUDE_DIR SWSCALE_LIBRARY)
+ 
+ set(FFMPEG_INCLUDE_DIRS ${AVFORMAT_INCLUDE_DIR} ${AVCODEC_INCLUDE_DIR} 
${AVUTIL_INCLUDE_DIR} ${SWSCALE_INCLUDE_DIR})
+ set(FFMPEG_LIBRARIES ${AVFORMAT_LIBRARY} ${AVCODEC_LIBRARY} ${AVUTIL_LIBRARY} 
${SWSCALE_LIBRARY})
++set(FFMPEG_FOUND ${PC_FFMPEG_FOUND})
+-- 
+2.15.1
+

diff --git 
a/media-video/simplescreenrecorder/simplescreenrecorder-0.3.9-r1.ebuild 
b/media-video/simplescreenrecorder/simplescreenrecorder-0.3.9-r1.ebuild
index 273c02c9d23..2f317e44e5d 100644
--- a/media-video/simplescreenrecorder/simplescreenrecorder-0.3.9-r1.ebuild
+++ b/media-video/simplescreenrecorder/simplescreenrecorder-0.3.9-r1.ebuild
@@ -49,6 +49,7 @@ DEPEND="${RDEPEND}
 
 PATCHES=(
"${FILESDIR}/${P}-pulseaudio_dep.patch"
+   "${FILESDIR}/${P}-cmake.patch"
 )
 
 pkg_setup() {



[gentoo-commits] repo/gentoo:master commit in: app-text/docbook-sgml-utils/

2018-01-11 Thread Andreas Hüttel
commit: 0857ed1afc92f1567c6e52fd78946451d543be17
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Jan 11 21:47:36 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Jan 11 21:48:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0857ed1a

app-text/docbook-sgml-utils: EAPI bump

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../docbook-sgml-utils-0.6.14-r2.ebuild| 67 ++
 1 file changed, 67 insertions(+)

diff --git a/app-text/docbook-sgml-utils/docbook-sgml-utils-0.6.14-r2.ebuild 
b/app-text/docbook-sgml-utils/docbook-sgml-utils-0.6.14-r2.ebuild
new file mode 100644
index 000..0cf85933258
--- /dev/null
+++ b/app-text/docbook-sgml-utils/docbook-sgml-utils-0.6.14-r2.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit eutils autotools prefix
+
+MY_PN=${PN/-sgml/}
+MY_P=${MY_PN}-${PV}
+S=${WORKDIR}/${MY_P}
+
+DESCRIPTION="Shell scripts to manage DocBook documents"
+HOMEPAGE="https://sourceware.org/docbook-tools/;
+SRC_URI="ftp://sourceware.org/pub/docbook-tools/new-trials/SOURCES/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~x86-macos"
+IUSE="jadetex"
+
+DEPEND=">=dev-lang/perl-5
+   app-text/docbook-dsssl-stylesheets
+   app-text/openjade
+   dev-perl/SGMLSpm
+   ~app-text/docbook-xml-simple-dtd-4.1.2.4
+   ~app-text/docbook-xml-simple-dtd-1.0
+   app-text/docbook-xml-dtd
+   ~app-text/docbook-sgml-dtd-3.0
+   ~app-text/docbook-sgml-dtd-3.1
+   ~app-text/docbook-sgml-dtd-4.0
+   ~app-text/docbook-sgml-dtd-4.1
+   jadetex? ( app-text/jadetex )
+   userland_GNU? ( sys-apps/which )
+   || (
+   www-client/lynx
+   www-client/links
+   www-client/elinks
+   virtual/w3m )"
+RDEPEND="${DEPEND}"
+
+# including both xml-simple-dtd 4.1.2.4 and 1.0, to ease
+# transition to simple-dtd 1.0, 
+
+src_prepare() {
+   epatch "${FILESDIR}"/${MY_P}-elinks.patch
+   epatch "${FILESDIR}"/${P}-grep-2.7.patch
+   if use prefix; then
+   epatch "${FILESDIR}"/${MY_P}-prefix.patch
+   eprefixify doc/{man,HTML}/Makefile.am bin/jw.in backends/txt 
configure.in
+   eautoreconf
+   fi
+}
+
+src_install() {
+   make DESTDIR="${D}" \
+   htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
+   install || die "Installation failed"
+
+   if ! use jadetex ; then
+   for i in dvi pdf ps ; do
+   rm "${ED}"/usr/bin/docbook2$i || die
+   rm 
"${ED}"/usr/share/sgml/docbook/utils-${PV}/backends/$i || die
+   rm "${ED}"/usr/share/man/man1/docbook2$i.1 || die
+   done
+   fi
+   dodoc AUTHORS ChangeLog NEWS README TODO
+}



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

2018-01-11 Thread Thomas Deutschmann
commit: 136562e66275cb941875d5b93e42ff83e1a0da86
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 11 20:10:53 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 11 20:11:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=136562e6

net-libs/webkit-gtk: x86 stable (bug #644128)

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-libs/webkit-gtk/webkit-gtk-2.18.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.18.5.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.18.5.ebuild
index 31abd5c34d4..8bf4a9f17cb 100644
--- a/net-libs/webkit-gtk/webkit-gtk-2.18.5.ebuild
+++ b/net-libs/webkit-gtk/webkit-gtk-2.18.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://www.webkitgtk.org/releases/${MY_P}.tar.xz;
 
 LICENSE="LGPL-2+ BSD"
 SLOT="4/37" # soname version of libwebkit2gtk-4.0
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 
 IUSE="aqua coverage doc +egl +geolocation gles2 gnome-keyring +gstreamer 
+introspection +jit libnotify nsplugin +opengl spell wayland +webgl X"
 



[gentoo-commits] proj/musl:master commit in: net-libs/webkit-gtk/

2018-01-11 Thread Aric Belsito
commit: e06fd690a5924d3b3ba93cd157e876faad2d6622
Author: Aric Belsito  gmail  com>
AuthorDate: Thu Jan 11 20:09:44 2018 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu Jan 11 20:09:44 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=e06fd690

net-libs/webkit-gtk: version bump to 2.18.5

 net-libs/webkit-gtk/Manifest  | 2 +-
 net-libs/webkit-gtk/webkit-gtk-2.18.4.ebuild  | 2 +-
 .../webkit-gtk/{webkit-gtk-2.18.3.ebuild => webkit-gtk-2.18.5.ebuild} | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-libs/webkit-gtk/Manifest b/net-libs/webkit-gtk/Manifest
index 97eea07..a3399a1 100644
--- a/net-libs/webkit-gtk/Manifest
+++ b/net-libs/webkit-gtk/Manifest
@@ -1,3 +1,3 @@
-DIST webkitgtk-2.18.3.tar.xz 14824668 BLAKE2B 
1ae21d17084a27465c462171f043f2d776398ea077e5dbf0d20769143495290990da91120df5fe9dcae426c7a87232a466d198b69f05cadd336fa6a30db3d549
 SHA512 
8ba68d7234205728ed4b92358304cf0d0b771647d9b4316085241adeacafe67dee685225b0b46752087b93416ce8d2053a5a7c2376fda1eee7bc6d9024ae787e
 DIST webkitgtk-2.18.4.tar.xz 14828528 BLAKE2B 
447092ebe258b58e0e70bf8f7b347adaf77ad8391b65163528591d403d363894ed50676212390239cc2adfbc8458745b9f873481cb0bacf40b5ea598abb1
 SHA512 
c7440668cc097232b7eb9ea15e1047f7110cd06249cb61501b0414175693e0b11b22335abf17c62582dcf16c41ae49d0a713cd069f7df32955e440b9d23194d1
+DIST webkitgtk-2.18.5.tar.xz 14828616 BLAKE2B 
850d5b74327975060615d9bb481c8ec264eb862e63c5fc9bfa59bdab0edfbc3ad81c989df0fce13beb61bcbaed9c63571ad9aa3b9c5ad6137c662cf2f89ebc90
 SHA512 
f11a45150af4ba36192380ad0757da53d50b660f0a4f127a71123a6d80e9757d16a1deb1d69b235852c62bb1225352823932c60df7d6aa9372442ed7a165068c
 DIST webkitgtk-2.4.11.tar.xz 9869100 BLAKE2B 
9b1351976dc753025e6aba86a40f97fdf58821a6a7af109140a18adc7a0e1d8c140711b48bceeb3c4c189e7d52f258520623c7d971c46b6f2572c0e1de0d0100
 SHA512 
2e2cf01a52b8593765a0a3c2d7f0ad306121660019eb402226bd2826c7d4666dab4e91ca6ccbd29abe0ad3993549f256ed1ab88de22e9c8516d5f40a4edd6bfb

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.18.4.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.18.4.ebuild
index 02143ab..3867905 100644
--- a/net-libs/webkit-gtk/webkit-gtk-2.18.4.ebuild
+++ b/net-libs/webkit-gtk/webkit-gtk-2.18.4.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://www.webkitgtk.org/releases/${MY_P}.tar.xz;
 
 LICENSE="LGPL-2+ BSD"
 SLOT="4/37" # soname version of libwebkit2gtk-4.0
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 
 IUSE="aqua coverage doc +egl +geolocation gles2 gnome-keyring +gstreamer 
+introspection +jit libnotify nsplugin +opengl spell wayland +webgl X"
 

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.18.3.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.18.5.ebuild
similarity index 98%
rename from net-libs/webkit-gtk/webkit-gtk-2.18.3.ebuild
rename to net-libs/webkit-gtk/webkit-gtk-2.18.5.ebuild
index 3867905..8461436 100644
--- a/net-libs/webkit-gtk/webkit-gtk-2.18.3.ebuild
+++ b/net-libs/webkit-gtk/webkit-gtk-2.18.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ SRC_URI="http://www.webkitgtk.org/releases/${MY_P}.tar.xz;
 
 LICENSE="LGPL-2+ BSD"
 SLOT="4/37" # soname version of libwebkit2gtk-4.0
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 
 IUSE="aqua coverage doc +egl +geolocation gles2 gnome-keyring +gstreamer 
+introspection +jit libnotify nsplugin +opengl spell wayland +webgl X"
 



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

2018-01-11 Thread Anthony G. Basile
commit: d64650d0c508f629d49d808921e04c75782b7422
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jan 11 20:02:32 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jan 11 20:02:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d64650d0

net-misc/electrum: remove older vulnerable versions, bug #643874

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 net-misc/electrum/Manifest   |   2 -
 net-misc/electrum/electrum-2.7.15.ebuild | 168 -
 net-misc/electrum/electrum-3.0.3.ebuild  | 174 ---
 3 files changed, 344 deletions(-)

diff --git a/net-misc/electrum/Manifest b/net-misc/electrum/Manifest
index 35d5315f4ce..0196ee9380c 100644
--- a/net-misc/electrum/Manifest
+++ b/net-misc/electrum/Manifest
@@ -1,3 +1 @@
-DIST Electrum-2.7.15.tar.gz 1967697 BLAKE2B 
94a189fb1b950dc2691cfa92143d68052f615e534fb9d3d7feed92a39bb717199b227d0e265715e86c3ed9b8ccd743fa77f2691dfc5b47073b03f80152185565
 SHA512 
2f4f5181dcf0b98ce34348c296e50383b677db1fd14fa0052a0168a7c880d18d04ebb9a91dbb7316e09adeda275cc87b5457c8f0925b3635a1c769c81f31165c
-DIST Electrum-3.0.3.tar.gz 2590410 BLAKE2B 
676422bc14ce597a2b4903ea4d7e3dcec1bd23424d678aa1c248e824a1656a60afaef284c8ba22242da3cfdbe4421dba04f4aeef42ca507043988067a340d0b9
 SHA512 
6628b6621e3502bb9782ec7ce0fd11a657c10dfaab6a5c4de4e4bae5bc1207fa55f642a92fcca08e1f342e0ecf8dd0c72134db7020e03df2ed6f81b27c49aa30
 DIST Electrum-3.0.5.tar.gz 2639766 BLAKE2B 
28587ca056247a5671d84c0b79824e8eea8df8ca2e3204333e6edd7db98ecbeebdf81f4ac819de8b87c7593e83f948d091d48d55cdff08af76322d94bacec0fd
 SHA512 
27cfa44ce8eeb5eef8038f1f68b4a42d173daaf7a940ffc9e9b1dad16a8f7f49bd53d5eefdbaf242e5e09aa2f887bce536f17941c2250225cd92c78f62c52e39

diff --git a/net-misc/electrum/electrum-2.7.15.ebuild 
b/net-misc/electrum/electrum-2.7.15.ebuild
deleted file mode 100644
index ef6c1839e59..000
--- a/net-misc/electrum/electrum-2.7.15.ebuild
+++ /dev/null
@@ -1,168 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="ncurses?"
-
-inherit distutils-r1 gnome2-utils
-
-MY_P="Electrum-${PV}"
-DESCRIPTION="User friendly Bitcoin client"
-HOMEPAGE="https://electrum.org/;
-SRC_URI="https://download.electrum.org/${PV}/${MY_P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-MY_LANGS="ar_SA bg_BG cs_CZ da_DK de_DE el_GR eo_UY es_ES fr_FR hu_HU hy_AM 
id_ID it_IT ja_JP ko_KR ky_KG lv_LV nb_NO nl_NL no_NO pl_PL pt_BR pt_PT ro_RO 
ru_RU sk_SK sl_SI ta_IN th_TH tr_TR vi_VN zh_CN"
-
-my_langs_to_l10n() {
-   # Map all except pt_* and zh_* to their generic codes
-   case $1 in
-   pt_*|zh_*) echo ${1/_/-} ;;
-   *) echo ${1%%_*} ;;
-   esac
-}
-
-IUSE="cli cosign email greenaddress_it ncurses qrcode +qt4 sync 
trustedcoin_com vkb"
-
-for lang in ${MY_LANGS}; do
-   IUSE+=" l10n_$(my_langs_to_l10n ${lang})"
-done
-unset lang
-
-REQUIRED_USE="
-   || ( cli ncurses qt4 )
-   cosign? ( qt4 )
-   email? ( qt4 )
-   greenaddress_it? ( qt4 )
-   qrcode? ( qt4 )
-   sync? ( qt4 )
-   trustedcoin_com? ( qt4 )
-   vkb? ( qt4 )
-"
-
-RDEPEND="
-   dev-python/ecdsa[${PYTHON_USEDEP}]
-   dev-python/jsonrpclib[${PYTHON_USEDEP}]
-   dev-python/pbkdf2[${PYTHON_USEDEP}]
-   dev-python/PySocks[${PYTHON_USEDEP}]
-   dev-python/qrcode[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/slowaes[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   dev-python/tlslite[${PYTHON_USEDEP}]
-   || (
-   dev-python/protobuf-python[${PYTHON_USEDEP}]
-   dev-libs/protobuf[python,${PYTHON_USEDEP}]
-   )
-   virtual/python-dnspython[${PYTHON_USEDEP}]
-   qrcode? ( media-gfx/zbar[python,v4l,${PYTHON_USEDEP}] )
-   qt4? (
-   dev-python/PyQt4[X,${PYTHON_USEDEP}]
-   )
-   ncurses? ( dev-lang/python )
-"
-
-S="${WORKDIR}/${MY_P}"
-
-DOCS="RELEASE-NOTES"
-
-src_prepare() {
-   epatch "${FILESDIR}/${PV}-no-user-root.patch"
-
-   # Don't advise using PIP
-   sed -i "s/On Linux, try 'sudo pip install zbar'/Re-emerge Electrum with 
the qrcode USE flag/" lib/qrscanner.py || die
-
-   # Prevent icon from being installed in the wrong location
-   sed -i '/icons/d' setup.py || die
-
-   # Remove unrequested localization files:
-   local lang
-   for lang in ${MY_LANGS}; do
-   use l10n_$(my_langs_to_l10n ${lang}) && continue
-   rm -r "lib/locale/${lang}" || die
-   done
-
-   local wordlist=
-   for wordlist in  \
-   $(usex l10n_ja'' japanese) \
-   $(usex l10n_pt-BR '' $(usex l10n_pt-PT '' portuguese)) \
-   $(usex l10n_es'' spanish) \
-   $(usex l10n_zh-CN 

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

2018-01-11 Thread Anthony G. Basile
commit: f87d1ba204e8b5628dfb9a18885fadefbdd77b58
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jan 11 20:01:29 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jan 11 20:02:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f87d1ba2

net-misc/electrum: rapid stabilize 3.0.5, bug #643874

Package-Manager: Portage-2.3.13, Repoman-2.3.3

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

diff --git a/net-misc/electrum/electrum-3.0.5.ebuild 
b/net-misc/electrum/electrum-3.0.5.ebuild
index 2b62832e8ba..47ccf45aef4 100644
--- a/net-misc/electrum/electrum-3.0.5.ebuild
+++ b/net-misc/electrum/electrum-3.0.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://download.electrum.org/${PV}/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 MY_LANGS="ar_SA bg_BG cs_CZ da_DK de_DE el_GR eo_UY es_ES fa_IR fr_FR hu_HU 
hy_AM id_ID it_IT ja_JP ko_KR ky_KG lv_LV nb_NO nl_NL pl_PL pt_BR pt_PT ro_RO 
ru_RU sk_SK sl_SI ta_IN th_TH tr_TR uk_UA vi_VN zh_CN zh_TW"
 
 my_langs_to_l10n() {



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

2018-01-11 Thread Mike Frysinger
commit: 74f3bd5c119b15d89b67b212d4ba08f9454107c6
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jan 11 19:42:01 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 11 19:43:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f3bd5c

dev-python/packaging: mark 16.8 m68k/s390/sh stable

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

diff --git a/dev-python/packaging/packaging-16.8.ebuild 
b/dev-python/packaging/packaging-16.8.ebuild
index 62edc8ae2a2..be9240f517a 100644
--- a/dev-python/packaging/packaging-16.8.ebuild
+++ b/dev-python/packaging/packaging-16.8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="|| ( Apache-2.0 BSD-2 )"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2018-01-11 Thread Mike Frysinger
commit: 2f0ec9dc85f07b59176a7fc75f1a573069a272a5
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jan 11 19:42:21 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 11 19:43:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f0ec9dc

dev-python/appdirs: mark 1.4.3 m68k/s390/sh stable

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

diff --git a/dev-python/appdirs/appdirs-1.4.3.ebuild 
b/dev-python/appdirs/appdirs-1.4.3.ebuild
index e2de18ca890..45809ec5dfb 100644
--- a/dev-python/appdirs/appdirs-1.4.3.ebuild
+++ b/dev-python/appdirs/appdirs-1.4.3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/ActiveState/${PN}/archive/${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 PATCHES=( "${FILESDIR}"/${PN}-1.4.3-distutils.patch )



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

2018-01-11 Thread Mike Frysinger
commit: 0f9268d8198cecfd07ab2eac61bdf00b35bff9e2
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Jan 11 19:41:41 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 11 19:43:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f9268d8

dev-python/six: mark 1.10.0 m68k/s390/sh stable

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

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



[gentoo-commits] proj/portage:master commit in: repoman/pym/repoman/, repoman/man/, repoman/pym/repoman/modules/scan/depend/

2018-01-11 Thread Michał Górny
commit: 335c650e29df70f5cd376f5d7d87718b448a78e7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 10 20:22:33 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 11 19:37:47 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=335c650e

repoman: Add a new 'badinexp' warning class for exp profiles

Add a new 'badinexp' (+ 'badmaskedinexp') warning class that is likewise
'badindev' but for 'exp' profiles. This will allow us to more
proactively inform developers of exp profile breakages without actually
making them fatal errors like they are now.

Reviewed-by: Zac Medico  gentoo.org>

 repoman/man/repoman.1  | 8 
 repoman/pym/repoman/modules/scan/depend/profile.py | 2 ++
 repoman/pym/repoman/qa_data.py | 8 
 3 files changed, 18 insertions(+)

diff --git a/repoman/man/repoman.1 b/repoman/man/repoman.1
index 813bdae21..b2542b0c7 100644
--- a/repoman/man/repoman.1
+++ b/repoman/man/repoman.1
@@ -288,6 +288,10 @@ ebuilds)
 User-visible ebuilds with unsatisfied dependencies (matched against *visible*
 ebuilds) in developing arch
 .TP
+.B dependency.badinexp
+User-visible ebuilds with unsatisfied dependencies (matched against *visible*
+ebuilds) in experimental arch
+.TP
 .B dependency.badmasked
 Masked ebuilds with unsatisfied dependencies (matched against *all* ebuilds)
 .TP
@@ -295,6 +299,10 @@ Masked ebuilds with unsatisfied dependencies (matched 
against *all* ebuilds)
 Masked ebuilds with unsatisfied dependencies (matched against *all* ebuilds) in
 developing arch
 .TP
+.B dependency.badmaskedinexp
+Masked ebuilds with unsatisfied dependencies (matched against *all* ebuilds) in
+experimental arch
+.TP
 .B dependency.badtilde
 Uses the ~ dep operator with a non-zero revision part, which is useless (the
 revision is ignored)

diff --git a/repoman/pym/repoman/modules/scan/depend/profile.py 
b/repoman/pym/repoman/modules/scan/depend/profile.py
index cf3d9a8f4..30d839af0 100644
--- a/repoman/pym/repoman/modules/scan/depend/profile.py
+++ b/repoman/pym/repoman/modules/scan/depend/profile.py
@@ -163,6 +163,8 @@ class ProfileDependsChecks(ScanBase):
 
if prof.status == "dev":
suffix = suffix + "indev"
+   elif prof.status == "exp":
+   suffix = suffix + "inexp"
 
for mytype in Package._dep_keys:
 

diff --git a/repoman/pym/repoman/qa_data.py b/repoman/pym/repoman/qa_data.py
index fed798f9f..c6abe1760 100644
--- a/repoman/pym/repoman/qa_data.py
+++ b/repoman/pym/repoman/qa_data.py
@@ -42,6 +42,12 @@ qahelp = {
"dependency.badmaskedindev": (
"Masked ebuilds with unsatisfied dependencies"
" (matched against *all* ebuilds) in developing arch"),
+   "dependency.badinexp": (
+   "User-visible ebuilds with unsatisfied dependencies"
+   " (matched against *visible* ebuilds) in experimental arch"),
+   "dependency.badmaskedinexp": (
+   "Masked ebuilds with unsatisfied dependencies"
+   " (matched against *all* ebuilds) in experimental arch"),
"dependency.badtilde": (
"Uses the ~ dep operator with a non-zero revision part,"
" which is useless (the revision is ignored)"),
@@ -249,6 +255,8 @@ qawarnings = set((
"dependency.badmasked",
"dependency.badindev",
"dependency.badmaskedindev",
+   "dependency.badinexp",
+   "dependency.badmaskedinexp",
"dependency.badtilde",
"dependency.missingslot",
"dependency.perlcore",



[gentoo-commits] proj/portage:master commit in: pym/portage/tests/resolver/, pym/portage/dep/

2018-01-11 Thread Zac Medico
commit: 86ba22da7a2f34848cdb5a6f1090c22c264e577e
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan  9 03:34:22 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jan 11 19:23:34 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=86ba22da

dep_zapdeps: install new package, allow upgrade (bug 643974)

Prefer to install a new package in order to allow upgrade of an
installed package. This generalizes the code from bug 635540 so
that it both allows desirable upgrades and prevents unwanted
downgrades.

Fixes: 7c58e3737616 ("dep_zapdeps: install new package, avoid downgrade (bug 
635540)")
Bug: https://bugs.gentoo.org/643974
Reviewed-by: Alec Warner  gentoo.org>

 pym/portage/dep/dep_check.py   |  11 +--
 .../tests/resolver/test_or_upgrade_installed.py| 101 +
 2 files changed, 106 insertions(+), 6 deletions(-)

diff --git a/pym/portage/dep/dep_check.py b/pym/portage/dep/dep_check.py
index 2bb9dc339..291626f56 100644
--- a/pym/portage/dep/dep_check.py
+++ b/pym/portage/dep/dep_check.py
@@ -366,10 +366,8 @@ def dep_zapdeps(unreduced, reduced, myroot, 
use_binaries=0, trees=None):
want_update_pkg = trees[myroot].get("want_update_pkg")
downgrade_probe = trees[myroot].get("downgrade_probe")
vardb = None
-   vardb_match_pkgs = None
if "vartree" in trees[myroot]:
vardb = trees[myroot]["vartree"].dbapi
-   vardb_match_pkgs = getattr(vardb, 'match_pkgs', None)
if use_binaries:
mydbapi = trees[myroot]["bintree"].dbapi
else:
@@ -465,10 +463,11 @@ def dep_zapdeps(unreduced, reduced, myroot, 
use_binaries=0, trees=None):
avail_pkg = avail_pkg_use
avail_slot = Atom("%s:%s" % (atom.cp, 
avail_pkg.slot))
 
-   if vardb_match_pkgs is not None and downgrade_probe is 
not None:
-   inst_pkg = vardb_match_pkgs(avail_slot)
-   if (inst_pkg and avail_pkg < inst_pkg[-1] and
-   not downgrade_probe(inst_pkg[-1])):
+   if downgrade_probe is not None:
+   highest_in_slot = mydbapi_match_pkgs(avail_slot)
+   if (avail_pkg and highest_in_slot and
+   avail_pkg < highest_in_slot[-1] and
+   not downgrade_probe(avail_pkg)):
installed_downgrade = True
 
slot_map[avail_slot] = avail_pkg

diff --git a/pym/portage/tests/resolver/test_or_upgrade_installed.py 
b/pym/portage/tests/resolver/test_or_upgrade_installed.py
new file mode 100644
index 0..6e01d321d
--- /dev/null
+++ b/pym/portage/tests/resolver/test_or_upgrade_installed.py
@@ -0,0 +1,101 @@
+# Copyright 2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+from portage.tests import TestCase
+from portage.tests.resolver.ResolverPlayground import (
+   ResolverPlayground,
+   ResolverPlaygroundTestCase,
+)
+
+class OrUpgradeInstalledTestCase(TestCase):
+
+   def testOrUpgradeInstalled(self):
+   ebuilds = {
+   'net-misc/foo-1': {
+   'EAPI': '6',
+   'RDEPEND': '|| ( sys-libs/glibc[rpc(-)]  
net-libs/libtirpc )'
+   },
+   'net-libs/libtirpc-1': {
+   'EAPI': '6',
+   },
+   'sys-libs/glibc-2.26': {
+   'EAPI': '6',
+   'IUSE': ''
+   },
+   'sys-libs/glibc-2.24': {
+   'EAPI': '6',
+   'IUSE': '+rpc'
+   },
+   }
+
+   installed = {
+   'sys-libs/glibc-2.24': {
+   'EAPI': '6',
+   'IUSE': '+rpc',
+   'USE': 'rpc',
+   },
+   }
+
+   world = ['sys-libs/glibc']
+
+   test_cases = (
+   # Test bug 643974, where we need to install libtirpc
+   # in order to upgrade glibc.
+   ResolverPlaygroundTestCase(
+   ['net-misc/foo', '@world'],
+   options={'--update': True, '--deep': True},
+   success=True,
+   ambiguous_merge_order=True,
+   mergelist=(
+   (
+   'net-libs/libtirpc-1',
+   

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

2018-01-11 Thread Jeroen Roovers
commit: 5a08101eed97fee68826807b2b13b8a5ec7318bf
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jan 11 18:37:44 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jan 11 18:39:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a08101e

media-video/blind: Move to media-video/.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-video/blind/Manifest  |  1 +
 media-video/blind/blind-1.1.ebuild  | 42 +
 media-video/blind/files/blind-1.1-ldflags.patch | 11 +++
 media-video/blind/metadata.xml  |  9 ++
 4 files changed, 63 insertions(+)

diff --git a/media-video/blind/Manifest b/media-video/blind/Manifest
new file mode 100644
index 000..b39a12954c5
--- /dev/null
+++ b/media-video/blind/Manifest
@@ -0,0 +1 @@
+DIST blind-1.1.tar.gz 47568 BLAKE2B 
b284e614efafb70ea41c274ddeedce66a0123c1ba6dfbba6522e0a11d6b2aa39b1059a0c9cc1c45a37f951b75c0b23580f714858bf2257a15e4f7d03ffb0b258
 SHA512 
620a5edc69bf736f642948e4f6ac6dda8cdbea4bdad143b09f931e62aaa57983e23ff60961d1485dcbce1ac461be12b393fe03f056ef46ca5ad2012cb03cf637

diff --git a/media-video/blind/blind-1.1.ebuild 
b/media-video/blind/blind-1.1.ebuild
new file mode 100644
index 000..350b74acd24
--- /dev/null
+++ b/media-video/blind/blind-1.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit toolchain-funcs
+
+DESCRIPTION="a collection of command line video editing utilities"
+HOMEPAGE="https://tools.suckless.org/blind/;
+SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+"
+DEPEND="
+   ${RDEPEND}
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.1-ldflags.patch
+)
+
+src_prepare() {
+   default
+
+   sed -i \
+   -e '/^CC/d' \
+   -e 's|/usr/local|/usr|g' \
+   -e 's|^CFLAGS.*|CFLAGS += -std=c99 -pedantic -Wall -Wextra 
$(INCS) $(CPPFLAGS)|g' \
+   -e '/^LDFLAGS.*/ { s:-s::g; s:=:+=:g; }' \
+   -e 's|{|(|g;s|}|)|g' \
+   config.mk || die
+}
+
+src_compile() {
+   emake CC=$(tc-getCC)
+}
+
+src_install() {
+   emake DESTDIR="${D}" install MANPREFIX=/usr/share/man
+}

diff --git a/media-video/blind/files/blind-1.1-ldflags.patch 
b/media-video/blind/files/blind-1.1-ldflags.patch
new file mode 100644
index 000..6e247b10f13
--- /dev/null
+++ b/media-video/blind/files/blind-1.1-ldflags.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
 b/Makefile
+@@ -80,7 +80,7 @@
+ all: $(BIN)
+ 
+ %: %.o util.o stream.o
+-  $(CC) $(LDFLAGS) -o $@ $^
++  $(CC) -o $@ $^ $(LDFLAGS)
+ 
+ %.o: src/%.c src/*.h src/*/*.h
+   $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<

diff --git a/media-video/blind/metadata.xml b/media-video/blind/metadata.xml
new file mode 100644
index 000..27071a89630
--- /dev/null
+++ b/media-video/blind/metadata.xml
@@ -0,0 +1,9 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+j...@gentoo.org
+
+
+
+



[gentoo-commits] repo/gentoo:master commit in: media-gfx/blind/, media-gfx/blind/files/

2018-01-11 Thread Jeroen Roovers
commit: dc367afb88683066968b72c37f32424174a5524f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jan 11 18:39:07 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jan 11 18:39:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc367afb

media-gfx/blind: Moved.

 media-gfx/blind/Manifest  |  1 -
 media-gfx/blind/blind-1.1.ebuild  | 42 ---
 media-gfx/blind/files/blind-1.1-ldflags.patch | 11 ---
 media-gfx/blind/metadata.xml  |  9 --
 4 files changed, 63 deletions(-)

diff --git a/media-gfx/blind/Manifest b/media-gfx/blind/Manifest
deleted file mode 100644
index b39a12954c5..000
--- a/media-gfx/blind/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST blind-1.1.tar.gz 47568 BLAKE2B 
b284e614efafb70ea41c274ddeedce66a0123c1ba6dfbba6522e0a11d6b2aa39b1059a0c9cc1c45a37f951b75c0b23580f714858bf2257a15e4f7d03ffb0b258
 SHA512 
620a5edc69bf736f642948e4f6ac6dda8cdbea4bdad143b09f931e62aaa57983e23ff60961d1485dcbce1ac461be12b393fe03f056ef46ca5ad2012cb03cf637

diff --git a/media-gfx/blind/blind-1.1.ebuild b/media-gfx/blind/blind-1.1.ebuild
deleted file mode 100644
index 350b74acd24..000
--- a/media-gfx/blind/blind-1.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit toolchain-funcs
-
-DESCRIPTION="a collection of command line video editing utilities"
-HOMEPAGE="https://tools.suckless.org/blind/;
-SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz;
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-"
-DEPEND="
-   ${RDEPEND}
-"
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.1-ldflags.patch
-)
-
-src_prepare() {
-   default
-
-   sed -i \
-   -e '/^CC/d' \
-   -e 's|/usr/local|/usr|g' \
-   -e 's|^CFLAGS.*|CFLAGS += -std=c99 -pedantic -Wall -Wextra 
$(INCS) $(CPPFLAGS)|g' \
-   -e '/^LDFLAGS.*/ { s:-s::g; s:=:+=:g; }' \
-   -e 's|{|(|g;s|}|)|g' \
-   config.mk || die
-}
-
-src_compile() {
-   emake CC=$(tc-getCC)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install MANPREFIX=/usr/share/man
-}

diff --git a/media-gfx/blind/files/blind-1.1-ldflags.patch 
b/media-gfx/blind/files/blind-1.1-ldflags.patch
deleted file mode 100644
index 6e247b10f13..000
--- a/media-gfx/blind/files/blind-1.1-ldflags.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/Makefile
-+++ b/Makefile
-@@ -80,7 +80,7 @@
- all: $(BIN)
- 
- %: %.o util.o stream.o
--  $(CC) $(LDFLAGS) -o $@ $^
-+  $(CC) -o $@ $^ $(LDFLAGS)
- 
- %.o: src/%.c src/*.h src/*/*.h
-   $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<

diff --git a/media-gfx/blind/metadata.xml b/media-gfx/blind/metadata.xml
deleted file mode 100644
index 27071a89630..000
--- a/media-gfx/blind/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-
-j...@gentoo.org
-
-
-
-



[gentoo-commits] repo/gentoo:master commit in: media-gfx/blind/, media-gfx/blind/files/

2018-01-11 Thread Jeroen Roovers
commit: e946a0ba0d2d778e4240c6d62de9ffc8672d9e2d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jan 11 18:36:12 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jan 11 18:39:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e946a0ba

media-gfx/blind: Initial commit.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-gfx/blind/Manifest  |  1 +
 media-gfx/blind/blind-1.1.ebuild  | 42 +++
 media-gfx/blind/files/blind-1.1-ldflags.patch | 11 +++
 media-gfx/blind/metadata.xml  |  9 ++
 4 files changed, 63 insertions(+)

diff --git a/media-gfx/blind/Manifest b/media-gfx/blind/Manifest
new file mode 100644
index 000..b39a12954c5
--- /dev/null
+++ b/media-gfx/blind/Manifest
@@ -0,0 +1 @@
+DIST blind-1.1.tar.gz 47568 BLAKE2B 
b284e614efafb70ea41c274ddeedce66a0123c1ba6dfbba6522e0a11d6b2aa39b1059a0c9cc1c45a37f951b75c0b23580f714858bf2257a15e4f7d03ffb0b258
 SHA512 
620a5edc69bf736f642948e4f6ac6dda8cdbea4bdad143b09f931e62aaa57983e23ff60961d1485dcbce1ac461be12b393fe03f056ef46ca5ad2012cb03cf637

diff --git a/media-gfx/blind/blind-1.1.ebuild b/media-gfx/blind/blind-1.1.ebuild
new file mode 100644
index 000..350b74acd24
--- /dev/null
+++ b/media-gfx/blind/blind-1.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit toolchain-funcs
+
+DESCRIPTION="a collection of command line video editing utilities"
+HOMEPAGE="https://tools.suckless.org/blind/;
+SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+"
+DEPEND="
+   ${RDEPEND}
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.1-ldflags.patch
+)
+
+src_prepare() {
+   default
+
+   sed -i \
+   -e '/^CC/d' \
+   -e 's|/usr/local|/usr|g' \
+   -e 's|^CFLAGS.*|CFLAGS += -std=c99 -pedantic -Wall -Wextra 
$(INCS) $(CPPFLAGS)|g' \
+   -e '/^LDFLAGS.*/ { s:-s::g; s:=:+=:g; }' \
+   -e 's|{|(|g;s|}|)|g' \
+   config.mk || die
+}
+
+src_compile() {
+   emake CC=$(tc-getCC)
+}
+
+src_install() {
+   emake DESTDIR="${D}" install MANPREFIX=/usr/share/man
+}

diff --git a/media-gfx/blind/files/blind-1.1-ldflags.patch 
b/media-gfx/blind/files/blind-1.1-ldflags.patch
new file mode 100644
index 000..6e247b10f13
--- /dev/null
+++ b/media-gfx/blind/files/blind-1.1-ldflags.patch
@@ -0,0 +1,11 @@
+--- a/Makefile
 b/Makefile
+@@ -80,7 +80,7 @@
+ all: $(BIN)
+ 
+ %: %.o util.o stream.o
+-  $(CC) $(LDFLAGS) -o $@ $^
++  $(CC) -o $@ $^ $(LDFLAGS)
+ 
+ %.o: src/%.c src/*.h src/*/*.h
+   $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<

diff --git a/media-gfx/blind/metadata.xml b/media-gfx/blind/metadata.xml
new file mode 100644
index 000..27071a89630
--- /dev/null
+++ b/media-gfx/blind/metadata.xml
@@ -0,0 +1,9 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+j...@gentoo.org
+
+
+
+



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

2018-01-11 Thread Pacho Ramos
commit: 40d1ec0acf22e934786eae18cc9a94d960f471b2
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Jan 11 18:31:50 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Jan 11 18:31:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40d1ec0a

sys-apps/colorized-logs: Stabilize

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-apps/colorized-logs/colorized-logs-2.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/colorized-logs/colorized-logs-2.1.ebuild 
b/sys-apps/colorized-logs/colorized-logs-2.1.ebuild
index 2d9ecaf97f2..0e22beb33d1 100644
--- a/sys-apps/colorized-logs/colorized-logs-2.1.ebuild
+++ b/sys-apps/colorized-logs/colorized-logs-2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kilobyte/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 DEPEND=""



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

2018-01-11 Thread Johannes Huber
commit: dc5055bb368e9a36acc2ef90bed1cc76b5d31b79
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Jan 11 18:25:47 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Jan 11 18:25:47 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=dc5055bb

.travis.yml: Use 17.0 profile

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 03d9799aba..3726c770b8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,7 +24,7 @@ before_script:
 - echo "portage::250:portage,travis" >> /etc/group
 - wget "https://www.gentoo.org/dtd/metadata.dtd; -O 
/usr/portage/distfiles/metadata.dtd
 - ln -s $TRAVIS_BUILD_DIR/portage-portage-${PORTAGE_VER}/cnf/repos.conf 
/etc/portage/repos.conf
-- ln -s /usr/portage/profiles/default/linux/amd64/13.0 
/etc/portage/make.profile
+- ln -s /usr/portage/profiles/default/linux/amd64/17.0 
/etc/portage/make.profile
 - SIZE=$(stat -c %s .travis.yml.upstream)
 - if ! cmp -n $SIZE -s .travis.yml .travis.yml.upstream; then echo -e 
"\e[31m !!! .travis.yml outdated! Update available 
https://github.com/mrueg/repoman-travis \e[0m" > /tmp/update ; fi
 - cd travis-overlay



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

2018-01-11 Thread Jeroen Roovers
commit: 5c31139da32e6985c94536a1868c561ff162dd3c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jan 11 17:46:22 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jan 11 17:46:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c31139d

net-misc/youtube-dl: Old.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-misc/youtube-dl/Manifest |   1 -
 net-misc/youtube-dl/youtube-dl-2017.12.23.ebuild | 116 ---
 2 files changed, 117 deletions(-)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index 6ac8ed9a5af..6b3b77fb17f 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -1,5 +1,4 @@
 DIST youtube-dl-2017.03.16.tar.gz 2631620 BLAKE2B 
2aff8710a296140a4329b0f8e7f57526684ca114ba39a7397eef81b1b79b4b5dfae685c1f0011cddf8569d8df1e50111bbce7f12647c067972c79ea3b116b2ff
 SHA512 
f3b8942f6b2be3b1cfd4bddfb74c17bad48c8ef4bea34114970ecb9d65b5a3dcbe71beba6d7c2dbda168371bbb2e8bbaddce58039bd9d158bf23950a2a88123c
 DIST youtube-dl-2017.11.15.tar.gz 2834012 BLAKE2B 
fd93e3923f99874be58681a886c09e31ac10063975ab636badf27e59b44743c72cddf05e3a431c49ffd0f7b40f9b005f4d90feff85d4ca889dee80833300b076
 SHA512 
e10c0d53db7fdfb02610b53f54046c0a9354b305ba05c5d00a43649a283a6449263f66ff56171d52cf18f906c6aeccc25dc48ea708b4b1bb2b8323b937abca96
-DIST youtube-dl-2017.12.23.tar.gz 2859430 BLAKE2B 
55d30e77e1689b221d554ea0fd6327b42043c9410f74ce35f87956dfbf3da986b254657ca4c71cd4c7bf8bbddb2477cdbd96caebd0d52803b14e5466ac43988a
 SHA512 
f8aa96e2cc328453abaaa84b9a0c0f28ea929a9c3877128d398ec5eb080b187bd01bcfc07ed590e84d1f58af00f0cbb219b4ac3f01045486c0472c6d707e4d9c
 DIST youtube-dl-2017.12.31.tar.gz 2872519 BLAKE2B 
cbf06f545f580d4bb3c5f58ea9a38291cdb358114787a93a1889e3c07c17fb2a832b7a25fecb6f92cdba8731fc32b9eed5ae4f5a52d0d6a103c3d3d4ef6b9ba5
 SHA512 
c6cd663627d2291c0eb6e1d711772f6640555d19f34533e1784cba4e6c983522db6dc3e44140dfcdad900db12024548bd5b16f89e60a5531538d7dcb36a8cd93
 DIST youtube-dl-2018.01.07.tar.gz 2877870 BLAKE2B 
8def952710c4500e251641b4ca458ba4810c84435c504ca44569211d3d762efe4a5086f12bf9edee0944b5894697e5be359abead41282f637bab83addbbf67cc
 SHA512 
ac5f603eb61b367fb26c07213f8350b1a305bad41a4d6beaa65f1568e6365e666818c67be35ce118de495bbdc980c9eb599b9273e7bb79f2e40dd23732d9a6fd

diff --git a/net-misc/youtube-dl/youtube-dl-2017.12.23.ebuild 
b/net-misc/youtube-dl/youtube-dl-2017.12.23.ebuild
deleted file mode 100644
index b94326c98c6..000
--- a/net-misc/youtube-dl/youtube-dl-2017.12.23.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
-inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
-
-DESCRIPTION="Download videos from YouTube.com (and more sites...)"
-HOMEPAGE="https://rg3.github.com/youtube-dl/;
-SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz;
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
-IUSE="+offensive test"
-
-RDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-"
-DEPEND="
-   ${RDEPEND}
-   test? ( dev-python/nose[coverage(+)] )
-"
-
-S="${WORKDIR}/${PN}"
-
-python_prepare_all() {
-   if ! use offensive; then
-   sed -i -e "/..version../s|'$|+gentoo.no.offensive.sites'|g" \
-   youtube_dl/version.py || die
-   # these have single line import statements
-   local xxx=(
-   alphaporno anysex behindkink camwithher chaturbate 
eporner
-   eroprofile extremetube foxgay goshgay hellporno 
hentaistigma
-   hornbunny keezmovies lovehomeporn mofosex motherless 
myvidster
-   porn91 porncom pornflip pornhd pornotube pornovoisines 
pornoxo
-   ruleporn sexu slutload spankbang spankwire sunporno 
thisav tube8
-   vporn watchindianporn xbef xnxx xtube xvideos 
xxxymovies youjizz
-   youporn
-   )
-   # these have multi-line import statements
-   local mxxx=(
-   drtuber fourtube pornhub redtube tnaflix xhamster
-   )
-   # do single line imports
-   sed -i \
-   -e $( printf '/%s/d;' ${xxx[@]} ) \
-   youtube_dl/extractor/extractors.py \
-   || die
-
-   # do multiple line imports
-   sed -i \
-   -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
-   youtube_dl/extractor/extractors.py \
-   || die
-
-   sed -i \
-   -e $( printf '/%s/d;' ${mxxx[@]} ) \
-   youtube_dl/extractor/generic.py \
-   || 

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

2018-01-11 Thread Jeroen Roovers
commit: 41eaff45bad113de137f0a05c7eb2daf549261e9
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jan 11 17:45:18 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jan 11 17:46:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41eaff45

net-misc/youtube-dl: Version 2018.01.07.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-misc/youtube-dl/Manifest |   1 +
 net-misc/youtube-dl/youtube-dl-2018.01.07.ebuild | 115 +++
 2 files changed, 116 insertions(+)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index e0f886a3d24..6ac8ed9a5af 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -2,3 +2,4 @@ DIST youtube-dl-2017.03.16.tar.gz 2631620 BLAKE2B 
2aff8710a296140a4329b0f8e7f575
 DIST youtube-dl-2017.11.15.tar.gz 2834012 BLAKE2B 
fd93e3923f99874be58681a886c09e31ac10063975ab636badf27e59b44743c72cddf05e3a431c49ffd0f7b40f9b005f4d90feff85d4ca889dee80833300b076
 SHA512 
e10c0d53db7fdfb02610b53f54046c0a9354b305ba05c5d00a43649a283a6449263f66ff56171d52cf18f906c6aeccc25dc48ea708b4b1bb2b8323b937abca96
 DIST youtube-dl-2017.12.23.tar.gz 2859430 BLAKE2B 
55d30e77e1689b221d554ea0fd6327b42043c9410f74ce35f87956dfbf3da986b254657ca4c71cd4c7bf8bbddb2477cdbd96caebd0d52803b14e5466ac43988a
 SHA512 
f8aa96e2cc328453abaaa84b9a0c0f28ea929a9c3877128d398ec5eb080b187bd01bcfc07ed590e84d1f58af00f0cbb219b4ac3f01045486c0472c6d707e4d9c
 DIST youtube-dl-2017.12.31.tar.gz 2872519 BLAKE2B 
cbf06f545f580d4bb3c5f58ea9a38291cdb358114787a93a1889e3c07c17fb2a832b7a25fecb6f92cdba8731fc32b9eed5ae4f5a52d0d6a103c3d3d4ef6b9ba5
 SHA512 
c6cd663627d2291c0eb6e1d711772f6640555d19f34533e1784cba4e6c983522db6dc3e44140dfcdad900db12024548bd5b16f89e60a5531538d7dcb36a8cd93
+DIST youtube-dl-2018.01.07.tar.gz 2877870 BLAKE2B 
8def952710c4500e251641b4ca458ba4810c84435c504ca44569211d3d762efe4a5086f12bf9edee0944b5894697e5be359abead41282f637bab83addbbf67cc
 SHA512 
ac5f603eb61b367fb26c07213f8350b1a305bad41a4d6beaa65f1568e6365e666818c67be35ce118de495bbdc980c9eb599b9273e7bb79f2e40dd23732d9a6fd

diff --git a/net-misc/youtube-dl/youtube-dl-2018.01.07.ebuild 
b/net-misc/youtube-dl/youtube-dl-2018.01.07.ebuild
new file mode 100644
index 000..db51a779b02
--- /dev/null
+++ b/net-misc/youtube-dl/youtube-dl-2018.01.07.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
+inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
+
+DESCRIPTION="Download videos from YouTube.com (and more sites...)"
+HOMEPAGE="https://rg3.github.com/youtube-dl/;
+SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+IUSE="+offensive test"
+
+RDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+   test? ( dev-python/nose[coverage(+)] )
+"
+
+S="${WORKDIR}/${PN}"
+
+python_prepare_all() {
+   if ! use offensive; then
+   sed -i -e "/..version../s|'$|+gentoo.no.offensive.sites'|g" \
+   youtube_dl/version.py || die
+   # these have single line import statements
+   local xxx=(
+   alphaporno anysex behindkink camwithher chaturbate 
eporner
+   eroprofile extremetube foxgay goshgay hellporno 
hentaistigma
+   hornbunny keezmovies lovehomeporn mofosex myvidster 
porn91 porncom
+   pornflip pornhd pornotube pornovoisines pornoxo 
ruleporn sexu
+   slutload spankbang spankwire sunporno thisav tube8 vporn
+   watchindianporn xbef xnxx xtube xvideos xxxymovies 
youjizz youporn
+   )
+   # these have multi-line import statements
+   local mxxx=(
+   drtuber fourtube motherless pornhub redtube tnaflix 
xhamster
+   )
+   # do single line imports
+   sed -i \
+   -e $( printf '/%s/d;' ${xxx[@]} ) \
+   youtube_dl/extractor/extractors.py \
+   || die
+
+   # do multiple line imports
+   sed -i \
+   -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
+   youtube_dl/extractor/extractors.py \
+   || die
+
+   sed -i \
+   -e $( printf '/%s/d;' ${mxxx[@]} ) \
+   youtube_dl/extractor/generic.py \
+   || die
+
+   rm \
+   $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \
+   $( printf 'youtube_dl/extractor/%s.py ' ${mxxx[@]} ) \
+   test/test_age_restriction.py \
+ 

[gentoo-commits] repo/gentoo:master commit in: app-admin/rsyslog/files/8-stable/, app-admin/rsyslog/

2018-01-11 Thread Thomas Deutschmann
commit: 4465542779449c4f6a7cdcff384b7f65b60eabfb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 11 17:42:04 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 11 17:42:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44655427

app-admin/rsyslog: Rev bump patch

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 ...out-curl.patch => rsyslog-8.32.0-fix-building-without-curl-r1.patch} | 2 +-
 app-admin/rsyslog/{rsyslog-8.32.0.ebuild => rsyslog-8.32.0-r1.ebuild}   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/app-admin/rsyslog/files/8-stable/rsyslog-8.32.0-fix-building-without-curl.patch
 
b/app-admin/rsyslog/files/8-stable/rsyslog-8.32.0-fix-building-without-curl-r1.patch
similarity index 98%
rename from 
app-admin/rsyslog/files/8-stable/rsyslog-8.32.0-fix-building-without-curl.patch
rename to 
app-admin/rsyslog/files/8-stable/rsyslog-8.32.0-fix-building-without-curl-r1.patch
index fa2f71939cc..2706b4b581a 100644
--- 
a/app-admin/rsyslog/files/8-stable/rsyslog-8.32.0-fix-building-without-curl.patch
+++ 
b/app-admin/rsyslog/files/8-stable/rsyslog-8.32.0-fix-building-without-curl-r1.patch
@@ -41,7 +41,7 @@ https://github.com/rsyslog/rsyslog/pull/2378
varFreeMembers([0]);
 +#else
 +  LogError(0, RS_RET_INTERNAL_ERROR,
-+  "rainerscript: internal error: HTTP_Fetch not 
supported, not built with libcurl support\n");
++  "rainerscript: internal error: HTTP_Fetch not 
supported, not built with libcurl support");
 +#endif
break;
default:

diff --git a/app-admin/rsyslog/rsyslog-8.32.0.ebuild 
b/app-admin/rsyslog/rsyslog-8.32.0-r1.ebuild
similarity index 99%
rename from app-admin/rsyslog/rsyslog-8.32.0.ebuild
rename to app-admin/rsyslog/rsyslog-8.32.0-r1.ebuild
index 41822ad7cfa..3dc7a42ded1 100644
--- a/app-admin/rsyslog/rsyslog-8.32.0.ebuild
+++ b/app-admin/rsyslog/rsyslog-8.32.0-r1.ebuild
@@ -48,7 +48,7 @@ else
doc? ( 
http://www.rsyslog.com/files/download/${PN}/${MY_URL_PREFIX}${PN}-doc-${MY_PV}.tar.gz
 -> ${MY_FILENAME_DOCS} )
"
 
-   PATCHES=( 
"${FILESDIR}"/8-stable/${PN}-8.32.0-fix-building-without-curl.patch )
+   PATCHES=( 
"${FILESDIR}"/8-stable/${PN}-8.32.0-fix-building-without-curl-r1.patch )
 fi
 
 LICENSE="GPL-3 LGPL-3 Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: app-admin/rsyslog/files/8-stable/, app-admin/rsyslog/

2018-01-11 Thread Thomas Deutschmann
commit: 2f79a874c6a43f1f5497d1eb5cb87c4fabead44c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 11 17:33:23 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 11 17:34:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f79a874

app-admin/rsyslog: Bump to v8.32.0

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-admin/rsyslog/Manifest |   2 +
 .../rsyslog-8.32.0-fix-building-without-curl.patch |  90 
 app-admin/rsyslog/metadata.xml |   2 +-
 app-admin/rsyslog/rsyslog-8.32.0.ebuild| 459 +
 4 files changed, 552 insertions(+), 1 deletion(-)

diff --git a/app-admin/rsyslog/Manifest b/app-admin/rsyslog/Manifest
index f1197093d3e..1c2e73a510a 100644
--- a/app-admin/rsyslog/Manifest
+++ b/app-admin/rsyslog/Manifest
@@ -7,6 +7,7 @@ DIST rsyslog-8.28.0.tar.gz 2471122 BLAKE2B 
48ed55cbf02eca22591c3d1d59db8f956e4d8
 DIST rsyslog-8.29.0.tar.gz 2447907 BLAKE2B 
dd3a34e4c1b4edc989d58369933b94b11d89c044ca81715062cebaacae5003463ed233f26358418651f63643bd6d7cdfb4f3192324d59d596c87480e37f40493
 SHA512 
6e0a69f2ac36fcfd0714b2b7053bd263ca8875d2aba7ad6452223eb8677edfa1cf4978989661614dd65dd1822f0123599d565679c8faa3960f136c8d9472e952
 DIST rsyslog-8.30.0.tar.gz 2468224 BLAKE2B 
3c5c94661abc2e34d688ca08d6dea0d2bcca9f287f45328a0d1b240bcb1b9223800207ce8759da823fa3acd974fcc70f01565f95fbcec108f8f71c7cb14a2409
 SHA512 
90e172d08ba7548252fc9744f71259dadf5a40afef405516e7b1601620913ca4b2ffc4859b16f369b9c1974ea10f4e41bc2d987e3d6bf9aabeb979f7de6aefe0
 DIST rsyslog-8.31.0.tar.gz 2498675 BLAKE2B 
8b80394ea3919dba29a431f3c5c1fc337a9e60a886a3c258c3895eb4341a941d8af6370ceb0d2e212934f64ab38c7238e99f40e1dc27e648bd4b75e158586a28
 SHA512 
aab888dda8df3ad7ff404767a58539cdc0bb92d0e537b703cf5833555688dd6d8223889b8d70bf8c594339a51831b57df7a65b397d8b40cded608dfb007befe7
+DIST rsyslog-8.32.0.tar.gz 2478990 BLAKE2B 
21bfc93b55da107bec2eddb89cb42d76990ced2675caeb6e73183a109f9bc8293bde43f202bb56007f9ea4e49de385b004c158059cb13e8d3d376bf050ca445a
 SHA512 
eea85d77bf3624fbad6f0838fa2a4af7c14d853c8f120f14cf697cdfda7f7e0692dab684d2ddd07fe44a0bcd50cf91baf69af1bb63dc9d60e19146f1150155ac
 DIST rsyslog-docs-8.19.0.tar.gz 4271094 BLAKE2B 
c866f66fc1ae9ef8c227a2e03bab4a815e408ccaafe9da97f8b6b6f6b89bb33d0c8a9e004552d5a1287a19bc8f3677517259a4f9bcebffbbeff506d80454945b
 SHA512 
120f229a641119649fc897948fb0934039a95d0ef63e68b10ab635620d84988d794fd5dc33617353028e786513a86b3a1cd0c4fef9c755dab5bedd8e0246532e
 DIST rsyslog-docs-8.24.0.tar.gz 4344877 BLAKE2B 
a3d9ea90580c3e24e3c40c07f871740cdf33ad4206627586bfb42523a758cbd18f5303f35f2fa036e492dece9a83d9c151b60023aed99f63c42ed8f9bf7da9f1
 SHA512 
b55cde1485a7baec6d4c4928107c22a078cf412a2994c0dfcbb12c47b49c3b263af8a64011b1329567cf86e04927b9e383581dc868eaea81d554adada6b3786b
 DIST rsyslog-docs-8.25.0.tar.gz 4359583 BLAKE2B 
349e057d3c94ca6fc92753459f8fca011927e82a787cc50685ebe1c5a40a624e4f74764b04cf00f5c250cd65eb6e2862d7225790cc029cd7256c072d63db1726
 SHA512 
e0068ec00bbda2d1cf7f14105ad83e82bea9291ed5d5fda3ffcff2db32747b65e7b6d65743a3221aeca03be9c6efcee1db7f03c2da115a3aed60848556befa71
@@ -16,3 +17,4 @@ DIST rsyslog-docs-8.28.0.tar.gz 4424901 BLAKE2B 
9753b1a48b9d3bb045f2d088de5df0bb
 DIST rsyslog-docs-8.29.0.tar.gz 4473644 BLAKE2B 
18fc4aea0551f1ad770cd882aaf512424f8d4fc9f00ba6c4c8e9bbbcb0ea4d4da4ba31c53bad23e28ed761e27e6378657b085cb0d72cebdc233ba25160023daa
 SHA512 
791633b93693c1eacde965e07ced863b96d1bfa488fc5c4770424825ab702cae7babd5286e552da5e17d1d7779f228c61a1527b9726dffea31bbb3b4e80525dc
 DIST rsyslog-docs-8.30.0.tar.gz 4487378 BLAKE2B 
7d39fc7642ec2122f254dd6660a13efa4b214ee669fe5772b4d68a8ce94ed5ac3ca2500c23b5752924b5befca2a66c228b6f2bb48c7b9f72a2a4b98e2a14810b
 SHA512 
8068bb9bb8408447bff49730e9aac105eab1bd610592dd524e7639b668b2d05a4836d3a9862622445a0bb8d8b140db67c861dad6ec207d11049ac368e363684d
 DIST rsyslog-docs-8.31.0.tar.gz 4484950 BLAKE2B 
8ee4346a095942133bb473509f275c625fdb4a1aa81293a15604bdb95670ff0676677fe5481be3bc2ea7097b2c8de7fd3b0eb8033701522b372bffe44325a10a
 SHA512 
51a63fa520d8176e183afa44ccf889374810dddfd5fdb363ed06b134bfbe0d1a94085e4836cf3bb2a07cb83564bbb87cef3763ac9429a5efc50aff276542defa
+DIST rsyslog-docs-8.32.0.tar.gz 5368254 BLAKE2B 
6d1efb191698bb1cfb03660167e5dcf9eea8f2fd2e459c350cd55aa24afcc5fb44d2bc0ef5590c6951326fbd0215aecbd59a6122e88ff449f566b37d1ee00d56
 SHA512 
e64eba3c40eab35e266826fb7e183418f38eb008f2a21ddf2c523d1e42aacaa20f882a561e5df67a979463048b58232fa82759645a21dc6962f6836ac8f57bce

diff --git 
a/app-admin/rsyslog/files/8-stable/rsyslog-8.32.0-fix-building-without-curl.patch
 
b/app-admin/rsyslog/files/8-stable/rsyslog-8.32.0-fix-building-without-curl.patch
new file mode 100644
index 000..fa2f71939cc
--- /dev/null
+++ 
b/app-admin/rsyslog/files/8-stable/rsyslog-8.32.0-fix-building-without-curl.patch
@@ -0,0 +1,90 @@
+https://github.com/rsyslog/rsyslog/pull/2378
+
+--- a/configure.ac
 b/configure.ac
+@@ -454,6 +454,8 

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

2018-01-11 Thread William Hubbs
commit: 8878f8916b7682a333d1e40af991cd7354192be1
Author: William Hubbs  gmail  com>
AuthorDate: Thu Jan 11 16:57:05 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Jan 11 16:57:05 2018 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=8878f891

Rename guide.md to user-guide.md to better describe its purpose

 guide.md => user-guide.md | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/guide.md b/user-guide.md
similarity index 100%
rename from guide.md
rename to user-guide.md



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

2018-01-11 Thread Mikle Kolyada
commit: 5610578f30164bbf7f1b6b600761b18f3c27fa55
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jan 11 16:33:43 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jan 11 16:33:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5610578f

profiles/package.mask: remove obsolete media-radio/wspr entry

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 29618600d3f..008307e8e8e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -626,12 +626,6 @@ net-misc/cocaine-core
 # Masked for removal on 2018-01-12
 app-arch/defluff
 
-# Thomas Beierlein  (10 Dec 2017)
-# Development stopped, nasty build system.
-# Functionality superseded by media-radio/wsjtx.
-# Masked for removal in 30 days.
-media-radio/wspr
-
 # Andreas Sturmlechner  (03 Dec 2017)
 # Depends on dead Qt4, upstream porting inquiry pending. Bug #631788
 games-kids/crayon-physics



[gentoo-commits] repo/gentoo:master commit in: media-radio/wspr/, media-radio/wspr/files/

2018-01-11 Thread Mikle Kolyada
commit: 04511491d5a38ec6c7912c47192d3bd68f00cec0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jan 11 16:28:57 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jan 11 16:28:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04511491

media-radio/wspr: remove last rited package

 media-radio/wspr/Manifest  |  2 -
 media-radio/wspr/files/wspr-2.00-PIL.patch | 13 
 media-radio/wspr/files/wspr-2.00-libdir.patch  | 53 --
 media-radio/wspr/files/wspr-2.00-script.patch  | 25 ---
 media-radio/wspr/files/wspr-2.00-verbose.patch | 12 
 media-radio/wspr/files/wspr-3.01-PIL.patch | 11 ---
 media-radio/wspr/files/wspr-3.01-numpy.patch   | 23 --
 media-radio/wspr/files/wspr-3.01-script.patch  | 19 -
 media-radio/wspr/files/wspr-3.01-verbose.patch | 12 
 media-radio/wspr/metadata.xml  |  8 ---
 media-radio/wspr/wspr-2.00-r2.ebuild   | 93 -
 media-radio/wspr/wspr-3.01-r1.ebuild   | 96 --
 media-radio/wspr/wspr-3.01.ebuild  | 94 -
 13 files changed, 461 deletions(-)

diff --git a/media-radio/wspr/Manifest b/media-radio/wspr/Manifest
deleted file mode 100644
index 9fd75ae94ff..000
--- a/media-radio/wspr/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST wspr-2.00.r1714.tgz 2096056 BLAKE2B 
09416a47ad9c1e9fd94216aff0eeb409cfbd9242c4d6331800ac50a13c952135ac48fc4ee427a32d8b1752aed4c03d7a310dc4bbf361074a8a970fc2124264ca
 SHA512 
221ca3c4ac433d5fb292830e183ef4ce44a9b0b31c8c1446faf30c1c2d6fe88cb471434c01126450843af49249e33bf6eccf1cbf839e6c5a09a3206c64a01d78
-DIST wspr-3.01.r2792.tgz 2145037 BLAKE2B 
bb87c4d95cd7266647714b4ff9def1bcf3f4fcd00d737e7d7fbbd9851fd861a59ab796465a32d5c54388fc6a7510fc17fbeeb979c926ea5fc365bac653e90711
 SHA512 
0aad8bf518b217fcf14fd0fd5ec0f8f3833c2768eff9eec20dee213dfd057dc283d81290a042f464c729e03502d3b8e1c2b22d5d1c2932eccc13b4ef1eaf0698

diff --git a/media-radio/wspr/files/wspr-2.00-PIL.patch 
b/media-radio/wspr/files/wspr-2.00-PIL.patch
deleted file mode 100644
index 69bb853396a..000
--- a/media-radio/wspr/files/wspr-2.00-PIL.patch
+++ /dev/null
@@ -1,13 +0,0 @@
 wspr.py.orig   2013-06-02 18:25:02.0 +0200
-+++ wspr.py2013-06-02 18:25:51.0 +0200
-@@ -15,7 +15,9 @@
- from Numeric import zeros
- import array
- import dircache
--import Image, ImageTk, ImageDraw
-+from PIL import Image
-+from PIL import ImageTk
-+from PIL import ImageDraw
- from WsprMod.palettes import colormapblue, colormapgray0, colormapHot, \
-  colormapAFMHot, colormapgray1, colormapLinrad, Colormap2Palette
- from types import *

diff --git a/media-radio/wspr/files/wspr-2.00-libdir.patch 
b/media-radio/wspr/files/wspr-2.00-libdir.patch
deleted file mode 100644
index e33d7b90871..000
--- a/media-radio/wspr/files/wspr-2.00-libdir.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-# Upstream confused LIBDIRS with LDFLAGS in Makefile. f2py wants only
-# LIBDIRS as parameter and takes LDFLAGS only from environment.
 Makefile.in.orig   2013-01-31 13:17:23.0 +
-+++ Makefile.in2013-01-31 13:19:19.0 +
-@@ -3,7 +3,7 @@
- INSTALL=  install
- CC ?= @CC@
- FFLAGS= @FFLAGS@
--LDFLAGS   = @LDFLAGS@
-+LIBDIRS   = @LIBDIRS@
- LIBS  = @LIBS@ -lfftw3f
- CPPFLAGS = @CPPFLAGS@
- CFLAGS= @CFLAGS@
-@@ -39,7 +39,7 @@
- FCV=@FCV@
- FC_LIB_PATH   += @FC_LIB_PATH@
- 
--LDFLAGS   += -L${FC_LIB_PATH}
-+LIBDIRS   += -L${FC_LIB_PATH}
- 
- PYTHON?= @PYTHON@
- RM?= @RM@
-@@ -78,7 +78,7 @@
-   --f77flags="${FFLAGS}" --f90flags="${FFLAGS}" \
-   --fcompiler=${FCV} --f77exec=${FC} --f90exec=${FC} \
-   --opt="-fbounds-check ${FFLAGS}" \
--  ${CPPFLAGS} ${LDFLAGS} ${LIBS} \
-+  ${CPPFLAGS} ${LIBDIRS} ${LIBS} \
-   only: $(F2PYONLY) : \
-   $(SRCS2F90) $(SRCS2F77) $(SRCS2C)
-   ${MKDIR} -p build/lib/WsprMod
-# drop hardcoded libdir path,
-# switch LDFLAGS naming to LIBDIRS (see above comment).
 configure.ac.orig  2013-01-31 13:19:01.0 +
-+++ configure.ac   2013-01-31 13:19:19.0 +
-@@ -22,7 +22,7 @@
- 
- dnl Lets guess at some likely places for extra libs/includes XXX -db
- CPPFLAGS="-I/usr/local/include ${CPPFLAGS}"
--LDFLAGS="-L/usr/local/lib ${LDFLAGS}"
-+LIBDIRS="-L/usr/local/lib ${LIBDIRS}"
- LIBS=" -lpthread ${LIBS}"
- FFLAGS_GFORTRAN="${FFLAGS} -fno-range-check -ffixed-line-length-none\
-   -Wall -fbounds-check -fno-second-underscore -fPIC"
-@@ -160,7 +160,7 @@
- dnl 
- AC_SUBST(PREFIX, "${prefix}")
- AC_SUBST(CPPFLAGS, "${CPPFLAGS}")
--AC_SUBST(LDFLAGS, "${LDFLAGS}")
-+AC_SUBST(LIBDIRS, "${LIBDIRS}")
- AC_SUBST(LIBS, "${LIBS}")
- AC_SUBST(CFLAGS)
- AC_SUBST(FFLAGS)

diff --git a/media-radio/wspr/files/wspr-2.00-script.patch 
b/media-radio/wspr/files/wspr-2.00-script.patch
deleted file mode 100644
index e75c1178278..000

[gentoo-commits] data/api:master commit in: files/overlays/

2018-01-11 Thread Michał Górny
commit: 1a6f19413404cdf5f02535a62fd188ef974db1c1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 11 16:18:06 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 11 16:18:06 2018 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=1a6f1941

repositories: Remove netcrave due to repo being removed

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

 files/overlays/repositories.xml | 13 -
 1 file changed, 13 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 9c9af23..23c1d62 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -3109,19 +3109,6 @@ FIN
 https://bitbucket.org/neko259/nektoo/rss
   
   
-netcrave
-Netcrave Communications Gentoo Overlay
-https://github.com/cloudkitsch/netcrave
-
-  paigead...@gmail.com
-  Paige Thompson
-
-https://github.com/cloudkitsch/netcrave.git
-git://github.com/cloudkitsch/netcrave.git
-g...@github.com:cloudkitsch/netcrave.git
-https://github.com/cloudkitsch/netcrave/commits/master.atom
-  
-  
 nextoo
 Nextoo ("Next Gentoo") overlay
 https://github.com/nextoo/portage-overlay



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

2018-01-11 Thread Mikle Kolyada
commit: 4fd475cd5b00f2e02eb9c8bd3c1345602d66b521
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jan 11 16:15:25 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jan 11 16:15:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd475cd

app-editors/qhexedit2: install editor by default

Closes: https://bugs.gentoo.org/644014
Package-Manager: Portage-2.3.13, Repoman-2.3.3

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

diff --git a/app-editors/qhexedit2/qhexedit2-0.8.4.ebuild 
b/app-editors/qhexedit2/qhexedit2-0.8.4.ebuild
index 07dccd9847e..1de535b4cde 100644
--- a/app-editors/qhexedit2/qhexedit2-0.8.4.ebuild
+++ b/app-editors/qhexedit2/qhexedit2-0.8.4.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/lancos/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="doc gui python"
+IUSE="doc +gui python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 PATCHES=(



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

2018-01-11 Thread Michał Górny
commit: 5ef2e9167c4b021a5268767952d4e6f53e0d66d4
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 11 16:03:40 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 11 16:05:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef2e916

net-libs/libbtbb: Remove unused local USE description

 net-libs/libbtbb/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-libs/libbtbb/metadata.xml b/net-libs/libbtbb/metadata.xml
index f8987771de3..810dd5222c3 100644
--- a/net-libs/libbtbb/metadata.xml
+++ b/net-libs/libbtbb/metadata.xml
@@ -7,7 +7,6 @@


Install pcapdump and btaptap tools
-   Add support for network packet capture via 
net-libs/libpcap
Build the wireshark plugins for 
bluetooth baseband sniffing





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

2018-01-11 Thread Michał Górny
commit: 26cba9895716c8dd9462241105d96c440678ecff
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 11 16:01:26 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 11 16:02:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26cba989

net-libs/libbtbb: Clean the old version up

Remove the old version that is impossible to install due to requirement
on net-analyzer/wireshark versions that are no longer present
in ::gentoo.

 net-libs/libbtbb/Manifest |   1 -
 net-libs/libbtbb/libbtbb-2015.10.1.ebuild | 132 --
 2 files changed, 133 deletions(-)

diff --git a/net-libs/libbtbb/Manifest b/net-libs/libbtbb/Manifest
index c62b1b24f01..faa70bb24b2 100644
--- a/net-libs/libbtbb/Manifest
+++ b/net-libs/libbtbb/Manifest
@@ -1,2 +1 @@
-DIST libbtbb-2015-10-R1.tar.gz 221859 BLAKE2B 
ee24849f85b4ec1d0eac0c6779bb30074e7544dd07eea4591db5503322f4ce238bd5817900665def51b36b533d360ca7b0d2cf1464643d4a25a897fb1fb5fa86
 SHA512 
550d793326cfb4d31ed00d46faf3521ccafc133614f866961ba6226dff41d3deda428b45f01178e0dea7925635a64e843f0510049408c3f299ad427f2c0832ac
 DIST libbtbb-2017-03-R2.tar.gz 303689 BLAKE2B 
d36cf5329fb31cd50f64e3a9b625ebca8bf198794073480baa4f64935f4bef183e4c11f0844cd31df943da98c778bdea807fbd91676c23a3a2f830af5e7a185f
 SHA512 
bb7b58a33198fd64fba5f0254cfbb71120c70476d594a7aaf82c77f770d1a6e89b4571f42d3d15c1d93d5246c9145c33ba8724a5ee5ad84e96f748d9f32275b5

diff --git a/net-libs/libbtbb/libbtbb-2015.10.1.ebuild 
b/net-libs/libbtbb/libbtbb-2015.10.1.ebuild
deleted file mode 100644
index 7734344c353..000
--- a/net-libs/libbtbb/libbtbb-2015.10.1.ebuild
+++ /dev/null
@@ -1,132 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multilib cmake-utils
-
-DESCRIPTION="A library to decode Bluetooth baseband packets"
-HOMEPAGE="http://libbtbb.sourceforge.net/;
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://github.com/greatscottgadgets/libbtbb.git;
-   inherit git-r3
-   KEYWORDS=""
-else
-   MY_PV=${PV/\./-}
-   MY_PV=${MY_PV/./-R}
-   S=${WORKDIR}/${PN}-${MY_PV}
-   
SRC_URI="https://github.com/greatscottgadgets/${PN}/archive/${MY_PV}.tar.gz -> 
${PN}-${MY_PV}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0/${PV}"
-IUSE="+pcap +wireshark-plugins"
-
-RDEPEND="
-   pcap? ( net-libs/libpcap )
-   wireshark-plugins? (
-   >=net-analyzer/wireshark-1.8.3-r1:=
-   !>net-analyzer/wireshark-1.98
-   )
-"
-DEPEND="${RDEPEND}
-   wireshark-plugins? ( dev-libs/glib
-   virtual/pkgconfig )"
-
-get_PV() { local pv=$(best_version $1); pv=${pv#$1-}; pv=${pv%-r*}; 
pv=${pv//_}; echo ${pv}; }
-
-which_plugins() {
-   if has_version '>=net-analyzer/wireshark-1.12.0'; then
-   plugins="btbb btbredr"
-   elif has_version '

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

2018-01-11 Thread Michał Górny
commit: c29437da9db96109bcc702165d2771afc68c4ff2
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 11 15:58:40 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 11 16:02:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c29437da

app-office/impressive: Drop the completely broken stable version

Remove the old version that is broken for over a year. This version
blocks dev-python/pillow >= 3 while the last version older than that
was removed 1 Jan 2017. Given there were no bug reported about this
uninstallable package for over a year, just drop the package altogether
to ~arch.

 app-office/impressive/Manifest |  1 -
 app-office/impressive/impressive-0.10.5.ebuild | 47 --
 2 files changed, 48 deletions(-)

diff --git a/app-office/impressive/Manifest b/app-office/impressive/Manifest
index 01894d7e827..610edb144c3 100644
--- a/app-office/impressive/Manifest
+++ b/app-office/impressive/Manifest
@@ -1,3 +1,2 @@
-DIST Impressive-0.10.5.tar.gz 166707 BLAKE2B 
2d5ef9d05d82a22af037fda0e0b01252d513ee0686f9ab21f1d24cf86b4e0a5043aaf7f16b3d9d8a6773b110f716948c184a058845d7595155a40410821c8ccf
 SHA512 
3939188d45ac7a617a56be72e72c98923c23073bee2c3c1b7b81fc2e26ce415ceffdf5456d754f921e488181d8edb7df96ad90e6923b2425c49e38da75c02f20
 DIST Impressive-0.11.0b.tar.gz 195138 BLAKE2B 
daa8e7bc17ec028a9c858688182a4cd6426004aaec24b7ea1574cd415a7f43f0d8a0ae43b01089d66a66c16b316439454341a3f6c2d366768a351ba2fff85b93
 SHA512 
c4038ed7b71ac79078922ee0e24ce3bef4b0384d8d468291f0283266fe8a849825f5798ec1260e40ac12659a8a7cf5325e3aca0e2475b1c483d3ce830f4bc70f
 DIST Impressive-0.11.2.tar.gz 198391 BLAKE2B 
e0157a910b61c7dbe0796193b3d18f533210de50568d835e5204a848a5ac4978ab228b633d5137fb068af09a88d0c50fc2dbbb02b9b0d1a32a99f9de220ac1de
 SHA512 
cabb52612f65ddadfb080e3db6417680a1aa9724fe45d8b78a1206b6508a8b60c5e5a7c218ff0f90e62adcd498aabe625837164fc547604dfd7aba425db87dd6

diff --git a/app-office/impressive/impressive-0.10.5.ebuild 
b/app-office/impressive/impressive-0.10.5.ebuild
deleted file mode 100644
index 11c6b3ca49d..000
--- a/app-office/impressive/impressive-0.10.5.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-r1
-
-MY_PN="Impressive"
-
-DESCRIPTION="Stylish way of giving presentations with Python"
-HOMEPAGE="http://impressive.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${MY_PN}/${PV}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${PYTHON_DEPS}
-   !>=dev-python/pillow-3.0.0
-   app-text/pdftk
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pygame[${PYTHON_USEDEP}]
-   dev-python/pyopengl[${PYTHON_USEDEP}]
-   x11-misc/xdg-utils
-   x11-apps/xrandr
-   app-text/ghostscript-gpl
-   || ( media-fonts/dejavu media-fonts/corefonts )"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-S=${WORKDIR}/${MY_PN}-${PV}
-
-src_install() {
-   python_foreach_impl python_doscript ${PN}.py
-
-   # compatibility symlinks
-   dosym impressive.py /usr/bin/impressive
-   dosym impressive.py /usr/bin/keyjnote
-
-   # docs
-   doman impressive.1
-   dohtml impressive.html
-   dodoc changelog.txt demo.pdf
-}



[gentoo-commits] repo/gentoo:master commit in: app-office/impressive/, profiles/releases/17.0/

2018-01-11 Thread Michał Górny
commit: 54af5fe4bdde36aa5603ee12b47d5f28474517be
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 11 15:59:32 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 11 16:02:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54af5fe4

app-office/impressive: Clean old up

 app-office/impressive/Manifest |  1 -
 app-office/impressive/impressive-0.11.0b-r1.ebuild | 64 --
 profiles/releases/17.0/package.mask|  3 +-
 3 files changed, 1 insertion(+), 67 deletions(-)

diff --git a/app-office/impressive/Manifest b/app-office/impressive/Manifest
index 610edb144c3..71903474d05 100644
--- a/app-office/impressive/Manifest
+++ b/app-office/impressive/Manifest
@@ -1,2 +1 @@
-DIST Impressive-0.11.0b.tar.gz 195138 BLAKE2B 
daa8e7bc17ec028a9c858688182a4cd6426004aaec24b7ea1574cd415a7f43f0d8a0ae43b01089d66a66c16b316439454341a3f6c2d366768a351ba2fff85b93
 SHA512 
c4038ed7b71ac79078922ee0e24ce3bef4b0384d8d468291f0283266fe8a849825f5798ec1260e40ac12659a8a7cf5325e3aca0e2475b1c483d3ce830f4bc70f
 DIST Impressive-0.11.2.tar.gz 198391 BLAKE2B 
e0157a910b61c7dbe0796193b3d18f533210de50568d835e5204a848a5ac4978ab228b633d5137fb068af09a88d0c50fc2dbbb02b9b0d1a32a99f9de220ac1de
 SHA512 
cabb52612f65ddadfb080e3db6417680a1aa9724fe45d8b78a1206b6508a8b60c5e5a7c218ff0f90e62adcd498aabe625837164fc547604dfd7aba425db87dd6

diff --git a/app-office/impressive/impressive-0.11.0b-r1.ebuild 
b/app-office/impressive/impressive-0.11.0b-r1.ebuild
deleted file mode 100644
index 3cda43ee2c7..000
--- a/app-office/impressive/impressive-0.11.0b-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-r1
-
-MY_PN="Impressive"
-
-DESCRIPTION="Stylish way of giving presentations with Python"
-HOMEPAGE="http://impressive.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${MY_PN}/${PV%b}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${PYTHON_DEPS}
-   app-text/pdftk
-   dev-python/pygame[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   x11-apps/xrandr
-   || (
-   app-text/mupdf
-   app-text/poppler
-   app-text/ghostscript-gpl
-   )
-   || ( media-fonts/dejavu media-fonts/corefonts )"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-S=${WORKDIR}/${MY_PN}-${PV}
-
-src_prepare() {
-   sed \
-   -e 's:tostring:tobytes:g' \
-   -i impressive.py || die
-}
-
-src_install() {
-   python_foreach_impl python_doscript ${PN}.py
-
-   # compatibility symlinks
-   dosym impressive.py /usr/bin/impressive
-   dosym impressive.py /usr/bin/keyjnote
-
-   # docs
-   doman impressive.1
-   dohtml impressive.html
-   dodoc changelog.txt demo.pdf
-}
-
-pkg_postinst() {
-   elog "The experience with ${PN} can be enhanced by folowing packages:"
-   optfeature "Starting web or e-mail hyperlinks from PDF documents" 
x11-misc/xdg-utils
-   optfeature "Sound and video playback" media-video/mplayer
-   optfeature "Sound and video playback" media-video/mplayer2
-   optfeature "Alternate PDF rendering" app-text/mupdf
-   optfeature "Alternate PDF rendering" app-text/poppler
-   optfeature "Alternate PDF rendering" app-text/ghostscript-gpl
-}

diff --git a/profiles/releases/17.0/package.mask 
b/profiles/releases/17.0/package.mask
index 8aaf881e171..bfd1649459c 100644
--- a/profiles/releases/17.0/package.mask
+++ b/profiles/releases/17.0/package.mask
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 # Andreas K. Huettel  (27 May 2017)
@@ -23,4 +23,3 @@ dev-java/gcj-jdk
 # The following packages require pdftk and are therefore
 # masked in the 17.0 profiles.
 app-office/auto-multiple-choice
-

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

2018-01-11 Thread Jeroen Roovers
commit: d37b253c365861fae13a8bd661d22d4de2db052a
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jan 11 15:54:49 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jan 11 15:55:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d37b253c

www-client/opera: Old.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 www-client/opera/Manifest  |   1 -
 www-client/opera/opera-49.0.2725.64.ebuild | 109 -
 2 files changed, 110 deletions(-)

diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest
index b5557a29237..fe1f105f308 100644
--- a/www-client/opera/Manifest
+++ b/www-client/opera/Manifest
@@ -2,6 +2,5 @@ DIST opera-12.16-1860.amd64.freebsd.tar.xz 13312684 BLAKE2B 
2c4cd52a07999c5beabe
 DIST opera-12.16-1860.i386.freebsd.tar.xz 13385696 BLAKE2B 
35fef5a5d1784941ce11ff3fed440d9c8f83ce5f9a0a8aad3f68deb470a7d82accfe7c9c93be225b458c0fc8e738ca7841d3d14abcaa201801321f3280f2b58f
 SHA512 
0bb2c0548765ea476cdb8be6c84faf1d60dddb5a2c08b7312027f4cd17fa8ebd4fbc1a97657bbcb0ac07733e5f3b340b181a307a778c38543140adbfe7f8b844
 DIST opera-12.16-1860.i386.linux.tar.xz 13154668 BLAKE2B 
7f9ef54f44bc143c13173bce92543351c39288058455baf3fde19f9f8766c9acd72971216c8c340fd89e918f18e89320eb8d13c4be9ec71635e2073c94c90067
 SHA512 
a13ec53311e3e78f35103a9dd5337c0e9a555362860213080211ee9d21de88fbd6aae03bed20b7515874d5a09dfbab108954213745fb82175f5e48e555152613
 DIST opera-12.16-1860.x86_64.linux.tar.xz 14018800 BLAKE2B 
e0cb727ea79868d1c3c692d445fc8949f554c3bbe2bf3c9f222885891458cab7af1a29096cd3caf6936e83068841dda4bff5b8a17eb55a86bebe39ce2b270183
 SHA512 
c1289f352ea5fc8133b105771f48fdc56ccd770920330b1a0ed939ff909abc68081447673572eabeb1aae6db5194b6ab35c93afad78a91d8f7a9a0f91e81ef8b
-DIST opera-stable_49.0.2725.64_amd64.deb 51396110 BLAKE2B 
30bb45495f444bc0a7dfa0c7c72a72ce9d586a1218bd54ac7485db06fb23f48ab5f50ca21ff76ef8fbf3ae1b86344f283b0972c6b645131a8cbb24a9d22ad055
 SHA512 
52ce18e0f7ac53b1c17997859dd358576b8798d144cb090fb628eeedb0076a130735488474da47c0d40ec1eb4d1429c76a43c8d2fb7bd64803bed74de87a5d5a
 DIST opera-stable_50.0.2762.45_amd64.deb 52047204 BLAKE2B 
61bf2a04621a0cf27f9f73c61e7546544de57939ef29aa4e3b35f2f87cddeeb0ad3a9bcb3e1f2abe549cb5cd39618995c3a6a510a5cca84c70b92df9aa3c669b
 SHA512 
33e2cc771e56c6cba40b7c9d8565f1fdfadc3b87bdccabc29015a879b89e64c5e6dc4c1232831c49be39c974a9f9bc367aaea9ef075320254a2cc141fd3bd5b0
 DIST opera-stable_50.0.2762.58_amd64.deb 52204642 BLAKE2B 
e06e3118b4e4b5b810aa9c62795dfcd4564edcd50fea95239c92a0d74fd7034f187d0c4ed0e31d7eab106786b50b8989fd77f3701372e7906dd76dea42a6f601
 SHA512 
14892a66bbd688bef8ed7b36f5bc7a6e2a9fe6d07356a093981f000bb81eb853ae18efd10c019bff9b52005542f7e15946fe7b54295bb6fbf513352899170081

diff --git a/www-client/opera/opera-49.0.2725.64.ebuild 
b/www-client/opera/opera-49.0.2725.64.ebuild
deleted file mode 100644
index aead2f06e72..000
--- a/www-client/opera/opera-49.0.2725.64.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB es-419 es fil fi fr-CA fr hi hr hu id it 
ja
-   ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi 
zh-CN
-   zh-TW
-"
-inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="http://www.opera.com/;
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="
-   http://download1.operacdn.com/pub/
-   http://download2.operacdn.com/pub/
-   http://download3.operacdn.com/pub/
-   http://download4.operacdn.com/pub/
-"
-for uri in ${SRC_URI_BASE}; do
-SRC_URI+="
-   "${uri}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb"
-"
-done
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-OPERA_HOME="usr/$(get_libdir)/${PN}"
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   esac
-
-   rm usr/bin/${PN} || die
-
-   rm usr/share/doc/${PN}-stable/copyright || die
-   mv 

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

2018-01-11 Thread Jeroen Roovers
commit: 3c98b389bda7eac4b99d10c7ba7d3a6e01fb7e1b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jan 11 15:58:00 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jan 11 15:58:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c98b389

www-client/opera-beta: Old.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 www-client/opera-beta/Manifest |   1 -
 .../opera-beta/opera-beta-50.0.2762.42.ebuild  | 114 -
 2 files changed, 115 deletions(-)

diff --git a/www-client/opera-beta/Manifest b/www-client/opera-beta/Manifest
index b1c11b81f70..95c3d76742f 100644
--- a/www-client/opera-beta/Manifest
+++ b/www-client/opera-beta/Manifest
@@ -1,2 +1 @@
-DIST opera-beta_50.0.2762.42_amd64.deb 52060614 BLAKE2B 
a27ec203f1b9b38f3ec21385ac54281c4d4b162a5c1b5d7e3f61fbaf7b472b1c1a9b9d40b142d75f4411c90807de6e395f9ef0569137b22bab6057fb06e50c67
 SHA512 
fa89268fafff3bc484f4b1031a8ade09efa90b53f20651a110468e07ae03008fa48b7c9177cde905c65d4e2eb566fa9f9c1284f70d737fdacc37d7a8d67cd1db
 DIST opera-beta_51.0.2830.2_amd64.deb 52241246 BLAKE2B 
5d3430c78a31d1ea24a4ba6a0340ccdbe795f7100c34a261bf771720d0e72a402370b844757dd87fcce95b5816640936b33b9bf3c9fb6a14e098806fd6d4ae1e
 SHA512 
9a1db683ddd72c8f0d8d7b4fad09b1dda2efe3a9734f440109e5701b3cbc0f8f64de62eb86e2f793ffb49928f269cba82093236a771590921db9eaa3ece4d587

diff --git a/www-client/opera-beta/opera-beta-50.0.2762.42.ebuild 
b/www-client/opera-beta/opera-beta-50.0.2762.42.ebuild
deleted file mode 100644
index 96ac80993a4..000
--- a/www-client/opera-beta/opera-beta-50.0.2762.42.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB es-419 es fil fi fr-CA fr hi hr hu id it
-   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
-   zh-CN zh-TW
-"
-inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="http://www.opera.com/;
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="
-   http://download1.operacdn.com/pub/
-   http://download2.operacdn.com/pub/
-   http://download3.operacdn.com/pub/
-   http://download4.operacdn.com/pub/
-"
-SRC_URI="amd64? ("
-for uri in ${SRC_URI_BASE}; do
-SRC_URI+="
-   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
-"
-done
-SRC_URI+=")"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-OPERA_HOME="usr/$(get_libdir)/${PN}"
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   x86)
-   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
-   ;;
-   esac
-
-   rm usr/bin/${PN} || die
-
-   rm usr/share/doc/${PN}/copyright || die
-   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
-
-   pushd "${OPERA_HOME}/localization" > /dev/null || die
-   chromium_remove_language_paks
-   popd > /dev/null || die
-
-   sed -i \
-   -e 's|^TargetEnvironment|X-&|g' \
-   usr/share/applications/${PN}.desktop || die
-}
-
-src_install() {
-   mv * "${D}" || die
-   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
-   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-}



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

2018-01-11 Thread Jeroen Roovers
commit: 31219983dde03c24c7933c2e5224a5dfb767edfd
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jan 11 15:57:33 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jan 11 15:57:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31219983

www-client/opera-beta: Version 51.0.2830.2.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 www-client/opera-beta/Manifest |   1 +
 .../opera-beta/opera-beta-51.0.2830.2.ebuild   | 114 +
 2 files changed, 115 insertions(+)

diff --git a/www-client/opera-beta/Manifest b/www-client/opera-beta/Manifest
index 21900ae2f02..b1c11b81f70 100644
--- a/www-client/opera-beta/Manifest
+++ b/www-client/opera-beta/Manifest
@@ -1 +1,2 @@
 DIST opera-beta_50.0.2762.42_amd64.deb 52060614 BLAKE2B 
a27ec203f1b9b38f3ec21385ac54281c4d4b162a5c1b5d7e3f61fbaf7b472b1c1a9b9d40b142d75f4411c90807de6e395f9ef0569137b22bab6057fb06e50c67
 SHA512 
fa89268fafff3bc484f4b1031a8ade09efa90b53f20651a110468e07ae03008fa48b7c9177cde905c65d4e2eb566fa9f9c1284f70d737fdacc37d7a8d67cd1db
+DIST opera-beta_51.0.2830.2_amd64.deb 52241246 BLAKE2B 
5d3430c78a31d1ea24a4ba6a0340ccdbe795f7100c34a261bf771720d0e72a402370b844757dd87fcce95b5816640936b33b9bf3c9fb6a14e098806fd6d4ae1e
 SHA512 
9a1db683ddd72c8f0d8d7b4fad09b1dda2efe3a9734f440109e5701b3cbc0f8f64de62eb86e2f793ffb49928f269cba82093236a771590921db9eaa3ece4d587

diff --git a/www-client/opera-beta/opera-beta-51.0.2830.2.ebuild 
b/www-client/opera-beta/opera-beta-51.0.2830.2.ebuild
new file mode 100644
index 000..308b38bc8be
--- /dev/null
+++ b/www-client/opera-beta/opera-beta-51.0.2830.2.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CHROMIUM_LANGS="
+   be bg bn ca cs da de el en-GB es-419 es fil fi fr-CA fr hi hr hu id it
+   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
+   zh-CN zh-TW
+"
+inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="http://www.opera.com/;
+LICENSE="OPERA-2014"
+SLOT="0"
+SRC_URI_BASE="
+   http://download1.operacdn.com/pub/
+   http://download2.operacdn.com/pub/
+   http://download3.operacdn.com/pub/
+   http://download4.operacdn.com/pub/
+"
+SRC_URI="amd64? ("
+for uri in ${SRC_URI_BASE}; do
+SRC_URI+="
+   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
+"
+done
+SRC_URI+=")"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:2
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/libnotify
+   x11-libs/pango[X]
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+OPERA_HOME="usr/$(get_libdir)/${PN}"
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   case ${ARCH} in
+   amd64)
+   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
+   rm -r usr/lib || die
+   ;;
+   x86)
+   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
+   ;;
+   esac
+
+   rm usr/bin/${PN} || die
+
+   rm usr/share/doc/${PN}/copyright || die
+   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
+
+   pushd "${OPERA_HOME}/localization" > /dev/null || die
+   chromium_remove_language_paks
+   popd > /dev/null || die
+
+   sed -i \
+   -e 's|^TargetEnvironment|X-&|g' \
+   usr/share/applications/${PN}.desktop || die
+}
+
+src_install() {
+   mv * "${D}" || die
+   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
+   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}



  1   2   >