[gentoo-commits] repo/gentoo:master commit in: media-libs/simage/files/, media-libs/simage/

2018-05-06 Thread Maciej Mrozowski
commit: 46f5ebe3c2895e00f4547bbc31456c21d0a7
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Sun May  6 07:55:54 2018 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Sun May  6 08:00:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f5ebe3

media-libs/simage: Version bump (SCM snapshot)

 media-libs/simage/Manifest |   1 +
 .../files/simage-1.7.1-cmake-automagic-deps.patch  | 497 +
 .../simage/simage-1.7.1a_beta_pre20180312.ebuild   |  72 +++
 3 files changed, 570 insertions(+)

diff --git a/media-libs/simage/Manifest b/media-libs/simage/Manifest
index 0189c1dc17c..59b5c71b67f 100644
--- a/media-libs/simage/Manifest
+++ b/media-libs/simage/Manifest
@@ -1 +1,2 @@
+DIST Coin3D-simage-3bd369da8f08.tar.bz2 630229 BLAKE2B 
6231dde891c07d8a4a37eebd5f89d9e445c048bf48d1718a5f1e2b12f488ad6c806edd04fd4eb30b5e041f978fbb65ea0b1d3b1263d7006bbda4568f4bef87c6
 SHA512 
61793a728c66dc4f427b1f853e0dcf38a71dced68814c8438e6653a4a1486d8066ce50a7c088d476cf796b4872c724687b3ca9d51ec0ed74f54d5d7e47c89b34
 DIST simage-1.7.0.tar.gz 752602 BLAKE2B 
feca31f8d41ae67271e43c9c664243d872985068ffc8496d43c9b59a47ae5c3067956acced3ff9abbdc5a360aec662e3972a93d8523a704a72ac9d12dd4cfaa0
 SHA512 
944ec009dd7041692073ddd9795fdd633fe3bc9101f1c1234e8be3746487a9431aecf52abde01563e719153fbe1ca7d29f9b64042e4a64ea08d6cb14666dd89f

diff --git a/media-libs/simage/files/simage-1.7.1-cmake-automagic-deps.patch 
b/media-libs/simage/files/simage-1.7.1-cmake-automagic-deps.patch
new file mode 100644
index 000..c119c938eeb
--- /dev/null
+++ b/media-libs/simage/files/simage-1.7.1-cmake-automagic-deps.patch
@@ -0,0 +1,497 @@
+diff -ruN Coin3D-simage-3bd369da8f08/CMakeLists.txt my/CMakeLists.txt
+--- Coin3D-simage-3bd369da8f08/CMakeLists.txt  2018-03-12 19:57:28.0 
+0100
 my/CMakeLists.txt  2018-05-06 08:53:45.202467390 +0200
+@@ -74,6 +74,36 @@
+   set(SIMAGE_GDIPLUS_SUPPORT OFF)
+ endif()
+ 
++if(GIF_FOUND)
++  option(SIMAGE_GIF_SUPPORT "Enable support for GIF images" ON)
++else()
++  set(SIMAGE_GIF_SUPPORT OFF)
++endif()
++
++if(JASPER_FOUND)
++  option(SIMAGE_JASPER_SUPPORT "Enable support for JPEG2K images" ON)
++else()
++  set(SIMAGE_JASPER_SUPPORT OFF)
++endif()
++
++if(JPEG_FOUND)
++  option(SIMAGE_JPEG_SUPPORT "Enable support for JPEG images" ON)
++else()
++  set(SIMAGE_JPEG_SUPPORT OFF)
++endif()
++
++if(PNG_FOUND)
++  option(SIMAGE_PNG_SUPPORT "Enable support for PNG images" ON)
++else()
++  set(SIMAGE_PNG_SUPPORT OFF)
++endif()
++
++if(TIFF_FOUND)
++  option(SIMAGE_TIFF_SUPPORT "Enable support for TIFF images" ON)
++else()
++  set(SIMAGE_TIFF_SUPPORT OFF)
++endif()
++
+ if(SNDFILE_FOUND)
+   option(SIMAGE_LIBSNDFILE_SUPPORT "" ON)
+ else()
+@@ -141,23 +171,23 @@
+   return 0;
+   }
+ " HAVE_GDIPLUS_LOCKBITS_RECTARG_POINTER)
+-set(HAVE_GIFLIB ${GIF_FOUND})
++set(HAVE_GIFLIB ${SIMAGE_GIF_SUPPORT})
+ check_include_files(guile/gh.h HAVE_GUILE_GH_H)
+ check_include_files(inttypes.h HAVE_INTTYPES_H)
+-set(HAVE_JASPER ${JASPER_FOUND})
+-set(HAVE_JPEGLIB ${JPG_FOUND})
++set(HAVE_JASPER ${SIMAGE_JASPER_SUPPORT})
++set(HAVE_JPEGLIB ${SIMAGE_JPEG_SUPPORT})
+ check_include_files(libguile.h HAVE_LIBGUILE_H)
+ check_include_files(memory.h HAVE_MEMORY_H)
+-set(HAVE_PNGLIB ${PNG_FOUND})
++set(HAVE_PNGLIB ${SIMAGE_PNG_SUPPORT})
+ check_include_files(stdint.h HAVE_STDINT_H)
+ check_include_files(stdlib.h HAVE_STDLIB_H)
+ check_include_files(strings.h HAVE_STRINGS_H)
+ check_include_files(string.h HAVE_STRING_H)
+ check_include_files(sys/stat.h HAVE_SYS_STAT_H)
+ check_include_files(sys/types.h HAVE_SYS_TYPES_H)
+-set(HAVE_TIFFLIB ${TIFF_FOUND})
++set(HAVE_TIFFLIB ${SIMAGE_TIFF_SUPPORT})
+ check_include_files(unistd.h HAVE_UNISTD_H)
+-set(HAVE_VFW ${VFW_FOUND})
++set(HAVE_VFW ${SIMAGE_AVIENC_SUPPORT})
+ check_include_files(windows.h HAVE_WINDOWS_H)
+ set(PACKAGE "simage")
+ set(PACKAGE_BUGREPORT "coin-supp...@coin3d.org")
+@@ -321,27 +351,27 @@
+   target_link_libraries(simage ${GDIPLUS_LIBRARIES})
+ endif()
+ 
+-if(GIF_FOUND)
++if(SIMAGE_GIF_SUPPORT)
+   target_include_directories(simage PUBLIC ${GIF_INCLUDE_DIR})
+   target_link_libraries(simage ${GIF_LIBRARIES})
+ endif()
+ 
+-if(JASPER_FOUND)
++if(SIMAGE_JASPER_SUPPORT)
+   target_include_directories(simage PUBLIC ${JASPER_INCLUDE_DIR})
+   target_link_libraries(simage ${JASPER_LIBRARIES})
+ endif()
+ 
+-if(JPEG_FOUND)
++if(SIMAGE_JPEG_SUPPORT)
+   target_include_directories(simage PUBLIC ${JPEG_INCLUDE_DIR})
+   target_link_libraries(simage ${JPEG_LIBRARIES})
+ endif()
+ 
+-if(OGGVORBIS_FOUND)
++if(SIMAGE_OGGVORBIS_SUPPORT)
+   target_include_directories(simage PUBLIC ${OGGVORBIS_INCLUDE_DIRS})
+   target_link_libraries(simage ${OGGVORBIS_LIBRARIES})
+ endif()
+ 
+-if(PNG_FOUND)
++if(SIMAGE_PNG_SUPPORT)
+   target_include_directories(simage PUBLIC ${PNG_INCLUDE_DIR})
+   target_link_librar

[gentoo-commits] repo/gentoo:master commit in: media-libs/coin/, media-libs/coin/files/

2018-05-06 Thread Maciej Mrozowski
commit: 04543ee0267931b25ff408d04e3b9c9a99d5bb7d
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Sun May  6 07:57:54 2018 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Sun May  6 08:02:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04543ee0

media-libs/coin: Version bump 4.0.0a (SCM snapshot)

 media-libs/coin/Manifest   |  1 +
 media-libs/coin/coin-4.0.0a_pre20180416.ebuild | 84 ++
 media-libs/coin/files/coin-4.0.0a-gcc-7.patch  | 21 +++
 media-libs/coin/metadata.xml   |  1 +
 4 files changed, 107 insertions(+)

diff --git a/media-libs/coin/Manifest b/media-libs/coin/Manifest
index cc20a719a7d..3b1f98ce483 100644
--- a/media-libs/coin/Manifest
+++ b/media-libs/coin/Manifest
@@ -1 +1,2 @@
 DIST Coin-3.1.3.tar.gz 5981534 BLAKE2B 
33f88149cf0bf7daeb32226e2deb29f9f36f2a29ca9fcf025f39bb50d3eb0bfc85113a1e96cf980c97d037419c3a263bcf6eccaeb2f289517304c59d4c9de919
 SHA512 
d6fd47ecc74e96fc4de46e3a683f038f1907b96db2bbe935fb49f2d59190bd18f3f439dc0e4cb435360e74e1d65994a32b21f670d5a76394692616625cb14394
+DIST Coin3D-coin-8d1ca1a6ea23.tar.bz2 4925310 BLAKE2B 
3c9aab5e68b79db4878e5d27773537acb7d658580a8deea059565dfa78ee791cb7ee23f159e077408c3307e2647e628357daaa4f2f5a4fc4a125c8d1663ee718
 SHA512 
f0c4d39a89b1dc3e183c2c8cffad6be30f9d27e50b3735c1b261addc55376aceb8f81c916fbdfeb42b852071692febaf6e3839373095bcf2b7046c773fcc809c

diff --git a/media-libs/coin/coin-4.0.0a_pre20180416.ebuild 
b/media-libs/coin/coin-4.0.0a_pre20180416.ebuild
new file mode 100644
index 000..da490ba09d2
--- /dev/null
+++ b/media-libs/coin/coin-4.0.0a_pre20180416.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils flag-o-matic
+
+MY_P=Coin3D-coin-8d1ca1a6ea23
+
+DESCRIPTION="A high-level 3D graphics toolkit, fully compatible with SGI Open 
Inventor 2.1"
+HOMEPAGE="https://bitbucket.org/Coin3D/coin/wiki/Home";
+SRC_URI="https://dev.gentoo.org/~reavertm/${MY_P}.tar.bz2";
+
+LICENSE="|| ( GPL-2 PEL )"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+SLOT="0"
+IUSE="debug doc javascript openal qthelp simage test threads"
+
+RDEPEND="
+   app-arch/bzip2
+   dev-libs/expat
+   media-libs/fontconfig
+   media-libs/freetype:2
+   sys-libs/zlib
+   virtual/opengl
+   virtual/glu
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   javascript? ( dev-lang/spidermonkey:0 )
+   openal? ( media-libs/openal )
+   simage? ( media-libs/simage )
+"
+DEPEND="${RDEPEND}
+   x11-proto/xextproto
+   doc? (
+   app-doc/doxygen
+   qthelp? ( dev-qt/qthelp:5 )
+   )
+"
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.0.0a-gcc-7.patch
+)
+
+DOCS=(
+   AUTHORS FAQ FAQ.legal NEWS README RELNOTES THANKS docs/HACKING
+)
+
+src_configure() {
+   use debug && append-cppflags -DCOIN_DEBUG=1
+
+   local mycmakeargs=(
+   -DCMAKE_INSTALL_DOCDIR="${EPREFIX}/usr/share/doc/${PF}"
+   -DCOIN_BUILD_DOCUMENTATION=$(usex doc)
+   -DCOIN_BUILD_SHARED_LIBS=ON
+   -DCOIN_BUILD_SINGLE_LIB=ON
+   -DCOIN_BUILD_TESTS=$(usex test)
+   -DCOIN_HAVE_JAVASCRIPT=$(usex javascript)
+   -DCOIN_MULTIPLE_VERSION=OFF
+   -DCOIN_QT_HELP=$(usex doc)
+   -DCOIN_THREADSAFE=$(usex threads)
+   -DCOIN_VERBOSE=$(usex debug)
+   -DHAVE_3DS_IMPORT_CAPABILITIES=ON
+   -DHAVE_DRAGGERS=ON
+   -DHAVE_MAN=OFF
+   -DHAVE_MANIPULATORS=ON
+   -DHAVE_NODEKITS=ON
+   -DHAVE_SOUND=$(usex openal)
+   -DHAVE_VRML97=ON
+   -DSIMAGE_RUNTIME_LINKING=OFF
+   -DUSE_EXTERNAL_EXPAT=ON
+   )
+
+   cmake-utils_src_configure
+}
+
+src_test() {
+   pushd "${BUILD_DIR}/testsuite" > /dev/null || die
+   ./CoinTests || die "Tests failed."
+   popd > /dev/null || die
+}

diff --git a/media-libs/coin/files/coin-4.0.0a-gcc-7.patch 
b/media-libs/coin/files/coin-4.0.0a-gcc-7.patch
new file mode 100644
index 000..89829b59b27
--- /dev/null
+++ b/media-libs/coin/files/coin-4.0.0a-gcc-7.patch
@@ -0,0 +1,21 @@
+diff -ruN Coin3D-coin-8d1ca1a6ea23/src/3ds/SoStream.cpp my/src/3ds/SoStream.cpp
+--- Coin3D-coin-8d1ca1a6ea23/src/3ds/SoStream.cpp  2018-04-16 
23:14:36.0 +0200
 my/src/3ds/SoStream.cpp2018-05-06 06:56:42.104728484 +0200
+@@ -185,7 +185,7 @@
+   if (!gotNum) { setBadBit(); return FALSE; } \
+  \
+   char *ce; \
+-  *s = '\0'; \
++  *s = NULL; \
+   _convertType_ tempVal = _convertFunc_(buf, &ce, 0); \
+  \
+   if (ce != s) \
+@@ -282,7 +282,7 @@
+ gotAll: \
+   \
+   char *ce; \
+-  *s = '\0'; \
++  *s = NULL; \
+   double tempVal = _convertFunc_(buf, &ce); \
+  \
+

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

2018-05-06 Thread Andreas Sturmlechner
commit: ff47b5781a536f0cc534531177fd5d8a4f357947
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 07:42:50 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 07:42:50 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ff47b578

media-sound/amarok: Remove test support, dev-cpp/gmock is gone

Gentoo commit: aa89b1449bc88fc12783fea969cf5fe761d3498c
Upstream commit: f4a0e027b358c7a64d2065e8f22cec45c607afde

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 media-sound/amarok/amarok-.ebuild | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/media-sound/amarok/amarok-.ebuild 
b/media-sound/amarok/amarok-.ebuild
index c7e76ed391..223a0ded30 100644
--- a/media-sound/amarok/amarok-.ebuild
+++ b/media-sound/amarok/amarok-.ebuild
@@ -4,9 +4,6 @@
 EAPI=6
 
 KDE_HANDBOOK="true"
-KDE_TEST="true"
-VIRTUALX_REQUIRED="test"
-VIRTUALDBUS_TEST="true"
 inherit flag-o-matic kde5 pax-utils
 
 DESCRIPTION="Advanced audio player based on KDE frameworks"
@@ -15,10 +12,6 @@ HOMEPAGE="https://amarok.kde.org/";
 LICENSE="GPL-2"
 IUSE="+embedded ffmpeg ipod lastfm mtp ofa podcast wikipedia"
 
-if [[ ${KDE_BUILD_TYPE} == live ]]; then
-   RESTRICT="test"
-fi
-
 # ipod requires gdk enabled and also gtk compiled in libgpod
 COMMONDEPEND="
$(add_frameworks_dep karchive)
@@ -80,7 +73,6 @@ COMMONDEPEND="
 "
 DEPEND="${COMMONDEPEND}
virtual/pkgconfig
-   test? ( dev-cpp/gmock )
 "
 RDEPEND="${COMMONDEPEND}
