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

2018-12-31 Thread Jeroen Roovers
commit: d3634f6c31c170dcab9cadbec7f502b10c2b1a70
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jan  1 06:18:43 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jan  1 06:19:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3634f6c

net-analyzer/fail2ban: Old

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

 net-analyzer/fail2ban/Manifest |   1 -
 net-analyzer/fail2ban/fail2ban-0.10.3.1.ebuild | 113 -
 2 files changed, 114 deletions(-)

diff --git a/net-analyzer/fail2ban/Manifest b/net-analyzer/fail2ban/Manifest
index 29d56938a6c..8ae35bf6701 100644
--- a/net-analyzer/fail2ban/Manifest
+++ b/net-analyzer/fail2ban/Manifest
@@ -1,2 +1 @@
-DIST fail2ban-0.10.3.1.tar.gz 485826 BLAKE2B 
79ca86a601bd79ba3729d4c9b00f20a0717df8c7ceb20183099e11f84cceade274173be90d0b4b000d37a1b9d242e14106c9e7e40e372e450d69bca003fff6fb
 SHA512 
ed3646ef2113fe10d9130c239818087b228ac9708411e26acc412beae022e3f9ff8cea32d824bd491117882fb8f184dcb88bda295bd31e865ac8310c7e27fc7a
 DIST fail2ban-0.10.4.tar.gz 493104 BLAKE2B 
3a58ab114cf25172c77b229ce53bf6dd009d4fb8c700142480ba0212072d8820126bfabf5dd417835bdac5f5b65d599c6dde859d8c57267e90cfb569dc4a2073
 SHA512 
ee53f2e8dc3cda4f588c60da5227d3d71550496ddfdf5bdbffced25bafd442b8e2352a9ad9f27bf76489903b5b779cdb9614963342de907c1036ae9268b8f35f

diff --git a/net-analyzer/fail2ban/fail2ban-0.10.3.1.ebuild 
b/net-analyzer/fail2ban/fail2ban-0.10.3.1.ebuild
deleted file mode 100644
index 3dda24f6f47..000
--- a/net-analyzer/fail2ban/fail2ban-0.10.3.1.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# 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} pypy )
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1 eutils systemd vcs-snapshot
-
-DESCRIPTION="scans log files and bans IPs that show malicious signs"
-HOMEPAGE="http://www.fail2ban.org/;
-SRC_URI="https://github.com/${PN}/${PN}/tarball/${PV} -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="selinux systemd"
-
-# TODO support ipfw and ipfilter
-RDEPEND="
-   kernel_linux? ( net-firewall/iptables )
-   kernel_FreeBSD? ( sys-freebsd/freebsd-pf )
-   net-misc/whois
-   virtual/logger
-   virtual/mta
-   selinux? ( sec-policy/selinux-fail2ban )
-   systemd? ( $(python_gen_cond_dep '|| (
-   dev-python/python-systemd[${PYTHON_USEDEP}]
-   sys-apps/systemd[python(-),${PYTHON_USEDEP}]
-   )' 'python*' ) )
-"
-
-REQUIRED_USE="systemd? ( !python_single_target_pypy )"
-
-DOCS=( ChangeLog DEVELOP README.md THANKS TODO doc/run-rootless.txt )
-
-python_prepare_all() {
-   eapply_user
-
-   # Replace /var/run with /run, but not in the top source directory
-   find . -mindepth 2 -type f -exec \
-   sed -i -e 's|/var\(/run/fail2ban\)|\1|g' {} + || die
-
-   sed -i -e 's|runscript|openrc-run|g' files/gentoo-initd || die
-
-   distutils-r1_python_prepare_all
-}
-
-python_compile() {
-   if python_is_python3; then
-   ./fail2ban-2to3 || die
-   fi
-   distutils-r1_python_compile
-}
-
-python_test() {
-   "${PYTHON}" "bin/${PN}-testcases" || die "tests failed with ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   rm -rf "${D}"/usr/share/doc/${PN} "${D}"/run || die
-
-   # not FILESDIR
-   newconfd files/gentoo-confd ${PN}
-   newinitd files/gentoo-initd ${PN}
-   sed -e "s:@BINDIR@:${EPREFIX}/usr/bin:g" files/${PN}.service.in > 
"${T}/${PN}.service" || die
-   systemd_dounit "${T}/${PN}.service"
-   systemd_dotmpfilesd files/${PN}-tmpfiles.conf
-   doman man/*.{1,5}
-
-   # Use INSTALL_MASK  if you do not want to touch /etc/logrotate.d.
-   # See http://thread.gmane.org/gmane.linux.gentoo.devel/35675
-   insinto /etc/logrotate.d
-   newins files/${PN}-logrotate ${PN}
-}
-
-pkg_preinst() {
-   has_version "<${CATEGORY}/${PN}-0.7"
-   previous_less_than_0_7=$?
-}
-
-pkg_postinst() {
-   if [[ $previous_less_than_0_7 = 0 ]] ; then
-   elog
-   elog "Configuration files are now in /etc/fail2ban/"
-   elog "You probably have to manually update your configuration"
-   elog "files before restarting Fail2ban!"
-   elog
-   elog "Fail2ban is not installed under /usr/lib anymore. The"
-   elog "new location is under /usr/share."
-   elog
-   elog "You are upgrading from version 0.6.x, please see:"
-   elog 
"http://www.fail2ban.org/wiki/index.php/HOWTO_Upgrade_from_0.6_to_0.8;
-   fi
-
-   if ! has_version dev-python/pyinotify && ! has_version app-admin/gamin; 
then
-   elog "For most jail.conf configurations, it is 

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

2018-12-31 Thread Jeroen Roovers
commit: 0af58e1d6cc01d1658f264e86d3404323d207e5d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jan  1 06:16:34 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jan  1 06:19:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0af58e1d

net-analyzer/fail2ban: Fix live ebuild

Closes: https://bugs.gentoo.org/674204
Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/fail2ban/fail2ban-.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-analyzer/fail2ban/fail2ban-.ebuild 
b/net-analyzer/fail2ban/fail2ban-.ebuild
index a00563b4c26..c0387412503 100644
--- a/net-analyzer/fail2ban/fail2ban-.ebuild
+++ b/net-analyzer/fail2ban/fail2ban-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -58,7 +58,6 @@ python_install_all() {
# not FILESDIR
newconfd files/gentoo-confd ${PN}
newinitd files/gentoo-initd ${PN}
-   systemd_dounit files/${PN}.service
sed -e "s:@BINDIR@:${EPREFIX}/usr/bin:g" files/${PN}.service.in > 
"${T}"/${PN}.service || die
systemd_dounit "${T}"/${PN}.service
systemd_dotmpfilesd files/${PN}-tmpfiles.conf



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/

2018-12-31 Thread Andrey Grozin
commit: 854ab461d7627dbdfa292715802da931940fa366
Author: Andrey Grozin  gentoo  org>
AuthorDate: Tue Jan  1 05:06:26 2019 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Tue Jan  1 05:06:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=854ab461

dev-lisp/sbcl: bump to 1.4.15

Signed-off-by: Andrey Grozin  gentoo.org>
Package-Manager: Portage-2.3.41, Repoman-2.3.9

 dev-lisp/sbcl/Manifest   |   2 +
 dev-lisp/sbcl/sbcl-1.4.15.ebuild | 246 +++
 2 files changed, 248 insertions(+)

diff --git a/dev-lisp/sbcl/Manifest b/dev-lisp/sbcl/Manifest
index a114f86bb44..b3a95e859a3 100644
--- a/dev-lisp/sbcl/Manifest
+++ b/dev-lisp/sbcl/Manifest
@@ -23,6 +23,8 @@ DIST sbcl-1.4.12-source.tar.bz2 6166453 BLAKE2B 
a85589610b6bad9bd2688c0320f46685
 DIST sbcl-1.4.12-x86-64-linux-binary.tar.bz2 10226228 BLAKE2B 
da5ab75c4913424774beadd47c0d5a5e1ea2885c0e45891ff9b730ea63a60ae1532e79b74ba1ac4f719447cce02e997ae0c771a0a916de646be1809068b82248
 SHA512 
6eb8bd4a7a5bddb06d7cc7a3224f2edad7add58c0af88b2d36ef6523a942d30f659189833def36c4688ffaf7046b11c3b4ddca09473af234cab3527ecca96220
 DIST sbcl-1.4.13-source.tar.bz2 6172361 BLAKE2B 
7a3ae9fee025b72a5d5efc6c6cb0fbdc094cc8d31dbe0191dd126f2f6a7fd3944c7faa2ae23fab6e584e63760cce2d3e1c516c9b4d91eae9c9f18efdeebf3fa0
 SHA512 
976336bc5d3477a89afac51c3ee89e4153f0fca923ea477d4b312d8d231bccc215a31956198b2b670d86e17580d874bc964e12aa8207a17f61d20e4be41e4fcd
 DIST sbcl-1.4.13-x86-64-linux-binary.tar.bz2 10157554 BLAKE2B 
24954d81149c0c5048c92dec04bf9b8ebbf4e630248a3ae6eed5ed1f8c871a5e428ecdb2142223f2823746480bb5bf0cacbeb98508d64cce5ebed58336022732
 SHA512 
81832ca6e6763783730c5f85325f5584d1bbb8b9bbd0c83cd0d3cabee2a832ea18409243a7a674a251561f31c2bc8f2b723768ddd8729141261ba0301e357980
+DIST sbcl-1.4.15-source.tar.bz2 6203416 BLAKE2B 
181f237bf91c5923a343f8a249af78d6cd8c17b8af5fb93a9045677f1c604367dba5f4eb135dd368da48b55af6dfef8e2ea788c435a0ad787bcb6d4edebd3edf
 SHA512 
9b38549c9a6170616b6966f98240df088f4a7c01d8aa939a8d38e1b2a7fdf5cea02c0346aa64c825949477ba56d57960db69018e31ec8ef6d78c8217a240a8db
+DIST sbcl-1.4.15-x86-64-linux-binary.tar.bz2 10318352 BLAKE2B 
2da21f7a72602d461849adbdda2c3149b5bd66c0639964ef0bd78f4095f8caa229f1c3f0247d03c49773f9b716cc92ed760e5ba5c08005f73263a3ceef8d4e42
 SHA512 
0b07a9625b227537d264263e5cf9a32b6e4a6389bce2a60a7f4569441d0c22d6ec1bacfa4e43952ec766edd1336d1afc00c9da21bd8308c483a46cbe0824e11b
 DIST sbcl-1.4.2-arm64-linux-binary.tar.bz2 10578821 BLAKE2B 
1cd25c548be0f1b7ec01edc3bee7fe6c2aaf07b7bd1fc55d408dee7ac95e8f3761a194bf9e8efb734179a7eff04cdae2fe5ba4a9ba5ab06f7322ac1550d142cc
 SHA512 
39bbd735b242aa0bbac05c6f4dbe28cb45e01684db7e5b4f1e51f995a9f9d5b484f63cc4243f472f72b3b1e6c4cd2268a7e812b15426eca5cf9a1fede10f44bb
 DIST sbcl-1.4.3-x86-linux-binary.tar.bz2 10227185 BLAKE2B 
6d77c4f4177cbdb72fb9bab0da5bd91e0aa8deafffd238818a2551332f0ab246715d9489b5c1156f3481aa7fb79d161a988404620fc09fe86ff927543a1ee678
 SHA512 
41cd63d61dd7c46370341dce39a362287a23b528bfebe8e5571614aeefdea03d318207d25562e995db9ccedb6c1f50ea4d66627721f0fd9486e99440126e6a38
 DIST sbcl-1.4.7-source.tar.bz2 6031614 BLAKE2B 
b98d8c3891e4f3180624ef0ccc1e81146d97e58c577c9efb2b3ac178f81a836f4019111a6c33ec31edb47d41920249c33a87955303c02ffc608ea42747b7f662
 SHA512 
b6eb749878920bec90f50f19c8c8700f700677ae1a7f7fb1ba1bbaa37f218d360dea65eb200f0cd09a9694600969f4c15042faf357395715b5390a6fdb6b

diff --git a/dev-lisp/sbcl/sbcl-1.4.15.ebuild b/dev-lisp/sbcl/sbcl-1.4.15.ebuild
new file mode 100644
index 000..3ab2c80ba0c
--- /dev/null
+++ b/dev-lisp/sbcl/sbcl-1.4.15.ebuild
@@ -0,0 +1,246 @@
+# Copyright 1999-2019 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit multilib eutils flag-o-matic pax-utils
+
+#same order as http://www.sbcl.org/platform-table.html
+BV_X86=1.4.3
+BV_AMD64=1.4.15
+BV_PPC=1.2.7
+BV_SPARC=1.0.28
+BV_ALPHA=1.0.28
+BV_ARM=1.4.11
+BV_ARM64=1.4.2
+BV_X86_MACOS=1.1.6
+BV_X64_MACOS=1.2.11
+BV_PPC_MACOS=1.0.47
+BV_X86_SOLARIS=1.2.7
+BV_X64_SOLARIS=1.2.7
+BV_SPARC_SOLARIS=1.0.23
+
+DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common 
Lisp"
+HOMEPAGE="http://sbcl.sourceforge.net/;
+SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2
+   x86? ( 
mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 )
+   amd64? ( 
mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 )
+   ppc? ( 
mirror://sourceforge/sbcl/${PN}-${BV_PPC}-powerpc-linux-binary.tar.bz2 )
+   sparc? ( 
mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 )
+   alpha? ( 
mirror://sourceforge/sbcl/${PN}-${BV_ALPHA}-alpha-linux-binary.tar.bz2 )
+   arm? ( 
mirror://sourceforge/sbcl/${PN}-${BV_ARM}-armhf-linux-binary.tar.bz2 )
+   arm64? ( 
mirror://sourceforge/sbcl/${PN}-${BV_ARM64}-arm64-linux-binary.tar.bz2 )
+   x86-macos? ( 

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

2018-12-31 Thread Matthew Thode
commit: 6c210d86f759c10dabc6fe7e9824158a79a1bddc
Author: Matthew Thode  gentoo  org>
AuthorDate: Tue Jan  1 02:12:00 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Tue Jan  1 02:12:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c210d86

media-sound/pulseeffects: 4.4.4 bump with cleanup

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 media-sound/pulseeffects/Manifest   | 2 +-
 .../{pulseeffects-4.4.3.ebuild => pulseeffects-4.4.4.ebuild}| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/pulseeffects/Manifest 
b/media-sound/pulseeffects/Manifest
index 89ebb702d50..c5ac7bb8e63 100644
--- a/media-sound/pulseeffects/Manifest
+++ b/media-sound/pulseeffects/Manifest
@@ -1,3 +1,3 @@
 DIST pulseeffects-3.2.3.tar.gz 648968 BLAKE2B 
aef2aaacacc41020c5f14582c91b53ba84f3e56d7cf4a13a955769ff80796ae21cbc0ecad9b2c3e24985a6a6daf86888c3a8c6e2387b917860336e73fa8c0d6b
 SHA512 
802068c867b9708e7503e0beb65fb5aaf9ff4916b98048634a443f701864db00e5401de42ff58ed3e5fe9430af6caae74efe8f0b1b0e3e2c9d48dcb7c7e6a400
 DIST pulseeffects-4.4.1.tar.gz 1035274 BLAKE2B 
c8fd9b6e73ef2abc07837560faa10661a0f46f503b6a6023a9cde08086fafdea18cdc73b99c8fd5176942e066629ffc085e47e591831c034fd8b739ff4975347
 SHA512 
11ff0a689c6bf718d95eb0202fb73e06d194a71be9393685a2b444c3fc22bfac5f022ee177a73d786e6704f56173fd702f30005e7ace48fb825f3180f0dfe99a
-DIST pulseeffects-4.4.3.tar.gz 1051621 BLAKE2B 
24fc360d86a04674aa0bd4cf39b29b1bfcc67acf2001f5ae271a355a1fb01f5be8a76ed588c187c2cb4ca5b7468f72d6df97f502d483b386e2e741493bad4dc7
 SHA512 
34173c9ad90c2da269cf86fd7410ca0f1614c98065f2106fa9f208bc145509ca1e26342d61012d954e00637bb18a4f456b6a8f5fb432adb6405051c2d9c8cff9
+DIST pulseeffects-4.4.4.tar.gz 1053778 BLAKE2B 
2dabbbac772754e75bb7f6b255ba45702e19ba302c0e8e71114a9add8d653bf66c917b85c6e2e798fca4998cd63fef3ef1846d88a1fea9cd11007109e5aaa8f1
 SHA512 
3552ace19a9f7b63b18a633a11a9c9acdb22df2954154592aeaed41dc649ac2451e7c88072e1c67a9f432cce5452e4fc4c00597a931210df49b58f959ad2e0f5

diff --git a/media-sound/pulseeffects/pulseeffects-4.4.3.ebuild 
b/media-sound/pulseeffects/pulseeffects-4.4.4.ebuild
similarity index 97%
rename from media-sound/pulseeffects/pulseeffects-4.4.3.ebuild
rename to media-sound/pulseeffects/pulseeffects-4.4.4.ebuild
index edcf67ece62..502ea295a5f 100644
--- a/media-sound/pulseeffects/pulseeffects-4.4.3.ebuild
+++ b/media-sound/pulseeffects/pulseeffects-4.4.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6



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

2018-12-31 Thread Virgil Dupras
commit: be7e9da3213b71585120346202011edb7c05ce12
Author: Virgil Dupras  gentoo  org>
AuthorDate: Tue Jan  1 01:13:40 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Tue Jan  1 01:13:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be7e9da3

dev-python/toml: bump to 0.10.0

Also, add support for py37 and pypy3 and bump to EAPI 7.

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/toml/Manifest  | 2 +-
 dev-python/toml/{toml-0.9.6.ebuild => toml-0.10.0.ebuild} | 8 +---
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/dev-python/toml/Manifest b/dev-python/toml/Manifest
index 396b35e761c..89d930e0408 100644
--- a/dev-python/toml/Manifest
+++ b/dev-python/toml/Manifest
@@ -1 +1 @@
-DIST toml-0.9.6.tar.gz 14074 BLAKE2B 
758dbde35e1afacad8456cfac42354f3205d2d1ae79ceeea1803fe253472e3299ba171ce9435529f64fd8a31adc7cc1c05282a76a47118b7aa0e3ed61ccacc25
 SHA512 
9f2804daebae0744c3a00bfb27b2f1efd73c96e7e5a14316d492200d63ba546167f669a187297c76daca5ef35b7adb6f309c1f6129302b6f41e6b7673bdb43b6
+DIST toml-0.10.0.tar.gz 16719 BLAKE2B 
f7863e9cf0ca5185a59d64010346b4b960c40bc3711d4cbd1ad907d15da823319b748df1a5536465e9f36428bf1599624ede3b1fa68cb420684a52ba137227c9
 SHA512 
26f26c38ce9cd48305218c2c34c5a5407b00aefc25a933f044bb7be22c23cfdfa3b8cf2da952d17760c4b9038df62e405fa039cc7b63dd3e94c9c312f04f9182

diff --git a/dev-python/toml/toml-0.9.6.ebuild 
b/dev-python/toml/toml-0.10.0.ebuild
similarity index 62%
rename from dev-python/toml/toml-0.9.6.ebuild
rename to dev-python/toml/toml-0.10.0.ebuild
index 528467cd42e..d50fd3ab181 100644
--- a/dev-python/toml/toml-0.9.6.ebuild
+++ b/dev-python/toml/toml-0.10.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} pypy{,3} )
 
 inherit distutils-r1
 
@@ -15,6 +15,8 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
+# peculiar testing depending on https://github.com/BurntSushi/toml-test. Not
+# particularly worth the trouble.
 RESTRICT="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2018-12-31 Thread Virgil Dupras
commit: 6b85d8801e68be3f0f926ec828a86f680ec6da62
Author: Virgil Dupras  gentoo  org>
AuthorDate: Tue Jan  1 01:16:34 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Tue Jan  1 01:16:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b85d880

dev-python/tox: bump to 3.6.1

Also, re-add support for py37 and pypy3 (lost with the addition of the
toml dep).

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/tox/Manifest   | 2 +-
 dev-python/tox/{tox-3.6.0.ebuild => tox-3.6.1.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/tox/Manifest b/dev-python/tox/Manifest
index 33b5097ef03..c07b0610e1d 100644
--- a/dev-python/tox/Manifest
+++ b/dev-python/tox/Manifest
@@ -1,3 +1,3 @@
 DIST tox-2.9.1.tar.gz 1855982 BLAKE2B 
3e2f5fd3d3e45e54f96b0a6fc8f9e98bfba3b48540cc2922a897e016b5aabc9974772c9b897e0fab7b38b00f99478a063ad988ffa8b65fa53f684997334e492c
 SHA512 
ff19b2bb7ac963379f1cccd4973ad9eb4dabfbda976cde7caba50ad010d8fa57c1cba91d63e3e0512e44cc7d350bc9270fbd9b30db1bd55f7d9c239e7623d066
 DIST tox-3.2.1.tar.gz 268827 BLAKE2B 
764835d04fb0c17f32eb8e2041b83f90d6a729b781a5b5b95e9ecb1162f1c29ed595d4a6369524b390a31853b8003485b27a3a12d63e84f49e92675f1a9bee13
 SHA512 
79f5a1c8f6e818fbb8444754e3767d880fc1fdfe63b46c518d37440fe2b2f3ce572865aff83d9492c24486fded49893cc31bd9b11254bac4db507260304bc76f
-DIST tox-3.6.0.tar.gz 257255 BLAKE2B 
fc61eb9c3c7eaca483c5de99b72562fb936447534cc1c08e70e8ed376fe70e0467d07168cb518f097002ea96ebbd709364236af49307c3c4c84f58feafba6bd7
 SHA512 
fcee3d78f266ebe036931589a68b51e111ba34cbe3fae6ee9241b4e98433ca75c59261ccaef014e00b3bfd678d10624c72c45146d594a7d25d6f437101f4c93d
+DIST tox-3.6.1.tar.gz 257471 BLAKE2B 
ab09a6e5f3a0de343dcea05008f6bfddc2be1e8949c5529c2a030dd4be32eb541a9d55037602efa58345210f34fa4d3f246d1a4260f7a9b77c0d473d8649673c
 SHA512 
81edb0fc489731eb815f46cfa30677b077d4bb58d4e3e8bd7f887eaed3a2a950f7b49368af2bcb51ea07ca1821ff67145d543b8a370d642dd87d93952734249a

diff --git a/dev-python/tox/tox-3.6.0.ebuild b/dev-python/tox/tox-3.6.1.ebuild
similarity index 92%
rename from dev-python/tox/tox-3.6.0.ebuild
rename to dev-python/tox/tox-3.6.1.ebuild
index 46fa53e8f93..f50b9bdddb5 100644
--- a/dev-python/tox/tox-3.6.0.ebuild
+++ b/dev-python/tox/tox-3.6.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_{5,6}} pypy )
+PYTHON_COMPAT=( python{2_7,3_{5,6,7}} pypy{,3} )
 
 inherit distutils-r1
 



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

2018-12-31 Thread Andreas Sturmlechner
commit: 61cd22c5498bc01dfc36971d7afc389f5d82b712
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jan  1 00:34:44 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jan  1 00:35:40 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=61cd22c5

Bump portage version to 2.3.52

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

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

diff --git a/.travis.yml b/.travis.yml
index 79c48c29eb..8bc6a7572f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,7 +6,7 @@ language: python
 python:
 - pypy
 env:
-- PORTAGE_VER="2.3.51"
+- PORTAGE_VER="2.3.53"
 before_install:
 - sudo apt-get -qq update
 - pip install lxml pyyaml



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

2018-12-31 Thread Jonathan Callen
commit: 98e8b96517d2d1dd8827cfc270cf6340023fb15a
Author: Jonathan Callen  gentoo  org>
AuthorDate: Tue Jan  1 00:22:14 2019 +
Commit: Jonathan Callen  gentoo  org>
CommitDate: Tue Jan  1 00:22:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e8b965

header.txt, skel.ebuild: Happy New Year 2019!

Signed-off-by: Jonathan Callen  gentoo.org>

 header.txt  | 2 +-
 skel.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/header.txt b/header.txt
index 53a6d5a82a9..ceda2a6831b 100644
--- a/header.txt
+++ b/header.txt
@@ -1,3 +1,3 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 

diff --git a/skel.ebuild b/skel.ebuild
index 0114d8c26ac..c39ac798ea0 100644
--- a/skel.ebuild
+++ b/skel.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # NOTE: The comments in this file are for instruction and documentation.



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

2018-12-31 Thread Davide Pesavento
commit: 0672876497645f8acce9ddd1e3523d2a242df3e0
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon Dec 31 23:41:59 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon Dec 31 23:44:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06728764

dev-python/qscintilla-python: remove 2.10.4

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Davide Pesavento  gentoo.org>

 dev-python/qscintilla-python/Manifest  |  1 -
 .../qscintilla-python-2.10.4.ebuild| 69 --
 2 files changed, 70 deletions(-)

diff --git a/dev-python/qscintilla-python/Manifest 
b/dev-python/qscintilla-python/Manifest
index 692c9be04f5..a3b924ad27c 100644
--- a/dev-python/qscintilla-python/Manifest
+++ b/dev-python/qscintilla-python/Manifest
@@ -1,2 +1 @@
-DIST QScintilla_gpl-2.10.4.tar.gz 2721322 BLAKE2B 
df50dd0a34db96dd57147ddc399d4a30751b1bb4922dc1b8b3c3c1989e810937dc8345f92128e8a606b1edc04fde4b930a424ab8344818c9899c8fe496793a77
 SHA512 
dee6684f68173784d098931554c839a30e129b89f980cd9704f818c44eb7023199bd3682e4b342091fa3e0ce577ec576d34046477bdd1d7fc58ca5dd2ba947a3
 DIST QScintilla_gpl-2.10.8.tar.gz 2736054 BLAKE2B 
4bc7a2bc1974f8e10a96b7716a8e35d4854e9eeb8040734f99b796bddd9679ee2539f6517743689f9d7deff9ce523cdbb2f77ccd65eaadfc947dcc7a1337d918
 SHA512 
c0a216737dbda6bc390225196b37a43e4884c9cd67e6e81fc1b1b952683fe88dbfe7caf3c66d94a378f37502e1f08cbdf788426248e73f5f66ec65982b7652b5

diff --git a/dev-python/qscintilla-python/qscintilla-python-2.10.4.ebuild 
b/dev-python/qscintilla-python/qscintilla-python-2.10.4.ebuild
deleted file mode 100644
index dbc23b01d91..000
--- a/dev-python/qscintilla-python/qscintilla-python-2.10.4.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit python-r1 qmake-utils
-
-MY_P=QScintilla_gpl-${PV/_pre/.dev}
-
-DESCRIPTION="Python bindings for QScintilla"
-HOMEPAGE="https://www.riverbankcomputing.com/software/qscintilla/intro;
-SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-IUSE="debug"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="
-   ${PYTHON_DEPS}
-   >=dev-python/sip-4.19:=[${PYTHON_USEDEP}]
-   dev-python/PyQt5[gui,printsupport,widgets,${PYTHON_USEDEP}]
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qtwidgets:5
-   ~x11-libs/qscintilla-${PV}:=
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}/Python
-
-src_configure() {
-   configuration() {
-   # Fix out-of-source build and installation of .sip files
-   ln -s "${S}"/sip || die
-
-   local myconf=(
-   "${PYTHON}"
-   "${S}"/configure.py
-   --pyqt=PyQt5
-   --qmake="$(qt5_get_bindir)"/qmake
-   --sip-incdir="$(python_get_includedir)"
-   $(usex debug '--debug --trace' '')
-   --verbose
-   )
-   echo "${myconf[@]}"
-   "${myconf[@]}" || die
-
-   # Run eqmake to respect toolchain, build flags, and prevent 
stripping
-   eqmake5 -recursive
-   }
-   python_foreach_impl run_in_build_dir configuration
-}
-
-src_compile() {
-   python_foreach_impl run_in_build_dir default
-}
-
-src_install() {
-   installation() {
-   emake INSTALL_ROOT="${D}" install
-   python_optimize
-   }
-   python_foreach_impl run_in_build_dir installation
-}



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

2018-12-31 Thread Davide Pesavento
commit: 742e7e6eabdfa263d6c1024004e7625912e65092
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon Dec 31 23:43:18 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon Dec 31 23:44:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=742e7e6e

x11-libs/qscintilla: remove 2.10.4

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Davide Pesavento  gentoo.org>

 x11-libs/qscintilla/Manifest |  1 -
 x11-libs/qscintilla/qscintilla-2.10.4.ebuild | 77 
 2 files changed, 78 deletions(-)

diff --git a/x11-libs/qscintilla/Manifest b/x11-libs/qscintilla/Manifest
index 692c9be04f5..a3b924ad27c 100644
--- a/x11-libs/qscintilla/Manifest
+++ b/x11-libs/qscintilla/Manifest
@@ -1,2 +1 @@
-DIST QScintilla_gpl-2.10.4.tar.gz 2721322 BLAKE2B 
df50dd0a34db96dd57147ddc399d4a30751b1bb4922dc1b8b3c3c1989e810937dc8345f92128e8a606b1edc04fde4b930a424ab8344818c9899c8fe496793a77
 SHA512 
dee6684f68173784d098931554c839a30e129b89f980cd9704f818c44eb7023199bd3682e4b342091fa3e0ce577ec576d34046477bdd1d7fc58ca5dd2ba947a3
 DIST QScintilla_gpl-2.10.8.tar.gz 2736054 BLAKE2B 
4bc7a2bc1974f8e10a96b7716a8e35d4854e9eeb8040734f99b796bddd9679ee2539f6517743689f9d7deff9ce523cdbb2f77ccd65eaadfc947dcc7a1337d918
 SHA512 
c0a216737dbda6bc390225196b37a43e4884c9cd67e6e81fc1b1b952683fe88dbfe7caf3c66d94a378f37502e1f08cbdf788426248e73f5f66ec65982b7652b5

diff --git a/x11-libs/qscintilla/qscintilla-2.10.4.ebuild 
b/x11-libs/qscintilla/qscintilla-2.10.4.ebuild
deleted file mode 100644
index 087f92e548d..000
--- a/x11-libs/qscintilla/qscintilla-2.10.4.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic qmake-utils
-
-MY_P=QScintilla_gpl-${PV/_pre/.dev}
-
-DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class"
-HOMEPAGE="https://www.riverbankcomputing.com/software/qscintilla/intro;
-SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/13"
-KEYWORDS="amd64 ~arm ppc ~ppc64 x86"
-IUSE="designer doc"
-
-DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qtwidgets:5
-   designer? ( dev-qt/designer:5 )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
-   default
-
-   # Sub-slot sanity check
-   local subslot=${SLOT#*/}
-   local version=$(sed -nre 's:.*VERSION\s*=\s*([0-9\.]+):\1:p' 
"${S}"/Qt4Qt5/qscintilla.pro)
-   local major=${version%%.*}
-   if [[ ${subslot} != ${major} ]]; then
-   eerror
-   eerror "Ebuild sub-slot (${subslot}) does not match QScintilla 
major version (${major})"
-   eerror "Please update SLOT variable as follows:"
-   eerror "SLOT=\"${SLOT%%/*}/${major}\""
-   eerror
-   die "sub-slot sanity check failed"
-   fi
-}
-
-qsci_run_in() {
-   pushd "$1" >/dev/null || die
-   shift || die
-   "$@" || die
-   popd >/dev/null || die
-}
-
-src_configure() {
-   if use designer; then
-   # prevent building against system version (bug 466120)
-   append-cxxflags -I../Qt4Qt5
-   append-ldflags -L../Qt4Qt5
-   fi
-
-   qsci_run_in Qt4Qt5 eqmake5
-   use designer && qsci_run_in designer-Qt4Qt5 eqmake5
-}
-
-src_compile() {
-   qsci_run_in Qt4Qt5 emake
-   use designer && qsci_run_in designer-Qt4Qt5 emake
-}
-
-src_install() {
-   qsci_run_in Qt4Qt5 emake INSTALL_ROOT="${D}" install
-   use designer && qsci_run_in designer-Qt4Qt5 emake INSTALL_ROOT="${D}" 
install
-
-   DOCS=( ChangeLog NEWS )
-   use doc && HTML_DOCS=( doc/html-Qt4Qt5/. )
-   einstalldocs
-}



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

