[gentoo-commits] repo/gentoo:master commit in: app-misc/geoclue/, app-misc/geoclue/files/, profiles/

2019-06-18 Thread Sobhan Mohammadpour
commit: 9b1c4910285bbbef821496048f52c10eeef7f96c
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Wed Jun 19 05:46:28 2019 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Wed Jun 19 05:49:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b1c4910

app-misc/geoclue: 2.5.3 → 2.5.3-r1

fix bad meson args and also make vala optional

Suggested-by: Pacho Ramos  gentoo.org>
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Sobhan Mohammadpour  gentoo.org>

 .../files/geoclue-2.5.3-optional-vapi.patch| 47 ++
 ...eoclue-2.5.3.ebuild => geoclue-2.5.3-r1.ebuild} | 20 +++--
 profiles/package.mask  |  2 +-
 3 files changed, 64 insertions(+), 5 deletions(-)

diff --git a/app-misc/geoclue/files/geoclue-2.5.3-optional-vapi.patch 
b/app-misc/geoclue/files/geoclue-2.5.3-optional-vapi.patch
new file mode 100644
index 000..874488decac
--- /dev/null
+++ b/app-misc/geoclue/files/geoclue-2.5.3-optional-vapi.patch
@@ -0,0 +1,47 @@
+From 56c7ca99dcadbf3e80ff2a9baf3e174f278b6a71 Mon Sep 17 00:00:00 2001
+From: Sobhan Mohammadpour 
+Date: Wed, 19 Jun 2019 01:16:16 -0400
+Subject: [PATCH] optinal vala
+
+---
+ libgeoclue/meson.build | 5 +++--
+ meson_options.txt  | 3 +++
+ 2 files changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/libgeoclue/meson.build b/libgeoclue/meson.build
+index e228ec3..e78a3e8 100644
+--- a/libgeoclue/meson.build
 b/libgeoclue/meson.build