!media-sound/amarok:4
@@ -94,6 +86,7 @@ src_configure() {
-DWITH_MP3Tunes=OFF
-DWITH_PLAYER=ON
-DWITH_UTILITIES=ON
+   -DCMAKE_DISABLE_FIND_PACKAGE_Googlemock=ON
-DWITH_MYSQL_EMBEDDED=$(usex embedded)
$(cmake-utils_use_find_package ffmpeg FFmpeg)
-DWITH_IPOD=$(usex ipod)



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

2018-05-06 Thread Hans de Graaff
commit: 352cbf742bee6834b8b0b0133e538920b6ac0aa9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 08:08:35 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=352cbf74

www-apps/jekyll-watch: add ruby24

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/jekyll-watch/jekyll-watch-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/jekyll-watch/jekyll-watch-1.5.1.ebuild 
b/www-apps/jekyll-watch/jekyll-watch-1.5.1.ebuild
index d6319e7d00b..3468c5c4a5e 100644
--- a/www-apps/jekyll-watch/jekyll-watch-1.5.1.ebuild
+++ b/www-apps/jekyll-watch/jekyll-watch-1.5.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23"
+USE_RUBY="ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_TASK_DOC=""



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

2018-05-06 Thread Hans de Graaff
commit: 48f6d02c9b70c95c994a57e46819a51e2db0c72e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 08:12:21 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48f6d02c

www-apps/jekyll-sitemap: add 0.13.0

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/jekyll-sitemap/Manifest   |  1 +
 .../jekyll-sitemap/jekyll-sitemap-0.13.0.ebuild| 23 ++
 2 files changed, 24 insertions(+)

diff --git a/www-apps/jekyll-sitemap/Manifest b/www-apps/jekyll-sitemap/Manifest
index 95bb7143d90..2587963be7a 100644
--- a/www-apps/jekyll-sitemap/Manifest
+++ b/www-apps/jekyll-sitemap/Manifest
@@ -1 +1,2 @@
 DIST jekyll-sitemap-0.11.0.tar.gz 64238 BLAKE2B 
eb3226d344972c82d328faf4149886d760bf240da1be36b878c9e9334a30b4b75954c0ea35acfe1d3fc0e638630376287ffe4c37dcbdbdd198632f280ff2959e
 SHA512 
ba1bb162586b8383b1ede68e86cec73db023400586e373572aa8e7c3e26ef1024d313ce59aa1f7711b2b34ba08220be99d5bfeb0ea804e1a1091c0953f8de095
+DIST jekyll-sitemap-0.13.0.tar.gz 65036 BLAKE2B 
88477a9c1ee57975927e9b2a6044322d2c838eb3beded1263158ce4574fbc524453763c55026f88039746e77cbb7ff169dc2601fd0cb65f67d60a4a4252ec040
 SHA512 
97966c37c7126ac8d9d51069c8d5c448523fa06a7b2136baa1742495e21c76d0264a145e72896b4843111f519a9ddb4d7eab35bc1ea0130a3a77c3ff59066364

diff --git a/www-apps/jekyll-sitemap/jekyll-sitemap-0.13.0.ebuild 
b/www-apps/jekyll-sitemap/jekyll-sitemap-0.13.0.ebuild
new file mode 100644
index 000..9c4ccade8b4
--- /dev/null
+++ b/www-apps/jekyll-sitemap/jekyll-sitemap-0.13.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+USE_RUBY="ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md History.markdown"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Automatically generate a sitemap.xml for your Jekyll site"
+HOMEPAGE="https://github.com/jekyll/jekyll-sitemap";
+SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_bdepend "test? ( >=www-apps/jekyll-2 )"
+ruby_add_rdepend ">=dev-ruby/addressable-2.4.0"



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

2018-05-06 Thread Hans de Graaff
commit: 3ddf3401bee71ddf157c4789fe14a28926031166
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 07:09:47 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ddf3401

dev-ruby/classifier-reborn: add ruby25, missing test dependency on 
dev-ruby/redis

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/classifier-reborn/classifier-reborn-2.2.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/classifier-reborn/classifier-reborn-2.2.0.ebuild 
b/dev-ruby/classifier-reborn/classifier-reborn-2.2.0.ebuild
index fbe7ad40220..a4930c294bb 100644
--- a/dev-ruby/classifier-reborn/classifier-reborn-2.2.0.ebuild
+++ b/dev-ruby/classifier-reborn/classifier-reborn-2.2.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="README.markdown"
@@ -21,6 +21,7 @@ IUSE="gsl test"
 ruby_add_rdepend ">=dev-ruby/fast-stemmer-1.0.0
!!dev-ruby/classifier
gsl? ( dev-ruby/rb-gsl )"
+ruby_add_bdepend "test? ( dev-ruby/redis )"
 
 all_ruby_prepare() {
sed -i -e "/[Bb]undler/d" Rakefile || die



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

2018-05-06 Thread Hans de Graaff
commit: cedf6e33d2647310e8fb5c7eded39091e63a02a8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 08:08:57 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cedf6e33

www-apps/jekyll-coffeescript: add ruby24

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/jekyll-coffeescript/jekyll-coffeescript-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/jekyll-coffeescript/jekyll-coffeescript-1.1.1.ebuild 
b/www-apps/jekyll-coffeescript/jekyll-coffeescript-1.1.1.ebuild
index 456e51255cd..2b29cafc7ab 100644
--- a/www-apps/jekyll-coffeescript/jekyll-coffeescript-1.1.1.ebuild
+++ b/www-apps/jekyll-coffeescript/jekyll-coffeescript-1.1.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23"
+USE_RUBY="ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 RUBY_FAKEGEM_EXTRADOC="README.md History.markdown"



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

2018-05-06 Thread Hans de Graaff
commit: 7144ce91319e988b988efaeff7623dfdd5f3c9f7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 08:13:43 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7144ce91

www-apps/jekyll: add 3.6.2

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/jekyll/Manifest|  1 +
 www-apps/jekyll/jekyll-3.6.2.ebuild | 79 +
 2 files changed, 80 insertions(+)

diff --git a/www-apps/jekyll/Manifest b/www-apps/jekyll/Manifest
index 40d85bf366c..b8aebb934d4 100644
--- a/www-apps/jekyll/Manifest
+++ b/www-apps/jekyll/Manifest
@@ -1 +1,2 @@
 DIST jekyll-3.6.0.tar.gz 737199 BLAKE2B 
b823d794c5f4e0fb78276d2af28821a7ac67b13159832cbda3a691ad0f9e32c2228da1dde22a0ee33890ffb8384ac6d92adbb7b47629f98dda1d92024488475a
 SHA512 
87c17c31cda44d040308079aacbcdba1e704186a69d64c1240a44960f7a79e74b35bb230be7c14419bb89843cfbf48ecf3601a8018df2255deebc0afdb4fcd86
+DIST jekyll-3.6.2.tar.gz 740389 BLAKE2B 
c51e8b1545bfd1bab64c890fdf8d53087e27b3ba2fac07d286d009f1c4b6efb81d3528d239f73a73afa68d1f2d320e816c7015bf385dc9e27cad13d1b4279a50
 SHA512 
3af17f32098bf1012393d0ad47269ef305138553735ede9c65e461c8f1e1033008a01805c8c96f9aa0f4682f7e68a9cff3eda83a70660a334161ec3d04ce9c72

diff --git a/www-apps/jekyll/jekyll-3.6.2.ebuild 
b/www-apps/jekyll/jekyll-3.6.2.ebuild
new file mode 100644
index 000..2479d9e1842
--- /dev/null
+++ b/www-apps/jekyll/jekyll-3.6.2.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24"
+
+inherit ruby-fakegem
+
+RUBY_FAKEGEM_EXTRADOC="README.markdown History.markdown"
+RUBY_FAKEGEM_EXTRAINSTALL="features"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+RUBY_FAKEGEM_BINDIR="exe"
+
+DESCRIPTION="A simple, blog aware, static site generator"
+HOMEPAGE="http://jekyllrb.com https://github.com/jekyll/jekyll";
+SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz  -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+ruby_add_rdepend "
+   >=dev-ruby/addressable-2.4
+   >=dev-ruby/colorator-1.0
+   >=dev-ruby/kramdown-1.14
+   >=dev-ruby/liquid-4.0:4
+   >=dev-ruby/mercenary-0.3.3
+   >=dev-ruby/pathutil-0.9
+   >=dev-ruby/safe_yaml-1.0
+   >=dev-ruby/rouge-1.7:0
+   >=www-apps/jekyll-sass-converter-1.0
+   >=www-apps/jekyll-watch-1.1
+"
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/classifier-reborn-2.1.0
+   dev-ruby/launchy
+   >=dev-ruby/pygments_rb-0.6.0
+   >=dev-ruby/rdiscount-2.0
+   >=dev-ruby/redcarpet-3.2.3
+   dev-ruby/rspec-mocks
+   >=dev-ruby/shoulda-3
+   dev-ruby/test-unit:2
+   www-apps/jekyll-coffeescript
+   )
+"
+
+all_ruby_prepare() {
+   eapply "${FILESDIR}"/jekyll-3.6.0-test-helper.patch
+
+   # Drop tests requiring bundler
+   sed -i -e '/bundle_message/d' test/test_new_command.rb || die
+   rm test/test_plugin_manager.rb || die
+
+   # Replace git command in gemspec
+   sed -i 's/git ls-files -z/find -not -type d -print0/' 
$RUBY_FAKEGEM_GEMSPEC || die
+
+   # FIXMEs:
+   # fails to find fixtures
+   rm test/test_theme.rb || die
+   rm test/test_theme_assets_reader.rb || die
+   sed -i -e '/^should.*theme/,/^end$/d' \
+   -e '/^  should.*theme/,/^  end$/d' test/test_site.rb || 
die
+   # partially requires 'toml'
+   rm test/test_configuration.rb || die
+   # pygments tests fail because of line numbering
+   sed -i -e '/^  context.*pygments/,/^  end$/d' test/test_tags.rb || die
+   sed -i -e '/^context.*pygments/,/^end$/d' 
test/test_redcarpet.rb || die
+}
+
+src_test() {
+   local -x JEKYLL_NO_BUNDLER_REQUIRE=true
+
+   ruby-ng_src_test
+}



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

2018-05-06 Thread Hans de Graaff
commit: 077653ff920da78528c864eb27e7cc8c0ead0590
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 06:46:42 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077653ff

www-apps/redmine: add ruby24

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/redmine/redmine-3.4.4.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/www-apps/redmine/redmine-3.4.4.ebuild 
b/www-apps/redmine/redmine-3.4.4.ebuild
index c3b226cd21c..c914e4add20 100644
--- a/www-apps/redmine/redmine-3.4.4.ebuild
+++ b/www-apps/redmine/redmine-3.4.4.ebuild
@@ -2,8 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-# ruby24 don't have required deps
-USE_RUBY="ruby22 ruby23"
+USE_RUBY="ruby23 ruby24"
 inherit eutils depend.apache ruby-ng user
 
 DESCRIPTION="Flexible project management web application using the Ruby on 
Rails framework"



[gentoo-commits] repo/gentoo:master commit in: www-apps/jekyll-sass-converter/

2018-05-06 Thread Hans de Graaff
commit: 95dca23ee1fa2251dd46bd18b9cd39de4f147b8b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 08:08:15 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95dca23e

www-apps/jekyll-sass-converter: add ruby24

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/jekyll-sass-converter/jekyll-sass-converter-1.5.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/jekyll-sass-converter/jekyll-sass-converter-1.5.0.ebuild 
b/www-apps/jekyll-sass-converter/jekyll-sass-converter-1.5.0.ebuild
index c1ab15057cc..0a2f36d2c85 100644
--- a/www-apps/jekyll-sass-converter/jekyll-sass-converter-1.5.0.ebuild
+++ b/www-apps/jekyll-sass-converter/jekyll-sass-converter-1.5.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby22 ruby23"
+USE_RUBY="ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_TASK_DOC=""



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

2018-05-06 Thread Hans de Graaff
commit: ad1c3d057cfccc019a46407f9b7289716a56e2f1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 08:04:20 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad1c3d05

dev-ruby/mercenary: add ruby25

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/mercenary/mercenary-0.3.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/mercenary/mercenary-0.3.6.ebuild 
b/dev-ruby/mercenary/mercenary-0.3.6.ebuild
index e6edc72bc78..5a91e95a75e 100644
--- a/dev-ruby/mercenary/mercenary-0.3.6.ebuild
+++ b/dev-ruby/mercenary/mercenary-0.3.6.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_EXTRADOC="History.markdown README.md"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2018-05-06 Thread Hans de Graaff
commit: 16f266ae0e465794ac7d25de39afc6f33fac321a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 08:07:47 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16f266ae

www-apps/jekyll: add ruby24

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/jekyll/jekyll-3.6.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/jekyll/jekyll-3.6.0.ebuild 
b/www-apps/jekyll/jekyll-3.6.0.ebuild
index f0c36c2a9a3..2479d9e1842 100644
--- a/www-apps/jekyll/jekyll-3.6.0.ebuild
+++ b/www-apps/jekyll/jekyll-3.6.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby22 ruby23"
+USE_RUBY="ruby23 ruby24"
 
 inherit ruby-fakegem
 



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

2018-05-06 Thread Hans de Graaff
commit: 46cd8eb8447bd06c24d803cf12ee1afbff686043
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 08:11:00 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46cd8eb8

www-apps/jekyll-sitemap: add ruby24

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/jekyll-sitemap/jekyll-sitemap-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/jekyll-sitemap/jekyll-sitemap-0.11.0.ebuild 
b/www-apps/jekyll-sitemap/jekyll-sitemap-0.11.0.ebuild
index ac5b7cd2617..9c4ccade8b4 100644
--- a/www-apps/jekyll-sitemap/jekyll-sitemap-0.11.0.ebuild
+++ b/www-apps/jekyll-sitemap/jekyll-sitemap-0.11.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby22 ruby23"
+USE_RUBY="ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_TASK_DOC=""



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

2018-05-06 Thread Hans de Graaff
commit: acb50986f5211d888e1cd15b99971156a649d058
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun May  6 06:49:18 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun May  6 08:14:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acb50986

www-apps/jekyll-watch: add 1.5.1

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/jekyll-watch/Manifest  |  1 +
 www-apps/jekyll-watch/jekyll-watch-1.5.1.ebuild | 27 +
 2 files changed, 28 insertions(+)

diff --git a/www-apps/jekyll-watch/Manifest b/www-apps/jekyll-watch/Manifest
index 1b2ad3a5386..f7cce1ab475 100644
--- a/www-apps/jekyll-watch/Manifest
+++ b/www-apps/jekyll-watch/Manifest
@@ -1 +1,2 @@
 DIST jekyll-watch-1.5.0.tar.gz 15076 BLAKE2B 
1270f309fed8e4aff6712fdad1554b9ed6e4d0936512c8c80a6b1d77977411fd74c099d361a7c7a3ce785e794beeca7d865e17f9fa25f0b4d889e861614b5c8b
 SHA512 
98c9df7f92c214b0047cf266e06c48350615836af3b7ea69e1f77b10d26e4ed441fdbbdc16e557ef2293fe5ab1314ed71bb3e0e65e3f1ad4c4224f71e1255c95
+DIST jekyll-watch-1.5.1.tar.gz 14764 BLAKE2B 
fcb0e80060e65e85e0047d54f6277cf5e31ec8347c2c960e15c00d74b7dc255bb8cd1fea3671e2ecc7d380227bdae7cf62d835a5dc1b249aa68ca8f0ed9a1f34
 SHA512 
05e7f89f213adf6695a8bd1f8ff25d7aa6338cc378a934981f1112df556380cc40d2352ea4ce0a362c4d8e51ed8a6e36ca96c86385a6f179347031396db94a54

diff --git a/www-apps/jekyll-watch/jekyll-watch-1.5.1.ebuild 
b/www-apps/jekyll-watch/jekyll-watch-1.5.1.ebuild
new file mode 100644
index 000..d6319e7d00b
--- /dev/null
+++ b/www-apps/jekyll-watch/jekyll-watch-1.5.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md History.markdown"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Rebuild your Jekyll site when a file changes with the --watch 
switch"
+HOMEPAGE="https://github.com/jekyll/jekyll-watch";
+SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/listen-3.0"
+ruby_add_bdepend "test? ( >=www-apps/jekyll-2 )"
+
+all_ruby_prepare() {
+   rm Rakefile || die
+}



[gentoo-commits] repo/gentoo:master commit in: games-engines/scummvm/files/, games-engines/scummvm/

2018-05-06 Thread Lars Wendler
commit: fdf3034423cf76c8a4ee2fc1abfc30aa539bd3dc
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun May  6 08:29:21 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun May  6 08:29:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdf30344

games-engines/scummvm: Added experimental freetype_pkgconfig patch

Bug: https://bugs.gentoo.org/655032
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 .../files/scummvm-2.0.0-freetype_pkgconfig.patch   | 50 ++
 games-engines/scummvm/scummvm-2.0.0.ebuild |  6 ++-
 2 files changed, 54 insertions(+), 2 deletions(-)

diff --git a/games-engines/scummvm/files/scummvm-2.0.0-freetype_pkgconfig.patch 
b/games-engines/scummvm/files/scummvm-2.0.0-freetype_pkgconfig.patch
new file mode 100644
index 000..669cffc945c
--- /dev/null
+++ b/games-engines/scummvm/files/scummvm-2.0.0-freetype_pkgconfig.patch
@@ -0,0 +1,50 @@
+From 86c7fd67e5ab2e721de8493d162d7605b1b08823 Mon Sep 17 00:00:00 2001
+From: Lars Wendler 
+Date: Sun, 6 May 2018 10:22:48 +0200
+Subject: [PATCH] Use pkg-config to find freetype if freetype-config is not
+ available
+
+---
+ configure | 17 +++--
+ 1 file changed, 11 insertions(+), 6 deletions(-)
+
+diff --git a/configure b/configure
+index 8e2a387acc..e3c15a9a2a 100755
+--- a/configure
 b/configure
+@@ -4674,7 +4674,13 @@ if test "$_freetype2" != "no"; then
+   find_freetypeconfig
+ 
+   if test -z "$_freetypeconfig"; then
+-  _freetype2=no
++  if pkg-config --exists freetype2; then
++  FREETYPE2_LIBS=`pkg-config --libs freetype2`
++  FREETYPE2_CFLAGS=`pkg-config --cflags freetype2`
++  _freetype2=yes
++  else
++  _freetype2=no
++  fi
+   else
+   # Since 2.3.12, freetype-config prepends $SYSROOT to everything.
+   # This means we can't pass it a --prefix that includes $SYSROOT.
+@@ -4714,13 +4720,12 @@ EOF
+   fi
+   cc_check_clean
+   fi
+-
+-  if test "$_freetype2" = "yes"; then
+-  append_var LIBS "$FREETYPE2_LIBS"
+-  append_var INCLUDES "$FREETYPE2_CFLAGS"
+-  fi
+   fi
+ 
++  if test "$_freetype2" = "yes"; then
++  append_var LIBS "$FREETYPE2_LIBS"
++  append_var INCLUDES "$FREETYPE2_CFLAGS"
++  fi
+ fi
+ 
+ echocheck "FreeType2"
+-- 
+2.17.0
+

diff --git a/games-engines/scummvm/scummvm-2.0.0.ebuild 
b/games-engines/scummvm/scummvm-2.0.0.ebuild
index 4f775bc1705..0df104f23aa 100644
--- a/games-engines/scummvm/scummvm-2.0.0.ebuild
+++ b/games-engines/scummvm/scummvm-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -32,7 +32,9 @@ DEPEND="${RDEPEND}
app-arch/xz-utils
x86? ( dev-lang/nasm )"
 
-S=${WORKDIR}/${P/_/}
+S="${WORKDIR}/${P/_/}"
+
+PATCHES=( "${FILESDIR}/${PN}-2.0.0-freetype_pkgconfig.patch" )
 
 src_prepare() {
default



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

2018-05-06 Thread Andreas Sturmlechner
commit: 394911b3241332aa715b774da8443acde2a0c487
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 08:35:52 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 08:35:52 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=394911b3

kde-plasma/kactivitymanagerd: Cleanup old blocker

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild 
b/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild
index 5a98552b83..68bf9b32bc 100644
--- a/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild
+++ b/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild
@@ -31,5 +31,4 @@ DEPEND="${COMMON_DEPEND}
 RDEPEND="${COMMON_DEPEND}
!

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

2018-05-06 Thread Andreas Sturmlechner
commit: ba195d9392666e8869908e946e0029d61ad95a19
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 08:37:18 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 08:37:18 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ba195d93

kde-plasma/kactivitymanagerd: Add new DEPEND

Upstream commit 27aef2a104d7a8e6d069be1ddd715e76dd938d74
Thanks-to: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild 
b/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild
index 003c903227..d8b145b060 100644
--- a/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild
+++ b/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild
@@ -13,6 +13,7 @@ IUSE=""
 COMMON_DEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep ki18n)



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

2018-05-06 Thread Andreas Sturmlechner
commit: 31b0445d0bfaca4a63ef62af52ea61e28858cae1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 08:43:08 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 08:43:08 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=31b0445d

kde-plasma/plasma-vault: Make sys-fs/cryfs default again

Upstream commit d2b6443fa6e3b36d1720dbb5916fbf4628fffcfd
Thanks-to: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 kde-plasma/plasma-vault/plasma-vault-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-vault/plasma-vault-.ebuild 
b/kde-plasma/plasma-vault/plasma-vault-.ebuild
index 8ab9dd3143..bb599b37a4 100644
--- a/kde-plasma/plasma-vault/plasma-vault-.ebuild
+++ b/kde-plasma/plasma-vault/plasma-vault-.ebuild
@@ -30,5 +30,5 @@ DEPEND="
$(add_qt_dep qtwidgets)
 "
 RDEPEND="${DEPEND}
-   || ( >=sys-fs/encfs-1.9.2 sys-fs/cryfs )
+   || ( >=sys-fs/cryfs-0.9.9 >=sys-fs/encfs-1.9.2 )
 "



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

2018-05-06 Thread Andreas Sturmlechner
commit: 9f45717a018e1ec2174d0a60e23485a68a08c018
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 08:36:17 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 08:36:17 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9f45717a

kde-plasma/kactivitymanagerd: Drop ancient boost min version

Not a thing for >2 years.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild 
b/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild
index 68bf9b32bc..003c903227 100644
--- a/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild
+++ b/kde-plasma/kactivitymanagerd/kactivitymanagerd-.ebuild
@@ -26,7 +26,7 @@ COMMON_DEPEND="
$(add_qt_dep qtwidgets)
 "
 DEPEND="${COMMON_DEPEND}
-   >=dev-libs/boost-1.54
+   dev-libs/boost
 "
 RDEPEND="${COMMON_DEPEND}
!

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

2018-05-06 Thread Andreas Sturmlechner
commit: 11b1019a8dc68c64884beee17765610d2a25127d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 08:39:33 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 08:39:33 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=11b1019a

kde-plasma/kdeplasma-addons: Add new DEPENDs

Upstream commit 0b3312f0ade38e6125b48bc210c18bc8c7eb5b9f
Thanks-to: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 kde-plasma/kdeplasma-addons/kdeplasma-addons-.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/kde-plasma/kdeplasma-addons/kdeplasma-addons-.ebuild 
b/kde-plasma/kdeplasma-addons/kdeplasma-addons-.ebuild
index 91e8424dae..4875f2c5c2 100644
--- a/kde-plasma/kdeplasma-addons/kdeplasma-addons-.ebuild
+++ b/kde-plasma/kdeplasma-addons/kdeplasma-addons-.ebuild
@@ -17,6 +17,8 @@ DEPEND="
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdeclarative)
+   $(add_frameworks_dep kholidays)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)



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

2018-05-06 Thread Andreas Sturmlechner
commit: 630b6aabae6b14e4d97898cb1af26162bf49d7c3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 08:54:44 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 08:54:44 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=630b6aab

kde-plasma/kwin: Cleanup old blocker

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 kde-plasma/kwin/kwin-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-plasma/kwin/kwin-.ebuild b/kde-plasma/kwin/kwin-.ebuild
index 6669e376f6..4f708d8b42 100644
--- a/kde-plasma/kwin/kwin-.ebuild
+++ b/kde-plasma/kwin/kwin-.ebuild
@@ -73,7 +73,6 @@ RDEPEND="${COMMON_DEPEND}
$(add_plasma_dep kde-cli-tools)
$(add_qt_dep qtvirtualkeyboard)
multimedia? ( $(add_qt_dep qtmultimedia 'gstreamer,qml') )
-   !

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

2018-05-06 Thread Andreas Sturmlechner
commit: 4189a2fa99857cd488b5da63a9a04eb65df619d8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 08:54:14 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 08:54:14 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4189a2fa

kde-apps/messagelib: Cleanup obsolete blocker

Package-Manager: Portage-2.3.36, Repoman-2.3.9

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

diff --git a/kde-apps/messagelib/messagelib-.ebuild 
b/kde-apps/messagelib/messagelib-.ebuild
index 8eb90f5124..4b2950a8da 100644
--- a/kde-apps/messagelib/messagelib-.ebuild
+++ b/kde-apps/messagelib/messagelib-.ebuild
@@ -60,7 +60,6 @@ DEPEND="
>=dev-libs/grantlee-5.1.0:5
 "
 RDEPEND="${DEPEND}
-   !

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

2018-05-06 Thread Andreas Sturmlechner
commit: a8830137b5db7be43f01d8dd4b5390f4122e9b6a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 08:54:52 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 08:54:52 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a8830137

kde-plasma/plasma-workspace-wallpapers: Cleanup old blocker

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 .../plasma-workspace-wallpapers/plasma-workspace-wallpapers-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-.ebuild
 
b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-.ebuild
index ef0395c9ed..0396fe9404 100644
--- 
a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-.ebuild
+++ 
b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-.ebuild
@@ -15,4 +15,4 @@ DEPEND="
$(add_frameworks_dep extra-cmake-modules)
$(add_qt_dep qtcore)
 "
-RDEPEND="!

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

2018-05-06 Thread Maciej Mrozowski
commit: 3737f9dad8eda60652e47774d079679ed915f828
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Sun May  6 09:10:43 2018 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Sun May  6 09:13:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3737f9da

profiles/package.mask: Mask beta snapshots of simage/coin due to finicky beta 
snapshot of SoQt

 profiles/package.mask | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 56dafd52568..25007b5751d 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Maciej Mrozowski  (6 May 2018)
+# SoQt does not build yet
+>=media-libs/coin-4.0.0
+>=media-libs/simage-1.7.1
+
 # Mikle Kolyada  (4 May 2018)
 # Upstream is dead, no maintainer, no longer updated.
 # Masked for removal in 30 days
@@ -332,7 +337,7 @@ media-fonts/fontawesome:0/5
 >=dev-libs/mpfr-4.0.0
 
 # Thomas Beierlein  (23 Dec 2017)
-# To adapt to changed version naming by upstream 
+# To adapt to changed version naming by upstream
 # (pcb-mmdd to pcb-x.y.z) we move the ebuild to
 # pcb-0_pmmdd and mask >=pcb-2000.
 # Do not remove the mask until newer version gets stable
@@ -442,7 +447,7 @@ sys-kernel/hardened-sources
 >=dev-python/ipython-6
 
 # Mats Lidell  (17 Aug 2017)
-# Masked ede and all its dependencies due to security reasons. 
+# Masked ede and all its dependencies due to security reasons.
 # bug #398241
 app-xemacs/ede
 app-xemacs/semantic



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

2018-05-06 Thread Andreas Sturmlechner
commit: ccf4775522529a028a7a62cefc7836fed69d5967
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 09:54:14 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 09:54:30 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ccf47755