2018-12-31 Thread Andreas Sturmlechner
commit: a3a114d11530dc0001b601e99eb11b4ee584d1db
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 23:32:17 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 23:32:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3a114d1

net-analyzer/openvas-cli: EAPI-7 bump

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

 net-analyzer/openvas-cli/openvas-cli-1.4.3.ebuild | 19 ++-
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/net-analyzer/openvas-cli/openvas-cli-1.4.3.ebuild 
b/net-analyzer/openvas-cli/openvas-cli-1.4.3.ebuild
index 726bf0767d7..4d74bab6503 100644
--- a/net-analyzer/openvas-cli/openvas-cli-1.4.3.ebuild
+++ b/net-analyzer/openvas-cli/openvas-cli-1.4.3.ebuild
@@ -1,25 +1,26 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-inherit cmake-utils
+EAPI=7
 
 DL_ID=2209
+inherit cmake-utils
 
 DESCRIPTION="A remote security scanner for Linux (OpenVAS-cli)"
 HOMEPAGE="http://www.openvas.org/;
 
SRC_URI="http://wald.intevation.org/frs/download.php/${DL_ID}/${P/_beta/+beta}.tar.gz;
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS=" ~amd64 ~arm ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
 IUSE=""
 
-RDEPEND="
+DEPEND="
>=net-analyzer/openvas-libraries-8.0.4
-   !net-analyzer/openvas-client"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
+"
+RDEPEND="${DEPEND}
+   !net-analyzer/openvas-client
+"
+BDEPEND="virtual/pkgconfig"
 
 S="${WORKDIR}"/${P/_beta/+beta}
 



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

2018-12-31 Thread Andreas Sturmlechner
commit: 6ea3585e5940025b64c872bbef791f758204c461
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 23:39:31 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 23:39:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ea3585e

net-analyzer/openvas-manager: EAPI-7 bump

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

 .../openvas-manager-6.0.6-r2.ebuild| 34 --
 1 file changed, 18 insertions(+), 16 deletions(-)

diff --git a/net-analyzer/openvas-manager/openvas-manager-6.0.6-r2.ebuild 
b/net-analyzer/openvas-manager/openvas-manager-6.0.6-r2.ebuild
index d852593f565..64a15155311 100644
--- a/net-analyzer/openvas-manager/openvas-manager-6.0.6-r2.ebuild
+++ b/net-analyzer/openvas-manager/openvas-manager-6.0.6-r2.ebuild
@@ -1,13 +1,11 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-inherit cmake-utils systemd
-
-MY_PN=openvasmd
+EAPI=7
 
 DL_ID=2195
+MY_PN=openvasmd
+inherit cmake-utils systemd
 
 DESCRIPTION="A remote security scanner for Linux (openvas-manager)"
 HOMEPAGE="http://www.openvas.org/;
@@ -15,35 +13,39 @@ 
SRC_URI="http://wald.intevation.org/frs/download.php/${DL_ID}/${P/_beta/+beta}.t
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS=" ~amd64 ~arm ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
 IUSE=""
 
-RDEPEND="
-   >=net-analyzer/openvas-libraries-8.0.5
-   >=dev-db/sqlite-3
+DEPEND="
dev-db/redis
-   !net-analyzer/openvas-administrator"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
+   >=dev-db/sqlite-3
+   >=net-analyzer/openvas-libraries-8.0.5
+"
+RDEPEND="${DEPEND}
+   !net-analyzer/openvas-administrator
+"
+BDEPEND="
+   virtual/pkgconfig
+"
 
 S="${WORKDIR}"/${P}
 
 PATCHES=(
"${FILESDIR}"/${PN}-6.0.1-bsdsource.patch
-   )
+)
 
 src_prepare() {
+   cmake-utils_src_prepare
sed \
-e '/^install.*OPENVAS_CACHE_DIR.*/d' \
-i CMakeLists.txt || die
-   cmake-utils_src_prepare
 }
 
 src_configure() {
local mycmakeargs=(
-DLOCALSTATEDIR="${EPREFIX}/var"
-DSYSCONFDIR="${EPREFIX}/etc"
-   )
+   )
cmake-utils_src_configure
 }
 



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

2018-12-31 Thread Andreas Sturmlechner
commit: 6a66475292c5b70e8e308b6fba4024d1e9a79414
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 23:43:06 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 23:43:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a664752

net-analyzer/openvas-scanner: EAPI-7 bump

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

 .../openvas-scanner-5.0.4-r1.ebuild| 28 --
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/net-analyzer/openvas-scanner/openvas-scanner-5.0.4-r1.ebuild 
b/net-analyzer/openvas-scanner/openvas-scanner-5.0.4-r1.ebuild
index 4d550d82f4f..ac7d2ea314e 100644
--- a/net-analyzer/openvas-scanner/openvas-scanner-5.0.4-r1.ebuild
+++ b/net-analyzer/openvas-scanner/openvas-scanner-5.0.4-r1.ebuild
@@ -1,13 +1,11 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-inherit cmake-utils systemd
-
-MY_PN=openvassd
+EAPI=7
 
 DL_ID=2129
+MY_PN=openvassd
+inherit cmake-utils systemd
 
 DESCRIPTION="A remote security scanner for Linux (OpenVAS-scanner)"
 HOMEPAGE="http://www.openvas.org/;
@@ -15,18 +13,22 @@ 
SRC_URI="http://wald.intevation.org/frs/download.php/${DL_ID}/${P/_beta/+beta}.t
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS=" ~amd64 ~arm ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
 IUSE=""
 
-RDEPEND="
+DEPEND="
app-crypt/gpgme
>=dev-libs/glib-2.16:2
dev-libs/libgcrypt:0
>=net-analyzer/openvas-libraries-8.0.2
+"
+RDEPEND="${DEPEND}
!net-analyzer/openvas-plugins
-   !net-analyzer/openvas-server"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
+   !net-analyzer/openvas-server
+"
+BDEPEND="
+   virtual/pkgconfig
+"
 
 S="${WORKDIR}"/${P/_beta/+beta}
 