+@@ -58,7 +58,8 @@ libgeoclue_dep = declare_dependency(link_with: libgeoclue,
+ sources: [ libgeoclue_sources, 
libgeoclue_headers ])
+ 
+ gir = find_program('g-ir-scanner', required: false)
+-vapigen = find_program('vapigen', required: false)
++vapigen_req = get_option('vapigen')
++vapigen = find_program('vapigen-ver', required: false)
+ enable_gir = get_option('introspection')
+ pkg_requirements = ['glib-2.0', 'gio-2.0', 'gio-unix-2.0']
+ gir_sources = [ libgeoclue_sources,
+@@ -78,7 +79,7 @@ if gir.found() and enable_gir
+install: true,
+header: 'geoclue.h',
+extra_args: [ '--quiet' ])
+-  if vapigen.found()
++  if vapigen.found() and vapigen_req
+ gnome.generate_vapi('libgeoclue-' + gclue_api_version,
+ sources: geo_gir[0],
+ packages: pkg_requirements,
+diff --git a/meson_options.txt b/meson_options.txt
+index 83bc60e..8611f6c 100644
+--- a/meson_options.txt
 b/meson_options.txt
+@@ -1,3 +1,6 @@
++option('vapigen',
++   type: 'boolean', value: false,
++   description: 'Enable vala?')
+ option('libgeoclue',
+ type: 'boolean', value: true,
+ description: 'Enable convenience library')
+-- 
+2.21.0
+

diff --git a/app-misc/geoclue/geoclue-2.5.3.ebuild 
b/app-misc/geoclue/geoclue-2.5.3-r1.ebuild
similarity index 73%
rename from app-misc/geoclue/geoclue-2.5.3.ebuild
rename to app-misc/geoclue/geoclue-2.5.3-r1.ebuild
index 67b5750e57a..b4c7c307185 100644
--- a/app-misc/geoclue/geoclue-2.5.3.ebuild
+++ b/app-misc/geoclue/geoclue-2.5.3-r1.ebuild
@@ -2,8 +2,10 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
+VALA_USE_DEPEND="vapigen"
+VALA_MIN_API_VERSION="0.32"
 
-inherit gnome.org meson systemd user
+inherit gnome.org meson systemd vala user xdg
 
 DESCRIPTION="A geoinformation D-Bus service"
 HOMEPAGE="https://gitlab.freedesktop.org/geoclue/geoclue/wikis/home;
@@ -13,7 +15,7 @@ LICENSE="LGPL-2"
 SLOT="2.0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
 #todo maybe add a use flat for libgeoclue
-IUSE="+introspection gtk-doc modemmanager zeroconf"
+IUSE="+introspection gtk-doc modemmanager vala zeroconf"
 
 RDEPEND="
>=dev-libs/glib-2.44:2
@@ -32,16 +34,26 @@ DEPEND="${RDEPEND}
>=dev-util/gtk-doc-1
sys-devel/gettext
virtual/pkgconfig
+   vala? (  $(vala_depend) )
 "
 
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-optional-vapi.patch
+
+   vala_src_prepare
+   sed -i -e "s:'vapigen-ver':'vapigen-$(vala_best_api_version)':" 
libgeoclue/meson.build || die
+   xdg_src_prepare
+}
+
 src_configure() {
# debug only affects CFLAGS
local emesonargs=(
$(meson_use gtk-doc)
-   -Ddbus-service-user=geoclue \
+   $(meson_use vala vapigen)
+   -Ddbus-srv-user=geoclue \
-Denable-backend=true \
-Dlibgeoclue=true \
-   -Dsystemdsystemunitdir="$(systemd_get_systemunitdir)" \
+   -Dsystemd-system-unit-dir="$(systemd_get_systemunitdir)" \
-Ddemo-agent=false \
$(meson_use introspection) \
$(meson_use modemmanager 3g-source) \

diff --git a/profiles/package.mask b/profiles/package.mask
index dda9242c699..fb88fd296aa 100644
--- 

[gentoo-commits] repo/gentoo:master commit in: net-firewall/ipt_netflow/

2019-06-18 Thread Jeroen Roovers
commit: 360337d3df4eac17326a827f9ab5914de26dbfd9
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jun 19 05:34:35 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jun 19 05:35:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360337d3

net-firewall/ipt_netflow: Version 2.3_p20190619

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Bug: https://bugs.gentoo.org/show_bug.cgi?id=678788
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-firewall/ipt_netflow/Manifest  |   1 +
 .../ipt_netflow/ipt_netflow-2.3_p20190619.ebuild   | 103 +
 2 files changed, 104 insertions(+)

diff --git a/net-firewall/ipt_netflow/Manifest 
b/net-firewall/ipt_netflow/Manifest
index 804ced3b34f..d143b4e57bc 100644
--- a/net-firewall/ipt_netflow/Manifest
+++ b/net-firewall/ipt_netflow/Manifest
@@ -1 +1,2 @@
 DIST ipt_netflow-2.3.tar.gz 90987 BLAKE2B 
fbe46583e58e75e3cfe5cc5ad4e8b40d5040d6642f850c560c3e8aa831effa43cba8f25907d32b3b66721f4d5d5bb8579bafa82e4b8d1c9a2225a5c748d08dd9
 SHA512 
e5ba66da9cae6fb9652e5532383233d433dd30dd16634734860f7e6910e46080e562e2d72c74584a86ead31156cffd4c5c44b438f617a9e5b3e5fdc1470045fc
+DIST ipt_netflow-2.3_p20190619.tar.gz 92615 BLAKE2B 
f6fb8e33d847a050e81edd33cc11b2088e59a838924f6f371489e219d7207afefa6211ac7d55aa54d8d1579fe95d9ec5302bb533a7cf11bdb3df8e2e7a2e5633
 SHA512 
0ac101d660bc37eab05bf079321edd9578f2fd3b09627f329fab4940c8e2d554a449673d557603dc33897fdd3f8a7b054ff2ceb7cc338b86176b3630f2b50cba

diff --git a/net-firewall/ipt_netflow/ipt_netflow-2.3_p20190619.ebuild 
b/net-firewall/ipt_netflow/ipt_netflow-2.3_p20190619.ebuild
new file mode 100644
index 000..07ddf25ef1d
--- /dev/null
+++ b/net-firewall/ipt_netflow/ipt_netflow-2.3_p20190619.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit linux-info linux-mod toolchain-funcs
+
+DESCRIPTION="Netflow iptables module"
+HOMEPAGE="
+   https://sourceforge.net/projects/ipt-netflow
+   https://github.com/aabc/ipt-netflow
+"
+SRC_URI="https://github.com/aabc/ipt-netflow/archive/0e5af37bf63681ff4ee95b98466ee26fa3e4df13.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="debug natevents snmp"
+
+RDEPEND="
+   net-firewall/iptables:0=
+   snmp? ( net-analyzer/net-snmp )
+"
+DEPEND="${RDEPEND}
+   virtual/linux-sources
+   virtual/pkgconfig
+"
+
+# set S before MODULE_NAMES
+PATCHES=(
+   "${FILESDIR}/${PN}-2.0-configure.patch" # bug #455984
+)
+
+pkg_setup() {
+   BUILD_TARGETS="all"
+   MODULE_NAMES="ipt_NETFLOW(ipt_netflow:${S})"
+   IPT_LIB="/usr/$(get_libdir)/xtables"
+   local CONFIG_CHECK="~IP_NF_IPTABLES"
+   use debug && CONFIG_CHECK+=" ~DEBUG_FS"
+   use natevents && CONFIG_CHECK+=" NF_CONNTRACK_EVENTS NF_NAT_NEEDED"
+   linux-mod_pkg_setup
+}
+
+src_unpack() {
+   default
+
+   mv "${WORKDIR}"/${PN/_/-}-* "${WORKDIR}"/${P} || die
+}
+
+src_prepare() {
+   sed -i \
+   -e 's:make -C:$(MAKE) -C:g' \
+   -e 's:gcc -O2:$(CC) $(CFLAGS) $(LDFLAGS):' \
+   -e 's:gcc:$(CC) $(CFLAGS) $(LDFLAGS):' \
+   Makefile.in || die
+
+   # Fix incorrect module version in sources
+   sed -i -e "/IPT_NETFLOW_VERSION/s/2.2/${PV}/" ipt_NETFLOW.c || die
+
+   # Checking for directory is enough
+   sed -i -e 's:-s /etc/snmp/snmpd.conf:-d /etc/snmp:' configure || die
+
+   default
+}
+
+do_conf() {
+   tc-export CC
+   echo ./configure $*
+   ./configure $* ${EXTRA_ECONF} || die 'configure failed'
+}
+
+src_configure() {
+   local IPT_VERSION="$($(tc-getPKG_CONFIG) --modversion xtables)"
+   # this configure script is not based on autotools
+   # ipt-src need to be defined, see bug #455984
+   do_conf \
+   --disable-dkms \
+   --enable-aggregation \
+   --enable-direction \
+   --enable-macaddress \
+   --enable-vlan \
+   --ipt-lib="${IPT_LIB}" \
+   --ipt-src="/usr/" \
+   --ipt-ver="${IPT_VERSION}" \
+   --kdir="${KV_DIR}" \
+   --kver="${KV_FULL}" \
+   $(use debug && echo '--enable-debugfs') \
+   $(use natevents && echo '--enable-natevents') \
+   $(use snmp && echo '--enable-snmp-rules' || echo 
'--disable-snmp-agent')
+}
+
+src_compile() {
+   emake ARCH="$(tc-arch-kernel)" CC="$(tc-getCC)" all
+}
+
+src_install() {
+   linux-mod_src_install
+   exeinto "${IPT_LIB}"
+   doexe libipt_NETFLOW.so
+   use snmp && emake DESTDIR="${D}" 
SNMPTGSO="/usr/$(get_libdir)/snmp/dlmod/snmp_NETFLOW.so" sinstall
+   doheader ipt_NETFLOW.h
+   dodoc README*
+}



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

2019-06-18 Thread Hans de Graaff
commit: b05a9d4ad8684d552cc2f03cfa98f4601c5416d4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jun 19 05:22:16 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jun 19 05:22:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b05a9d4a

dev-ruby/rmagick: amd64 stable, bug 688194

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

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

diff --git a/dev-ruby/rmagick/rmagick-3.1.0.ebuild 
b/dev-ruby/rmagick/rmagick-3.1.0.ebuild
index ee7f3b104a6..6a3e016dc25 100644
--- a/dev-ruby/rmagick/rmagick-3.1.0.ebuild
+++ b/dev-ruby/rmagick/rmagick-3.1.0.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/gemhome/rmagick;
 
 LICENSE="Artistic"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 x86 ~x86-macos"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86 ~x86-macos"
 IUSE="doc"
 
 RDEPEND+=" >=media-gfx/imagemagick-6.9.0:= =media-gfx/imagemagick-6*"



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

2019-06-18 Thread Hans de Graaff
commit: 342e6ceac9136fc9cbc9db201ba464644796e09d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jun 19 05:21:20 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jun 19 05:22:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=342e6cea

dev-ruby/rmagick: avoid simplecov dependency

Fixes: https://bugs.gentoo.org/688296
Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-ruby/rmagick/rmagick-3.1.0.ebuild | 2 +-
 dev-ruby/rmagick/rmagick-3.2.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rmagick/rmagick-3.1.0.ebuild 
b/dev-ruby/rmagick/rmagick-3.1.0.ebuild
index b0861307d46..ee7f3b104a6 100644
--- a/dev-ruby/rmagick/rmagick-3.1.0.ebuild
+++ b/dev-ruby/rmagick/rmagick-3.1.0.ebuild
@@ -31,7 +31,7 @@ all_ruby_prepare() {
-e '/compile/ s:^:#:' Rakefile || die
 
# Avoid simplecov dependency
-   #sed -i -e '/simplecov/ s:^:#:' Rakefile test/test_all_basic.rb || die
+   sed -i -e '/simplecov/ s:^:#:' Rakefile test/test_all_basic.rb || die
 
# Squelch harmless warning about imagemagick installation.
sed -i -e '/prefix/ s:ImageMagick:ImageMagick-6:' 
ext/RMagick/extconf.rb || die

diff --git a/dev-ruby/rmagick/rmagick-3.2.0.ebuild 
b/dev-ruby/rmagick/rmagick-3.2.0.ebuild
index d4b04376933..f496880e396 100644
--- a/dev-ruby/rmagick/rmagick-3.2.0.ebuild
+++ b/dev-ruby/rmagick/rmagick-3.2.0.ebuild
@@ -31,7 +31,7 @@ all_ruby_prepare() {
-e '/compile/ s:^:#:' Rakefile || die
 
# Avoid simplecov dependency
-   #sed -i -e '/simplecov/ s:^:#:' Rakefile test/test_all_basic.rb || die
+   sed -i -e '/simplecov/ s:^:#:' Rakefile test/test_all_basic.rb || die
 
# Squelch harmless warning about imagemagick installation.
sed -i -e '/prefix/ s:ImageMagick:ImageMagick-6:' 
ext/RMagick/extconf.rb || die



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

2019-06-18 Thread Jeroen Roovers
commit: 12254a5643575a092b6e1d7f94164e7e50db3ca8
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jun 19 05:05:29 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jun 19 05:12:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12254a56

net-analyzer/wireshark: Stable for hppa too

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

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

diff --git a/net-analyzer/wireshark/wireshark-3.0.2.ebuild 
b/net-analyzer/wireshark/wireshark-3.0.2.ebuild
index fea66792a83..124702089cb 100644
--- a/net-analyzer/wireshark/wireshark-3.0.2.ebuild
+++ b/net-analyzer/wireshark/wireshark-3.0.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc64 x86"
 IUSE="
adns androiddump bcg729 +capinfos +captype ciscodump +dftest doc 
dpauxmon
+dumpcap +editcap kerberos libxml2 lua lz4 maxminddb +mergecap +netlink



[gentoo-commits] repo/gentoo:master commit in: app-misc/geoclue/, profiles/

2019-06-18 Thread Sobhan Mohammadpour
commit: 422e6437fcbc64531cacd2cb6866f60075e08105
Author: Sobhan Mohammadpour  gentoo  org>
AuthorDate: Wed Jun 19 05:07:07 2019 +
Commit: Sobhan Mohammadpour  gentoo  org>
CommitDate: Wed Jun 19 05:09:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422e6437

app-misc/geoclue: 2.4.13 → 2.5.3

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Sobhan Mohammadpour  gentoo.org>

 app-misc/geoclue/Manifest |  1 +
 app-misc/geoclue/geoclue-2.5.3.ebuild | 58 +++
 profiles/package.mask |  4 +++
 3 files changed, 63 insertions(+)

diff --git a/app-misc/geoclue/Manifest b/app-misc/geoclue/Manifest
index a523d2e937b..79f90b5d05a 100644
--- a/app-misc/geoclue/Manifest
+++ b/app-misc/geoclue/Manifest
@@ -1,2 +1,3 @@
 DIST geoclue-2.4.13.tar.bz2 108691 BLAKE2B 
5ffc2aca51ad0943931c526da69225e3a0d9b0c850ea688a350c47696b83775dc078e928af8cb0996741386a41ab5ec1ac129676d7e3b4c8584b3720dd370c1e
 SHA512 
ed9c295bbdc22836a548ca4d5014d109af214464d1dd2a00f1ec493a751d949930d9fa512e915c7d65b34c8706c3bf73e06dd5e170846edee9e764d144960e78
 DIST geoclue-2.4.8.tar.xz 368404 BLAKE2B 
244aaa01ebbac57839eb8e5a19f543f3940217de9ad076b55c6054ff818e3c2948d3419e7391e05ccc17a5234a76980dee0470ae806d437db95db4a9e128a678
 SHA512 
1741962b4bdce925af090961bd50f4d0d934f7b81e53968d5d8ea7957e8593c4c9a8084bbd149c454d76f2af35be036748f212c99506b475567384a43f579f3d
+DIST geoclue-2.5.3.tar.bz2 85084 BLAKE2B 
3f61c16dcb4d0de95499865d83df4bd9b393d9d2f204b70029fb753666caab0e74468ae14f37ed78475d623caae9553e0e69b62765afebc6730212428d377aff
 SHA512 
b4188f1b055f84ce0c58e497896a328d09838073b867598a0ca026c741e4464ae7ee54e53e9f02addd818152dce4a21eb5f83a3245e7ce1a93eec5671d0a9ee9

diff --git a/app-misc/geoclue/geoclue-2.5.3.ebuild 
b/app-misc/geoclue/geoclue-2.5.3.ebuild
new file mode 100644
index 000..67b5750e57a
--- /dev/null
+++ b/app-misc/geoclue/geoclue-2.5.3.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit gnome.org meson systemd user
+
+DESCRIPTION="A geoinformation D-Bus service"
+HOMEPAGE="https://gitlab.freedesktop.org/geoclue/geoclue/wikis/home;
+SRC_URI="https://gitlab.freedesktop.org/geoclue/${PN}/-/archive/${PV}/${P}.tar.bz2;
+
+LICENSE="LGPL-2"
+SLOT="2.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+#todo maybe add a use flat for libgeoclue
+IUSE="+introspection gtk-doc modemmanager zeroconf"
+
+RDEPEND="
+   >=dev-libs/glib-2.44:2
+   >=dev-libs/json-glib-0.14
+   >=net-libs/libsoup-2.42:2.4
+   sys-apps/dbus
+   introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
+   modemmanager? ( >=net-misc/modemmanager-1.6 )
+   zeroconf? ( >=net-dns/avahi-0.6.10[dbus] )
+   ! (19 Jun 2019)
+# this is new and it needs testing
+=app-misc/geoclue-2.5.3
+
 # Georgy Yakovlev  (17 Jun 2019)
 # this is now provided by dev-lang/rust{-bin}[rustfmt]
 # it's tightly integrated with rust toolchain, eselect-rust



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

2019-06-18 Thread Jeroen Roovers
commit: dda233e2eb499894dafa43681c8a672e258763e5
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jun 19 04:41:19 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jun 19 04:52:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda233e2

sys-kernel/gentoo-sources: Stable for hppa (bug #688256)

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

 sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild
index 864bb3b97e4..e45748664e3 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild
index 34c634e1ba6..3db948433f2 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild
index eb99f5770a5..7f45847916d 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild
index da6171d9128..f2549815e24 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



[gentoo-commits] repo/gentoo:master commit in: x11-wm/lumina/

2019-06-18 Thread Andrey Grozin
commit: bf961fd4232f95ee1ea57857b2297c7ec6c85b43
Author: Andrey Grozin  gentoo  org>
AuthorDate: Wed Jun 19 04:49:38 2019 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Wed Jun 19 04:49:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf961fd4

x11-wm/lumina: bump to 1.5.0

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

 x11-wm/lumina/Manifest|  1 +
 x11-wm/lumina/lumina-1.5.0.ebuild | 91 +++
 2 files changed, 92 insertions(+)

diff --git a/x11-wm/lumina/Manifest b/x11-wm/lumina/Manifest
index a7d96d939b5..5b19a03b35b 100644
--- a/x11-wm/lumina/Manifest
+++ b/x11-wm/lumina/Manifest
@@ -1,2 +1,3 @@
 DIST lumina-1.3.0_p1.tar.gz 86451718 BLAKE2B 
7834fad1541144524fc44d5e2cc1af21e82878c05f0cc2da4cf90f8f7e51614f535bab1bcb81c6d5929e14b2fa7ba7df8e66e53a9a81b55c973511f3b3e7cc17
 SHA512 
93fb195f26984a2ba6e62dbe1ea619e4ab8e936d1cf1d335db8a7e51058c9be8d3e389146259f8229fb5dc6477610dcc2e1278c4e2a348f27904a318ba095707
 DIST lumina-1.4.0_p1.tar.gz 22489599 BLAKE2B 
0c183763dae0ca046fa5d1cebc184a7ba5987113a12f72285e5dabfe25ca763683a23cb76889673ac3c2817feb2233e8b7da9fefed41040f91b0bb01d8ce03ae
 SHA512 
340079832f4f6c9c9c70f11d7743b7c7db6772897f6411a966bf2bd77124bab1fbac8f5751164fb8a08a12c4443f515aaee76b117b4f959263eeaa98dbcbe41e
+DIST lumina-1.5.0.tar.gz 20657364 BLAKE2B 
62b064e1be3ce69c078e68524e011a8ce4d61c680a4732da7992a7b72833363fceb0a0895a228ec9de7921d989253c70c518810b91c23226aded1f54b23b1aea
 SHA512 
37106d71a9ba7188c4ded0614d2d4424f732519e11288ae312dfcd9a0b5b26dd31dfa812e74a96c0e3e0fb99fae4dc00806fd7a24183746688c72d997054af7d

diff --git a/x11-wm/lumina/lumina-1.5.0.ebuild 
b/x11-wm/lumina/lumina-1.5.0.ebuild
new file mode 100644
index 000..2ef931f9991
--- /dev/null
+++ b/x11-wm/lumina/lumina-1.5.0.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PLOCALES="af ar az bg bn bs ca cs cy da de el en_AU en_GB en_ZA es et eu fa fi 
fr fr_CA fur gl he hi hr hu id is it ja ka ko lt lv mk mn ms mt nb ne nl pa pl 
pt pt_BR ro ru sa sk sl sr sv sw ta tg th tr uk ur uz vi zh_CN zh_HK zh_TW zu"
+
+inherit qmake-utils l10n xdg-utils
+DESCRIPTION="Lumina desktop environment"
+HOMEPAGE="https://lumina-desktop.org/;
+SRC_URI="https://github.com/trueos/${PN}/archive/v${PV/_/-}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="desktop-utils"
+
+COMMON_DEPEND="dev-qt/qtcore:5
+   dev-qt/qtconcurrent:5
+   dev-qt/qtmultimedia:5[widgets]
+   dev-qt/qtsvg:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   dev-qt/qtgui:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtprintsupport:5
+   x11-libs/libxcb:0
+   x11-libs/xcb-util
+   x11-libs/xcb-util-image
+   x11-libs/xcb-util-wm
+   desktop-utils? ( app-text/poppler[qt5] )"
+
+DEPEND="$COMMON_DEPEND
+   dev-qt/linguist-tools:5"
+
+RDEPEND="$COMMON_DEPEND
+   sys-fs/inotify-tools
+   x11-misc/numlockx
+   x11-wm/fluxbox
+   || ( x11-apps/xbacklight
+   sys-power/acpilight )
+   media-sound/alsa-utils
+   sys-power/acpi
+   app-admin/sysstat"
+
+S="${WORKDIR}/${P/_/-}"
+
+PATCHES=(
+   "${FILESDIR}/1.2.0-desktop-files.patch"
+)
+
+DOCS=( README.md )
+
+src_prepare(){
+   default
+
+   if use !desktop-utils ; then
+   rm -rf src-qt5/desktop-utils || die
+   sed -e "/desktop-utils/d" -i src-qt5/src-qt5.pro || die
+   fi
+
+   l10n_find_plocales_changes "${S}/src-qt5/core/${PN}-desktop/i18n" 
"${PN}-desktop_" '.ts'
+}
+
+src_configure(){
+   eqmake5 PREFIX="${EPREFIX}/usr" 
LIBPREFIX="${EPREFIX}/usr/$(get_libdir)" \
+   CONFIG+=WITH_I18N QMAKE_CFLAGS_ISYSTEM=
+}
+
+src_install(){
+   emake install INSTALL_ROOT="${D}"
+   einstalldocs
+
+   remove_locale() {
+   rm -f "${ED%/}"/usr/share/${PN}-desktop/i18n/l*_${1}.qm
+
+   }
+   l10n_for_each_disabled_locale_do remove_locale
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/gpxsee/

2019-06-18 Thread Andrey Grozin
commit: d884e0d872498a877f934ae056485ccc4afe60b7
Author: Andrey Grozin  gentoo  org>
AuthorDate: Wed Jun 19 04:46:51 2019 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Wed Jun 19 04:46:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d884e0d8

sci-geosciences/gpxsee: bump to 7.9

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

 sci-geosciences/gpxsee/Manifest  |  1 +
 sci-geosciences/gpxsee/gpxsee-7.9.ebuild | 80 
 2 files changed, 81 insertions(+)

diff --git a/sci-geosciences/gpxsee/Manifest b/sci-geosciences/gpxsee/Manifest
index 399b2aaea3d..6553921ac2f 100644
--- a/sci-geosciences/gpxsee/Manifest
+++ b/sci-geosciences/gpxsee/Manifest
@@ -2,3 +2,4 @@ DIST gpxsee-6.3.tar.gz 3861093 BLAKE2B 
bd6cd81b1f2c4fdd3b4b6c0bae72be1a48ad0f0d2
 DIST gpxsee-7.1.tar.gz 3868798 BLAKE2B 
08bc30d77508429bec94bbdb255b76b79c21bd2e251b216743f49fa45f59ded5a02e730c4766fd9f15e2357d74a66750e3e7515a9d8bdd21a1f97dee77cbec02
 SHA512 
bb7dc14a3cf7ca87a4335383d6c4c380fcf1a0009161ec988b1b5cf964cf757bbe05ae2e51d726edcb97966918afe4d872172087988321222a65e3c27c276a5d
 DIST gpxsee-7.5.tar.gz 4302319 BLAKE2B 
f31aba249b87a85b7d5e4b2e3bb6c300b682a0f0e77d82b8151ffbd621664840782a1894277249e5f858a6837cf0580bb32748a04684157999edc64295f4192d
 SHA512 
ff55267abeda8970282bbbadc9fdf0c72120aa25cf6f3ce95de77ea330087e36a0c64332ff9cd1c569bac24bed891dc265ded57587e7fb258b30e382fa31b093
 DIST gpxsee-7.8.tar.gz 4330785 BLAKE2B 
360e7bb21870256b0480653687e2323e262d84db511acecd3a45228bab87b25b6eac5ae96e670d50bb5e9f8090907c9876685df5a4badba9d12572efbb30afe7
 SHA512 
07c6a67f574abc1f916a1d25424ab4e277617ac4b698c99307a144a07d2d08634e9c3353bfd2f3fddf0b45c27adbd1ba8499c46a35608aa66a9a851118ce2af5
+DIST gpxsee-7.9.tar.gz 4347609 BLAKE2B 
176b72ada6d6302fede1ba0d043b4656afeabaa390e5c32289a0b5e57fdf5a5a880516a6960ea2d00844cdf9a88a894a36e3a82bde6f6fb3c30ddb166bc7
 SHA512 
24522506894e9ea88ab7b79b34082a1c8c563c8e0c73672ba247a5d013f0c802752665a62686259981f2b49494982d3ad0f06de83f37874e87110bee42964659

diff --git a/sci-geosciences/gpxsee/gpxsee-7.9.ebuild 
b/sci-geosciences/gpxsee/gpxsee-7.9.ebuild
new file mode 100644
index 000..6b28d5dd63a
--- /dev/null
+++ b/sci-geosciences/gpxsee/gpxsee-7.9.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="cs da de en es fi fr nb pl pt_BR ru sv tr"
+inherit qmake-utils l10n xdg-utils gnome2-utils
+
+MY_PN="GPXSee"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="A viewer and analyzer that supports gpx, tcx, kml, fit, igc and 
nmea files"
+HOMEPAGE="http://www.gpxsee.org/;
+SRC_URI="https://github.com/tumic0/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+RDEPEND="dev-qt/qtwidgets:5
+   dev-qt/qtgui:5
+   dev-qt/qtopengl:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsql:5
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+
+   l10n_find_plocales_changes lang "${PN}_" '.ts'
+
+   rm_ts() {
+   sed -e "s|lang/gpxsee_${1}.ts||" -i gpxsee.pro
+   }
+
+   l10n_for_each_disabled_locale_do rm_ts
+}
+
+src_compile() {
+   lrelease gpxsee.pro
+   eqmake5 gpxsee.pro
+   emake
+}
+
+src_install() {
+   local lang
+   dobin ${PN}
+   dodoc README.md
+   insinto /usr/share/${PN}
+   doins -r pkg/maps pkg/csv
+
+   insinto /usr/share/${PN}/translations
+   for lang in lang/*.qm; do
+   [ -f "${lang}" ] && doins "${lang}"
+   done
+
+   insinto /usr/share/applications
+   doins pkg/${PN}.desktop
+   insinto /usr/share/mime/packages
+   doins pkg/${PN}.xml
+   insinto /usr/share/pixmaps
+   doins icons/${PN}.png
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-office/texmacs/, app-office/texmacs/files/

2019-06-18 Thread Andrey Grozin
commit: d1df68a843aef2b2853ecf35269afe1486ec7182
Author: Andrey Grozin  gentoo  org>
AuthorDate: Wed Jun 19 04:43:20 2019 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Wed Jun 19 04:43:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1df68a8

app-office/texmacs: bump to 1.99.9

Thanks to Aaron W. Swenson for the ebuild
Suggested-by:  Aaron W. Swenson  gentoo.org>
Bug: https://bugs.gentoo.org/show_bug.cgi?id=436400
Closes: https://bugs.gentoo.org/show_bug.cgi?id=666470
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Andrey Grozin  gentoo.org>

 app-office/texmacs/Manifest|   1 +
 .../texmacs-1.99.9-guile-remove-deprecated.patch   | 295 +
 app-office/texmacs/texmacs-1.99.9.ebuild   |  72 +
 3 files changed, 368 insertions(+)

diff --git a/app-office/texmacs/Manifest b/app-office/texmacs/Manifest
index 74e06e2af0e..41721d8cca2 100644
--- a/app-office/texmacs/Manifest
+++ b/app-office/texmacs/Manifest
@@ -1 +1,2 @@
 DIST TeXmacs-1.99.6-src.tar.gz 25081652 BLAKE2B 
08d0a141ff1b8ab59def50c636d917f9290488031d6f7f4343be4a04af44d8994dc791eb23a2a2b71b7a853a3a90482313062fbfc045cf585afdf8f1f8d2a5f3
 SHA512 
2e262037654493075cc4a3d47b93de08c3ad2d6f10ce5fe814a8046b38d327c5dd88c1575dff7e2145f1541f9765dc50ec5abcd63146090eea98ab5db9d103ee
+DIST TeXmacs-1.99.9-src.tar.gz 30109108 BLAKE2B 
182db26c645e1445780f8e153f7283eb517ec3aa8be6ce137b6c305df33657f15c3efb57198e81f8dd9e1682b3bf1c6c0ff6f3798c54bcb74aedb8b3cef67b40
 SHA512 
96971060536007e542cd3e1789f07bcc30ceda01cbf32cabf43e3a5e61a2ba15f604e49601d891a956732d90d224353f8dac495be05677758146206b549f9d1f

diff --git 
a/app-office/texmacs/files/texmacs-1.99.9-guile-remove-deprecated.patch 
b/app-office/texmacs/files/texmacs-1.99.9-guile-remove-deprecated.patch
new file mode 100644
index 000..183c771804f
--- /dev/null
+++ b/app-office/texmacs/files/texmacs-1.99.9-guile-remove-deprecated.patch
@@ -0,0 +1,295 @@
+diff -Naruw TeXmacs-1.99.9-src.orig/CMakeLists.txt 
TeXmacs-1.99.9-src/CMakeLists.txt
+--- TeXmacs-1.99.9-src.orig/CMakeLists.txt 2019-02-01 04:33:32.0 
-0500
 TeXmacs-1.99.9-src/CMakeLists.txt  2019-06-02 17:13:47.980498170 -0400
+@@ -274,7 +274,6 @@
+ elseif(Guile_VERSION_STRING VERSION_LESS 3.0)
+   set(CONFIG_GUILE_SERIAL "D")
+   set(GUILE_D 1)
+-  set(SCM_SIZET size_t)
+ else(Guile_VERSION_STRING VERSION_LESS 1.6)
+   message(ERROR "Not Guile serial A,B,C or D???")
+ endif(Guile_VERSION_STRING VERSION_LESS 1.6)
+@@ -286,7 +285,7 @@
+ 
+ MESSAGE(STATUS "Checking the size_t of guile strings")
+ 
+-CHECK_C_SOURCE_COMPILES(  "#include 
++CHECK_CXX_SOURCE_COMPILES(  "#include 
+   #include 
+   void print_string (SCM s) {
+ int len_r;
+diff -Naruw TeXmacs-1.99.9-src.orig/src/CMakeLists.txt.orig 
TeXmacs-1.99.9-src/src/CMakeLists.txt.orig
+--- TeXmacs-1.99.9-src.orig/src/CMakeLists.txt.orig1969-12-31 
19:00:00.0 -0500
 TeXmacs-1.99.9-src/src/CMakeLists.txt.orig 2019-06-02 17:12:44.654011478 
-0400
+@@ -0,0 +1,32 @@
++
++add_library(texmacs_body STATIC ${TeXmacs_All_SRCS})
++
++add_executable (${TeXmacs_binary_name}
++  ./Texmacs/Texmacs/texmacs.cpp
++)
++
++target_link_libraries (${TeXmacs_binary_name}
++  texmacs_body
++  ${TeXmacs_Libraries}
++)
++
++if (APPLE)
++  set(MACOSX_BUNDLE_DISPLAY_NAME TeXmacs)
++  set_target_properties (${TeXmacs_binary_name}
++PROPERTIES
++MACOSX_BUNDLE TRUE
++MACOSX_BUNDLE_INFO_PLIST 
${CMAKE_CURRENT_SOURCE_DIR}/MacOSXBundleInfo.plist.in
++DEBUG_OUTPUT_NAME ${TeXmacs_binary_name}${EXE_DEBUG_EXTENSION}
++RELEASE_OUTPUT_NAME ${TeXmacs_binary_name}
++RUNTIME_OUTPUT_DIRECTORY ${TEXMACS_BINARY_DIR}
++  )
++else (APPLE)
++  set_target_properties (${TeXmacs_binary_name}
++PROPERTIES
++DEBUG_OUTPUT_NAME ${TeXmacs_binary_name}${EXE_DEBUG_EXTENSION}
++RELEASE_OUTPUT_NAME ${TeXmacs_binary_name}
++RUNTIME_OUTPUT_DIRECTORY ${TEXMACS_BINARY_DIR}
++  )
++  install (TARGETS ${TeXmacs_binary_name} DESTINATION lib/texmacs/TeXmacs/bin)
++endif (APPLE)
++
+diff -Naruw TeXmacs-1.99.9-src.orig/src/CMakeLists.txt.rej 
TeXmacs-1.99.9-src/src/CMakeLists.txt.rej
+--- TeXmacs-1.99.9-src.orig/src/CMakeLists.txt.rej 1969-12-31 
19:00:00.0 -0500
 TeXmacs-1.99.9-src/src/CMakeLists.txt.rej  2019-06-02 17:12:44.654011478 
-0400
+@@ -0,0 +1,19 @@
++--- CMakeLists.txt(revision 11761)
+ CMakeLists.txt(working copy)
++@@ -274,7 +274,6 @@
++ elseif (Guile_VERSION_STRING VERSION_LESS 3.0)
++   set (CONFIG_GUILE_SERIAL "D")
++   set (GUILE_D 1)
++-  set (SCM_SIZET size_t)
++ else (Guile_VERSION_STRING VERSION_LESS 1.6)
++   message (ERROR "Not Guile serial A,B,C or D???")
++ endif (Guile_VERSION_STRING VERSION_LESS 1.6)
++@@ -286,7 +285,7 @@
++ 
++ message (STATUS "Checking the size_t of guile strings")
++ 
++-check_c_source_compiles ("
+++check_cxx_source_compiles ("
++ #include 
++ #include 
++ void print_string (SCM s) {
+diff -Naruw 

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

2019-06-18 Thread Jason Zaman
commit: 0da9fc040ec3b0f574af036ba821c16a5e936123
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Jun 17 09:00:43 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jun 19 04:03:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0da9fc04

dev-python/wrapt: bump 1.11.2

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-python/wrapt/Manifest|  1 +
 dev-python/wrapt/wrapt-1.11.2.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/wrapt/Manifest b/dev-python/wrapt/Manifest
index b05997ca7f3..71f3be5aa20 100644
--- a/dev-python/wrapt/Manifest
+++ b/dev-python/wrapt/Manifest
@@ -1,2 +1,3 @@
 DIST wrapt-1.10.10.tar.gz 122052 BLAKE2B 
216c3cf5ba3b91d2ed6c71c3a131242e8e668394b429e13d1a0ca3a0f806d380ca4e1a1a1d17ea029643fbc0d56defdacfcc9659a9eb1df67771dc03cdc7d292
 SHA512 
e18283cac7bbb137f43fa8c2839fff14072db1fdae57da2b393a5db4007656706838b64bc6785cea25602205b595fc4e7fe033e580d2fb484fd8c77351e046d1
 DIST wrapt-1.10.11.tar.gz 122499 BLAKE2B 
1398bc84e3d5490ba6e6f6f386d5eb6439ec750a2a1c5c29acf91e87a9c9405b11ff10dcb56e4aa28d07d34f7a56fbe9154d2f30556f5a2ae4f1a0986033e05a
 SHA512 
cc051749341bcd6fc1a950607fad94f74334a00acf0366129470181a5af7a3af32a26e5c5deee9242ee12bcc7e4c47dacb958c514aba8a764be3bcc662845b98
+DIST wrapt-1.11.2.tar.gz 124874 BLAKE2B 
262518e097753830d80d834e1dcd5afe9c743e7cad8fad992146829255b99ef0c1a6d0344674935bb6beae9a8e5f42a1a4ade760f7300d104b1a17bc6f94f91f
 SHA512 
2551247c46fbc34068e0f2d6efa91d8c87669c8bf1e16c3b5e2e5e0d84402301c38a78485b7e9a13120c99c9c942db680a84d87a52a072d530aba6444d86297d

diff --git a/dev-python/wrapt/wrapt-1.11.2.ebuild 
b/dev-python/wrapt/wrapt-1.11.2.ebuild
new file mode 100644
index 000..fb3261b28fc
--- /dev/null
+++ b/dev-python/wrapt/wrapt-1.11.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Module for decorators, wrappers and monkey patching"
+HOMEPAGE="https://github.com/GrahamDumpleton/wrapt;
+SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos ~x86-macos"
+IUSE="doc test"
+
+DEPEND="
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+   doc? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND=""
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_compile() {
+   local WRAPT_EXTENSIONS=true
+
+   distutils-r1_python_compile
+}
+
+python_test() {
+   py.test -vv || die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+
+   distutils-r1_python_install_all
+}



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

2019-06-18 Thread Jason Zaman
commit: 43fde75015ca29310e9c6f04b759db1da3e6638c
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Jun 17 08:52:44 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jun 19 02:41:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43fde750

dev-python/google-pasta: bump 0.1.7

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-python/google-pasta/Manifest  |  1 +
 dev-python/google-pasta/google-pasta-0.1.7.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-python/google-pasta/Manifest b/dev-python/google-pasta/Manifest
index 45196c890c6..9b40c0a89da 100644
--- a/dev-python/google-pasta/Manifest
+++ b/dev-python/google-pasta/Manifest
@@ -1 +1,2 @@
 DIST google-pasta-0.1.1.tar.gz 34476 BLAKE2B 
04de1237eda9449e4648af0fc43b538d4c71f43b1205fbb531981c773266e404d9673adc9f7c3e74706b90993cae31d7a2c812c3ee5a02edce6ce669491f2823
 SHA512 
94a5016acbba72261ccd488f788b23934651149c7d763aed4f998018bdbf299261fe125accb1359f70d024c3bc3db0f1279e5e780e1e4b87b328f2c473a1b003
+DIST google-pasta-0.1.7.tar.gz 37090 BLAKE2B 
55d1846a733d3d593e0df16f360a55879b7d5c88a1df410b2f86e97dbcdb01493a7abaebfa57f0f39cbe0dbd081847bce41d8862dea30cdef65d745870ffd89c
 SHA512 
dd374fd039b7b6bd5ca9821dc8342854277cdd7b58738532cf0a39458c3021a1d5011f147c5a3fd1936023da7890636a65d4026af7da65194bde0004ec0caa35

diff --git a/dev-python/google-pasta/google-pasta-0.1.7.ebuild 
b/dev-python/google-pasta/google-pasta-0.1.7.ebuild
new file mode 100644
index 000..6baf55a5779
--- /dev/null
+++ b/dev-python/google-pasta/google-pasta-0.1.7.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python{3_5,3_6,3_7} )
+inherit distutils-r1
+
+DESCRIPTION="AST-based Python refactoring library"
+HOMEPAGE="https://pypi.org/project/google-pasta/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+BDEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"



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

2019-06-18 Thread Jason Zaman
commit: b1ccdd0dfbeaeee5daae91b79a020d72cd3ed02f
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Jun 19 01:00:10 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jun 19 04:03:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1ccdd0d

sci-visualization/tensorboard: bump 1.14.0

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 sci-visualization/tensorboard/Manifest |  1 +
 .../tensorboard/tensorboard-1.14.0.ebuild  | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/sci-visualization/tensorboard/Manifest 
b/sci-visualization/tensorboard/Manifest
index 419c6f79841..07af54fe92d 100644
--- a/sci-visualization/tensorboard/Manifest
+++ b/sci-visualization/tensorboard/Manifest
@@ -1 +1,2 @@
 DIST tensorboard-1.13.1.zip 3187614 BLAKE2B 
e1b8cb43f7941b843e4fa8c84746f4b341e7c7e246422182eec9e1d3e2a5c367fb818c8e3ddd20cb6b5f64515a986dc5e814728340f0592d346dc55ec6065648
 SHA512 
d1581b7f694909e94a09d4c3fb2d34ddc31a18a6a09323ef48221e88560a9ec3bbb050ff12a2cd78607a2545053cabc448eab7264036a54dddc4720becfc44b3
+DIST tensorboard-1.14.0.zip 3149160 BLAKE2B 
85a3544c2274757cdfb99e3d82751082415d9283a68808de50c4b14662542bd278db3320560cb39aee6bb62d1434dedfa720cfc83b7d464d99256cfe46081f78
 SHA512 
b19856b1c252b22e472efb9b91ea5c4509d0c3a9d5f99071dea04325e2346b37967b0be151227d150cf013aee5ae6f6273cd311085f4c6b1ca8021d14c2cf562

diff --git a/sci-visualization/tensorboard/tensorboard-1.14.0.ebuild 
b/sci-visualization/tensorboard/tensorboard-1.14.0.ebuild
new file mode 100644
index 000..1665bc00912
--- /dev/null
+++ b/sci-visualization/tensorboard/tensorboard-1.14.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Jason Zaman
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+inherit python-r1 python-utils-r1
+
+DESCRIPTION="TensorFlow's Visualization Toolkit"
+HOMEPAGE="https://www.tensorflow.org/;
+SRC_URI="https://files.pythonhosted.org/packages/py3/${PN::1}/${PN}/${P}-py3-none-any.whl
 -> ${P}.zip"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   dev-python/bleach[${PYTHON_USEDEP}]
+   dev-python/grpcio[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/protobuf-python[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/werkzeug[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
+   virtual/python-futures[${PYTHON_USEDEP}]"
+BDEPEND="app-arch/unzip"
+PDEPEND="sci-libs/tensorflow[python,${PYTHON_USEDEP}]"
+
+S="${WORKDIR}"
+
+src_prepare() {
+   eapply_user
+
+   rm -rf "${S}/${PN}/_vendor/bleach" || die
+   rm -rf "${S}/${PN}/_vendor/html5lib" || die
+   sed -i -e '/_vendor.bleach/d' -e '/_vendor.html5lib/d' 
"${S}/${P}.dist-info/RECORD" || die "failed to unvendor"
+
+   find "${S}/${PN}" -name '*.py' -exec sed -i \
+   -e 's/^from tensorboard\._vendor import html5lib/import 
html5lib/' \
+   -e 's/^from tensorboard\._vendor import bleach/import bleach/' \
+   -e 's/^from tensorboard\._vendor\.html5lib/from html5lib/' \
+   -e 's/^from tensorboard\._vendor\.bleach/from bleach/' \
+   {} + || die "failed to unvendor"
+}
+
+src_install() {
+   do_install() {
+   python_domodule "${PN}"
+   python_domodule "${P}.dist-info"
+   }
+   python_foreach_impl do_install
+}



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

2019-06-18 Thread Jason Zaman
commit: ca5230fec2021d6c00b41b2d38d5c54c1d3083a8
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Jun 19 00:58:09 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jun 19 04:03:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca5230fe

sci-libs/tensorflow-estimator: bump 1.14.0_rc1

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 sci-libs/tensorflow-estimator/Manifest  | 2 +-
 ...timator-1.14.0_rc0.ebuild => tensorflow-estimator-1.14.0_rc1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/tensorflow-estimator/Manifest 
b/sci-libs/tensorflow-estimator/Manifest
index ec758432097..66d44c5303e 100644
--- a/sci-libs/tensorflow-estimator/Manifest
+++ b/sci-libs/tensorflow-estimator/Manifest
@@ -1,2 +1,2 @@
 DIST tensorflow-estimator-1.13.0.tar.gz 530871 BLAKE2B 
4f208ed20e10fa68e06d21c9865cd07623e14362bdcff456bc9b412431c8f12f289c8a8f8ad89cb1f0ec98b1432844632d7e1097ea29d40bf6f67b90b4968f93
 SHA512 
e4be92b805776d2be5f391f737f1043b994f42721173c4d4a7dbf3fac9b00121cb072091a474bf71c7dcd952fc8b330cf9254c7a5ad9d096ba1cdc12ba12078b
-DIST tensorflow-estimator-1.14.0_rc0.tar.gz 669520 BLAKE2B 
876f55b3f35b12ed81f7e978b92daa5fe250d3c45bee236565bbf437664c338a5de6d16eb829d7d3c502089c10f13d5d502c903a970f375aa03fcce3ecdd9a1e
 SHA512 
046d8fd276d77dbc611c8aa7f73d33255222c027f538c5e688ab7a1898b0d8ef4462624368842352aadee711b8fa38ccb219ce10cb143f8662c8b26c6285
+DIST tensorflow-estimator-1.14.0_rc1.tar.gz 670908 BLAKE2B 
8ffcf2228fe4c4af1e834ab28368a1472df9d5de011ecc0a6e8623d60b293f1c07c73fa2eae7b743fd1d910b1cdc7813c46a66fd645d290fd9cf87f7654839aa
 SHA512 
59d9505b01c8bb1f88ab310f341c8a96c3699676e0440b04ade76d66a3940c94b50a2f8ba1704873aae9c6dde0be3d734f0c8f3cf99901b17baa82704d784085

diff --git 
a/sci-libs/tensorflow-estimator/tensorflow-estimator-1.14.0_rc0.ebuild 
b/sci-libs/tensorflow-estimator/tensorflow-estimator-1.14.0_rc1.ebuild
similarity index 100%
rename from sci-libs/tensorflow-estimator/tensorflow-estimator-1.14.0_rc0.ebuild
rename to sci-libs/tensorflow-estimator/tensorflow-estimator-1.14.0_rc1.ebuild



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

2019-06-18 Thread Aaron Bauman
commit: 302d460f41411069aec7a731ad704d2613042c38
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Jun 19 02:08:48 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Jun 19 02:08:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=302d460f

www-client/firefox: arm64 stable (bug #688332)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.67, Repoman-2.3.14
RepoMan-Options: --include-arches="arm64"

 www-client/firefox/firefox-60.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/firefox/firefox-60.7.1.ebuild 
b/www-client/firefox/firefox-60.7.1.ebuild
index 9fed9f7ec27..ca3f5f687bb 100644
--- a/www-client/firefox/firefox-60.7.1.ebuild
+++ b/www-client/firefox/firefox-60.7.1.ebuild
@@ -43,7 +43,7 @@ inherit check-reqs flag-o-matic toolchain-funcs eutils 
gnome2-utils llvm \
 DESCRIPTION="Firefox Web Browser"
 HOMEPAGE="https://www.mozilla.com/firefox;
 
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="~amd64 arm64 x86"
 
 SLOT="0"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"



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

2019-06-18 Thread Zac Medico
commit: f9b04befd7bc5ca7cf74b666aa0640c8041757f5
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Jun 19 00:43:37 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Jun 19 00:45:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9b04bef

dev-python/nose-cover3: PYTHON_COMPAT+=( python3_7 )

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild 
b/dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild
index 18748099f29..b2f1d4d2968 100644
--- a/dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild
+++ b/dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{5,6} pypy pypy3 )
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
 
 inherit distutils-r1
 



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

2019-06-18 Thread Georgy Yakovlev
commit: 8eb8b66908174a20c0acdbd943a5bfb7da24054a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 17 23:32:36 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:09:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8eb8b669

virtual/rust: drop 1.29.1

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Georgy Yakovlev  gentoo.org>

 virtual/rust/rust-1.29.1.ebuild | 15 ---
 1 file changed, 15 deletions(-)

diff --git a/virtual/rust/rust-1.29.1.ebuild b/virtual/rust/rust-1.29.1.ebuild
deleted file mode 100644
index f0bd8de3f2a..000
--- a/virtual/rust/rust-1.29.1.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual for Rust language compiler"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-
-BDEPEND=""
-RDEPEND="|| ( =dev-lang/rust-${PV}* =dev-lang/rust-bin-${PV}* )"



[gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/files/, dev-lang/rust/

2019-06-18 Thread Georgy Yakovlev
commit: 80f2ab4cbfa3a18f3d981f527b317467bc7578e9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 17 23:24:55 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:09:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80f2ab4c

dev-lang/rust: cleanup old unstable versions

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-lang/rust/Manifest |  67 -
 dev-lang/rust/files/1.29.2-clippy-sysroot.patch|  62 
 dev-lang/rust/files/1.30.1-clippy-sysroot.patch|  62 
 .../1.32.0-fix-configure-of-bundled-llvm.patch |  32 --
 dev-lang/rust/files/1.32.0-libressl.patch  |  30 --
 .../rust/files/1.32.0-system-llvm-7-SIGSEGV.patch  |  33 ---
 dev-lang/rust/files/1.33.0-clippy-sysroot.patch|  62 
 dev-lang/rust/rust-1.29.2-r1.ebuild| 279 --
 dev-lang/rust/rust-1.30.1-r1.ebuild| 299 ---
 dev-lang/rust/rust-1.31.1.ebuild   | 298 ---
 dev-lang/rust/rust-1.32.0.ebuild   | 309 
 dev-lang/rust/rust-1.33.0.ebuild   | 322 -
 12 files changed, 1855 deletions(-)

diff --git a/dev-lang/rust/Manifest b/dev-lang/rust/Manifest
index fd33db50eff..af8e766ac0e 100644
--- a/dev-lang/rust/Manifest
+++ b/dev-lang/rust/Manifest
@@ -1,68 +1,6 @@
 DIST rust-1.28.0-aarch64-unknown-linux-gnu.tar.xz 98937652 BLAKE2B 
836d3dd4e583fa50dd317c3bea56257e6ea19defdb38c16be6debb2854e147c8a92c4832263e4ac314136022a176526fe7d3774a3c5a84cd8d364cd2a1532860
 SHA512 
8d9acbc90ddaa1e0de0234a21798b19b5365ea371a12f9a143c6ebacbb48f57344da6e827e867513be502bce2801de27a0dbbacdf8618c653aeb58026b6c469c
-DIST rust-1.28.0-arm-unknown-linux-gnueabi.tar.xz 104676648 BLAKE2B 
b26b23c3605e6584c51e0e914dbb3be60996e079e52ff2d4850ed43c1f1f7cd5ac575b40dbe852f927d36654f5ab7e384548f3a92b3466bfbb1cda7f9f069bcb
 SHA512 
a1eaf1d7826ebfe222d233cabd8b88073ca2c8dd42a0b870e324dfc63e7290308418222c56802bc421c9bda119dc7c5f3e225ff33cacad5776b79cbcc1a877b2
-DIST rust-1.28.0-arm-unknown-linux-gnueabihf.tar.xz 104992084 BLAKE2B 
df97766d7abf73f668a2936834bc0f35739289eeeb5395276a2fdfd5b6c0baee3ba1eee1099f19d4f4f1cbd1a33cf62ad888dd3d1856b613ac853c6a17650741
 SHA512 
3b58b83f38bf8d8e841ae6614d72bb6e6faf75fb7c19abc5451548b0e6de0ef3b64dfbc70481a1e40f74074bfad701aa7a58296b4a0d07957a418bd3cd769917
-DIST rust-1.28.0-armv7-unknown-linux-gnueabihf.tar.xz 105144132 BLAKE2B 
d9e0791c7dc77ade26d383a5c57117a2b7b50c6a523b31fbf604c0b779c966c504f85c718353f2e581bfe8a228369671a8b731f808bc0133ad3fad61f853
 SHA512 
9142110e0c24657aca41468648d9364c2e6fce60b08ca7113c944a53701fc5a309481a8fdd5845b229bcc750ccad63af561d452c3a3a0727ab1ca7a461b06d3d
 DIST rust-1.28.0-i686-unknown-linux-gnu.tar.xz 136925948 BLAKE2B 
85d9239533920c3f16d7c61bada0caeabceceade29032b70bb4562bfd04fa0158cdd85b8a0a1119506416fa5916ade8a0466bf6c10da457299a6319aa25f9dd6
 SHA512 
ffdfab46db14f07354b553e02fdb9dc6602c2c52b78d8f17c499f4ddb1e257aa53479df836eb3f06a2548d34296b0277cdb6b4c6f3cec57265823df22752c135
-DIST rust-1.28.0-mips-unknown-linux-gnu.tar.xz 102116424 BLAKE2B 
72c7cfa9157c0d7fb6a9dc0698322e5285bc2ef9f914a1be5063c8aeaed8a7d29bbcd71090aa5f09ec5229e38ac08e6883119f03af42ffa794cadf227450049d
 SHA512 
0d2e2785178e235b0effd2a7251e9004c87c21e158c2e6f122eeb10942ce2545e5d67d7ff040b7c277627cc402321fff5ad5186a41f2de581f46633adb1894bf
-DIST rust-1.28.0-mips64-unknown-linux-gnuabi64.tar.xz 101617356 BLAKE2B 
eb0cc524e40cdf20ec16b72418cae9ea03ce946006412153a7c0a173f27a3f8e193a41685295be9917b10ca39565be57b6d3f7c7a7122cbee088a5652081dda1
 SHA512 
0d7bfafa1340de97efab8db3100d5462afde94e8e54d6543e229d9240aca5a69d469a3e5ac750527d5e40dad11286b40d6be22812655721a0b8bf3ecba485ad6
-DIST rust-1.28.0-mipsel-unknown-linux-gnu.tar.xz 103574324 BLAKE2B 
671e8ee0de674e37c8156825603e3cea659c0ad016698c8f208a78afe18cf0411dc953cf683d297079e3eaedddad540dbfa1821950585fb5ffcf74267f0ebcdd
 SHA512 
40233beb18c937f7293a8191d6a9d98c5628b0709ef808e48fac4db10ce0af91cb8d6bec9056dae00149e8e0b1613b1c66960e23302bc0b66b50fbb0994cb018
-DIST rust-1.28.0-powerpc-unknown-linux-gnu.tar.xz 100580084 BLAKE2B 
2487976f495e78d8cc8129d81e1eb29cc86d7c523133d9ea42e6425f7607fea74c8a848877e926c53c2dd9599a0c3bede46109e96c3851fd7726b251442fca6c
 SHA512 
450aa028644fc73cf8dadccfabc1a66c360880300479df9c0041f773b3f6b6072afb9aee0221fe51abd4194b86f8cc8b7f14c788b3792858a44bfc8c83bcc03d
-DIST rust-1.28.0-powerpc64-unknown-linux-gnu.tar.xz 105788856 BLAKE2B 
828082612561ddd186472472e11e1afb9bc24a3332ff5f82a9924fc950b29655e892c974a88ce6c0b04c34a9c7d13856a8629027069808234ffb1e3cfb788e01
 SHA512 
1bd2c5069beecb765a2305715070e4052d5a66dafe50a5b53bea2c2082b22b3f9a2d2b9fb059c93476f88ee5e602effc18b807e5c964610e8255a3a945931f51
-DIST rust-1.28.0-powerpc64le-unknown-linux-gnu.tar.xz 105822856 BLAKE2B 

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

2019-06-18 Thread Georgy Yakovlev
commit: fd41c6f30f6a2ffa36f2d7bf060afe4ce58e62d9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 17 23:34:49 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:09:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd41c6f3

dev-lang/rust-bin: drop 1.29.1-r1

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-lang/rust-bin/Manifest  |   6 -
 dev-lang/rust-bin/metadata.xml  |   1 -
 dev-lang/rust-bin/rust-bin-1.29.1-r1.ebuild | 175 
 3 files changed, 182 deletions(-)

diff --git a/dev-lang/rust-bin/Manifest b/dev-lang/rust-bin/Manifest
index f9f31fee851..6f538611795 100644
--- a/dev-lang/rust-bin/Manifest
+++ b/dev-lang/rust-bin/Manifest
@@ -1,9 +1,3 @@
-DIST rust-1.29.1-aarch64-unknown-linux-gnu.tar.xz 100127240 BLAKE2B 
32bebfcb3fe9c12bc0404d1a7980d09a3e96117d93eccc3f76601a4a06ff5ab9d4627bc50ce00b6c69723379a2ebf3e3f25b9724b1bd2dc00c001b28fd70b916
 SHA512 
fae658f99069b599e3ec17e5a6b80f3c726937dd4751e375a003583ac6feeeb5f68bdd9e55c8ab84a0974607a45e08eaaad9e373f5a9b4bc172d2c986664d671
-DIST rust-1.29.1-arm-unknown-linux-gnueabi.tar.xz 105764732 BLAKE2B 
552c0df65a1ca1ff094d25ddbdaf6e50b4faa1123677b796eb6a5aec2f8cba7f9ede9611aa2e7ffd7c4e39d578f166e73e4c9916a8db7a7652b006364ea78601
 SHA512 
cd5ea55b3c4f67deeb9a2688fea6800ebac1bbabfa5ce8d37f6ca0c1628cde9770831a0ec894309ca86dfed9faa3949c479e5b546abfaebcc6431f7709f487b2
-DIST rust-1.29.1-arm-unknown-linux-gnueabihf.tar.xz 106051860 BLAKE2B 
65d9a5f75540cdfedf89ebbe30f04fce964a3e1d27479a8393924c5b6a1cd77883c7d54b9e1634378febe6a2ec3ec04f6ba403e15afc43e6cc5b32902932ba57
 SHA512 
aea98cbe613abf8fbba45806356a26776bc369c4100658fc613bf730d7f7ed6aeb413cbfefa5eb77da80008dce95264b8bcbe420804b32ad577c5821203fe151
-DIST rust-1.29.1-armv7-unknown-linux-gnueabihf.tar.xz 106372416 BLAKE2B 
25371071e52a585c3f0b99f5849cf674aedd6d024ce75f6bf7b0d88f485d715b42d6a0f5eb8871890240d1c2488d7ad75c8ac7b4b22dd88e3ce2d049d35ae8ee
 SHA512 
0067476eb0972998cee33f27d8fd6ef51c497bd6edbbd8a289fcf768da525805646569ed029318d4be6ecb6aece6669e3554eb30a14e1d31f2a3e7d5896b14c3
-DIST rust-1.29.1-i686-unknown-linux-gnu.tar.xz 150811536 BLAKE2B 
97d268cbbb5485d8efde108462bb0086ed9428a9b7ba8136dac764cd871a39d9503f6b928ce5fd9f1cdbf20dd109877f4404cb4522ccb2d37bfd55b15664
 SHA512 
8dc2a3b7fb1eef4b009541c473b767d07ab1136b933495b22e3fa56925def80b141b4801ce362ce9986a559fda4299fea35dd4bd7209dc1b3425b44421605df8
-DIST rust-1.29.1-x86_64-unknown-linux-gnu.tar.xz 148184680 BLAKE2B 
be64a44619807be3151162e45cefe79242e965277606b7aac4f0456d34e4cb526b1779c327499c47c484a830c4c566ab1aeaef30cf17ae7d2bdc89ecbf1f5de5
 SHA512 
69809c2ae77be6a1f71a5f14cea74dee6ac59bb548bc8ed454819ce3db38146ad64b83a6bf2a6d5cea68c807bc8ecf6c7929c4f8365b419e40a23022074efa16
 DIST rust-1.34.2-aarch64-unknown-linux-gnu.tar.xz 120868188 BLAKE2B 
d843cce81338b2b3765c973f06dca83161fefed129efefe94efad663b5ddef54aa092bf5977ba7bca74519b008796e60486cf8b193ec2a2dead3add66295d41f
 SHA512 
7103362b8840d094661a16053d8f07eba413c369bf3a2b686313875aa97c30b35697fceefbfc90dffd5cfd4de946e7f848f2b791736443639b30bb75709b7122
 DIST rust-1.34.2-arm-unknown-linux-gnueabi.tar.xz 122563056 BLAKE2B 
05e73de7d58723affef3f272e646245a97b17373cc960d5e1be0365919ad3879e08bd9012126e41235b97a758bb57fa4e67fcd11e2f29322af9ab039fc3e2dfd
 SHA512 
d6c055e8ba0fd494797a55d2a6df1eec2a6361c0b081e4b7cb06e42a03a644e4de49c7b17dc8cb6484f3271517f2bd50935bc72ead486531b5b370a1c576b12a
 DIST rust-1.34.2-arm-unknown-linux-gnueabihf.tar.xz 122858592 BLAKE2B 
aebe65fb64044c342f525749eb5d67217f459712aa72d49497062af461901a6e92d21b00e05439bd0753228b876f521198a8b005b116b5121ec3dd812df4bec8
 SHA512 
5cc2612988182b68d9b220d6d7620fc0b064a9d347825d4677959b7e43820647ff25651427db3a5c72401ab8d0c14e2976921d71ddbe0a5b540cf045241cd727

diff --git a/dev-lang/rust-bin/metadata.xml b/dev-lang/rust-bin/metadata.xml
index 5252c49ea5c..aa932207aa0 100644
--- a/dev-lang/rust-bin/metadata.xml
+++ b/dev-lang/rust-bin/metadata.xml
@@ -6,7 +6,6 @@
 Rust Project
   
   
-Install cargo component
 Install clippy component
 Install rustfmt component
   

diff --git a/dev-lang/rust-bin/rust-bin-1.29.1-r1.ebuild 
b/dev-lang/rust-bin/rust-bin-1.29.1-r1.ebuild
deleted file mode 100644
index a46314e5314..000
--- a/dev-lang/rust-bin/rust-bin-1.29.1-r1.ebuild
+++ /dev/null
@@ -1,175 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils bash-completion-r1 versionator toolchain-funcs
-
-MY_P="rust-${PV}"
-
-DESCRIPTION="Systems programming language from Mozilla"
-HOMEPAGE="https://www.rust-lang.org/;
-SRC_URI="amd64? ( 
https://static.rust-lang.org/dist/${MY_P}-x86_64-unknown-linux-gnu.tar.xz )
-   arm? (
-   
https://static.rust-lang.org/dist/${MY_P}-arm-unknown-linux-gnueabi.tar.xz
-   

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

2019-06-18 Thread Georgy Yakovlev
commit: de879d3da4fb5544e27a70ef2bd640badeba5364
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 17 23:32:11 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:09:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de879d3d

virtual/cargo: drop 1.29.1

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Georgy Yakovlev  gentoo.org>

 virtual/cargo/cargo-1.29.1.ebuild | 20 
 1 file changed, 20 deletions(-)

diff --git a/virtual/cargo/cargo-1.29.1.ebuild 
b/virtual/cargo/cargo-1.29.1.ebuild
deleted file mode 100644
index 078515624fc..000
--- a/virtual/cargo/cargo-1.29.1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Package manager for Rust"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-
-CARGO_DEPEND_VERSION="0.$(($(ver_cut 2) + 1)).0"
-
-RDEPEND="|| (
-   =dev-lang/rust-${PV}*[cargo]
-   =dev-lang/rust-bin-${PV}*[cargo]
-   =dev-util/cargo-${CARGO_DEPEND_VERSION}*
-   )"



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

2019-06-18 Thread Georgy Yakovlev
commit: f75ab6bd0258a76c3be96fa50f0cfaa9a5926ba1
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 17 23:13:57 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:09:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f75ab6bd

virtual/cargo: cleanup old unstable versions

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Georgy Yakovlev  gentoo.org>

 virtual/cargo/cargo-1.29.2.ebuild | 20 
 virtual/cargo/cargo-1.30.1.ebuild | 17 -
 virtual/cargo/cargo-1.31.1.ebuild | 17 -
 virtual/cargo/cargo-1.32.0.ebuild | 17 -
 virtual/cargo/cargo-1.33.0.ebuild | 17 -
 5 files changed, 88 deletions(-)

diff --git a/virtual/cargo/cargo-1.29.2.ebuild 
b/virtual/cargo/cargo-1.29.2.ebuild
deleted file mode 100644
index 75db8598289..000
--- a/virtual/cargo/cargo-1.29.2.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Package manager for Rust"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-CARGO_DEPEND_VERSION="0.$(($(ver_cut 2) + 1)).0"
-
-RDEPEND="|| (
-   =dev-lang/rust-${PV}*[cargo]
-   =dev-lang/rust-bin-${PV}*[cargo]
-   =dev-util/cargo-${CARGO_DEPEND_VERSION}*
-   )"

diff --git a/virtual/cargo/cargo-1.30.1.ebuild 
b/virtual/cargo/cargo-1.30.1.ebuild
deleted file mode 100644
index 85bd2b1722d..000
--- a/virtual/cargo/cargo-1.30.1.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Package manager for Rust"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
-
-RDEPEND="|| (
-   =dev-lang/rust-${PV}*
-   =dev-lang/rust-bin-${PV}*
-   )"

diff --git a/virtual/cargo/cargo-1.31.1.ebuild 
b/virtual/cargo/cargo-1.31.1.ebuild
deleted file mode 100644
index 85bd2b1722d..000
--- a/virtual/cargo/cargo-1.31.1.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Package manager for Rust"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
-
-RDEPEND="|| (
-   =dev-lang/rust-${PV}*
-   =dev-lang/rust-bin-${PV}*
-   )"

diff --git a/virtual/cargo/cargo-1.32.0.ebuild 
b/virtual/cargo/cargo-1.32.0.ebuild
deleted file mode 100644
index 5e737019292..000
--- a/virtual/cargo/cargo-1.32.0.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Package manager for Rust"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
-
-RDEPEND="|| (
-   =dev-lang/rust-${PV}*
-   =dev-lang/rust-bin-${PV}*
-   )"

diff --git a/virtual/cargo/cargo-1.33.0.ebuild 
b/virtual/cargo/cargo-1.33.0.ebuild
deleted file mode 100644
index 5e737019292..000
--- a/virtual/cargo/cargo-1.33.0.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Package manager for Rust"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
-
-RDEPEND="|| (
-   =dev-lang/rust-${PV}*
-   =dev-lang/rust-bin-${PV}*
-   )"



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

2019-06-18 Thread Georgy Yakovlev
commit: 14cb0d2545c9c44d23250b6ef7a76df86aa6b4f0
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun 19 00:11:29 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:29:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14cb0d25

profiles/package.mask: Last-rite dev-util/rustfmt

Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 3cfe463b8aa..e41dd1c9202 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Georgy Yakovlev  (17 Jun 2019)
+# this is now provided by dev-lang/rust{-bin}[rustfmt]
+# it's tightly integrated with rust toolchain, eselect-rust
+# and it no longer makes sense ship this as standalone pkg
+dev-util/rustfmt
+
 # James Le Cuirot  (18 Jun 2019)
 # Web site and SRC_URI dead. Has required heavy patching. Superseded
 # by games-util/deutex. Removal in 30 days.



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

2019-06-18 Thread Georgy Yakovlev
commit: c04b886c21a705ee2857d0f8326951cdcfc5ece1
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 17 23:16:42 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:09:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c04b886c

virtual/rust: cleanup old unstable versions

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Georgy Yakovlev  gentoo.org>

 virtual/rust/rust-1.29.2.ebuild | 15 ---
 virtual/rust/rust-1.30.1.ebuild | 15 ---
 virtual/rust/rust-1.31.1.ebuild | 15 ---
 virtual/rust/rust-1.32.0.ebuild | 15 ---
 virtual/rust/rust-1.33.0.ebuild | 15 ---
 5 files changed, 75 deletions(-)

diff --git a/virtual/rust/rust-1.29.2.ebuild b/virtual/rust/rust-1.29.2.ebuild
deleted file mode 100644
index f0642556ce5..000
--- a/virtual/rust/rust-1.29.2.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual for Rust language compiler"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-BDEPEND=""
-RDEPEND="|| ( =dev-lang/rust-${PV}* =dev-lang/rust-bin-${PV}* )"

diff --git a/virtual/rust/rust-1.30.1.ebuild b/virtual/rust/rust-1.30.1.ebuild
deleted file mode 100644
index 8b9a42f1d56..000
--- a/virtual/rust/rust-1.30.1.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual for Rust language compiler"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
-
-BDEPEND=""
-RDEPEND="|| ( =dev-lang/rust-${PV}* =dev-lang/rust-bin-${PV}* )"

diff --git a/virtual/rust/rust-1.31.1.ebuild b/virtual/rust/rust-1.31.1.ebuild
deleted file mode 100644
index 8b9a42f1d56..000
--- a/virtual/rust/rust-1.31.1.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual for Rust language compiler"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
-
-BDEPEND=""
-RDEPEND="|| ( =dev-lang/rust-${PV}* =dev-lang/rust-bin-${PV}* )"

diff --git a/virtual/rust/rust-1.32.0.ebuild b/virtual/rust/rust-1.32.0.ebuild
deleted file mode 100644
index 75f82239948..000
--- a/virtual/rust/rust-1.32.0.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual for Rust language compiler"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
-
-BDEPEND=""
-RDEPEND="|| ( =dev-lang/rust-${PV}* =dev-lang/rust-bin-${PV}* )"

diff --git a/virtual/rust/rust-1.33.0.ebuild b/virtual/rust/rust-1.33.0.ebuild
deleted file mode 100644
index 75f82239948..000
--- a/virtual/rust/rust-1.33.0.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Virtual for Rust language compiler"
-HOMEPAGE=""
-SRC_URI=""
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
-
-BDEPEND=""
-RDEPEND="|| ( =dev-lang/rust-${PV}* =dev-lang/rust-bin-${PV}* )"



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

2019-06-18 Thread Georgy Yakovlev
commit: 093c4f9979c460a4e704c04816d322d5883c3dfa
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 17 23:26:26 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:09:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=093c4f99

dev-lang/rust-bin: cleanup old unstable versions

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-lang/rust-bin/Manifest  |  65 
 dev-lang/rust-bin/rust-bin-1.29.2-r1.ebuild | 154 ---
 dev-lang/rust-bin/rust-bin-1.30.1-r1.ebuild | 144 -
 dev-lang/rust-bin/rust-bin-1.31.1.ebuild| 144 -
 dev-lang/rust-bin/rust-bin-1.32.0.ebuild| 156 
 dev-lang/rust-bin/rust-bin-1.33.0.ebuild| 156 
 6 files changed, 819 deletions(-)

diff --git a/dev-lang/rust-bin/Manifest b/dev-lang/rust-bin/Manifest
index ee34e0edc3d..f9f31fee851 100644
--- a/dev-lang/rust-bin/Manifest
+++ b/dev-lang/rust-bin/Manifest
@@ -4,71 +4,6 @@ DIST rust-1.29.1-arm-unknown-linux-gnueabihf.tar.xz 106051860 
BLAKE2B 65d9a5f755
 DIST rust-1.29.1-armv7-unknown-linux-gnueabihf.tar.xz 106372416 BLAKE2B 
25371071e52a585c3f0b99f5849cf674aedd6d024ce75f6bf7b0d88f485d715b42d6a0f5eb8871890240d1c2488d7ad75c8ac7b4b22dd88e3ce2d049d35ae8ee
 SHA512 
0067476eb0972998cee33f27d8fd6ef51c497bd6edbbd8a289fcf768da525805646569ed029318d4be6ecb6aece6669e3554eb30a14e1d31f2a3e7d5896b14c3
 DIST rust-1.29.1-i686-unknown-linux-gnu.tar.xz 150811536 BLAKE2B 
97d268cbbb5485d8efde108462bb0086ed9428a9b7ba8136dac764cd871a39d9503f6b928ce5fd9f1cdbf20dd109877f4404cb4522ccb2d37bfd55b15664
 SHA512 
8dc2a3b7fb1eef4b009541c473b767d07ab1136b933495b22e3fa56925def80b141b4801ce362ce9986a559fda4299fea35dd4bd7209dc1b3425b44421605df8
 DIST rust-1.29.1-x86_64-unknown-linux-gnu.tar.xz 148184680 BLAKE2B 
be64a44619807be3151162e45cefe79242e965277606b7aac4f0456d34e4cb526b1779c327499c47c484a830c4c566ab1aeaef30cf17ae7d2bdc89ecbf1f5de5
 SHA512 
69809c2ae77be6a1f71a5f14cea74dee6ac59bb548bc8ed454819ce3db38146ad64b83a6bf2a6d5cea68c807bc8ecf6c7929c4f8365b419e40a23022074efa16
-DIST rust-1.29.2-aarch64-unknown-linux-gnu.tar.xz 99702524 BLAKE2B 
669066ada5c88ad966125edca77723fbe0ebc0e19859a96cf02eb28a107df87647bc552358cb5e1f8be1fb79d836f8202f4e59349f123bd95383a3a9cb82d0f0
 SHA512 
f871359a3b1ac54fb237921204d98ef4fac06830e9835849538397c27d40283662c0f6ab3f6eafe0e9ef63182a460e26d615111055430ece0fe94ddf7ad03914
-DIST rust-1.29.2-arm-unknown-linux-gnueabi.tar.xz 105368092 BLAKE2B 
7764689fdaeb2ade9aff248707f472ed35d06d4240b138ddf083ef614227845bf6e1d0be38ebc771e95b0998dab3f550de5abe50ffe89625690611d4bdf53aad
 SHA512 
2ef8fda575b00bf7c6f20a8f2a1b6cb8c3b1de6287c9e07889c9a3a682f73f9470bb5649425652ac47af8f61f49abf21209f6b151c4a5ae42dcea59f6e79f84b
-DIST rust-1.29.2-arm-unknown-linux-gnueabihf.tar.xz 105657004 BLAKE2B 
5813dde3020afda41e307f4d9ba57c3840ff800bceb0ef494d743095ce6d4da333da208fc72bb36e21209a9ae16e081ca3e7580d59a984ce561d85bcf4b2e2dc
 SHA512 
81d4e392afe3f4bd1ad76a78610e92e8a27afe8f6d0ff1773dbdf35f2041a587c2a0d71db0658ff50fb43460b4f15f23bbb1cc03a018d49d153314e636befb8a
-DIST rust-1.29.2-armv7-unknown-linux-gnueabihf.tar.xz 105958932 BLAKE2B 
569cbee0ad0eba41c280be934fc5a59c52331b0853d890aad2188c1979a259d90f4092d72dc9e8027255e2ea6b5ea422a06dd9d82f6b2a865fb1d3bcf146c13d
 SHA512 
bff1220781eca904a93d2cefafed3587e3f76e1dc04fbef09a0281295b6c06491c5fa327830c430d31df80eb7a3e64eac7f45739bc118e3626854f96dce246e2
-DIST rust-1.29.2-i686-unknown-linux-gnu.tar.xz 150567444 BLAKE2B 
d3b3cfa88e89e29cf2e502a2ee11b22ea45cf9fa5ca0611de273062a8885dc0b9206a43175895a873cbfbaa08bf0bbdcf38cca45436b77b47dbac1b09e0fdb68
 SHA512 
faac22aec54d0754ff991f2a34ed7b8bfefa8dc9720d247eec1c6b671bbc701907146a796699591e4a677a0f378b9d96bfea5b33452f05dd876c668525f9f33d
-DIST rust-1.29.2-mips-unknown-linux-gnu.tar.xz 96027696 BLAKE2B 
e12dbd41e45a5009c218be07f085d75ce99bd7a7daf8917db0127aa03ac78f4883b344b566d3a8947b836d55750388ea5387264e036c75de7ef4ba5dda081d63
 SHA512 
21d860c6f7219f51b65dced57e0173500e054d2d13300f0ee7721262a8354e5dbc272deb8387fcaaeb16ad793808f87edc6c087f7e442e7434264a3302acf537
-DIST rust-1.29.2-mips64-unknown-linux-gnuabi64.tar.xz 102149796 BLAKE2B 
1f40dd40e461769cfb75a671d6f83c650c74031302bd8872861cfdd3432e270e47c150382c6f02c38e7823f35a158de395cbc33f0061e51632d130b6fd0910f9
 SHA512 
5b98632b80d2ed4cef17bd068adabbe26146a6df68e6e70f2535f61f981c8f935b2491a2dcf388a2afe0cc225f10f9f262342457ce9def8c800364253cac7e67
-DIST rust-1.29.2-mipsel-unknown-linux-gnu.tar.xz 97362256 BLAKE2B 
4d3170a8c48a68a606eff5631d198b16ca09953b0d8079c39f5edc6284a037c0b2212c74d098da4fa0a40a0917139022a9746734e9fdeb62e2564337430a4edb
 SHA512 
9c5ca864da672a975730073e3291c2be218c2624a11ec5fc9a2637bdf58c7437ae77910bccbc6678d584a3464036377d4717d7f6ebdd5712e9bc86973e91d0ad
-DIST rust-1.29.2-powerpc-unknown-linux-gnu.tar.xz 93639612 BLAKE2B 

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

2019-06-18 Thread Georgy Yakovlev
commit: 16b202e3e46c73504682a321cea07e58de99fd50
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Jun 18 00:04:03 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:09:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b202e3

eclass/cargo.eclass: remove dev-util/cargo conditional

Signed-off-by: Georgy Yakovlev  gentoo.org>

 eclass/cargo.eclass | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass
index 051d5c499a6..b16e0e9d633 100644
--- a/eclass/cargo.eclass
+++ b/eclass/cargo.eclass
@@ -12,8 +12,7 @@
 if [[ -z ${_CARGO_ECLASS} ]]; then
 _CARGO_ECLASS=1
 
-CARGO_DEPEND=""
-[[ ${CATEGORY}/${PN} != dev-util/cargo ]] && CARGO_DEPEND="virtual/cargo"
+CARGO_DEPEND="virtual/cargo"
 
 case ${EAPI} in
6) DEPEND="${CARGO_DEPEND}";;



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

2019-06-18 Thread Georgy Yakovlev
commit: 0f9e1b1817ff33426836992a9b67474e41df7aba
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 17 23:34:08 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:09:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f9e1b18

dev-lang/rust: drop 1.29.1-r1

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-lang/rust/Manifest  |   4 -
 dev-lang/rust/metadata.xml  |   1 -
 dev-lang/rust/rust-1.29.1-r1.ebuild | 290 
 3 files changed, 295 deletions(-)

diff --git a/dev-lang/rust/Manifest b/dev-lang/rust/Manifest
index af8e766ac0e..7a682486576 100644
--- a/dev-lang/rust/Manifest
+++ b/dev-lang/rust/Manifest
@@ -1,6 +1,3 @@
-DIST rust-1.28.0-aarch64-unknown-linux-gnu.tar.xz 98937652 BLAKE2B 
836d3dd4e583fa50dd317c3bea56257e6ea19defdb38c16be6debb2854e147c8a92c4832263e4ac314136022a176526fe7d3774a3c5a84cd8d364cd2a1532860
 SHA512 
8d9acbc90ddaa1e0de0234a21798b19b5365ea371a12f9a143c6ebacbb48f57344da6e827e867513be502bce2801de27a0dbbacdf8618c653aeb58026b6c469c
-DIST rust-1.28.0-i686-unknown-linux-gnu.tar.xz 136925948 BLAKE2B 
85d9239533920c3f16d7c61bada0caeabceceade29032b70bb4562bfd04fa0158cdd85b8a0a1119506416fa5916ade8a0466bf6c10da457299a6319aa25f9dd6
 SHA512 
ffdfab46db14f07354b553e02fdb9dc6602c2c52b78d8f17c499f4ddb1e257aa53479df836eb3f06a2548d34296b0277cdb6b4c6f3cec57265823df22752c135
-DIST rust-1.28.0-x86_64-unknown-linux-gnu.tar.xz 134120432 BLAKE2B 
56fb79a98659d9c8e56b8eef87dea3302ee5901bc4507d1c204628370b20cf34b2875c9586faa0acc2bc2b1a5beedeb9b5ba199cfb85d52f268f084a02f04f27
 SHA512 
4f427c11a9cd22aedd01bd7ed5bee2ba5e00a27db25af4f596cf8627d88eff8e72625eb83729d2e6c6780aaffd44c0e7065a1c8fa22f4899349b72c726cf6a5f
 DIST rust-1.33.0-aarch64-unknown-linux-gnu.tar.xz 121877852 BLAKE2B 
accab68c374afe3eafa38e7ad33c32c427db8d0caab722461075c679af2406d991453a8e529a013b99a5841ef9a5e047cdc9ca88dbebab0c904f4afd99c2b851
 SHA512 
51f6ca909411fd3b3c05baedc38be8a29923966e7cd6960a10152886687132d4ef9750140c5121b9486d6f6ee1ed7ff35f8105c9f0731fe98ce750d0ea9c528f
 DIST rust-1.33.0-arm-unknown-linux-gnueabi.tar.xz 122944304 BLAKE2B 
c9c29d9409d5829029ffc444c890c0bba0ea213c0a4eb169e65447b6183b0693ab26d48db2fb0be5a325f6ebb7588f90e18b8377f46276d519fcdf5a637ddae7
 SHA512 
7911dd32cb415d69c05041f450540312d6a78efea36646b4d409a01a0809d94c2eb6a20bfc27772f50cfa0cfed076c3cf5ce62509820819111226f6974f05844
 DIST rust-1.33.0-arm-unknown-linux-gnueabihf.tar.xz 123280648 BLAKE2B 
be19b75623995c0f986d56318887685e70b682caa735adeac259a3f4b67f56537dc43a2a5d696db66547cb523227498c9fcc4213b28df12e5d26999f3caaa7ee
 SHA512 
a0850de543cd11efab4d67bde498e5897f66bbffa1671c4bb6d31fc709dc0869e322e18982dffd199ad6ff7cee282475b04a563fd11a4c7df86f872b02fcce93
@@ -27,6 +24,5 @@ DIST rust-1.34.2-powerpc64-unknown-linux-gnu.tar.xz 125735384 
BLAKE2B c25d43fa63
 DIST rust-1.34.2-powerpc64le-unknown-linux-gnu.tar.xz 129619832 BLAKE2B 
df76b7c08941ae2cb512ba656b09a7b87e1e656badbadf58d64ab5f9133e7248a63873675ac44f16207107a0f68da6089706b46af94154c0bd51aed655f8b578
 SHA512 
3c881e7bcf622237f279855ebaeb544f4df9bfe5bc1f74578093d67befed8f027692ea56dc773c653bef8a124e9ebac2544d0c197a0e3a1ec8da63ef9d434412
 DIST rust-1.34.2-s390x-unknown-linux-gnu.tar.xz 134376720 BLAKE2B 
3eb1452bc0f5d6cbe5547f18ad039c54d4fee44e8c24e35f3399272755cd293df008db2c7dded32c7853944e43de7a4d337b7408835445a4916dbf55d14a7b3e
 SHA512 
181f58b00cdccb205be853f5d00fc0a0c939b7e4dc801717b21ece0f714a8f3b501f1196eb2e3f3081932a0417a6218763c3d095cdd036e9f202cc41291876a1
 DIST rust-1.34.2-x86_64-unknown-linux-gnu.tar.xz 157279864 BLAKE2B 
c25fcb6168e16a4deb19a8ca9b3d91966194f4c8d2e60933226fab015b64a819f6e56a6b51b6e9457ce80efaf5bf71f2eed2f3e6e39bef5856524e33d0a5637b
 SHA512 
64d6b7da08ffd877c10d819605a37b0bc178c4ab80e2f7449f3d5ac9254a438e148da3729408b4c9429ed499d7f142c9d2926f5c916e0a32bebaaefe4b0a09a6
-DIST rustc-1.29.1-src.tar.xz 61937676 BLAKE2B 
6a60249538e1ec62471f4d0e3fc31c0a648433aa6f85ca7341657ea07772e338eb92a629941685808f4b80e84cb025d78aee9d0d6fa71c6635a1647c61bca9bc
 SHA512 
1ded651b4c460e11e5e44c26de88a80fb13c297de2ee1e5af89638e12a7e8f43dd756689d4cc4fad45c52d4d43a3c70dd6a3ae550735b9dad5f8defea6a7
 DIST rustc-1.34.2-src.tar.xz 95048792 BLAKE2B 
e81e4bfda87ddfb09ab8a74792346970aa440c678d2bb1279c329db4929282f761ada6fea9d81ceeecfd513613025c8e636487626fc36bd0b33559e045bb1b15
 SHA512 
f1bd2b226d90aae8a4657e6117b9a8451d4ce8129f79cc0fce0da7613a3b7800e690bc0ede8fec20a2f5f32c13fa8e22ac97d3838e0d36936793535a75d9c381
 DIST rustc-1.35.0-src.tar.xz 96543548 BLAKE2B 
0291152f2b7aa8b50b22d74afbd9c7654bab8ae7dcb76224dbff43bc39a3b918ff86bfd20f408a9a16da8b20b08d9f0289bb63620f093d25d9fa008de57f52c3
 SHA512 
477c10b780bd54776be7ecbda0ab970416253e4a87c3e701825a7d07bcbcd91601b8e61129c5d04d4259e89c2e81e87cdbdee853375a8de5c9cf8372be2c9129

diff --git a/dev-lang/rust/metadata.xml b/dev-lang/rust/metadata.xml
index 210155e50b1..7a1b62bcd0f 100644
--- 

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

2019-06-18 Thread Georgy Yakovlev
commit: b14da216e31a9e6decb5612a0f62ef11d51c6b73
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jun 17 23:53:55 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun 19 00:09:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b14da216

dev-util/cargo: remove package

this is now provided by dev-lang/rust{-bin} unconditionally.
it's very tightly integrated with rust toolchain and it no longer
makes sense to build or ship this separately.

Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-util/cargo/Manifest   | 145 
 dev-util/cargo/cargo-0.30.0-r1.ebuild | 207 --
 dev-util/cargo/metadata.xml   |  11 --
 3 files changed, 363 deletions(-)

diff --git a/dev-util/cargo/Manifest b/dev-util/cargo/Manifest
deleted file mode 100644
index 68416d69f4d..000
--- a/dev-util/cargo/Manifest
+++ /dev/null
@@ -1,145 +0,0 @@
-DIST aho-corasick-0.6.8.crate 26786 BLAKE2B 
877bac172514332ef3c607fa3c9b4708822543f69091b3151d31d9297306dbcb0b6ce9cf5ba02f3c08f5baff337e3525ada8f2240fd6aa12cce428694a36
 SHA512 
1adbce716a3082c3fcd3514c49af3872d926df14044767266707862c0ad7ee22848a6ce99903003c04a3e8f8cd91b38ec8ca5d4a2c9031bfec4c93cf71c15556
-DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
-DIST arrayvec-0.4.7.crate 22946 BLAKE2B 
93d17ae9e706969e319980b4e00dd0a6c040c8d62cd41d1de34ab997e28798329e00d3dc3893da45ce5bc066fcf70dd5d8e98a79fbac8fc06d33a073a97b7b89
 SHA512 
195faecd7709eb908227cda7111e1b736ecf96120f9b615f1dc0a9a1cc61947e2ad4fedc7fc81d14405b51a4c8a216f81b8ed1d1d603a9fa451a38b4637e2bae
-DIST atty-0.2.11.crate 5916 BLAKE2B 
e502c23faaa9dd27cc5865b68a721b0403071edb483fca0c745707f4c0ca1b1787b5677b2d8ad7f327b8f5588ba784126ce78496c1db54f7ca4ce0ccea669499
 SHA512 
9d6417dc1e8abdb4969418525b36c451274fd76769adb57bef9875ef62ef521c50d58626ebc4f96d2bea32cbadb6999fd67653b570293d7253b403b6d0736c79
-DIST backtrace-0.3.9.crate 31054 BLAKE2B 
5d90d098d149198eabe4665b1eb2cf41c5f392ddc1c5cc499047dd72533d79b679943781445f7d86f269a15d3f8ca2775dfe89123935d32ccef4b8151547283e
 SHA512 
edb485ad27d19e0cccea123cc6a9db5b3222831e48722d8fcec7349fd1c4b62b67ab1f488fea4973da82c8f17a86aeba4ea8f2fc1aa60f6528833cda39efa637
-DIST backtrace-sys-0.1.24.crate 522332 BLAKE2B 
aebfee4b257b44ce127f3bc13d7622dcb0d6cb4c1e73d504b8d77b6c0b1ed47e7ca310cb6b41798cd13e6589739c352d9e33072e20fae0547d292312604a27d9
 SHA512 
7e7b279bbe5f3d8bc2ff3234df11d7b08cb09209c861c24b3fa67dcd89699bd80a6fbf93d3b0b287544f73792983172bfb5e5c86caedee59f09ee66d259fd0c7
-DIST bitflags-1.0.4.crate 15282 BLAKE2B 
63f5feb47460c344983cef8822804b1c4ac2f3adfffcf206df2b05fafb9c7bfd73986721cde46705a3e4a0dc72a40683e4d369f2339adfc1b55208bad1766875
 SHA512 
81850d2be62eabb8486024ab263da67e6eb8ebfa732cac3a5d46a9186c564b2065cba15fa3da468bbd26eaf2b67038680e5de19d5dd99d78f60dae8a1776c8de
-DIST bufstream-0.1.3.crate 8375 BLAKE2B 
6e64cfb797283f935ccf309fc054eda4c362fc482b68360619b1146698a0db5023013ded3f1c64ecfa29b55f10dcb8c230d853f5088f28da9ea1c018147d9247
 SHA512 
b615056dbdfb181c622acd734d7b7b67f2604161f90db81043fe109c2c7396cf81fa3a2b4878571968858311e46034072c54e3b181f9a8217aa276b2145c95b1
-DIST cargo-0.29.0-aarch64-unknown-linux-gnu.tar.xz 4095684 BLAKE2B 
ab53c0ceba2524727b09a1d76c42e0a6bc434c35d2a530003037f75430d29a8906497981984e8e497a61154ac3b0ff443718570d312a29d125cfa3b292629922
 SHA512 
6c537bf28bd6b5891c1eae052896cc9b4b1485084a3c384e92c2502a29e4d9465efdaf8b5c7e3ab9724e844345e6fb966234d352428c1b56125d1915e00b87dc
-DIST cargo-0.29.0-arm-unknown-linux-gnueabi.tar.xz 4716672 BLAKE2B 
f14d8091c4ef34da769b22c2301b423e0f9a120f881dc1db3375413f21372c7cea1fb76b079b7cccf52d68e4813a12881098e9e34feed4725c129204a90a31b5
 SHA512 
ec732ef951f2f7c70df167d60255409195f4d6c3efeeb7b1469680b919a4218a443bc475bfd08cce7da4a30f937714038625a21d1c17342cc7a14c66345cbe22
-DIST cargo-0.29.0-arm-unknown-linux-gnueabihf.tar.xz 4754612 BLAKE2B 
880f97d7081138946c090936171767b8aaa82f5c07f25c53c00572427ccda29d14279cc7209c08891b34787854169185fa1aca89dfe91384002e7672fb585199
 SHA512 
7675251e5ea163e23e27501ba6e534b5d79a4eb3d411604f42b31f604c21d491ecad77ae40552738ce9c05e630ebf162c47827e9c4c36c3cf960b1e3f3ace2d0
-DIST cargo-0.29.0-armv7-unknown-linux-gnueabihf.tar.xz 4748580 BLAKE2B 
3528f3e7412d6562d2551148ba8945cd70de4bb1565fdb184a4aba3d44fee4dae6edeb150a38a70ac4b8fabd056d366e4a3ce68dd20e9cae123362b2a6f48b39
 SHA512 
db6cb3252b484006c51cfefc0fc6adad04bb29e71892323965072e9b3e2441a760fe268fc46c9272318b7ff60834b41bc0843592371c029ea07dd744be6a1489
-DIST cargo-0.29.0-i686-unknown-linux-gnu.tar.xz 4996976 BLAKE2B 
6bc94fcb274ee97bee3f17213f5afef7a7d92276e1865e0648806ea4b8aac663561fc36826ac8f38abf43ee71b0be8f9d3688d759cf638628e3004bf96bf23a6
 SHA512 

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

2019-06-18 Thread Thomas Deutschmann
commit: 03c458f082003684b20eb862c9740f88df5052ae
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jun 19 00:01:51 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jun 19 00:01:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03c458f0

www-client/firefox: x86 stable (bug #688332)

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

 www-client/firefox/firefox-60.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/firefox/firefox-60.7.1.ebuild 
b/www-client/firefox/firefox-60.7.1.ebuild
index 7f849bc99a9..9fed9f7ec27 100644
--- a/www-client/firefox/firefox-60.7.1.ebuild
+++ b/www-client/firefox/firefox-60.7.1.ebuild
@@ -43,7 +43,7 @@ inherit check-reqs flag-o-matic toolchain-funcs eutils 
gnome2-utils llvm \
 DESCRIPTION="Firefox Web Browser"
 HOMEPAGE="https://www.mozilla.com/firefox;
 
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 
 SLOT="0"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"



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

2019-06-18 Thread Thomas Deutschmann
commit: bec2ab7ed7e9fb426cb06cac0fa5fd58ee1b460b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 22:24:22 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 22:32:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bec2ab7e

www-client/firefox: bump to v67.0.3

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

 www-client/firefox/Manifest  |  92 
 www-client/firefox/firefox-67.0.3.ebuild | 752 +++
 2 files changed, 844 insertions(+)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 4a8b7832863..da7fa706aa9 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -461,4 +461,96 @@ DIST firefox-67.0.2-xh.xpi 475487 BLAKE2B 
3b696986e4cc7932bde70f2b1874cf0d1337e9
 DIST firefox-67.0.2-zh-CN.xpi 537496 BLAKE2B 
f2d0ea6776bb697583af490254494be305d6b5b03339fc7f4729a6802dc059e98dc3dc8dfb9a97d4fee1f56044d37308d012569bfbf9c391a27bf16181af
 SHA512 
12368386f0574cbccd03cb2943e3e88869972bd4eb8d10c186c5b81d1ccb75f70b801d0f383ea7f5d486a5d7cf070579d271357d6d2bd834b33ffcebb6de37dd
 DIST firefox-67.0.2-zh-TW.xpi 537627 BLAKE2B 
66c7342b49eb90b98b9a7787d06ae13b562773d12ea1a34e00c6f25c2b8b8e984b3f850d4eb3faca2bcddb70cf4031be98cbdff3fdc1a293fbbbec350feb53fb
 SHA512 
6bbfa463041423fa6248dfb5ed9418e0e622aa19a85a363802cf1913e809307a719b4e834eb86374e3ac1cd385fb7f4be8f297cd2d9e95bbd0668b8cb620
 DIST firefox-67.0.2.source.tar.xz 283090748 BLAKE2B 
a9c668976ad810c558e603b05b320d16f711aa94316a51fc6846bf76dd1e5f8a3509df801b94c01c8e1b84fa4399311f3d353e559458b0a3c15f00949c3f4824
 SHA512 
14da0aa23571c83dfd4cf1b33027434425c99c4b8838d335cfbd93ef60ad936cd7e7f60ad84be688f434371c9b49142e1020df63ac3e65f78b6595f5a8c19590
+DIST firefox-67.0.3-ach.xpi 473028 BLAKE2B 
dbc6766287b20bcf659287dd4349e8d89a635cb01246816c06ceab8125d1a6d9b9935560ae1a79ea6e63d2618f589ea15de654eb0062a0cf00bafe3153cba11f
 SHA512 
07f6ad0940b05349c51e886054e569758a1e027e64cec4cfaa4255e9b69b06d4d83fa3645ceb075218f49f4556f77ff4c10c11ed914181ef176daf5c535cc6ed
+DIST firefox-67.0.3-af.xpi 456847 BLAKE2B 
8b7ac04a02cb1e8133caabd99c0ac3750aaa734a9561aa1fbce7625a4cb4a17f4b989546cb808cdc4e5d8095113cfb16bece049e5b319017b9cbb14206d8dd0b
 SHA512 
9137efa1e855a3c9f30f7467a960feb0c684f43162a36a19e9b00ebf55cccd2ada8112ef60536fdcf5a87f8bc923d160b484abbe1fb33d15074e30127affb56f
+DIST firefox-67.0.3-an.xpi 486605 BLAKE2B 
b8bb56730b043a2a5414f6c657d5afeee113277964285e298803aa3d6bdac30a995266734b2a57d2e154c82b468bfe4abf553bf87860364cca4059804181d594
 SHA512 
1a47b01ed6f094bbb0e24062d3ba0017b84780640a3f50e1e4f7a35ff015933063f5be8ee55fb9249d1cf7bb27da77911cf613183fb2eb5b458aacf1b98b1fa6
+DIST firefox-67.0.3-ar.xpi 541852 BLAKE2B 
472e81bddf79e5d2c0244164148a45662ac6e91f86b8f07b14d3e3d9420209dd2a66f0f613403edb8ec63d6aea3bfe29949f23ac6f6996b2e2389dde492167f9
 SHA512 
2f90dfa8381e76c6db5da2538e8935a3db6e4947a52f0f5a306a2111ca7864c95e1509110b1cddc6415130243dc4fbe69f4ab1e9ef19dbd5258288f8482c7844
+DIST firefox-67.0.3-as.xpi 493295 BLAKE2B 
a0a7f76a12b4e0e35b4f9f412e764caf63c05bcad6825aad6f557cf540170d7e6f9d4ebe7989c424e04474d2f4228902a7ae864a91d5b9080d5e8e176c808f3d
 SHA512 
150e12ee088ffc34693ae0952437b75bef8830d06ea8819ea703eabca0f7d95ed2f2edda4520d637a04f3bd52628020791cce765374ec8988e2a0252bdc53f41
+DIST firefox-67.0.3-ast.xpi 485535 BLAKE2B 
5afa00340f0f3190290267deb07a9e118d4fa839672886964918c840ac453115044edcf4d9618f4e3a25ee48801d94e78000805ecab27aff66f98d947d4e8b6b
 SHA512 
212c515f537993ac0dbf39765d156ff71874c71d30c37120eab3ab75d520220e3c1f77b9671ecb466d7146a975bd4e4e3267351c1c929f57749bddf7260fc7a0
+DIST firefox-67.0.3-az.xpi 512473 BLAKE2B 
a50a79c0ec22d18fe5bde2eefa9f079a77cc5b4de9b9a113edc0700f7863c00fd69bcfb175ee157a776a7bc91ff525dd1355d72588a03dc4833275cb4a10d592
 SHA512 
f72476691b26537bc6e49d4ca23273c47b8a965c6d6cf0471743bf2e26fbb4627940b77319fb351991f8f2b8eaca4c15efbbdf7a8a409d6f0aecdffd25ba6d46
+DIST firefox-67.0.3-bg.xpi 549330 BLAKE2B 
7f3476048b0d434bc22bfb788b3376aafb99f876284820ca66990569d532f5d57f68cbfa7a036cbb27cc5e63d4adc3b85ebaff111da8b92c6e7921605deccdf6
 SHA512 
bf5603d0bf08307bcdeaf0e80dcdc56b8d933d1fc18a5fb7299048d5c78935f473ee08b533b66580b83282e3f427d74db1a281699f784d62fdd054b3485c0159
+DIST firefox-67.0.3-bn-BD.xpi 567141 BLAKE2B 
023292f461c2ff6d9e63729db27df7f655514690f0f3545f4f91b8ad9750e4dcf46c257bc4886ead6d8be63daba5cf689235460446bc7af447fd5dc25091eb42
 SHA512 
a3e20f4e413ec3a38a180d8786f4b5ad793353405ca38effdea72c68bd610f32fd61c7de8bbf29a0d82df35eb4d2edf26a9030a88fedfef63832740c1aac49f4
+DIST firefox-67.0.3-bn-IN.xpi 556830 BLAKE2B 
66df9bbbe000160c11f170df65bf2e1c45e13b1cabb4be899ac64b64ed4b21266386d0dbc545d100b157688aeec652e71533a4b23cc7757b0578e7cd84b7003d
 SHA512 
2957df30224ddb03c0acf1b99ef55dacb294179477549eaf62255681154f9f7327cd5808e8046380c3951d28157a871df9ce73c85858c9cc1f5f3954dc5853d0
+DIST firefox-67.0.3-br.xpi 501330 BLAKE2B 

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

2019-06-18 Thread Thomas Deutschmann
commit: 4ea906cd03d2da9f8fee127d39fd37ac6bf4d3a9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 22:31:49 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 22:32:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ea906cd

www-client/firefox: bump to v60.7.1

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

 www-client/firefox/Manifest  |  92 +++
 www-client/firefox/firefox-60.7.1.ebuild | 436 +++
 2 files changed, 528 insertions(+)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index da7fa706aa9..64656e5ccac 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -184,6 +184,98 @@ DIST firefox-60.7.0esr-xh.xpi 527565 BLAKE2B 
6b357e8887f61aed2ed513efb9beb034d12
 DIST firefox-60.7.0esr-zh-CN.xpi 559980 BLAKE2B 
cee4fab650cd87bd8e1c4bd14500c4036d54fdcd6524fd24d5e67f08a6926ebae10a70f0a961942a2ce752e8017cad965bf9e45ec32e825f35e5605539e30a86
 SHA512 
d5d63cad9411d615c0aa0814beca1f48cc033327ae989641a9e4930a8f6e7e5e6a4cbcb875b26fa5e82b631aa9a99aa35ad3710308933cbfbb0a15b9686094de
 DIST firefox-60.7.0esr-zh-TW.xpi 558304 BLAKE2B 
94736adc0f3c74466f560ccfbab45ad6cdf436f2987cba65d25995dda15838109f5189e4d4bc87bd64f8a232d953ad69cdbe56cfc3ca3562b780a465180f0eae
 SHA512 
dc2359c2d7245592034b58558357f986e612c119b54ba2b979ce1df0e7dab2a5a0a1422fad6958349a03832c96e9cf1df32bd55be167025a0c8eab5f14a27146
 DIST firefox-60.7.0esr.source.tar.xz 268497160 BLAKE2B 
20bad3abe5e6bfbf203944e68a88e91ce669d966d6dd56f8caf29706ef0ae5b93d442e672354383fbd413e9264efae96e6ceb20bbcce1df912d43c923f27
 SHA512 
c2152857f5f1c816a12fcf5c450268025ee47ee9299ae3355650d86c7c97191b731123a4964154222ca5ba1edc44fee0d1d5f803ae9515841283ecaff6dc9a55
+DIST firefox-60.7.1esr-ach.xpi 512788 BLAKE2B 
155c72980b4a0573f2d4e2d80f1bfce095bc2aedb6ab265b2fd4aa35046c0a91ee64a8f00dcea957a7889133e8969efdb49c76dcd67f7a8a0e6b4532aeebab0d
 SHA512 
59980e52d51095a6dfff48044fc2a1fd8c237f251dc1dc681eb0f799700e1b4d08c10862a34a77a41a6d5b90cd96ac6271af6ad63c0d6be815c0e687d6218ccf
+DIST firefox-60.7.1esr-af.xpi 503031 BLAKE2B 
74cd2d6169cc455fdff7a93d8327388f8247375bc362b5f0efbbf3f2fef80a05f73c3d761a09b427057e8de81da3b8b4bd2a551d4f1b627a4639bf3117f252f7
 SHA512 
5187dbbd3e025ab7523377f262e02a7ff9a83091b657ea7f22da85de78a71a1f839af05a6ec38aaa2b1c38254b9cd3b95e1ba69dd1ffd6d71919c63e8b3dd469
+DIST firefox-60.7.1esr-an.xpi 536226 BLAKE2B 
f110e39d28d98c916b2b74b05c634f87a8ccb52b41c87931eb2449301d723af9b2703be411e2ae9506138bd0f9193da315d511c207d9030efb7bf926a627c1c2
 SHA512 
524e75c7e186aeffb29360fb6044d334d37e0e0495259bc6b12b43c44566a26159cc04b715174ad836086e4950e0f012ea118aeed33d8cca99a25b2a8872c7a3
+DIST firefox-60.7.1esr-ar.xpi 563542 BLAKE2B 
448a7a88254bc27922d30f9a6c4657c8d2f6581baa3bf976a73cfab1fcecf919de7b77544ec83a128c622d11815c26cbcd2f56196245aff1bc316308b14cfad0
 SHA512 
33ee7cee0b06ec8930dae61e5b3e48c4c1e51fafbb127f756e88809f8ea83d97f6fcc154d78d26cb944230d0a80c6b3f6a695300d81aa2cd8f0c8fc226606e9c
+DIST firefox-60.7.1esr-as.xpi 546437 BLAKE2B 
7be219893258f1ecb3ccc27b85a79d968b6ea35986fb74a5b23a9e711de1aa23057d2a49dc9d163c619607b188b37f1094f31920bde603a3c6dc615ee1194bde
 SHA512 
84081960df0e6fca213bb86af690d7935834ccbef6cd3ed2b8aed220755651a7b081c37e3570cece78658e199a31215c988849f46224030bf21c54f5c083bb3a
+DIST firefox-60.7.1esr-ast.xpi 524607 BLAKE2B 
e6b78e54119a02a8b58927ca8cfd4030d9b099326750622675c27224c469a3e0b1f4c5614f1eb1e066e09373d073a1721ea3680d1ac0e1a1fadb98d8fb7c0255
 SHA512 
9c5d8697abdb12bf7562880d02d52bb7329f9ff715718835b600ef8138f1201612fcd2726fc24b11dd27561d74134527d1d4bff0fc8c7ee7ac4e238a6e185d35
+DIST firefox-60.7.1esr-az.xpi 540469 BLAKE2B 
608a0c8883df8d6aa553497a3189cab73abac231df19bca142628160c63cf750c6d92b0934ecc75833f00fa41914d198e5d27ffeb589503af721b3727938ab33
 SHA512 
72cd3b8071d9e5a2984d688283e431eff677b5f41dc0a77cdbaabc8a259e3e5a1ebbe734cb4a0c1e6038c8fce8adcd6d9f244122acc049dbe84f5ecccbb2e2f2
+DIST firefox-60.7.1esr-bg.xpi 589576 BLAKE2B 
458375e0c2ad6fd280fc1e548cbcf22f6b5bfb47fd93598cb630742c6ff4d9ed1dc0963344329b9817503a7af57ca5eff582624db4635850b7125455e10bcd65
 SHA512 
ac2c273edd8d1367e5b17b89bd8edf993831bce9623db1ff3e3047bdf784a4c0aa27262786f7af03c9f292d36cc2c4bbca9b33c2421f6ef4a4bef945c843f887
+DIST firefox-60.7.1esr-bn-BD.xpi 606817 BLAKE2B 
04699643a433dd6a266feb07f9ff4f6f7335e46af808a36512fd85389ad7a17ac4016022c51c0fba6f9bf0b855dab0e4c6d1be0e9f6045f2eed81b39453a396b
 SHA512 
351d674efd9acf3c68f8c2f96c7325338f402a49c3239b709056592bb43840c8c9f0fcf302cbc9c9881d21e55e2552d0cec72996ec278404e13162047f9b815e
+DIST firefox-60.7.1esr-bn-IN.xpi 587255 BLAKE2B 
b2f7b13ceae7f7b119c3f358008ab2b4d17e1473fd1eb445a99a201a2a4759c6c52d444571d9279455bfaa3466b30ad5ce5087a7fe7645b0d11b25acab3df901
 SHA512 
90d0056ac6ad76d7389b777c69d89fc6d413b4b5a543e57b1ef8dc1a5e1e327a919fa23d9052a277410b1da788150d892897a7951ab02cf39b11d293386a83b3

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

2019-06-18 Thread James Le Cuirot
commit: 929d158a5182b441eced0dc5bb587527b06f8c5e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Tue Jun 18 21:41:07 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 21:41:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=929d158a

profiles: Last-rite games-kids/pytraffic

Web site and SRC_URI dead. Last release in 2007. Removal in 30 days.

Bug: https://bugs.gentoo.org/688134
Signed-off-by: James Le Cuirot  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 3af470c58a3..590aa9ec4cf 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# James Le Cuirot  (18 Jun 2019)
+# Web site and SRC_URI dead. Last release in 2007. Removal in 30
+# days. See bug #688134.
+games-kids/pytraffic
+
 # David Seifert  (15 Jun 2019)
 # Abandoned upstream, last release 8 years ago,
 # multiple bugs, fails with boost 1.70 and



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

2019-06-18 Thread James Le Cuirot
commit: 31599b4563537af2a90d7a890cfc43e0e88089b4
Author: James Le Cuirot  gentoo  org>
AuthorDate: Tue Jun 18 21:42:05 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 21:42:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31599b45

profiles: Last-rite games-misc/yadex

Web site and SRC_URI dead. Has required heavy patching. Superseded by
games-util/deutex. Removal in 30 days.

Signed-off-by: James Le Cuirot  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 590aa9ec4cf..3cfe463b8aa 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# James Le Cuirot  (18 Jun 2019)
+# Web site and SRC_URI dead. Has required heavy patching. Superseded
+# by games-util/deutex. Removal in 30 days.
+games-misc/yadex
+
 # James Le Cuirot  (18 Jun 2019)
 # Web site and SRC_URI dead. Last release in 2007. Removal in 30
 # days. See bug #688134.



[gentoo-commits] repo/gentoo:master commit in: games-fps/freedm-data/

2019-06-18 Thread James Le Cuirot
commit: 0b5ca5ffbcdd28eedd3ec0a6c41f4dabd6ab608e
Author: William Breathitt Gray  gmail  com>
AuthorDate: Fri Jun 14 10:13:08 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 21:20:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b5ca5ff

games-fps/freedm-data: New package

Closes: https://bugs.gentoo.org/687674
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12225
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/freedm-data/Manifest  |  1 +
 games-fps/freedm-data/freedm-data-0.11.3.ebuild | 28 +++
 games-fps/freedm-data/metadata.xml  | 36 +
 3 files changed, 65 insertions(+)

diff --git a/games-fps/freedm-data/Manifest b/games-fps/freedm-data/Manifest
new file mode 100644
index 000..3c4282d5197
--- /dev/null
+++ b/games-fps/freedm-data/Manifest
@@ -0,0 +1 @@
+DIST freedm-0.11.3.zip 7853186 BLAKE2B 
5f399233e0d1f1c61d8170dc8e13ca0c6efe79255a87511027ad69e9ab7cf21045e9bc7f40fec6fa3604b3c77590cde8e85b2e9a53e1d89c5aeaf67bffa7023e
 SHA512 
263f126e519a883b828b4f321363fe0f8c557ae58b76c6b3e28aa60e86c15fcc78c866bf003fc523276cefbb431023de64f09b026e85b0a0c7c85a88d1f47cd0

diff --git a/games-fps/freedm-data/freedm-data-0.11.3.ebuild 
b/games-fps/freedm-data/freedm-data-0.11.3.ebuild
new file mode 100644
index 000..43ac7804c6a
--- /dev/null
+++ b/games-fps/freedm-data/freedm-data-0.11.3.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Game resources for FreeDM"
+HOMEPAGE="https://freedoom.github.io;
+SRC_URI="https://github.com/freedoom/freedoom/releases/download/v${PV}/freedm-${PV}.zip;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="app-arch/unzip"
+
+S="${WORKDIR}/freedm-${PV}"
+
+DOOMWADPATH=/usr/share/doom
+
+src_install() {
+   insinto ${DOOMWADPATH}
+   doins freedm.wad
+   dodoc CREDITS.txt README.html
+}
+
+pkg_postinst() {
+   elog "FreeDM WAD file installed into ${DOOMWADPATH} directory."
+}

diff --git a/games-fps/freedm-data/metadata.xml 
b/games-fps/freedm-data/metadata.xml
new file mode 100644
index 000..5a1b13afef9
--- /dev/null
+++ b/games-fps/freedm-data/metadata.xml
@@ -0,0 +1,36 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   FreeDM is a fast-paced competitive deathmatch game, part of the 
Freedoom
+   project. Rather than the usual single-player focused levels, 
these
+   contain no monsters and are intended for deathmatch only. It is
+   compatible with mods for Doom II.
+
+   The Freedoom project aims to create a complete free content 
first person
+   shooter game. But Freedoom by itself is just the raw material 
for a
+   game: it must be paired with a compatible game engine to be 
played.
+
+   id Software released the source code to their classic game, 
Doom, under
+   the GNU General Public License. This means that the program 
code that
+   powers Doom is free; Freedoom complements this with free levels,
+   artwork, sound effects and music to make a completely free game.
+   
+   
+   vilhelm.g...@gmail.com
+   William Breathitt Gray
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   ga...@gentoo.org
+   Gentoo Games Project
+   
+   
+   https://github.com/freedoom/freedoom/issues
+   https://freedoom.github.io
+   freedoom/freedoom
+   
+



[gentoo-commits] repo/gentoo:master commit in: games-fps/doom-data/

2019-06-18 Thread James Le Cuirot
commit: 27f5eade487df412b3d6b8501de6440dc9a16cb0
Author: William Breathitt Gray  gmail  com>
AuthorDate: Fri Jun 14 11:30:35 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 21:20:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27f5eade

games-fps/doom-data: Bump to version 1.9

Remove doomsday USE flag since users can install games-fps/doomsday
directly. Install location changed to the /usr/share/doom directory.

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/doom-data/Manifest  |  2 +-
 games-fps/doom-data/doom-data-1-r2.ebuild | 40 ---
 games-fps/doom-data/doom-data-1.9.ebuild  | 26 
 games-fps/doom-data/metadata.xml  | 14 +--
 4 files changed, 34 insertions(+), 48 deletions(-)

diff --git a/games-fps/doom-data/Manifest b/games-fps/doom-data/Manifest
index bfae26b0324..ca5011dac2e 100644
--- a/games-fps/doom-data/Manifest
+++ b/games-fps/doom-data/Manifest
@@ -1 +1 @@
-DIST doom1.wad.bz2 1689021 BLAKE2B 
45ab359525cec44ac6f58110be80e76a75e0d5e186c1fc6bb67e055e7a7e03d2596c2e99cb3636484245d1af85d6b93830f07d8548df99f5f40e55d249bcef16
 SHA512 
f3aa78fd1e36d2dbd176c8c5284f8cee4f39d8e34df5386fd668565e752410e2b776413c78c1e7a3571695a1668f1e4820338ebc9a2b1a0ed1a81896260534fe
+DIST doom1.wad 4196020 BLAKE2B 
d242892e97f4684d1483192a5fc5b5fe3c662f2b9d61078e869758f400ca9e6d4e81fe51a6ffe562bbbd9d66f3db33f9a780780095aeeba691df1fe9407b1430
 SHA512 
6c2798417f0a0feaa1ab8777edb54e821eb336acfe953d62214dac46dd62429f58da97f9d13beac5fdaf944e70a07c60c96af9a885a0daf38eff1619cde71c2a

diff --git a/games-fps/doom-data/doom-data-1-r2.ebuild 
b/games-fps/doom-data/doom-data-1-r2.ebuild
deleted file mode 100644
index dcbff4655ed..000
--- a/games-fps/doom-data/doom-data-1-r2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils
-
-DESCRIPTION="Collection of doom wad files from id"
-HOMEPAGE="http://www.idsoftware.com/;
-SRC_URI="mirror://gentoo/doom1.wad.bz2"
-
-LICENSE="freedist"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="doomsday"
-
-RDEPEND="doomsday? ( games-fps/doomsday )"
-DEPEND=""
-
-S="${WORKDIR}"
-
-src_install() {
-   insinto /usr/share/doom-data
-   doins *.wad
-   if use doomsday; then
-   # Make wrapper for doomsday
-   make_wrapper doomsday-demo "jdoom -file \
-   /usr/share/doom-data/doom1.wad"
-   make_desktop_entry doomsday-demo "Doomsday - Demo"
-   fi
-}
-
-pkg_postinst() {
-   if use doomsday; then
-   elog "To use the doomsday engine, run doomsday-demo"
-   else
-   elog "A Doom engine is required to play the wad"
-   elog "Enable the doomsday use flag if you want to use"
-   elog "  the doomsday engine"
-   fi
-}

diff --git a/games-fps/doom-data/doom-data-1.9.ebuild 
b/games-fps/doom-data/doom-data-1.9.ebuild
new file mode 100644
index 000..73c1f9cd04d
--- /dev/null
+++ b/games-fps/doom-data/doom-data-1.9.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="The IWAD used by the shareware version of Doom"
+HOMEPAGE="http://www.idsoftware.com;
+SRC_URI="http://distro.ibiblio.org/pub/linux/distributions/slitaz/sources/packages/d/doom1.wad;
+
+LICENSE="freedist"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+S="${DISTDIR}"
+
+DOOMWADPATH="/usr/share/doom"
+
+src_install() {
+   insinto ${DOOMWADPATH}
+   doins doom1.wad
+}
+
+pkg_postinst() {
+   elog "Doom WAD file installed into the ${DOOMWADPATH} directory."
+   elog "A Doom engine is required in order to play the doom1.wad file."
+}

diff --git a/games-fps/doom-data/metadata.xml b/games-fps/doom-data/metadata.xml
index 343e8213e1c..4ec24fa26e9 100644
--- a/games-fps/doom-data/metadata.xml
+++ b/games-fps/doom-data/metadata.xml
@@ -1,11 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-ga...@gentoo.org
-Gentoo Games Project
-  
-  
-Add wrapper to run it within doomsday
-  
+   
+   DOOM1.WAD is the IWAD used by the shareware version of Doom. It 
is a cut-down version of DOOM.WAD which contains only the first episode. Later 
on, "Doom 1" became a retronym for Doom after the release of Doom II.
+   
+   
+   ga...@gentoo.org
+   Gentoo Games Project
+   
 



[gentoo-commits] repo/gentoo:master commit in: games-fps/freedoom/

2019-06-18 Thread James Le Cuirot
commit: 6dd37f121e4cecb9fbcddcae382d089a4ca7
Author: William Breathitt Gray  gmail  com>
AuthorDate: Sun Jun  9 02:55:09 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 21:20:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dd37f12

games-fps/freedoom: Add doom engine runtime dependency

Freedoom is distributed by upstream with the intention to be run by a
doom engine; this is also the expectation of end users. This patch adds
a doom engine as a runtime dependency for Freedoom.

Three possible doom engines are listed in RDEPEND: games-engines/odamex,
games-fps/doomsday, games-fps/gzdoom. The games-fps/gzdoom package is
set to preferred as it is the recommendation of the Freedoom upstream
team.

Closes: https://bugs.gentoo.org/687672
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/freedoom/freedoom-0.11.3-r1.ebuild | 24 
 1 file changed, 24 insertions(+)

diff --git a/games-fps/freedoom/freedoom-0.11.3-r1.ebuild 
b/games-fps/freedoom/freedoom-0.11.3-r1.ebuild
new file mode 100644
index 000..2f5fd2f5c58
--- /dev/null
+++ b/games-fps/freedoom/freedoom-0.11.3-r1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A complete free-content single-player focused game based on the 
Doom engine"
+HOMEPAGE="https://freedoom.github.io;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   ~games-fps/freedoom-data-${PV}
+   || (
+   games-fps/gzdoom
+   games-engines/odamex
+   games-fps/doomsday
+   )
+"
+
+pkg_postinst() {
+   elog "If you are looking for a multiplayer-focused deathmatch game, 
please install games-fps/freedm."
+}



[gentoo-commits] repo/gentoo:master commit in: games-fps/freedm/

2019-06-18 Thread James Le Cuirot
commit: d1206c0f992e970309c06520c45da2e32fc78bde
Author: William Breathitt Gray  gmail  com>
AuthorDate: Sun Jun  9 03:25:19 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 21:20:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1206c0f

games-fps/freedm: New package

Bug: https://bugs.gentoo.org/687674
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/freedm/freedm-0.11.3.ebuild | 24 +++
 games-fps/freedm/metadata.xml | 36 +++
 2 files changed, 60 insertions(+)

diff --git a/games-fps/freedm/freedm-0.11.3.ebuild 
b/games-fps/freedm/freedm-0.11.3.ebuild
new file mode 100644
index 000..342ceb06a7f
--- /dev/null
+++ b/games-fps/freedm/freedm-0.11.3.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A 32-level game designed for competitive deathmatch play."
+HOMEPAGE="https://freedoom.github.io;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   ~games-fps/freedm-data-${PV}
+   || (
+   games-fps/gzdoom
+   games-engines/odamex
+   games-fps/doomsday
+   )
+"
+
+pkg_postinst() {
+   elog "If you are looking for a single-player focused game, please 
install games-fps/freedoom."
+}

diff --git a/games-fps/freedm/metadata.xml b/games-fps/freedm/metadata.xml
new file mode 100644
index 000..5a1b13afef9
--- /dev/null
+++ b/games-fps/freedm/metadata.xml
@@ -0,0 +1,36 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   FreeDM is a fast-paced competitive deathmatch game, part of the 
Freedoom
+   project. Rather than the usual single-player focused levels, 
these
+   contain no monsters and are intended for deathmatch only. It is
+   compatible with mods for Doom II.
+
+   The Freedoom project aims to create a complete free content 
first person
+   shooter game. But Freedoom by itself is just the raw material 
for a
+   game: it must be paired with a compatible game engine to be 
played.
+
+   id Software released the source code to their classic game, 
Doom, under
+   the GNU General Public License. This means that the program 
code that
+   powers Doom is free; Freedoom complements this with free levels,
+   artwork, sound effects and music to make a completely free game.
+   
+   
+   vilhelm.g...@gmail.com
+   William Breathitt Gray
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   ga...@gentoo.org
+   Gentoo Games Project
+   
+   
+   https://github.com/freedoom/freedoom/issues
+   https://freedoom.github.io
+   freedoom/freedoom
+   
+



[gentoo-commits] repo/gentoo:master commit in: games-fps/freedoom/

2019-06-18 Thread James Le Cuirot
commit: 1e25da9d8a91f0a89b1225fa1e76785c84c49bee
Author: William Breathitt Gray  gmail  com>
AuthorDate: Mon Jun 10 09:58:33 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 21:20:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e25da9d

games-fps/freedoom: Drop old version

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/freedoom/Manifest   |  2 --
 games-fps/freedoom/freedoom-0.11.3.ebuild | 30 --
 2 files changed, 32 deletions(-)

diff --git a/games-fps/freedoom/Manifest b/games-fps/freedoom/Manifest
deleted file mode 100644
index fcbe3fd6369..000
--- a/games-fps/freedoom/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST freedm-0.11.3.zip 7853186 BLAKE2B 
5f399233e0d1f1c61d8170dc8e13ca0c6efe79255a87511027ad69e9ab7cf21045e9bc7f40fec6fa3604b3c77590cde8e85b2e9a53e1d89c5aeaf67bffa7023e
 SHA512 
263f126e519a883b828b4f321363fe0f8c557ae58b76c6b3e28aa60e86c15fcc78c866bf003fc523276cefbb431023de64f09b026e85b0a0c7c85a88d1f47cd0
-DIST freedoom-0.11.3.zip 18889307 BLAKE2B 
052d7f58d1beb7947f4fff3021ec0229c9746bfb7970a52d23fa44fc881d8cf3c314b8ecf0dc400c2da4e28c623695874ae75dcd1e45933fdb1826ea04f0e24b
 SHA512 
c67fc69bca87cba2ba40b91f578724feaabbd6cd64c6845fa567d6901b7a9e3145185011731c677a71f7b5a6f8707855fb573c0c09b6d47fef83b1577b211816

diff --git a/games-fps/freedoom/freedoom-0.11.3.ebuild 
b/games-fps/freedoom/freedoom-0.11.3.ebuild
deleted file mode 100644
index d4377003850..000
--- a/games-fps/freedoom/freedoom-0.11.3.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Free game content for the Doom engine"
-HOMEPAGE="https://freedoom.github.io;
-SRC_URI="https://github.com/freedoom/freedoom/releases/download/v${PV}/freedoom-${PV}.zip
-   
https://github.com/freedoom/freedoom/releases/download/v${PV}/freedm-${PV}.zip;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-BDEPEND="app-arch/unzip"
-
-S="${WORKDIR}"
-
-src_install() {
-   insinto /usr/share/doom-data/${PN}
-   doins */*.wad
-   dodoc "${P}"/CREDITS.txt "${P}"/README.html
-}
-
-pkg_postinst() {
-   einfo "Please note that WAD files location is 
/usr/share/doom-data/${PN}"
-}



[gentoo-commits] repo/gentoo:master commit in: games-fps/freedoom-data/

2019-06-18 Thread James Le Cuirot
commit: 6d3f99b17a5f609a1ebc4330ab9cb7d9aef849b5
Author: William Breathitt Gray  gmail  com>
AuthorDate: Fri Jun 14 09:29:43 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 21:20:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d3f99b1

games-fps/freedoom-data: New package

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/freedoom-data/Manifest   |  1 +
 .../freedoom-data/freedoom-data-0.11.3.ebuild  | 29 +++
 games-fps/freedoom-data/metadata.xml   | 42 ++
 3 files changed, 72 insertions(+)

diff --git a/games-fps/freedoom-data/Manifest b/games-fps/freedoom-data/Manifest
new file mode 100644
index 000..d3ca3066e92
--- /dev/null
+++ b/games-fps/freedoom-data/Manifest
@@ -0,0 +1 @@
+DIST freedoom-0.11.3.zip 18889307 BLAKE2B 
052d7f58d1beb7947f4fff3021ec0229c9746bfb7970a52d23fa44fc881d8cf3c314b8ecf0dc400c2da4e28c623695874ae75dcd1e45933fdb1826ea04f0e24b
 SHA512 
c67fc69bca87cba2ba40b91f578724feaabbd6cd64c6845fa567d6901b7a9e3145185011731c677a71f7b5a6f8707855fb573c0c09b6d47fef83b1577b211816

diff --git a/games-fps/freedoom-data/freedoom-data-0.11.3.ebuild 
b/games-fps/freedoom-data/freedoom-data-0.11.3.ebuild
new file mode 100644
index 000..5e38d534c7e
--- /dev/null
+++ b/games-fps/freedoom-data/freedoom-data-0.11.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Game resources for Freedoom: Phase 1+2"
+HOMEPAGE="https://freedoom.github.io;
+SRC_URI="https://github.com/freedoom/freedoom/releases/download/v${PV}/freedoom-${PV}.zip;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="app-arch/unzip"
+
+S="${WORKDIR}/freedoom-${PV}"
+
+DOOMWADPATH=/usr/share/doom
+
+src_install() {
+   insinto ${DOOMWADPATH}
+   doins freedoom1.wad
+   doins freedoom2.wad
+   dodoc CREDITS.txt README.html
+}
+
+pkg_postinst() {
+   elog "Freedoom WAD files installed into ${DOOMWADPATH} directory."
+}

diff --git a/games-fps/freedoom-data/metadata.xml 
b/games-fps/freedoom-data/metadata.xml
new file mode 100644
index 000..08a722785b1
--- /dev/null
+++ b/games-fps/freedoom-data/metadata.xml
@@ -0,0 +1,42 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   The Freedoom project aims to create a complete free content 
first person
+   shooter game. But Freedoom by itself is just the raw material 
for a
+   game: it must be paired with a compatible game engine to be 
played.
+
+   id Software released the source code to their classic game, 
Doom, under
+   the GNU General Public License. This means that the program 
code that
+   powers Doom is free; Freedoom complements this with free levels,
+   artwork, sound effects and music to make a completely free game.
+
+   Phase 1 is the first part of the single-player game, containing 
four
+   chapters which are nine levels each, smoothly paced for beginner
+   players. It is compatible with mods for the original Doom and 
The
+   Ultimate Doom.
+
+   Phase 2 is the second major part of the single-player game, a 
massive
+   32-level chapter expanding upon the same concepts present in 
Phase 1, as
+   well as containing additional monsters and the double-barreled 
shotgun!
+   The levels in this game tend to demand more skillful play than 
the
+   previous chapters. It is compatible with mods for Doom II.
+   
+   
+   vilhelm.g...@gmail.com
+   William Breathitt Gray
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   ga...@gentoo.org
+   Gentoo Games Project
+   
+   
+   https://github.com/freedoom/freedoom/issues
+   https://freedoom.github.io
+   freedoom/freedoom
+   
+



[gentoo-commits] repo/gentoo:master commit in: games-fps/freedoom/

2019-06-18 Thread James Le Cuirot
commit: c46ad0bb86e9ef86ae138eec9be980de096aeeba
Author: William Breathitt Gray  gmail  com>
AuthorDate: Sun Jun  9 02:14:25 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 21:20:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c46ad0bb

games-fps/freedoom: Update metadata

Update maintainership info and add long description.

Closes: https://bugs.gentoo.org/687670
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/freedoom/metadata.xml | 45 ++---
 1 file changed, 38 insertions(+), 7 deletions(-)

diff --git a/games-fps/freedoom/metadata.xml b/games-fps/freedoom/metadata.xml
index 700dad658c0..08a722785b1 100644
--- a/games-fps/freedoom/metadata.xml
+++ b/games-fps/freedoom/metadata.xml
@@ -1,11 +1,42 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-ga...@gentoo.org
-Gentoo Games Project
-  
-  
-freedoom/freedoom
-  
+   
+   The Freedoom project aims to create a complete free content 
first person
+   shooter game. But Freedoom by itself is just the raw material 
for a
+   game: it must be paired with a compatible game engine to be 
played.
+
+   id Software released the source code to their classic game, 
Doom, under
+   the GNU General Public License. This means that the program 
code that
+   powers Doom is free; Freedoom complements this with free levels,
+   artwork, sound effects and music to make a completely free game.
+
+   Phase 1 is the first part of the single-player game, containing 
four
+   chapters which are nine levels each, smoothly paced for beginner
+   players. It is compatible with mods for the original Doom and 
The
+   Ultimate Doom.
+
+   Phase 2 is the second major part of the single-player game, a 
massive
+   32-level chapter expanding upon the same concepts present in 
Phase 1, as
+   well as containing additional monsters and the double-barreled 
shotgun!
+   The levels in this game tend to demand more skillful play than 
the
+   previous chapters. It is compatible with mods for Doom II.
+   
+   
+   vilhelm.g...@gmail.com
+   William Breathitt Gray
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   ga...@gentoo.org
+   Gentoo Games Project
+   
+   
+   https://github.com/freedoom/freedoom/issues
+   https://freedoom.github.io
+   freedoom/freedoom
+   
 



[gentoo-commits] repo/gentoo:master commit in: games-fps/gzdoom/

2019-06-18 Thread James Le Cuirot
commit: 22b70de1892785b9f2dc5d3bb2ddab234410cc92
Author: William Breathitt Gray  gmail  com>
AuthorDate: Wed Jun 12 23:13:06 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 20:55:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22b70de1

games-fps/gzdoom: Always build with fluidsynth and openal support

FluidSynth is a dependency of GZDoom and cannot be disabled. Similarly,
OpenAL is a dependency of GZDoom on Linux and cannot be disabled.

Closes: https://bugs.gentoo.org/687922
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12248
Signed-off-by: James Le Cuirot  gentoo.org>

 games-fps/gzdoom/gzdoom-4.1.3.ebuild | 17 +++--
 games-fps/gzdoom/metadata.xml|  1 -
 2 files changed, 7 insertions(+), 11 deletions(-)

diff --git a/games-fps/gzdoom/gzdoom-4.1.3.ebuild 
b/games-fps/gzdoom/gzdoom-4.1.3.ebuild
index d3d5f880537..48957b791ac 100644
--- a/games-fps/gzdoom/gzdoom-4.1.3.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.3.ebuild
@@ -12,24 +12,21 @@ 
SRC_URI="https://github.com/coelckers/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz
 LICENSE="BSD BZIP2 DUMB-0.9.3 GPL-3 LGPL-3 MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="fluidsynth gtk gtk2 +openal openmp"
+IUSE="gtk gtk2 openmp"
 
 DEPEND="
media-libs/libsdl2[opengl]
+   media-libs/libsndfile
+   media-libs/openal
+   media-sound/fluidsynth:=
+   media-sound/mpg123
sys-libs/zlib
virtual/jpeg:0
gtk? (
gtk2? ( x11-libs/gtk+:2 )
!gtk2? ( x11-libs/gtk+:3 )
)"
-RDEPEND="
-   ${DEPEND}
-   fluidsynth? ( media-sound/fluidsynth:= )
-   openal? (
-   media-libs/libsndfile
-   media-libs/openal
-   media-sound/mpg123
-   )"
+RDEPEND="${DEPEND}"
 
 S="${WORKDIR}/${PN}-g${PV}"
 PATCHES="${FILESDIR}/${P}-fluidsynth2.patch"
@@ -48,7 +45,7 @@ src_configure() {
-DDYN_SNDFILE=OFF
-DDYN_MPG123=OFF
-DNO_GTK="$(usex !gtk)"
-   -DNO_OPENAL="$(usex !openal)"
+   -DNO_OPENAL=OFF
-DNO_OPENMP="$(usex !openmp)"
)
cmake-utils_src_configure

diff --git a/games-fps/gzdoom/metadata.xml b/games-fps/gzdoom/metadata.xml
index 95f6ed619ed..cfd1b5ffe56 100644
--- a/games-fps/gzdoom/metadata.xml
+++ b/games-fps/gzdoom/metadata.xml
@@ -17,7 +17,6 @@
Gentoo Games Project


-   Use media-sound/fluidsynth 
for MIDI support
Enable support for GTK+2 instead of 
GTK+3





[gentoo-commits] repo/gentoo:master commit in: games-fps/gzdoom/files/, games-fps/gzdoom/

2019-06-18 Thread James Le Cuirot
commit: 48c74ea34071e23a10d1548cb719b5d0a82dc300
Author: William Breathitt Gray  gmail  com>
AuthorDate: Thu Jun 13 11:52:21 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue Jun 18 20:55:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48c74ea3

games-fps/gzdoom: Install soundfonts

Closes: https://bugs.gentoo.org/687990
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: William Breathitt Gray  gmail.com>
Signed-off-by: James Le Cuirot  gentoo.org>

 .../files/gzdoom-4.1.3-install_soundfonts.patch| 34 ++
 games-fps/gzdoom/gzdoom-4.1.3.ebuild   |  6 +++-
 2 files changed, 39 insertions(+), 1 deletion(-)

diff --git a/games-fps/gzdoom/files/gzdoom-4.1.3-install_soundfonts.patch 
b/games-fps/gzdoom/files/gzdoom-4.1.3-install_soundfonts.patch
new file mode 100644
index 000..1fe0b99d9a8
--- /dev/null
+++ b/games-fps/gzdoom/files/gzdoom-4.1.3-install_soundfonts.patch
@@ -0,0 +1,34 @@
+From 2d1c7ba17cac3ccd201e77ad01a9dd06ab22cb2e Mon Sep 17 00:00:00 2001
+From: William Breathitt Gray 
+Date: Thu, 13 Jun 2019 18:01:08 +0900
+Subject: [PATCH] Install soundfonts and WOPL/WOPN banks
+
+The INSTALL_SOUNDFONT_PATH cache entry is used to configure the
+installation directory.
+---
+ src/CMakeLists.txt | 9 +
+ 1 file changed, 9 insertions(+)
+
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 0bb16f39e..4ff15062d 100644
+--- a/src/CMakeLists.txt
 b/src/CMakeLists.txt
+@@ -1451,6 +1451,15 @@ add_custom_command(TARGET zdoom POST_BUILD
+   ${CMAKE_SOURCE_DIR}/fm_banks/gs-by-papiezak-and-sneakernets.wopn 
$/fm_banks/gs-by-papiezak-and-sneakernets.wopn
+ )
+ 
++if( WIN32 )
++  set( INSTALL_SOUNDFONT_PATH . CACHE STRING "Directory where soundfonts 
and WOPL/WOPN banks will be placed during install." )
++else()
++  set( INSTALL_SOUNDFONT_PATH share/games/doom CACHE STRING "Directory 
where soundfonts and WOPL/WOPN banks will be placed during install." )
++endif()
++install(FILES "${PROJECT_BINARY_DIR}/soundfonts" 
"${PROJECT_BINARY_DIR}/fm_banks"
++  DESTINATION ${INSTALL_SOUNDFONT_PATH}
++  COMPONENT "Soundfont resources")
++
+ if( CMAKE_COMPILER_IS_GNUCXX )
+   # GCC misoptimizes this file
+   set_source_files_properties( oplsynth/fmopl.cpp PROPERTIES 
COMPILE_FLAGS "-fno-tree-dominator-opts -fno-tree-fre" )
+-- 
+2.21.0
+

diff --git a/games-fps/gzdoom/gzdoom-4.1.3.ebuild 
b/games-fps/gzdoom/gzdoom-4.1.3.ebuild
index 48957b791ac..242bd4e9287 100644
--- a/games-fps/gzdoom/gzdoom-4.1.3.ebuild
+++ b/games-fps/gzdoom/gzdoom-4.1.3.ebuild
@@ -29,7 +29,10 @@ DEPEND="
 RDEPEND="${DEPEND}"
 
 S="${WORKDIR}/${PN}-g${PV}"
-PATCHES="${FILESDIR}/${P}-fluidsynth2.patch"
+PATCHES=(
+   "${FILESDIR}/${P}-fluidsynth2.patch"
+   "${FILESDIR}/${P}-install_soundfonts.patch"
+)
 
 src_prepare() {
rm -rf docs/licenses || die
@@ -40,6 +43,7 @@ src_configure() {
local mycmakeargs=(
-DINSTALL_DOCS_PATH="${EPREFIX}/usr/share/doc/${PF}"
-DINSTALL_PK3_PATH="${EPREFIX}/usr/share/doom"
+   -DINSTALL_SOUNDFONT_PATH="${EPREFIX}/usr/share/doom"
-DDYN_FLUIDSYNTH=OFF
-DDYN_OPENAL=OFF
-DDYN_SNDFILE=OFF



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

2019-06-18 Thread Göktürk Yüksek
commit: 835c7ad73f684e9947e69da3bdf67b78ea4fcf79
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Tue Jun 18 20:39:54 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Tue Jun 18 20:39:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=835c7ad7

dev-python/fido2: bump to 0.7.0

Package-Manager: Portage-2.3.67, Repoman-2.3.12
Signed-off-by: Göktürk Yüksek  gentoo.org>

 dev-python/fido2/Manifest   |  1 +
 dev-python/fido2/fido2-0.7.0.ebuild | 49 +
 2 files changed, 50 insertions(+)

diff --git a/dev-python/fido2/Manifest b/dev-python/fido2/Manifest
index 742dad4e512..c88ce50f4b4 100644
--- a/dev-python/fido2/Manifest
+++ b/dev-python/fido2/Manifest
@@ -2,3 +2,4 @@ DIST fido2-0.3.0.tar.gz 125907 BLAKE2B 
95054f258c775ac3b4f65608fd3b62ec4165a568c
 DIST fido2-0.4.0.tar.gz 141714 BLAKE2B 
3d57ef1598d2c84cea8a98e75cdef96b77807d4eb5951515560b43655a48bb0816c4e05ef39314b13b6bad84509e09145aeab5727a9fc6cba65ddf42f588b007
 SHA512 
4eb95a95e1f5b8b49267bc0a11e5501bd041a211ac8a6249ff9cc26ebb0b155b9d16494c18391a14feecb197d61dc50c8530b2ab38ba7e9dc600276abd6f8bcf
 DIST fido2-0.5.0.tar.gz 161562 BLAKE2B 
20d4f6c4e54366a26d5a56a84a6ff84bec0f0e22107aa612db721df8a5186a2129373ae609fb58a27008dc700b4b92d607fc2bf16aab7ac6bff8d9e7219204aa
 SHA512 
fa83848e179b9208e2a701a3330faa1dde75e5e23133540eaec896145dbde376bc424a5e59865d3cf90c5765882e22530e96df2491101d2b5dcb22cfc4bcbb87
 DIST fido2-0.6.0.tar.gz 163137 BLAKE2B 
3a30d4267a1aae00eac8fa8c05065163f992b72895097aca95dba72300bd9c30373c7537a867e532949af779e8e7528e1a3aad8f04cb0170678675294757b5d4
 SHA512 
1fb8e591480ac2ac9c405e4fc74895d55d630e462626f849952193c3ae6720104cca1da47af1f89adbcc026034f69dba12fc38577b00f9802434db2162d0d1d5
+DIST fido2-0.7.0.tar.gz 171787 BLAKE2B 
6458a606ecbbd22ac7c49b2e32b46e43c0ca184645fff4c54e0204f044a415db05b3e7187b6138e4d1b67dad9ed5faf3eb561b11b391b5105bac4299481bd95d
 SHA512 
65fdaeeb1932873fb2ae86257182eb6098d6bf4ce5ed45336327bd3e9040eddccd7f7559ece58d9bdcbfe8c98c2eb8646069556a6d00035fef5eade4907a45d8

diff --git a/dev-python/fido2/fido2-0.7.0.ebuild 
b/dev-python/fido2/fido2-0.7.0.ebuild
new file mode 100644
index 000..bc1d3938cb3
--- /dev/null
+++ b/dev-python/fido2/fido2-0.7.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_{5,6}} )
+inherit distutils-r1
+
+DESCRIPTION="Python based FIDO 2.0 library"
+HOMEPAGE="https://github.com/Yubico/python-fido2;
+SRC_URI="https://github.com/Yubico/python-fido2/releases/download/${PV}/${P}.tar.gz;
+
+LICENSE="Apache-2.0 BSD-2 MIT MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples test"
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/pyscard[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7)
+   examples? (
+   dev-python/flask[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   )
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pyfakefs[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   esetup.py test
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   if use examples; then
+   docinto examples
+   dodoc -r "${S}"/examples/.
+   docompress -x "/usr/share/doc/${PF}/examples"
+   fi
+}



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

2019-06-18 Thread Richard Freeman
commit: 951b411a5d4e3b3e3b24509f6cf97019997d18fb
Author: Richard Freeman  gentoo  org>
AuthorDate: Tue Jun 18 19:42:43 2019 +
Commit: Richard Freeman  gentoo  org>
CommitDate: Tue Jun 18 19:42:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=951b411a

media-radio/js8call: bump

Signed-off-by: Richard Freeman  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 media-radio/js8call/Manifest |  1 +
 media-radio/js8call/js8call-1.1.0.ebuild | 39 
 2 files changed, 40 insertions(+)

diff --git a/media-radio/js8call/Manifest b/media-radio/js8call/Manifest
index d4033ff69d5..f313da24189 100644
--- a/media-radio/js8call/Manifest
+++ b/media-radio/js8call/Manifest
@@ -1 +1,2 @@
 DIST js8call-1.0.0.tar.bz2 15923224 BLAKE2B 
646fd869e6029d57dfd1d9762ede2407e18a18170088df65d1b16a581709065cf45edb23533b9c89193b01a85ec326638efc99202489db54455298a5033696de
 SHA512 
64f24821c9ffd86123ede2baac46bcefd33b5dc5e0496cd44e594e79706ec2f3fdde5ce13c379addbf2bded3e392a1f0fc0f2df0298ce57a22e434a6ab6a1e7a
+DIST js8call-1.1.0.tar.bz2 15993553 BLAKE2B 
3538f746b175d0623169d2a13b5c26b334561f604fa25c8dddc15ee2a41319df8bb4c0a905be6340d4d18d87bffd8bd4e9a4eb9ceec3310f33aa22005c0e1c19
 SHA512 
99240840a59174811c30fcc07065bcb5e459c355955a59e638ca27da27c2c25df8fa7579ce1c322a76f12780c58821df9fc781cde2cb2b2851312d188787

diff --git a/media-radio/js8call/js8call-1.1.0.ebuild 
b/media-radio/js8call/js8call-1.1.0.ebuild
new file mode 100644
index 000..ed7e9ce100e
--- /dev/null
+++ b/media-radio/js8call/js8call-1.1.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-utils vcs-snapshot
+
+MY_P=${P/_/-}
+
+DESCRIPTION="Weak signal ham radio communication"
+HOMEPAGE="https://groups.io/g/js8call;
+SRC_URI="https://bitbucket.org/widefido/js8call/get/v${PV}.tar.bz2 -> 
${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc"
+
+RDEPEND="dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtmultimedia:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtconcurrent:5
+   dev-qt/qtserialport:5
+   dev-qt/qtprintsupport:5
+   virtual/libusb:1
+   media-libs/portaudio
+   sci-libs/fftw:3.0[threads,fortran]
+   virtual/fortran
+   app-text/asciidoc
+   media-libs/hamlib
+   doc? ( dev-ruby/asciidoctor )"
+DEPEND="${RDEPEND}"
+
+src_install() {
+   cmake-utils_src_install
+   rm "${D}"/usr/bin/rigctl{,d}-local || die
+   rm "${D}"/usr/share/doc/JS8Call -R || die
+}



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

2019-06-18 Thread Brian Evans
commit: ba3d84c4693ff9ab8651c20332dcc85e302c96d8
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Jun 18 19:27:48 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Jun 18 19:27:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba3d84c4

dev-php/pecl-stomp: Fix typo for bug 688308; update USE_PHP values

Closes: https://bugs.gentoo.org/688308
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Brian Evans  gentoo.org>

 dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild | 10 +++---
 dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild| 13 ++---
 2 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild 
b/dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild
index 8349a99f9a6..d8aef480451 100644
--- a/dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild
+++ b/dev-php/pecl-stomp/pecl-stomp-1.0.9-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_PHP="php5-6 php7-0"
+USE_PHP="php5-6 php7-1 php7-2 php7-3"
 PHP_EXT_NAME="stomp"
 DOCS=( CREDITS doc/classes.php doc/functions.php )
 
@@ -23,7 +23,11 @@ DEPEND="${DEPEND}
 "
 
 RDEPEND="${DEPEND}"
-PDEPEND="php_targets_php7-0? ( dev-php/pecl-stomp:7 )"
+PDEPEND="
+   php_targets_php7-1? ( dev-php/pecl-stomp:7 )
+   php_targets_php7-2? ( dev-php/pecl-stomp:7 )
+   php_targets_php7-3? ( dev-php/pecl-stomp:7 )
+"
 
 src_prepare() {
if use php_targets_php5-6 ; then

diff --git a/dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild 
b/dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild
index a4649795c92..d808c2c1b91 100644
--- a/dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild
+++ b/dev-php/pecl-stomp/pecl-stomp-2.0.2.ebuild
@@ -1,15 +1,15 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_PHP="php5-6 php7-0 php7-1 php7-2 php7-3"
+USE_PHP="php5-6 php7-1 php7-2 php7-3"
 PHP_EXT_NAME="stomp"
 DOCS=( CREDITS doc/classes.php doc/functions.php )
 
 inherit php-ext-pecl-r3
 
-USE_PHP="php7-0 php7-1 php7-2 php7-3"
+USE_PHP="php7-1 php7-2 php7-3"
 
 KEYWORDS="~amd64 ~x86"
 
@@ -19,7 +19,6 @@ SLOT="7"
 IUSE="examples ssl test"
 
 DEPEND="${DEPEND}
-   php_targets_php7-0? ( dev-lang/php:7.0[ssl?] )
php_targets_php7-1? ( dev-lang/php:7.1[ssl?] )
php_targets_php7-2? ( dev-lang/php:7.2[ssl?] )
php_targets_php7-3? ( dev-lang/php:7.3[ssl?] )
@@ -29,7 +28,7 @@ RDEPEND="${DEPEND}
php_targets_php5-6? ( dev-php/pecl-stomp:0 )"
 
 src_prepare() {
-   if use php_targets_php7-0 || use php_targets_php7-1 || use 
php_targets_php7-2 || use php_targets_php7-3 ; then
+   if use php_targets_php7-1 || use php_targets_php7-2 || use 
php_targets_php7-3 ; then
php-ext-source-r3_src_prepare
else
default
@@ -37,7 +36,7 @@ src_prepare() {
 }
 
 src_configure() {
-   if use php_targets_php7-0 || use php_targets_php7-1 || use 
php_targets_php7_2 || use php_targets_php7-3 ; then
+   if use php_targets_php7-1 || use php_targets_php7-2 || use 
php_targets_php7-3 ; then
local PHP_EXT_ECONF_ARGS=(
--enable-stomp
--with-openssl-dir=$(usex ssl "${EPREFIX}/usr")
@@ -47,7 +46,7 @@ src_configure() {
 }
 
 src_install() {
-   if use php_targets_php7-0 || use php_targets_php7-1 || use 
php_targets_php7_2 || use php_targets_php7-3 ; then
+   if use php_targets_php7-1 || use php_targets_php7-2 || use 
php_targets_php7-3 ; then
php-ext-pecl-r3_src_install
fi
 }



[gentoo-commits] repo/gentoo:master commit in: net-p2p/cpuminer-opt/

2019-06-18 Thread Craig Andrews
commit: eefb3a9b21b15b1a3d301c8eb9c51052712678c9
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jun 18 18:52:07 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jun 18 18:53:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eefb3a9b

net-p2p/cpuminer-opt: 3.9.4 version bump

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Craig Andrews  gentoo.org>

 net-p2p/cpuminer-opt/Manifest  |  1 +
 net-p2p/cpuminer-opt/cpuminer-opt-3.9.4.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/net-p2p/cpuminer-opt/Manifest b/net-p2p/cpuminer-opt/Manifest
index feb5f1b80d0..c69b0fbefa9 100644
--- a/net-p2p/cpuminer-opt/Manifest
+++ b/net-p2p/cpuminer-opt/Manifest
@@ -9,3 +9,4 @@ DIST cpuminer-opt-3.9.2.4.tar.gz 167 BLAKE2B 
47269d66576f7920564f18244f857c1
 DIST cpuminer-opt-3.9.2.5.tar.gz 1781488 BLAKE2B 
cd79f8cc363918d6db62b1970086a5758a717ca7f7fed6d204f8e83db43b777d3d5915c3195fcc3256d79dd7d849ca5cac96c47d844ea5129a2823e96a5ca806
 SHA512 
3ad01cfbda9cd6ecf1e2a2f178989da2c18f6fa7add940be7176bab65b0adafdc87f0f1dec77ddfc36a939940867a58188618ba0881fc08baa0125e240501366
 DIST cpuminer-opt-3.9.2.tar.gz 1770769 BLAKE2B 
75413f98b522e30647c9e312e1a23ee5dd3d761780dad7617b68b20d08e123ddd256f70f1494f565abe67997bb1c5fd1401ccd21e7f5492182c7ec2619bc8e00
 SHA512 
ce12c867706a3caed0104859a8f2366af85497b493f8c2a8c87a45f430abb45a29c415889c8f219450ac2f4e10bd4482f6dbe9dd125e1dde98c8a25e3fdad8c8
 DIST cpuminer-opt-3.9.3.1.tar.gz 1781503 BLAKE2B 
3f5df07d6d68343bb074367e3296e08c7e958edfcd3c2d63da83b98e8ce635a8b27d0c871061087908840b665a27556833de8d8106557f6794e9ad35d5a9d53e
 SHA512 
d8f0c298c03e4f309f28a2b555f039212d66e6a9804fa2a1f7d0a8bd3d69969c48f1ac51570b10d5bf9bc695f7a9f91e884298d85d1b6a876d5d3a8974d3b890
+DIST cpuminer-opt-3.9.4.tar.gz 1787750 BLAKE2B 
74c3304f743c7650968f90606f7f12fa26b316634f29c5157cbe774ecbe155cc950d9ab44c227909aacbabba4af98379e22a971956a1b8560ce4c096822d6a88
 SHA512 
f2dc2dbdafb7c7028521aeec5212df87274b6a5f130c116e58fc575d4cd30dcaf10b4ff59f79e782bc6466db65758770c2f4717e446641e29a3eb9ccf4770011

diff --git a/net-p2p/cpuminer-opt/cpuminer-opt-3.9.4.ebuild 
b/net-p2p/cpuminer-opt/cpuminer-opt-3.9.4.ebuild
new file mode 100644
index 000..666d27ee1c0
--- /dev/null
+++ b/net-p2p/cpuminer-opt/cpuminer-opt-3.9.4.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools flag-o-matic systemd
+
+DESCRIPTION="Optimized multi algo CPU miner"
+HOMEPAGE="https://github.com/JayDDee/cpuminer-opt;
+IUSE="cpu_flags_x86_sse2 curl libressl"
+LICENSE="GPL-2"
+SLOT="0"
+REQUIRED_USE="cpu_flags_x86_sse2"
+DEPEND="
+   dev-libs/gmp:0
+   dev-libs/jansson
+   >=net-misc/curl-7.15[ssl]
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+"
+RDEPEND="${DEPEND}"
+if [[ ${PV} == "" ]] ; then
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/JayDDee/${PN}.git;
+   inherit git-r3
+else
+   KEYWORDS="~amd64"
+   SRC_URI="https://github.com/JayDDee/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+fi
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   append-ldflags -Wl,-z,noexecstack
+   econf --with-crypto --with-curl
+}
+
+src_install() {
+   default
+   systemd_dounit "${FILESDIR}"/${PN}.service
+   insinto "/etc/${PN}"
+   doins cpuminer-conf.json
+}
+
+src_test() {
+   ./cpuminer --cputest || die
+}



[gentoo-commits] proj/portage:master commit in: repoman/lib/repoman/modules/linechecks/gentoo_header/

2019-06-18 Thread Zac Medico
commit: 31465138ddc319a98eae71f95b9fb3a07b866f62
Author: Ulrich Müller  gentoo  org>
AuthorDate: Tue Jun 18 11:48:33 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 18 18:41:31 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=31465138

repoman: Allow legacy "Gentoo Foundation" copyright before 2019.

Bug: https://bugs.gentoo.org/688278
Signed-off-by: Ulrich Müller  gentoo.org>
Signed-off-by: Zac Medico  gentoo.org>

 repoman/lib/repoman/modules/linechecks/gentoo_header/header.py | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/repoman/lib/repoman/modules/linechecks/gentoo_header/header.py 
b/repoman/lib/repoman/modules/linechecks/gentoo_header/header.py
index f94a8a50b..1f035a97e 100644
--- a/repoman/lib/repoman/modules/linechecks/gentoo_header/header.py
+++ b/repoman/lib/repoman/modules/linechecks/gentoo_header/header.py
@@ -17,7 +17,8 @@ class EbuildHeader(LineCheck):
 
repoman_check_name = 'ebuild.badheader'
 
-   gentoo_copyright = r'^# Copyright ((1999|2\d\d\d)-)?%s Gentoo Authors$'
+   gentoo_copyright = (
+   r'^# Copyright ((1999|2\d\d\d)-)?(?P%s) (?P.*)$')
gentoo_license = (
'# Distributed under the terms'
' of the GNU General Public License v2')
@@ -37,7 +38,12 @@ class EbuildHeader(LineCheck):
if num > 2:
return
elif num == 0:
-   if not self.gentoo_copyright_re.match(line):
+   match = self.gentoo_copyright_re.match(line)
+   if match is None:
+   return self.errors['COPYRIGHT_ERROR']
+   if not (match.group('author') == 'Gentoo Authors' or
+   (int(match.group('year2')) < 2019 and
+   match.group('author') == 
'Gentoo Foundation')):
return self.errors['COPYRIGHT_ERROR']
elif num == 1 and line.rstrip('\n') != self.gentoo_license:
return self.errors['LICENSE_ERROR']



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

2019-06-18 Thread Mike Pagano
commit: ee870fa4bd6342eec15c9a42842cde05ca66be83
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Jun 18 18:44:03 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Jun 18 18:44:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee870fa4

sys-kernel/gentoo-sources: Clean-up of vulerable 4.9.X series

Signed-off-by: Mike Pagano  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 sys-kernel/gentoo-sources/Manifest | 12 --
 .../gentoo-sources/gentoo-sources-4.9.178.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-4.9.179.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-4.9.180.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-4.9.181.ebuild   | 28 --
 5 files changed, 124 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index b53e47a5ba8..daae32f3969 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -52,18 +52,6 @@ DIST genpatches-4.9-175.extras.tar.xz 17356 BLAKE2B 
7a8986357ce676b6b735c4e78506
 DIST genpatches-4.9-182.base.tar.xz 3094892 BLAKE2B 
51d65136b98643b668e8a9e1e8f2f7e2db89b7c5ce73db432d2a9def5d46097e32fbfcc67bea94b84d00770cfb30cbea5bedb17f259e3efb87f0fb07312619f6
 SHA512 
c1a85146e744a13d73d3b600b6d43fe91bcd4e96b004cc2bfe8cb8ff6cdda91e84b054328eaaa70177c2132d013d00d778219947d9801933381562ddec3bf9a6
 DIST genpatches-4.9-182.experimental.tar.xz 106400 BLAKE2B 
cf46a596cacd79ba0ccea9f16a76354a20dc3d6b09d587fbe826fbd1e62cec4d2c7fdada11a9c6fa656ad2905923f136d0dbd8960af35072f315c3b31cfa8b1a
 SHA512 
6d9a887055c095d58219159d2038a6b5d869c1ede51744e15d7cccfbe3c09d4f8574e9f792b5be6a4c102ced7ae706f3b3323cebaf131b4790ef7276a1a95b56
 DIST genpatches-4.9-182.extras.tar.xz 17360 BLAKE2B 
86a04000c8361b00780cdba1fcd62d81501a5840948bc95b9570add0ee1d7b485842672b512ea8e241ea959daf8916e974cf0bb367b3730a7bf1ecad2b559972
 SHA512 
d6c805944012aadc2dc2528f205a791f8d368bcd8c0234c4d9e2628b999cce7982b36269457e42467c17f59038800ee9128ff0d0659b8f4156e645848df5aa83
-DIST genpatches-4.9-183.base.tar.xz 3104884 BLAKE2B 
5adfd5fb68a7e910288a58adc1b8e8c2911d2fa14a3da4a7b0a86c21841ca3064cc71924c5f78c121e897b2cfdef4f64e352b5a7ce3cb66b113d505a58dfd69e
 SHA512 
940fbed47b6b5bc31ec140569da7c09c577bd73b2862996fcdcb3bccbef62af52870b99daf96ac5466847b5f4c2fb41d24c468b2adf4b73297000609bb7f8e46
-DIST genpatches-4.9-183.experimental.tar.xz 106384 BLAKE2B 
dfa0939f0fce91abafbf869f5cc8f4c42297732e5b7793ed5326f1a392e51fe79f6ab6480f7b849bc327cc30f8952b47130eea34cb3b1fa6f0bb3cd2c98f
 SHA512 
561fe1fb7a2158d86e1bacb56ce4f94cb7dea1c4a99bfbe492b0a6e391122162067ce298b79819c07a36eff826b411f9392147626d4b83cf38d2e132be0d84e2
-DIST genpatches-4.9-183.extras.tar.xz 17368 BLAKE2B 
b96629fef9107202f7d493cd12cbb9a0941a921e902457aac9a1130fc23e368cd84f5191ba021f65e92ccd017cfe70a8ba269b30d5221bf68cdbad1d1d0f88fb
 SHA512 
09b832136b84656998cc2c4e5fc2f6b9a239e88ed4f2ffdce069e182ed525b3a001cd968f4d1825d31a7736357680c05b2a9df06ae4e515a0dd3087dbfd66a64
-DIST genpatches-4.9-184.base.tar.xz 3115012 BLAKE2B 
1b7cdc2e06e53426b561a6586435a60cf5a6473c475b98e54088b7c479325a6e89e46b12080ebe164e4de18c6ca7f1c178d03a5b31681afe47f231f2c561f634
 SHA512 
f4339d585b11c3b7d1e8e9231b8d036b627526dfb4457f53d47129e6f27f3f6c0399de7e97038f5f216619343030418dd71b817527c97051d3579439bbe53584
-DIST genpatches-4.9-184.experimental.tar.xz 106352 BLAKE2B 
f74f5385b6c9a6487e2214eefccee27a30849543946acbabdbe9a055ea2011d0d01d063a27119cb628e3ba4cc7bbe6d9e2e545a4408244d610e49f570a557e73
 SHA512 
ef07fba4fa9fb524242ac5a5257dd60ef0397356c6987d6f38a1125ccdb0579c404acf978b7097a3e3a95bc57522a51eba0ee25604f3f9cf77e204dd095296f4
-DIST genpatches-4.9-184.extras.tar.xz 17364 BLAKE2B 
c428383a38e629a428e939477cd30e2e37e5dc2919c37183f484a24c87b554af33d9dcdeba043a08aac6b76a5c7b20dd920b75f1d29b49a6ceee4f5856c071e2
 SHA512 
56d77e7efcbe3fb498cbe7ec9e1b76f4a99cfec2627e5632bcd1cf505f790b6998affea3563ad5b0e40649dba313536bf1591d3d0e384b23d48059cad845dfe7
-DIST genpatches-4.9-185.base.tar.xz 3139412 BLAKE2B 
a46f74ea95300f1af4d5de456251f343fcc62857594e29981d55847efdf1389f35b53e8444d71cdabbd57c226d5c8296d648ac3f1bbd6c14b9af32dd7eda4bba
 SHA512 
03d948bcc34f107acb13e39ea8279d7569e4a33964bb8801319e1c82966345f43218e3211d0f8d9e4673c91961dd015528dbce0d2ae756a730e1899c14135abe
-DIST genpatches-4.9-185.experimental.tar.xz 106356 BLAKE2B 
c6c51dc6b570b08aa609158313282f3bc3a5662048a386947bf24718fdcddcaea075c9d65f19331be0499d14ef97445fd335e4157a0e336a57ef2b3b638fb877
 SHA512 
05b35c43ea20459195b7971dbff89a520e2959254f39d2a19ab69243cdcef5456776829c63e347f64ebbb2caf397cd492931afed60e1cc4e5cec27a45e94dffe
-DIST genpatches-4.9-185.extras.tar.xz 17364 BLAKE2B 
6431c99d5edf0eee6013473439bc84134f271a356bc6369129946c8c389520891f46b7fc09fc64ac890c5f182f8636e483134bc6e048b9bff81a846cde3c9034
 SHA512 

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

2019-06-18 Thread Mike Pagano
commit: d04ce87d0d7526f2d799e857f3ff03a0869299fc
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Jun 18 18:41:47 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Jun 18 18:41:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d04ce87d

sys-kernel/gentoo-sources: Cleanup of vulerable versions of linux 4.14.X

Signed-off-by: Mike Pagano  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 sys-kernel/gentoo-sources/Manifest | 18 --
 .../gentoo-sources/gentoo-sources-4.14.121.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.14.122.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.14.123.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.14.124.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.14.125.ebuild  | 28 --
 .../gentoo-sources/gentoo-sources-4.14.126.ebuild  | 28 --
 7 files changed, 186 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 60b941790be..b53e47a5ba8 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -7,24 +7,6 @@ DIST genpatches-4.14-122.extras.tar.xz 17488 BLAKE2B 
d04fec3b9eb350599786270edb0
 DIST genpatches-4.14-128.base.tar.xz 2840048 BLAKE2B 
965e2b5c469fc30fc9f3542f8465a7b492f0215396dfbda37a35e68a1e6536213cf66f23909adfdc31fac0b53fca7ae1ce65c785a12f512925c3443a73707cc5
 SHA512 
b7f77407ed6d60cbcf4b60cf7334d0fef348e9dd68f33ae6920fc44ed171135b5df6b1012c1affd3cb570d92503e429f98ac0794cc697d7bc4b293f966f9edbd
 DIST genpatches-4.14-128.experimental.tar.xz 5228 BLAKE2B 
ba37a6cce365dfb193d3339d759010bec8f18b4ac558b104896b09c329941a09ba82f993103a1d8a18321f8a2495db3bba9639ac6b70d028dea5e32aa30c5443
 SHA512 
4aff0ff4a96ca1bc347a30a2bbc5232fd3d406931b74f62b8b3e57cddc02dec54d90a5d9de67e5e2c74942b68079952a9732dd2622398f290e4627d93db4510a
 DIST genpatches-4.14-128.extras.tar.xz 17496 BLAKE2B 
87ddc81f1510f0a71622bd6867efa6b2cae6c2bd3eb184ea0c08219cc2692160918c1b57e46866d4b1bd70de821d8cd40f59702cc62b87ad1cb59d47654e55c3
 SHA512 
5610b4c2d3c0de6819dff8877b1375df3ccf1c2c91c3f64565e8ce077e19e8c43288cb01265bddb0b1cd16c833a5795b39e94c3e167d9ad0c94db7270f0f
-DIST genpatches-4.14-129.base.tar.xz 2853096 BLAKE2B 
0cf60aa21e39b529c0cba9ac1e387a126b0da1c60c4de834eb1bf39e39aa491ce00ddd244a8ba0f8ef98dbb24171b1b7bbe022f8335722062da23b2a0fe375b1
 SHA512 
fe549960e6a9595a09d6359ba75a13b0f7e77a08eea92406cfc5ba1a67e3319c69c340f74b448e2491be02f15f2f9843a84ce659a1685777e5ac53d0fd664d7f
-DIST genpatches-4.14-129.experimental.tar.xz 5220 BLAKE2B 
22f3c813d5d0f1288166c4e2d8df2cee999b40e9f7ea4ec3287b32d67234ac80b03e6682156091fc1b9f8ea1887da0803ce946d49c44a21f6b3e81e5171fad7e
 SHA512 
7ae95c0060d2a623ca001fdf50fbdb1974df9c721348dd7780bab0e3fb53eb9f7429962ee727e787f05d7fe20149a73806c6c79119f0f9b6d6a7860388402cdd
-DIST genpatches-4.14-129.extras.tar.xz 17488 BLAKE2B 
c491444d489f1a7e2ff8e012f4aeecd3aab37b6e5046704fb6c4601bc81e02bbe863a5d767086ab364673cde07def9a16dcbe5082bac0e587aa2f794ea627cd4
 SHA512 
a1bd8faf5fdd11500442e4ad46bde4d549cefd093ef34a3a1b971c9a6270810d1ad899265daf3e94f4b657f8ebcfe13a4aea88ce821cd61ebfa3f54cffad3bc5
-DIST genpatches-4.14-130.base.tar.xz 2868436 BLAKE2B 
a8d2703ebd071b467c0b9a759aea8ef3d8583be68687fa39feaa1a00e84e491f3b5483b43fd48372a09d0ec08559e55ce25334dab16015e0b0f1b42b529237e1
 SHA512 
07ee67c87ef731328fd794c98c1d70e2bb06f0f1ffba8a89e4d784e6edc157111e6b1def8e97917f8425fe5499d6829d9a3ce755eb3dc921dd00bf236c5b5d74
-DIST genpatches-4.14-130.experimental.tar.xz 5224 BLAKE2B 
1ea0096f71087bb4d2b0fec6beda161e5c05569b0cbd54f7e60b497343b1d92971b1551f15706ea93aec1b995df9e847651ffa9f4832d4ffc5d3bd42db34dad3
 SHA512 
1947b1ae0b42976ec424b228aae471ce872d882e2e4c16efb0ec3489f40c177cb22f113fd3e707646c3fa9fbe2edb42a014f9160d0fe20ebbc3bf1ca5d5e9592
-DIST genpatches-4.14-130.extras.tar.xz 17492 BLAKE2B 
7d272edc35444eb08a1025717cfa7165cd23a7dcf4173f142b42e90da0940793789023fb063e1ed15f133ffc5a3459c7abf5aa86103e3fb6dfb2396ce47cbd53
 SHA512 
7fc1cfc4976f7d0143e016ed902acde3724cd9769b476a68947f6c375c9a40451ec6e55c0088140af10220b06b3f4b05dcabf4e997d376f7e86e740167c71fa0
-DIST genpatches-4.14-131.base.tar.xz 2906408 BLAKE2B 
4055930a9dd4b40b03cf4687367087c45381b1a2078947117d6d413fafd5a993d0d002479d3b0b3fd478d479c2fd7126cb2648a21d281d6f674c9f8a9efbd39f
 SHA512 
9a8ec998bcd65ab7c8400b9ad120dc9dff668ee8da6454b8d4fc46361f3a3a7551b9c1eec622562e3249047378c17713d4d2ebea15234924dbc0019749034c38
-DIST genpatches-4.14-131.experimental.tar.xz 5224 BLAKE2B 
4625fba43e9d9cd7661f4b75015def218d5d4e5fe98fc6dd966e9f17afb5ae73618e1cd3320e760eee75626d87fba30303513e61f30f24127ad161517057f70e
 SHA512 
77e3527742c4f43faf31fedf424ab6a7a2e3bd1a11f21b04f227515db380246318f7c0ec3595a0b2105ea833d9eb9c6dbb4c3343fae1b614691ef9ca8843ca08
-DIST genpatches-4.14-131.extras.tar.xz 17492 BLAKE2B 

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

2019-06-18 Thread Mike Pagano
commit: 8227391c869074fc4e17478a4a107f31adf7efa9
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Jun 18 18:39:53 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Jun 18 18:40:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8227391c

sys-kernel/gentoo-sources: Cleanup of vulnerable versions of 4.19.X series

Signed-off-by: Mike Pagano  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 sys-kernel/gentoo-sources/Manifest | 21 
 .../gentoo-sources/gentoo-sources-4.19.45.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-4.19.46.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-4.19.47.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-4.19.48.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-4.19.49.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-4.19.50.ebuild   | 28 --
 .../gentoo-sources/gentoo-sources-4.19.51.ebuild   | 28 --
 8 files changed, 217 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 66b877562d4..60b941790be 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -37,27 +37,6 @@ DIST genpatches-4.19-38.extras.tar.xz 17480 BLAKE2B 
e5a91594af32c1ad12b2c89316e3
 DIST genpatches-4.19-45.base.tar.xz 1284916 BLAKE2B 
d4bdbd0392400382d6baa9bfef5f71a43737aef688037865373eac04802a380c60265a6deaf3889702b5d023d695e30ec049bff0ddad74543ce8bdde034f29ba
 SHA512 
82e23dbfdda4828d28fdbae5526a07e36a958387115fbb5dc9e6825439eb3fdba8602d490e0460e84cc2b3c8f21be15107a4db2aba73d4245b2a551f2010a470
 DIST genpatches-4.19-45.experimental.tar.xz 5800 BLAKE2B 
66685ef52bc6ec8d856e66c2f96c1e2be0e6054c0ab126078e74d0f99fc4fbf6a184eeb50791a4d49d0f2e4c34d569d319a938d6c9bdd932ec549db2b274051f
 SHA512 
89fcfd336aab90d068a02da9fbba85b954f8fb728c5fa9dbe8478300d32780bbb375929b31d18a032f5ec74547b05b40df3ce42c0236e67f9b9fed5e7c1a250e
 DIST genpatches-4.19-45.extras.tar.xz 17480 BLAKE2B 
f69d00cc9948456df19b0bbcad0f2c1767aa28e985c74fae8f2d702f8bb075b25b0132d42678820946075ef9373b85e17801c97c654157d656f6c9d34750e8c5
 SHA512 
71f9f57ca59026a01f5f4dcd7ffc7e62960328d4b5fcfc9e561b5d6a1073f90604f510e6656128fa6a2c23bb847b65643094c4b1cb20224a83611778d7aaac31
-DIST genpatches-4.19-46.base.tar.xz 1312108 BLAKE2B 
7ed70fd23a1ff7283b48e29de56b177fcf86b2719eb424dd2850fef8110eeb7d9cd7f17a95afd4dcdbf441465d2906745dce1615fdd19b7a7e26205bc75a08ee
 SHA512 
890e39f2241e690f97715d90adfa3176a8fe5742afbb82b11c9f8da7ffc620af2da1f6b850f3954faee6bbaebd10de5d0687516e96574dc630233dc7c01ef451
-DIST genpatches-4.19-46.experimental.tar.xz 5808 BLAKE2B 
20d8b6a993c00e6668e90843e36dd8e393ad2fe1e7a4ad724677dd4d69803bc565859f23791063bac064940ca0d3231c7f48b14c1fbbcfa2eee896ad221c87dd
 SHA512 
1a8d93387e8ebed75edd4298ca1b9077ba1b85964bfcae4a479d1aa4f8c2a59f0aadf59082b8ba892c15845e58da5067a4d304ad006bde1e52a5c280
-DIST genpatches-4.19-46.extras.tar.xz 17476 BLAKE2B 
15ae4f55beb8763b33404c13072ce8be4f3083aa9c083a18d37c2c11d2d6b004033b9d502239058b3cc3fd5b0535cac17001eb3d74547c068046132839033e42
 SHA512 
5d0a92336105100697090e4aa8396a7073600011ceae4406c6b0106af6e9ac68130f0899a7e8244ec0a0d8ab729796934809d5874d855a6e4e12c59292a83684
-DIST genpatches-4.19-47.base.tar.xz 1340244 BLAKE2B 
172f66112d8f138726a869d02a83852c62f1f2f84f10d2dd3bc42a1973d9a175318437e92895c515e3186ab25521d72ab50832cfe0483f4b1b5e12bd3547bb15
 SHA512 
9b25ce4c59992f362f2a446c45e40a2590c4d24c6132797b03957d35d560de7642da9b543f4925ee7b6736c64a640a967ba3e96b2ee11548915eb0dccbfd2c68
-DIST genpatches-4.19-47.experimental.tar.xz 5808 BLAKE2B 
4bc6ca1a5ca78ff322e6a39694aea90900614015c0be67d862da193eac54d95d791002d87c1a3b67ee8557246212e84117b3a231a26de42ef217893cce0a3c2b
 SHA512 
1ab9385b86d6c2ce4fd24b1881adbc1728c27e19da13e388964c7cd3683e1c4e0e1107ed4c42d05846309899962e1ccffb3779424be26aa18022e316f77a55d3
-DIST genpatches-4.19-47.extras.tar.xz 17484 BLAKE2B 
8208f7589e0cd8cdffc0163fac5179578ff178440c253dc87c1567173b429a6456d705b00d3034183bc3e48287bf386f9be8a1b897a4849c1db4f4f1b068e208
 SHA512 
953e1e48ef9cc6705937f3c2df7b772ce2f6cb863fad96626e24a4c839e730cc3ecf85f36a0eef69349b337c6a6a55e64519a8613c329d11ae1a8e01d257020c
-DIST genpatches-4.19-48.base.tar.xz 1403372 BLAKE2B 
9e0b273afd874fc1b6314a2d39665574886001523cd9bb494bc3a5e50325af5196ef385a2f33c3cdcded3baf17b1c0fe60609970f8ef21c53cf484e372294f2a
 SHA512 
0702d9d395531ef78316ba3571b0f0b8c4814eb0a85d508d1166e47c3f2434922516eb9b77a61e6aa808e6715bba35e5190fdd2b4cea722ed0356f15e4f7
-DIST genpatches-4.19-48.experimental.tar.xz 5804 BLAKE2B 
62df9bf87c88ed4f711e95bf73bf437f70a6696ca949abf169b17abd8a13c98e82e3ba6ea575c926eac50e24b11d18647200aee2363f72857811633ebde404b6
 SHA512 
28fd31a38d99ed96e71da700fea4015984150f4b58f83b85b530e55439c53b5c1464a75f0ad6e46a0180e83e5d0321d9faefae5ccc6b6818a7542cb4214f7234
-DIST 

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

2019-06-18 Thread Mike Pagano
commit: ef0cd5bec46751e268deed409fe76917198fb1bb
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Jun 18 18:37:35 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Jun 18 18:37:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef0cd5be

sys-kernel/gentoo-sources: Clean-up old, vulnerable versions of 5.1.X

Signed-off-by: Mike Pagano  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 sys-kernel/gentoo-sources/Manifest |  9 ---
 .../gentoo-sources/gentoo-sources-5.1.10.ebuild| 28 --
 .../gentoo-sources/gentoo-sources-5.1.8.ebuild | 28 --
 .../gentoo-sources/gentoo-sources-5.1.9.ebuild | 28 --
 4 files changed, 93 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index f3e3666f587..66b877562d4 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -106,18 +106,9 @@ DIST genpatches-4.9-186.extras.tar.xz 17364 BLAKE2B 
b9877bdf6731f474e0149a65a91f
 DIST genpatches-4.9-187.base.tar.xz 3165440 BLAKE2B 
d13472b1dd50a1ff4c464c92bbc411c7bb565ac56cd4c3ed8ec4afac64528fdc9a0607cda753fb737746807864142081fad19cd222e2baf89e65b4eca150e1ed
 SHA512 
a6d46eeed6114557ab46ad724c3b803b7073ccf159bd7ce09c7fb656d4bbf9c975779515630eebd564ee72586e396cf86ff17bdeaeaa9d8b24c0fc419d588190
 DIST genpatches-4.9-187.experimental.tar.xz 106348 BLAKE2B 
7e7f64d03db7f504c6138125888fbb1f153b36ab268a50cdeca5fdcc19ca85c29d9b5402c34f1edf84932d474797e40237c12dc486263724ccf8b5f938fbb21e
 SHA512 
86f53c4f0df2bf5cd21cabd5cf7b5ad02aaa0f6983bcaa3887567cb84f36e9c3b94ef0ebf55f71f10e64724fc0c2d91f51c9a575d6a3e05ba9a2d3cdc7e12773
 DIST genpatches-4.9-187.extras.tar.xz 17364 BLAKE2B 
dfc21fbecb4c2d8a2241265b1d2cf24bffdc2c65ef7f891182d0d797eeaa1c5abf3102bd5fc8f1edb8c9bb6d8da77a819df2477f5a115514a78e95fea9c834cc
 SHA512 
8fbb15af6b0d748fde5d3bf7d8ca23bdd2441020a870395f872994b1eb19170f47c3ed8835f5b8e7da808b0e6178235d5825c85b2596700c5226089b47262e81
-DIST genpatches-5.1-10.base.tar.xz 310972 BLAKE2B 
ed289cc302062b29082271db1466f2162409bec8204456470d485605dbe43f9c10c5235add9c38b8f3d2df6baf63943df1a94cb1c3b15ab7141ee8ec9a2e9f4b
 SHA512 
b38b5e51692390d614756249e1fa665320fafba3826f52f0b5f40e105b3e86f593a764ae3d5bf36a0b237b318f7d270a86ba86371f1f375b793da1397816c99c
-DIST genpatches-5.1-10.experimental.tar.xz 5800 BLAKE2B 
7d020eddcfd684234c66628df2c830d2645f68c75db4ade62c1a2e5fc88a279407875dc8a7d4aa7a10ed13b374494922d35e48b6a66f924253128b5e321f7489
 SHA512 
0f0999cc08e2f8f9dc42ea8204033e47a25862fe01f50570d8b565746c1ea6fe679e8d350a36a19cb1d8b2da5f15fe627620656bd503019e58f8abd607fcd7e2
-DIST genpatches-5.1-10.extras.tar.xz 1724 BLAKE2B 
726bc82ef32b9242102063a2b149f1e44bb99dae3c0699dfb279c52f6e67a7dead3c6152ab0367b5fcd362b72d781726029c9f8e8e77c6837e8d698eaf78461c
 SHA512 
774da04f18f2c24949a5d2fec95d0b7a2e22d5ef65937cc4699732506eceb55204f53bc373410bd1af06c8aba2921b7f0ae41e2bcb30140796deb504081de2e8
-DIST genpatches-5.1-11.base.tar.xz 344288 BLAKE2B 
d3e585f08e14863cd2c53289ef511c148685da947850be743eaa2e2c754be7aeb0f50b8ced21bb1b4cb0ac0915c5b7da85d97c45c88e5c4c966f48d691e53464
 SHA512 
6f524535c2c95daac43dc5a5171195d76686fb2c0074905c131e50496f71b92cbc311fdae46898969e16e6ba62959639b7995a0682c49dd7878487f315d5c894
-DIST genpatches-5.1-11.experimental.tar.xz 5800 BLAKE2B 
0d1d3987c9d8f364eb7ac271430b95d6c10b5ccce6f6f61b0832d18f2f959a37127800f627629bca64fa03905d0ab86edca894c4dfa563d2014289481e01dc1e
 SHA512 
a2e42f0362d8bf330f6d97fb05f7b03823d2fa70b099c7629eb8205224defcbb4532684631e888fe718ef732d61dea0012b9ffda39532f4c39c212195e8b30f7
-DIST genpatches-5.1-11.extras.tar.xz 1724 BLAKE2B 
47cfc5c3433db0fd00c4802cb753178384057498bd90bb63cde2234859268314367f2484a7eceb93d28be7809cbf6fe3c9cf9af51c62a01147cf0bf7d5cc2356
 SHA512 
62042b3115660bae0c7441b2de6532737e44d06d10c0fe54c64ac4502ea5c9a6f6776cc231fdf921b0adb4a306c7c387b4948667a462ef57d8413e03bfc09fbc
 DIST genpatches-5.1-12.base.tar.xz 346632 BLAKE2B 
e98e237fd86fc295dfa4af4803c7dbfbe54228d1ecce1e64c89e849ef583e600bc6dda139903b399eedc9f989ecb5c5137420bc5deeced42fabdf27896df527e
 SHA512 
468678f73f2b7298bda053e713985fd948981d9a3d150f7c453e53205d9e94b863a5d92f35fa6789f5fca0a32fa9d25974dde0623c7c2ac36b04c7f922e7b823
 DIST genpatches-5.1-12.experimental.tar.xz 5804 BLAKE2B 
a2a12a7eaa91c872b15aadc71455013dc1d1255951bb9951390c1fcf085a2eeb4aa179201c231745f3951b75befac39541e1c1f759fe0f6ce37fbc9cf316fd57
 SHA512 
52106e7787a05426ba32203646939ddfd63a0fb1fc4451a99b3c70096874b3b23342af5d368fa62c6f5f6ab2e4e783dadc0928646971c598820f9149eba2eca4
 DIST genpatches-5.1-12.extras.tar.xz 1724 BLAKE2B 
3947c6ce1d86642b64662e684b871c720e0f8ed8bd6237088ddd668da717c4eb3dbb242e981297d2cb4ad54a3927b3d37534697297105ca64f00827cc2f7d836
 SHA512 
5258fe4e3bb0ee6cbbaa660235d893a58d528d58954fe48981522745017eeac2bef2fbeb5b9300cb0d189640ef08733ce429177b0c54e3fe5bc736a175b3fcd3
-DIST genpatches-5.1-9.base.tar.xz 

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

2019-06-18 Thread Andreas Sturmlechner
commit: 1084fd569f29acb14a4a4860c32bdbd5451f80f9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun 18 18:27:30 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun 18 18:27:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1084fd56

app-text/kbibtex: Tests require ext. testset, even then part broken

Closes: https://bugs.gentoo.org/688298
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-text/kbibtex/kbibtex-0.9.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-text/kbibtex/kbibtex-0.9.ebuild 
b/app-text/kbibtex/kbibtex-0.9.ebuild
index 71e11a7bb48..1be041f04a0 100644
--- a/app-text/kbibtex/kbibtex-0.9.ebuild
+++ b/app-text/kbibtex/kbibtex-0.9.ebuild
@@ -56,6 +56,8 @@ RDEPEND="${DEPEND}
dev-tex/bibtex2html
 "
 
+RESTRICT+=" test"
+
 S="${WORKDIR}/${P/_/-}"
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: x11-misc/lightdm-gtk-greeter/

2019-06-18 Thread Thomas Deutschmann
commit: 5b563496dd03f5c7cd948f38a71cd6bbef20a539
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:20:15 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b563496

x11-misc/lightdm-gtk-greeter: x86 stable (bug #688202)

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

 x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.6.ebuild 
b/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.6.ebuild
index 04096992f34..36a61c7f46f 100644
--- a/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.6.ebuild
+++ b/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://launchpad.net/lightdm-gtk-greeter/$(ver_cut 
1-2)/${PV}/+downloa
 LICENSE="GPL-3 LGPL-3
branding? ( CC-BY-3.0 )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
 IUSE="ayatana branding"
 
 COMMON_DEPEND="ayatana? ( dev-libs/libindicator:3 )



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

2019-06-18 Thread Thomas Deutschmann
commit: 0be5ee39568b3d2e4926c305bafa7621cbc9a7e5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:18:51 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0be5ee39

dev-util/mdds: x86 stable (bug #686736)

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

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

diff --git a/dev-util/mdds/mdds-1.4.3.ebuild b/dev-util/mdds/mdds-1.4.3.ebuild
index b4a8df80fc5..a1136575248 100644
--- a/dev-util/mdds/mdds-1.4.3.ebuild
+++ b/dev-util/mdds/mdds-1.4.3.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else
SRC_URI="https://kohei.us/files/${PN}/src/${P}.tar.bz2;
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 fi
 inherit autotools toolchain-funcs
 



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

2019-06-18 Thread Thomas Deutschmann
commit: 56ac36ab0513750f0ea49c3b5263e89af2032fbc
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:15:49 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56ac36ab

app-office/libreoffice-bin-debug: x86 stable (bug #686736)

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

 app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.2.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.2.4.2.ebuild 
b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.2.4.2.ebuild
index 40e51ebfe3d..dd563997b9b 100644
--- a/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.2.4.2.ebuild
+++ b/app-office/libreoffice-bin-debug/libreoffice-bin-debug-6.2.4.2.ebuild
@@ -46,7 +46,7 @@ SRC_URI="
 IUSE="gnome java kde"
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="-* amd64 ~x86"
+KEYWORDS="-* amd64 x86"
 
 RDEPEND="=app-office/${PN/-debug}-${PVR}[gnome=,java=,kde=]"
 



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

2019-06-18 Thread Thomas Deutschmann
commit: 7c9dad1910923c5a8affb6e09937b079c93af14d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:18:18 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9dad19

dev-libs/liborcus: x86 stable (bug #686736)

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

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

diff --git a/dev-libs/liborcus/liborcus-0.14.1.ebuild 
b/dev-libs/liborcus/liborcus-0.14.1.ebuild
index f1879006308..0f6a0844ca7 100644
--- a/dev-libs/liborcus/liborcus-0.14.1.ebuild
+++ b/dev-libs/liborcus/liborcus-0.14.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3 autotools
 else
SRC_URI="https://kohei.us/files/orcus/src/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/

2019-06-18 Thread Thomas Deutschmann
commit: 649d480639d9cdfd18028143f86118b771f05e18
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:22:22 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=649d4806

mail-client/thunderbird: x86 stable (bug #688032)

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

 mail-client/thunderbird/thunderbird-60.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/thunderbird/thunderbird-60.7.1.ebuild 
b/mail-client/thunderbird/thunderbird-60.7.1.ebuild
index 74332102d40..6bb04f73360 100644
--- a/mail-client/thunderbird/thunderbird-60.7.1.ebuild
+++ b/mail-client/thunderbird/thunderbird-60.7.1.ebuild
@@ -39,7 +39,7 @@ inherit check-reqs flag-o-matic toolchain-funcs gnome2-utils 
llvm mozcoreconf-v6
 DESCRIPTION="Thunderbird Mail Client"
 HOMEPAGE="https://www.mozilla.org/thunderbird;
 
-KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
 IUSE="bindist clang dbus debug hardened jack lightning neon pulseaudio



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

2019-06-18 Thread Thomas Deutschmann
commit: 5b8d411d09bb18e9ddb7c6cc7990d988b43d62ef
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:22:54 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b8d411d

net-irc/znc: x86 stable (bug #688152)

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

 net-irc/znc/znc-1.7.4_rc1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/znc/znc-1.7.4_rc1.ebuild b/net-irc/znc/znc-1.7.4_rc1.ebuild
index e2a032f9ea5..7f06cfb1a01 100644
--- a/net-irc/znc/znc-1.7.4_rc1.ebuild
+++ b/net-irc/znc/znc-1.7.4_rc1.ebuild
@@ -22,7 +22,7 @@ else
https://znc.in/releases/archive/${MY_P}.tar.gz
test? ( ${GTEST_URL} )
"
-   KEYWORDS="~amd64 ~arm ~x86"
+   KEYWORDS="~amd64 ~arm x86"
S=${WORKDIR}/${MY_P}
 fi
 



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

2019-06-18 Thread Thomas Deutschmann
commit: 6da577e4fe1452441db2ca131a70be9b69fd79d6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:15:26 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6da577e4

app-office/libreoffice-bin: x86 stable (bug #686736)

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

 app-office/libreoffice-bin/libreoffice-bin-6.2.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice-bin/libreoffice-bin-6.2.4.2.ebuild 
b/app-office/libreoffice-bin/libreoffice-bin-6.2.4.2.ebuild
index 68790dd997b..9eab9fea90e 100644
--- a/app-office/libreoffice-bin/libreoffice-bin-6.2.4.2.ebuild
+++ b/app-office/libreoffice-bin/libreoffice-bin-6.2.4.2.ebuild
@@ -51,7 +51,7 @@ SRC_URI="
 IUSE="gnome java kde"
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="-* amd64 ~x86"
+KEYWORDS="-* amd64 x86"
 
 BIN_COMMON_DEPEND="
app-text/hunspell:0/1.6



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

2019-06-18 Thread Thomas Deutschmann
commit: 3114f37cfe15c11516ea10d64427bdbfad74ab02
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:13:48 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3114f37c

app-office/libreoffice: x86 stable (bug #686736)

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

 app-office/libreoffice/libreoffice-6.2.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice/libreoffice-6.2.4.2.ebuild 
b/app-office/libreoffice/libreoffice-6.2.4.2.ebuild
index 3dd54c5dc3b..a84bee9bab8 100644
--- a/app-office/libreoffice/libreoffice-6.2.4.2.ebuild
+++ b/app-office/libreoffice/libreoffice-6.2.4.2.ebuild
@@ -77,7 +77,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
 [[ ${MY_PV} == ** ]] || \
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
 
 BDEPEND="
dev-util/intltool



[gentoo-commits] repo/gentoo:master commit in: media-video/kaffeine/

2019-06-18 Thread Thomas Deutschmann
commit: 89b096fe9cc835a3b02f168bf9380c30f8125f92
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:09:27 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89b096fe

media-video/kaffeine: x86 stable (bug #687472)

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

 media-video/kaffeine/kaffeine-2.0.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kaffeine/kaffeine-2.0.18.ebuild 
b/media-video/kaffeine/kaffeine-2.0.18.ebuild
index b6bb14b5b45..4c867468cb1 100644
--- a/media-video/kaffeine/kaffeine-2.0.18.ebuild
+++ b/media-video/kaffeine/kaffeine-2.0.18.ebuild
@@ -7,7 +7,7 @@ KDE_HANDBOOK="optional"
 inherit kde5
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 x86"
SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/amdgpu-pro-opencl/

2019-06-18 Thread Thomas Deutschmann
commit: ce1e5389da2a64a6ff54728f323380691285d876
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:04:05 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce1e5389

dev-libs/amdgpu-pro-opencl: x86 keyworded (bug #686970)

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

 dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.10.785425-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.10.785425-r1.ebuild 
b/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.10.785425-r1.ebuild
index 12086b373c1..9e9ca9dc6be 100644
--- a/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.10.785425-r1.ebuild
+++ b/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-19.10.785425-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="${SUPER_PN}-${MY_PV}-ubuntu-18.04.tar.xz"
 
 LICENSE="AMD-GPU-PRO-EULA"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 
 RESTRICT="mirror fetch strip"
 



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

2019-06-18 Thread Thomas Deutschmann
commit: 501ba4cc17c0971b7f574a73532403d057b02c47
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:11:21 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=501ba4cc

media-libs/libplacebo: x86 keyworded (bug #687722)

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

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

diff --git a/media-libs/libplacebo/libplacebo-1.18.0.ebuild 
b/media-libs/libplacebo/libplacebo-1.18.0.ebuild
index eda8818f591..ab132357b85 100644
--- a/media-libs/libplacebo/libplacebo-1.18.0.ebuild
+++ b/media-libs/libplacebo/libplacebo-1.18.0.ebuild
@@ -7,7 +7,7 @@ if [[ "${PV}" == "" ]]; then
EGIT_REPO_URI="https://code.videolan.org/videolan/libplacebo.git;
inherit git-r3
 else
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~x86"

SRC_URI="https://code.videolan.org/videolan/libplacebo/-/archive/v${PV}/libplacebo-v${PV}.tar.gz;
S="${WORKDIR}/${PN}-v${PV}"
 fi



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

2019-06-18 Thread Thomas Deutschmann
commit: e7e87d2f02b6804cbe36ab3b946a8d3d1a1a19b9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:07:57 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7e87d2f

media-gfx/graphicsmagick: x86 stable (bug #684320)

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

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

diff --git a/media-gfx/graphicsmagick/graphicsmagick-1.3.32.ebuild 
b/media-gfx/graphicsmagick/graphicsmagick-1.3.32.ebuild
index a2aaf2efd41..68149dcdfa0 100644
--- a/media-gfx/graphicsmagick/graphicsmagick-1.3.32.ebuild
+++ b/media-gfx/graphicsmagick/graphicsmagick-1.3.32.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == "" ]] ; then
EHG_REPO_URI="http://hg.code.sf.net/p/${PN}/code;
 else
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz"
-   KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos"
+   KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos"
 fi
 
 IUSE="bzip2 cxx debug fpx imagemagick jbig jpeg jpeg2k lcms lzma modules openmp



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

2019-06-18 Thread Thomas Deutschmann
commit: 4ba11a1a165c7fae8342ac0996e048890802853a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:10:13 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ba11a1a

app-text/kbibtex: x86 stable (bug #687408)

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

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

diff --git a/app-text/kbibtex/kbibtex-0.9.ebuild 
b/app-text/kbibtex/kbibtex-0.9.ebuild
index db55a06be03..71e11a7bb48 100644
--- a/app-text/kbibtex/kbibtex-0.9.ebuild
+++ b/app-text/kbibtex/kbibtex-0.9.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="BibTeX editor to edit bibliographies used with 
LaTeX"
 HOMEPAGE="https://userbase.kde.org/KBibTeX;
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
SRC_URI="mirror://kde/stable/KBibTeX/${PV}/${P}.tar.xz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 x86"
 fi
 
 LICENSE="GPL-2"



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

2019-06-18 Thread Thomas Deutschmann
commit: f491d3258abe754150fa58bfb375c95feb6f7afe
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:05:23 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f491d325

www-client/elinks: x86 stable (bug #687724)

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

 www-client/elinks/elinks-0.12_pre6-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/elinks/elinks-0.12_pre6-r4.ebuild 
b/www-client/elinks/elinks-0.12_pre6-r4.ebuild
index b1112ce0a8a..14f6d0b9ae6 100644
--- a/www-client/elinks/elinks-0.12_pre6-r4.ebuild
+++ b/www-client/elinks/elinks-0.12_pre6-r4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://elinks.or.cz/download/${MY_P}.tar.bz2
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="bittorrent bzip2 debug finger ftp gc gopher gpm guile idn ipv6
  javascript libressl lua +mouse nls nntp perl ruby samba ssl tre 
unicode X xml zlib"
 RESTRICT="test"



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

2019-06-18 Thread Thomas Deutschmann
commit: 685ddaf515e323ffcfce3888c4d6d031e5353c8f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:06:55 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=685ddaf5

sys-kernel/gentoo-sources: x86 stable (bug #688256)

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

 sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild
index 83542c68d56..864bb3b97e4 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild
index bb7a0232c6d..34c634e1ba6 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild
index dd0dba8985a..eb99f5770a5 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild
index 656b97b7abe..da6171d9128 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2019-06-18 Thread Thomas Deutschmann
commit: 445eb94c7b2b144c3f7f96339722b1af8574ab25
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:16:59 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=445eb94c

app-text/writerperfect: x86 stable (bug #686736)

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

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

diff --git a/app-text/writerperfect/writerperfect-0.9.6.ebuild 
b/app-text/writerperfect/writerperfect-0.9.6.ebuild
index 4079835b3f7..a9f43a1e673 100644
--- a/app-text/writerperfect/writerperfect-0.9.6.ebuild
+++ b/app-text/writerperfect/writerperfect-0.9.6.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/libwpd/${P}.tar.xz"
 
 LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 x86 ~x86-linux ~x86-solaris"
 IUSE="abiword +cdr debug ebook epub freehand gsf keynote +mspub +mwaw 
pagemaker qxp +visio +wpd +wpg +wps zmf"
 
 # configure fails if no import library is selected...



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

2019-06-18 Thread Thomas Deutschmann
commit: 87020ed3764b8fce86fd969101c7bbade0ae9c28
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:20:45 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87020ed3

sys-auth/pam_p11: x86 stable (bug #686176)

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

 sys-auth/pam_p11/pam_p11-0.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/pam_p11/pam_p11-0.3.0.ebuild 
b/sys-auth/pam_p11/pam_p11-0.3.0.ebuild
index 880907ce1d9..4a16a1c2fb8 100644
--- a/sys-auth/pam_p11/pam_p11-0.3.0.ebuild
+++ b/sys-auth/pam_p11/pam_p11-0.3.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
 
 RDEPEND="virtual/pam
dev-libs/libp11:=



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

2019-06-18 Thread Thomas Deutschmann
commit: 5344b0a9efb2230f8ee3a22950b3600d78eb7b73
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:02:37 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5344b0a9

www-client/firefox-bin: bump to v60.7.1 ESR & v67.0.3

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

 www-client/firefox-bin/Manifest| 344 ++---
 ...bin-60.7.0.ebuild => firefox-bin-60.7.1.ebuild} |   0
 ...bin-67.0.2.ebuild => firefox-bin-67.0.3.ebuild} |   0
 3 files changed, 172 insertions(+), 172 deletions(-)

diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest
index 1ea7bf36b54..c432500789a 100644
--- a/www-client/firefox-bin/Manifest
+++ b/www-client/firefox-bin/Manifest
@@ -82,177 +82,177 @@ DIST firefox-52.9.0esr-vi.xpi 450805 BLAKE2B 
9dacebac235a738cf7f068e16335b8b15ca
 DIST firefox-52.9.0esr-xh.xpi 441173 BLAKE2B 
3e1b907a7659c639d17d25a1825f472853242891d55f6a5ad93c1f5a12e12f05706173dc6ef5594f27e049d9b9a4c748d7371780843f1da204c5d93a39213197
 SHA512 
54ac64f0c119ab42d4f87dd2663ba7e14310c215a1ea76acd463b4c1a9073491f8df8c9b03d391ecc6f9ffbbdccc3756a7b13ed559336a6d1527fad3097ddb53
 DIST firefox-52.9.0esr-zh-CN.xpi 461679 BLAKE2B 
745b2cfb86e93a379e13fa73b7e3721bae06694768316e31a2aed608e3050f585a9603375cd35b90affca11b3e5e44401b1e676f9c8050ade287ed0feb442a7a
 SHA512 
ca62e0e2ab075086741159b185b5eba44c6bdfc29fd9ba1cf25808f127c1aed8875ea61c1c33e4f742fa26af4455a8873730f96ad9c7bec1f66aed0595f253f1
 DIST firefox-52.9.0esr-zh-TW.xpi 453068 BLAKE2B 
84e08ea4fd119db1f1c6f84b212fbbb5d6999c5ac6010c0e7836d8734726d281107f3d91ba7bac1aeaf855dc36d3b018ae3913dccdbe2b11aad02a8d8aaa893c
 SHA512 
a99042ef7d00820e341dfcf2c45a8b5bd77eaf2cc8ecf0ff5ee982b7bd9beac7cb4bf051c57ef3b7a5d9b67cd35858dca396d21e65718e248f3b1fdba5273999
-DIST firefox-60.7.0esr-ach.xpi 512788 BLAKE2B 
155c72980b4a0573f2d4e2d80f1bfce095bc2aedb6ab265b2fd4aa35046c0a91ee64a8f00dcea957a7889133e8969efdb49c76dcd67f7a8a0e6b4532aeebab0d
 SHA512 
59980e52d51095a6dfff48044fc2a1fd8c237f251dc1dc681eb0f799700e1b4d08c10862a34a77a41a6d5b90cd96ac6271af6ad63c0d6be815c0e687d6218ccf
-DIST firefox-60.7.0esr-af.xpi 503031 BLAKE2B 
74cd2d6169cc455fdff7a93d8327388f8247375bc362b5f0efbbf3f2fef80a05f73c3d761a09b427057e8de81da3b8b4bd2a551d4f1b627a4639bf3117f252f7
 SHA512 
5187dbbd3e025ab7523377f262e02a7ff9a83091b657ea7f22da85de78a71a1f839af05a6ec38aaa2b1c38254b9cd3b95e1ba69dd1ffd6d71919c63e8b3dd469
-DIST firefox-60.7.0esr-an.xpi 536226 BLAKE2B 
f110e39d28d98c916b2b74b05c634f87a8ccb52b41c87931eb2449301d723af9b2703be411e2ae9506138bd0f9193da315d511c207d9030efb7bf926a627c1c2
 SHA512 
524e75c7e186aeffb29360fb6044d334d37e0e0495259bc6b12b43c44566a26159cc04b715174ad836086e4950e0f012ea118aeed33d8cca99a25b2a8872c7a3
-DIST firefox-60.7.0esr-ar.xpi 563542 BLAKE2B 
448a7a88254bc27922d30f9a6c4657c8d2f6581baa3bf976a73cfab1fcecf919de7b77544ec83a128c622d11815c26cbcd2f56196245aff1bc316308b14cfad0
 SHA512 
33ee7cee0b06ec8930dae61e5b3e48c4c1e51fafbb127f756e88809f8ea83d97f6fcc154d78d26cb944230d0a80c6b3f6a695300d81aa2cd8f0c8fc226606e9c
-DIST firefox-60.7.0esr-as.xpi 546437 BLAKE2B 
7be219893258f1ecb3ccc27b85a79d968b6ea35986fb74a5b23a9e711de1aa23057d2a49dc9d163c619607b188b37f1094f31920bde603a3c6dc615ee1194bde
 SHA512 
84081960df0e6fca213bb86af690d7935834ccbef6cd3ed2b8aed220755651a7b081c37e3570cece78658e199a31215c988849f46224030bf21c54f5c083bb3a
-DIST firefox-60.7.0esr-ast.xpi 524607 BLAKE2B 
e6b78e54119a02a8b58927ca8cfd4030d9b099326750622675c27224c469a3e0b1f4c5614f1eb1e066e09373d073a1721ea3680d1ac0e1a1fadb98d8fb7c0255
 SHA512 
9c5d8697abdb12bf7562880d02d52bb7329f9ff715718835b600ef8138f1201612fcd2726fc24b11dd27561d74134527d1d4bff0fc8c7ee7ac4e238a6e185d35
-DIST firefox-60.7.0esr-az.xpi 540469 BLAKE2B 
608a0c8883df8d6aa553497a3189cab73abac231df19bca142628160c63cf750c6d92b0934ecc75833f00fa41914d198e5d27ffeb589503af721b3727938ab33
 SHA512 
72cd3b8071d9e5a2984d688283e431eff677b5f41dc0a77cdbaabc8a259e3e5a1ebbe734cb4a0c1e6038c8fce8adcd6d9f244122acc049dbe84f5ecccbb2e2f2
-DIST firefox-60.7.0esr-bg.xpi 589576 BLAKE2B 
458375e0c2ad6fd280fc1e548cbcf22f6b5bfb47fd93598cb630742c6ff4d9ed1dc0963344329b9817503a7af57ca5eff582624db4635850b7125455e10bcd65
 SHA512 
ac2c273edd8d1367e5b17b89bd8edf993831bce9623db1ff3e3047bdf784a4c0aa27262786f7af03c9f292d36cc2c4bbca9b33c2421f6ef4a4bef945c843f887
-DIST firefox-60.7.0esr-bn-BD.xpi 606817 BLAKE2B 
04699643a433dd6a266feb07f9ff4f6f7335e46af808a36512fd85389ad7a17ac4016022c51c0fba6f9bf0b855dab0e4c6d1be0e9f6045f2eed81b39453a396b
 SHA512 
351d674efd9acf3c68f8c2f96c7325338f402a49c3239b709056592bb43840c8c9f0fcf302cbc9c9881d21e55e2552d0cec72996ec278404e13162047f9b815e
-DIST firefox-60.7.0esr-bn-IN.xpi 587255 BLAKE2B 
b2f7b13ceae7f7b119c3f358008ab2b4d17e1473fd1eb445a99a201a2a4759c6c52d444571d9279455bfaa3466b30ad5ce5087a7fe7645b0d11b25acab3df901
 SHA512 

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

2019-06-18 Thread Thomas Deutschmann
commit: 4c224fb82128f937a87aa735b5089ac9b8c9293e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:10:55 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c224fb8

media-gfx/kphotoalbum: x86 stable (bug #688186)

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

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

diff --git a/media-gfx/kphotoalbum/kphotoalbum-5.5.ebuild 
b/media-gfx/kphotoalbum/kphotoalbum-5.5.ebuild
index b062c1d1822..44f61afb603 100644
--- a/media-gfx/kphotoalbum/kphotoalbum-5.5.ebuild
+++ b/media-gfx/kphotoalbum/kphotoalbum-5.5.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://www.kphotoalbum.org/;
 
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 x86"
 fi
 
 LICENSE="GPL-2+ FDL-1.2"



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

2019-06-18 Thread Thomas Deutschmann
commit: 09dfce1b284b3fe2116735243a699a3feb046b0b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:21:16 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09dfce1b

dev-ruby/rmagick: x86 stable (bug #688194)

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

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

diff --git a/dev-ruby/rmagick/rmagick-3.1.0.ebuild 
b/dev-ruby/rmagick/rmagick-3.1.0.ebuild
index 341fb6d7f39..b0861307d46 100644
--- a/dev-ruby/rmagick/rmagick-3.1.0.ebuild
+++ b/dev-ruby/rmagick/rmagick-3.1.0.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/gemhome/rmagick;
 
 LICENSE="Artistic"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-macos"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 x86 ~x86-macos"
 IUSE="doc"
 
 RDEPEND+=" >=media-gfx/imagemagick-6.9.0:= =media-gfx/imagemagick-6*"



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

2019-06-18 Thread Thomas Deutschmann
commit: d5101d0c20cf4be1fafe232e7beb8c62018dbb78
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:16:28 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5101d0c

app-text/libmwaw: x86 stable (bug #686736)

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

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

diff --git a/app-text/libmwaw/libmwaw-0.3.15.ebuild 
b/app-text/libmwaw/libmwaw-0.3.15.ebuild
index 46d14d23438..6ee596d4503 100644
--- a/app-text/libmwaw/libmwaw-0.3.15.ebuild
+++ b/app-text/libmwaw/libmwaw-0.3.15.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} =  ]]; then
inherit autotools git-r3
 else
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 fi
 
 DESCRIPTION="Library parsing many pre-OSX MAC text formats"



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

2019-06-18 Thread Thomas Deutschmann
commit: 4696bb563b259b1dfc367ab31d023fdee7d2dc41
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:19:38 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4696bb56

x11-misc/lightdm: x86 stable (bug #688202)

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

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

diff --git a/x11-misc/lightdm/lightdm-1.28.0.ebuild 
b/x11-misc/lightdm/lightdm-1.28.0.ebuild
index c8b6c608fa3..f5fc252f32e 100644
--- a/x11-misc/lightdm/lightdm-1.28.0.ebuild
+++ b/x11-misc/lightdm/lightdm-1.28.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/CanonicalLtd/lightdm/releases/download/${PV}/${P}.ta
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
 IUSE="audit +gnome +gtk +introspection qt5 vala"
 
 COMMON_DEPEND="



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

2019-06-18 Thread Thomas Deutschmann
commit: f66597852f9e61b1481e8a0918ac7c00c71c6f39
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:14:22 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6659785

app-office/libreoffice-l10n: x86 stable (bug #686736)

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

 app-office/libreoffice-l10n/libreoffice-l10n-6.2.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-6.2.4.2.ebuild 
b/app-office/libreoffice-l10n/libreoffice-l10n-6.2.4.2.ebuild
index a22cefd5672..8712656dd28 100644
--- a/app-office/libreoffice-l10n/libreoffice-l10n-6.2.4.2.ebuild
+++ b/app-office/libreoffice-l10n/libreoffice-l10n-6.2.4.2.ebuild
@@ -17,7 +17,7 @@ 
BASE_SRC_URI_STABLE="https://download.documentfoundation.org/${PN/-l10n/}/stable
 
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="offlinehelp"
 
 #



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

2019-06-18 Thread Thomas Deutschmann
commit: 1af66471e68704724eb8dcf06ab6a13182390a3e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:17:39 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1af66471

dev-libs/libixion: x86 stable (bug #686736)

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

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

diff --git a/dev-libs/libixion/libixion-0.14.1.ebuild 
b/dev-libs/libixion/libixion-0.14.1.ebuild
index 85094d02e6a..16136df8a11 100644
--- a/dev-libs/libixion/libixion-0.14.1.ebuild
+++ b/dev-libs/libixion/libixion-0.14.1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3 autotools
 else
SRC_URI="https://kohei.us/files/ixion/src/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="MIT"



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

2019-06-18 Thread Thomas Deutschmann
commit: 6d7a85f78dc8376a897d4e7cb05493ef87fad161
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jun 18 18:08:40 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jun 18 18:24:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d7a85f7

app-arch/hardlink: x86 stable (bug #688188)

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

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

diff --git a/app-arch/hardlink/hardlink-0.3.2.ebuild 
b/app-arch/hardlink/hardlink-0.3.2.ebuild
index 469e8fa45b5..62477f0ee76 100644
--- a/app-arch/hardlink/hardlink-0.3.2.ebuild
+++ b/app-arch/hardlink/hardlink-0.3.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://salsa.debian.org/jak/${PN}/-/archive/${PV}/${P}.tar.bz2;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ppc ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ppc ppc64 x86"
 
 RDEPEND="
dev-libs/libpcre



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

2019-06-18 Thread Sergei Trofimovich
commit: 1de95e31649296cf18d14f1e930ddc63ff314ff0
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun 18 08:22:07 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun 18 18:17:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1de95e31

dev-python/rdflib: stable 4.2.2-r1 for hppa, bug #639114

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

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

diff --git a/dev-python/rdflib/rdflib-4.2.2-r1.ebuild 
b/dev-python/rdflib/rdflib-4.2.2-r1.ebuild
index 2181a2dec6c..e933d39cedf 100644
--- a/dev-python/rdflib/rdflib-4.2.2-r1.ebuild
+++ b/dev-python/rdflib/rdflib-4.2.2-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc berkdb examples mysql redland sqlite test"
 RESTRICT="!test? ( test )"
 



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

2019-06-18 Thread Sergei Trofimovich
commit: 39f238ce433e6a862f212e4ca23b6328f8c1965a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun 18 08:23:26 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun 18 18:17:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39f238ce

dev-libs/serd: stable 0.28.0-r1 for hppa, bug #686594

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

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

diff --git a/dev-libs/serd/serd-0.28.0-r1.ebuild 
b/dev-libs/serd/serd-0.28.0-r1.ebuild
index 2e1f11f6e97..f5bafa5d5d9 100644
--- a/dev-libs/serd/serd-0.28.0-r1.ebuild
+++ b/dev-libs/serd/serd-0.28.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 x86"
 IUSE="doc static-libs test"
 
 RDEPEND=""



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

2019-06-18 Thread Sergei Trofimovich
commit: d33d227b05444146cb76c9cc5d225f863a9e20ce
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun 18 08:21:03 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun 18 18:17:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d33d227b

dev-python/sparql-wrapper: stable 1.8.0 for hppa, bug #639114

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

 dev-python/sparql-wrapper/sparql-wrapper-1.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/sparql-wrapper/sparql-wrapper-1.8.0.ebuild 
b/dev-python/sparql-wrapper/sparql-wrapper-1.8.0.ebuild
index eb170d9b9d6..704ca71aebd 100644
--- a/dev-python/sparql-wrapper/sparql-wrapper-1.8.0.ebuild
+++ b/dev-python/sparql-wrapper/sparql-wrapper-1.8.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="W3C"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux"
 
 IUSE=""
 



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

2019-06-18 Thread Sergei Trofimovich
commit: d990ba8e04bb9dbbb471cd921a5efc8868e3266a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun 18 08:18:58 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun 18 18:17:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d990ba8e

dev-ruby/log4r: stable 1.1.10-r2 for hppa

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

 dev-ruby/log4r/log4r-1.1.10-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/log4r/log4r-1.1.10-r2.ebuild 
b/dev-ruby/log4r/log4r-1.1.10-r2.ebuild
index 1e1fbf160f8..b602ba94eda 100644
--- a/dev-ruby/log4r/log4r-1.1.10-r2.ebuild
+++ b/dev-ruby/log4r/log4r-1.1.10-r2.ebuild
@@ -19,7 +19,7 @@ IUSE=""
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86"
 
 all_ruby_install() {
all_fakegem_install



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

2019-06-18 Thread Sergei Trofimovich
commit: 6605c57122de4d333bf850c26ff980fbacffb197
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun 18 08:17:40 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun 18 18:16:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6605c571

dev-ruby/log4r: restore stable 1.1.10-r2 for sparc

This reverts 134676cf9226826fa79de4e7c6314454fba1c968.

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

 dev-ruby/log4r/log4r-1.1.10-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/log4r/log4r-1.1.10-r2.ebuild 
b/dev-ruby/log4r/log4r-1.1.10-r2.ebuild
index 24bc6aaf683..1e1fbf160f8 100644
--- a/dev-ruby/log4r/log4r-1.1.10-r2.ebuild
+++ b/dev-ruby/log4r/log4r-1.1.10-r2.ebuild
@@ -19,7 +19,7 @@ IUSE=""
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 sparc x86"
 
 all_ruby_install() {
all_fakegem_install



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

2019-06-18 Thread Sergei Trofimovich
commit: 8d21737bc48f2bc4d2226a58a48756261d9c1996
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun 18 08:24:01 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun 18 18:17:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d21737b

dev-libs/sord: stable 0.16.0-r1 for hppa, bug #686594

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

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

diff --git a/dev-libs/sord/sord-0.16.0-r1.ebuild 
b/dev-libs/sord/sord-0.16.0-r1.ebuild
index bc604ce422a..7407ad773d8 100644
--- a/dev-libs/sord/sord-0.16.0-r1.ebuild
+++ b/dev-libs/sord/sord-0.16.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://download.drobilla.net/${P}.tar.bz2;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 x86"
 IUSE="doc static-libs test"
 
 RDEPEND=">=dev-libs/serd-0.28.0-r1"



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

2019-06-18 Thread Sergei Trofimovich
commit: 28ea9c184d315b00440e424f0c6b2231f6048405
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jun 18 08:20:16 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jun 18 18:17:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28ea9c18

dev-libs/redland-bindings: stable 1.0.14.1-r2 for hppa

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

 dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild 
b/dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild
index b113ecc582d..c6c5e9ddee6 100644
--- a/dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild
+++ b/dev-libs/redland-bindings/redland-bindings-1.0.14.1-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://download.librdf.org/source/${P}.tar.gz;
 
 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ppc ppc64 sparc x86 ~x86-linux 
~ppc-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-linux 
~ppc-macos"
 IUSE="lua perl python php ruby"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2019-06-18 Thread Mike Gilbert
commit: 221b5a28d5ea8dcfe9be5dc7d4c26a11aa4cf2d4
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Jun 18 17:49:18 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Jun 18 17:49:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=221b5a28

sys-devel/gettext: set QA_SONAME_SYMLINK=".*/preloadable_libintl.so"

Note this requires portage@f9f28734257129dd102d16e22ca5a6432243ddc3 to
work properly.

Closes: https://bugs.gentoo.org/374545
Package-Manager: Portage-2.3.67_p10, Repoman-2.3.14_p5
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-devel/gettext/gettext-0.19.8.1.ebuild | 2 ++
 sys-devel/gettext/gettext-0.20.1.ebuild   | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/sys-devel/gettext/gettext-0.19.8.1.ebuild 
b/sys-devel/gettext/gettext-0.19.8.1.ebuild
index 9f67faf385d..11311e92bc8 100644
--- a/sys-devel/gettext/gettext-0.19.8.1.ebuild
+++ b/sys-devel/gettext/gettext-0.19.8.1.ebuild
@@ -43,6 +43,8 @@ MULTILIB_WRAPPED_HEADERS=(
/usr/include/gettext-po.h
 )
 
+QA_SONAME_NO_SYMLINK=".*/preloadable_libintl.so"
+
 pkg_setup() {
mono-env_pkg_setup
java-pkg-opt-2_pkg_setup

diff --git a/sys-devel/gettext/gettext-0.20.1.ebuild 
b/sys-devel/gettext/gettext-0.20.1.ebuild
index 8f4c83d5321..8cf0b2e8bd2 100644
--- a/sys-devel/gettext/gettext-0.20.1.ebuild
+++ b/sys-devel/gettext/gettext-0.20.1.ebuild
@@ -55,6 +55,8 @@ PATCHES=(
"${FILESDIR}"/${PN}-0.20-avoid_eautomake.patch
 )
 
+QA_SONAME_NO_SYMLINK=".*/preloadable_libintl.so"
+
 pkg_setup() {
mono-env_pkg_setup
java-pkg-opt-2_pkg_setup



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

2019-06-18 Thread Hans de Graaff
commit: 2dd15aab50858987e76fc6bdf399f36403ab
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jun 18 17:33:26 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jun 18 17:33:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd15aab

dev-ruby/sassc-rails: add 2.1.2

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

 dev-ruby/sassc-rails/Manifest |  1 +
 dev-ruby/sassc-rails/sassc-rails-2.1.2.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/dev-ruby/sassc-rails/Manifest b/dev-ruby/sassc-rails/Manifest
index 714064312ac..cb0fc535dcb 100644
--- a/dev-ruby/sassc-rails/Manifest
+++ b/dev-ruby/sassc-rails/Manifest
@@ -1 +1,2 @@
 DIST sassc-rails-2.1.1.gem 33280 BLAKE2B 
eaa66fa6bfa60a41c8b2a180ac58758d860feaa33aad6a92b28b3224361837281c353041f854317591ef4ae99a6e48f00d8cb31fdf1e5c6a12f58fb24809d615
 SHA512 
d612a0c5d0d4f55600f8f9734f5bcf30c62c2bcd657b917ee13e95b7f7c3c08b2b4cb2b62b75c52e08992b254279aa4988c3e94b56b91490532b2382dc0d8555
+DIST sassc-rails-2.1.2.gem 33280 BLAKE2B 
1ecd048a879ea9ba08390ed81c679a3a4461f3937d1b0ce5ee001810067286f386ea885787984ffa417d2af191f178563e892ea24f1b466b6538c815fadbd9e3
 SHA512 
d250f22a3f2c4afb56a22f4533194d80b8a301730e5e4b49f9613e489f7158e7bd9c02cff8e1ec8ce727ede25f1c03a2613a664291967b5e97e210f7890d0bc8

diff --git a/dev-ruby/sassc-rails/sassc-rails-2.1.2.ebuild 
b/dev-ruby/sassc-rails/sassc-rails-2.1.2.ebuild
new file mode 100644
index 000..ca9443f56d9
--- /dev/null
+++ b/dev-ruby/sassc-rails/sassc-rails-2.1.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="Integrate SassC-Ruby with Rails"
+HOMEPAGE="https://github.com/sass/sassc-rails;
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/sassc-2.0
+   dev-ruby/tilt:*
+   >=dev-ruby/railties-4:*
+   >=dev-ruby/sprockets-3.0:*
+   dev-ruby/sprockets-rails:*
+"
+
+ruby_add_bdepend "
+   test? ( dev-ruby/bundler dev-ruby/mocha )"
+
+all_ruby_prepare() {
+   sed -i -e '/rake/ s/,.*$//' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_test() {
+   ${RUBY} -S bundle exec rake test || die
+}



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

2019-06-18 Thread Justin Bronder
commit: ee426cdc427cb6e3fbd1ad5400498d05b7d2e0ae
Author: Justin Bronder  gentoo  org>
AuthorDate: Tue Jun 18 17:23:30 2019 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Tue Jun 18 17:23:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee426cdc

www-client/qutebrowser: bump 1.6.3

Signed-off-by: Justin Bronder  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 www-client/qutebrowser/Manifest | 2 +-
 .../{qutebrowser-1.6.1-r1.ebuild => qutebrowser-1.6.3.ebuild}   | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/qutebrowser/Manifest b/www-client/qutebrowser/Manifest
index e6c0525da12..2c206bf7202 100644
--- a/www-client/qutebrowser/Manifest
+++ b/www-client/qutebrowser/Manifest
@@ -1,2 +1,2 @@
-DIST qutebrowser-1.6.1.tar.gz 3657215 BLAKE2B 
da8f4e725a6547b45993bf59b1128aa475656afa4b543a0edc2233bbcb1067a3159f791fd90028008f68cbd7389ae33deeecc158408e27f57b2ae35ca334ea20
 SHA512 
ff8c50dd8524f6f8623f0d5ae205355a2b86f70eff1320c3b47dad9cb2a481c372d82f698497c0d2745291962999ff111fade14141a8390e337343fb01145998
 DIST qutebrowser-1.6.2.tar.gz 3581355 BLAKE2B 
64c2c379ddc606aec26e87e328c8ea8ee9e67e74ea9f68109595e40f184ba21b576d9ad02de4fb127c63ec7c0c103fe989b74a67a05ef64bff6f3d238a70c481
 SHA512 
708fe9c5db54fdab0697e03ce26d901ee18da2a04d3934c0705f9cdff543e859892de2ac9aa9e3b0b12c4a3d6be7a492d34a868058e4a6b21f06d4343caff89a
+DIST qutebrowser-1.6.3.tar.gz 3582973 BLAKE2B 
950f77612b5476a2026669890fe6568f2fc2e808cd2439aae47e3836b66424136269b639eef98599064c57f506b927ecb2391d8a8f48391f9a67c8e460cc9019
 SHA512 
6bb0a5d3d39b7ea0fdbf48fae6b70d4b2be7b7f065a9933b9933f11bcf6373798ea31c100808cd445b12fc163ad6c578b0eef723418c1d6e0c251c24f9cd089e

diff --git a/www-client/qutebrowser/qutebrowser-1.6.1-r1.ebuild 
b/www-client/qutebrowser/qutebrowser-1.6.3.ebuild
similarity index 100%
rename from www-client/qutebrowser/qutebrowser-1.6.1-r1.ebuild
rename to www-client/qutebrowser/qutebrowser-1.6.3.ebuild



[gentoo-commits] proj/portage:master commit in: lib/portage/package/ebuild/

2019-06-18 Thread Zac Medico
commit: f9f28734257129dd102d16e22ca5a6432243ddc3
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Jun 17 23:09:23 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jun 18 17:11:06 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=f9f28734

ebuild: fix QA_SONAME_NO_SYMLINK

misc-functions.sh and ebuild.5 reference QA_SONAME_NO_SYMLINK.
Update doebuild.py to match this name.

Fixes: c9aebae4633a ("_post_src_install_soname_symlinks: fix bug 543818")
Signed-off-by: Mike Gilbert  gentoo.org>
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/package/ebuild/doebuild.py | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/lib/portage/package/ebuild/doebuild.py 
b/lib/portage/package/ebuild/doebuild.py
index bea5535bd..67867d33e 100644
--- a/lib/portage/package/ebuild/doebuild.py
+++ b/lib/portage/package/ebuild/doebuild.py
@@ -2263,7 +2263,7 @@ def _post_src_install_soname_symlinks(mysettings, out):
f.close()
 
metadata = {}
-   for k in ("QA_PREBUILT", "QA_NO_SYMLINK"):
+   for k in ("QA_PREBUILT", "QA_SONAME_NO_SYMLINK"):
try:
with io.open(_unicode_encode(os.path.join(
mysettings["PORTAGE_BUILDDIR"],
@@ -2284,14 +2284,14 @@ def _post_src_install_soname_symlinks(mysettings, out):
fnmatch.translate(x.lstrip(os.sep))
for x in portage.util.shlex_split(qa_prebuilt)))
 
-   qa_no_symlink = metadata.get("QA_NO_SYMLINK", "").split()
-   if qa_no_symlink:
-   if len(qa_no_symlink) > 1:
-   qa_no_symlink = "|".join("(%s)" % x for x in 
qa_no_symlink)
-   qa_no_symlink = "^(%s)$" % qa_no_symlink
+   qa_soname_no_symlink = metadata.get("QA_SONAME_NO_SYMLINK", "").split()
+   if qa_soname_no_symlink:
+   if len(qa_soname_no_symlink) > 1:
+   qa_soname_no_symlink = "|".join("(%s)" % x for x in 
qa_soname_no_symlink)
+   qa_soname_no_symlink = "^(%s)$" % qa_soname_no_symlink
else:
-   qa_no_symlink = "^%s$" % qa_no_symlink[0]
-   qa_no_symlink = re.compile(qa_no_symlink)
+   qa_soname_no_symlink = "^%s$" % qa_soname_no_symlink[0]
+   qa_soname_no_symlink = re.compile(qa_soname_no_symlink)
 
libpaths = set(portage.util.getlibpaths(
mysettings["ROOT"], env=mysettings))
@@ -2400,7 +2400,7 @@ def _post_src_install_soname_symlinks(mysettings, out):
continue
if not is_libdir(os.path.dirname(obj)):
continue
-   if qa_no_symlink and qa_no_symlink.match(obj.strip(os.sep)) is 
not None:
+   if qa_soname_no_symlink and 
qa_soname_no_symlink.match(obj.strip(os.sep)) is not None:
continue
 
obj_file_path = os.path.join(image_dir, obj.lstrip(os.sep))



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/systemsettings/, kde-plasma/breeze-gtk/, kde-plasma/breeze-grub/, ...

2019-06-18 Thread Andreas Sturmlechner
commit: ef33b2d13c3d41f437811520cf87eb78d7bc5849
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun 18 16:49:22 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun 18 16:49:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef33b2d1

kde-plasma: Drop KDE Plasma 5.16.0

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

 kde-plasma/bluedevil/Manifest  |   1 -
 kde-plasma/bluedevil/bluedevil-5.16.0.ebuild   |  34 
 kde-plasma/breeze-grub/Manifest|   1 -
 kde-plasma/breeze-grub/breeze-grub-5.16.0.ebuild   |  22 ---
 kde-plasma/breeze-gtk/Manifest |   1 -
 kde-plasma/breeze-gtk/breeze-gtk-5.16.0.ebuild |  28 
 kde-plasma/breeze-plymouth/Manifest|   1 -
 .../breeze-plymouth/breeze-plymouth-5.16.0.ebuild  |  25 ---
 kde-plasma/breeze/Manifest |   1 -
 kde-plasma/breeze/breeze-5.16.0.ebuild |  49 --
 kde-plasma/discover/Manifest   |   1 -
 kde-plasma/discover/discover-5.16.0.ebuild |  70 -
 kde-plasma/drkonqi/Manifest|   1 -
 kde-plasma/drkonqi/drkonqi-5.16.0.ebuild   |  55 ---
 kde-plasma/kactivitymanagerd/Manifest  |   1 -
 .../kactivitymanagerd-5.16.0.ebuild|  34 
 kde-plasma/kde-cli-tools/Manifest  |   1 -
 .../kde-cli-tools/kde-cli-tools-5.16.0.ebuild  |  64 
 kde-plasma/kde-gtk-config/Manifest |   1 -
 .../kde-gtk-config/kde-gtk-config-5.16.0.ebuild|  52 ---
 kde-plasma/kdecoration/Manifest|   1 -
 kde-plasma/kdecoration/kdecoration-5.16.0.ebuild   |  19 ---
 kde-plasma/kdeplasma-addons/Manifest   |   1 -
 .../kdeplasma-addons-5.16.0.ebuild |  57 ---
 kde-plasma/kgamma/Manifest |   1 -
 kde-plasma/kgamma/kgamma-5.16.0.ebuild |  26 
 kde-plasma/khotkeys/Manifest   |   1 -
 kde-plasma/khotkeys/khotkeys-5.16.0.ebuild |  44 --
 kde-plasma/kinfocenter/Manifest|   1 -
 kde-plasma/kinfocenter/kinfocenter-5.16.0.ebuild   |  99 
 kde-plasma/kmenuedit/Manifest  |   1 -
 kde-plasma/kmenuedit/kmenuedit-5.16.0.ebuild   |  44 --
 kde-plasma/kscreen/Manifest|   1 -
 kde-plasma/kscreen/kscreen-5.16.0.ebuild   |  39 -
 kde-plasma/kscreenlocker/Manifest  |   1 -
 .../kscreenlocker/kscreenlocker-5.16.0.ebuild  |  94 ---
 kde-plasma/ksshaskpass/Manifest|   1 -
 kde-plasma/ksshaskpass/ksshaskpass-5.16.0.ebuild   |  46 --
 kde-plasma/ksysguard/Manifest  |   1 -
 kde-plasma/ksysguard/ksysguard-5.16.0.ebuild   |  45 --
 kde-plasma/kwallet-pam/Manifest|   1 -
 kde-plasma/kwallet-pam/kwallet-pam-5.16.0.ebuild   |  33 
 kde-plasma/kwayland-integration/Manifest   |   1 -
 .../kwayland-integration-5.16.0.ebuild |  25 ---
 kde-plasma/kwin/Manifest   |   1 -
 kde-plasma/kwin/kwin-5.16.0.ebuild | 105 -
 kde-plasma/kwrited/Manifest|   1 -
 kde-plasma/kwrited/kwrited-5.16.0.ebuild   |  21 ---
 kde-plasma/libkscreen/Manifest |   1 -
 kde-plasma/libkscreen/libkscreen-5.16.0.ebuild |  26 
 kde-plasma/libksysguard/Manifest   |   1 -
 kde-plasma/libksysguard/libksysguard-5.16.0.ebuild |  52 ---
 kde-plasma/libkworkspace/Manifest  |   1 -
 .../libkworkspace/libkworkspace-5.16.0.ebuild  |  54 ---
 kde-plasma/milou/Manifest  |   1 -
 kde-plasma/milou/milou-5.16.0.ebuild   |  28 
 kde-plasma/oxygen/Manifest |   1 -
 kde-plasma/oxygen/oxygen-5.16.0.ebuild |  45 --
 kde-plasma/plasma-browser-integration/Manifest |   1 -
 .../plasma-browser-integration-5.16.0.ebuild   |  35 -
 kde-plasma/plasma-desktop/Manifest |   1 -
 .../plasma-desktop/plasma-desktop-5.16.0.ebuild| 142 -
 kde-plasma/plasma-integration/Manifest |   1 -
 .../plasma-integration-5.16.0.ebuild   |  43 --
 kde-plasma/plasma-meta/plasma-meta-5.16.0.ebuild   | 109 -
 kde-plasma/plasma-nm/Manifest  |   1 -
 kde-plasma/plasma-nm/plasma-nm-5.16.0.ebuild   |  74 -
 kde-plasma/plasma-pa/Manifest  |   1 -
 kde-plasma/plasma-pa/plasma-pa-5.16.0.ebuild   |  32 
 kde-plasma/plasma-sdk/Manifest |   1 -
 kde-plasma/plasma-sdk/plasma-sdk-5.16.0.ebuild |  38 -
 kde-plasma/plasma-vault/Manifest   |   1 -
 

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

2019-06-18 Thread Ben Kohler
commit: f0d134821f7025ff18ab4d257e182fc0c551851b
Author: Ben Kohler  gentoo  org>
AuthorDate: Tue Jun 18 16:24:53 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Tue Jun 18 16:24:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0d13482

sys-kernel/gentoo-sources: sparc stable per wrt bug #688526

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ben Kohler  gentoo.org>

 sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild  | 2 +-
 sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild
index 9f7378dec01..83542c68d56 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.127.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild
index 6f1de2cfc6c..bb7a0232c6d 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.52.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild
index 5ae080d70c1..dd0dba8985a 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.182.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild
index 1aaa05c7927..656b97b7abe 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.182.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



[gentoo-commits] repo/gentoo:master commit in: media-video/unifi-video/

2019-06-18 Thread Ben Kohler
commit: 6718e44daf26588b1424e7ae01d46e4be1d25859
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jun 12 19:25:16 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Tue Jun 18 16:21:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6718e44d

media-video/unifi-video: bump to 3.10.5

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Ben Kohler  gentoo.org>

 media-video/unifi-video/Manifest  |  1 +
 media-video/unifi-video/unifi-video-3.10.5.ebuild | 80 +++
 2 files changed, 81 insertions(+)

diff --git a/media-video/unifi-video/Manifest b/media-video/unifi-video/Manifest
index 7c232e6ec4d..fe07e1f360a 100644
--- a/media-video/unifi-video/Manifest
+++ b/media-video/unifi-video/Manifest
@@ -1,3 +1,4 @@
 DIST unifi-video.Ubuntu16.04_amd64.v3.10.1.deb 162379830 BLAKE2B 
8183cf0ea37507059b87f5f51a377a12cb2f5fab31675eac720cffa2f9c60e46e6a8eb68279992703722ba40c3fbe7a9a723596ee20e31ccec0959841851325d
 SHA512 
3ac83e3ff7beb8c765c8908b80c7747807da73e3a9e077a9f5a22aaf3e307c369258c7ea6651e18ca74b570d359fa65b6cbfce0017cb73cb916a2bc8614b374d
 DIST unifi-video.Ubuntu16.04_amd64.v3.10.4.deb 161279504 BLAKE2B 
a9bac456218a1908e67bcebeadd06672ce6de4a24e62cd99dedc6de4e36774047531e8b00429e0dc8eb536e6ad77de236d89da83edfbaef8d7a7feb04df6c482
 SHA512 
d45f97905078ee6f9911bbea239d72432dda849c5fa16a11c2576e1dac78a0b612e420ae59f11ff7bdfec3c7eca9396a72d249d4fc90f93f9e92c57571f19093
+DIST unifi-video.Ubuntu16.04_amd64.v3.10.5.deb 161280194 BLAKE2B 
ae326fe818261124fb8bd1939e55cc2dfa1bb8bfd3350bb5b94ec74fe9a7ec57853548dfbf8ddf33699e0281a5cb918926a6fb93b6de07339072bca51bab2a46
 SHA512 
4e431f72e5c51952bb7a1e97d6cab407e03d7a42cfaaed97cbf65dbc0b7ebec2a04675783bebed6d0a3d69b1ef5988f6af4770a9ce680258999c481ccefd0bd2
 DIST unifi-video.Ubuntu16.04_amd64.v3.9.12.deb 117448948 BLAKE2B 
83769ec07fccbcd955115493510bcd58b88433b7d7204be29d6329674cf4d6dea7fe4b6aedd0e89f852d89ae9a298a9284386aeb4480f43a91dbe6ea958ab10b
 SHA512 
0e2eaefdee74b6b6c5ae54870673591ce4e2d2e4c07e068987f609597c43a12308aebdce705e316555378e04eeb13aaa0c00b496097123960215773cbfa69348

diff --git a/media-video/unifi-video/unifi-video-3.10.5.ebuild 
b/media-video/unifi-video/unifi-video-3.10.5.ebuild
new file mode 100644
index 000..c975418c3dc
--- /dev/null
+++ b/media-video/unifi-video/unifi-video-3.10.5.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit systemd user
+
+MY_PV="${PV/_beta/-beta.}"
+DESCRIPTION="UniFi Video Server"
+HOMEPAGE="https://www.ubnt.com/download/unifi-video/;
+SRC_URI="https://dl.ubnt.com/firmwares/ufv/v${MY_PV}/unifi-video.Ubuntu16.04_amd64.v${MY_PV}.deb;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+RESTRICT="mirror"
+
+DEPEND=""
+RDEPEND="dev-db/mongodb
+   dev-java/commons-daemon
+   sys-apps/lsb-release
+   sys-libs/libcap
+   virtual/jre:1.8"
+
+S=${WORKDIR}
+QA_PREBUILT="usr/lib*/${PN}/lib/*.so usr/lib*/${PN}/bin/*"
+
+pkg_setup() {
+   enewuser ${PN}
+   enewgroup ${PN}
+}
+
+src_unpack() {
+   default
+   unpack "${WORKDIR}"/data.tar.gz
+}
+
+src_prepare() {
+   eapply "${FILESDIR}"/commons-daemon-move.patch
+   sed -i usr/sbin/${PN} \
+   -e '/require_root$/d' \
+   -e '/update_limits$/d' \
+   -e '/ulimit/d' \
+   -e '/coredump_filter/d' || die
+   default
+}
+
+src_install() {
+   static_dir="/usr/$(get_libdir)/${PN}"
+   #install static data
+   insinto ${static_dir}
+   doins -r usr/lib/${PN}/*
+   fperms -R +x ${static_dir}/bin
+   fowners -R ${PN}:${PN} ${static_dir}/conf/evostream/
+
+   #prepare runtime-data dirs which live in /var but are symlinked from 
static
+   #data dir, and are writable by non-root user
+   dodir /var/log/${PN}
+   fowners ${PN}:${PN} /var/log/${PN}
+   dosym ../../../var/log/${PN} ${static_dir}/logs
+
+   dodir /var/lib/${PN}/work
+   fowners ${PN}:${PN} /var/lib/${PN}/work
+   dosym ../../../var/lib/${PN}/work ${static_dir}/work
+
+   keepdir /var/lib/${PN}/data
+   fowners ${PN}:${PN} /var/lib/${PN}/data
+   dosym ../../../var/lib/${PN}/data ${static_dir}/data
+
+   echo "CONFIG_PROTECT=\"/var/lib/${PN}/data/system.properties\"" > 
"${T}"/99${PN}
+   doenvd "${T}"/99${PN}
+
+   into /usr
+   dosbin usr/sbin/${PN}
+   dosym ../../../bin/mongod ${static_dir}/bin/mongod
+
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   systemd_dounit "${FILESDIR}"/${PN}.service
+}



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kactivitymanagerd/, kde-plasma/plasma-vault/, kde-plasma/ksshaskpass/, ...

2019-06-18 Thread Andreas Sturmlechner
commit: dd8e6c848a97aea2c41c5c69bc0aa5585722e39c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun 18 14:25:59 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun 18 16:11:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd8e6c84

kde-plasma: Add KDE Plasma 5.16.1

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

 kde-plasma/bluedevil/Manifest  |   1 +
 kde-plasma/bluedevil/bluedevil-5.16.1.ebuild   |  34 
 kde-plasma/breeze-grub/Manifest|   1 +
 kde-plasma/breeze-grub/breeze-grub-5.16.1.ebuild   |  22 +++
 kde-plasma/breeze-gtk/Manifest |   1 +
 kde-plasma/breeze-gtk/breeze-gtk-5.16.1.ebuild |  28 
 kde-plasma/breeze-plymouth/Manifest|   1 +
 .../breeze-plymouth/breeze-plymouth-5.16.1.ebuild  |  25 +++
 kde-plasma/breeze/Manifest |   1 +
 kde-plasma/breeze/breeze-5.16.1.ebuild |  49 ++
 kde-plasma/discover/Manifest   |   1 +
 kde-plasma/discover/discover-5.16.1.ebuild |  70 +
 kde-plasma/drkonqi/Manifest|   1 +
 kde-plasma/drkonqi/drkonqi-5.16.1.ebuild   |  55 +++
 kde-plasma/kactivitymanagerd/Manifest  |   1 +
 .../kactivitymanagerd-5.16.1.ebuild|  34 
 kde-plasma/kde-cli-tools/Manifest  |   1 +
 .../kde-cli-tools/kde-cli-tools-5.16.1.ebuild  |  64 
 kde-plasma/kde-gtk-config/Manifest |   1 +
 .../kde-gtk-config/kde-gtk-config-5.16.1.ebuild|  52 +++
 kde-plasma/kdecoration/Manifest|   1 +
 kde-plasma/kdecoration/kdecoration-5.16.1.ebuild   |  19 +++
 kde-plasma/kdeplasma-addons/Manifest   |   1 +
 .../kdeplasma-addons-5.16.1.ebuild |  57 +++
 kde-plasma/kgamma/Manifest |   1 +
 kde-plasma/kgamma/kgamma-5.16.1.ebuild |  26 
 kde-plasma/khotkeys/Manifest   |   1 +
 kde-plasma/khotkeys/khotkeys-5.16.1.ebuild |  44 ++
 kde-plasma/kinfocenter/Manifest|   1 +
 kde-plasma/kinfocenter/kinfocenter-5.16.1.ebuild   |  99 
 kde-plasma/kmenuedit/Manifest  |   1 +
 kde-plasma/kmenuedit/kmenuedit-5.16.1.ebuild   |  44 ++
 kde-plasma/kscreen/Manifest|   1 +
 kde-plasma/kscreen/kscreen-5.16.1.ebuild   |  39 +
 kde-plasma/kscreenlocker/Manifest  |   1 +
 .../kscreenlocker/kscreenlocker-5.16.1.ebuild  |  94 +++
 kde-plasma/ksshaskpass/Manifest|   1 +
 kde-plasma/ksshaskpass/ksshaskpass-5.16.1.ebuild   |  46 ++
 kde-plasma/ksysguard/Manifest  |   1 +
 kde-plasma/ksysguard/ksysguard-5.16.1.ebuild   |  45 ++
 kde-plasma/kwallet-pam/Manifest|   1 +
 kde-plasma/kwallet-pam/kwallet-pam-5.16.1.ebuild   |  33 
 kde-plasma/kwayland-integration/Manifest   |   1 +
 .../kwayland-integration-5.16.1.ebuild |  25 +++
 kde-plasma/kwin/Manifest   |   1 +
 kde-plasma/kwin/kwin-5.16.1.ebuild | 105 +
 kde-plasma/kwrited/Manifest|   1 +
 kde-plasma/kwrited/kwrited-5.16.1.ebuild   |  21 +++
 kde-plasma/libkscreen/Manifest |   1 +
 kde-plasma/libkscreen/libkscreen-5.16.1.ebuild |  26 
 kde-plasma/libksysguard/Manifest   |   1 +
 kde-plasma/libksysguard/libksysguard-5.16.1.ebuild |  52 +++
 kde-plasma/libkworkspace/Manifest  |   1 +
 .../libkworkspace/libkworkspace-5.16.1.ebuild  |  54 +++
 kde-plasma/milou/Manifest  |   1 +
 kde-plasma/milou/milou-5.16.1.ebuild   |  28 
 kde-plasma/oxygen/Manifest |   1 +
 kde-plasma/oxygen/oxygen-5.16.1.ebuild |  45 ++
 kde-plasma/plasma-browser-integration/Manifest |   1 +
 .../plasma-browser-integration-5.16.1.ebuild   |  35 +
 kde-plasma/plasma-desktop/Manifest |   1 +
 .../plasma-desktop/plasma-desktop-5.16.1.ebuild| 142 +
 kde-plasma/plasma-integration/Manifest |   1 +
 .../plasma-integration-5.16.1.ebuild   |  43 ++
 kde-plasma/plasma-meta/plasma-meta-5.16.1.ebuild   | 109 +
 kde-plasma/plasma-nm/Manifest  |   1 +
 kde-plasma/plasma-nm/plasma-nm-5.16.1.ebuild   |  74 +
 kde-plasma/plasma-pa/Manifest  |   1 +
 kde-plasma/plasma-pa/plasma-pa-5.16.1.ebuild   |  32 
 kde-plasma/plasma-sdk/Manifest |   1 +
 kde-plasma/plasma-sdk/plasma-sdk-5.16.1.ebuild |  38 +
 kde-plasma/plasma-vault/Manifest   |   1 +
 

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

2019-06-18 Thread Mike Gilbert
commit: 3ff3196b2d293228aff64dd300bd405851aaae3c
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Tue Jun 18 16:05:30 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Jun 18 16:10:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ff3196b

net-misc/cadaver: Add ${EPREFIX}.

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/cadaver/cadaver-0.23.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/cadaver/cadaver-0.23.3.ebuild 
b/net-misc/cadaver/cadaver-0.23.3.ebuild
index cbb8805aaa1..c329d370cd8 100644
--- a/net-misc/cadaver/cadaver-0.23.3.ebuild
+++ b/net-misc/cadaver/cadaver-0.23.3.ebuild
@@ -30,8 +30,8 @@ src_prepare() {
-e "/AM_GNU_GETTEXT/s:no-libtool:external:" \
-e "/AC_CONFIG_FILES/s: lib/neon/Makefile lib/intl/Makefile::" \
-i configure.ac || die "sed configure.ac failed"
-   sed -e "s/^\(SUBDIRS.*=\).*/\1/" -i Makefile.in || die "sed Makefile.in 
failed"
-   cp /usr/share/gettext/po/Makefile.in.in po || die "cp failed"
+   sed -e "s:^\(SUBDIRS.*=\).*:\1:" -i Makefile.in || die "sed Makefile.in 
failed"
+   cp "${EPREFIX}/usr/share/gettext/po/Makefile.in.in" po || die "cp 
failed"
 
AT_M4DIR="m4 m4/neon" eautoreconf
 }



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

2019-06-18 Thread Johannes Huber
commit: f765a8b852e8fe86b7d4608865a62ea8074f39e3
Author: Johannes Huber  gentoo  org>
AuthorDate: Tue Jun 18 16:04:45 2019 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue Jun 18 16:05:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f765a8b8

media-sound/lollypop: Version bump 1.0.12

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Johannes Huber  gentoo.org>

 media-sound/lollypop/Manifest   |  1 +
 media-sound/lollypop/lollypop-1.0.12.ebuild | 60 +
 2 files changed, 61 insertions(+)

diff --git a/media-sound/lollypop/Manifest b/media-sound/lollypop/Manifest
index 6dc3974e004..3c02ca6d420 100644
--- a/media-sound/lollypop/Manifest
+++ b/media-sound/lollypop/Manifest
@@ -1,2 +1,3 @@
 DIST lollypop-1.0.11.tar.xz 448424 BLAKE2B 
80cbd622b46d667ca566e8aac9f523a83cf8b43e61abe06eb0aeaa6fd22a45611ba38fdfd64dfce7b1e1f946bea8b7a2b589152c6b3c762cbdffb041c4c7de08
 SHA512 
9a885a88af8a4d58b12ef7da82d35bbc3256cabd2a38ac0b35e8a0753b1e10dfa7e69e8e5f6c7f8ba68d2557cfe47c6003ee1f68ecf6c434e5ab81f18c2ae935
+DIST lollypop-1.0.12.tar.xz 448864 BLAKE2B 
65681bc29f8256ad8f9d6dadac7a6d147150a8f779e25c85744a39428176c6887e3a9f90f0af81f432db771806351301712ec2431c3a79bcb230c8c0e6fb055b
 SHA512 
d6ad6fb638ac994c2c0367234c8ab35b79d619b3669c46f27bc1df221e41410f464a0a157faccf0ed1b2b5fbdb9f1ecad10ec7466bdff03231e4724948c8c3a2
 DIST lollypop-1.0.7.tar.xz 436000 BLAKE2B 
8b41a3378e39b0cba59323bbd7946226bcce29f80c878833ac920f337c036fcaca9c81caca2e360972295c6446c67d79e201093f86cad0685f7365a332d0e116
 SHA512 
ce537e60e3f1c678fcbf26d1305a178a3f2299abd4f75bb3c3a2cf717295e14aa73a8f21fb88d0c1fc790a80a572dbce84d01a0fe3229879124f89f8a5fa8305

diff --git a/media-sound/lollypop/lollypop-1.0.12.ebuild 
b/media-sound/lollypop/lollypop-1.0.12.ebuild
new file mode 100644
index 000..3d527f7332d
--- /dev/null
+++ b/media-sound/lollypop/lollypop-1.0.12.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_6 )
+PYTHON_REQ_USE="sqlite"
+HASH="011cb4140566625941a0fc645ac6d528"
+inherit python-r1 gnome2-utils meson xdg-utils
+
+DESCRIPTION="Modern music player for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/Lollypop;
+SRC_URI="https://gitlab.gnome.org/World/${PN}/uploads/${HASH}/${P}.tar.xz;
+KEYWORDS="~amd64"
+
+LICENSE="GPL-3"
+SLOT="0"
+
+DEPEND="${PYTHON_DEPS}
+   dev-libs/appstream-glib[introspection]
+   dev-libs/glib:2
+   dev-libs/gobject-introspection[cairo]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   gnome-base/gnome-common
+   x11-libs/gtk+:3
+"
+BDEPEND="${DEPEND}
+   dev-python/pkgconfig[${PYTHON_USEDEP}]
+   dev-util/desktop-file-utils
+   dev-util/itstool
+   dev-util/intltool
+"
+RDEPEND="${DEPEND}
+   app-crypt/libsecret[introspection]
+   dev-libs/totem-pl-parser
+   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+   dev-python/dbus-python
+   dev-python/pillow[${PYTHON_USEDEP}]
+   >=dev-python/pylast-1.0.0[${PYTHON_USEDEP}]
+   media-libs/gst-plugins-base:1.0[introspection]
+"
+
+RESTRICT="test"
+
+pkg_preinst() {
+   gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+   gnome2_gconf_install
+   gnome2_schemas_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   gnome2_gconf_uninstall
+   gnome2_schemas_update
+   xdg_desktop_database_update
+}



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

2019-06-18 Thread Mike Gilbert
commit: 53402781a7bccf8c5b89ec5431539890a2ab7d48
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Mon Jun 17 17:54:34 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Jun 18 15:59:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53402781

net-irc/kvirc: Use EAPI="7".

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 net-irc/kvirc/kvirc-5.0_pre20181205184837.ebuild | 31 +---
 net-irc/kvirc/kvirc-.ebuild  | 31 +---
 2 files changed, 34 insertions(+), 28 deletions(-)

diff --git a/net-irc/kvirc/kvirc-5.0_pre20181205184837.ebuild 
b/net-irc/kvirc/kvirc-5.0_pre20181205184837.ebuild
index 412a2fc2a56..06ddaf20622 100644
--- a/net-irc/kvirc/kvirc-5.0_pre20181205184837.ebuild
+++ b/net-irc/kvirc/kvirc-5.0_pre20181205184837.ebuild
@@ -1,10 +1,12 @@
-# Copyright 2009-2019 Arfrever Frehtes Taifersar Arahesis
+# Copyright 2009-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+# True Authors: Arfrever Frehtes Taifersar Arahesis
+
+EAPI="7"
 PYTHON_COMPAT=(python2_7)
 
-inherit cmake-utils flag-o-matic gnome2-utils python-single-r1 xdg-utils
+inherit cmake-utils flag-o-matic python-single-r1 xdg-utils
 
 if [[ "${PV}" == "" ]]; then
inherit git-r3
@@ -13,8 +15,6 @@ if [[ "${PV}" == "" ]]; then
KVIRC_GIT_REVISION=""
KVIRC_GIT_SOURCES_DATE=""
 else
-   inherit vcs-snapshot
-
KVIRC_GIT_REVISION="f06b4f0397fa7feb23713e4fe4c00759d2cced71"
KVIRC_GIT_SOURCES_DATE="${PV#*_pre}"

KVIRC_GIT_SOURCES_DATE="${KVIRC_GIT_SOURCES_DATE:0:4}-${KVIRC_GIT_SOURCES_DATE:4:2}-${KVIRC_GIT_SOURCES_DATE:6:2}"
@@ -34,7 +34,11 @@ KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="audiofile +dbus dcc_video debug doc gsm kde +nls oss +perl +phonon 
profile +python spell +ssl theora webkit"
 REQUIRED_USE="audiofile? ( oss ) python? ( ${PYTHON_REQUIRED_USE} )"
 
-RDEPEND="dev-qt/qtcore:5
+BDEPEND="virtual/pkgconfig
+   doc? ( app-doc/doxygen )
+   kde? ( kde-frameworks/extra-cmake-modules:5 )
+   nls? ( sys-devel/gettext )"
+DEPEND="dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtmultimedia:5
dev-qt/qtnetwork:5
@@ -68,14 +72,13 @@ RDEPEND="dev-qt/qtcore:5
media-libs/libvorbis
)
webkit? ( dev-qt/qtwebkit:5 )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-   kde? ( kde-frameworks/extra-cmake-modules:5 )
-   nls? ( sys-devel/gettext )"
-RDEPEND="${RDEPEND}
+RDEPEND="${DEPEND}
gsm? ( media-sound/gsm )"
 
+if [[ "${PV}" != "" ]]; then
+   S="${WORKDIR}/KVIrc-${KVIRC_GIT_REVISION}"
+fi
+
 DOCS=()
 
 pkg_setup() {
@@ -138,11 +141,11 @@ src_configure() {
 }
 
 pkg_postinst() {
-   gnome2_icon_cache_update
xdg_desktop_database_update
+   xdg_icon_cache_update
 }
 
 pkg_postrm() {
-   gnome2_icon_cache_update
xdg_desktop_database_update
+   xdg_icon_cache_update
 }

diff --git a/net-irc/kvirc/kvirc-.ebuild b/net-irc/kvirc/kvirc-.ebuild
index 543e5042b44..97eed8f4867 100644
--- a/net-irc/kvirc/kvirc-.ebuild
+++ b/net-irc/kvirc/kvirc-.ebuild
@@ -1,10 +1,12 @@
-# Copyright 2009-2018 Arfrever Frehtes Taifersar Arahesis
+# Copyright 2009-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+# True Authors: Arfrever Frehtes Taifersar Arahesis
+
+EAPI="7"
 PYTHON_COMPAT=(python2_7)
 
-inherit cmake-utils flag-o-matic gnome2-utils python-single-r1 xdg-utils
+inherit cmake-utils flag-o-matic python-single-r1 xdg-utils
 
 if [[ "${PV}" == "" ]]; then
inherit git-r3
@@ -13,8 +15,6 @@ if [[ "${PV}" == "" ]]; then
KVIRC_GIT_REVISION=""
KVIRC_GIT_SOURCES_DATE=""
 else
-   inherit vcs-snapshot
-
KVIRC_GIT_REVISION=""
KVIRC_GIT_SOURCES_DATE="${PV#*_pre}"

KVIRC_GIT_SOURCES_DATE="${KVIRC_GIT_SOURCES_DATE:0:4}-${KVIRC_GIT_SOURCES_DATE:4:2}-${KVIRC_GIT_SOURCES_DATE:6:2}"
@@ -34,7 +34,11 @@ KEYWORDS=""
 IUSE="audiofile +dbus dcc_video debug doc gsm kde +nls oss +perl +phonon 
profile +python spell +ssl theora webkit"
 REQUIRED_USE="audiofile? ( oss ) python? ( ${PYTHON_REQUIRED_USE} )"
 
-RDEPEND="dev-qt/qtcore:5
+BDEPEND="virtual/pkgconfig
+   doc? ( app-doc/doxygen )
+   kde? ( kde-frameworks/extra-cmake-modules:5 )
+   nls? ( sys-devel/gettext )"
+DEPEND="dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtmultimedia:5
dev-qt/qtnetwork:5
@@ -68,14 +72,13 @@ RDEPEND="dev-qt/qtcore:5
media-libs/libvorbis
)
webkit? ( dev-qt/qtwebkit:5 )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-   kde? ( kde-frameworks/extra-cmake-modules:5 )
-   nls? ( sys-devel/gettext )"
-RDEPEND="${RDEPEND}
+RDEPEND="${DEPEND}
gsm? ( 

[gentoo-commits] repo/gentoo:master commit in: net-irc/kvirc/, licenses/

2019-06-18 Thread Mike Gilbert
commit: a1fc796b2e9a7fef33fbbc270b4c69e9a4bc1fcd
Author: Alexey Sokolov  google  com>
AuthorDate: Sat May 25 20:42:55 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Jun 18 15:59:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1fc796b

net-irc/kvirc: Update license.

KVIrc uses usual GPL now. The Qt exception stopped being relevant many years 
ago.

Closes: https://github.com/gentoo/gentoo/pull/12107
Signed-off-by: Alexey Sokolov  google.com>
Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 licenses/kvirc   | 299 ---
 net-irc/kvirc/kvirc-5.0_pre20181205184837.ebuild |   2 +-
 net-irc/kvirc/kvirc-.ebuild  |   2 +-
 3 files changed, 2 insertions(+), 301 deletions(-)

diff --git a/licenses/kvirc b/licenses/kvirc
deleted file mode 100644
index 275295679f5..000
--- a/licenses/kvirc
+++ /dev/null
@@ -1,299 +0,0 @@
-This is the KVIrc Irc Client license. It is based on the GNU General Public 
License.
-It contains all the GPL terms and conditions and adds a special exception
-(see Terms and Conditions , clause 13) to its distribution limitations.
-
-Note that the GPL below is copyrighted by the Free Software
-Foundation, but the instance of code that it refers to is copyrighted by Me.
-
-The source code for all versions of KVIrc is freely
-available at http://www.kvirc.net
-
-Have fun!
-Szymon Stefanek :)
-
---
- GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
- Extended by Szymon Stefanek
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-   Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.)  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-  To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  You must make sure that they, too, receive or can get the
-source code.  And you must show them these terms so they know their
-rights.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary.  To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-   GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License.  The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright 

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

2019-06-18 Thread Mike Gilbert
commit: 69dbc608e2213a54b525bffaef0d6b04c5335088
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Tue Jun 18 15:26:52 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Jun 18 15:59:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69dbc608

net-misc/cadaver: Fix eautoreconf with >=sys-devel/gettext-0.20.

Fixes: https://bugs.gentoo.org/686152
Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/cadaver/cadaver-0.23.3.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/net-misc/cadaver/cadaver-0.23.3.ebuild 
b/net-misc/cadaver/cadaver-0.23.3.ebuild
index edb1d0379d7..cbb8805aaa1 100644
--- a/net-misc/cadaver/cadaver-0.23.3.ebuild
+++ b/net-misc/cadaver/cadaver-0.23.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 2003-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -26,8 +26,9 @@ src_prepare() {
 
rm -r lib/{expat,intl,neon} || die "rm failed"
sed \
-   -e "/NE_REQUIRE_VERSIONS/s/29/& 30/" \
-   -e "s:lib/neon/Makefile lib/intl/Makefile ::" \
+   -e "/NE_REQUIRE_VERSIONS/s:29:& 30:" \
+   -e "/AM_GNU_GETTEXT/s:no-libtool:external:" \
+   -e "/AC_CONFIG_FILES/s: lib/neon/Makefile lib/intl/Makefile::" \
-i configure.ac || die "sed configure.ac failed"
sed -e "s/^\(SUBDIRS.*=\).*/\1/" -i Makefile.in || die "sed Makefile.in 
failed"
cp /usr/share/gettext/po/Makefile.in.in po || die "cp failed"



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

2019-06-18 Thread Mike Gilbert
commit: 6fbb3d737508742c4342e6c3dfb0475783b539f4
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Mon Jun 17 17:40:50 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Jun 18 15:59:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fbb3d73

dev-java/protobuf-java: Stabilize 3.7.1 on amd64/x86.

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 dev-java/protobuf-java/protobuf-java-3.7.1.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-java/protobuf-java/protobuf-java-3.7.1.ebuild 
b/dev-java/protobuf-java/protobuf-java-3.7.1.ebuild
index 828c0e6a2a7..5c1ed13f0b4 100644
--- a/dev-java/protobuf-java/protobuf-java-3.7.1.ebuild
+++ b/dev-java/protobuf-java/protobuf-java-3.7.1.ebuild
@@ -1,6 +1,8 @@
-# Copyright 2008-2019 Arfrever Frehtes Taifersar Arahesis and others
+# Copyright 2008-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# True Authors: Arfrever Frehtes Taifersar Arahesis and others
+
 EAPI="6"
 JAVA_PKG_IUSE="doc source"
 
@@ -23,7 +25,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0/18"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sh ~x86 ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~sh x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
 IUSE=""
 
 DEPEND="~dev-libs/protobuf-${PV}



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

2019-06-18 Thread Mike Gilbert
commit: 2bf68e9abe41c59d87ad05a7ad569def965342fa
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Mon Jun 17 17:46:31 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Jun 18 15:59:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bf68e9a

dev-python/protobuf-python: Stabilize 3.7.1 on amd64/x86.

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 dev-python/protobuf-python/protobuf-python-3.7.1.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-python/protobuf-python/protobuf-python-3.7.1.ebuild 
b/dev-python/protobuf-python/protobuf-python-3.7.1.ebuild
index 7b3d970ead2..5394afc543e 100644
--- a/dev-python/protobuf-python/protobuf-python-3.7.1.ebuild
+++ b/dev-python/protobuf-python/protobuf-python-3.7.1.ebuild
@@ -1,6 +1,8 @@
-# Copyright 2008-2019 Arfrever Frehtes Taifersar Arahesis and others
+# Copyright 2008-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# True Authors: Arfrever Frehtes Taifersar Arahesis and others
+
 EAPI="7"
 PYTHON_COMPAT=(python{2_7,3_5,3_6,3_7})
 
@@ -23,7 +25,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0/18"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE=""
 
 BDEPEND="${PYTHON_DEPS}



[gentoo-commits] repo/gentoo:master commit in: app-i18n/libpinyin/

2019-06-18 Thread Mike Gilbert
commit: bef8d4136f3da5d524edad8d4384dff938cf6108
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Mon Jun 17 17:10:17 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Jun 18 15:59:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bef8d413

app-i18n/libpinyin: Stabilize 2.3.0 on amd64/x86.

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 app-i18n/libpinyin/libpinyin-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/libpinyin/libpinyin-2.3.0.ebuild 
b/app-i18n/libpinyin/libpinyin-2.3.0.ebuild
index ab8431af41f..56eebbed4e7 100644
--- a/app-i18n/libpinyin/libpinyin-2.3.0.ebuild
+++ b/app-i18n/libpinyin/libpinyin-2.3.0.ebuild
@@ -24,7 +24,7 @@ SRC_URI+=" 
mirror://sourceforge/${PN}/models/model${LIBPINYIN_MODEL_VERSION}.tex
 
 LICENSE="GPL-3+"
 SLOT="0/13"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86"
 IUSE=""
 
 BDEPEND="virtual/pkgconfig"



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

2019-06-18 Thread Mike Gilbert
commit: bc66c36fbfcaced98af2a26c7a3ba0bd90da9ee1
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Mon Jun 17 17:52:28 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Jun 18 15:59:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc66c36f

net-irc/kvirc: Delete old versions (<5.0_pre20181205184837).

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 net-irc/kvirc/Manifest   |   2 -
 net-irc/kvirc/kvirc-5.0_pre20180819121252.ebuild | 148 ---
 net-irc/kvirc/kvirc-5.0_pre20181013192652.ebuild | 148 ---
 3 files changed, 298 deletions(-)

diff --git a/net-irc/kvirc/Manifest b/net-irc/kvirc/Manifest
index 433b445baa8..ee66e89bac7 100644
--- a/net-irc/kvirc/Manifest
+++ b/net-irc/kvirc/Manifest
@@ -1,3 +1 @@
-DIST kvirc-5.0_pre20180819121252.tar.gz 6049652 BLAKE2B 
b4712e089a26498a7a3e4df10fe0def377814a9cc4082f55c2177da4929bc2fb02fbc947ee0603b62175a5cee657f6316ca246a275e96df71bd9d938453d4604
 SHA512 
de7ccb0f698488599ba3f58ca46ef2427632bdf1870d576baea8634e530cbe7654f60d4cdd58447301c4401941ef8b4e810f4d3eb4d6468a2899b80484380ea7
-DIST kvirc-5.0_pre20181013192652.tar.gz 5961689 BLAKE2B 
9ee5536688e5e193b88e6425591d309396cd1c135622fd682fcc86e832ee72010493877d33bddd3a86bf6c18d34b252e6a4689f7001252e149eefbfd100da977
 SHA512 
1856f3fab772f04e01e6a367e101bdde0732c4439399f821cd50ffd4173b89de023e1da20327692387b3f002bda0f0880737a6f5f001e0112ae45e1257b0db24
 DIST kvirc-5.0_pre20181205184837.tar.gz 5968276 BLAKE2B 
eb1c2a38cedbae3f7e7951bdd4250e349d8c6745a24df30f81ccebf8fa0ac9bdca27f835b0d2bda261baff81d018eae58c5169656791f4436ff221cba7890e85
 SHA512 
fbfcf1b1bcd9dfb1207669ee61a7fa8023ceeb2b679e95c378ed1224020c901fb4a6b68b7505704874e935df2228be4ccfd36121a87aafc5ace41c5392058132

diff --git a/net-irc/kvirc/kvirc-5.0_pre20180819121252.ebuild 
b/net-irc/kvirc/kvirc-5.0_pre20180819121252.ebuild
deleted file mode 100644
index 2ae7426292a..000
--- a/net-irc/kvirc/kvirc-5.0_pre20180819121252.ebuild
+++ /dev/null
@@ -1,148 +0,0 @@
-# Copyright 2009-2018 Arfrever Frehtes Taifersar Arahesis
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_COMPAT=(python2_7)
-
-inherit cmake-utils flag-o-matic gnome2-utils python-single-r1 xdg-utils
-
-if [[ "${PV}" == "" ]]; then
-   inherit git-r3
-
-   EGIT_REPO_URI="https://github.com/kvirc/KVIrc;
-   KVIRC_GIT_REVISION=""
-   KVIRC_GIT_SOURCES_DATE=""
-else
-   inherit vcs-snapshot
-
-   KVIRC_GIT_REVISION="abc7a305d16d5ff939959164cff856af8f6d6ca1"
-   KVIRC_GIT_SOURCES_DATE="${PV#*_pre}"
-   
KVIRC_GIT_SOURCES_DATE="${KVIRC_GIT_SOURCES_DATE:0:4}-${KVIRC_GIT_SOURCES_DATE:4:2}-${KVIRC_GIT_SOURCES_DATE:6:2}"
-fi
-
-DESCRIPTION="Advanced IRC Client"
-HOMEPAGE="http://www.kvirc.net/ https://github.com/kvirc/KVIrc;
-if [[ "${PV}" == "" ]]; then
-   SRC_URI=""
-else
-   
SRC_URI="https://github.com/kvirc/KVIrc/archive/${KVIRC_GIT_REVISION}.tar.gz -> 
${P}.tar.gz"
-fi
-
-LICENSE="kvirc"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-IUSE="audiofile +dbus dcc_video debug doc gsm kde +nls oss +perl +phonon 
profile +python spell +ssl theora webkit"
-REQUIRED_USE="audiofile? ( oss ) python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtmultimedia:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qtsql:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   dev-qt/qtxml:5
-   sys-libs/zlib:0=
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   audiofile? ( media-libs/audiofile )
-   dbus? ( dev-qt/qtdbus:5 )
-   dcc_video? ( dev-qt/qtmultimedia:5[widgets] )
-   kde? (
-   kde-frameworks/kcoreaddons:5
-   kde-frameworks/ki18n:5
-   kde-frameworks/knotifications:5
-   kde-frameworks/kservice:5
-   kde-frameworks/kwindowsystem:5
-   kde-frameworks/kxmlgui:5
-   )
-   perl? ( dev-lang/perl:0= )
-   phonon? ( media-libs/phonon[qt5(+)] )
-   python? ( ${PYTHON_DEPS} )
-   spell? ( app-text/enchant:0= )
-   ssl? ( dev-libs/openssl:0= )
-   theora? (
-   media-libs/libogg
-   media-libs/libtheora
-   media-libs/libvorbis
-   )
-   webkit? ( dev-qt/qtwebkit:5 )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-   kde? ( kde-frameworks/extra-cmake-modules:5 )
-   nls? ( sys-devel/gettext )"
-RDEPEND="${RDEPEND}
-   gsm? ( media-sound/gsm )"
-
-DOCS=()
-
-pkg_setup() {
-   if use python; then
-   python-single-r1_pkg_setup
-   fi
-}
-
-src_prepare() {
-   cmake-utils_src_prepare
-
-   if [[ "${PV}" == "" ]]; then
-   KVIRC_GIT_REVISION="$(git show -s --format=%H)"
-   

  1   2   >