dev-libs/appstream: Remove obsolete versionator.eclass

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 dev-libs/appstream/appstream-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-libs/appstream/appstream-.ebuild 
b/dev-libs/appstream/appstream-.ebuild
index 184c0c96b5..96d764b8fe 100644
--- a/dev-libs/appstream/appstream-.ebuild
+++ b/dev-libs/appstream/appstream-.ebuild
@@ -9,7 +9,6 @@ if [[ ${PV} =  ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ximion/${PN}";
 else
-   inherit versionator
MY_PV="$(ver_rs 1- _)"
MY_P="APPSTREAM_${MY_PV}"
SRC_URI="https://github.com/ximion/${PN}/archive/${MY_P}.tar.gz -> 
${P}.tar.gz"



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

2018-05-06 Thread Mikle Kolyada
commit: 11cff990db11cccfdde154aa4fe043867133f079
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 09:56:51 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 09:57:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11cff990

media-gfx/fbgrab: Drop hppa

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-gfx/fbgrab/fbgrab-1.0-r2.ebuild | 4 ++--
 media-gfx/fbgrab/fbgrab-1.3.ebuild| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-gfx/fbgrab/fbgrab-1.0-r2.ebuild 
b/media-gfx/fbgrab/fbgrab-1.0-r2.ebuild
index b4037526a3b..77413c616e0 100644
--- a/media-gfx/fbgrab/fbgrab-1.0-r2.ebuild
+++ b/media-gfx/fbgrab/fbgrab-1.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="http://hem.bredband.net/gmogmo/${PN}/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~ia64 ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND="media-libs/libpng

diff --git a/media-gfx/fbgrab/fbgrab-1.3.ebuild 
b/media-gfx/fbgrab/fbgrab-1.3.ebuild
index acfe7b11d98..0a53b037018 100644
--- a/media-gfx/fbgrab/fbgrab-1.3.ebuild
+++ b/media-gfx/fbgrab/fbgrab-1.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="http://fbgrab.monells.se/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ~ppc64 ~s390 ~sparc x86"
 IUSE=""
 
 RDEPEND="media-libs/libpng:=



[gentoo-commits] repo/gentoo:master commit in: kde-misc/kio-gdrive/

2018-05-06 Thread Andreas Sturmlechner
commit: 6fa7889a3f032030065e17b6addcf459e365d4ef
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 11:10:18 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 11:24:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fa7889a

kde-misc/kio-gdrive: Drop 1.2.2

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 kde-misc/kio-gdrive/Manifest|  1 -
 kde-misc/kio-gdrive/kio-gdrive-1.2.2.ebuild | 46 -
 2 files changed, 47 deletions(-)

diff --git a/kde-misc/kio-gdrive/Manifest b/kde-misc/kio-gdrive/Manifest
index e42b45b0034..1293953e0ab 100644
--- a/kde-misc/kio-gdrive/Manifest
+++ b/kde-misc/kio-gdrive/Manifest
@@ -1,3 +1,2 @@
 DIST kio-gdrive-1.2.1.tar.xz 33820 BLAKE2B 
5f1e4ec09b07b135b49bf887c560ee873eb32e918024899bd4790208e6d1e52957480acc9d5cdfa0d0a003c864cd554bf11b2466d123e4bf804306ea4508ff69
 SHA512 
021612192adc4173d936ee5f16d959db6c2d74aadae0d6dcb25aa1b8f1cd06f650e870d62eb72c9efbd9b581b06a949fcd78f494ec63eaac9ad67b16a0f0ab79
-DIST kio-gdrive-1.2.2.tar.xz 35848 BLAKE2B 
ff7ee944f80cfe535452c04e8bf99b54e37a5383a54c9388940be686de0dc11bb0551609f9396a84367075a346396230e2a1be5b64d792ce144ee9e52def2c7a
 SHA512 
58b5baeb4f44c6d07c4ac019bf2da390310e5366c141ad919cbf09f21a684f808497b2bb7667d5da7a19688e3e2f5c722361d8fcd52fa5387d2d12d7853e2fe6
 DIST kio-gdrive-1.2.3.tar.xz 44176 BLAKE2B 
b1cd14f4c3cf8f14b875543370816c105d5b494a3f0119e2ec1b49610bcde3d67757a7006cb6f5c1f529f9e10500edaf724736d2c3caf62a9be7782fdc50f383
 SHA512 
cd5ec02fa0f0a73a0016957276c07c9435137781da922c6aaa49c8f62c43dce9a5107cdd80acbf40d49ab88bf96a2a6ed43138678c8cd9accd472b6eb428203f

diff --git a/kde-misc/kio-gdrive/kio-gdrive-1.2.2.ebuild 
b/kde-misc/kio-gdrive/kio-gdrive-1.2.2.ebuild
deleted file mode 100644
index 774e9ad3b50..000
--- a/kde-misc/kio-gdrive/kio-gdrive-1.2.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="optional"
-inherit kde5
-
-DESCRIPTION="KIO Slave for Google Drive service"
-HOMEPAGE="https://phabricator.kde.org/project/profile/72/";
-
-if [[ ${KDE_BUILD_TYPE} != live ]] ; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-IUSE="+kaccounts"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knotifications)
-   $(add_kdeapps_dep libkgapi)
-   $(add_qt_dep qtwidgets)
-   kaccounts? ( $(add_kdeapps_dep kaccounts-integration) )
-   !kaccounts? ( dev-libs/qtkeychain:=[qt5(+)] )
-"
-DEPEND="${COMMON_DEPEND}
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   dev-util/intltool
-"
-RDEPEND="${COMMON_DEPEND}
-   kaccounts? ( $(add_kdeapps_dep kaccounts-providers) )
-"
-
-DOCS=( README.md )
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package kaccounts KAccounts)
-   )
-   kde5_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/telepathy-logger-qt/

2018-05-06 Thread Andreas Sturmlechner
commit: af2e92a5b4ede240d9161b16d22891fe96c747c8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 11:20:31 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 11:24:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af2e92a5

net-libs/telepathy-logger-qt: Drop old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-libs/telepathy-logger-qt/Manifest  |  1 -
 .../telepathy-logger-qt-15.04.0.ebuild | 36 --
 2 files changed, 37 deletions(-)

diff --git a/net-libs/telepathy-logger-qt/Manifest 
b/net-libs/telepathy-logger-qt/Manifest
index 4949be83f00..d77b7de11ba 100644
--- a/net-libs/telepathy-logger-qt/Manifest
+++ b/net-libs/telepathy-logger-qt/Manifest
@@ -1,2 +1 @@
-DIST telepathy-logger-qt-15.04.0.tar.xz 94408 BLAKE2B 
64cbdfef7cda5375dab03721d6a757a2716150cc8e2243eb7aca3717202cb21f4969b2e0764b86433b9e80f31702313d52d407812cf1a2b3e3c609f8f162245c
 SHA512 
e8fc989f5ebfdee9e30cba709ff66ebfe1385e5cb8707feb3ee585f23637fdcfa7eb4a39fd7cbeca5ca633cc88188905e4995422fcaa9b0b998ab78800d5e7b7
 DIST telepathy-logger-qt-17.08.0.tar.xz 94184 BLAKE2B 
ead0598c1f2f2786e026af15ef1424347b9ec9ac7d78b1e90943a8e39db1833f76353b9b9c767470fcbf635438fbcbcc52c9b969318341128f66b8b9ad5eb14a
 SHA512 
1768509b61d83cdd39adf8abd74f71d0c9ae757411e08017c6788fe50962b57768a8fdc9fbba75f5968bb22849ff619e790323806d29ae63066e41cc5f22c366

diff --git a/net-libs/telepathy-logger-qt/telepathy-logger-qt-15.04.0.ebuild 
b/net-libs/telepathy-logger-qt/telepathy-logger-qt-15.04.0.ebuild
deleted file mode 100644
index 3fcd609b29e..000
--- a/net-libs/telepathy-logger-qt/telepathy-logger-qt-15.04.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit kde5 python-any-r1
-
-DESCRIPTION="Qt bindings for the Telepathy logger"
-HOMEPAGE="https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt";
-
-if [[ ${KDE_BUILD_TYPE} = live ]]; then
-   KEYWORDS=""
-else
-   
SRC_URI="mirror://kde/stable/telepathy-logger-qt/${PV%.*}/src/${P}.tar.xz"
-   KEYWORDS="amd64 x86"
-fi
-
-LICENSE="LGPL-2.1"
-IUSE=""
-
-RDEPEND="
-   $(add_qt_dep qtdbus)
-   dev-libs/dbus-glib
-   dev-libs/glib:2
-   dev-libs/libxml2
-   net-im/telepathy-logger
-   net-libs/telepathy-glib
-   net-libs/telepathy-qt[qt5(+)]
-   sys-apps/dbus
-"
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}
-"
-
-PATCHES=( "${FILESDIR}/${P}-cmake-3.9.patch" )



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

2018-05-06 Thread Andreas Sturmlechner
commit: a0be43c2513e19b56ac92185b008b5c652efeb2f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 11:21:38 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 11:24:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0be43c2

net-libs/libmediawiki: Drop old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-libs/libmediawiki/Manifest |  1 -
 .../libmediawiki-5.0.0_pre20170128.ebuild  | 24 --
 2 files changed, 25 deletions(-)

diff --git a/net-libs/libmediawiki/Manifest b/net-libs/libmediawiki/Manifest
index d06b3f90887..405050055c7 100644
--- a/net-libs/libmediawiki/Manifest
+++ b/net-libs/libmediawiki/Manifest
@@ -1,2 +1 @@
-DIST libmediawiki-5.0.0_pre20170128.tar.xz 54888 BLAKE2B 
ec048f6ef2d2f1529e0f3f3f0eb976adbd39fa261020f03330eb4e4772024e40aa0aac299a2b2c8f6ad054443358294bfe96f072b95cb7679ccbfccfb8b81b12
 SHA512 
325cb89939e56698a805c63226ca6bf6abc8a673f11a7aaafb5e698f3c1f4014e29c2fb96e7ef6c84cffa7668835c41dfeb4c61b8fbdefe273d54751da87ca01
 DIST libmediawiki-5.37.0.tar.xz 55188 BLAKE2B 
d04ea7dc346792c49009b382fd774ad9573e70cb52599caa57ac3f0dcfac93c0569a42cc54e11ba185e80fc2a5847d6a6f6c81adda9907c87dd3f7459771da3c
 SHA512 
5efcd30782c8d54cddad51c6a96065f2942529e89facfd1c3a71af343a898858db02fa95dd0af0161b3e13aee6a9a373a0a641ce64e128c7282cbf3770db6993

diff --git a/net-libs/libmediawiki/libmediawiki-5.0.0_pre20170128.ebuild 
b/net-libs/libmediawiki/libmediawiki-5.0.0_pre20170128.ebuild
deleted file mode 100644
index 3e3b647504c..000
--- a/net-libs/libmediawiki/libmediawiki-5.0.0_pre20170128.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit kde5
-
-DESCRIPTION="C++ interface for MediaWiki based web service as wikipedia.org"
-HOMEPAGE="https://www.digikam.org/";
-SRC_URI="https://dev.gentoo.org/~asturm/${P}.tar.xz";
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-   $(add_frameworks_dep kcoreaddons)
-   $(add_qt_dep qtnetwork)
-"
-RDEPEND="${DEPEND}
-   !net-libs/libmediawiki:4
-"
-
-PATCHES=( "${FILESDIR}/${P}-tests-optional.patch" )



[gentoo-commits] repo/gentoo:master commit in: kde-misc/kshutdown/

2018-05-06 Thread Andreas Sturmlechner
commit: 4e97d861e3bf42a47cc3f2958889be78fc642197
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 11:05:08 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 11:24:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e97d861

kde-misc/kshutdown: Drop 4.1.1_beta

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 kde-misc/kshutdown/Manifest|  1 -
 kde-misc/kshutdown/kshutdown-4.1.1_beta.ebuild | 55 --
 2 files changed, 56 deletions(-)

diff --git a/kde-misc/kshutdown/Manifest b/kde-misc/kshutdown/Manifest
index 4191a318e4e..8ed7b9ab548 100644
--- a/kde-misc/kshutdown/Manifest
+++ b/kde-misc/kshutdown/Manifest
@@ -1,3 +1,2 @@
 DIST kshutdown-source-4.0.zip 459493 BLAKE2B 
88718dacc682fc44461880767cc874e822e69d25359a5f8f66cec9bd99de7c4bb81173905ca12670788b191593128b325c03935d26757f260fe8d47b9bab768a
 SHA512 
720ca297760bf0442fca10f64e966b16db32a0bdb5a6b456408a7245fba071b9bdb465bee312878b5cf82df0aa1e27566b06fc6fe5026edc3a84d2d8295ea6ee
-DIST kshutdown-source-4.1.1beta.zip 465923 BLAKE2B 
d67d1a1e2b9434bf4c928495148b375619efe5ce4971424b577bced490fa5df29f48e374fa7f133ea8ec3017b60f391dc267a72307e38312c629a864350f629a
 SHA512 
1d4d34e123e6a354b47771a9d79f00f8a5cd54e6886836b92a61925c1cc93090c51d5270c67e3ec53da21d8df9587cb0bc69ad329d17c833bb9dbd39e3138e56
 DIST kshutdown-source-4.2.zip 463140 BLAKE2B 
b398a004e91ebfa7651eed7bfffeccfc1cb332868ff3bbcea50ccd40088084ff1079d73ee2c922c8e882c0d39e1c6bc2741d0b416b5a2742eb5c6686b03f29a5
 SHA512 
00d4a5c1c8efdac0d86009bc0218a673435ca315f3b4fa949af414bf525ff65088f26edb0ed0d9fd2209ea81d58619efcffa5091d49bd2b841ddd4749b05a21f

diff --git a/kde-misc/kshutdown/kshutdown-4.1.1_beta.ebuild 
b/kde-misc/kshutdown/kshutdown-4.1.1_beta.ebuild
deleted file mode 100644
index b3f35ae4e53..000
--- a/kde-misc/kshutdown/kshutdown-4.1.1_beta.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_TEST="false"
-KDE_AUTODEPS="false"
-inherit kde5
-
-DESCRIPTION="Shutdown manager for desktop environments like KDE Plasma"
-HOMEPAGE="https://kshutdown.sourceforge.io";
-SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV/_}.zip"
-
-LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
-IUSE="+kde"
-
-COMMON_DEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   kde? (
-   kde-frameworks/kconfig:5
-   kde-frameworks/kconfigwidgets:5
-   kde-frameworks/kcoreaddons:5
-   kde-frameworks/kdbusaddons:5
-   kde-frameworks/kglobalaccel:5
-   kde-frameworks/ki18n:5
-   kde-frameworks/kidletime:5
-   kde-frameworks/knotifications:5
-   kde-frameworks/knotifyconfig:5
-   kde-frameworks/kwidgetsaddons:5
-   kde-frameworks/kxmlgui:5
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   app-arch/unzip
-   kde? ( kde-frameworks/extra-cmake-modules:5 )
-   sys-devel/gettext
-"
-RDEPEND="${COMMON_DEPEND}
-   !kde-misc/kshutdown:4
-"
-
-S="${WORKDIR}/${P/_}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DKS_KF5=$(usex kde)
-   -DKS_PURE_QT=$(usex !kde)
-   )
-
-   kde5_src_configure
-}



[gentoo-commits] repo/user/ssnb:master commit in: net-im/stride-bin/

2018-05-06 Thread Samuel Bernardo
commit: ef2c9764d6ac7057a1a8ef4864cc078b0aba5d32
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sun May  6 11:35:34 2018 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sun May  6 11:35:34 2018 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=ef2c9764

add stride-bin app

 net-im/stride-bin/Manifest  |  2 +
 net-im/stride-bin/stride-bin-1.17.82.ebuild | 63 +
 2 files changed, 65 insertions(+)

diff --git a/net-im/stride-bin/Manifest b/net-im/stride-bin/Manifest
new file mode 100644
index 000..eacd6fd
--- /dev/null
+++ b/net-im/stride-bin/Manifest
@@ -0,0 +1,2 @@
+DIST stride-bin-1.17.82.deb 50374678 BLAKE2B 
1c96c309e476ab2dcbac252e3f308483fcf0a15ddc9fffacb9496e5e3325ffd2293b756ad56e9473692f5999290197914736c3d859c61178069d86d6b31a2dfa
 SHA512 
5f01b40923e3f3a7174e0e40ad3d7f0c35c4cf5393f5eec99e93605e0bccd64d94b8afea5cdf074567336c2f5fb71791733ee3959a174affe708a57b21c560c6
+EBUILD stride-bin-1.17.82.ebuild 1290 BLAKE2B 
7c6f59858884bf5b1fcbd95750ca2cfb1ac7a5463a25e3bb8570961a972d8102057351833c01a4bc2499fc48183b66d658ea40585f7acea2b2eb25e9c359a3e0
 SHA512 
5d6875c6366b539643a59d58e0de2a4c724f80c75143dbd1d880eeed72e8857fc6793d482c7c5953637cb990597b53d6b44f902a8dc18389909646d196c58c86

diff --git a/net-im/stride-bin/stride-bin-1.17.82.ebuild 
b/net-im/stride-bin/stride-bin-1.17.82.ebuild
new file mode 100644
index 000..5b8aa93
--- /dev/null
+++ b/net-im/stride-bin/stride-bin-1.17.82.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils gnome2-utils unpacker xdg-utils xdg versionator
+
+MY_PN="${PN/-bin/}"
+
+DESCRIPTION="Stride desktop client"
+HOMEPAGE="https://www.stride.com/";
+SRC_URI="https://packages.atlassian.com/${MY_PN}-apt-client/pool/${MY_PN}_${PV}_amd64.deb
 -> ${P}.deb"
+LICENSE="no-source-code"
+RESTRICT="mirror"
+
+SLOT="$(get_major_version)"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+QA_PREBUILT="opt/${PN}/*"
+
+S="${WORKDIR}/usr/lib/${MY_PN}"
+
+src_prepare() {
+   sed -i -e 's:Network;::' 
"${WORKDIR}/usr/share/applications/${MY_PN}.desktop"
+   eapply_user
+}
+
+src_install() {
+   exeinto "/opt/${PN}"
+   doexe "${MY_PN}"
+
+   insinto "/opt/${PN}"
+   doins *.pak *.so icudtl.dat natives_blob.bin snapshot_blob.bin version
+   doins -r locales resources
+
+   insinto /usr/share
+   doins -r "${WORKDIR}/usr/share/icons"
+
+   make_wrapper "${MY_PN}" "./${MY_PN}" "/opt/${PN}" .
+
+   domenu "${WORKDIR}/usr/share/applications/${MY_PN}.desktop"
+}
+
+pkg_preinst() {
+   xdg_pkg_preinst
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+}



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

2018-05-06 Thread Mikle Kolyada
commit: 321acdaea8313c3d3865b5f13bd6ecb566ca9736
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 11:38:50 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 11:39:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=321acdae

www-servers/lighttpd: Drop hppa

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild | 2 +-
 www-servers/lighttpd/lighttpd-1.4.45.ebuild| 2 +-
 www-servers/lighttpd/lighttpd-1.4.49.ebuild| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild 
b/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild
index 492f35263c4..ab339911397 100644
--- a/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild
+++ b/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://download.lighttpd.net/lighttpd/releases-1.4.x/${P}.tar.xz";
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="bzip2 doc fam gdbm ipv6 kerberos ldap libev libressl lua minimal mmap 
memcached mysql pcre php rrdtool selinux ssl test webdav xattr zlib"
 
 REQUIRED_USE="kerberos? ( ssl !libressl )"

diff --git a/www-servers/lighttpd/lighttpd-1.4.45.ebuild 
b/www-servers/lighttpd/lighttpd-1.4.45.ebuild
index c0c1fb53499..8a2378ddd72 100644
--- a/www-servers/lighttpd/lighttpd-1.4.45.ebuild
+++ b/www-servers/lighttpd/lighttpd-1.4.45.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://download.lighttpd.net/lighttpd/releases-1.4.x/${P}.tar.xz";
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
 IUSE="bzip2 doc fam gdbm ipv6 kerberos ldap libev libressl lua minimal mmap 
memcached mysql pcre php rrdtool selinux ssl test webdav xattr zlib"
 
 REQUIRED_USE="kerberos? ( ssl !libressl )"

diff --git a/www-servers/lighttpd/lighttpd-1.4.49.ebuild 
b/www-servers/lighttpd/lighttpd-1.4.49.ebuild
index 902e56f4bb6..ca1a1fd776c 100644
--- a/www-servers/lighttpd/lighttpd-1.4.49.ebuild
+++ b/www-servers/lighttpd/lighttpd-1.4.49.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://download.lighttpd.net/lighttpd/releases-1.4.x/${P}.tar.xz";
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd"
 IUSE="bzip2 dbi doc fam gdbm geoip ipv6 kerberos ldap libev libressl lua 
minimal mmap memcached mysql pcre php postgres rrdtool sasl selinux ssl sqlite 
test webdav xattr zlib"
 
 REQUIRED_USE="kerberos? ( ssl !libressl )



[gentoo-commits] repo/gentoo:master commit in: x11-base/xcb-proto/

2018-05-06 Thread Mart Raudsepp
commit: 2cfcd4b28d12e3276c4c7aa0bcead63761a42e67
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 11:44:02 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 11:45:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cfcd4b2

x11-base/xcb-proto-1.13: arm64 stable (bug #649316)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 x11-base/xcb-proto/xcb-proto-1.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-base/xcb-proto/xcb-proto-1.13.ebuild 
b/x11-base/xcb-proto/xcb-proto-1.13.ebuild
index 4eec175dd3b..ee11a44a533 100644
--- a/x11-base/xcb-proto/xcb-proto-1.13.ebuild
+++ b/x11-base/xcb-proto/xcb-proto-1.13.ebuild
@@ -15,7 +15,7 @@ 
EGIT_REPO_URI="https://anongit.freedesktop.org/git/xcb/proto.git";
 [[ ${PV} != * ]] && \
SRC_URI="https://xcb.freedesktop.org/dist/${P}.tar.bz2";
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}"



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

