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

2019-01-08 Thread Lars Wendler
commit: 531498e9500bf564ff021cd6b93d80d0494c0ff5
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jan  9 07:51:40 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jan  9 07:51:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=531498e9

x11-wm/icewm: Bump to version 1.5.1

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

 x11-wm/icewm/Manifest   |   1 +
 x11-wm/icewm/icewm-1.5.1.ebuild | 116 
 2 files changed, 117 insertions(+)

diff --git a/x11-wm/icewm/Manifest b/x11-wm/icewm/Manifest
index c27a26a892b..6211d8e9072 100644
--- a/x11-wm/icewm/Manifest
+++ b/x11-wm/icewm/Manifest
@@ -1,2 +1,3 @@
 DIST icewm-1.4.2.tar.gz 1709850 BLAKE2B 
1a9dde495345f1601b3ae901b3e98554b60a9b9a8e94b7079f3c766971eb31bde5a3cd3972f5c96d86b5e02e413811df2a0689efc15a461bca39a70842f3df69
 SHA512 
c01661a7b07b4f42a32b20ecc9e45fb1e9c84c27d33105ec165e75aa9ac84129d55e992cac0d53fb10298bae28bc93ef07f68e874c1c2fccd9adecceb987a872
 DIST icewm-1.5.0.tar.xz 1660616 BLAKE2B 
edfcde56b77e57ed1cddb615238d13d568e2e9166a1e487d17693fff8fa6d7e61b17cd0cb7be0611ffcafa03eeea1cdaa2a4dce30cd9a60f760b1302efc1ebe5
 SHA512 
49d3f6fc8b2073731ae499375352bda73cf0c166067339d5bf09ad900decddf483c60da140ea6a5a607271b7d9cfac44a04dd8c56df18243e35d2ceb100ddff9
+DIST icewm-1.5.1.tar.xz 1666056 BLAKE2B 
2cd417a9d3097f57cef1bf44b8c4ef4237db962ea5edd8b902338de90d9b28a46aa7f0a720abe87361847836ffd8feb9e0269124260b324ed14b27f0ba7d94b2
 SHA512 
e7329ccf87da5ad12402c70a3946303f58c76563d25319b9e8f6d153b34a67df0e17612874f8af3bea701b52d15168557842e8ffce0a5a255c59e67bd2022a01

