[gentoo-commits] proj/netifrc:master commit in: init.d/, doc/

2018-07-11 Thread Robin H. Johnson
commit: 6f261f1beec1ecbfe7ec39ae33b5a7f947292f6e
Author: Maciej S. Szmigiero  maciej  szmigiero  name>
AuthorDate: Wed Nov 29 19:49:27 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Thu Jul 12 06:51:03 2018 +
URL:https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=6f261f1b

init.d/net.lo: add a configurable presence timeout

Sometimes one may want to wait for a particular interface to show up
when starting its service.
For example if a "net.foo" service is in the "default" runlevel so it
provides (or co-provides) the "net" service and it takes a while for the
"foo" interface to initialize and show up in the system during boot this
interface initialization will race with starting of this "net.foo" service
by the service manager - if the interface hasn't shown up yet the service
won't be able to start (and so will services that depend on it).

This setting specifies how long we'll wait for an interface to show up
in this case (in seconds).
For backward-compatibility the default is 0 (don't wait at all) - this
matches the existing behavior of netifrc, so existing deployments aren't
affected by this change.

This new setting is similar to an already present "wait for carrier
timeout" setting.

Signed-off-by: Maciej S. Szmigiero  maciej.szmigiero.name>
(cherry picked from commit 64f33a2032b4972a25cad6405678f678a5a269ff)
Closes: https://github.com/gentoo/netifrc/pull/28

 doc/net.example.BSD.in   | 16 
 doc/net.example.Linux.in | 16 
 init.d/net.lo.in | 33 -
 3 files changed, 64 insertions(+), 1 deletion(-)

diff --git a/doc/net.example.BSD.in b/doc/net.example.BSD.in
index 1df32e0..4c574b4 100644
--- a/doc/net.example.BSD.in
+++ b/doc/net.example.BSD.in
@@ -77,6 +77,22 @@
 # Some users may need to alter the MTU - here's how
 #mtu_eth0="1500"
 
+# Sometimes you may want to wait for a particular interface to show up
+# when starting its service.
+# For example if a net.foo service is in the "default" runlevel so it
+# provides (or co-provides) the "net" service and it takes a while for the
+# "foo" interface to initialize and show up in the system during a boot this
+# will race with starting of net.foo service by the service manager - if the
+# interface hasn't shown up yet the service won't be able start (and so
+# will services that depend on it).
+# This setting specifies how long we wait for an interface to show up
+# in this case (in seconds).
+# The current default is 0 - we need an interface to be already present
+# in the system when its service is started.
+#presence_timeout=0
+# This setting can be also adjusted on a per-interface basis:
+#presence_timeout_eth0=10
+
 # Most drivers that report carrier status function correctly, but some do not
 # One of these faulty drivers is for the Intel e1000 network card, but only
 # at boot time. To get around this you may alter the carrier_timeout value for

diff --git a/doc/net.example.Linux.in b/doc/net.example.Linux.in
index c0cfd38..3b414ba 100644
--- a/doc/net.example.Linux.in
+++ b/doc/net.example.Linux.in
@@ -126,6 +126,22 @@
 # tables you may have to set a global metric as the due to a simple read of
 # the routing table taking over a minute at a time.
 
+# Sometimes you may want to wait for a particular interface to show up
+# when starting its service.
+# For example if a net.foo service is in the "default" runlevel so it
+# provides (or co-provides) the "net" service and it takes a while for the
+# "foo" interface to initialize and show up in the system during a boot this
+# will race with starting of net.foo service by the service manager - if the
+# interface hasn't shown up yet the service won't be able start (and so
+# will services that depend on it).
+# This setting specifies how long we wait for an interface to show up
+# in this case (in seconds).
+# The current default is 0 - we need an interface to be already present
+# in the system when its service is started.
+#presence_timeout=0
+# This setting can be also adjusted on a per-interface basis:
+#presence_timeout_eth0=10
+
 # Most drivers that report carrier status function correctly, but some do not
 # One of these faulty drivers is for the Intel e1000 network card, but only
 # at boot time. To get around this you may alter the carrier_timeout value for

diff --git a/init.d/net.lo.in b/init.d/net.lo.in
index b78a342..472ed0c 100644
--- a/init.d/net.lo.in
+++ b/init.d/net.lo.in
@@ -118,6 +118,37 @@ _flatten_array()
_array_helper $1
 }
 