2018-05-06 Thread Mart Raudsepp
commit: 327782359129cdfb332a320d5cc42e5662cbb91a
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 11:45:18 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 11:45:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32778235

x11-libs/libxcb-1.13: arm64 stable (bug #649316)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/x11-libs/libxcb/libxcb-1.13.ebuild 
b/x11-libs/libxcb/libxcb-1.13.ebuild
index f3ce17fcb18..f635600252f 100644
--- a/x11-libs/libxcb/libxcb-1.13.ebuild
+++ b/x11-libs/libxcb/libxcb-1.13.ebuild
@@ -16,7 +16,7 @@ 
EGIT_REPO_URI="https://anongit.freedesktop.org/git/xcb/libxcb.git";
 [[ ${PV} != * ]] && \
SRC_URI="https://xcb.freedesktop.org/dist/${P}.tar.bz2";
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc selinux test xkb"
 SLOT="0/1.12"
 



[gentoo-commits] proj/portage:master commit in: pym/portage/util/futures/_asyncio/, pym/portage/tests/util/futures/asyncio/, ...

2018-05-06 Thread Zac Medico
commit: 85ac23b7c0c58cef72d22281d66d086521c01e3e
Author: Zac Medico  gentoo  org>
AuthorDate: Sun May  6 11:05:03 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun May  6 11:41:45 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=85ac23b7

asyncio: add _wrap_loop helper (bug 654390)

In order to deal with asyncio event loop compatibility issues, add
a _wrap_loop helper. For example, since python3.4 does not have the
AbstractEventLoop.create_future() method, this helper function can
be used to add a wrapper that implements the create_future method
for python3.4.

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

 pym/portage/dbapi/porttree.py | 12 ++--
 .../tests/util/futures/asyncio/test_child_watcher.py  |  2 +-
 .../util/futures/asyncio/test_event_loop_in_fork.py   |  8 
 .../tests/util/futures/asyncio/test_pipe_closed.py|  4 ++--
 .../util/futures/asyncio/test_run_until_complete.py   |  2 +-
 .../util/futures/asyncio/test_subprocess_exec.py  |  4 ++--
 pym/portage/util/futures/_asyncio/__init__.py | 19 ++-
 pym/portage/util/futures/_asyncio/tasks.py|  7 +--
 pym/portage/util/futures/executor/fork.py |  4 ++--
 pym/portage/util/futures/iter_completed.py|  7 +++
 pym/portage/util/futures/retry.py |  3 +--
 11 files changed, 45 insertions(+), 27 deletions(-)

diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py
index 801b5658a..3e36024ff 100644
--- a/pym/portage/dbapi/porttree.py
+++ b/pym/portage/dbapi/porttree.py
@@ -36,7 +36,7 @@ from portage import _encodings
 from portage import _unicode_encode
 from portage import OrderedDict
 from portage.util._eventloop.EventLoop import EventLoop
-from portage.util._eventloop.global_event_loop import global_event_loop
+from portage.util.futures import asyncio
 from portage.util.futures.iter_completed import iter_gather
 from _emerge.EbuildMetadataPhase import EbuildMetadataPhase
 
@@ -325,8 +325,8 @@ class portdbapi(dbapi):
@property
def _event_loop(self):
if portage._internal_caller:
-   # For internal portage usage, the global_event_loop is 
safe.
-   return global_event_loop()
+   # For internal portage usage, asyncio._wrap_loop() is 
safe.
+   return asyncio._wrap_loop()
else:
# For external API consumers, use a local EventLoop, 
since
# we don't want to assume that it's safe to override the
@@ -611,7 +611,7 @@ class portdbapi(dbapi):
# to simultaneous instantiation of multiple event loops here.
# Callers of this method certainly want the same event loop to
# be used for all calls.
-   loop = loop or global_event_loop()
+   loop = asyncio._wrap_loop(loop)
future = loop.create_future()
cache_me = False
if myrepo is not None:
@@ -751,7 +751,7 @@ class portdbapi(dbapi):
a set of alternative URIs.
@rtype: asyncio.Future (or compatible)
"""
-   loop = loop or global_event_loop()
+   loop = asyncio._wrap_loop(loop)
result = loop.create_future()
 
def aux_get_done(aux_get_future):
@@ -1419,7 +1419,7 @@ def _async_manifest_fetchlist(portdb, repo_config, cp, 
cpv_list=None,
@return: a Future resulting in a Mapping compatible with FetchlistDict
@rtype: asyncio.Future (or compatible)
"""
-   loop = loop or global_event_loop()
+   loop = asyncio._wrap_loop(loop)
result = loop.create_future()
cpv_list = (portdb.cp_list(cp, mytree=repo_config.location)
if cpv_list is None else cpv_list)

diff --git a/pym/portage/tests/util/futures/asyncio/test_child_watcher.py 
b/pym/portage/tests/util/futures/asyncio/test_child_watcher.py
index dca01be56..8ef497544 100644
--- a/pym/portage/tests/util/futures/asyncio/test_child_watcher.py
+++ b/pym/portage/tests/util/futures/asyncio/test_child_watcher.py
@@ -28,7 +28,7 @@ class ChildWatcherTestCase(TestCase):
 
args_tuple = ('hello', 'world')
 
-   loop = asyncio.get_event_loop()
+   loop = asyncio._wrap_loop()
future = loop.create_future()
 
def callback(pid, returncode, *args):

diff --git a/pym/portage/tests/util/futures/asyncio/test_event_loop_in_fork.py 
b/pym/portage/tests/util/futures/asyncio/test_event_loop_in_fork.py
index 7868d792a..19588bf3a 100644
--- a/pym/portage/tests/util/futures/asyncio/test_event_loop_in_fork.py
+++ b/pym/portage/tests/util/futures/asyncio/test_event_loop_in_fork.py
@@ -11,14 +11,14 @@ from portage.util.futures.unix_events import 
DefaultEventL

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

2018-05-06 Thread Mikle Kolyada
commit: dc7760c0a8f066a8316598aca43d77488f3faa8b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:01:18 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:01:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc7760c0

www-servers/lighttpd: short revert

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild | 2 +-
 www-servers/lighttpd/lighttpd-1.4.49.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild 
b/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild
index ab339911397..492f35263c4 100644
--- a/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild
+++ b/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://download.lighttpd.net/lighttpd/releases-1.4.x/${P}.tar.xz";
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~x86-fbsd"
 IUSE="bzip2 doc fam gdbm ipv6 kerberos ldap libev libressl lua minimal mmap 
memcached mysql pcre php rrdtool selinux ssl test webdav xattr zlib"
 
 REQUIRED_USE="kerberos? ( ssl !libressl )"

diff --git a/www-servers/lighttpd/lighttpd-1.4.49.ebuild 
b/www-servers/lighttpd/lighttpd-1.4.49.ebuild
index ca1a1fd776c..902e56f4bb6 100644
--- a/www-servers/lighttpd/lighttpd-1.4.49.ebuild
+++ b/www-servers/lighttpd/lighttpd-1.4.49.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://download.lighttpd.net/lighttpd/releases-1.4.x/${P}.tar.xz";
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~x86-fbsd"
 IUSE="bzip2 dbi doc fam gdbm geoip ipv6 kerberos ldap libev libressl lua 
minimal mmap memcached mysql pcre php postgres rrdtool sasl selinux ssl sqlite 
test webdav xattr zlib"
 
 REQUIRED_USE="kerberos? ( ssl !libressl )



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

2018-05-06 Thread Anthony G. Basile
commit: ea8ec9aa3e4a5d4c4be009f718e3311be904eff7
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun May  6 12:05:12 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun May  6 12:05:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea8ec9aa

dev-libs/libressl: version bump to 2.7.3, remove 2.7.2

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-libs/libressl/Manifest | 2 +-
 dev-libs/libressl/{libressl-2.7.2.ebuild => libressl-2.7.3.ebuild} | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
index a48b95df2bf..1e55c4d34be 100644
--- a/dev-libs/libressl/Manifest
+++ b/dev-libs/libressl/Manifest
@@ -1,3 +1,3 @@
 DIST libressl-2.6.0.tar.gz 3297288 BLAKE2B 
8906227a1d125e32afafb666e67c1364d764234d6a3c389c59f820cb5d778133811cc4be06de948fe6375e36ceddd061e1736e3b0fe3511e8807f5cb9fddc978
 SHA512 
e195c6a2c9680cfaaca31bb6d3392fc6f725efd2a2d18b9a24d457d035a581c88630e6a066a4a4e0903e71f3ae3c30a031eb4f58281e483fdf1d877227452e9a
 DIST libressl-2.6.4.tar.gz 3227935 BLAKE2B 
48e865448a9e5b0b604b06060091073276aebd376506de73773a5eb9cb0bb4c5b93aa16353b4892abaee97ec933ad77e89775c3f52263d77bb17c68e481b4f70
 SHA512 
181761da573ff392aaee17dd3dde416d7cbb299ab3e07b49c97e279ceb3f619e78d1dc9ec4c59b0af024f0a8270ff31fe37f8282d0392be34c3143c9647cd246
-DIST libressl-2.7.2.tar.gz 3364227 BLAKE2B 
49da6903a63425ac246c574b4c842706eaff184ba4a1768f61b2007296cb915f944f80f79edbad12b1a28a5552282522aa2b037195e2f917c06cf6917f1642e6
 SHA512 
12d00d057d449eb4119fc2f07034ebc0f1bbcb1602c0e07ef03b50440045eafd70594ddee352946cd9409aed8aceeb6988ba1643f582566fe3498499d94ece49
+DIST libressl-2.7.3.tar.gz 3364724 BLAKE2B 
e245cd0e3c4819e12f3f05898429c10894959d9bbe27bfca38543ec304a84abc8edda7c968eb8d25e5c589011c5482060d05bd1e5aef71c13708ec804cd05a72
 SHA512 
5fafff32bc4effa98c00278206f0aeca92652c6a8101b2c5da3904a5a3deead2d1e3ce979c644b8dc6060ec216eb878a5069324a0396c0b1d7b6f8169d509e9b

diff --git a/dev-libs/libressl/libressl-2.7.2.ebuild 
b/dev-libs/libressl/libressl-2.7.3.ebuild
similarity index 94%
rename from dev-libs/libressl/libressl-2.7.2.ebuild
rename to dev-libs/libressl/libressl-2.7.3.ebuild
index c082e664866..b9bfe8bd72d 100644
--- a/dev-libs/libressl/libressl-2.7.2.ebuild
+++ b/dev-libs/libressl/libressl-2.7.3.ebuild
@@ -14,7 +14,6 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either.  However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/45"
-#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="+asm static-libs test"
 REQUIRED_USE="test? ( static-libs )"



[gentoo-commits] repo/gentoo:master commit in: x11-apps/bdftopcf/

2018-05-06 Thread Mikle Kolyada
commit: 744e88dedea39c1221a5f8a8f255956cd38929ac
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:22:12 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:22:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=744e88de

x11-apps/bdftopcf: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-apps/bdftopcf/bdftopcf-1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-apps/bdftopcf/bdftopcf-1.1.ebuild 
b/x11-apps/bdftopcf/bdftopcf-1.1.ebuild
index 804f58b6d98..069fbeda36a 100644
--- a/x11-apps/bdftopcf/bdftopcf-1.1.ebuild
+++ b/x11-apps/bdftopcf/bdftopcf-1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -7,7 +7,7 @@ inherit xorg-2
 
 DESCRIPTION="X.Org bdftopcf application"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 DEPEND="
x11-proto/fontsproto



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

2018-05-06 Thread Mikle Kolyada
commit: 66f513141bc9d22a20137fe9fbd86bf8d9588f34
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:18:31 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:18:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66f51314

dev-libs/wayland: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-libs/wayland/wayland-1.14.0.ebuild 
b/dev-libs/wayland/wayland-1.14.0.ebuild
index 4e25ea990ff..ec5d5751665 100644
--- a/dev-libs/wayland/wayland-1.14.0.ebuild
+++ b/dev-libs/wayland/wayland-1.14.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -18,7 +18,7 @@ if [[ $PV = * ]]; then
SRC_URI=""
 else
SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
 fi
 
 LICENSE="MIT"



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

2018-05-06 Thread Mikle Kolyada
commit: 9c7314e0eae9ffe68d5e106b1fd753b7483788fd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:17:11 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:17:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c7314e0

dev-libs/libevdev: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-libs/libevdev/libevdev-1.5.9.ebuild 
b/dev-libs/libevdev/libevdev-1.5.9.ebuild
index 8b9f30261c7..623ceb224fc 100644
--- a/dev-libs/libevdev/libevdev-1.5.9.ebuild
+++ b/dev-libs/libevdev/libevdev-1.5.9.ebuild
@@ -19,7 +19,7 @@ else
 fi
 
 RESTRICT="test" # Tests need to run as root.
-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=""
 
 DEPEND="${PYTHON_DEPS}"



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

2018-05-06 Thread Mikle Kolyada
commit: f5889c0749e5a2f6cd7fd76d07a7bf00b2a49a7c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:19:52 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:19:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5889c07

dev-libs/weston: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-libs/weston/weston-3.0.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/weston/weston-3.0.0.ebuild 
b/dev-libs/weston/weston-3.0.0.ebuild
index 01cec086558..0fc2ee82083 100644
--- a/dev-libs/weston/weston-3.0.0.ebuild
+++ b/dev-libs/weston/weston-3.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,10 +16,10 @@ HOMEPAGE="https://wayland.freedesktop.org/";
 
 if [[ $PV = * ]]; then
SRC_URI="${SRC_PATCHES}"
-   KEYWORDS=""
+   KEYWORDS="amd64"
 else
SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz";
-   KEYWORDS="~amd64 ~arm ~x86 ~arm-linux"
+   KEYWORDS="amd64 ~arm ~x86 ~arm-linux"
 fi
 
 LICENSE="MIT CC-BY-SA-3.0"



[gentoo-commits] repo/gentoo:master commit in: x11-base/xcb-proto/

2018-05-06 Thread Mikle Kolyada
commit: 39ae5563fd0c0eeb5bbc0e2c00fd78b4e46f7865
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:24:49 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:24:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39ae5563

x11-base/xcb-proto: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-base/xcb-proto/xcb-proto-1.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-base/xcb-proto/xcb-proto-1.13.ebuild 
b/x11-base/xcb-proto/xcb-proto-1.13.ebuild
index ee11a44a533..21a3b63c9ce 100644
--- a/x11-base/xcb-proto/xcb-proto-1.13.ebuild
+++ b/x11-base/xcb-proto/xcb-proto-1.13.ebuild
@@ -15,7 +15,7 @@ 
EGIT_REPO_URI="https://anongit.freedesktop.org/git/xcb/proto.git";
 [[ ${PV} != * ]] && \
SRC_URI="https://xcb.freedesktop.org/dist/${P}.tar.bz2";
 
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RDEPEND="${PYTHON_DEPS}"



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-opencl/

2018-05-06 Thread Mikle Kolyada
commit: 37d786c9a7e755a7d7fbf898b11a7fc8464b7650
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:16:09 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:16:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37d786c9

app-eselect/eselect-opencl: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-eselect/eselect-opencl/eselect-opencl-1.1.0-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-eselect/eselect-opencl/eselect-opencl-1.1.0-r4.ebuild 
b/app-eselect/eselect-opencl/eselect-opencl-1.1.0-r4.ebuild
index d21b9459ec5..12ce879c252 100644
--- a/app-eselect/eselect-opencl/eselect-opencl-1.1.0-r4.ebuild
+++ b/app-eselect/eselect-opencl/eselect-opencl-1.1.0-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -30,7 +30,7 @@ SRC_URI="
"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="amd64 ~arm64 ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 DEPEND="app-arch/xz-utils"



[gentoo-commits] repo/gentoo:master commit in: x11-apps/xtrap/

2018-05-06 Thread Mikle Kolyada
commit: c478594bec8d834f0d94838a7b80222b6f39441f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:24:13 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:24:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c478594b

x11-apps/xtrap: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-apps/xtrap/xtrap-1.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/xtrap/xtrap-1.0.3.ebuild 
b/x11-apps/xtrap/xtrap-1.0.3.ebuild
index d9d12085a67..e47b7654e1a 100644
--- a/x11-apps/xtrap/xtrap-1.0.3.ebuild
+++ b/x11-apps/xtrap/xtrap-1.0.3.ebuild
@@ -5,7 +5,7 @@ EAPI="5"
 inherit xorg-2
 
 DESCRIPTION="X.Org xtrap application"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE=""
 RDEPEND="x11-libs/libX11
x11-libs/libXt



[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-server/

2018-05-06 Thread Mikle Kolyada
commit: 5caae5ce32e14c9eed7c9734212860671a83b79c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:25:40 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:25:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5caae5ce

x11-base/xorg-server: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-base/xorg-server/xorg-server-1.19.5-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-base/xorg-server/xorg-server-1.19.5-r2.ebuild 
b/x11-base/xorg-server/xorg-server-1.19.5-r2.ebuild
index 4b366b21c80..3b2be146c3d 100644
--- a/x11-base/xorg-server/xorg-server-1.19.5-r2.ebuild
+++ b/x11-base/xorg-server/xorg-server-1.19.5-r2.ebuild
@@ -9,7 +9,7 @@ 
EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/xserver.git";
 
 DESCRIPTION="X.Org X servers"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 
 IUSE_SERVERS="dmx kdrive wayland xephyr xnest xorg xvfb"
 IUSE="${IUSE_SERVERS} debug +glamor ipv6 libressl minimal selinux +suid 
systemd tslib +udev unwind xcsecurity"



[gentoo-commits] repo/gentoo:master commit in: x11-apps/xinit/

2018-05-06 Thread Mikle Kolyada
commit: 68263d124ad4aa8cc4fad1d5ce166707517348ec
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:23:15 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:23:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68263d12

x11-apps/xinit: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-apps/xinit/xinit-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/xinit/xinit-1.4.0.ebuild 
b/x11-apps/xinit/xinit-1.4.0.ebuild
index c2d2baabb33..2b907b4d635 100644
--- a/x11-apps/xinit/xinit-1.4.0.ebuild
+++ b/x11-apps/xinit/xinit-1.4.0.ebuild
@@ -8,7 +8,7 @@ inherit xorg-2
 DESCRIPTION="X Window System initializer"
 
 LICENSE="${LICENSE} GPL-2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 IUSE="+minimal"
 
 RDEPEND="



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

2018-05-06 Thread Mikle Kolyada
commit: 5ddc1bad1584315c97cc85f55ac91e7e8a076b10
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:21:08 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:21:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ddc1bad

media-libs/libepoxy: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/media-libs/libepoxy/libepoxy-1.5.1.ebuild 
b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
index 21db4db9f63..b199a0c4871 100644
--- a/media-libs/libepoxy/libepoxy-1.5.1.ebuild
+++ b/media-libs/libepoxy/libepoxy-1.5.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/anholt/libepoxy";
 if [[ ${PV} = * ]]; then
SRC_URI=""
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc 
~x86"
SRC_URI="https://github.com/anholt/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 fi
 



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

2018-05-06 Thread Mikle Kolyada
commit: c9102883fcd0997d1dc3f0eeffc3298084078984
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:19:10 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:19:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9102883

dev-libs/wayland-protocols: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-libs/wayland-protocols/wayland-protocols-1.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/wayland-protocols/wayland-protocols-1.13.ebuild 
b/dev-libs/wayland-protocols/wayland-protocols-1.13.ebuild
index 4948be07ff8..2f67fca069f 100644
--- a/dev-libs/wayland-protocols/wayland-protocols-1.13.ebuild
+++ b/dev-libs/wayland-protocols/wayland-protocols-1.13.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://wayland.freedesktop.org/";
 
 if [[ $PV != * ]]; then
SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: x11-apps/xkbcomp/

2018-05-06 Thread Mikle Kolyada
commit: 3f78c70178aaece7d60c411c16dad4712aa1d0dd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:23:48 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:23:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f78c701

x11-apps/xkbcomp: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-apps/xkbcomp/xkbcomp-1.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/xkbcomp/xkbcomp-1.4.1.ebuild 
b/x11-apps/xkbcomp/xkbcomp-1.4.1.ebuild
index c3f0fc686a5..9ab3e5c4dc6 100644
--- a/x11-apps/xkbcomp/xkbcomp-1.4.1.ebuild
+++ b/x11-apps/xkbcomp/xkbcomp-1.4.1.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 inherit xorg-2
 
 DESCRIPTION="compile XKB keyboard description"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE=""
 RDEPEND="x11-libs/libX11
x11-libs/libxkbfile"



[gentoo-commits] repo/gentoo:master commit in: x11-apps/intel-gpu-tools/

2018-05-06 Thread Mikle Kolyada
commit: 4ec8a1790591e8dbc56fae7445390a0191070039
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:22:48 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:22:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ec8a179

x11-apps/intel-gpu-tools: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-apps/intel-gpu-tools/intel-gpu-tools-1.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.20.ebuild 
b/x11-apps/intel-gpu-tools/intel-gpu-tools-1.20.ebuild
index f14f3fa384a..0b6ab028cb0 100644
--- a/x11-apps/intel-gpu-tools/intel-gpu-tools-1.20.ebuild
+++ b/x11-apps/intel-gpu-tools/intel-gpu-tools-1.20.ebuild
@@ -7,7 +7,7 @@ inherit xorg-2
 
 DESCRIPTION="Intel GPU userland tools"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="alsa glib gsl sound test-programs udev unwind valgrind 
video_cards_amdgpu video_cards_intel video_cards_nouveau X xrandr xv"
 REQUIRED_USE="test-programs? ( sound? ( alsa gsl ) )"
 RESTRICT="test"



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

2018-05-06 Thread Mikle Kolyada
commit: 27b8d0e68e2d1e642999e12baaa2304a211bb52e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:21:36 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:21:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27b8d0e6

virtual/opencl: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 virtual/opencl/opencl-0-r5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/virtual/opencl/opencl-0-r5.ebuild 
b/virtual/opencl/opencl-0-r5.ebuild
index 70068d98ec7..c1b7c04fac0 100644
--- a/virtual/opencl/opencl-0-r5.ebuild
+++ b/virtual/opencl/opencl-0-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ inherit multilib-build
 
 DESCRIPTION="Virtual for OpenCL implementations"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 CARDS=( amdgpu i965 nvidia )
 IUSE="${CARDS[@]/#/video_cards_}"
 



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-libinput/

2018-05-06 Thread Mikle Kolyada
commit: 8d8252d7d98d053e479866c37386ede68b806f1c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:26:12 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:26:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d8252d7

x11-drivers/xf86-input-libinput: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-drivers/xf86-input-libinput/xf86-input-libinput-0.27.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.27.1.ebuild 
b/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.27.1.ebuild
index 6e3c91ae6cb..694dc12aba6 100644
--- a/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.27.1.ebuild
+++ b/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.27.1.ebuild
@@ -7,7 +7,7 @@ inherit linux-info xorg-2
 
 DESCRIPTION="X.org input driver based on libinput"
 
-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=""
 
 RDEPEND=">=dev-libs/libinput-1.5.0:0="



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

2018-05-06 Thread Jeroen Roovers
commit: 1ab7fc1782b38220d52013e397727c3ceb5dc386
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun May  6 12:07:20 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun May  6 12:29:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ab7fc17

net-libs/libnetfilter_conntrack: Version 1.0.7.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-libs/libnetfilter_conntrack/Manifest   |  1 +
 .../libnetfilter_conntrack-1.0.7.ebuild| 42 ++
 2 files changed, 43 insertions(+)

diff --git a/net-libs/libnetfilter_conntrack/Manifest 
b/net-libs/libnetfilter_conntrack/Manifest
index ff7082a2b0e..d1b736fbcef 100644
--- a/net-libs/libnetfilter_conntrack/Manifest
+++ b/net-libs/libnetfilter_conntrack/Manifest
@@ -1,3 +1,4 @@
 DIST libnetfilter_conntrack-1.0.4.tar.bz2 428147 BLAKE2B 
24c2909ff62483397cf729573bb6693cf361599599b3f9b3c4a912e508e4eaa15ba728876addb42c8b2fb755bcc0ca483c88ce2ed7306bb38525aa520b6523d4
 SHA512 
53b5e5b26ca58abd6b9d83979bbb61aac4b24a85aa425c6b4fc4472b8273e30393678d6acd1aec0e959916b919cd561582ddd4b2ee656b6cb774aa9d9819c046
 DIST libnetfilter_conntrack-1.0.5.tar.bz2 418516 BLAKE2B 
e887357aa5566b67602f8e9765261ebd03c39bdbd704c7c7571f47b7c87c7c6c60acecd98b607b1d5df86c4606b087cf4385d1ee0869bb8d5283ecf156edd745
 SHA512 
683913e20fdcb175440b621247c03019116f95002ca6fa5556df48e964377fc02b65203cb7286349f3a7d67ae6338c0ee9225562aa727a325f5534b211b9ae24
 DIST libnetfilter_conntrack-1.0.6.tar.bz2 422998 BLAKE2B 
7153593e2b6f5e03a5f4579948b0d28e9ab88d39ebe08e97fe8be0eb3f10f64b36d0f85e9e35408019ab22404b3452e4c6d7b2812ea316031f3e0c4367c23019
 SHA512 
05b3b63928d46ed114048848c48094a762c6a7acc93fcdbe9473e82cc67851ef1a0d33b68b8fd388271b76b519c4d2ac93fd802043fa9a9da46cda5b262a1fc7
+DIST libnetfilter_conntrack-1.0.7.tar.bz2 346219 BLAKE2B 
85388bb2b185fa04ce697b07675cfbd84836873a9d09092b16bba318e93da56085ea5a4726a908ed5d1974aa524bee0f912e2be23f6a4c9e9e46641baf0c6a18
 SHA512 
5be5ed5daba385d11123a4e497c6334c6bb7e668594e667f85596619afe607f8783c088934098a4c07557d86f9b9157ff67d28541c8f4a80a5454307b979c22b

diff --git 
a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.7.ebuild 
b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.7.ebuild
new file mode 100644
index 000..c6147a21bff
--- /dev/null
+++ b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.7.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools linux-info
+
+DESCRIPTION="programming interface (API) to the in-kernel connection tracking 
state table"
+HOMEPAGE="http://www.netfilter.org/projects/libnetfilter_conntrack/";
+SRC_URI="http://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+IUSE="static-libs"
+
+RDEPEND="
+   >=net-libs/libmnl-1.0.3
+   >=net-libs/libnfnetlink-1.0.0
+"
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+"
+
+DOCS=( README )
+
+pkg_setup() {
+   linux-info_pkg_setup
+
+   if kernel_is lt 2 6 18 ; then
+   die "${PN} requires at least 2.6.18 kernel version"
+   fi
+
+   #netfilter core team has changed some option names with kernel 2.6.20
+   if kernel_is lt 2 6 20 ; then
+   CONFIG_CHECK="~IP_NF_CONNTRACK_NETLINK"
+   else
+   CONFIG_CHECK="~NF_CT_NETLINK"
+   fi
+
+   check_extra_config
+}



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

2018-05-06 Thread Jeroen Roovers
commit: 3926d04685b958e893c2aa661a52414b29495888
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun May  6 12:19:07 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun May  6 12:29:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3926d046

net-firewall/conntrack-tools: Version 1.4.5.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-firewall/conntrack-tools/Manifest  |  1 +
 .../conntrack-tools/conntrack-tools-1.4.5.ebuild   | 94 ++
 .../files/conntrack-tools-1.4.5-rpc.patch  | 41 ++
 3 files changed, 136 insertions(+)

diff --git a/net-firewall/conntrack-tools/Manifest 
b/net-firewall/conntrack-tools/Manifest
index d804cd46cd8..c9803426dc7 100644
--- a/net-firewall/conntrack-tools/Manifest
+++ b/net-firewall/conntrack-tools/Manifest
@@ -1,3 +1,4 @@
 DIST conntrack-tools-1.4.2.tar.bz2 472074 BLAKE2B 
9e3a90b80ea5d47737d5d5bbecd922110f2abc50e922fa2236a61f02e72c8cd4626d51fa31801f6f8b1be26b4ff71f216bd89d3599eebfc12b0f7a69bff3ec4e
 SHA512 
1fed742593caf8bbac96a58df8f7e806d1c0f1dfea8fc601d65aa89b4243b1022949a2bf03ab0ca25994a13e50b3b1ee43a31827e0dc4da1399801ddac623d56
 DIST conntrack-tools-1.4.3.tar.bz2 487111 BLAKE2B 
9b8f43129898bdc0c2475a4081333864fb4145a89ced96f7c88d8c8b52bbc9ceb55254b7f9c97763b89ba6b2aacfb91790ca052defe1a0290a10e85bbb3a
 SHA512 
be76a0ddb7470249c58ceab72cb94ffc05f5cc6d740a0755c9c782e948b4234eb1da4f7c7df1f14e4125cca9f12f3b4d2dcd444fe011941952aa3eeb13cb72c3
 DIST conntrack-tools-1.4.4.tar.bz2 1010504 BLAKE2B 
4190672f017f434b6b4a1841022d64256eac1953c6f62aecb087e2ef0f5c83ad57809c9170de816eb7e0f934c41de0a541328bab7e064243e48e9f18ade3f5fb
 SHA512 
f53bd620bfd4e854e792416527a3090d883c5f00d1d8365e52ce3ba204218dc431490703985d3fdae44decbcddb24ed610bf81a6a99bd7ea01482f95f71df0f5
+DIST conntrack-tools-1.4.5.tar.bz2 479562 BLAKE2B 
229531d1c6c237e539df5b83525dca5ce0b009a76a2a5f873282eabc73cc00095c15c686bc68f9364e81efc846bfa8eac8b08f7fd476199d10d0c25190ca2456
 SHA512 
480fe2cc4420bc8477a2ba67b3d052bcb39c6b3ec000cff27fc12db70b42ec94fa3b5fe12ee35d439e88d9a631a33cd12ae470b69dde6d371d4e53af62a2eed1

diff --git a/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild 
b/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
new file mode 100644
index 000..e2a4a8a94ac
--- /dev/null
+++ b/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools linux-info
+
+DESCRIPTION="Connection tracking userspace tools"
+HOMEPAGE="http://conntrack-tools.netfilter.org";
+SRC_URI="http://www.netfilter.org/projects/conntrack-tools/files/${P}.tar.bz2";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~hppa ~x86"
+IUSE="doc +libtirpc"
+
+RDEPEND="
+   >=net-libs/libmnl-1.0.3
+   >=net-libs/libnetfilter_conntrack-1.0.7
+   >=net-libs/libnetfilter_cthelper-1.0.0
+   >=net-libs/libnetfilter_cttimeout-1.0.0
+   >=net-libs/libnetfilter_queue-1.0.2
+   >=net-libs/libnfnetlink-1.0.1
+   !libtirpc? ( sys-libs/glibc[rpc(-)] )
+   libtirpc? ( net-libs/libtirpc )
+"
+DEPEND="
+   ${RDEPEND}
+   doc? (
+   app-text/docbook-xml-dtd:4.1.2
+   app-text/xmlto
+   )
+   virtual/pkgconfig
+   sys-devel/bison
+   sys-devel/flex
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.4.5-rpc.patch
+)
+
+pkg_setup() {
+   linux-info_pkg_setup
+
+   if kernel_is lt 2 6 18 ; then
+   die "${PN} requires at least 2.6.18 kernel version"
+   fi
+
+   #netfilter core team has changed some option names with kernel 2.6.20
+   if kernel_is lt 2 6 20 ; then
+   CONFIG_CHECK="~IP_NF_CONNTRACK_NETLINK"
+   else
+   CONFIG_CHECK="~NF_CT_NETLINK"
+   fi
+   CONFIG_CHECK="${CONFIG_CHECK} ~NF_CONNTRACK
+   ~NETFILTER_NETLINK ~NF_CONNTRACK_EVENTS"
+
+   check_extra_config
+
+   linux_config_exists || \
+   linux_chkconfig_present "NF_CONNTRACK_IPV4" || \
+   linux_chkconfig_present "NF_CONNTRACK_IPV6" || \
+   ewarn "CONFIG_NF_CONNTRACK_IPV4 or CONFIG_NF_CONNTRACK_IPV6 " \
+   "are not set when one at least should be."
+}
+
+src_prepare() {
+   default
+
+   # bug #474858
+   sed -i -e 's:/var/lock:/run/lock:' doc/stats/conntrackd.conf || die
+
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_with libtirpc)
+}
+
+src_compile() {
+   default
+   use doc && emake -C doc/manual
+}
+
+src_install() {
+   default
+
+   newinitd "${FILESDIR}/conntrackd.initd-r3" conntrackd
+   newconfd "${FILESDIR}/conntrackd.confd-r2" conntrackd
+
+   insinto /etc/conntrackd
+   doins doc/stats/conntrackd.conf
+
+   dodoc -r doc/sync doc/stats AUTHORS TODO
+   use doc && dodoc doc/manual/${PN}.html
+}