@@ -34,13 +36,13 @@ PATCHES=(
"${FILESDIR}"/${PN}-4.0.3-mkcertclient.patch
"${FILESDIR}"/${PN}-4.0.3-rulesdir.patch
"${FILESDIR}"/${PN}-4.0.3-run.patch
-   )
+)
 
 src_prepare() {
+   cmake-utils_src_prepare
sed \
-e '/^install.*OPENVAS_CACHE_DIR.*/d' \
-i CMakeLists.txt || die
-   cmake-utils_src_prepare
 }
 
 src_configure() {



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

2018-12-31 Thread Andreas Sturmlechner
commit: 906297c4d4e9a655cea3bbe54cadbbee5661f3f9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 23:35:43 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 23:35:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=906297c4

net-analyzer/openvas-libraries: EAPI-7 bump

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

 .../openvas-libraries-8.0.5.ebuild | 26 --
 1 file changed, 14 insertions(+), 12 deletions(-)

diff --git a/net-analyzer/openvas-libraries/openvas-libraries-8.0.5.ebuild 
b/net-analyzer/openvas-libraries/openvas-libraries-8.0.5.ebuild
index e279652477f..988e909151b 100644
--- a/net-analyzer/openvas-libraries/openvas-libraries-8.0.5.ebuild
+++ b/net-analyzer/openvas-libraries/openvas-libraries-8.0.5.ebuild
@@ -1,11 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-inherit cmake-utils
+EAPI=7
 
 DL_ID=2191
+inherit cmake-utils
 
 DESCRIPTION="A remote security scanner for Linux (openvas-libraries)"
 HOMEPAGE="http://www.openvas.org/;
@@ -16,23 +15,26 @@ LICENSE="GPL-2"
 KEYWORDS="~amd64 ~arm ~ppc ~x86"
 IUSE="ldap"
 
-RDEPEND="
+DEPEND="
app-crypt/gpgme
>=dev-libs/glib-2.16
>=dev-libs/hiredis-0.10.1
dev-libs/libgcrypt:0
dev-libs/libksba
-   !net-analyzer/openvas-libnasl
+   net-analyzer/net-snmp
net-libs/gnutls
net-libs/libpcap
>=net-libs/libssh-0.5.0
-   net-analyzer/net-snmp
-   ldap? ( net-nds/openldap )"
-DEPEND="${RDEPEND}
+   ldap? ( net-nds/openldap )
+"
+RDEPEND="${DEPEND}
+   !net-analyzer/openvas-libnasl
+"
+BDEPEND="
sys-devel/bison
sys-devel/flex
virtual/pkgconfig
-   "
+"
 
 S="${WORKDIR}"/${P}
 
@@ -42,13 +44,13 @@ PATCHES=(
"${FILESDIR}"/${PN}-7.0.4-libssh.patch
"${FILESDIR}"/${PN}-8.0.1-include.patch
"${FILESDIR}"/${P}-underlinking.patch
-   )
+)
 
 src_prepare() {
+   cmake-utils_src_prepare
sed \
-e '/^install.*OPENVAS_CACHE_DIR.*/d' \
-i CMakeLists.txt || die
-   cmake-utils_src_prepare
 }
 
 src_configure() {



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

2018-12-31 Thread Andreas Sturmlechner
commit: 114cb22f188c804173992ad8ef58e81c55ca2af5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 23:15:03 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 23:15:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=114cb22f

sci-physics/sassena: Indendation and sorting

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

 sci-physics/sassena/sassena-1.4.2.ebuild | 17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/sci-physics/sassena/sassena-1.4.2.ebuild 
b/sci-physics/sassena/sassena-1.4.2.ebuild
index 4546a609031..10820a9735f 100644
--- a/sci-physics/sassena/sassena-1.4.2.ebuild
+++ b/sci-physics/sassena/sassena-1.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -15,13 +15,14 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux"
 IUSE=""
 
 DEPEND="
-   dev-libs/boost[mpi]
-   sci-libs/hdf5[mpi]
-   dev-libs/libxml2
-   sci-libs/fftw:3.0
-   virtual/mpi
-   virtual/blas
-   virtual/lapack"
+   dev-libs/boost[mpi]
+   dev-libs/libxml2
+   sci-libs/fftw:3.0
+   sci-libs/hdf5[mpi]
+   virtual/blas
+   virtual/lapack
+   virtual/mpi
+"
 RDEPEND="${DEPEND}"
 
 PATCHES=(



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

2018-12-31 Thread Andreas Sturmlechner
commit: eb16b4b0afd615ec786c475884cceb24fd0796c4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 23:20:04 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 23:20:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb16b4b0

sci-physics/sassena: HOMEPAGE is dead

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

 sci-physics/sassena/sassena-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/sassena/sassena-1.4.2.ebuild 
b/sci-physics/sassena/sassena-1.4.2.ebuild
index 10820a9735f..737072f2a65 100644
--- a/sci-physics/sassena/sassena-1.4.2.ebuild
+++ b/sci-physics/sassena/sassena-1.4.2.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 inherit cmake-utils
 
 DESCRIPTION="Software for Calculating Scattering Diagrams on Massively 
Parallel Computers"
-HOMEPAGE="http://www.sassena.org;
+HOMEPAGE="https://github.com/benlabs/sassena;
 SRC_URI="https://github.com/benlabs/sassena/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-2"



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

2018-12-31 Thread Andreas Sturmlechner
commit: 4077a99be4eab9c3645d36983531b77bc3a14a30
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 23:21:16 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 23:21:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4077a99b

sci-physics/sassena: EAPI-7 bump

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

 sci-physics/sassena/sassena-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/sassena/sassena-1.4.2.ebuild 
b/sci-physics/sassena/sassena-1.4.2.ebuild
index 737072f2a65..8931b9bc422 100644
--- a/sci-physics/sassena/sassena-1.4.2.ebuild
+++ b/sci-physics/sassena/sassena-1.4.2.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 inherit cmake-utils
 



[gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-cjson/

2018-12-31 Thread Andreas Sturmlechner
commit: 896ac22e0b767cd3464a9176051b782a49c35aa3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 23:09:29 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 23:09:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896ac22e

dev-lua/lua-cjson: EAPI-7 bump

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

 dev-lua/lua-cjson/lua-cjson-2.1.0.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-lua/lua-cjson/lua-cjson-2.1.0.ebuild 
b/dev-lua/lua-cjson/lua-cjson-2.1.0.ebuild
index 1dd13c83607..7070319a390 100644
--- a/dev-lua/lua-cjson/lua-cjson-2.1.0.ebuild
+++ b/dev-lua/lua-cjson/lua-cjson-2.1.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 inherit cmake-utils
 
@@ -15,8 +15,8 @@ KEYWORDS="~amd64 ~x86"
 IUSE="doc test"
 
 RDEPEND=">=dev-lang/lua-5.1:0"
-DEPEND="${RDEPEND}
-   test? ( dev-lang/perl )"
+DEPEND="${RDEPEND}"
+BDEPEND="test? ( dev-lang/perl )"
 
 DOCS=( NEWS THANKS )
 
@@ -29,6 +29,6 @@ src_test() {
 }
 
 src_install() {
+   use doc && local HTML_DOCS=( manual.html performance.html )
cmake-utils_src_install
-   use doc && dohtml manual.html performance.html
 }



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

2018-12-31 Thread Andreas Sturmlechner
commit: 14759a5720c3760c108d4e24a0e1a650d5927a53
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 22:48:17 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 22:53:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14759a57

app-emulation/aqemu: EAPI-7 bump

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

 app-emulation/aqemu/aqemu-0.9.2.ebuild | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/app-emulation/aqemu/aqemu-0.9.2.ebuild 
b/app-emulation/aqemu/aqemu-0.9.2.ebuild
index dc50e71ce8f..85102613981 100644
--- a/app-emulation/aqemu/aqemu-0.9.2.ebuild
+++ b/app-emulation/aqemu/aqemu-0.9.2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 inherit cmake-utils
 
@@ -14,16 +14,16 @@ SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE="vnc"
 
-DEPEND="${RDEPEND}"
 RDEPEND="app-emulation/qemu
-   vnc? ( net-libs/libvncserver )
dev-qt/qtcore:5
-   dev-qt/qtwidgets:5
dev-qt/qtnetwork:5
+   dev-qt/qtprintsupport:5
dev-qt/qttest:5
-   dev-qt/qtprintsupport:5"
+   dev-qt/qtwidgets:5
+   vnc? ( net-libs/libvncserver )"
+DEPEND="${RDEPEND}"
 
-DOCS="AUTHORS CHANGELOG README TODO"
+DOCS=( AUTHORS CHANGELOG README TODO )
 PATCHES=( "${FILESDIR}/${PN}-0.9.2-qtbindir.patch" )
 
 src_configure() {



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

2018-12-31 Thread Davide Pesavento
commit: 22056c9e81d4d8ad4358228fafc03b8bd876915d
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon Dec 31 22:27:08 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon Dec 31 22:27:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22056c9e

dev-python/qscintilla-python: amd64 stable (bug #673690)

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Davide Pesavento  gentoo.org>

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

diff --git a/dev-python/qscintilla-python/qscintilla-python-2.10.8.ebuild 
b/dev-python/qscintilla-python/qscintilla-python-2.10.8.ebuild
index ac68fb127b2..a03ddc26eb0 100644
--- a/dev-python/qscintilla-python/qscintilla-python-2.10.8.ebuild
+++ b/dev-python/qscintilla-python/qscintilla-python-2.10.8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 x86"
+KEYWORDS="amd64 ~ppc64 x86"
 IUSE="debug"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2018-12-31 Thread Davide Pesavento
commit: c24b7d7de9df570c445b77a4b2728ed33e9854bd
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon Dec 31 22:26:02 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon Dec 31 22:26:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c24b7d7d

x11-libs/qscintilla: amd64 stable (bug #673690)

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Davide Pesavento  gentoo.org>

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

diff --git a/x11-libs/qscintilla/qscintilla-2.10.8.ebuild 
b/x11-libs/qscintilla/qscintilla-2.10.8.ebuild
index d3291e19719..ee5c0e80625 100644
--- a/x11-libs/qscintilla/qscintilla-2.10.8.ebuild
+++ b/x11-libs/qscintilla/qscintilla-2.10.8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/13"
-KEYWORDS="~amd64 ~arm ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ppc ~ppc64 x86"
 IUSE="designer doc"
 
 DEPEND="



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

2018-12-31 Thread Davide Pesavento
commit: 71c72f610f66551b7678c32d319e302ad0457907
Author: Davide Pesavento  gentoo  org>
AuthorDate: Mon Dec 31 22:22:23 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Mon Dec 31 22:22:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c72f61

dev-python/sip: amd64 stable (bug #673690)

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Davide Pesavento  gentoo.org>

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

diff --git a/dev-python/sip/sip-4.19.13.ebuild 
b/dev-python/sip/sip-4.19.13.ebuild
index 4dc04120bc7..71c1d16da31 100644
--- a/dev-python/sip/sip-4.19.13.ebuild
+++ b/dev-python/sip/sip-4.19.13.ebuild
@@ -24,7 +24,7 @@ fi
 # Sub-slot based on SIP_API_MAJOR_NR from siplib/sip.h
 SLOT="0/12"
 LICENSE="|| ( GPL-2 GPL-3 SIP )"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="debug doc"
 
 RDEPEND="${PYTHON_DEPS}"



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

2018-12-31 Thread Andreas Sturmlechner
commit: 2e4f6defe86b3137aca337871feb4181fd1239cc
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 22:08:02 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 22:12:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e4f6def

profiles: Mask www-client/qupzilla for removal

Bug: https://bugs.gentoo.org/662792
Signed-off-by: Andreas Sturmlechner  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 13e824b5320..a6280a5844f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Andreas Sturmlechner  (31 Dec 2018)
+# Superseded by www-client/falkon. Masked for removal in 30 days.
+www-client/qupzilla
+
 # Andreas Sturmlechner  (31 Dec 2018)
 # Package outdated for years, build errors, unable to trade with.
 # Bugs 544800, 592946, 610736. Masked for removal in 30 days.



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

2018-12-31 Thread Alon Bar-Lev
commit: 814d55f0a901497d5058978f1518b1acc060a163
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Mon Dec 31 22:04:19 2018 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Mon Dec 31 22:08:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=814d55f0

app-crypt/tpm2-tss: prune libtool files

Signed-off-by: Alon Bar-Lev  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-crypt/tpm2-tss/tpm2-tss-2.1.0.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/app-crypt/tpm2-tss/tpm2-tss-2.1.0.ebuild 
b/app-crypt/tpm2-tss/tpm2-tss-2.1.0.ebuild
index 1ea7813e854..fc172e0e91c 100644
--- a/app-crypt/tpm2-tss/tpm2-tss-2.1.0.ebuild
+++ b/app-crypt/tpm2-tss/tpm2-tss-2.1.0.ebuild
@@ -54,3 +54,8 @@ src_configure() {
--with-udevrulesdir="$(get_udevdir)/rules.d" \
--with-udevrulesprefix=60-
 }
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: app-crypt/tpm2-abrmd/, app-crypt/tpm2-abrmd/files/

2018-12-31 Thread Alon Bar-Lev
commit: 7a8bbaf6fbcd80d4ed98e6fa85ca47a29e163526
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Mon Dec 31 22:02:18 2018 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Mon Dec 31 22:08:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a8bbaf6

app-crypt/tpm2-abrmd: initial add

Signed-off-by: Alon Bar-Lev  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-crypt/tpm2-abrmd/Manifest  |  1 +
 .../tpm2-abrmd/files/tpm2-abrmd-2.0.3-build.patch  | 32 +
 app-crypt/tpm2-abrmd/files/tpm2-abrmd.confd|  1 +
 app-crypt/tpm2-abrmd/files/tpm2-abrmd.initd| 15 ++
 app-crypt/tpm2-abrmd/metadata.xml  | 11 +
 app-crypt/tpm2-abrmd/tpm2-abrmd-2.0.3.ebuild   | 55 ++
 6 files changed, 115 insertions(+)

diff --git a/app-crypt/tpm2-abrmd/Manifest b/app-crypt/tpm2-abrmd/Manifest
new file mode 100644
index 000..cee50e66439
--- /dev/null
+++ b/app-crypt/tpm2-abrmd/Manifest
@@ -0,0 +1 @@
+DIST tpm2-abrmd-2.0.3.tar.gz 563029 BLAKE2B 
89c20066b05818825a2addacaf123568ec095d021e9811b78d11c336af9a9e97fe280a08b4478331663efd1da9b2db54207ca53728398aefe4407bfe4b0c7efd
 SHA512 
70b431b9d09e1c1db819aabf6ca8e40a7553573339f43a6c872ad685b7822e5046bd8ede25dcd0608ce2d8fa32257f6c1dd7f234aa7d6a447ac795625d4e0fac

diff --git a/app-crypt/tpm2-abrmd/files/tpm2-abrmd-2.0.3-build.patch 
b/app-crypt/tpm2-abrmd/files/tpm2-abrmd-2.0.3-build.patch
new file mode 100644
index 000..72e823405e9
--- /dev/null
+++ b/app-crypt/tpm2-abrmd/files/tpm2-abrmd-2.0.3-build.patch
@@ -0,0 +1,32 @@
+diff --git a/configure.ac b/configure.ac
+index ecbc3bb..5973ff5 100644
+--- a/configure.ac
 b/configure.ac
+@@ -135,7 +135,6 @@ AM_CONDITIONAL([ENABLE_INTEGRATION],[test 
"x$enable_integration" = "xyes"])
+ #   these macros are defined in m4/flags.m4
+ AX_ADD_COMPILER_FLAG([-Wall])
+ AX_ADD_COMPILER_FLAG([-Wextra])
+-AX_ADD_COMPILER_FLAG([-Werror])
+ AX_ADD_COMPILER_FLAG([-std=gnu99])
+ AX_ADD_COMPILER_FLAG([-Wformat])
+ AX_ADD_COMPILER_FLAG([-Wformat-security])
+@@ -143,19 +142,9 @@ AX_ADD_COMPILER_FLAG([-Wno-missing-braces])
+ # work around for Glib usage of function pointers type casting
+ #   https://bugzilla.gnome.org/show_bug.cgi?id=793272
+ AX_ADD_COMPILER_FLAG([-Wno-cast-function-type])
+-AX_ADD_COMPILER_FLAG([-fdata-sections])
+-AX_ADD_COMPILER_FLAG([-ffunction-sections])
+-AX_ADD_COMPILER_FLAG([-fstack-protector-all])
+-AX_ADD_COMPILER_FLAG([-fpic])
+-AX_ADD_COMPILER_FLAG([-fPIC])
+ AX_ADD_PREPROC_FLAG([-D_GNU_SOURCE])
+ AX_ADD_PREPROC_FLAG([-U_FORTIFY_SOURCE])
+ AX_ADD_PREPROC_FLAG([-D_FORTIFY_SOURCE=2])
+-AX_ADD_LINK_FLAG([-Wl,--gc-sections])
+-AX_ADD_LINK_FLAG([-Wl,--no-undefined])
+-AX_ADD_LINK_FLAG([-Wl,-z,noexecstack])
+-AX_ADD_LINK_FLAG([-Wl,-z,now])
+-AX_ADD_LINK_FLAG([-Wl,-z,relro])
+ 
+ AC_SUBST([PATH])
+ 

diff --git a/app-crypt/tpm2-abrmd/files/tpm2-abrmd.confd 
b/app-crypt/tpm2-abrmd/files/tpm2-abrmd.confd
new file mode 100644
index 000..619e3dfde77
--- /dev/null
+++ b/app-crypt/tpm2-abrmd/files/tpm2-abrmd.confd
@@ -0,0 +1 @@
+TPM2_ABRMD_ARGS=

diff --git a/app-crypt/tpm2-abrmd/files/tpm2-abrmd.initd 
b/app-crypt/tpm2-abrmd/files/tpm2-abrmd.initd
new file mode 100644
index 000..0272921dcbd
--- /dev/null
+++ b/app-crypt/tpm2-abrmd/files/tpm2-abrmd.initd
@@ -0,0 +1,15 @@
+#!/sbin/openrc-run
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License, v2 or later
+
+description="TPM2 Access Broker & Resource Manager"
+command="/usr/sbin/tpm2-abrmd"
+command_args="${TPM2_ABRMD_ARGS} --logger=syslog"
+command_background=1
+command_user="tss:tss"
+pidfile="/var/run/${RC_SVCNAME}.pid"
+
+depend() {
+   use logger
+   after coldplug
+}

diff --git a/app-crypt/tpm2-abrmd/metadata.xml 
b/app-crypt/tpm2-abrmd/metadata.xml
new file mode 100644
index 000..81a49e4dc59
--- /dev/null
+++ b/app-crypt/tpm2-abrmd/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   cry...@gentoo.org
+   Crypto
+   
+   
+   tpm2-software/tpm2-abrmd
+   
+

diff --git a/app-crypt/tpm2-abrmd/tpm2-abrmd-2.0.3.ebuild 
b/app-crypt/tpm2-abrmd/tpm2-abrmd-2.0.3.ebuild
new file mode 100644
index 000..8a2bb55ac65
--- /dev/null
+++ b/app-crypt/tpm2-abrmd/tpm2-abrmd-2.0.3.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools systemd user
+
+DESCRIPTION="TPM2 Access Broker & Resource Manager"
+HOMEPAGE="https://github.com/tpm2-software/tpm2-abrmd;
+SRC_URI="https://github.com/tpm2-software/${PN}/releases/download/${PV}/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="static-libs test"
+
+RDEPEND="sys-apps/dbus:=
+   dev-libs/glib:=
+   app-crypt/tpm2-tss:="
+DEPEND="${RDEPEND}
+   test? ( dev-util/cmocka )"

[gentoo-commits] repo/gentoo:master commit in: net-firewall/firehol/, net-firewall/firehol/files/

2018-12-31 Thread Alon Bar-Lev
commit: 6dd45ced78a8a3cd07885af21def407ab54d19f7
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Mon Dec 31 22:07:49 2018 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Mon Dec 31 22:08:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dd45ced

net-firewall/firehol: rename initd/confd files

Signed-off-by: Alon Bar-Lev  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-firewall/firehol/files/{firehol.conf.d => firehol.confd} |  0
 net-firewall/firehol/files/{firehol.initrd => firehol.initd} |  2 +-
 net-firewall/firehol/files/{fireqos.conf.d => fireqos.confd} |  0
 net-firewall/firehol/files/{fireqos.initrd => fireqos.initd} |  2 +-
 net-firewall/firehol/firehol-3.1.3-r1.ebuild | 10 +-
 net-firewall/firehol/firehol-3.1.3.ebuild| 10 +-
 net-firewall/firehol/firehol-3.1.4.ebuild|  8 
 net-firewall/firehol/firehol-3.1.6.ebuild|  8 
 8 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/net-firewall/firehol/files/firehol.conf.d 
b/net-firewall/firehol/files/firehol.confd
similarity index 100%
rename from net-firewall/firehol/files/firehol.conf.d
rename to net-firewall/firehol/files/firehol.confd

diff --git a/net-firewall/firehol/files/firehol.initrd 
b/net-firewall/firehol/files/firehol.initd
similarity index 96%
rename from net-firewall/firehol/files/firehol.initrd
rename to net-firewall/firehol/files/firehol.initd
index 05fc3a2f11c..719f336c46f 100644
--- a/net-firewall/firehol/files/firehol.initrd
+++ b/net-firewall/firehol/files/firehol.initd
@@ -1,5 +1,5 @@
 #!/sbin/openrc-run
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 extra_commands="save panic try"

diff --git a/net-firewall/firehol/files/fireqos.conf.d 
b/net-firewall/firehol/files/fireqos.confd
similarity index 100%
rename from net-firewall/firehol/files/fireqos.conf.d
rename to net-firewall/firehol/files/fireqos.confd

diff --git a/net-firewall/firehol/files/fireqos.initrd 
b/net-firewall/firehol/files/fireqos.initd
similarity index 95%
rename from net-firewall/firehol/files/fireqos.initrd
rename to net-firewall/firehol/files/fireqos.initd
index 628cc9d3c4a..de94ce9840e 100644
--- a/net-firewall/firehol/files/fireqos.initrd
+++ b/net-firewall/firehol/files/fireqos.initd
@@ -1,5 +1,5 @@
 #!/sbin/openrc-run
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 depend() {

diff --git a/net-firewall/firehol/firehol-3.1.3-r1.ebuild 
b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
index 866cded9cb6..db92d61855d 100644
--- a/net-firewall/firehol/firehol-3.1.3-r1.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -57,8 +57,8 @@ src_configure() {
 src_install() {
default
 
-   newconfd "${FILESDIR}"/firehol.conf.d firehol
-   newinitd "${FILESDIR}"/firehol.initrd firehol
-   newconfd "${FILESDIR}"/fireqos.conf.d fireqos
-   newinitd "${FILESDIR}"/fireqos.initrd fireqos
+   newconfd "${FILESDIR}"/firehol.confd firehol
+   newinitd "${FILESDIR}"/firehol.initd firehol
+   newconfd "${FILESDIR}"/fireqos.confd fireqos
+   newinitd "${FILESDIR}"/fireqos.initd fireqos
 }

diff --git a/net-firewall/firehol/firehol-3.1.3.ebuild 
b/net-firewall/firehol/firehol-3.1.3.ebuild
index b153a88c319..11a79fd5b62 100644
--- a/net-firewall/firehol/firehol-3.1.3.ebuild
+++ b/net-firewall/firehol/firehol-3.1.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -54,8 +54,8 @@ src_configure() {
 src_install() {
default
 
-   newconfd "${FILESDIR}"/firehol.conf.d firehol
-   newinitd "${FILESDIR}"/firehol.initrd firehol
-   newconfd "${FILESDIR}"/fireqos.conf.d fireqos
-   newinitd "${FILESDIR}"/fireqos.initrd fireqos
+   newconfd "${FILESDIR}"/firehol.confd firehol
+   newinitd "${FILESDIR}"/firehol.initd firehol
+   newconfd "${FILESDIR}"/fireqos.confd fireqos
+   newinitd "${FILESDIR}"/fireqos.initd fireqos
 }

diff --git a/net-firewall/firehol/firehol-3.1.4.ebuild 
b/net-firewall/firehol/firehol-3.1.4.ebuild
index 67745a1203c..d9c5fb2ca8d 100644
--- a/net-firewall/firehol/firehol-3.1.4.ebuild
+++ b/net-firewall/firehol/firehol-3.1.4.ebuild
@@ -57,8 +57,8 @@ src_configure() {
 src_install() {
default
 
-   newconfd "${FILESDIR}"/firehol.conf.d firehol
-   newinitd "${FILESDIR}"/firehol.initrd firehol
-   newconfd "${FILESDIR}"/fireqos.conf.d fireqos
-   newinitd "${FILESDIR}"/fireqos.initrd 

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

2018-12-31 Thread Andreas Sturmlechner
commit: b110cee0ffef53bdf9491dfef975ce4bc203d3e1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 21:59:41 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 22:01:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b110cee0

profiles: Mask app-office/QtBitcoinTrader for removal

Bug: https://bugs.gentoo.org/610736
Signed-off-by: Andreas Sturmlechner  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 6a3eb9f4e0a..13e824b5320 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Andreas Sturmlechner  (31 Dec 2018)
+# Package outdated for years, build errors, unable to trade with.
+# Bugs 544800, 592946, 610736. Masked for removal in 30 days.
+app-office/QtBitcoinTrader
+
 # Andreas Sturmlechner  (31 Dec 2018)
 # Dead upstream since 2014-02-09, does not build.
 # Bugs 463928, 476890, 623172, 662270. Masked for removal in 30 days.



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

2018-12-31 Thread Mart Raudsepp
commit: 33e0c87a28ce9c90d2f54ec8783b1bb3c76ea7d7
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon Dec 31 21:48:16 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Dec 31 21:49:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33e0c87a

gnome-extra/libgda: fix USE=ldap build on 17.1 profiles

Without passing libdir-name to configure it always uses "lib",
which will fail on systems where /usr/lib is not a symlink to
/usr/lib64, when openldap is installed to lib64, as it is on
17.1 amd64 profiles. Unfortunately openldap still doesn't ship
pkgconfig files, but fortunately there's this configure knob
with which to teach it where openldap is.

Closes: https://bugs.gentoo.org/669728
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/libgda/libgda-5.2.8.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnome-extra/libgda/libgda-5.2.8.ebuild 
b/gnome-extra/libgda/libgda-5.2.8.ebuild
index 0eb06d4b35c..6570bb39df7 100644
--- a/gnome-extra/libgda/libgda-5.2.8.ebuild
+++ b/gnome-extra/libgda/libgda-5.2.8.ebuild
@@ -143,6 +143,7 @@ src_configure() {
"$(use_with java java $JAVA_HOME)" \
$(use_enable json) \
$(use_with ldap) \
+   --with-ldap-libdir-name="$(get_libdir)" \
$(use_with mdb mdb /usr) \
$(use_with mysql mysql /usr) \
$(use_with oci8 oracle) \



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

2018-12-31 Thread Andreas Sturmlechner
commit: 2eb558c301408c9ae890f5b0bb6ab898f097a932
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 21:05:28 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eb558c3

profiles: Mask kde-apps/syndication, lxqt-base/lxqt-common for removal

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 9f11c1d648e..5dd70ea049c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Andreas Sturmlechner  (31 Dec 2018)
+# Masked for removal.
+kde-apps/syndication
+lxqt-base/lxqt-common
+
 # Alon Bar-Lev  (30 Dec 2018)
 # Upstream is dead.
 # Package does not support openssl-1.1, significant change to package.



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

2018-12-31 Thread Andreas Sturmlechner
commit: aba39500b9ed46af9cc565d192ce10c628e9bc67
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 20:16:38 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aba39500

dev-libs/handystats: Drop old

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

 dev-libs/handystats/Manifest |  2 --
 dev-libs/handystats/handystats-1.11.0.ebuild | 21 -
 dev-libs/handystats/handystats-1.11.1.ebuild | 21 -
 3 files changed, 44 deletions(-)

diff --git a/dev-libs/handystats/Manifest b/dev-libs/handystats/Manifest
index 02e8cf2f840..2a3216e1719 100644
--- a/dev-libs/handystats/Manifest
+++ b/dev-libs/handystats/Manifest
@@ -1,3 +1 @@
-DIST handystats-1.11.0.zip 141871 BLAKE2B 
169bbd5d6e2d3cdab8e2054d11c5082303d164818055391557ed651e4c2017df1b35f145ddd4464d70127992e3007b1d1bbd769e70b4d8fa5d0aac57382c12fd
 SHA512 
e6d5fa200c3ca006adc9601c6f200dd7fc4dd57cff45c530990781880536aefdad7eb2fa266df24802f44b9f838ea5ddfd8a60fbeaef4e3b83002fdbd556f4ec
-DIST handystats-1.11.1.zip 142005 BLAKE2B 
aa5a2ec6e5696d41092655d108b80b474536a2a77e4b15a3fdf94ab7a5449a92d9a3d6eff960690555889ed9794a89139806128183c36a7fd9e61fba8b17fc2d
 SHA512 
cfb8cdc7e528ef6bb92ef94099081f77f2407bf85477e7bcc8ef92abc69e8e14a8f1de3d2df26f1a7f8103247a133abb47c5a2771a60b9cf589c292d43ace712
 DIST handystats-1.11.3.zip 142270 BLAKE2B 
1e166bb48c201c38ef856fd5e57ac21bff6c90e172dc3b22fcf60ef377e9a43d7778569dd10236d9e934068d0af9a81956c391c3b4c080b649b41e4573be0c6b
 SHA512 
0ece97c1cea48112514098f9481195ccfa7e5dcd1025c4f0dca5aa8266f783cd9f0c96af17f3942bcf13a7d89e51107a12c44f39ede0fa8d17412a25f89cc331

diff --git a/dev-libs/handystats/handystats-1.11.0.ebuild 
b/dev-libs/handystats/handystats-1.11.0.ebuild
deleted file mode 100644
index 7e1c7fc9246..000
--- a/dev-libs/handystats/handystats-1.11.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-RESTRICT="test"
-inherit cmake-utils
-
-DESCRIPTION="C++ library for collecting user-defined in-process runtime 
statistics"
-HOMEPAGE="https://github.com/shindo/handystats;
-SRC_URI="https://github.com/shindo/${PN}/archive/${PV}.zip -> ${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost"

diff --git a/dev-libs/handystats/handystats-1.11.1.ebuild 
b/dev-libs/handystats/handystats-1.11.1.ebuild
deleted file mode 100644
index 7e1c7fc9246..000
--- a/dev-libs/handystats/handystats-1.11.1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-RESTRICT="test"
-inherit cmake-utils
-
-DESCRIPTION="C++ library for collecting user-defined in-process runtime 
statistics"
-HOMEPAGE="https://github.com/shindo/handystats;
-SRC_URI="https://github.com/shindo/${PN}/archive/${PV}.zip -> ${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${DEPEND}
-   dev-cpp/gtest
-   dev-libs/boost"



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/apbs/files/, sci-chemistry/apbs/

2018-12-31 Thread Andreas Sturmlechner
commit: 23df63ca4ab84f0deee052ac6365c07e4eeff234
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 20:26:22 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23df63ca

sci-chemistry/apbs: EAPI-6 bump

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

 sci-chemistry/apbs/apbs-1.4.1-r2.ebuild  | 32 ++--
 sci-chemistry/apbs/files/apbs-1.4.1-manip.patch  | 18 +--
 sci-chemistry/apbs/files/apbs-1.4.1-python.patch | 38 
 3 files changed, 43 insertions(+), 45 deletions(-)

diff --git a/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild 
b/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild
index 108e43bf904..b3c4f192894 100644
--- a/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild
+++ b/sci-chemistry/apbs/apbs-1.4.1-r2.ebuild
@@ -1,19 +1,17 @@
 # Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
 PYTHON_COMPAT=( python2_7 )
 DISTUTILS_SINGLE_IMPL=true
-
-inherit cmake-utils distutils-r1 flag-o-matic multilib toolchain-funcs
-
-GITHUB_REV="74fcb8676de69ed04ddab8976a8b05a6caaf4d65"
+COMMIT="74fcb8676de69ed04ddab8976a8b05a6caaf4d65"
+inherit cmake-utils distutils-r1 flag-o-matic toolchain-funcs
 
 DESCRIPTION="Evaluation of electrostatic properties of nanoscale biomolecular 
systems"
 HOMEPAGE="https://www.poissonboltzmann.org/apbs/;
 #SRC_URI="mirror://sourceforge/${PN}/${P}-source.tar.gz"
-SRC_URI="https://github.com/Electrostatics/apbs-pdb2pqr/archive/${GITHUB_REV}.zip
 -> ${P}.zip"
+SRC_URI="https://github.com/Electrostatics/apbs-pdb2pqr/archive/${COMMIT}.zip 
-> ${P}.zip"
 
 SLOT="0"
 LICENSE="BSD"
@@ -44,7 +42,7 @@ DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
 "
 
-S="${WORKDIR}"/${PN}-pdb2pqr-${GITHUB_REV}/${PN}
+S="${WORKDIR}"/${PN}-pdb2pqr-${COMMIT}/${PN}
 
 PATCHES=(
"${FILESDIR}"/${P}-multilib.patch
@@ -71,24 +69,24 @@ src_prepare() {
 src_configure() {
local mycmakeargs=(
-DCMAKE_SKIP_RPATH=ON
-   -DTOOLS_PATH="${ED}"/usr
+   -DTOOLS_PATH="${ED%/}"/usr
-DSYS_LIBPATHS="${EPREFIX}"/usr/$(get_libdir)
-DLIBRARY_INSTALL_PATH=$(get_libdir)
-DFETK_PATH="${EPREFIX}"/usr/
-DBUILD_SHARED_LIBS=ON
-DENABLE_QUIT=OFF
-   $(cmake-utils_use_build doc DOC)
-   $(cmake-utils_use_build tools TOOLS)
+   -DBUILD_DOC=$(usex doc)
+   -DBUILD_TOOLS=$(usex tools)
-DENABLE_BEM=OFF
 # ENABLE_BEM: Boundary element method using TABIPB
-   $(cmake-utils_use_enable debug DEBUG)
-   $(cmake-utils_use_enable debug VERBOSE_DEBUG)
-   $(cmake-utils_use_enable fast FAST)
-   $(cmake-utils_use_enable fetk FETK)
-   $(cmake-utils_use_enable mpi MPI)
-   $(cmake-utils_use_enable python PYTHON)
+   -DENABLE_DEBUG=$(usex debug)
+   -DENABLE_VERBOSE_DEBUG=$(usex debug)
+   -DENABLE_FAST=$(usex fast)
+   -DENABLE_FETK=$(usex fetk)
+   -DENABLE_MPI=$(usex mpi)
+   -DENABLE_PYTHON=$(usex python)
 # ENABLE_TINKER: Enable TINKER support
-   $(cmake-utils_use_enable iapbs iAPBS)
+   -DENABLE_iAPBS=$(usex iapbs)
 # MAX_MEMORY: Set the maximum memory (in MB) to be used for a job
)
cmake-utils_src_configure

diff --git a/sci-chemistry/apbs/files/apbs-1.4.1-manip.patch 
b/sci-chemistry/apbs/files/apbs-1.4.1-manip.patch
index 37822339759..090a27d8a5a 100644
--- a/sci-chemistry/apbs/files/apbs-1.4.1-manip.patch
+++ b/sci-chemistry/apbs/files/apbs-1.4.1-manip.patch
@@ -3,10 +3,10 @@
  apbs/tools/mesh/CMakeLists.txt  | 4 ++--
  4 files changed, 5 insertions(+), 9 deletions(-)
 
-diff --git a/apbs/CMakeLists.txt b/apbs/CMakeLists.txt
+diff --git a/CMakeLists.txt b/CMakeLists.txt
 index 8917fc4..5152008 100644
 a/apbs/CMakeLists.txt
-+++ b/apbs/CMakeLists.txt
+--- a/CMakeLists.txt
 b/CMakeLists.txt
 @@ -293,7 +293,7 @@ option(ENABLE_FETK "Enable the finite element solver" OFF)
  
  if(ENABLE_FETK)
@@ -16,10 +16,10 @@ index 8917fc4..5152008 100644
  
  list(APPEND APBS_LIBS "-lstdc++")
  list(APPEND APBS_LIBS "-L${FETK_PATH}/lib")
-diff --git a/apbs/tools/manip/CMakeLists.txt b/apbs/tools/manip/CMakeLists.txt
+diff --git a/tools/manip/CMakeLists.txt b/tools/manip/CMakeLists.txt
 index 937dac7..5768cc5 100644
 a/apbs/tools/manip/CMakeLists.txt
-+++ b/apbs/tools/manip/CMakeLists.txt
+--- a/tools/manip/CMakeLists.txt
 b/tools/manip/CMakeLists.txt
 @@ -4,9 +4,9 @@ set(LIBS "")
  list(APPEND LIBS "apbs_generic")
  list(APPEND LIBS "apbs_mg")
@@ -32,10 +32,10 @@ index 937dac7..5768cc5 100644
  
  message(STATUS "libraries: ${LIBS}")
  
-diff --git a/apbs/tools/mesh/CMakeLists.txt 

[gentoo-commits] repo/gentoo:master commit in: kde-apps/syndication/

2018-12-31 Thread Andreas Sturmlechner
commit: 79aa1bb932e67988c1717f5e4edbc87570298397
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 21:03:28 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79aa1bb9

kde-apps/syndication: Cleanup leftovers

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

 kde-apps/syndication/metadata.xml | 8 
 1 file changed, 8 deletions(-)

diff --git a/kde-apps/syndication/metadata.xml 
b/kde-apps/syndication/metadata.xml
deleted file mode 100644
index 2fdbf33d963..000
--- a/kde-apps/syndication/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   k...@gentoo.org
-   Gentoo KDE Project
-   
-



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

2018-12-31 Thread Andreas Sturmlechner
commit: 7697fc3f246dea97bc326802f163d659eb319d82
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 21:13:01 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7697fc3f

profiles: Mask net-misc/hotot for removal

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 5dd70ea049c..6a3eb9f4e0a 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Andreas Sturmlechner  (31 Dec 2018)
+# Dead upstream since 2014-02-09, does not build.
+# Bugs 463928, 476890, 623172, 662270. Masked for removal in 30 days.
+net-misc/hotot
+
 # Andreas Sturmlechner  (31 Dec 2018)
 # Masked for removal.
 kde-apps/syndication



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

2018-12-31 Thread Andreas Sturmlechner
commit: eee81925e7e74b6675f1b09453c86dd67bfadc01
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 21:04:10 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eee81925

lxqt-base/lxqt-common: Cleanup leftovers

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

 lxqt-base/lxqt-common/metadata.xml | 8 
 1 file changed, 8 deletions(-)

diff --git a/lxqt-base/lxqt-common/metadata.xml 
b/lxqt-base/lxqt-common/metadata.xml
deleted file mode 100644
index a40a83a9c6a..000
--- a/lxqt-base/lxqt-common/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-
-l...@gentoo.org
-LXQt
-  
-



[gentoo-commits] repo/gentoo:master commit in: sci-libs/parmetis/

2018-12-31 Thread Andreas Sturmlechner
commit: 94f78f5e128ea5037e73116527fe9225fde0f77a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 20:54:57 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94f78f5e

sci-libs/parmetis: missing || die

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

 sci-libs/parmetis/parmetis-4.0.3.ebuild | 19 ---
 1 file changed, 12 insertions(+), 7 deletions(-)

diff --git a/sci-libs/parmetis/parmetis-4.0.3.ebuild 
b/sci-libs/parmetis/parmetis-4.0.3.ebuild
index 71ee81fcbc9..0df1f3da634 100644
--- a/sci-libs/parmetis/parmetis-4.0.3.ebuild
+++ b/sci-libs/parmetis/parmetis-4.0.3.ebuild
@@ -47,7 +47,9 @@ src_prepare() {
sed -i \
-e '/programs/d' \
CMakeLists.txt metis/CMakeLists.txt || die
-   use static-libs && mkdir "${WORKDIR}/${PN}_static"
+   if use static-libs; then
+   mkdir "${WORKDIR}/${PN}_static" || die
+   fi
 
if use mpi; then
export CC=mpicc CXX=mpicxx
@@ -59,11 +61,13 @@ src_prepare() {
 
fi
 
-   use int64 && \
-   sed -i -e '/IDXTYPEWIDTH/s/32/64/' metis/include/metis.h
+   if use int64; then
+   sed -i -e '/IDXTYPEWIDTH/s/32/64/' metis/include/metis.h || die
+   fi
 
-   use double-precision && \
-   sed -i -e '/REALTYPEWIDTH/s/32/64/' metis/include/metis.h
+   if use double-precision; then
+   sed -i -e '/REALTYPEWIDTH/s/32/64/' metis/include/metis.h || die
+   fi
 }
 
 src_configure() {
@@ -80,9 +84,10 @@ src_configure() {
cmake-utils_src_configure
}
parmetis_configure -DSHARED=ON
-   use static-libs && \
-   sed -i -e '/fPIC/d' metis/GKlib/GKlibSystem.cmake && \
+   if use static-libs; then
+   sed -i -e '/fPIC/d' metis/GKlib/GKlibSystem.cmake || die
BUILD_DIR="${WORKDIR}/${PN}_static" parmetis_configure
+   fi
 }
 
 src_compile() {



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

2018-12-31 Thread Andreas Sturmlechner
commit: ce700f244adf99e8d6f36b90e140a748ecd6603e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 20:16:20 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce700f24

dev-libs/handystats: EAPI-6 bump

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

 dev-libs/handystats/handystats-1.11.3.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-libs/handystats/handystats-1.11.3.ebuild 
b/dev-libs/handystats/handystats-1.11.3.ebuild
index 7e1c7fc9246..66511d4f301 100644
--- a/dev-libs/handystats/handystats-1.11.3.ebuild
+++ b/dev-libs/handystats/handystats-1.11.3.ebuild
@@ -1,9 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-RESTRICT="test"
 inherit cmake-utils
 
 DESCRIPTION="C++ library for collecting user-defined in-process runtime 
statistics"
@@ -15,7 +14,8 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-RDEPEND=""
-DEPEND="${DEPEND}
+RESTRICT="test"
+
+DEPEND="
dev-cpp/gtest
dev-libs/boost"



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

2018-12-31 Thread Andreas Sturmlechner
commit: 4329dfc748a9f4a27af7fc8833592d7acbc0f85a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 17:30:04 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4329dfc7

media-gfx/kphotoalbum: Fix build with exiv2-0.27

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

 .../files/kphotoalbum-5.4-exiv2-0.27.patch | 61 ++
 media-gfx/kphotoalbum/kphotoalbum-5.4.ebuild   |  2 +
 2 files changed, 63 insertions(+)

diff --git a/media-gfx/kphotoalbum/files/kphotoalbum-5.4-exiv2-0.27.patch 
b/media-gfx/kphotoalbum/files/kphotoalbum-5.4-exiv2-0.27.patch
new file mode 100644
index 000..7b7f612b94f
--- /dev/null
+++ b/media-gfx/kphotoalbum/files/kphotoalbum-5.4-exiv2-0.27.patch
@@ -0,0 +1,61 @@
+From 41c7da0531c8a1eb7046345c2b991e7a5d1e6657 Mon Sep 17 00:00:00 2001
+From: Johannes Zarl-Zierl 
+Date: Sun, 30 Dec 2018 23:36:24 +0100
+Subject: Use Exiv2 0.27 if available.
+
+Beginning with version 0.27, Exiv2 ships with cmake package config
+files.
+---
+ CMakeLists.txt | 12 +++-
+ 1 file changed, 11 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 3012f7a..5dcc29c 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -44,7 +44,17 @@ if(JPEG_FOUND)
+ include_directories(${JPEG_INCLUDE_DIR})
+ endif()
+ 
+-find_package(Exiv2 REQUIRED)
++### 2018-12-30 jzarl
++# When Exiv2 0.26 can be deprecated, FindExiv2.cmake should be removed
++# and only find_package(exiv2) should be used
++find_package(exiv2 CONFIG QUIET)
++if(exiv2_FOUND)
++# search againg with REQUIRED, so that the feature summary correctly 
shows exiv as required dependency
++find_package(exiv2 CONFIG REQUIRED)
++set(EXIV2_LIBRARIES exiv2lib)
++else()
++find_package(Exiv2 REQUIRED)
++endif()
+ 
+ find_package(KF5Kipi 5.1.0)
+ set_package_properties(KF5Kipi
+-- 
+cgit v1.1
+From cf4f7645b3c94246a1fcf664f1c865a93ae2b684 Mon Sep 17 00:00:00 2001
+From: Johannes Zarl-Zierl 
+Date: Sun, 30 Dec 2018 23:43:14 +0100
+Subject: Fix compilation with exiv2 0.27
+
+---
+ Exif/Info.cpp | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/Exif/Info.cpp b/Exif/Info.cpp
+index be4c88f..9545360 100644
+--- a/Exif/Info.cpp
 b/Exif/Info.cpp
+@@ -28,7 +28,8 @@
+ #include 
+ 
+ #include 
+-#include 
++#include 
++#include 
+ 
+ using namespace Exif;
+ 
+-- 
+cgit v1.1

diff --git a/media-gfx/kphotoalbum/kphotoalbum-5.4.ebuild 
b/media-gfx/kphotoalbum/kphotoalbum-5.4.ebuild
index ce7c3284e2a..6aaff0db914 100644
--- a/media-gfx/kphotoalbum/kphotoalbum-5.4.ebuild
+++ b/media-gfx/kphotoalbum/kphotoalbum-5.4.ebuild
@@ -49,6 +49,8 @@ RDEPEND="${DEPEND}
 
 DOCS=( ChangeLog README )
 
+PATCHES=( "${FILESDIR}/${P}-exiv2-0.27.patch" )
+
 src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package kipi KF5Kipi)



[gentoo-commits] repo/gentoo:master commit in: sci-libs/parmetis/

2018-12-31 Thread Andreas Sturmlechner
commit: 475e43d7365b80a6fa40226ff49c863bcfe0dae5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 20:58:43 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=475e43d7

sci-libs/parmetis: EAPI-6 bump, add missing cmake-utils_src_prepare

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

 sci-libs/parmetis/parmetis-4.0.3.ebuild | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/sci-libs/parmetis/parmetis-4.0.3.ebuild 
b/sci-libs/parmetis/parmetis-4.0.3.ebuild
index 0df1f3da634..bb48b4e600f 100644
--- a/sci-libs/parmetis/parmetis-4.0.3.ebuild
+++ b/sci-libs/parmetis/parmetis-4.0.3.ebuild
@@ -1,14 +1,13 @@
 # Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-inherit eutils cmake-utils toolchain-funcs
+EAPI=6
 
 # Check metis version bundled in parmetis tar ball
 # by diff of metis and parmetis tar ball
 METISPV=5.1.0
 METISP=metis-${METISPV}
+inherit cmake-utils toolchain-funcs
 
 DESCRIPTION="Parallel (MPI) unstructured graph partitioning library"
 HOMEPAGE="http://www-users.cs.umn.edu/~karypis/metis/parmetis/;
@@ -36,6 +35,8 @@ pkg_setup() {
 }
 
 src_prepare() {
+   cmake-utils_src_prepare
+
# libdir love
sed -i \
-e '/DESTINATION/s/lib/lib${LIB_SUFFIX}/g' \
@@ -58,7 +59,6 @@ src_prepare() {
-e '/add_subdirectory(include/d' \
-e '/add_subdirectory(libparmetis/d' \
CMakeLists.txt || die
-
fi
 
if use int64; then
@@ -77,8 +77,8 @@ src_configure() {
-DMETIS_PATH="${S}/metis"
-DGKRAND=ON
-DMETIS_INSTALL=ON
-   $(cmake-utils_use openmp OPENMP)
-   $(cmake-utils_use pcre PCRE)
+   -DOPENMP=$(usex openmp)
+   -DPCRE=$(usex pcre)
$@
)
cmake-utils_src_configure



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

2018-12-31 Thread Andreas Sturmlechner
commit: 2d344b93bc543db87899e1f3eaf5fa560c619de0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 19:40:21 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d344b93

sys-fs/dfc: Drop 3.0.5-r1

3.1.1 is stable, EAPI5--.

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

 sys-fs/dfc/Manifest|  1 -
 sys-fs/dfc/dfc-3.0.5-r1.ebuild | 35 ---
 2 files changed, 36 deletions(-)

diff --git a/sys-fs/dfc/Manifest b/sys-fs/dfc/Manifest
index ffa0c242023..f9e4f873c30 100644
--- a/sys-fs/dfc/Manifest
+++ b/sys-fs/dfc/Manifest
@@ -1,2 +1 @@
-DIST dfc-3.0.5.tar.gz 43310 BLAKE2B 
4698c5f5caf249695598b01dab471c978e9a5b83b2c1610af466588bbac182ea7f51a7017d6be0b0f753f1abf41b7aa054e67049ff74344271c2dc5c01a8ef02
 SHA512 
f828ede8aee0a496518d1ee9583ba71495cdd01ee0d22833e3b46aeb5f5f870ce7de629923d129a7bf795b458feec10f9a16882134dae34dd2ace7ea9eebb134
 DIST dfc-3.1.1.tar.gz 52709 BLAKE2B 
543795af9c0f3309ee497bc0bdfe144bec3cac69b4772803204d794acb9513e7f7b2726ea16640492a6c477f5c3c7fa872284efd5b7c690bf1bfde4608f7281d
 SHA512 
eac2c8d464d57626efe939f515889cf91510f7e6eb50382d045204d4f1d6b9b9f0af4b1d8974c9cbcff1eb5b8802157e421ec06e5a1e38dac74eba72f43f9701

diff --git a/sys-fs/dfc/dfc-3.0.5-r1.ebuild b/sys-fs/dfc/dfc-3.0.5-r1.ebuild
deleted file mode 100644
index 83460b87e30..000
--- a/sys-fs/dfc/dfc-3.0.5-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils
-
-DESCRIPTION="A simple CLI tool that display file system usage, with colors"
-HOMEPAGE="http://projects.gw-computing.net/projects/dfc;
-SRC_URI="http://projects.gw-computing.net/attachments/download/467/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="nls"
-
-DEPEND="nls? (
-   virtual/libintl
-   sys-devel/gettext
-)"
-RDEPEND="nls? ( virtual/libintl )"
-
-src_configure() {
-   mycmakeargs=(
-   # avoid installing xdg config in /usr
-   -DXDG_CONFIG_DIR="${EPREFIX}"/etc/xdg
-   # use the standard Gentoo doc path
-   -DDFC_DOC_PATH="${EPREFIX}"/usr/share/doc/${PF}
-   # disable automagic dependency
-   $(cmake-utils_use nls NLS_ENABLED)
-   -DLFS_ENABLED=ON
-   -DGRIM=OFF
-   )
-
-   cmake-utils_src_configure
-}



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

2018-12-31 Thread Andreas Sturmlechner
commit: a11d2ee11a1bb0aa626cbbac885b940635a77125
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec 31 19:48:09 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a11d2ee1

app-editors/okteta: 0.25.5 version bump

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

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

diff --git a/app-editors/okteta/Manifest b/app-editors/okteta/Manifest
index 421e9f10d51..a3b2ae4718b 100644
--- a/app-editors/okteta/Manifest
+++ b/app-editors/okteta/Manifest
@@ -1 +1,2 @@
 DIST okteta-0.25.4.tar.xz 950344 BLAKE2B 
3a3daf5cdb9e349e145a22afe836c78e18972e1f984472267cd182630b8f8132e10efb49cbc9fac40768aef4dadbb678afa26eb965642f07f407030f15b71dbd
 SHA512 
d9887a90efbad3bb2caa0d3bb12af27708b77d54a90cd0da82eace7ea6dfc2efbcea3d7dc720bf4a088a823a8ed9edf75ab1c3680aa6d99c640d5c9e4c385e16
+DIST okteta-0.25.5.tar.xz 953492 BLAKE2B 
ca8c40df7cf3fe40a4be6f6e2b9d1f787baa658910c3c14ced73f3f3d95c942c00ccfe559562b2e0330726723ffba8e4c7c526369453517e1fd45d3d5ce0336e
 SHA512 
dfe45a2bc3b3fbbce8342e6282981a63a342aee47d0d90cf07449f6974ebdbac53adc7fa9f0b37a7d003370994233f002df277ecebdb6f4c03995ce50d1dbd71

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



[gentoo-commits] repo/gentoo:master commit in: app-arch/innoextract/

2018-12-31 Thread Andreas Sturmlechner
commit: 07877618211b9642a96509077b993167da9506cc
Author: Daniel Scharrer  constexpr  org>
AuthorDate: Wed Dec 12 19:11:18 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec 31 21:13:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07877618

app-arch/innoextract: Drop old

Signed-off-by: Daniel Scharrer  constexpr.org>
Closes: https://github.com/gentoo/gentoo/pull/10625
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-arch/innoextract/Manifest   |  1 -
 app-arch/innoextract/innoextract-1.6.ebuild | 35 -
 2 files changed, 36 deletions(-)

diff --git a/app-arch/innoextract/Manifest b/app-arch/innoextract/Manifest
index 20c9a908547..4ecec7c6a20 100644
--- a/app-arch/innoextract/Manifest
+++ b/app-arch/innoextract/Manifest
@@ -1,2 +1 @@
-DIST innoextract-1.6.tar.gz 183380 BLAKE2B 
581c0e28ececbabc8785f50472f312bc39c62d9174c1902645a961f06877c3e702ce0386aa611fe954c412997a1a69355e441cc33e243abd1828ff5e9d2ff8a2
 SHA512 
4c1b50a050d45e1a56d7236150a801cb85d15de8c80f5f1fd94750f3dd2392bdfb3f0e98c214e9504fe6132c7dce3a0dfbe0815ede438aa0f76a88380ceeef62
 DIST innoextract-1.7.tar.gz 195123 BLAKE2B 
5dffb49da7ec3f8e48a70d0809e059179e84610dd50397b8ca472b9f5a96a5edd0cf36898f0e513b3f70685829e2b8edbd7d7932c9f1b47706c2929f596867e5
 SHA512 
5e92625a411a4351dd4639d4b63e8664519c6697122a0679c010412e94a1e5da95324c33be16211f91c2b25b8cea40fe4ba4da5e19c12d0c27a4916159465ca4

diff --git a/app-arch/innoextract/innoextract-1.6.ebuild 
b/app-arch/innoextract/innoextract-1.6.ebuild
deleted file mode 100644
index 509f67a4b24..000
--- a/app-arch/innoextract/innoextract-1.6.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="A tool to unpack installers created by Inno Setup"
-HOMEPAGE="http://constexpr.org/innoextract/;
-SRC_URI="http://constexpr.org/innoextract/files/${P}.tar.gz;
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug +iconv +lzma"
-
-RDEPEND="
-   dev-libs/boost:=
-   iconv? ( virtual/libiconv )
-   lzma? ( app-arch/xz-utils )"
-DEPEND="${RDEPEND}"
-
-DOCS=( README.md CHANGELOG )
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_use lzma LZMA)
-   $(cmake-utils_use debug DEBUG)
-   -DSET_OPTIMIZATION_FLAGS=OFF
-   -DSTRICT_USE=ON
-   -DWITH_CONV=$(usex iconv iconv builtin)
-   )
-
-   cmake-utils_src_configure
-}



[gentoo-commits] proj/gnome:master commit in: x11-libs/amtk/

2018-12-31 Thread Sobhan Mohammadpour
commit: 7a90387fed1c4a52dd1f79576c2cfff62cd25c2d
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Mon Dec 31 18:17:17 2018 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Mon Dec 31 18:17:43 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=7a90387f

x11-libs/amtk: new ebuild

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Manifest-Sign-Key: 0x7DF238CF0AA182E1
Signed-off-by: Sobhan Mohammadpour  gentoo.org>

 x11-libs/amtk/amtk-5.0.0.ebuild | 33 +
 x11-libs/amtk/metadata.xml  |  8 
 2 files changed, 41 insertions(+)

diff --git a/x11-libs/amtk/amtk-5.0.0.ebuild b/x11-libs/amtk/amtk-5.0.0.ebuild
new file mode 100644
index ..98a86640
--- /dev/null
+++ b/x11-libs/amtk/amtk-5.0.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2
+
+DESCRIPTION="Actions, Menus and Toolbars Kit for GTK+ applications"
+HOMEPAGE="https://gitlab.gnome.org/GNOME/amtk;
+
+LICENSE="LGPL-2.1+"
+SLOT="3"
+KEYWORDS="~amd64 ~x86"
+IUSE="+introspection test"
+
+RDEPEND="
+   >=dev-libs/glib-2.52:2
+   >=x11-libs/gtk+-3.22
+   introspection? ( >=dev-libs/gobject-introspection-1.42:= )
+"
+DEPEND="${DEPEND}
+   test? ( dev-util/valgrind )
+   >=sys-devel/gettext-0.19.4
+   >=dev-util/gtk-doc-am-1.25
+   virtual/pkgconfig
+"
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-gtk-doc \
+   $(use_enable introspection) \
+   $(use_enable test valgrind)
+}

diff --git a/x11-libs/amtk/metadata.xml b/x11-libs/amtk/metadata.xml
new file mode 100644
index ..996e7cac
--- /dev/null
+++ b/x11-libs/amtk/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gn...@gentoo.org
+   Gentoo GNOME Desktop
+   
+



[gentoo-commits] proj/gnome:master commit in: x11-libs/tepl/

2018-12-31 Thread Sobhan Mohammadpour
commit: f192653418cafd0b7c1bbbcabf4ae1692f2250bb
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Mon Dec 31 18:19:52 2018 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Mon Dec 31 18:19:52 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=f1926534

x11-libs/tepl: bump to 4.2.0

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Manifest-Sign-Key: 0x7DF238CF0AA182E1
Signed-off-by: Sobhan Mohammadpour  gentoo.org>

 x11-libs/tepl/tepl-4.2.0.ebuild | 51 +
 1 file changed, 51 insertions(+)

diff --git a/x11-libs/tepl/tepl-4.2.0.ebuild b/x11-libs/tepl/tepl-4.2.0.ebuild
new file mode 100644
index ..3c963606
--- /dev/null
+++ b/x11-libs/tepl/tepl-4.2.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2 virtualx
+
+DESCRIPTION="GtkSourceView-based text editors and IDE helper library"
+HOMEPAGE="https://wiki.gnome.org/Projects/Gtef;
+
+LICENSE="LGPL-2.1+"
+SLOT="3"
+KEYWORDS="~amd64 ~x86"
+IUSE="+introspection test"
+
+RDEPEND="
+   >=dev-libs/glib-2.52:2
+   >=x11-libs/gtk+-3.22
+   x11-libs/gtksourceview:4
+   >=dev-libs/libxml2-2.5
+   app-i18n/uchardet
+   introspection? ( >=dev-libs/gobject-introspection-1.42:= )
+   x11-libs/amtk
+"
+DEPEND="${DEPEND}
+   test? ( dev-util/valgrind )
+   >=sys-devel/gettext-0.19.4
+   >=dev-util/gtk-doc-am-1.25
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   # requires running gvfs-metadata
+   sed -e 's:\(g_test_add_func.*/file/load_save_metadata_sync.*\):/*\1*/:' 
\
+   -e 
's:\(g_test_add_func.*/file/load_save_metadata_async.*\):/*\1*/:' \
+   -e 's:\(g_test_add_func.*/file/set_without_load.*\):/*\1*/:' \
+   -i testsuite/test-file-metadata.c || die
+
+   gnome2_src_prepare
+}
+
+src_configure() {
+   gnome2_src_configure \
+   --enable-gvfs-metadata \
+   $(use_enable introspection) \
+   $(use_enable test valgrind)
+}
+
+src_test() {
+   virtx emake check
+}



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/, www-client/google-chrome-beta/, ...

2018-12-31 Thread Mike Gilbert
commit: fbf69f3480682c2cfe2dcc03cb56e91abee50c26
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Dec 31 20:06:03 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Dec 31 20:06:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbf69f34

www-client/google-chrome: drop 'plugins' from metadata.xml

Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome-beta/metadata.xml | 3 ---
 www-client/google-chrome-unstable/metadata.xml | 3 ---
 www-client/google-chrome/metadata.xml  | 3 ---
 3 files changed, 9 deletions(-)

diff --git a/www-client/google-chrome-beta/metadata.xml 
b/www-client/google-chrome-beta/metadata.xml
index e858a8b1b22..efc44e903a5 100644
--- a/www-client/google-chrome-beta/metadata.xml
+++ b/www-client/google-chrome-beta/metadata.xml
@@ -9,7 +9,4 @@
Google Chrome is a browser that combines a minimal design with
sophisticated technology to make the web faster, safer, and 
easier.

-   
-   Add system plugins path to launcher
-   
 

diff --git a/www-client/google-chrome-unstable/metadata.xml 
b/www-client/google-chrome-unstable/metadata.xml
index e858a8b1b22..efc44e903a5 100644
--- a/www-client/google-chrome-unstable/metadata.xml
+++ b/www-client/google-chrome-unstable/metadata.xml
@@ -9,7 +9,4 @@
Google Chrome is a browser that combines a minimal design with
sophisticated technology to make the web faster, safer, and 
easier.

-   
-   Add system plugins path to launcher
-   
 

diff --git a/www-client/google-chrome/metadata.xml 
b/www-client/google-chrome/metadata.xml
index e858a8b1b22..efc44e903a5 100644
--- a/www-client/google-chrome/metadata.xml
+++ b/www-client/google-chrome/metadata.xml
@@ -9,7 +9,4 @@
Google Chrome is a browser that combines a minimal design with
sophisticated technology to make the web faster, safer, and 
easier.

-   
-   Add system plugins path to launcher
-   
 



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

2018-12-31 Thread Alon Bar-Lev
commit: 9cfee2dce86e09fb03d85477f26060ddc522e2c3
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Mon Dec 31 19:33:19 2018 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Mon Dec 31 19:33:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cfee2dc

app-crypt/tpm2-tss: remove libressl support

Bug: https://github.com/tpm2-software/tpm2-tss/issues/1235
Signed-off-by: Alon Bar-Lev  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-crypt/tpm2-tss/tpm2-tss-2.1.0.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/app-crypt/tpm2-tss/tpm2-tss-2.1.0.ebuild 
b/app-crypt/tpm2-tss/tpm2-tss-2.1.0.ebuild
index dea061ef89a..1ea7813e854 100644
--- a/app-crypt/tpm2-tss/tpm2-tss-2.1.0.ebuild
+++ b/app-crypt/tpm2-tss/tpm2-tss-2.1.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/tpm2-software/${PN}/releases/download/${PV}/${P}.tar
 LICENSE="BSD-2"
 SLOT="0/0" # sublot is libtss2-sys number
 KEYWORDS="~amd64"
-IUSE="doc +gcrypt libressl openssl static-libs test"
+IUSE="doc +gcrypt openssl static-libs test"
 
 REQUIRED_USE="
gcrypt? ( !openssl )
@@ -20,8 +20,7 @@ REQUIRED_USE="
|| ( gcrypt openssl )"
 
 RDEPEND="gcrypt? ( dev-libs/libgcrypt:0= )
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )"
+   openssl? ( dev-libs/openssl:0= )"
 DEPEND="${DEPEND}
test? ( dev-util/cmocka )"
 BDEPEND="virtual/pkgconfig



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

2018-12-31 Thread Jeroen Roovers
commit: 93402a30cfbae60defdf592fddc226ff4c181384
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Dec 31 19:19:21 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Dec 31 19:19:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93402a30

net-misc/youtube-dl: Version 2018.12.31

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

 net-misc/youtube-dl/Manifest |   1 +
 net-misc/youtube-dl/youtube-dl-2018.12.31.ebuild | 117 +++
 2 files changed, 118 insertions(+)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index 7c33773ea3b..041d7305e37 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -1 +1,2 @@
 DIST youtube-dl-2018.12.17.tar.gz 3074432 BLAKE2B 
b6f4b3a7a2c2159093494230219914ee4a2f87194ebe741cc4687aefa76dfef09c282bcc6534030bb65cd87a641b05cc74bd74eecc0c78b57157970fbea98121
 SHA512 
88d98391d110d6542503590c4735c765137cde43bc3a1f1b33b197d323a1226ed550d559f67bd4aadab3c82de8a471fa71bf4e1440e5641e1c51ba5cb7059904
+DIST youtube-dl-2018.12.31.tar.gz 3076229 BLAKE2B 
e5ad08d81fd39f19fea592106c74b0f11eaab1ffb51ba3560234036623b6b41630af80d069f61c337d7a691e87d7092931fd498a3a4216fb160ed576eab254f7
 SHA512 
d86df7dfa49339019b31f4d10be448d1f82239568f05fd2c4a3d8a21b826489b3cc07eec3d1afb2d3e9e64be0ecefeade19de4deeed2fdbad8cb5c5edad9682c

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

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

2018-12-31 Thread Virgil Dupras
commit: a0bccf8edd136667f1144f14bcc9580998300604
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Dec 31 18:55:14 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Dec 31 18:55:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0bccf8e

app-emulation/lxc: remove old

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-emulation/lxc/Manifest |   1 -
 app-emulation/lxc/lxc-3.0.2.ebuild | 160 -
 2 files changed, 161 deletions(-)

diff --git a/app-emulation/lxc/Manifest b/app-emulation/lxc/Manifest
index dc17a9b8b4a..94f3dfd504e 100644
--- a/app-emulation/lxc/Manifest
+++ b/app-emulation/lxc/Manifest
@@ -1,4 +1,3 @@
 DIST lxc-2.1.1.tar.gz 1378640 BLAKE2B 
5fca516540a886729434579ff99acf3baa06977fa0e0b6f24dbf15094626335fc073597d308276e3dd20e27ceabf1477cc8e99d1fd24cf50b9aed2720b887b69
 SHA512 
2989d57acddfe091adcf8031721c3c9a2f8eff5476bd6155366b76ea7511e0f6120e669276e056e3963863e0f0acf3b095d44c36fa6652e67c197671f28cbdd4
-DIST lxc-3.0.2.tar.gz 1236975 BLAKE2B 
68047f6374b9081fb308586726797ed94fa66b5e94eb3fc12ad1a0aedc15ac1ee518ca5a341db79a715015e34ad38659200ad6aaf21f74639ebb55e7e1360645
 SHA512 
d7f5e3f91e5c8800e3e092ab209158a4d3e3c2816623249aeaaf2e0950428484ac5d1432d71298787721e1419cd962c0798ba14979e62161299fa15a299efde8
 DIST lxc-3.0.3.tar.gz 1263371 BLAKE2B 
77d0f593119654f570ae748d305e86c27117fd4e9ec7bdab1110f5356afb4a00d81c105ae9757d9da5827f6883a4a5d8ddc43b5b6e56a2927ed990e757f7c7b6
 SHA512 
cdc411364153d7ed494bab604260f5cbdfd5bd7734a59af970b3198c7b3cb340b6736856a2189d5989e169945a817ac8b531bc3ab62217a4285dd63a851f9c8a
 DIST lxc-3.1.0.tar.gz 1277877 BLAKE2B 
e114855659c8199378d14bc23f667ce1927bb32c55d336fa9c222a60198da51e7ded6aeb6d1c89cbeb1e9edc101e424a847be1e4a2330d2a0bceda52d0df5e30
 SHA512 
706cee9bc8ac57300574b59d728437e41baa4eb16c68f8548142e53b4e13679ef6698df30a4fbf8617e4f07338f898464e9f818e80d32648fe9717370dcbbb20

diff --git a/app-emulation/lxc/lxc-3.0.2.ebuild 
b/app-emulation/lxc/lxc-3.0.2.ebuild
deleted file mode 100644
index 9d075f8a2a6..000
--- a/app-emulation/lxc/lxc-3.0.2.ebuild
+++ /dev/null
@@ -1,160 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-WANT_AUTOMAKE="1.15"
-
-inherit autotools bash-completion-r1 linux-info flag-o-matic systemd 
readme.gentoo-r1 pam
-
-DESCRIPTION="LinuX Containers userspace utilities"
-HOMEPAGE="https://linuxcontainers.org/;
-SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz;
-
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-
-LICENSE="LGPL-3"
-SLOT="0"
-IUSE="apparmor examples pam python seccomp selinux +templates"
-
-RDEPEND="
-   net-libs/gnutls
-   sys-libs/libcap
-   pam? ( virtual/pam )
-   seccomp? ( sys-libs/libseccomp )
-   selinux? ( sys-libs/libselinux )"
-
-DEPEND="${RDEPEND}
-   >=app-text/docbook-sgml-utils-0.6.14-r2
-   >=sys-kernel/linux-headers-3.2"
-
-RDEPEND="${RDEPEND}
-   sys-apps/util-linux
-   app-misc/pax-utils
-   virtual/awk"
-
-PDEPEND="templates? ( app-emulation/lxc-templates )
-   python? ( dev-python/python3-lxc )"
-
-CONFIG_CHECK="~CGROUPS ~CGROUP_DEVICE
-   ~CPUSETS ~CGROUP_CPUACCT
-   ~CGROUP_SCHED
-
-   ~NAMESPACES
-   ~IPC_NS ~USER_NS ~PID_NS
-
-   ~CGROUP_FREEZER
-   ~UTS_NS ~NET_NS
-   ~VETH ~MACVLAN
-
-   ~POSIX_MQUEUE
-   ~!NETPRIO_CGROUP
-
-   ~!GRKERNSEC_CHROOT_MOUNT
-   ~!GRKERNSEC_CHROOT_DOUBLE
-   ~!GRKERNSEC_CHROOT_PIVOT
-   ~!GRKERNSEC_CHROOT_CHMOD
-   ~!GRKERNSEC_CHROOT_CAPS
-   ~!GRKERNSEC_PROC
-   ~!GRKERNSEC_SYSFS_RESTRICT
-   ~!GRKERNSEC_CHROOT_FINDTASK
-"
-
-ERROR_DEVPTS_MULTIPLE_INSTANCES="CONFIG_DEVPTS_MULTIPLE_INSTANCES:  needed for 
pts inside container"
-
-ERROR_CGROUP_FREEZER="CONFIG_CGROUP_FREEZER:  needed to freeze containers"
-
-ERROR_UTS_NS="CONFIG_UTS_NS:  needed to unshare hostnames and uname info"
-ERROR_NET_NS="CONFIG_NET_NS:  needed for unshared network"
-
-ERROR_VETH="CONFIG_VETH:  needed for internal (host-to-container) networking"
-ERROR_MACVLAN="CONFIG_MACVLAN:  needed for internal (inter-container) 
networking"
-
-ERROR_POSIX_MQUEUE="CONFIG_POSIX_MQUEUE:  needed for lxc-execute command"
-
-ERROR_NETPRIO_CGROUP="CONFIG_NETPRIO_CGROUP:  as of kernel 3.3 and lxc 
0.8.0_rc1 this causes LXCs to fail booting."
-
-ERROR_GRKERNSEC_CHROOT_MOUNT="CONFIG_GRKERNSEC_CHROOT_MOUNT:  some GRSEC 
features make LXC unusable see postinst notes"
-ERROR_GRKERNSEC_CHROOT_DOUBLE="CONFIG_GRKERNSEC_CHROOT_DOUBLE:  some GRSEC 
features make LXC unusable see postinst notes"
-ERROR_GRKERNSEC_CHROOT_PIVOT="CONFIG_GRKERNSEC_CHROOT_PIVOT:  some GRSEC 
features make LXC unusable see postinst notes"
-ERROR_GRKERNSEC_CHROOT_CHMOD="CONFIG_GRKERNSEC_CHROOT_CHMOD:  some GRSEC 
features make LXC unusable see postinst notes"
-ERROR_GRKERNSEC_CHROOT_CAPS="CONFIG_GRKERNSEC_CHROOT_CAPS:  

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

2018-12-31 Thread Virgil Dupras
commit: 1687c1e8597ba5b6a96819921dbe51cee6c9cef0
Author: Virgil Dupras  gentoo  org>
AuthorDate: Mon Dec 31 18:54:31 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Mon Dec 31 18:54:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1687c1e8

app-emulation/lxc: stabilize 3.0.3 on amd64 and x86

Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/app-emulation/lxc/lxc-3.0.3.ebuild 
b/app-emulation/lxc/lxc-3.0.3.ebuild
index 5cb34ceb504..7b8927d98fb 100644
--- a/app-emulation/lxc/lxc-3.0.3.ebuild
+++ b/app-emulation/lxc/lxc-3.0.3.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="LinuX Containers userspace utilities"
 HOMEPAGE="https://linuxcontainers.org/;
 SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz;
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 
 LICENSE="LGPL-3"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/gromacs/

2018-12-31 Thread Alexey Shvetsov
commit: cb95c905d3dfa5509fb84b392b10c7e9538b6765
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Mon Dec 31 18:35:07 2018 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Mon Dec 31 18:35:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb95c905

sci-chemistry/gromacs: Version bump

Signed-off-by: Alexey Shvetsov  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sci-chemistry/gromacs/Manifest| 4 ++--
 .../gromacs/{gromacs-2019_rc1.ebuild => gromacs-2019.ebuild}  | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-chemistry/gromacs/Manifest b/sci-chemistry/gromacs/Manifest
index 302eda88bf4..e8bd9511e66 100644
--- a/sci-chemistry/gromacs/Manifest
+++ b/sci-chemistry/gromacs/Manifest
@@ -2,13 +2,13 @@ DIST gromacs-2016.2.tar.gz 27339623 BLAKE2B 
c3548f4abdc4c1b09a79a3da99d7ca8060da
 DIST gromacs-2016.5.tar.gz 27369491 BLAKE2B 
4a8bf1ae3e298ac2e26ec476130720dc3ef00db5d999e3a45fdbfd7fbfe7e94fbc86be6ff0f2f23552769c8bc851ce49c73f6fc1ab13f372523279b93e7794d7
 SHA512 
9cb8ff88871aa5df0967c60ba303c03296c6fa3c215cd01b26259df7753f0014f04222078ab4b84a66a1f709997837134d5c0f74da19b78322e410010c9d9e10
 DIST gromacs-2018.3.tar.gz 29915626 BLAKE2B 
6e6eeafecdd923a25b4a2a78a8e89f793639b57ffbd63f19d133d8474302f9a381041f138a509dadb42b36e25fe508729e860efb6b0c75cdbf01d924b0a8fd83
 SHA512 
3c4d6eb3942d7b54d01c94c6f6f5ae706e0f5d4f9901ea11a56fde4df97b1a9112007f2cb13feea0f19f30c89f57ae80ff53a8f5203b8cdff103aa903cd0dc8f
 DIST gromacs-2018.4.tar.gz 29918276 BLAKE2B 
daf3f91e47bab61befee4ecd91e4885835fc5ded408462c239c824567e64b5710fb252456c6be2bf0e4ce1a2119747fca9d8fb0532286bb93d6ccdd289fe57ab
 SHA512 
8ef0b90b2c266bb706c8fdba12e763de9c21aad197c1c71f48c06378644a734a3694172804db6c916a4974a9832b128512f2445d0b72783811e64edd22d27955
-DIST gromacs-2019-rc1.tar.gz 33426863 BLAKE2B 
8de7128389652922dafe2a6f73fadfeb463a9a1ffea898ac34cfe056500113a12c795aa9ba1304d6e4a737dcfa7bd537bab2f1d49c0951f8b68714c13458
 SHA512 
ade6e9df653f1212540ca969d0b70b046fe30de866ca899ecb463d2c96e6dd70ac8a5ff08df801728332357abefee2d73cd3e77cae4b2b586a827c69e0257654
+DIST gromacs-2019.tar.gz 33428725 BLAKE2B 
307838a5ee1a85554d6f2ef8cd9c9dd2f3d9cacd32c534545c23483b5f3a1c7d027bfbdf224b90661cd8cd3fb85c0c99c66cbd619698245a0cb45ebd512dec5d
 SHA512 
54b11530e8ff671461e3ae9418d991fe242957943c944798cddf6efe740eee670a562cd5201dbba68b045f4bafd3afa2dc8de27e0643c7def4e05eaf0ccb5769
 DIST gromacs-5.0.4.tar.gz 26342095 BLAKE2B 
27a2483e23533ad627114c0005fa0d49a311b359c31aed6378bdd768c9dda03c3b19f11d961f0bd3b82a1711737d4b7dce13cad5fc56d058dd0110fe21421ee3
 SHA512 
bc62b623bf71dcaa948aaf7563a3d3afa973da0702062848a20323db202e862dcee413197dacd1472866ccb40fce7709e283177b1c6c49514064f23e6c46b5ee
 DIST gromacs-5.1.3.tar.gz 27095702 BLAKE2B 
b7fd8fa10e8c4f4368ac551338c59374dc35f85c9fdae5d64eec62929b8f04ea724a084959b3618cd8a151bf3e0a0c84c8f75de953722effca82a4928941ce73
 SHA512 
9ab26e1b2268f8d567b89b2d99d0b75b937b28edceaec56d17ca3243c76faa31255ffc0c45d762c7c693fe500b00e36ad43b80572d1d7f92dc87f9d2d98c0ba6
 DIST regressiontests-2016.2.tar.gz 67095329 BLAKE2B 
fec8a663845ad67374c8a230d1590fa9e5079460198f41cee3b788aaa1c72e8ec9dcda48bc68a594f15003d11bf6617d46cc1a09c16b7a333587b43904a16ba6
 SHA512 
e0aceb56d1f38a7e6ab9fdaac5063fd20c5b3a162ffb6eddd0e6dc7dff9b724bfe31363493a9437e9f9d5421a534b375960fcb31e903a4901a0fa94ed8511294
 DIST regressiontests-2016.5.tar.gz 67641413 BLAKE2B 
4fcd30c198f3acbbabf1104c040d9a686de49536a97dbeb14732bfa0ed3cf37aa61b1b0f45393668985b993d1f1862a8985e416af819cf9793f5964f3e4f43cc
 SHA512 
31764fd99cc4185d61de5d4443ee482c27b13533451a24aa0e487ce275a63685424eafacae38b1a3ffd4ce0d5ebe02a90348953b04c104f91376f0edfdff
 DIST regressiontests-2018.3.tar.gz 67857855 BLAKE2B 
acd7a05ae79d1b4eb47d0c68a3fec9ee19f028a5019f39c37a033f48cf6da2a468375180ad6ceca9ac4f685a8bead38550663a47d6427b51f84c32a5c810e5f0
 SHA512 
57980d49efe6dcc3b3d14b5913a30c68fc1de5b679ef986fec1a149c76f67139b0299c3ee2825451461294fab5f345c7ad4f42e90f8991b81aafe9c369f3ff0b
 DIST regressiontests-2018.4.tar.gz 67860326 BLAKE2B 
0160f701a8fa14ba4f175f4fca9894104bc5cc6aa5f02ac57200fd5a8f74a29b595df609e704cb70fcd9a03529bcf758fb4547e35557a45c0546d819c2681983
 SHA512 
baaac0c918684216ada5254a7c3a1f5b3ea00b1a63d6085d569095139b2a0c9de4ed330d4694f7eaedab729ed5dcea547390781b3d2f7c2ffdf02e0541a90efe
-DIST regressiontests-2019-rc1.tar.gz 67606596 BLAKE2B 
e614b21fdf73e205c6ad870e19998f9fdb52cb0c54f878a0ab924772f8a710b7ac3d68faf8b77a043f03f3302f829de61e729e69d04abb38de761022dcb7aa7c
 SHA512 
7521bc03a410d2532ee8681a0a3544f3a33f1aaff83513765ed1a28a756f24812955a44c0d8ae88988e23c347c4df455dd4bd3db7b9bb6d3d7d0bf0cc57bbebb
+DIST regressiontests-2019.tar.gz 67597618 BLAKE2B 
fb950d8518cf1e28db5ebb99bdda8d269c5e43dd49a117bdaae9f00857abc7c096766fb90ff1d2d95a12a875ba2e243b707bfc81a45d07fc8b340a154cf2ad0f
 SHA512 

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

2018-12-31 Thread Anthony G. Basile
commit: d5b21e35f06d3dc3dfafd18016958a3ed8b07ffb
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Dec 31 18:26:28 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Dec 31 18:26:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5b21e35

sys-libs/musl: 1.1.20-r1 stable on arm ppc

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

 sys-libs/musl/musl-1.1.20-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-libs/musl/musl-1.1.20-r1.ebuild 
b/sys-libs/musl/musl-1.1.20-r1.ebuild
index f336112e379..13a18acc702 100644
--- a/sys-libs/musl/musl-1.1.20-r1.ebuild
+++ b/sys-libs/musl/musl-1.1.20-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,7 +17,7 @@ else
https://dev.gentoo.org/~blueness/musl-misc/getconf.c
https://dev.gentoo.org/~blueness/musl-misc/getent.c
https://dev.gentoo.org/~blueness/musl-misc/iconv.c;
-   KEYWORDS="-* amd64 ~arm ~arm64 ~mips ~ppc x86"
+   KEYWORDS="-* amd64 arm ~arm64 ~mips ppc x86"
 fi
 
 export CBUILD=${CBUILD:-${CHOST}}



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

2018-12-31 Thread Anthony G. Basile
commit: 45c0e9cd021cb7079fc62a057e8c1402b6be2fbd
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Dec 31 18:24:34 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Dec 31 18:24:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45c0e9cd

sys-libs/uclibc-ng: bump  to EAPI=7

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

 sys-libs/uclibc-ng/uclibc-ng-.ebuild | 18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/sys-libs/uclibc-ng/uclibc-ng-.ebuild 
b/sys-libs/uclibc-ng/uclibc-ng-.ebuild
index 9e216067cb3..46dcc44af01 100644
--- a/sys-libs/uclibc-ng/uclibc-ng-.ebuild
+++ b/sys-libs/uclibc-ng/uclibc-ng-.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
 
-inherit flag-o-matic multilib savedconfig toolchain-funcs versionator
+inherit flag-o-matic multilib savedconfig toolchain-funcs
 
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="git://uclibc-ng.org/git/uclibc-ng"
@@ -257,22 +257,24 @@ src_prepare() {
# Upstream sets MAJOR_VERSION = 1 which breaks runtime linking.
# If we really want the ABI bump, we'll have to hack the gcc
# spec file and change the '*link:' rule.
-   version=( $(get_version_components) )
-   if [[ -z ${version[1]} ]]; then
+   version_0=$(ver_cut 1)
+   version_1=$(ver_cut 2)
+   version_2=$(ver_cut 3)
+   if [[ -z ${version_1} ]]; then
subversion=0
extraversion=0
else
-   subversion=${version[1]}
-   if [[ -z ${version[2]} ]]; then
+   subversion=${version_1}
+   if [[ -z ${version_2} ]]; then
extraversion=0
else
-   extraversion=.${version[2]}
+   extraversion=.${version_2}
fi
fi
 
sed -i \
-e "/^MAJOR_VERSION/s|:=.*|:= 0|" \
-   -e "/^MINOR_VERSION/s|:=.*|:= ${version[0]}|" \
+   -e "/^MINOR_VERSION/s|:=.*|:= ${version_0}|" \
-e "/^SUBLEVEL/s|:=.*|:= ${subversion}|" \
-e "/^EXTRAVERSION/s|:=.*|:= ${extraversion}|" \
Rules.mak || die



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

2018-12-31 Thread Anthony G. Basile
commit: d04ac05f36c1fd564b53b88fe5f720490fd44915
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Dec 31 17:55:04 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Dec 31 17:55:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d04ac05f

sys-libs/uclibc-ng: 1.0.31 stable on amd64 arm ppc x86

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

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

diff --git a/sys-libs/uclibc-ng/uclibc-ng-1.0.31.ebuild 
b/sys-libs/uclibc-ng/uclibc-ng-1.0.31.ebuild
index 9e216067cb3..36f1b9db8bb 100644
--- a/sys-libs/uclibc-ng/uclibc-ng-1.0.31.ebuild
+++ b/sys-libs/uclibc-ng/uclibc-ng-1.0.31.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://uclibc-ng.org/;
 if [[ ${PV} != "" ]] ; then
PATCH_VER=""
SRC_URI="https://downloads.uclibc-ng.org/releases/${PV}/${MY_P}.tar.bz2;
-   KEYWORDS="-* ~amd64 ~arm ~mips ~ppc ~x86"
+   KEYWORDS="-* amd64 arm ~mips ppc x86"
 fi
 
 LICENSE="LGPL-2"



[gentoo-commits] proj/releng:master commit in: tools-uclibc/portage.amd64.vanilla/package.accept_keywords/, ...

2018-12-31 Thread Anthony G. Basile
commit: 09a85273a60cd8339db04329c4834f4ad2f83cc3
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Dec 31 17:51:57 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Dec 31 17:51:57 2018 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=09a85273

tools-uclibc: keyword sys-apps/iproute2-4.19.0-r1

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

 tools-uclibc/portage.amd64.hardened/package.accept_keywords   | 1 -
 tools-uclibc/portage.amd64.hardened/package.accept_keywords/iproute2  | 1 +
 tools-uclibc/portage.amd64.vanilla/package.accept_keywords| 1 -
 tools-uclibc/portage.amd64.vanilla/package.accept_keywords/iproute2   | 1 +
 tools-uclibc/portage.armv7a.hardened/package.accept_keywords/iproute2 | 2 +-
 tools-uclibc/portage.armv7a.vanilla/package.accept_keywords/iproute2  | 2 +-
 tools-uclibc/portage.i686.hardened/package.accept_keywords| 1 -
 tools-uclibc/portage.i686.hardened/package.accept_keywords/iproute2   | 1 +
 tools-uclibc/portage.i686.vanilla/package.accept_keywords | 1 -
 tools-uclibc/portage.i686.vanilla/package.accept_keywords/iproute2| 1 +
 10 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/tools-uclibc/portage.amd64.hardened/package.accept_keywords 
b/tools-uclibc/portage.amd64.hardened/package.accept_keywords
deleted file mode 100644
index 8ffc9b3a..
--- a/tools-uclibc/portage.amd64.hardened/package.accept_keywords
+++ /dev/null
@@ -1 +0,0 @@
-=sys-apps/iproute2-4.18.0-r1 ~amd64

diff --git 
a/tools-uclibc/portage.amd64.hardened/package.accept_keywords/iproute2 
b/tools-uclibc/portage.amd64.hardened/package.accept_keywords/iproute2
new file mode 100644
index ..ad7dcf0a
--- /dev/null
+++ b/tools-uclibc/portage.amd64.hardened/package.accept_keywords/iproute2
@@ -0,0 +1 @@
+=sys-apps/iproute2-4.19.0-r1 ~amd64

diff --git a/tools-uclibc/portage.amd64.vanilla/package.accept_keywords 
b/tools-uclibc/portage.amd64.vanilla/package.accept_keywords
deleted file mode 100644
index 8ffc9b3a..
--- a/tools-uclibc/portage.amd64.vanilla/package.accept_keywords
+++ /dev/null
@@ -1 +0,0 @@
-=sys-apps/iproute2-4.18.0-r1 ~amd64

diff --git 
a/tools-uclibc/portage.amd64.vanilla/package.accept_keywords/iproute2 
b/tools-uclibc/portage.amd64.vanilla/package.accept_keywords/iproute2
new file mode 100644
index ..ad7dcf0a
--- /dev/null
+++ b/tools-uclibc/portage.amd64.vanilla/package.accept_keywords/iproute2
@@ -0,0 +1 @@
+=sys-apps/iproute2-4.19.0-r1 ~amd64

diff --git 
a/tools-uclibc/portage.armv7a.hardened/package.accept_keywords/iproute2 
b/tools-uclibc/portage.armv7a.hardened/package.accept_keywords/iproute2
index 219f7431..8e5be598 100644
--- a/tools-uclibc/portage.armv7a.hardened/package.accept_keywords/iproute2
+++ b/tools-uclibc/portage.armv7a.hardened/package.accept_keywords/iproute2
@@ -1 +1 @@
-=sys-apps/iproute2-4.18.0 ~arm
+=sys-apps/iproute2-4.19.0-r1 ~arm

diff --git 
a/tools-uclibc/portage.armv7a.vanilla/package.accept_keywords/iproute2 
b/tools-uclibc/portage.armv7a.vanilla/package.accept_keywords/iproute2
index 219f7431..8e5be598 100644
--- a/tools-uclibc/portage.armv7a.vanilla/package.accept_keywords/iproute2
+++ b/tools-uclibc/portage.armv7a.vanilla/package.accept_keywords/iproute2
@@ -1 +1 @@
-=sys-apps/iproute2-4.18.0 ~arm
+=sys-apps/iproute2-4.19.0-r1 ~arm

diff --git a/tools-uclibc/portage.i686.hardened/package.accept_keywords 
b/tools-uclibc/portage.i686.hardened/package.accept_keywords
deleted file mode 100644
index 8ffc9b3a..
--- a/tools-uclibc/portage.i686.hardened/package.accept_keywords
+++ /dev/null
@@ -1 +0,0 @@
-=sys-apps/iproute2-4.18.0-r1 ~amd64

diff --git 
a/tools-uclibc/portage.i686.hardened/package.accept_keywords/iproute2 
b/tools-uclibc/portage.i686.hardened/package.accept_keywords/iproute2
new file mode 100644
index ..4f9b4a3a
--- /dev/null
+++ b/tools-uclibc/portage.i686.hardened/package.accept_keywords/iproute2
@@ -0,0 +1 @@
+=sys-apps/iproute2-4.19.0-r1 ~x86

diff --git a/tools-uclibc/portage.i686.vanilla/package.accept_keywords 
b/tools-uclibc/portage.i686.vanilla/package.accept_keywords
deleted file mode 100644
index 8ffc9b3a..
--- a/tools-uclibc/portage.i686.vanilla/package.accept_keywords
+++ /dev/null
@@ -1 +0,0 @@
-=sys-apps/iproute2-4.18.0-r1 ~amd64

diff --git a/tools-uclibc/portage.i686.vanilla/package.accept_keywords/iproute2 
b/tools-uclibc/portage.i686.vanilla/package.accept_keywords/iproute2
new file mode 100644
index ..4f9b4a3a
--- /dev/null
+++ b/tools-uclibc/portage.i686.vanilla/package.accept_keywords/iproute2
@@ -0,0 +1 @@
+=sys-apps/iproute2-4.19.0-r1 ~x86



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

2018-12-31 Thread Jeroen Roovers
commit: 176877f778d193e7af634c1d38db2841bc7108f6
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Dec 31 17:39:01 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Dec 31 17:40:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=176877f7

net-analyzer/tcpreplay: Version 4.3.1

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Bug: https://bugs.gentoo.org/674156
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/tcpreplay/Manifest   |  2 +-
 .../files/tcpreplay-4.3.0-enable-pcap_findalldevs.patch   | 11 +++
 .../{tcpreplay-4.3.0_beta1.ebuild => tcpreplay-4.3.1.ebuild}  |  8 
 3 files changed, 16 insertions(+), 5 deletions(-)

diff --git a/net-analyzer/tcpreplay/Manifest b/net-analyzer/tcpreplay/Manifest
index 34fe3f97958..c3783ba664c 100644
--- a/net-analyzer/tcpreplay/Manifest
+++ b/net-analyzer/tcpreplay/Manifest
@@ -1,3 +1,3 @@
 DIST tcpreplay-4.1.2.tar.gz 2162175 BLAKE2B 
a99542277084a419c1f1208392e3d5b47aaf0be61a8e8de33bee9ba8e4f636fa78ae8eabcc07031c9bb659a8ba58a0aad6e4cc102e56d3dbddb0c3cf11c9df51
 SHA512 
3a7d125f38fe15070d666eacb4a5ef026a73ff850adec7ef3592966f38d1d155002792c5d5ac2476aa034d71be5f31b9dacd5be34af01a336149af3a42cad360
 DIST tcpreplay-4.2.6.tar.gz 3494827 BLAKE2B 
57222d7347efd780d2e1297145a7d81c8cce58a8d43bdb9b1485ef2514751e61af317dc4f5ff2068c214b2a33115d8099204d4b3165671d87bd8549c2df08bbd
 SHA512 
a46846b29e3cd7fbc635faee9c4be90db0d346c0d0f291ac8e007e1fbf614289094e14480c1c5b40feb5a175d3cbad018e2dd4d1a5762b7d31a4325af6102e7e
-DIST tcpreplay-4.3.0_beta1.tar.xz 719884 BLAKE2B 
872ea10a3986f122cbf48bf9217d8df96f8c8c08e37aee095fc92ab5d5cf2607b42327aab9de5453c8bd198e1a32a3ae8964b085ba3065a6b3adfd853dd0b43b
 SHA512 
55a9c419d4604cb4912571a631035ad4bc70d06b44d0248629a47b76411c23cba63b824322c23e0f2eeac4131a5d6e4c1fb2b9a60c0f57a7397d46760ff818f9
+DIST tcpreplay-4.3.1.tar.xz 746804 BLAKE2B 
c1feb541b8243b00b2fa6ee9742ced4ef47c58a58d3a95be88faa0fa4301da0cb962a620df724cd4526ea31e74a0e7d7161eb44afea37467a19976a20855e0e0
 SHA512 
2dbad1a88ed19db897cc1222883c02eb7f0808f64cafb3c3ef8f21c0cfcb14d3ebb92a8a01ea203ca128ed675d2e7dcdb30d0bce30eb79e729d9d45d309f9220

diff --git 
a/net-analyzer/tcpreplay/files/tcpreplay-4.3.0-enable-pcap_findalldevs.patch 
b/net-analyzer/tcpreplay/files/tcpreplay-4.3.0-enable-pcap_findalldevs.patch
new file mode 100644
index 000..6c4d2c02dc0
--- /dev/null
+++ b/net-analyzer/tcpreplay/files/tcpreplay-4.3.0-enable-pcap_findalldevs.patch
@@ -0,0 +1,11 @@
+--- a/configure.ac
 b/configure.ac
+@@ -1499,6 +1499,8 @@
+ AC_MSG_WARN(Unable to do tests when cross-compiling)
+ fi
+ 
++disable_pcap_findalldevs=no
++
+ dnl Allows user to choose which nic to use for testing purposes
+ AC_ARG_WITH(testnic,
+ AC_HELP_STRING([--with-testnic=NIC], [Select which network card to use 
for testing]),

diff --git a/net-analyzer/tcpreplay/tcpreplay-4.3.0_beta1.ebuild 
b/net-analyzer/tcpreplay/tcpreplay-4.3.1.ebuild
similarity index 93%
rename from net-analyzer/tcpreplay/tcpreplay-4.3.0_beta1.ebuild
rename to net-analyzer/tcpreplay/tcpreplay-4.3.1.ebuild
index d9206da3d29..1dfd57b11cd 100644
--- a/net-analyzer/tcpreplay/tcpreplay-4.3.0_beta1.ebuild
+++ b/net-analyzer/tcpreplay/tcpreplay-4.3.1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 inherit autotools flag-o-matic
 
 DESCRIPTION="utilities for editing and replaying previously captured network 
traffic"
@@ -26,7 +26,7 @@ DOCS=(
docs/{CHANGELOG,CREDIT,HACKING,TODO}
 )
 PATCHES=(
-   "${FILESDIR}"/${PN}-4.1.0-enable-pcap_findalldevs.patch
+   "${FILESDIR}"/${PN}-4.3.0-enable-pcap_findalldevs.patch
 )
 
 S=${WORKDIR}/${P/_/-}
@@ -52,8 +52,8 @@ src_configure() {
$(use_enable debug) \
$(use_with pcapnav pcapnav-config /usr/bin/pcapnav-config) \
$(use_with tcpdump tcpdump /usr/sbin/tcpdump) \
-   --disable-local-libopts \
--enable-dynamic-link \
+   --enable-local-libopts \
--enable-shared \
--with-libdnet \
--with-testnic2=lo \



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

2018-12-31 Thread Jeroen Roovers
commit: e70150d187c1358ab9b2ff8d65c6afdf187877bb
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Dec 31 17:40:25 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Dec 31 17:40:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e70150d1

net-analyzer/tcpreplay: Old

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Bug: https://bugs.gentoo.org/674156
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/tcpreplay/Manifest   |  1 -
 net-analyzer/tcpreplay/tcpreplay-4.2.6.ebuild | 74 ---
 2 files changed, 75 deletions(-)

diff --git a/net-analyzer/tcpreplay/Manifest b/net-analyzer/tcpreplay/Manifest
index c3783ba664c..238771e1da6 100644
--- a/net-analyzer/tcpreplay/Manifest
+++ b/net-analyzer/tcpreplay/Manifest
@@ -1,3 +1,2 @@
 DIST tcpreplay-4.1.2.tar.gz 2162175 BLAKE2B 
a99542277084a419c1f1208392e3d5b47aaf0be61a8e8de33bee9ba8e4f636fa78ae8eabcc07031c9bb659a8ba58a0aad6e4cc102e56d3dbddb0c3cf11c9df51
 SHA512 
3a7d125f38fe15070d666eacb4a5ef026a73ff850adec7ef3592966f38d1d155002792c5d5ac2476aa034d71be5f31b9dacd5be34af01a336149af3a42cad360
-DIST tcpreplay-4.2.6.tar.gz 3494827 BLAKE2B 
57222d7347efd780d2e1297145a7d81c8cce58a8d43bdb9b1485ef2514751e61af317dc4f5ff2068c214b2a33115d8099204d4b3165671d87bd8549c2df08bbd
 SHA512 
a46846b29e3cd7fbc635faee9c4be90db0d346c0d0f291ac8e007e1fbf614289094e14480c1c5b40feb5a175d3cbad018e2dd4d1a5762b7d31a4325af6102e7e
 DIST tcpreplay-4.3.1.tar.xz 746804 BLAKE2B 
c1feb541b8243b00b2fa6ee9742ced4ef47c58a58d3a95be88faa0fa4301da0cb962a620df724cd4526ea31e74a0e7d7161eb44afea37467a19976a20855e0e0
 SHA512 
2dbad1a88ed19db897cc1222883c02eb7f0808f64cafb3c3ef8f21c0cfcb14d3ebb92a8a01ea203ca128ed675d2e7dcdb30d0bce30eb79e729d9d45d309f9220

diff --git a/net-analyzer/tcpreplay/tcpreplay-4.2.6.ebuild 
b/net-analyzer/tcpreplay/tcpreplay-4.2.6.ebuild
deleted file mode 100644
index ee0ea9dffd4..000
--- a/net-analyzer/tcpreplay/tcpreplay-4.2.6.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools flag-o-matic
-
-DESCRIPTION="utilities for editing and replaying previously captured network 
traffic"
-HOMEPAGE="http://tcpreplay.appneta.com/ https://github.com/appneta/tcpreplay;
-LICENSE="BSD GPL-3"
-SRC_URI="https://github.com/appneta/${PN}/releases/download/v${PV/_/-}/${P/_/-}.tar.gz
 -> ${P}.tar.gz"
-
-SLOT="0"
-KEYWORDS="~amd64 ~sparc ~x86"
-IUSE="debug pcapnav +tcpdump"
-
-DEPEND="
-   >=sys-devel/autogen-5.18.4[libopts]
-   dev-libs/libdnet
-   >=net-libs/libpcap-0.9
-   tcpdump? ( net-analyzer/tcpdump )
-   pcapnav? ( net-libs/libpcapnav )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=(
-   docs/{CHANGELOG,CREDIT,HACKING,TODO}
-)
-PATCHES=(
-   "${FILESDIR}"/${PN}-4.1.0-enable-pcap_findalldevs.patch
-)
-
-S=${WORKDIR}/${P/_/-}
-
-src_prepare() {
-   default
-
-   sed -i \
-   -e 's|#include |#include |g' \
-   src/common/sendpacket.c || die
-   sed -i \
-   -e 's|@\([A-Z_]*\)@|$(\1)|g' \
-   -e '/tcpliveplay_CFLAGS/s|$| $(LDNETINC)|g' \
-   -e '/tcpliveplay_LDADD/s|$| $(LDNETLIB)|g' \
-   src/Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   # By default it uses static linking. Avoid that, bug 252940
-   econf \
-   $(use_enable debug) \
-   $(use_with pcapnav pcapnav-config /usr/bin/pcapnav-config) \
-   $(use_with tcpdump tcpdump /usr/sbin/tcpdump) \
-   --disable-local-libopts \
-   --enable-dynamic-link \
-   --enable-shared \
-   --with-libdnet \
-   --with-testnic2=lo \
-   --with-testnic=lo
-}
-
-src_test() {
-   if [[ ! ${EUID} -eq 0 ]]; then
-   ewarn "Some tests were disabled due to FEATURES=userpriv"
-   ewarn "To run all tests issue the following command as root:"
-   ewarn " # make -C ${S}/test"
-   emake -j1 -C test tcpprep || die "self test failed - see 
${S}/test/test.log"
-   else
-   emake -j1 test || {
-   ewarn "Note, that some tests require eth0 iface to be 
UP." ;
-   die "self test failed - see ${S}/test/test.log" ; }
-   fi
-}



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

2018-12-31 Thread Jeroen Roovers
commit: db55a059572de84d5bb25032009711b652f2d527
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Dec 31 17:00:32 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Dec 31 17:00:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db55a059

net-misc/wget: Stable for HPPA too.

Package-Manager: Portage-2.3.53, Repoman-2.3.12
RepoMan-Options: --ignore-arches
Signed-off-by: Jeroen Roovers  gentoo.org>

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

diff --git a/net-misc/wget/wget-1.20.1.ebuild b/net-misc/wget/wget-1.20.1.ebuild
index b45cb959488..54ecf263fc8 100644
--- a/net-misc/wget/wget-1.20.1.ebuild
+++ b/net-misc/wget/wget-1.20.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/wget/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib"
 REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )"
 



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

2018-12-31 Thread Jeroen Roovers
commit: 09cf6be9116406ac83b4cd40f7041d70402e86fa
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Dec 31 16:59:27 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Dec 31 17:00:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09cf6be9

dev-libs/gost-engine: Mark ~hppa too.

Package-Manager: Portage-2.3.53, Repoman-2.3.12
RepoMan-Options: --ignore-arches
Signed-off-by: Jeroen Roovers  gentoo.org>

 dev-libs/gost-engine/gost-engine-1.1.0.3_p20181031.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/gost-engine/gost-engine-1.1.0.3_p20181031.ebuild 
b/dev-libs/gost-engine/gost-engine-1.1.0.3_p20181031.ebuild
index bcc01c052ff..10f11b05bdd 100644
--- a/dev-libs/gost-engine/gost-engine-1.1.0.3_p20181031.ebuild
+++ b/dev-libs/gost-engine/gost-engine-1.1.0.3_p20181031.ebuild
@@ -28,7 +28,7 @@ if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/gost-engine/engine.git;
inherit git-r3
 else
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~hppa"

SRC_URI="https://github.com/gost-engine/engine/archive/e5cc3684f3b3ad40e186e23b00b253d234df92ab.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/engine-e5cc3684f3b3ad40e186e23b00b253d234df92ab"
 fi



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

2018-12-31 Thread Thomas Deutschmann
commit: b628d7179272c544fcbcf5c72cac5836c46f3cc5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 31 16:34:23 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 31 16:34:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b628d717

media-gfx/photoqt: x86 stable (bug #665556)

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

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

diff --git a/media-gfx/photoqt/photoqt-1.7.1.ebuild 
b/media-gfx/photoqt/photoqt-1.7.1.ebuild
index a865dab8014..9abea34299f 100644
--- a/media-gfx/photoqt/photoqt-1.7.1.ebuild
+++ b/media-gfx/photoqt/photoqt-1.7.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://photoqt.org/pkgs/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="devil exif freeimage graphicsmagick pdf raw"
 
 RDEPEND="



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

2018-12-31 Thread Thomas Deutschmann
commit: a8466a88b56596a742b565dd52aae65e01b78ac3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 31 16:35:05 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 31 16:35:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8466a88

sys-devel/remake: x86 stable (bug #636198)

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

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

diff --git a/sys-devel/remake/remake-4.2.1.1.4-r1.ebuild 
b/sys-devel/remake/remake-4.2.1.1.4-r1.ebuild
index ad57875a4a9..eb7a2bab5fa 100644
--- a/sys-devel/remake/remake-4.2.1.1.4-r1.ebuild
+++ b/sys-devel/remake/remake-4.2.1.1.4-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/bashdb/${MY_P}.tar.bz2"
 
 LICENSE="GPL-1"
 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="guile readline"
 
 RDEPEND="readline? ( sys-libs/readline:0= )



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

2018-12-31 Thread Thomas Deutschmann
commit: 8f70106d430bc70813449b8a42bfefed723138a9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 31 16:37:39 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 31 16:37:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f70106d

net-misc/wget: x86 stable (bug #674170)

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

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

diff --git a/net-misc/wget/wget-1.20.1.ebuild b/net-misc/wget/wget-1.20.1.ebuild
index 912dcc73141..b45cb959488 100644
--- a/net-misc/wget/wget-1.20.1.ebuild
+++ b/net-misc/wget/wget-1.20.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/wget/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib"
 REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )"
 



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

2018-12-31 Thread Thomas Deutschmann
commit: 07fc258a002af820f8550ea38daeac753a049815
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 31 16:35:52 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 31 16:35:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07fc258a

media-libs/sdl2-mixer: x86 stable (bug #674132)

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

 media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild 
b/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild
index 97b58879c40..f3dc11dbd3b 100644
--- a/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild
+++ b/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.libsdl.org/projects/SDL_mixer/release/${MY_P}.tar.gz;
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~x86"
+KEYWORDS="~amd64 ~arm ~hppa x86"
 IUSE="flac fluidsynth mad midi mikmod mod modplug mp3 opus playtools 
static-libs timidity tremor vorbis +wav"
 REQUIRED_USE="
midi? ( || ( timidity fluidsynth ) )



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

2018-12-31 Thread Thomas Deutschmann
commit: fc10fa2d8fde2668a9ae26fe860a2251c17f10c5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 31 16:33:56 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 31 16:33:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc10fa2d

media-gfx/nomacs: x86 stable (bug #674030)

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

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

diff --git a/media-gfx/nomacs/nomacs-3.10.2.ebuild 
b/media-gfx/nomacs/nomacs-3.10.2.ebuild
index bd6b71e7f27..049b159eda8 100644
--- a/media-gfx/nomacs/nomacs-3.10.2.ebuild
+++ b/media-gfx/nomacs/nomacs-3.10.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux"
 IUSE="+jpeg +opencv raw tiff zip"
 
 REQUIRED_USE="



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

2018-12-31 Thread Thomas Deutschmann
commit: 5d52b82225eb181ea2b0275cff0ee64a3674d188
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 31 16:33:26 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 31 16:33:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d52b822

sys-fs/inotify-tools: x86 stable (bug #674094)

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

 sys-fs/inotify-tools/inotify-tools-3.20.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/inotify-tools/inotify-tools-3.20.1.ebuild 
b/sys-fs/inotify-tools/inotify-tools-3.20.1.ebuild
index e2c70630687..6b1646d0f0b 100644
--- a/sys-fs/inotify-tools/inotify-tools-3.20.1.ebuild
+++ b/sys-fs/inotify-tools/inotify-tools-3.20.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rvoicilas/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~sparc x86"
 IUSE="doc"
 
 DEPEND="doc? ( app-doc/doxygen )"



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

2018-12-31 Thread Thomas Deutschmann
commit: 9bd6a32e37da08c1b593f978b023795fe9c10add
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 31 16:35:22 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 31 16:35:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd6a32e

media-libs/sdl2-image: x86 stable (bug #674132)

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

 media-libs/sdl2-image/sdl2-image-2.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/sdl2-image/sdl2-image-2.0.4.ebuild 
b/media-libs/sdl2-image/sdl2-image-2.0.4.ebuild
index 08cadf24d1c..05661049907 100644
--- a/media-libs/sdl2-image/sdl2-image-2.0.4.ebuild
+++ b/media-libs/sdl2-image/sdl2-image-2.0.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.libsdl.org/projects/SDL_image/release/${MY_P}.tar.gz;
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="gif jpeg png static-libs tiff webp"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-arch/gzip/

2018-12-31 Thread Thomas Deutschmann
commit: c93840efed3c772706b17f8661ef8f9a4bd87f4c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 31 16:32:52 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 31 16:32:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c93840ef

app-arch/gzip: x86 stable (bug #674100)

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

 app-arch/gzip/gzip-1.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/gzip/gzip-1.9.ebuild b/app-arch/gzip/gzip-1.9.ebuild
index 1987bdf7129..c7d3b459c23 100644
--- a/app-arch/gzip/gzip-1.9.ebuild
+++ b/app-arch/gzip/gzip-1.9.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/gzip/${P}.tar.xz
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="pic static"
 
 PATCHES=(



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

2018-12-31 Thread Thomas Deutschmann
commit: e9191cd7e773d57ac2c6dac3790d9fb17d677110
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 31 16:36:27 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 31 16:36:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9191cd7

sys-fs/udftools: x86 stable (bug #674108)

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

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

diff --git a/sys-fs/udftools/udftools-2.0-r2.ebuild 
b/sys-fs/udftools/udftools-2.0-r2.ebuild
index e9f92a56d2b..4d77e587249 100644
--- a/sys-fs/udftools/udftools-2.0-r2.ebuild
+++ b/sys-fs/udftools/udftools-2.0-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/pali/udftools/releases/download/${PV}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="sys-libs/readline:0="



[gentoo-commits] repo/gentoo:master commit in: app-vim/nerdtree/

2018-12-31 Thread Patrice Clement
commit: 939b111820448dbf16826300a0749cbb6323a717
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 31 15:45:53 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=939b1118

app-vim/nerdtree: EAPI 6 bump.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --force

 app-vim/nerdtree/nerdtree-5.0.0-r1.ebuild | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/app-vim/nerdtree/nerdtree-5.0.0-r1.ebuild 
b/app-vim/nerdtree/nerdtree-5.0.0-r1.ebuild
new file mode 100644
index 000..b07c2abb249
--- /dev/null
+++ b/app-vim/nerdtree/nerdtree-5.0.0-r1.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: A tree explorer plugin for navigating the filesystem"
+HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1658 
https://github.com/scrooloose/nerdtree;
+SRC_URI="https://github.com/scrooloose/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="WTFPL-2"
+KEYWORDS="amd64 x86 ~x64-macos"
+
+VIM_PLUGIN_HELPFILES="NERD_tree"
+
+src_prepare() {
+   default
+   rm LICENCE || die
+}



[gentoo-commits] repo/gentoo:master commit in: app-vim/emmet/

2018-12-31 Thread Patrice Clement
commit: 0cc84fd880fbf927b11ae0d5c512684a330a1584
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Dec 25 10:45:22 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cc84fd8

app-vim/emmet: EAPI 6 bump.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --force

 app-vim/emmet/emmet-0.85-r1.ebuild | 13 +
 1 file changed, 13 insertions(+)

diff --git a/app-vim/emmet/emmet-0.85-r1.ebuild 
b/app-vim/emmet/emmet-0.85-r1.ebuild
new file mode 100644
index 000..6d4e2ef712e
--- /dev/null
+++ b/app-vim/emmet/emmet-0.85-r1.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: HTML and CSS hi-speed coding"
+HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=2981 
https://mattn.github.io/emmet-vim/ https://emmet.io/;
+LICENSE="BSD"
+KEYWORDS="amd64 x86"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: app-vim/nerdtree/

2018-12-31 Thread Patrice Clement
commit: 95a869f54b1c72b2a8dcc91df92152495b251c1a
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 31 15:46:07 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a869f5

app-vim/nerdtree: clean up old.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/nerdtree/nerdtree-5.0.0.ebuild | 18 --
 1 file changed, 18 deletions(-)

diff --git a/app-vim/nerdtree/nerdtree-5.0.0.ebuild 
b/app-vim/nerdtree/nerdtree-5.0.0.ebuild
deleted file mode 100644
index d01ff3cf26a..000
--- a/app-vim/nerdtree/nerdtree-5.0.0.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: A tree explorer plugin for navigating the filesystem"
-HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1658 
https://github.com/scrooloose/nerdtree;
-SRC_URI="https://github.com/scrooloose/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="WTFPL-2"
-KEYWORDS="amd64 x86 ~x64-macos"
-
-VIM_PLUGIN_HELPFILES="NERD_tree"
-
-src_prepare() {
-   rm LICENCE || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-vim/dirdiff/

2018-12-31 Thread Patrice Clement
commit: 59eccf7bddfd16a6356ad00f3178424ec88508a8
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Dec 30 09:33:38 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59eccf7b

app-vim/dirdiff: clean up old.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/dirdiff/dirdiff-1.1.5.ebuild | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/app-vim/dirdiff/dirdiff-1.1.5.ebuild 
b/app-vim/dirdiff/dirdiff-1.1.5.ebuild
deleted file mode 100644
index e0cd57fdb82..000
--- a/app-vim/dirdiff/dirdiff-1.1.5.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: diff and merge two directories recursively"
-HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=102;
-LICENSE="BSD"
-KEYWORDS="amd64 x86"
-
-RDEPEND="sys-apps/diffutils"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: app-vim/pathogen/

2018-12-31 Thread Patrice Clement
commit: e35895368ce0e1ef181e9c22e74ee8c42c5f6a42
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 31 15:48:15 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3589536

app-vim/pathogen: clean up old.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/pathogen/pathogen-2.4.ebuild | 14 --
 1 file changed, 14 deletions(-)

diff --git a/app-vim/pathogen/pathogen-2.4.ebuild 
b/app-vim/pathogen/pathogen-2.4.ebuild
deleted file mode 100644
index fc4009c0861..000
--- a/app-vim/pathogen/pathogen-2.4.ebuild
+++ /dev/null
@@ -1,14 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: manage your runtimepath"
-HOMEPAGE="https://github.com/tpope/vim-pathogen/ 
https://www.vim.org/scripts/script.php?script_id=2332;
-SRC_URI="https://github.com/tpope/vim-pathogen/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="vim"
-KEYWORDS="amd64 x86 ~x64-macos"
-
-S=${WORKDIR}/vim-${P}



[gentoo-commits] repo/gentoo:master commit in: app-vim/dirdiff/

2018-12-31 Thread Patrice Clement
commit: b8cf65ef1b38c254fc2865d541c6edadb189e7ee
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Dec 30 09:29:49 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8cf65ef

app-vim/dirdiff: EAPI 6 bump.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --force

 app-vim/dirdiff/dirdiff-1.1.5-r1.ebuild | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/app-vim/dirdiff/dirdiff-1.1.5-r1.ebuild 
b/app-vim/dirdiff/dirdiff-1.1.5-r1.ebuild
new file mode 100644
index 000..e4106987927
--- /dev/null
+++ b/app-vim/dirdiff/dirdiff-1.1.5-r1.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: diff and merge two directories recursively"
+HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=102;
+LICENSE="BSD"
+KEYWORDS="amd64 x86"
+
+RDEPEND="sys-apps/diffutils"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: app-vim/webapi/

2018-12-31 Thread Patrice Clement
commit: ea3dfb9fe80accfea0888f6e07ca89a9ee4907f2
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 24 08:30:22 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea3dfb9f

app-vim/webapi: clean up old.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/webapi/Manifest  |  1 -
 app-vim/webapi/webapi-0.2.ebuild | 14 --
 2 files changed, 15 deletions(-)

diff --git a/app-vim/webapi/Manifest b/app-vim/webapi/Manifest
index 7b3249b6689..17d5f238d41 100644
--- a/app-vim/webapi/Manifest
+++ b/app-vim/webapi/Manifest
@@ -1,2 +1 @@
-DIST webapi-0.2.tar.bz2 20690 BLAKE2B 
5438a88c94f77cbe5ce2a79b11c4da31199cc071b35a22fc78b01c9f4c1195d830353639ca05d3c95182fe3ae5c177cddec9d6acd0b2de198a3f77de5e1ad92f
 SHA512 
ca513053c361041bfaeeea11a0bb70c8e6e011985dc5ba801c654f919dd7d94304b6ff475ce49525909b575e7cc0d9233b56cab2326adc6a689e05c5faf4a3da
 DIST webapi-0.3.tar.gz 26388 BLAKE2B 
878e9f760f9940b81647359fb8779d6386b4bd2d2190c77f2ef886a12a6d293f6f0e5829e05fe98e0c842cb927186f9e4a02dcddcdfe99d5e13d52ae43e7f775
 SHA512 
215516872a32f8d967a9bff6d13916d6571399184728c422babf486152fc4c3f57aa4a7fa7591d7205d4b2dd99138c36796d1f2d186d494d74cf5dd2fa7cdec8

diff --git a/app-vim/webapi/webapi-0.2.ebuild b/app-vim/webapi/webapi-0.2.ebuild
deleted file mode 100644
index 220b40e270c..000
--- a/app-vim/webapi/webapi-0.2.ebuild
+++ /dev/null
@@ -1,14 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: interface to Web APIs"
-HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=4019;
-LICENSE="BSD"
-KEYWORDS="amd64 x86 ~x64-macos"
-IUSE=""
-
-RDEPEND="net-misc/curl"



[gentoo-commits] repo/gentoo:master commit in: app-vim/tagbar/

2018-12-31 Thread Patrice Clement
commit: eb444aab443bf0b248a90c2a4b66eb8319c7224f
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Dec 26 22:26:45 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb444aab

app-vim/tagbar: stable for amd64+x86.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/tagbar/tagbar-2.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/tagbar/tagbar-2.7.ebuild b/app-vim/tagbar/tagbar-2.7.ebuild
index 211696e57ae..6820a54e5e0 100644
--- a/app-vim/tagbar/tagbar-2.7.ebuild
+++ b/app-vim/tagbar/tagbar-2.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ HOMEPAGE="https://majutsushi.github.com/tagbar/
https://www.vim.org/scripts/script.php?script_id=3465;
 SRC_URI="https://github.com/majutsushi/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="vim"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND=">=dev-util/ctags-5.5"
 



[gentoo-commits] repo/gentoo:master commit in: app-vim/pathogen/

2018-12-31 Thread Patrice Clement
commit: ff92e2855e58fbdf81401481a0023d24ccf0d4d9
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 31 15:47:49 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff92e285

app-vim/pathogen: EAPI 6 bump.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --force

 app-vim/pathogen/pathogen-2.4-r1.ebuild | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/app-vim/pathogen/pathogen-2.4-r1.ebuild 
b/app-vim/pathogen/pathogen-2.4-r1.ebuild
new file mode 100644
index 000..94ac011cc1c
--- /dev/null
+++ b/app-vim/pathogen/pathogen-2.4-r1.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: manage your runtimepath"
+HOMEPAGE="https://github.com/tpope/vim-pathogen/ 
https://www.vim.org/scripts/script.php?script_id=2332;
+SRC_URI="https://github.com/tpope/vim-pathogen/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="vim"
+KEYWORDS="amd64 x86 ~x64-macos"
+
+S="${WORKDIR}/vim-${P}"



[gentoo-commits] repo/gentoo:master commit in: app-vim/webapi/

2018-12-31 Thread Patrice Clement
commit: 887b09e0e5a864c5e7dfc29d7e5756acebc2b826
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Dec 24 08:23:24 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=887b09e0

app-vim/webapi: stable for amd64+x86.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/webapi/webapi-0.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/webapi/webapi-0.3.ebuild b/app-vim/webapi/webapi-0.3.ebuild
index 7a9673e4e75..84d31825dee 100644
--- a/app-vim/webapi/webapi-0.3.ebuild
+++ b/app-vim/webapi/webapi-0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ DESCRIPTION="vim plugin: interface to Web APIs"
 HOMEPAGE="https://github.com/mattn/webapi-vim;
 SRC_URI="https://github.com/mattn/${PN}-vim/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="BSD"
-KEYWORDS="~amd64 ~x86 ~x64-macos"
+KEYWORDS="amd64 x86 ~x64-macos"
 
 RDEPEND="net-misc/curl"
 



[gentoo-commits] repo/gentoo:master commit in: app-vim/emmet/

2018-12-31 Thread Patrice Clement
commit: 31362f38c6f4abdf4699b76f383c5a43b791de58
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Dec 25 10:48:01 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31362f38

app-vim/emmet: clean up old.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/emmet/emmet-0.85.ebuild | 13 -
 1 file changed, 13 deletions(-)

diff --git a/app-vim/emmet/emmet-0.85.ebuild b/app-vim/emmet/emmet-0.85.ebuild
deleted file mode 100644
index 3fb6d0a756c..000
--- a/app-vim/emmet/emmet-0.85.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: HTML and CSS hi-speed coding"
-HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=2981 
https://mattn.github.io/emmet-vim/ https://emmet.io/;
-LICENSE="BSD"
-KEYWORDS="amd64 x86"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: app-vim/tagbar/

2018-12-31 Thread Patrice Clement
commit: 65f567edbdd5349eb0c614da63cd6cfc514ec598
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Dec 26 22:26:58 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Dec 31 15:55:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65f567ed

app-vim/tagbar: clean up old.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/tagbar/Manifest|  1 -
 app-vim/tagbar/tagbar-2.6.1.ebuild | 17 -
 2 files changed, 18 deletions(-)

diff --git a/app-vim/tagbar/Manifest b/app-vim/tagbar/Manifest
index 28549d813d6..0294c65e95f 100644
--- a/app-vim/tagbar/Manifest
+++ b/app-vim/tagbar/Manifest
@@ -1,2 +1 @@
-DIST tagbar-2.6.1.tar.gz 51639 BLAKE2B 
623f56dfb1ce7abde3281d9e1564e300f30cbfa9242772532025dd3d85640118b85ad3f68d20d6806ff3d994ba753722e096098231f750195569afc47635487e
 SHA512 
eb0f29dc2f08d943e1ac0c0fe97ed72a49b85e22d105815a5557e205532be379d3ce8429c5303b917c005b465a7385161ff2edc96efc0fc312178155c67a7c22
 DIST tagbar-2.7.tar.gz 59027 BLAKE2B 
6966ee9c412b0e7c9dd562f479ab4ae3fb4574034a32e33257ce95850f2861e333682d01d605f1c39dd6675a506e1792fed8a470b08152d14046bea215292698
 SHA512 
d964d3055f1679aad86b0756cc444a4857eb29ca22f2bd3567ad6c8d073e75d0c8823109038415f5bd1d269bbf8e36da6f34d70fedee54c10f90535ef79ff3c8

diff --git a/app-vim/tagbar/tagbar-2.6.1.ebuild 
b/app-vim/tagbar/tagbar-2.6.1.ebuild
deleted file mode 100644
index a1c2e7fb7e0..000
--- a/app-vim/tagbar/tagbar-2.6.1.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: display tags of the current file ordered by scope"
-HOMEPAGE="https://majutsushi.github.com/tagbar/
-   https://www.vim.org/scripts/script.php?script_id=3465;
-SRC_URI="https://github.com/majutsushi/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="vim"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=dev-util/ctags-5.5"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"



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

2018-12-31 Thread Justin Lecher
commit: 02774e05cf36a8d05aa50672e1955ba8e1fe2230
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 31 15:54:10 2018 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 31 15:54:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02774e05

sys-fs/aufs-util: Don't strip through buildsystem

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Justin Lecher  gentoo.org>

 sys-fs/aufs-util/aufs-util-4.14_p20180709.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-fs/aufs-util/aufs-util-4.14_p20180709.ebuild 
b/sys-fs/aufs-util/aufs-util-4.14_p20180709.ebuild
index 4820dbcdfc7..d68a80251fa 100644
--- a/sys-fs/aufs-util/aufs-util-4.14_p20180709.ebuild
+++ b/sys-fs/aufs-util/aufs-util-4.14_p20180709.ebuild
@@ -42,5 +42,6 @@ src_prepare() {
 
tc-export CC AR
export HOSTCC=$(tc-getCC)
+   export STRIP=true
default
 }



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

2018-12-31 Thread Justin Lecher
commit: c5f8bcffc3004207fc43c2d8853bccd2b1533252
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 31 15:48:51 2018 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 31 15:54:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5f8bcff

sys-fs/aufs-util: Bump to latest aufs release

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Justin Lecher  gentoo.org>

 sys-fs/aufs-util/Manifest|  1 +
 sys-fs/aufs-util/aufs-util-4.14_p20180709.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/sys-fs/aufs-util/Manifest b/sys-fs/aufs-util/Manifest
index ff6ad01b7f4..0ec24458eda 100644
--- a/sys-fs/aufs-util/Manifest
+++ b/sys-fs/aufs-util/Manifest
@@ -2,5 +2,6 @@ DIST aufs-util-3.19_p20150323.tar.xz 97980 BLAKE2B 
ac826545100936b670640e0a277fb
 DIST aufs-util-3.19_p20150420.tar.xz 97980 BLAKE2B 
ade3ed060ab0fa0c37aebcfd52dfe7df3e7aa6b4936277952d128b096fc1c36699e0b7129873afcbeedaea019f12ac461812177bff82362a1a7ee6d261178b9f
 SHA512 
fe329e9efdbd7b585664b81c2bcd2d63ce5344d013eb2d76c6247e042c1cbe44a4a3ab6e8317734c06c24c1eeffe438d8f91a8e57d95b34e238b21a8b9389e8a
 DIST aufs-util-4.0_p20150420.tar.xz 97924 BLAKE2B 
e5daaf71e4f107f63b481dc5b8ba949a230b4b412cfac6744eb991589947743d2eaa2dc22c04684042292d472578471be3e71322a3cac15070616b36319dfd29
 SHA512 
9a988dcd3640e4797c731ab921161bccbd125fc23475e39681b3a398a238715cb85ac8fe8dfc64053af7478c8c33fe28b7e8cc3a2f97eb31e3c4049305043085
 DIST aufs-util-4.0_p20151116.tar.xz 98116 BLAKE2B 
fb1216879439d6972892f45e1401708172c94376e57eeb2eabb43512ea4e664c6d71af42c55a0ecff7d43a6c6a5d35b01f2de40dada5cf9f0070858b3826aed9
 SHA512 
35da6ccff82d7c74f1f9d680ddf17fc438811565b010ead274febac79b4352ee461d66e48b36123f0091d75a5d1c15ea078038a849ded11a20fd6859015abadc
+DIST aufs-util-4.14_p20180709.tar.xz 103724 BLAKE2B 
50df13812b090e5d8aa9a07009822f9a324091471243a76c9432ea22698a6167273e661f5ebf176fb3cc419fbe560e82ff73d6e3b37ed0a85a01e6315b06c8ac
 SHA512 
f6330dfc0ddc36102473d9931c62a7f9a5549a3ad2b78ababedf68d335ef02b155a90327dd0c7d446182530db755b9ff756533f90c540bf8aacca5eb117555df
 DIST aufs-util-4.1_p20161010.tar.xz 100124 BLAKE2B 
21055f22fae04097f0ee67375a1f779a912f503c9ce343890e05338f09603c2a188109c5bdd8dee522385fe154e31528528ea76f6b644f4a03246364c231521b
 SHA512 
2b9eacdafe7f81d84c4d0404e62988222365c00f4fe17abc9038ee6330695445fc49b3b5e5d531afbbbcf690d695297379ca15dedeb3729983d145a751714379
 DIST aufs-util-4.1_p20170130.tar.xz 100144 BLAKE2B 
d3032feeb787e3864247890c2b77468cb39ac1936cebc7e2044a2a58bd84817401b0cf7ab42413ca2c6307430552b49fb642d45e04c42f2729c0a5f1ccfb1589
 SHA512 
bf47829bdd93472a318e3eb1fd76332a95a42b3ec39b4d3392baac419ca70bd47b7b0c6209592ad70c284ee997a71e3448e79fa0ad6b4a6db16ffa0c47ed11ca

diff --git a/sys-fs/aufs-util/aufs-util-4.14_p20180709.ebuild 
b/sys-fs/aufs-util/aufs-util-4.14_p20180709.ebuild
new file mode 100644
index 000..4820dbcdfc7
--- /dev/null
+++ b/sys-fs/aufs-util/aufs-util-4.14_p20180709.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils flag-o-matic linux-info multilib toolchain-funcs
+
+DESCRIPTION="Utilities are always necessary for aufs"
+HOMEPAGE="http://aufs.sourceforge.net/;
+SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;
+# git archive -v --prefix=${P}/ 
--remote=git://git.code.sf.net/p/aufs/aufs-util aufs4.14 -o ${P}.tar
+# xz -ve9 *.tar
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   !sys-fs/aufs2
+   !

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

2018-12-31 Thread Justin Lecher
commit: 9df727eda44f4d8cab831ac7a0420bbb1f6cd094
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 31 15:30:19 2018 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 31 15:54:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9df727ed

sys-fs/aufs-headers: Bump to latest aufs release

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Justin Lecher  gentoo.org>

 sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild 
b/sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild
index be408d85c1c..90968e9d4ff 100644
--- a/sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild
+++ b/sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ inherit versionator
 
 DESCRIPTION="User space headers for aufs3"
 HOMEPAGE="http://aufs.sourceforge.net/;
-# Clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-linux.git
+# Clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs4-linux.git
 # Check aufs release Branch
 # Create .config
 # make headers_install INSTALL_HDR_PATH=${T}



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

2018-12-31 Thread Justin Lecher
commit: bd6704edaa84bf49a9416b398f140a769c91a626
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 31 15:51:20 2018 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 31 15:54:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd6704ed

sys-fs/aufs-headers: Drop old

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Justin Lecher  gentoo.org>

 sys-fs/aufs-headers/Manifest   |  5 
 .../aufs-headers-3.19_p20150323.ebuild | 27 --
 .../aufs-headers-3.19_p20150420.ebuild | 27 --
 .../aufs-headers/aufs-headers-4.0_p20150420.ebuild | 27 --
 .../aufs-headers/aufs-headers-4.0_p20151116.ebuild | 27 --
 .../aufs-headers/aufs-headers-4.1_p20161010.ebuild | 27 --
 6 files changed, 140 deletions(-)

diff --git a/sys-fs/aufs-headers/Manifest b/sys-fs/aufs-headers/Manifest
index 03c1c3f92b7..65a74379bf5 100644
--- a/sys-fs/aufs-headers/Manifest
+++ b/sys-fs/aufs-headers/Manifest
@@ -1,7 +1,2 @@
-DIST aufs-headers-3.19_p20150323.tar.xz 3136 BLAKE2B 
84c90f1068ceb070bc6ccda22dd423d32f09bb594196c767e65b4131f04565ce6f56861b1b536e5b4158e799cf531347aeb60801e6fddf0f651e3e93e0e6e573
 SHA512 
a137003b8b09ac3b929914dba27a13a9c2d803733ab7e073388b2a34f329f0b1ffcbe9646787738565ef28d3be77ca4a9bc520d759db4ca799cb2aa3643ee06f
-DIST aufs-headers-3.19_p20150420.tar.xz 3140 BLAKE2B 
fa41cffdea53264416a53dc6573f302c332df48b87c1a2c05e1cc85b07415685997f3226bb24af55df2ceb867a22396e75b65d1bb2371b674cb27ef82595d516
 SHA512 
257acbdd2439d7250e1903dbd7098d5a71749110caec6f6eecbc2e93b07859b5a751138a8000204ab735e3082ad15fdf249b132a7bac0ad6fbb0994213ab601d
-DIST aufs-headers-4.0_p20150420.tar.xz 3140 BLAKE2B 
9afbbdfa276fdd361481ee3588ef73e267fede346da7ddbb80ab521c25ee5f8aafbbf67e195d1bcf141daf91a308630dc9ab4fe82d5f7dd2f7629ea31ba32655
 SHA512 
fe1d42c66721cf78125070f29fc40dc3f88d84f8a59a35333a427f1d6e0353207ad595a8bd3e12591fcb73a54b76db122d2f2519c7db4dee0557f38dfdc0fe03
-DIST aufs-headers-4.0_p20151116.tar.xz 3136 BLAKE2B 
c5c08b5d160a717853da63f2cc4d0d3248fa250d6913aae44c14136915005df1882d4bedf41606bb5629922f6bd027d8165a62fd1dbebd59f0d9cdfbd7b4ee3a
 SHA512 
58205696948354f8d31230e6b709a136c720de2125bd00fe5929aaa1a70456bccf9c05cbca34412e0092cfd623aedefc8876ece3a7f6b02741a7b1e608aa0f65
 DIST aufs-headers-4.14_p20180709.tar.xz 3352 BLAKE2B 
31b1573de9305518ef7935d7166d720f055c4b70de48943910d9041f976f483759af1998e6aa1dccff89fad0ff391686c4e18c867e700fcd4bb1211cc0004cc6
 SHA512 
e2c4e90c555edc072ebcb348de50e5ec9ba6e2785758d10f14e43c8a03980dfadd58bc9cd37c811648bfabda37e6ed7d0bf36d7099edd26f40672b0ca0f2f226
-DIST aufs-headers-4.1_p20161010.tar.xz 3140 BLAKE2B 
bff9b39380a29d5a2f6c385dc69b882549190a63870c78643cc160919dbda8079bf8785ae22fde6c522591cb1343367b645712c6ec44f2ac760d0f3dfd653a6d
 SHA512 
d47fe0666c4a1d6d9a78cbd94f790d46fee08bf88a17035ab59b7bb488dc1d8239c612bde06c580edd6227d82993ddbe84a5d576f3daae4d83dd51800fe26b03
 DIST aufs-headers-4.1_p20170130.tar.xz 3136 BLAKE2B 
cda05eed3429c84dae70a5c88600e4369d4997cca5d0b8f21c82dcb3449b0b88ac27b3e3216034272a6f2ff53aa455b3eb9dc23fc7cc77473aa53943340df9c7
 SHA512 
d8099a59784739b76eac74de7113754981b6d2d4155eaf42f9d36ea4b6c84f6f49cd96ce0b9e19b2507674cd9b91667fe8520f1cfb7ff0e1d5c58596e784c6d0

diff --git a/sys-fs/aufs-headers/aufs-headers-3.19_p20150323.ebuild 
b/sys-fs/aufs-headers/aufs-headers-3.19_p20150323.ebuild
deleted file mode 100644
index 96d6c06c1da..000
--- a/sys-fs/aufs-headers/aufs-headers-3.19_p20150323.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit versionator
-
-DESCRIPTION="User space headers for aufs3"
-HOMEPAGE="http://aufs.sourceforge.net/;
-# Clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-linux.git
-# Check aufs release Branch
-# Create .config
-# make headers_install INSTALL_HDR_PATH=${T}
-# find ${T} -type f \( ! -name "*aufs*" \) -delete
-# find ${T} -type d -empty -delete
-SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-S="${WORKDIR}"
-
-src_install() {
-   doheader -r include/*
-}

diff --git a/sys-fs/aufs-headers/aufs-headers-3.19_p20150420.ebuild 
b/sys-fs/aufs-headers/aufs-headers-3.19_p20150420.ebuild
deleted file mode 100644
index 96d6c06c1da..000
--- a/sys-fs/aufs-headers/aufs-headers-3.19_p20150420.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit versionator
-
-DESCRIPTION="User space headers for aufs3"
-HOMEPAGE="http://aufs.sourceforge.net/;
-# Clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-linux.git
-# Check aufs release Branch
-# Create .config
-# make headers_install INSTALL_HDR_PATH=${T}
-# find ${T} -type f \( 

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

2018-12-31 Thread Justin Lecher
commit: aa88081f4ace31d22ac3db9dc1f86ca0884f338b
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 31 15:45:16 2018 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 31 15:54:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa88081f

sys-fs/aufs-headers: EAPI bump

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Justin Lecher  gentoo.org>

 sys-fs/aufs-headers/aufs-headers-4.14_p20180709.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys-fs/aufs-headers/aufs-headers-4.14_p20180709.ebuild 
b/sys-fs/aufs-headers/aufs-headers-4.14_p20180709.ebuild
index 90968e9d4ff..1a3ae3719eb 100644
--- a/sys-fs/aufs-headers/aufs-headers-4.14_p20180709.ebuild
+++ b/sys-fs/aufs-headers/aufs-headers-4.14_p20180709.ebuild
@@ -1,9 +1,7 @@
 # Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-
-inherit versionator
+EAPI=7
 
 DESCRIPTION="User space headers for aufs3"
 HOMEPAGE="http://aufs.sourceforge.net/;



[gentoo-commits] repo/gentoo:master commit in: sys-fs/aufs-util/files/, sys-fs/aufs-util/

2018-12-31 Thread Justin Lecher
commit: 54a4040b0b9c03ccb72eedeff108cc0d91972950
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 31 15:50:15 2018 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 31 15:54:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54a4040b

sys-fs/aufs-util: Drop old

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Justin Lecher  gentoo.org>

 sys-fs/aufs-util/Manifest  |  5 ---
 sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild   | 45 -
 sys-fs/aufs-util/aufs-util-3.19_p20150420.ebuild   | 45 -
 sys-fs/aufs-util/aufs-util-4.0_p20150420.ebuild| 46 --
 sys-fs/aufs-util/aufs-util-4.0_p20151116.ebuild| 45 -
 sys-fs/aufs-util/aufs-util-4.1_p20161010.ebuild| 46 --
 .../files/aufs-util-4.0_p20150420-version.patch| 16 
 7 files changed, 248 deletions(-)

diff --git a/sys-fs/aufs-util/Manifest b/sys-fs/aufs-util/Manifest
index 0ec24458eda..b53c4ac21ed 100644
--- a/sys-fs/aufs-util/Manifest
+++ b/sys-fs/aufs-util/Manifest
@@ -1,7 +1,2 @@
-DIST aufs-util-3.19_p20150323.tar.xz 97980 BLAKE2B 
ac826545100936b670640e0a277fb1355329c869f887bffeca400d774fb627c0ce44126e2dcf85b65976302fbcb7b356c8bb734814c44f6259d62437da2ad633
 SHA512 
49f138538ea8997ddb6bedf368815f16a5d42a49b5f72c1548cd9c3718bb00831224e80e9b4dd8c984a6fb40b11223e317757020076d432117541f7d361b892b
-DIST aufs-util-3.19_p20150420.tar.xz 97980 BLAKE2B 
ade3ed060ab0fa0c37aebcfd52dfe7df3e7aa6b4936277952d128b096fc1c36699e0b7129873afcbeedaea019f12ac461812177bff82362a1a7ee6d261178b9f
 SHA512 
fe329e9efdbd7b585664b81c2bcd2d63ce5344d013eb2d76c6247e042c1cbe44a4a3ab6e8317734c06c24c1eeffe438d8f91a8e57d95b34e238b21a8b9389e8a
-DIST aufs-util-4.0_p20150420.tar.xz 97924 BLAKE2B 
e5daaf71e4f107f63b481dc5b8ba949a230b4b412cfac6744eb991589947743d2eaa2dc22c04684042292d472578471be3e71322a3cac15070616b36319dfd29
 SHA512 
9a988dcd3640e4797c731ab921161bccbd125fc23475e39681b3a398a238715cb85ac8fe8dfc64053af7478c8c33fe28b7e8cc3a2f97eb31e3c4049305043085
-DIST aufs-util-4.0_p20151116.tar.xz 98116 BLAKE2B 
fb1216879439d6972892f45e1401708172c94376e57eeb2eabb43512ea4e664c6d71af42c55a0ecff7d43a6c6a5d35b01f2de40dada5cf9f0070858b3826aed9
 SHA512 
35da6ccff82d7c74f1f9d680ddf17fc438811565b010ead274febac79b4352ee461d66e48b36123f0091d75a5d1c15ea078038a849ded11a20fd6859015abadc
 DIST aufs-util-4.14_p20180709.tar.xz 103724 BLAKE2B 
50df13812b090e5d8aa9a07009822f9a324091471243a76c9432ea22698a6167273e661f5ebf176fb3cc419fbe560e82ff73d6e3b37ed0a85a01e6315b06c8ac
 SHA512 
f6330dfc0ddc36102473d9931c62a7f9a5549a3ad2b78ababedf68d335ef02b155a90327dd0c7d446182530db755b9ff756533f90c540bf8aacca5eb117555df
-DIST aufs-util-4.1_p20161010.tar.xz 100124 BLAKE2B 
21055f22fae04097f0ee67375a1f779a912f503c9ce343890e05338f09603c2a188109c5bdd8dee522385fe154e31528528ea76f6b644f4a03246364c231521b
 SHA512 
2b9eacdafe7f81d84c4d0404e62988222365c00f4fe17abc9038ee6330695445fc49b3b5e5d531afbbbcf690d695297379ca15dedeb3729983d145a751714379
 DIST aufs-util-4.1_p20170130.tar.xz 100144 BLAKE2B 
d3032feeb787e3864247890c2b77468cb39ac1936cebc7e2044a2a58bd84817401b0cf7ab42413ca2c6307430552b49fb642d45e04c42f2729c0a5f1ccfb1589
 SHA512 
bf47829bdd93472a318e3eb1fd76332a95a42b3ec39b4d3392baac419ca70bd47b7b0c6209592ad70c284ee997a71e3448e79fa0ad6b4a6db16ffa0c47ed11ca

diff --git a/sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild 
b/sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild
deleted file mode 100644
index 00e8f53be18..000
--- a/sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit flag-o-matic linux-info multilib toolchain-funcs
-
-DESCRIPTION="Utilities are always necessary for aufs"
-HOMEPAGE="http://aufs.sourceforge.net/;
-SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;
-# git archive -v --prefix=${P}/ 
--remote=git://git.code.sf.net/p/aufs/aufs-util aufs3.14 -o ${P}.tar
-# xz -ve9 *.tar
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   !sys-fs/aufs2
-   !http://aufs.sourceforge.net/;
-SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;
-# git archive -v --prefix=${P}/ 
--remote=git://git.code.sf.net/p/aufs/aufs-util aufs3.14 -o ${P}.tar
-# xz -ve9 *.tar
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   !sys-fs/aufs2
-   !http://aufs.sourceforge.net/;
-SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;
-# git archive -v --prefix=${P}/ 
--remote=git://git.code.sf.net/p/aufs/aufs-util aufs4.0 -o ${P}.tar
-# xz -ve9 *.tar
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   !sys-fs/aufs2
-   !http://aufs.sourceforge.net/;
-SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;
-# git archive -v --prefix=${P}/ 

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

2018-12-31 Thread Justin Lecher
commit: 0985de5a9a1a56b955bbe4c68ee3359daa337dea
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Dec 31 15:38:49 2018 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Dec 31 15:54:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0985de5a

sys-fs/aufs-headers: Bump to latest aufs release

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Justin Lecher  gentoo.org>

 sys-fs/aufs-headers/Manifest| 1 +
 ...-headers-4.1_p20170130.ebuild => aufs-headers-4.14_p20180709.ebuild} | 0
 sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild   | 2 +-
 3 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/sys-fs/aufs-headers/Manifest b/sys-fs/aufs-headers/Manifest
index e2580bc8f50..03c1c3f92b7 100644
--- a/sys-fs/aufs-headers/Manifest
+++ b/sys-fs/aufs-headers/Manifest
@@ -2,5 +2,6 @@ DIST aufs-headers-3.19_p20150323.tar.xz 3136 BLAKE2B 
84c90f1068ceb070bc6ccda22dd
 DIST aufs-headers-3.19_p20150420.tar.xz 3140 BLAKE2B 
fa41cffdea53264416a53dc6573f302c332df48b87c1a2c05e1cc85b07415685997f3226bb24af55df2ceb867a22396e75b65d1bb2371b674cb27ef82595d516
 SHA512 
257acbdd2439d7250e1903dbd7098d5a71749110caec6f6eecbc2e93b07859b5a751138a8000204ab735e3082ad15fdf249b132a7bac0ad6fbb0994213ab601d
 DIST aufs-headers-4.0_p20150420.tar.xz 3140 BLAKE2B 
9afbbdfa276fdd361481ee3588ef73e267fede346da7ddbb80ab521c25ee5f8aafbbf67e195d1bcf141daf91a308630dc9ab4fe82d5f7dd2f7629ea31ba32655
 SHA512 
fe1d42c66721cf78125070f29fc40dc3f88d84f8a59a35333a427f1d6e0353207ad595a8bd3e12591fcb73a54b76db122d2f2519c7db4dee0557f38dfdc0fe03
 DIST aufs-headers-4.0_p20151116.tar.xz 3136 BLAKE2B 
c5c08b5d160a717853da63f2cc4d0d3248fa250d6913aae44c14136915005df1882d4bedf41606bb5629922f6bd027d8165a62fd1dbebd59f0d9cdfbd7b4ee3a
 SHA512 
58205696948354f8d31230e6b709a136c720de2125bd00fe5929aaa1a70456bccf9c05cbca34412e0092cfd623aedefc8876ece3a7f6b02741a7b1e608aa0f65
+DIST aufs-headers-4.14_p20180709.tar.xz 3352 BLAKE2B 
31b1573de9305518ef7935d7166d720f055c4b70de48943910d9041f976f483759af1998e6aa1dccff89fad0ff391686c4e18c867e700fcd4bb1211cc0004cc6
 SHA512 
e2c4e90c555edc072ebcb348de50e5ec9ba6e2785758d10f14e43c8a03980dfadd58bc9cd37c811648bfabda37e6ed7d0bf36d7099edd26f40672b0ca0f2f226
 DIST aufs-headers-4.1_p20161010.tar.xz 3140 BLAKE2B 
bff9b39380a29d5a2f6c385dc69b882549190a63870c78643cc160919dbda8079bf8785ae22fde6c522591cb1343367b645712c6ec44f2ac760d0f3dfd653a6d
 SHA512 
d47fe0666c4a1d6d9a78cbd94f790d46fee08bf88a17035ab59b7bb488dc1d8239c612bde06c580edd6227d82993ddbe84a5d576f3daae4d83dd51800fe26b03
 DIST aufs-headers-4.1_p20170130.tar.xz 3136 BLAKE2B 
cda05eed3429c84dae70a5c88600e4369d4997cca5d0b8f21c82dcb3449b0b88ac27b3e3216034272a6f2ff53aa455b3eb9dc23fc7cc77473aa53943340df9c7
 SHA512 
d8099a59784739b76eac74de7113754981b6d2d4155eaf42f9d36ea4b6c84f6f49cd96ce0b9e19b2507674cd9b91667fe8520f1cfb7ff0e1d5c58596e784c6d0

diff --git a/sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild 
b/sys-fs/aufs-headers/aufs-headers-4.14_p20180709.ebuild
similarity index 100%
copy from sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild
copy to sys-fs/aufs-headers/aufs-headers-4.14_p20180709.ebuild

diff --git a/sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild 
b/sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild
index 90968e9d4ff..9cdf2fc061a 100644
--- a/sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild
+++ b/sys-fs/aufs-headers/aufs-headers-4.1_p20170130.ebuild
@@ -7,7 +7,7 @@ inherit versionator
 
 DESCRIPTION="User space headers for aufs3"
 HOMEPAGE="http://aufs.sourceforge.net/;
-# Clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs4-linux.git
+# Clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-linux.git
 # Check aufs release Branch
 # Create .config
 # make headers_install INSTALL_HDR_PATH=${T}



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

2018-12-31 Thread Hans de Graaff
commit: 48a66e6068c1f51203ab8a156479fa8ef3d75640
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Dec 31 15:18:42 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Dec 31 15:18:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48a66e60

dev-ruby/nokogiri: add ruby26

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

 dev-ruby/nokogiri/nokogiri-1.9.1.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-ruby/nokogiri/nokogiri-1.9.1.ebuild 
b/dev-ruby/nokogiri/nokogiri-1.9.1.ebuild
index aaa2eebed44..c94e4fe9159 100644
--- a/dev-ruby/nokogiri/nokogiri-1.9.1.ebuild
+++ b/dev-ruby/nokogiri/nokogiri-1.9.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md ROADMAP.md STANDARD_RESPONSES.md"
@@ -31,7 +31,6 @@ DEPEND="${DEPEND}
virtual/libiconv"
 
 ruby_add_bdepend "
-   dev-ruby/hoe
>=dev-ruby/pkg-config-1.1.7
dev-ruby/rexical
dev-ruby/rdoc



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

2018-12-31 Thread Hans de Graaff
commit: 0c046a56bc11ec72cb24830eb148ec29898a25f4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Dec 31 15:09:14 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Dec 31 15:09:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c046a56

dev-ruby/rexical: add ruby26

EAPI=6
Drop dependency on dev-ruby/hoe

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

 dev-ruby/rexical/rexical-1.0.5-r4.ebuild | 42 
 1 file changed, 42 insertions(+)

diff --git a/dev-ruby/rexical/rexical-1.0.5-r4.ebuild 
b/dev-ruby/rexical/rexical-1.0.5-r4.ebuild
new file mode 100644
index 000..250d7adfdee
--- /dev/null
+++ b/dev-ruby/rexical/rexical-1.0.5-r4.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc  DOCUMENTATION.en.rdoc  
DOCUMENTATION.ja.rdoc  README.ja  README.rdoc"
+
+inherit ruby-fakegem eutils
+
+DESCRIPTION="Rexical is a lexical scanner generator"
+HOMEPAGE="https://github.com/tenderlove/rexical/tree/master;
+LICENSE="LGPL-2" # plus exception
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE=""
+
+# File collision, bug 459116
+RDEPEND+=" !!app-admin/rex"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/test-unit:2
+   )"
+
+all_ruby_prepare() {
+   sed -i -e '1igem "test-unit"' test/test_generator.rb || die
+}
+
+each_ruby_test() {
+   ruby-ng_testrb-2 -Ilib test/test_*.rb
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc sample/* || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/dmg2img/, sys-fs/dmg2img/files/

2018-12-31 Thread Lars Wendler
commit: 35f4591df05a0748eadbefb847a5d362803b7edb
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 31 12:22:23 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 31 12:22:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35f4591d

sys-fs/dmg2img: Revbump to fix build against openssl-1.1

bumped to EAPI-6.

Closes: https://bugs.gentoo.org/674168
Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-fs/dmg2img/dmg2img-1.6.7-r1.ebuild |  39 
 sys-fs/dmg2img/files/dmg2img-1.6.7-openssl11.patch | 202 +
 2 files changed, 241 insertions(+)

diff --git a/sys-fs/dmg2img/dmg2img-1.6.7-r1.ebuild 
b/sys-fs/dmg2img/dmg2img-1.6.7-r1.ebuild
new file mode 100644
index 000..bf3ba7ee1f5
--- /dev/null
+++ b/sys-fs/dmg2img/dmg2img-1.6.7-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit toolchain-funcs
+
+DESCRIPTION="Converts Apple DMG files to standard HFS+ images"
+HOMEPAGE="http://vu1tur.eu.org/tools;
+SRC_URI="http://vu1tur.eu.org/tools/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND="dev-libs/openssl:0=
+   app-arch/bzip2
+   sys-libs/zlib"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-openssl11.patch #674168
+)
+
+src_prepare() {
+   default
+   sed -i -e 's:-s:$(LDFLAGS):g' Makefile || die "sed failed"
+}
+
+src_compile() {
+   tc-export CC
+   emake CFLAGS="${CFLAGS}"
+}
+
+src_install() {
+   dobin dmg2img vfdecrypt
+   dodoc README
+   doman vfdecrypt.1
+}

diff --git a/sys-fs/dmg2img/files/dmg2img-1.6.7-openssl11.patch 
b/sys-fs/dmg2img/files/dmg2img-1.6.7-openssl11.patch
new file mode 100644
index 000..53b73038ade
--- /dev/null
+++ b/sys-fs/dmg2img/files/dmg2img-1.6.7-openssl11.patch
@@ -0,0 +1,202 @@
+diff --git a/old/vfdecrypt.c b/vfdecrypt.c
+index 56d3530..b1a36d3 100644
+--- a/old/vfdecrypt.c
 b/vfdecrypt.c
+@@ -183,7 +183,7 @@ void adjust_v2_header_byteorder(cencrypted_v2_pwheader 
*pwhdr) {
+   pwhdr->encrypted_keyblob_size = htonl(pwhdr->encrypted_keyblob_size);
+ }
+ 
+-HMAC_CTX hmacsha1_ctx;
++HMAC_CTX *hmacsha1_ctx;
+ AES_KEY aes_decrypt_key;
+ int CHUNK_SIZE=4096;  // default
+ 
+@@ -196,9 +196,9 @@ void compute_iv(uint32_t chunk_no, uint8_t *iv) {
+   unsigned int mdLen;
+   
+   chunk_no = OSSwapHostToBigInt32(chunk_no);
+-  HMAC_Init_ex(_ctx, NULL, 0, NULL, NULL);
+-  HMAC_Update(_ctx, (void *) _no, sizeof(uint32_t));
+-  HMAC_Final(_ctx, mdResult, );
++  HMAC_Init_ex(hmacsha1_ctx, NULL, 0, NULL, NULL);
++  HMAC_Update(hmacsha1_ctx, (void *) _no, sizeof(uint32_t));
++  HMAC_Final(hmacsha1_ctx, mdResult, );
+   memcpy(iv, mdResult, CIPHER_BLOCKSIZE);
+ }
+ 
+@@ -212,52 +212,75 @@ void decrypt_chunk(uint8_t *ctext, uint8_t *ptext, 
uint32_t chunk_no) {
+ /* DES3-EDE unwrap operation loosely based on to RFC 2630, section 12.6 
+  *wrapped_key has to be 40 bytes in length.  */
+ int apple_des3_ede_unwrap_key(uint8_t *wrapped_key, int wrapped_key_len, 
uint8_t *decryptKey, uint8_t *unwrapped_key) {
+-  EVP_CIPHER_CTX ctx;
++  EVP_CIPHER_CTX *ctx;
+   uint8_t *TEMP1, *TEMP2, *CEKICV;
+   uint8_t IV[8] = { 0x4a, 0xdd, 0xa2, 0x2c, 0x79, 0xe8, 0x21, 0x05 };
+   int outlen, tmplen, i;
+ 
+-  EVP_CIPHER_CTX_init();
++#if OPENSSL_VERSION_NUMBER >= 0x1010L
++  ctx = EVP_CIPHER_CTX_new();
++#else
++  ctx = malloc(sizeof(*ctx));
++#endif
++  if (!ctx) {
++fprintf(stderr, "Out of memory: EVP_CIPHER_CTX!\n");
++return(-1);
++  }
++
++  EVP_CIPHER_CTX_init(ctx);
+   /* result of the decryption operation shouldn't be bigger than ciphertext */
+   TEMP1 = malloc(wrapped_key_len);
+   TEMP2 = malloc(wrapped_key_len);
+   CEKICV = malloc(wrapped_key_len);
+   /* uses PKCS#7 padding for symmetric key operations by default */
+-  EVP_DecryptInit_ex(, EVP_des_ede3_cbc(), NULL, decryptKey, IV);
++  EVP_DecryptInit_ex(ctx, EVP_des_ede3_cbc(), NULL, decryptKey, IV);
+ 
+-  if(!EVP_DecryptUpdate(, TEMP1, , wrapped_key, wrapped_key_len)) {
++  if(!EVP_DecryptUpdate(ctx, TEMP1, , wrapped_key, wrapped_key_len)) {
+ fprintf(stderr, "internal error (1) during key unwrap operation!\n");
+ return(-1);
+   }
+-  if(!EVP_DecryptFinal_ex(, TEMP1 + outlen, )) {
++  if(!EVP_DecryptFinal_ex(ctx, TEMP1 + outlen, )) {
+ fprintf(stderr, "internal error (2) during key unwrap operation!\n");
+ return(-1);
+   }
+   outlen += tmplen;
+-  EVP_CIPHER_CTX_cleanup();
++#if OPENSSL_VERSION_NUMBER >= 0x1010L
++  EVP_CIPHER_CTX_reset(ctx);
++#else
++  EVP_CIPHER_CTX_cleanup(ctx);
++#endif
+ 
+   /* reverse order of TEMP3 */
+   for(i = 0; i < outlen; i++) TEMP2[i] = TEMP1[outlen - i - 1];
+ 
+-  EVP_CIPHER_CTX_init();
++  EVP_CIPHER_CTX_init(ctx);
+   /* uses PKCS#7 padding for symmetric key operations by default */
+-  EVP_DecryptInit_ex(, EVP_des_ede3_cbc(), NULL, 

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

2018-12-31 Thread Lars Wendler
commit: d1b9afe81018e238253e9a4a431cb03621b92ab7
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 31 12:21:08 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 31 12:22:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1b9afe8

sys-fs/dmg2img: Removed old.

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-fs/dmg2img/Manifest |  2 --
 sys-fs/dmg2img/dmg2img-1.6.5.ebuild | 35 ---
 sys-fs/dmg2img/dmg2img-1.6.6.ebuild | 35 ---
 3 files changed, 72 deletions(-)

diff --git a/sys-fs/dmg2img/Manifest b/sys-fs/dmg2img/Manifest
index 7d754139c77..52e95584018 100644
--- a/sys-fs/dmg2img/Manifest
+++ b/sys-fs/dmg2img/Manifest
@@ -1,3 +1 @@
-DIST dmg2img-1.6.5.tar.gz 23442 BLAKE2B 
d5504436ae95b0b6122924e6e950d8ca6c851912449c1f47307b34c50eae8446613ddfba2b046aa4b0638301d19809ebae33aa651ead4308dadd644a48a2c2f1
 SHA512 
31528a23986848a8ab319768a8254db6b0035324cbac8328ef865b98ab2cddfd606da19a27202c4ef53cdc5dda75aca489859f82115a5dde6fe9b1f20cd6bd46
-DIST dmg2img-1.6.6.tar.gz 23115 BLAKE2B 
ba942c2d5f12af901520acf60c8925cc38762dce60b250580d63efdc26ddb381619322a4c7ae92ebbb95783cfac9babca43d83c58e1af60dd07669f842df7715
 SHA512 
3bfea079f2bec24a56146314fe9135f92dae934e01edbc8435b0aff88d17ff8c3626e533435fad41ccee5d75a6262230ae87c75147744a1bf6625b656fc75713
 DIST dmg2img-1.6.7.tar.gz 23238 BLAKE2B 
d4dc8da2974bc296e8aba21de816413df797322c6194e4ece3d0900d64fcd33084b29be6172a45bdc3f515c2e10544f107be2c7f0e6b7d247cf5d6bc5ad03e2f
 SHA512 
4c42841c5cdbf868b6038648a6c83e78d4b7f2010f7065d7b3f4c2c04d13af9489716c1dfa867aff5f3c3b3eef96dc3fc0610eff13fec139265f37f468e339e6

diff --git a/sys-fs/dmg2img/dmg2img-1.6.5.ebuild 
b/sys-fs/dmg2img/dmg2img-1.6.5.ebuild
deleted file mode 100644
index 914a2e834b4..000
--- a/sys-fs/dmg2img/dmg2img-1.6.5.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit toolchain-funcs
-
-DESCRIPTION="Converts Apple DMG files to standard HFS+ images"
-HOMEPAGE="http://vu1tur.eu.org/tools;
-SRC_URI="http://vu1tur.eu.org/tools/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-RDEPEND="dev-libs/openssl
-   app-arch/bzip2
-   sys-libs/zlib"
-DEPEND="${RDEPEND}
-   sys-apps/sed"
-
-src_prepare() {
-   sed -i -e 's:-s:$(LDFLAGS):g' Makefile || die "sed failed"
-}
-
-src_compile() {
-   tc-export CC
-   emake CFLAGS="${CFLAGS}"
-}
-
-src_install() {
-   dobin dmg2img vfdecrypt
-   dodoc README
-   doman vfdecrypt.1
-}

diff --git a/sys-fs/dmg2img/dmg2img-1.6.6.ebuild 
b/sys-fs/dmg2img/dmg2img-1.6.6.ebuild
deleted file mode 100644
index a212ddf78d6..000
--- a/sys-fs/dmg2img/dmg2img-1.6.6.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit toolchain-funcs
-
-DESCRIPTION="Converts Apple DMG files to standard HFS+ images"
-HOMEPAGE="http://vu1tur.eu.org/tools;
-SRC_URI="http://vu1tur.eu.org/tools/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-RDEPEND="dev-libs/openssl:0=
-   app-arch/bzip2
-   sys-libs/zlib"
-DEPEND="${RDEPEND}
-   sys-apps/sed"
-
-src_prepare() {
-   sed -i -e 's:-s:$(LDFLAGS):g' Makefile || die "sed failed"
-}
-
-src_compile() {
-   tc-export CC
-   emake CFLAGS="${CFLAGS}"
-}
-
-src_install() {
-   dobin dmg2img vfdecrypt
-   dodoc README
-   doman vfdecrypt.1
-}



[gentoo-commits] repo/gentoo:master commit in: app-arch/gzip/

2018-12-31 Thread Sergei Trofimovich
commit: f4013dfdb55e86dee044a3c071af0b91b5475b8a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Dec 31 10:22:37 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Dec 31 10:59:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4013dfd

app-arch/gzip: stable 1.9 for sparc, bug #674100

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

 app-arch/gzip/gzip-1.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/gzip/gzip-1.9.ebuild b/app-arch/gzip/gzip-1.9.ebuild
index 8b9d2dcb48b..1987bdf7129 100644
--- a/app-arch/gzip/gzip-1.9.ebuild
+++ b/app-arch/gzip/gzip-1.9.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/gzip/${P}.tar.xz
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="pic static"
 
 PATCHES=(



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

2018-12-31 Thread Sergei Trofimovich
commit: 6e3aa03c36312d1d24b777b27687a677a14ad72e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Dec 31 08:02:54 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Dec 31 10:59:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e3aa03c

dev-libs/icu-layoutex: stable 63.1 for sparc, bug #670456

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

 dev-libs/icu-layoutex/icu-layoutex-63.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/icu-layoutex/icu-layoutex-63.1.ebuild 
b/dev-libs/icu-layoutex/icu-layoutex-63.1.ebuild
index 304d24aec28..a57e7bd99f0 100644
--- a/dev-libs/icu-layoutex/icu-layoutex-63.1.ebuild
+++ b/dev-libs/icu-layoutex/icu-layoutex-63.1.ebuild
@@ -13,7 +13,7 @@ LICENSE="BSD"
 
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
 IUSE="debug static-libs"
 
 RDEPEND="



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

2018-12-31 Thread Sergei Trofimovich
commit: 5edd8443f20dcda2d06e0d914f80787c39a873f3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Dec 31 08:01:51 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Dec 31 10:59:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5edd8443

dev-libs/icu: stable 63.1-r1 for sparc, bug #670456

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

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

diff --git a/dev-libs/icu/icu-63.1-r1.ebuild b/dev-libs/icu/icu-63.1-r1.ebuild
index 148fa0bcb7b..e069f52e1b3 100644
--- a/dev-libs/icu/icu-63.1-r1.ebuild
+++ b/dev-libs/icu/icu-63.1-r1.ebuild
@@ -13,7 +13,7 @@ LICENSE="BSD"
 
 SLOT="0/${PV}"
 
-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 ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 IUSE="debug doc examples static-libs"
 
 DEPEND="



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

2018-12-31 Thread Sergei Trofimovich
commit: f8df169fc1856216e0405797230f7fe9e25f194f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Dec 31 10:21:32 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Dec 31 10:59:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8df169f

sys-fs/udftools: stable 2.0-r2 for sparc, bug #674108

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

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

diff --git a/sys-fs/udftools/udftools-2.0-r2.ebuild 
b/sys-fs/udftools/udftools-2.0-r2.ebuild
index 61a0e51bb57..e9f92a56d2b 100644
--- a/sys-fs/udftools/udftools-2.0-r2.ebuild
+++ b/sys-fs/udftools/udftools-2.0-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/pali/udftools/releases/download/${PV}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="sys-libs/readline:0="



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

2018-12-31 Thread Matthew Thode
commit: 2ee8042307265454ecdbdf8867fe7791b662796b
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Dec 31 10:56:14 2018 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Dec 31 10:56:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ee80423

www-apps/icingaweb2: 2.6.2-r1 fix up deps

Closes: https://bugs.gentoo.org/674102
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 www-apps/icingaweb2/icingaweb2-2.6.2-r1.ebuild | 71 ++
 1 file changed, 71 insertions(+)

diff --git a/www-apps/icingaweb2/icingaweb2-2.6.2-r1.ebuild 
b/www-apps/icingaweb2/icingaweb2-2.6.2-r1.ebuild
new file mode 100644
index 000..86c82967924
--- /dev/null
+++ b/www-apps/icingaweb2/icingaweb2-2.6.2-r1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit depend.apache eutils multilib user
+
+DESCRIPTION="Icinga Web 2 - Frontend for icinga2"
+HOMEPAGE="http://www.icinga.org/;
+SRC_URI="https://codeload.github.com/Icinga/${PN}/tar.gz/v${PV} -> ${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="apache2 fpm ldap mysql nginx pdf postgres"
+REQUIRED_USE="^^ ( apache2 nginx )"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND=">=net-analyzer/icinga2-2.1.1
+   dev-php/pecl-imagick
+   pdf? ( media-gfx/imagemagick[png] )
+   apache2? ( >=www-servers/apache-2.4.0 )
+   nginx? ( >=www-servers/nginx-1.7.0:* )
+   || (
+   
dev-lang/php:5.6[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   
dev-lang/php:7.0[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   
dev-lang/php:7.1[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   
dev-lang/php:7.2[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   )"
+RDEPEND="${DEPEND}"
+
+want_apache2
+
+pkg_setup() {
+   depend.apache_pkg_setup
+
+   enewgroup icingaweb2
+   enewgroup icingacmd
+   use nginx && usermod -a -G icingacmd,icingaweb2 nginx
+   use apache2 && usermod -a -G icingacmd,icingaweb2 apache
+}
+
+pkg_config() {
+   if [[ -d /etc/icingaweb2 ]] ; then
+   einfo "Updating existing installation ..."
+   else
+   einfo "Running first time setup ..."
+   einfo "Creating configuration directory ..."
+   /usr/share/${PN}/bin/icingacli setup config directory
+   einfo "Creating authentication token for web setup ..."
+   /usr/share/${PN}/bin/icingacli setup token create
+   if use apache2 ; then
+   einfo "The following might be useful for your Apache2 
configuration:"
+   /usr/share/${PN}/bin/icingacli setup config webserver 
apache --document-root /usr/share/${PN}/public
+   fi
+   if use nginx ; then
+   einfo "The following might be useful for your NGinx 
configuration:"
+   /usr/share/${PN}/bin/icingacli setup config webserver 
nginx --document-root /usr/share/${PN}/public
+   fi
+   fi
+   einfo "All done."
+}
+
+src_install() {
+   insinto "/usr/share/${PN}"
+   doins -r "${S}"/*
+   fperms -R a+rX "/usr/share/${PN}/public/"
+   fperms u+x,g+x "/usr/share/${PN}/bin/icingacli"
+}
+
+pkg_postinst() {
+   einfo "Run 'emerge --config =${CATEGORY}/${PF}' to finish setup."
+}



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

2018-12-31 Thread Lars Wendler
commit: 58c7d390241abcd498e86f62f2b9183ade7f35e4
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 31 10:36:35 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 31 10:39:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58c7d390

sys-apps/smartmontools: Bump to version 7.0

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/smartmontools/Manifest |   1 +
 sys-apps/smartmontools/smartmontools-7.0.ebuild | 151 
 2 files changed, 152 insertions(+)

diff --git a/sys-apps/smartmontools/Manifest b/sys-apps/smartmontools/Manifest
index a027c49ebfb..4637fa2c24a 100644
--- a/sys-apps/smartmontools/Manifest
+++ b/sys-apps/smartmontools/Manifest
@@ -1,3 +1,4 @@
 DIST smartmontools-6.4.tar.gz 822539 BLAKE2B 
be76ec24cf24b2388a77758a1df5b5b9b19bd455dda26df6c13184051a51feeb0baf164265fcfe15b1d2ac41767d546109dea53cd7ac290d02f6e03b44da454f
 SHA512 
366cd55ec668da1ca8a3d9ba79d5bee6e0c59032936b7f2f161f8fbb1c9f869c505d715cc10562b6241f808bb8b534feaf9d9fd752f6cb1593ee893611742adc
 DIST smartmontools-6.5.tar.gz 855642 BLAKE2B 
25f78de8fd58497cf052e75aef746c15af8d56d2694007c1d6e2f8e31cae3b517babfc52ef73d3ae4bc5104a49e4bac16a48f23f3b3145228997bef0aad823dd
 SHA512 
dca7a6363ab7280ee4197155025f624c978886dcc94fc47b524f6f849138b62c471e966c0d4bf59c7bba50519dc122264618e5ded80a406863ddd10b43d928d3
 DIST smartmontools-6.6.tar.gz 903847 BLAKE2B 
6c18884cf763c146abceed47587de0e77cd434673df6a17e4527d160f06a5a8762e6ae490fc5ed13a33f819ba23c1924b49dd13620f4a51e6a40dac20a217523
 SHA512 
64bb533dac29f62ddd662a16a12c97df1af9cbac9ac526ce7af0b3bff9da49cf265a2030d91a7160452b56a67e80d7f34c9b4e45bbb320114f55695e2cb5cfaf
+DIST smartmontools-7.0.tar.gz 944925 BLAKE2B 
41b3894efa05471bf358fca4ba87a765e3a54df68c9a617804a9e0853752c57b68fdbaa9d55fa1462a8fa7de1d6cb5630c66929dfe521be38b180944cb80acc9
 SHA512 
96e18a201182579f699d541539ce393e7bc2191e027cfdf7f87455a63da3a14451574f8fe391232047ac941ace453a017193d0a4987a4edb8f7ed9d5007f0512

diff --git a/sys-apps/smartmontools/smartmontools-7.0.ebuild 
b/sys-apps/smartmontools/smartmontools-7.0.ebuild
new file mode 100644
index 000..46b1cf2cff3
--- /dev/null
+++ b/sys-apps/smartmontools/smartmontools-7.0.ebuild
@@ -0,0 +1,151 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools flag-o-matic systemd
+if [[ ${PV} == "" ]] ; then
+   
ESVN_REPO_URI="https://svn.code.sf.net/p/smartmontools/code/trunk/smartmontools;
+   ESVN_PROJECT="smartmontools"
+   inherit subversion
+else
+   SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos"
+fi
+
+DESCRIPTION="Tools to monitor storage systems to provide advanced warning of 
disk degradation"
+HOMEPAGE="https://www.smartmontools.org;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="caps +daemon selinux static systemd update_drivedb"
+
+DEPEND="
+   caps? (
+   static? ( sys-libs/libcap-ng[static-libs] )
+   !static? ( sys-libs/libcap-ng )
+   )
+   kernel_FreeBSD? (
+   sys-freebsd/freebsd-lib[usb]
+   )
+   selinux? (
+   sys-libs/libselinux
+   )"
+RDEPEND="${DEPEND}
+   daemon? ( virtual/mailx )
+   selinux? ( sec-policy/selinux-smartmon )
+   systemd? ( sys-apps/systemd )
+   update_drivedb? (
+   app-crypt/gnupg
+   || (
+   net-misc/curl
+   net-misc/wget
+   www-client/lynx
+   dev-vcs/subversion
+   )
+   )
+"
+
+REQUIRED_USE="( caps? ( daemon ) )"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   use static && append-ldflags -static
+   # The build installs /etc/init.d/smartd, but we clobber it
+   # in our src_install, so no need to manually delete it.
+   myeconfargs=(
+   --with-drivedbdir="${EPREFIX}/var/db/${PN}" #575292
+   --with-initscriptdir="${EPREFIX}/etc/init.d"
+   #--with-smartdscriptdir="${EPREFIX}/usr/share/${PN}"
+   $(use_with caps libcap-ng)
+   $(use_with selinux)
+   $(use_with systemd libsystemd)
+   $(use_with update_drivedb gnupg)
+   $(use_with update_drivedb update-smart-drivedb)
+   $(usex systemd 
"--with-systemdsystemunitdir=$(systemd_get_systemunitdir)" '')
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   local db_path="/var/db/${PN}"
+
+   if use daemon; then
+   default
+
+   newinitd "${FILESDIR}"/smartd-r1.rc smartd
+   newconfd "${FILESDIR}"/smartd.confd smartd
+   systemd_newunit "${FILESDIR}"/smartd.systemd smartd.service

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

2018-12-31 Thread Lars Wendler
commit: 2f540901e9e8fed3c4e544ca5c0107a51cf192e9
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 31 10:38:50 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 31 10:39:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f540901

sys-apps/smartmontools: Removed old.

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/smartmontools/Manifest|   2 -
 sys-apps/smartmontools/metadata.xml|   1 -
 sys-apps/smartmontools/smartmontools-6.4-r1.ebuild |  97 --
 sys-apps/smartmontools/smartmontools-6.4.ebuild|  65 -
 sys-apps/smartmontools/smartmontools-6.5-r1.ebuild | 148 -
 5 files changed, 313 deletions(-)

diff --git a/sys-apps/smartmontools/Manifest b/sys-apps/smartmontools/Manifest
index 4637fa2c24a..a076447dcc8 100644
--- a/sys-apps/smartmontools/Manifest
+++ b/sys-apps/smartmontools/Manifest
@@ -1,4 +1,2 @@
-DIST smartmontools-6.4.tar.gz 822539 BLAKE2B 
be76ec24cf24b2388a77758a1df5b5b9b19bd455dda26df6c13184051a51feeb0baf164265fcfe15b1d2ac41767d546109dea53cd7ac290d02f6e03b44da454f
 SHA512 
366cd55ec668da1ca8a3d9ba79d5bee6e0c59032936b7f2f161f8fbb1c9f869c505d715cc10562b6241f808bb8b534feaf9d9fd752f6cb1593ee893611742adc
-DIST smartmontools-6.5.tar.gz 855642 BLAKE2B 
25f78de8fd58497cf052e75aef746c15af8d56d2694007c1d6e2f8e31cae3b517babfc52ef73d3ae4bc5104a49e4bac16a48f23f3b3145228997bef0aad823dd
 SHA512 
dca7a6363ab7280ee4197155025f624c978886dcc94fc47b524f6f849138b62c471e966c0d4bf59c7bba50519dc122264618e5ded80a406863ddd10b43d928d3
 DIST smartmontools-6.6.tar.gz 903847 BLAKE2B 
6c18884cf763c146abceed47587de0e77cd434673df6a17e4527d160f06a5a8762e6ae490fc5ed13a33f819ba23c1924b49dd13620f4a51e6a40dac20a217523
 SHA512 
64bb533dac29f62ddd662a16a12c97df1af9cbac9ac526ce7af0b3bff9da49cf265a2030d91a7160452b56a67e80d7f34c9b4e45bbb320114f55695e2cb5cfaf
 DIST smartmontools-7.0.tar.gz 944925 BLAKE2B 
41b3894efa05471bf358fca4ba87a765e3a54df68c9a617804a9e0853752c57b68fdbaa9d55fa1462a8fa7de1d6cb5630c66929dfe521be38b180944cb80acc9
 SHA512 
96e18a201182579f699d541539ce393e7bc2191e027cfdf7f87455a63da3a14451574f8fe391232047ac941ace453a017193d0a4987a4edb8f7ed9d5007f0512

diff --git a/sys-apps/smartmontools/metadata.xml 
b/sys-apps/smartmontools/metadata.xml
index 0ae4667bf8d..cb72f5108e4 100644
--- a/sys-apps/smartmontools/metadata.xml
+++ b/sys-apps/smartmontools/metadata.xml
@@ -8,7 +8,6 @@
 
Build against sys-libs/libcap-ng to allow 
smartd to drop its privileges.
Install the monitoring daemon (smartd) and 
associated scripts.
-   Do not install the monitoring daemon and 
associated scripts.
Install a script to update the drivedb 
file.
 
 

diff --git a/sys-apps/smartmontools/smartmontools-6.4-r1.ebuild 
b/sys-apps/smartmontools/smartmontools-6.4-r1.ebuild
deleted file mode 100644
index c5512a3aad9..000
--- a/sys-apps/smartmontools/smartmontools-6.4-r1.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit flag-o-matic systemd
-if [[ ${PV} == "" ]] ; then
-   
ESVN_REPO_URI="https://svn.code.sf.net/p/smartmontools/code/trunk/smartmontools;
-   ESVN_PROJECT="smartmontools"
-   inherit subversion autotools
-else
-   SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos"
-fi
-
-DESCRIPTION="Tools to monitor storage systems to provide advanced warning of 
disk degradation"
-HOMEPAGE="https://www.smartmontools.org;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="caps minimal selinux static"
-
-DEPEND="
-   caps? (
-   static? ( sys-libs/libcap-ng[static-libs] )
-   !static? ( sys-libs/libcap-ng )
-   )
-   selinux? (
-   sys-libs/libselinux
-   )"
-RDEPEND="${DEPEND}
-   !minimal? ( virtual/mailx )
-   selinux? ( sec-policy/selinux-smartmon )
-"
-
-src_prepare() {
-   # 580424
-   sed '/^SRCEXPR/s@http:@https:@' \
-   -i update-smart-drivedb.in \
-   || die
-   if [[ ${PV} == "" ]] ; then
-   eautoreconf
-   fi
-}
-
-src_configure() {
-   use minimal && einfo "Skipping the monitoring daemon for minimal build."
-   use static && append-ldflags -static
-   # The build installs /etc/init.d/smartd, but we clobber it
-   # in our src_install, so no need to manually delete it.
-   myeconfargs=(
-   --docdir="${EPREFIX}/usr/share/doc/${PF}"
-   --with-drivedbdir=/var/db/${PN} #575292
-   --with-initscriptdir="${EPREFIX}/etc/init.d"
-   $(use_with caps libcap-ng)
-   $(use_with selinux)
-   $(systemd_with_unitdir)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   

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

2018-12-31 Thread Lars Wendler
commit: 6c33d4cc1e9ca5b61d1ee2d831b004219ffcb5ff
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Dec 31 10:37:21 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Dec 31 10:39:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c33d4cc

sys-apps/smartmontools: Synced live ebuild.

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/smartmontools/smartmontools-.ebuild | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/sys-apps/smartmontools/smartmontools-.ebuild 
b/sys-apps/smartmontools/smartmontools-.ebuild
index a2e1ad35a30..46b1cf2cff3 100644
--- a/sys-apps/smartmontools/smartmontools-.ebuild
+++ b/sys-apps/smartmontools/smartmontools-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI="6"
 
 inherit autotools flag-o-matic systemd
 if [[ ${PV} == "" ]] ; then
@@ -18,7 +18,7 @@ HOMEPAGE="https://www.smartmontools.org;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="caps +daemon selinux static update_drivedb"
+IUSE="caps +daemon selinux static systemd update_drivedb"
 
 DEPEND="
caps? (
@@ -34,6 +34,7 @@ DEPEND="
 RDEPEND="${DEPEND}
daemon? ( virtual/mailx )
selinux? ( sec-policy/selinux-smartmon )
+   systemd? ( sys-apps/systemd )
update_drivedb? (
app-crypt/gnupg
|| (
@@ -49,7 +50,6 @@ REQUIRED_USE="( caps? ( daemon ) )"
 
 src_prepare() {
default
-
eautoreconf
 }
 
@@ -58,14 +58,15 @@ src_configure() {
# The build installs /etc/init.d/smartd, but we clobber it
# in our src_install, so no need to manually delete it.
myeconfargs=(
-   --docdir="${EPREFIX}/usr/share/doc/${PF}"
--with-drivedbdir="${EPREFIX}/var/db/${PN}" #575292
--with-initscriptdir="${EPREFIX}/etc/init.d"
+   #--with-smartdscriptdir="${EPREFIX}/usr/share/${PN}"
$(use_with caps libcap-ng)
$(use_with selinux)
-   --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
+   $(use_with systemd libsystemd)
$(use_with update_drivedb gnupg)
$(use_with update_drivedb update-smart-drivedb)
+   $(usex systemd 
"--with-systemdsystemunitdir=$(systemd_get_systemunitdir)" '')
)
econf "${myeconfargs[@]}"
 }



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

2018-12-31 Thread Mikle Kolyada
commit: 7113ffa64490fb4c88d7009b1bcb1ef362a3bec5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Dec 31 10:19:55 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Dec 31 10:19:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7113ffa6

dev-python/hyper-h2: mark s390 stable

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/hyper-h2/hyper-h2-2.5.1.ebuild | 4 ++--
 dev-python/hyper-h2/hyper-h2-3.0.1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/hyper-h2/hyper-h2-2.5.1.ebuild 
b/dev-python/hyper-h2/hyper-h2-2.5.1.ebuild
index 88a4d648ed2..44e046dac4b 100644
--- a/dev-python/hyper-h2/hyper-h2-2.5.1.ebuild
+++ b/dev-python/hyper-h2/hyper-h2-2.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ 
SRC_URI="mirror://pypi/${P:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sparc x86"
 IUSE=""
 
 RDEPEND="

diff --git a/dev-python/hyper-h2/hyper-h2-3.0.1.ebuild 
b/dev-python/hyper-h2/hyper-h2-3.0.1.ebuild
index 8a0281510fc..122a4bb6961 100644
--- a/dev-python/hyper-h2/hyper-h2-3.0.1.ebuild
+++ b/dev-python/hyper-h2/hyper-h2-3.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/python-hyper/${PN}/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2018-12-31 Thread Mikle Kolyada
commit: 4dec6ab7619b3618dcf89e9a373825a17db07731
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Dec 31 10:16:20 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Dec 31 10:16:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dec6ab7

dev-python/incremental: mark s390 stable

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/incremental/incremental-16.10.1.ebuild | 4 ++--
 dev-python/incremental/incremental-17.5.0.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/incremental/incremental-16.10.1.ebuild 
b/dev-python/incremental/incremental-16.10.1.ebuild
index 337baab77e5..f670ce1a2da 100644
--- a/dev-python/incremental/incremental-16.10.1.ebuild
+++ b/dev-python/incremental/incremental-16.10.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86"
 IUSE=""
 
 RDEPEND=""

diff --git a/dev-python/incremental/incremental-17.5.0.ebuild 
b/dev-python/incremental/incremental-17.5.0.ebuild
index 804fc75c5dd..4a31d57a1c6 100644
--- a/dev-python/incremental/incremental-17.5.0.ebuild
+++ b/dev-python/incremental/incremental-17.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
 IUSE=""
 
 RDEPEND=""



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

2018-12-31 Thread Mikle Kolyada
commit: 0a92fb187c44a67ddfe04bb078338889ac923b2e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Dec 31 10:20:42 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Dec 31 10:20:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a92fb18

dev-python/gmpy: mark s390 stable

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-python/gmpy/gmpy-2.0.8.ebuild 
b/dev-python/gmpy/gmpy-2.0.8.ebuild
index badd74eceba..8eb3d9b151e 100644
--- a/dev-python/gmpy/gmpy-2.0.8.ebuild
+++ b/dev-python/gmpy/gmpy-2.0.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.zip"
 
 LICENSE="LGPL-2.1"
 SLOT="2"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc mpir"
 
 RDEPEND="



  1   2   >