+_wait_for_presence()
+{
+   local timeout=
+   local rc=
+
+   _exists && return 0
+
+   eval timeout=\$presence_timeout_${IFVAR}
+   timeout=${timeout:-${presence_timeout:-0}}
+
+   [ ${timeout} -le 0 ] && return 1
+
+   einfon "Waiting for ${IFACE} to show up (${timeout} seconds)"
+   while [ ${timeout} -gt 0 ]; do
+   _exists
+   rc=$?
+   [ $rc -eq 0 ] && break
+
+

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

2018-07-11 Thread Andreas Sturmlechner
commit: b6867e7d160cda9b0537d2006c385c6ec011457b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 21:31:39 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jul 12 06:50:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6867e7d

app-office/libreoffice: Add upstream fix for ICU 61

Closes: https://bugs.gentoo.org/651702
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 app-office/libreoffice/Manifest   | 1 +
 app-office/libreoffice/libreoffice-6.0.5.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest
index fa36b63ddf5..1a7ea0406ec 100644
--- a/app-office/libreoffice/Manifest
+++ b/app-office/libreoffice/Manifest
@@ -7,6 +7,7 @@ DIST libreoffice-5.4.7.2.tar.xz 194486484 BLAKE2B 
82c28025f20842dc6a1cf410e84953
 DIST libreoffice-6.0.3.2-patchset-01.tar.xz 39268 BLAKE2B 
0bf5ad04323cbd2cf157dacc96aa9d3344d683f3303e5c284a83c0f8783d23881402393f2361d4db1270cf75424ff6f12e5b16540b3f7ccb624c29ccc8c71416
 SHA512 
f6632afe1c7bcdfb1ca82059d299f808e5eee982c176aa2cc5d728e11b833c3fe921c9c627847bc12128ae5e32c901cbbdfec0b71a22bb9a4b5041b645ed934f
 DIST libreoffice-6.0.3.2.tar.xz 203747760 BLAKE2B 
8a666aa2e3e880b050ac8eed93a1c55ddbfa7ce74364b0dff4f5be446cf64c4fe347b164716a7d226c6cfbac01dbd3f11b89ecff75460ccd902ac44fe93d5daa
 SHA512 
d1ec8982f185926d3f3040bcdef737e7c74fcf5b360a12a91983eac92843510553759ffa84c7d244df13036fc32149ffe13dd6a56fb1bda6f64fd5a318fd7879
 DIST libreoffice-6.0.5.2-patchset-01.tar.xz 39820 BLAKE2B 
d8b436378b05a8a58156817b5d1e0323fd6fcfde9aa9fc4fc6a8056a06a16c84c5860ffe1ae715faddb707c5aa417b43e6c7f5c05821f86208edbb3778d830a1
 SHA512 
ec99a6358c0a20075abc0aa136ad6ccded4562fa0f25897efe2a8783fb33b97b92a2dd8041206b3344a79dfd10ebe98b79c8bf0b4e8539e45942978f0028dc59
+DIST libreoffice-6.0.5.2-patchset-02.tar.xz 43072 BLAKE2B 
bcd6406b06bef83ac26e227bc77fed76b67e11f0150a23015e8c83c7092b8efd6f35ec8bbac12bbfda6c597ebaa1782391a624b10a7af0bface6b480b6603802
 SHA512 
fe764e02cff85a064f8b25e34b3f3558a9fc65051da154e94654c2322e8f50487a97b699a6ab886ec9db00d31a8ca544aaf0b93794e03d17fbbe90b83b44124d
 DIST libreoffice-6.0.5.2.tar.xz 204795724 BLAKE2B 
d027e83dc5f3908af25975354f8d0ef9a4a9a4fb601dada54d04cdc5bc6d0a0dbedda89ac0cf5bbe88da29382431bddfd331e56b63b88e9f5a23b9299c65b61a
 SHA512 
796ce4b54adc2b1b032f1f125425141a1c584a9f7dd145ed677916ba7a28c11e895a34ff8bf34cc208d15408cb3ea0c0942546300d1be6309bd9ad6544400684
 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B 
f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883
 SHA512 
785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f
 DIST libreoffice-help-5.4.7.2.tar.xz 2343112 BLAKE2B 
690c147e8bfdea9d1860131ad8528e2e2eea64da7293c8b7c3a4ad07e771749573b69fb11bed8c8c171b5760ec67a0a3b30eab06e38e5a725ffc11d0959c71c6
 SHA512 
8abd0bbf70dcfd5cf0ad713c8d34be541ddd27cda98403cbb331b62a4099c08b14be784362b857a41b8b2c756d01e36f043b97bdd5062a2bddeae29b8b70f6a2

diff --git a/app-office/libreoffice/libreoffice-6.0.5.2.ebuild 
b/app-office/libreoffice/libreoffice-6.0.5.2.ebuild
index f8ee3a7fc14..6c40315ba08 100644
--- a/app-office/libreoffice/libreoffice-6.0.5.2.ebuild
+++ b/app-office/libreoffice/libreoffice-6.0.5.2.ebuild
@@ -18,7 +18,7 @@ DEV_URI="
 ADDONS_URI="https://dev-www.libreoffice.org/src/";
 
 BRANDING="${PN}-branding-gentoo-0.8.tar.xz"
-PATCHSET="${P}-patchset-01.tar.xz"
+PATCHSET="${P}-patchset-02.tar.xz"
 
 [[ ${MY_PV} == ** ]] && SCM_ECLASS="git-r3"
 inherit autotools bash-completion-r1 check-reqs eapi7-ver flag-o-matic 
gnome2-utils java-pkg-opt-2 multiprocessing pax-utils python-single-r1 
qmake-utils toolchain-funcs xdg-utils ${SCM_ECLASS}



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

2018-07-11 Thread Andreas Sturmlechner
commit: e185ae88b02f62fd16a05bfde38b350ed44fcde7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 21:35:46 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jul 12 06:50:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e185ae88

media-sound/elisa: Bump QT_MINIMAL to 5.11.1

Reported-by: Robert G. Siebeck  r123.de>
Closes: https://bugs.gentoo.org/660964
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-sound/elisa/{elisa-0.2.1.ebuild => elisa-0.2.1-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-sound/elisa/elisa-0.2.1.ebuild 
b/media-sound/elisa/elisa-0.2.1-r1.ebuild
similarity index 98%
rename from media-sound/elisa/elisa-0.2.1.ebuild
rename to media-sound/elisa/elisa-0.2.1-r1.ebuild
index c768c2d4d5b..15da92ebbfa 100644
--- a/media-sound/elisa/elisa-0.2.1.ebuild
+++ b/media-sound/elisa/elisa-0.2.1-r1.ebuild
@@ -5,6 +5,7 @@ EAPI=6
 
 KDE_TEST="forceoptional"
 KDE_HANDBOOK="optional"
+QT_MINIMAL="5.11.1"
 inherit kde5
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then



[gentoo-commits] repo/gentoo:master commit in: app-text/libetonyek/files/, app-text/libetonyek/

2018-07-11 Thread Andreas Sturmlechner
commit: 99b68c7b6f6871337ea94547b6bb9910a6f68e8b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 21:20:19 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jul 12 06:49:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99b68c7b

app-text/libetonyek: Fix configure with USE=test

Upstream forgot to remove an obsolete header check.

Closes: https://bugs.gentoo.org/657820
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 app-text/libetonyek/files/libetonyek-0.1.8-glm-0.9.9.patch | 12 
 app-text/libetonyek/libetonyek-0.1.8.ebuild|  9 ++---
 2 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/app-text/libetonyek/files/libetonyek-0.1.8-glm-0.9.9.patch 
b/app-text/libetonyek/files/libetonyek-0.1.8-glm-0.9.9.patch
new file mode 100644
index 000..db78fa81d47
--- /dev/null
+++ b/app-text/libetonyek/files/libetonyek-0.1.8-glm-0.9.9.patch
@@ -0,0 +1,12 @@
+Gentoo-bug: https://bugs.gentoo.org/657820
+
+--- a/configure.ac 2018-03-18 14:51:31.0 +0100
 b/configure.ac 2018-07-11 23:13:14.901127036 +0200
+@@ -119,7 +119,6 @@
+ saved_CPPFLAGS="${CPPFLAGS}"
+ CPPFLAGS="${GLM_CFLAGS} ${CPPFLAGS}"
+ GLM_headers="glm/glm.hpp"
+-AS_IF([test "x$enable_tests" == "xyes"], [GLM_headers="$GLM_headers 
glm/gtx/io.hpp"], [])
+ AC_CHECK_HEADERS(
+ [$GLM_headers],
+ [],

diff --git a/app-text/libetonyek/libetonyek-0.1.8.ebuild 
b/app-text/libetonyek/libetonyek-0.1.8.ebuild
index 39b6f10a69f..7e445ac2171 100644
--- a/app-text/libetonyek/libetonyek-0.1.8.ebuild
+++ b/app-text/libetonyek/libetonyek-0.1.8.ebuild
@@ -4,7 +4,8 @@
 EAPI=6
 
 EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libetonyek.git";
-[[ ${PV} ==  ]] && inherit autotools git-r3
+[[ ${PV} ==  ]] && inherit git-r3
+inherit autotools
 
 DESCRIPTION="Library parsing Apple Keynote presentations"
 HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek";
@@ -20,7 +21,7 @@ RDEPEND="
app-text/liblangtag
dev-libs/librevenge
dev-libs/libxml2
-   sys-libs/zlib
+   sys-libs/zlib:=
 "
 DEPEND="${RDEPEND}
dev-libs/boost
@@ -32,10 +33,12 @@ DEPEND="${RDEPEND}
test? ( dev-util/cppunit )
 "
 
+PATCHES=( "${FILESDIR}/${P}-glm-0.9.9.patch" )
+
 src_prepare() {
default
[[ -d m4 ]] || mkdir "m4"
-   [[ ${PV} ==  ]] && eautoreconf
+   eautoreconf
 }
 
 src_configure() {



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

2018-07-11 Thread Mart Raudsepp
commit: 28f1feeb9002ad33808fab89676d6592f24bd0b0
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Jul 12 06:31:16 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jul 12 06:39:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28f1feeb

net-misc/curl-7.61.0: arm64 stable (bug #660894)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

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



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

2018-07-11 Thread Mart Raudsepp
commit: 6b5843d4c476a2ced29b0b63f2e6f2db5a48561e
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Jul 12 06:37:44 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jul 12 06:39:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b5843d4

app-shells/zsh-5.5.1-r1: arm64 stable (bug #660862)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-shells/zsh/zsh-5.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/zsh/zsh-5.5.1-r1.ebuild 
b/app-shells/zsh/zsh-5.5.1-r1.ebuild
index a61de6f8eed..adecfe2cc19 100644
--- a/app-shells/zsh/zsh-5.5.1-r1.ebuild
+++ b/app-shells/zsh/zsh-5.5.1-r1.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3 autotools
EGIT_REPO_URI="git://git.code.sf.net/p/zsh/code"
 else
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
SRC_URI="https://www.zsh.org/pub/${P}.tar.gz
doc? ( https://www.zsh.org/pub/${P}-doc.tar.xz )"
 fi



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

2018-07-11 Thread Mart Raudsepp
commit: 6aeed70a79b0074316086eddc4870f9a2f5d39f1
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Thu Jul 12 06:23:27 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Thu Jul 12 06:39:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aeed70a

sys-apps/util-linux-2.32-r4: arm64 stable (bug #660774)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/sys-apps/util-linux/util-linux-2.32-r4.ebuild 
b/sys-apps/util-linux/util-linux-2.32-r4.ebuild
index fb5982c2462..8f905dcbd15 100644
--- a/sys-apps/util-linux/util-linux-2.32-r4.ebuild
+++ b/sys-apps/util-linux/util-linux-2.32-r4.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} ==  ]] ; then

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

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



[gentoo-commits] repo/gentoo:master commit in: dev-ada/gps/files/, dev-ada/gps/

2018-07-11 Thread Alfredo Tupone
commit: 47e8401af57667a1b7e1277a4604af0e0facafe6
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Thu Jul 12 06:30:21 2018 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Thu Jul 12 06:30:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47e8401a

dev-ada/gps: Version bump to 2018

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ada/gps/Manifest|  2 +
 dev-ada/gps/files/gps-2018-gentoo.patch | 87 +
 dev-ada/gps/gps-2018.ebuild | 78 +
 3 files changed, 167 insertions(+)

diff --git a/dev-ada/gps/Manifest b/dev-ada/gps/Manifest
index 1730df8afcb..9a4e8fd5f19 100644
--- a/dev-ada/gps/Manifest
+++ b/dev-ada/gps/Manifest
@@ -1,2 +1,4 @@
 DIST gnat-gpl-2017-x86_64-linux-bin.tar.gz 496338280 BLAKE2B 
b3eee6d311fb9c20bc8fa7217c0731ca1e91ced38700df1d63d91a16c3fa28dfd44c7c8e867c3a857b88e4f0c8b2a7200fb6a8a630b8403538c4784f8914d1a5
 SHA512 
01a8f3be9b7b7e83cc5bd4a45137b1d35c6448bc22a88bcaf5d312cd63e11081b6b2fe9f09ad2a27d8f0b6471fc5c1a99573bf3bcee1589329054074eaeef04f
 DIST gps-gpl-2017-src.tar.gz 41216830 BLAKE2B 
51ca89c38fa81888a9cf1831cf97f7e0ad72c444328a29063249a4fe72bbdc8357552d470872e9fbbeaf349ef0427b59fa41a0efb56200a07a9426343c731a57
 SHA512 
101ecef7f183de1da0c2b09d77f284a5e8c5ae56f34a897c8d471e79fe9a2832742608ff5251197ba2a52b5d9dfee6c6937fc22cd55f6d8f38359b070393cb64
+DIST gps-gpl-2018-src.tar.gz 40541905 BLAKE2B 
abe38dd23d9afede27b4ec8294e3245c12d52d60491b6e7c1b2d120a6f1e5d808fdcfb648e72da31376e2de176f7a039c5493341ad295db33b6a1ce44bb64096
 SHA512 
da0eaa85eb753f215354c9765272d85378f36ebe207314bab9211642f9d9b505a3d05cdec9de6964ae9139c4f8942a29e06c72db32b2aeb053a694e9c982e470
+DIST libadalang-tools-gpl-2018-src.tar.gz 19938182 BLAKE2B 
34104f3bc43c165a9b74ba8c0c03ee2f34686bcd06b5ced730f70f654d8b808e129a85566e081830b4f20304c793eefe0af81b56984cf06190302ad2f6a419be
 SHA512 
a1176575944cd88b9da5f4e9f03caa1a4d09358df71e6a91300d0b35c2a843d0ea1a77fbd93e7b7f16cef1b978022ee20991f5c2ff74f7d05878c3de1220f2b5

diff --git a/dev-ada/gps/files/gps-2018-gentoo.patch 
b/dev-ada/gps/files/gps-2018-gentoo.patch
new file mode 100644
index 000..d03a022
--- /dev/null
+++ b/dev-ada/gps/files/gps-2018-gentoo.patch
@@ -0,0 +1,87 @@
+--- a/gps/Makefile 2018-07-09 20:27:34.950424490 +0200
 b/gps/Makefile 2018-07-09 20:37:39.510558817 +0200
+@@ -47,7 +47,7 @@
+   for f in ../kernel/generated/*; do cat $$f | tr -d '\015' > $$f-aux; mv 
-f $$f-aux $$f; done
+ endif
+   $(GPRBUILD) $(GPRBUILD_FLAGS) -m -p -ws \
+-$(GPRBUILD_BUILD_TYPE_FLAGS) -Pgps -largs `pkg-config gmodule-2.0 
--libs`
++$(GPRBUILD_BUILD_TYPE_FLAGS) -Pgps -largs `pkg-config gmodule-2.0 
--libs` -lpython2.7
+ 
+ resources:
+ ifeq ($(OS),Windows_NT)
+--- a/testsuite/Makefile   2018-07-09 21:45:48.115937491 +0200
 b/testsuite/Makefile   2018-07-09 21:46:15.896547268 +0200
+@@ -13,7 +13,7 @@
+ endif
+ 
+ all default: package
+-  $(GPRBUILD) -P testsuite_drivers.gpr -m -XOS=${OS} -j0 
-XLIBRARY_TYPE=relocatable -XXMLADA_BUILD=relocatable
++  $(GPRBUILD) -P testsuite_drivers.gpr -m -XOS=${OS} -j0 
-XLIBRARY_TYPE=relocatable -XXMLADA_BUILD=relocatable -largs -lpython2.7
+ 
+ package:
+   mkdir -p share/doc
+--- a/Makefile.in  2018-07-09 21:51:08.422550386 +0200
 b/Makefile.in  2018-07-09 21:51:32.187225891 +0200
+@@ -10,7 +10,7 @@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+ INSTALL_DATA= @INSTALL_DATA@
+ GNATCOLL_INSTALL  = @GNATCOLL_INSTALL@
+-prefix  = @prefix@
++prefix  = $(DESTDIR)@prefix@
+ bindir  = $(prefix)/bin
+ sharedir= $(prefix)/share
+ examplesdir = $(prefix)/share/examples/gps
+--- a/docs/Makefile.in 2018-07-09 21:53:33.074572729 +0200
 b/docs/Makefile.in 2018-07-09 21:53:52.149311484 +0200
+@@ -1,4 +1,4 @@
+-prefix = @prefix@
++prefix = $(DESTDIR)@prefix@
+ docdir = $(prefix)/share/doc/gps
+ sharedir = $(prefix)/share/gps
+ 
+--- a/share/support/core/toolchains.py 2018-07-11 12:15:18.758674244 +0200
 b/share/support/core/toolchains.py 2018-07-11 12:20:20.389220849 +0200
+@@ -16,11 +16,11 @@
+nullified by using an empty value in the corresponding tag
+   -->
+   
+-gnat
+-gnatls
++@GNAT@
++@GNATLS@
+ gdb
+ c++filt
+-gnatmake
++@GNATMAKE@
+ gcc
+ g++
+ gcc
+--- a/share/support/core/projects.py   2018-07-11 13:49:29.631289680 +0200
 b/share/support/core/projects.py   2018-07-11 13:51:46.568252607 +0200
+@@ -146,7 +146,7 @@
+   
+
+
+-  gnatmake
++  @GNATMAKE@
+
+
+ 
+@@ -166,7 +166,7 @@
+description="The gnatls command used to find where the Ada run time 
files are installed (including optional arguments, e.g. gnatls --RTS=sjlj)."
+hide_in="all"
+label="Gnatls">
+-   gnatls
++   @GNATLS@
+
+
+ 
+@@ -178,7 +178,7 @@
+description="The gnat driv

[gentoo-commits] proj/netifrc:master commit in: net/

2018-07-11 Thread Robin H. Johnson
commit: 86911bfd4ee00041273ee8439978e64a2163f3e2
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Thu Jul 12 06:24:36 2018 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Thu Jul 12 06:24:36 2018 +
URL:https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=86911bfd

net/wireguard: import from ebuild

This improves non-maintainer commit
66af4525ff3a4530a165443f459134f1f60283f8 to include correct author
attribution for net/wireguard.sh, as traced & discussed with the
upstream author.

Original-Author: Joakim Sindholt  zhasha.com>
Signed-off-by: Jason A. Donenfeld  gentoo.org>
Signed-off-by: Robin H. Johnson  gentoo.org>

 net/wireguard.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/wireguard.sh b/net/wireguard.sh
index efa45b0..8af76ca 100644
--- a/net/wireguard.sh
+++ b/net/wireguard.sh
@@ -1,4 +1,5 @@
-# Copyright (c) 2016 Gentoo Foundation
+# Copyright (c) 2016 Joakim Sindholt (zhasha)
+# Copyright (c) 2018 Jason A. Donenfeld,
 # Released under the 2-clause BSD license.
 
 wireguard_depend()



[gentoo-commits] proj/netifrc:master commit in: doc/

2018-07-11 Thread Robin H. Johnson
commit: 1ff764f73dbab2d5df934c1073e9f6e99f7ddf5d
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Thu Jul 12 06:24:12 2018 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Thu Jul 12 06:24:48 2018 +
URL:https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=1ff764f7

doc: usage example for wireguard

Signed-off-by: Robin H. Johnson  gentoo.org>

 doc/net.example.Linux.in | 9 +
 1 file changed, 9 insertions(+)

diff --git a/doc/net.example.Linux.in b/doc/net.example.Linux.in
index 6a57e43..c0cfd38 100644
--- a/doc/net.example.Linux.in
+++ b/doc/net.example.Linux.in
@@ -1214,6 +1214,15 @@
 # interfaces, you can do this here.
 #firewalld_zone_eth0="myzone"
 
+#-
+# Wireguard support
+#
+# Wireguard can be configured either by passing a config file
+#wireguard_wg0="/path/to/file.conf"
+#
+# Wireguard can also be configured by passing explicit settings
+#wireguard_wg0="private-key /path/to/whatever listen-port 1234 peer ABCDEF= 
endpoint 1.2.3.4:2468"
+
 ##
 # ADVANCED CONFIGURATION
 #



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

2018-07-11 Thread Jason Zaman
commit: 9970887ee957cbee76d0855bc009cdb5bae0ad38
Author: Jason Zaman  gentoo  org>
AuthorDate: Thu Jul 12 05:21:42 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Jul 12 05:22:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9970887e

sci-libs/tensorflow: bump to 1.9.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sci-libs/tensorflow/Manifest|   3 +
 sci-libs/tensorflow/tensorflow-1.9.0.ebuild | 425 
 2 files changed, 428 insertions(+)

diff --git a/sci-libs/tensorflow/Manifest b/sci-libs/tensorflow/Manifest
index af4c1c9d87e..070d28f6002 100644
--- a/sci-libs/tensorflow/Manifest
+++ b/sci-libs/tensorflow/Manifest
@@ -19,6 +19,7 @@ DIST cython-3732784c45cfb040a5b0936951d196f83a12ea17.tar.gz 
1796107 BLAKE2B 65cd
 DIST double-conversion-3992066a95b823efc8ccc1baf82a1cfc73f6e9b8.zip 7071029 
BLAKE2B 
722c190c941b169a3292ce2141c59b8eb1bcc5edd2ed09669592dddb9354e4c6c094dafe02e5a154f215aec776f9f7cebae36b9b0317b10b707282b1ca9449a5
 SHA512 
1db0d4805c80e9a08d9a581051d8708ddbfe1d74fd820dccde2c2405c45c06a861bd5b535b25d191cd01064e268f3fe71e58bef16fd39471812aea6c2f97da43
 DIST eigen-6913f0cf7d06.tar.gz 2296773 BLAKE2B 
f3d4ed1577abc7f722fb600e79bcb1294ae5d6a4499668df05a8b9014bfafb576e6d15d3e311080e6e6ed3afd00e60ccd0c1092161a218d200a32668bef83ea2
 SHA512 
e1cbd55edfc128ee5c2d0bc08a7fec051efb5713f78e2d323ce49074bf1b86d63e7fcc06c01e469c01d2476dd369e4159ecb306f6d28371a3274402d0ea25e87
 DIST eigen-e5e305a158a0.tar.gz 2312776 BLAKE2B 
268419895e1c49963bd15b6e9142775d782f8d7e6aa88f55eaa7b5dd42ce11456c8687235ff2478bedaf232b7df71832fdbaed62026f7880501c0403cfcf6d4d
 SHA512 
f6070e2cec18c059f296857405c90e06566f643a4e3499a6eceaab8682597c192f8b9b91bdbbfa53aa654969a2269cda6a1c044b92e4a9f8362e8831e773daf8
+DIST eigen-fd6845384b86.tar.gz 2312810 BLAKE2B 
aae02b053e9b22b0c063d1173b28fd7d71cdec6b6e6702624b8fdeb707ada24e5415079f1a1c7b8fe108c7e632c6c736e13cfbdc101270742565b7045a57616a
 SHA512 
b999e60236abf7a6a5062aa55b0aeefe9254b204416092649d4a88d42fef7c571e3ba563bbbf94033093f789511793d614c1ce94a0a0f3eb4b18df466b6345a5
 DIST farmhash-816a4ae622e964763ca0862d9dbd19324a1eaf45.tar.gz 467122 BLAKE2B 
8b9dd426f4b9f732df6c8c09d868d1b1cc006c395b1525c46ea91c75318b723358c8e64bb0d86a73aace2032eded93f0d80cc7c2c77fddd6a39e3402ab4f2cb7
 SHA512 
7f5110514a8cdc7ce48d33fd94ad67d96a24e42e11b203e4d0986f4190545f051b2a63f8e09f2ac38c3aa4a5c62d9a0e02cd8ce02045037381fb62a99f0dcd00
 DIST fft.tgz 72213 BLAKE2B 
4a3ac2b4c0bc3275b5743df59241e1cdbd0200371c153ddf54ef6c7c4ec523ee6560547e2d5ef9f3200037c0635bf41c18991ac35f271b1e600d0dbd65d1a9a7
 SHA512 
f1ceac00cb7b9eb8f625eee7f1f5eea8af363343589a344226628d68baf668c176e6c23b7f904c4e682330352eaa0cd5d00731340d208e94c9657b8f85ae2240
 DIST flatbuffers-971a68110e4fc1bace10fcb6deeb189e7e1a34ce.tar.gz 613854 
BLAKE2B 
982142b7dd81791f221d7f3cbbecf6539549c86c436e0cf3ae0c57bd7535b90083c7d2709abc811abcf3b6fee417a16b1d8dcdedcce58fd8715db7ae785a7bff
 SHA512 
01ffc047483edaaccc13bf256d59eef0c4cb7488618f1e908c74e0dcc599f00856d052d209a079d35e385bef973a4c6daf401107c4be85bba46dcc3b4f453b26
@@ -63,8 +64,10 @@ DIST sqlite-amalgamation-320.zip 2069628 BLAKE2B 
97b641fdd143af8bd1f4b7b733f
 DIST sqlite-amalgamation-3230100.zip 2183147 BLAKE2B 
af25542f81ac0592d143695466de785779dc8002ebc5b6cf20cb2d56a66cf12b9d4f73392b6ac696b8107beca0e5c3a3e03efb703fa49fc380355d1e9302e78a
 SHA512 
5784f4dea7f14d7dcf5dd07f0e111c8f0b64ff55c68b32a23fba7a36baf1f095c7a35573fc3b57b84822878218b78f9b0187c4e3f0439d4215471ee5f556eee1
 DIST swig-3.0.8.tar.gz 7937213 BLAKE2B 
38f17631a36f178a478bf77f1a7ea77b50b91ed95ca0363f0f75d86bf7da6d855db314c1b7e67634b0e6e1438a0d141d0241595987142154ee356d60955248bc
 SHA512 
85605bd98bf2b56f5bfca23ae23d76d764d76a174b05836c8686825e912d6326c370e9cf2134c0bf4f425560be103b16bf9c9d075077f52e713a69082616e906
 DIST tensorflow-1.8.0.tar.gz 22649439 BLAKE2B 
7384c2cf742fb5a8b4e266e95080ae2513c1b112ab97f74839fa8e81bd91bd24645be8afb02e4447ad5fba9f47c4d146f59aa12085937cd3a364ec34c99590f3
 SHA512 
7280e65d26fb3f15d95f7217ee3bc08d1424cd144cf25bf638fa114fa835b2505dfaf457c55700067d24f485b77120973d094ec568e6d1b1054857402f9c352d
+DIST tensorflow-1.9.0.tar.gz 23571524 BLAKE2B 
2961ef5a35d3271512999478f6e260c90c48537e251b41d60ae9e033386c0dd9e1337af85c5441afca1b8cf5b3726349ba0e56cccdfa95fdf1c5e9e4d4db8af5
 SHA512 
eb25dafccf2ec600c4ca28612362c8317b8b9160610ca9fb60f265815651c155b19ae5be3f213a0d9e716d9e25637d6502164433955247cf6fa5d75408b7ac84
 DIST tensorflow-1.9.0_rc1.tar.gz 23639406 BLAKE2B 
94f7254b67ebbcf7a6c46f194bf00ecb4e386cf90b74ef436febdbe1f4e9b4e206aeaabd9392f1023d8486ffd91b9e7814a64f8c7275a198a3040a76181d282e
 SHA512 
3354738c6f6e3c8336bd7186379dc8ef02e12aa83db4b65a93a644f5435254fc253f897dfd2b307b2fe77b1dbe6f506f1fccc4d0ea6e04cdf3e3eb9a52ca81fd
 DIST tensorflow-1.9.0_rc2.tar.gz 24167723 BLAKE2B 
b676c8d521a060487fb5d31b75beda2e7c301396ceaa887776e368a16541ed0be0ad85c92901a45d8df324a857a324b706a6d0f38c91a2d991dcd7c40d3ecb3a
 SHA512 
e8544b56a0

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

2018-07-11 Thread Hans de Graaff
commit: fcf3a561a2e98d38cac2e235e53664d70e04ea7d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Jul 12 04:23:20 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Jul 12 04:23:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcf3a561

dev-ruby/ruby-ldap: add 0.9.20

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/ruby-ldap/Manifest|  1 +
 dev-ruby/ruby-ldap/ruby-ldap-0.9.20.ebuild | 41 ++
 2 files changed, 42 insertions(+)

diff --git a/dev-ruby/ruby-ldap/Manifest b/dev-ruby/ruby-ldap/Manifest
index 3b0465a223c..bc6ead88f21 100644
--- a/dev-ruby/ruby-ldap/Manifest
+++ b/dev-ruby/ruby-ldap/Manifest
@@ -1 +1,2 @@
 DIST ruby-ldap-0.9.19.gem 91648 BLAKE2B 
0ea6fe17ac2e4cd34a0834c6b95b1db4905e709010962959735cc3cedf9d50695d642b6042711b4f5154198fbe0bb5312903169ba8f1a7868b6f18d681a81682
 SHA512 
0ed931552df00c11855297ab44fd1c9a79e751937758d38189147f1d37cbce9b1da6fa42e64a9fd44610e948b1c13031013b7931ed473cd55b8425e64a50584a
+DIST ruby-ldap-0.9.20.gem 67072 BLAKE2B 
626a35ab764dacfb37c727d867e1d435222730a3e7ea745ee4e7ec051ce3a822cc5a1230b463bc12f4a2390db667ed3b61deceb9842c014f64cdf43a26d285f9
 SHA512 
4f4902e7eaf4fe0cd421d58c73ce4e625d61ee20ef02363d3cf5754c66237e0f378ac433b234c2b86d5f5284ae03b7ae6c46d3575c512487bc1a931d021c9517

diff --git a/dev-ruby/ruby-ldap/ruby-ldap-0.9.20.ebuild 
b/dev-ruby/ruby-ldap/ruby-ldap-0.9.20.ebuild
new file mode 100644
index 000..c52069c6d7e
--- /dev/null
+++ b/dev-ruby/ruby-ldap/ruby-ldap-0.9.20.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+inherit multilib ruby-fakegem
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_TASK_TEST=""
+RUBY_FAKEGEM_EXTRADOC="ChangeLog FAQ NOTES README TODO"
+
+DESCRIPTION="A Ruby interface to some LDAP libraries"
+HOMEPAGE="https://github.com/bearded/ruby-ldap";
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos"
+IUSE="ssl"
+DEPEND=">=net-nds/openldap-2
+   dev-libs/cyrus-sasl
+   ssl? ( dev-libs/openssl:0 )"
+RDEPEND="${DEPEND}"
+
+# Current test set is interactive due to certificate generation and requires
+# running LDAP daemon
+RESTRICT="test"
+
+each_ruby_configure() {
+   local myconf="--with-openldap2"
+   if ! use ssl ; then
+   myconf="${myconf} --without-libcrypto --without-libssl"
+   fi
+   ${RUBY} extconf.rb ${myconf} || die "extconf.rb failed"
+   sed -i -e 's:-Wl,--no-undefined::' \
+   -e "s/^ldflags  = /ldflags = $\(LDFLAGS\) /" Makefile || die
+}
+
+each_ruby_compile() {
+   emake V=1
+   cp ldap$(get_modname) lib/ || die
+}



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

2018-07-11 Thread Hans de Graaff
commit: c8d156c5bfd330457d4a325da7f9220dba2c9332
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Jul 12 04:36:24 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Jul 12 04:36:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8d156c5

dev-ruby/trollop: add 2.1.3

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/trollop/Manifest |  1 +
 dev-ruby/trollop/trollop-2.1.3.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-ruby/trollop/Manifest b/dev-ruby/trollop/Manifest
index c1d67ba5bff..e5202dd34c6 100644
--- a/dev-ruby/trollop/Manifest
+++ b/dev-ruby/trollop/Manifest
@@ -1,2 +1,3 @@
 DIST trollop-1.16.2.gem 22016 BLAKE2B 
12d9ad62173bd53e542b4d8c61e7b5fa2116487d2f933b735d73fb101d8498e497f53d4d6cb145c0970b297f3cfa048ece0e68ee7887ce4b53141993859f
 SHA512 
ad99aa2c0c3b9a8ce7fe0e3f5fc1ab6f600dda5229cb5a15cdf2a3dcc6ffadb8e386a695eebc07b86742c7d62a99794e57e86263a6e03f3bd5f883ad9fe1959e
 DIST trollop-2.1.2.gem 26112 BLAKE2B 
b8dd1540b7b50a8b587137306df5536a1402457621236a40086ec8e02a48ac0d6aaa1b6f8273ee0814438788f09564bc236031603f9b88bf9705d04cea940053
 SHA512 
afebe220119476fe3b992f430c79c9de06a6b5398f3ccf957bc0e3b3a1bcebd47a350a94882b3c46aa4db93c70002f3d4adabfe95d0338f14149545c7a9e8dc3
+DIST trollop-2.1.3.gem 30208 BLAKE2B 
a5fd19679821c55459cf7792f3ec26b8580732e84107f7a3519dcbcf1729ce48567ca2d35346b3e27d3083a3b6cae160ded8c18a118cb04a7a6e60c82bd91e78
 SHA512 
4d172c6d75f40edb36c353d2e32afce10b012f02927772fa201256126f88c62adce39400225434a80fd678e1cad703e3d3f32cdeddd150287a44ff81a2fca819

diff --git a/dev-ruby/trollop/trollop-2.1.3.ebuild 
b/dev-ruby/trollop/trollop-2.1.3.ebuild
new file mode 100644
index 000..7c18c245b10
--- /dev/null
+++ b/dev-ruby/trollop/trollop-2.1.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="FAQ.txt History.txt README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Trollop is a commandline option parser for Ruby"
+HOMEPAGE="https://manageiq.github.io/trollop/";
+LICENSE="MIT"
+
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="2"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/chronic )"
+
+all_ruby_prepare() {
+   sed -i -e '/bundle/ s:^:#:' Rakefile || die
+}
+
+each_ruby_test() {
+   MUTANT=true ${RUBY} -S rake test || die "Tests failed."
+}



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

2018-07-11 Thread Hans de Graaff
commit: 05235bbf606c3d276e8340322492a2e6dedab259
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Jul 12 04:19:26 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Jul 12 04:19:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05235bbf

dev-ruby/dnsruby: add 1.61.0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/dnsruby/Manifest  |  1 +
 dev-ruby/dnsruby/dnsruby-1.61.0.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/dnsruby/Manifest b/dev-ruby/dnsruby/Manifest
index 311e8119db9..e36d1c98ad2 100644
--- a/dev-ruby/dnsruby/Manifest
+++ b/dev-ruby/dnsruby/Manifest
@@ -1 +1,2 @@
 DIST dnsruby-1.60.2.gem 254976 BLAKE2B 
fa91e3994331fcb37650c905fb00cd58363ca9b90a3943934b2bb3de0ac82b9efeda418bba45673ec3911676dd1b68bd47d079c3ded201c190d17e2ee2bef0f4
 SHA512 
dcf191421aaf667f59baaa8098099c5532542e1b9e4fa6ad63a727361d985f14adb3d3fee4aef78c4b6ef8809fe06447ee60d7a220af93e57848a57e0ddfaa22
+DIST dnsruby-1.61.0.gem 257024 BLAKE2B 
ba0662b758e8950bf4d9617ee1b36330ba5a66560c8a07985dcd7c41be0881287e4b4de35e009c0319021ba7ebde107f67b3bff0eecbac101ebe32fa0d8b3d97
 SHA512 
7ea06e40790a822d7eaa604d349acb692103b7dd5faa2b9fce8e3a4bba520d9597e1c6e7c5f74ad64cdcdf2583bce606d444c07b4e52d3ef6630fc7869168015

diff --git a/dev-ruby/dnsruby/dnsruby-1.61.0.ebuild 
b/dev-ruby/dnsruby/dnsruby-1.61.0.ebuild
new file mode 100644
index 000..305d820349e
--- /dev/null
+++ b/dev-ruby/dnsruby/dnsruby-1.61.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_TASK_TEST=""
+RUBY_FAKEGEM_DOCDIR="html"
+RUBY_FAKEGEM_EXTRADOC="DNSSEC EXAMPLES README.md"
+inherit ruby-fakegem
+
+DESCRIPTION="A pure Ruby DNS client library"
+HOMEPAGE="https://github.com/alexdalitz/dnsruby";
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.4:5 )"
+
+all_ruby_prepare() {
+   sed -i -e "/[Cc]overall/d" Rakefile || die
+   sed -i -e '/display/d' \
+   -e '/Display/,/^}/d' test/spec_helper.rb || die
+}
+
+each_ruby_test() {
+   # only run offline tests
+   #${RUBY} -I .:lib test/ts_dnsruby.rb || die "test failed"
+   ${RUBY} -I .:lib test/ts_offline.rb || die "test failed"
+}



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

2018-07-11 Thread Nick Sarnie
commit: 44b9278a1cb40ebae2ce038ccf97bae83ed786ac
Author: Nick Sarnie  gentoo  org>
AuthorDate: Thu Jul 12 02:55:32 2018 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Thu Jul 12 02:57:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44b9278a

dev-util/vulkan-tools: Only rename cube binaries with cube USE

Whoops

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild | 7 +--
 dev-util/vulkan-tools/vulkan-tools-.ebuild| 7 +--
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild
index f4bd7a73887..043d52de1fe 100644
--- a/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild
@@ -76,8 +76,11 @@ multilib_src_configure() {
 
 multilib_src_install() {
default
-   mv "${ED%/}"/usr/bin/cube "${ED%/}"/usr/bin/vulkancube || die
-   mv "${ED%/}"/usr/bin/cubepp "${ED%/}"/usr/bin/vulkancubecpp || die
+
+   if use cube; then
+   mv "${ED%/}"/usr/bin/cube "${ED%/}"/usr/bin/vulkancube || die
+   mv "${ED%/}"/usr/bin/cubepp "${ED%/}"/usr/bin/vulkancubecpp || 
die
+   fi
 }
 
 pkg_postinst() {

diff --git a/dev-util/vulkan-tools/vulkan-tools-.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-.ebuild
index f4bd7a73887..043d52de1fe 100644
--- a/dev-util/vulkan-tools/vulkan-tools-.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-.ebuild
@@ -76,8 +76,11 @@ multilib_src_configure() {
 
 multilib_src_install() {
default
-   mv "${ED%/}"/usr/bin/cube "${ED%/}"/usr/bin/vulkancube || die
-   mv "${ED%/}"/usr/bin/cubepp "${ED%/}"/usr/bin/vulkancubecpp || die
+
+   if use cube; then
+   mv "${ED%/}"/usr/bin/cube "${ED%/}"/usr/bin/vulkancube || die
+   mv "${ED%/}"/usr/bin/cubepp "${ED%/}"/usr/bin/vulkancubecpp || 
die
+   fi
 }
 
 pkg_postinst() {



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

2018-07-11 Thread Nick Sarnie
commit: 228400bc7a0f33ae0793a3036246c084c0ba6ebd
Author: Nick Sarnie  gentoo  org>
AuthorDate: Thu Jul 12 02:46:10 2018 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Thu Jul 12 02:46:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=228400bc

dev-util/vulkan-tools: Relax dev-util/glslang dependency

It is only required with USE=cube as per upstream

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild | 2 +-
 dev-util/vulkan-tools/vulkan-tools-.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild
index 2215b2e1cc5..f4bd7a73887 100644
--- a/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild
@@ -27,7 +27,7 @@ IUSE="+cube +vulkaninfo X wayland"
 # Old packaging will cause file collisions
 RDEPEND="!<=media-libs/vulkan-loader-1.1.70.0-r999"
 DEPEND="${PYTHON_DEPS}
-   dev-util/glslang:=[${MULTILIB_USEDEP}]
+   cube? ( dev-util/glslang:=[${MULTILIB_USEDEP}] )
dev-util/vulkan-headers
media-libs/vulkan-loader:=[${MULTILIB_USEDEP},wayland?,X?]
wayland? ( dev-libs/wayland:=[${MULTILIB_USEDEP}] )

diff --git a/dev-util/vulkan-tools/vulkan-tools-.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-.ebuild
index 2215b2e1cc5..f4bd7a73887 100644
--- a/dev-util/vulkan-tools/vulkan-tools-.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-.ebuild
@@ -27,7 +27,7 @@ IUSE="+cube +vulkaninfo X wayland"
 # Old packaging will cause file collisions
 RDEPEND="!<=media-libs/vulkan-loader-1.1.70.0-r999"
 DEPEND="${PYTHON_DEPS}
-   dev-util/glslang:=[${MULTILIB_USEDEP}]
+   cube? ( dev-util/glslang:=[${MULTILIB_USEDEP}] )
dev-util/vulkan-headers
media-libs/vulkan-loader:=[${MULTILIB_USEDEP},wayland?,X?]
wayland? ( dev-libs/wayland:=[${MULTILIB_USEDEP}] )



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

2018-07-11 Thread Nick Sarnie
commit: 5e804224fc7c73ab6107407b02cc99f5ecf71ec1
Author: Nick Sarnie  gentoo  org>
AuthorDate: Thu Jul 12 02:10:22 2018 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Thu Jul 12 02:10:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e804224

dev-util/spirv-headers: Version bump

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-util/spirv-headers/Manifest  | 1 +
 ...eaders-.ebuild => spirv-headers-1.3.1_pre20180710.ebuild} | 9 +
 dev-util/spirv-headers/spirv-headers-.ebuild | 2 --
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-util/spirv-headers/Manifest b/dev-util/spirv-headers/Manifest
index 2bf7f1c55ec..a2584fcb7ac 100644
--- a/dev-util/spirv-headers/Manifest
+++ b/dev-util/spirv-headers/Manifest
@@ -1 +1,2 @@
+DIST spirv-headers-1.3.1_pre20180710.tar.gz 281382 BLAKE2B 
9e38c7779af97cae27c595f816d1e1cc99eb29e086dd4b6cb76cb4696f73f1e05f92f022b77639f5a80f517df75996fdbd10d7bb11cc6eccad8144a7b8b776d5
 SHA512 
5f0c174ea07dccefdd10242f5122e10b11f8975d2fb36f77975497050b10841fcb4a7f19d90c9ef5853a81dabc8d93b91621d07175a1cf3ab8ba7f6c16fe51fe
 DIST spirv-headers-1.3.tar.gz 279415 BLAKE2B 
77e36c02d072daa3aff7eceda53a5d6cd060564f494986a9a99c52d80605e67c6f8ba2968d656b955f188da2c0bea18b11c834d11ed334f5c33eb14b4e9c
 SHA512 
c612c4fcffefc3a277a9713712150c7e6b696eb676737b4968809784ef32c004820d9abd22389082203fc0853a87f920754b7c9b6b43d85131e750d09e267036

diff --git a/dev-util/spirv-headers/spirv-headers-.ebuild 
b/dev-util/spirv-headers/spirv-headers-1.3.1_pre20180710.ebuild
similarity index 51%
copy from dev-util/spirv-headers/spirv-headers-.ebuild
copy to dev-util/spirv-headers/spirv-headers-1.3.1_pre20180710.ebuild
index a2e33d00bd8..c3de1e2ba58 100644
--- a/dev-util/spirv-headers/spirv-headers-.ebuild
+++ b/dev-util/spirv-headers/spirv-headers-1.3.1_pre20180710.ebuild
@@ -3,14 +3,15 @@
 
 EAPI=6
 
-inherit cmake-utils git-r3
+inherit cmake-utils
 
 DESCRIPTION="Machine-readable files for the SPIR-V Registry"
 HOMEPAGE="https://www.khronos.org/registry/spir-v/";
-EGIT_REPO_URI="https://github.com/KhronosGroup/SPIRV-Headers.git";
-SRC_URI=""
+EGIT_COMMIT="ff684ffc6a35d2a58f0f63108877d0064ea33feb"
+SRC_URI="https://github.com/KhronosGroup/SPIRV-Headers/archive/${EGIT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
+KEYWORDS="~amd64 ~x86"
 
-PATCHES=( "${FILESDIR}"/${PN}-Get-rid-of-custom-target.patch )
+S="${WORKDIR}/SPIRV-Headers-${EGIT_COMMIT}"

diff --git a/dev-util/spirv-headers/spirv-headers-.ebuild 
b/dev-util/spirv-headers/spirv-headers-.ebuild
index a2e33d00bd8..f5feb0b4bbd 100644
--- a/dev-util/spirv-headers/spirv-headers-.ebuild
+++ b/dev-util/spirv-headers/spirv-headers-.ebuild
@@ -12,5 +12,3 @@ SRC_URI=""
 
 LICENSE="MIT"
 SLOT="0"
-
-PATCHES=( "${FILESDIR}"/${PN}-Get-rid-of-custom-target.patch )



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

2018-07-11 Thread Nick Sarnie
commit: a2c2cf173f76236087b7839689ceb58946ce0f72
Author: Nick Sarnie  gentoo  org>
AuthorDate: Thu Jul 12 02:13:28 2018 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Thu Jul 12 02:13:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2c2cf17

dev-util/spirv-tools: Version bump

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-util/spirv-tools/Manifest  |  1 +
 dev-util/spirv-tools/spirv-tools-2018.4.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/dev-util/spirv-tools/Manifest b/dev-util/spirv-tools/Manifest
index f797048754e..32fa406d06d 100644
--- a/dev-util/spirv-tools/Manifest
+++ b/dev-util/spirv-tools/Manifest
@@ -1 +1,2 @@
 DIST spirv-tools-2018.2.tar.gz 1039360 BLAKE2B 
bef1c3e4efa598bffad8f71c4a92cce9db98fd5699ab2f5616a7a4985c15da87f1e246391a2ca5e07affd352c6314896ff1599cdddc117b01655990f9c7b78f4
 SHA512 
6deed7a36b460135fd7db613b7101d53a87ae5d555f1795aa9a96ab14f437621d4667a41e5f5ae16e849f8e5d66e02611bed21e3110a902feac6c7f376eb5815
+DIST spirv-tools-2018.4.tar.gz 1327904 BLAKE2B 
1ed01edf0dd5e8c3ac0d1a866d27f2e2ef377e9c082579291f8e755592ff3ea4f44a597e3e7694977500b9434889b0f741e03d566e777bb0f9af5e2e59374d61
 SHA512 
6b982efb30529e7f7776d7702f563bb4f874b9be3a7b0d838d77a15813f4177da99c152f40f11854fc3d60791ecf4026e006ff25a216bb44194dfd921c50920d

diff --git a/dev-util/spirv-tools/spirv-tools-2018.4.ebuild 
b/dev-util/spirv-tools/spirv-tools-2018.4.ebuild
new file mode 100644
index 000..9b76b868f23
--- /dev/null
+++ b/dev-util/spirv-tools/spirv-tools-2018.4.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-multilib cmake-utils
+
+DESCRIPTION="Provides an API and commands for processing SPIR-V modules"
+HOMEPAGE="https://github.com/KhronosGroup/SPIRV-Tools";
+SRC_URI="https://github.com/KhronosGroup/SPIRV-Tools/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+# Tests fail upon finding symbols that do not match a regular expression
+# in the generated library. Easily hit with non-standard compiler flags
+RESTRICT="test"
+
+RDEPEND=""
+DEPEND="dev-util/spirv-headers"
+EGIT_COMMIT="f508896d6487d09f5c9a2a3835595446fec0791a"
+S="${WORKDIR}/SPIRV-Tools-${PV}"
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   "-DSPIRV-Headers_SOURCE_DIR=/usr/"
+   )
+
+   cmake-utils_src_configure
+}
+
+multilib_src_install() {
+   default
+   echo "${EGIT_COMMIT}" > "${PN}-commit.h" || die
+   insinto /usr/include/"${PN}"
+   doins  "${PN}-commit.h"
+}



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

2018-07-11 Thread Nick Sarnie
commit: 762ab8535fc247cbef6cb607c7ebca2e468c8c2d
Author: Nick Sarnie  gentoo  org>
AuthorDate: Thu Jul 12 00:33:08 2018 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Thu Jul 12 00:42:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=762ab853

dev-util/vulkan-tools: Fix build without X

Added the cube and vulkaninfo USE flags

Vulkaninfo does not support wayland upstream

If X is set at all, XCB will be used

Thanks to hanetzer in #gentoo-desktop for testing

Fixes: https://bugs.gentoo.org/660694
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-util/vulkan-tools/metadata.xml |  4 +++
 .../vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild   | 27 ++-
 dev-util/vulkan-tools/vulkan-tools-.ebuild | 38 +-
 3 files changed, 67 insertions(+), 2 deletions(-)

diff --git a/dev-util/vulkan-tools/metadata.xml 
b/dev-util/vulkan-tools/metadata.xml
index a670686d9eb..bee42ed5665 100644
--- a/dev-util/vulkan-tools/metadata.xml
+++ b/dev-util/vulkan-tools/metadata.xml
@@ -9,6 +9,10 @@
sar...@gentoo.org
Nick Sarnie

+   
+   Build the cube/cubepp demos
+   Build the vulkaninfo utility
+   

KhronosGroup/Vulkan-Tools


diff --git a/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild
index fcd605b2064..2215b2e1cc5 100644
--- a/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-1.1.77.0-r1.ebuild
@@ -22,7 +22,7 @@ HOMEPAGE="https://github.com/KhronosGroup/Vulkan-Tools";
 
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE="X wayland"
+IUSE="+cube +vulkaninfo X wayland"
 
 # Old packaging will cause file collisions
 RDEPEND="!<=media-libs/vulkan-loader-1.1.70.0-r999"
@@ -36,9 +36,15 @@ DEPEND="${PYTHON_DEPS}
x11-libs/libXrandr:=[${MULTILIB_USEDEP}]
   )"
 
+# Vulkaninfo does not support wayland
+REQUIRED_USE="|| ( X wayland )
+ vulkaninfo? ( X )"
+
 multilib_src_configure() {
local mycmakeargs=(
-DCMAKE_SKIP_RPATH=True
+   -DBUILD_CUBE=$(usex cube)
+   -DBUILD_VULKANINFO=$(usex vulkaninfo)
-DBUILD_WSI_MIR_SUPPORT=False
-DBUILD_WSI_WAYLAND_SUPPORT=$(usex wayland)
-DBUILD_WSI_XCB_SUPPORT=$(usex X)
@@ -46,6 +52,25 @@ multilib_src_configure() {
-DGLSLANG_INSTALL_DIR="/usr"
-DVULKAN_HEADERS_INSTALL_DIR="/usr"
)
+
+   # Upstream only supports one window system at a time
+   # If X is set at all, even if wayland is set, use X
+   #
+   # If -cube and/or -vulkaninfo is set, the flags we set
+   # are ignored, so we don't need to consider that
+   if use X; then
+   mycmakeargs+=(
+   -DCUBE_WSI_SELECTION="XCB"
+   -DVULKANINFO_WSI_SELECTION="XCB"
+   )
+   fi
+
+   if ! use X && use wayland; then
+   mycmakeargs+=(
+   -DCUBE_WSI_SELECTION="WAYLAND"
+   )
+   fi
+
cmake-utils_src_configure
 }
 

diff --git a/dev-util/vulkan-tools/vulkan-tools-.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-.ebuild
index 3ffd734f550..2215b2e1cc5 100644
--- a/dev-util/vulkan-tools/vulkan-tools-.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-.ebuild
@@ -22,7 +22,7 @@ HOMEPAGE="https://github.com/KhronosGroup/Vulkan-Tools";
 
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE="X wayland"
+IUSE="+cube +vulkaninfo X wayland"
 
 # Old packaging will cause file collisions
 RDEPEND="!<=media-libs/vulkan-loader-1.1.70.0-r999"
@@ -36,9 +36,15 @@ DEPEND="${PYTHON_DEPS}
x11-libs/libXrandr:=[${MULTILIB_USEDEP}]
   )"
 
+# Vulkaninfo does not support wayland
+REQUIRED_USE="|| ( X wayland )
+ vulkaninfo? ( X )"
+
 multilib_src_configure() {
local mycmakeargs=(
-DCMAKE_SKIP_RPATH=True
+   -DBUILD_CUBE=$(usex cube)
+   -DBUILD_VULKANINFO=$(usex vulkaninfo)
-DBUILD_WSI_MIR_SUPPORT=False
-DBUILD_WSI_WAYLAND_SUPPORT=$(usex wayland)
-DBUILD_WSI_XCB_SUPPORT=$(usex X)
@@ -46,5 +52,35 @@ multilib_src_configure() {
-DGLSLANG_INSTALL_DIR="/usr"
-DVULKAN_HEADERS_INSTALL_DIR="/usr"
)
+
+   # Upstream only supports one window system at a time
+   # If X is set at all, even if wayland is set, use X
+   #
+   # If -cube and/or -vulkaninfo is set, the flags we set
+   # are ignored, so we don't need to consider that
+   if use X; then
+   mycmakeargs+=(
+   -DCUBE_WSI_SELECTION="XCB"
+   -DVULKANINFO_WSI_SELECTION="XCB"
+   )
+   fi
+
+   if ! use X && use wayland; then
+   my

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

2018-07-11 Thread Mikle Kolyada
commit: c75724cb8c20b47ed6d68d6dc33860c3cf2fd73a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 12 00:41:37 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 12 00:41:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c75724cb

sys-fs/zerofree: Drop old (EAPI=4)

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-fs/zerofree/Manifest  |  2 --
 sys-fs/zerofree/zerofree-1.0.1.ebuild | 37 ---
 sys-fs/zerofree/zerofree-1.0.3.ebuild | 37 ---
 3 files changed, 76 deletions(-)

diff --git a/sys-fs/zerofree/Manifest b/sys-fs/zerofree/Manifest
index 072ee2ba52c..df3f07d3c3d 100644
--- a/sys-fs/zerofree/Manifest
+++ b/sys-fs/zerofree/Manifest
@@ -1,3 +1 @@
-DIST zerofree-1.0.1.tgz 8333 BLAKE2B 
24d3ebdf26d7a3186fad3fcde8e6ae196f60e85f0414975ee1a745b8e1a5caab69bb359b8ec40e004e210f8c3bad7dc986b1a7b40d87a8a52eccf0f05943d180
 SHA512 
c3d06990f8e61f9a60908e20d3d1534a3da76f1a28aec28c89d1df7978a78844c1420edc27e44340bb98d4d929dda42426d0efb8a42c66501f09f2b06bc27a26
-DIST zerofree-1.0.3.tgz 8506 BLAKE2B 
ccc1892b7e5653f50f5791bd94b1eb35780e17922e75cfe0d05764d7a3c6a5749b74076d341ba5262db8aea8e6008bba0fa86f4bcaca8b3fd3b85ed3b4ba5aa0
 SHA512 
e23d343471240382629b4c86b6caa74571a77fb19f1b31bbbd9fad03ba1b42898f8ae042d1238d9c91d9b7fbc9893fb708cb557d3bbd9ab9a024aca6a8ddbbe3
 DIST zerofree-1.0.4.tgz 8509 BLAKE2B 
d2d5872ad22e7c5f08e00083b0dadb5411023df9d129ec3bd08637e8a74f77f13a535e6f2c1a7cd4d390ed7a0d0b6e2433dacfa89336bb16ffb64c0d1c409929
 SHA512 
8172c8c43794eab1f751a700f847098343659ceabaf6ab78c3c902b34cf9b0db0dda75308b6bc80d22afccd11be25f35070ca6d715c3282c5c7c7106f598b42b

diff --git a/sys-fs/zerofree/zerofree-1.0.1.ebuild 
b/sys-fs/zerofree/zerofree-1.0.1.ebuild
deleted file mode 100644
index daeafd39b4e..000
--- a/sys-fs/zerofree/zerofree-1.0.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Zero's out all free space on a filesystem"
-HOMEPAGE="http://intgat.tigress.co.uk/rmy/uml/index.html";
-SRC_URI="http://intgat.tigress.co.uk/rmy/uml/${P}.tgz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~mips"
-IUSE=""
-
-DEPEND="sys-libs/e2fsprogs-libs"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   # Honor system CFLAGS.
-   sed -i \
-   -e 
"s:CC=gcc:CC=$(tc-getCC)\nCFLAGS=${CFLAGS}\nLDFLAGS=${LDFLAGS}:g" \
-   -e "s:-o zerofree:\$(CFLAGS) \$(LDFLAGS) -o zerofree:g" \
-   -e "/-lext2fs/{ s:-lext2fs::g; s:$: -lext2fs:g; }" \
-   Makefile || die "Failed to sed the Makefile"
-}
-
-src_compile() {
-   # Just a Makefile, nothing fancy.
-   make || die "Failed to compile ${PN}."
-}
-
-src_install() {
-   # Install into /sbin
-   into /
-   dosbin zerofree
-}

diff --git a/sys-fs/zerofree/zerofree-1.0.3.ebuild 
b/sys-fs/zerofree/zerofree-1.0.3.ebuild
deleted file mode 100644
index daeafd39b4e..000
--- a/sys-fs/zerofree/zerofree-1.0.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Zero's out all free space on a filesystem"
-HOMEPAGE="http://intgat.tigress.co.uk/rmy/uml/index.html";
-SRC_URI="http://intgat.tigress.co.uk/rmy/uml/${P}.tgz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~mips"
-IUSE=""
-
-DEPEND="sys-libs/e2fsprogs-libs"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   # Honor system CFLAGS.
-   sed -i \
-   -e 
"s:CC=gcc:CC=$(tc-getCC)\nCFLAGS=${CFLAGS}\nLDFLAGS=${LDFLAGS}:g" \
-   -e "s:-o zerofree:\$(CFLAGS) \$(LDFLAGS) -o zerofree:g" \
-   -e "/-lext2fs/{ s:-lext2fs::g; s:$: -lext2fs:g; }" \
-   Makefile || die "Failed to sed the Makefile"
-}
-
-src_compile() {
-   # Just a Makefile, nothing fancy.
-   make || die "Failed to compile ${PN}."
-}
-
-src_install() {
-   # Install into /sbin
-   into /
-   dosbin zerofree
-}



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

2018-07-11 Thread Mikle Kolyada
commit: 38c247138e7fa1ddff536cf4c6b2c045097baf30
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 12 00:30:04 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 12 00:30:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38c24713

dev-python/traits: ppc stable wrt bug #653766

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-python/traits/traits-4.6.0.ebuild 
b/dev-python/traits/traits-4.6.0.ebuild
index 83709fb5e37..d3d48e925b4 100644
--- a/dev-python/traits/traits-4.6.0.ebuild
+++ b/dev-python/traits/traits-4.6.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"



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

2018-07-11 Thread Brian Dolbec
commit: 57406041db1c787dfe2e9d87c4bd9bef684930fd
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Jul 12 00:23:54 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 12 00:23:54 2018 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=57406041

Gentoo-keys: Update gentoo-devs.seeds

 files/gentoo-keys/seeds/gentoo-devs.seeds |  44 --
 files/gentoo-keys/seeds/gentoo-devs.seeds.sig | Bin 662 -> 662 bytes
 2 files changed, 44 deletions(-)

diff --git a/files/gentoo-keys/seeds/gentoo-devs.seeds 
b/files/gentoo-keys/seeds/gentoo-devs.seeds
index cfe5d2c..e197cce 100644
--- a/files/gentoo-keys/seeds/gentoo-devs.seeds
+++ b/files/gentoo-keys/seeds/gentoo-devs.seeds
@@ -1,20 +1,4 @@
 {
-"a3li": {
-"fingerprint": [
-"53687A1A7BACAA700721F9AB36BA656112EE3000", 
-"F8983D196A520EF17451C53493EA2A85F3C06469"
-], 
-"keydir": "a3li", 
-"keys": [
-"53687A1A7BACAA700721F9AB36BA656112EE3000", 
-"F8983D196A520EF17451C53493EA2A85F3C06469"
-], 
-"name": "Alex Legler", 
-"nick": "a3li", 
-"uid": [
-"Alex Legler "
-]
-}, 
 "aballier": {
 "fingerprint": [
 "A93B16B16998A428D54D96C60E2548BBC607E5AE"
@@ -1491,20 +1475,6 @@
 "Micha\u0142 G\u00f3rny "
 ]
 }, 
-"miska": {
-"fingerprint": [
-"E994F4360AB24735B605077A54719857C7F5417F"
-], 
-"keydir": "miska", 
-"keys": [
-"E994F4360AB24735B605077A54719857C7F5417F"
-], 
-"name": "Michal Hru\u0161eck\u00fd", 
-"nick": "miska", 
-"uid": [
-"Michal Hru\u0161eck\u00fd "
-]
-}, 
 "mjo": {
 "fingerprint": [
 "6B3C93374BBB3F5578FBAC491C49724D229E93A2"
@@ -1929,20 +1899,6 @@
 "Rafael Martins "
 ]
 }, 
-"ramereth": {
-"fingerprint": [
-"042392F3544A12825AB14D07416FA15D27F4B742"
-], 
-"keydir": "ramereth", 
-"keys": [
-"042392F3544A12825AB14D07416FA15D27F4B742"
-], 
-"name": "Lance Albertson", 
-"nick": "ramereth", 
-"uid": [
-"Lance Albertson "
-]
-}, 
 "reavertm": {
 "fingerprint": [
 "8D3958F3B57C63A2A86D1FC816E1DAFDB1E955DB"

diff --git a/files/gentoo-keys/seeds/gentoo-devs.seeds.sig 
b/files/gentoo-keys/seeds/gentoo-devs.seeds.sig
index 25de118..210f94f 100644
Binary files a/files/gentoo-keys/seeds/gentoo-devs.seeds.sig and 
b/files/gentoo-keys/seeds/gentoo-devs.seeds.sig differ



[gentoo-commits] proj/gkey-seeds:master commit in: /

2018-07-11 Thread Brian Dolbec
commit: 7e31510a8c7a028f8fbadd58b421a4597c717d5b
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Jul 12 00:23:42 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Jul 12 00:23:42 2018 +
URL:https://gitweb.gentoo.org/proj/gkey-seeds.git/commit/?id=7e31510a

Gentoo-keys: Update gentoo-devs.seeds

 gentoo-devs.seeds |  44 
 gentoo-devs.seeds.sig | Bin 662 -> 662 bytes
 2 files changed, 44 deletions(-)

diff --git a/gentoo-devs.seeds b/gentoo-devs.seeds
index cfe5d2c..e197cce 100644
--- a/gentoo-devs.seeds
+++ b/gentoo-devs.seeds
@@ -1,20 +1,4 @@
 {
-"a3li": {
-"fingerprint": [
-"53687A1A7BACAA700721F9AB36BA656112EE3000", 
-"F8983D196A520EF17451C53493EA2A85F3C06469"
-], 
-"keydir": "a3li", 
-"keys": [
-"53687A1A7BACAA700721F9AB36BA656112EE3000", 
-"F8983D196A520EF17451C53493EA2A85F3C06469"
-], 
-"name": "Alex Legler", 
-"nick": "a3li", 
-"uid": [
-"Alex Legler "
-]
-}, 
 "aballier": {
 "fingerprint": [
 "A93B16B16998A428D54D96C60E2548BBC607E5AE"
@@ -1491,20 +1475,6 @@
 "Micha\u0142 G\u00f3rny "
 ]
 }, 
-"miska": {
-"fingerprint": [
-"E994F4360AB24735B605077A54719857C7F5417F"
-], 
-"keydir": "miska", 
-"keys": [
-"E994F4360AB24735B605077A54719857C7F5417F"
-], 
-"name": "Michal Hru\u0161eck\u00fd", 
-"nick": "miska", 
-"uid": [
-"Michal Hru\u0161eck\u00fd "
-]
-}, 
 "mjo": {
 "fingerprint": [
 "6B3C93374BBB3F5578FBAC491C49724D229E93A2"
@@ -1929,20 +1899,6 @@
 "Rafael Martins "
 ]
 }, 
-"ramereth": {
-"fingerprint": [
-"042392F3544A12825AB14D07416FA15D27F4B742"
-], 
-"keydir": "ramereth", 
-"keys": [
-"042392F3544A12825AB14D07416FA15D27F4B742"
-], 
-"name": "Lance Albertson", 
-"nick": "ramereth", 
-"uid": [
-"Lance Albertson "
-]
-}, 
 "reavertm": {
 "fingerprint": [
 "8D3958F3B57C63A2A86D1FC816E1DAFDB1E955DB"

diff --git a/gentoo-devs.seeds.sig b/gentoo-devs.seeds.sig
index 25de118..210f94f 100644
Binary files a/gentoo-devs.seeds.sig and b/gentoo-devs.seeds.sig differ



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

2018-07-11 Thread Thomas Deutschmann
commit: c9cbe05dc331385ab61ec6e9aa281c357a6db54c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jul 12 00:15:40 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jul 12 00:16:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9cbe05d

media-sound/asunder: drop aac USE flag

Closes: https://bugs.gentoo.org/660876
Package-Manager: Portage-2.3.41, Repoman-2.3.9
RepoMan-Options: --force

 .../asunder/{asunder-2.9.2-r1.ebuild => asunder-2.9.2-r2.ebuild}   | 3 +--
 media-sound/asunder/{asunder-2.9.3.ebuild => asunder-2.9.3-r1.ebuild}  | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/media-sound/asunder/asunder-2.9.2-r1.ebuild 
b/media-sound/asunder/asunder-2.9.2-r2.ebuild
similarity index 92%
rename from media-sound/asunder/asunder-2.9.2-r1.ebuild
rename to media-sound/asunder/asunder-2.9.2-r2.ebuild
index 02687a60142..ed513c27d33 100644
--- a/media-sound/asunder/asunder-2.9.2-r1.ebuild
+++ b/media-sound/asunder/asunder-2.9.2-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://littlesvr.ca/${PN}/releases/${P}.tar.bz2";
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ~ppc x86"
-IUSE="aac flac mac mp3 musepack opus vorbis wavpack"
+IUSE="flac mac mp3 musepack opus vorbis wavpack"
 
 COMMON_DEPEND=">=media-libs/libcddb-0.9.5
media-sound/cdparanoia
@@ -22,7 +22,6 @@ DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
sys-devel/gettext"
 RDEPEND="${COMMON_DEPEND}
-   aac? ( media-sound/neroaac )
flac? ( media-libs/flac )
mac? ( media-sound/mac )
mp3? ( media-sound/lame )

diff --git a/media-sound/asunder/asunder-2.9.3.ebuild 
b/media-sound/asunder/asunder-2.9.3-r1.ebuild
similarity index 92%
rename from media-sound/asunder/asunder-2.9.3.ebuild
rename to media-sound/asunder/asunder-2.9.3-r1.ebuild
index 1dee31d021e..34f0aaa1ed7 100644
--- a/media-sound/asunder/asunder-2.9.3.ebuild
+++ b/media-sound/asunder/asunder-2.9.3-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://littlesvr.ca/${PN}/releases/${P}.tar.bz2";
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="aac flac mac mp3 musepack opus vorbis wavpack"
+IUSE="flac mac mp3 musepack opus vorbis wavpack"
 
 COMMON_DEPEND=">=media-libs/libcddb-0.9.5
media-sound/cdparanoia
@@ -22,7 +22,6 @@ DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
sys-devel/gettext"
 RDEPEND="${COMMON_DEPEND}
-   aac? ( media-sound/neroaac )
flac? ( media-libs/flac )
mac? ( media-sound/mac )
mp3? ( media-sound/lame )



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

2018-07-11 Thread Mikle Kolyada
commit: eb6674082ce7dead4b9f3127a28b32adc3fbba2d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 12 00:06:49 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 12 00:06:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb667408

media-sound/vorbis-tools: ppc stable wrt bug #537422

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-sound/vorbis-tools/vorbis-tools-1.4.0-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/vorbis-tools/vorbis-tools-1.4.0-r5.ebuild 
b/media-sound/vorbis-tools/vorbis-tools-1.4.0-r5.ebuild
index c44d174861f..7587affb598 100644
--- a/media-sound/vorbis-tools/vorbis-tools-1.4.0-r5.ebuild
+++ b/media-sound/vorbis-tools/vorbis-tools-1.4.0-r5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://downloads.xiph.org/releases/vorbis/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac kate nls +ogg123 speex"
 
 RDEPEND="



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

2018-07-11 Thread Mikle Kolyada
commit: dc78374c0abc99546048ddedfe2c3bf8b1b23db5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 12 00:03:39 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 12 00:03:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc78374c

net-wireless/bluez: ppc stable wrt bug #655114

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-wireless/bluez/bluez-5.49-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/bluez/bluez-5.49-r1.ebuild 
b/net-wireless/bluez/bluez-5.49-r1.ebuild
index b2be5a4fc77..26cea7716cd 100644
--- a/net-wireless/bluez/bluez-5.49-r1.ebuild
+++ b/net-wireless/bluez/bluez-5.49-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0/3"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~mips ~ppc ppc64 x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~mips ppc ppc64 x86"
 IUSE="alsa cups doc debug deprecated extra-tools experimental +mesh +obex 
+readline selinux systemd test test-programs +udev user-session"
 
 # Since this release all remaining extra-tools need readline support, but this 
could



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

2018-07-11 Thread Mikle Kolyada
commit: eb2d161d2926a899621bd6037ac6206a7edbe63f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jul 12 00:02:06 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jul 12 00:02:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb2d161d

sys-auth/nss-mdns: ppc stable wrt bug #651596

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-auth/nss-mdns/nss-mdns-0.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/nss-mdns/nss-mdns-0.13.ebuild 
b/sys-auth/nss-mdns/nss-mdns-0.13.ebuild
index 1285c4be869..dc8347e21d4 100644
--- a/sys-auth/nss-mdns/nss-mdns-0.13.ebuild
+++ b/sys-auth/nss-mdns/nss-mdns-0.13.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/lathiat/nss-mdns/releases/download/v${PV}/${P}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~mips ~ppc x86"
+KEYWORDS="amd64 ~arm ~hppa ~mips ppc x86"
 IUSE="test"
 
 RDEPEND=">=net-dns/avahi-0.6.31-r2[${MULTILIB_USEDEP}]"



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

2018-07-11 Thread Mikle Kolyada
commit: aefc712eb53f13952aea3202d98c222f6e2de6c0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 23:59:55 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 23:59:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aefc712e

net-analyzer/nagios-core: ppc stable wrt bug #629380

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-analyzer/nagios-core/nagios-core-4.3.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/nagios-core/nagios-core-4.3.4.ebuild 
b/net-analyzer/nagios-core/nagios-core-4.3.4.ebuild
index ee472ba7a10..9ee27cd6da9 100644
--- a/net-analyzer/nagios-core/nagios-core-4.3.4.ebuild
+++ b/net-analyzer/nagios-core/nagios-core-4.3.4.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/nagios/${MY_P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 sparc x86"
 IUSE="apache2 classicui lighttpd perl +web vim-syntax"
 
 # In pkg_postinst(), we change the group of the Nagios configuration



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

2018-07-11 Thread Mikle Kolyada
commit: b6bb263ebc1ec0a1959421b784cc8c04ef3a59fc
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 23:55:22 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 23:55:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6bb263e

dev-ruby/yajl-ruby: ppc stable wrt bug #636474

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild 
b/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild
index 7df07bfd296..25e528409ab 100644
--- a/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild
+++ b/dev-ruby/yajl-ruby/yajl-ruby-1.3.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/brianmario/yajl-ruby";
 
 LICENSE="MIT"
 SLOT="0"
-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"
+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"
 IUSE=""
 
 RDEPEND="${RDEPEND} dev-libs/yajl"



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

2018-07-11 Thread Mikle Kolyada
commit: f67ebf60044430cf267d63da1383b2f93a480918
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 23:42:28 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 23:42:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f67ebf60

app-forensics/chkrootkit: amd64 stable wrt bug #660906

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-forensics/chkrootkit/chkrootkit-0.52.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-forensics/chkrootkit/chkrootkit-0.52.ebuild 
b/app-forensics/chkrootkit/chkrootkit-0.52.ebuild
index cc05fb6c9a6..3083980070a 100644
--- a/app-forensics/chkrootkit/chkrootkit-0.52.ebuild
+++ b/app-forensics/chkrootkit/chkrootkit-0.52.ebuild
@@ -13,7 +13,7 @@ SRC_URI="ftp://ftp.pangeia.com.br/pub/seg/pac/${P}.tar.gz -> 
${P}.tar
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86"
 IUSE="+cron"
 
 RDEPEND="cron? ( virtual/cron )"



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

2018-07-11 Thread Mikle Kolyada
commit: 99231f7c6890a10f373fc99cd2877f528467b5bc
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 23:38:10 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 23:38:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99231f7c

net-misc/curl: amd64 stable wrt bug #660894

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

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



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

2018-07-11 Thread Michał Górny
commit: 1ce7f089811dbd3fe1fd7a7428206096432c4d62
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 11 22:36:33 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 22:36:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce7f089

dev-python/pytest-xdist: Bump pytest requirement for test failures

 dev-python/pytest-xdist/pytest-xdist-1.22.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-xdist/pytest-xdist-1.22.2.ebuild 
b/dev-python/pytest-xdist/pytest-xdist-1.22.2.ebuild
index bde1e563509..6a47c7fc1e4 100644
--- a/dev-python/pytest-xdist/pytest-xdist-1.22.2.ebuild
+++ b/dev-python/pytest-xdist/pytest-xdist-1.22.2.ebuild
@@ -18,7 +18,7 @@ IUSE="test"
 
 RDEPEND="
>=dev-python/execnet-1.1[${PYTHON_USEDEP}]
-   >=dev-python/pytest-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/pytest-3.4.2[${PYTHON_USEDEP}]
dev-python/pytest-forked[${PYTHON_USEDEP}]
>=dev-python/py-1.4.22[${PYTHON_USEDEP}]
 "



[gentoo-commits] repo/gentoo:master commit in: sys-boot/refind/, app-crypt/efitools/, profiles/updates/, ...

2018-07-11 Thread Michał Górny
commit: c638678c995810739309b8582e90a3957bc98615
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sat Jul  7 22:47:08 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 22:18:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c638678c

app-crypt/sbsigntool: renamed to app-crypt/sbsigntools

Also changed all required dependencies.

Package-Manager: Portage-2.3.41, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9112

 app-crypt/efitools/efitools-1.7.0.ebuild  | 2 +-
 app-crypt/efitools/efitools-1.8.1.ebuild  | 2 +-
 app-crypt/{sbsigntool => sbsigntools}/Manifest| 2 +-
 .../files/0002-image.c-clear-image-variable.patch | 0
 .../files/0003-Fix-for-multi-sign.patch   | 0
 .../files/sbsigntools-0.9.1-openssl-1.1.0-compat.patch}   | 0
 app-crypt/{sbsigntool => sbsigntools}/metadata.xml| 0
 .../sbsigntools-0.6-r2.ebuild}| 6 +-
 .../sbsigntools-0.9.1-r1.ebuild}  | 8 
 profiles/updates/3Q-2018  | 1 +
 sys-boot/refind/refind-0.10.4-r2.ebuild   | 2 +-
 sys-boot/refind/refind-0.10.8.ebuild  | 2 +-
 sys-boot/refind/refind-0.11.2.ebuild  | 2 +-
 13 files changed, 16 insertions(+), 11 deletions(-)

diff --git a/app-crypt/efitools/efitools-1.7.0.ebuild 
b/app-crypt/efitools/efitools-1.7.0.ebuild
index 63c9fbec051..c47c9b03a9e 100644
--- a/app-crypt/efitools/efitools-1.7.0.ebuild
+++ b/app-crypt/efitools/efitools-1.7.0.ebuild
@@ -21,7 +21,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
sys-apps/help2man
>=sys-boot/gnu-efi-3.0u
-   app-crypt/sbsigntool
+   app-crypt/sbsigntools
virtual/pkgconfig
dev-perl/File-Slurp"
 

diff --git a/app-crypt/efitools/efitools-1.8.1.ebuild 
b/app-crypt/efitools/efitools-1.8.1.ebuild
index 6ede95860eb..94d636eec26 100644
--- a/app-crypt/efitools/efitools-1.8.1.ebuild
+++ b/app-crypt/efitools/efitools-1.8.1.ebuild
@@ -21,7 +21,7 @@ RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
sys-apps/util-linux"
 
 DEPEND="${RDEPEND}
-   app-crypt/sbsigntool
+   app-crypt/sbsigntools
dev-perl/File-Slurp
static? ( ${LIB_DEPEND} )
sys-apps/help2man

diff --git a/app-crypt/sbsigntool/Manifest b/app-crypt/sbsigntools/Manifest
similarity index 66%
rename from app-crypt/sbsigntool/Manifest
rename to app-crypt/sbsigntools/Manifest
index 8df64ea7cc7..a054ddc31c9 100644
--- a/app-crypt/sbsigntool/Manifest
+++ b/app-crypt/sbsigntools/Manifest
@@ -1,3 +1,3 @@
 DIST sbsigntool-0.8-ccan.tar.gz 113537 BLAKE2B 
8fbf27463d30c1895930628a145be2d521ae4f6adb7af3299bf2f5f4319fd643df0a07347ef6851bd41d233af4c3fc5f77002771af1c43aa0f20665aef2390b8
 SHA512 
6857096879f116f1802eb6b44789cbea7bb24440bc0f16503aeadf5f276fa45943f322f844dbb9abee717655205d82b830143be3a7f4424fd4146b9360674a09
-DIST sbsigntool-0.9.1.tar.gz 56497 BLAKE2B 
22791bd4b490f36963a19e82da3ce7b93a56d948bf44d1ffdb62fa3291a3f815b2c19d68f9180b607c2b1438f656367ec1f9002f0b1225734d16a9aadc6d20ec
 SHA512 
ae16232327c098bbc60a9701185d856d851cb7fa8f62be64d3c8f75c8b274b8521fcc4212226189def05db980690878ee6ac9a9b418166c92442aaf35e790d29
 DIST sbsigntool_0.6.orig.tar.gz 212375 BLAKE2B 
fab9141c7fbfa01ec24f975503ac83be4ae0664251a1311afb3d95124fec3750ce20a5ffab35b6965d4ee4585ab4ee91f25ae49488214a983b6fc006071d0968
 SHA512 
ed314d1cb7278cf5f27d4c3cd17f2195678419a7f9e47770429b6f95df35f7df035331e60c45970183ddd9b150a9b752f876c777929598b0525872b3255af95c
+DIST sbsigntools-0.9.1.tar.gz 56497 BLAKE2B 
22791bd4b490f36963a19e82da3ce7b93a56d948bf44d1ffdb62fa3291a3f815b2c19d68f9180b607c2b1438f656367ec1f9002f0b1225734d16a9aadc6d20ec
 SHA512 
ae16232327c098bbc60a9701185d856d851cb7fa8f62be64d3c8f75c8b274b8521fcc4212226189def05db980690878ee6ac9a9b418166c92442aaf35e790d29

diff --git a/app-crypt/sbsigntool/files/0002-image.c-clear-image-variable.patch 
b/app-crypt/sbsigntools/files/0002-image.c-clear-image-variable.patch
similarity index 100%
rename from app-crypt/sbsigntool/files/0002-image.c-clear-image-variable.patch
rename to app-crypt/sbsigntools/files/0002-image.c-clear-image-variable.patch

diff --git a/app-crypt/sbsigntool/files/0003-Fix-for-multi-sign.patch 
b/app-crypt/sbsigntools/files/0003-Fix-for-multi-sign.patch
similarity index 100%
rename from app-crypt/sbsigntool/files/0003-Fix-for-multi-sign.patch
rename to app-crypt/sbsigntools/files/0003-Fix-for-multi-sign.patch

diff --git 
a/app-crypt/sbsigntool/files/sbsigntool-0.9.1-openssl-1.1.0-compat.patch 
b/app-crypt/sbsigntools/files/sbsigntools-0.9.1-openssl-1.1.0-compat.patch
similarity index 100%
rename from 
app-crypt/sbsigntool/files/sbsigntool-0.9.1-openssl-1.1.0-compat.patch
rename to 
app-crypt/sbsigntools/files/sbsigntools-0.9.1-openssl-1.1.0-compat.patch

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

2018-07-11 Thread Michał Górny
commit: 2f2bcaace12dfc41176abcbf8d7fd6a3d7e4b822
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 11 15:56:43 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 22:11:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f2bcaac

dev-python/pytest: Bump to 3.4.2

 dev-python/pytest/Manifest|  1 +
 dev-python/pytest/pytest-3.4.2.ebuild | 79 +++
 2 files changed, 80 insertions(+)

diff --git a/dev-python/pytest/Manifest b/dev-python/pytest/Manifest
index 8aa18223f69..f7b0898a6e2 100644
--- a/dev-python/pytest/Manifest
+++ b/dev-python/pytest/Manifest
@@ -1,3 +1,4 @@
 DIST pytest-3.0.3.tar.gz 731934 BLAKE2B 
7fb57d75bd54eb8a31d9701fdf739119715c475eaaacae3cd038057c1d2bf43fa86ccdc45b3c84962708ef606976ab39ad41e0c3690c8b5f4c04d870579a384e
 SHA512 
ec0b4a5f0d6673a339c5a70b402c004c23db7001005454329eeaea15d890f53b8f2740f6c6254499d0f915b9058bfdfa535d9f22847bb382a060d65204fce4af
 DIST pytest-3.2.2.tar.gz 786396 BLAKE2B 
e669da930890e902b0323ec3a6685080ddd889e74655f7b4cb08ec421651f987597021a31471aab5a32d637b99620ce7792cbdf8f85561db3bb10ff06a446ba1
 SHA512 
6df3a50e7d1efeaf7a283920b16d1daf800798f422bc851b0aacd2bbd5cb0a88c95f9057fae49943b9dfe6527ed552cdf8d983b944ab91d0af252ee4f6eb82db
 DIST pytest-3.4.1.tar.gz 812928 BLAKE2B 
27b25fcc5a268b1c92188c01bf16bf1eb4b8ced7d1a3c8095350ec55b1f1845a5d54bd6bd169142ca0d327f2f8d193774643174a356dd95fa07b3195bc1e8713
 SHA512 
75f728840cde6512619a03ce75fd0b04cb9d57a99f381366a0f9c10ffa3210448e7e85505357bfa9bfb0cca11cdedda2c0e091e5473ed82707a2597f234e659a
+DIST pytest-3.4.2.tar.gz 812719 BLAKE2B 
96623d6cdea4bd79778175c18c949938505f1862010f700f9a8cb85f445910381af391a5b69e664fbbfc254bf46502c798c72026772070236a0a3bca7aeeb3d6
 SHA512 
787065ab76d4482799bb2da9f024c9c383e68cc1cc01f3b80f6ed9444ca6383d20953615696ed4dd01668777b094cf5002b23c4ce51828879dcf8ebf2170c71b

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
new file mode 100644
index 000..d9b4a24f1a2
--- /dev/null
+++ b/dev-python/pytest/pytest-3.4.2.ebuild
@@ -0,0 +1,79 @@
+# 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} pypy{,3} )
+
+inherit distutils-r1
+
+DESCRIPTION="Simple powerful testing with Python"
+HOMEPAGE="http://pytest.org/";
+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 ~s390 ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+# When bumping, please check setup.py for the proper py version
+PY_VER="1.5.0"
+COMMON_DEPEND="
+   >=dev-python/attrs-17.2.0[${PYTHON_USEDEP}]
+   >=dev-python/pluggy-0.5[${PYTHON_USEDEP}]
+   >=dev-python/py-${PY_VER}[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
+   virtual/python-funcsigs[${PYTHON_USEDEP}]
+   doc? (
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   )"
+
+DEPEND="${COMMON_DEPEND}
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/hypothesis-3.5.2[${PYTHON_USEDEP}]
+   >dev-python/pytest-xdist-1.13[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   )"
+
+RDEPEND="
+   ${COMMON_DEPEND}
+   !=${PY_VER}" setup.py || die "Incorrect dev-python/py 
dependency"
+
+   # Something in the ebuild environment causes this to hang/error.
+   # https://bugs.gentoo.org/598442
+   rm testing/test_pdb.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   # test_nose.py not written to suit py3.2 in pypy3
+   if [[ "${EPYTHON}" == pypy3 ]]; then
+   "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX \
+   --ignore=testing/BUILD_nose.py \
+   || die "tests failed with ${EPYTHON}"
+   else
+   "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX testing 
|| die "tests failed with ${EPYTHON}"
+   fi
+}
+
+python_compile_all(){
+   use doc && emake -C doc/en html
+}
+
+python_install_all() {
+   use doc && HTML_DOCS=( doc/en/_build/html/. )
+   distutils-r1_python_install_all
+}



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

2018-07-11 Thread Michał Górny
commit: 7b2ed36e6ad5a93e9518d164d5f90364f4812a5b
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 11 17:43:21 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 22:11:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b2ed36e

dev-python/pytest: Kill obsolete pypy3 workaround

 dev-python/pytest/pytest-3.4.2.ebuild | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
index ed3fc47c722..122e1393e02 100644
--- a/dev-python/pytest/pytest-3.4.2.ebuild
+++ b/dev-python/pytest/pytest-3.4.2.ebuild
@@ -73,14 +73,8 @@ python_prepare_all() {
 }
 
 python_test() {
-   # test_nose.py not written to suit py3.2 in pypy3
-   if [[ "${EPYTHON}" == pypy3 ]]; then
-   "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX -vv \
-   --ignore=testing/BUILD_nose.py \
-   || die "tests failed with ${EPYTHON}"
-   else
-   "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX -vv 
testing || die "tests failed with ${EPYTHON}"
-   fi
+   "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX \
+   -vv testing || die "tests failed with ${EPYTHON}"
 }
 
 python_compile_all(){



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

2018-07-11 Thread Michał Górny
commit: 61401c1bf541b3e346072eb2997da2448b6e1231
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 11 15:57:21 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 22:11:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61401c1b

dev-python/pytest: Raise pytest-xdist requirement

Raise required dev-python/pytest-xdist version to fix tests.

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

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
index d9b4a24f1a2..1f02558ba40 100644
--- a/dev-python/pytest/pytest-3.4.2.ebuild
+++ b/dev-python/pytest/pytest-3.4.2.ebuild
@@ -34,7 +34,7 @@ DEPEND="${COMMON_DEPEND}
dev-python/setuptools_scm[${PYTHON_USEDEP}]
test? (
>=dev-python/hypothesis-3.5.2[${PYTHON_USEDEP}]
-   >dev-python/pytest-xdist-1.13[${PYTHON_USEDEP}]
+   >=dev-python/pytest-xdist-1.22.2[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]



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

2018-07-11 Thread Michał Górny
commit: c83aa6801ca7a94ece44c5b0636d5693a67295b4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 11 17:42:49 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 22:11:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c83aa680

dev-python/pytest: Disable hanging py3.5+ tests

 dev-python/pytest/pytest-3.4.2.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
index 9fb19f1d81b..ed3fc47c722 100644
--- a/dev-python/pytest/pytest-3.4.2.ebuild
+++ b/dev-python/pytest/pytest-3.4.2.ebuild
@@ -64,6 +64,11 @@ python_prepare_all() {
sed -i -e 's:test_wrapped_getfuncargnames_patching:_&:' \
testing/python/integration.py || die
 
+   # those tests appear to hang with python3.5+;  TODO: investigate why
+   sed -i -e 's:test_runtest_location_shown_before_test_starts:_&:' \
+   testing/test_terminal.py || die
+   sed -i -e 's:test_trial_pdb:_&:' testing/test_unittest.py || die
+
distutils-r1_python_prepare_all
 }
 



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

2018-07-11 Thread Michał Górny
commit: 523a3d6756d152fe4063c9e6ccc46e225c0aa55d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 11 17:35:50 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 22:11:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=523a3d67

dev-python/pytest: Add PyPy test fix from Debian

Thanks to sbraz for finding the patch.

 .../pytest-3.4.2-pypy-syntaxerror-offset.patch | 27 ++
 dev-python/pytest/pytest-3.4.2.ebuild  |  4 
 2 files changed, 31 insertions(+)

diff --git a/dev-python/pytest/files/pytest-3.4.2-pypy-syntaxerror-offset.patch 
b/dev-python/pytest/files/pytest-3.4.2-pypy-syntaxerror-offset.patch
new file mode 100644
index 000..622be56b4e5
--- /dev/null
+++ b/dev-python/pytest/files/pytest-3.4.2-pypy-syntaxerror-offset.patch
@@ -0,0 +1,27 @@
+https://salsa.debian.org/python-team/modules/pytest/commit/405c05a0827592515de76e23c94de1f7773273e6.patch
+
+From 405c05a0827592515de76e23c94de1f7773273e6 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ond=C5=99ej=20Nov=C3=BD?= 
+Date: Thu, 10 May 2018 11:42:56 +0200
+Subject: [PATCH] Fix PyPy SyntaxError offset in tests
+
+---
+ testing/code/test_source.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/testing/code/test_source.py b/testing/code/test_source.py
+index fcce3fa..22278d8 100644
+--- a/testing/code/test_source.py
 b/testing/code/test_source.py
+@@ -117,7 +117,7 @@ def test_source_strip_multiline():
+ def test_syntaxerror_rerepresentation():
+ ex = pytest.raises(SyntaxError, _pytest._code.compile, 'xyz xyz')
+ assert ex.value.lineno == 1
+-assert ex.value.offset in (4, 7)  # XXX pypy/jython versus cpython?
++assert ex.value.offset in (4, 5, 7)  # XXX pypy/jython versus cpython?
+ assert ex.value.text.strip(), 'x x'
+ 
+ 
+-- 
+2.18.0
+

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
index c543591cc90..9fb19f1d81b 100644
--- a/dev-python/pytest/pytest-3.4.2.ebuild
+++ b/dev-python/pytest/pytest-3.4.2.ebuild
@@ -45,6 +45,10 @@ RDEPEND="
!

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

2018-07-11 Thread Michał Górny
commit: 58a83eee483ae34004de0e4e7c06b6fb269a4c29
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 11 16:21:55 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 22:11:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58a83eee

dev-python/pytest: Disable broken test_wrapped_getfuncargnames*

Thanks to sbraz for finding the upstream commit.

 dev-python/pytest/pytest-3.4.2.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
index 1f02558ba40..335e6ee5647 100644
--- a/dev-python/pytest/pytest-3.4.2.ebuild
+++ b/dev-python/pytest/pytest-3.4.2.ebuild
@@ -55,6 +55,11 @@ python_prepare_all() {
# https://bugs.gentoo.org/598442
rm testing/test_pdb.py || die
 
+   # broken and disabled upstream
+   # 
https://github.com/pytest-dev/pytest/commit/321f66f71148c978c1bf45dace61886b5e263bd4
+   sed -i -e 's:test_wrapped_getfuncargnames_patching:_&:' \
+   testing/python/integration.py || die
+
distutils-r1_python_prepare_all
 }
 



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

2018-07-11 Thread Michał Górny
commit: d670c98ba4d9b25c418c8bae73a8970d23de63dd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 11 17:44:16 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 22:11:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d670c98b

dev-python/pytest: Remove obsolete logic

Remove obsolete chmod and sed that are not doing anything these days.

 dev-python/pytest/pytest-3.4.2.ebuild | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
index 122e1393e02..1c215e18c9c 100644
--- a/dev-python/pytest/pytest-3.4.2.ebuild
+++ b/dev-python/pytest/pytest-3.4.2.ebuild
@@ -49,10 +49,6 @@ python_prepare_all() {
"${FILESDIR}"/pytest-3.4.2-pypy-syntaxerror-offset.patch
)
 
-   chmod o-w *egg*/* || die
-   # Disable versioning of py.test script to avoid collision with
-   # versioning performed by the eclass.
-   sed -e "s/return points/return {'py.test': target}/" -i setup.py || die 
"sed failed"
grep -qF "py>=${PY_VER}" setup.py || die "Incorrect dev-python/py 
dependency"
 
# Something in the ebuild environment causes this to hang/error.



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

2018-07-11 Thread Michał Górny
commit: 65d73a38629d8a02b967d230d5bbf9a4ca6a950d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul 11 17:33:35 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 22:11:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65d73a38

dev-python/pytest: Make tests verbose

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

diff --git a/dev-python/pytest/pytest-3.4.2.ebuild 
b/dev-python/pytest/pytest-3.4.2.ebuild
index 335e6ee5647..c543591cc90 100644
--- a/dev-python/pytest/pytest-3.4.2.ebuild
+++ b/dev-python/pytest/pytest-3.4.2.ebuild
@@ -66,11 +66,11 @@ python_prepare_all() {
 python_test() {
# test_nose.py not written to suit py3.2 in pypy3
if [[ "${EPYTHON}" == pypy3 ]]; then
-   "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX \
+   "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX -vv \
--ignore=testing/BUILD_nose.py \
|| die "tests failed with ${EPYTHON}"
else
-   "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX testing 
|| die "tests failed with ${EPYTHON}"
+   "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX -vv 
testing || die "tests failed with ${EPYTHON}"
fi
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-native/

2018-07-11 Thread James Le Cuirot
commit: b7a7c39c4e9ca7a64f2bf3176a7a83c6759b1fae
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Fri Jul  6 22:07:53 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Jul 11 22:09:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7a7c39c

dev-java/tomcat-native: bump to version 1.2.17

Closes: https://bugs.gentoo.org/660562
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9073

 dev-java/tomcat-native/Manifest|  1 +
 dev-java/tomcat-native/metadata.xml| 16 +++---
 dev-java/tomcat-native/tomcat-native-1.2.17.ebuild | 61 ++
 3 files changed, 70 insertions(+), 8 deletions(-)

diff --git a/dev-java/tomcat-native/Manifest b/dev-java/tomcat-native/Manifest
index 37b075aec47..126cd424c16 100644
--- a/dev-java/tomcat-native/Manifest
+++ b/dev-java/tomcat-native/Manifest
@@ -1,2 +1,3 @@
 DIST tomcat-native-1.2.14-src.tar.gz 404159 BLAKE2B 
c0137527edc647e6d3cfb7c115ca9dd7d20b0aa8edaf3f7b0ac554007010da37d0a825c07bfdd747fa429d1e89e673a5a19245dc2fa41f69f1e2cbc4697d5e1b
 SHA512 
ddfc44f07dc4200f8ef20b5425355d2737a7510e41660002553c04e7451c48e4f54f4cfb462ed6bea1fad1ea60525a7ce3787af74e6a4b795f9dd1862b75c633
 DIST tomcat-native-1.2.16-src.tar.gz 405109 BLAKE2B 
e153caeb82c4ac4d2a8c7c24373204edf6e691068e70c858618caf72faaee1f4d10c4529ba758e24422e8580e8b3e95d28cc942998568106ec60b8de7c196c51
 SHA512 
0345f85fbab406f25c25c8fc06bf55f3d166fa14bfcf542bddb5dc5db4c8c7bd0c5b71603d85261d71152ead3023b112144f2ffa5ede14ae8595013f79c802aa
+DIST tomcat-native-1.2.17-src.tar.gz 408967 BLAKE2B 
482b0416be01bcbe9ba5715de37c6071502ed57f179115c3d351684621487b90e05dd488b1c2137e4813a785c1fe229241f191468bc88f7f0dd3a31562c0
 SHA512 
8fa946855fd14525ec0abe7b09975bbd34d6127352e90730a8afb77e16cd91715417e812a40017fee65939a9ce95faf39a9193222f441cda0ad2eb7f690e77b9

diff --git a/dev-java/tomcat-native/metadata.xml 
b/dev-java/tomcat-native/metadata.xml
index ac45019bb27..2228187b5ce 100644
--- a/dev-java/tomcat-native/metadata.xml
+++ b/dev-java/tomcat-native/metadata.xml
@@ -6,13 +6,13 @@
Java


-   Native library for Tomcat to use the Apache Portable Runtime to
-   provide superior scalability, performance, and better integration with
-   native server technologies. The Apache Portable Runtime is a highly
-   portable library that is at the heart of Apache HTTP Server 2.x. APR
-   has many uses, including access to advanced IO functionality (such as
-   sendfile, epoll and OpenSSL), OS level functionality (random number
-   generation, system status, etc), and native process handling (shared
-   memory, NT pipes and Unix sockets).
+   Native library for Tomcat to use the Apache Portable Runtime to
+   provide superior scalability, performance, and better 
integration with
+   native server technologies. The Apache Portable Runtime is a 
highly
+   portable library that is at the heart of Apache HTTP Server 
2.x. APR
+   has many uses, including access to advanced IO functionality 
(such as
+   sendfile, epoll and OpenSSL), OS level functionality (random 
number
+   generation, system status, etc), and native process handling 
(shared
+   memory, NT pipes and Unix sockets).

 

diff --git a/dev-java/tomcat-native/tomcat-native-1.2.17.ebuild 
b/dev-java/tomcat-native/tomcat-native-1.2.17.ebuild
new file mode 100644
index 000..b9e42b33f4c
--- /dev/null
+++ b/dev-java/tomcat-native/tomcat-native-1.2.17.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit java-pkg-2 java-ant-2
+
+DESCRIPTION="Allows Tomcat to use certain native resources for better 
performance"
+HOMEPAGE="https://tomcat.apache.org/";
+SRC_URI="mirror://apache/tomcat/tomcat-connectors/native/${PV}/source/${P}-src.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="static-libs test"
+
+RDEPEND="dev-libs/apr:1=
+   dev-libs/openssl:0=
+   >=virtual/jre-1.8"
+
+DEPEND=">=virtual/jdk-1.8
+   test? ( dev-java/ant-junit:0 )"
+
+S=${WORKDIR}/${P}-src
+
+JAVA_ANT_REWRITE_CLASSPATH="yes"
+
+src_configure() {
+   local myeconfargs=(
+   --with-apr="${EPREFIX}"/usr/bin/apr-1-config
+   --with-ssl="${EPREFIX}"/usr
+   )
+
+   cd native || die
+   econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+   eant jar
+
+   cd native || die
+   default
+}
+
+src_install() {
+   java-pkg_newjar "dist/${P}.jar" "${PN}.jar"
+
+   cd native || die
+   default
+
+   ! use static-libs && find "${D}" -name '*.la' -delete || die
+}
+
+src_test() {
+   java-pkg-2_src_test
+}
+
+pkg_postinst() {
+   elog "For more information, please visit"
+   elog "https://tomcat.apache.org/to

[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-native/

2018-07-11 Thread James Le Cuirot
commit: 7ad48aa7693fbae3cc31f46d0cee64409fd5bb07
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Jul 11 22:10:23 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Jul 11 22:10:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad48aa7

dev-java/tomcat-native: Drop old 1.2.14

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-java/tomcat-native/Manifest|  1 -
 dev-java/tomcat-native/tomcat-native-1.2.14.ebuild | 57 --
 2 files changed, 58 deletions(-)

diff --git a/dev-java/tomcat-native/Manifest b/dev-java/tomcat-native/Manifest
index 126cd424c16..9ae7b74c5ee 100644
--- a/dev-java/tomcat-native/Manifest
+++ b/dev-java/tomcat-native/Manifest
@@ -1,3 +1,2 @@
-DIST tomcat-native-1.2.14-src.tar.gz 404159 BLAKE2B 
c0137527edc647e6d3cfb7c115ca9dd7d20b0aa8edaf3f7b0ac554007010da37d0a825c07bfdd747fa429d1e89e673a5a19245dc2fa41f69f1e2cbc4697d5e1b
 SHA512 
ddfc44f07dc4200f8ef20b5425355d2737a7510e41660002553c04e7451c48e4f54f4cfb462ed6bea1fad1ea60525a7ce3787af74e6a4b795f9dd1862b75c633
 DIST tomcat-native-1.2.16-src.tar.gz 405109 BLAKE2B 
e153caeb82c4ac4d2a8c7c24373204edf6e691068e70c858618caf72faaee1f4d10c4529ba758e24422e8580e8b3e95d28cc942998568106ec60b8de7c196c51
 SHA512 
0345f85fbab406f25c25c8fc06bf55f3d166fa14bfcf542bddb5dc5db4c8c7bd0c5b71603d85261d71152ead3023b112144f2ffa5ede14ae8595013f79c802aa
 DIST tomcat-native-1.2.17-src.tar.gz 408967 BLAKE2B 
482b0416be01bcbe9ba5715de37c6071502ed57f179115c3d351684621487b90e05dd488b1c2137e4813a785c1fe229241f191468bc88f7f0dd3a31562c0
 SHA512 
8fa946855fd14525ec0abe7b09975bbd34d6127352e90730a8afb77e16cd91715417e812a40017fee65939a9ce95faf39a9193222f441cda0ad2eb7f690e77b9

diff --git a/dev-java/tomcat-native/tomcat-native-1.2.14.ebuild 
b/dev-java/tomcat-native/tomcat-native-1.2.14.ebuild
deleted file mode 100644
index de20842d035..000
--- a/dev-java/tomcat-native/tomcat-native-1.2.14.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="Native APR library for Tomcat"
-
-SLOT="0"
-SRC_URI="mirror://apache/tomcat/tomcat-connectors/native/${PV}/source/${P}-src.tar.gz"
-HOMEPAGE="https://tomcat.apache.org/";
-KEYWORDS="amd64 ~x86"
-LICENSE="Apache-2.0"
-IUSE="test"
-
-RDEPEND="dev-libs/apr:1
-   dev-libs/openssl:=
-   >=virtual/jre-1.7"
-
-DEPEND=">=virtual/jdk-1.7
-   test? ( dev-java/ant-junit:0 )"
-
-S=${WORKDIR}/${P}-src
-
-src_configure(){
-   cd native || die
-   econf --with-apr=/usr/bin/apr-1-config  \
-   --with-ssl=/usr || die "Could not configure native sources"
-}
-
-src_compile() {
-   eant jar -f build.xml
-
-   cd native || die
-   default
-}
-
-src_install() {
-   java-pkg_newjar "dist/${P}.jar" "${PN}.jar"
-
-   cd native
-   emake DESTDIR="${D}" install || die "Could not install libtcnative-1.so"
-}
-
-src_test() {
-   java-pkg-2_src_test
-}
-
-pkg_postinst() {
-   elog
-   elog " APR should be available with Tomcat, for more information"
-   elog " please see https://tomcat.apache.org/tomcat-6.0-doc/apr.html";
-   elog
-   elog " Please report any bugs to https://bugs.gentoo.org/";
-   elog
-}



[gentoo-commits] proj/elfix: Branch deleted: test

2018-07-11 Thread Anthony G. Basile
commit: 
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jul 11 21:57:37 2018 +

Branch deleted: test




[gentoo-commits] proj/elfix: New branch: test

2018-07-11 Thread Anthony G. Basile
commit: 
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jul 11 21:56:14 2018 +

New branch: test




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

2018-07-11 Thread Tony Vroon
commit: 4d3b5aeab006fea636b2c32370ba6d51a2d4c1b8
Author: Tomas Mozes  gmail  com>
AuthorDate: Wed Jul 11 15:25:16 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Wed Jul 11 21:50:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d3b5aea

app-admin/filebeat: drop old

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 app-admin/filebeat/Manifest  |  1 -
 app-admin/filebeat/filebeat-5.6.9.ebuild | 62 
 2 files changed, 63 deletions(-)

diff --git a/app-admin/filebeat/Manifest b/app-admin/filebeat/Manifest
index fd8bf877826..0f21ac228cf 100644
--- a/app-admin/filebeat/Manifest
+++ b/app-admin/filebeat/Manifest
@@ -1,6 +1,5 @@
 DIST filebeat-5.5.2.tar.gz 18075191 BLAKE2B 
9786cb8f3db003c86e4bc6d56fcac660b615e7e6ad82d0912f70c545f2af3caab605be739481355466438a1769c20b28db576d208af6b0af9620ce6408068215
 SHA512 
ad92b41a9ceaad6c6e6fc80d0adccd7fe03a7056d121484bcf35c6a46b2061a5ef6d32121dd12d59b51e7678769da5c405b1d549fa130631ae3f1989b78fba48
 DIST filebeat-5.6.10.tar.gz 18211551 BLAKE2B 
5ed3a3d63fc758757cdb30e999a10bee15c8a66d7b4b603f755ebdfad712f4b48c2a1b79612dcfe3ce89d29458e672276b26f188ea3509ce4c349e2bff8b7508
 SHA512 
cca193e0c03ca5451c6158ab8f0669bf24aa0d34d46f2a4808d27f4ce1ff701dca6ea2db7a72275a635ea4e091571aa73e0b51228750b140a5340d27cba0e982
-DIST filebeat-5.6.9.tar.gz 18209544 BLAKE2B 
41891b984240af46fb3d9d7818203d7ef8fd5a089d7683877e3907061259442da4884976cfefcc9099ebe3adb1ce6c87a026a50b07e218a5de6b642b9472
 SHA512 
2aa40afbd0f1c987aebf51d22aa03c87048766a4c7d41938ff27ffca841666d34cfbf08ae120d98d222a7d3ff447bbce9f1d65b434aef1c9d73c5019aa1558a1
 DIST filebeat-6.1.1.tar.gz 17061456 BLAKE2B 
5a5d23618f8140f3815c499305d99ae3dc4c4caa49535043040387922f924ee49a9494b5139f34a70d74173d97332b92909fc74e2f91a2fc0f288ef5d1493ade
 SHA512 
54e85cfce58ba724f6b2892f115ac9ef5b1bb89ce8dc6f2a977e50ccfc07cf95fc578e46e0cadd96acd90c59f4b01446851b93c519afa094ff6dcdb7e716219a
 DIST filebeat-6.2.4.tar.gz 19466271 BLAKE2B 
417f1db19b7fdd9bcf66f2c3dcdf2aaa6be9ba5edff1c97a0b8f4a5d7953ef27bcbd860e097fb40e67b3b42b795b684dabb2995eee572243831f749a7184b625
 SHA512 
49293e28e4ca769a88f7b889ea888a559ae7e142698714e24bf5519d00c2030237cac591590aa284f17792906a6137333173716ddf5db4496217f8b5a054b19c
 DIST filebeat-6.3.1.tar.gz 20915568 BLAKE2B 
048898bc4520c0dc2a0aa5257149ecb75abc0b52d9a8cae63fdfe9fc8c329b3fa30d7277ae0cb916a86477d60e82b63839956cfa7a1985961c5ee5f6622b9f83
 SHA512 
1c03cc8fd3b968ade678cf2290fd7bd8fed2f9daa64cd550455567296ff51517b502b54e1b2413820c25cf899b7759662c9c18278c78a2568c74a26841f5f525

diff --git a/app-admin/filebeat/filebeat-5.6.9.ebuild 
b/app-admin/filebeat/filebeat-5.6.9.ebuild
deleted file mode 100644
index 4537daa105b..000
--- a/app-admin/filebeat/filebeat-5.6.9.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Lightweight log shipper for Logstash and Elasticsearch"
-HOMEPAGE="https://www.elastic.co/products/beats";
-SRC_URI="https://github.com/elastic/beats/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="test"
-
-DEPEND=">=dev-lang/go-1.9.2"
-RDEPEND="!app-admin/filebeat-bin"
-
-S="${WORKDIR}/src/github.com/elastic/beats"
-
-src_unpack() {
-   mkdir -p "${S%/*}" || die
-   default
-   mv beats-${PV} "${S}" || die
-}
-
-src_compile() {
-   GOPATH="${WORKDIR}" emake -C "${S}/filebeat"
-}
-
-src_install() {
-   keepdir /var/{lib,log}/${PN}
-
-   fperms 0750 /var/{lib,log}/${PN}
-
-   newconfd "${FILESDIR}/${PN}.confd" ${PN}
-   newinitd "${FILESDIR}/${PN}.initd" ${PN}
-
-   docinto examples
-   dodoc ${PN}/{filebeat.yml,filebeat.full.yml}
-
-   insinto "/etc/${PN}"
-   doins 
${PN}/{filebeat.template.json,filebeat.template-es2x.json,filebeat.template-es6x.json}
-
-   exeinto "/usr/share/${PN}"
-   doexe libbeat/scripts/migrate_beat_config_1_x_to_5_0.py
-
-   dobin filebeat/filebeat
-}
-
-pkg_postinst() {
-   if [[ -n "${REPLACING_VERSIONS}" ]]; then
-   elog "Please read the migration guide at:"
-   elog 
"https://www.elastic.co/guide/en/beats/libbeat/5.0/upgrading.html";
-   elog ""
-   elog "The migration script:"
-   elog 
"${EROOT%/}/usr/share/filebeat/migrate_beat_config_1_x_to_5_0.py"
-   elog ""
-   fi
-
-   elog "Example configurations:"
-   elog "${EROOT%/}/usr/share/doc/${PF}/examples"
-}



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

2018-07-11 Thread Tony Vroon
commit: 2bc72b89c96c02be0f3cd67832d549c8c1d4ec8e
Author: Tomas Mozes  gmail  com>
AuthorDate: Wed Jul 11 15:24:49 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Wed Jul 11 21:50:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bc72b89

app-admin/filebeat: bump to 6.3.1

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 app-admin/filebeat/Manifest  |  1 +
 app-admin/filebeat/filebeat-6.3.1.ebuild | 60 
 2 files changed, 61 insertions(+)

diff --git a/app-admin/filebeat/Manifest b/app-admin/filebeat/Manifest
index a1775a26dfc..fd8bf877826 100644
--- a/app-admin/filebeat/Manifest
+++ b/app-admin/filebeat/Manifest
@@ -3,3 +3,4 @@ DIST filebeat-5.6.10.tar.gz 18211551 BLAKE2B 
5ed3a3d63fc758757cdb30e999a10bee15c
 DIST filebeat-5.6.9.tar.gz 18209544 BLAKE2B 
41891b984240af46fb3d9d7818203d7ef8fd5a089d7683877e3907061259442da4884976cfefcc9099ebe3adb1ce6c87a026a50b07e218a5de6b642b9472
 SHA512 
2aa40afbd0f1c987aebf51d22aa03c87048766a4c7d41938ff27ffca841666d34cfbf08ae120d98d222a7d3ff447bbce9f1d65b434aef1c9d73c5019aa1558a1
 DIST filebeat-6.1.1.tar.gz 17061456 BLAKE2B 
5a5d23618f8140f3815c499305d99ae3dc4c4caa49535043040387922f924ee49a9494b5139f34a70d74173d97332b92909fc74e2f91a2fc0f288ef5d1493ade
 SHA512 
54e85cfce58ba724f6b2892f115ac9ef5b1bb89ce8dc6f2a977e50ccfc07cf95fc578e46e0cadd96acd90c59f4b01446851b93c519afa094ff6dcdb7e716219a
 DIST filebeat-6.2.4.tar.gz 19466271 BLAKE2B 
417f1db19b7fdd9bcf66f2c3dcdf2aaa6be9ba5edff1c97a0b8f4a5d7953ef27bcbd860e097fb40e67b3b42b795b684dabb2995eee572243831f749a7184b625
 SHA512 
49293e28e4ca769a88f7b889ea888a559ae7e142698714e24bf5519d00c2030237cac591590aa284f17792906a6137333173716ddf5db4496217f8b5a054b19c
+DIST filebeat-6.3.1.tar.gz 20915568 BLAKE2B 
048898bc4520c0dc2a0aa5257149ecb75abc0b52d9a8cae63fdfe9fc8c329b3fa30d7277ae0cb916a86477d60e82b63839956cfa7a1985961c5ee5f6622b9f83
 SHA512 
1c03cc8fd3b968ade678cf2290fd7bd8fed2f9daa64cd550455567296ff51517b502b54e1b2413820c25cf899b7759662c9c18278c78a2568c74a26841f5f525

diff --git a/app-admin/filebeat/filebeat-6.3.1.ebuild 
b/app-admin/filebeat/filebeat-6.3.1.ebuild
new file mode 100644
index 000..ed1db863a86
--- /dev/null
+++ b/app-admin/filebeat/filebeat-6.3.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eapi7-ver
+
+DESCRIPTION="Lightweight log shipper for Logstash and Elasticsearch"
+HOMEPAGE="https://www.elastic.co/products/beats";
+SRC_URI="https://github.com/elastic/beats/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="test"
+
+DEPEND=">=dev-lang/go-1.10.3"
+RDEPEND="!app-admin/filebeat-bin"
+
+S="${WORKDIR}/src/github.com/elastic/beats"
+
+src_unpack() {
+   mkdir -p "${S%/*}" || die
+   default
+   mv beats-${PV} "${S}" || die
+}
+
+src_prepare() {
+   default
+   sed -i "s/\(COMMIT_ID=\).*/\1${PV}/g" "${S}/libbeat/scripts/Makefile" 
|| die
+}
+
+src_compile() {
+   GOPATH="${WORKDIR}" emake -C "${S}/filebeat"
+}
+
+src_install() {
+   keepdir /var/{lib,log}/${PN}
+
+   fperms 0750 /var/{lib,log}/${PN}
+
+   newconfd "${FILESDIR}/${PN}.confd" ${PN}
+   newinitd "${FILESDIR}/${PN}.initd.1" ${PN}
+
+   docinto examples
+   dodoc ${PN}/{filebeat.yml,filebeat.reference.yml}
+
+   dobin filebeat/filebeat
+}
+
+pkg_postinst() {
+   if [[ -n "${REPLACING_VERSIONS}" ]]; then
+   elog "Please read the migration guide at:"
+   elog "https://www.elastic.co/guide/en/beats/libbeat/$(ver_cut 
1-2)/upgrading.html"
+   elog ""
+   fi
+
+   elog "Example configurations:"
+   elog "${EROOT%/}/usr/share/doc/${PF}/examples"
+}



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

2018-07-11 Thread Tony Vroon
commit: c55a34b09296fbca977c8012a23119855c006bea
Author: Tomas Mozes  gmail  com>
AuthorDate: Wed Jul 11 15:23:56 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Wed Jul 11 21:50:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c55a34b0

app-admin/filebeat: bump to 5.6.10

Package-Manager: Portage-2.3.41, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9186

 app-admin/filebeat/Manifest   |  1 +
 app-admin/filebeat/filebeat-5.6.10.ebuild | 62 +++
 2 files changed, 63 insertions(+)

diff --git a/app-admin/filebeat/Manifest b/app-admin/filebeat/Manifest
index 4908178eb0b..a1775a26dfc 100644
--- a/app-admin/filebeat/Manifest
+++ b/app-admin/filebeat/Manifest
@@ -1,4 +1,5 @@
 DIST filebeat-5.5.2.tar.gz 18075191 BLAKE2B 
9786cb8f3db003c86e4bc6d56fcac660b615e7e6ad82d0912f70c545f2af3caab605be739481355466438a1769c20b28db576d208af6b0af9620ce6408068215
 SHA512 
ad92b41a9ceaad6c6e6fc80d0adccd7fe03a7056d121484bcf35c6a46b2061a5ef6d32121dd12d59b51e7678769da5c405b1d549fa130631ae3f1989b78fba48
+DIST filebeat-5.6.10.tar.gz 18211551 BLAKE2B 
5ed3a3d63fc758757cdb30e999a10bee15c8a66d7b4b603f755ebdfad712f4b48c2a1b79612dcfe3ce89d29458e672276b26f188ea3509ce4c349e2bff8b7508
 SHA512 
cca193e0c03ca5451c6158ab8f0669bf24aa0d34d46f2a4808d27f4ce1ff701dca6ea2db7a72275a635ea4e091571aa73e0b51228750b140a5340d27cba0e982
 DIST filebeat-5.6.9.tar.gz 18209544 BLAKE2B 
41891b984240af46fb3d9d7818203d7ef8fd5a089d7683877e3907061259442da4884976cfefcc9099ebe3adb1ce6c87a026a50b07e218a5de6b642b9472
 SHA512 
2aa40afbd0f1c987aebf51d22aa03c87048766a4c7d41938ff27ffca841666d34cfbf08ae120d98d222a7d3ff447bbce9f1d65b434aef1c9d73c5019aa1558a1
 DIST filebeat-6.1.1.tar.gz 17061456 BLAKE2B 
5a5d23618f8140f3815c499305d99ae3dc4c4caa49535043040387922f924ee49a9494b5139f34a70d74173d97332b92909fc74e2f91a2fc0f288ef5d1493ade
 SHA512 
54e85cfce58ba724f6b2892f115ac9ef5b1bb89ce8dc6f2a977e50ccfc07cf95fc578e46e0cadd96acd90c59f4b01446851b93c519afa094ff6dcdb7e716219a
 DIST filebeat-6.2.4.tar.gz 19466271 BLAKE2B 
417f1db19b7fdd9bcf66f2c3dcdf2aaa6be9ba5edff1c97a0b8f4a5d7953ef27bcbd860e097fb40e67b3b42b795b684dabb2995eee572243831f749a7184b625
 SHA512 
49293e28e4ca769a88f7b889ea888a559ae7e142698714e24bf5519d00c2030237cac591590aa284f17792906a6137333173716ddf5db4496217f8b5a054b19c

diff --git a/app-admin/filebeat/filebeat-5.6.10.ebuild 
b/app-admin/filebeat/filebeat-5.6.10.ebuild
new file mode 100644
index 000..4537daa105b
--- /dev/null
+++ b/app-admin/filebeat/filebeat-5.6.10.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Lightweight log shipper for Logstash and Elasticsearch"
+HOMEPAGE="https://www.elastic.co/products/beats";
+SRC_URI="https://github.com/elastic/beats/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="test"
+
+DEPEND=">=dev-lang/go-1.9.2"
+RDEPEND="!app-admin/filebeat-bin"
+
+S="${WORKDIR}/src/github.com/elastic/beats"
+
+src_unpack() {
+   mkdir -p "${S%/*}" || die
+   default
+   mv beats-${PV} "${S}" || die
+}
+
+src_compile() {
+   GOPATH="${WORKDIR}" emake -C "${S}/filebeat"
+}
+
+src_install() {
+   keepdir /var/{lib,log}/${PN}
+
+   fperms 0750 /var/{lib,log}/${PN}
+
+   newconfd "${FILESDIR}/${PN}.confd" ${PN}
+   newinitd "${FILESDIR}/${PN}.initd" ${PN}
+
+   docinto examples
+   dodoc ${PN}/{filebeat.yml,filebeat.full.yml}
+
+   insinto "/etc/${PN}"
+   doins 
${PN}/{filebeat.template.json,filebeat.template-es2x.json,filebeat.template-es6x.json}
+
+   exeinto "/usr/share/${PN}"
+   doexe libbeat/scripts/migrate_beat_config_1_x_to_5_0.py
+
+   dobin filebeat/filebeat
+}
+
+pkg_postinst() {
+   if [[ -n "${REPLACING_VERSIONS}" ]]; then
+   elog "Please read the migration guide at:"
+   elog 
"https://www.elastic.co/guide/en/beats/libbeat/5.0/upgrading.html";
+   elog ""
+   elog "The migration script:"
+   elog 
"${EROOT%/}/usr/share/filebeat/migrate_beat_config_1_x_to_5_0.py"
+   elog ""
+   fi
+
+   elog "Example configurations:"
+   elog "${EROOT%/}/usr/share/doc/${PF}/examples"
+}



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

2018-07-11 Thread Mikle Kolyada
commit: 7c3ae3addfcfd000b39baceee4a6e53ffac16137
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 21:35:32 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 21:35:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c3ae3ad

sys-apps/sed: arm/m68k/s390/sh stable wrt bug #658388

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/sys-apps/sed/sed-4.5.ebuild b/sys-apps/sed/sed-4.5.ebuild
index ec5f65f082e..948e57a8ad8 100644
--- a/sys-apps/sed/sed-4.5.ebuild
+++ b/sys-apps/sed/sed-4.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/sed/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="acl forced-sandbox nls selinux static"
 
 RDEPEND="acl? ( virtual/acl )



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

2018-07-11 Thread Jason Donenfeld
commit: 4fa384ee9394fdc66c99208ce37798d0c4094a4d
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Wed Jul 11 21:29:01 2018 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Wed Jul 11 21:35:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fa384ee

dev-python/svgwrite: import new ebuild

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 dev-python/svgwrite/Manifest   |  1 +
 dev-python/svgwrite/metadata.xml   |  8 
 dev-python/svgwrite/svgwrite-1.1.12.ebuild | 20 
 3 files changed, 29 insertions(+)

diff --git a/dev-python/svgwrite/Manifest b/dev-python/svgwrite/Manifest
new file mode 100644
index 000..8b9eaa08905
--- /dev/null
+++ b/dev-python/svgwrite/Manifest
@@ -0,0 +1 @@
+DIST svgwrite-1.1.12.tar.gz 202920 BLAKE2B 
a2b60f3c3829203342919bc75d01f64515f13ba305f357fa788c3754679451e21a7ab97eb517413d4e882e7271d063e7034a10bb70a1946d84734e23e838bdd1
 SHA512 
326fcc0dd0749925c0c35793a91ffdb25be1fd724d7d87bd6491a6396a6ab65fce073a387faac4f3d034ceadcf24ef73e3838cd249c4e1c19e20b1e82769cf1a

diff --git a/dev-python/svgwrite/metadata.xml b/dev-python/svgwrite/metadata.xml
new file mode 100644
index 000..7f4f33c6dbc
--- /dev/null
+++ b/dev-python/svgwrite/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   pyt...@gentoo.org
+   Python
+   
+

diff --git a/dev-python/svgwrite/svgwrite-1.1.12.ebuild 
b/dev-python/svgwrite/svgwrite-1.1.12.ebuild
new file mode 100644
index 000..dde90e114ee
--- /dev/null
+++ b/dev-python/svgwrite/svgwrite-1.1.12.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+inherit distutils-r1
+
+DESCRIPTION="Python Package to write SVG files"
+HOMEPAGE="https://github.com/mozman/svgwrite";
+SRC_URI="https://github.com/mozman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="${PYTHON_DEPS}
+   >=dev-python/pyparsing-2.0.1[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



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

2018-07-11 Thread Jason Donenfeld
commit: c20429ba0d7d8b0780575ff94f613ce646051843
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Wed Jul 11 21:34:26 2018 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Wed Jul 11 21:35:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c20429ba

dev-python/pyte: version bump

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 dev-python/pyte/Manifest  |  1 +
 dev-python/pyte/pyte-0.8.0.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-python/pyte/Manifest b/dev-python/pyte/Manifest
index 564dc814037..f9b730c9b52 100644
--- a/dev-python/pyte/Manifest
+++ b/dev-python/pyte/Manifest
@@ -1 +1,2 @@
 DIST pyte-0.5.2.tar.gz 42719 BLAKE2B 
00995c8427ade8a44dbc6dea4bea058431adb1409fbddc90b70ecd3cf4968632d66e4f21140ca5c071ea927208d40ed55606cf2d604f931970f99128c2b2dba8
 SHA512 
da903b31bb67e60bc8271c162f3429871d0def039cec5f63f07764fce1994236063876eb069a88783a4c7d8b0eac0646549c00f2a51ab8630287d852f05f4b0d
+DIST pyte-0.8.0.tar.gz 50415 BLAKE2B 
8e707d8dd598d4b76b281de1481d238448f6ed07daa962647e61e7f5ad62da67a08112db7e21cb3522e5719514975a9b01ec06ff1cf590e02d9ff434369e
 SHA512 
b1c23206f32c49ab509ac9bd4e042b043478cae35594c52c8389f5a5ba15cd0895315c42be5a0f2992b3aaa918ae282e43e88e72798a0b600307860f6df06465

diff --git a/dev-python/pyte/pyte-0.8.0.ebuild 
b/dev-python/pyte/pyte-0.8.0.ebuild
new file mode 100644
index 000..7de14fd4a96
--- /dev/null
+++ b/dev-python/pyte/pyte-0.8.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Simple VTXXX-compatible terminal emulator"
+HOMEPAGE="https://pypi.org/project/pyte/ https://github.com/selectel/pyte";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="LGPL-3"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="dev-python/wcwidth[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   esetup.py test --verbose
+}



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

2018-07-11 Thread Jason Donenfeld
commit: 622a6c35937bed790e8e8f1364a4e63088bc6a72
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Wed Jul 11 21:35:13 2018 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Wed Jul 11 21:35:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=622a6c35

media-gfx/termtosvg: import new ebuild

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 media-gfx/termtosvg/Manifest   |  1 +
 media-gfx/termtosvg/metadata.xml   |  7 +++
 media-gfx/termtosvg/termtosvg-0.4.0.ebuild | 21 +
 3 files changed, 29 insertions(+)

diff --git a/media-gfx/termtosvg/Manifest b/media-gfx/termtosvg/Manifest
new file mode 100644
index 000..b2e867a39b8
--- /dev/null
+++ b/media-gfx/termtosvg/Manifest
@@ -0,0 +1 @@
+DIST termtosvg-0.4.0.tar.gz 88543 BLAKE2B 
a45e15e7d681bb649670d4c73cf09306fa09276b2a34f762db66f4cf2d640d2163f4e98b16dc609e92b4145978e76a00e80950634d1599ee0766c4f08afb15a5
 SHA512 
c0c90fc9e74c892ebe6b7fcd25ff2757a7a8b9ee4da459fc608c96295d0f9b40bf6c98a0ac56f42c3e2a60cb60e9404a9b50863bdf74335d2b4758b124c04fcb

diff --git a/media-gfx/termtosvg/metadata.xml b/media-gfx/termtosvg/metadata.xml
new file mode 100644
index 000..38b28ff6e62
--- /dev/null
+++ b/media-gfx/termtosvg/metadata.xml
@@ -0,0 +1,7 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+
+zx...@gentoo.org
+
+

diff --git a/media-gfx/termtosvg/termtosvg-0.4.0.ebuild 
b/media-gfx/termtosvg/termtosvg-0.4.0.ebuild
new file mode 100644
index 000..a9ab7bed95f
--- /dev/null
+++ b/media-gfx/termtosvg/termtosvg-0.4.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{5,6} )
+inherit distutils-r1
+
+DESCRIPTION="Record terminal sessions as SVG animations"
+HOMEPAGE="https://github.com/nbedos/termtosvg";
+SRC_URI="https://github.com/nbedos/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="${PYTHON_DEPS}
+   >=dev-python/pyte-0.8.0[${PYTHON_USEDEP}]
+   dev-python/svgwrite[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"



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

2018-07-11 Thread Sergei Trofimovich
commit: 5aafaedf7684c7f128db6af84fb4fc23d8937c94
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jul 11 17:17:30 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jul 11 21:34:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aafaedf

app-shells/zsh: stable 5.5.1-r1 for sparc

Bug: https://bugs.gentoo.org/660862
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 app-shells/zsh/zsh-5.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/zsh/zsh-5.5.1-r1.ebuild 
b/app-shells/zsh/zsh-5.5.1-r1.ebuild
index 7ef55abeb8c..a61de6f8eed 100644
--- a/app-shells/zsh/zsh-5.5.1-r1.ebuild
+++ b/app-shells/zsh/zsh-5.5.1-r1.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3 autotools
EGIT_REPO_URI="git://git.code.sf.net/p/zsh/code"
 else
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
SRC_URI="https://www.zsh.org/pub/${P}.tar.gz
doc? ( https://www.zsh.org/pub/${P}-doc.tar.xz )"
 fi



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

2018-07-11 Thread Ben Kohler
commit: 626eed5d643e9489a5af08f914f50dc035f59295
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jul 11 21:34:10 2018 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jul 11 21:34:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=626eed5d

net-misc/connman-notify: new package

Closes: https://bugs.gentoo.org/561384
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 net-misc/connman-notify/Manifest   |  1 +
 .../connman-notify-0_pre20140623.ebuild| 38 ++
 net-misc/connman-notify/metadata.xml   |  8 +
 3 files changed, 47 insertions(+)

diff --git a/net-misc/connman-notify/Manifest b/net-misc/connman-notify/Manifest
new file mode 100644
index 000..bdd935254e9
--- /dev/null
+++ b/net-misc/connman-notify/Manifest
@@ -0,0 +1 @@
+DIST connman-notify-0_pre20140623.tar.bz2 2858 BLAKE2B 
b76865e5392f9b6ed2dada5b323e0f867fa70b5ba21bb6342069f7f6a28468d2915dc9c573bcb4ebc061c3039fa6f0bbfd6969464d264b710f3aee149b1162a5
 SHA512 
8da432cfe0653c29d83afffeacd11e9d66795be061040286ec8b90ce28c334c729af24cb7e1aee0f32e2b2626949f7ee9c95c52b4a3191392236bad7b204a267

diff --git a/net-misc/connman-notify/connman-notify-0_pre20140623.ebuild 
b/net-misc/connman-notify/connman-notify-0_pre20140623.ebuild
new file mode 100644
index 000..3d32d97d793
--- /dev/null
+++ b/net-misc/connman-notify/connman-notify-0_pre20140623.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit desktop python-single-r1 vcs-snapshot
+
+MY_COMMIT="0ed9b5e4a0e1f03c83c4589cabf410cac66cd11d"
+
+DESCRIPTION="Desktop notification integration for connman"
+HOMEPAGE="https://gitlab.com/wavexx/connman-notify/";
+SRC_URI="https://gitlab.com/wavexx/connman-notify/repository/${MY_COMMIT}/archive.tar.bz2
 -> ${P}.tar.bz2"
+
+EGIT_REPO_URI="https://gitlab.com/wavexx/connman-notify.git";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="${DEPEND}
+   dev-python/notify-python[${PYTHON_USEDEP}]
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/pygobject:2[${PYTHON_USEDEP}]
+   net-misc/connman
+   virtual/notification-daemon"
+
+src_install() {
+   python_fix_shebang ${PN}
+   dobin ${PN}
+   dodoc README.rst
+
+   make_desktop_entry ${PN} ${PN} ${PN} Network
+}

diff --git a/net-misc/connman-notify/metadata.xml 
b/net-misc/connman-notify/metadata.xml
new file mode 100644
index 000..43523418890
--- /dev/null
+++ b/net-misc/connman-notify/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+
+   bkoh...@gentoo.org
+   Ben Kohler
+
+



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

2018-07-11 Thread Sergei Trofimovich
commit: 092f0026101933f10427916cb9c73b90a814c699
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jul 11 17:18:54 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jul 11 21:21:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=092f0026

dev-vcs/mercurial: stable 4.6.2 for sparc

Bug: https://bugs.gentoo.org/658712
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-vcs/mercurial/mercurial-4.6.2.ebuild 
b/dev-vcs/mercurial/mercurial-4.6.2.ebuild
index 5a91624133a..d89c3546437 100644
--- a/dev-vcs/mercurial/mercurial-4.6.2.ebuild
+++ b/dev-vcs/mercurial/mercurial-4.6.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.mercurial-scm.org/release/${P}.tar.gz";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="bugzilla emacs gpg test tk"
 
 RDEPEND="bugzilla? ( dev-python/mysql-python[${PYTHON_USEDEP}] )



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

2018-07-11 Thread Mikle Kolyada
commit: 779658e394f76af5aeb19db68b0f483306b1bdc7
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 21:22:20 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 21:22:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=779658e3

app-forensics/libewf: amd64 stable wrt bug #634910

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-forensics/libewf/libewf-20171104.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-forensics/libewf/libewf-20171104.ebuild 
b/app-forensics/libewf/libewf-20171104.ebuild
index 126d6578e18..fd434d97dcd 100644
--- a/app-forensics/libewf/libewf-20171104.ebuild
+++ b/app-forensics/libewf/libewf-20171104.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/libyal/libewf/releases/download/${PV}/${PN}-experime
 
 LICENSE="BSD"
 SLOT="0/3"
-KEYWORDS="~amd64 ~hppa ppc x86"
+KEYWORDS="amd64 ~hppa ppc x86"
 # upstream bug #2597171, pyewf has implicit declarations
 #IUSE="debug python unicode"
 IUSE="bfio bzip2 debug +fuse nls +ssl static-libs +uuid unicode zlib"



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

2018-07-11 Thread Sergei Trofimovich
commit: 9e8d6c7bf27ffb0fe5bcff9952824038bfb22238
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jul 11 17:18:03 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jul 11 21:21:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e8d6c7b

app-forensics/chkrootkit: stable 0.52 for sparc

Bug: https://bugs.gentoo.org/660906
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 app-forensics/chkrootkit/chkrootkit-0.52.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-forensics/chkrootkit/chkrootkit-0.52.ebuild 
b/app-forensics/chkrootkit/chkrootkit-0.52.ebuild
index 7920cd74260..cc05fb6c9a6 100644
--- a/app-forensics/chkrootkit/chkrootkit-0.52.ebuild
+++ b/app-forensics/chkrootkit/chkrootkit-0.52.ebuild
@@ -13,7 +13,7 @@ SRC_URI="ftp://ftp.pangeia.com.br/pub/seg/pac/${P}.tar.gz -> 
${P}.tar
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
~x86"
 IUSE="+cron"
 
 RDEPEND="cron? ( virtual/cron )"



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

2018-07-11 Thread Patrick McLean
commit: 7c9ce7965ca1215c87a52ab5c97086c180706849
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Jul 11 21:12:33 2018 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Jul 11 21:16:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9ce796

sys-kernel/vanilla-sources: Version bump to 4.9.112

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.9.111.ebuild => vanilla-sources-4.9.112.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 1b5fdd8e7a3..e01bcbf9f4f 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -13,4 +13,4 @@ DIST patch-4.14.55.xz 1444204 BLAKE2B 
0fc797ba53ce213404691de477adfd40e29fbf8256
 DIST patch-4.16.18.xz 506924 BLAKE2B 
dc41b7247e58808e1827fda7b4236ccac1ef8150f4c200161f4a9cd91912a7cb8b72337dfd403c3b1d7bee3d2626b5d53e3c3d595d80418da57bc3f9b58fdbce
 SHA512 
9e1cf90b874c757393680026cb74500ca9fa22c0047ac820f4e5f43062125f8cf469f1e8e93a084b9ecc28a177e55c8b733c2fe620e46694a338f1b2ff4180f8
 DIST patch-4.17.5.xz 121080 BLAKE2B 
50fa60534a24672217364bf5eb39c6dc2c3422a01d50f7ab497d2131a17fb8d1b2da68226b8d26d046783c36bc80a65bca64e1a16249cc63aaa52683fdbca4fa
 SHA512 
2623f82b4664b5ef6af4f1f9e2758661d7c3b4b7445990fb22b1a93d33006316a7a19c03d7dfccb0c49c7cfc2791c4b0aa6c543730ffc1d095c72402f060dd5c
 DIST patch-4.4.139.xz 1991704 BLAKE2B 
a10a1c95053d69bbdcfccd26703f66b028e9f3286a99e0b2015ada9cc378cf69d67a18347e07671d8bcad1e129602dcd3cff260263ca92c30c235848968e2030
 SHA512 
2266cf0d636d81999abc23f9de1dbebf6d12c74faa0949166a88d6e2a753564407e19645d8aea2da0c48491cb976c135c573ea0ac046b974c92ff1e7ffd3123c
-DIST patch-4.9.111.xz 2042920 BLAKE2B 
f57dac60eb519d7b4f8b658cc80ef105d65d666d43337362fd0cfaf4a36402f83b7ce90450c9dd17db657eaa095b9e5d45ccf2f69e8315aaccbef2d1fe1f635b
 SHA512 
fceecfede02356b4feee69dbf5668698941f3135c181193c1db062f94177baf12d28e27bd38d072f1cd7aedb47398184331ca222e4abd98cd1fbe5711c30c2e8
+DIST patch-4.9.112.xz 2053420 BLAKE2B 
92b849ba7548a0913101911b2c75a7e66480e04d005deee885ab3ef2bfb0d0324d00d71d03519662c919d20bd7e973e4ba9ef6342eea8a45faf89bdb9be2a9fe
 SHA512 
59d6d4cea19c087b0e69573fe1c53fb2c74b0b32e5faa357187436d292cc908abe5770e47f868c5b40dd2136e0e6298250314e5fbec00154bb8394bbdd512dfa

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.9.111.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.9.112.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.9.111.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.9.112.ebuild



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

2018-07-11 Thread Patrick McLean
commit: 41dc200f16c2d37c2d4ac923bd103aec69a963bc
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Jul 11 21:13:37 2018 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Jul 11 21:16:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41dc200f

sys-kernel/vanilla-sources: Version bump to 4.4.140

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.4.139.ebuild => vanilla-sources-4.4.140.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index e01bcbf9f4f..384b3c02f50 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -12,5 +12,5 @@ DIST patch-4.1.52.xz 753264 BLAKE2B 
57e0d116ead0a994bffbe019f229c607c71201452d6a
 DIST patch-4.14.55.xz 1444204 BLAKE2B 
0fc797ba53ce213404691de477adfd40e29fbf82568362351b9efb040f2cb83e916e5311216e0bf4bf5d6b0b8a936ab023f76569c58cbe2f797851813831ddb6
 SHA512 
9801d5f197ca3db39f43abe2a8540d9bec92d19f31accc8017c9d0226d889b3da8765cde3268dab7cd1097cfd804d42482e5343f9429926fcbd9a867a038f766
 DIST patch-4.16.18.xz 506924 BLAKE2B 
dc41b7247e58808e1827fda7b4236ccac1ef8150f4c200161f4a9cd91912a7cb8b72337dfd403c3b1d7bee3d2626b5d53e3c3d595d80418da57bc3f9b58fdbce
 SHA512 
9e1cf90b874c757393680026cb74500ca9fa22c0047ac820f4e5f43062125f8cf469f1e8e93a084b9ecc28a177e55c8b733c2fe620e46694a338f1b2ff4180f8
 DIST patch-4.17.5.xz 121080 BLAKE2B 
50fa60534a24672217364bf5eb39c6dc2c3422a01d50f7ab497d2131a17fb8d1b2da68226b8d26d046783c36bc80a65bca64e1a16249cc63aaa52683fdbca4fa
 SHA512 
2623f82b4664b5ef6af4f1f9e2758661d7c3b4b7445990fb22b1a93d33006316a7a19c03d7dfccb0c49c7cfc2791c4b0aa6c543730ffc1d095c72402f060dd5c
-DIST patch-4.4.139.xz 1991704 BLAKE2B 
a10a1c95053d69bbdcfccd26703f66b028e9f3286a99e0b2015ada9cc378cf69d67a18347e07671d8bcad1e129602dcd3cff260263ca92c30c235848968e2030
 SHA512 
2266cf0d636d81999abc23f9de1dbebf6d12c74faa0949166a88d6e2a753564407e19645d8aea2da0c48491cb976c135c573ea0ac046b974c92ff1e7ffd3123c
+DIST patch-4.4.140.xz 2001088 BLAKE2B 
d95151c5552edc16c61f21220e7df0f5f29af9708831243814c5a2a57ef0033e9dac1454fab328daceedf3c45dd1c2b3638aedcf6a1a332ea770f284717b7f5d
 SHA512 
5c9c726054fcd1abc6c52b86de62f721e9b7b2826e00e56db3fbd63870fd5cd24f946aadc10677de2923b59bf0317d93872c14db477661186aeb94f67bcf
 DIST patch-4.9.112.xz 2053420 BLAKE2B 
92b849ba7548a0913101911b2c75a7e66480e04d005deee885ab3ef2bfb0d0324d00d71d03519662c919d20bd7e973e4ba9ef6342eea8a45faf89bdb9be2a9fe
 SHA512 
59d6d4cea19c087b0e69573fe1c53fb2c74b0b32e5faa357187436d292cc908abe5770e47f868c5b40dd2136e0e6298250314e5fbec00154bb8394bbdd512dfa

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.139.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.4.140.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.4.139.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.4.140.ebuild



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

2018-07-11 Thread Patrick McLean
commit: 4cdb24f3c16039b1bf80bc98185a1c5e4bae6197
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Jul 11 21:14:21 2018 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Jul 11 21:16:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cdb24f3

sys-kernel/vanilla-sources: Version bump to 4.17.6

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.17.5.ebuild => vanilla-sources-4.17.6.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 384b3c02f50..6ced48de07b 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -11,6 +11,6 @@ DIST patch-3.2.102.xz 1964152 BLAKE2B 
92a9ddef295250db735f7212af956e47385818b186
 DIST patch-4.1.52.xz 753264 BLAKE2B 
57e0d116ead0a994bffbe019f229c607c71201452d6a8bb57c9855b637b011471bcf383d51fd8fe725498210d3ddaba7a3a3f6af491effc909a15f902275
 SHA512 
0d18cb892b62edb42e48038125b74edcf13093cefe30616403f0e75d44974d57e569ad28a8c98d9d80b3fbc360f092b7c045778e17e28bbb9748528ed87df43c
 DIST patch-4.14.55.xz 1444204 BLAKE2B 
0fc797ba53ce213404691de477adfd40e29fbf82568362351b9efb040f2cb83e916e5311216e0bf4bf5d6b0b8a936ab023f76569c58cbe2f797851813831ddb6
 SHA512 
9801d5f197ca3db39f43abe2a8540d9bec92d19f31accc8017c9d0226d889b3da8765cde3268dab7cd1097cfd804d42482e5343f9429926fcbd9a867a038f766
 DIST patch-4.16.18.xz 506924 BLAKE2B 
dc41b7247e58808e1827fda7b4236ccac1ef8150f4c200161f4a9cd91912a7cb8b72337dfd403c3b1d7bee3d2626b5d53e3c3d595d80418da57bc3f9b58fdbce
 SHA512 
9e1cf90b874c757393680026cb74500ca9fa22c0047ac820f4e5f43062125f8cf469f1e8e93a084b9ecc28a177e55c8b733c2fe620e46694a338f1b2ff4180f8
-DIST patch-4.17.5.xz 121080 BLAKE2B 
50fa60534a24672217364bf5eb39c6dc2c3422a01d50f7ab497d2131a17fb8d1b2da68226b8d26d046783c36bc80a65bca64e1a16249cc63aaa52683fdbca4fa
 SHA512 
2623f82b4664b5ef6af4f1f9e2758661d7c3b4b7445990fb22b1a93d33006316a7a19c03d7dfccb0c49c7cfc2791c4b0aa6c543730ffc1d095c72402f060dd5c
+DIST patch-4.17.6.xz 138580 BLAKE2B 
7c1a94af15142d8728b3be91c480d73f8a500d2892c8447bab891d883c0acfbbc22927a3a5f91fc372c4975e735b0231494584c929b4a356f0b2e9a4c32c9b3f
 SHA512 
4b791d94db704cbbe3dbf6b340735fe757741f116ca14060ced836aece1d4b51d0c3f376af1564e7379fbb9c9132a8e4d021fc74599f3ab037237d718651
 DIST patch-4.4.140.xz 2001088 BLAKE2B 
d95151c5552edc16c61f21220e7df0f5f29af9708831243814c5a2a57ef0033e9dac1454fab328daceedf3c45dd1c2b3638aedcf6a1a332ea770f284717b7f5d
 SHA512 
5c9c726054fcd1abc6c52b86de62f721e9b7b2826e00e56db3fbd63870fd5cd24f946aadc10677de2923b59bf0317d93872c14db477661186aeb94f67bcf
 DIST patch-4.9.112.xz 2053420 BLAKE2B 
92b849ba7548a0913101911b2c75a7e66480e04d005deee885ab3ef2bfb0d0324d00d71d03519662c919d20bd7e973e4ba9ef6342eea8a45faf89bdb9be2a9fe
 SHA512 
59d6d4cea19c087b0e69573fe1c53fb2c74b0b32e5faa357187436d292cc908abe5770e47f868c5b40dd2136e0e6298250314e5fbec00154bb8394bbdd512dfa

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.17.5.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.17.6.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.17.5.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.17.6.ebuild



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

2018-07-11 Thread Patrick McLean
commit: 89bd79a748df9573327e256251bfdde1aff9ccfc
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Jul 11 21:11:34 2018 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Jul 11 21:16:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89bd79a7

sys-kernel/vanilla-sources: Version bump to 4.14.55

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.14.54.ebuild => vanilla-sources-4.14.55.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 4720f5a080e..1b5fdd8e7a3 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -9,7 +9,7 @@ DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c
 DIST patch-3.16.57.xz 2026584 BLAKE2B 
275c631a26fd7832f5845f2bb74ec053b2e289e72b4a7578cf36427f8939f6267d99395857cd40b26e61a56fa2ea8d913298889bf0b629f48f8fc951ab62b398
 SHA512 
ceb84c52cee592f2bf19d47522a01e66c98edea1c5b532b667fb92c8919ebe905c9340bb68bf38205518e5f41e7ab4059f37e40d334c05f4c1f9f0f28f1caafa
 DIST patch-3.2.102.xz 1964152 BLAKE2B 
92a9ddef295250db735f7212af956e47385818b1863b27f7852afc6c0a36b3cc1d1099fd3fa37f3de9a8668f4aa7250fbae467451eae67fa4371078dd0de2009
 SHA512 
15e17a1eb39cb73d0efb606d78a44c811fe83b24004ac45504b32531af1db29f1d82fd5270c8ccc56d714cedb124a07f5e31b1eda93f45715154a721df4a
 DIST patch-4.1.52.xz 753264 BLAKE2B 
57e0d116ead0a994bffbe019f229c607c71201452d6a8bb57c9855b637b011471bcf383d51fd8fe725498210d3ddaba7a3a3f6af491effc909a15f902275
 SHA512 
0d18cb892b62edb42e48038125b74edcf13093cefe30616403f0e75d44974d57e569ad28a8c98d9d80b3fbc360f092b7c045778e17e28bbb9748528ed87df43c
-DIST patch-4.14.54.xz 1431256 BLAKE2B 
91957b611a69c469d4b3e3cbd0ad239ec7d44649b9d486a2514232683ddb08de26da090e28ba6fe5086c36f94c39d8b465668b1865102fb4d94f3da428324b75
 SHA512 
9a10b551c80c3670221e803e40f6bec70ca09a95bead328bd390d2d029abcdb216334d5178c54d0128e8cd6e4ae197ccb2c053d7c643c5665f04afa56857f03c
+DIST patch-4.14.55.xz 1444204 BLAKE2B 
0fc797ba53ce213404691de477adfd40e29fbf82568362351b9efb040f2cb83e916e5311216e0bf4bf5d6b0b8a936ab023f76569c58cbe2f797851813831ddb6
 SHA512 
9801d5f197ca3db39f43abe2a8540d9bec92d19f31accc8017c9d0226d889b3da8765cde3268dab7cd1097cfd804d42482e5343f9429926fcbd9a867a038f766
 DIST patch-4.16.18.xz 506924 BLAKE2B 
dc41b7247e58808e1827fda7b4236ccac1ef8150f4c200161f4a9cd91912a7cb8b72337dfd403c3b1d7bee3d2626b5d53e3c3d595d80418da57bc3f9b58fdbce
 SHA512 
9e1cf90b874c757393680026cb74500ca9fa22c0047ac820f4e5f43062125f8cf469f1e8e93a084b9ecc28a177e55c8b733c2fe620e46694a338f1b2ff4180f8
 DIST patch-4.17.5.xz 121080 BLAKE2B 
50fa60534a24672217364bf5eb39c6dc2c3422a01d50f7ab497d2131a17fb8d1b2da68226b8d26d046783c36bc80a65bca64e1a16249cc63aaa52683fdbca4fa
 SHA512 
2623f82b4664b5ef6af4f1f9e2758661d7c3b4b7445990fb22b1a93d33006316a7a19c03d7dfccb0c49c7cfc2791c4b0aa6c543730ffc1d095c72402f060dd5c
 DIST patch-4.4.139.xz 1991704 BLAKE2B 
a10a1c95053d69bbdcfccd26703f66b028e9f3286a99e0b2015ada9cc378cf69d67a18347e07671d8bcad1e129602dcd3cff260263ca92c30c235848968e2030
 SHA512 
2266cf0d636d81999abc23f9de1dbebf6d12c74faa0949166a88d6e2a753564407e19645d8aea2da0c48491cb976c135c573ea0ac046b974c92ff1e7ffd3123c

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.14.54.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.14.55.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.14.54.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.14.55.ebuild



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

2018-07-11 Thread Mikle Kolyada
commit: 37eaa4c737eb222f4c666b3eed94f94a66974566
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 21:15:17 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 21:15:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37eaa4c7

sci-physics/clhep: amd64 stable wrt bug #657254

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/sci-physics/clhep/clhep-2.4.0.4.ebuild 
b/sci-physics/clhep/clhep-2.4.0.4.ebuild
index 1ac5e383a36..08425f145ab 100644
--- a/sci-physics/clhep/clhep-2.4.0.4.ebuild
+++ b/sci-physics/clhep/clhep-2.4.0.4.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://cern.ch/clhep";
 
SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz";
 LICENSE="GPL-3 LGPL-3"
 SLOT="2/${PV}"
-KEYWORDS="~amd64 ~hppa ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 ~hppa ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 IUSE="doc test threads"
 RDEPEND=""



[gentoo-commits] proj/python: New branch: tmp

2018-07-11 Thread Michał Górny
commit: 
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 21:11:00 2018 +

New branch: tmp




[gentoo-commits] proj/python: Branch deleted: tmp

2018-07-11 Thread Michał Górny
commit: 
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul 11 21:11:09 2018 +

Branch deleted: tmp




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

2018-07-11 Thread Mikle Kolyada
commit: 71dd9a476dba6f5779f8c2f2b66dc2dfd6778a12
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 21:10:00 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 21:10:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71dd9a47

app-shells/zsh: amd64 stable wrt bug #660862

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-shells/zsh/zsh-5.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/zsh/zsh-5.5.1-r1.ebuild 
b/app-shells/zsh/zsh-5.5.1-r1.ebuild
index 9f6dc303d88..7ef55abeb8c 100644
--- a/app-shells/zsh/zsh-5.5.1-r1.ebuild
+++ b/app-shells/zsh/zsh-5.5.1-r1.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3 autotools
EGIT_REPO_URI="git://git.code.sf.net/p/zsh/code"
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
SRC_URI="https://www.zsh.org/pub/${P}.tar.gz
doc? ( https://www.zsh.org/pub/${P}-doc.tar.xz )"
 fi



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

2018-07-11 Thread Mikle Kolyada
commit: b894e53acd62b656cc92bf6ee27166844ca56042
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 21:07:15 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 21:07:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b894e53a

media-libs/harfbuzz: amd64 stable wrt bug #660314

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/media-libs/harfbuzz/harfbuzz-1.8.1.ebuild 
b/media-libs/harfbuzz/harfbuzz-1.8.1.ebuild
index 66c1977cd00..92d65fff155 100644
--- a/media-libs/harfbuzz/harfbuzz-1.8.1.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-1.8.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} =  ]] ; then
inherit git-r3 autotools
 else

SRC_URI="https://www.freedesktop.org/software/${PN}/release/${P}.tar.bz2";
-   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~x64-macos ~x86-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~x64-macos ~x86-macos ~x64-solaris"
 fi
 
 LICENSE="Old-MIT ISC icu"



[gentoo-commits] repo/gentoo:master commit in: net-irc/quassel/

2018-07-11 Thread Mikle Kolyada
commit: 35541de6f65dc66098b9a71e55cd50c267f3d552
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 21:04:05 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 21:04:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35541de6

net-irc/quassel: amd64 stable wrt bug #660844

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-irc/quassel/quassel-0.12.5-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/quassel/quassel-0.12.5-r2.ebuild 
b/net-irc/quassel/quassel-0.12.5-r2.ebuild
index 8be168a8ed6..dd632d791bb 100644
--- a/net-irc/quassel/quassel-0.12.5-r2.ebuild
+++ b/net-irc/quassel/quassel-0.12.5-r2.ebuild
@@ -7,7 +7,7 @@ inherit cmake-utils gnome2-utils pax-utils systemd user 
versionator
 
 if [[ ${PV} != ** ]]; then
SRC_URI="http://quassel-irc.org/pub/${P}.tar.bz2";
-   KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~sparc-solaris"
+   KEYWORDS="amd64 ~arm ~ppc ~x86 ~amd64-linux ~sparc-solaris"
 else
EGIT_REPO_URI=( "https://github.com/${PN}/${PN}"; 
"git://git.${PN}-irc.org/${PN}" )
inherit git-r3



[gentoo-commits] repo/gentoo:master commit in: games-misc/exult-sound/

2018-07-11 Thread James Le Cuirot
commit: bbbae75202ad22b7f805254ec242fe45cb912fec
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Tue May 29 21:32:40 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Jul 11 20:58:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbbae752

games-misc/exult-sound: simplify ebuild

Used united zip-archive, removed src_unpack() section.

Package-Manager: Portage-2.3.24, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/9080

 games-misc/exult-sound/Manifest|  1 +
 games-misc/exult-sound/exult-sound-0-r2.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/games-misc/exult-sound/Manifest b/games-misc/exult-sound/Manifest
index 40ffc48742a..8aa75fcf415 100644
--- a/games-misc/exult-sound/Manifest
+++ b/games-misc/exult-sound/Manifest
@@ -1,4 +1,5 @@
 DIST U7MusicOGG_1of2.zip 12614413 BLAKE2B 
46b4e36638510d9a13b52aad6c1423b43becd2bcb8afc28bd0d19baaf7ee7af3dd0cc16e64a6685701c3db4b418fb088ede3922041ce91fb74fdceec223d5069
 SHA512 
aadcb085cc97b5330622c4acbd9d00912af7a87371b38e5d984882686ac1624dba1a70a21e66943d8e4de1c5583ab58a32ed851e50d7ecc861d7051383fb21c0
 DIST U7MusicOGG_2of2.zip 11382878 BLAKE2B 
c65f7e12b6a2a6d94cf1025c7eeb50a8ec9d81b321a66e602900f61b614899b8db654a1a59203cf4026517eaade6aeb5bd53a27085fc26ca545ae9edf01a354b
 SHA512 
c3157faad5e02531732cd8e7ceb2a81cdb3a5b3eeaf48c73c0e753fc99c0ad438bc49f290d202f59851072aca50d22594f5c4782606d0f70d91d747cea9de924
+DIST exult_audio.zip 48439905 BLAKE2B 
ad8a230d9ba92cef94b22b669644a10ae6fcfe92c4dbfc5c3f89535534b4bddfe7d9b69dbf05220033df92b6d172e83340e6571920f42b5e63e66a5417ffa8f4
 SHA512 
70374a079935b063f41a37aeb90315d55abb584e5542f7fa12c707318db6365e989a5848bba9045a2c2cca1ccd902cc1d31fec8c95511a986de7a75d322d0919
 DIST jmsfx.zip 4778572 BLAKE2B 
26ee8f735b1cb75977493a22c660bb8a9e586ca2f68918db32142d9e654c1a80aaa304756bdc72dc6ec741e699ea9f14139a267f85752cfd1017c6c6c91635bf
 SHA512 
0822a8008ad3b9e2e6824dc968b8aa5f475b35dae31cf3d35d36422d68570cef440572bde07d4b4b580520b34581ab0700f7bded0bc66ae5d6020feb1662
 DIST jmsfxsi.zip 6194646 BLAKE2B 
5b791132907e6579110d4e450a5c4d1362fa5a4e9021ed758be200ba11a370d44710bdd14a2b9bee0c55fcd1972e3fb732b4926d68b75404b1d5cd9fa90a2408
 SHA512 
1712d7d264f06d84ba38e864174d2e40a77a4270c94b2a5bccbf31dc41e187d6eeb013ebbfbc171bb6314df103a3ad5dd06daeb8ede0b5aead6cd1443680abdf

diff --git a/games-misc/exult-sound/exult-sound-0-r2.ebuild 
b/games-misc/exult-sound/exult-sound-0-r2.ebuild
new file mode 100644
index 000..a1cb960fdc5
--- /dev/null
+++ b/games-misc/exult-sound/exult-sound-0-r2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Sound data for games-engines/exult"
+HOMEPAGE="http://exult.sourceforge.net/";
+SRC_URI="mirror://sourceforge/exult/exult_audio.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="!

[gentoo-commits] repo/gentoo:master commit in: games-misc/exult-sound/

2018-07-11 Thread James Le Cuirot
commit: 8b23b814fc0fce1dc5fdbf51590cd5192d14f3b4
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Jul 11 21:00:35 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Jul 11 21:00:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b23b814

games-misc/exult-sound: Drop old 0-r1

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-misc/exult-sound/Manifest|  4 ---
 games-misc/exult-sound/exult-sound-0-r1.ebuild | 36 --
 2 files changed, 40 deletions(-)

diff --git a/games-misc/exult-sound/Manifest b/games-misc/exult-sound/Manifest
index 8aa75fcf415..14ff1802e49 100644
--- a/games-misc/exult-sound/Manifest
+++ b/games-misc/exult-sound/Manifest
@@ -1,5 +1 @@
-DIST U7MusicOGG_1of2.zip 12614413 BLAKE2B 
46b4e36638510d9a13b52aad6c1423b43becd2bcb8afc28bd0d19baaf7ee7af3dd0cc16e64a6685701c3db4b418fb088ede3922041ce91fb74fdceec223d5069
 SHA512 
aadcb085cc97b5330622c4acbd9d00912af7a87371b38e5d984882686ac1624dba1a70a21e66943d8e4de1c5583ab58a32ed851e50d7ecc861d7051383fb21c0
-DIST U7MusicOGG_2of2.zip 11382878 BLAKE2B 
c65f7e12b6a2a6d94cf1025c7eeb50a8ec9d81b321a66e602900f61b614899b8db654a1a59203cf4026517eaade6aeb5bd53a27085fc26ca545ae9edf01a354b
 SHA512 
c3157faad5e02531732cd8e7ceb2a81cdb3a5b3eeaf48c73c0e753fc99c0ad438bc49f290d202f59851072aca50d22594f5c4782606d0f70d91d747cea9de924
 DIST exult_audio.zip 48439905 BLAKE2B 
ad8a230d9ba92cef94b22b669644a10ae6fcfe92c4dbfc5c3f89535534b4bddfe7d9b69dbf05220033df92b6d172e83340e6571920f42b5e63e66a5417ffa8f4
 SHA512 
70374a079935b063f41a37aeb90315d55abb584e5542f7fa12c707318db6365e989a5848bba9045a2c2cca1ccd902cc1d31fec8c95511a986de7a75d322d0919
-DIST jmsfx.zip 4778572 BLAKE2B 
26ee8f735b1cb75977493a22c660bb8a9e586ca2f68918db32142d9e654c1a80aaa304756bdc72dc6ec741e699ea9f14139a267f85752cfd1017c6c6c91635bf
 SHA512 
0822a8008ad3b9e2e6824dc968b8aa5f475b35dae31cf3d35d36422d68570cef440572bde07d4b4b580520b34581ab0700f7bded0bc66ae5d6020feb1662
-DIST jmsfxsi.zip 6194646 BLAKE2B 
5b791132907e6579110d4e450a5c4d1362fa5a4e9021ed758be200ba11a370d44710bdd14a2b9bee0c55fcd1972e3fb732b4926d68b75404b1d5cd9fa90a2408
 SHA512 
1712d7d264f06d84ba38e864174d2e40a77a4270c94b2a5bccbf31dc41e187d6eeb013ebbfbc171bb6314df103a3ad5dd06daeb8ede0b5aead6cd1443680abdf

diff --git a/games-misc/exult-sound/exult-sound-0-r1.ebuild 
b/games-misc/exult-sound/exult-sound-0-r1.ebuild
deleted file mode 100644
index d83c7ae5d65..000
--- a/games-misc/exult-sound/exult-sound-0-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Sound data for games-engines/exult"
-HOMEPAGE="http://exult.sourceforge.net/";
-SRC_URI="mirror://sourceforge/exult/U7MusicOGG_1of2.zip
-   mirror://sourceforge/exult/U7MusicOGG_2of2.zip
-   mirror://sourceforge/exult/jmsfx.zip
-   mirror://sourceforge/exult/jmsfxsi.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="!

[gentoo-commits] repo/gentoo:master commit in: games-engines/exult/

2018-07-11 Thread James Le Cuirot
commit: 97ec3a4cb66d7484c8b7a29db5aeabb79598f12c
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Fri Jun  1 19:57:37 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Jul 11 20:58:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97ec3a4c

games-engines/exult: fixes to compilation

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 games-engines/exult/exult-.ebuild | 13 +++--
 games-engines/exult/metadata.xml  |  4 
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/games-engines/exult/exult-.ebuild 
b/games-engines/exult/exult-.ebuild
index 4efc34a2e5d..3463a5baa5a 100644
--- a/games-engines/exult/exult-.ebuild
+++ b/games-engines/exult/exult-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,18 +11,18 @@ EGIT_REPO_URI="https://github.com/exult/exult";
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS=""
-IUSE="timidity zlib"
+IUSE="+sdl2 timidity zlib"
 
 DEPEND="
>=media-libs/libpng-1.2.43-r2:0
games-misc/exult-sound
-   media-libs/libsdl[sound,video,X]
+   media-libs/libvorbis
+   sdl2? ( media-libs/libsdl2[sound,video,X] )
+   !sdl2? ( media-libs/libsdl[sound,video,X] )
timidity? ( >=media-sound/timidity++-2 )
zlib? ( sys-libs/zlib )
 "
-RDEPEND="
-   ${DEPEND}
-"
+RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${P/_/}
 DOCS=(
@@ -42,6 +42,7 @@ src_configure() {
--enable-mods \
--with-desktopdir=/usr/share/applications \
--with-icondir=/usr/share/pixmaps \
+   --with-sdl=$(usex sdl2 sdl2 sdl12) \
$(use_enable timidity timidity-midi) \
$(use_enable zlib zip-support)
 }

diff --git a/games-engines/exult/metadata.xml b/games-engines/exult/metadata.xml
index c1a873a06ee..a676c5e60d9 100644
--- a/games-engines/exult/metadata.xml
+++ b/games-engines/exult/metadata.xml
@@ -7,5 +7,9 @@


exult
+   exult/exult

+   
+   Use libsdl2 instead of libsdl
+   
 



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

2018-07-11 Thread Richard Farina
commit: b5af0527faa55967c8276ccbebaa8b10ac2c2a35
Author: Zero_Chaos  gentoo  org>
AuthorDate: Wed Jul 11 16:43:43 2018 +
Commit: Richard Farina  gentoo  org>
CommitDate: Wed Jul 11 20:46:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5af0527

media-libs/codec2: bump

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 media-libs/codec2/Manifest|  1 +
 media-libs/codec2/codec2-0.8.1.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/media-libs/codec2/Manifest b/media-libs/codec2/Manifest
index f3266a6fd8d..c915edd64d4 100644
--- a/media-libs/codec2/Manifest
+++ b/media-libs/codec2/Manifest
@@ -1 +1,2 @@
 DIST codec2-0.7.tar.xz 8386048 BLAKE2B 
04e2ab834539d6911300d30a7de00a0c351e29c53972482765cbefefe8d9e0f10b491496690e34beacce27f68da0c85bb6ad8bb75b93ce50e44eb13f1ad8070b
 SHA512 
bf2f40071c21096d9504aacb293e7c293e1a51d732b91d870b5b35c372684cdb187fe4aafb6c27601c75167bd3783470e054d65b4be215facf67acee8afc56af
+DIST codec2-0.8.1.tar.xz 8868212 BLAKE2B 
2c0ba40df02cc6791386243e75f97ce17026842b13384e4a330cf22ea4bef5db75ddbc764dd4045027a6e2bf2eeba9b509b372aeaef81bb235e3d6c2930b01fe
 SHA512 
4f2633d510ab68102b77b15492d87d25fe5fa96d90dc1ca6b3bf7deea04a3765382bfbbde981c9cac70d3e9d091c56b2099544b09b36a84ed62cb9087c9bb819

diff --git a/media-libs/codec2/codec2-0.8.1.ebuild 
b/media-libs/codec2/codec2-0.8.1.ebuild
new file mode 100644
index 000..1f2955c5439
--- /dev/null
+++ b/media-libs/codec2/codec2-0.8.1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-multilib
+
+DESCRIPTION="Low bit rate speech codec"
+HOMEPAGE="https://freedv.org/";
+SRC_URI="https://hobbes1069.fedorapeople.org/freetel/codec2/${P}.tar.xz";
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ia64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+multilib_src_configure() {
+   local mycmakeargs=( -DUNITTEST=OFF )
+   cmake-utils_src_configure
+}



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

2018-07-11 Thread Richard Farina
commit: e1423683bb320596509f383d6b6226939362c486
Author: Zero_Chaos  gentoo  org>
AuthorDate: Wed Jul 11 20:45:43 2018 +
Commit: Richard Farina  gentoo  org>
CommitDate: Wed Jul 11 20:46:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1423683

net-wireless/gnuradio: fixes

fix bug #659946
fix https://github.com/pentoo/pentoo-overlay/issues/289
update debian patchset, use more of their backports

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 net-wireless/gnuradio/Manifest   |  3 ++-
 ...{gnuradio-3.7.13.3.ebuild => gnuradio-3.7.13.3-r1.ebuild} | 12 ++--
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/net-wireless/gnuradio/Manifest b/net-wireless/gnuradio/Manifest
index 7d394200df6..a0e28ee3259 100644
--- a/net-wireless/gnuradio/Manifest
+++ b/net-wireless/gnuradio/Manifest
@@ -1,4 +1,5 @@
 DIST gnuradio-3.6.5.1.tar.gz 3150283 BLAKE2B 
f04121aab9a1b4c5424b5396c96269a53dd6302bf42e5a443b99ea642c8db8ed32df843a89ffe49869212cd2325b209407b5407dbd9b7730510c4ee42bd95836
 SHA512 
23a22aed482da11005b17e5197ee3ba24d442b30309522b0858e694b58f46b76cc050143d365623c7dd4241cdf8b9f988e1a4dabe2e1f98d0fd4cca71bbb82e8
 DIST gnuradio-3.7.11.tar.gz 4357123 BLAKE2B 
ae43e9f7e20605de484c4dc31bc33b9b99e5fba269d8d394e9053f4451083b2d6048c1d1fe19a774c0cc686c13e758f0b6e719cf15d05c5867e2ac1c4eecf789
 SHA512 
a3b44e04e63056ad5238ddbda7967ebaf5802d2ed7e24649190bde67a533b50780ec1260dc7710c5388c966b71e153d3d21468bbfee4529c62ac5b89b589dd14
-DIST gnuradio-3.7.12-qt5.tar.xz 31048 BLAKE2B 
5665ecd7f5ab34852a0e2dc975c483331e7b547377adf8a4c38ab68a6e034d6ec9f009210f74bbf9a0fc76e214bd744558b267e853843f33f799bbf0a0f2a7fc
 SHA512 
25da9415d7b7f9984075c2a8fcf092bc0585be550c0b9a7e6910d934fd3aab4be3135d7a2c83b01ce19b2ac8e0065ffb5ad1375fa29cc259d4dc2d1d92003f99
+DIST gnuradio-3.7.13-1-qt5.tar.xz 31412 BLAKE2B 
56aebd5ea61abd48723ed0c16050a05c3c8e328ac2a91307b00d8705ddcac0c713d74b946491bdd763abd5d2432d07cd51a85a4d365ef3c8d51eb255e682e326
 SHA512 
952c5bbf3ae38e2a935cd8dbd20f2f7aed4ab8c0492e3bc10ebed2b9eb1f11bb2caf84c035cd3d88f7703e84f1e58d8aa0a66290623c7b75e59b43a85de44549
+DIST gnuradio-3.7.13-codec2.tar.xz 13148 BLAKE2B 
84f732dc562dbbd076e1656fad37c818fd9fa869b81f343d45b086659a6df1dc4e26afdb8f283b83c758f76e9d3b90e51ce32e396fbb03d1c0348d27ba9e2c1c
 SHA512 
f9e034ff240b836e336b48900a3b6a86a656ec4f35a9df639503ab99cf8da6acfc6e8d45f11c81994766d9d5bb381671fc678abd0280ebc0e218bcd8523a3f1b
 DIST gnuradio-3.7.13.3.tar.gz 4544605 BLAKE2B 
f059e8af860b7c18573f0efa909f3bf2b36b4d7208e26dd18a1c9de8cbf40e0d9079336f4a5f48430790e28dc21f5150ad2294fa1d664889c07e849d236160a0
 SHA512 
e4bf63899678fd792bc08baa2db673b192dc823d6e586124538cbdf12e60a882847e72cfca7f52ef906d52038a9cb48a8b5891593c9db1cb172c4077a54d4056

diff --git a/net-wireless/gnuradio/gnuradio-3.7.13.3.ebuild 
b/net-wireless/gnuradio/gnuradio-3.7.13.3-r1.ebuild
similarity index 95%
rename from net-wireless/gnuradio/gnuradio-3.7.13.3.ebuild
rename to net-wireless/gnuradio/gnuradio-3.7.13.3-r1.ebuild
index 469c004b33d..64d520389a3 100644
--- a/net-wireless/gnuradio/gnuradio-3.7.13.3.ebuild
+++ b/net-wireless/gnuradio/gnuradio-3.7.13.3-r1.ebuild
@@ -18,7 +18,8 @@ if [[ ${PV} =~ "" ]]; then
KEYWORDS=""
 else
SRC_URI="https://www.gnuradio.org/releases/gnuradio/${P}.tar.gz
-   
https://dev.gentoo.org/~zerochaos/patches/${PN}-3.7.12-qt5.tar.xz";
+   
https://dev.gentoo.org/~zerochaos/patches/${PN}-3.7.13-1-qt5.tar.xz
+   
https://dev.gentoo.org/~zerochaos/patches/${PN}-3.7.13-codec2.tar.xz";
KEYWORDS="~amd64 ~arm ~x86"
 fi
 if [[ ${PV} == "3.7." ]]; then
@@ -82,10 +83,14 @@ RDEPEND="${PYTHON_DEPS}
sdl? ( >=media-libs/libsdl-1.2.0 )
uhd? ( >=net-wireless/uhd-3.9.6:=[${PYTHON_USEDEP}] )
utils? ( dev-python/matplotlib[${PYTHON_USEDEP}] )
-   vocoder? ( media-sound/gsm )
+   vocoder? ( media-sound/gsm
+>=media-libs/codec2-0.8.1 )
wavelet? (
>=sci-libs/gsl-1.10
)
+   wxwidgets? (
+   dev-python/wxpython:3.0[${PYTHON_USEDEP}]
+   )
zeromq? ( >=net-libs/zeromq-2.1.11 )
"
 
@@ -114,6 +119,8 @@ src_prepare() {
# Useless UI element would require qt3support, bug #365019
sed -i '/qPixmapFromMimeSource/d' 
"${S}"/gr-qtgui/lib/spectrumdisplayform.ui || die
epatch "${WORKDIR}"/qt5-maint-00*.patch
+   epatch "${WORKDIR}"/codec2-next-00*.patch
+
cmake-utils_src_prepare
 }
 
@@ -152,6 +159,7 @@ src_configure() {
-DENABLE_GR_UTILS="$(usex utils)"
-DENABLE_GR_VOCODER="$(usex vocoder)"
-DENABLE_GR_WAVELET="$(usex wavelet)"
+   -DENABLE_GR_WXGUI="$(usex wxwidgets)"
-DENABLE_GR_QTGUI="$(usex qt5)"
-DDESIRED_QT_VERSION="$(usex qt5 5)"
-DENABLE_GR_VIDEO_SDL="$(usex sdl)"



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

2018-07-11 Thread Richard Farina
commit: cc2a9579303c568c40acc15317ce55077061f426
Author: Zero_Chaos  gentoo  org>
AuthorDate: Wed Jul 11 20:40:05 2018 +
Commit: Richard Farina  gentoo  org>
CommitDate: Wed Jul 11 20:46:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc2a9579

media-libs/codec2: adding ~arm

Package-Manager: Portage-2.3.41, Repoman-2.3.9

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

diff --git a/media-libs/codec2/codec2-0.8.1.ebuild 
b/media-libs/codec2/codec2-0.8.1.ebuild
index 46f65f92f89..07c6f859762 100644
--- a/media-libs/codec2/codec2-0.8.1.ebuild
+++ b/media-libs/codec2/codec2-0.8.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://hobbes1069.fedorapeople.org/freetel/codec2/${P}.tar.xz";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~x86"
 IUSE="examples"
 
 DEPEND=""



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

2018-07-11 Thread Richard Farina
commit: 2b2cd5331ceac76d46a55467a9b31e2104b236d9
Author: Zero_Chaos  gentoo  org>
AuthorDate: Wed Jul 11 17:09:24 2018 +
Commit: Richard Farina  gentoo  org>
CommitDate: Wed Jul 11 20:46:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b2cd533

media-libs/codec2: add examples

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 media-libs/codec2/codec2-0.8.1.ebuild | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/media-libs/codec2/codec2-0.8.1.ebuild 
b/media-libs/codec2/codec2-0.8.1.ebuild
index 1f2955c5439..46f65f92f89 100644
--- a/media-libs/codec2/codec2-0.8.1.ebuild
+++ b/media-libs/codec2/codec2-0.8.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://hobbes1069.fedorapeople.org/freetel/codec2/${P}.tar.xz";
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="~amd64 ~hppa ~ia64 ~x86"
-IUSE=""
+IUSE="examples"
 
 DEPEND=""
 RDEPEND="${DEPEND}"
@@ -21,3 +21,12 @@ multilib_src_configure() {
local mycmakeargs=( -DUNITTEST=OFF )
cmake-utils_src_configure
 }
+
+src_install() {
+   cmake-multilib_src_install
+
+   if use examples; then
+   insinto /usr/share/codec2
+   doins -r wav raw
+   fi
+}



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

2018-07-11 Thread Johannes Huber
commit: 433146315344cb8e65532656fc19505d17109cc0
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jul 11 20:40:03 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jul 11 20:40:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43314631

media-sound/elisa: Version bump 0.2.1

Thanks-to: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-sound/elisa/Manifest   |  1 +
 media-sound/elisa/elisa-0.2.1.ebuild | 63 
 2 files changed, 64 insertions(+)

diff --git a/media-sound/elisa/Manifest b/media-sound/elisa/Manifest
index 0c991aba4b3..3849a467f85 100644
--- a/media-sound/elisa/Manifest
+++ b/media-sound/elisa/Manifest
@@ -1 +1,2 @@
 DIST elisa-0.2.0.tar.xz 1487412 BLAKE2B 
bbd2e01330e3a18446961313b4d6a3f3a0ed1354ac1619cf6c86fcc7aa84927086258c972c36a65116036cdb84301cacb5e39ae13bec104a2d7c459edaf82343
 SHA512 
9d5d097e6f1514f2d44ece6f0a11a4a1e47b655c0225e6c02aef388b7b3bf49bd66ac2d3901553b2ff26304a433ce803ec90219a271f2ee120a30da950bb627a
+DIST elisa-0.2.1.tar.xz 1488948 BLAKE2B 
91c885f0c95cff634570ce283be31ab3ae71119561d5cd309ddb663df050eb0117a7b6a59adb0e334b39d408485762665a07ea0cf316aca7ff30b9278b76a20c
 SHA512 
39701f5c840ed4539e9b4093e9c27f728500ef0c7687585a17fabfb9498dda2649664e9613961ef8d514ef2257858bf0c815c0f05b593eb0b42f87ef4e25

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



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

2018-07-11 Thread Johannes Huber
commit: f73efb63b99c964ff5dedcfec4714aeb31366042
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jul 11 20:40:26 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jul 11 20:40:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f73efb63

media-sound/elisa: Remove 0.2.0

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-sound/elisa/Manifest   |  1 -
 media-sound/elisa/elisa-0.2.0.ebuild | 63 
 2 files changed, 64 deletions(-)

diff --git a/media-sound/elisa/Manifest b/media-sound/elisa/Manifest
index 3849a467f85..bb3912f1314 100644
--- a/media-sound/elisa/Manifest
+++ b/media-sound/elisa/Manifest
@@ -1,2 +1 @@
-DIST elisa-0.2.0.tar.xz 1487412 BLAKE2B 
bbd2e01330e3a18446961313b4d6a3f3a0ed1354ac1619cf6c86fcc7aa84927086258c972c36a65116036cdb84301cacb5e39ae13bec104a2d7c459edaf82343
 SHA512 
9d5d097e6f1514f2d44ece6f0a11a4a1e47b655c0225e6c02aef388b7b3bf49bd66ac2d3901553b2ff26304a433ce803ec90219a271f2ee120a30da950bb627a
 DIST elisa-0.2.1.tar.xz 1488948 BLAKE2B 
91c885f0c95cff634570ce283be31ab3ae71119561d5cd309ddb663df050eb0117a7b6a59adb0e334b39d408485762665a07ea0cf316aca7ff30b9278b76a20c
 SHA512 
39701f5c840ed4539e9b4093e9c27f728500ef0c7687585a17fabfb9498dda2649664e9613961ef8d514ef2257858bf0c815c0f05b593eb0b42f87ef4e25

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



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

2018-07-11 Thread Johannes Huber
commit: 8199f53ca33ef0bc546bcda54b2093bb5ff1476b
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jul 11 20:34:37 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jul 11 20:34:37 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8199f53c

media-sound/elisa: Remove 0.1.80

Superseded by 0.2.0 in gentoo main tree.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-sound/elisa/elisa-0.1.80.ebuild | 63 ---
 1 file changed, 63 deletions(-)

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



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

2018-07-11 Thread Johannes Huber
commit: edeeede9f26346177ef6a5968844670f97b5b03a
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jul 11 20:32:06 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jul 11 20:34:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edeeede9

media-sound/elisa: Version bump 0.2.0

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-sound/elisa/Manifest   |  1 +
 media-sound/elisa/elisa-0.2.0.ebuild | 63 
 2 files changed, 64 insertions(+)

diff --git a/media-sound/elisa/Manifest b/media-sound/elisa/Manifest
index 46a43cc7eef..28ebeec0621 100644
--- a/media-sound/elisa/Manifest
+++ b/media-sound/elisa/Manifest
@@ -1 +1,2 @@
 DIST elisa-0.1.1.tar.xz 1461960 BLAKE2B 
da194b982f676b536d893bc9f419cbe6f47e73426abc19f454b706514e6a9150397e4bdc7917457d8cc442ab644fa9a51976c7211bad64473c6a039baa0f3c2f
 SHA512 
892e38b2d23af4c65727377c7b4fa08b10c2a2e96adea490222c6f47c44a8131dde01ed0f6e07a58a383b210303a7b9795e80c1025200343770a95aa12e0d5da
+DIST elisa-0.2.0.tar.xz 1487412 BLAKE2B 
bbd2e01330e3a18446961313b4d6a3f3a0ed1354ac1619cf6c86fcc7aa84927086258c972c36a65116036cdb84301cacb5e39ae13bec104a2d7c459edaf82343
 SHA512 
9d5d097e6f1514f2d44ece6f0a11a4a1e47b655c0225e6c02aef388b7b3bf49bd66ac2d3901553b2ff26304a433ce803ec90219a271f2ee120a30da950bb627a

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



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

2018-07-11 Thread Johannes Huber
commit: a0847c82d361d91e10d1cadbc6230dd0934b0d56
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jul 11 20:33:27 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jul 11 20:34:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0847c82

media-sound/elisa: Remove 0.1.1

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-sound/elisa/Manifest   |  1 -
 media-sound/elisa/elisa-0.1.1.ebuild | 61 
 2 files changed, 62 deletions(-)

diff --git a/media-sound/elisa/Manifest b/media-sound/elisa/Manifest
index 28ebeec0621..0c991aba4b3 100644
--- a/media-sound/elisa/Manifest
+++ b/media-sound/elisa/Manifest
@@ -1,2 +1 @@
-DIST elisa-0.1.1.tar.xz 1461960 BLAKE2B 
da194b982f676b536d893bc9f419cbe6f47e73426abc19f454b706514e6a9150397e4bdc7917457d8cc442ab644fa9a51976c7211bad64473c6a039baa0f3c2f
 SHA512 
892e38b2d23af4c65727377c7b4fa08b10c2a2e96adea490222c6f47c44a8131dde01ed0f6e07a58a383b210303a7b9795e80c1025200343770a95aa12e0d5da
 DIST elisa-0.2.0.tar.xz 1487412 BLAKE2B 
bbd2e01330e3a18446961313b4d6a3f3a0ed1354ac1619cf6c86fcc7aa84927086258c972c36a65116036cdb84301cacb5e39ae13bec104a2d7c459edaf82343
 SHA512 
9d5d097e6f1514f2d44ece6f0a11a4a1e47b655c0225e6c02aef388b7b3bf49bd66ac2d3901553b2ff26304a433ce803ec90219a271f2ee120a30da950bb627a

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



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

2018-07-11 Thread Mikle Kolyada
commit: bc83d7e85ca536b7d8e5019b748342f0c0f26c11
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 19:46:17 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 19:46:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc83d7e8

dev-python/ws4py: arm stable wrt bug #658884

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-python/ws4py/ws4py-0.3.4-r1.ebuild 
b/dev-python/ws4py/ws4py-0.3.4-r1.ebuild
index 45d9e82c92b..03ba7ddd0c6 100644
--- a/dev-python/ws4py/ws4py-0.3.4-r1.ebuild
+++ b/dev-python/ws4py/ws4py-0.3.4-r1.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == ** ]] ; then
 else
inherit vcs-snapshot

SRC_URI="https://github.com/Lawouach/WebSocket-for-Python/archive/v${PV} -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm x86"
+   KEYWORDS="amd64 arm x86"
 fi
 
 DESCRIPTION="WebSocket client and server library for Python 2 and 3 as well as 
PyPy"



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

2018-07-11 Thread Mikle Kolyada
commit: f9bf1a2cd8d2f3a051f9e568271ed7937b7aad31
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jul 11 19:45:32 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jul 11 19:46:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9bf1a2c

dev-python/ws4py: x86 stable wrt bug #658884

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-python/ws4py/ws4py-0.3.4-r1.ebuild 
b/dev-python/ws4py/ws4py-0.3.4-r1.ebuild
index df97e39f5bf..45d9e82c92b 100644
--- a/dev-python/ws4py/ws4py-0.3.4-r1.ebuild
+++ b/dev-python/ws4py/ws4py-0.3.4-r1.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == ** ]] ; then
 else
inherit vcs-snapshot

SRC_URI="https://github.com/Lawouach/WebSocket-for-Python/archive/v${PV} -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~x86"
+   KEYWORDS="amd64 ~arm x86"
 fi
 
 DESCRIPTION="WebSocket client and server library for Python 2 and 3 as well as 
PyPy"



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

2018-07-11 Thread Andreas Sturmlechner
commit: 4d4bd4acbdd6b4bc897b90ac80d2b91a0028c214
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 19:09:31 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 19:09:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d4bd4ac

media-sound/supercollider: Add missing dependency

Closes: https://bugs.gentoo.org/660938
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 .../supercollider/supercollider-3.9.3-r1.ebuild| 114 +
 1 file changed, 114 insertions(+)

diff --git a/media-sound/supercollider/supercollider-3.9.3-r1.ebuild 
b/media-sound/supercollider/supercollider-3.9.3-r1.ebuild
new file mode 100644
index 000..af598497965
--- /dev/null
+++ b/media-sound/supercollider/supercollider-3.9.3-r1.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils readme.gentoo-r1 xdg-utils
+
+DESCRIPTION="An environment and a programming language for real time audio 
synthesis."
+HOMEPAGE="https://supercollider.github.io/";
+SRC_URI="https://github.com/supercollider/supercollider/releases/download/Version-${PV}/SuperCollider-${PV}-Source-linux.tar.bz2";
+
+LICENSE="GPL-2 gpl3? ( GPL-3 )"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE="avahi cpu_flags_x86_sse cpu_flags_x86_sse2 debug emacs +fftw gedit +gpl3 
jack qt5 server +sndfile static-libs vim"
+RESTRICT="mirror"
+
+RDEPEND="
+   media-libs/alsa-lib
+   sys-libs/readline:0=
+   x11-libs/libX11
+   x11-libs/libXt
+   avahi? ( net-dns/avahi )
+   fftw? ( sci-libs/fftw:3.0= )
+   jack? ( virtual/jack )
+   !jack? ( media-libs/portaudio )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtsql:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   )
+   server? ( !app-admin/supernova )
+   sndfile? ( media-libs/libsndfile )
+"
+DEPEND="${RDEPEND}
+   dev-libs/icu
+   virtual/pkgconfig
+   emacs? ( virtual/emacs )
+   gedit? ( app-editors/gedit )
+   qt5? (
+   dev-qt/linguist-tools:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtconcurrent:5
+   )
+   vim? ( app-editors/vim )
+"
+
+S="${WORKDIR}/SuperCollider-Source"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.8.0-no-opengl.patch
+   "${FILESDIR}"/${PN}-3.8.0-no-qtsensors.patch
+   "${FILESDIR}"/${PN}-3.8.0-no-qtpositioning.patch
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DAUDIOAPI=$(usex jack jack portaudio)
+   -DINSTALL_HELP=ON
+   -DSYSTEM_BOOST=OFF
+   -DSYSTEM_YAMLCPP=OFF
+   -DNO_AVAHI=$(usex !avahi)
+   -DFFT_GREEN=$(usex !fftw)
+   -DNO_GPL3=$(usex !gpl3)
+   -DNO_LIBSNDFILE=$(usex !sndfile)
+   -DSC_QT=$(usex qt5)
+   -DSCLANG_SERVER=$(usex server)
+   -DSUPERNOVA=$(usex server)
+   -DLIBSCSYNTH=$(usex !static-libs)
+   -DSSE=$(usex cpu_flags_x86_sse)
+   -DSSE2=$(usex cpu_flags_x86_sse2)
+   -DSC_IDE=$(usex qt5)
+   -DSC_ED=$(usex gedit)
+   -DSC_VIM=$(usex vim)
+   -DSC_EL=$(usex emacs)
+   )
+
+   use debug && mycmakeargs+=(
+   -DSC_MEMORY_DEBUGGING=ON
+   -DSN_MEMORY_DEBUGGING=ON
+   -DGC_SANITYCHECK=ON
+   )
+
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   use vim && newdoc editors/scvim/README.md README.vim
+   use emacs && newdoc editors/scel/README.md README.emacs
+   use gedit && newdoc editors/sced/README.md README.gedit
+}
+
+pkg_postinst() {
+   einfo
+   einfo "Notice: SuperCollider is not very intuitive to get up and 
running."
+   einfo "The best course of action to make sure that the installation was"
+   einfo "successful and get you started with using SuperCollider is to 
take"
+   einfo "a look through ${EROOT%/}/usr/share/doc/${PF}/README.md.bz2"
+   einfo
+
+   xdg_mimeinfo_database_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_mimeinfo_database_update
+   xdg_desktop_database_update
+}



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

2018-07-11 Thread Andreas Sturmlechner
commit: c38a655885527975026a6eefe96f0ec48de5897d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 19:10:32 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 19:10:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38a6558

media-sound/supercollider: Drop old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-sound/supercollider/Manifest |   1 -
 .../files/supercollider-3.8.0-desktop.patch|  10 --
 .../files/supercollider-3.8.0-gcc-7.patch  |  75 -
 .../files/supercollider-3.8.0-multilib.patch   |  89 
 .../supercollider/supercollider-3.8.1.ebuild   | 116 -
 .../supercollider/supercollider-3.9.3.ebuild   | 113 
 6 files changed, 404 deletions(-)

diff --git a/media-sound/supercollider/Manifest 
b/media-sound/supercollider/Manifest
index be309c01a62..07d2fabe1f8 100644
--- a/media-sound/supercollider/Manifest
+++ b/media-sound/supercollider/Manifest
@@ -1,2 +1 @@
-DIST SuperCollider-3.8.1-Source-linux.tar.bz2 8913640 BLAKE2B 
998b64b7e3530f6dc2e5d329bf387bb62aa694ec65d9a8464ae2b3bc1816f6a6fb26f351465df58170034ba35d7afc5df545a9bd614e96e6434155c70715d0ce
 SHA512 
50d9e65e8b610e86decc98ecfa5bef2088af6dc2436e5059e5aa66e8ce9b4f2dab23dd1c5231c08430d1c50b211c876e7860c0e2078d0500bf8de4fbb9554eb7
 DIST SuperCollider-3.9.3-Source-linux.tar.bz2 11060240 BLAKE2B 
5da51bece13d2a3e4ca1ff6b79637122a46c1f590aa7e4ebf52d7a663506c6f4bae4f3d618bb7f947c73828402f329be68e435a4de2ecc092c312cb2c993742c
 SHA512 
5b0c29941907d5ca45c1676e34184664c03891051bba0ee50d9e8311400824054de7b6daba6d29fd875ff38f42ee9654504ea2f0b5bf0a36ae9605e6a79a0841

diff --git a/media-sound/supercollider/files/supercollider-3.8.0-desktop.patch 
b/media-sound/supercollider/files/supercollider-3.8.0-desktop.patch
deleted file mode 100644
index 2cf759881d0..000
--- a/media-sound/supercollider/files/supercollider-3.8.0-desktop.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 a/editors/sc-ide/SuperColliderIDE.desktop  2016-08-22 11:12:21.0 
+0300
-+++ b/editors/sc-ide/SuperColliderIDE.desktop  2017-10-31 18:26:58.520164204 
+0300
-@@ -5,6 +5,5 @@ 
- Icon=sc_ide
- Type=Application
- Terminal=false
--Patterns=*.scd;*.sc;*.schelp
--Categories=Application;Multimedia;Audio;AudioVideo
-+Categories=X-Multimedia;Audio;AudioVideo
- MimeType=text/x-sc;

diff --git a/media-sound/supercollider/files/supercollider-3.8.0-gcc-7.patch 
b/media-sound/supercollider/files/supercollider-3.8.0-gcc-7.patch
deleted file mode 100644
index 5f0269845b3..000
--- a/media-sound/supercollider/files/supercollider-3.8.0-gcc-7.patch
+++ /dev/null
@@ -1,75 +0,0 @@
-From 1eaa3fb3afbbf4708695a25361527a70e2d7a02d Mon Sep 17 00:00:00 2001
-From: Brian Heim 
-Date: Tue, 4 Jul 2017 13:26:00 -0400
-Subject: [PATCH] DiskIO_UGens: include 
-
-std::bind is in  according to the C++ ISO standard, and
-gcc7.1 enforces this.

- server/plugins/DiskIO_UGens.cpp | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/server/plugins/DiskIO_UGens.cpp b/server/plugins/DiskIO_UGens.cpp
-index 47c91a139..d4bb1c51c 100644
 a/server/plugins/DiskIO_UGens.cpp
-+++ b/server/plugins/DiskIO_UGens.cpp
-@@ -28,6 +28,7 @@
- 
- #include 
- #include 
-+#include 
- #include 
- 
- #include 
--- 
-2.15.1
-
-From a891e7d5be4c4944970973cc8467485e8a4c0571 Mon Sep 17 00:00:00 2001
-From: Adrian Bunk 
-Date: Thu, 7 Sep 2017 19:38:46 -0300
-Subject: [PATCH] PyrSched.cpp: #include  to fix FTBFS
-
-Bug-Debian: https://bugs.debian.org/853671

- lang/LangPrimSource/PyrSched.cpp | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/lang/LangPrimSource/PyrSched.cpp 
b/lang/LangPrimSource/PyrSched.cpp
-index 02f0c6264..63487a58e 100644
 a/lang/LangPrimSource/PyrSched.cpp
-+++ b/lang/LangPrimSource/PyrSched.cpp
-@@ -37,6 +37,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #if defined(__APPLE__) || defined(__linux__)
- # include 
--- 
-2.15.1
-
-From c058e16ff215b0b318abb3aa9ab4d47c0eeac877 Mon Sep 17 00:00:00 2001
-From: hlolli 
-Date: Mon, 10 Jul 2017 18:32:22 +0200
-Subject: [PATCH] adding functional header in PyrSerialPrim.cpp
-

- lang/LangPrimSource/PyrSerialPrim.cpp | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/lang/LangPrimSource/PyrSerialPrim.cpp 
b/lang/LangPrimSource/PyrSerialPrim.cpp
-index 3099598fe..5e2b40372 100644
 a/lang/LangPrimSource/PyrSerialPrim.cpp
-+++ b/lang/LangPrimSource/PyrSerialPrim.cpp
-@@ -36,6 +36,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include 
- #include 
--- 
-2.15.1
-

diff --git a/media-sound/supercollider/files/supercollider-3.8.0-multilib.patch 
b/media-sound/supercollider/files/supercollider-3.8.0-multilib.patch
deleted file mode 100644
index 982e44a15a9..000
--- a/media-sound/supercollider/files/supercollider-3.8.0-multilib.patch
+++ /dev/null
@@ -1,89 +0,0 @@
-From 547a18c14dd45a22361f2ab495d14625862499e5 Mon Sep 17 00:00:00 

[gentoo-commits] repo/gentoo:master commit in: games-board/tetzle/, games-board/tetzle/files/

2018-07-11 Thread Andreas Sturmlechner
commit: 301bb3c6662e57aa9ae873118be8c2cb90b37266
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 18:28:57 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=301bb3c6

games-board/tetzle: 2.1.3 version bump

Fixes qmake with Qt 5.11.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-board/tetzle/Manifest|  1 +
 games-board/tetzle/files/tetzle-2.1.3-gentoo.patch | 11 +
 games-board/tetzle/tetzle-2.1.3.ebuild | 47 ++
 3 files changed, 59 insertions(+)

diff --git a/games-board/tetzle/Manifest b/games-board/tetzle/Manifest
index 78dc6b65590..d8aaa43b45a 100644
--- a/games-board/tetzle/Manifest
+++ b/games-board/tetzle/Manifest
@@ -1 +1,2 @@
 DIST tetzle-2.1.1-src.tar.bz2 1246920 BLAKE2B 
dab8128b70fd6650da190b27f356b1db9d763b65b9192cb19140d81b5ae6aed8eadef19d5c5e36a9d223e5a9dee81c8c90b604a822df7dce725b4c98fbe139b0
 SHA512 
80022556ccadc19f0b4357b0f629b340cb040fdff927dccd540fba5383ae4638fcca020be020c78a3809d0ca70fae7d7f19342f3e2a162f53f5e5e3b83ddf11d
+DIST tetzle-2.1.3-src.tar.bz2 1022680 BLAKE2B 
197e2a221a779734d3cd76d5600460df42014a31a032fca2f5c181d54c004f56e6beb9803c60fd53edf5b0d4a614b3d0709fd8913d561e49a938a2f6f1943001
 SHA512 
6f4541ad2f67ac8a98bd0e1683d4cb6131a85a4e9d31a9dae0a97177a721038750f4276fb3a592b97804daceb1b99f0117e14c6221a6a6ce74b852b00ed5c607

diff --git a/games-board/tetzle/files/tetzle-2.1.3-gentoo.patch 
b/games-board/tetzle/files/tetzle-2.1.3-gentoo.patch
new file mode 100644
index 000..f7d76c1276b
--- /dev/null
+++ b/games-board/tetzle/files/tetzle-2.1.3-gentoo.patch
@@ -0,0 +1,11 @@
+--- a/tetzle.pro   2018-05-29 13:20:06.0 +0200
 b/tetzle.pro   2018-07-11 20:24:01.076668458 +0200
+@@ -104,7 +104,7 @@
+   RC_FILE = icons/icon.rc
+ } else:unix {
+   isEmpty(PREFIX) {
+-  PREFIX = /usr/local
++  PREFIX = /usr
+   }
+   isEmpty(BINDIR) {
+   BINDIR = bin

diff --git a/games-board/tetzle/tetzle-2.1.3.ebuild 
b/games-board/tetzle/tetzle-2.1.3.ebuild
new file mode 100644
index 000..bc3518d35a8
--- /dev/null
+++ b/games-board/tetzle/tetzle-2.1.3.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils qmake-utils xdg-utils
+
+DESCRIPTION="A jigsaw puzzle game that uses tetrominoes for the pieces"
+HOMEPAGE="https://gottcode.org/tetzle/";
+SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+"
+
+PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+
+src_configure() {
+   eqmake5
+}
+
+src_install(){
+   emake DESTDIR="${D}" INSTALL_ROOT="${ED}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-board/peg-e/files/, games-board/peg-e/

2018-07-11 Thread Andreas Sturmlechner
commit: 4d5febfd4e98d073d556ae4dc9162324f46b31e0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 18:18:24 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d5febfd

games-board/peg-e: 1.2.5 version bump

Fixes qmake with Qt 5.11.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-board/peg-e/Manifest   |  1 +
 games-board/peg-e/files/peg-e-1.2.5-gentoo.patch | 11 ++
 games-board/peg-e/peg-e-1.2.5.ebuild | 43 
 3 files changed, 55 insertions(+)

diff --git a/games-board/peg-e/Manifest b/games-board/peg-e/Manifest
index c3c9346c117..2b60637483d 100644
--- a/games-board/peg-e/Manifest
+++ b/games-board/peg-e/Manifest
@@ -1 +1,2 @@
 DIST peg-e-1.2.3-src.tar.bz2 466872 BLAKE2B 
bcff7b31bc2281b24b6c54466aa14e6d200b14f9204437a66a84d180607e9e108be893e4da7dd722d17c1ea7490bac34fae08ddf2dcd89f696439d026e831e96
 SHA512 
775bab9512ec33ef31a1fb549af365ec3ae0e8d9533c2e05f438d3affa68e10786e043925bcdec67ebdb027559773582687dbdc625d3dca307c3aadde01686dd
+DIST peg-e-1.2.5-src.tar.bz2 598322 BLAKE2B 
f717d3e378fe69e087631abd8f0cbe3cc3bf2479ab86a608c256100778bc94baa40752463a4cb511c4ffd431ce3818803a1dc289be4bd7d3aad595cd76d1
 SHA512 
cfd15e2c8cba678d64c9289ab2aa3803af48aebb3e4e545439c247d622dd914dac0735a0fd786cdba1678b448c22a9e40f48a9a1db6391fa6532e3d918c0ca10

diff --git a/games-board/peg-e/files/peg-e-1.2.5-gentoo.patch 
b/games-board/peg-e/files/peg-e-1.2.5-gentoo.patch
new file mode 100644
index 000..e6430001cf3
--- /dev/null
+++ b/games-board/peg-e/files/peg-e-1.2.5-gentoo.patch
@@ -0,0 +1,11 @@
+--- a/peg-e.pro2018-05-29 13:01:32.0 +0200
 b/peg-e.pro2018-07-11 20:15:46.151082792 +0200
+@@ -75,7 +75,7 @@
+   RESOURCES = icons/icon.qrc
+ 
+   isEmpty(PREFIX) {
+-  PREFIX = /usr/local
++  PREFIX = /usr
+   }
+   isEmpty(BINDIR) {
+   BINDIR = bin

diff --git a/games-board/peg-e/peg-e-1.2.5.ebuild 
b/games-board/peg-e/peg-e-1.2.5.ebuild
new file mode 100644
index 000..e53cb97a930
--- /dev/null
+++ b/games-board/peg-e/peg-e-1.2.5.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit desktop gnome2-utils qmake-utils
+
+DESCRIPTION="A peg solitaire game"
+HOMEPAGE="https://gottcode.org/peg-e/";
+SRC_URI="https://gottcode.org/peg-e/${P}-src.tar.bz2";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+"
+
+PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+
+src_configure() {
+   eqmake5
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/hexalate/

2018-07-11 Thread Andreas Sturmlechner
commit: bde5e2d89eb7fa9cd3d2bb6d3246cbd5e90e856d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 17:42:41 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bde5e2d8

games-puzzle/hexalate: Drop old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-puzzle/hexalate/Manifest  |  1 -
 games-puzzle/hexalate/hexalate-1.1.0.ebuild | 40 -
 2 files changed, 41 deletions(-)

diff --git a/games-puzzle/hexalate/Manifest b/games-puzzle/hexalate/Manifest
index 22b7fd716ac..6749596 100644
--- a/games-puzzle/hexalate/Manifest
+++ b/games-puzzle/hexalate/Manifest
@@ -1,2 +1 @@
-DIST hexalate-1.1.0-src.tar.bz2 662438 BLAKE2B 
6902b27db72224e684ff4e98fcc0b8810ab5984bf85c894601035592a478716e9959860af593e977d349ab1f9514f1b7ed4851e7c0c06addbb05c3805344f31d
 SHA512 
2f8775c9cb85ff78fb84109f78079013fa172a6b37b309e1cac033be4eb1c248a005a2e899eb785fbe1f89fd87a2035dae3e7016a26af6f3e82a7174dc010a64
 DIST hexalate-1.1.3-src.tar.bz2 798580 BLAKE2B 
685a5fb106b9e4e33d63651059bc63b155c4b1afc1426506f8535b93c54bda1cbf8705244790fe130fe92e82bb6b7d9710c3aa8f245f0d578ddf09fa1e51551d
 SHA512 
037dec9bb7b9dbc3cf3659e765c6e333dbbd0a94426e0b79c20695cf402cffb141c28c9ece4405281617dace7510b982180475c129648a871036be226e868bd6

diff --git a/games-puzzle/hexalate/hexalate-1.1.0.ebuild 
b/games-puzzle/hexalate/hexalate-1.1.0.ebuild
deleted file mode 100644
index 60757fbc481..000
--- a/games-puzzle/hexalate/hexalate-1.1.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils qmake-utils
-
-DESCRIPTION="A color matching game"
-HOMEPAGE="https://gottcode.org/hexalate/";
-SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-"
-DEPEND="${RDEPEND}
-   dev-qt/linguist-tools:5
-"
-
-src_configure() {
-   eqmake5 PREFIX="/usr"
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: games-board/peg-e/

2018-07-11 Thread Andreas Sturmlechner
commit: 9316aa80b2ca1d392e109d7b66b1ca08a40816a5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 18:18:38 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9316aa80

games-board/peg-e: Drop old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-board/peg-e/Manifest   |  1 -
 games-board/peg-e/peg-e-1.2.3.ebuild | 47 
 2 files changed, 48 deletions(-)

diff --git a/games-board/peg-e/Manifest b/games-board/peg-e/Manifest
index 2b60637483d..3e5d21f3c5f 100644
--- a/games-board/peg-e/Manifest
+++ b/games-board/peg-e/Manifest
@@ -1,2 +1 @@
-DIST peg-e-1.2.3-src.tar.bz2 466872 BLAKE2B 
bcff7b31bc2281b24b6c54466aa14e6d200b14f9204437a66a84d180607e9e108be893e4da7dd722d17c1ea7490bac34fae08ddf2dcd89f696439d026e831e96
 SHA512 
775bab9512ec33ef31a1fb549af365ec3ae0e8d9533c2e05f438d3affa68e10786e043925bcdec67ebdb027559773582687dbdc625d3dca307c3aadde01686dd
 DIST peg-e-1.2.5-src.tar.bz2 598322 BLAKE2B 
f717d3e378fe69e087631abd8f0cbe3cc3bf2479ab86a608c256100778bc94baa40752463a4cb511c4ffd431ce3818803a1dc289be4bd7d3aad595cd76d1
 SHA512 
cfd15e2c8cba678d64c9289ab2aa3803af48aebb3e4e545439c247d622dd914dac0735a0fd786cdba1678b448c22a9e40f48a9a1db6391fa6532e3d918c0ca10

diff --git a/games-board/peg-e/peg-e-1.2.3.ebuild 
b/games-board/peg-e/peg-e-1.2.3.ebuild
deleted file mode 100644
index adc3c90c22d..000
--- a/games-board/peg-e/peg-e-1.2.3.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils gnome2-utils qmake-utils
-
-DESCRIPTION="A peg solitaire game"
-HOMEPAGE="https://gottcode.org/peg-e/";
-SRC_URI="https://gottcode.org/peg-e/${P}-src.tar.bz2";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-"
-DEPEND="${RDEPEND}
-   dev-qt/linguist-tools:5
-"
-
-src_configure() {
-   eqmake5
-}
-
-src_install() {
-   dobin ${PN}
-   doicon -s 48 icons/hicolor/48x48/apps/${PN}.png
-   domenu icons/${PN}.desktop
-   dodoc CREDITS ChangeLog
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: games-board/simsu/

2018-07-11 Thread Andreas Sturmlechner
commit: 6a958f1ee2deae01ea4db02e00f66125a1a1f211
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 17:04:34 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a958f1e

games-board/simsu: 1.3.6 version bump

Bug: https://bugs.gentoo.org/660930
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-board/simsu/Manifest   |  1 +
 games-board/simsu/simsu-1.3.6.ebuild | 45 
 2 files changed, 46 insertions(+)

diff --git a/games-board/simsu/Manifest b/games-board/simsu/Manifest
index 9fb8c18f8e0..bce77952902 100644
--- a/games-board/simsu/Manifest
+++ b/games-board/simsu/Manifest
@@ -1 +1,2 @@
 DIST simsu-1.3.4-src.tar.bz2 465505 BLAKE2B 
ef958ab943acd0e012cd2b5e794662ca70e2e5a5f5f4dc3744960af6abe5ae429a39f6d76b8ffd28f71e996a589139dd490ffd03501be47d414784a022ce6940
 SHA512 
64a8337c522614c2a87f43daf5c0c95af42c623789df3d851c3d2aae06dc6ffccaa14361458de7410c939e4b60fa930af9883de5b7b25f2cea8092075fd80605
+DIST simsu-1.3.6-src.tar.bz2 597982 BLAKE2B 
acf13fe4e3e228cecc76a16352a4df06f14cf58307008f5679b63f1209b4cf191b28544ed3b002375afdf0de8cd92ce179f3cb367f9a5201099da99a806d60c5
 SHA512 
04e60ccab8345002078b7dbd253bc2a9701f9b8edbbdd9a01ac3ddffd9a5f3ccd32399216b9e497b309b6718646db11a55717e5bd201bfd2aaa80ad9b171cb94

diff --git a/games-board/simsu/simsu-1.3.6.ebuild 
b/games-board/simsu/simsu-1.3.6.ebuild
new file mode 100644
index 000..75b793631b4
--- /dev/null
+++ b/games-board/simsu/simsu-1.3.6.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils qmake-utils
+
+DESCRIPTION="A basic sudoku game"
+HOMEPAGE="https://gottcode.org/simsu/";
+SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+"
+
+src_configure() {
+   eqmake5
+}
+
+src_install() {
+   dobin ${PN}
+   insinto /usr/share/${PN}/translations
+   doins translations/*qm
+   dodoc ChangeLog
+   doicon -s scalable icons/hicolor/scalable/apps/${PN}.svg
+   domenu icons/${PN}.desktop
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/cutemaze/

2018-07-11 Thread Andreas Sturmlechner
commit: 89bc8862e8d7d4ff968d450667ccdd6e49921159
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 17:35:29 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89bc8862

games-puzzle/cutemaze: Drop old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-puzzle/cutemaze/Manifest  |  1 -
 games-puzzle/cutemaze/cutemaze-1.2.0.ebuild | 40 -
 2 files changed, 41 deletions(-)

diff --git a/games-puzzle/cutemaze/Manifest b/games-puzzle/cutemaze/Manifest
index 197d4e94bf6..baff05ae9b9 100644
--- a/games-puzzle/cutemaze/Manifest
+++ b/games-puzzle/cutemaze/Manifest
@@ -1,2 +1 @@
-DIST cutemaze-1.2.0-src.tar.bz2 800890 BLAKE2B 
5865810bd974c1f2938c45f09d4d9e3b060932d7f4619b422e1d11f1bf6798b5846078cdc1efd4b104adf4203d9e301aca11f60ccbe3ba469f0c60c7a344d7cd
 SHA512 
1628f0be74730260fc31898bcc42bd55515046e9ac6a22bb90cdfa1d728f829920bbe6e2360f3daa418ab789efe36891c1c95e399d636ecc4411969bb09f0a89
 DIST cutemaze-1.2.3-src.tar.bz2 938593 BLAKE2B 
004a793ce12cae345f00eb5a018d69d13b2c99d24424938da5a00420fe3c25403ea02fb04603cb662c87c170cc6d8b6daf36228e2ac002c3e4692ee01caafcf3
 SHA512 
d864cc8e61047948272e9b910c7b90d393ac974ce1ca63475c7d308cfc3c96d771edd87f3a5a93803a777dcddf6049feacc2f373d21529187a83de03aa5f08ea

diff --git a/games-puzzle/cutemaze/cutemaze-1.2.0.ebuild 
b/games-puzzle/cutemaze/cutemaze-1.2.0.ebuild
deleted file mode 100644
index 668129d73ba..000
--- a/games-puzzle/cutemaze/cutemaze-1.2.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2-utils qmake-utils
-
-DESCRIPTION="A simple, top-down game in which mazes are randomly generated"
-HOMEPAGE="https://gottcode.org/cutemaze/";
-SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtsvg:5
-   dev-qt/qtwidgets:5
-"
-DEPEND="${RDEPEND}
-   dev-qt/linguist-tools:5
-"
-
-src_configure() {
-   eqmake5 PREFIX="/usr"
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/connectagram/files/, games-puzzle/connectagram/

2018-07-11 Thread Andreas Sturmlechner
commit: dae92a95c2e34cc8a15f5fdd103e64ddf2fa187f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 17:28:12 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae92a95

games-puzzle/connectagram: Drop old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-puzzle/connectagram/Manifest |  1 -
 .../connectagram/connectagram-1.2.1-r1.ebuild  | 54 ---
 .../files/connectagram-1.2.1-gentoo.patch  | 76 --
 3 files changed, 131 deletions(-)

diff --git a/games-puzzle/connectagram/Manifest 
b/games-puzzle/connectagram/Manifest
index 31dbfd5d3af..d93542cb42f 100644
--- a/games-puzzle/connectagram/Manifest
+++ b/games-puzzle/connectagram/Manifest
@@ -1,2 +1 @@
-DIST connectagram-1.2.1-src.tar.bz2 1632426 BLAKE2B 
8b3f6a42e074dd2698dd29cf74520a1aff972cd9376fcbaf42852daf71e963ef9e9a5b2cc393b8a1b36367a2d9fc2140cb2aedbecf5efdff787d8e43ebaab267
 SHA512 
0266af5680e7f76d517f60934afc6115c1118832fef237803b1b3d8c0fb785e5c312d585b099f24f4c476f124ca9722868a159dc4d1a9a8a695e9cdfa4f9c1c6
 DIST connectagram-1.2.8-src.tar.bz2 1760028 BLAKE2B 
db29251339abaa8ecbda69afff55366a2cc94ae9515bdc3750b9d328b7f5445613ee2da4c308008fb5ad09e20435cb294f97c5e9a23124a4330004cde11bd6c5
 SHA512 
f48fe0320745919f9532a0bb25799b05272dc30b9acba20e559d1df7ce15570eb37a29a2f746af94077f56306c45e2ee32d49f27585b6e4385477aeb795f4ed8

diff --git a/games-puzzle/connectagram/connectagram-1.2.1-r1.ebuild 
b/games-puzzle/connectagram/connectagram-1.2.1-r1.ebuild
deleted file mode 100644
index 2ea5d017d25..000
--- a/games-puzzle/connectagram/connectagram-1.2.1-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2-utils qmake-utils
-
-DESCRIPTION="A word unscrambling game"
-HOMEPAGE="https://gottcode.org/connectagram/";
-SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-qt/qtcore-5.2:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   >=dev-qt/qtgui-5.2:5
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   default
-
-   eapply "${FILESDIR}"/${P}-gentoo.patch
-
-   sed -i \
-   -e "s#@GAMES_BINDIR@#/usr/bin#" \
-   -e "s#@GAMES_DATADIR@#/usr/share#" \
-   ${PN}.pro src/{locale_dialog,new_game_dialog,wordlist}.cpp || 
die
-}
-
-src_configure() {
-   eqmake5 connectagram.pro
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-   einstalldocs
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}

diff --git a/games-puzzle/connectagram/files/connectagram-1.2.1-gentoo.patch 
b/games-puzzle/connectagram/files/connectagram-1.2.1-gentoo.patch
deleted file mode 100644
index b02dfef4679..000
--- a/games-puzzle/connectagram/files/connectagram-1.2.1-gentoo.patch
+++ /dev/null
@@ -1,76 +0,0 @@
 connectagram-1.2.1.orig/connectagram.pro
-+++ connectagram-1.2.1/connectagram.pro
-@@ -74,16 +74,16 @@
-   RESOURCES += icons/icon.qrc
- 
-   isEmpty(PREFIX) {
--  PREFIX = /usr/local
-+  PREFIX = /usr
-   }
-   isEmpty(BINDIR) {
--  BINDIR = bin
-+  BINDIR = @GAMES_BINDIR@
-   }
- 
--  target.path = $$PREFIX/$$BINDIR/
-+  target.path = $$BINDIR/
- 
-   data.files = data
--  data.path = $$PREFIX/share/connectagram/
-+  data.path = @GAMES_DATADIR@/connectagram/
- 
-   pixmap.files = icons/connectagram.xpm
-   pixmap.path = $$PREFIX/share/pixmaps/
-@@ -98,7 +98,7 @@
-   appdata.path = $$PREFIX/share/appdata/
- 
-   qm.files = translations/*.qm
--  qm.path = $$PREFIX/share/connectagram/translations
-+  qm.path = @GAMES_DATADIR@/connectagram/translations
- 
-   man.files = doc/connectagram.6
-   man.path = $$PREFIX/share/man/man6
 connectagram-1.2.1.orig/src/locale_dialog.cpp
-+++ connectagram-1.2.1/src/locale_dialog.cpp
-@@ -88,6 +88,7 @@
-   paths.append(appdir);
-   paths.append(appdir + "/../share/" + 
QCoreApplication::applicationName().toLower());
-   paths.append(appdir + "/../Resources");
-+  paths.append("@GAMES_DATADIR@/connectagram");
-   }
-   for (const QString& path : paths) {
-   if (QFile::exists(path + "/translations/")) {
 connectagram-1.2.1.orig/src/new_game_dialog.cpp
-+++ connectagram-1.2.1/src/new_game_dialog.cpp
-@@ -48,7 +48,7 @@
-   m_wordlist = new WordList(this);
-   m_wordlist->setLanguage(WordList::defaultLanguage());
-   m_languages_box = new QComboBox(this);
--  QStringList languages = QDir("connectagram:").entryList(QDir::Dirs | 
QDir::NoDot

[gentoo-commits] repo/gentoo:master commit in: games-puzzle/tanglet/, games-puzzle/tanglet/files/

2018-07-11 Thread Andreas Sturmlechner
commit: 17428b7a5645ea4be20700ad8354709444e12dc7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 18:09:06 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17428b7a

games-puzzle/tanglet: Drop old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-puzzle/tanglet/Manifest  |  1 -
 .../tanglet/files/tanglet-1.3.1-datadir.patch  | 22 ---
 games-puzzle/tanglet/tanglet-1.3.1-r1.ebuild   | 73 --
 3 files changed, 96 deletions(-)

diff --git a/games-puzzle/tanglet/Manifest b/games-puzzle/tanglet/Manifest
index 15f18c90c8e..2165e2c33a8 100644
--- a/games-puzzle/tanglet/Manifest
+++ b/games-puzzle/tanglet/Manifest
@@ -1,2 +1 @@
-DIST tanglet-1.3.1-src.tar.bz2 8461603 BLAKE2B 
86542f6248b58dc7f72be8264ded94376d746827865b3633640a24055452a4c4d677bf3f6aab8eb6736ce1cf92b8a8b6963637418118861dad296bb4ccac5b2a
 SHA512 
b939ca45f26baf8e7e32da8775e673707472e5cd07d344642eeb15986ff99319e0ab1bacf78e2ea49f004ec67a6d081a91c939cf7c75228a195654d429235625
 DIST tanglet-1.5.2-src.tar.bz2 8646616 BLAKE2B 
0a38690069550e27a302f28e7db3753eaf67af7add730d8069ec4df001a431843e204603475146d56049cdf40c0be20d8ef83ea9f47b27cf82cc232e4fecef35
 SHA512 
a97b9fe3c9c80a843c4696766d15edcab48369bd905e893c2975bfb9faf91d4a58a3c440d242be91f5838aacdf1526022b5ce8c463adfd8b0bb62e008be460ee

diff --git a/games-puzzle/tanglet/files/tanglet-1.3.1-datadir.patch 
b/games-puzzle/tanglet/files/tanglet-1.3.1-datadir.patch
deleted file mode 100644
index 18b56ca6c1a..000
--- a/games-puzzle/tanglet/files/tanglet-1.3.1-datadir.patch
+++ /dev/null
@@ -1,22 +0,0 @@
 a/src/locale_dialog.cpp.old
-+++ b/src/locale_dialog.cpp
-@@ -85,7 +85,7 @@
-   if (paths.isEmpty()) {
-   QString appdir = QCoreApplication::applicationDirPath();
-   paths.append(appdir);
--  paths.append(appdir + "/../share/" + 
QCoreApplication::applicationName().toLower());
-+  paths.append("@GENTOO_DATADIR@");
-   paths.append(appdir + "/../Resources");
-   }
-   foreach (const QString& path, paths) {
 a/src/main.cpp.old
-+++ b/src/main.cpp
-@@ -46,7 +46,7 @@
-   QString path = app.applicationDirPath();
-   QStringList paths;
-   paths.append(path + "/data/");
--  paths.append(path + "/../share/tanglet/data/");
-+  paths.append("@GENTOO_DATADIR@/data/");
-   paths.append(path + "/../Resources/data/");
-   QDir::setSearchPaths("tanglet", paths);
- 

diff --git a/games-puzzle/tanglet/tanglet-1.3.1-r1.ebuild 
b/games-puzzle/tanglet/tanglet-1.3.1-r1.ebuild
deleted file mode 100644
index f599addb09f..000
--- a/games-puzzle/tanglet/tanglet-1.3.1-r1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-LANGS="cs de es en fr he hu it nl ro tr uk"
-LANGSLONG="es_CL"
-
-inherit desktop gnome2-utils qmake-utils
-
-DESCRIPTION="A single player word finding game based on Boggle"
-HOMEPAGE="https://gottcode.org/tanglet/";
-SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   sys-libs/zlib
-   dev-qt/qtcore:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtgui:5
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   default
-   eapply "${FILESDIR}"/${P}-datadir.patch
-   sed -i \
-   -e "s:@GENTOO_DATADIR@:/usr/share/${PN}:" \
-   src/locale_dialog.cpp \
-   src/main.cpp || die
-}
-
-src_configure() {
-   eqmake5 tanglet.pro
-}
-
-src_install() {
-   dobin ${PN}
-   insinto /usr/share/${PN}
-   doins -r data
-
-   # Translations
-   insinto /usr/share/${PN}/translations/
-   for lang in ${LINGUAS};do
-   for x in ${LANGS};do
-   if [[ ${lang} == ${x} ]];then
-   doins translations/${PN}_${x}.qm
-   fi
-   done
-   done
-
-   insinto /usr/share/icons
-   doins -r icons/hicolor
-
-   einstalldocs
-   doicon icons/${PN}.xpm
-   domenu icons/${PN}.desktop
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/gottet/

2018-07-11 Thread Andreas Sturmlechner
commit: 171e1a73caed05bed8a9e89718e797202cf3e52e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 17:38:59 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=171e1a73

games-puzzle/gottet: 1.1.6 version bump

Fixes qmake with Qt 5.11.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-puzzle/gottet/Manifest|  1 +
 games-puzzle/gottet/gottet-1.1.6.ebuild | 40 +
 2 files changed, 41 insertions(+)

diff --git a/games-puzzle/gottet/Manifest b/games-puzzle/gottet/Manifest
index 6eb210b9068..657cbff0ca9 100644
--- a/games-puzzle/gottet/Manifest
+++ b/games-puzzle/gottet/Manifest
@@ -1 +1,2 @@
 DIST gottet-1.1.3-src.tar.bz2 395302 BLAKE2B 
0e7193b09a8c42fc27d3c867b728f84d304109484b31a57c5175f936f6541bec0ef02c64558bd0754462fcf53e2d734e89ac2c3ebfa42719a9630ee82da3f575
 SHA512 
9fc468ca16a37eee29d2c172e8e98501c85dc20bee4e9daac2704a0eedb691d8df24905f2696a9331628bf9c91692da0fbbf86e3f80b6d65d4100aed2e4007a6
+DIST gottet-1.1.6-src.tar.bz2 527181 BLAKE2B 
1cd090c81c6b4c629b3cf08c8c96a73b3aed18a86a70a1d837d866d0354e8adecfd438cdfc93a821991f9ab919263f2db7e542e13f2503abe16d4b311ea03c95
 SHA512 
6e004d96ccd11169c19ce5234691db35af34ff050139ae7fee3949f0a36170a1ec906f83ba2a1f2f15fc3538adb08da8c8b744fbfb3202dfc59ebfeea7136f0d

diff --git a/games-puzzle/gottet/gottet-1.1.6.ebuild 
b/games-puzzle/gottet/gottet-1.1.6.ebuild
new file mode 100644
index 000..0d95a54b6a9
--- /dev/null
+++ b/games-puzzle/gottet/gottet-1.1.6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils qmake-utils
+
+DESCRIPTION="A tetris clone based on Qt5"
+HOMEPAGE="https://gottcode.org/gottet/";
+SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+"
+
+src_configure() {
+   eqmake5 PREFIX="/usr"
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/tanglet/files/, games-puzzle/tanglet/

2018-07-11 Thread Andreas Sturmlechner
commit: 95dd4ebdb5cd696238e52c5d6bd1fcac9bbe880d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 18:08:52 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95dd4ebd

games-puzzle/tanglet: 1.5.2 version bump

Fixes qmake with Qt 5.11.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-puzzle/tanglet/Manifest  |  1 +
 .../tanglet/files/tanglet-1.5.2-gentoo.patch   | 33 +++
 games-puzzle/tanglet/tanglet-1.5.2.ebuild  | 48 ++
 3 files changed, 82 insertions(+)

diff --git a/games-puzzle/tanglet/Manifest b/games-puzzle/tanglet/Manifest
index b06a780476a..15f18c90c8e 100644
--- a/games-puzzle/tanglet/Manifest
+++ b/games-puzzle/tanglet/Manifest
@@ -1 +1,2 @@
 DIST tanglet-1.3.1-src.tar.bz2 8461603 BLAKE2B 
86542f6248b58dc7f72be8264ded94376d746827865b3633640a24055452a4c4d677bf3f6aab8eb6736ce1cf92b8a8b6963637418118861dad296bb4ccac5b2a
 SHA512 
b939ca45f26baf8e7e32da8775e673707472e5cd07d344642eeb15986ff99319e0ab1bacf78e2ea49f004ec67a6d081a91c939cf7c75228a195654d429235625
+DIST tanglet-1.5.2-src.tar.bz2 8646616 BLAKE2B 
0a38690069550e27a302f28e7db3753eaf67af7add730d8069ec4df001a431843e204603475146d56049cdf40c0be20d8ef83ea9f47b27cf82cc232e4fecef35
 SHA512 
a97b9fe3c9c80a843c4696766d15edcab48369bd905e893c2975bfb9faf91d4a58a3c440d242be91f5838aacdf1526022b5ce8c463adfd8b0bb62e008be460ee

diff --git a/games-puzzle/tanglet/files/tanglet-1.5.2-gentoo.patch 
b/games-puzzle/tanglet/files/tanglet-1.5.2-gentoo.patch
new file mode 100644
index 000..8409f2cc48c
--- /dev/null
+++ b/games-puzzle/tanglet/files/tanglet-1.5.2-gentoo.patch
@@ -0,0 +1,33 @@
+--- a/src/src.pro  2018-05-29 13:11:55.0 +0200
 b/src/src.pro  2018-07-11 20:02:51.415773874 +0200
+@@ -99,7 +99,7 @@
+   RESOURCES += ../icons/icon.qrc
+ 
+   isEmpty(PREFIX) {
+-  PREFIX = /usr/local
++  PREFIX = /usr
+   }
+   isEmpty(BINDIR) {
+   BINDIR = bin
+--- a/src/locale_dialog.cpp
 b/src/locale_dialog.cpp
+@@ -85,7 +85,7 @@
+   if (paths.isEmpty()) {
+   QString appdir = QCoreApplication::applicationDirPath();
+   paths.append(appdir);
+-  paths.append(appdir + "/../share/" + 
QCoreApplication::applicationName().toLower());
++  paths.append("/usr/share");
+   paths.append(appdir + "/../Resources");
+   }
+   foreach (const QString& path, paths) {
+--- a/src/main.cpp
 b/src/main.cpp
+@@ -46,7 +46,7 @@
+   QString path = app.applicationDirPath();
+   QStringList paths;
+   paths.append(path + "/data/");
+-  paths.append(path + "/../share/tanglet/data/");
++  paths.append("/usr/share/data/");
+   paths.append(path + "/../Resources/data/");
+   QDir::setSearchPaths("tanglet", paths);
+ 

diff --git a/games-puzzle/tanglet/tanglet-1.5.2.ebuild 
b/games-puzzle/tanglet/tanglet-1.5.2.ebuild
new file mode 100644
index 000..2595d233626
--- /dev/null
+++ b/games-puzzle/tanglet/tanglet-1.5.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit desktop gnome2-utils qmake-utils xdg-utils
+
+DESCRIPTION="A single player word finding game based on Boggle"
+HOMEPAGE="https://gottcode.org/tanglet/";
+SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   sys-libs/zlib:=
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+"
+
+PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+
+src_configure() {
+   eqmake5 tanglet.pro
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-board/tetzle/

2018-07-11 Thread Andreas Sturmlechner
commit: 1d7ffb7d77d0cd7900d1e23383eac865935afc16
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 18:29:16 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d7ffb7d

games-board/tetzle: Drop old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-board/tetzle/Manifest|  1 -
 games-board/tetzle/tetzle-2.1.1.ebuild | 42 --
 2 files changed, 43 deletions(-)

diff --git a/games-board/tetzle/Manifest b/games-board/tetzle/Manifest
index d8aaa43b45a..4a67b057918 100644
--- a/games-board/tetzle/Manifest
+++ b/games-board/tetzle/Manifest
@@ -1,2 +1 @@
-DIST tetzle-2.1.1-src.tar.bz2 1246920 BLAKE2B 
dab8128b70fd6650da190b27f356b1db9d763b65b9192cb19140d81b5ae6aed8eadef19d5c5e36a9d223e5a9dee81c8c90b604a822df7dce725b4c98fbe139b0
 SHA512 
80022556ccadc19f0b4357b0f629b340cb040fdff927dccd540fba5383ae4638fcca020be020c78a3809d0ca70fae7d7f19342f3e2a162f53f5e5e3b83ddf11d
 DIST tetzle-2.1.3-src.tar.bz2 1022680 BLAKE2B 
197e2a221a779734d3cd76d5600460df42014a31a032fca2f5c181d54c004f56e6beb9803c60fd53edf5b0d4a614b3d0709fd8913d561e49a938a2f6f1943001
 SHA512 
6f4541ad2f67ac8a98bd0e1683d4cb6131a85a4e9d31a9dae0a97177a721038750f4276fb3a592b97804daceb1b99f0117e14c6221a6a6ce74b852b00ed5c607

diff --git a/games-board/tetzle/tetzle-2.1.1.ebuild 
b/games-board/tetzle/tetzle-2.1.1.ebuild
deleted file mode 100644
index de1e76ffa68..000
--- a/games-board/tetzle/tetzle-2.1.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils qmake-utils
-
-DESCRIPTION="A jigsaw puzzle game that uses tetrominoes for the pieces"
-HOMEPAGE="https://gottcode.org/tetzle/";
-SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-"
-DEPEND="${RDEPEND}
-   dev-qt/linguist-tools:5
-"
-
-DOCS=( ChangeLog CREDITS )
-
-src_configure() {
-   eqmake5
-}
-
-src_install(){
-   emake DESTDIR="${D}" INSTALL_ROOT="${ED}" install
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/cutemaze/

2018-07-11 Thread Andreas Sturmlechner
commit: 9b129451619262342f9e5591f2b7a5ddd933db18
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 17:35:14 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b129451

games-puzzle/cutemaze: 1.2.3 version bump

Fixes qmake with Qt 5.11.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-puzzle/cutemaze/Manifest  |  1 +
 games-puzzle/cutemaze/cutemaze-1.2.3.ebuild | 41 +
 2 files changed, 42 insertions(+)

diff --git a/games-puzzle/cutemaze/Manifest b/games-puzzle/cutemaze/Manifest
index f29bd965d2f..197d4e94bf6 100644
--- a/games-puzzle/cutemaze/Manifest
+++ b/games-puzzle/cutemaze/Manifest
@@ -1 +1,2 @@
 DIST cutemaze-1.2.0-src.tar.bz2 800890 BLAKE2B 
5865810bd974c1f2938c45f09d4d9e3b060932d7f4619b422e1d11f1bf6798b5846078cdc1efd4b104adf4203d9e301aca11f60ccbe3ba469f0c60c7a344d7cd
 SHA512 
1628f0be74730260fc31898bcc42bd55515046e9ac6a22bb90cdfa1d728f829920bbe6e2360f3daa418ab789efe36891c1c95e399d636ecc4411969bb09f0a89
+DIST cutemaze-1.2.3-src.tar.bz2 938593 BLAKE2B 
004a793ce12cae345f00eb5a018d69d13b2c99d24424938da5a00420fe3c25403ea02fb04603cb662c87c170cc6d8b6daf36228e2ac002c3e4692ee01caafcf3
 SHA512 
d864cc8e61047948272e9b910c7b90d393ac974ce1ca63475c7d308cfc3c96d771edd87f3a5a93803a777dcddf6049feacc2f373d21529187a83de03aa5f08ea

diff --git a/games-puzzle/cutemaze/cutemaze-1.2.3.ebuild 
b/games-puzzle/cutemaze/cutemaze-1.2.3.ebuild
new file mode 100644
index 000..0f3981c5b11
--- /dev/null
+++ b/games-puzzle/cutemaze/cutemaze-1.2.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils qmake-utils
+
+DESCRIPTION="A simple, top-down game in which mazes are randomly generated"
+HOMEPAGE="https://gottcode.org/cutemaze/";
+SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+"
+
+src_configure() {
+   eqmake5 PREFIX="/usr"
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/hexalate/

2018-07-11 Thread Andreas Sturmlechner
commit: 5eb85d2b61f4d733f846b8aa3a2c78a25ac77a31
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 17:41:48 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb85d2b

games-puzzle/hexalate: 1.1.3 version bump

Fixes qmake with Qt 5.11.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-puzzle/hexalate/Manifest  |  1 +
 games-puzzle/hexalate/hexalate-1.1.3.ebuild | 40 +
 2 files changed, 41 insertions(+)

diff --git a/games-puzzle/hexalate/Manifest b/games-puzzle/hexalate/Manifest
index 3350597ef6e..22b7fd716ac 100644
--- a/games-puzzle/hexalate/Manifest
+++ b/games-puzzle/hexalate/Manifest
@@ -1 +1,2 @@
 DIST hexalate-1.1.0-src.tar.bz2 662438 BLAKE2B 
6902b27db72224e684ff4e98fcc0b8810ab5984bf85c894601035592a478716e9959860af593e977d349ab1f9514f1b7ed4851e7c0c06addbb05c3805344f31d
 SHA512 
2f8775c9cb85ff78fb84109f78079013fa172a6b37b309e1cac033be4eb1c248a005a2e899eb785fbe1f89fd87a2035dae3e7016a26af6f3e82a7174dc010a64
+DIST hexalate-1.1.3-src.tar.bz2 798580 BLAKE2B 
685a5fb106b9e4e33d63651059bc63b155c4b1afc1426506f8535b93c54bda1cbf8705244790fe130fe92e82bb6b7d9710c3aa8f245f0d578ddf09fa1e51551d
 SHA512 
037dec9bb7b9dbc3cf3659e765c6e333dbbd0a94426e0b79c20695cf402cffb141c28c9ece4405281617dace7510b982180475c129648a871036be226e868bd6

diff --git a/games-puzzle/hexalate/hexalate-1.1.3.ebuild 
b/games-puzzle/hexalate/hexalate-1.1.3.ebuild
new file mode 100644
index 000..23dec27a076
--- /dev/null
+++ b/games-puzzle/hexalate/hexalate-1.1.3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils qmake-utils
+
+DESCRIPTION="A color matching game"
+HOMEPAGE="https://gottcode.org/hexalate/";
+SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+"
+
+src_configure() {
+   eqmake5 PREFIX="/usr"
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/gottet/

2018-07-11 Thread Andreas Sturmlechner
commit: 83ffafc1b9153251800d37a31cb604b8eeb7ebed
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 17:39:51 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83ffafc1

games-puzzle/gottet: Drop old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-puzzle/gottet/Manifest|  1 -
 games-puzzle/gottet/gottet-1.1.3.ebuild | 40 -
 2 files changed, 41 deletions(-)

diff --git a/games-puzzle/gottet/Manifest b/games-puzzle/gottet/Manifest
index 657cbff0ca9..ff7229f43a3 100644
--- a/games-puzzle/gottet/Manifest
+++ b/games-puzzle/gottet/Manifest
@@ -1,2 +1 @@
-DIST gottet-1.1.3-src.tar.bz2 395302 BLAKE2B 
0e7193b09a8c42fc27d3c867b728f84d304109484b31a57c5175f936f6541bec0ef02c64558bd0754462fcf53e2d734e89ac2c3ebfa42719a9630ee82da3f575
 SHA512 
9fc468ca16a37eee29d2c172e8e98501c85dc20bee4e9daac2704a0eedb691d8df24905f2696a9331628bf9c91692da0fbbf86e3f80b6d65d4100aed2e4007a6
 DIST gottet-1.1.6-src.tar.bz2 527181 BLAKE2B 
1cd090c81c6b4c629b3cf08c8c96a73b3aed18a86a70a1d837d866d0354e8adecfd438cdfc93a821991f9ab919263f2db7e542e13f2503abe16d4b311ea03c95
 SHA512 
6e004d96ccd11169c19ce5234691db35af34ff050139ae7fee3949f0a36170a1ec906f83ba2a1f2f15fc3538adb08da8c8b744fbfb3202dfc59ebfeea7136f0d

diff --git a/games-puzzle/gottet/gottet-1.1.3.ebuild 
b/games-puzzle/gottet/gottet-1.1.3.ebuild
deleted file mode 100644
index 0d7f78f4b41..000
--- a/games-puzzle/gottet/gottet-1.1.3.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils qmake-utils
-
-DESCRIPTION="A tetris clone based on Qt5"
-HOMEPAGE="https://gottcode.org/gottet/";
-SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-"
-DEPEND="${RDEPEND}
-   dev-qt/linguist-tools:5
-"
-
-src_configure() {
-   eqmake5 PREFIX="/usr"
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: games-board/simsu/

2018-07-11 Thread Andreas Sturmlechner
commit: 09a0efd726696c1eb818ce36f089463eff894795
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 17:04:56 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09a0efd7

games-board/simsu: Drop 1.3.4

Closes: https://bugs.gentoo.org/660930
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-board/simsu/Manifest   |  1 -
 games-board/simsu/simsu-1.3.4.ebuild | 45 
 2 files changed, 46 deletions(-)

diff --git a/games-board/simsu/Manifest b/games-board/simsu/Manifest
index bce77952902..b5bf182fdda 100644
--- a/games-board/simsu/Manifest
+++ b/games-board/simsu/Manifest
@@ -1,2 +1 @@
-DIST simsu-1.3.4-src.tar.bz2 465505 BLAKE2B 
ef958ab943acd0e012cd2b5e794662ca70e2e5a5f5f4dc3744960af6abe5ae429a39f6d76b8ffd28f71e996a589139dd490ffd03501be47d414784a022ce6940
 SHA512 
64a8337c522614c2a87f43daf5c0c95af42c623789df3d851c3d2aae06dc6ffccaa14361458de7410c939e4b60fa930af9883de5b7b25f2cea8092075fd80605
 DIST simsu-1.3.6-src.tar.bz2 597982 BLAKE2B 
acf13fe4e3e228cecc76a16352a4df06f14cf58307008f5679b63f1209b4cf191b28544ed3b002375afdf0de8cd92ce179f3cb367f9a5201099da99a806d60c5
 SHA512 
04e60ccab8345002078b7dbd253bc2a9701f9b8edbbdd9a01ac3ddffd9a5f3ccd32399216b9e497b309b6718646db11a55717e5bd201bfd2aaa80ad9b171cb94

diff --git a/games-board/simsu/simsu-1.3.4.ebuild 
b/games-board/simsu/simsu-1.3.4.ebuild
deleted file mode 100644
index 75b793631b4..000
--- a/games-board/simsu/simsu-1.3.4.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils qmake-utils
-
-DESCRIPTION="A basic sudoku game"
-HOMEPAGE="https://gottcode.org/simsu/";
-SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-"
-DEPEND="${RDEPEND}
-   dev-qt/linguist-tools:5
-"
-
-src_configure() {
-   eqmake5
-}
-
-src_install() {
-   dobin ${PN}
-   insinto /usr/share/${PN}/translations
-   doins translations/*qm
-   dodoc ChangeLog
-   doicon -s scalable icons/hicolor/scalable/apps/${PN}.svg
-   domenu icons/${PN}.desktop
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/connectagram/files/, games-puzzle/connectagram/

2018-07-11 Thread Andreas Sturmlechner
commit: aaa2f5d2fa070318dafdab60bbf6bd237fa14720
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 11 17:27:55 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 11 18:34:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaa2f5d2

games-puzzle/connectagram: 1.2.8 version bump

Fixes qmake with Qt 5.11.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 games-puzzle/connectagram/Manifest |  1 +
 .../connectagram/connectagram-1.2.8.ebuild | 52 +++
 .../files/connectagram-1.2.8-gentoo.patch  | 76 ++
 3 files changed, 129 insertions(+)

diff --git a/games-puzzle/connectagram/Manifest 
b/games-puzzle/connectagram/Manifest
index 1fafe423342..31dbfd5d3af 100644
--- a/games-puzzle/connectagram/Manifest
+++ b/games-puzzle/connectagram/Manifest
@@ -1 +1,2 @@
 DIST connectagram-1.2.1-src.tar.bz2 1632426 BLAKE2B 
8b3f6a42e074dd2698dd29cf74520a1aff972cd9376fcbaf42852daf71e963ef9e9a5b2cc393b8a1b36367a2d9fc2140cb2aedbecf5efdff787d8e43ebaab267
 SHA512 
0266af5680e7f76d517f60934afc6115c1118832fef237803b1b3d8c0fb785e5c312d585b099f24f4c476f124ca9722868a159dc4d1a9a8a695e9cdfa4f9c1c6
+DIST connectagram-1.2.8-src.tar.bz2 1760028 BLAKE2B 
db29251339abaa8ecbda69afff55366a2cc94ae9515bdc3750b9d328b7f5445613ee2da4c308008fb5ad09e20435cb294f97c5e9a23124a4330004cde11bd6c5
 SHA512 
f48fe0320745919f9532a0bb25799b05272dc30b9acba20e559d1df7ce15570eb37a29a2f746af94077f56306c45e2ee32d49f27585b6e4385477aeb795f4ed8

diff --git a/games-puzzle/connectagram/connectagram-1.2.8.ebuild 
b/games-puzzle/connectagram/connectagram-1.2.8.ebuild
new file mode 100644
index 000..8405ae6061d
--- /dev/null
+++ b/games-puzzle/connectagram/connectagram-1.2.8.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils qmake-utils
+
+DESCRIPTION="A word unscrambling game"
+HOMEPAGE="https://gottcode.org/connectagram/";
+SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2";
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+"
+
+PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+
+src_prepare() {
+   default
+   sed -i \
+   -e "s#@GAMES_BINDIR@#/usr/bin#" \
+   -e "s#@GAMES_DATADIR@#/usr/share#" \
+   ${PN}.pro src/{locale_dialog,new_game_dialog,wordlist}.cpp || 
die
+}
+
+src_configure() {
+   eqmake5 connectagram.pro
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+   einstalldocs
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}

diff --git a/games-puzzle/connectagram/files/connectagram-1.2.8-gentoo.patch 
b/games-puzzle/connectagram/files/connectagram-1.2.8-gentoo.patch
new file mode 100644
index 000..7bb74baeee8
--- /dev/null
+++ b/games-puzzle/connectagram/files/connectagram-1.2.8-gentoo.patch
@@ -0,0 +1,76 @@
+--- a/connectagram.pro 2018-07-11 19:19:33.058534696 +0200
 b/connectagram.pro 2018-07-11 19:20:30.536282297 +0200
+@@ -90,16 +90,16 @@
+   RESOURCES += icons/icon.qrc
+ 
+   isEmpty(PREFIX) {
+-  PREFIX = /usr/local
++  PREFIX = /usr
+   }
+   isEmpty(BINDIR) {
+-  BINDIR = bin
++  BINDIR = @GAMES_BINDIR@
+   }
+ 
+-  target.path = $$PREFIX/$$BINDIR/
++  target.path = $$BINDIR/
+ 
+   data.files = data
+-  data.path = $$PREFIX/share/connectagram/
++  data.path = @GAMES_DATADIR@/connectagram/
+ 
+   pixmap.files = icons/connectagram.xpm
+   pixmap.path = $$PREFIX/share/pixmaps/
+@@ -114,7 +114,7 @@
+   appdata.path = $$PREFIX/share/metainfo/
+ 
+   qm.files = $$replace(TRANSLATIONS, .ts, .qm)
+-  qm.path = $$PREFIX/share/connectagram/translations
++  qm.path = @GAMES_DATADIR@/connectagram/translations
+   qm.CONFIG += no_check_exist
+ 
+   man.files = doc/connectagram.6
+--- a/src/locale_dialog.cpp
 b/src/locale_dialog.cpp
+@@ -88,6 +88,7 @@
+   paths.append(appdir);
+   paths.append(appdir + "/../share/" + 
QCoreApplication::applicationName().toLower());
+   paths.append(appdir + "/../Resources");
++  paths.append("@GAMES_DATADIR@/connectagram");
+   }
+   for (const QString& path : paths) {
+   if (QFile::exists(path + "/translations/")) {
+--- a/src/new_game_dialog.cpp
 b/src/new_game_dialog.cpp
+@@ -48,7 +48,7 @@
+   m_wordlist = new WordList(this);
+   m_wordlist->setLanguage(WordList::defaultLanguage());
+   m_languages_box = new QComboBox(this);
+-  QStringList languages = QDir("connectagram:").entryList(QDir::Dirs | 
QDir::NoDotAndDotDot);
++  QStringList languages =

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

2018-07-11 Thread Anthony G. Basile
commit: c8c48722e98cc0759583fbe0a18f27f88beeda44
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jul 11 18:28:34 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jul 11 18:28:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8c48722

www-apps/wordpress: version bump to 4.9.7

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-apps/wordpress/Manifest   |  1 +
 www-apps/wordpress/wordpress-4.9.7.ebuild | 55 +++
 2 files changed, 56 insertions(+)

diff --git a/www-apps/wordpress/Manifest b/www-apps/wordpress/Manifest
index 880bbd1282a..c000fbd7160 100644
--- a/www-apps/wordpress/Manifest
+++ b/www-apps/wordpress/Manifest
@@ -1 +1,2 @@
 DIST wordpress-4.9.6.tar.gz 8740389 BLAKE2B 
827f4cf4e1c664ee04588e189bb744b10ab0abbee0434d64c2ed65cb0ec289869b26f5ef6ae067a67f308e8f3a5b139c2d905897c0ed5be40eb2166ec3939a61
 SHA512 
93b5c6373968925f4773b79990ee73508c4994dc5ef4387c8d88dc7d39ae3688d4e066887870731e0b4e1d84a1c027cdc62239b3e042c133eb32a03229d48335
+DIST wordpress-4.9.7.tar.gz 8742203 BLAKE2B 
3cb3a5379e96bffa11efcb4c51f948332179334f50ee49860618c7ec7cc485af8dd497c9566bc6dbd4a7a3c8c0f38cd333f2b90c57fef1604af946113cd96564
 SHA512 
0a9a132d48081ef253122bd207dbf859babfd021ef3db90d486c92cde03727a74c5170a9faf80d46e8899472a703cfe91b24c04c1ea21f261dbd156bd691ad12

diff --git a/www-apps/wordpress/wordpress-4.9.7.ebuild 
b/www-apps/wordpress/wordpress-4.9.7.ebuild
new file mode 100644
index 000..19231ee76d1
--- /dev/null
+++ b/www-apps/wordpress/wordpress-4.9.7.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit webapp
+
+DESCRIPTION="Wordpress PHP and MySQL based content management system (CMS)"
+HOMEPAGE="https://wordpress.org/";
+SRC_URI="https://wordpress.org/${P/_rc/-RC}.tar.gz";
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="virtual/httpd-php
+   || ( dev-lang/php[mysql] dev-lang/php[mysqli] )"
+
+S=${WORKDIR}/${PN}
+
+need_httpd_cgi
+
+IUSE="+akismet examples +themes vhosts"
+
+src_install() {
+   webapp_src_preinst
+
+   dodoc readme.html
+   rm readme.html license.txt || die
+
+   if ! use akismet ; then
+   rm -R wp-content/plugins/akismet/ || die
+   fi
+   if ! use examples ; then
+   rm wp-content/plugins/hello.php || die
+   fi
+   if ! use themes ; then
+   rm -R wp-content/themes/*/ || die
+   fi
+
+   [[ -f wp-config.php ]] || cp wp-config-sample.php wp-config.php
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+
+   webapp_serverowned "${MY_HTDOCSDIR}"/index.php
+   webapp_serverowned "${MY_HTDOCSDIR}"/wp-admin/menu.php
+   webapp_serverowned "${MY_HTDOCSDIR}"
+
+   webapp_configfile  "${MY_HTDOCSDIR}"/wp-config.php
+
+   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
+   webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt
+
+   webapp_src_install
+}



  1   2   3   >