diff --git a/net-firewall/conntra

[gentoo-commits] repo/gentoo:master commit in: net-firewall/conntrack-tools/files/

2018-05-06 Thread Jeroen Roovers
commit: d4e4be15ecce347f5cad9dc570cccdd763f7b0c9
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun May  6 12:06:41 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun May  6 12:29:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e4be15

net-firewall/conntrack-tools: Fix patch.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 .../conntrack-tools/files/conntrack-tools-1.4.4-rpc.patch  | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/net-firewall/conntrack-tools/files/conntrack-tools-1.4.4-rpc.patch 
b/net-firewall/conntrack-tools/files/conntrack-tools-1.4.4-rpc.patch
index 739857790c3..01ef537a735 100644
--- a/net-firewall/conntrack-tools/files/conntrack-tools-1.4.4-rpc.patch
+++ b/net-firewall/conntrack-tools/files/conntrack-tools-1.4.4-rpc.patch
@@ -1,6 +1,5 @@
-diff -ruN conntrack-tools-1.4.4.orig/configure.ac 
conntrack-tools-1.4.4/configure.ac
 conntrack-tools-1.4.4.orig/configure.ac2016-08-22 10:43:02.954671362 
-
-+++ conntrack-tools-1.4.4/configure.ac 2017-09-24 19:50:37.225517482 -
+--- a/configure.ac
 b/configure.ac
 @@ -50,6 +50,25 @@
  AS_HELP_STRING([--enable-systemd], [Build systemd support]),
  [enable_systemd="$enableval"], [enable_systemd="no"])
@@ -27,9 +26,8 @@ diff -ruN conntrack-tools-1.4.4.orig/configure.ac 
conntrack-tools-1.4.4/configur
  PKG_CHECK_MODULES([LIBNFNETLINK], [libnfnetlink >= 1.0.1])
  PKG_CHECK_MODULES([LIBMNL], [libmnl >= 1.0.3])
  PKG_CHECK_MODULES([LIBNETFILTER_CONNTRACK], [libnetfilter_conntrack >= 1.0.6])
-diff -ruN conntrack-tools-1.4.4.orig/src/helpers/Makefile.am 
conntrack-tools-1.4.4/src/helpers/Makefile.am
 conntrack-tools-1.4.4.orig/src/helpers/Makefile.am 2015-02-11 
15:36:00.650610125 -
-+++ conntrack-tools-1.4.4/src/helpers/Makefile.am  2017-09-24 
19:52:11.644990587 -
+--- a/src/helpers/Makefile.am
 b/src/helpers/Makefile.am
 @@ -22,8 +22,8 @@
  ct_helper_ftp_la_CFLAGS = $(AM_CFLAGS) $(LIBNETFILTER_CONNTRACK_CFLAGS)
  



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

2018-05-06 Thread Jeroen Roovers
commit: bc6e8089667abaf7902d573c00f02127e05bf82c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun May  6 12:29:26 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun May  6 12:29:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6e8089

net-firewall/conntrack-tools: More USE flags.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 .../conntrack-tools/conntrack-tools-1.4.5.ebuild   | 15 
 net-firewall/conntrack-tools/metadata.xml  | 28 --
 2 files changed, 27 insertions(+), 16 deletions(-)

diff --git a/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild 
b/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
index e2a4a8a94ac..2ba9b596f3b 100644
--- a/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
+++ b/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
@@ -11,13 +11,17 @@ 
SRC_URI="http://www.netfilter.org/projects/conntrack-tools/files/${P}.tar.bz2";
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~hppa ~x86"
-IUSE="doc +libtirpc"
+IUSE="doc +cthelper +cttimeout +libtirpc"
 
 RDEPEND="
>=net-libs/libmnl-1.0.3
>=net-libs/libnetfilter_conntrack-1.0.7
-   >=net-libs/libnetfilter_cthelper-1.0.0
-   >=net-libs/libnetfilter_cttimeout-1.0.0
+   cthelper? (
+   >=net-libs/libnetfilter_cthelper-1.0.0
+   )
+   cttimeout? (
+   >=net-libs/libnetfilter_cttimeout-1.0.0
+   )
>=net-libs/libnetfilter_queue-1.0.2
>=net-libs/libnfnetlink-1.0.1
!libtirpc? ( sys-libs/glibc[rpc(-)] )
@@ -72,7 +76,10 @@ src_prepare() {
 }
 
 src_configure() {
-   econf $(use_with libtirpc)
+   econf \
+   $(use_enable cthelper) \
+   $(use_enable cttimeout) \
+   $(use_with libtirpc)
 }
 
 src_compile() {

diff --git a/net-firewall/conntrack-tools/metadata.xml 
b/net-firewall/conntrack-tools/metadata.xml
index cd2eeff6fa9..b30175c9505 100644
--- a/net-firewall/conntrack-tools/metadata.xml
+++ b/net-firewall/conntrack-tools/metadata.xml
@@ -1,16 +1,20 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-   
-   net...@gentoo.org
-   Gentoo network monitoring and analysis project
-   
-   
-   A set of tools targeted at system administrators. They are 
conntrack,
-   the userspace command line interface, and conntrackd, the 
userspace
-   daemon.
-   
-   
-   Build against 
net-libs/libtirpc for RPC support
-   
+
+net...@gentoo.org
+Gentoo network monitoring and analysis project
+
+
+The conntrack-tools are a set of free software userspace tools for Linux that
+allow system administrators interact with the Connection Tracking System, which
+is the module that provides stateful packet inspection for iptables. The
+conntrack-tools are the userspace daemon conntrackd and the command line
+interface conntrack.
+
+
+Use net-libs/libtirpc for RPC support
+Use net-libs/libnetfilter_cthelper for 
userspace conntrack helper support
+Use net-libs/libnetfilter_cttimeout for 
conntrack timeout support
+
 



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-ati/

2018-05-06 Thread Mikle Kolyada
commit: a380f1d5bb8db69098a122cf40581197593fa7aa
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:28:42 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:30:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a380f1d5

x11-drivers/xf86-video-ati: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-drivers/xf86-video-ati/xf86-video-ati-18.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-18.0.1.ebuild 
b/x11-drivers/xf86-video-ati/xf86-video-ati-18.0.1.ebuild
index 3bb9e4ef626..f8aedf7e90a 100644
--- a/x11-drivers/xf86-video-ati/xf86-video-ati-18.0.1.ebuild
+++ b/x11-drivers/xf86-video-ati/xf86-video-ati-18.0.1.ebuild
@@ -9,7 +9,7 @@ inherit linux-info xorg-2
 if [[ ${PV} == * ]]; then
SRC_URI=""
 else
-   KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+   KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
 fi
 
 DESCRIPTION="ATI video driver"



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-vesa/

2018-05-06 Thread Mikle Kolyada
commit: f6a62997426a8ea1cd85e6986aca1b13b35b74a2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:30:07 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:30:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6a62997

x11-drivers/xf86-video-vesa: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-drivers/xf86-video-vesa/xf86-video-vesa-2.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-drivers/xf86-video-vesa/xf86-video-vesa-2.4.0.ebuild 
b/x11-drivers/xf86-video-vesa/xf86-video-vesa-2.4.0.ebuild
index 95de4a3db13..d5d46f8242e 100644
--- a/x11-drivers/xf86-video-vesa/xf86-video-vesa-2.4.0.ebuild
+++ b/x11-drivers/xf86-video-vesa/xf86-video-vesa-2.4.0.ebuild
@@ -5,7 +5,7 @@ EAPI=5
 inherit linux-info xorg-2
 
 DESCRIPTION="Generic VESA video driver"
-KEYWORDS="-* ~alpha ~amd64 ~ia64 ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="-* ~alpha amd64 ~ia64 ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=x11-base/xorg-server-1.6



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-intel/

2018-05-06 Thread Mikle Kolyada
commit: 2a3f28ea4a33caf6b0dbfef54e6645175de6ad85
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:29:37 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:30:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a3f28ea

x11-drivers/xf86-video-intel: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild 
b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild
index 7f39adc016a..2f17deefb11 100644
--- a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild
+++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20180214.ebuild
@@ -10,7 +10,7 @@ inherit linux-info xorg-2 flag-o-matic
 if [[ ${PV} == * ]]; then
SRC_URI=""
 else
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
COMMIT_ID="75795523003798d789d417e82aaa81c7ea1ed616"

SRC_URI="https://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/${COMMIT_ID}.tar.xz
 -> ${P}.tar.xz"
S=${WORKDIR}/${COMMIT_ID}



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-wacom/

2018-05-06 Thread Mikle Kolyada
commit: ea4ead39070557f5171c7926ced8f5c3835de71f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:27:20 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:30:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea4ead39

x11-drivers/xf86-input-wacom: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-drivers/xf86-input-wacom/xf86-input-wacom-0.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.36.0.ebuild 
b/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.36.0.ebuild
index 1fbc8bdbfe2..a0451b8d190 100644
--- a/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.36.0.ebuild
+++ b/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.36.0.ebuild
@@ -12,7 +12,7 @@ EGIT_REPO_URI="git://git.code.sf.net/p/linuxwacom/${PN}"
 [[ ${PV} != * ]] && \
SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
 
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="debug"
 
 # depend on libwacom for its udev rules, bug #389633



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-amdgpu/

2018-05-06 Thread Mikle Kolyada
commit: 16aaf779e13af31d16b3ca14a6b0a0720fc7fa93
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:27:55 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:30:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16aaf779

x11-drivers/xf86-video-amdgpu: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-18.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-18.0.1.ebuild 
b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-18.0.1.ebuild
index 90a06199708..e8b1133db02 100644
--- a/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-18.0.1.ebuild
+++ b/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-18.0.1.ebuild
@@ -8,7 +8,7 @@ inherit xorg-2
 if [[ ${PV} == * ]]; then
SRC_URI=""
 else
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 DESCRIPTION="Accelerated Open Source driver for AMDGPU cards"



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

2018-05-06 Thread Mikle Kolyada
commit: 867fb64780bdb988e3ab785b73ce96a6d139701c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:36:42 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:36:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=867fb647

x11-misc/xkeyboard-config: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-misc/xkeyboard-config/xkeyboard-config-2.23.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1-r1.ebuild 
b/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1-r1.ebuild
index 4a9d40a48f1..f7ad7ed797b 100644
--- a/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1-r1.ebuild
+++ b/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1-r1.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="X keyboard configuration database"
 HOMEPAGE="https://www.freedesktop.org/wiki/Software/XKeyboardConfig";
 [[ ${PV} == ** ]] || 
SRC_URI="https://www.x.org/releases/individual/data/xkeyboard-config/${P}.tar.bz2";
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE=""
 
 LICENSE="MIT"



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

2018-05-06 Thread Mikle Kolyada
commit: cf5dd7d08ddf82a12cc68c41f61b46caf1c7699f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:33:46 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:33:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf5dd7d0

x11-libs/libxkbfile: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild 
b/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
index 0f7e6b384d1..1b204d70741 100644
--- a/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
+++ b/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -7,7 +7,7 @@ inherit xorg-2
 
 DESCRIPTION="X.Org xkbfile library"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
 IUSE=""
 
 RDEPEND="x11-libs/libX11[${MULTILIB_USEDEP}]



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

2018-05-06 Thread Mikle Kolyada
commit: 8a94ce79b41396e906f2e5792fab6f3956bc6670
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:35:19 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:35:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a94ce79

x11-libs/libXres: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-libs/libXres/libXres-1.2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/libXres/libXres-1.2.0.ebuild 
b/x11-libs/libXres/libXres-1.2.0.ebuild
index 5bbead43498..972307270f9 100644
--- a/x11-libs/libXres/libXres-1.2.0.ebuild
+++ b/x11-libs/libXres/libXres-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -7,7 +7,7 @@ inherit xorg-2
 EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/lib/libXRes.git";
 DESCRIPTION="X.Org XRes library"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="x11-libs/libX11



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

2018-05-06 Thread Mikle Kolyada
commit: 06e704496552704a0734dcd3093ad5a7c1d05f12
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:36:06 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:36:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06e70449

x11-libs/libxshmfence: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/x11-libs/libxshmfence/libxshmfence-1.3.ebuild 
b/x11-libs/libxshmfence/libxshmfence-1.3.ebuild
index c0534c5f96b..5f9fe7238d0 100644
--- a/x11-libs/libxshmfence/libxshmfence-1.3.ebuild
+++ b/x11-libs/libxshmfence/libxshmfence-1.3.ebuild
@@ -7,7 +7,7 @@ inherit xorg-2
 
 DESCRIPTION="Shared memory fences using futexes"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND=""



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

2018-05-06 Thread Mikle Kolyada
commit: c25a7e17fbfd387e1f885fc7fafa6f6ca7eab4a9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:32:10 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:32:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c25a7e17

x11-libs/libpciaccess: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 x11-libs/libpciaccess/libpciaccess-0.14.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild 
b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
index 40538ee468c..4e63a3356c5 100644
--- a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
+++ b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -7,7 +7,7 @@ XORG_MULTILIB=yes
 inherit xorg-2
 
 DESCRIPTION="Library providing generic access to the PCI bus and devices"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="zlib"
 
 DEPEND="!

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

2018-05-06 Thread Mikle Kolyada
commit: 7786720df05e0a8fedf5d1d87e0f4553a94a7190
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:31:42 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:31:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7786720d

x11-libs/libdrm: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/x11-libs/libdrm/libdrm-2.4.91.ebuild 
b/x11-libs/libdrm/libdrm-2.4.91.ebuild
index 13349314bbf..a54a8c7b8df 100644
--- a/x11-libs/libdrm/libdrm-2.4.91.ebuild
+++ b/x11-libs/libdrm/libdrm-2.4.91.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} = * ]]; then
SRC_URI=""
 else