diff --git a/x11-wm/icewm/icewm-1.5.1.ebuild b/x11-wm/icewm/icewm-1.5.1.ebuild
new file mode 100644
index 000..abaa3c67fdf
--- /dev/null
+++ b/x11-wm/icewm/icewm-1.5.1.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Ice Window Manager with Themes"
+HOMEPAGE="https://ice-wm.org/ https://github.com/ice-wm/icewm;
+LICENSE="GPL-2"
+SRC_URI="https://github.com/ice-wm/icewm/releases/download/${PV}/${P}.tar.xz;
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="+alsa ao bidi debug nls truetype uclibc xinerama"
+
+# Tests broken in all versions, patches welcome, bug #323907, #389533
+RESTRICT="test"
+
+REQUIRED_USE="|| ( alsa ao )"
+
+#fix for icewm preversion package names
+S="${WORKDIR}/${P/_}"
+
+RDEPEND="
+   media-libs/fontconfig
+   x11-libs/gdk-pixbuf:2[X]
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXft
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   alsa? (
+   media-libs/alsa-lib
+   media-libs/libsndfile[alsa]
+   )
+   ao? (
+   media-libs/libao
+   media-libs/libsndfile
+   )
+   bidi? ( dev-libs/fribidi )
+   truetype? ( x11-libs/libXext )
+   xinerama? ( x11-libs/libXinerama )
+"
+DEPEND="
+   ${RDEPEND}
+   app-text/asciidoc
+   gnome-base/librsvg
+   x11-base/xorg-proto
+   nls? ( >=sys-devel/gettext-0.19.6 )
+   truetype? ( >=media-libs/freetype-2.0.9 )
+"
+
+src_prepare() {
+   # Fix bug #486710 - TODO: Still needed?
+   #use uclibc && PATCHES+=( "${FILESDIR}/${PN}-1.3.8-uclibc.patch" )
+
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local icesound
+   if use alsa && use ao ; then
+   icesound="alsa,ao"
+   elif use alsa ; then
+   icesound="alsa"
+   elif use ao ; then
+   icesound="ao"
+   fi
+
+   local myconf=(
+   --enable-gdk-pixbuf
+   --enable-logevents
+   --enable-xrandr
+   --enable-xrender
+   --with-cfgdir=/etc/icewm
+   --with-docdir=/usr/share/doc/${PF}/html
+   --with-icesound="${icesound}"
+   --with-libdir=/usr/share/icewm
+   $(use_enable bidi fribidi)
+   $(use_enable debug)
+   $(use_enable nls i18n)
+   $(use_enable nls)
+   $(use_enable xinerama)
+   )
+   if use truetype ; then
+   myconf+=(
+   --enable-shape
+   )
+   else
+   myconf+=(
+   --disable-xfreetype
+   --enable-corefonts
+   )
+   fi
+
+   CXXFLAGS="${CXXFLAGS}" econf "${myconf[@]}"
+
+   sed -i "s:/icewm-\$(VERSION)::" src/Makefile || die
+   sed -i "s:ungif:gif:" src/Makefile || die "libungif fix failed"
+}
+
+src_install(){
+   local DOCS=( AUTHORS ChangeLog NEWS README.md TODO VERSION )
+
+   default
+
+   docinto html
+   dodoc doc/icewm.html
+   dodoc man/*.html
+
+   exeinto /etc/X11/Sessions
+   doexe "${FILESDIR}/icewm"
+}



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

2019-01-08 Thread Lars Wendler
commit: a88016aa1385963ef4a4c42bd958b62991b9f2d3
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jan  9 07:22:12 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jan  9 07:22:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a88016aa

media-sound/grip: Bump to version 3.10.0

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

 media-sound/grip/Manifest   |  1 +
 media-sound/grip/grip-3.10.0.ebuild | 53 +
 2 files changed, 54 insertions(+)

diff --git a/media-sound/grip/Manifest b/media-sound/grip/Manifest
index 79fa759813a..3c26de5a16a 100644
--- a/media-sound/grip/Manifest
+++ b/media-sound/grip/Manifest
@@ -1,3 +1,4 @@
+DIST grip-3.10.0.tar.gz 980402 BLAKE2B 
fe5cd88d170c64916abffb69fe07b66452a11ae13d75d0f24ae1cdae3bf87c1dd811f5d30be2379cd2bcd4a47ef8e7f6603c5573ffead6c94105585533645b85
 SHA512 
61253be210d006b778d9a071cc8701f11f03ee2f29179a7ba69f5d9309de0e113ab7b0bca5491d8f7603d1df9b912048c4b1a502bcb38c5b54664516be4acdc6
 DIST grip-3.4.3.tar.gz 740870 BLAKE2B 
d6b703d4ba08bf976a53e70772977a6b0fd5cd231fc16bf6a387497ad6db8e0ba2226ebe05d77135e7ec55911af0d3cd6cb7608da1452083335f9f8f46cbc182
 SHA512 
e7690cfe375de525f7dde7cc4d64ac9577f702a58bbd2cc1aa318dba58b208a8affe9e8e07078d6a16ba1340b0bd17edce1c8cf750631c8d677a3bd2679bb361
 DIST grip-3.7.1.tar.gz 961428 BLAKE2B 
0c31b549577a1bbde17936e8e243d6fa573c6ac0c6035ea303c983c6ac26a0f7ddef193cea74a4148655f2305db97b3e74476bfe763fcbe77c656e012b4fe07a
 SHA512 
812c6d0715e18da78b8657722697cf7b39b345f2d94c5a3002c6a512ff0482d4e96b58910e0c2fd459ac707a24754c6c491e66eac7692c49ec69bb869079202c
 DIST grip-3.8.1.tar.gz 960857 BLAKE2B 
0d1323961eeb9593fb4644a31369852f8d40582b7ba00af3b2255f443a354cca74f5d60c80b135d09bc514d8302807191e6c8f38bf080d5a6237859ccfc90178
 SHA512 
9e1ebdf6de523c4b818f2b35f976ea0ceb83f7769e3355a7a5af8ea831c34be21ad0dd2106c3ddb8f61d31fe3f32e745ab806fd6aa125a06beda3d2bf381428e

diff --git a/media-sound/grip/grip-3.10.0.ebuild 
b/media-sound/grip/grip-3.10.0.ebuild
new file mode 100644
index 000..4f7ac3d6b08
--- /dev/null
+++ b/media-sound/grip/grip-3.10.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit flag-o-matic toolchain-funcs libtool
+
+DESCRIPTION="GTK+ based Audio CD Player/Ripper"
+HOMEPAGE="https://sourceforge.net/projects/grip/;
+SRC_URI="mirror://sourceforge/grip/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="vorbis"
+
+# lame and vorbis-tools are no real RDEPENDs. But without them
+# grip cannot convert ripped files to any format. So use them as
+# a sane default.
+RDEPEND="
+   gnome-base/libgnome
+   >=gnome-base/libgnomeui-2.2.0
+   >=media-libs/id3lib-3.8.3
+   media-sound/cdparanoia
+   media-sound/lame
+   net-misc/curl
+   >=x11-libs/gtk+-2.2:2
+   x11-libs/libX11
+   x11-libs/pango
+   x11-libs/vte:0
+   vorbis? ( media-sound/vorbis-tools )
+"
+# gnome-extra/yelp, see bug 416843
+DEPEND="
+   ${RDEPEND}
+   sys-devel/gettext
+"
+BDEPEND="
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   sed '/^Icon/s@grip\b@gripicon@' -i grip.desktop || die
+}
+
+src_configure() {
+   # Bug #69536
+   [[ $(tc-arch) == "x86" ]] && append-flags "-mno-sse"
+
+   strip-linguas be bg ca de en en_CA en_GB en_US es fi fr hu it ja nb nl 
pl_PL pt_BR ru sr vi zh_CN zh_HK zh_TW
+
+   econf --disable-werror
+}



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

2019-01-08 Thread Lars Wendler
commit: 269f8d1d74fb2d03bc9ddd8a15949b3f3b51fe4a
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jan  9 07:23:37 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jan  9 07:23:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=269f8d1d

media-sound/grip: Removed old.

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

 media-sound/grip/Manifest  |  3 ---
 media-sound/grip/grip-3.4.3.ebuild | 52 --
 media-sound/grip/grip-3.7.1.ebuild | 52 --
 media-sound/grip/grip-3.8.1.ebuild | 52 --
 4 files changed, 159 deletions(-)

diff --git a/media-sound/grip/Manifest b/media-sound/grip/Manifest
index 3c26de5a16a..32640d40f33 100644
--- a/media-sound/grip/Manifest
+++ b/media-sound/grip/Manifest
@@ -1,5 +1,2 @@
 DIST grip-3.10.0.tar.gz 980402 BLAKE2B 
fe5cd88d170c64916abffb69fe07b66452a11ae13d75d0f24ae1cdae3bf87c1dd811f5d30be2379cd2bcd4a47ef8e7f6603c5573ffead6c94105585533645b85
 SHA512 
61253be210d006b778d9a071cc8701f11f03ee2f29179a7ba69f5d9309de0e113ab7b0bca5491d8f7603d1df9b912048c4b1a502bcb38c5b54664516be4acdc6
-DIST grip-3.4.3.tar.gz 740870 BLAKE2B 
d6b703d4ba08bf976a53e70772977a6b0fd5cd231fc16bf6a387497ad6db8e0ba2226ebe05d77135e7ec55911af0d3cd6cb7608da1452083335f9f8f46cbc182
 SHA512 
e7690cfe375de525f7dde7cc4d64ac9577f702a58bbd2cc1aa318dba58b208a8affe9e8e07078d6a16ba1340b0bd17edce1c8cf750631c8d677a3bd2679bb361
-DIST grip-3.7.1.tar.gz 961428 BLAKE2B 
0c31b549577a1bbde17936e8e243d6fa573c6ac0c6035ea303c983c6ac26a0f7ddef193cea74a4148655f2305db97b3e74476bfe763fcbe77c656e012b4fe07a
 SHA512 
812c6d0715e18da78b8657722697cf7b39b345f2d94c5a3002c6a512ff0482d4e96b58910e0c2fd459ac707a24754c6c491e66eac7692c49ec69bb869079202c
-DIST grip-3.8.1.tar.gz 960857 BLAKE2B 
0d1323961eeb9593fb4644a31369852f8d40582b7ba00af3b2255f443a354cca74f5d60c80b135d09bc514d8302807191e6c8f38bf080d5a6237859ccfc90178
 SHA512 
9e1ebdf6de523c4b818f2b35f976ea0ceb83f7769e3355a7a5af8ea831c34be21ad0dd2106c3ddb8f61d31fe3f32e745ab806fd6aa125a06beda3d2bf381428e
 DIST grip-3.9.0.tar.gz 968706 BLAKE2B 
9d530b1e7c93239d4298a57a784eec38d98fe57e2c964018a04a8646ce5f1f4734b21103f31612bac4cc45c8c03eeca2080ba88d60a2cfe51d161ef61758639b
 SHA512 
748821f59c90d7239bb711a4a7e1df4e9f2b67ff7bd5c635a2c49389efc7836cca6672cdd93e727f8b97c4e2221f895cc7b4110aa0d3419a5fbe56530ca1b1d0

diff --git a/media-sound/grip/grip-3.4.3.ebuild 
b/media-sound/grip/grip-3.4.3.ebuild
deleted file mode 100644
index 7eb40385061..000
--- a/media-sound/grip/grip-3.4.3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils flag-o-matic toolchain-funcs libtool
-
-DESCRIPTION="GTK+ based Audio CD Player/Ripper"
-HOMEPAGE="https://sourceforge.net/projects/grip/;
-SRC_URI="mirror://sourceforge/grip/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-IUSE="vorbis"
-
-# lame and vorbis-tools are no real RDEPENDs. But without them
-# grip cannot convert ripped files to any format. So use them as
-# a sane default.
-RDEPEND="
-   gnome-base/libgnome
-   >=gnome-base/libgnomeui-2.2.0
-   >=media-libs/id3lib-3.8.3
-   media-sound/cdparanoia
-   media-sound/lame
-   net-misc/curl
-   >=x11-libs/gtk+-2.2:2
-   x11-libs/libX11
-   x11-libs/pango
-   x11-libs/vte:0
-   vorbis? ( media-sound/vorbis-tools )
-"
-# gnome-extra/yelp, see bug 416843
-DEPEND="
-   ${RDEPEND}
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-
-   sed '/^Icon/s@grip\b@gripicon@' -i grip.desktop || die
-}
-
-src_configure() {
-   # Bug #69536
-   [[ $(tc-arch) == "x86" ]] && append-flags "-mno-sse"
-
-   strip-linguas be bg ca de en en_CA en_GB en_US es fi fr hu it ja nb nl 
pl_PL pt_BR ru sr vi zh_CN zh_HK zh_TW
-
-   econf
-}

diff --git a/media-sound/grip/grip-3.7.1.ebuild 
b/media-sound/grip/grip-3.7.1.ebuild
deleted file mode 100644
index b664cc4ecb4..000
--- a/media-sound/grip/grip-3.7.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils flag-o-matic toolchain-funcs libtool
-
-DESCRIPTION="GTK+ based Audio CD Player/Ripper"
-HOMEPAGE="https://sourceforge.net/projects/grip/;
-SRC_URI="mirror://sourceforge/grip/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="vorbis"
-
-# lame and vorbis-tools are no real RDEPENDs. But without them
-# grip cannot convert ripped files to any format. So use them as
-# a sane default.
-RDEPEND="
-   gnome-base/libgnome
-   >=gnome-base/libgnomeui-2.2.0
-   >=media-libs/id3lib-3.8.3
-   media-sound/cdparanoia
-  

[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-x264/

2019-01-08 Thread Matt Turner
commit: e1ded8949e0546859a5a48b4a4cb00de0eb3c5cd
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:39:13 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1ded894

media-plugins/gst-plugins-x264-1.14.3: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild 
b/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild
index f42916785c5..7f14bf91c35 100644
--- a/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="H.264 encoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 # 20111220 ensures us X264_BUILD >= 120



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-oss/

2019-01-08 Thread Matt Turner
commit: d6448d3c792a608c54eab3b5b8479be193f135d9
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:46 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6448d3c

media-plugins/gst-plugins-oss-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-oss/gst-plugins-oss-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-oss/gst-plugins-oss-1.14.4.ebuild 
b/media-plugins/gst-plugins-oss/gst-plugins-oss-1.14.4.ebuild
index a32e0dc4492..18495b3 100644
--- a/media-plugins/gst-plugins-oss/gst-plugins-oss-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-oss/gst-plugins-oss-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="OSS (Open Sound System) support plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-pulse/

2019-01-08 Thread Matt Turner
commit: c8c1016f99701340b12d62b53d5f3bbbaa12669c
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:48 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8c1016f

media-plugins/gst-plugins-pulse-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.14.4.ebuild 
b/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.14.4.ebuild
index 856575d2306..3d010d94c4c 100644
--- a/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="PulseAudio sound server plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-opus/

2019-01-08 Thread Matt Turner
commit: e59fa1390b0caa4e1b4064ab64b1ea16a7776c8f
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:44 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e59fa139

media-plugins/gst-plugins-opus-1.14.4-r1: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-opus/gst-plugins-opus-1.14.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-opus/gst-plugins-opus-1.14.4-r1.ebuild 
b/media-plugins/gst-plugins-opus/gst-plugins-opus-1.14.4-r1.ebuild
index bc97fa00474..aaac282b75f 100644
--- a/media-plugins/gst-plugins-opus/gst-plugins-opus-1.14.4-r1.ebuild
+++ b/media-plugins/gst-plugins-opus/gst-plugins-opus-1.14.4-r1.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-base
 inherit gstreamer
 
 DESCRIPTION="Opus audio parser plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 COMMON_DEPEND=">=media-libs/opus-1.1:=[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-meta/

2019-01-08 Thread Matt Turner
commit: b38852d4bfdd25d0ec89261fa1afd8e775e8c8eb
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:33 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b38852d4

media-plugins/gst-plugins-meta-1.14.3: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-meta/gst-plugins-meta-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-meta/gst-plugins-meta-1.14.3.ebuild 
b/media-plugins/gst-plugins-meta/gst-plugins-meta-1.14.3.ebuild
index c1c8504f355..2d951147ec5 100644
--- a/media-plugins/gst-plugins-meta/gst-plugins-meta-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-meta/gst-plugins-meta-1.14.3.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://gstreamer.freedesktop.org/;
 
 LICENSE="metapackage"
 SLOT="1.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE="aac a52 alsa cdda dts dv dvb dvd ffmpeg flac http jack lame libass 
libvisual mms mp3 modplug mpeg ogg opus oss pulseaudio taglib theora v4l vaapi 
vcd vorbis vpx wavpack X x264"
 REQUIRED_USE="opus? ( ogg ) theora? ( ogg ) vorbis? ( ogg )"
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-mpeg2dec/

2019-01-08 Thread Matt Turner
commit: dc4349821c20d99792a8214003505b97267ca00b
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:37 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc434982

media-plugins/gst-plugins-mpeg2dec-1.14.3: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-mpeg2dec/gst-plugins-mpeg2dec-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-mpeg2dec/gst-plugins-mpeg2dec-1.14.3.ebuild 
b/media-plugins/gst-plugins-mpeg2dec/gst-plugins-mpeg2dec-1.14.3.ebuild
index 5e63b68c0b8..e827a082d7d 100644
--- a/media-plugins/gst-plugins-mpeg2dec/gst-plugins-mpeg2dec-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-mpeg2dec/gst-plugins-mpeg2dec-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="MPEG2 decoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND=">=media-libs/libmpeg2-0.5.1-r2[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-mpg123/

2019-01-08 Thread Matt Turner
commit: aed3b7058ff05607cfefb350ea12e5a292db4527
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:39 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aed3b705

media-plugins/gst-plugins-mpg123-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-mpg123/gst-plugins-mpg123-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-mpg123/gst-plugins-mpg123-1.14.4.ebuild 
b/media-plugins/gst-plugins-mpg123/gst-plugins-mpg123-1.14.4.ebuild
index 4a76c89f878..d0b7ba1094c 100644
--- a/media-plugins/gst-plugins-mpg123/gst-plugins-mpg123-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-mpg123/gst-plugins-mpg123-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="MP3 decoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86 ~amd64-fbsd"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-raw1394/

2019-01-08 Thread Matt Turner
commit: 879f91303e1b28d9b502747c15750a5c38d8e8ba
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:50 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=879f9130

media-plugins/gst-plugins-raw1394-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-raw1394/gst-plugins-raw1394-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-raw1394/gst-plugins-raw1394-1.14.4.ebuild 
b/media-plugins/gst-plugins-raw1394/gst-plugins-raw1394-1.14.4.ebuild
index 4fa54228fba..01d2ffbba7d 100644
--- a/media-plugins/gst-plugins-raw1394/gst-plugins-raw1394-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-raw1394/gst-plugins-raw1394-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Fiwewire DV/HDV capture plugin for GStreamer"
-KEYWORDS="amd64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-v4l2/

2019-01-08 Thread Matt Turner
commit: 0edafdda9d4c5593295414b0bff3f7e41008d0a2
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:39:07 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0edafdda

media-plugins/gst-plugins-v4l2-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild 
b/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild
index 7184d74c649..b5af2f07424 100644
--- a/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPION="V4L2 source/sink plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="udev"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-sidplay/

2019-01-08 Thread Matt Turner
commit: 220190ee6d4e2151dd034e658727d0103d9cd64a
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:56 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=220190ee

media-plugins/gst-plugins-sidplay-1.14.3: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild 
b/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild
index c609c8273e5..e82302ce985 100644
--- a/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="Sid decoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ppc ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libsidplay-1.36.59-r1:1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-libmms/

2019-01-08 Thread Matt Turner
commit: 2ffbcaaea70bd10c334dd19407ca7c76d18b8b50
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:27 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ffbcaae

media-plugins/gst-plugins-libmms-1.14.3: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-libmms/gst-plugins-libmms-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-libmms/gst-plugins-libmms-1.14.3.ebuild 
b/media-plugins/gst-plugins-libmms/gst-plugins-libmms-1.14.3.ebuild
index 512863b6e5a..7bd1adf38c6 100644
--- a/media-plugins/gst-plugins-libmms/gst-plugins-libmms-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-libmms/gst-plugins-libmms-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="Microsoft Multi Media Server source plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/libmms-0.6.2-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-libvisual/

2019-01-08 Thread Matt Turner
commit: 7f4d6833d31fc912159453afb50e8d9753401db9
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:31 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f4d6833

media-plugins/gst-plugins-libvisual-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-libvisual/gst-plugins-libvisual-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-libvisual/gst-plugins-libvisual-1.14.4.ebuild 
b/media-plugins/gst-plugins-libvisual/gst-plugins-libvisual-1.14.4.ebuild
index e84089803b1..8841fa43e1b 100644
--- a/media-plugins/gst-plugins-libvisual/gst-plugins-libvisual-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-libvisual/gst-plugins-libvisual-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-base
 inherit gstreamer
 
 DESCRIPTION="Visualization elements for GStreamer"
-KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-neon/

2019-01-08 Thread Matt Turner
commit: 0a823c1da1bab0e794660598ccd0d501bc66ea2c
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:42 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a823c1d

media-plugins/gst-plugins-neon-1.14.3: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-neon/gst-plugins-neon-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-neon/gst-plugins-neon-1.14.3.ebuild 
b/media-plugins/gst-plugins-neon/gst-plugins-neon-1.14.3.ebuild
index 8ce73d827b7..c6c6e6166eb 100644
--- a/media-plugins/gst-plugins-neon/gst-plugins-neon-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-neon/gst-plugins-neon-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="HTTP client source plugin for GStreamer"
-KEYWORDS="~alpha amd64 ppc ~ppc64 x86"
+KEYWORDS="~alpha amd64 ppc ppc64 x86"
 IUSE=""
 
 RDEPEND=">=net-libs/neon-0.30.0[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-ximagesrc/

2019-01-08 Thread Matt Turner
commit: 5dfa47f6b07e6f58b03273768c411e32756df9f7
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:39:15 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dfa47f6

media-plugins/gst-plugins-ximagesrc-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild 
b/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild
index 9d0f5eced08..d007b16eca0 100644
--- a/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="X11 video capture stream plugin for GStreamer"
-KEYWORDS="amd64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-shout2/

2019-01-08 Thread Matt Turner
commit: 33436bd4ddf7b80ff797eb0029d56ea9f9e9ff95
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:54 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33436bd4

media-plugins/gst-plugins-shout2-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild 
b/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild
index 8e91e2743ea..a53e39395fc 100644
--- a/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Icecast server sink plugin for GStreamer"
-KEYWORDS="~alpha amd64 ppc ~ppc64 x86"
+KEYWORDS="~alpha amd64 ppc ppc64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libshout-2.3.1-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-twolame/

2019-01-08 Thread Matt Turner
commit: 96b8cfda78739a2a82e65d2f8213ed6ffc2181d9
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:39:05 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96b8cfda

media-plugins/gst-plugins-twolame-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild 
b/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild
index 900856c3d5e..0d3be0cd91b 100644
--- a/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="MPEG2 encoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=">=media-sound/twolame-0.3.13-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-wavpack/

2019-01-08 Thread Matt Turner
commit: e635caa1e592f9ca5a0777ad3cef35d0832d2c7e
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:39:11 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e635caa1

media-plugins/gst-plugins-wavpack-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild 
b/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild
index 31a67cf346a..671d70f1a77 100644
--- a/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Wavpack audio encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-libav/

2019-01-08 Thread Matt Turner
commit: c9b903e7d8b7927a06438df62e1d97e43674f762
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:25 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9b903e7

media-plugins/gst-plugins-libav-1.14.4.3.4.5: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-libav/gst-plugins-libav-1.14.4.3.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-libav/gst-plugins-libav-1.14.4.3.4.5.ebuild 
b/media-plugins/gst-plugins-libav/gst-plugins-libav-1.14.4.3.4.5.ebuild
index 0a149eb..5ac8aa295d7 100644
--- a/media-plugins/gst-plugins-libav/gst-plugins-libav-1.14.4.3.4.5.ebuild
+++ b/media-plugins/gst-plugins-libav/gst-plugins-libav-1.14.4.3.4.5.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://gstreamer.freedesktop.org/src/${MY_PN}/${MY_P}.tar.xz
 
 LICENSE="LGPL-2+"
 SLOT="1.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86 ~amd64-fbsd 
~x86-fbsd"
 IUSE="libav +orc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-libpng/

2019-01-08 Thread Matt Turner
commit: dbc59b73e19aad2c99a65e79d719b26650f8433c
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:29 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbc59b73

media-plugins/gst-plugins-libpng-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-libpng/gst-plugins-libpng-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-libpng/gst-plugins-libpng-1.14.4.ebuild 
b/media-plugins/gst-plugins-libpng/gst-plugins-libpng-1.14.4.ebuild
index f9d1483a229..07c2ab6a79a 100644
--- a/media-plugins/gst-plugins-libpng/gst-plugins-libpng-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-libpng/gst-plugins-libpng-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="PNG image encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ppc ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libpng-1.6.10:0=[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-vpx/

2019-01-08 Thread Matt Turner
commit: 6e77aabe65c546d0743c03cc8316e0e7bae11fa6
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:39:09 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e77aabe

media-plugins/gst-plugins-vpx-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild 
b/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild
index c1349b593d2..5a61d05bd5a 100644
--- a/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="VP8/VP9 video encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/libvpx-1.3.0:=[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-speex/

2019-01-08 Thread Matt Turner
commit: d60390ec7a4e666f266f06cc05e99fbadf874a0b
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:39:00 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d60390ec

media-plugins/gst-plugins-speex-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild 
b/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild
index 91beabe6fca..cbdd861f628 100644
--- a/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Speex encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-resindvd/

2019-01-08 Thread Matt Turner
commit: 179371eb9b3186800744eb876444060f5d1e297a
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:52 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=179371eb

media-plugins/gst-plugins-resindvd-1.14.3: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-1.14.3.ebuild 
b/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-1.14.3.ebuild
index 9bc98eeb481..adbb3ad4c45 100644
--- a/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="DVD playback support plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-modplug/

2019-01-08 Thread Matt Turner
commit: 2e41fb23af797ea313ed0d1cd0deb709072edc8d
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:35 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e41fb23

media-plugins/gst-plugins-modplug-1.14.3: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-modplug/gst-plugins-modplug-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-modplug/gst-plugins-modplug-1.14.3.ebuild 
b/media-plugins/gst-plugins-modplug/gst-plugins-modplug-1.14.3.ebuild
index 010272a40d7..57026fb1f4d 100644
--- a/media-plugins/gst-plugins-modplug/gst-plugins-modplug-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-modplug/gst-plugins-modplug-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="MOD audio decoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm64 ~hppa ~mips ppc ~ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm64 ~hppa ~mips ppc ppc64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libmodplug-0.8.8.4-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-soup/

2019-01-08 Thread Matt Turner
commit: 9026bd377df3ebd75f4368f1556141f76ffbac54
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:38:58 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9026bd37

media-plugins/gst-plugins-soup-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild 
b/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild
index 0e511ff448b..195fbd814de 100644
--- a/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="HTTP client source/sink plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x64-macos"
 IUSE=""
 
 RDEPEND=">=net-libs/libsoup-2.48:2.4[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-taglib/

2019-01-08 Thread Matt Turner
commit: 6cd398d7eee1a23023d73f9d182453dee32590ee
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 06:39:03 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 06:40:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd398d7

media-plugins/gst-plugins-taglib-1.14.4: ppc64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild 
b/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild
index 8878682e02a..c5d4c62ca82 100644
--- a/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="ID3v2/APEv2 tagger plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/taglib-1.9.1[${MULTILIB_USEDEP}]"



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

2019-01-08 Thread Georgy Yakovlev
commit: 88f9fdae57b9424aabdf32ecca18718681983f33
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Jan  8 20:00:53 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jan  9 06:27:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88f9fdae

sys-fs/zfs-kmod: 0.7.12 linux-4.20 compatible

backport of current_kernel_time64() fix from 0.7.13-tbr

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

 .../files/zfs-kmod-0.7.12-kernel-4.20-compat.patch |  31 +
 sys-fs/zfs-kmod/zfs-kmod-0.7.12-r1.ebuild  | 148 +
 2 files changed, 179 insertions(+)

diff --git a/sys-fs/zfs-kmod/files/zfs-kmod-0.7.12-kernel-4.20-compat.patch 
b/sys-fs/zfs-kmod/files/zfs-kmod-0.7.12-kernel-4.20-compat.patch
new file mode 100644
index 000..75ed3c57992
--- /dev/null
+++ b/sys-fs/zfs-kmod/files/zfs-kmod-0.7.12-kernel-4.20-compat.patch
@@ -0,0 +1,31 @@
+From 4f981f6ab614a908f912f7dc147b248f96b498a2 Mon Sep 17 00:00:00 2001
+From: satmandu 
+Date: Wed, 26 Dec 2018 12:36:28 -0500
+Subject: [PATCH] Additional fixes for current_kernel_time in 4.20 on 0.7.x
+
+While 
https://github.com/zfsonlinux/spl/commit/cd1b28e0cfa923db988611df28958f7b84b53530
 fixed the 4.20 current_kernel_time issues in spl as per 
https://github.com/zfsonlinux/zfs/pull/8074 in .07.x, current_kernel_time is 
still being used inside zpios-ctl.h in 0.7.x.
+
+I believe this may fix this issue in 0.7.x to allow it to compile successfully 
for kernel 4.2.0.
+---
+ include/zpios-ctl.h | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/include/zpios-ctl.h b/include/zpios-ctl.h
+index f17f1153260..068c9eaf173 100644
+--- a/include/zpios-ctl.h
 b/include/zpios-ctl.h
+@@ -181,9 +181,12 @@ zpios_timespec_t
+ zpios_timespec_now(void)
+ {
+   zpios_timespec_t zts_now;
+-  struct timespec ts_now;
++  #if defined(HAVE_INODE_TIMESPEC64_TIMES)
++  inode_timespec_t ts_now = current_kernel_time64();
++  #else
++  inode_timespec_t ts_now = current_kernel_time();
++  #endif
+ 
+-  ts_now = current_kernel_time();
+   zts_now.ts_sec  = ts_now.tv_sec;
+   zts_now.ts_nsec = ts_now.tv_nsec;
+ 

diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.7.12-r1.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-0.7.12-r1.ebuild
new file mode 100644
index 000..ad9bf31d87c
--- /dev/null
+++ b/sys-fs/zfs-kmod/zfs-kmod-0.7.12-r1.ebuild
@@ -0,0 +1,148 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+if [ ${PV} == "" ]; then
+   AUTOTOOLS_AUTORECONF="1"
+   EGIT_REPO_URI="https://github.com/zfsonlinux/zfs.git;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/zfsonlinux/zfs/releases/download/zfs-${PV}/zfs-${PV}.tar.gz;
+   S="${WORKDIR}/zfs-${PV}"
+   KEYWORDS="~amd64"
+fi
+
+inherit flag-o-matic linux-info linux-mod toolchain-funcs autotools-utils
+
+DESCRIPTION="Linux ZFS kernel module for sys-fs/zfs"
+HOMEPAGE="https://zfsonlinux.org/;
+
+LICENSE="CDDL debug? ( GPL-2+ )"
+SLOT="0"
+IUSE="custom-cflags debug +rootfs"
+RESTRICT="debug? ( strip ) test"
+
+DEPEND="
+   =sys-kernel/spl-${PV}*
+   dev-lang/perl
+   virtual/awk
+"
+
+RDEPEND="${DEPEND}
+   !sys-fs/zfs-fuse
+"
+
+AT_M4DIR="config"
+AUTOTOOLS_IN_SOURCE_BUILD="1"
+
+DOCS=( AUTHORS COPYRIGHT DISCLAIMER README.markdown )
+
+PATCHES=( "${FILESDIR}/${P}-kernel-4.20-compat.patch" )
+
+pkg_setup() {
+   linux-info_pkg_setup
+   CONFIG_CHECK="
+   !DEBUG_LOCK_ALLOC
+   EFI_PARTITION
+   IOSCHED_NOOP
+   MODULES
+   !PAX_KERNEXEC_PLUGIN_METHOD_OR
+   !TRIM_UNUSED_KSYMS
+   ZLIB_DEFLATE
+   ZLIB_INFLATE
+   "
+
+   use debug && CONFIG_CHECK="${CONFIG_CHECK}
+   FRAME_POINTER
+   DEBUG_INFO
+   !DEBUG_INFO_REDUCED
+   "
+
+   use rootfs && \
+   CONFIG_CHECK="${CONFIG_CHECK}
+   BLK_DEV_INITRD
+   DEVTMPFS
+   "
+
+   kernel_is ge 2 6 32 || die "Linux 2.6.32 or newer required"
+
+   [ ${PV} != "" ] && \
+   { kernel_is le 4 20 || die "Linux 4.20 is the latest supported 
version."; }
+
+   check_extra_config
+}
+
+src_prepare() {
+   # Remove GPLv2-licensed ZPIOS unless we are debugging
+   use debug || sed -e 's/^subdir-m += zpios$//' -i 
"${S}/module/Makefile.in"
+
+   # Set module revision number
+   [ ${PV} != "" ] && \
+   { sed -i "s/\(Release:\)\(.*\)1/\1\2${PR}-gentoo/" "${S}/META" 
|| die "Could not set Gentoo release"; }
+
+   autotools-utils_src_prepare
+}
+
+src_configure() {
+   local SPL_PATH="$(basename $(echo "${EROOT}usr/src/spl-"*))"
+   use custom-cflags || strip-flags
+   filter-ldflags -Wl,*
+
+   set_arch_to_kernel
+   

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

2019-01-08 Thread Georgy Yakovlev
commit: 8539c8b819ff52fad94b71f9bd640e3604128e08
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Jan  8 19:53:27 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jan  9 06:27:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8539c8b8

sys-kernel/spl: 0.7.12 linux-4.20 compatible

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

 sys-kernel/spl/spl-0.7.12-r1.ebuild | 112 
 1 file changed, 112 insertions(+)

diff --git a/sys-kernel/spl/spl-0.7.12-r1.ebuild 
b/sys-kernel/spl/spl-0.7.12-r1.ebuild
new file mode 100644
index 000..3fc2610b1ca
--- /dev/null
+++ b/sys-kernel/spl/spl-0.7.12-r1.ebuild
@@ -0,0 +1,112 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+if [[ ${PV} == "" ]] ; then
+   AUTOTOOLS_AUTORECONF="1"
+   EGIT_REPO_URI="https://github.com/zfsonlinux/${PN}.git;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/zfsonlinux/zfs/releases/download/zfs-${PV}/${P}.tar.gz;
+   KEYWORDS="~amd64"
+fi
+
+inherit flag-o-matic linux-info linux-mod autotools-utils
+
+DESCRIPTION="The Solaris Porting Layer provides many of the Solaris kernel 
APIs"
+HOMEPAGE="https://zfsonlinux.org/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="custom-cflags debug"
+RESTRICT="debug? ( strip ) test"
+
+COMMON_DEPEND="
+   dev-lang/perl
+   virtual/awk"
+
+DEPEND="${COMMON_DEPEND}"
+
+RDEPEND="${COMMON_DEPEND}
+   !sys-devel/spl"
+
+AT_M4DIR="config"
+AUTOTOOLS_IN_SOURCE_BUILD="1"
+DOCS=( AUTHORS DISCLAIMER )
+
+pkg_setup() {
+   linux-info_pkg_setup
+   CONFIG_CHECK="
+   !DEBUG_LOCK_ALLOC
+   MODULES
+   KALLSYMS
+   !PAX_KERNEXEC_PLUGIN_METHOD_OR
+   !PAX_SIZE_OVERFLOW
+   !TRIM_UNUSED_KSYMS
+   ZLIB_DEFLATE
+   ZLIB_INFLATE
+   "
+
+   use debug && CONFIG_CHECK="${CONFIG_CHECK}
+   FRAME_POINTER
+   DEBUG_INFO
+   !DEBUG_INFO_REDUCED
+   "
+
+   kernel_is ge 2 6 32 || die "Linux 2.6.32 or newer required"
+
+   [ ${PV} != "" ] && \
+   { kernel_is le 4 20 || die "Linux 4.20 is the latest supported 
version."; }
+
+   check_extra_config
+}
+
+src_prepare() {
+   # Workaround for hard coded path
+   sed -i "s|/sbin/lsmod|/bin/lsmod|" "${S}/scripts/check.sh" || \
+   die "Cannot patch check.sh"
+
+   # splat is unnecessary unless we are debugging
+   use debug || { sed -e 's/^subdir-m += splat$//' -i 
"${S}/module/Makefile.in" || die ; }
+
+   # Set module revision number
+   [ ${PV} != "" ] && \
+   { sed -i "s/\(Release:\)\(.*\)1/\1\2${PR}-gentoo/" "${S}/META" 
|| die "Could not set Gentoo release"; }
+
+   autotools-utils_src_prepare
+}
+
+src_configure() {
+   use custom-cflags || strip-flags
+   filter-ldflags -Wl,*
+
+   set_arch_to_kernel
+   local myeconfargs=(
+   --bindir="${EPREFIX}/bin"
+   --sbindir="${EPREFIX}/sbin"
+   --with-config=all
+   --with-linux="${KV_DIR}"
+   --with-linux-obj="${KV_OUT_DIR}"
+   $(use_enable debug)
+   )
+   autotools-utils_src_configure
+}
+
+src_install() {
+   autotools-utils_src_install 
INSTALL_MOD_PATH="${INSTALL_MOD_PATH:-$EROOT}"
+}
+
+pkg_postinst() {
+   linux-mod_pkg_postinst
+
+   # Remove old modules
+   if [ -d "${EROOT}lib/modules/${KV_FULL}/addon/spl" ]
+   then
+   ewarn "${PN} now installs modules in 
${EROOT}lib/modules/${KV_FULL}/extra/spl"
+   ewarn "Old modules were detected in 
${EROOT}lib/modules/${KV_FULL}/addon/spl"
+   ewarn "Automatically removing old modules to avoid problems."
+   rm -r "${EROOT}lib/modules/${KV_FULL}/addon/spl" || die "Cannot 
remove modules"
+   rmdir --ignore-fail-on-non-empty 
"${EROOT}lib/modules/${KV_FULL}/addon"
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-wireless/gqrx/files/, net-wireless/gqrx/

2019-01-08 Thread Rick Farina
commit: 88ad07fbad3841827a7cdc17fe00364f84747474
Author: Rick Farina  gentoo  org>
AuthorDate: Wed Jan  9 04:56:51 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Wed Jan  9 04:57:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88ad07fb

net-wireless/gqrx: https://github.com/csete/gqrx/pull/671

bladerf micro needs a little help to allow easier setting of available
sample rates and to not crash with the defaults

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Rick Farina  gentoo.org>

 .../gqrx/files/gqrx-bladerf-samplerate.patch   | 31 ++
 .../{gqrx-2.11.5.ebuild => gqrx-2.11.5-r1.ebuild}  | 20 +++---
 2 files changed, 42 insertions(+), 9 deletions(-)

diff --git a/net-wireless/gqrx/files/gqrx-bladerf-samplerate.patch 
b/net-wireless/gqrx/files/gqrx-bladerf-samplerate.patch
new file mode 100644
index 000..76cc7e5dffa
--- /dev/null
+++ b/net-wireless/gqrx/files/gqrx-bladerf-samplerate.patch
@@ -0,0 +1,31 @@
+diff --git a/src/qtgui/ioconfig.cpp b/src/qtgui/ioconfig.cpp
+index e4fdd8f..ad072a1 100644
+--- a/src/qtgui/ioconfig.cpp
 b/src/qtgui/ioconfig.cpp
+@@ -384,8 +384,6 @@ void CIoConfig::updateInputSampleRates(int rate)
+ }
+ else if (ui->inDevEdit->text().contains("bladerf"))
+ {
+-if (rate > 0)
+-ui->inSrCombo->addItem(QString("%1").arg(rate));
+ ui->inSrCombo->addItem("16");
+ ui->inSrCombo->addItem("25");
+ ui->inSrCombo->addItem("50");
+@@ -400,6 +398,17 @@ void CIoConfig::updateInputSampleRates(int rate)
+ ui->inSrCombo->addItem("3000");
+ ui->inSrCombo->addItem("3500");
+ ui->inSrCombo->addItem("4000");
++ui->inSrCombo->addItem("4500");
++ui->inSrCombo->addItem("5000");
++ui->inSrCombo->addItem("5500");
++ui->inSrCombo->addItem("6000");
++if (rate > 0)
++{
++ui->inSrCombo->insertItem(0, QString("%1").arg(rate));
++ui->inSrCombo->setCurrentIndex(0);
++}
++else
++ui->inSrCombo->setCurrentIndex(5); // select 5 MHz
+ }
+ else if (ui->inDevEdit->text().contains("sdr-iq"))
+ {

diff --git a/net-wireless/gqrx/gqrx-2.11.5.ebuild 
b/net-wireless/gqrx/gqrx-2.11.5-r1.ebuild
similarity index 91%
rename from net-wireless/gqrx/gqrx-2.11.5.ebuild
rename to net-wireless/gqrx/gqrx-2.11.5-r1.ebuild
index b9b3d7bb2cf..bdc7e5c4192 100644
--- a/net-wireless/gqrx/gqrx-2.11.5.ebuild
+++ b/net-wireless/gqrx/gqrx-2.11.5-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit cmake-utils
+inherit cmake-utils eutils
 
 DESCRIPTION="Software defined radio receiver powered by GNU Radio and Qt"
 HOMEPAGE="http://gqrx.dk/;
@@ -34,6 +34,15 @@ DEPEND=">=net-wireless/gnuradio-3.7_rc:=[audio,analog,filter]
portaudio? ( media-libs/portaudio:= )"
 RDEPEND="${DEPEND}"
 
+src_prepare() {
+   if use !pulseaudio; then
+   sed -i 's/AUDIO_BACKEND = pulse/#AUDIO_BACKEND = pulse/' 
gqrx.pro || die
+   fi
+   PATCHES=( "${FILESDIR}/gqrx-bladerf-samplerate.patch" )
+   cmake-utils_src_prepare
+   eapply_user
+}
+
 src_configure() {
if use pulseaudio; then
LINUX_AUDIO_BACKEND=Pulseaudio
@@ -49,13 +58,6 @@ src_configure() {
cmake-utils_src_configure
 }
 
-src_prepare() {
-   if use !pulseaudio; then
-   sed -i 's/AUDIO_BACKEND = pulse/#AUDIO_BACKEND = pulse/' 
gqrx.pro || die
-   fi
-   cmake-utils_src_prepare
-   eapply_user
-}
 
 src_install() {
dobin "${BUILD_DIR}"/src/gqrx



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-x265/

2019-01-08 Thread Matt Turner
commit: dcf82e949e38ae35542c37b849ac760b97b82be5
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:42 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcf82e94

media-plugins/gst-plugins-x265-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-x265/gst-plugins-x265-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-x265/gst-plugins-x265-1.14.3.ebuild 
b/media-plugins/gst-plugins-x265/gst-plugins-x265-1.14.3.ebuild
index 7c0dc4dbd8b..b496e36e784 100644
--- a/media-plugins/gst-plugins-x265/gst-plugins-x265-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-x265/gst-plugins-x265-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE="gst-plugins-bad"
 inherit gstreamer
 
 DESCRIPTION="H.265 encoder plugin for GStreamer"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-uvch264/

2019-01-08 Thread Matt Turner
commit: 05efdf3984d74faf0e15943b342879645124cf2e
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:26 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05efdf39

media-plugins/gst-plugins-uvch264-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.14.3.ebuild 
b/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.14.3.ebuild
index 48cc2add361..2e77d5d1e5c 100644
--- a/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="UVC compliant H264 encoding cameras plugin for GStreamer"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-speex/

2019-01-08 Thread Matt Turner
commit: 5b0f0e263a6f0e289fce785051fd35ef38c3c57c
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:17 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b0f0e26

media-plugins/gst-plugins-speex-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild 
b/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild
index 5eb8b854796..5c4427effd8 100644
--- a/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Speex encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-twolame/

2019-01-08 Thread Matt Turner
commit: 068d7369fc31984ed59c4bf8725b86bb74858805
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:24 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=068d7369

media-plugins/gst-plugins-twolame-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild 
b/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild
index b7e322dc5ff..806170998ce 100644
--- a/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="MPEG2 encoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=">=media-sound/twolame-0.3.13-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-shout2/

2019-01-08 Thread Matt Turner
commit: bafc9c29ec1f3356b7b16d6f93a2caba326dba09
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:06 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bafc9c29

media-plugins/gst-plugins-shout2-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild 
b/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild
index 802f7fee1cb..46f11d97137 100644
--- a/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Icecast server sink plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 x86"
+KEYWORDS="~alpha amd64 ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libshout-2.3.1-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-oss/

2019-01-08 Thread Matt Turner
commit: 6e0b1ea2eebbf7cc27d040b945356c30e9e406a2
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:36:56 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:36:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e0b1ea2

media-plugins/gst-plugins-oss-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-oss/gst-plugins-oss-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-oss/gst-plugins-oss-1.14.4.ebuild 
b/media-plugins/gst-plugins-oss/gst-plugins-oss-1.14.4.ebuild
index 1aacdc3564c..50207be7b4d 100644
--- a/media-plugins/gst-plugins-oss/gst-plugins-oss-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-oss/gst-plugins-oss-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="OSS (Open Sound System) support plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-x264/

2019-01-08 Thread Matt Turner
commit: acdaf89d9294d11dbe975319ce05a303726b50fd
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:40 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acdaf89d

media-plugins/gst-plugins-x264-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild 
b/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild
index 0f325e8cc3e..aff0e36a246 100644
--- a/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="H.264 encoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 # 20111220 ensures us X264_BUILD >= 120



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-smoothstreaming/

2019-01-08 Thread Matt Turner
commit: 7907a612426dca3dcd5286d2764d81963383f75b
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:11 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7907a612

media-plugins/gst-plugins-smoothstreaming-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 .../gst-plugins-smoothstreaming-1.14.3.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.14.3.ebuild
 
b/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.14.3.ebuild
index 124e25fce3a..2dad9f61e65 100644
--- 
a/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.14.3.ebuild
+++ 
b/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="Smooth Streaming plugin for GStreamer"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND=">=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-taglib/

2019-01-08 Thread Matt Turner
commit: fcd499d6b2636b6c8c5821ff44b296fc00f58830
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:22 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcd499d6

media-plugins/gst-plugins-taglib-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild 
b/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild
index 74fc87173be..65165b9eb45 100644
--- a/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="ID3v2/APEv2 tagger plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/taglib-1.9.1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-vpx/

2019-01-08 Thread Matt Turner
commit: 6689bff19d4f68468068ad24cd0b200eb39eb4fa
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:36 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6689bff1

media-plugins/gst-plugins-vpx-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild 
b/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild
index 46ed6be9712..8895f6227ff 100644
--- a/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="VP8/VP9 video encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/libvpx-1.3.0:=[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-voaacenc/

2019-01-08 Thread Matt Turner
commit: 1979d4c0ff833a2e042e50f379ba5ff563b091a1
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:32 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1979d4c0

media-plugins/gst-plugins-voaacenc-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.14.3.ebuild 
b/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.14.3.ebuild
index 742abbd78ab..6964578602d 100644
--- a/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="AAC encoder plugin for GStreamer"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/vo-aacenc-0.1.3[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-ximagesrc/

2019-01-08 Thread Matt Turner
commit: 8fb8eb2d9fc52317829c4d117f7539c2050738a1
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:45 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fb8eb2d

media-plugins/gst-plugins-ximagesrc-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild 
b/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild
index b12c590dedd..dbe94c38eda 100644
--- a/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="X11 video capture stream plugin for GStreamer"
-KEYWORDS="~amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-resindvd/

2019-01-08 Thread Matt Turner
commit: 96c8b7247f97ef8a30e9f72c3a6b256cfd9e7768
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:03 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96c8b724

media-plugins/gst-plugins-resindvd-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-1.14.3.ebuild 
b/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-1.14.3.ebuild
index 7f6211b1091..8a5d84cae98 100644
--- a/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-resindvd/gst-plugins-resindvd-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="DVD playback support plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-pulse/

2019-01-08 Thread Matt Turner
commit: 27b5d7c12754fe20fa43aa61821123c110ed4d7a
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:36:58 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:36:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27b5d7c1

media-plugins/gst-plugins-pulse-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.14.4.ebuild 
b/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.14.4.ebuild
index d5f67ba0f5d..b605019a3ad 100644
--- a/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="PulseAudio sound server plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-wavpack/

2019-01-08 Thread Matt Turner
commit: 2cd3439d5372b9fa828451b56ccb15fa0dad1702
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:38 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cd3439d

media-plugins/gst-plugins-wavpack-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild 
b/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild
index 5e7214ba1a3..b961602e8c0 100644
--- a/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Wavpack audio encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-vaapi/

2019-01-08 Thread Matt Turner
commit: a491cde385888e808dcb09b5b3472588694714bb
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:30 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a491cde3

media-plugins/gst-plugins-vaapi-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.14.3.ebuild 
b/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.14.3.ebuild
index ea5694877d7..86a4d324e32 100644
--- a/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.14.3.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gstreamer.freedesktop.org/src/${MY_PN}/${MY_PN}-${PV}.tar.xz;
 
 LICENSE="LGPL-2.1+"
 SLOT="1.0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="+drm +egl gles2 +opengl wayland +X" # Keep default enabled IUSE in sync 
with gst-plugins-base and libva
 
 # gst-vaapi configure is based around GL platform mainly, unlike 
gst-plugins-bad that goes by GL API mainly; for less surprises,



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-v4l2/

2019-01-08 Thread Matt Turner
commit: c643c6409a903753b277cfb9b34166282a043267
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:28 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c643c640

media-plugins/gst-plugins-v4l2-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild 
b/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild
index bf718f9ffe0..2695de8d310 100644
--- a/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPION="V4L2 source/sink plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="udev"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-rtmp/

2019-01-08 Thread Matt Turner
commit: 09d589dcb54b5fd03dbb169f08053d3a56505486
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:05 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d589dc

media-plugins/gst-plugins-rtmp-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-rtmp/gst-plugins-rtmp-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-rtmp/gst-plugins-rtmp-1.14.3.ebuild 
b/media-plugins/gst-plugins-rtmp/gst-plugins-rtmp-1.14.3.ebuild
index 57f494235b4..10d75e02d25 100644
--- a/media-plugins/gst-plugins-rtmp/gst-plugins-rtmp-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-rtmp/gst-plugins-rtmp-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="RTMP source/sink plugin for GStreamer"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND=">=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-soup/

2019-01-08 Thread Matt Turner
commit: f7f818a9f85d633bbaf7f418d0b7fac510d9d7b5
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:15 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7f818a9

media-plugins/gst-plugins-soup-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild 
b/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild
index 7c18ce1993c..b214bc13fe6 100644
--- a/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="HTTP client source/sink plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x64-macos"
 IUSE=""
 
 RDEPEND=">=net-libs/libsoup-2.48:2.4[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-sidplay/

2019-01-08 Thread Matt Turner
commit: a4c50ac8d8b5619f42f0b92f051aef3a14875fb4
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:09 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4c50ac8

media-plugins/gst-plugins-sidplay-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild 
b/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild
index dd91ffac274..15f82f9c909 100644
--- a/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="Sid decoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libsidplay-1.36.59-r1:1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-soundtouch/

2019-01-08 Thread Matt Turner
commit: f02a3ae51d50af96e782c2868ae4251dce00dc59
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:13 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f02a3ae5

media-plugins/gst-plugins-soundtouch-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 .../gst-plugins-soundtouch/gst-plugins-soundtouch-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.14.3.ebuild 
b/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.14.3.ebuild
index 56fec11dfa7..2f61531e63c 100644
--- a/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="Beats-per-minute detection and pitch controlling plugin for 
GStreamer"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libsoundtouch-1.7.1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-opus/

2019-01-08 Thread Matt Turner
commit: e78031782035b8e97bab39afcbd819e76944a88b
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:36:54 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:36:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7803178

media-plugins/gst-plugins-opus-1.14.4-r1: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-opus/gst-plugins-opus-1.14.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-opus/gst-plugins-opus-1.14.4-r1.ebuild 
b/media-plugins/gst-plugins-opus/gst-plugins-opus-1.14.4-r1.ebuild
index 14614c35f80..2ca35bf3ac1 100644
--- a/media-plugins/gst-plugins-opus/gst-plugins-opus-1.14.4-r1.ebuild
+++ b/media-plugins/gst-plugins-opus/gst-plugins-opus-1.14.4-r1.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-base
 inherit gstreamer
 
 DESCRIPTION="Opus audio parser plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 COMMON_DEPEND=">=media-libs/opus-1.1:=[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-voamrwbenc/

2019-01-08 Thread Matt Turner
commit: 5d6a9964a42c1e501ba8dc63b61a2dbacdef53aa
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:34 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d6a9964

media-plugins/gst-plugins-voamrwbenc-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 .../gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.14.3.ebuild 
b/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.14.3.ebuild
index 89433bd70b9..16d3ee75955 100644
--- a/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="AMR-WB audio encoder plugin for GStreamer"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/vo-amrwbenc-0.1.2-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-raw1394/

2019-01-08 Thread Matt Turner
commit: cee05e6890d77985b31ab17ec36cf68bbaefaa88
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:00 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cee05e68

media-plugins/gst-plugins-raw1394-1.14.4: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-raw1394/gst-plugins-raw1394-1.14.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-raw1394/gst-plugins-raw1394-1.14.4.ebuild 
b/media-plugins/gst-plugins-raw1394/gst-plugins-raw1394-1.14.4.ebuild
index 67e8eec1a93..2325559b4ec 100644
--- a/media-plugins/gst-plugins-raw1394/gst-plugins-raw1394-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-raw1394/gst-plugins-raw1394-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Fiwewire DV/HDV capture plugin for GStreamer"
-KEYWORDS="~amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-srtp/

2019-01-08 Thread Matt Turner
commit: 37f8d623b054bf73969a3128bd4f6ebce6614f3b
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan  9 04:37:19 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jan  9 04:37:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f8d623

media-plugins/gst-plugins-srtp-1.14.3: amd64 stable, bug 674854

Signed-off-by: Matt Turner  gentoo.org>

 media-plugins/gst-plugins-srtp/gst-plugins-srtp-1.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-srtp/gst-plugins-srtp-1.14.3.ebuild 
b/media-plugins/gst-plugins-srtp/gst-plugins-srtp-1.14.3.ebuild
index 92e12e97bd9..8f21e4186b4 100644
--- a/media-plugins/gst-plugins-srtp/gst-plugins-srtp-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-srtp/gst-plugins-srtp-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="SRTP encoder/decoder plugin for GStreamer"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-staging/

2019-01-08 Thread Nick Sarnie
commit: f40925d4dab9c96ccb6864cd14281c3af012a822
Author: Nick Sarnie  gentoo  org>
AuthorDate: Wed Jan  9 04:13:54 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Wed Jan  9 04:16:02 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=f40925d4

app-emulation/wine-staging: Revert "Added alternative source."

This reverts commit 5bb19f731894d1238ca500fcdeea314390e589df.

Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-staging/wine-staging-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-staging/wine-staging-.ebuild 
b/app-emulation/wine-staging/wine-staging-.ebuild
index 4e3948e..e0618a3 100644
--- a/app-emulation/wine-staging/wine-staging-.ebuild
+++ b/app-emulation/wine-staging/wine-staging-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ MY_PN="${PN%%-*}"
 MY_P="${MY_PN}-${PV}"
 
 if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://source.winehq.org/git/wine.git 
https://github.com/wine-mirror/wine.git;
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
EGIT_BRANCH="master"
inherit git-r3
SRC_URI=""



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-d3d9/

2019-01-08 Thread Nick Sarnie
commit: 5593c006776619b569c966da76a28a5cacdd2e84
Author: Nick Sarnie  gentoo  org>
AuthorDate: Wed Jan  9 04:14:09 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Wed Jan  9 04:16:02 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=5593c006

app-emulation/wine-d3d9: Revert "Added alternative source."

This reverts commit 7a75d3a0c042693585c4c73b24a562f0f5c82f26.

Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-d3d9/wine-d3d9-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-d3d9/wine-d3d9-.ebuild 
b/app-emulation/wine-d3d9/wine-d3d9-.ebuild
index 3ebab9a..5bed605 100644
--- a/app-emulation/wine-d3d9/wine-d3d9-.ebuild
+++ b/app-emulation/wine-d3d9/wine-d3d9-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ MY_PN="${PN%%-*}"
 MY_P="${MY_PN}-${PV}"
 
 if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://source.winehq.org/git/wine.git 
https://github.com/wine-mirror/wine.git;
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
EGIT_BRANCH="master"
inherit git-r3
SRC_URI=""



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-any/

2019-01-08 Thread Nick Sarnie
commit: b988ec66ff106cd769113606d7d9095c1409e220
Author: Nick Sarnie  gentoo  org>
AuthorDate: Wed Jan  9 04:13:43 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Wed Jan  9 04:16:02 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=b988ec66

app-emulation/wine-any: Revert "Added alternative source."

This reverts commit 9821386e4385699ae875032dc9a66ba413363f25.

Signed-off-by: Nick Sarnie  gentoo.org>

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

diff --git a/app-emulation/wine-any/wine-any-.ebuild 
b/app-emulation/wine-any/wine-any-.ebuild
index ca707f8..4fa43b8 100644
--- a/app-emulation/wine-any/wine-any-.ebuild
+++ b/app-emulation/wine-any/wine-any-.ebuild
@@ -12,7 +12,7 @@ MY_PN="${PN%%-*}"
 MY_P="${MY_PN}-${PV}"
 
 if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://source.winehq.org/git/wine.git 
https://github.com/wine-mirror/wine.git;
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
EGIT_BRANCH="master"
inherit git-r3
SRC_URI=""



[gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/

2019-01-08 Thread Nick Sarnie
commit: df816a5f8549f02603722ea8984154c050619dab
Author: Nick Sarnie  gentoo  org>
AuthorDate: Wed Jan  9 04:14:00 2019 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Wed Jan  9 04:16:02 2019 +
URL:https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=df816a5f

app-emulation/wine-vanilla: Revert "Added alternative source."

This reverts commit 62c343d56262bec0b95ea601148c59f88afe8260.

Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/wine-vanilla/wine-vanilla-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine-vanilla/wine-vanilla-.ebuild 
b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
index 7a4be48..ffbae03 100644
--- a/app-emulation/wine-vanilla/wine-vanilla-.ebuild
+++ b/app-emulation/wine-vanilla/wine-vanilla-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ MY_PN="${PN%%-*}"
 MY_P="${MY_PN}-${PV}"
 
 if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://source.winehq.org/git/wine.git 
https://github.com/wine-mirror/wine.git;
+   EGIT_REPO_URI="https://source.winehq.org/git/wine.git;
EGIT_BRANCH="master"
inherit git-r3
SRC_URI=""



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

2019-01-08 Thread Zac Medico
commit: bbfc36befdeed60f29c17d80d7766fd0da402d61
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan  8 04:45:52 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan  8 09:12:11 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=bbfc36be

pid-sandbox: whitelist selected pkg_* phases (bug 673794)

Whitelist the same phases that are whitelisted for FEATURES=cgroup,
since pid-sandbox is less valuable and is likely to have unintended
consenquences during these phases.

Bug: https://bugs.gentoo.org/673794
Reviewed-by: Michał Górny  gentoo.org>
Signed-off-by: Zac Medico  gentoo.org>

 lib/_emerge/AbstractEbuildProcess.py   | 9 ++---
 lib/portage/package/ebuild/doebuild.py | 8 ++--
 2 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/lib/_emerge/AbstractEbuildProcess.py 
b/lib/_emerge/AbstractEbuildProcess.py
index bda0bd83f..ddf04e9b3 100644
--- a/lib/_emerge/AbstractEbuildProcess.py
+++ b/lib/_emerge/AbstractEbuildProcess.py
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 import errno
@@ -22,6 +22,10 @@ from portage.util.futures import asyncio
 from portage.util._pty import _create_pty_or_pipe
 from portage.util import apply_secpass_permissions
 
+portage.proxy.lazyimport.lazyimport(globals(),
+   'portage.package.ebuild.doebuild:_global_pid_phases',
+)
+
 class AbstractEbuildProcess(SpawnProcess):
 
__slots__ = ('phase', 'settings',) + \
@@ -30,7 +34,6 @@ class AbstractEbuildProcess(SpawnProcess):
 
_phases_without_builddir = ('clean', 'cleanrm', 'depend', 'help',)
_phases_interactive_whitelist = ('config',)
-   _phases_without_cgroup = ('preinst', 'postinst', 'prerm', 'postrm', 
'config')
 
# Number of milliseconds to allow natural exit of the ebuild
# process after it has called the exit command via IPC. It
@@ -71,7 +74,7 @@ class AbstractEbuildProcess(SpawnProcess):
# Check if the cgroup hierarchy is in place. If it's not, mount 
it.
if (os.geteuid() == 0 and platform.system() == 'Linux'
and 'cgroup' in self.settings.features
-   and self.phase not in 
self._phases_without_cgroup):
+   and self.phase not in _global_pid_phases):
cgroup_root = '/sys/fs/cgroup'
cgroup_portage = os.path.join(cgroup_root, 'portage')
 

diff --git a/lib/portage/package/ebuild/doebuild.py 
b/lib/portage/package/ebuild/doebuild.py
index baebb9a27..f11923595 100644
--- a/lib/portage/package/ebuild/doebuild.py
+++ b/lib/portage/package/ebuild/doebuild.py
@@ -1,4 +1,4 @@
-# Copyright 2010-2018 Gentoo Authors
+# Copyright 2010-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 from __future__ import unicode_literals
@@ -110,6 +110,9 @@ _ipc_phases = frozenset([
"preinst", "postinst", "prerm", "postrm",
 ])
 
+# phases which execute in the global PID namespace
+_global_pid_phases = frozenset(['preinst', 'postinst', 'prerm', 'postrm', 
'config'])
+
 # phases in which networking access is allowed
 _networked_phases = frozenset([
# for VCS fetching
@@ -153,7 +156,8 @@ def _doebuild_spawn(phase, settings, actionmap=None, 
**kwargs):
kwargs['networked'] = 'network-sandbox' not in settings.features or \
phase in _networked_phases or \
'network-sandbox' in settings['PORTAGE_RESTRICT'].split()
-   kwargs['pidns'] = 'pid-sandbox' in settings.features
+   kwargs['pidns'] = ('pid-sandbox' in settings.features and
+   phase not in _global_pid_phases)
 
if phase == 'depend':
kwargs['droppriv'] = 'userpriv' in settings.features



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

2019-01-08 Thread Zac Medico
commit: c38159877ecb71c85e6855e7ee0a49deba8fed07
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Jan  9 03:56:42 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Jan  9 04:01:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3815987

sys-apps/portage: add util-linux dep

Closes: https://bugs.gentoo.org/674930
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/portage/{portage-2.3.54.ebuild => portage-2.3.54-r1.ebuild} | 1 +
 sys-apps/portage/portage-.ebuild | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys-apps/portage/portage-2.3.54.ebuild 
b/sys-apps/portage/portage-2.3.54-r1.ebuild
similarity index 99%
rename from sys-apps/portage/portage-2.3.54.ebuild
rename to sys-apps/portage/portage-2.3.54-r1.ebuild
index 34e4aa908b4..4bf3a6b2ded 100644
--- a/sys-apps/portage/portage-2.3.54.ebuild
+++ b/sys-apps/portage/portage-2.3.54-r1.ebuild
@@ -54,6 +54,7 @@ RDEPEND="
elibc_glibc? ( >=sys-apps/sandbox-2.2 )
elibc_musl? ( >=sys-apps/sandbox-2.2 )
elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
+   kernel_linux? ( sys-apps/util-linux )
>=app-misc/pax-utils-0.1.17
selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] )
xattr? ( kernel_linux? (

diff --git a/sys-apps/portage/portage-.ebuild 
b/sys-apps/portage/portage-.ebuild
index a483b552444..42273cc4fdd 100644
--- a/sys-apps/portage/portage-.ebuild
+++ b/sys-apps/portage/portage-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -54,6 +54,7 @@ RDEPEND="
elibc_glibc? ( >=sys-apps/sandbox-2.2 )
elibc_musl? ( >=sys-apps/sandbox-2.2 )
elibc_uclibc? ( >=sys-apps/sandbox-2.2 )
+   kernel_linux? ( sys-apps/util-linux )
>=app-misc/pax-utils-0.1.17
selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] )
xattr? ( kernel_linux? (



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

2019-01-08 Thread Zac Medico
commit: 9381c0f23966a4dff2308f81cbf9faea81fd9732
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Jan  9 03:58:43 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Jan  9 04:01:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9381c0f2

sys-apps/portage: remove old versions

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

 sys-apps/portage/Manifest |   2 -
 sys-apps/portage/portage-2.3.52-r1.ebuild | 267 -
 sys-apps/portage/portage-2.3.53-r1.ebuild | 271 --
 3 files changed, 540 deletions(-)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index b20f9f6d8e0..4a60ee1ddc0 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -3,8 +3,6 @@ DIST portage-2.3.40-bug-657436-937d0156aa06-1fc628eead43.patch 
4131 BLAKE2B 1b05
 DIST portage-2.3.40.tar.bz2 995122 BLAKE2B 
3bfadee6cf57dace32bb4a365850650e13664202f3b16bf75821ff6226e85da823785ac87875fa82bd5cf1b953d638773819495f73f471c06ffd6926518df1ac
 SHA512 
ded128c1941664fab6bc95f05115ec08900fddaedd1b6f12afa48da024531ee8939134d49759e09995c76a95e41beafdbf5528a5b62d3bf21c826ab1ac0cd1c5
 DIST portage-2.3.49.tar.bz2 1010414 BLAKE2B 
be8e0194855eda8e8a617ee4415d702199e10772bab9539ff27cb165b6749090be887b6f48d449f4e7650e618d43be1b0d26ba59597996a9d3d3ecd0caea166a
 SHA512 
d3daee0075eee61c354ad1d4865b1cf433d9afe5ed56101758219694325c7c5ad62a0d9ce41bf2205934b6e073d0eba3ef3f7c8b6633b5a3448e469783c5329a
 DIST portage-2.3.51.tar.bz2 1013015 BLAKE2B 
f7f5e6c9e627db5a9e4bfcc9a6cbebb40fda910d3cc928922870b295c706a9f669d3d812e726b220610efe6b182460811eb9420d6fa5b8756481df64a88fe2b9
 SHA512 
6c22b97959d4b5be263b9a1de6bb343b1f8300e989f37c7334a9d5d6fb65fe2390958e222bc5379ec95099124fc51a049ecca6e1bfc18f0a6c57e4601342bb94
-DIST portage-2.3.52.tar.bz2 1014660 BLAKE2B 
22fab75c4c9a12752bbdea960c9d4f583c3add4896ed94eea5e5e9ea03fd9838545f9c0075f279d81ac9ae0cfeca09fe44d18eac89f29c95d2be99a822da8446
 SHA512 
cd9fc6dc6f4d52886c41dd48694f290f30462111709a61a9814d5ae02519a0dd31d8fc5305c767e2a3b78d7b7d0cc8ab4c1d4273e95baec7b6d405bd9fb3f548
-DIST portage-2.3.53.tar.bz2 1015067 BLAKE2B 
28083d6a17a1dec4a978f54b71931b870b28036a2e3a2b2d87d542b9129677d956ff7da34b0d9e4e8e82414606aef60a288768363d09fda998d567cddc0634a4
 SHA512 
b0cfa5c5fe4b5cb78144137b88cd4d1d84cdbb6c976e39ed4b7cdca106806831b3526797e295666de0be5db368c553c68e49f9ec0d6cc3796e5cf7761eb6bf43
 DIST portage-2.3.54.tar.bz2 1015477 BLAKE2B 
e9adfe59d09b4c7f7509364ada1bfb22d3e6d466d24ae47f6ec9eb9edf2147dad091815b323970b7a6cbf6c42c51a111252bb047862f6863b437d3b6e400ac0b
 SHA512 
8e12e904915232321669789d21f88e9750488d0cd49ec31de6378d3d372a1a463325351a0c4fed2c80cfecf0f43112e9a03e90b84dcc1dba9bb6813c37e22c72
 DIST portage-2.3.8.tar.bz2 938062 BLAKE2B 
3f7bedf6268131a3b3539d53c8a7bb069b533b3a78e5eec521b6201439c8ee5e66996e798fe295561d0a94bfcd32adf414d4f8b5e7a93035cea09749406e64a3
 SHA512 
4b4b2de20323799b9b0f7a8812f939aa9a96d2744a0f65ad5287ba49744c491b55169cdb21f2885317a6a7c960d2070775ffd798f247b44eebc677c33c271eb8
 DIST portage-74d2509c99fbcb43e018ead4950b938e41e524e5-bug-671472.patch 1584 
BLAKE2B 
452cd4cb25e42dcfa05c4f9da2bd3cc279556b9cd87037d0d965d39678f347b701dac0eaa59bfdebee9e3715abb506bf3744900ebefafa8fa729a1eb442889b9
 SHA512 
5bbe163e8eec00ece831c113676e87f0cf61a40f30a75a0de548490eeb789479336feec5bf81868a284bf32bafa00209176156cfb9ce557390d0f4a2ab6d1c1a

diff --git a/sys-apps/portage/portage-2.3.52-r1.ebuild 
b/sys-apps/portage/portage-2.3.52-r1.ebuild
deleted file mode 100644
index aaf1fd8969f..000
--- a/sys-apps/portage/portage-2.3.52-r1.ebuild
+++ /dev/null
@@ -1,267 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=(
-   pypy
-   python3_4 python3_5 python3_6 python3_7
-   python2_7
-)
-PYTHON_REQ_USE='bzip2(+),threads(+)'
-
-inherit distutils-r1 epatch systemd
-
-DESCRIPTION="Portage is the package management and distribution system for 
Gentoo"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
-SLOT="0"
-IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
-
-DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') )
-   >=app-arch/tar-1.27
-   dev-lang/python-exec:2
-   >=sys-apps/sed-4.0.5 sys-devel/patch
-   doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 )
-   epydoc? ( >=dev-python/epydoc-2.0[$(python_gen_usedep 'python2*')] )"
-# Require sandbox-2.2 for bug #288863.
-# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's
-# quite slow, so it's not considered in the dependencies as an alternative to
-# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so
-# for now, don't pull in xattr deps for other kernels.
-# 

[gentoo-commits] proj/releng:master commit in: tools/

2019-01-08 Thread Ben Kohler
commit: fe0c440967cf1d81b232887193dde97800eb9916
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jan  9 02:44:56 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jan  9 02:44:56 2019 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=fe0c4409

catalyst-auto-sparc64.conf: add line wraps

Signed-off-by: Ben Kohler  gentoo.org>

 tools/catalyst-auto-sparc64.conf | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tools/catalyst-auto-sparc64.conf b/tools/catalyst-auto-sparc64.conf
index 13784e8d..5f37ecd2 100644
--- a/tools/catalyst-auto-sparc64.conf
+++ b/tools/catalyst-auto-sparc64.conf
@@ -47,11 +47,11 @@ update_symlinks() {
 }
 
 upload() {
-   rsync   -e 'ssh -i /root/.ssh/id_rsa'
-   -a 
-   --omit-dir-times
-   --delay-updates
-   "$@"
+   rsync   -e 'ssh -i /root/.ssh/id_rsa' \
+   -a \
+   --omit-dir-times \
+   --delay-updates \
+   "$@" \
sp...@nightheron.gentoo.org:
 }
 



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

2019-01-08 Thread Anthony G. Basile
commit: bc01b92404e311211617fadfb8ca5fadda5fe053
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jan  9 02:17:34 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jan  9 02:20:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc01b924

net-misc/electrum: version bump to 3.3.2

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

 net-misc/electrum/Manifest  |   1 +
 net-misc/electrum/electrum-3.3.2.ebuild | 176 
 net-misc/electrum/files/3.3.2-desktop.patch |  21 
 net-misc/electrum/metadata.xml  |   2 +
 4 files changed, 200 insertions(+)

diff --git a/net-misc/electrum/Manifest b/net-misc/electrum/Manifest
index d57be0d916c..b9b55eff2d6 100644
--- a/net-misc/electrum/Manifest
+++ b/net-misc/electrum/Manifest
@@ -5,3 +5,4 @@ DIST Electrum-3.1.2.tar.gz 2800714 BLAKE2B 
0932932125f1fd7099c090806c669a998c00a
 DIST Electrum-3.1.3.tar.gz 2806178 BLAKE2B 
e03a6ee8d7b211b26d99adfbaf42a9d43317e5a4ca887f62f5ef0e57d8f990c18ff07e15d4ac8faea33322cd7ae25d7544e59e9ff1fbe883b3b7be138d990421
 SHA512 
745d00ec944e46040a4ae21d23c5919b943696a85baf84ee553616ca73cd21f2fa95999212a23f9a96ad5606def2890ee057e5f5f18e82591fd4a9e497ba5439
 DIST Electrum-3.2.2.tar.gz 5617363 BLAKE2B 
aae6e12644c55542fb1e0ff702e751dc5ebcb3d1da6ef58c3509be248208c38b10f43bed555a1228f9e9f397350765d24544d89f56ffbfccda71ec39fe2256d3
 SHA512 
32c4a24c2d3e2e38b9d66f6102176533a991b1c1fd25173bcd3bdd2e78cf42fc5fd2f0d2ee0c6a8d99db1b17d47bd3e7f3cf1303964f0566f4eef4edb3c87f15
 DIST Electrum-3.2.3.tar.gz 8311398 BLAKE2B 
389f2ce2982d40f69c1fe3bfcac3ffb70d4fa09265f1a0567ecbdad21b53ebfdd2473e8e56e024add8cd52d24f690467441ffd33509cb0ef20c4f30bfcbba2a7
 SHA512 
a1620d2a0f28ee8c61e0ddd985f9e2a219f2b9fe0316042fbc8852fd95709a9f4e60a40494a9cc5c2fad08c6f318f38bcbe91bbb88d20811953d514682f7
+DIST Electrum-3.3.2.tar.gz 8934781 BLAKE2B 
1edbde4d26056b13efe84b93eb39ce0db4a20baf29367216c2cb4ac0e5c8887ca6be42e70fcfb095d7a2e80a539646c1a87677af82eee62a34380bc13b57600c
 SHA512 
da8eca13c54eb12938ce204905df535cdf1402874109bee636d4c5acb106530463d6d96a636e7418b7635073491df6aaf50ea172e53b2c75ae6844f9f94eefd1

diff --git a/net-misc/electrum/electrum-3.3.2.ebuild 
b/net-misc/electrum/electrum-3.3.2.ebuild
new file mode 100644
index 000..e899d91abe8
--- /dev/null
+++ b/net-misc/electrum/electrum-3.3.2.ebuild
@@ -0,0 +1,176 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_6 )
+PYTHON_REQ_USE="ncurses?"
+
+inherit desktop distutils-r1 gnome2-utils xdg-utils
+
+MY_P="Electrum-${PV}"
+DESCRIPTION="User friendly Bitcoin client"
+HOMEPAGE="https://electrum.org/;
+SRC_URI="https://download.electrum.org/${PV}/${MY_P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+MY_LANGS="ar_SA be_BY bg_BG cs_CZ da_DK de_DE el_GR eo_UY es_ES fa_IR fr_FR 
hu_HU hy_AM id_ID it_IT ja_JP ko_KR ky_KG lv_LV nb_NO nl_NL pl_PL pt_BR pt_PT 
ro_RO ru_RU sk_SK sl_SI sv_SE ta_IN th_TH tr_TR uk_UA vi_VN zh_CN zh_TW"
+
+my_langs_to_l10n() {
+   # Map all except pt_* and zh_* to their generic codes
+   case $1 in
+   pt_*|zh_*) echo ${1/_/-} ;;
+   *) echo ${1%%_*} ;;
+   esac
+}
+
+IUSE="audio_modem cli coldcard cosign digitalbitbox email greenaddress_it 
ncurses qrcode +qt5 safe_t sync revealer trustedcoin_com vkb"
+
+for lang in ${MY_LANGS}; do
+   IUSE+=" l10n_$(my_langs_to_l10n ${lang})"
+done
+unset lang
+
+REQUIRED_USE="
+   || ( cli ncurses qt5 )
+   audio_modem? ( qt5 )
+   cosign? ( qt5 )
+   digitalbitbox? ( qt5 )
+   email? ( qt5 )
+   greenaddress_it? ( qt5 )
+   qrcode? ( qt5 )
+   sync? ( qt5 )
+   trustedcoin_com? ( qt5 )
+   vkb? ( qt5 )
+"
+
+RDEPEND="${PYTHON_DEPS}
+   dev-python/ecdsa[${PYTHON_USEDEP}]
+   dev-python/jsonrpclib[${PYTHON_USEDEP}]
+   dev-python/pbkdf2[${PYTHON_USEDEP}]
+   dev-python/pyaes[${PYTHON_USEDEP}]
+   dev-python/PySocks[${PYTHON_USEDEP}]
+   dev-python/qrcode[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/tlslite[${PYTHON_USEDEP}]
+   dev-python/protobuf-python[${PYTHON_USEDEP}]
+   virtual/python-dnspython[${PYTHON_USEDEP}]
+   qrcode? ( media-gfx/zbar[v4l] )
+   qt5? (
+   dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}]
+   )
+   ncurses? ( dev-lang/python )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+DOCS="RELEASE-NOTES"
+
+src_prepare() {
+   eapply "${FILESDIR}/3.1.2-no-user-root.patch"
+   eapply "${FILESDIR}/3.2.3-pip-optional-pkgs.patch"
+   eapply "${FILESDIR}/3.3.2-desktop.patch"
+
+   # Prevent icon from being installed in the wrong location
+   sed -i '/icons_dirname/d' setup.py || die
+
+   # Remove unrequested 

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

2019-01-08 Thread Anthony G. Basile
commit: 6a364807578eedb5175d6ad299fbd2df652b7878
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jan  9 02:19:41 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jan  9 02:20:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a364807

net-misc/electrum: remove older versions

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

 net-misc/electrum/Manifest  |   5 -
 net-misc/electrum/electrum-3.0.5.ebuild | 172 ---
 net-misc/electrum/electrum-3.0.6.ebuild | 171 ---
 net-misc/electrum/electrum-3.1.1.ebuild | 171 ---
 net-misc/electrum/electrum-3.1.2.ebuild | 172 ---
 net-misc/electrum/electrum-3.2.2.ebuild | 174 
 6 files changed, 865 deletions(-)

diff --git a/net-misc/electrum/Manifest b/net-misc/electrum/Manifest
index b9b55eff2d6..5ef2e3c9598 100644
--- a/net-misc/electrum/Manifest
+++ b/net-misc/electrum/Manifest
@@ -1,8 +1,3 @@
-DIST Electrum-3.0.5.tar.gz 2639766 BLAKE2B 
28587ca056247a5671d84c0b79824e8eea8df8ca2e3204333e6edd7db98ecbeebdf81f4ac819de8b87c7593e83f948d091d48d55cdff08af76322d94bacec0fd
 SHA512 
27cfa44ce8eeb5eef8038f1f68b4a42d173daaf7a940ffc9e9b1dad16a8f7f49bd53d5eefdbaf242e5e09aa2f887bce536f17941c2250225cd92c78f62c52e39
-DIST Electrum-3.0.6.tar.gz 2640475 BLAKE2B 
2e10417fb59629b9e3af8ba10893fb85b3b0d0ed9f7d7226a58dc7a2f91ed682423168092101565b00824bc62cae60d878de0d78271b716c027c8616419037a8
 SHA512 
4df9d81d954a008c3a14a89a7191b8af94393701b55651ad19acc75addb70fea942876a45c545c89b290cbdd7adb41b2d36e3cbcf73449eaa5d0a39e1529b2ef
-DIST Electrum-3.1.1.tar.gz 2722902 BLAKE2B 
31628d18a26f552469454c4f2712eee1aaba6ff5114a7cf0b7f261def5ed5731a267ae369ec3460c7f9bb5ad2b1713b2b464ef05fadb5e0e9ffd563adeee0ce8
 SHA512 
d7f987dde4a4fe5b2b0e576328c20b56ca650047321ac101dc6c3edd5bcbeedd569870d951262583a5ef1d1e40d6107ac46aa4fe031cc63d3a759d332db056cb
-DIST Electrum-3.1.2.tar.gz 2800714 BLAKE2B 
0932932125f1fd7099c090806c669a998c00a70a8f34b20d0afe4b1f6c5c24ced8743a60923e466c3507d29c75ac58e2e3e01b422701be76bbcd8abf54497276
 SHA512 
e4e6d674817bacefaf9c64acfdf16c4c215264e825dd8b1bcf1d99429963b0da18d442b966ba986cf0ad2d621543c3e0e68e8ba023cca23b6626781c2e69a61e
 DIST Electrum-3.1.3.tar.gz 2806178 BLAKE2B 
e03a6ee8d7b211b26d99adfbaf42a9d43317e5a4ca887f62f5ef0e57d8f990c18ff07e15d4ac8faea33322cd7ae25d7544e59e9ff1fbe883b3b7be138d990421
 SHA512 
745d00ec944e46040a4ae21d23c5919b943696a85baf84ee553616ca73cd21f2fa95999212a23f9a96ad5606def2890ee057e5f5f18e82591fd4a9e497ba5439
-DIST Electrum-3.2.2.tar.gz 5617363 BLAKE2B 
aae6e12644c55542fb1e0ff702e751dc5ebcb3d1da6ef58c3509be248208c38b10f43bed555a1228f9e9f397350765d24544d89f56ffbfccda71ec39fe2256d3
 SHA512 
32c4a24c2d3e2e38b9d66f6102176533a991b1c1fd25173bcd3bdd2e78cf42fc5fd2f0d2ee0c6a8d99db1b17d47bd3e7f3cf1303964f0566f4eef4edb3c87f15
 DIST Electrum-3.2.3.tar.gz 8311398 BLAKE2B 
389f2ce2982d40f69c1fe3bfcac3ffb70d4fa09265f1a0567ecbdad21b53ebfdd2473e8e56e024add8cd52d24f690467441ffd33509cb0ef20c4f30bfcbba2a7
 SHA512 
a1620d2a0f28ee8c61e0ddd985f9e2a219f2b9fe0316042fbc8852fd95709a9f4e60a40494a9cc5c2fad08c6f318f38bcbe91bbb88d20811953d514682f7
 DIST Electrum-3.3.2.tar.gz 8934781 BLAKE2B 
1edbde4d26056b13efe84b93eb39ce0db4a20baf29367216c2cb4ac0e5c8887ca6be42e70fcfb095d7a2e80a539646c1a87677af82eee62a34380bc13b57600c
 SHA512 
da8eca13c54eb12938ce204905df535cdf1402874109bee636d4c5acb106530463d6d96a636e7418b7635073491df6aaf50ea172e53b2c75ae6844f9f94eefd1

diff --git a/net-misc/electrum/electrum-3.0.5.ebuild 
b/net-misc/electrum/electrum-3.0.5.ebuild
deleted file mode 100644
index 1f796881201..000
--- a/net-misc/electrum/electrum-3.0.5.ebuild
+++ /dev/null
@@ -1,172 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-#PYTHON_COMPAT=( python3_{4,5,6} )
-PYTHON_COMPAT=( python3_{4,5} )
-PYTHON_REQ_USE="ncurses?"
-
-inherit desktop distutils-r1 gnome2-utils xdg-utils
-
-MY_P="Electrum-${PV}"
-DESCRIPTION="User friendly Bitcoin client"
-HOMEPAGE="https://electrum.org/;
-SRC_URI="https://download.electrum.org/${PV}/${MY_P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-MY_LANGS="ar_SA bg_BG cs_CZ da_DK de_DE el_GR eo_UY es_ES fa_IR fr_FR hu_HU 
hy_AM id_ID it_IT ja_JP ko_KR ky_KG lv_LV nb_NO nl_NL pl_PL pt_BR pt_PT ro_RO 
ru_RU sk_SK sl_SI ta_IN th_TH tr_TR uk_UA vi_VN zh_CN zh_TW"
-
-my_langs_to_l10n() {
-   # Map all except pt_* and zh_* to their generic codes
-   case $1 in
-   pt_*|zh_*) echo ${1/_/-} ;;
-   *) echo ${1%%_*} ;;
-   esac
-}
-
-IUSE="audio_modem cli cosign digitalbitbox email greenaddress_it ncurses 
qrcode +qt5 sync trustedcoin_com vkb"
-
-for lang in ${MY_LANGS}; do
-   IUSE+=" l10n_$(my_langs_to_l10n ${lang})"
-done
-unset lang
-
-REQUIRED_USE="
-   || ( cli 

[gentoo-commits] proj/kde:master commit in: kde-plasma/xembed-sni-proxy/

2019-01-08 Thread Andreas Sturmlechner
commit: 7caf6f1ad133f1ede3ca5956fcd71f92d7ad4d13
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan  9 02:08:52 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan  9 02:08:52 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7caf6f1a

kde-plasma/xembed-sni-proxy: Drop QT_MINIMAL and FRAMEWORKS_MINIMAL

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

 kde-plasma/xembed-sni-proxy/xembed-sni-proxy-.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-.ebuild 
b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-.ebuild
index 64418a3f03..2199e1bdd1 100644
--- a/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-.ebuild
+++ b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-.ebuild
@@ -3,8 +3,6 @@
 
 EAPI=6
 
-FRAMEWORKS_MINIMAL="5.50.0"
-QT_MINIMAL="5.9.6"
 KDE_AUTODEPS="false"
 KMNAME="plasma-workspace"
 inherit kde5



[gentoo-commits] proj/kde:master commit in: kde-apps/ffmpegthumbs/, kde-apps/libkcompactdisc/, kde-apps/libkipi/, ...

2019-01-08 Thread Andreas Sturmlechner
commit: 6e97edc3baf7bef8dd9ce8a0739f854f6a2d3fe9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan  9 02:06:32 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan  9 02:06:32 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6e97edc3

kde-apps: Drop obsolete KDE_BLOCK_SLOT4 defs

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

 kde-apps/ffmpegthumbs/ffmpegthumbs-18.12.49..ebuild   | 1 -
 kde-apps/ffmpegthumbs/ffmpegthumbs-.ebuild| 1 -
 kde-apps/kwalletmanager/kwalletmanager-18.12.49..ebuild   | 1 -
 kde-apps/kwalletmanager/kwalletmanager-.ebuild| 1 -
 kde-apps/libkcddb/libkcddb-18.12.49..ebuild   | 1 -
 kde-apps/libkcddb/libkcddb-.ebuild| 1 -
 kde-apps/libkcompactdisc/libkcompactdisc-18.12.49..ebuild | 1 -
 kde-apps/libkcompactdisc/libkcompactdisc-.ebuild  | 1 -
 kde-apps/libkdcraw/libkdcraw-18.12.49..ebuild | 1 -
 kde-apps/libkdcraw/libkdcraw-.ebuild  | 1 -
 kde-apps/libkdegames/libkdegames-18.12.49..ebuild | 1 -
 kde-apps/libkdegames/libkdegames-.ebuild  | 1 -
 kde-apps/libkexiv2/libkexiv2-18.12.49..ebuild | 1 -
 kde-apps/libkexiv2/libkexiv2-.ebuild  | 1 -
 kde-apps/libkgapi/libkgapi-18.12.49..ebuild   | 1 -
 kde-apps/libkgapi/libkgapi-.ebuild| 1 -
 kde-apps/libkipi/libkipi-18.12.49..ebuild | 1 -
 kde-apps/libkipi/libkipi-.ebuild  | 1 -
 kde-apps/libkmahjongg/libkmahjongg-18.12.49..ebuild   | 1 -
 kde-apps/libkmahjongg/libkmahjongg-.ebuild| 1 -
 kde-apps/libksane/libksane-18.12.49..ebuild   | 1 -
 kde-apps/libksane/libksane-.ebuild| 1 -
 kde-apps/svgpart/svgpart-18.12.49..ebuild | 1 -
 kde-apps/svgpart/svgpart-.ebuild  | 1 -
 kde-apps/thumbnailers/thumbnailers-18.12.49..ebuild   | 1 -
 kde-apps/thumbnailers/thumbnailers-.ebuild| 1 -
 26 files changed, 26 deletions(-)

diff --git a/kde-apps/ffmpegthumbs/ffmpegthumbs-18.12.49..ebuild 
b/kde-apps/ffmpegthumbs/ffmpegthumbs-18.12.49..ebuild
index 49a24ee8e1..021fc31e60 100644
--- a/kde-apps/ffmpegthumbs/ffmpegthumbs-18.12.49..ebuild
+++ b/kde-apps/ffmpegthumbs/ffmpegthumbs-18.12.49..ebuild
@@ -3,7 +3,6 @@
 
 EAPI=6
 
-KDE_BLOCK_SLOT4="false"
 inherit kde5
 
 DESCRIPTION="FFmpeg based thumbnail generator for video files"

diff --git a/kde-apps/ffmpegthumbs/ffmpegthumbs-.ebuild 
b/kde-apps/ffmpegthumbs/ffmpegthumbs-.ebuild
index 49a24ee8e1..021fc31e60 100644
--- a/kde-apps/ffmpegthumbs/ffmpegthumbs-.ebuild
+++ b/kde-apps/ffmpegthumbs/ffmpegthumbs-.ebuild
@@ -3,7 +3,6 @@
 
 EAPI=6
 
-KDE_BLOCK_SLOT4="false"
 inherit kde5
 
 DESCRIPTION="FFmpeg based thumbnail generator for video files"

diff --git a/kde-apps/kwalletmanager/kwalletmanager-18.12.49..ebuild 
b/kde-apps/kwalletmanager/kwalletmanager-18.12.49..ebuild
index dbf83e12bc..9ca35b6c52 100644
--- a/kde-apps/kwalletmanager/kwalletmanager-18.12.49..ebuild
+++ b/kde-apps/kwalletmanager/kwalletmanager-18.12.49..ebuild
@@ -3,7 +3,6 @@
 
 EAPI=6
 
-KDE_BLOCK_SLOT4="false"
 KDE_HANDBOOK="forceoptional"
 inherit kde5
 

diff --git a/kde-apps/kwalletmanager/kwalletmanager-.ebuild 
b/kde-apps/kwalletmanager/kwalletmanager-.ebuild
index dbf83e12bc..9ca35b6c52 100644
--- a/kde-apps/kwalletmanager/kwalletmanager-.ebuild
+++ b/kde-apps/kwalletmanager/kwalletmanager-.ebuild
@@ -3,7 +3,6 @@
 
 EAPI=6
 
-KDE_BLOCK_SLOT4="false"
 KDE_HANDBOOK="forceoptional"
 inherit kde5
 

diff --git a/kde-apps/libkcddb/libkcddb-18.12.49..ebuild 
b/kde-apps/libkcddb/libkcddb-18.12.49..ebuild
index e9c8b27f86..c826946daa 100644
--- a/kde-apps/libkcddb/libkcddb-18.12.49..ebuild
+++ b/kde-apps/libkcddb/libkcddb-18.12.49..ebuild
@@ -3,7 +3,6 @@
 
 EAPI=6
 
-KDE_BLOCK_SLOT4="false"
 KDE_HANDBOOK="forceoptional"
 KDE_TEST="true"
 inherit kde5

diff --git a/kde-apps/libkcddb/libkcddb-.ebuild 
b/kde-apps/libkcddb/libkcddb-.ebuild
index e9c8b27f86..c826946daa 100644
--- a/kde-apps/libkcddb/libkcddb-.ebuild
+++ b/kde-apps/libkcddb/libkcddb-.ebuild
@@ -3,7 +3,6 @@
 
 EAPI=6
 
-KDE_BLOCK_SLOT4="false"
 KDE_HANDBOOK="forceoptional"
 KDE_TEST="true"
 inherit kde5

diff --git a/kde-apps/libkcompactdisc/libkcompactdisc-18.12.49..ebuild 
b/kde-apps/libkcompactdisc/libkcompactdisc-18.12.49..ebuild
index 7de6f6c676..3425716112 100644
--- a/kde-apps/libkcompactdisc/libkcompactdisc-18.12.49..ebuild
+++ b/kde-apps/libkcompactdisc/libkcompactdisc-18.12.49..ebuild
@@ -3,7 +3,6 @@
 
 EAPI=6
 
-KDE_BLOCK_SLOT4="false"
 inherit kde5
 
 DESCRIPTION="Library for playing & ripping CDs"


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

2019-01-08 Thread Andreas Sturmlechner
commit: 39b66747da4b649b5eb878dba993cb7dd9f47952
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan  9 00:25:16 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan  9 00:40:17 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=39b66747

kde5-functions.eclass: Ban get_kde_version, kde_l10n2lingua in EAPI-7

* get_kde_version was never used and is broken for Jan-Sep kde-apps releases
* kde_l10n2lingua is not used since kde-l10n and kde4-l10n packages are gone

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

 eclass/kde5-functions.eclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index b2d8813736..4ff518f841 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -288,6 +288,7 @@ add_qt_dep() {
 # If the version equals , "live" is returned.
 # If no version is specified, ${PV} is used.
 get_kde_version() {
+   [[ ${EAPI} != 6 ]] && die "${FUNCNAME} is banned in EAPI 7 and later"
local ver=${1:-${PV}}
local major=$(ver_cut 1 ${ver})
local minor=$(ver_cut 2 ${ver})
@@ -306,6 +307,7 @@ get_kde_version() {
 # Output KDE lingua flag name(s) (without prefix(es)) appropriate for
 # given l10n(s).
 kde_l10n2lingua() {
+   [[ ${EAPI} != 6 ]] && die "${FUNCNAME} is banned in EAPI 7 and later"
local l
for l; do
case ${l} in



[gentoo-commits] proj/kde:master commit in: kde-apps/konqueror/, kde-apps/korganizer/, kde-apps/kleopatra/, kde-apps/minuet/, ...

2019-01-08 Thread Andreas Sturmlechner
commit: 58aaed8538c56bafb25d1b4b1d132cafd3c043f2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan  9 01:41:37 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan  9 01:52:28 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=58aaed85

kde-apps: Move remaining slot 4 blockers where they belong

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

 kde-apps/akonadi/akonadi-18.12.1.ebuild   | 1 +
 kde-apps/akonadi/akonadi-18.12.49..ebuild | 1 +
 kde-apps/akregator/akregator-18.12.1.ebuild   | 1 +
 kde-apps/akregator/akregator-18.12.49..ebuild | 1 +
 kde-apps/audiocd-kio/audiocd-kio-18.12.1.ebuild   | 4 +++-
 kde-apps/audiocd-kio/audiocd-kio-18.12.49..ebuild | 4 +++-
 kde-apps/kaddressbook/kaddressbook-18.12.1.ebuild | 1 +
 kde-apps/kaddressbook/kaddressbook-18.12.49..ebuild   | 1 +
 kde-apps/kalarm/kalarm-18.12.1.ebuild | 1 +
 kde-apps/kalarm/kalarm-18.12.49..ebuild   | 1 +
 kde-apps/kjots/kjots-.ebuild  | 6 +++---
 kde-apps/kleopatra/kleopatra-18.12.1.ebuild   | 1 +
 kde-apps/kleopatra/kleopatra-18.12.49..ebuild | 1 +
 kde-apps/kmail/kmail-18.12.1.ebuild   | 1 +
 kde-apps/kmail/kmail-18.12.49..ebuild | 1 +
 kde-apps/knotes/knotes-18.12.1.ebuild | 1 +
 kde-apps/knotes/knotes-18.12.49..ebuild   | 1 +
 kde-apps/konqueror/konqueror-18.12.1.ebuild   | 1 +
 kde-apps/konqueror/konqueror-18.12.49..ebuild | 1 +
 kde-apps/konsolekalendar/konsolekalendar-18.12.1.ebuild   | 1 +
 kde-apps/konsolekalendar/konsolekalendar-18.12.49..ebuild | 1 +
 kde-apps/kontact/kontact-18.12.1.ebuild   | 1 +
 kde-apps/kontact/kontact-18.12.49..ebuild | 1 +
 kde-apps/kopete/kopete-18.12.1.ebuild | 1 +
 kde-apps/kopete/kopete-18.12.49..ebuild   | 1 +
 kde-apps/korganizer/korganizer-18.12.1.ebuild | 1 +
 kde-apps/korganizer/korganizer-18.12.49..ebuild   | 1 +
 kde-apps/minuet/minuet-18.12.1.ebuild | 7 +--
 kde-apps/minuet/minuet-18.12.49..ebuild   | 7 +--
 29 files changed, 43 insertions(+), 9 deletions(-)

diff --git a/kde-apps/akonadi/akonadi-18.12.1.ebuild 
b/kde-apps/akonadi/akonadi-18.12.1.ebuild
index 1a0a2c2243..e80a4b6a95 100644
--- a/kde-apps/akonadi/akonadi-18.12.1.ebuild
+++ b/kde-apps/akonadi/akonadi-18.12.1.ebuild
@@ -49,6 +49,7 @@ DEPEND="${COMMON_DEPEND}
test? ( sys-apps/dbus )
 "
 RDEPEND="${COMMON_DEPEND}
+   !kde-apps/akonadi:4
!https://www.kde.org/applications/utilities/kjots/;
 KEYWORDS=""
 IUSE=""
 
-RDEPEND="
+DEPEND="
$(add_frameworks_dep kbookmarks)
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kconfig)
@@ -36,6 +36,6 @@ RDEPEND="
dev-libs/grantlee:5
dev-libs/libxslt
 "
-DEPEND="${RDEPEND}
-   sys-devel/gettext
+RDEPEND="${DEPEND}
+   !kde-apps/kjots:4
 "

diff --git a/kde-apps/kleopatra/kleopatra-18.12.1.ebuild 
b/kde-apps/kleopatra/kleopatra-18.12.1.ebuild
index 9d50875fbf..f846276c10 100644
--- a/kde-apps/kleopatra/kleopatra-18.12.1.ebuild
+++ b/kde-apps/kleopatra/kleopatra-18.12.1.ebuild
@@ -44,6 +44,7 @@ DEPEND="
 "
 RDEPEND="${DEPEND}
!kde-apps/kdepim-l10n
+   !kde-apps/kleopatra:4
>=app-crypt/gnupg-2.1
app-crypt/paperkey
 "

diff --git a/kde-apps/kleopatra/kleopatra-18.12.49..ebuild 
b/kde-apps/kleopatra/kleopatra-18.12.49..ebuild
index a0bbc2a40a..7e48839bcd 100644
--- a/kde-apps/kleopatra/kleopatra-18.12.49..ebuild
+++ b/kde-apps/kleopatra/kleopatra-18.12.49..ebuild
@@ -44,6 +44,7 @@ DEPEND="
 "
 RDEPEND="${DEPEND}
!kde-apps/kdepim-l10n
+   !kde-apps/kleopatra:4
>=app-crypt/gnupg-2.1
app-crypt/paperkey
 "

diff --git a/kde-apps/kmail/kmail-18.12.1.ebuild 
b/kde-apps/kmail/kmail-18.12.1.ebuild
index 14e6f0ac94..4827eb3089 100644
--- a/kde-apps/kmail/kmail-18.12.1.ebuild
+++ b/kde-apps/kmail/kmail-18.12.1.ebuild
@@ -75,6 +75,7 @@ DEPEND="${COMMON_DEPEND}
 RDEPEND="${COMMON_DEPEND}
!kde-apps/kdepim-common-libs:4
!kde-apps/kdepim-l10n
+   !kde-apps/kmail:4
!kde-apps/ktnef
$(add_kdeapps_dep kdepim-runtime)
$(add_kdeapps_dep kmail-account-wizard)

diff --git a/kde-apps/kmail/kmail-18.12.49..ebuild 
b/kde-apps/kmail/kmail-18.12.49..ebuild
index 45fb30d520..ff8a7efea7 100644
--- a/kde-apps/kmail/kmail-18.12.49..ebuild
+++ b/kde-apps/kmail/kmail-18.12.49..ebuild
@@ -75,6 +75,7 @@ DEPEND="${COMMON_DEPEND}
 RDEPEND="${COMMON_DEPEND}
!kde-apps/kdepim-common-libs:4

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

2019-01-08 Thread Andreas Sturmlechner
commit: bb32ea7f1c50ccb8df64f19da963acaf2626e614
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan  9 01:51:44 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan  9 01:52:28 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bb32ea7f

kde5.eclass: Deprecate kde-apps blockers with 18.08.3

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

 eclass/kde5.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index d304267654..8db0fa00d9 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -207,9 +207,9 @@ case ${KDE_AUTODEPS} in
RDEPEND+=" || ( $(add_frameworks_dep breeze-icons) 
kde-frameworks/oxygen-icons:* )"
fi
 
-   if [[ ${CATEGORY} = kde-apps ]]; then
+   if [[ ${CATEGORY} = kde-apps && ${PV} = 18.08.3 ]]; then
[[ ${KDE_BLOCK_SLOT4} = true ]] && RDEPEND+=" 
!kde-apps/${PN}:4"
-   RDEPEND+=" !kde-apps/kde-l10n" # TODO: drop after 
18.08.3 removal
+   RDEPEND+=" !kde-apps/kde-l10n"
fi
;;
 esac



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

2019-01-08 Thread Andreas Sturmlechner
commit: 207b3d5930ef1b0de8ace506cc5542f08431faa6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan  9 02:14:37 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan  9 02:14:37 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=207b3d59

kde-apps/kajongg: Drop obsolete kde4-l10n blocker

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

 kde-apps/kajongg/kajongg-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-apps/kajongg/kajongg-.ebuild 
b/kde-apps/kajongg/kajongg-.ebuild
index a28fcad104..f6afaa24d3 100644
--- a/kde-apps/kajongg/kajongg-.ebuild
+++ b/kde-apps/kajongg/kajongg-.ebuild
@@ -31,7 +31,6 @@ DEPEND="${PYTHON_DEPS}
 RDEPEND="${DEPEND}
$(add_kdeapps_dep libkmahjongg)
!kde-apps/kajongg:4
-   !

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

2019-01-08 Thread Georgy Yakovlev
commit: 08116882f2565ca1c7d4cbca430f9c0e8130f56b
Author: Daniel Mueller  posteo  net>
AuthorDate: Tue Jan  8 18:39:16 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jan  9 01:53:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08116882

app-crypt/nitrocli: Bump version to 0.2.1

This patch adds an ebuild for app-crypt/nitrocli version 0.2.1. The
application includes a few new subcommands and dependencies have been
updated.

Closes: https://github.com/gentoo/gentoo/pull/10779
Signed-off-by: Daniel Müller  posteo.net>
Signed-off-by: Georgy Yakovlev  gentoo.org>

 app-crypt/nitrocli/Manifest  | 14 +++
 app-crypt/nitrocli/nitrocli-0.2.1.ebuild | 63 
 2 files changed, 77 insertions(+)

diff --git a/app-crypt/nitrocli/Manifest b/app-crypt/nitrocli/Manifest
index c9a4f91671e..0b9976e38d6 100644
--- a/app-crypt/nitrocli/Manifest
+++ b/app-crypt/nitrocli/Manifest
@@ -1,6 +1,8 @@
 DIST argparse-0.2.2.crate 19440 BLAKE2B 
7b15b2072ff52149bc08c5d02a266f2eef78a3aa8844e49154cf2ae1a9cb960ddc2a96a065b4aa44637aca8216211f2965291364d9f06ff6f68524a1f15dfed9
 SHA512 
97691566d3adc6f6be1c00cdca48424fd3576c372d1c995e7e31658bd20e17ef13553f7de21968ba189fd812928aeb93ef0fa89fe2fd258f45a0a8e095783706
 DIST bitflags-1.0.4.crate 15282 BLAKE2B 
63f5feb47460c344983cef8822804b1c4ac2f3adfffcf206df2b05fafb9c7bfd73986721cde46705a3e4a0dc72a40683e4d369f2339adfc1b55208bad1766875
 SHA512 
81850d2be62eabb8486024ab263da67e6eb8ebfa732cac3a5d46a9186c564b2065cba15fa3da468bbd26eaf2b67038680e5de19d5dd99d78f60dae8a1776c8de
 DIST cc-1.0.25.crate 43191 BLAKE2B 
2f715c36150ea81406ac34224ebc5e0b95ba1bc5f80d36e78af6e6f4027521bd5e163c3ff0f08dac8b0791b797e1498c8a1151dfbc72a8a8008546e0b44ecf83
 SHA512 
0ae0d47c9ceb67aa0ec25b7b98ab4d378bd7a58fb7bbcd9bcc804a0deadcfae904f9353c218d63b8e7046b388c67d5316248accf1f8b69822c0f58ff465652a3
+DIST cc-1.0.28.crate 42422 BLAKE2B 
632455257fdfe0be6efddc6aee1a32a8a450c49f3a49b7dd13f770cda69334acb0d11e69a4bd4b94c09133ab4319a529c29de993b960276f7506511e4c0fda9a
 SHA512 
2d1e8e34dd8d60aafb0337a86516b152f7f5b04ed5313079fcce66460b5d9c753afbf5e5ba13ada56bbaa7f5ffa1678eb3c2e27b9d58cdcec9f1a5374e6a32ab
+DIST cloudabi-0.0.3.crate 22156 BLAKE2B 
e12054fd474754031f8f5038d5e2829e1586db974d38230cfd8774db591a58dfdcaea9fb61fc0b35366889d348b2c73ceaabbb462f1abeeffeaab167013c986f
 SHA512 
691ed793e9b35ba382f03897f4c0efc31a528394862a27b814ba8993ad30bbe0ebc9808484baf580e8b69d9c13ad1612776a1efd0f6981545b420139ff83592c
 DIST fuchsia-zircon-0.3.3.crate 22565 BLAKE2B 
a4dac3457036efab8f79fe5d5b4545e4091e994d3dc63188f71fafbcc28bf98ef359dcd20add30ac1d990ab2e66159723302fb66697349c65fab0aa58d54535e
 SHA512 
a43ee59452d49742111e506d6bdd8b8399a3a646e08648e25292864d7f71460c1dd1f2d77b8efa8ed09ac21fa4ff0442a2709f16d8833a3849bde0c388d83a93
 DIST fuchsia-zircon-sys-0.3.3.crate 7191 BLAKE2B 
530bb5d475ac828843af248c6bbd24ca3b5dd8118c8884ccc6d7261818cff1c79038077114ffa04bc73a078177527824c4d9d20a9b022e4057afee3330258cff
 SHA512 
978b7e8795a5877a68409ed3a1d7b4246263f8e7e7ce9ba8a022643be98f58f329cc1c234717df80a509db849da4394f39e90a8e2a6f56f8fa8dd3c07e7d4386
 DIST hid-0.4.1.crate 4121 BLAKE2B 
8af6af754c129f3eeaaa35e3b03361fd2a658cdee017701573e79ed40e86900e137ae6a10c844f90ce8c29ecb577d892a8a9b065520eb360734c9bf52bcae6ce
 SHA512 
5529be48d9c0cfb7bdafee029a45fe471cd8996cabe7d584615ccbfea244700a1cf7d78cdaaf8f36ac3d6ddca466d36569fb12e1c1eaaa45091899e57a1d21ce
@@ -8,10 +10,22 @@ DIST hidapi-sys-0.1.4.crate 2391 BLAKE2B 
5d8309bad190bdba91aee84239bb0965fdc0093
 DIST libc-0.2.45.crate 349425 BLAKE2B 
ded7a699266fb8c8003181dbbb0a8ed9fb27613951b72d538e05bf1d262810dac7edb47560d06989d0d24a9cfac18f22744efed44d12452fa41ba68cb4b8e4cc
 SHA512 
8188400f2f9fabd7c1e0dd1172032eb25bde2702019aec4e3e0c8b936209347baea347ff8d85fee3e93031df0741d32faed151c2b553151e95ae8321bb653381
 DIST nitrocli-0.1.3.crate 23497 BLAKE2B 
a61cbf26ae5503a77c534efcfffadcd56a1ea15dc34fcfff50765fcee1c22b64f54b76d9cf23ce9ec58d37132be13e313e643379f1330e9d43b2e7492fa627db
 SHA512 
43880b6cb9bb152a1179d02b4290ff6c4dbbdae3c5cb46c0c5cdc382d2a5d8322de97d94b1842b6e93bba97bc3d451bc8946da6d6c0b66fb7d9ed8936df2c263
 DIST nitrocli-0.2.0.crate 43024 BLAKE2B 
d3dea35dc88fe71b5b87666f1c79c41a56a7dc3a45c7252b342e937f69de4d4e29e217f0ffad5dc2fe2e0fca1841e6ce84ce7544b16c847bf4aacd17e45d6215
 SHA512 
aca356201c29ed670595d2d637edc2ce15df0a59a6843c68632b702fc92dd8df85cf6e17eed6d5d95e8dd2e83e1f15c3691f2e9bd1aeb0fc908c2217af7e74ae
+DIST nitrocli-0.2.1.crate 45957 BLAKE2B 
0908dc34ee3ed65ea6221a0fd7ff7231c8a2cb64c5643a8ad0fa4b785d6d974c0528f81448412ae93f7d05f9f66fec794e71e686576b4b3f7298e96fd852087d
 SHA512 
a13e8cf8bd471e1c9b71ec1714ae591ffc07df3588b3902250eef1e15ae53ff97b3ef965c8cd56ee63e5d82c5cefdb4c143181eb33329e3cab01bf71f1ece8d7
 DIST nitrokey-0.2.1.crate 20573 BLAKE2B 
db7a20121a36d198f1b84e24ea79bdbb18dcb428ec9a84b7180f2157fa14b8ad78a3adcf2162da5bfcd8e112d71b2b05031c694a830e9c6c327c7518360f2f2f
 SHA512 

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

2019-01-08 Thread Anthony G. Basile
commit: 37bd823f08a8c8f4d38d0c45201723ffec407b23
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jan  9 01:42:18 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jan  9 01:42:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37bd823f

net-libs/stem: version bump to 1.7.1

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

 net-libs/stem/Manifest  |  1 +
 net-libs/stem/stem-1.7.1.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/net-libs/stem/Manifest b/net-libs/stem/Manifest
index 5471a984b99..59f5e04b4e2 100644
--- a/net-libs/stem/Manifest
+++ b/net-libs/stem/Manifest
@@ -1,3 +1,4 @@
 DIST stem-1.5.4.tar.gz 1915722 BLAKE2B 
37c278eab0d7c7c305d7fcb498ff39460921ff59ea16cbe97d985c742290b8ca938218cbc7d5e4d1106ffc9f6a20461a4692afd14565698abbdfbd8015cb6f18
 SHA512 
1ea74341a1013f1f98d3d5ed1d552e79277cf54a6337d1a8b66bda0baae022d70c4c0c9ce35c843222d183a716466d93e1df3ee55ae6cd16cf10c6cf415d3cf7
 DIST stem-1.6.0.tar.gz 204 BLAKE2B 
10846dbd20f22b489fa885e8f100eb2ba4053aca46db140463882cbc1f5701893e6a4a28820100e05e3ed4fa5ff76135a3b20ec1af917a63f63b3abdf5361df6
 SHA512 
499a15b1cbd12d75865c93e253e797507564d5b5f2a9a0f021107d89c85db040e050944a9ac69b629f74e265d350467bef9d36ec52f7ef2e6a97180a7b93e94c
 DIST stem-1.7.0.tar.gz 2196759 BLAKE2B 
2f4bf8a65e5e89b01e6d1054a9d7fe01d4775dc31f1846c300190320361e15a312ce35867fd7d6af2d0cb315894aa5f69f7e8a47cf184e1d9018342028ba1484
 SHA512 
10750266860f4f90df5d4a3bf24ec68e28d12c84c136c35d2f168f767f4facae3d02cc62dc972a0889695ea17337a7a6b80ec1c5ed8b9e5035d7417b07f5
+DIST stem-1.7.1.tar.gz 2196854 BLAKE2B 
318b762390ad5f1b8a7ad49bd442841d4552cf3d6782c7c912ca8251a076baa6d01bd6f60ea2d79f96994f7c29775c09b815ee41177c638c7e4089e5f4b1b1e4
 SHA512 
a275f59bba650cb5bb151cf53fb1dd820334f9abbeae1a25e64502adc854c7f54c51bc3d6c1656b595d142fc0695ffad53aab3c57bc285421c1f4f10c9c3db4c

diff --git a/net-libs/stem/stem-1.7.1.ebuild b/net-libs/stem/stem-1.7.1.ebuild
new file mode 100644
index 000..9a38c64d97d
--- /dev/null
+++ b/net-libs/stem/stem-1.7.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6,3_7})
+
+inherit vcs-snapshot distutils-r1
+
+DESCRIPTION="Stem is a Python controller library for Tor"
+HOMEPAGE="https://stem.torproject.org;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~x86-fbsd"
+IUSE="test"
+
+DEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}]
+   net-vpn/tor )
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+RDEPEND="net-vpn/tor"
+
+DOCS=( 
docs/{_static,_templates,api,tutorials,{change_log,api,contents,download,faq,index,tutorials}.rst}
 )
+
+python_prepare_all() {
+   # Disable failing test
+   sed -i -e "/test_expand_path/a \
+   \ \ \ \ return" test/integ/util/system.py || die
+   sed -i -e "/test_parsing_with_example/a \
+   \ \ \ \ return" test/unit/manual.py || die
+   sed -i -e "/test_parsing_with_unknown_options/a \
+   \ \ \ \ return" test/unit/manual.py || die
+   sed -i -e "/test_saving_manual/a \
+   \ \ \ \ return" test/unit/manual.py || die
+   sed -i -e "/test_sdist_matches_git/a \
+   \ \ \ \ return" test/integ/installation.py || die
+   sed -i -e "/test_connections_by_ss/a \
+   \ \ \ \ return" test/integ/util/connection.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   ${PYTHON} run_tests.py --all --target RUN_ALL || die
+}



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

2019-01-08 Thread Thomas Deutschmann
commit: 78f1d5231fcd00361d70b380d38ac5b76ef727ee
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:38:47 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:38:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78f1d523

dev-libs/libdazzle: x86 stable (bug #674870)

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

 dev-libs/libdazzle/libdazzle-3.30.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libdazzle/libdazzle-3.30.2.ebuild 
b/dev-libs/libdazzle/libdazzle-3.30.2.ebuild
index 635275f8d6e..176f07af959 100644
--- a/dev-libs/libdazzle/libdazzle-3.30.2.ebuild
+++ b/dev-libs/libdazzle/libdazzle-3.30.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libdazzle;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc x86"
 
 IUSE="gtk-doc +introspection test vala"
 REQUIRED_USE="vala? ( introspection )"



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

2019-01-08 Thread Thomas Deutschmann
commit: 2ffe0d8c3cd2896f31458978c4b2dc121cb74f3b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:39:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:39:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ffe0d8c

www-client/epiphany: x86 stable (bug #674870)

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

 www-client/epiphany/epiphany-3.30.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/epiphany/epiphany-3.30.2.ebuild 
b/www-client/epiphany/epiphany-3.30.2.ebuild
index 77d10675a94..07d03ef129a 100644
--- a/www-client/epiphany/epiphany-3.30.2.ebuild
+++ b/www-client/epiphany/epiphany-3.30.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Web;
 LICENSE="GPL-3+"
 SLOT="0"
 IUSE="test"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 x86"
 
 COMMON_DEPEND="
>=dev-libs/glib-2.52.0:2



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-x265/

2019-01-08 Thread Thomas Deutschmann
commit: 8d2c070a9ae87ecf6f9aa8fa513c52eb14c475d6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:28:17 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d2c070a

media-plugins/gst-plugins-x265: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-x265/gst-plugins-x265-1.14.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-plugins/gst-plugins-x265/gst-plugins-x265-1.14.3.ebuild 
b/media-plugins/gst-plugins-x265/gst-plugins-x265-1.14.3.ebuild
index fdf54708a5a..7c0dc4dbd8b 100644
--- a/media-plugins/gst-plugins-x265/gst-plugins-x265-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-x265/gst-plugins-x265-1.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE="gst-plugins-bad"
 inherit gstreamer
 
 DESCRIPTION="H.265 encoder plugin for GStreamer"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 RDEPEND="



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

2019-01-08 Thread Thomas Deutschmann
commit: c827d0989d035cac1a6e9e500115133cb2942c21
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:30:56 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c827d098

dev-libs/libunistring: x86 stable (bug #674644)

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

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

diff --git a/dev-libs/libunistring/libunistring-0.9.10.ebuild 
b/dev-libs/libunistring/libunistring-0.9.10.ebuild
index 6e43dfaee49..226a286a26c 100644
--- a/dev-libs/libunistring/libunistring-0.9.10.ebuild
+++ b/dev-libs/libunistring/libunistring-0.9.10.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-3 GPL-3"
 SLOT="0/2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-voaacenc/

2019-01-08 Thread Thomas Deutschmann
commit: 4823b4ffda4a9e91f9a4188a7933389504d7aefe
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:25:16 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4823b4ff

media-plugins/gst-plugins-voaacenc: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.14.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.14.3.ebuild 
b/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.14.3.ebuild
index 5e956ed3221..742abbd78ab 100644
--- a/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="AAC encoder plugin for GStreamer"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/vo-aacenc-0.1.3[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-ximagesrc/

2019-01-08 Thread Thomas Deutschmann
commit: 673766ea9830e800ed66a8f05d6b6a0ef7fb4d22
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:28:47 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=673766ea

media-plugins/gst-plugins-ximagesrc: x86 stable (bug #674854)

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

 .../gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild 
b/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild
index b01efa81951..b12c590dedd 100644
--- a/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-ximagesrc/gst-plugins-ximagesrc-1.14.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="X11 video capture stream plugin for GStreamer"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND="



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

2019-01-08 Thread Thomas Deutschmann
commit: fbea3fa0188fe08fc6e1f11deae243b9154409d6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:30:21 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbea3fa0

media-libs/libextractor: x86 stable (bug #673742)

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

 media-libs/libextractor/libextractor-1.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libextractor/libextractor-1.8-r1.ebuild 
b/media-libs/libextractor/libextractor-1.8-r1.ebuild
index f89c255307a..7a2375985ad 100644
--- a/media-libs/libextractor/libextractor-1.8-r1.ebuild
+++ b/media-libs/libextractor/libextractor-1.8-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ppc ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ppc ppc64 x86"
 IUSE="apparmor +archive +bzip2 ffmpeg flac gif gsf gstreamer gtk jpeg +magic 
midi mp4 mpeg tidy tiff vorbis +zlib" # test
 
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-v4l2/

2019-01-08 Thread Thomas Deutschmann
commit: e560c48b94bc7e032c79ad03e088125c08aef005
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:24:32 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e560c48b

media-plugins/gst-plugins-v4l2: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild 
b/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild
index cc0c150dd76..bf718f9ffe0 100644
--- a/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-v4l2/gst-plugins-v4l2-1.14.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPION="V4L2 source/sink plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="udev"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-wavpack/

2019-01-08 Thread Thomas Deutschmann
commit: 75048921954a2365ebf085392235525e68ff189d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:27:13 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75048921

media-plugins/gst-plugins-wavpack: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild 
b/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild
index e2d427f25a2..5e7214ba1a3 100644
--- a/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.14.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Wavpack audio encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}]"



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

2019-01-08 Thread Thomas Deutschmann
commit: 9bc60cfe08f473817e61ac1b85f115968d4de6fd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:29:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bc60cfe

app-editors/kile: x86 stable (bug #674802)

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

 app-editors/kile/kile-2.9.92-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/kile/kile-2.9.92-r1.ebuild 
b/app-editors/kile/kile-2.9.92-r1.ebuild
index 98f5a152873..9a53d47e9c7 100644
--- a/app-editors/kile/kile-2.9.92-r1.ebuild
+++ b/app-editors/kile/kile-2.9.92-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ HOMEPAGE="https://kile.sourceforge.io/;
 [[ ${PV} != ** ]] && SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
 LICENSE="FDL-1.2 GPL-2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+pdf +png"
 
 DEPEND="



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

2019-01-08 Thread Thomas Deutschmann
commit: 1369aac525db2f638f6016b8d5b7c7d43c7eaa11
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:29:10 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1369aac5

media-video/guvcview: x86 stable (bug #674208)

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

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

diff --git a/media-video/guvcview/guvcview-2.0.6.ebuild 
b/media-video/guvcview/guvcview-2.0.6.ebuild
index 37dee2ed730..8f62edffa65 100644
--- a/media-video/guvcview/guvcview-2.0.6.ebuild
+++ b/media-video/guvcview/guvcview-2.0.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="gsl libav pulseaudio qt5"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-vpx/

2019-01-08 Thread Thomas Deutschmann
commit: ddd6d1c01df05e4a194e75aa3caab7d2d24cb8ea
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:26:27 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddd6d1c0

media-plugins/gst-plugins-vpx: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild 
b/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild
index a46eaa8fa30..46ed6be9712 100644
--- a/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.14.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="VP8/VP9 video encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/libvpx-1.3.0:=[${MULTILIB_USEDEP}]"



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

2019-01-08 Thread Thomas Deutschmann
commit: 2ead4a2d69aa1c7ddd4fb6252c997647d4a58c52
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:31:18 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ead4a2d

media-sound/picard: x86 stable (bug #674714)

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

 media-sound/picard/picard-2.0.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/picard/picard-2.0.4.ebuild 
b/media-sound/picard/picard-2.0.4.ebuild
index 760daf7633e..efafb521689 100644
--- a/media-sound/picard/picard-2.0.4.ebuild
+++ b/media-sound/picard/picard-2.0.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ 
SRC_URI="https://musicbrainz.osuosl.org/pub/musicbrainz/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="nls"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-vaapi/

2019-01-08 Thread Thomas Deutschmann
commit: 981be87eaaa111d417adf01a1ebf12bd41d1c90c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:24:56 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=981be87e

media-plugins/gst-plugins-vaapi: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.14.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.14.3.ebuild 
b/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.14.3.ebuild
index 181114b5eb8..ea5694877d7 100644
--- a/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ 
SRC_URI="https://gstreamer.freedesktop.org/src/${MY_PN}/${MY_PN}-${PV}.tar.xz;
 
 LICENSE="LGPL-2.1+"
 SLOT="1.0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 IUSE="+drm +egl gles2 +opengl wayland +X" # Keep default enabled IUSE in sync 
with gst-plugins-base and libva
 
 # gst-vaapi configure is based around GL platform mainly, unlike 
gst-plugins-bad that goes by GL API mainly; for less surprises,



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-twolame/

2019-01-08 Thread Thomas Deutschmann
commit: 1bab244a6a88bf189d9c2f0b8fe234175577ddb9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:23:13 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bab244a

media-plugins/gst-plugins-twolame: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild 
b/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild
index 201a1836479..b7e322dc5ff 100644
--- a/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.14.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="MPEG2 encoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=">=media-sound/twolame-0.3.13-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-voamrwbenc/

2019-01-08 Thread Thomas Deutschmann
commit: be61c2906eb9c2e9a9b1c17aa5879212439c04bd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:25:37 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be61c290

media-plugins/gst-plugins-voamrwbenc: x86 stable (bug #674854)

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

 .../gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.14.3.ebuild   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.14.3.ebuild 
b/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.14.3.ebuild
index 89130467e3e..89433bd70b9 100644
--- a/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-voamrwbenc/gst-plugins-voamrwbenc-1.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="AMR-WB audio encoder plugin for GStreamer"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/vo-amrwbenc-0.1.2-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-uvch264/

2019-01-08 Thread Thomas Deutschmann
commit: aa14fee47e6a0bf1f6ff94f892451173d09a36a4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:23:33 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa14fee4

media-plugins/gst-plugins-uvch264: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.14.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.14.3.ebuild 
b/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.14.3.ebuild
index 27d2bb3198f..48cc2add361 100644
--- a/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="UVC compliant H264 encoding cameras plugin for GStreamer"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 RDEPEND="



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

2019-01-08 Thread Thomas Deutschmann
commit: 913691a789e739032138d06fe5f053e5592a1cc7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:32:32 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=913691a7

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

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

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

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



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-speex/

2019-01-08 Thread Thomas Deutschmann
commit: aed0bbdea7a5f000cae4cde0b4b6893ba1c705f2
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:20:46 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aed0bbde

media-plugins/gst-plugins-speex: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild 
b/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild
index 3084221197a..5eb8b854796 100644
--- a/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-speex/gst-plugins-speex-1.14.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Speex encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-taglib/

2019-01-08 Thread Thomas Deutschmann
commit: 1703e8cb70f0e05d8842a526da7d03475f2b03b7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:22:21 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1703e8cb

media-plugins/gst-plugins-taglib: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild 
b/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild
index 5b2c84c2776..74fc87173be 100644
--- a/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-taglib/gst-plugins-taglib-1.14.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="ID3v2/APEv2 tagger plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/taglib-1.9.1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-sidplay/

2019-01-08 Thread Thomas Deutschmann
commit: d84e4d0828df50e1cab4936a627672d9ea57099d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:18:31 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d84e4d08

media-plugins/gst-plugins-sidplay: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild 
b/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild
index c21bd8055b3..dd91ffac274 100644
--- a/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-sidplay/gst-plugins-sidplay-1.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="Sid decoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libsidplay-1.36.59-r1:1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-x264/

2019-01-08 Thread Thomas Deutschmann
commit: 2e608cba6b04a10ea529eadd08e7a6ce76f37c65
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:27:59 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e608cba

media-plugins/gst-plugins-x264: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild 
b/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild
index e542008ec2f..0f325e8cc3e 100644
--- a/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-x264/gst-plugins-x264-1.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="H.264 encoder plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 # 20111220 ensures us X264_BUILD >= 120



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-smoothstreaming/

2019-01-08 Thread Thomas Deutschmann
commit: 308e2a092edb4e905573c05372f2885eee84c041
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:18:48 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=308e2a09

media-plugins/gst-plugins-smoothstreaming: x86 stable (bug #674854)

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

 .../gst-plugins-smoothstreaming-1.14.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.14.3.ebuild
 
b/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.14.3.ebuild
index 2ec5feec35f..124e25fce3a 100644
--- 
a/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.14.3.ebuild
+++ 
b/media-plugins/gst-plugins-smoothstreaming/gst-plugins-smoothstreaming-1.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="Smooth Streaming plugin for GStreamer"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 RDEPEND=">=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-shout2/

2019-01-08 Thread Thomas Deutschmann
commit: 45837c83931eafeae82055731b42643a2a8b5373
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:18:02 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45837c83

media-plugins/gst-plugins-shout2: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild 
b/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild
index e0eca753580..802f7fee1cb 100644
--- a/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-shout2/gst-plugins-shout2-1.14.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Icecast server sink plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libshout-2.3.1-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-soup/

2019-01-08 Thread Thomas Deutschmann
commit: 32ae618592f1c6c98fe77264216afcd104e43e02
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:20:00 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32ae6185

media-plugins/gst-plugins-soup: x86 stable (bug #674854)

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

 media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild 
b/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild
index b28c659e743..7c18ce1993c 100644
--- a/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-soup/gst-plugins-soup-1.14.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="HTTP client source/sink plugin for GStreamer"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x64-macos"
 IUSE=""
 
 RDEPEND=">=net-libs/libsoup-2.48:2.4[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-soundtouch/

2019-01-08 Thread Thomas Deutschmann
commit: f6a405b02b97bac36351a30720678f12e4678c75
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jan  9 01:19:06 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jan  9 01:35:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6a405b0

media-plugins/gst-plugins-soundtouch: x86 stable (bug #674854)

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

 .../gst-plugins-soundtouch/gst-plugins-soundtouch-1.14.3.ebuild   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.14.3.ebuild 
b/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.14.3.ebuild
index bc1c86772fb..56fec11dfa7 100644
--- a/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="Beats-per-minute detection and pitch controlling plugin for 
GStreamer"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libsoundtouch-1.7.1[${MULTILIB_USEDEP}]"



  1   2   3   >