[gentoo-commits] repo/gentoo:master commit in: sci-electronics/klayout/

2018-04-14 Thread Hans de Graaff
commit: 713dc8a7cd0f260697b8690011e5484c4c688c60
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr 14 07:28:25 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr 14 07:28:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=713dc8a7

sci-electronics/klayout: update to ruby23

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sci-electronics/klayout/klayout-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-electronics/klayout/klayout-.ebuild 
b/sci-electronics/klayout/klayout-.ebuild
index ccd9abcc8ee..36878996ad6 100644
--- a/sci-electronics/klayout/klayout-.ebuild
+++ b/sci-electronics/klayout/klayout-.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 RUBY_OPTIONAL=no
-USE_RUBY="ruby22"
+USE_RUBY="ruby23"
 # note: define maximally ONE implementation here
 
 PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )



[gentoo-commits] repo/gentoo:master commit in: dev-libs/check/files/, dev-libs/check/

2018-04-14 Thread Pacho Ramos
commit: 812ed593f07a3c6518b7ccaa4e5acc156fc07d5d
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 08:13:35 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 08:13:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=812ed593

dev-libs/check: Fix tests (#648920 by ernsteiswuerfel)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-libs/check/check-0.12.0.ebuild | 18 +++---
 dev-libs/check/files/check-0.12.0-fp.patch | 22 ++
 2 files changed, 33 insertions(+), 7 deletions(-)

diff --git a/dev-libs/check/check-0.12.0.ebuild 
b/dev-libs/check/check-0.12.0.ebuild
index acde41e304b..25d0f16bf8a 100644
--- a/dev-libs/check/check-0.12.0.ebuild
+++ b/dev-libs/check/check-0.12.0.ebuild
@@ -15,14 +15,18 @@ KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc 
~ppc64 ~s390 ~sh spa
 IUSE="static-libs subunit"
 
 RDEPEND="
-   subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )"
-
-DEPEND="
-   ${RDEPEND}
+   subunit? ( >=dev-python/subunit-0.0.10-r1[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}
sys-apps/texinfo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog NEWS README.md THANKS TODO )
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   # Fix test failures due to varying floating point behavior across 
platforms
+   # (#648920), patch from Fedora.
+   "${FILESDIR}/${PN}-0.12.0-fp.patch"
+)
 
 pkg_setup() {
# See multilib_src_test(), disable sleep()-based tests because they

diff --git a/dev-libs/check/files/check-0.12.0-fp.patch 
b/dev-libs/check/files/check-0.12.0-fp.patch
new file mode 100644
index 000..7907df989a1
--- /dev/null
+++ b/dev-libs/check/files/check-0.12.0-fp.patch
@@ -0,0 +1,22 @@
+--- a/tests/check_check_master.c.orig  2018-01-29 20:33:55.033001412 -0700
 b/tests/check_check_master.c   2018-01-29 20:34:31.501879454 -0700
+@@ -214,7 +214,7 @@ static master_test_t master_tests[] = {
+   { "Simple Tests", "test_ck_assert_ldouble_ge", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'x >= y' failed: x == 2.5, y == 3" },
+   { "Simple Tests", "test_ck_assert_ldouble_ge_with_mod", CK_FAILURE, 
CK_MSG_TEXT, "Assertion '2%d >= 3%f' failed: 2%d == 0, 3%f == 1" },
+   { "Simple Tests", "test_ck_assert_ldouble_with_expr", CK_PASS, CK_MSG_TEXT, 
"Passed" },
+-  { "Simple Tests", "test_ck_assert_ldouble_eq_tol", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'fabsl(y - x) < t' failed: x == 0.001, y == 0.002, t == 0.001" },
++  { "Simple Tests", "test_ck_assert_ldouble_eq_tol", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'fabsl(y - x) < t' failed: x == 0.001, y == 0.002, t == 0.0009" },
+   { "Simple Tests", "test_ck_assert_ldouble_eq_tol_with_mod", CK_FAILURE, 
CK_MSG_TEXT, "Assertion 'fabsl(2%f - 3%d) < 2%p' failed: 3%d == 1, 2%f == 0, 
2%p == 0" },
+   { "Simple Tests", "test_ck_assert_ldouble_ne_tol", CK_FAILURE, CK_MSG_TEXT, 
"Assertion 'fabsl(y - x) >= t' failed: x == 0.001, y == 0.002, t == 0.01" },
+   { "Simple Tests", "test_ck_assert_ldouble_ne_tol_with_mod", CK_FAILURE, 
CK_MSG_TEXT, "Assertion 'fabsl(3%f - 3%d) >= 3%p' failed: 3%d == 1, 3%f == 1, 
3%p == 1" },
+--- a/tests/check_check_sub.c.orig 2017-10-20 06:44:10.0 -0600
 b/tests/check_check_sub.c  2018-01-29 20:33:55.034001409 -0700
+@@ -1812,7 +1812,7 @@ START_TEST(test_ck_assert_ldouble_eq_tol
+   y*=10.0l;
+   t*=10.0l;
+   ck_assert_ldouble_eq_tol(x, y, t);
+-  t/=10.0l;
++  t=0.0009l;
+   record_failure_line_num(__LINE__);
+   ck_assert_ldouble_eq_tol(x, y, t);
+ }



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

2018-04-14 Thread Jeroen Roovers
commit: 0e6e01c9c8acaadb67f1bffa777ba2269875f166
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Apr 14 08:16:27 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Apr 14 08:17:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e6e01c9

www-client/vivaldi-snapshot: Old.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 www-client/vivaldi-snapshot/Manifest   |   3 -
 .../vivaldi-snapshot-1.15.1146.5_p1.ebuild | 118 -
 2 files changed, 121 deletions(-)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 678a1d32e81..245577ab5c6 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -1,6 +1,3 @@
-DIST vivaldi-snapshot-1.15.1146.5_p1-amd64.deb 53898132 BLAKE2B 
13aa11a14e60b4a793b59f6860d34675b47f59de6ccc6393d2cac5ae38150bed776c91a4ca62c0a1020b305449bfad73b925402b3f8fb664d30d9b495bf87fed
 SHA512 
7cb97be022dd0f2345b5e1767b267c6868099cd354693143cae1f0f9c628d2d4c3efdca2e4eec0b59bbae747377c4022ffe5007745029321bcc97e6775bbc6e7
-DIST vivaldi-snapshot-1.15.1146.5_p1-armhf.deb 47677218 BLAKE2B 
b63d6941e71f61683430860aa1b1474f346083f87530e088335796e2cb8a8c7f7b0e910da4f10807f4c29ce51698184205e20be94d25e5f0594338d46d185e9f
 SHA512 
4434ef3f09d181d721498b51360e1305c560b652812f95262721f77c1620d01facfc08e8e3540e825c3c79982be608b79cefc70ae1c4b37932f1e0e2f14fde01
-DIST vivaldi-snapshot-1.15.1146.5_p1-i386.deb 53518898 BLAKE2B 
6a3d1ec6b435db3889e94cbf3f89def9bf4a8a965244599d087764fb6dda56682d6b134c9f922aff57232e8bf5a9144bcf97ef3ede007b6c3e6c100265244953
 SHA512 
2e48a7e1ea79b2b0cec09e6dc7dc0fd3005cc42e7275d9bd6cb1df5677cc655f38410cbcb2c828a67159627f03c441c48ef7bdef9e684d2ad6ed5527ba7b15b0
 DIST vivaldi-snapshot-1.15.1147.19_p1-amd64.deb 53856566 BLAKE2B 
91b5a3adfaa6f9da1a357765d084a3a237373f078d2a4d4511f95c0ed491212cf1390e8d47cac426b28b26e6fa0d3d92660ec82f82e103e465d0c9d036feb361
 SHA512 
0d60a7503e612eb7c9725874e152bcdfd0da248cc30acae9cc21ed3b46296acab058c8321b1411280894717e3e8be428ac9d0c09b72257292ab66d4fdae3c934
 DIST vivaldi-snapshot-1.15.1147.19_p1-armhf.deb 47686126 BLAKE2B 
71b986de0fd780366240aa9ce0d3583b675c65acc542577e3b21b5615e23bb0ecdc4fcdc1f01f9ff1cb4a4d16a0f000fc19c501445db1373e5bf26873e7b7c9d
 SHA512 
98038e635590629bfa7f7f2c729e5c0908340ed4f23bc8782c03a201c2c43905711342015963d119b92d2145e117d77f2f75766a68fe0e21523a29a077ed74a7
 DIST vivaldi-snapshot-1.15.1147.19_p1-i386.deb 53503206 BLAKE2B 
59ee31367e4fe1b61a7646d03ab4eba3edfb43baae86d1f4ef50c53346a9c975425bc6f23b388ea09d658b1f67665f88abda26308e3a1244c7fa3e22d6c5ab9b
 SHA512 
6744f340860014fab40a2103bba84a170ee9c8e185b1b18753afc9a33908cfd9a5f3b494f7e4124dfd3176171f823223baecf14c3bdc84f397ead9a982d47eb2

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-1.15.1146.5_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.15.1146.5_p1.ebuild
deleted file mode 100644
index 03b567d27a1..000
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-1.15.1146.5_p1.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CHROMIUM_LANGS="
-   am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he 
hi
-   hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr 
sv
-   sw ta te th tr uk vi zh-CN zh-TW
-"
-inherit chromium-2 eutils gnome2-utils multilib unpacker toolchain-funcs 
xdg-utils
-
-VIVALDI_HOME="opt/${PN}"
-DESCRIPTION="A new browser for our friends"
-HOMEPAGE="http://vivaldi.com/;
-VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_;
-SRC_URI="
-   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
-   arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb )
-   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
-"
-
-LICENSE="Vivaldi"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~x86"
-RESTRICT="bindist mirror"
-
-DEPEND="
-   virtual/libiconv
-"
-RDEPEND="
-   >=dev-libs/openssl-1.0.1:0
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/speex
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/libcap
-   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/pango[X]
-"
-QA_PREBUILT="*"
-S=${WORKDIR}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   iconv -c -t UTF-8 usr/share/applications/${PN}.desktop > 
"${T}"/${PN}.desktop || die
-   mv "${T}"/${PN}.desktop 

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

2018-04-14 Thread Jeroen Roovers
commit: 8d25357ac2e7af1ec39fb62c43f3c86afe1dd6d0
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Apr 14 08:12:46 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Apr 14 08:17:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d25357a

www-client/vivaldi-snapshot: Version 1.15.1147.21_p1.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 www-client/vivaldi-snapshot/Manifest   |   3 +
 .../vivaldi-snapshot-1.15.1147.21_p1.ebuild| 118 +
 2 files changed, 121 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 2403904b04d..678a1d32e81 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -4,3 +4,6 @@ DIST vivaldi-snapshot-1.15.1146.5_p1-i386.deb 53518898 BLAKE2B 
6a3d1ec6b435db388
 DIST vivaldi-snapshot-1.15.1147.19_p1-amd64.deb 53856566 BLAKE2B 
91b5a3adfaa6f9da1a357765d084a3a237373f078d2a4d4511f95c0ed491212cf1390e8d47cac426b28b26e6fa0d3d92660ec82f82e103e465d0c9d036feb361
 SHA512 
0d60a7503e612eb7c9725874e152bcdfd0da248cc30acae9cc21ed3b46296acab058c8321b1411280894717e3e8be428ac9d0c09b72257292ab66d4fdae3c934
 DIST vivaldi-snapshot-1.15.1147.19_p1-armhf.deb 47686126 BLAKE2B 
71b986de0fd780366240aa9ce0d3583b675c65acc542577e3b21b5615e23bb0ecdc4fcdc1f01f9ff1cb4a4d16a0f000fc19c501445db1373e5bf26873e7b7c9d
 SHA512 
98038e635590629bfa7f7f2c729e5c0908340ed4f23bc8782c03a201c2c43905711342015963d119b92d2145e117d77f2f75766a68fe0e21523a29a077ed74a7
 DIST vivaldi-snapshot-1.15.1147.19_p1-i386.deb 53503206 BLAKE2B 
59ee31367e4fe1b61a7646d03ab4eba3edfb43baae86d1f4ef50c53346a9c975425bc6f23b388ea09d658b1f67665f88abda26308e3a1244c7fa3e22d6c5ab9b
 SHA512 
6744f340860014fab40a2103bba84a170ee9c8e185b1b18753afc9a33908cfd9a5f3b494f7e4124dfd3176171f823223baecf14c3bdc84f397ead9a982d47eb2
+DIST vivaldi-snapshot-1.15.1147.21_p1-amd64.deb 53867028 BLAKE2B 
a55ccae5b2bf9efd70c58f6febbc690c5867d5a94ea195a10111fa2b3ea2eb8172b2283cb59c9cd409a18f2537b3a474ef8004305f3ae6d99b801d83f6c4
 SHA512 
42918da73a53d7488da3c9b65d970b29e848e0d35334deeaa36c331a35e8c0e0293fff2412153f1c7290cf2636075d8a49fed9a0051711c6e74a23d45068544e
+DIST vivaldi-snapshot-1.15.1147.21_p1-armhf.deb 47687784 BLAKE2B 
d7d68474cfd8d446ac72208d6eb7b52d0d4d1393e847d0f29f0bc307f304567ad731184a2291cef5b274f5d38f8d6e94207f9566942af9de395a9d877d2f
 SHA512 
33c5e6a2a3aeecc77a7d9c2d03ff6d3b584ca79ad71a5d6a14bc334e6a9f114a0ad93b15441a1d1bdf17c175f13df4f4e9aa6d308f2dfd73cb691283af876f0b
+DIST vivaldi-snapshot-1.15.1147.21_p1-i386.deb 53511430 BLAKE2B 
8560b61e8f966f42b33799aec75106581ae3cc0ff3f82fd2a46bcf84f55bed65f03c9ba13238e421896ce2162460264bc8df391e660dd0c0fb8c229d41516c41
 SHA512 
3c1002e67e42cfa49d82a48132261856ff023211d0e204d7787a0faa331a6fb4154078dd31e97119e1bfaba193668dd0454ad1778dfcb853a71788691c92e7d8

diff --git 
a/www-client/vivaldi-snapshot/vivaldi-snapshot-1.15.1147.21_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.15.1147.21_p1.ebuild
new file mode 100644
index 000..03b567d27a1
--- /dev/null
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.15.1147.21_p1.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CHROMIUM_LANGS="
+   am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he 
hi
+   hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr 
sv
+   sw ta te th tr uk vi zh-CN zh-TW
+"
+inherit chromium-2 eutils gnome2-utils multilib unpacker toolchain-funcs 
xdg-utils
+
+VIVALDI_HOME="opt/${PN}"
+DESCRIPTION="A new browser for our friends"
+HOMEPAGE="http://vivaldi.com/;
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_;
+SRC_URI="
+   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
+   arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb )
+   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
+"
+
+LICENSE="Vivaldi"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~x86"
+RESTRICT="bindist mirror"
+
+DEPEND="
+   virtual/libiconv
+"
+RDEPEND="
+   >=dev-libs/openssl-1.0.1:0
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   media-libs/speex
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/libcap
+   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/pango[X]
+"
+QA_PREBUILT="*"
+S=${WORKDIR}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   iconv -c -t UTF-8 

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

2018-04-14 Thread Jeroen Roovers
commit: d1daa1601e9142997e4017cdb64ba65cef3d70d9
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Apr 14 08:31:46 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Apr 14 08:31:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1daa160

x11-misc/xscreensaver: Version 5.39.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 x11-misc/xscreensaver/Manifest |   1 +
 x11-misc/xscreensaver/xscreensaver-5.39.ebuild | 145 +
 2 files changed, 146 insertions(+)

diff --git a/x11-misc/xscreensaver/Manifest b/x11-misc/xscreensaver/Manifest
index 5e7947dacf4..7fb0a5ae854 100644
--- a/x11-misc/xscreensaver/Manifest
+++ b/x11-misc/xscreensaver/Manifest
@@ -1,3 +1,4 @@
 DIST xscreensaver-5.36.tar.gz 10600872 BLAKE2B 
5039722fa3aae2fdb42fb99516685f0c1fd91112f1104457988d0e7dbeb995266d60e76178a099523c920c07e1b8bc2c73c223a7a2db7b728c599cb1959a6751
 SHA512 
4f476135bbfdce0593bb6e5a6a48dd474fcce6031214ffbb3d43dc91bb8e1a28b3e59fc960d5f1a9ac0bdd3dc4531da26679bffbe47b7fb00b67ad74295b40f7
 DIST xscreensaver-5.37.tar.gz 10598833 BLAKE2B 
44462bdf735c0eeb460e400b260340a61e57f343f0ca59f38c7b8d2c7fa03a5b08a5ee424062bba8a4c95da2ec32d89cbcf3cc84cd112fbd67314d3db56bd0ef
 SHA512 
9bef3caf4eb495bebb4c1818ed0bb222be28a7a8d525e2bce70e92d7617bc8cf89750dfaa8cf7a3cd0c489b4831c95f9ff8a0164579cf047aa63681254c8e443
 DIST xscreensaver-5.38.tar.gz 10712548 BLAKE2B 
02630aa7daa3faf8aa7ff453218bed5e3db287b7c4d9b564a6d8822db8b2e1ae6be7843342d585f2d2900d2bd0e7fd2a12d49748d81bf10818fa5bc4254f6ef8
 SHA512 
9014571505afd3a116f541334ea37737659f63f4cbb267a56be451e2c353d9e57218119670a44297d36d140672ea423d0682433401b17749138ab6baf6507561
+DIST xscreensaver-5.39.tar.gz 12157285 BLAKE2B 
b33bf64541d07b2f65788160af0bac308d4bea78a6d2e13332ac0e80a1811cc8270e0922467c76a77bd3481b367e4421b6919d017e7a81b656c4bcc85c404741
 SHA512 
3f7aca6b428339c5d271d52deed469ee43370134d581a83e8f727dbe00e04a6c0f542952144f79447cba3f1f0c92ed7b1591e58255a4f94c0fc77342df19e0f7

diff --git a/x11-misc/xscreensaver/xscreensaver-5.39.ebuild 
b/x11-misc/xscreensaver/xscreensaver-5.39.ebuild
new file mode 100644
index 000..53d05029957
--- /dev/null
+++ b/x11-misc/xscreensaver/xscreensaver-5.39.ebuild
@@ -0,0 +1,145 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools eutils flag-o-matic multilib pam
+
+DESCRIPTION="A modular screen saver and locker for the X Window System"
+HOMEPAGE="https://www.jwz.org/xscreensaver/;
+SRC_URI="
+   ${HOMEPAGE}${P}.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
+IUSE="gdm jpeg new-login offensive opengl pam +perl selinux suid xinerama"
+
+COMMON_DEPEND="
+   >=gnome-base/libglade-2
+   dev-libs/libxml2
+   media-libs/netpbm
+   x11-apps/appres
+   x11-apps/xwininfo
+   x11-libs/gdk-pixbuf:2[X]
+   x11-libs/gtk+:2
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXft
+   x11-libs/libXi
+   x11-libs/libXmu
+   x11-libs/libXrandr
+   x11-libs/libXt
+   x11-libs/libXxf86misc
+   x11-libs/libXxf86vm
+   jpeg? ( virtual/jpeg:0 )
+   new-login? (
+   gdm? ( gnome-base/gdm )
+   !gdm? ( || ( x11-misc/lightdm lxde-base/lxdm ) )
+   )
+   opengl? (
+   virtual/glu
+   virtual/opengl
+   )
+   pam? ( virtual/pam )
+   xinerama? ( x11-libs/libXinerama )
+"
+# For USE="perl" see output of `qlist xscreensaver | grep bin | xargs grep 
'::'`
+RDEPEND="
+   ${COMMON_DEPEND}
+   perl? (
+   dev-lang/perl
+   dev-perl/libwww-perl
+   virtual/perl-Digest-MD5
+   )
+   selinux? ( sec-policy/selinux-xscreensaver )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-util/intltool
+   sys-devel/bc
+   sys-devel/gettext
+   virtual/pkgconfig
+   x11-proto/recordproto
+   x11-proto/scrnsaverproto
+   x11-proto/xextproto
+   x11-proto/xf86miscproto
+   x11-proto/xf86vidmodeproto
+   xinerama? ( x11-proto/xineramaproto )
+"
+
+src_prepare() {
+   sed -i configure.in -e '/^ALL_LINGUAS=/d' || die
+   strip-linguas -i po/
+   export ALL_LINGUAS="${LINGUAS}"
+
+   if use new-login && ! use gdm; then #392967
+   sed -i \
+   -e "/default_l.*1/s:gdmflexiserver 
-ls:${EPREFIX}/usr/libexec/lightdm/&:" \
+   configure{,.in} || die
+   fi
+
+   eapply \
+   "${FILESDIR}"/${PN}-5.05-interix.patch \
+   "${FILESDIR}"/${PN}-5.20-blurb-hndl-test-passwd.patch \
+   "${FILESDIR}"/${PN}-5.20-test-passwd-segv-tty.patch \
+   "${FILESDIR}"/${PN}-5.20-tests-miscfix.patch \
+   

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

2018-04-14 Thread Sergei Trofimovich
commit: dc550bf8838907cf5845e4dd3746974dcc8b0a28
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Apr 14 09:15:46 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Apr 14 09:16:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc550bf8

app-text/mupdf: stable 1.12.0-r2 for ia64, bug #634678

Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

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

diff --git a/app-text/mupdf/mupdf-1.12.0-r2.ebuild 
b/app-text/mupdf/mupdf-1.12.0-r2.ebuild
index 24fbe8ee0af..174dc9eac6c 100644
--- a/app-text/mupdf/mupdf-1.12.0-r2.ebuild
+++ b/app-text/mupdf/mupdf-1.12.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mupdf.com/downloads/${P}-source.tar.gz;
 
 LICENSE="AGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="X +curl javascript lcms libressl opengl +openssl static static-libs 
vanilla"
 
 LIB_DEPEND="



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

2018-04-14 Thread Jeroen Roovers
commit: 5464af3b9c3871d578d199e4d934f0da4bb6c896
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Apr 14 09:52:15 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Apr 14 09:53:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5464af3b

eclass/nvidia-driver.eclass: Fix 390 compatibility list (maybe bug #653022).

 eclass/nvidia-driver.eclass | 27 +--
 1 file changed, 5 insertions(+), 22 deletions(-)

diff --git a/eclass/nvidia-driver.eclass b/eclass/nvidia-driver.eclass
index c5dc0c89f25..2a6c070ff3a 100644
--- a/eclass/nvidia-driver.eclass
+++ b/eclass/nvidia-driver.eclass
@@ -34,7 +34,7 @@ output of nvidia-bug-report.sh included.
 "
 
 # the data below is derived from
-# 
http://us.download.nvidia.com/XFree86/Linux-x86_64/390.48/README/supportedchips.html
+# 
http://us.download.nvidia.com/XFree86/Linux-x86_64/396.18/README/supportedchips.html
 
 drv_71xx="
0020 0028 0029 002c 002d 00a0 0100 0101 0103 0150 0151 0152 0153
@@ -91,27 +91,10 @@ drv_390x="
0dc5 0dc6 0dcd 0dce 0dd1 0dd2 0dd3 0dd6 0dd8 0dda 0de0 0de1 0de2 0de3 
0de4
0de5 0de7 0de8 0de9 0dea 0deb 0dec 0ded 0dee 0def 0df0 0df1 0df2 0df3 
0df4
0df5 0df6 0df7 0df8 0df9 0dfa 0dfc 0e22 0e23 0e24 0e30 0e31 0e3a 0e3b 
0f00
-   0f01 0f02 0f03 0fc0 0fc1 0fc2 0fc6 0fc8 0fc9 0fcd 0fce 0fd1 0fd2 0fd3 
0fd4
-   0fd5 0fd8 0fd9 0fdf 0fe0 0fe1 0fe2 0fe3 0fe4 0fe9 0fea 0fec 0fed 0fee 
0ff3
-   0ff6 0ff8 0ff9 0ffa 0ffb 0ffc 0ffd 0ffe 0fff 1001 1004 1005 1007 1008 
100a
-   100c 1021 1022 1023 1024 1026 1027 1028 1029 102a 102d 103a 103c 1040 
1042
-   1048 1049 104a 104b 104c 1050 1051 1052 1054 1055 1056 1057 1058 1059 
105a
-   105b 107c 107d 1080 1081 1082 1084 1086 1087 1088 1089 108b 1091 1094 
1096
-   109a 109b 1140 1180 1183 1184 1185 1187 1188 1189 118a 118e 118f 1193 
1194
-   1195 1198 1199 119a 119d 119e 119f 11a0 11a1 11a2 11a3 11a7 11b4 11b6 
11b7
-   11b8 11ba 11bc 11bd 11be 11c0 11c2 11c3 11c4 11c5 11c6 11c8 11cb 11e0 
11e1
-   11e2 11e3 11fa 11fc 1200 1201 1203 1205 1206 1207 1208 1210 1211 1212 
1213
-   1241 1243 1244 1245 1246 1247 1248 1249 124b 124d 1251 1280 1281 1282 
1284
-   1286 1287 1288 1289 128b 1290 1291 1292 1293 1295 1296 1298 1299 129a 
12b9
-   12ba 1340 1341 1344 1346 1347 1348 1349 134b 134d 134e 134f 137a 137b 
137d
-   1380 1381 1382 1390 1391 1392 1393 1398 1399 139a 139b 139c 139d 13b0 
13b1
-   13b2 13b3 13b4 13b6 13b9 13ba 13bb 13bc 13c0 13c2 13d7 13d8 13d9 13da 
13f0
-   13f1 13f2 13f3 13f8 13f9 13fa 13fb 1401 1402 1406 1407 1427 1430 1431 
1436
-   15f0 15f7 15f8 15f9 1617 1618 1619 161a 1667 174d 174e 179c 17c2 17c8 
17f0
-   17f1 17fd 1b00 1b02 1b06 1b30 1b38 1b80 1b81 1b82 1b84 1b87 1ba0 1ba1 
1bb0
-   1bb1 1bb3 1bb4 1bb5 1bb6 1bb7 1bb8 1bc7 1be0 1be1 1c02 1c03 1c04 1c06 
1c07
-   1c09 1c20 1c21 1c22 1c30 1c60 1c61 1c62 1c81 1c82 1c8c 1c8d 1cb1 1cb2 
1cb3
-   1cb6 1d01 1d10 1d12 1d33 1d81 1db1 1db4 1db5 1db6 1db7 1dba
+   0f01 0f02 0f03 1040 1042 1048 1049 104a 104b 104c 1050 1051 1052 1054 
1055
+   1056 1057 1058 1059 105a 105b 107c 107d 1080 1081 1082 1084 1086 1087 
1088
+   1089 108b 1091 1094 1096 109a 109b 1140 1200 1201 1203 1205 1206 1207 
1208
+   1210 1211 1212 1213 1241 1243 1244 1245 1246 1247 1248 1249 124b 124d 
1251
 "
 
 mask_71xx=">=x11-drivers/nvidia-drivers-72.0.0"



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

2018-04-14 Thread Michał Górny
commit: 25717719a67c6d24a5f27b7f0d8698bc409cf967
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 14 06:44:56 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 14 06:44:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25717719

profiles/arch/arm64: Mask net-fs/samba[cluster]

 profiles/arch/arm64/package.use.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 44b092af009..4b9a9e3e4eb 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -21,7 +21,7 @@ dev-libs/libgit2 libressl
 
 # Michał Górny  (03 Mar 2018)
 # Requires masked dependent flags.
-net-fs/samba ads
+net-fs/samba ads cluster
 
 # Michał Górny  (03 Mar 2018)
 # Some more unkeyworded dependencies.



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

2018-04-14 Thread Michał Górny
commit: bda3dffb39440515521e831d97965a51e32871bf
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 14 06:43:59 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 14 06:43:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bda3dffb

profiles/base: Extend media-libs/freeverb3[jack] mask

 profiles/base/package.use.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index eefe86cb32c..0a8dd471109 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -143,7 +143,7 @@ dev-java/oracle-jre-bin:9 gentoo-vm
 
 # Andreas K. Hüttel  (04 Nov 2017)
 # Requires audacious, which is masked. Bug 632513
-=media-libs/freeverb3-3.1.2_pre20151102-r1 jack
+media-libs/freeverb3 jack
 
 # Andreas Sturmlechner  (16 Oct 2017)
 # USE=qt4 depends on masked dev-qt/qtwebkit:4, bug #620754



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

2018-04-14 Thread Matt Thode
commit: 2fedfe58546d29a796d6ad71054b3d1e6cf9d988
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Apr 14 06:45:39 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Apr 14 06:45:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fedfe58

media-sound/spotify: remove the dep on threads for curl

Package-Manager: Portage-2.3.27, Repoman-2.3.9

 media-sound/spotify/{spotify-1.0.77.ebuild => spotify-1.0.77-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/spotify/spotify-1.0.77.ebuild 
b/media-sound/spotify/spotify-1.0.77-r1.ebuild
similarity index 99%
rename from media-sound/spotify/spotify-1.0.77.ebuild
rename to media-sound/spotify/spotify-1.0.77-r1.ebuild
index fa087524e94..45262d923a5 100644
--- a/media-sound/spotify/spotify-1.0.77.ebuild
+++ b/media-sound/spotify/spotify-1.0.77-r1.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
media-libs/harfbuzz
media-libs/fontconfig
media-libs/mesa
-   net-misc/curl[ssl,threads]
+   net-misc/curl[ssl]
net-print/cups[ssl]
x11-libs/gtk+:2
x11-libs/libXScrnSaver



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

2018-04-14 Thread Hans de Graaff
commit: f41169410dcb56f26b869ae2f0b7faade83e2f93
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr 14 06:46:14 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr 14 06:48:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4116941

dev-ruby/prawn: add ruby24

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-ruby/prawn/prawn-2.2.0.ebuild 
b/dev-ruby/prawn/prawn-2.2.0.ebuild
index e898bbb6be5..7b2c30eb9c3 100644
--- a/dev-ruby/prawn/prawn-2.2.0.ebuild
+++ b/dev-ruby/prawn/prawn-2.2.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby21 ruby22 ruby23"
+USE_RUBY="ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_DOC="yard"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2018-04-14 Thread Hans de Graaff
commit: 154464ec75fb19aa05c24aadfef0a11dcf4270e3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr 14 06:46:53 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr 14 06:48:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=154464ec

dev-ruby/lemon: add ruby25

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-ruby/lemon/lemon-0.9.1.ebuild 
b/dev-ruby/lemon/lemon-0.9.1.ebuild
index 7f9e53cb5e7..33f42733244 100644
--- a/dev-ruby/lemon/lemon-0.9.1.ebuild
+++ b/dev-ruby/lemon/lemon-0.9.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_TASK_TEST=""
 RUBY_FAKEGEM_RECIPE_DOC="yard"



[gentoo-commits] repo/gentoo:master commit in: www-servers/puma/

2018-04-14 Thread Hans de Graaff
commit: 931affec92ab398a26de83f69109ae71e458470d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr 14 06:32:33 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr 14 06:48:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=931affec

www-servers/puma: add ruby25

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-servers/puma/puma-3.11.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/puma/puma-3.11.3.ebuild 
b/www-servers/puma/puma-3.11.3.ebuild
index b12e2ecfc13..745ad159b3e 100644
--- a/www-servers/puma/puma-3.11.3.ebuild
+++ b/www-servers/puma/puma-3.11.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 



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

2018-04-14 Thread Hans de Graaff
commit: 94b6194bd46748d9c55058c2c1956d88e3142feb
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr 14 06:34:57 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr 14 06:48:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b6194b

dev-ruby/rubytest-cli: add ruby25

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/rubytest-cli/rubytest-cli-0.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rubytest-cli/rubytest-cli-0.2.0.ebuild 
b/dev-ruby/rubytest-cli/rubytest-cli-0.2.0.ebuild
index 7a99e10f68b..1547e07d4a3 100644
--- a/dev-ruby/rubytest-cli/rubytest-cli-0.2.0.ebuild
+++ b/dev-ruby/rubytest-cli/rubytest-cli-0.2.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_TASK_TEST=""
 RUBY_FAKEGEM_RECIPE_DOC="yard"



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

2018-04-14 Thread Hans de Graaff
commit: 5cd8c7f185c935ec74ec1682ec63bc94881cd0ec
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr 14 06:23:34 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr 14 06:48:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cd8c7f1

dev-ruby/dotenv: add 2.2.2

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-ruby/dotenv/Manifest b/dev-ruby/dotenv/Manifest
index 8fc01f7507e..4fa8cf6dbe9 100644
--- a/dev-ruby/dotenv/Manifest
+++ b/dev-ruby/dotenv/Manifest
@@ -1 +1,2 @@
 DIST dotenv-2.2.1.tar.gz 15855 BLAKE2B 
c970fbd30e3c616b9426f4f758e47c81cf54887de0a11560f4ed3aabda6b1b83f49849775d129658d3a2eb6ecdfe4fbea670d0a63443954ac1d53177125a895b
 SHA512 
67e9cc5323d505f0b5a5a1278d0ce6c72a577fc096508b5a6de7b73f3c0fa2ca8144475783ab2b9ef04cf44d6e57ddb8e09f849c44729f7bb7c4bb7156baa443
+DIST dotenv-2.2.2.tar.gz 15856 BLAKE2B 
e27a2650c79aadb31545c3a02d698f5cc3c9e27ddf07aa853a1f776b467f3cb707dda4ee3a0c107fbeb4a5609ded993ab74c81721cab088239858c28bd8e3ded
 SHA512 
6af4039cec9c4c85240dc01eee5e24cac6b762e2fcb0d371bbde4cf03743e1917436664d2ea2e59fa619fddce96c9d3848354d42c3a621556cb120ed1cd0cf2b

diff --git a/dev-ruby/dotenv/dotenv-2.2.2.ebuild 
b/dev-ruby/dotenv/dotenv-2.2.2.ebuild
new file mode 100644
index 000..f7b383c5017
--- /dev/null
+++ b/dev-ruby/dotenv/dotenv-2.2.2.ebuild
@@ -0,0 +1,35 @@
+# 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_EXTRADOC="README.md Changelog.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Loads environment variables from .env into ENV"
+HOMEPAGE="https://github.com/bkeepers/dotenv;
+SRC_URI="https://github.com/bkeepers/dotenv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="2"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/spring dev-ruby/rails )"
+
+all_ruby_prepare() {
+   sed -i -e '/:guard/,/end/ s:^:#:' \
+   -e '5igem "rspec", "~> 3.0"' Gemfile || die
+
+   sed -i -e '/rubocop/ s:^:#:' -e 's/git ls-files/find/' dotenv.gemspec 
|| die
+}
+
+each_ruby_prepare() {
+   sed -i -e "s:ruby -v:${RUBY} -v:g" spec/dotenv/parser_spec.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nessus-bin/files/, net-analyzer/nessus-bin/

2018-04-14 Thread Michał Górny
commit: cbbdcbf3e928a92ec91cc17fa86c47a84475ba90
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 14 06:57:05 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 14 06:58:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbbdcbf3

net-analyzer/nessus-bin: Drop old

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

 net-analyzer/nessus-bin/Manifest|  4 --
 net-analyzer/nessus-bin/files/90nessus-bin  |  1 -
 net-analyzer/nessus-bin/nessus-bin-4.4.1.ebuild | 68 -
 net-analyzer/nessus-bin/nessus-bin-5.0.1.ebuild | 60 --
 4 files changed, 133 deletions(-)

diff --git a/net-analyzer/nessus-bin/Manifest b/net-analyzer/nessus-bin/Manifest
index f3c145cf062..69ce03189c2 100644
--- a/net-analyzer/nessus-bin/Manifest
+++ b/net-analyzer/nessus-bin/Manifest
@@ -1,5 +1 @@
-DIST Nessus-4.4.1-es6.i686.rpm 11222888 SHA256 
91420688688da3347c0f2ad2be38b4495bedc4a94d1a1e159afb6ba5d2029bdc SHA512 
dbc3c42989442830c7048135d4c1c582cd8a21801b7cf2e6522826992303e5ba6d6770136bb5c2b7be4b15f5f997e61ddbb31d1c9ed09358c3f20c77934c9e3e
 WHIRLPOOL 
90b31b758a841b4a837efce2b4baec8fb3698cb2da37ebff93d8b0d01f4503af225e66140af1d233653b966f1ee5e054d830e97a84603954fc4f0310c3dda72e
-DIST Nessus-4.4.1-es6.x86_64.rpm 12516672 SHA256 
b06585509ac4bcda874a333a22eaffef78aa9642c79350ef9b5a5a8c169be58a SHA512 
5c788663bfb72978976dcbeb7cf586b74a1ebcb4cb856e595954343647e2ad5309c81661c47ebc6e7b31f993957bd26e73c2db69328735a90a87ff8799422e40
 WHIRLPOOL 
d5d74bffadec10fd4c31d403bf4a24338d5cf517a455cce4dd478c92a1cd9d3f188f85a50b24816490e57f4e0df5342b52b289af4b4b1bdc0aef6462d25a7a96
-DIST Nessus-5.0.1-es6.i686.rpm 20401680 SHA256 
540ca445d5eb886335f38b5e7b69f2c1c512eda9f633199cf31e29abc519432e SHA512 
5d86549903ee71250a120d5c413e502041f3d36ff4712ff1e567c77750b723ab36b1da55b5035ce3b5e74adc2fb30f42153c2d0bd7bf1ff410daf2ab64a86eab
 WHIRLPOOL 
f2f5ec35b7d84ee61ed9a65f97bf7ffcd51e87a8b565fbc4d6836288f0ceb3093a007a9f8d6217f3931c6d21e7a2dd950aa3cd2e5bf43d3591437a4e917e5066
-DIST Nessus-5.0.1-es6.x86_64.rpm 22784992 SHA256 
dc5c1af6dfc80b20e6019c86ee5b21178347817b50edd2f8c287f03cec8a1837 SHA512 
180066cefabf56f1be416ff97e50171d9c75d19d03980e84696a8c34aba7628bdf12c0189e1c589eb1bba32ca38602023563f6d9e5c30cc3ec3a875fa08cc3a1
 WHIRLPOOL 
1f574f7984710ed594a67f5050a9672a0a87b34319a5f1c478d9bdd308b6503dd92ac2d4031ee468e62c8eb937ae0f2268ffe78e4c380090cdd44f22f9faa473
 DIST Nessus-6.10.5-es7.x86_64.rpm 41596796 SHA256 
b658a80098177bb5dfc01774df755707fa1ce322c2f1a974f3e1d3acd52c04d1 SHA512 
a407aa010d3d59d5c4d717159851a6b81ef9e1f1b4327c8382abe1b866c4969cf6e32251077270eae719b66af9ce29641c40ca6093df30f88ce9be81ba168f75
 WHIRLPOOL 
9ee3abf7bee6214ce0d8de2c3c519f768a5390634e6cf80c8e4f1b6a6b26dc83e1614bf6ead0006c0094d9cda038f86cb37ba69f1c935d622c1dabbfa129

diff --git a/net-analyzer/nessus-bin/files/90nessus-bin 
b/net-analyzer/nessus-bin/files/90nessus-bin
deleted file mode 100644
index 598d86b3cd7..000
--- a/net-analyzer/nessus-bin/files/90nessus-bin
+++ /dev/null
@@ -1 +0,0 @@
-LDPATH="/opt/nessus/lib"

diff --git a/net-analyzer/nessus-bin/nessus-bin-4.4.1.ebuild 
b/net-analyzer/nessus-bin/nessus-bin-4.4.1.ebuild
deleted file mode 100644
index 1f8abf2a4bd..000
--- a/net-analyzer/nessus-bin/nessus-bin-4.4.1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit multilib rpm
-
-MY_P="Nessus-${PV}-es6"
-# We are using the Red Hat/CentOS binary
-
-DESCRIPTION="A remote security scanner for Linux"
-HOMEPAGE="http://www.nessus.org/;
-SRC_URI="
-   x86? ( ${MY_P}.i686.rpm )
-   amd64? ( ${MY_P}.x86_64.rpm )"
-
-RESTRICT="mirror fetch strip"
-
-LICENSE="GPL-2 Nessus-EULA"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="X"
-
-pkg_nofetch() {
-   einfo "Please download ${A} from ${HOMEPAGE}/download"
-   einfo "The archive should then be placed into ${DISTDIR}."
-}
-
-pkg_setup() {
-   case ${CHOST} in
-   i686-pc-linux-gnu*) einfo "Found compatible architecture." ;;
-   x86_64-pc-linux-gnu*) einfo "Found compatible architecture." ;;
-   *) die "No compatible architecture found." ;;
-   esac
-}
-
-src_install() {
-   cp -pPR "${WORKDIR}"/opt "${D}"/
-
-   # make sure these directories do not vanish
-   # nessus will not run properly without them
-   keepdir /opt/nessus/etc/nessus
-   keepdir /opt/nessus/var/nessus/jobs
-   keepdir /opt/nessus/var/nessus/logs
-   keepdir /opt/nessus/var/nessus/tmp
-   keepdir /opt/nessus/var/nessus/users
-
-   # add PATH and MANPATH for convenience
-   doenvd "${FILESDIR}"/90nessus-bin
-
-   # init script
-   newinitd "${FILESDIR}"/nessusd-initd nessusd-bin
-   dosym libssl.so /usr/$(get_libdir)/libssl.so.10
-   dosym libcrypto.so /usr/$(get_libdir)/libcrypto.so.10
-}
-
-pkg_postinst() {
-   elog 

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

2018-04-14 Thread Michał Górny
commit: fa4b2c2754622340b7a436833f7b9d7bdf978813
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 14 06:57:57 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 14 06:58:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa4b2c27

net-analyzer/nessus-bin: Update hashes for 6.10.5

Update hashes to BLAKE2B. Thanks to Ulrich Müller for the values.

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

 net-analyzer/nessus-bin/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/nessus-bin/Manifest b/net-analyzer/nessus-bin/Manifest
index 69ce03189c2..3bc6b2214d1 100644
--- a/net-analyzer/nessus-bin/Manifest
+++ b/net-analyzer/nessus-bin/Manifest
@@ -1 +1 @@
-DIST Nessus-6.10.5-es7.x86_64.rpm 41596796 SHA256 
b658a80098177bb5dfc01774df755707fa1ce322c2f1a974f3e1d3acd52c04d1 SHA512 
a407aa010d3d59d5c4d717159851a6b81ef9e1f1b4327c8382abe1b866c4969cf6e32251077270eae719b66af9ce29641c40ca6093df30f88ce9be81ba168f75
 WHIRLPOOL 
9ee3abf7bee6214ce0d8de2c3c519f768a5390634e6cf80c8e4f1b6a6b26dc83e1614bf6ead0006c0094d9cda038f86cb37ba69f1c935d622c1dabbfa129
+DIST Nessus-6.10.5-es7.x86_64.rpm 41596796 BLAKE2B 
2d9078eb3a53bc9fe63a649f6829ac757424bdecd007bdcaefcda661951a18918ce4f2823fe3ae88ded68453e82a06ccd2d225db26713c5b72bdd09f9e665b1d
 SHA512 
a407aa010d3d59d5c4d717159851a6b81ef9e1f1b4327c8382abe1b866c4969cf6e32251077270eae719b66af9ce29641c40ca6093df30f88ce9be81ba168f75



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

2018-04-14 Thread Hans de Graaff
commit: 7c7670ac0884fe1a2e460fb033e0ca2abc171992
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr 14 07:14:14 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr 14 07:25:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c7670ac

media-sound/xmms2: add ruby23, bug 645608

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

 media-sound/xmms2/xmms2-0.8-r4.ebuild   | 4 ++--
 media-sound/xmms2/xmms2-0.8_p20161122-r1.ebuild | 4 ++--
 media-sound/xmms2/xmms2-0.8_p20161122-r2.ebuild | 2 +-
 media-sound/xmms2/xmms2-0.8_p20161122-r3.ebuild | 2 +-
 media-sound/xmms2/xmms2-0.8_p20161122.ebuild| 4 ++--
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/media-sound/xmms2/xmms2-0.8-r4.ebuild 
b/media-sound/xmms2/xmms2-0.8-r4.ebuild
index 9f254f6d79e..907d0fb1d86 100644
--- a/media-sound/xmms2/xmms2-0.8-r4.ebuild
+++ b/media-sound/xmms2/xmms2-0.8-r4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
 # waf fails on python3_5: AttributeError: Can't pickle local object 
'Context.__init__..node_class'
 PYTHON_COMPAT=( python{2_7,3_4} )
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby22 ruby23"
 
 inherit eutils multiprocessing python-single-r1 ruby-single toolchain-funcs
 

diff --git a/media-sound/xmms2/xmms2-0.8_p20161122-r1.ebuild 
b/media-sound/xmms2/xmms2-0.8_p20161122-r1.ebuild
index b97f7ed0f3d..fc89616d993 100644
--- a/media-sound/xmms2/xmms2-0.8_p20161122-r1.ebuild
+++ b/media-sound/xmms2/xmms2-0.8_p20161122-r1.ebuild
@@ -1,10 +1,10 @@
-# 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=( python{2_7,3_4,3_5,3_6} )
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby22 ruby23"
 
 inherit eutils multiprocessing python-single-r1 ruby-single toolchain-funcs
 

diff --git a/media-sound/xmms2/xmms2-0.8_p20161122-r2.ebuild 
b/media-sound/xmms2/xmms2-0.8_p20161122-r2.ebuild
index 4471878ba15..88646ec634e 100644
--- a/media-sound/xmms2/xmms2-0.8_p20161122-r2.ebuild
+++ b/media-sound/xmms2/xmms2-0.8_p20161122-r2.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby22 ruby23"
 
 inherit eutils multiprocessing python-single-r1 ruby-single toolchain-funcs
 

diff --git a/media-sound/xmms2/xmms2-0.8_p20161122-r3.ebuild 
b/media-sound/xmms2/xmms2-0.8_p20161122-r3.ebuild
index a9ab805984b..49c650b68b8 100644
--- a/media-sound/xmms2/xmms2-0.8_p20161122-r3.ebuild
+++ b/media-sound/xmms2/xmms2-0.8_p20161122-r3.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby22 ruby23"
 
 inherit eutils multiprocessing python-single-r1 ruby-single toolchain-funcs
 

diff --git a/media-sound/xmms2/xmms2-0.8_p20161122.ebuild 
b/media-sound/xmms2/xmms2-0.8_p20161122.ebuild
index 32edd700286..d4c26a1373c 100644
--- a/media-sound/xmms2/xmms2-0.8_p20161122.ebuild
+++ b/media-sound/xmms2/xmms2-0.8_p20161122.ebuild
@@ -1,10 +1,10 @@
-# 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=( python{2_7,3_4,3_5,3_6} )
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby22 ruby23"
 
 inherit eutils multiprocessing python-single-r1 ruby-single toolchain-funcs
 



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

2018-04-14 Thread Hans de Graaff
commit: 866c2a8307c1bbcf9dbaea0d4d335610217e9e16
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr 14 06:54:44 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr 14 07:25:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=866c2a83

net-misc/mikutter: add ruby23

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-misc/mikutter/mikutter-3.4.2-r1.ebuild | 10 +-
 net-misc/mikutter/mikutter-.ebuild | 10 +-
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/net-misc/mikutter/mikutter-3.4.2-r1.ebuild 
b/net-misc/mikutter/mikutter-3.4.2-r1.ebuild
index d594c11b4ed..62e5fdcfc3b 100644
--- a/net-misc/mikutter/mikutter-3.4.2-r1.ebuild
+++ b/net-misc/mikutter/mikutter-3.4.2-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby21 ruby22"
+USE_RUBY="ruby22 ruby23"
 
 inherit eutils ruby-ng
 
@@ -62,10 +62,10 @@ all_ruby_unpack() {
 each_ruby_install() {
local rubyversion
 
-   if use ruby_targets_ruby22; then
+   if use ruby_targets_ruby23; then
+   rubyversion=ruby23
+   elif use ruby_targets_ruby22; then
rubyversion=ruby22
-   elif use ruby_targets_ruby21; then
-   rubyversion=ruby21
fi
 
exeinto /usr/share/mikutter

diff --git a/net-misc/mikutter/mikutter-.ebuild 
b/net-misc/mikutter/mikutter-.ebuild
index 3cb00cde69e..04d1acc69b1 100644
--- a/net-misc/mikutter/mikutter-.ebuild
+++ b/net-misc/mikutter/mikutter-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby21 ruby22"
+USE_RUBY="ruby22 ruby23"
 
 inherit eutils ruby-ng
 
@@ -62,10 +62,10 @@ all_ruby_unpack() {
 each_ruby_install() {
local rubyversion
 
-   if use ruby_targets_ruby22; then
+   if use ruby_targets_ruby23; then
+   rubyversion=ruby23
+   elif use ruby_targets_ruby22; then
rubyversion=ruby22
-   elif use ruby_targets_ruby21; then
-   rubyversion=ruby21
fi
 
exeinto /usr/share/mikutter



[gentoo-commits] repo/gentoo:master commit in: sci-biology/bioruby/

2018-04-14 Thread Hans de Graaff
commit: 91aad9c3a0a355f54d44b0b94b7e66ec22d33af8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr 14 07:23:38 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr 14 07:25:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91aad9c3

sci-biology/bioruby: remove broken ruby22-only version, bug 645612

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sci-biology/bioruby/Manifest |  1 -
 sci-biology/bioruby/bioruby-1.4.3.0001-r1.ebuild | 37 
 2 files changed, 38 deletions(-)

diff --git a/sci-biology/bioruby/Manifest b/sci-biology/bioruby/Manifest
index 180ec15cc3a..a03dfab501f 100644
--- a/sci-biology/bioruby/Manifest
+++ b/sci-biology/bioruby/Manifest
@@ -1,2 +1 @@
 DIST bio-1.5.1.gem 1445376 BLAKE2B 
4de704293ed1c4dee7edc9c86df4ddd35f66eb4433a339fadb58c3f877206e240a8b1dfe6aa8ccd92f0edf9d0f28825cc2b58e33f817fec6bab39e3162f179cf
 SHA512 
822ac6c3d85847193fc1992087abc868e4d1a7cfca82da6ab1830af2927a2a582c3993bc681e129a6aac224ed1cb0b33056d8cc02d3e36d68c9d6a4153c321ca
-DIST bioruby-1.4.3.0001.tar.gz 1500656 BLAKE2B 
10c5a882608e33d1d9fe2cd4e07a92992a78b99ae33349d1916cd6a2fe658b553e32d1ce05edb9bfa23d7d822f6a730d6a40a098ecc05a8deb8dae49d4be7856
 SHA512 
77ad96388e1e8b1dccab582a3bc309b99b36cac1803f79b42707fc4dbf439de31ed491ce5e1c2e59f695643756ae0df2e275bbcd9ad6827f251b52edd677d821

diff --git a/sci-biology/bioruby/bioruby-1.4.3.0001-r1.ebuild 
b/sci-biology/bioruby/bioruby-1.4.3.0001-r1.ebuild
deleted file mode 100644
index de7ff26eeb4..000
--- a/sci-biology/bioruby/bioruby-1.4.3.0001-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby21 ruby22"
-
-inherit ruby-fakegem
-
-DESCRIPTION="An integrated environment for bioinformatics using the Ruby 
language"
-LICENSE="Ruby"
-HOMEPAGE="http://bioruby.org/;
-SRC_URI="http://${PN}.org/archive/${P}.tar.gz;
-
-SLOT="0"
-IUSE=""
-KEYWORDS="amd64 ~ppc x86"
-
-ruby_add_rdepend "dev-ruby/libxml"
-
-PATCHES=( "${FILESDIR}"/${P}-fix-tests.patch )
-
-each_ruby_configure() {
-   ${RUBY} setup.rb config || die
-}
-
-each_ruby_compile() {
-   ${RUBY} setup.rb setup || die
-}
-
-each_ruby_install() {
-   ${RUBY} setup.rb install --prefix="${D}" || die
-}
-
-each_ruby_test() {
-   ${RUBY} -rubygems test/runner.rb || die
-}



[gentoo-commits] repo/gentoo:master commit in: sci-biology/bioruby/

2018-04-14 Thread Hans de Graaff
commit: 67bdcf4734eb37aa0c984f8a97eda4212e54719d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Apr 14 07:21:47 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Apr 14 07:25:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67bdcf47

sci-biology/bioruby: stable on amd64 and x86, bug 628636

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sci-biology/bioruby/bioruby-1.5.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-biology/bioruby/bioruby-1.5.1.ebuild 
b/sci-biology/bioruby/bioruby-1.5.1.ebuild
index f5e558c7ff3..d6458528127 100644
--- a/sci-biology/bioruby/bioruby-1.5.1.ebuild
+++ b/sci-biology/bioruby/bioruby-1.5.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby21 ruby22 ruby23"
+USE_RUBY="ruby22 ruby23"
 
 RUBY_FAKEGEM_NAME="bio"
 
@@ -17,6 +17,6 @@ HOMEPAGE="http://bioruby.org/;
 
 SLOT="0"
 IUSE=""
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 
 ruby_add_rdepend "dev-ruby/libxml"



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

2018-04-14 Thread Michał Górny
commit: 08bfbf2023e202d365eae092eaa5277146251969
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 14 06:42:26 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 14 06:42:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08bfbf20

profiles/arch/arm64: Mask app-admin/rsyslog[kubernetes]

 profiles/arch/arm64/package.use.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index af9528f4f86..44b092af009 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -262,7 +262,7 @@ app-portage/g-sorcery bson
 
 # Thomas Deutschmann  (01 Mar 2017)
 # Unkeyworded depedencies
-app-admin/rsyslog grok kafka mongodb normalize rabbitmq
+app-admin/rsyslog grok kafka kubernetes mongodb normalize rabbitmq
 
 # Michael Weber  (01 Mar 2017)
 # untested dependencies



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

2018-04-14 Thread Pacho Ramos
commit: b8508c0527a568ef165f368a613f1bcf06813153
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 10:13:12 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 10:13:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8508c05

sci-physics/lightspeed: Drop broken linguas handling (#526466)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 sci-physics/lightspeed/lightspeed-1.2a-r3.ebuild | 76 
 1 file changed, 76 insertions(+)

diff --git a/sci-physics/lightspeed/lightspeed-1.2a-r3.ebuild 
b/sci-physics/lightspeed/lightspeed-1.2a-r3.ebuild
new file mode 100644
index 000..9f589cf4362
--- /dev/null
+++ b/sci-physics/lightspeed/lightspeed-1.2a-r3.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools desktop readme.gentoo-r1
+
+DEB_PATCH="${PN}_${PV}-7"
+DESCRIPTION="OpenGL interactive relativistic simulator"
+HOMEPAGE="http://lightspeed.sourceforge.net/;
+SRC_URI="
+   mirror://sourceforge/${PN}/${P}.tar.gz
+   mirror://sourceforge/${PN}/objects-1.tar.gz
+   mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_PATCH}.diff.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+
+IUSE="nls truetype"
+
+RDEPEND="
+   media-libs/libpng:0=
+   media-libs/tiff:0
+   virtual/opengl
+   x11-libs/gtkglext
+   x11-libs/gtkglarea:2
+   x11-libs/gtk+:2
+   x11-libs/libXmu
+   truetype? ( media-libs/ftgl )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   "${WORKDIR}/${DEB_PATCH}.diff"
+   "${FILESDIR}"/${P}-autoconf.patch
+   "${FILESDIR}"/${P}-libpng15.patch
+)
+
+DOC_CONTENTS="
+   Some 3d models have been placed in /usr/share/${PN}
+   You can load them in Light Speed! from the File menu.
+"
+
+src_prepare() {
+   default
+   mv configure.{in,ac} || die
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --with-gtk=2 \
+   $(use_enable nls) \
+   $(use_with truetype ftgl)
+}
+
+src_install() {
+   default
+
+   newicon src/icon.xpm lightspeed.xpm
+   make_desktop_entry ${PN} "Light Speed! Relativistic Simulator"
+
+   readme.gentoo_create_doc
+   newdoc debian/changelog ChangeLog.Debian
+   cd "${WORKDIR}/objects" || die
+   newdoc README objects-README
+
+   insinto /usr/share/${PN}
+   doins *.3ds *.lwo
+}
+
+pkg_postinst() {
+   readme.gentoo_print_elog
+}



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

2018-04-14 Thread Michał Górny
commit: 4bd92a254103f2001c6eee6360500407fe55ab35
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 14 10:22:28 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 14 10:31:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bd92a25

profiles/arch/arm64: Mask net-fs/samba[python]

 profiles/arch/arm64/package.use.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 4b9a9e3e4eb..4fe2c16044a 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -21,7 +21,7 @@ dev-libs/libgit2 libressl
 
 # Michał Górny  (03 Mar 2018)
 # Requires masked dependent flags.
-net-fs/samba ads cluster
+net-fs/samba ads cluster python
 
 # Michał Górny  (03 Mar 2018)
 # Some more unkeyworded dependencies.



[gentoo-commits] proj/gnome:master commit in: dev-libs/glib/, dev-libs/glib/files/

2018-04-14 Thread Remi Cardona
commit: eafd62380dc5ea6dae3b12fc691a6cf563975e07
Author: Rémi Cardona  gentoo  org>
AuthorDate: Sat Apr 14 10:17:02 2018 +
Commit: Remi Cardona  gentoo  org>
CommitDate: Sat Apr 14 10:17:02 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=eafd6238

dev-libs/glib: bump to 2.56.1

Package-Manager: Portage-2.3.28, Repoman-2.3.9
Manifest-Sign-Key: 0xE0663D48103108F8

 ...56.1-external-gdbus-codegen-for-autotools.patch | 133 +
 dev-libs/glib/glib-2.56.1.ebuild   | 301 +
 2 files changed, 434 insertions(+)

diff --git 
a/dev-libs/glib/files/glib-2.56.1-external-gdbus-codegen-for-autotools.patch 
b/dev-libs/glib/files/glib-2.56.1-external-gdbus-codegen-for-autotools.patch
new file mode 100644
index ..7e73f748
--- /dev/null
+++ b/dev-libs/glib/files/glib-2.56.1-external-gdbus-codegen-for-autotools.patch
@@ -0,0 +1,133 @@
+From db0a3301203e0c62db274bde8ac20cbfbb71889f Mon Sep 17 00:00:00 2001
+From: Sobhan Mohammadpour 
+Date: Fri, 23 Feb 2018 15:27:33 +0330
+Subject: [PATCH 2/2] glib-2.54.3-external-gdbus-codegen-for-autotools
+
+---
+ configure.ac| 17 -
+ docs/reference/gio/Makefile.am  |  1 -
+ gio/Makefile.am | 12 
+ gio/tests/Makefile.am   |  6 ++
+ .../gdbus-object-manager-example/Makefile.am|  6 ++
+ 5 files changed, 16 insertions(+), 26 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 2013d198e..7d2d686c5 100644
+--- a/configure.ac
 b/configure.ac
+@@ -360,14 +360,14 @@ AC_CHECK_PROGS(PERL, [perl5 perl])
+ # option to specify python interpreter to use; this just sets $PYTHON, so that
+ # we will fallback to reading $PYTHON if --with-python is not given, and
+ # python.m4 will get the expected input
+-AC_ARG_WITH(python,
+-AS_HELP_STRING([--with-python=PATH],
+-   [Path to Python interpreter; searches $PATH if 
only a program name is given; if not given, searches for a few standard names 
such as "python3" or "python2"]),
+-[PYTHON="$withval"], [])
+-if test x"$PYTHON" = xyes; then
+-  AC_MSG_ERROR([--with-python option requires a path or program argument])
+-fi
+-AM_PATH_PYTHON(2.7,,PYTHON="python2.7")
++#AC_ARG_WITH(python,
++#AS_HELP_STRING([--with-python=PATH],
++#   [Path to Python interpreter; searches $PATH if 
only a program name is given; if not given, searches for a few standard names 
such as "python3" or "python2"]),
++#[PYTHON="$withval"], [])
++#if test x"$PYTHON" = xyes; then
++#  AC_MSG_ERROR([--with-python option requires a path or program argument])
++#fi
++#AM_PATH_PYTHON(2.7,,PYTHON="python2.7")
+ 
+ 
+ dnl ***
+@@ -3567,7 +3567,6 @@ gobject/glib-mkenums
+ gobject/tests/Makefile
+ gthread/Makefile
+ gio/Makefile
+-gio/gdbus-2.0/codegen/Makefile
+ gio/gdbus-2.0/codegen/config.py
+ gio/gnetworking.h
+ gio/xdgmime/Makefile
+diff --git a/docs/reference/gio/Makefile.am b/docs/reference/gio/Makefile.am
+index e04ab6843..3a518af02 100644
+--- a/docs/reference/gio/Makefile.am
 b/docs/reference/gio/Makefile.am
+@@ -178,7 +178,6 @@ man_MANS +=\
+   gsettings.1 \
+   gresource.1 \
+   gdbus.1 \
+-  gdbus-codegen.1 \
+   gio.1   \
+   $(NULL)
+ 
+diff --git a/gio/Makefile.am b/gio/Makefile.am
+index 67b7fa966..334c6e32d 100644
+--- a/gio/Makefile.am
 b/gio/Makefile.am
+@@ -1,6 +1,6 @@
+ include $(top_srcdir)/glib.mk
+ 
+-SUBDIRS = gdbus-2.0/codegen
++SUBDIRS = 
+ 
+ if OS_UNIX
+ SUBDIRS += xdgmime
+@@ -101,10 +101,8 @@ GDBUS_PYTHON_DEPS =   
\
+   $(builddir)/gdbus-2.0/codegen/config.py \
+   $(srcdir)/gdbus-2.0/codegen/utils.py
+ 
+-gdbus-daemon-generated.h gdbus-daemon-generated.c: $(srcdir)/dbus-daemon.xml 
$(GDBUS_PYTHON_DEPS)
+-  $(AM_V_GEN) UNINSTALLED_GLIB_SRCDIR=$(top_srcdir) \
+-  UNINSTALLED_GLIB_BUILDDIR=$(top_builddir) \
+-  $(PYTHON) $(srcdir)/gdbus-2.0/codegen/gdbus-codegen.in \
++gdbus-daemon-generated.h gdbus-daemon-generated.c: $(srcdir)/dbus-daemon.xml
++  $(AM_V_GEN) gdbus-codegen \
+   --interface-prefix org. \
+   --generate-c-code gdbus-daemon-generated \
+   --c-namespace _G \
+@@ -375,9 +373,7 @@ portal_interfaces = \
+ EXTRA_DIST += $(portal_interfaces)
+ 
+ $(xdp_dbus_built_sources) : $(portal_interfaces)
+-  $(AM_V_GEN) UNINSTALLED_GLIB_SRCDIR=$(top_srcdir)   \
+-  UNINSTALLED_GLIB_BUILDDIR=$(top_builddir)   \
+-  $(PYTHON) $(srcdir)/gdbus-2.0/codegen/gdbus-codegen.in  \
++  $(AM_V_GEN) gdbus-codegen   \
+   --interface-prefix 

[gentoo-commits] proj/gnome:master commit in: dev-util/gdbus-codegen/, dev-util/gdbus-codegen/files/

2018-04-14 Thread Remi Cardona
commit: 83a60dca3e675a485ee257c95e69e810ca52b554
Author: Rémi Cardona  gentoo  org>
AuthorDate: Sat Apr 14 08:48:50 2018 +
Commit: Remi Cardona  gentoo  org>
CommitDate: Sat Apr 14 08:48:50 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=83a60dca

dev-util/gdbus-codegen: bump to 2.56.1

Package-Manager: Portage-2.3.28, Repoman-2.3.9
Manifest-Sign-Key: 0xE0663D48103108F8

 .../files/gdbus-codegen-2.56.1-sitedir.patch   | 53 ++
 dev-util/gdbus-codegen/gdbus-codegen-2.56.1.ebuild | 46 +++
 2 files changed, 99 insertions(+)

diff --git a/dev-util/gdbus-codegen/files/gdbus-codegen-2.56.1-sitedir.patch 
b/dev-util/gdbus-codegen/files/gdbus-codegen-2.56.1-sitedir.patch
new file mode 100644
index ..5b369798
--- /dev/null
+++ b/dev-util/gdbus-codegen/files/gdbus-codegen-2.56.1-sitedir.patch
@@ -0,0 +1,53 @@
+From 9eaaa76e2e36e46a43dbd419724696fd7ff8ea64 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?R=C3=A9mi=20Cardona?= 
+Date: Sat, 14 Apr 2018 09:55:22 +0200
+Subject: [PATCH 1/2] gdbus-codegen-2.54.3-sitedir.patch
+
+---
+ gio/gdbus-2.0/codegen/gdbus-codegen.in | 28 --
+ 1 file changed, 28 deletions(-)
+
+diff --git a/gio/gdbus-2.0/codegen/gdbus-codegen.in 
b/gio/gdbus-2.0/codegen/gdbus-codegen.in
+index 67d367543..190afa28f 100755
+--- a/gdbus-codegen.in
 b/gdbus-codegen.in
+@@ -20,36 +20,8 @@
+ # Author: David Zeuthen 
+ 
+ 
+-import os
+ import sys
+ 
+-srcdir = os.getenv('UNINSTALLED_GLIB_SRCDIR', None)
+-filedir = os.path.dirname(__file__)
+-
+-if srcdir is not None:
+-path = os.path.join(srcdir, 'gio', 'gdbus-2.0')
+-elif os.path.basename(filedir) == 'bin':
+-# Make the prefix containing gdbus-codegen 'relocatable' at runtime by
+-# adding /some/prefix/bin/../share/glib-2.0 to the python path
+-path = os.path.join(filedir, '..', 'share', 'glib-2.0')
+-else:
+-# Assume that the modules we need are in the current directory and add the
+-# parent directory to the python path.
+-path = os.path.join(filedir, '..')
+-
+-# Canonicalize, then do further testing
+-path = os.path.abspath(path)
+-
+-# If the above path detection failed, use the hard-coded datadir. This can
+-# happen when, for instance, bindir and datadir are not in the same prefix or
+-# on Windows where we cannot make any guarantees about the directory 
structure.
+-#
+-# In these cases our installation cannot be relocatable, but at least we 
should
+-# be able to find the codegen module.
+-if not os.path.isfile(os.path.join(path, 'codegen', 'codegen_main.py')):
+-path = os.path.join('@DATADIR@', 'glib-2.0')
+-
+-sys.path.insert(0, path)
+ from codegen import codegen_main
+ 
+ sys.exit(codegen_main.codegen_main())
+-- 
+2.17.0
+

diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.56.1.ebuild 
b/dev-util/gdbus-codegen/gdbus-codegen-2.56.1.ebuild
new file mode 100644
index ..3f4d065f
--- /dev/null
+++ b/dev-util/gdbus-codegen/gdbus-codegen-2.56.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME_ORG_MODULE="glib"
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_REQ_USE="xml"
+
+inherit gnome.org distutils-r1
+
+DESCRIPTION="GDBus code and documentation generator"
+HOMEPAGE="https://www.gtk.org/;
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~x64-macos ~x86-macos"
+IUSE=""
+
+RDEPEND="${PYTHON_DEPS}"
+DEPEND="${RDEPEND}"
+
+# To prevent circular dependencies with glib[test]
+PDEPEND=">=dev-libs/glib-${PV}:2"
+
+S="${WORKDIR}/glib-${PV}/gio/gdbus-2.0/codegen"
+
+python_prepare_all() {
+   PATCHES=(
+   "${FILESDIR}/${PN}-2.56.1-sitedir.patch"
+   )
+   distutils-r1_python_prepare_all
+
+   cp gdbus-codegen.in gdbus-codegen || die "cp failed"
+   cp "${FILESDIR}/setup.py-2.32.4" setup.py || die "cp failed"
+   sed -e "s/@PV@/${PV}/" -i setup.py || die "sed setup.py failed"
+}
+
+src_test() {
+   einfo "Skipping tests. This package is tested by dev-libs/glib"
+   einfo "when merged with FEATURES=test"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all # no-op, but prevents QA warning
+   doman "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1"
+}



[gentoo-commits] proj/gnome:master commit in: dev-util/gdbus-codegen/, dev-libs/glib/

2018-04-14 Thread Remi Cardona
commit: bddb421cc7d40426e6fa35f6714a0d373eeb9601
Author: Rémi Cardona  gentoo  org>
AuthorDate: Sat Apr 14 08:45:46 2018 +
Commit: Remi Cardona  gentoo  org>
CommitDate: Sat Apr 14 08:45:46 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=bddb421c

*/*: Remove sparc-fbsd keywords

See f7f3b4a2e5401b2fdac055195a56744e4407c1ec in gentoo repo.

 dev-libs/glib/glib-.ebuild | 2 +-
 dev-util/gdbus-codegen/gdbus-codegen-2.54.2.ebuild | 2 +-
 dev-util/gdbus-codegen/gdbus-codegen-2.54.3.ebuild | 2 +-
 dev-util/gdbus-codegen/gdbus-codegen-.ebuild   | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/glib/glib-.ebuild b/dev-libs/glib/glib-.ebuild
index b5718a7d..e5bfef19 100644
--- a/dev-libs/glib/glib-.ebuild
+++ b/dev-libs/glib/glib-.ebuild
@@ -38,7 +38,7 @@ REQUIRED_USE="
 if [[ ${PV} =  ]]; then
KEYWORDS=""
 else
-   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"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 
 RDEPEND="

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

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

diff --git a/dev-util/gdbus-codegen/gdbus-codegen-.ebuild 
b/dev-util/gdbus-codegen/gdbus-codegen-.ebuild
index 2ed677e5..31daa467 100644
--- a/dev-util/gdbus-codegen/gdbus-codegen-.ebuild
+++ b/dev-util/gdbus-codegen/gdbus-codegen-.ebuild
@@ -25,7 +25,7 @@ SLOT="0"
 if [[ ${PV} =  ]]; then
KEYWORDS=""
 else
-   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"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 
 IUSE=""



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

2018-04-14 Thread Pacho Ramos
commit: 27085a86e67eb6dd14dec6d92a994fa34bebeba7
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 10:58:04 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 10:59:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27085a86

sys-apps/colorized-logs: Stabilize

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 sys-apps/colorized-logs/colorized-logs-2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/colorized-logs/colorized-logs-2.3.ebuild 
b/sys-apps/colorized-logs/colorized-logs-2.3.ebuild
index bee91bfd74a..0e22beb33d1 100644
--- a/sys-apps/colorized-logs/colorized-logs-2.3.ebuild
+++ b/sys-apps/colorized-logs/colorized-logs-2.3.ebuild
@@ -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] repo/gentoo:master commit in: net-wireless/bluez/

2018-04-14 Thread Pacho Ramos
commit: 8f6e1f7a31c02566e28a9f0eb81c99155eca7f24
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 10:59:16 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 10:59:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f6e1f7a

net-wireless/bluez: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 net-wireless/bluez/Manifest |   1 -
 net-wireless/bluez/bluez-5.48-r1.ebuild | 259 
 2 files changed, 260 deletions(-)

diff --git a/net-wireless/bluez/Manifest b/net-wireless/bluez/Manifest
index c9e64330eaf..4b7c1367991 100644
--- a/net-wireless/bluez/Manifest
+++ b/net-wireless/bluez/Manifest
@@ -1,3 +1,2 @@
 DIST bluez-5.47.tar.xz 1718920 BLAKE2B 
e5863181ba9b19b81bc430fb900e1a8752749a02dac122a57bd44c41a1aeeb21b4c1476cab2ce89a7d3570fc1b592f1a2ed9e1f96c289faee942d203d1e3aa85
 SHA512 
86fa1baae1593d4824038db8418358b0be624c81fc23ee8f96ec08979d309a2377be3924ab53cc0fcb712aec8e696360e9a9f4de4c12cc31b14de5cf495a11a6
-DIST bluez-5.48.tar.xz 1733952 BLAKE2B 
0a68a1b790d752b02b8ab3d0eeaa9387c15851003a1d691cb476cef564c032498935997b84af4dd8bdb448dbe434eedecb982a9a867dd4dfa2ca0c8a23f371c3
 SHA512 
38cb20b8acee8adaab286a0b042efa770df367e7a69556117961fcc46d9e0a0e2a48059c7df9511bb00fe7fc37e916e34c928df9372b45051fcc57c8965b0bb7
 DIST bluez-5.49.tar.xz 1744860 BLAKE2B 
25b350debb016f93d23a2ecf14183197a3b8e8c0496b82b22a51ccc00ccf0241fb43d7d8d9ed04bdfcc0a078b8394e8b9ff23963854e51b6a19cf769811f
 SHA512 
bc2988649420232b92e2c6836857027369f05ace005972f575ed0601c02cc97a07a3b7a0707a8bad72be73df7e8096c8bf023530443556e87c2ccb667981b37d

diff --git a/net-wireless/bluez/bluez-5.48-r1.ebuild 
b/net-wireless/bluez/bluez-5.48-r1.ebuild
deleted file mode 100644
index dc9296bd955..000
--- a/net-wireless/bluez/bluez-5.48-r1.ebuild
+++ /dev/null
@@ -1,259 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit autotools ltprune multilib python-single-r1 readme.gentoo-r1 systemd 
udev user multilib-minimal
-
-DESCRIPTION="Bluetooth Tools and System Daemons for Linux"
-HOMEPAGE="http://www.bluez.org;
-SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0/3"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 x86"
-IUSE="alsa cups doc debug deprecated extra-tools experimental +mesh +obex 
+readline selinux systemd test test-programs +udev user-session"
-
-# Since this release all remaining extra-tools need readline support, but this 
could
-# change in the future, hence, this REQUIRED_USE constraint could be dropped
-# again in the future.
-REQUIRED_USE="
-   extra-tools? ( deprecated readline )
-   test? ( ${PYTHON_REQUIRED_USE} )
-   test-programs? ( ${PYTHON_REQUIRED_USE} )
-   user-session? ( systemd )
-"
-
-CDEPEND="
-   >=dev-libs/glib-2.28:2[${MULTILIB_USEDEP}]
-   >=sys-apps/dbus-1.6:=[user-session=]
-   >=sys-apps/hwids-20121202.2
-   alsa? ( media-libs/alsa-lib )
-   cups? ( net-print/cups:= )
-   mesh? (
-   dev-libs/json-c:=
-   sys-libs/readline:0= )
-   obex? ( dev-libs/libical:= )
-   readline? ( sys-libs/readline:0= )
-   systemd? ( sys-apps/systemd )
-   udev? ( >=virtual/udev-172 )
-"
-TEST_DEPS="${PYTHON_DEPS}
-   >=dev-python/dbus-python-1[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-"
-
-DEPEND="${CDEPEND}
-   virtual/pkgconfig
-   test? ( ${TEST_DEPS} )
-"
-RDEPEND="${CDEPEND}
-   selinux? ( sec-policy/selinux-bluetooth )
-   test-programs? ( ${TEST_DEPS} )
-"
-DOC_CONTENTS="
-   If you want to control your bluetooth devices as a non-root user,
-   please remember to add you to plugdev group.
-"
-
-PATCHES=(
-   # Use static group "plugdev" to not force people to become root for
-   # controlling the devices.
-   "${FILESDIR}"/bluez-plugdev.patch
-
-   # Try both udevadm paths to cover udev/systemd vs. eudev locations 
(#539844)
-   # http://www.spinics.net/lists/linux-bluetooth/msg58739.html
-   "${FILESDIR}"/bluez-udevadm-path.patch
-
-   # build: Quote systemd variable names, bug #527432
-   # http://article.gmane.org/gmane.linux.bluez.kernel/67230
-   "${FILESDIR}"/bluez-5.39-systemd-quote.patch
-
-   # Fedora patches
-   # http://www.spinics.net/lists/linux-bluetooth/msg40136.html
-   
"${FILESDIR}"/0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch
-
-   # ???
-   "${FILESDIR}"/0004-agent-Assert-possible-infinite-loop.patch
-)
-
-pkg_setup() {
-   enewgroup plugdev
-
-   if use test || use test-programs; then
-   python-single-r1_pkg_setup
-   fi
-
-   if ! use udev; then
-   ewarn
-   ewarn "You are installing ${PN} with USE=-udev. This means 
various bluetooth"
-   ewarn "devices and 

[gentoo-commits] repo/gentoo:master commit in: x11-themes/ubuntu-wallpapers/

2018-04-14 Thread Pacho Ramos
commit: 74d2559128a0bd1c78688253397f2d6eb8ab0822
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 10:57:42 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 10:59:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74d25591

x11-themes/ubuntu-wallpapers: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 x11-themes/ubuntu-wallpapers/Manifest  |  1 -
 .../ubuntu-wallpapers-17.10.1.ebuild   | 37 --
 2 files changed, 38 deletions(-)

diff --git a/x11-themes/ubuntu-wallpapers/Manifest 
b/x11-themes/ubuntu-wallpapers/Manifest
index 7433f2add9c..1e0822f340e 100644
--- a/x11-themes/ubuntu-wallpapers/Manifest
+++ b/x11-themes/ubuntu-wallpapers/Manifest
@@ -1,2 +1 @@
-DIST ubuntu-wallpapers_17.10.1.orig.tar.gz 129711183 BLAKE2B 
ca5c4010cc5b724d8f1a2963370393f096fd43bf2fde6150d9348d70538621ce364b352fae5903fc22dd63ec10a8dbbb3fc61859683fa1fe95030d10d82464e8
 SHA512 
1f863473079e1c95b9110c7fc18484a15a0215e35e29acb3c48ab5ebff4cab25b2c83e8a8864a2e5df7fd523dc4e519f2c27f0ee4479a64485f854d752942b76
 DIST ubuntu-wallpapers_18.04.0.orig.tar.gz 129653406 BLAKE2B 
807b5212d95b5881bf4139b822f13e38b696c0fd8a848ed03ca035c98b570c1fa6a25dd301b62e1d9871ce42636f26cf6531f9f89480f7cb8518c36673b0f064
 SHA512 
a6a57f448c7180cc6fa946ca69dfdbc3af13cd7b29155b4a5d05f1fedf99736110b919514c6e5ded6ef0fd95262bb2902148529150ecc725e43f0f6e864d282e

diff --git a/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-17.10.1.ebuild 
b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-17.10.1.ebuild
deleted file mode 100644
index ebb7379f004..000
--- a/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-17.10.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Ubuntu wallpapers"
-HOMEPAGE="https://launchpad.net/ubuntu/+source/ubuntu-wallpapers;
-MY_P="${PN}_${PV}"
-SRC_URI="mirror://ubuntu/pool/main/u/${PN}/${MY_P}.orig.tar.gz"
-LICENSE="CC-BY-SA-3.0"
-KEYWORDS="amd64 arm x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND=""
-
-S="${WORKDIR}/${MY_P/_/-}"
-
-SLOT="0"
-
-src_compile() { :; }
-src_test() { :; }
-
-src_install() {
-   insinto /usr/share/backgrounds
-   doins *.jpg *.png
-
-   insinto /usr/share/backgrounds/contest
-   doins contest/*.xml
-
-   for i in *.xml.in; do
-   insinto /usr/share/gnome-background-properties
-   newins ${i} ${i/.in/}
-   done
-
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/ubuntu-wallpapers/

2018-04-14 Thread Pacho Ramos
commit: 0c27bcd28534e1f6783979752e4759d3924981d3
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 10:57:30 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 10:59:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c27bcd2

x11-themes/ubuntu-wallpapers: Stabilize

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-18.04.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-18.04.0.ebuild 
b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-18.04.0.ebuild
index d4c81aca080..9ff5a144f20 100644
--- a/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-18.04.0.ebuild
+++ b/x11-themes/ubuntu-wallpapers/ubuntu-wallpapers-18.04.0.ebuild
@@ -8,7 +8,7 @@ 
HOMEPAGE="https://launchpad.net/ubuntu/+source/ubuntu-wallpapers;
 MY_P="${PN}_${PV}"
 SRC_URI="mirror://ubuntu/pool/main/u/${PN}/${MY_P}.orig.tar.gz"
 LICENSE="CC-BY-SA-3.0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 arm x86"
 IUSE=""
 
 RDEPEND=""



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

2018-04-14 Thread Pacho Ramos
commit: 440774764b287342f7c53eddfcb00e58d5563dbd
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 10:58:14 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 10:59:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44077476

sys-apps/colorized-logs: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 sys-apps/colorized-logs/Manifest  |  1 -
 sys-apps/colorized-logs/colorized-logs-2.1.ebuild | 24 ---
 2 files changed, 25 deletions(-)

diff --git a/sys-apps/colorized-logs/Manifest b/sys-apps/colorized-logs/Manifest
index 2107649..7a2cd6a9c88 100644
--- a/sys-apps/colorized-logs/Manifest
+++ b/sys-apps/colorized-logs/Manifest
@@ -1,2 +1 @@
-DIST colorized-logs-2.1.tar.gz 9997 BLAKE2B 
5d6b184102c63dad8526f1feebbd84531a18f2505801f4bedd62cbdfa04bd919b750b60b37fec5449b1a5b98500dcbd7feec7b7155ca0c779d31ea66d8305e28
 SHA512 
d03919cfa19d6df41bcb9dd6bb29e436febff4ed4d50d9ce83910bfdb61acbf323ecd4dcf9eaa9cfae3bb338b2107f1d156815848b8da8b470c50651650dfee1
 DIST colorized-logs-2.3.tar.gz 10270 BLAKE2B 
3b0798139e96512b4d544c76bcbece81283a77dd7deca8b018bb0ddd9535eb80f88b8f10a9a9a20c4f98b67cc97bb7673de80339bcc45c5ce46b8e8dfe53a53b
 SHA512 
a15616f0548c0a91dc290fb6a9c6a8376b66ebc2fb1af21e1caed03c95c07b8536d8a81dd9e199d54ffa5339d0f777cabe75e23fda3bb916575fe3ac31bf51f9

diff --git a/sys-apps/colorized-logs/colorized-logs-2.1.ebuild 
b/sys-apps/colorized-logs/colorized-logs-2.1.ebuild
deleted file mode 100644
index 0e22beb33d1..000
--- a/sys-apps/colorized-logs/colorized-logs-2.1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit cmake-utils
-
-DESCRIPTION="Tools for logs with ANSI color"
-HOMEPAGE="https://github.com/kilobyte/colorized-logs/;
-SRC_URI="https://github.com/kilobyte/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_install() {
-   cmake-utils_src_install
-   # Rename to not collide with dev-python/ansi2html
-   mv "${ED}/usr/bin/ansi2html" "${ED}/usr/bin/cl-ansi2html" || die
-   mv "${ED}/usr/share/man/man1/ansi2html.1" 
"${ED}/usr/share/man/man1/cl-ansi2html.1" || die
-}



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2018-04-14 Thread Andreas Sturmlechner
commit: e66af9c7b2dd075fde39927f678ba1cdc057bb0f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr 14 10:58:43 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr 14 10:58:43 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e66af9c7

profiles: Drop kde-frameworks-5.45 package.mask

 profiles/package.mask/kde-frameworks-5.45 | 82 ---
 1 file changed, 82 deletions(-)

diff --git a/profiles/package.mask/kde-frameworks-5.45 
b/profiles/package.mask/kde-frameworks-5.45
deleted file mode 100644
index 1f3ec15fe3..00
--- a/profiles/package.mask/kde-frameworks-5.45
+++ /dev/null
@@ -1,82 +0,0 @@
-# Andreas Sturmlechner  (08 Apr 2018)
-# KDE Frameworks 5.45.0 mask
-# Not released yet.
-~kde-frameworks/attica-5.45.0:5
-~kde-frameworks/baloo-5.45.0:5
-~kde-frameworks/bluez-qt-5.45.0:5
-~kde-frameworks/breeze-icons-5.45.0:5
-~kde-frameworks/breeze-icons-rcc-5.45.0:5
-~kde-frameworks/extra-cmake-modules-5.45.0:5
-~kde-frameworks/frameworkintegration-5.45.0:5
-~kde-frameworks/kactivities-5.45.0:5
-~kde-frameworks/kactivities-stats-5.45.0:5
-~kde-frameworks/kapidox-5.45.0:5
-~kde-frameworks/karchive-5.45.0:5
-~kde-frameworks/kauth-5.45.0:5
-~kde-frameworks/kbookmarks-5.45.0:5
-~kde-frameworks/kcmutils-5.45.0:5
-~kde-frameworks/kcodecs-5.45.0:5
-~kde-frameworks/kcompletion-5.45.0:5
-~kde-frameworks/kconfig-5.45.0:5
-~kde-frameworks/kconfigwidgets-5.45.0:5
-~kde-frameworks/kcoreaddons-5.45.0:5
-~kde-frameworks/kcrash-5.45.0:5
-~kde-frameworks/kdbusaddons-5.45.0:5
-~kde-frameworks/kdeclarative-5.45.0:5
-~kde-frameworks/kded-5.45.0:5
-~kde-frameworks/kdelibs4support-5.45.0:5
-~kde-frameworks/kdesignerplugin-5.45.0:5
-~kde-frameworks/kdesu-5.45.0:5
-~kde-frameworks/kdewebkit-5.45.0:5
-~kde-frameworks/kdnssd-5.45.0:5
-~kde-frameworks/kdoctools-5.45.0:5
-~kde-frameworks/kemoticons-5.45.0:5
-~kde-frameworks/kfilemetadata-5.45.0:5
-~kde-frameworks/kglobalaccel-5.45.0:5
-~kde-frameworks/kguiaddons-5.45.0:5
-~kde-frameworks/kholidays-5.45.0:5
-~kde-frameworks/khtml-5.45.0:5
-~kde-frameworks/ki18n-5.45.0:5
-~kde-frameworks/kiconthemes-5.45.0:5
-~kde-frameworks/kidletime-5.45.0:5
-~kde-frameworks/kimageformats-5.45.0:5
-~kde-frameworks/kinit-5.45.0:5
-~kde-frameworks/kio-5.45.0:5
-~kde-frameworks/kirigami-5.45.0:5
-~kde-frameworks/kitemmodels-5.45.0:5
-~kde-frameworks/kitemviews-5.45.0:5
-~kde-frameworks/kjobwidgets-5.45.0:5
-~kde-frameworks/kjs-5.45.0:5
-~kde-frameworks/kjsembed-5.45.0:5
-~kde-frameworks/kmediaplayer-5.45.0:5
-~kde-frameworks/knewstuff-5.45.0:5
-~kde-frameworks/knotifications-5.45.0:5
-~kde-frameworks/knotifyconfig-5.45.0:5
-~kde-frameworks/kpackage-5.45.0:5
-~kde-frameworks/kparts-5.45.0:5
-~kde-frameworks/kpeople-5.45.0:5
-~kde-frameworks/kplotting-5.45.0:5
-~kde-frameworks/kpty-5.45.0:5
-~kde-frameworks/kross-5.45.0:5
-~kde-frameworks/krunner-5.45.0:5
-~kde-frameworks/kservice-5.45.0:5
-~kde-frameworks/ktexteditor-5.45.0:5
-~kde-frameworks/ktextwidgets-5.45.0:5
-~kde-frameworks/kunitconversion-5.45.0:5
-~kde-frameworks/kwallet-5.45.0:5
-~kde-frameworks/kwayland-5.45.0:5
-~kde-frameworks/kwidgetsaddons-5.45.0:5
-~kde-frameworks/kwindowsystem-5.45.0:5
-~kde-frameworks/kxmlgui-5.45.0:5
-~kde-frameworks/kxmlrpcclient-5.45.0:5
-~kde-frameworks/modemmanager-qt-5.45.0:5
-~kde-frameworks/networkmanager-qt-5.45.0:5
-~kde-frameworks/oxygen-icons-5.45.0:5
-~kde-frameworks/plasma-5.45.0:5
-~kde-frameworks/prison-5.45.0:5
-~kde-frameworks/purpose-5.45.0:5
-~kde-frameworks/qqc2-desktop-style-5.45.0:5
-~kde-frameworks/solid-5.45.0:5
-~kde-frameworks/sonnet-5.45.0:5
-~kde-frameworks/syntax-highlighting-5.45.0:5
-~kde-frameworks/threadweaver-5.45.0:5



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

2018-04-14 Thread Andreas Sturmlechner
commit: 85c2f9d2e80466db4cf0143a4abf97d3025feba4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr 14 10:57:54 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr 14 10:57:54 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=85c2f9d2

kde5.eclass: Mark KDE Frameworks 5.45.0 as released

 eclass/kde5.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 475eb3ca38..f72baab44c 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -159,7 +159,7 @@ fi
 # An array of $CATEGORY-$PV pairs of packages that are unreleased upstream.
 # Any package matching this will have fetch restriction enabled, and receive
 # a proper error message via pkg_nofetch.
-KDE_UNRELEASED=( kde-frameworks-5.45.0 kde-apps-18.04.0 )
+KDE_UNRELEASED=( kde-apps-18.04.0 )
 
 if [[ ${KDEBASE} = kdevelop ]]; then
HOMEPAGE="https://www.kdevelop.org/;



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

2018-04-14 Thread Markus Meier
commit: 2a614f20d8050a15d27fb27a14e23746a32b8f41
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:23:59 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:23:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a614f20

app-misc/dtach: add ~arm64, bug #651582

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

 app-misc/dtach/dtach-0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/dtach/dtach-0.9.ebuild b/app-misc/dtach/dtach-0.9.ebuild
index c7f69857e23..ebd74b3795e 100644
--- a/app-misc/dtach/dtach-0.9.ebuild
+++ b/app-misc/dtach/dtach-0.9.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd"
 IUSE=""
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tcllib/

2018-04-14 Thread Markus Meier
commit: 499b9deb8dfd7c99f7afb3a20f64d1497d7a8e6b
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:24:04 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:24:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=499b9deb

dev-tcltk/tcllib: add ~arm64, bug #651582

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

 dev-tcltk/tcllib/tcllib-1.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tcltk/tcllib/tcllib-1.16.ebuild 
b/dev-tcltk/tcllib/tcllib-1.16.ebuild
index 4a1351011b2..9600f3a3e7d 100644
--- a/dev-tcltk/tcllib/tcllib-1.16.ebuild
+++ b/dev-tcltk/tcllib/tcllib-1.16.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="mirror://sourceforge//project/${PN}/${PN}/${PV}/${MY_P}.tar.bz2
 LICENSE="BSD"
 SLOT="0"
 IUSE="examples"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 
 RDEPEND="
dev-lang/tcl:0=



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

2018-04-14 Thread Markus Meier
commit: 3a38191a424f0634c09349e55e823166e69e1402
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:23:04 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:23:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a38191a

app-admin/syslog-ng: add ~arm/~arm64, bug #650498

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

 app-admin/syslog-ng/syslog-ng-3.14.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/syslog-ng/syslog-ng-3.14.1.ebuild 
b/app-admin/syslog-ng/syslog-ng-3.14.1.ebuild
index d7961f4b8c3..c700adcaabd 100644
--- a/app-admin/syslog-ng/syslog-ng-3.14.1.ebuild
+++ b/app-admin/syslog-ng/syslog-ng-3.14.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/balabit/syslog-ng/releases/download/${P}/${P}.tar.gz
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="amqp caps dbi geoip http ipv6 json libressl mongodb pacct python redis 
smtp spoof-source systemd tcpd"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 RESTRICT="test"



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

2018-04-14 Thread Markus Meier
commit: 81d4407f6ca61b1b9a9756b833c7972d6cf8c854
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:22:54 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:22:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81d4407f

profiles: package.use.mask app-admin/syslog-ng[mongodb] on arm for bug #650498

Signed-off-by: Markus Meier  gentoo.org>

 profiles/arch/arm/package.use.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index b4a708c7521..16667f784fe 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -472,7 +472,7 @@ media-libs/phonon vlc
 
 # Michael Sterrett  (04 Mar 2012)
 # arm is missing keywords for >=dev-libs/json-glib-0.12
-app-admin/syslog-ng json
+app-admin/syslog-ng json mongodb
 
 # Anthony G. Basile  (Dec 21, 2011)
 # Mask the vde flag on tinc because net-misc/vde is not



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

2018-04-14 Thread Markus Meier
commit: 7c2f0433395161f2b53760d39f512b443421cbc3
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:24:44 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:24:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c2f0433

dev-db/mariadb: add ~arm64, bug #649038

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

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

diff --git a/dev-db/mariadb/mariadb-10.3.5_rc.ebuild 
b/dev-db/mariadb/mariadb-10.3.5_rc.ebuild
index e155c7cf981..0fcf8f32eb3 100644
--- a/dev-db/mariadb/mariadb-10.3.5_rc.ebuild
+++ b/dev-db/mariadb/mariadb-10.3.5_rc.ebuild
@@ -44,7 +44,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
static? ( yassl !pam )"
 
 # REMEMBER: also update eclass/mysql*.eclass before committing!
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~sparc ~x86"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2018-04-14 Thread Markus Meier
commit: 2234d5ccd64fb7073abecf0734ba4fdaba817746
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:23:21 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:23:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2234d5cc

net-mail/mailutils: add ~arm, bug #635216

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

 net-mail/mailutils/mailutils-3.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-mail/mailutils/mailutils-3.4.ebuild 
b/net-mail/mailutils/mailutils-3.4.ebuild
index 6e414782ed7..856c9706d01 100644
--- a/net-mail/mailutils/mailutils-3.4.ebuild
+++ b/net-mail/mailutils/mailutils-3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/mailutils/${P}.tar.xz"
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~ppc-macos 
~x64-macos ~x86-macos"
 IUSE="berkdb bidi +clients gdbm sasl guile ipv6 kerberos kyotocabinet ldap \
mysql nls pam postgres python servers ssl static-libs +threads tcpd \
tokyocabinet"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Blowfish/

2018-04-14 Thread Markus Meier
commit: 50a957b0aa8efc887cc074355f177c6cd0cacc77
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:23:41 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:23:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50a957b0

dev-perl/Crypt-Blowfish: add ~arm64, bug #652576

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

 dev-perl/Crypt-Blowfish/Crypt-Blowfish-2.140.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Crypt-Blowfish/Crypt-Blowfish-2.140.0-r1.ebuild 
b/dev-perl/Crypt-Blowfish/Crypt-Blowfish-2.140.0-r1.ebuild
index 43f20047919..6248a43391c 100644
--- a/dev-perl/Crypt-Blowfish/Crypt-Blowfish-2.140.0-r1.ebuild
+++ b/dev-perl/Crypt-Blowfish/Crypt-Blowfish-2.140.0-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Crypt::Blowfish module for perl"
 
 LICENSE="|| ( Artistic GPL-2 )"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE=""
 
 SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-IDEA/

2018-04-14 Thread Markus Meier
commit: 13eaa17512c0c1ddf98863f576e8e91ad33061cc
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:23:46 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:23:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13eaa175

dev-perl/Crypt-IDEA: add ~arm64, bug #652576

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

 dev-perl/Crypt-IDEA/Crypt-IDEA-1.100.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Crypt-IDEA/Crypt-IDEA-1.100.0.ebuild 
b/dev-perl/Crypt-IDEA/Crypt-IDEA-1.100.0.ebuild
index 677a4a2412a..0ba332f7560 100644
--- a/dev-perl/Crypt-IDEA/Crypt-IDEA-1.100.0.ebuild
+++ b/dev-perl/Crypt-IDEA/Crypt-IDEA-1.100.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ DESCRIPTION="Parse and save PGP packet streams"
 
 LICENSE="Crypt-IDEA"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE=""
 
 SRC_TEST="do"



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

2018-04-14 Thread Markus Meier
commit: 1de2d9b60c320a205cf335225188d14553784248
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:20:34 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:20:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1de2d9b6

dev-libs/ivykis: add ~arm/~arm64, bug #650498

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

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

diff --git a/dev-libs/ivykis/ivykis-0.42.2.ebuild 
b/dev-libs/ivykis/ivykis-0.42.2.ebuild
index 3530fb1257a..4e304706b81 100644
--- a/dev-libs/ivykis/ivykis-0.42.2.ebuild
+++ b/dev-libs/ivykis/ivykis-0.42.2.ebuild
@@ -9,4 +9,4 @@ 
SRC_URI="https://github.com/buytenh/ivykis/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 hppa ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 hppa ia64 ~ppc ~ppc64 sparc x86"



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

2018-04-14 Thread Markus Meier
commit: ea1d99828f6c2a2886c9a8a236a5c5252e0bcb7e
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:23:14 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:23:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea1d9982

dev-db/kyotocabinet: add ~arm, bug #635216

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

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

diff --git a/dev-db/kyotocabinet/kyotocabinet-1.2.76-r1.ebuild 
b/dev-db/kyotocabinet/kyotocabinet-1.2.76-r1.ebuild
index 10a38d4b7dd..6259fdc0e33 100644
--- a/dev-db/kyotocabinet/kyotocabinet-1.2.76-r1.ebuild
+++ b/dev-db/kyotocabinet/kyotocabinet-1.2.76-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}pkg/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
 IUSE="debug doc examples static-libs"
 
 DEPEND="sys-libs/zlib[static-libs?]



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tdom/

2018-04-14 Thread Markus Meier
commit: 99715cb3b23701bd4ddfdd959fbed645fa3bbef9
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:24:08 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:24:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99715cb3

dev-tcltk/tdom: add ~arm64, bug #651582

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

 dev-tcltk/tdom/tdom-0.8.3-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tcltk/tdom/tdom-0.8.3-r4.ebuild 
b/dev-tcltk/tdom/tdom-0.8.3-r4.ebuild
index a3c3104884b..fdf8bf00dc8 100644
--- a/dev-tcltk/tdom/tdom-0.8.3-r4.ebuild
+++ b/dev-tcltk/tdom/tdom-0.8.3-r4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://github/tDOM/${PN}/${MY_P}.tgz"
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc x86 ~amd64-fbsd 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="static-libs threads"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-CBC/

2018-04-14 Thread Markus Meier
commit: 2f50be3e8b0634df3a2cfa5f58890f2f1556df34
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:23:32 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:23:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f50be3e

dev-perl/Crypt-CBC: add ~arm64, bug #652576

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

 dev-perl/Crypt-CBC/Crypt-CBC-2.330.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Crypt-CBC/Crypt-CBC-2.330.0-r1.ebuild 
b/dev-perl/Crypt-CBC/Crypt-CBC-2.330.0-r1.ebuild
index 4439f00e81e..cf864b70ea4 100644
--- a/dev-perl/Crypt-CBC/Crypt-CBC-2.330.0-r1.ebuild
+++ b/dev-perl/Crypt-CBC/Crypt-CBC-2.330.0-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Encrypt Data with Cipher Block Chaining Mode"
 
 LICENSE="Artistic"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="test"
 
 RDEPEND="virtual/perl-Digest-MD5"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-DES/

2018-04-14 Thread Markus Meier
commit: 42420ca90c474c3fa9dfc273701cb0f2e0b44c4c
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:23:36 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:23:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42420ca9

dev-perl/Crypt-DES: add ~arm64, bug #652576

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

 dev-perl/Crypt-DES/Crypt-DES-2.70.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Crypt-DES/Crypt-DES-2.70.0-r1.ebuild 
b/dev-perl/Crypt-DES/Crypt-DES-2.70.0-r1.ebuild
index 3b099684c7c..1677eb252d5 100644
--- a/dev-perl/Crypt-DES/Crypt-DES-2.70.0-r1.ebuild
+++ b/dev-perl/Crypt-DES/Crypt-DES-2.70.0-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Perl DES encryption module"
 
 LICENSE="DES"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 
~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 IUSE="test"
 
 DEPEND="test? ( dev-perl/Crypt-CBC )"



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

2018-04-14 Thread Markus Meier
commit: 7de2e164df148d561dbd694c529eb16e8f4039bc
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:24:28 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:24:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7de2e164

dev-db/mariadb-connector-c: add ~arm64, bug #649038

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

 dev-db/mariadb-connector-c/mariadb-connector-c-3.0.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.3.ebuild 
b/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.3.ebuild
index a8984a8dc48..904254fd97e 100644
--- a/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.3.ebuild
+++ b/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.3.ebuild
@@ -7,13 +7,13 @@ VCS_INHERIT=""
 if [[ "${PV}" ==  ]] ; then
VCS_INHERIT="git-r3"
EGIT_REPO_URI="https://github.com/MariaDB/connector-c.git;
-   KEYWORDS="~arm ~hppa ~ia64 ~ppc64 ~sparc"
+   KEYWORDS="~arm ~arm64 ~hppa ~ia64 ~ppc64 ~sparc"
 else
MY_PN=${PN#mariadb-}
MY_PV=${PV/_b/-b}

SRC_URI="https://downloads.mariadb.org/f/${MY_PN}-${PV%_beta}/${PN}-${MY_PV}-src.tar.gz?serve
 -> ${P}-src.tar.gz"
S="${WORKDIR}/${PN}-${MY_PV}-src"
-   KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc64 ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~sparc ~x86"
 fi
 
 inherit cmake-utils multilib-minimal toolchain-funcs ${VCS_INHERIT}



[gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-connector-c/

2018-04-14 Thread Markus Meier
commit: 09e63dfb591261e34ed3bfc2ac7e4dcddbb05abd
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:24:23 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:24:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09e63dfb

dev-db/mysql-connector-c: add ~arm64, bug #649038

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

 dev-db/mysql-connector-c/mysql-connector-c-6.1.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql-connector-c/mysql-connector-c-6.1.11.ebuild 
b/dev-db/mysql-connector-c/mysql-connector-c-6.1.11.ebuild
index 942af2c7b97..b0fd77fa0d6 100644
--- a/dev-db/mysql-connector-c/mysql-connector-c-6.1.11.ebuild
+++ b/dev-db/mysql-connector-c/mysql-connector-c-6.1.11.ebuild
@@ -18,7 +18,7 @@ LICENSE="GPL-2"
 
 SRC_URI="https://dev.mysql.com/get/Downloads/Connector-C/${P}-src.tar.gz;
 S="${WORKDIR}/${P}-src"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~sparc ~x86"
 
 SUBSLOT="18"
 SLOT="0/${SUBSLOT}"



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

2018-04-14 Thread Markus Meier
commit: 9700aec99b7f2f22e32808c540b29672a7ef5b89
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:37:36 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:37:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9700aec9

net-analyzer/nmap: arm stable, bug #651118

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

 net-analyzer/nmap/nmap-7.70.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/nmap/nmap-7.70.ebuild 
b/net-analyzer/nmap/nmap-7.70.ebuild
index a649c0dacfc..40fea0e3b9d 100644
--- a/net-analyzer/nmap/nmap-7.70.ebuild
+++ b/net-analyzer/nmap/nmap-7.70.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 
 IUSE="
ipv6 libressl libssh2 ncat ndiff nls nmap-update nping +nse ssl 
system-lua



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

2018-04-14 Thread Markus Meier
commit: d7fff74fad70ec71e49342c023e5d08521d1ee5a
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:40:09 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:40:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7fff74f

dev-lang/php: arm stable, bug #652420

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

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

diff --git a/dev-lang/php/php-7.0.29.ebuild b/dev-lang/php/php-7.0.29.ebuild
index 7b699fafeca..ab385d52c39 100644
--- a/dev-lang/php/php-7.0.29.ebuild
+++ b/dev-lang/php/php-7.0.29.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2 phpdbg"



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

2018-04-14 Thread Markus Meier
commit: 9ce01cd9710d9a013489644221de927a4c22cb86
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:39:35 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:39:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ce01cd9

net-analyzer/wireshark: arm stable, bug #652402

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

 net-analyzer/wireshark/wireshark-2.4.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/wireshark/wireshark-2.4.6.ebuild 
b/net-analyzer/wireshark/wireshark-2.4.6.ebuild
index 06b8c4ae0f7..f80d12f33c7 100644
--- a/net-analyzer/wireshark/wireshark-2.4.6.ebuild
+++ b/net-analyzer/wireshark/wireshark-2.4.6.ebuild
@@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~ppc ~ppc64 x86 ~x86-fbsd"
 IUSE="
adns androiddump +capinfos +caps +captype ciscodump cpu_flags_x86_sse4_2
+dftest doc doc-pdf +dumpcap +editcap geoip gtk kerberos libssh libxml2 
lua



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

2018-04-14 Thread Markus Meier
commit: 3b454a83f9cb9bf71c210aec3018b8e14dcce9d6
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:39:08 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:39:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b454a83

app-misc/beep: arm stable, bug #652330

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

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

diff --git a/app-misc/beep/beep-1.3-r3.ebuild b/app-misc/beep/beep-1.3-r3.ebuild
index c7a6706fc98..0222e746e1c 100644
--- a/app-misc/beep/beep-1.3-r3.ebuild
+++ b/app-misc/beep/beep-1.3-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.johnath.com/beep/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm ~ppc ~ppc64 sparc x86"
 IUSE="suid"
 
 PATCHES=(



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

2018-04-14 Thread Markus Meier
commit: ca1a09cc8902e4170b689f8df1e7e0674be607fb
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:38:00 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:38:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca1a09cc

media-libs/exempi: arm stable, bug #650714

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

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

diff --git a/media-libs/exempi/exempi-2.4.5.ebuild 
b/media-libs/exempi/exempi-2.4.5.ebuild
index 237e4f528ce..9c0622f5fe6 100644
--- a/media-libs/exempi/exempi-2.4.5.ebuild
+++ b/media-libs/exempi/exempi-2.4.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://libopenraw.freedesktop.org/download/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="2/3"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sh ~sparc x86 
~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="examples static-libs test"
 
 RDEPEND="



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

2018-04-14 Thread Markus Meier
commit: e0637326a0722691b1f87a94c8b2bcdc14c2e610
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:40:01 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:40:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0637326

dev-lang/php: arm stable, bug #652420

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

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

diff --git a/dev-lang/php/php-5.6.35-r1.ebuild 
b/dev-lang/php/php-5.6.35-r1.ebuild
index c45443f5578..8f87fde7f25 100644
--- a/dev-lang/php/php-5.6.35-r1.ebuild
+++ b/dev-lang/php/php-5.6.35-r1.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2"



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

2018-04-14 Thread Markus Meier
commit: 2a6d995eccd892d939664b012cf13538ffd69217
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:40:18 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:40:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a6d995e

dev-lang/php: arm stable, bug #652420

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

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

diff --git a/dev-lang/php/php-7.1.16.ebuild b/dev-lang/php/php-7.1.16.ebuild
index d37477a823c..55fab7c4c96 100644
--- a/dev-lang/php/php-7.1.16.ebuild
+++ b/dev-lang/php/php-7.1.16.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2 phpdbg"



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

2018-04-14 Thread Markus Meier
commit: 6be5f74f11b46fbb173e95af0614c9d2a9af4f40
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:38:20 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:38:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6be5f74f

dev-libs/openssl: arm stable, bug #651730

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

 dev-libs/openssl/openssl-1.0.2o.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/openssl/openssl-1.0.2o.ebuild 
b/dev-libs/openssl/openssl-1.0.2o.ebuild
index 9e7655521b7..b19312505a6 100644
--- a/dev-libs/openssl/openssl-1.0.2o.ebuild
+++ b/dev-libs/openssl/openssl-1.0.2o.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://openssl/source/${MY_P}.tar.gz
 
 LICENSE="openssl"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 IUSE="+asm bindist gmp kerberos rfc3779 sctp cpu_flags_x86_sse2 sslv2 +sslv3 
static-libs test +tls-heartbeat vanilla zlib"
 RESTRICT="!bindist? ( bindist )"
 



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

2018-04-14 Thread Markus Meier
commit: 503c3d0d7091a9f152d5270d0efd47deddcafaf8
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:38:42 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:38:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=503c3d0d

dev-lang/ruby: arm stable, bug #651884

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

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

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



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

2018-04-14 Thread Markus Meier
commit: f5d38b577d1c36a6f263be442baa2d6d94217b50
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:39:29 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:39:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5d38b57

media-libs/spandsp: arm stable, bug #652402

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

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

diff --git a/media-libs/spandsp/spandsp-0.0.6.ebuild 
b/media-libs/spandsp/spandsp-0.0.6.ebuild
index d8fa319ad62..86b99facda0 100644
--- a/media-libs/spandsp/spandsp-0.0.6.ebuild
+++ b/media-libs/spandsp/spandsp-0.0.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.soft-switch.org/downloads/spandsp/${P/_}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~ppc ppc64 ~sparc x86"
 IUSE="doc fixed-point cpu_flags_x86_mmx cpu_flags_x86_sse cpu_flags_x86_sse2 
cpu_flags_x86_sse3 static-libs"
 
 RDEPEND="media-libs/tiff



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

2018-04-14 Thread Markus Meier
commit: dfd3af5a6176f89eff4f75dfc8289686ecf3c411
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:38:48 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:38:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfd3af5a

dev-lang/ruby: arm stable, bug #651884

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

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

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



[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/uclibc/arm/, profiles/arch/arm/

2018-04-14 Thread Ulrich Müller
commit: b129c574e5c02c54f6a17f1f1132e4346e625500
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat Apr 14 11:41:35 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat Apr 14 11:49:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b129c574

profiles: Unmask app-editors/emacs[mailutils] on arm, bug 635216.

 profiles/arch/arm/package.use.mask | 5 -
 profiles/default/linux/uclibc/arm/package.use.mask | 5 -
 2 files changed, 10 deletions(-)

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index 16667f784fe..e06cdda58c2 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -35,11 +35,6 @@ app-doc/doxygen clang
 # Requires dev-libs/mongo-c-driver which isn't keyworded
 >=app-admin/rsyslog-8.31 mongodb
 
-# Ulrich Müller  (23 Oct 2017)
-# Needs net-mail/mailutils which is not keyworded, bug #635216.
-app-editors/emacs mailutils
-app-editors/emacs-vcs mailutils
-
 # Andreas Sturmlechner  (11 Oct 2017)
 # Required dependency dev-qt/qtspeech is not keyworded.
 kde-apps/konqueror speech

diff --git a/profiles/default/linux/uclibc/arm/package.use.mask 
b/profiles/default/linux/uclibc/arm/package.use.mask
index 8f997641d2e..ffa17387218 100644
--- a/profiles/default/linux/uclibc/arm/package.use.mask
+++ b/profiles/default/linux/uclibc/arm/package.use.mask
@@ -5,11 +5,6 @@
 # Requires dev-libs/mongo-c-driver which isn't keyworded
 >=app-admin/rsyslog-8.31 mongodb
 
-# Ulrich Müller  (23 Oct 2017)
-# Needs net-mail/mailutils which is not keyworded, bug #635216.
-app-editors/emacs mailutils
-app-editors/emacs-vcs mailutils
-
 # Davide Pesavento  (19 Dec 2016)
 # Various unkeyworded deps: >=sys-devel/clang-3.9 (#591822),
 # dev-qt/qtquickcontrols2 (#603054), dev-qt/qtwebengine (#581478)



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

2018-04-14 Thread Jeroen Roovers
commit: 370f197e7c03ed84106cf1432ce4bbbf9e2ea591
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Apr 14 11:47:56 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Apr 14 11:48:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=370f197e

net-misc/youtube-dl: Fix USE=-offensive (bug #653134).

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 ...youtube-dl-2018.04.09.ebuild => youtube-dl-2018.04.09-r1.ebuild} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/youtube-dl/youtube-dl-2018.04.09.ebuild 
b/net-misc/youtube-dl/youtube-dl-2018.04.09-r1.ebuild
similarity index 94%
rename from net-misc/youtube-dl/youtube-dl-2018.04.09.ebuild
rename to net-misc/youtube-dl/youtube-dl-2018.04.09-r1.ebuild
index cb6c9aff43e..37bffad45c8 100644
--- a/net-misc/youtube-dl/youtube-dl-2018.04.09.ebuild
+++ b/net-misc/youtube-dl/youtube-dl-2018.04.09-r1.ebuild
@@ -34,12 +34,12 @@ python_prepare_all() {
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
+   slutload spankbang spankwire sunporno thisav vporn 
watchindianporn
+   xbef xnxx xtube xvideos xxxymovies youjizz youporn
)
# these have multi-line import statements
local mxxx=(
-   drtuber fourtube motherless pornhub redtube tnaflix 
xhamster
+   drtuber fourtube motherless pornhub redtube tnaflix 
tube8 xhamster
)
# do single line imports
sed -i \



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

2018-04-14 Thread Markus Meier
commit: 18dd9920a40283a2b10cdb1db6c46f718890c09e
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Apr 14 11:48:02 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Apr 14 11:48:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18dd9920

dev-lang/go: arm stable, bug #650014

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

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

diff --git a/dev-lang/go/go-1.10.1.ebuild b/dev-lang/go/go-1.10.1.ebuild
index ca35487e101..efd269fb46c 100644
--- a/dev-lang/go/go-1.10.1.ebuild
+++ b/dev-lang/go/go-1.10.1.ebuild
@@ -39,7 +39,7 @@ case ${PV}  in
case ${PV} in
*_beta*|*_rc*) ;;
*)
-   KEYWORDS="-* amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-fbsd ~x86-fbsd 
~x64-macos ~x64-solaris"
+   KEYWORDS="-* amd64 arm ~arm64 ~ppc64 x86 ~amd64-fbsd ~x86-fbsd 
~x64-macos ~x64-solaris"
# The upstream tests fail under portage but pass if the build is
# run according to their documentation [1].
# I am restricting the tests on released versions until this is



[gentoo-commits] proj/portage:multilib commit in: /

2018-04-14 Thread Thomas Sachau
commit: ee29b930b880050eb9a04c06d0f1a0edd0e1fc27
Author: Thomas Sachau  gentoo  org>
AuthorDate: Sat Apr 14 12:11:15 2018 +
Commit: Thomas Sachau  gentoo  org>
CommitDate: Sat Apr 14 12:11:15 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ee29b930

Merge portage-2.3.28

 .travis.yml|2 +
 NEWS   |4 +
 RELEASE-NOTES  |   50 +
 bin/eapi.sh|   42 +-
 bin/eapi7-ver-funcs.sh |  191 
 bin/ebuild |2 +
 bin/ebuild-helpers/dobin   |   16 +-
 bin/ebuild-helpers/doconfd |   11 +-
 bin/ebuild-helpers/dodir   |4 +-
 bin/ebuild-helpers/dodoc   |2 +-
 bin/ebuild-helpers/doenvd  |   11 +-
 bin/ebuild-helpers/doexe   |8 +-
 bin/ebuild-helpers/dohard  |6 +-
 bin/ebuild-helpers/doheader|8 +-
 bin/ebuild-helpers/dohtml  |7 +-
 bin/ebuild-helpers/doinfo  |8 +-
 bin/ebuild-helpers/doins   |   18 +-
 bin/ebuild-helpers/dolib   |   17 +-
 bin/ebuild-helpers/dolib.a |4 +-
 bin/ebuild-helpers/dolib.so|4 +-
 bin/ebuild-helpers/doman   |8 +-
 bin/ebuild-helpers/domo|   21 +-
 bin/ebuild-helpers/dosbin  |   16 +-
 bin/ebuild-helpers/dosed   |4 +-
 bin/ebuild-helpers/dosym   |8 +-
 bin/ebuild-helpers/ecompressdir|   25 +-
 bin/ebuild-helpers/fowners |4 +-
 bin/ebuild-helpers/fperms  |4 +-
 bin/ebuild-helpers/keepdir |6 +-
 bin/ebuild-helpers/newins  |2 +-
 bin/ebuild-helpers/nonfatal|   14 +
 bin/ebuild-helpers/prepall |2 +-
 bin/ebuild-helpers/prepalldocs |4 +-
 bin/ebuild-helpers/prepallinfo |4 +-
 bin/ebuild-helpers/prepallstrip|4 +
 bin/ebuild-helpers/prepinfo|   12 +-
 bin/ebuild-helpers/prepman |   10 +-
 bin/ebuild-helpers/prepstrip   |  401 +---
 bin/ebuild.sh  |   47 +-
 bin/emerge |1 +
 bin/{ebuild-helpers/prepstrip => estrip}   |   93 +-
 bin/etc-update |   30 +-
 bin/filter-bash-environment.py |   47 +-
 bin/install-qa-check.d/60udev  |6 +-
 bin/install-qa-check.d/80libraries |   22 +-
 bin/isolated-functions.sh  |   40 +-
 bin/misc-functions.sh  |  131 +--
 bin/phase-functions.sh |   50 +-
 bin/phase-helpers.sh   |  114 ++-
 bin/portageq   |   18 +-
 bin/postinst-qa-check.d/50gnome2-utils |3 +
 bin/save-ebuild-env.sh |8 +-
 bin/xattr-helper.py|   19 +-
 cnf/repos.conf |6 +
 man/ebuild.5   |   10 -
 man/emerge.1   |   26 +-
 man/portage.5  |   29 +-
 pym/_emerge/BlockerDB.py   |4 +-
 pym/_emerge/EbuildPhase.py |7 +
 pym/_emerge/Package.py |   32 +-
 pym/_emerge/PackagePhase.py|   93 ++
 pym/_emerge/actions.py |   16 +-
 pym/_emerge/create_depgraph_params.py  |   12 +-
 pym/_emerge/depgraph.py|   77 +-
 pym/_emerge/main.py|   24 +-
 pym/_emerge/resolver/output.py |4 +-
 pym/_emerge/search.py  |4 +
 pym/_emerge/show_invalid_depstring_notice.py   |4 +-
 pym/portage/__init__.py|   58 +-
 pym/portage/_sets/base.py  |   17 +-
 pym/portage/cache/metadata.py  |4 +-
 pym/portage/const.py   |3 +-
 pym/portage/dbapi/__init__.py  |4 +-
 pym/portage/dbapi/bintree.py   |   16 +-
 pym/portage/dbapi/dep_expand.py|2 +-
 pym/portage/dbapi/porttree.py

[gentoo-commits] gentoo commit in src/patchsets/gcc/7.3.0/gentoo: 92_all_sh-drop-sysroot-suffix.patch README.history

2018-04-14 Thread Sergei Trofimovich (slyfox)
slyfox  18/04/14 12:28:33

  Modified: README.history
  Added:92_all_sh-drop-sysroot-suffix.patch
  Log:
  gcc/7.3.0: gcc/config.gcc: sh-*: Disable sysroot-suffix (PR42947)
  
  sh-* is a multilib target. It is also one of 2 sysroot-prefix targets.
  Unfortunately two options do not mix well. Attempt to use default
  multilib flavour always prepends sysroot-prefix.
  
  Bug: https://bugs.gentoo.org/511548
  Bug: https://gcc.gnu.org/PR42947

Revision  ChangesPath
1.3  src/patchsets/gcc/7.3.0/gentoo/README.history

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

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/7.3.0/gentoo/README.history,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- README.history  11 Mar 2018 10:00:35 -  1.2
+++ README.history  14 Apr 2018 12:28:33 -  1.3
@@ -1,3 +1,5 @@
+1.214 Apr 2018
+   + 92_all_sh-drop-sysroot-suffix.patch
 1.111 Feb 2018
+ 91_all_bmi-i386-PR-target-81763.patch
 1.025 Jan 2018



1.1  
src/patchsets/gcc/7.3.0/gentoo/92_all_sh-drop-sysroot-suffix.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/7.3.0/gentoo/92_all_sh-drop-sysroot-suffix.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/7.3.0/gentoo/92_all_sh-drop-sysroot-suffix.patch?rev=1.1=text/plain

Index: 92_all_sh-drop-sysroot-suffix.patch
===
>From 5eeeff19bb4978a8d3c0d53bc81744bc25d82993 Mon Sep 17 00:00:00 2001
From: Sergei Trofimovich 
Date: Sat, 14 Apr 2018 13:07:39 +0100
Subject: [PATCH] gcc/config.gcc: sh-*: Disable sysroot-suffix (PR42947)

sh-* is a multilib target. It is also one of 2 sysroot-prefix targets.
Unfortunately two options do not mix well. Attempt to use default
multilib flavour always prepends sysroot-prefix.

Bug: https://bugs.gentoo.org/511548
Bug: https://gcc.gnu.org/PR42947
Signed-off-by: Sergei Trofimovich 
---
 gcc/config.gcc | 2 --
 1 file changed, 2 deletions(-)

diff --git a/gcc/config.gcc b/gcc/config.gcc
index 55c314afdbd..c320f24f123 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -2866,8 +2866,6 @@ sh-*-elf* | sh[12346l]*-*-elf* | \
if test x${enable_incomplete_targets} = xyes ; then
tm_defines="$tm_defines SUPPORT_SH1=1 SUPPORT_SH2E=1 
SUPPORT_SH4=1 SUPPORT_SH4_SINGLE=1 SUPPORT_SH2A=1 SUPPORT_SH2A_SINGLE=1"
fi
-   tm_file="$tm_file ./sysroot-suffix.h"
-   tmake_file="$tmake_file t-sysroot-suffix"
;;
 sh-*-rtems*)
tmake_file="${tmake_file} sh/t-sh sh/t-rtems"
-- 
2.17.0







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

2018-04-14 Thread Sergei Trofimovich
commit: 49d0cca0f886e06d54896ae70b5d24a364ef17e3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Apr 14 12:36:15 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Apr 14 12:36:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49d0cca0

sys-devel/gcc: bump patchset of 7.3.0 up to 1.2, bug #511548

Single new patch:
+ 92_all_sh-drop-sysroot-suffix.patch : drop sysroot-suffix

Reported-by: Manuel Lauss
Bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42947
Closes: https://bugs.gentoo.org/511548
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 sys-devel/gcc/Manifest|  1 +
 sys-devel/gcc/gcc-7.3.0-r2.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 7f9229415ec..27b2dcd1c00 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -57,5 +57,6 @@ DIST gcc-7.2.0-patches-1.1.tar.bz2 9246 BLAKE2B 
f6eec8459e5ac1f177d9a417c59616ad
 DIST gcc-7.2.0.tar.xz 62312628 BLAKE2B 
35e4b732f1a4515fc1a9d4424797177112847588e600dc5531bc9bf72305619d4100e8fd9d945920245e704fc9ac5bc5e3dbd20be6c3af49e689fc5bd1eca10f
 SHA512 
f853cd6530b4055d8d8289da74687cb4c6d5f363598d386332d31852b581bac76c3adb7d61889edec3b779f63d8646f0122840f12965ce4a4389ba535dbbb6e1
 DIST gcc-7.3.0-patches-1.0.tar.bz2 6757 BLAKE2B 
ffe6a69e61dc4379fc77b0bf21971ff6fe482edd315ae1243e55b147ad5794320816fbfc3f85ccebe34de080e2c5b718b60b59064aaf095e905c1b41d7c08168
 SHA512 
a86ffc03940afa12c44b919f861b9459a3cd460cd4680dce8316755021789530640977e90c4cff89be768fc62e0e24d9bee0a1ee76c537ad88c8f4ed07f1a73a
 DIST gcc-7.3.0-patches-1.1.tar.bz2 7439 BLAKE2B 
b6eff6f96cf4daf7b8debc767dc5ee1924a27be95c0a9a5d5ba957978f224c0907570e1492398865c4fa27d3b8f7c2f0fea2da813bf6b4ebb0fa66f9ccca9c46
 SHA512 
864a433c8f153a216c1028c553ffc3c84c474498c637ca6978e86fbb2ce4c07291c2561aabc2caa4953c012b8e18c277383ca153d56e13006967680119f9bcfa
+DIST gcc-7.3.0-patches-1.2.tar.bz2 7947 BLAKE2B 
3748a090654b322c94402bc88803ffb5e751532601b5810e08891c240360f4725e5666d458bcb189e1ff5aca34db1dc21984d08e26853cd495d3cf1407b16296
 SHA512 
60fa8ed8a2c331db5a9baca86cea655c3f8a26791d6db38cfde2b87147421d7fd9bff20a1486e75512c30cd5e788af11eae329721d84e61270cff2048a4e493b
 DIST gcc-7.3.0.tar.xz 62462388 BLAKE2B 
dc8f132b21bd0543c3d9dd17557038aafe65675aa73c540954234a3c972b4c31c939149bd50183d072ab6c8d16919e19daeaaffd619ce2ccd62dbdf9a5bb3302
 SHA512 
ad41a7e4584e40e92cdf860bc0288500fbaf5dfb7e8c3fcabe9eba809c87bcfa85b46c19c19921b0cdf6d05483faede8287bb9ea120c0d1559449a70e602c8d4
 DIST gdc-0.24-src.tar.bz2 1012099 BLAKE2B 
2c85058aad09af328719a702f69d655b9aa9655f2a83bb46bd21367cd442ed72c9b471ddaa764753f782dcb2f22fe51b052a965ed08290e0d9415b543481d144
 SHA512 
9aec7e4b102e602dfb61cd09ea4b4a96af637ceb3d726235261d09ebd35dbd416abcbfe0e46918e48474bd241fe9bb29abc145a65aa834669295aaee4fca0686

diff --git a/sys-devel/gcc/gcc-7.3.0-r2.ebuild 
b/sys-devel/gcc/gcc-7.3.0-r2.ebuild
new file mode 100644
index 000..9cf25eadf1d
--- /dev/null
+++ b/sys-devel/gcc/gcc-7.3.0-r2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+PATCH_VER="1.2"
+#UCLIBC_VER="1.0"
+
+inherit toolchain
+
+#not enough fixes to warrant a revbump: #511548
+#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   elibc_glibc? ( >=sys-libs/glibc-2.13 )
+   >=${CATEGORY}/binutils-2.20"
+
+if [[ ${CATEGORY} != cross-* ]] ; then
+   PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.13 )"
+fi
+
+src_prepare() {
+   toolchain_src_prepare
+}



[gentoo-commits] proj/multilib-portage:master commit in: sys-apps/portage/

2018-04-14 Thread Thomas Sachau
commit: 503d37f046a376e54bf51ef283f412f15b00c779
Author: Thomas Sachau  gentoo  org>
AuthorDate: Sat Apr 14 12:33:55 2018 +
Commit: Thomas Sachau  gentoo  org>
CommitDate: Sat Apr 14 12:33:55 2018 +
URL:
https://gitweb.gentoo.org/proj/multilib-portage.git/commit/?id=503d37f0

Update 2.3.28 to use fixed commit

 sys-apps/portage/Manifest  | 2 +-
 sys-apps/portage/portage-2.3.28.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index 30d9f6e40..f387c6834 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -1,6 +1,6 @@
 AUX README.RESCUE 137 BLAKE2B 
af986752f516bf1925852271f2cea558fe02990c1180ac696c9234c25d1266e4f6eba6ac72f907757c5f98394e1248b436286f8ba1c48456b752ee4ceb8405da
 SHA512 
dba0f0d6d4cd140e636cc70dfb7bdb298e2f2fb040bc07b0874cac994bdbabd26bfd9361d85a0f8b9a92a185281e4901606b9e4f563afdc8867341bbe6af1cb0
 AUX portage-ccache.conf 60 BLAKE2B 
b45ac69ba4bf6b221191ab9618aa484948ad8765ae906402e83df4b72fd10e006621523fe5b6d59219318a978e368649047784bb85771cd189b2542a2e19f941
 SHA512 
36427e57046118ecf982fc3b1a80a3543b5682e3eef7df5dfc8a50b261a5da56f997dd75f63c5194049aceea204c37aee638a3bc383b9f7a0eff8ac9c35f3b1c
 EBUILD portage-2.3.24.ebuild 9445 BLAKE2B 
a81f62ec06cd28837b8ec922009eb01cc524b291d75ed144d279eef308cfc1abdd84c25e9cf01fb271f8212ce68693114a0d67e395b52b6cb3ac5d4ce490
 SHA512 
8d483d6eeff3cd77b3f0e64e32883321522e3ab09de0c1afbe9ef66df39b93d4ebc74738da30f6083b8b389db89661c3b0257561d84f4240ed73c45097b63836
-EBUILD portage-2.3.28.ebuild 9484 BLAKE2B 
58fc66f28956fa48feb497e6a5ef4e68bf1647d913a70dedb54a6255ab07737bb10ff550f53de7a6b749c98d0196213f70eb2ee0871574d5981a9629a6932240
 SHA512 
16a80e1b6636323d072c5ed0329c974e90632d20ea617337b4b3363e600428f76d32e84ed518b5019237259f4cf5aaac6c22c6bad915dfa75aaf3ba979bf842e
+EBUILD portage-2.3.28.ebuild 9484 BLAKE2B 
705df8b4545d81239364258a33ce5b79afe7274ebd4fe06dd6e2354015e18626c2b5cc152c096a8ddb5a4ea56c889f49298ee659f1e1076bd454b2f9dae5921e
 SHA512 
9ca0e65ea17e13c96aef27bcdb5bcb0953935d9f328cc79416329b486555ce2a66b40fff6a728bc95cb10cfa5e0352a27318efd52501b24733966d2e2e1c9daf
 EBUILD portage-2.3.6-r1.ebuild 8865 BLAKE2B 
1b23e2d79aa89d8b30faf5eee38d95e75df43086b61a64606675d920cc477200151e7bb3d3a920b70457761f391072f3e746283c005adc1ed6eaccef997f3afa
 SHA512 
50991bc94f2934454f5254dce47460a57d4e933a78e26cb2db9374856efff135c7d0564a52297f0416d922a22bb011ef6cc0623d17fa8b1ad9a880395c8e2f6c
 MISC metadata.xml 1415 BLAKE2B 
0bad16a272e536342079102034e68130eb96a93e46fb811d1c89d00a4b4bf911f8cf42a93bb4d8fae8086c9e47601a709bd4fa5fb41c3e754c1f08c2f7acbe33
 SHA512 
a4556fbc0ae69691bff793e73b504e9898a5ec187df28d23a37a3290a94c78d4eaa3a3ac70a997c6456be9b72281916965fdea6a057df58aa15090f630d2ce59

diff --git a/sys-apps/portage/portage-2.3.28.ebuild 
b/sys-apps/portage/portage-2.3.28.ebuild
index 9e8dd1f8b..f6238e782 100644
--- a/sys-apps/portage/portage-2.3.28.ebuild
+++ b/sys-apps/portage/portage-2.3.28.ebuild
@@ -14,7 +14,7 @@ inherit distutils-r1 git-2 multilib systemd
 
 EGIT_REPO_URI="git://anongit.gentoo.org/proj/portage.git"
 EGIT_BRANCH="multilib"
-EGIT_COMMIT="ee29b930b880050eb9a04c06d0f1a0edd0e1fc27"
+EGIT_COMMIT="bc55fa6c10f027ba1eb986d3fc6698cd009eff54"
 DESCRIPTION="Portage is the package management and distribution system for 
Gentoo"
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
 



[gentoo-commits] proj/multilib-portage:master commit in: sys-apps/portage/

2018-04-14 Thread Thomas Sachau
commit: 08a9d60ed932e7043d927995202b3358ebb7fa3c
Author: Thomas Sachau  gentoo  org>
AuthorDate: Sat Apr 14 12:18:29 2018 +
Commit: Thomas Sachau  gentoo  org>
CommitDate: Sat Apr 14 12:18:29 2018 +
URL:
https://gitweb.gentoo.org/proj/multilib-portage.git/commit/?id=08a9d60e

Version bump

 sys-apps/portage/portage-2.3.28.ebuild | 282 +
 1 file changed, 282 insertions(+)

diff --git a/sys-apps/portage/portage-2.3.28.ebuild 
b/sys-apps/portage/portage-2.3.28.ebuild
new file mode 100644
index 0..9e8dd1f8b
--- /dev/null
+++ b/sys-apps/portage/portage-2.3.28.ebuild
@@ -0,0 +1,282 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=(
+   pypy
+   python3_4 python3_5 python3_6
+   python2_7
+)
+PYTHON_REQ_USE='bzip2(+),threads(+)'
+
+inherit distutils-r1 git-2 multilib systemd
+
+EGIT_REPO_URI="git://anongit.gentoo.org/proj/portage.git"
+EGIT_BRANCH="multilib"
+EGIT_COMMIT="ee29b930b880050eb9a04c06d0f1a0edd0e1fc27"
+DESCRIPTION="Portage is the package management and distribution system for 
Gentoo"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+SLOT="0"
+IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
+
+DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') )
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   >=sys-apps/sed-4.0.5 sys-devel/patch
+   doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 )
+   epydoc? ( >=dev-python/epydoc-2.0[$(python_gen_usedep 'python2*')] )
+   >=sys-apps/abi-wrapper-1.0-r6"
+# Require sandbox-2.2 for bug #288863.
+# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's
+# quite slow, so it's not considered in the dependencies as an alternative to
+# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so
+# for now, don't pull in xattr deps for other kernels.
+# For whirlpool hash, require python[ssl] (bug #425046).
+# For compgen, require bash[readline] (bug #445576).
+# app-portage/gemato goes without PYTHON_USEDEP since we're calling
+# the executable.
+RDEPEND="
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   !build? (
+   >=sys-apps/sed-4.0.5
+   app-shells/bash:0[readline]
+   >=app-admin/eselect-1.2
+   $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' \
+   python{2_7,3_4,3_5} pypy)
+   rsync-verify? (
+   >=app-portage/gemato-12.1
+   app-crypt/gentoo-keys
+   >=app-crypt/gnupg-2.2.4-r2[ssl(-)]
+   )
+   )
+   elibc_FreeBSD? ( sys-freebsd/freebsd-bin )
+   elibc_glibc? ( >=sys-apps/sandbox-2.2 )
+   elibc_musl? ( >=sys-apps/sandbox-2.2 )
+   elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
+   >=app-misc/pax-utils-0.1.17
+   selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] )
+   xattr? ( kernel_linux? (
+   >=sys-apps/install-xattr-0.3
+   $(python_gen_cond_dep 'dev-python/pyxattr[${PYTHON_USEDEP}]' \
+   python2_7 pypy)
+   ) )
+   !=sys-apps/abi-wrapper-1.0-r6"
+PDEPEND="
+   !build? (
+   >=net-misc/rsync-2.6.4
+   userland_GNU? ( >=sys-apps/coreutils-6.4 )
+   )"
+# coreutils-6.4 rdep is for date format in emerge-webrsync #164532
+# NOTE: FEATURES=installsources requires debugedit and rsync
+
+REQUIRED_USE="epydoc? ( $(python_gen_useflags 'python2*') )"
+
+pkg_setup() {
+   use epydoc && DISTUTILS_ALL_SUBPHASE_IMPLS=( python2.7 )
+}
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+
+   if use gentoo-dev; then
+   einfo "Disabling --dynamic-deps by default for gentoo-dev..."
+   sed -e 's:\("--dynamic-deps", \)\("y"\):\1"n":' \
+   -i pym/_emerge/create_depgraph_params.py || \
+   die "failed to patch create_depgraph_params.py"
+
+   einfo "Enabling additional FEATURES for gentoo-dev..."
+   echo 'FEATURES="${FEATURES} ipc-sandbox network-sandbox 
strict-keepdir"' \
+   >> cnf/make.globals || die
+   fi
+
+   if use native-extensions; then
+   printf "[build_ext]\nportage-ext-modules=true\n" >> \
+   setup.cfg || die
+   fi
+
+   if ! use ipc ; then
+   einfo "Disabling ipc..."
+   sed -e "s:_enable_ipc_daemon = True:_enable_ipc_daemon = 
False:" \
+   -i pym/_emerge/AbstractEbuildProcess.py || \
+   die "failed to patch AbstractEbuildProcess.py"
+   fi
+
+   if use xattr && use kernel_linux ; then
+   einfo 

[gentoo-commits] proj/multilib-portage:master commit in: sys-apps/portage/

2018-04-14 Thread Thomas Sachau
commit: 4aad4758a38cf034649d23f75f55de1717cfe288
Author: Thomas Sachau  gentoo  org>
AuthorDate: Sat Apr 14 12:15:21 2018 +
Commit: Thomas Sachau  gentoo  org>
CommitDate: Sat Apr 14 12:15:21 2018 +
URL:
https://gitweb.gentoo.org/proj/multilib-portage.git/commit/?id=4aad4758

Version bump

 sys-apps/portage/Manifest | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index 6dc30111a..30d9f6e40 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -1,5 +1,6 @@
-AUX README.RESCUE 137 SHA256 
69bea0c755eab59b6b4d90838b8551744f0b0c8eeac170b1cd13a71ee83f9ac4 SHA512 
dba0f0d6d4cd140e636cc70dfb7bdb298e2f2fb040bc07b0874cac994bdbabd26bfd9361d85a0f8b9a92a185281e4901606b9e4f563afdc8867341bbe6af1cb0
 WHIRLPOOL 
713fcc790442999d56e13efaf536fec9954dadeda680b3642d0358311332096ddedf8b55697bd1ca620d84f0dc7d025ff7931e086c74c1f5032be72dca2ff8f5
-AUX portage-ccache.conf 60 SHA256 
5175a18d3b81bd0aa499e0da6a2f44b920cf26f650e8dadea8dc2dc6551f8a39 SHA512 
36427e57046118ecf982fc3b1a80a3543b5682e3eef7df5dfc8a50b261a5da56f997dd75f63c5194049aceea204c37aee638a3bc383b9f7a0eff8ac9c35f3b1c
 WHIRLPOOL 
f79ec05596e022d2d73cc18656e398cbca9c55c7ff65c51634f7ccd1a46af1845ef66649267773b93a2bcff9e1de621785231a1a18d42fff97026ff12594a3bc
-EBUILD portage-2.3.24.ebuild 9445 SHA256 
57da92c1891acaf68c1c89f9916edfc81a0cd62725720c6e0b738a509cdf64e1 SHA512 
8d483d6eeff3cd77b3f0e64e32883321522e3ab09de0c1afbe9ef66df39b93d4ebc74738da30f6083b8b389db89661c3b0257561d84f4240ed73c45097b63836
 WHIRLPOOL 
6c91c2af74942cb1fb710361cac3d6f468683db247617c0f76298b69f4a68bbf5ceea7139beca86f5ab670abbdd14edec0c5ee4fa496b8f33b18f60ae4a3bb62
-EBUILD portage-2.3.6-r1.ebuild 8865 SHA256 
c4c300df276931854a9b35178cfa3ad517bc70cef438289b36b66d75ed4ff765 SHA512 
50991bc94f2934454f5254dce47460a57d4e933a78e26cb2db9374856efff135c7d0564a52297f0416d922a22bb011ef6cc0623d17fa8b1ad9a880395c8e2f6c
 WHIRLPOOL 
de1a86c97dec170bc36f3afe548b1515ed3f84c8b79bba16edf288133391d9c1e76df388ab073921775968edc02f66852b7d70b7a339ca11c79cc3d31eabc0de
-MISC metadata.xml 1415 SHA256 
515be4f712305f3b6dea6a40e02023ab21a9a3c2980a95248152f4e310bf0edd SHA512 
a4556fbc0ae69691bff793e73b504e9898a5ec187df28d23a37a3290a94c78d4eaa3a3ac70a997c6456be9b72281916965fdea6a057df58aa15090f630d2ce59
 WHIRLPOOL 
8201156e4903cbe504989e570cf8fb4823e9ab8df940f36249e89ba2998e0b625ccf8fa9c5908fb8b63ab019145837264857beba26fbb2f714f5e071e8a7aa7d
+AUX README.RESCUE 137 BLAKE2B 
af986752f516bf1925852271f2cea558fe02990c1180ac696c9234c25d1266e4f6eba6ac72f907757c5f98394e1248b436286f8ba1c48456b752ee4ceb8405da
 SHA512 
dba0f0d6d4cd140e636cc70dfb7bdb298e2f2fb040bc07b0874cac994bdbabd26bfd9361d85a0f8b9a92a185281e4901606b9e4f563afdc8867341bbe6af1cb0
+AUX portage-ccache.conf 60 BLAKE2B 
b45ac69ba4bf6b221191ab9618aa484948ad8765ae906402e83df4b72fd10e006621523fe5b6d59219318a978e368649047784bb85771cd189b2542a2e19f941
 SHA512 
36427e57046118ecf982fc3b1a80a3543b5682e3eef7df5dfc8a50b261a5da56f997dd75f63c5194049aceea204c37aee638a3bc383b9f7a0eff8ac9c35f3b1c
+EBUILD portage-2.3.24.ebuild 9445 BLAKE2B 
a81f62ec06cd28837b8ec922009eb01cc524b291d75ed144d279eef308cfc1abdd84c25e9cf01fb271f8212ce68693114a0d67e395b52b6cb3ac5d4ce490
 SHA512 
8d483d6eeff3cd77b3f0e64e32883321522e3ab09de0c1afbe9ef66df39b93d4ebc74738da30f6083b8b389db89661c3b0257561d84f4240ed73c45097b63836
+EBUILD portage-2.3.28.ebuild 9484 BLAKE2B 
58fc66f28956fa48feb497e6a5ef4e68bf1647d913a70dedb54a6255ab07737bb10ff550f53de7a6b749c98d0196213f70eb2ee0871574d5981a9629a6932240
 SHA512 
16a80e1b6636323d072c5ed0329c974e90632d20ea617337b4b3363e600428f76d32e84ed518b5019237259f4cf5aaac6c22c6bad915dfa75aaf3ba979bf842e
+EBUILD portage-2.3.6-r1.ebuild 8865 BLAKE2B 
1b23e2d79aa89d8b30faf5eee38d95e75df43086b61a64606675d920cc477200151e7bb3d3a920b70457761f391072f3e746283c005adc1ed6eaccef997f3afa
 SHA512 
50991bc94f2934454f5254dce47460a57d4e933a78e26cb2db9374856efff135c7d0564a52297f0416d922a22bb011ef6cc0623d17fa8b1ad9a880395c8e2f6c
+MISC metadata.xml 1415 BLAKE2B 
0bad16a272e536342079102034e68130eb96a93e46fb811d1c89d00a4b4bf911f8cf42a93bb4d8fae8086c9e47601a709bd4fa5fb41c3e754c1f08c2f7acbe33
 SHA512 
a4556fbc0ae69691bff793e73b504e9898a5ec187df28d23a37a3290a94c78d4eaa3a3ac70a997c6456be9b72281916965fdea6a057df58aa15090f630d2ce59



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

2018-04-14 Thread Anthony G. Basile
commit: b8ebf48b966ace51c44e5f39205cee4fb7793012
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr 14 14:30:01 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr 14 14:30:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8ebf48b

profiles: mask tests for net-vpn/tor on ppc/ppc64, bug #653098

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

 profiles/arch/powerpc/package.use.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/arch/powerpc/package.use.mask 
b/profiles/arch/powerpc/package.use.mask
index 143f2356b20..806ef205bdc 100644
--- a/profiles/arch/powerpc/package.use.mask
+++ b/profiles/arch/powerpc/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Anthony G. Basile  (14 Apr 2018)
+# net-vpn/tor, tests are broken on ppc/ppc64, bug #653098
+net-vpn/tor test
+
 # Sergei Trofimovich  (27 Mar 2018)
 # dev-qt/qtwebengine is not ported to powerpc
 www-client/otter webengine



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

2018-04-14 Thread Ulrich Müller
commit: 4b781a17b563f297bbd3c407a2eb9ed49d1d1e14
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat Apr 14 12:11:49 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat Apr 14 12:11:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b781a17

dev-db/qt5-sqlcipher: Fix build with Qt 5.9.5.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 .../{qt5-sqlcipher-1.0.1.ebuild => qt5-sqlcipher-1.0.1-r1.ebuild}  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1.ebuild 
b/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1-r1.ebuild
similarity index 88%
rename from dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1.ebuild
rename to dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1-r1.ebuild
index fcef1f8e730..3a85ab072f1 100644
--- a/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1.ebuild
+++ b/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1-r1.ebuild
@@ -15,7 +15,7 @@ KEYWORDS="~amd64"
 
 DEPEND=">=dev-db/sqlcipher-3.4.1
>=dev-qt/qtcore-5.7.1:5=
-   >=dev-qt/qtsql-5.7.1:5=[sqlite] =dev-qt/qtsql-5.7.1:5=[sqlite] 

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

2018-04-14 Thread Ulrich Müller
commit: 3974b89ef75dc85270173171a4bf889004f4b392
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat Apr 14 12:13:54 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat Apr 14 12:13:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3974b89e

dev-db/qt5-sqlcipher: Remove old.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-db/qt5-sqlcipher/Manifest  |  1 -
 .../qt5-sqlcipher-0.1.1_pre20171202.ebuild | 35 --
 2 files changed, 36 deletions(-)

diff --git a/dev-db/qt5-sqlcipher/Manifest b/dev-db/qt5-sqlcipher/Manifest
index cff59e81457..af8ee994141 100644
--- a/dev-db/qt5-sqlcipher/Manifest
+++ b/dev-db/qt5-sqlcipher/Manifest
@@ -1,2 +1 @@
-DIST qt5-sqlcipher-0.1.1_pre20171202.tar.xz 24340 BLAKE2B 
de40988c9ca13de0ebafebd4078f9da1c21ad4d8d78a9931497048859617d34f4de8ba630d438024dbb034bb817703e1e456619c3897b3c7dc6dbfa2a719e307
 SHA512 
e95eb1e73ff944d24f785129cb3e6ebc297abf457d14a2c6466d64230003932eb99b83dc3b216b27fe40565213e67d62b45d43fa538f6f693626283c788ca562
 DIST qt5-sqlcipher-1.0.1.tar.gz 56994 BLAKE2B 
9de780126bc7ba99e23b529e6e45d629e9b20d52dfb4d91fcb7c8a6b77b8a8bc17bedaa40a288c4af32e40cc563631e164428be0f8c5a81ffa6143acc58b2e55
 SHA512 
ba83ba1d98b7764c7ad4bf776b1f39baff44ff6189e51cbc2131150e5a4c2962a21134d21d5ed41f171629395c721fce11ee911d080d304566033d53c552642a

diff --git a/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild 
b/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild
deleted file mode 100644
index d238eda6ea6..000
--- a/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Qt SQL driver plugin for SQLCipher"
-HOMEPAGE="https://github.com/blizzard4591/qt5-sqlcipher;
-SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz;
-
-LICENSE="LGPL-2.1" # version 2.1 only
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND=">=dev-db/sqlcipher-3.4.1
-   >=dev-qt/qtcore-5.7.1:5=
-   >=dev-qt/qtsql-5.7.1:5=[sqlite] 

[gentoo-commits] proj/portage:multilib commit in: bin/

2018-04-14 Thread Thomas Sachau
commit: bc55fa6c10f027ba1eb986d3fc6698cd009eff54
Author: Thomas Sachau  gentoo  org>
AuthorDate: Sat Apr 14 12:32:19 2018 +
Commit: Thomas Sachau  gentoo  org>
CommitDate: Sat Apr 14 12:32:19 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=bc55fa6c

Remove remaining else case

 bin/phase-functions.sh | 22 ++
 1 file changed, 10 insertions(+), 12 deletions(-)

diff --git a/bin/phase-functions.sh b/bin/phase-functions.sh
index 6c8da017d..65ad0610b 100644
--- a/bin/phase-functions.sh
+++ b/bin/phase-functions.sh
@@ -806,20 +806,18 @@ __dyn_install() {
>> DEBUGBUILD
fi
 
-   else
-   if [[ " ${FEATURES} " == *" force-multilib "* ]]; then
-   cd "${PORTAGE_BUILDDIR}"
-   if [[ $EMERGE_FROM = binary ]] || ! has keepwork 
$FEATURES; then
-   rm -f 
"$PORTAGE_BUILDDIR"/.{ebuild_changed,exit_status,logid,unpacked,prepared} \
-   
"$PORTAGE_BUILDDIR"/.{configured,compiled,tested,packaged} \
-   "$PORTAGE_BUILDDIR"/.die_hooks
+   if [[ " ${FEATURES} " == *" force-multilib "* ]]; then
+   cd "${PORTAGE_BUILDDIR}"
+   if [[ $EMERGE_FROM = binary ]] || ! has keepwork $FEATURES; then
+   rm -f 
"$PORTAGE_BUILDDIR"/.{ebuild_changed,exit_status,logid,unpacked,prepared} \
+   
"$PORTAGE_BUILDDIR"/.{configured,compiled,tested,packaged} \
+   "$PORTAGE_BUILDDIR"/.die_hooks
 
-   rm -rf "${WORKDIR}"
-   fi
+   rm -rf "${WORKDIR}"
+   fi
 
-   if [ -f "${PORTAGE_BUILDDIR}/.unpacked" ]; then
-   find "${PORTAGE_BUILDDIR}" -type d ! -regex 
"^${WORKDIR}" | sort -r | tr "\n" "\0" | $XARGS -0 rmdir &>/dev/null
-   fi
+   if [ -f "${PORTAGE_BUILDDIR}/.unpacked" ]; then
+   find "${PORTAGE_BUILDDIR}" -type d ! -regex 
"^${WORKDIR}" | sort -r | tr "\n" "\0" | $XARGS -0 rmdir &>/dev/null
fi
fi
trap - SIGINT SIGQUIT



[gentoo-commits] proj/kde:master commit in: kde-frameworks/kcompletion/, kde-frameworks/kconfig/, kde-frameworks/kidletime/, ...

2018-04-14 Thread Andreas Sturmlechner
commit: e01159c4c0bd95a84f17b97d9fa099f9338fd589
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Apr 14 14:00:22 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Apr 14 14:00:30 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e01159c4

kde-frameworks: Drop KDE Frameworks 5.45.0

Moved to Gentoo ebuild repository.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 kde-frameworks/attica/attica-5.45.0.ebuild | 16 -
 kde-frameworks/baloo/baloo-5.45.0.ebuild   | 34 -
 kde-frameworks/bluez-qt/bluez-qt-5.45.0.ebuild | 34 -
 .../breeze-icons-rcc-5.45.0.ebuild | 33 -
 .../breeze-icons/breeze-icons-5.45.0.ebuild| 31 
 .../extra-cmake-modules-5.45.0.ebuild  | 61 
 .../frameworkintegration-5.45.0.ebuild | 53 --
 .../kactivities-stats-5.45.0.ebuild| 21 --
 .../kactivities/kactivities-5.45.0.ebuild  | 26 ---
 kde-frameworks/kapidox/kapidox-5.45.0.ebuild   | 28 
 kde-frameworks/karchive/karchive-5.45.0.ebuild | 27 ---
 kde-frameworks/kauth/kauth-5.45.0.ebuild   | 32 -
 kde-frameworks/kbookmarks/kbookmarks-5.45.0.ebuild | 29 
 kde-frameworks/kcmutils/kcmutils-5.45.0.ebuild | 31 
 kde-frameworks/kcodecs/kcodecs-5.45.0.ebuild   | 13 
 .../kcompletion/kcompletion-5.45.0.ebuild  | 21 --
 kde-frameworks/kconfig/kconfig-5.45.0.ebuild   | 26 ---
 .../kconfigwidgets/kconfigwidgets-5.45.0.ebuild| 36 --
 .../kcoreaddons/kcoreaddons-5.45.0.ebuild  | 39 --
 kde-frameworks/kcrash/kcrash-5.45.0.ebuild | 28 
 .../kdbusaddons/kdbusaddons-5.45.0.ebuild  | 28 
 .../kdeclarative/kdeclarative-5.45.0.ebuild| 32 -
 kde-frameworks/kded/kded-5.45.0.ebuild | 36 --
 .../kdelibs4support/kdelibs4support-5.45.0.ebuild  | 84 --
 .../kdesignerplugin/kdesignerplugin-5.45.0.ebuild  | 54 --
 kde-frameworks/kdesu/kdesu-5.45.0.ebuild   | 32 -
 kde-frameworks/kdewebkit/kdewebkit-5.45.0.ebuild   | 30 
 kde-frameworks/kdnssd/kdnssd-5.45.0.ebuild | 31 
 kde-frameworks/kdoctools/kdoctools-5.45.0.ebuild   | 25 ---
 kde-frameworks/kemoticons/kemoticons-5.45.0.ebuild | 26 ---
 .../kfilemetadata/kfilemetadata-5.45.0.ebuild  | 63 
 .../kglobalaccel/kglobalaccel-5.45.0.ebuild| 29 
 kde-frameworks/kguiaddons/kguiaddons-5.45.0.ebuild | 22 --
 kde-frameworks/kholidays/kholidays-5.45.0.ebuild   | 30 
 kde-frameworks/khtml/khtml-5.45.0.ebuild   | 68 --
 kde-frameworks/ki18n/ki18n-5.45.0.ebuild   | 31 
 .../kiconthemes/kiconthemes-5.45.0.ebuild  | 29 
 kde-frameworks/kidletime/kidletime-5.45.0.ebuild   | 46 
 .../kimageformats/kimageformats-5.45.0.ebuild  | 42 ---
 kde-frameworks/kinit/kinit-5.45.0.ebuild   | 45 
 kde-frameworks/kio/kio-5.45.0.ebuild   | 79 
 kde-frameworks/kirigami/kirigami-5.45.0.ebuild | 42 ---
 .../kitemmodels/kitemmodels-5.45.0.ebuild  | 14 
 kde-frameworks/kitemviews/kitemviews-5.45.0.ebuild | 20 --
 .../kjobwidgets/kjobwidgets-5.45.0.ebuild  | 35 -
 kde-frameworks/kjs/kjs-5.45.0.ebuild   | 22 --
 kde-frameworks/kjsembed/kjsembed-5.45.0.ebuild | 26 ---
 .../kmediaplayer/kmediaplayer-5.45.0.ebuild| 21 --
 kde-frameworks/knewstuff/knewstuff-5.45.0.ebuild   | 36 --
 .../knotifications/knotifications-5.45.0.ebuild| 44 
 .../knotifyconfig/knotifyconfig-5.45.0.ebuild  | 24 ---
 kde-frameworks/kpackage/kpackage-5.45.0.ebuild | 34 -
 kde-frameworks/kparts/kparts-5.45.0.ebuild | 30 
 kde-frameworks/kpeople/kpeople-5.45.0.ebuild   | 38 --
 kde-frameworks/kplotting/kplotting-5.45.0.ebuild   | 18 -
 kde-frameworks/kpty/kpty-5.45.0.ebuild | 26 ---
 kde-frameworks/kross/kross-5.45.0.ebuild   | 32 -
 kde-frameworks/krunner/krunner-5.45.0.ebuild   | 36 --
 kde-frameworks/kservice/kservice-5.45.0.ebuild | 46 
 .../ktexteditor/ktexteditor-5.45.0.ebuild  | 56 ---
 .../ktextwidgets/ktextwidgets-5.45.0.ebuild| 37 --
 .../kunitconversion/kunitconversion-5.45.0.ebuild  | 26 ---
 kde-frameworks/kwallet/kwallet-5.45.0.ebuild   | 56 ---
 kde-frameworks/kwayland/kwayland-5.45.0.ebuild | 27 ---
 .../kwidgetsaddons/kwidgetsaddons-5.45.0.ebuild| 26 ---
 .../kwindowsystem/kwindowsystem-5.45.0.ebuild  | 40 ---
 kde-frameworks/kxmlgui/kxmlgui-5.45.0.ebuild   | 43 ---
 .../kxmlrpcclient/kxmlrpcclient-5.45.0.ebuild  

[gentoo-commits] proj/grss:master commit in: grs/

2018-04-14 Thread Anthony G. Basile
commit: 4eea4b02f33038cbf8d0ea706dd212df964cac4a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Apr 14 14:52:57 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Apr 14 14:52:57 2018 +
URL:https://gitweb.gentoo.org/proj/grss.git/commit/?id=4eea4b02

grs/Kernel.py: look for firmware-dir in portage_configroot

 grs/Kernel.py | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/grs/Kernel.py b/grs/Kernel.py
index 7582e81..82e6d04 100644
--- a/grs/Kernel.py
+++ b/grs/Kernel.py
@@ -92,6 +92,10 @@ class Kernel():
 boot_dir = os.path.join(image_dir, 'boot')
 modprobe_dir = os.path.join(image_dir, 'etc/modprobe.d')
 modules_dir = os.path.join(image_dir, 'lib/modules')
+
+# The firmware directory, if it exists, will be in 
self.portage_configroot
+firmware_dir = os.path.join(self.portage_configroot, 'lib/firmware')
+
 # Prepare tarball filename and path.  If the tarball already exists,
 # don't rebuild/reinstall it.  Note: It should have been installed to
 # the system's portage configroot when it was first built, so no need
@@ -132,6 +136,8 @@ class Kernel():
 cmd += '--busybox-config=%s ' % self.busybox_config
 if os.path.isfile(self.genkernel_config):
 cmd += '--config=%s ' % self.genkernel_config
+if  os.path.isdir(firmware_dir):
+cmd += '--firmware-dir=%s ' % firmware_dir
 if has_modules:
 cmd += 'all'
 else:



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

2018-04-14 Thread Aaron Bauman
commit: bcf75b3917cca220a320e7e8917c0fc8eea9428f
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Apr 14 14:45:38 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Apr 14 14:54:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcf75b39

app-text/mupdf: amd64 stable

Bug: https://bugs.gentoo.org/634678
Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/app-text/mupdf/mupdf-1.12.0-r2.ebuild 
b/app-text/mupdf/mupdf-1.12.0-r2.ebuild
index 174dc9eac6c..e9e48938d09 100644
--- a/app-text/mupdf/mupdf-1.12.0-r2.ebuild
+++ b/app-text/mupdf/mupdf-1.12.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://mupdf.com/downloads/${P}-source.tar.gz;
 
 LICENSE="AGPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="X +curl javascript lcms libressl opengl +openssl static static-libs 
vanilla"
 
 LIB_DEPEND="



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

2018-04-14 Thread Aaron Bauman
commit: 9f283f1e604a0a52460b47e393b16ec093f8843c
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Apr 14 14:52:29 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Apr 14 14:54:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f283f1e

net-libs/nghttp2: amd64 stable

Bug: https://bugs.gentoo.org/653066
Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/net-libs/nghttp2/nghttp2-1.31.1.ebuild 
b/net-libs/nghttp2/nghttp2-1.31.1.ebuild
index e5a132d27e3..d661f387f2e 100644
--- a/net-libs/nghttp2/nghttp2-1.31.1.ebuild
+++ b/net-libs/nghttp2/nghttp2-1.31.1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/nghttp2/nghttp2/releases/download/v${PV}/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc ~x86 ~amd64-fbsd"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc ~x86 ~amd64-fbsd"
 fi
 
 DESCRIPTION="HTTP/2 C Library"



[gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/files/, net-libs/loudmouth/

2018-04-14 Thread Pacho Ramos
commit: b5609fa27ea0e940719fa9b89302552fa43699e5
Author: Peter Levine  gmail  com>
AuthorDate: Mon Mar 26 05:25:59 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 15:59:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5609fa2

net-libs/loudmouth: Fix building with GCC-7

Bug: https://bugs.gentoo.org/618330
Closes: https://bugs.gentoo.org/618330
Package-Manager: Portage-2.3.16, Repoman-2.3.6

 .../loudmouth/files/loudmouth-1.5.3-gcc7.patch | 25 ++
 net-libs/loudmouth/loudmouth-1.5.3.ebuild  |  3 ++-
 2 files changed, 27 insertions(+), 1 deletion(-)

diff --git a/net-libs/loudmouth/files/loudmouth-1.5.3-gcc7.patch 
b/net-libs/loudmouth/files/loudmouth-1.5.3-gcc7.patch
new file mode 100644
index 000..83e0aea69d7
--- /dev/null
+++ b/net-libs/loudmouth/files/loudmouth-1.5.3-gcc7.patch
@@ -0,0 +1,25 @@
+Bug: https://bugs.gentoo.org/618330
+Upstream commit: 
https://github.com/mcabber/loudmouth/commit/01fdfa0f5d1b8502b92d2e78d757e9b19661d054
+
+From 01fdfa0f5d1b8502b92d2e78d757e9b19661d054 Mon Sep 17 00:00:00 2001
+From: tmp170422 
+Date: Sun, 14 May 2017 12:18:32 +0300
+Subject: [PATCH] An apparent typo
+
+---
+ loudmouth/lm-sasl.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/loudmouth/lm-sasl.c b/loudmouth/lm-sasl.c
+index 00cf9b7..38cd88c 100644
+--- a/loudmouth/lm-sasl.c
 b/loudmouth/lm-sasl.c
+@@ -529,7 +529,7 @@ sasl_md5_prepare_response (LmSASL *sasl, GHashTable 
*challenge)
+ }
+ 
+ nonce = g_hash_table_lookup (challenge, "nonce");
+-if (nonce == NULL || nonce == '\0') {
++if (nonce == NULL || nonce[0] == '\0') {
+ g_log (LM_LOG_DOMAIN, LM_LOG_LEVEL_SASL,
+"%s: server didn't provide a nonce in the challenge",
+G_STRFUNC);

diff --git a/net-libs/loudmouth/loudmouth-1.5.3.ebuild 
b/net-libs/loudmouth/loudmouth-1.5.3.ebuild
index b5dac8fc267..2b9a01dfa34 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -34,6 +34,7 @@ DEPEND="${RDEPEND}
 "
 
 src_prepare() {
+   epatch "${FILESDIR}"/${P}-gcc7.patch
eautoreconf
 }
 



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

2018-04-14 Thread Pacho Ramos
commit: ae6bf9a03ada41b29c711d066cc11eea4b3e4f1a
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 15:59:54 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 15:59:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae6bf9a0

net-libs/loudmouth: Also set subslot dep for gnutls

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild 
b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
index ab65db268b9..46433a1d78f 100644
--- a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -2,7 +2,6 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-
 inherit autotools
 
 DESCRIPTION="Lightweight C Jabber library"
@@ -20,7 +19,7 @@ RDEPEND="
>=dev-libs/glib-2.16:2
net-dns/libidn
ssl? (
-   !openssl? ( >=net-libs/gnutls-1.4.0 )
+   !openssl? ( >=net-libs/gnutls-1.4.0:0= )
openssl? ( dev-libs/openssl:0= )
)
asyncns? ( >=net-libs/libasyncns-0.3 )



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

2018-04-14 Thread Pacho Ramos
commit: c707d7fdab665ca3dc524c8f86045e2cb0253cfb
Author: Peter Levine  gmail  com>
AuthorDate: Mon Mar 26 05:27:01 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 15:59:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c707d7fd

net-libs/loudmouth: Revbump for EAPI-6

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild | 59 
 1 file changed, 59 insertions(+)

diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild 
b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
new file mode 100644
index 000..ab65db268b9
--- /dev/null
+++ b/net-libs/loudmouth/loudmouth-1.5.3-r1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Lightweight C Jabber library"
+HOMEPAGE="https://github.com/mcabber/loudmouth;
+SRC_URI="https://github.com/mcabber/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+
+IUSE="asyncns ssl openssl static-libs test"
+
+# Automagic libidn dependency
+RDEPEND="
+   >=dev-libs/glib-2.16:2
+   net-dns/libidn
+   ssl? (
+   !openssl? ( >=net-libs/gnutls-1.4.0 )
+   openssl? ( dev-libs/openssl:0= )
+   )
+   asyncns? ( >=net-libs/libasyncns-0.3 )
+"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/check )
+   virtual/pkgconfig
+   >=dev-util/gtk-doc-1
+   >=dev-util/gtk-doc-am-1
+"
+
+PATCHES=( "${FILESDIR}"/${P}-gcc7.patch )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myconf
+
+   if use ssl; then
+   if ! use openssl; then
+   myconf="${myconf} --with-ssl=gnutls"
+   else
+   myconf="${myconf} --with-ssl=openssl"
+   fi
+   else
+   myconf="${myconf} --with-ssl=no"
+   fi
+
+   econf \
+   $(use_enable static-libs static) \
+   $(use_with asyncns) \
+   ${myconf}
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/loudmouth/files/, net-libs/loudmouth/

2018-04-14 Thread Pacho Ramos
commit: 53c8b902e339b1d7fe67e03e42fb40e66ddcfd48
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 16:01:18 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 16:01:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53c8b902

net-libs/loudmouth: Drop old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 net-libs/loudmouth/Manifest|   1 -
 .../files/loudmouth-1.4.3-async-fix.patch  |  30 -
 .../files/loudmouth-1.4.3-asyncns-system.patch |  83 
 .../loudmouth-1.4.3-drop-stanzas-on-fail.patch |  47 ---
 .../loudmouth-1.4.3-fix-sasl-md5-digest-uri.patch  |  24 
 .../files/loudmouth-1.4.3-free-before-closed.patch | 137 
 .../files/loudmouth-1.4.3-glib-2.32.patch  |  13 --
 .../loudmouth/files/loudmouth-1.4.3-gnutls28.patch |  15 ---
 ...loudmouth-1.4.3-id-tag-in-opening-headers.patch |  35 -
 .../files/loudmouth-1.4.3-invalid-unicode.patch| 144 -
 .../files/loudmouth-1.4.3-silence-chdir.patch  |  33 -
 net-libs/loudmouth/loudmouth-1.4.3-r2.ebuild   |  95 --
 12 files changed, 657 deletions(-)

diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest
index 2d2f8f3a348..16d7dfe621a 100644
--- a/net-libs/loudmouth/Manifest
+++ b/net-libs/loudmouth/Manifest
@@ -1,3 +1,2 @@
-DIST loudmouth-1.4.3.tar.bz2 366818 BLAKE2B 
bd51261de4b998c699971ccdf3e02dcdea00d05cfc1f85b6712322de80179ea3fb2585d84fbbe0abc60a1ec351e22f51f37aee443027a6dbbdd484cdf3e4b5cc
 SHA512 
02d1de14a4d626a4c9100bd24c06d4b4203eabb0f95bab40ee18ea5e68ed81d47aa977625140157b2d9f7974ac748af857c2ee3a916f0db700e2a2d0934940ec
 DIST loudmouth-1.5.2.tar.gz 115940 BLAKE2B 
cf9134fb68e09c4f03e605227a42b9fc092d5f4f5524a39e044f6bd573e7b9a0e7ba1161cda2655cdc513a05673dfa3600d0548209230314a9455c7a912123b7
 SHA512 
54c3eb7ef99604d7e2d5560dc6e5be176a188e6a0d82ae6c2f488e30f06553039aa03d6f818cec25f354479a2624f60f2233d7e63b54f331e934d554de9bfc87
 DIST loudmouth-1.5.3.tar.gz 114676 BLAKE2B 
7a73e4e65046608fc8ec571b5448ab8344a8aed554fee1ecf7badd2ca5ed382ddb27e6ba7bd5d0a76d978d3079415b307f1b4ca77da450003ae936191cdbd33e
 SHA512 
afae8b4ad1e9e5558cffa8f6b9f25331b01cfa09ea0b3defb74cac7d39477744e6d9181d3adefe242038020759df43558de0e61305fbc8e12a3b293b82856bf7

diff --git a/net-libs/loudmouth/files/loudmouth-1.4.3-async-fix.patch 
b/net-libs/loudmouth/files/loudmouth-1.4.3-async-fix.patch
deleted file mode 100644
index 3213d72865a..000
--- a/net-libs/loudmouth/files/loudmouth-1.4.3-async-fix.patch
+++ /dev/null
@@ -1,30 +0,0 @@
 a/loudmouth/lm-socket.c
-+++ b/loudmouth/lm-socket.c
-@@ -1022,7 +1022,7 @@ _lm_socket_create_phase2 (LmSocket *socket, struct 
addrinfo *ans)
-   if (socket->connect_func) {
-   (socket->connect_func) (socket, FALSE, 
socket->user_data;
-   }
--  g_free (socket->connect_data);
-+g_free (socket->connect_data);
-   socket->connect_data = NULL;
-   return;
-   }
-@@ -1107,6 +1107,10 @@ lm_socket_create (GMainContext  *context,
-   _lm_socket_create_phase1 (socket, NULL, 0);
-   }
- 
-+#ifndef HAVE_ASYNCNS
-+/* Only do this check if we are not using asyncns or it will crash.
-+ * Report and patch by Senko.
-+ */
-   if (socket->connect_data == NULL) {
-   /* Open failed synchronously, probably a DNS lookup problem */
-   lm_socket_unref(socket);
-@@ -1118,6 +1122,7 @@ lm_socket_create (GMainContext  *context,
-   
-   return NULL;
-   }
-+#endif /* HAVE_ASYNCNS */
-   
- 
-   /* If the connection fails synchronously, we don't want to call the

diff --git a/net-libs/loudmouth/files/loudmouth-1.4.3-asyncns-system.patch 
b/net-libs/loudmouth/files/loudmouth-1.4.3-asyncns-system.patch
deleted file mode 100644
index 9cf5345e558..000
--- a/net-libs/loudmouth/files/loudmouth-1.4.3-asyncns-system.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index 9369e55..17a9e1d 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -199,19 +199,31 @@ AM_CONDITIONAL(USE_GNUTLS, test x$enable_ssl = xGnuTLS)
- dnl +---+
- dnl | Checking for libasyncns   |
- dnl +---+
--AC_ARG_WITH(asyncns, [  --with-asyncns=yes/no  define whether to use 
libasyncns, default=no],
--ac_asyncns=$withval,
--ac_asyncns=no
--)
-+AC_ARG_WITH(asyncns,
-+  AS_HELP_STRING([--with-asyncns],
-+  [define whether to use libasyncns, @<:@default=no@:>@ 
(internal/system/no)]),
-+  ac_asyncns=$withval,
-+  ac_asyncns=no)
- 
- enable_asyncns=no
-+have_asyncns_system=no
- if test x$ac_asyncns != xno; then
-   

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

2018-04-14 Thread Johannes Huber
commit: 0977be17226ced17f681a244e76c5b58059e8887
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Apr 14 16:08:26 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Apr 14 16:08:26 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0977be17

media-sound/elisa: Fix audio playback

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-sound/elisa/elisa-0.1.ebuild  | 2 +-
 media-sound/elisa/elisa-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/elisa/elisa-0.1.ebuild 
b/media-sound/elisa/elisa-0.1.ebuild
index 0b4ac72680..59f7d8a72c 100644
--- a/media-sound/elisa/elisa-0.1.ebuild
+++ b/media-sound/elisa/elisa-0.1.ebuild
@@ -29,7 +29,7 @@ COMMON_DEPEND="
$(add_frameworks_dep kxmlgui)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
-   $(add_qt_dep qtmultimedia)
+   $(add_qt_dep qtmultimedia 'gstreamer')
$(add_qt_dep qtsql)
$(add_qt_dep qtwidgets)
mpris? (

diff --git a/media-sound/elisa/elisa-.ebuild 
b/media-sound/elisa/elisa-.ebuild
index 0b4ac72680..59f7d8a72c 100644
--- a/media-sound/elisa/elisa-.ebuild
+++ b/media-sound/elisa/elisa-.ebuild
@@ -29,7 +29,7 @@ COMMON_DEPEND="
$(add_frameworks_dep kxmlgui)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
-   $(add_qt_dep qtmultimedia)
+   $(add_qt_dep qtmultimedia 'gstreamer')
$(add_qt_dep qtsql)
$(add_qt_dep qtwidgets)
mpris? (



[gentoo-commits] repo/gentoo:master commit in: dev-util/codeblocks/, dev-util/codeblocks/files/

2018-04-14 Thread Pacho Ramos
commit: 1ffb32396837505f577b5b18e0cb9e6d74bbc4b1
Author: Peter Levine  gmail  com>
AuthorDate: Sat Mar 24 22:04:04 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 16:08:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ffb3239

dev-util/codeblocks: Fix building with GCC-7

Bug: https://bugs.gentoo.org/649248
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Closes: https://bugs.gentoo.org/649248
Closes: https://bugs.gentoo.org/637126
Closes: https://github.com/gentoo/gentoo/pull/7600

 dev-util/codeblocks/codeblocks-16.01.ebuild|  4 ++-
 .../codeblocks/files/codeblocks-16.01-gcc7.patch   | 30 ++
 2 files changed, 33 insertions(+), 1 deletion(-)

diff --git a/dev-util/codeblocks/codeblocks-16.01.ebuild 
b/dev-util/codeblocks/codeblocks-16.01.ebuild
index 047fa097585..07a042e6263 100644
--- a/dev-util/codeblocks/codeblocks-16.01.ebuild
+++ b/dev-util/codeblocks/codeblocks-16.01.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
@@ -28,6 +28,8 @@ RDEPEND="app-arch/zip
 DEPEND="${RDEPEND}
virtual/pkgconfig"
 
+PATCHES=( "${FILESDIR}"/${P}-gcc7.patch )
+
 src_configure() {
touch "${S}"/revision.m4 -r "${S}"/acinclude.m4
setup-wxwidgets

diff --git a/dev-util/codeblocks/files/codeblocks-16.01-gcc7.patch 
b/dev-util/codeblocks/files/codeblocks-16.01-gcc7.patch
new file mode 100644
index 000..84cbc88696c
--- /dev/null
+++ b/dev-util/codeblocks/files/codeblocks-16.01-gcc7.patch
@@ -0,0 +1,30 @@
+Bug: https://bugs.gentoo.org/649248
+SVN Revision: https://sourceforge.net/p/codeblocks/code/11006
+GIT Commit: 
https://github.com/jenslody/codeblocks/commit/1fd6799ded8475fafaca17de9c23db767177d31b
+
+From 1fd6799ded8475fafaca17de9c23db767177d31b Mon Sep 17 00:00:00 2001
+From: jenslody 
+Date: Fri, 10 Feb 2017 20:56:25 +
+Subject: [PATCH] gcc7 build-fix: avoid template-related error
+
+---
+ src/include/scripting/sqplus/sqplus.h | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/include/scripting/sqplus/sqplus.h 
b/src/include/scripting/sqplus/sqplus.h
+index 73f37b24f..ae7d3c75f 100644
+--- a/src/include/scripting/sqplus/sqplus.h
 b/src/include/scripting/sqplus/sqplus.h
+@@ -154,10 +154,10 @@ struct ScriptStringVar : ScriptStringVarBase {
+ return safeStringCopy(s,_s.s,MaxLength);
+   }
+   bool operator == (const ScriptStringVar & _s) {
+-return _strcmp(s,_s.s) == 0;
++return strcmp(s,_s.s) == 0;
+   }
+   bool compareCaseInsensitive(const ScriptStringVar & _s) {
+-return _stricmp(s,_s.s) == 0;
++return strcasecmp(s,_s.s) == 0;
+   }
+ };
+ 



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

2018-04-14 Thread Johannes Huber
commit: b7678bfd37e7325c2ddce8a69605760b780527b0
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Apr 14 16:18:15 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Apr 14 16:20:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7678bfd

media-sound/elisa: New package

Import from kde overlay. Initial ebuild by me. Various improvements by
Andreas Sturmlechner and me. Have fun while listening to music.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-sound/elisa/Manifest |  1 +
 media-sound/elisa/elisa-0.1.ebuild | 61 ++
 media-sound/elisa/metadata.xml | 11 +++
 3 files changed, 73 insertions(+)

diff --git a/media-sound/elisa/Manifest b/media-sound/elisa/Manifest
new file mode 100644
index 000..bd0a66514e7
--- /dev/null
+++ b/media-sound/elisa/Manifest
@@ -0,0 +1 @@
+DIST elisa-0.1.tar.xz 1461076 BLAKE2B 
7b4bd7e32681d3bda30b27110f9610f8fb9435e7f60ba62899b743bd79414188d62f1b8cd229a073025bcc7de9b7ec4c0750b7bdde8845dbb088b7a6a245bf99
 SHA512 
3f8bfa08a7183843ce3aeecae96c3f5eed73693a8d6cbce24cd83de3ca47475b4549af5e68b7e2b4c2d281faffe9bee1675f749913b44a4742c28ad1a4efd7c9

diff --git a/media-sound/elisa/elisa-0.1.ebuild 
b/media-sound/elisa/elisa-0.1.ebuild
new file mode 100644
index 000..59f7d8a72c8
--- /dev/null
+++ b/media-sound/elisa/elisa-0.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_TEST="forceoptional"
+KDE_HANDBOOK="optional"
+inherit kde5
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
+   KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Simple music player by KDE"
+HOMEPAGE="https://community.kde.org/Elisa;
+LICENSE="LGPL-3+"
+IUSE="mpris semantic-desktop"
+
+COMMON_DEPEND="
+   $(add_frameworks_dep kcmutils)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdeclarative)
+   $(add_frameworks_dep kfilemetadata)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtdeclarative)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtmultimedia 'gstreamer')
+   $(add_qt_dep qtsql)
+   $(add_qt_dep qtwidgets)
+   mpris? (
+   $(add_frameworks_dep kdbusaddons)
+   $(add_qt_dep qtdbus)
+   )
+   semantic-desktop? (
+   $(add_frameworks_dep baloo)
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   sys-devel/gettext
+"
+RDEPEND="${COMMON_DEPEND}
+   $(add_qt_dep qtgraphicaleffects)
+   $(add_qt_dep qtquickcontrols)
+   $(add_qt_dep qtquickcontrols2)
+"
+
+RESTRICT+=" test"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package mpris KF5DBusAddons)
+   $(cmake-utils_use_find_package semantic-desktop KF5Baloo)
+   )
+
+   kde5_src_configure
+}

diff --git a/media-sound/elisa/metadata.xml b/media-sound/elisa/metadata.xml
new file mode 100644
index 000..22e16aa35e9
--- /dev/null
+++ b/media-sound/elisa/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   k...@gentoo.org
+   Gentoo KDE Project
+   
+   
+   Enable MPRIS support
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-games/ode/files/, dev-games/ode/

2018-04-14 Thread Pacho Ramos
commit: 7e72f270ed1ce09b77b1b5f724bc76d77644
Author: Peter Levine  gmail  com>
AuthorDate: Sun Mar 25 05:47:01 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 16:18:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e72f270

dev-games/ode: Fix building with GCC-7

Bug: https://bugs.gentoo.org/646538
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Closes: https://bugs.gentoo.org/646538
Closes: https://github.com/gentoo/gentoo/pull/7605

 dev-games/ode/files/ode-0.14-gcc7.patch | 52 +
 dev-games/ode/ode-0.14-r1.ebuild|  4 ++-
 2 files changed, 55 insertions(+), 1 deletion(-)

diff --git a/dev-games/ode/files/ode-0.14-gcc7.patch 
b/dev-games/ode/files/ode-0.14-gcc7.patch
new file mode 100644
index 000..aad0117f3be
--- /dev/null
+++ b/dev-games/ode/files/ode-0.14-gcc7.patch
@@ -0,0 +1,52 @@
+Bug: https://bugs.gentoo.org/646538
+Upstream commit: 
https://bitbucket.org/odedevs/ode/commits/6f44023660dc830147a56314ea0627a23f11ad86
+
+# HG changeset patch
+# User oleh_derevenko <>
+# Date 1521993135 -10800
+# Node ID 6f44023660dc830147a56314ea0627a23f11ad86
+# Parent  6a68227619feebf85513331d7320b5a89eadf44f
+Fixed: Command line parameter validation errors have been fixed in some demos 
(reported by Peter Levine)
+
+diff --git a/ode/demo/demo_jointPR.cpp b/ode/demo/demo_jointPR.cpp
+--- a/ode/demo/demo_jointPR.cpp
 b/ode/demo/demo_jointPR.cpp
+@@ -328,8 +328,8 @@
+ if (0 == strcmp("-t", argv[i]) || 0 == strcmp("--texture-path", 
argv[i]))
+ {
+ int j = i+1;
+-if ( j+1 > argc  ||  // Check if we have enough arguments
+-argv[j] == '\0' ||  // We should have a path here
++if ( j >= argc  ||  // Check if we have enough arguments
++argv[j][0] == '\0' ||  // We should have a path here
+ argv[j][0] == '-' ) // We should have a path not a 
command line
+ Help(argv);
+ else
+diff --git a/ode/demo/demo_jointPU.cpp b/ode/demo/demo_jointPU.cpp
+--- a/ode/demo/demo_jointPU.cpp
 b/ode/demo/demo_jointPU.cpp
+@@ -575,8 +575,8 @@
+ 
+   if (0 == strcmp ("-t", argv[i]) || 0 == strcmp ("--texture-path", 
argv[i]) ) {
+ int j = i+1;
+-if ( j+1 > argc  ||  // Check if we have enough arguments
+- argv[j] == '\0' ||  // We should have a path here
++if ( j >= argc  ||  // Check if we have enough arguments
++ argv[j][0] == '\0' ||  // We should have a path here
+  argv[j][0] == '-' ) // We should have a path not a command line
+   Help (argv);
+ else
+diff --git a/ode/demo/demo_piston.cpp b/ode/demo/demo_piston.cpp
+--- a/ode/demo/demo_piston.cpp
 b/ode/demo/demo_piston.cpp
+@@ -658,8 +658,8 @@
+ if ( 0 == strcmp ("-t", argv[i]) || 0 == strcmp 
("--texture-path", argv[i]) )
+ {
+ int j = i+1;
+-if ( j+1 > argc  ||  // Check if we have enough 
arguments
+-argv[j] == '\0' ||  // We should have a path here
++if ( j >= argc  ||  // Check if we have enough 
arguments
++argv[j][0] == '\0' ||  // We should have a path 
here
+ argv[j][0] == '-' ) // We should have a path not 
a command line
+ Help (argv);
+ else

diff --git a/dev-games/ode/ode-0.14-r1.ebuild b/dev-games/ode/ode-0.14-r1.ebuild
index 08bd2181aff..6cb52f0998f 100644
--- a/dev-games/ode/ode-0.14-r1.ebuild
+++ b/dev-games/ode/ode-0.14-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -22,6 +22,8 @@ DEPEND="${RDEPEND}
 MY_EXAMPLES_DIR=/usr/share/doc/${PF}/examples
 
 src_prepare() {
+   epatch "${FILESDIR}"/${PN}-0.14-gcc7.patch
+
sed -i \
-e "s:\$.*/drawstuff/textures:${MY_EXAMPLES_DIR}:" \
drawstuff/src/Makefile.am \



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

2018-04-14 Thread Johannes Huber
commit: 049945518a339a87732061dbef4443ec37bc832c
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Apr 14 16:21:05 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Apr 14 16:21:05 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=04994551

media-sound/elisa: Remove 0.1

Moved to gentoo main tree.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-sound/elisa/elisa-0.1.ebuild | 61 --
 1 file changed, 61 deletions(-)

diff --git a/media-sound/elisa/elisa-0.1.ebuild 
b/media-sound/elisa/elisa-0.1.ebuild
deleted file mode 100644
index 59f7d8a72c..00
--- a/media-sound/elisa/elisa-0.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_TEST="forceoptional"
-KDE_HANDBOOK="optional"
-inherit kde5
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
-   KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="Simple music player by KDE"
-HOMEPAGE="https://community.kde.org/Elisa;
-LICENSE="LGPL-3+"
-IUSE="mpris semantic-desktop"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kdeclarative)
-   $(add_frameworks_dep kfilemetadata)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtmultimedia 'gstreamer')
-   $(add_qt_dep qtsql)
-   $(add_qt_dep qtwidgets)
-   mpris? (
-   $(add_frameworks_dep kdbusaddons)
-   $(add_qt_dep qtdbus)
-   )
-   semantic-desktop? (
-   $(add_frameworks_dep baloo)
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   sys-devel/gettext
-"
-RDEPEND="${COMMON_DEPEND}
-   $(add_qt_dep qtgraphicaleffects)
-   $(add_qt_dep qtquickcontrols)
-   $(add_qt_dep qtquickcontrols2)
-"
-
-RESTRICT+=" test"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package mpris KF5DBusAddons)
-   $(cmake-utils_use_find_package semantic-desktop KF5Baloo)
-   )
-
-   kde5_src_configure
-}



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

2018-04-14 Thread Aaron Bauman
commit: 57ab8b39b04c721a46bd13e751e154f93006ea17
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Apr 14 16:19:05 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Apr 14 16:28:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57ab8b39

app-crypt/mit-krb5: amd64 stable

Bug: https://bugs.gentoo.org/649610
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-crypt/mit-krb5/mit-krb5-1.16-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/mit-krb5/mit-krb5-1.16-r2.ebuild 
b/app-crypt/mit-krb5/mit-krb5-1.16-r2.ebuild
index feec00d8627..b2364927882 100644
--- a/app-crypt/mit-krb5/mit-krb5-1.16-r2.ebuild
+++ b/app-crypt/mit-krb5/mit-krb5-1.16-r2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://web.mit.edu/kerberos/dist/krb5/${P_DIR}/${MY_P}.tar.gz;
 
 LICENSE="openafs-krb5-a BSD MIT OPENLDAP BSD-2 HPND BSD-4 ISC RSA CC-BY-SA-3.0 
|| ( BSD-2 GPL-2+ )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 IUSE="doc +keyutils libressl nls openldap +pkinit selinux +threads test xinetd"
 
 # Test suite require network access



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

2018-04-14 Thread Aaron Bauman
commit: 7a5b022f0687580d116785fc2cdce203ba5cda8a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Apr 14 17:29:31 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Apr 14 17:29:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a5b022f

www-client/lynx: amd64 stable

Bug: https://bugs.gentoo.org/651560
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 www-client/lynx/lynx-2.8.9_pre16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/lynx/lynx-2.8.9_pre16.ebuild 
b/www-client/lynx/lynx-2.8.9_pre16.ebuild
index f68388bb2db..1b016f53297 100644
--- a/www-client/lynx/lynx-2.8.9_pre16.ebuild
+++ b/www-client/lynx/lynx-2.8.9_pre16.ebuild
@@ -21,7 +21,7 @@ 
SRC_URI="http://invisible-mirror.net/archives/lynx/tarballs/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="bzip2 cjk gnutls idn ipv6 nls ssl unicode libressl"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-power/powertop/

2018-04-14 Thread Aaron Bauman
commit: b5b27aa64c909cbd5ffb2d2e5bed35fc7750d1b6
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Apr 14 17:44:48 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Apr 14 17:46:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5b27aa6

sys-power/powertop: amd64 stable

Bug: https://bugs.gentoo.org/651612
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 sys-power/powertop/powertop-2.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-power/powertop/powertop-2.9.ebuild 
b/sys-power/powertop/powertop-2.9.ebuild
index a46c1a302cb..1ca9db17e9c 100644
--- a/sys-power/powertop/powertop-2.9.ebuild
+++ b/sys-power/powertop/powertop-2.9.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == "" ]] ; then
 else
MY_P="${PN}-v${PV}"

SRC_URI="https://01.org/sites/default/files/downloads/${PN}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
S="${WORKDIR}/${MY_P}"
 fi
 



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

2018-04-14 Thread Aaron Bauman
commit: b10686d57e25d5abf0b9c678c50cdf44d95e3837
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Apr 14 17:46:02 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Apr 14 17:46:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b10686d5

dev-python/beaker: amd64 stable

Bug: https://bugs.gentoo.org/650904
Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/beaker/beaker-1.8.1.ebuild 
b/dev-python/beaker/beaker-1.8.1.ebuild
index c44df31f8d9..1353c98dceb 100644
--- a/dev-python/beaker/beaker-1.8.1.ebuild
+++ b/dev-python/beaker/beaker-1.8.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/bbangert/beaker/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="test"
 
 RDEPEND="virtual/python-funcsigs[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: mail-filter/rspamd/

2018-04-14 Thread Dirkjan Ochtman
commit: e26ed4da34674886bb1d54b7556a89efa73b5967
Author: Dirkjan Ochtman  gentoo  org>
AuthorDate: Sat Apr 14 17:55:24 2018 +
Commit: Dirkjan Ochtman  gentoo  org>
CommitDate: Sat Apr 14 17:55:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e26ed4da

mail-filter/rspamd: correct proxy maintainer email address (fixes bug 633254)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 mail-filter/rspamd/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/rspamd/metadata.xml b/mail-filter/rspamd/metadata.xml
index 2f0df70fd3a..e33a8b25150 100644
--- a/mail-filter/rspamd/metadata.xml
+++ b/mail-filter/rspamd/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-c...@sys4.de
+c...@roessner.co
 Christian Roessner
   
   



[gentoo-commits] repo/gentoo:master commit in: dev-java/commons-math/

2018-04-14 Thread Aaron Bauman
commit: dcc0a4d08ccdece243e9d55971d64131755a2c70
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Apr 14 18:37:14 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Apr 14 18:47:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc0a4d0

dev-java/commons-math: amd64 stable

Bug: https://bugs.gentoo.org/643320
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-java/commons-math/commons-math-2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/commons-math/commons-math-2.1-r2.ebuild 
b/dev-java/commons-math/commons-math-2.1-r2.ebuild
index 5722f745c40..b18fc803124 100644
--- a/dev-java/commons-math/commons-math-2.1-r2.ebuild
+++ b/dev-java/commons-math/commons-math-2.1-r2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://commons.apache.org/math/;
 SRC_URI="mirror://apache/commons/math/source/${P}-src.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="2"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 DEPEND="
>=virtual/jdk-1.6



[gentoo-commits] repo/gentoo:master commit in: net-p2p/ctorrent/, net-p2p/ctorrent/files/

2018-04-14 Thread Pacho Ramos
commit: c4957cff7d40b12706a131db83a6af5f41af4c2e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Apr 14 18:32:19 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Apr 14 18:45:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4957cff

net-p2p/ctorrent: Support libressl (#602326)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild  | 29 ++
 .../ctorrent/files/ctorrent-CVE-2009-1759.patch| 20 +++
 2 files changed, 39 insertions(+), 10 deletions(-)

diff --git a/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild 
b/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild
new file mode 100644
index 000..415fc523444
--- /dev/null
+++ b/net-p2p/ctorrent/ctorrent-3.3.2-r4.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_P="${PN}-dnh${PV}"
+
+DESCRIPTION="Enhanced CTorrent is a BitTorrent console client written in C and 
C++"
+HOMEPAGE="http://www.rahul.net/dholmes/ctorrent/;
+SRC_URI="mirror://sourceforge/dtorrent/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+IUSE="libressl"
+
+S="${WORKDIR}/${MY_P}"
+
+RDEPEND="
+   libressl? ( dev-libs/libressl:0= )
+   !libressl? ( dev-libs/openssl:0= )
+"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-CVE-2009-1759.patch
+   "${FILESDIR}"/${P}-negative-ints.patch
+   "${FILESDIR}"/${P}-empty-path-components.patch
+)

diff --git a/net-p2p/ctorrent/files/ctorrent-CVE-2009-1759.patch 
b/net-p2p/ctorrent/files/ctorrent-CVE-2009-1759.patch
index 196703099f6..f732278a18d 100644
--- a/net-p2p/ctorrent/files/ctorrent-CVE-2009-1759.patch
+++ b/net-p2p/ctorrent/files/ctorrent-CVE-2009-1759.patch
@@ -3,8 +3,8 @@ Source: Upstream SVN, rev 302 from the drorrent-3 branch.
 
 Index: bencode.h
 ===
 bencode.h  (revision 300)
-+++ bencode.h  (revision 302)
+--- a/bencode.h(revision 300)
 b/bencode.h(revision 302)
 @@ -25,7 +25,7 @@
  size_t decode_list(const char *b,size_t len,const char *keylist);
  size_t decode_rev(const char *b,size_t len,const char *keylist);
@@ -16,8 +16,8 @@ Index: bencode.h
  size_t bencode_int(const uint64_t integer, FILE *fp);
 Index: bencode.cpp
 ===
 bencode.cpp(revision 300)
-+++ bencode.cpp(revision 302)
+--- a/bencode.cpp  (revision 300)
 b/bencode.cpp  (revision 302)
 @@ -233,22 +233,28 @@
return bencode_end_dict_list(fp);
  }
@@ -53,8 +53,8 @@ Index: bencode.cpp
return (pb - b + 1);
 Index: btfiles.cpp
 ===
 btfiles.cpp(revision 300)
-+++ btfiles.cpp(revision 302)
+--- a/btfiles.cpp  (revision 300)
 b/btfiles.cpp  (revision 302)
 @@ -449,7 +449,8 @@
return 0;
  }
@@ -334,8 +334,8 @@ Index: btfiles.cpp
  
 Index: btcontent.cpp
 ===
 btcontent.cpp  (revision 300)
-+++ btcontent.cpp  (revision 302)
+--- a/btcontent.cpp(revision 300)
 b/btcontent.cpp(revision 302)
 @@ -357,7 +357,11 @@
  
cfg_req_queue_length = (m_piece_length / cfg_req_slice_size) * 2 - 1;
@@ -351,8 +351,8 @@ Index: btcontent.cpp
b = (char *)0;
 Index: btfiles.h
 ===
 btfiles.h  (revision 300)
-+++ btfiles.h  (revision 302)
+--- a/btfiles.h(revision 300)
 b/btfiles.h(revision 302)
 @@ -61,7 +61,7 @@

int BuildFromFS(const char *pathname);



[gentoo-commits] repo/gentoo:master commit in: x11-wm/selectwm/files/, x11-wm/selectwm/

2018-04-14 Thread Aaron Bauman
commit: ef227b56a0e6f8ca917628a5274114fb0d2c4709
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Apr 14 15:09:53 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Apr 14 18:47:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef227b56

x11-wm/selectwm: EAPI6, use HTTPS, update patch, update LICENSE

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

 x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch |  4 +--
 x11-wm/selectwm/selectwm-0.4.1-r1.ebuild   | 38 ++
 x11-wm/selectwm/selectwm-0.4.1.ebuild  |  6 ++--
 3 files changed, 43 insertions(+), 5 deletions(-)

diff --git a/x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch 
b/x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch
index d5300c9f94a..4287ca2d2cb 100644
--- a/x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch
+++ b/x11-wm/selectwm/files/selectwm-0.4.1-nostrip.patch
@@ -2,8 +2,8 @@ Respect CFLAGS, don't strip binaries
 
 http://bugs.gentoo.org/show_bug.cgi?id=252124
 
 src/Makefile.am
-+++ src/Makefile.am
+--- a/src/Makefile.am
 b/src/Makefile.am
 @@ -10,5 +10,6 @@
modify.c modify.h \
misc.h define.h

diff --git a/x11-wm/selectwm/selectwm-0.4.1-r1.ebuild 
b/x11-wm/selectwm/selectwm-0.4.1-r1.ebuild
new file mode 100644
index 000..c5ee2b776ca
--- /dev/null
+++ b/x11-wm/selectwm/selectwm-0.4.1-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools
+
+DESCRIPTION="window manager selector tool"
+HOMEPAGE="https://ordiluc.net/selectwm;
+SRC_URI="https://ordiluc.net/selectwm/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="2"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
+IUSE="nls"
+
+DOCS=( AUTHORS README sample.xinitrc )
+
+RDEPEND="x11-libs/gtk+:2
+   dev-libs/glib:2"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}/${P}-enable-deprecated-gtk.patch"
+   "${FILESDIR}/${P}-glibc-2.10.patch"
+   "${FILESDIR}/${P}-nostrip.patch"
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --program-suffix=2 \
+   $(use_enable nls)
+}

diff --git a/x11-wm/selectwm/selectwm-0.4.1.ebuild 
b/x11-wm/selectwm/selectwm-0.4.1.ebuild
index ac8889b0e7f..2d148c69907 100644
--- a/x11-wm/selectwm/selectwm-0.4.1.ebuild
+++ b/x11-wm/selectwm/selectwm-0.4.1.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit autotools eutils
 
 DESCRIPTION="window manager selector tool"
-HOMEPAGE="http://ordiluc.net/selectwm;
-SRC_URI="http://ordiluc.net/selectwm/${P}.tar.bz2;
+HOMEPAGE="https://ordiluc.net/selectwm;
+SRC_URI="https://ordiluc.net/selectwm/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="2"



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

2018-04-14 Thread Sergei Trofimovich
commit: f03cc51436773200b5c3e56503a52439e6d0431b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Apr 14 19:02:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Apr 14 19:03:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f03cc514

sys-kernel/linux-headers: add missing 'kernel/syscalls' for s390

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 sys-kernel/linux-headers/Manifest  |  1 +
 .../linux-headers/linux-headers-4.16-r1.ebuild | 60 ++
 2 files changed, 61 insertions(+)

diff --git a/sys-kernel/linux-headers/Manifest 
b/sys-kernel/linux-headers/Manifest
index 07918ff7dea..0e76a7cf74f 100644
--- a/sys-kernel/linux-headers/Manifest
+++ b/sys-kernel/linux-headers/Manifest
@@ -11,6 +11,7 @@ DIST gentoo-headers-base-3.18.tar.xz 3776668 BLAKE2B 
837a675ecf05ec270549d0ba6b9
 DIST gentoo-headers-base-4.13.tar.xz 7951980 BLAKE2B 
8b3b5d9152455b08bf06c275a69168f8a2418584058e23f784d3ab956d72b100b89d398bfeb351d8faa8285cd9ae8942726099ce9aa3fd94b8e0e92b8de1c217
 SHA512 
3b528e18199d43db3f51c8fb9a5a4c67b9317ea7e9b9fd82fe2cb4d704bbc1253f2af64dc79377ee8ec26511d0893409e3dddbb9a6ae11e8bb7f4ca4d8d3ac9a
 DIST gentoo-headers-base-4.14.tar.xz 8017944 BLAKE2B 
e967a3f26fa002f62af72c165cf960e855f5d84dd105b3f136e5ae24f4cdfc9e5f8b217a83955b325ca4bd6bda0a9d4c4de02d8d79fd4aa72191bc63db96183a
 SHA512 
2a4e83a9ee36ffa85b59ebac1e12f4f1c572825b767928a42c4748d924d04f0536bab4d9375ca68c11ad867c226f386c40c7c4d0158d1ab00c838eb5b2f9f21a
 DIST gentoo-headers-base-4.15.tar.xz 8199628 BLAKE2B 
79a4f694a8335ed4bf1df94ab7829f41d3476165d0ce822a13e47461d7e3ee4cdb5e88acb9960a92ba1142adeb9951c19e17405c37b80d461b8577c7d1dfa37a
 SHA512 
7698ae90e356cb6105d3b1fc5351264774428b5caa405e8695925965ab2ff3a08c0dfe3587a69a87405ecc45c6cd3040c3a9f751d6e6dc8eddf8b28ded4e2584
+DIST gentoo-headers-base-4.16-r1.tar.xz 8227040 BLAKE2B 
95b2d64a614430e49d849ab54c58cbc3a850faea1bb5d9f7f43733d7b745ceb5ea3d1f8cc4dbb36c20797ae7d10bd736b99d17f5bfd0cdb90ecedb4eeb0f8610
 SHA512 
9b7cc82a322bd43dbf07c63d465200c87b838252e449028a363f3ff10921fe3889b503f20184168c7413d792c3d33b4324d89c89b95c8143a4a3c9c3e7e2d28e
 DIST gentoo-headers-base-4.16.tar.xz 856 BLAKE2B 
a5065cb49b549ea5eff33bc3a60ed070511cc463258666c30681aceaba97a108be059e4fc175bd6ba4dd0b27cf8bab14e0a8225346811eaacb4ddf8b2ba5a147
 SHA512 
2a5beadc61532d23f999c24101f3ab6db5d184a7327fa26330e318ac6b5b38b14c0e73ead2f550707b4e24c1f4f1a11c306c97608d98d530978fdeb43b4d58d9
 DIST gentoo-headers-base-4.4.tar.xz 3911752 BLAKE2B 
5031ecd48b99cb0c9c35ca935fa6a62cc36c076bab193ec397fc0d543170f29c6d5a0827a2ea5517eb68fc838819cbe3e5abd125bb920992492369d5e5c1e7cb
 SHA512 
1cd3de58ff790c3730bea38138c7a45ef95d04288c69ffeabebb884fab3add13bd9c99785ddd87a3ee467a0e1b1cdc457bbd28da349e7c178b4d2374c5fb78a3
 DIST gentoo-headers-base-4.9.tar.xz 4052748 BLAKE2B 
e279954c56170fbfa4ebae8dade731825b3d5f0cd5d73a5b33cd93a9c8f5fa140e14edf0d5ac26a452fe8a61b16fdcc851f5329f56e4c8dcf4472a995de44c4c
 SHA512 
a03418cfba7fa4531279d9122411af3e285e962506e8df9279fbbb27ae08a4e30725bd1cf03f48ad523f61f2889195e6c844fa4c7b4ef2f828baf47ef402abfa

diff --git a/sys-kernel/linux-headers/linux-headers-4.16-r1.ebuild 
b/sys-kernel/linux-headers/linux-headers-4.16-r1.ebuild
new file mode 100644
index 000..1c1d8730d9d
--- /dev/null
+++ b/sys-kernel/linux-headers/linux-headers-4.16-r1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+ETYPE="headers"
+H_SUPPORTEDARCH="alpha amd64 arc arm arm64 avr32 bfin cris frv hexagon hppa 
ia64 m32r m68k metag microblaze mips mn10300 nios2 openrisc ppc ppc64 riscv 
s390 score sh sparc tile x86 xtensa"
+inherit kernel-2
+detect_version
+
+PATCH_VER="1"
+SRC_URI="mirror://gentoo/gentoo-headers-base-${PV}-r1.tar.xz
+   ${PATCH_VER:+mirror://gentoo/gentoo-headers-${PV}-${PATCH_VER}.tar.xz}
+   
https://dev.gentoo.org/~slyfox/distfiles/gentoo-headers-base-${PV}-r1.tar.xz
+   
${PATCH_VER:+https://dev.gentoo.org/~slyfox/distfiles/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"
+
+DEPEND="app-arch/xz-utils
+   dev-lang/perl"
+RDEPEND="!!media-sound/alsa-headers"
+
+S=${WORKDIR}/gentoo-headers-base-${PV}
+
+src_unpack() {
+   unpack ${A}
+}
+
+src_prepare() {
+   default
+
+   [[ -n ${PATCH_VER} ]] && EPATCH_SUFFIX="patch" epatch "${WORKDIR}"/${PV}
+}
+
+src_install() {
+   kernel-2_src_install
+
+   # hrm, build system sucks
+   find "${ED}" '(' -name '.install' -o -name '*.cmd' ')' -delete
+   find "${ED}" -depth -type d -delete 2>/dev/null
+}
+
+src_test() {
+   # Make sure no uapi/ include paths are used by accident.
+   egrep -r \
+   -e '# *include.*["<]uapi/' \
+   "${D}" && die "#include uapi/xxx detected"
+
+   einfo 

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

2018-04-14 Thread Ulrich Müller
commit: df9b751f851ae073d6b68b3571a1652d2ac4221b
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat Apr 14 19:39:58 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat Apr 14 19:43:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9b751f

dev-db/qt5-sqlcipher: More general handling of cached versions.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 ...0.1-r1.ebuild => qt5-sqlcipher-1.0.1-r2.ebuild} | 22 +-
 1 file changed, 17 insertions(+), 5 deletions(-)

diff --git a/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1-r1.ebuild 
b/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1-r2.ebuild
similarity index 57%
rename from dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1-r1.ebuild
rename to dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1-r2.ebuild
index 3a85ab072f1..952ae0ab2e7 100644
--- a/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1-r1.ebuild
+++ b/dev-db/qt5-sqlcipher/qt5-sqlcipher-1.0.1-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit cmake-utils
+inherit cmake-utils eapi7-ver
 
 DESCRIPTION="Qt SQL driver plugin for SQLCipher"
 HOMEPAGE="https://github.com/blizzard4591/qt5-sqlcipher;
@@ -15,7 +15,7 @@ KEYWORDS="~amd64"
 
 DEPEND=">=dev-db/sqlcipher-3.4.1
>=dev-qt/qtcore-5.7.1:5=
-   >=dev-qt/qtsql-5.7.1:5=[sqlite] =dev-qt/qtsql-5.7.1:5=[sqlite] 

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

2018-04-14 Thread Mart Raudsepp
commit: 52d4d969aff31a5d2adb503319026d29a83b40c5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Apr 14 20:28:04 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Apr 14 20:28:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52d4d969

dev-python/click-6.7: arm64 stable (bug #630320)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/click/click-6.7.ebuild 
b/dev-python/click/click-6.7.ebuild
index df2868d911b..d3c9e5f244c 100644
--- a/dev-python/click/click-6.7.ebuild
+++ b/dev-python/click/click-6.7.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://click.pocoo.org/ 
https://pypi.python.org/pypi/click;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
 IUSE="doc examples test"
 
 REQUIRED_USE="doc? ( || ( $(python_gen_useflags 'python2*') ) )"



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

2018-04-14 Thread Mart Raudsepp
commit: 6d98e97b51c536ba9b80c8e5c997b85969840353
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Apr 14 20:31:38 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Apr 14 20:31:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d98e97b

app-shells/dash-0.5.9.1-r3: arm64 stable (bug #631572)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-shells/dash/dash-0.5.9.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/dash/dash-0.5.9.1-r3.ebuild 
b/app-shells/dash/dash-0.5.9.1-r3.ebuild
index fb1c4d4a5fe..bc87d2fecc0 100644
--- a/app-shells/dash/dash-0.5.9.1-r3.ebuild
+++ b/app-shells/dash/dash-0.5.9.1-r3.ebuild
@@ -19,7 +19,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="libedit static vanilla"
 
 RDEPEND="!static? ( libedit? ( dev-libs/libedit ) )"



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

2018-04-14 Thread Matthias Maier
commit: aeb2779fd4566b40dfb0e413d508a50b74d8f893
Author: Matthias Maier  gentoo  org>
AuthorDate: Sat Apr 14 22:51:29 2018 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sat Apr 14 22:51:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeb2779f

app-emulation/virt-viewer: drop version 5.0

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-emulation/virt-viewer/Manifest   |  1 -
 app-emulation/virt-viewer/virt-viewer-5.0.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/app-emulation/virt-viewer/Manifest 
b/app-emulation/virt-viewer/Manifest
index bba48f81023..b32f24ce4d7 100644
--- a/app-emulation/virt-viewer/Manifest
+++ b/app-emulation/virt-viewer/Manifest
@@ -1,2 +1 @@
-DIST virt-viewer-5.0.tar.gz 908726 BLAKE2B 
ffc1e8ce7b74f888289a65a0ad7566c84278cbf1a412b426883313f1b66bb95e10b74fedb256b4ab6b39e4dc6e292e518585fcbaf07e7669b51a5be87cfd257f
 SHA512 
924fa88fd0ca7cc5b3d0a348c0d1104337fe0a06328e32110b4417c64f5d9efaf6df534adbc1eaa69157d229763b773307fa834a66f16156e3703731525eb690
 DIST virt-viewer-6.0.tar.gz 922916 BLAKE2B 
1c2246369474d06188dc2191b9756dbe69cff2d5f997ffb58bdab1143a0e4d6cda0e43b4b082d7921125caa4348635762070fa8e6686ccf7728a90e4e6fc3a18
 SHA512 
656d48f8ab387d025c406cb5f56164d79104c6c377fae37d9c524b90e512fe873d5d1d6c435d4ea95e71468b7d3384b89789495075cafb1a9e67f583f7d49ec2

diff --git a/app-emulation/virt-viewer/virt-viewer-5.0.ebuild 
b/app-emulation/virt-viewer/virt-viewer-5.0.ebuild
deleted file mode 100644
index e79a543002f..000
--- a/app-emulation/virt-viewer/virt-viewer-5.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Graphical console client for connecting to virtual machines"
-HOMEPAGE="http://virt-manager.org/;
-SRC_URI="http://virt-manager.org/download/sources/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="sasl +spice +vnc"
-
-RDEPEND=">=app-emulation/libvirt-0.10.0[sasl?]
-   app-emulation/libvirt-glib
-   >=dev-libs/libxml2-2.6
-   x11-libs/gtk+:3
-   spice? ( >=net-misc/spice-gtk-0.33[sasl?,gtk3] )
-   vnc? ( >=net-libs/gtk-vnc-0.5.0[sasl?,gtk3] )"
-DEPEND="${RDEPEND}
-   dev-lang/perl
-   >=dev-util/intltool-0.35.0
-   virtual/pkgconfig
-   spice? ( >=app-emulation/spice-protocol-0.12.10 )"
-
-REQUIRED_USE="|| ( spice vnc )"
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-update-mimedb \
-   --without-ovirt \
-   $(use_with vnc gtk-vnc) \
-   $(use_with spice spice-gtk)
-}



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

2018-04-14 Thread Matthias Maier
commit: d5b2deb8cef545185f081f5c7bad5a9369d71893
Author: Matthias Maier  gentoo  org>
AuthorDate: Sat Apr 14 22:50:57 2018 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Sat Apr 14 22:50:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5b2deb8

app-emulation/virt-viewer: update gtk-vnc dependency

Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --force

 .../virt-viewer/{virt-viewer-6.0.ebuild => virt-viewer-6.0-r1.ebuild}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/virt-viewer/virt-viewer-6.0.ebuild 
b/app-emulation/virt-viewer/virt-viewer-6.0-r1.ebuild
similarity index 94%
rename from app-emulation/virt-viewer/virt-viewer-6.0.ebuild
rename to app-emulation/virt-viewer/virt-viewer-6.0-r1.ebuild
index dafa029a268..5e7f75d9859 100644
--- a/app-emulation/virt-viewer/virt-viewer-6.0.ebuild
+++ b/app-emulation/virt-viewer/virt-viewer-6.0-r1.ebuild
@@ -18,7 +18,7 @@ RDEPEND=">=app-emulation/libvirt-0.10.0[sasl?]
>=dev-libs/libxml2-2.6
x11-libs/gtk+:3
spice? ( >=net-misc/spice-gtk-0.33[sasl?,gtk3] )
-   vnc? ( >=net-libs/gtk-vnc-0.5.0[sasl?,gtk3] )"
+   vnc? ( >=net-libs/gtk-vnc-0.5.0[sasl?,gtk3(+)] )"
 DEPEND="${RDEPEND}
dev-lang/perl
>=dev-util/intltool-0.35.0



  1   2   3   >