SRC_URI="https://dri.freedesktop.org/libdrm/${P}.tar.bz2";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 fi
 
 VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vc4 
vivante vmware"



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

2018-05-06 Thread Mikle Kolyada
commit: 52650bcfaa2841607140229350f8dfdc8b7bb3c8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 12:32:48 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 12:32:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52650bcf

x11-libs/libxcb: amd64 stable wrt bug #649316

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/x11-libs/libxcb/libxcb-1.13.ebuild 
b/x11-libs/libxcb/libxcb-1.13.ebuild
index f635600252f..77557f4c980 100644
--- a/x11-libs/libxcb/libxcb-1.13.ebuild
+++ b/x11-libs/libxcb/libxcb-1.13.ebuild
@@ -16,7 +16,7 @@ 
EGIT_REPO_URI="https://anongit.freedesktop.org/git/xcb/libxcb.git";
 [[ ${PV} != * ]] && \
SRC_URI="https://xcb.freedesktop.org/dist/${P}.tar.bz2";
 
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc selinux test xkb"
 SLOT="0/1.12"
 



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2018-05-06 Thread Jeroen Roovers
commit: f936c505a54f2b2c427b9347a984a4c4d8b552da
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun May  6 12:47:28 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun May  6 12:48:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f936c505

x11-drivers/nvidia-drivers: Old.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 x11-drivers/nvidia-drivers/Manifest|   3 -
 .../nvidia-drivers/nvidia-drivers-396.18-r1.ebuild | 585 -
 2 files changed, 588 deletions(-)

diff --git a/x11-drivers/nvidia-drivers/Manifest 
b/x11-drivers/nvidia-drivers/Manifest
index 8cbc6fb7c6b..2a93ab074a0 100644
--- a/x11-drivers/nvidia-drivers/Manifest
+++ b/x11-drivers/nvidia-drivers/Manifest
@@ -16,7 +16,6 @@ DIST NVIDIA-FreeBSD-x86_64-384.130.tar.gz 62901704 BLAKE2B 
50be9af398f88caa012a7
 DIST NVIDIA-FreeBSD-x86_64-387.34.tar.gz 63387097 BLAKE2B 
53689ba098b4a4de08dca056618ea533c92d17137ec954dea0ae71e1b2c825c021979871e4ff82c820be0a78d3c365f282b760940ebe2caa1ca5bfd2453e178e
 SHA512 
0a905ee72ee6f4e9c941e5dd1f7cddf96bfb20c6da32fd05599258e1bb154f68463d775ba8ff4f67f0d4b8e637e9ed9624fc9a4873a1f2621dc86732f0d6d70d
 DIST NVIDIA-FreeBSD-x86_64-390.42.tar.gz 63578748 BLAKE2B 
ebae1724c8a8125c15dff5466677b4217586a2851bd8f8e831b55e236b00bd68ba421b21da87bf8389b17f59069482276c0ef923f85d47dfb701cd6e5fda8a6b
 SHA512 
0fde34e642fb92d099166530cdf3eb6301f11068a4780decab33c68e046aea58904f1e8fd2189900a2b140e536933de418b27a2d40e1d7e486d3df1143370007
 DIST NVIDIA-FreeBSD-x86_64-390.48.tar.gz 63583858 BLAKE2B 
bce8b6b7c739b5aec98ff919f3b6171d73f70179d6af6d7883b574d815e69de7bad9f0d774e4176385bee31181ff9e6ea510115aebe912909ea86bd9cc825aef
 SHA512 
7de36ad359a0640982467fe1178f33a4694cf5f8ec8385cc01ecd6947c5e83e4d603b7b3c90cb6ad96c4e78c1af1bab99e74f70690540dab3a22f4b77cf14434
-DIST NVIDIA-FreeBSD-x86_64-396.18.tar.gz 59117684 BLAKE2B 
c282ccb4dcef8befa823efbcbcfe8cb5edddfbb96d38759aca62cf7e762b8ef1a013af8a38ab76440ea4ca08cb51aa3c6af4da67771fa98f62a91ada725cd813
 SHA512 
5c18a0ffc06d6898e7135aa568e13189160ca66ad904c42b3e0ae16a57241ea358d2e90a4307c117aea99a53c89053e6e56bbce1815b740e87b0f07ef2f7b261
 DIST NVIDIA-FreeBSD-x86_64-396.24.tar.gz 60839222 BLAKE2B 
4baa266d945525a8f43d69e14df1b045d5a2e7212eb3a92208f8efb454642e657ea3cf00a9e625ef5efa9f54c8a9e2f87ef4847696368de13b88a0721364d9af
 SHA512 
28c456cfc9f779bed84d671e104f2ea68940053aed2dc7964390e84ec553a9062be6b5108a78f123c129c25548a7b3027060da67417c64f857b23c95ae9f908b
 DIST NVIDIA-Linux-armv7l-gnueabihf-375.82.run 26650801 BLAKE2B 
31446667065c56b48f6a3e737afe29a4517459d3462138136bffe383bc6fe514d6e80b49c391c27edc96b8abc3da3dd4d6ee3f3dca17f3c9a0f1cdf0e72cf099
 SHA512 
28554f1c24fe63c9257c0de3e84e4e739a45bf1c20ec7a53bc2c1b69b4e2355675061491ef5b03f3ae489cf623e553cfa68442f5536f137837327036d1c53d63
 DIST NVIDIA-Linux-armv7l-gnueabihf-378.13.run 26514235 BLAKE2B 
2b3c540704496a290be7ae3f1ff378487c75af2298c12488da8b3a1814446e5df02a1ed99afd8ee7fc459d950aab472155359eae0bf56ac83389711d70638152
 SHA512 
253786a821df85fa926ae842114321b3c70502f887ea7c2b6790dfe3836039ee5d390e6722ca8785904ec6487e465916923d3042dc6191b3b4522c3161b80cb0
@@ -43,7 +42,6 @@ DIST NVIDIA-Linux-x86_64-384.130.run 82260837 BLAKE2B 
55b6f3627680c881821f5d20f0
 DIST NVIDIA-Linux-x86_64-387.34.run 82784271 BLAKE2B 
b7140d5d6a693892df50b3ad2e20387673dec6b5ac609cc0300bdc4b4a93ca94849255699126e4d55e67f10e488bfe6008e987197ea239b1a1b643b4ae5c7808
 SHA512 
6742768f1258a028c9ba56ad1d72f27d7eea4b6bfd324ba29c7f057ab5819816bd728aeaf2a8058031dadcd4c51bc6d08f0e0e0e26c68ed57955e90d68ac5a4b
 DIST NVIDIA-Linux-x86_64-390.42.run 81836210 BLAKE2B 
a72c581b3aadb234d8e5230fb8d1a4cdbb03aa43434320e6cb3ef7b409dcc299d64b21b7c822736760fc12193da2d603009b8353312573b2b2a16311a88fc96b
 SHA512 
6cbf02630ac79a5cbb37f442f4def2a196b4a9d2a3600b0f5cdc3c148dd59d07994a2cee2efe0ac4139b6543698331c07f015c37b391d4f00acab7b2f033ad18
 DIST NVIDIA-Linux-x86_64-390.48.run 81341723 BLAKE2B 
0b787e7f667bf1edb6e5c4c1bfc7c6bea2546208148f84f044c405a857bdbee5c8fbeb4ce325375acf32b4d27d8a10c7f18fbcd880afe1e1e06f31997642c092
 SHA512 
47f4bcc0d88d1e80ed0c03cacde96301b1c657bec88935ee2edf9b96726620f70c747a174f1a8725b56f4812961878c01df02c249ac4810dc4aedf62d1152a7f
-DIST NVIDIA-Linux-x86_64-396.18.run 85182255 BLAKE2B 
41563a57c9f88ec24120eee3da9ec6b2648fb91effaa43d63d0b5b5622f8d62250edf921e91259bade04a65edc5ba21f052960fff100c69cfd4f558c8dc26aca
 SHA512 
6c48284b51a20192c92175418a7ddde682af4413d1aee5da1eeeaa683d67c94aaedbb046ea2e43688cd8f6e1675457f89f2a29f4fce4c2f04d5584d435a3f083
 DIST NVIDIA-Linux-x86_64-396.24.run 86545234 BLAKE2B 
be297b4585275362608cb5119c9f7f77bcf7895bd1320603cb5f8034ee5f1dfa6d0150e58d4a11dd4656b50476d6cb6a372c18db54d33fdd685250ceb0793d3f
 SHA512 
dfe837804d01e903cdf980353add0227362771cd252e4a7d8aff99fc489e5535edfda51ed1a20b9d60e23f1a9e7312f23309c59c67ff0a09a9b9214e52f09077
 DIST nvidia-settings-304.137.tar.bz2 1481361 BLAKE2B 
cf52a55a34eeb03a685a683487af6a198ba467dd8ba9983cc75624a37a226373cd931d9

[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2018-05-06 Thread Jeroen Roovers
commit: 92b190dacbb6ac95c01bca89ff60c97de01f5322
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun May  6 12:46:48 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun May  6 12:48:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92b190da

x11-drivers/nvidia-drivers: Version 396.24.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 x11-drivers/nvidia-drivers/Manifest|   3 +
 .../nvidia-drivers/nvidia-drivers-396.24.ebuild| 585 +
 2 files changed, 588 insertions(+)

diff --git a/x11-drivers/nvidia-drivers/Manifest 
b/x11-drivers/nvidia-drivers/Manifest
index bb6c7264d9b..8cbc6fb7c6b 100644
--- a/x11-drivers/nvidia-drivers/Manifest
+++ b/x11-drivers/nvidia-drivers/Manifest
@@ -17,6 +17,7 @@ DIST NVIDIA-FreeBSD-x86_64-387.34.tar.gz 63387097 BLAKE2B 
53689ba098b4a4de08dca0
 DIST NVIDIA-FreeBSD-x86_64-390.42.tar.gz 63578748 BLAKE2B 
ebae1724c8a8125c15dff5466677b4217586a2851bd8f8e831b55e236b00bd68ba421b21da87bf8389b17f59069482276c0ef923f85d47dfb701cd6e5fda8a6b
 SHA512 
0fde34e642fb92d099166530cdf3eb6301f11068a4780decab33c68e046aea58904f1e8fd2189900a2b140e536933de418b27a2d40e1d7e486d3df1143370007
 DIST NVIDIA-FreeBSD-x86_64-390.48.tar.gz 63583858 BLAKE2B 
bce8b6b7c739b5aec98ff919f3b6171d73f70179d6af6d7883b574d815e69de7bad9f0d774e4176385bee31181ff9e6ea510115aebe912909ea86bd9cc825aef
 SHA512 
7de36ad359a0640982467fe1178f33a4694cf5f8ec8385cc01ecd6947c5e83e4d603b7b3c90cb6ad96c4e78c1af1bab99e74f70690540dab3a22f4b77cf14434
 DIST NVIDIA-FreeBSD-x86_64-396.18.tar.gz 59117684 BLAKE2B 
c282ccb4dcef8befa823efbcbcfe8cb5edddfbb96d38759aca62cf7e762b8ef1a013af8a38ab76440ea4ca08cb51aa3c6af4da67771fa98f62a91ada725cd813
 SHA512 
5c18a0ffc06d6898e7135aa568e13189160ca66ad904c42b3e0ae16a57241ea358d2e90a4307c117aea99a53c89053e6e56bbce1815b740e87b0f07ef2f7b261
+DIST NVIDIA-FreeBSD-x86_64-396.24.tar.gz 60839222 BLAKE2B 
4baa266d945525a8f43d69e14df1b045d5a2e7212eb3a92208f8efb454642e657ea3cf00a9e625ef5efa9f54c8a9e2f87ef4847696368de13b88a0721364d9af
 SHA512 
28c456cfc9f779bed84d671e104f2ea68940053aed2dc7964390e84ec553a9062be6b5108a78f123c129c25548a7b3027060da67417c64f857b23c95ae9f908b
 DIST NVIDIA-Linux-armv7l-gnueabihf-375.82.run 26650801 BLAKE2B 
31446667065c56b48f6a3e737afe29a4517459d3462138136bffe383bc6fe514d6e80b49c391c27edc96b8abc3da3dd4d6ee3f3dca17f3c9a0f1cdf0e72cf099
 SHA512 
28554f1c24fe63c9257c0de3e84e4e739a45bf1c20ec7a53bc2c1b69b4e2355675061491ef5b03f3ae489cf623e553cfa68442f5536f137837327036d1c53d63
 DIST NVIDIA-Linux-armv7l-gnueabihf-378.13.run 26514235 BLAKE2B 
2b3c540704496a290be7ae3f1ff378487c75af2298c12488da8b3a1814446e5df02a1ed99afd8ee7fc459d950aab472155359eae0bf56ac83389711d70638152
 SHA512 
253786a821df85fa926ae842114321b3c70502f887ea7c2b6790dfe3836039ee5d390e6722ca8785904ec6487e465916923d3042dc6191b3b4522c3161b80cb0
 DIST NVIDIA-Linux-armv7l-gnueabihf-381.22.run 26815484 BLAKE2B 
e5f0241b07d1e54edea2025dd30061d1018c68cc2c7136c507eb894bbad5be3d0724494e2b9f33d1f8f60da4904999bbb964e6f2e78d045d7cd86bcd46b7f6d0
 SHA512 
934cda37c7aed26243b5b661122e1c060de5b4df890aaf2295b6650dddea37cb4f0e3f0bebddb00b5d687b66ab5e028a203195c4d4ad3379593babda42febe77
@@ -43,6 +44,7 @@ DIST NVIDIA-Linux-x86_64-387.34.run 82784271 BLAKE2B 
b7140d5d6a693892df50b3ad2e2
 DIST NVIDIA-Linux-x86_64-390.42.run 81836210 BLAKE2B 
a72c581b3aadb234d8e5230fb8d1a4cdbb03aa43434320e6cb3ef7b409dcc299d64b21b7c822736760fc12193da2d603009b8353312573b2b2a16311a88fc96b
 SHA512 
6cbf02630ac79a5cbb37f442f4def2a196b4a9d2a3600b0f5cdc3c148dd59d07994a2cee2efe0ac4139b6543698331c07f015c37b391d4f00acab7b2f033ad18
 DIST NVIDIA-Linux-x86_64-390.48.run 81341723 BLAKE2B 
0b787e7f667bf1edb6e5c4c1bfc7c6bea2546208148f84f044c405a857bdbee5c8fbeb4ce325375acf32b4d27d8a10c7f18fbcd880afe1e1e06f31997642c092
 SHA512 
47f4bcc0d88d1e80ed0c03cacde96301b1c657bec88935ee2edf9b96726620f70c747a174f1a8725b56f4812961878c01df02c249ac4810dc4aedf62d1152a7f
 DIST NVIDIA-Linux-x86_64-396.18.run 85182255 BLAKE2B 
41563a57c9f88ec24120eee3da9ec6b2648fb91effaa43d63d0b5b5622f8d62250edf921e91259bade04a65edc5ba21f052960fff100c69cfd4f558c8dc26aca
 SHA512 
6c48284b51a20192c92175418a7ddde682af4413d1aee5da1eeeaa683d67c94aaedbb046ea2e43688cd8f6e1675457f89f2a29f4fce4c2f04d5584d435a3f083
+DIST NVIDIA-Linux-x86_64-396.24.run 86545234 BLAKE2B 
be297b4585275362608cb5119c9f7f77bcf7895bd1320603cb5f8034ee5f1dfa6d0150e58d4a11dd4656b50476d6cb6a372c18db54d33fdd685250ceb0793d3f
 SHA512 
dfe837804d01e903cdf980353add0227362771cd252e4a7d8aff99fc489e5535edfda51ed1a20b9d60e23f1a9e7312f23309c59c67ff0a09a9b9214e52f09077
 DIST nvidia-settings-304.137.tar.bz2 1481361 BLAKE2B 
cf52a55a34eeb03a685a683487af6a198ba467dd8ba9983cc75624a37a226373cd931d98e8448b7b8ed430c54be2118c7b240ed2a9100b19bec5e832e2f6cdad
 SHA512 
676d1f70c9a78ee234f5f1a283412430a386fa604de211afba02806a45906c5e246a002989b724d74752178d28c92a268de1c98d4c87876797d991253f16b0cc
 DIST nvidia-settings-340.106.tar.bz2 1549841 BLAKE2B 
3419467424bc05a4a36f588e326eac4214250686f54c6c440c9a46

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

2018-05-06 Thread Jeroen Roovers
commit: 4c4167eb9a842d3c3bd317d5a12b786befac3d15
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun May  6 12:31:16 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun May  6 12:48:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4167eb

net-libs/libnetfilter_conntrack: Stable for HPPA too.

Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --ignore-arches

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

diff --git 
a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.6.ebuild 
b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.6.ebuild
index 07a528c7bba..78d1ac2d2e3 100644
--- a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.6.ebuild
+++ b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.6.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 IUSE="static-libs"
 
 RDEPEND="



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

2018-05-06 Thread Christoph Junghans
commit: ff7ab2347b054f1f621f13036309be2d4cb020b2
Author: Christoph Junghans  gentoo  org>
AuthorDate: Sun Feb 12 17:50:10 2017 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Sun May  6 13:13:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7ab234

mercurial.eclass: add EHG_CONFIG (bug #608974)

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

 eclass/mercurial.eclass | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/eclass/mercurial.eclass b/eclass/mercurial.eclass
index ad3102b7590..9a5bd191c23 100644
--- a/eclass/mercurial.eclass
+++ b/eclass/mercurial.eclass
@@ -57,15 +57,19 @@ DEPEND="dev-vcs/mercurial"
 : ${EHG_QUIET:="OFF"}
 [[ "${EHG_QUIET}" == "ON" ]] && EHG_QUIET_CMD_OPT="--quiet"
 
+# @ECLASS-VARIABLE: EHG_CONFIG
+# @DESCRIPTION:
+# Extra config option to hand to hg clone/pull
+
 # @ECLASS-VARIABLE: EHG_CLONE_CMD
 # @DESCRIPTION:
 # Command used to perform initial repository clone.
-[[ -z "${EHG_CLONE_CMD}" ]] && EHG_CLONE_CMD="hg clone ${EHG_QUIET_CMD_OPT} 
--pull --noupdate"
+[[ -z "${EHG_CLONE_CMD}" ]] && EHG_CLONE_CMD="hg clone ${EHG_CONFIG:+--config 
${EHG_CONFIG}} ${EHG_QUIET_CMD_OPT} --pull --noupdate"
 
 # @ECLASS-VARIABLE: EHG_PULL_CMD
 # @DESCRIPTION:
 # Command used to update repository.
-[[ -z "${EHG_PULL_CMD}" ]] && EHG_PULL_CMD="hg pull ${EHG_QUIET_CMD_OPT}"
+[[ -z "${EHG_PULL_CMD}" ]] && EHG_PULL_CMD="hg pull ${EHG_CONFIG:+--config 
${EHG_CONFIG}} ${EHG_QUIET_CMD_OPT}"
 
 # @ECLASS-VARIABLE: EHG_OFFLINE
 # @DESCRIPTION:
@@ -134,6 +138,7 @@ mercurial_fetch() {
hg clone \
${EHG_QUIET_CMD_OPT} \
--updaterev="${EHG_REVISION}" \
+   ${EHG_CONFIG:+--config ${EHG_CONFIG}} \
"${EHG_STORE_DIR}/${EHG_PROJECT}/${module}" \
"${sourcedir}" || die "hg clone failed"
# An exact revision helps a lot for testing purposes, so have some 
output...



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

2018-05-06 Thread Mart Raudsepp
commit: cf3afd194a9315880419c1440d05e059a19de3ef
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:11:01 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:19:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf3afd19

profiles/arch/arm64: Stable unmask font-ebdftopcf.eclass based USE=X

 profiles/arch/arm64/package.use.stable.mask | 2 --
 1 file changed, 2 deletions(-)

diff --git a/profiles/arch/arm64/package.use.stable.mask 
b/profiles/arch/arm64/package.use.stable.mask
index 60fc2263d94..5aa12914ae3 100644
--- a/profiles/arch/arm64/package.use.stable.mask
+++ b/profiles/arch/arm64/package.use.stable.mask
@@ -59,8 +59,6 @@ dev-python/pyyaml libyaml
 dev-python/setuptools_scm mercurial test
 dev-python/sphinx latex test
 dev-python/twisted-core gtk serial
-media-fonts/baekmuk-fonts X
-media-fonts/liberation-fonts X
 net-analyzer/netcat crypt
 
 # Michał Górny  (07 Feb 2018)



[gentoo-commits] repo/gentoo:master commit in: x11-proto/fontsproto/

2018-05-06 Thread Mart Raudsepp
commit: 4bcead356b05c3ec362c597288097d41aeff5b32
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:04:56 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:17:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bcead35

x11-proto/fontsproto: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 x11-proto/fontsproto/fontsproto-2.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/fontsproto/fontsproto-2.1.3-r1.ebuild 
b/x11-proto/fontsproto/fontsproto-2.1.3-r1.ebuild
index 39a241368fc..a6e91bb25ee 100644
--- a/x11-proto/fontsproto/fontsproto-2.1.3-r1.ebuild
+++ b/x11-proto/fontsproto/fontsproto-2.1.3-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
 IUSE=""
 
 DEPEND=""



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

2018-05-06 Thread Mart Raudsepp
commit: b7b2ab287b96fa3532021e89dbc83d8bd33ee37f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 12:26:47 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:17:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7b2ab28

media-libs/jbig2dec-0.13-r4: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild 
b/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild
index 387218d0d0f..c982b854cbc 100644
--- a/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild
+++ b/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="http://downloads.ghostscript.com/public/${PN}/${P}.tar.gz
 
 LICENSE="AGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris"
 IUSE="png static-libs test"
 
 RDEPEND="png? ( media-libs/libpng:0= )"



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

2018-05-06 Thread Mart Raudsepp
commit: 81e37978948c89739fcff4c29074f34a6899bec8
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 11:55:09 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:17:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81e37978

dev-perl/CGI-4.360.0: arm64 stable (bug #652502)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-perl/CGI/CGI-4.360.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/CGI/CGI-4.360.0.ebuild b/dev-perl/CGI/CGI-4.360.0.ebuild
index 5bd844c6940..5a23fbf83ee 100644
--- a/dev-perl/CGI/CGI-4.360.0.ebuild
+++ b/dev-perl/CGI/CGI-4.360.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Simple Common Gateway Interface Class"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-apps/bdftopcf/

2018-05-06 Thread Mart Raudsepp
commit: 6c214c806e5e8231a639546d688df569bde4c9df
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:10:15 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:18:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c214c80

x11-apps/bdftopcf-1.1: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 x11-apps/bdftopcf/bdftopcf-1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/bdftopcf/bdftopcf-1.1.ebuild 
b/x11-apps/bdftopcf/bdftopcf-1.1.ebuild
index 069fbeda36a..bbf86bf00ad 100644
--- a/x11-apps/bdftopcf/bdftopcf-1.1.ebuild
+++ b/x11-apps/bdftopcf/bdftopcf-1.1.ebuild
@@ -7,7 +7,7 @@ inherit xorg-2
 
 DESCRIPTION="X.Org bdftopcf application"
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 DEPEND="
x11-proto/fontsproto



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

2018-05-06 Thread Mart Raudsepp
commit: 768cf6af6b5db9d99a6ea06278cddd720a6ac416
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:15:29 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:19:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=768cf6af

media-libs/netpbm: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-libs/netpbm/netpbm-10.70.00.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/netpbm/netpbm-10.70.00.ebuild 
b/media-libs/netpbm/netpbm-10.70.00.ebuild
index 744a1e4d644..d43ef5f78bf 100644
--- a/media-libs/netpbm/netpbm-10.70.00.ebuild
+++ b/media-libs/netpbm/netpbm-10.70.00.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="4"
@@ -11,7 +11,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc jbig jpeg jpeg2k png rle cpu_flags_x86_sse2 static-libs svga tiff X 
xml zlib"
 
 RDEPEND="jbig? ( media-libs/jbigkit )



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

2018-05-06 Thread Mart Raudsepp
commit: 6b091b7a467747f25fcecc46580775d7f16a1a2f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 11:50:41 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:16:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b091b7a

app-arch/tar-1.29-r3: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-arch/tar/tar-1.29-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/tar/tar-1.29-r3.ebuild b/app-arch/tar/tar-1.29-r3.ebuild
index a509618d212..7f8e1ba1631 100644
--- a/app-arch/tar/tar-1.29-r3.ebuild
+++ b/app-arch/tar/tar-1.29-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/tar/${P}.tar.bz2
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="acl elibc_glibc minimal nls selinux static userland_GNU xattr"
 
 RDEPEND="acl? ( virtual/acl )



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

2018-05-06 Thread Mart Raudsepp
commit: 6df41fd7a3063106cdd421493c018ba79fc643d1
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 12:10:32 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:17:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df41fd7

profiles/arch/arm64: Remove USE=jpeg2k stable-mask - jasper is stable now

 profiles/arch/arm64/use.stable.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/use.stable.mask 
b/profiles/arch/arm64/use.stable.mask
index 97088e06cbb..0cfed01ccad 100644
--- a/profiles/arch/arm64/use.stable.mask
+++ b/profiles/arch/arm64/use.stable.mask
@@ -45,10 +45,6 @@ tk
 # app-text/ghostscript-gpl is not stable here.
 postscript
 
-# Michał Górny  (19 Feb 2018)
-# media-libs/jasper is not stable here.
-jpeg2k
-
 # Mart Raudsepp  (24 Dec 2017)
 # dev-libs/libressl not marked stable yet
 libressl



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

2018-05-06 Thread Mart Raudsepp
commit: 945b484389814c63bf809b743dbea9d605a1729d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 11:53:42 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:16:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=945b4843

dev-libs/libusb-1.0.21: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-libs/libusb/libusb-1.0.21.ebuild 
b/dev-libs/libusb/libusb-1.0.21.ebuild
index d7128f492b8..2dda5380e9e 100644
--- a/dev-libs/libusb/libusb-1.0.21.ebuild
+++ b/dev-libs/libusb/libusb-1.0.21.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.bz2";
 
 LICENSE="LGPL-2.1"
 SLOT="1"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 -x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 -x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 IUSE="debug doc examples static-libs test udev"
 
 RDEPEND="udev? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP},static-libs?] )"



[gentoo-commits] repo/gentoo:master commit in: app-portage/elt-patches/

2018-05-06 Thread Mart Raudsepp
commit: d21e6a94892bd89682d6e5064571884920a5bf08
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 11:51:31 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:16:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d21e6a94

app-portage/elt-patches-20170815: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-portage/elt-patches/elt-patches-20170815.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-portage/elt-patches/elt-patches-20170815.ebuild 
b/app-portage/elt-patches/elt-patches-20170815.ebuild
index 4121e17b55a..0911da2ad6a 100644
--- a/app-portage/elt-patches/elt-patches-20170815.ebuild
+++ b/app-portage/elt-patches/elt-patches-20170815.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.xz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~x86-cygwin ~amd64-linux ~arm-linux ~arm64-linux 
~ppc64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~x86-cygwin ~amd64-linux ~arm-linux ~arm64-linux 
~ppc64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE=""
 
 RDEPEND="sys-apps/gentoo-functions"



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

2018-05-06 Thread Mart Raudsepp
commit: 885c2813420ef35cd78d20d466d7936143a8d0de
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 12:31:21 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:17:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=885c2813

profiles/arch/arm64: Stable-mask USE=cups for now

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

diff --git a/profiles/arch/arm64/use.stable.mask 
b/profiles/arch/arm64/use.stable.mask
index 0cfed01ccad..17dd64bb99a 100644
--- a/profiles/arch/arm64/use.stable.mask
+++ b/profiles/arch/arm64/use.stable.mask
@@ -4,6 +4,10 @@
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in use.mask
 
+# Mart Raudsepp  (06 May 2018)
+# net-print/cups not stable yet
+cups
+
 # Michał Górny  (16 Apr 2018)
 # Not stable yet.
 vala



[gentoo-commits] repo/gentoo:master commit in: media-fonts/arphicfonts/

2018-05-06 Thread Mart Raudsepp
commit: 4f995b716541dbccb7e3609363af4e56d319daec
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 12:55:38 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:17:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f995b71

media-fonts/arphicfonts: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-fonts/arphicfonts/arphicfonts-0.2.20080216.1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-fonts/arphicfonts/arphicfonts-0.2.20080216.1-r2.ebuild 
b/media-fonts/arphicfonts/arphicfonts-0.2.20080216.1-r2.ebuild
index 50436504483..e1a4f8d96f1 100644
--- a/media-fonts/arphicfonts/arphicfonts-0.2.20080216.1-r2.ebuild
+++ b/media-fonts/arphicfonts/arphicfonts-0.2.20080216.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ 
SRC_URI="mirror://gnu/non-gnu/chinese-fonts-truetype/gkai00mp.ttf.gz
 
 LICENSE="Arphic"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE=""
 
 DEPEND="media-gfx/fontforge"



[gentoo-commits] repo/gentoo:master commit in: media-libs/jasper/, profiles/arch/arm64/

2018-05-06 Thread Mart Raudsepp
commit: b9c163766d1286738152894f47fe1029e7ce16d8
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 12:07:24 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:17:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9c16376

media-libs/jasper-2.0.14: arm64 stable with USE=opengl stable mask

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-libs/jasper/jasper-2.0.14.ebuild  | 2 +-
 profiles/arch/arm64/package.use.stable.mask | 4 
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/media-libs/jasper/jasper-2.0.14.ebuild 
b/media-libs/jasper/jasper-2.0.14.ebuild
index fd9bf7d23be..bea8a9231ea 100644
--- a/media-libs/jasper/jasper-2.0.14.ebuild
+++ b/media-libs/jasper/jasper-2.0.14.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
 else
inherit vcs-snapshot
SRC_URI="https://github.com/mdadams/${PN}/archive/version-${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 fi
 
 # We limit memory usage to 128 MiB by default, specified in bytes

diff --git a/profiles/arch/arm64/package.use.stable.mask 
b/profiles/arch/arm64/package.use.stable.mask
index d50e4b8f1dd..60fc2263d94 100644
--- a/profiles/arch/arm64/package.use.stable.mask
+++ b/profiles/arch/arm64/package.use.stable.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Mart Raudsepp  (06 May 2018)
+# No media-libs/freeglut and co stable yet
+media-libs/jasper opengl
+
 # Mart Raudsepp  (04 May 2018)
 # sci-libs/mpir fails tests, bug 640424
 dev-python/gmpy mpir



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/arm64/, media-gfx/fontforge/

2018-05-06 Thread Mart Raudsepp
commit: 68ca02ca7e6125ebfceadd734cc16ca450e8d883
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 12:48:15 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:17:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68ca02ca

media-gfx/fontforge: arm64 stable, stable unmask USE=fontforge

fontforge[truetype-debugger] itself needs freetype[fontforge], thus
unmask the USE flag in the same commit.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-gfx/fontforge/fontforge-20170731-r3.ebuild | 2 +-
 profiles/arch/arm64/use.stable.mask  | 4 
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/media-gfx/fontforge/fontforge-20170731-r3.ebuild 
b/media-gfx/fontforge/fontforge-20170731-r3.ebuild
index ccf771d5745..4fd342e7190 100644
--- a/media-gfx/fontforge/fontforge-20170731-r3.ebuild
+++ b/media-gfx/fontforge/fontforge-20170731-r3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/fontforge/fontforge/releases/download/${PV}/fontforg
 
 LICENSE="BSD GPL-3+"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="cairo truetype-debugger gif gtk jpeg png +python readline test tiff svg 
unicode X"
 
 RESTRICT="!test? ( test )"

diff --git a/profiles/arch/arm64/use.stable.mask 
b/profiles/arch/arm64/use.stable.mask
index 17dd64bb99a..4d376e182d8 100644
--- a/profiles/arch/arm64/use.stable.mask
+++ b/profiles/arch/arm64/use.stable.mask
@@ -13,10 +13,6 @@ cups
 vala
 webp
 
-# Mart Raudsepp  (03 Mar 2018)
-# media-gfx/fontforge not marked stable yet
-fontforge
-
 # Mart Raudsepp  (02 Mar 2018)
 # Neither x11-libs/gtk+ SLOT marked stable yet
 gtk



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-Unidecode/

2018-05-06 Thread Mart Raudsepp
commit: a71eb08bac447d19df8cba8e893dc5d07ca070fa
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 11:58:59 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:17:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a71eb08b

dev-perl/Text-Unidecode-1.270.0: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-perl/Text-Unidecode/Text-Unidecode-1.270.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Text-Unidecode/Text-Unidecode-1.270.0.ebuild 
b/dev-perl/Text-Unidecode/Text-Unidecode-1.270.0.ebuild
index 367bb3e3d71..56eb8514bb2 100644
--- a/dev-perl/Text-Unidecode/Text-Unidecode-1.270.0.ebuild
+++ b/dev-perl/Text-Unidecode/Text-Unidecode-1.270.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Plain ASCII transliterations of Unicode text"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND=""



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

2018-05-06 Thread Mart Raudsepp
commit: f8491fe7bb92df9475c971342822e7404c2f42cc
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:08:59 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:18:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8491fe7

media-gfx/ebdftopcf: arm64 stable

Straight to stable as a tiny ALLARCHES Makefile snippet

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/media-gfx/ebdftopcf/ebdftopcf-2.ebuild 
b/media-gfx/ebdftopcf/ebdftopcf-2.ebuild
index 8a1bf3a4718..05f39e9d609 100644
--- a/media-gfx/ebdftopcf/ebdftopcf-2.ebuild
+++ b/media-gfx/ebdftopcf/ebdftopcf-2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 IUSE=""
 
 DEPEND=""



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

2018-05-06 Thread Mart Raudsepp
commit: 9edeaeb05a834519c3b951bf1feb1760da5f1872
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:14:07 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:19:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9edeaeb0

profiles/arch/arm64: Remove USE=postscript stable-mask

ghostscript-gpl is stable now

 profiles/arch/arm64/use.stable.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/use.stable.mask 
b/profiles/arch/arm64/use.stable.mask
index 4d376e182d8..f15af86c90f 100644
--- a/profiles/arch/arm64/use.stable.mask
+++ b/profiles/arch/arm64/use.stable.mask
@@ -41,10 +41,6 @@ postgres
 # dev-lang/tk is not stable here.
 tk
 
-# Michał Górny  (19 Feb 2018)
-# app-text/ghostscript-gpl is not stable here.
-postscript
-
 # Mart Raudsepp  (24 Dec 2017)
 # dev-libs/libressl not marked stable yet
 libressl



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

2018-05-06 Thread Mart Raudsepp
commit: f72c7891d2951a82f6a45284b7b2994cdf30ebd5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:13:22 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:19:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f72c7891

app-text/ghostscript-gpl: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild 
b/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild
index 920dde9672f..89941fe85f3 100644
--- a/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild
+++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="AGPL-3 CPL-1.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="cups dbus gtk l10n_de static-libs tiff unicode X"
 
 COMMON_DEPEND="



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

2018-05-06 Thread Mart Raudsepp
commit: 09d73cbe2e824269deb5b0cdfd2045078de80601
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:29:23 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:29:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d73cbe

sys-apps/help2man-1.47.4: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/sys-apps/help2man/help2man-1.47.4.ebuild 
b/sys-apps/help2man/help2man-1.47.4.ebuild
index 4af6edd8e5e..c3def6fa219 100644
--- a/sys-apps/help2man/help2man-1.47.4.ebuild
+++ b/sys-apps/help2man/help2man-1.47.4.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="nls"
 
 RDEPEND="dev-lang/perl



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Time-HiRes/

2018-05-06 Thread Mart Raudsepp
commit: 5fffe238e32e4733236c9e09a0907a55e87e7913
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:30:35 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:30:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fffe238

virtual/perl-Time-HiRes-1.974.100-r2: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r2.ebuild 
b/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r2.ebuild
index 0f8c6ee4a95..3e6bbc9d21f 100644
--- a/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r2.ebuild
+++ b/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND="
|| ( =dev-lang/perl-5.26* =dev-lang/perl-5.24.4* =dev-lang/perl-5.24.3* 
~perl-core/${PN#perl-}-${PV} )



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

2018-05-06 Thread Mart Raudsepp
commit: 9dc21ebff27d128567055942f4b4855b4c827bb6
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:39:57 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:39:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dc21ebf

profiles/arch/arm64: Mask >=dev-ruby/thor-0.20.0[test]

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

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 206d918e84d..4ca45bdc60d 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Mart Raudsepp  (06 May 2018)
+# New enough dev-ruby/webmock not keyworded yet
+>=dev-ruby/thor-0.20.0 test
+
 # Michał Górny  (15 Apr 2018)
 # Unkeyworded dependencies.
 app-admin/syslog-ng mongodb



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

2018-05-06 Thread Mart Raudsepp
commit: aabb0159077fac6656512d9f07987bc9c013eaa5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 13:41:57 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 13:42:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aabb0159

dev-ruby/thor-0.20.0: restore ~arm64 keyword to fix deptree fallout

This reverts commit 50a6edc2d765b4 after package.use.masking tests, to
contain the fallout better.. Blindly - thor not actually tested by me.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-ruby/thor/thor-0.20.0.ebuild b/dev-ruby/thor/thor-0.20.0.ebuild
index add426d4766..60e9b5f0218 100644
--- a/dev-ruby/thor/thor-0.20.0.ebuild
+++ b/dev-ruby/thor/thor-0.20.0.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/erikhuda/${PN}/archive/v${PV}.tar.gz -> ${PN}-git-${
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux"
 IUSE="doc"
 
 USE_RUBY="ruby22 ruby23 ruby24" ruby_add_bdepend "



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

2018-05-06 Thread Alice Ferrazzi
commit: b9b0141d45feb768ac8707ed343ec0e05cb3ebf6
Author: Karl Linden  gmail  com>
AuthorDate: Sat May  5 05:56:38 2018 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sun May  6 14:10:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9b0141d

sys-kernel/rt-sources: version bump to 4.16.7_p1

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-kernel/rt-sources/Manifest|  5 +++
 sys-kernel/rt-sources/rt-sources-4.16.7_p1.ebuild | 54 +++
 2 files changed, 59 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index fbd3a93b6af..0a876ca58b4 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -1,16 +1,19 @@
 DIST deblob-3.18 127087 BLAKE2B 
2108917cc6c44bf02afabd1d296f5f1806741a4f92005bb3747956daeb14554fb31b2804a52c9814091177c7ae926ec82941fffb951325cd7dbf24a06286f176
 SHA512 
6fe33762ba19aad7ff891b7b805cc26f6e2926f5e40c92fa45bc7f31bdeb5c8fc42b97e5d37d71b9422da239c7c54abd25f1fa2fa1e5733c6053abbf4c9e9011
 DIST deblob-4.1 130695 BLAKE2B 
55b914b4e502019018f71bc14db82d5ed73dda0e4c46436e491ddc8762144161e74583e321900d59b5a45c2958dec8015afb6f10908071de2d50d1572cb5dd12
 SHA512 
b861b9b53f9295e5e993784031ce57cf8cddc418184ec00c28ed92c9e7660406e0ede581a93d0def36e7847b8e068c8ca6c4dfdd65c15cb174d6c5803c16214a
 DIST deblob-4.14 143883 BLAKE2B 
aaad9858bf626f1495f83187fd2ab91f812504534c7294cfb6818c773229eb780096a2c78a6aa963f3826df3cfdf7a7db5238f71fa8955c21b4acd75660d2b17
 SHA512 
662a11c03f51d85158175a8bf35fce20f01d94659d36b97a9773304ff9c091b2a9ab72a0445065c20188457fbe174fb43334a79e17b3a9e8553bb6144a971f4c
+DIST deblob-4.16 142787 BLAKE2B 
8c43d5487ea8bf78861c582f71206e1d90ad23aad57a0100bea19fb7dd1a3627e4138c3284f31ef292f4c810f6f315718080316e00fb0388cfd997276d170458
 SHA512 
5f2e0d7cc3adad0ba8f46a2c23041078105778854e87f3a5fb139cdd58151e4cca8690ab99e20026c3a966dc7c414e154c3b395e4e5ab5d744eece3cb9019d02
 DIST deblob-4.4 137370 BLAKE2B 
05f96867d5e50e4bc6ea8073f6f0400c2af27bd920a7732f9a9b30e7d1181fe9de745de239b2c5cf12ef647adf1f169180627fd71eb2316d994488fb3e799ca4
 SHA512 
ea5f2f2cdbc97bdc90c2131f846761dc1630a53986db10d8e9d07d1ddee12a9d878c57790edd3ecc75ed9792d479b7b726c39d688a3926e850608c81b1b78a3a
 DIST deblob-4.9 146273 BLAKE2B 
8bc593ca375e003183dc6260aab0b2f81675b0814ec50fae3afe5d4ce9ce41c1c1401ce80e1c285153f610f8f730f82d6ad03e2578c792fd4af8779f2d1e3079
 SHA512 
3654b28e72b343bafdb38de10ef0c3621db0539bc0e7434bc99bb8f8ed911d4c9e53ca4785fd193fcfec369328f014fa5c6f3bda51b6f1a8f98b8c37ece119a6
 DIST deblob-check-3.18 654232 BLAKE2B 
ffcd72a9c86ea2fb107b7791053ef25bc99f09a6b55bbac742fecdb1e49bce4ac871f7b5b3d5c888b28d8b95217feb543c2c8cffe47d5dc1d99386d14c2ca8ad
 SHA512 
2cff9abef479a55dd6a0699371be8227ba63b18da1fb153d5df382e0a5e4f1b745b7de256a367a36efa9d12e2aad5622cc288efef009feebf81c108dbef4fe16
 DIST deblob-check-4.1 674781 BLAKE2B 
3883506b2a05d06f4cfc2602ea64808025992080905d38e99866b2536393cae28a03695a8d1f4038e0297af8b370ab62e579c189d0119904d7dd783a89940b46
 SHA512 
51fe9d70d723992aaf70f8bfcfcc12ecfedd7a039402ddae07858fb087693b00cd80d1e0e1a5053e049f2a2b8c58ed23e4598e2dae902c499c08bc2eeb33
 DIST deblob-check-4.14 755969 BLAKE2B 
5573bdf913554e23dba3d3c56227a2c8c3fcfad7f4a99e1ec9208171008b5d2d50bdc55000672af95e020ef8171325b9d1797a69c988b4df5b0f71bc2a186fad
 SHA512 
09626864cea33804d3dc94ceb691b24b6c14d1b9531eee8e745276dbc403903d762b1f75d685bf831f42b942d6f7ea265efb0d4889fecc976d95b11faf843fd3
+DIST deblob-check-4.16 767829 BLAKE2B 
606d87e6dff29ef1d9704e0a4b767cc5586d300d5e55d3370feb721d2a5bb6c6e6d7a48783021776b7ac347a3580b66725012213c9548a69bf96de91bf01a8ca
 SHA512 
b9b179117356809e55f99b966121bac67f634112bd3b54c3320c9a261967d18462c7f322416cd7d9b2c8d9d374fb37daeda8abe4fb3f013abb2f7da845b2f516
 DIST deblob-check-4.4 694225 BLAKE2B 
9369f81751bc80d97c37a07ce92628d212185a4ccd1b1d4ed3b21972f4a135e93910271f0e80a35bb8695d1b9ef6d30c8d303abe51814275115735a8043ddc21
 SHA512 
6554ae567566da4d30e94a37622f88343b8e96ab39a9204fee34de4ddb5dac8c4906b25843b63c2388d03a4441821c25d395b3c39fc875c498a69e677a4f0cb5
 DIST deblob-check-4.9 717834 BLAKE2B 
f2471b45f6953ce83c0819b9157ce638a1d93959ec4074a329766ecb0c3adf90fd3022307ea70c2cb3bd3c291f98d6153576cc6597c62ca97abae6524b98112e
 SHA512 
46258698f1c574b44a8c5c78cc2b7fdbaca746976266974ee0f6787904531754b17ad15d542b68e07d4633ee91a8e2d9c32a991ea214292ac072c4f26deed9c9
 DIST linux-3.18.tar.xz 80934708 BLAKE2B 
cf796fa1eb24276470b51bd3754f02932e57c6469e45959893b3714457ba33f0081ff04137990f228e1aae6d42a05073478a3ef932df468af7cd02bf8c8836c4
 SHA512 
2f0b72466e9bc538a675738aa416573d41bbbd7e3e2ffd5b5b127afde609ebc278cec5a3c37e73479607e957c13f1b4ed9782a3795e0dcc2cf8e550228594009
 DIST linux-4.1.tar.xz 83017828 BLAKE2B 
d1dc4e458db191f16306b3d2d7eb60ef5e04307406c769cccdd88beb407f8de228ab1f095a44d6e992b06d01cd896fda31dec1cdf16667f4ca0b628da594aee3
 SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176

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

2018-05-06 Thread Alice Ferrazzi
commit: a172a228af68d69ce919c6970db9e7e75725065d
Author: Karl Linden  gmail  com>
AuthorDate: Sat May  5 05:53:27 2018 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sun May  6 14:10:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a172a228

sys-kernel/rt-sources: version bump to 4.4.131_p147

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

 sys-kernel/rt-sources/Manifest |  2 +
 .../rt-sources/rt-sources-4.4.131_p147.ebuild  | 58 ++
 2 files changed, 60 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 0a29a759cda..9c491b138f5 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -29,5 +29,7 @@ DIST patch-4.4.120-rt135.patch.xz 194592 BLAKE2B 
abaac0132b0b35d02e107af1bc412c2
 DIST patch-4.4.120.xz 1718956 BLAKE2B 
06df2a0f9ce7ec7d813e6101a5fe5704adf6303c516193d8f53f5f3486a4f9b16c3842797ffa99d9e8daa5f3c1b20366ef2971c8f22aed1de443f4958946de6c
 SHA512 
dd879f449840f380287bda06fe27453768b65493edee8f162cf17d3268f838acbbea375633412f1c0f8bc24b41fe153d610cbbca205cd7c8891bfe8f398f3ec2
 DIST patch-4.4.126-rt141.patch.xz 194488 BLAKE2B 
8af6171724d92813c6edaa6be86ae460469964d395e9bc83360d423132a14394950d579b7e3eeacb4fecb284e3550c84297d4cbe4c44389baa8bccdf7fbb2615
 SHA512 
ca473fff80bfd1f9c10ac6d3d92c661418b4b01ac2def910ac454b14dd2deb3bc9f341f7b9a2ad4f66f31331423686d7f28349ff46845d6f55de454853fecc80
 DIST patch-4.4.126.xz 1784496 BLAKE2B 
e2a72fdb84d8c88bdcd3d47719712df7eaa9ab37e1f4a4feef8ebb3dd9b14b67c447a5bd260e4fb4c40a72c4b1527922175caa5648250f8486f8a2a74783e87a
 SHA512 
7f53db4c7d34ec19732d0b9f1b994ee5817096a59daf8116efa64fe3776edba74060915af2765e641edce6a40acda7cc6b7cce131aa8ac6a7f643f0f4e0a177e
+DIST patch-4.4.131-rt147.patch.xz 196092 BLAKE2B 
537b64e39785b6a992d901b921e3847bd17266a98f3c64d9af68e9828fa99c3d29293c9ddca8682b70e1e6df5b66cb27bdc9de0c39673a6ba389ac69dedc4ed6
 SHA512 
5cfdc1202eb85cb6ff677fd750932d696d1e9f1d938bc97990bd9876787c815fc0934f056ef049812662c061dea08b7ac25bfd0410d2bb8dd3c13b11dd8143d7
+DIST patch-4.4.131.xz 1871404 BLAKE2B 
3d7729d4e3ce75888670d57368b651f2750f46e4c94826525095b791f6717badefede520a144b098fffb9ac08b3a08d0c567f0e391b94cff8869cdb6afe9592d
 SHA512 
856ef10be19b07a2e1fbc777dd0052a145f5ca49c59b29ec4e5205babd478d623bfef40ed06c2fa113292e512701b4dbc67723cf1a946f27ce38b601d003bff2
 DIST patch-4.9.84-rt62.patch.xz 173640 BLAKE2B 
e79032ab9137270e8144d5a1a9faa2897c1013a6380394e1a379d8f6aaccb69b4c2f107c793d70fa540c1f43c610076bd2ecd37b274f4c3701b2081ab55a6012
 SHA512 
e273d384d845478e7b3ce55be56bddf74e1b18c0b70aaad92dcc73bdf949337a10ee41c6c3ebca7057988cfb88b762ebd5657a29ea47e684c6d10d83c0c03f7c
 DIST patch-4.9.84.xz 1512620 BLAKE2B 
8f3ff14ed541bebbc841af845fcd6182d67a347363c1b9e2ea446653809025d414d478c228a7a7daca3c29706c6a541edceefcabc82dd7dda065f27d7aa16a23
 SHA512 
0c7f6dfe4ccd548a12c734f3d4faf52dcc221fbbb709cfc7a25c73a57f0fdee6141244b6d475e0bbb994fd148bacdd5e565ac020b6cbf4631da063f64a59ec83

diff --git a/sys-kernel/rt-sources/rt-sources-4.4.131_p147.ebuild 
b/sys-kernel/rt-sources/rt-sources-4.4.131_p147.ebuild
new file mode 100644
index 000..1ca2170247a
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-4.4.131_p147.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/";
+
+inherit versionator
+
+CKV="$(get_version_component_range 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE} \
+   
mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE}"
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+PATCHES=(
+   "${FILESDIR}"/rt-sources-posix-printf.patch # 627068
+)
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+   -i "${S}/kernel/Kconfig.preempt"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the Gentoo Kernel Project in any 
way."
+   ewarn "If you need support, please contact the RT project developers 
directly."
+   ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues 
with"
+   ewarn "the ebuilds."
+   ewarn
+}
+
+K_EXTRAEINFO="For more info on rt-sources and details on how to repor

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

2018-05-06 Thread Alice Ferrazzi
commit: 2c72679826571354b7c959de0cedc510f8bda7f7
Author: Karl Linden  gmail  com>
AuthorDate: Sat May  5 05:54:18 2018 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sun May  6 14:10:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c726798

sys-kernel/rt-sources: version bump to 4.14.39_p29

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-kernel/rt-sources/Manifest |  2 +
 .../rt-sources/rt-sources-4.14.39_p29.ebuild   | 54 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 9c491b138f5..fbd3a93b6af 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -25,6 +25,8 @@ DIST patch-4.14.29-rt25.patch.xz 226432 BLAKE2B 
a3022401b464eb89a4bbbfb96071e1ef
 DIST patch-4.14.29.xz 842604 BLAKE2B 
368ac0197568441621a54a212544d0bfd40e23bcc71a9ce3feda8ea9669c5487f4e5661f0678bb3c9436bc8f98e3a42523d061a0ca7ab916a09593f5bb55eee2
 SHA512 
f2e87f9205924097b5aaa39ca6967449fa78a9a13d27fd4edac829cbb411f28881b2dc4fc5f8c270ec8673118bf260f7411646f0900c00f8511283fe0eb3c7e7
 DIST patch-4.14.34-rt27.patch.xz 229500 BLAKE2B 
15ecc312787314bd72caeb03aaedf1dc3ad161ef8a1062bb166e324eb33d71ad7881984c5b9d4f382bd49827747397eceeec688a99a2bf03f08ecddadacaf307
 SHA512 
4ed0ca1ddb90401afff3c5b09c2c657046f6c1ce0c102bfbed4f467e8adc7817f36508aaaeba170c964be00e1ca82aff612042b931597c24b0fbb8bb7c3ae47e
 DIST patch-4.14.34.xz 939276 BLAKE2B 
69bb29dba7b4dc463310325c1fa1b7497c353cc0534eecdf084f01d5fe9b01a8e0b3f02714e6759806d8c2f90424800c59cc197907bb66d441f1178bb6a10606
 SHA512 
1aff1ad1294e0d22ae1de0bbcb1d05269a9cc7bfeb6bc885bd9ee445198b30951d7d7918bf33152579415db2a4afe018d4b21c1fea5dd4d5e5014662fd870acf
+DIST patch-4.14.39-rt29.patch.xz 229716 BLAKE2B 
f89a355f677d10268e6928a86f83bd8cfaec7a421f899c862f0e8c265f1101fe6a6b836588b1bad6b4c7b7f22ddc79fbd852cf419cf0d72d069d9356338e31df
 SHA512 
b50f62eb6310151da88c73caef4749dbfc1aaea2529cbc33946211524aaf8c08d5e102e81d60d449f5e969f97b2d2adf9596ab967452ba8efa18315a87c55326
+DIST patch-4.14.39.xz 1091116 BLAKE2B 
5b3b9d1f2a02eb0eb4713f571acd0ae78a4b66dea671ef06519f980c373a5c9632047bd74078ce7366c7a0d49d3f98363b0f5cd7aae3e179c74b205380015ff9
 SHA512 
28568e50fc70016426b65706f3de12cd723d7e5d5d88a23bbb02915b221db904744108328c3a63bb3f620e059f116930bb0b2d16271b53ed70dc320f6f3daf69
 DIST patch-4.4.120-rt135.patch.xz 194592 BLAKE2B 
abaac0132b0b35d02e107af1bc412c239fd27d20513f7dda0af9cfc6a9661a5d3cff4ede0309ee41cefcd4671e6c0bb8b3833c6bb30752cc02b963238fe6e9dd
 SHA512 
61dcbe07ab2fe307cae1ac59822afce50999fd817f503f8a1cf8a7686ea0bfefbd99fb2d660e557f94af8523923faba2e00a68e973792b633a7cc7be1c0df6a4
 DIST patch-4.4.120.xz 1718956 BLAKE2B 
06df2a0f9ce7ec7d813e6101a5fe5704adf6303c516193d8f53f5f3486a4f9b16c3842797ffa99d9e8daa5f3c1b20366ef2971c8f22aed1de443f4958946de6c
 SHA512 
dd879f449840f380287bda06fe27453768b65493edee8f162cf17d3268f838acbbea375633412f1c0f8bc24b41fe153d610cbbca205cd7c8891bfe8f398f3ec2
 DIST patch-4.4.126-rt141.patch.xz 194488 BLAKE2B 
8af6171724d92813c6edaa6be86ae460469964d395e9bc83360d423132a14394950d579b7e3eeacb4fecb284e3550c84297d4cbe4c44389baa8bccdf7fbb2615
 SHA512 
ca473fff80bfd1f9c10ac6d3d92c661418b4b01ac2def910ac454b14dd2deb3bc9f341f7b9a2ad4f66f31331423686d7f28349ff46845d6f55de454853fecc80

diff --git a/sys-kernel/rt-sources/rt-sources-4.14.39_p29.ebuild 
b/sys-kernel/rt-sources/rt-sources-4.14.39_p29.ebuild
new file mode 100644
index 000..ad4f19f2289
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-4.14.39_p29.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/";
+
+inherit versionator
+
+CKV="$(get_version_component_range 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE} \
+   
mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE}"
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+   -i "${S}/kernel/Kconfig.preempt"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the Gentoo Kernel Project in any 
way."
+   ewarn "If you need support, please contact the RT project developers 
directly."
+   ewarn "Do 

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

2018-05-06 Thread Aaron Bauman
commit: e9b857bfd20dfe00424f24b4ab948fd8e89ef5bf
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun May  6 10:09:12 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May  6 14:13:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9b857bf

net-libs/libsmi: use HTTPS

 net-libs/libsmi/libsmi-0.4.8-r1.ebuild | 6 +++---
 net-libs/libsmi/libsmi-0.5.0.ebuild| 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-libs/libsmi/libsmi-0.4.8-r1.ebuild 
b/net-libs/libsmi/libsmi-0.4.8-r1.ebuild
index e6106337ab9..0951b2afd46 100644
--- a/net-libs/libsmi/libsmi-0.4.8-r1.ebuild
+++ b/net-libs/libsmi/libsmi-0.4.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -6,7 +6,7 @@ inherit eutils flag-o-matic
 
 DESCRIPTION="A Library to Access SMI MIB Information"
 SRC_URI="ftp://ftp.ibr.cs.tu-bs.de/pub/local/${PN}/${P}.tar.gz";
-HOMEPAGE="http://www.ibr.cs.tu-bs.de/projects/libsmi";
+HOMEPAGE="https://www.ibr.cs.tu-bs.de/projects/libsmi/";
 
 LICENSE="BSD"
 SLOT="0"
@@ -24,7 +24,7 @@ src_configure() {
 
 src_test() {
# sming test is known to fail and some other fail if LC_ALL!=C:
-   # http://mail.ibr.cs.tu-bs.de/pipermail/libsmi/2008-March/001014.html
+   # https://mail.ibr.cs.tu-bs.de/pipermail/libsmi/2008-March/001014.html
sed -i '/^[[:space:]]*smidump-sming.test \\$/d' test/Makefile
LC_ALL=C emake -j1 check || die
 }

diff --git a/net-libs/libsmi/libsmi-0.5.0.ebuild 
b/net-libs/libsmi/libsmi-0.5.0.ebuild
index 8218cb6917a..43b190287d6 100644
--- a/net-libs/libsmi/libsmi-0.5.0.ebuild
+++ b/net-libs/libsmi/libsmi-0.5.0.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit eutils
 
 DESCRIPTION="A Library to Access SMI MIB Information"
-HOMEPAGE="http://www.ibr.cs.tu-bs.de/projects/libsmi";
+HOMEPAGE="https://www.ibr.cs.tu-bs.de/projects/libsmi/";
 SRC_URI="${HOMEPAGE}/download/${P}.tar.gz"
 
 LICENSE="BSD"
@@ -19,7 +19,7 @@ src_configure() {
 
 src_test() {
# sming test is known to fail and some other fail if LC_ALL!=C:
-   # http://mail.ibr.cs.tu-bs.de/pipermail/libsmi/2008-March/001014.html
+   # https://mail.ibr.cs.tu-bs.de/pipermail/libsmi/2008-March/001014.html
sed -i '/^[[:space:]]*smidump-sming.test \\$/d' test/Makefile
LC_ALL=C emake -j1 check || die
 }



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

2018-05-06 Thread Aaron Bauman
commit: 08ee5066c25c9cdc63892a2dfd0e75dc49cdbbe7
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun May  6 10:01:12 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May  6 14:13:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08ee5066

net-libs/libnetfilter_log: use HTTPS

 net-libs/libnetfilter_log/libnetfilter_log-1.0.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-libs/libnetfilter_log/libnetfilter_log-1.0.1.ebuild 
b/net-libs/libnetfilter_log/libnetfilter_log-1.0.1.ebuild
index 23e1b0f2767..f167de5d796 100644
--- a/net-libs/libnetfilter_log/libnetfilter_log-1.0.1.ebuild
+++ b/net-libs/libnetfilter_log/libnetfilter_log-1.0.1.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit linux-info autotools-utils
 
 DESCRIPTION="interface to packets that have been logged by the kernel packet 
filter"
-HOMEPAGE="http://www.netfilter.org/projects/libnetfilter_log/";
-SRC_URI="http://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2";
+HOMEPAGE="https://www.netfilter.org/projects/libnetfilter_log/";
+SRC_URI="https://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"



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

2018-05-06 Thread Aaron Bauman
commit: ffa9c02cc0dca3189841315c0b040f257206a173
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun May  6 10:08:04 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May  6 14:13:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffa9c02c

net-libs/libssh2: use HTTPS

 net-libs/libssh2/libssh2-1.7.0.ebuild| 6 +++---
 net-libs/libssh2/libssh2-1.8.0-r1.ebuild | 6 +++---
 net-libs/libssh2/libssh2-.ebuild | 4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/net-libs/libssh2/libssh2-1.7.0.ebuild 
b/net-libs/libssh2/libssh2-1.7.0.ebuild
index 65ef8f62b81..ddd1da89248 100644
--- a/net-libs/libssh2/libssh2-1.7.0.ebuild
+++ b/net-libs/libssh2/libssh2-1.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -7,8 +7,8 @@ AUTOTOOLS_AUTORECONF=true
 inherit autotools-multilib
 
 DESCRIPTION="Library implementing the SSH2 protocol"
-HOMEPAGE="http://www.libssh2.org/";
-SRC_URI="http://www.${PN}.org/download/${P}.tar.gz";
+HOMEPAGE="https://www.libssh2.org";
+SRC_URI="https://www.${PN}.org/download/${P}.tar.gz";
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/net-libs/libssh2/libssh2-1.8.0-r1.ebuild 
b/net-libs/libssh2/libssh2-1.8.0-r1.ebuild
index af51f92f415..5d3a9421cfd 100644
--- a/net-libs/libssh2/libssh2-1.8.0-r1.ebuild
+++ b/net-libs/libssh2/libssh2-1.8.0-r1.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 inherit ltprune multilib-minimal
 
 DESCRIPTION="Library implementing the SSH2 protocol"
-HOMEPAGE="http://www.libssh2.org/";
-SRC_URI="http://www.${PN}.org/download/${P}.tar.gz";
+HOMEPAGE="https://www.libssh2.org";
+SRC_URI="https://www.${PN}.org/download/${P}.tar.gz";
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/net-libs/libssh2/libssh2-.ebuild 
b/net-libs/libssh2/libssh2-.ebuild
index 20d32d23606..4ed00d50973 100644
--- a/net-libs/libssh2/libssh2-.ebuild
+++ b/net-libs/libssh2/libssh2-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ inherit autotools git-r3 multilib-minimal
 
 EGIT_REPO_URI="https://github.com/libssh2/libssh2";
 DESCRIPTION="Library implementing the SSH2 protocol"
-HOMEPAGE="http://www.libssh2.org/";
+HOMEPAGE="https://www.libssh2.org";
 SRC_URI=""
 
 LICENSE="BSD"



  1   2   3   4   >