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

2018-05-06 Thread Hans de Graaff
commit: b4223f84a25c082a42d9847327efcf658c3c8145
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May  7 04:49:22 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May  7 05:02:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4223f84

dev-ruby/rest-client: fix building without FEATURES=test

Use the default rdoc method to generate documentation
to avoid needing rspec with only USE=doc

Closes: https://bugs.gentoo.org/654864
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/rest-client/rest-client-2.0.2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ruby/rest-client/rest-client-2.0.2.ebuild 
b/dev-ruby/rest-client/rest-client-2.0.2.ebuild
index 0a7ca052e8b..4b8540bc007 100644
--- a/dev-ruby/rest-client/rest-client-2.0.2.ebuild
+++ b/dev-ruby/rest-client/rest-client-2.0.2.ebuild
@@ -6,6 +6,7 @@ USE_RUBY="ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="history.md README.md"
 
 inherit ruby-fakegem



[gentoo-commits] repo/dev/tamiko:master commit in: sci-libs/opencascade/, sci-libs/opencascade/files/

2018-05-06 Thread Matthias Maier
commit: c266961fd2437fc5bc8884e70af77e6f0edde44d
Author: Matthias Maier  gentoo  org>
AuthorDate: Mon May  7 04:35:49 2018 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Mon May  7 04:35:49 2018 +
URL:https://gitweb.gentoo.org/repo/dev/tamiko.git/commit/?id=c266961f

sci-libs/opencascade: more fixes

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 .../files/opencascade-7.2.0-buildsystem.patch  | 57 ++
 sci-libs/opencascade/opencascade-7.2.0.ebuild  |  1 +
 2 files changed, 58 insertions(+)

diff --git a/sci-libs/opencascade/files/opencascade-7.2.0-buildsystem.patch 
b/sci-libs/opencascade/files/opencascade-7.2.0-buildsystem.patch
new file mode 100644
index 000..906fc6d
--- /dev/null
+++ b/sci-libs/opencascade/files/opencascade-7.2.0-buildsystem.patch
@@ -0,0 +1,57 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 3b713fc..ec50580 100755
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -862,16 +862,7 @@ else()
+   set (ADDITIONAL_CUSTOM_CONTENT "\nif [ -e 
\"\${aScriptPath}/${SUB_CUSTOM_NAME}\" ]; then\n  source 
\"\${aScriptPath}/${SUB_CUSTOM_NAME}\" \"\$1\" \"\$2\" \nfi")
+ endif()
+ 
+- # change custom.bat/sh
+-if (EXISTS "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}")
+-  file (READ "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}" 
CUSTOM_CONTENT)
+-
+-  set (CUSTOM_CONTENT "${CUSTOM_CONTENT} ${ADDITIONAL_CUSTOM_CONTENT}")
+-
+-  file (WRITE "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}" 
"${CUSTOM_CONTENT}")
+-else()
+-  OCCT_CONFIGURE_AND_INSTALL ("adm/templates/custom.${SCRIPT_EXT}.main" 
"custom.${SCRIPT_EXT}" "custom.${SCRIPT_EXT}" "${INSTALL_DIR_SCRIPT}")
+-endif()
++OCCT_CONFIGURE_AND_INSTALL ("adm/templates/custom.${SCRIPT_EXT}.main" 
"custom.${SCRIPT_EXT}" "custom.${SCRIPT_EXT}" "${INSTALL_DIR_SCRIPT}")
+ 
+ if (WIN32)
+   set (THIRDPARTY_DIR_REPLACE "%THIRDPARTY_DIR%")
+@@ -1041,22 +1032,19 @@ list (REMOVE_DUPLICATES OCCT_MODULES_ENABLED)
+ list (REMOVE_DUPLICATES OCCT_COMPILE_DEFINITIONS)
+ 
+ # export compile definitions and C/C++ flags for each configuration to 
OpenCASCADE config files
+-foreach (OCCT_CONFIGURATION ${CMAKE_CONFIGURATION_TYPES})
+-  set (SET_OpenCASCADE_COMPILE_DEFINITIONS)
+-  string (TOUPPER "${OCCT_CONFIGURATION}" OCCT_CONFIGURATION_UPPER)
+-  string (TOLOWER "${OCCT_CONFIGURATION}" OCCT_CONFIGURATION_LOWER)
+-  foreach(COMPILE_DEFINITION ${OCCT_COMPILE_DEFINITIONS})
+-string(REPLACE "(" "\\(" COMPILE_DEFINITION "${COMPILE_DEFINITION}")
+-string(REPLACE ")" "\\)" COMPILE_DEFINITION "${COMPILE_DEFINITION}")
+-set (SET_OpenCASCADE_COMPILE_DEFINITIONS 
"${SET_OpenCASCADE_COMPILE_DEFINITIONS}set_property(DIRECTORY APPEND PROPERTY 
COMPILE_DEFINITIONS 
$<$:${COMPILE_DEFINITION}>)\n")
+-  endforeach()
+-  set (SET_OpenCASCADE_CMAKE_C_FLAGS 
"${CMAKE_C_FLAGS_${OCCT_CONFIGURATION_UPPER}}")
+-  set (SET_OpenCASCADE_CMAKE_CXX_FLAGS 
"${CMAKE_CXX_FLAGS_${OCCT_CONFIGURATION_UPPER}}")
+-  
configure_file("${CMAKE_SOURCE_DIR}/adm/templates/OpenCASCADECompileDefinitionsAndFlags.cmake.in"
 "OpenCASCADECompileDefinitionsAndFlags-${OCCT_CONFIGURATION_LOWER}.cmake" 
@ONLY)
++set(OCCT_CONFIGURATION ${CMAKE_BUILD_TYPE})
++set (SET_OpenCASCADE_COMPILE_DEFINITIONS)
++string (TOUPPER "${OCCT_CONFIGURATION}" OCCT_CONFIGURATION_UPPER)
++string (TOLOWER "${OCCT_CONFIGURATION}" OCCT_CONFIGURATION_LOWER)
++foreach(COMPILE_DEFINITION ${OCCT_COMPILE_DEFINITIONS})
++  string(REPLACE "(" "\\(" COMPILE_DEFINITION "${COMPILE_DEFINITION}")
++  string(REPLACE ")" "\\)" COMPILE_DEFINITION "${COMPILE_DEFINITION}")
++  set (SET_OpenCASCADE_COMPILE_DEFINITIONS 
"${SET_OpenCASCADE_COMPILE_DEFINITIONS}set_property(DIRECTORY APPEND PROPERTY 
COMPILE_DEFINITIONS 
$<$:${COMPILE_DEFINITION}>)\n")
+ endforeach()
+-# install OpenCASCADE config file with compile definitions and C/C++ flags 
ONLY for current configuration
+-install (CODE "string (TOLOWER \"\${CMAKE_INSTALL_CONFIG_NAME}\" 
CMAKE_INSTALL_CONFIG_NAME_LOWER)")
+-install (CODE 
"configure_file(\"${CMAKE_BINARY_DIR}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\"
 
\"${INSTALL_DIR}/${INSTALL_DIR_CMAKE}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\"
 COPYONLY)")
++set (SET_OpenCASCADE_CMAKE_C_FLAGS 
"${CMAKE_C_FLAGS_${OCCT_CONFIGURATION_UPPER}}")
++set (SET_OpenCASCADE_CMAKE_CXX_FLAGS 
"${CMAKE_CXX_FLAGS_${OCCT_CONFIGURATION_UPPER}}")
++configure_file("${CMAKE_SOURCE_DIR}/adm/templates/OpenCASCADECompileDefinitionsAndFlags.cmake.in"
 "OpenCASCADECompileDefinitionsAndFlags-${OCCT_CONFIGURATION_LOWER}.cmake" 
@ONLY)
++install(FILES 
"${CMAKE_BINARY_DIR}/OpenCASCADECompileDefinitionsAndFlags-${OCCT_CONFIGURATION_LOWER}.cmake"
 DESTINATION "${INSTALL_DIR_CMAKE}")
+ 
+ foreach (OCCT_MODULE ${OCCT_MODULES})
+   if (BUILD_MODULE_${OCCT_MODULE})

diff --git a/sci-libs/opencascade/opencascade-7.2.0.ebuild 

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

2018-05-06 Thread Mike Frysinger
commit: 9e40b37deb8eb2e80cb85ae8ff212540af62b8c7
Author: Mike Frysinger  gentoo  org>
AuthorDate: Fri Apr 27 08:13:09 2018 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon May  7 04:47:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e40b37d

sys-apps/cpuid: version bump to 20180419

 sys-apps/cpuid/Manifest  |  1 +
 sys-apps/cpuid/cpuid-20180419.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest
index 9701a754261..07dfe7c7e94 100644
--- a/sys-apps/cpuid/Manifest
+++ b/sys-apps/cpuid/Manifest
@@ -1 +1,2 @@
 DIST cpuid-20170122.src.tar.gz 80046 BLAKE2B 
4c6c6719f57b446c92c5636a35aac883497d457719c67acb61db75ce99c46edee368d63e790b6b21ea334293aaed221374229e334cefcc65ea8b05c8ae40d172
 SHA512 
0e057980c71a0e078254e6b7535747bdf368278932c39943cf7dfafe08443af07297a2b41518499937a710fe6950ba89377cabaada5f6332932650d4d17c1430
+DIST cpuid-20180419.src.tar.gz 82301 BLAKE2B 
6905c0946fb9a930c67718067923c8c238031539c95704664160efde8563b0f56aadf3132abc9833310846802f97330edff833b47c006a4f46fec49358b56e31
 SHA512 
c8e30e45df7be5bdbff7e449b447b4542326a112f563c114c67cc80764070f3f3815ff4f80ceb57360828061bc9fd5f2f24f8e53ae4db47781f36db32141c951

diff --git a/sys-apps/cpuid/cpuid-20180419.ebuild 
b/sys-apps/cpuid/cpuid-20180419.ebuild
new file mode 100644
index 000..b4c973068b4
--- /dev/null
+++ b/sys-apps/cpuid/cpuid-20180419.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+DESCRIPTION="Utility to get detailed information about the CPU(s) using the 
CPUID instruction"
+HOMEPAGE="http://www.etallen.com/cpuid.html;
+SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   app-arch/gzip
+   dev-lang/perl"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-20170122-Makefile.patch
+   "${FILESDIR}"/${PN}-20170122-missing-include-sysmacros.patch
+)
+
+src_configure() {
+   tc-export CC
+}
+
+src_install() {
+   emake BUILDROOT="${ED}" install
+   einstalldocs
+}



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

2018-05-06 Thread Hans de Graaff
commit: 07532328907f7b81f217ce184b933777e98d5427
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May  7 04:39:35 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May  7 04:40:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07532328

dev-ruby/capybara: add 3.0.3

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/capybara/Manifest  |  1 +
 dev-ruby/capybara/capybara-3.0.3.ebuild | 50 +
 2 files changed, 51 insertions(+)

diff --git a/dev-ruby/capybara/Manifest b/dev-ruby/capybara/Manifest
index 67350add4df..2e8424fd5cc 100644
--- a/dev-ruby/capybara/Manifest
+++ b/dev-ruby/capybara/Manifest
@@ -2,3 +2,4 @@ DIST capybara-2.14.4.gem 265728 BLAKE2B 
7b61fc7424b5e5aeec50e0695ef7719d23b594d3
 DIST capybara-2.16.1.gem 273408 BLAKE2B 
1d1a68427fcfed9a8153e409e17fc043dd8d926c3ebbab3560ae12454f3010c8b4569348c231e807d993263940b703dc5380a235da438eb5ac2f9d0bd3a66309
 SHA512 
921e05111278b7bff93fe805a29e7b2e0e78b36510db5dff1189e34c3cdeada52504a8e06534238e578c32e8e0efa8d99a0ffc8516d94e60c06e7fd2c4ecb174
 DIST capybara-2.18.0.gem 274432 BLAKE2B 
992799362025b81a0d074fb06fdafef4c4385ca18ea85a7095d9e58625df6a59a349b60b462c5c4f403a6af955466bc46d82be6cd91724fc2b12cbe15ed74a4c
 SHA512 
3bb994e022593d485a07296193a16cae7b45e96e87dd10b2bd4807ad2bc990801044c0493360598d1626c3e367e8de87e407f65c2c6f42674d5f1b9c0b5c1933
 DIST capybara-3.0.2.gem 275456 BLAKE2B 
bcf2049193062b7d16e811807faf629379bc5a94bba771d442e9680e727d765703ad4c6cf8abd9d0bb22d1971f07d897f0fc8a572182302528961fcfe8b186fb
 SHA512 
5f2611238a58184dcd57a5ca2fff786d4ecfdbb51815c3f6afdcabbb85087baf87fc601d1506a6b880d42af32e06a62e7757b1abf455325718258d3072616a49
+DIST capybara-3.0.3.gem 276480 BLAKE2B 
a1aa8e8ccc3846c87bdc989f456fdd0c09f41b2939cfe322faa6ae478bacdd1d6b4b13dba55fc74edd50fcfe28eb59eb8a2add8e3fc5ba948bcf8365c0ffbb96
 SHA512 
7af6c04304f3308322ec374d226b6cd874ba2068be5451da482a6bd2861e404b580e4c74604f0873cd91a52f1d95117efdf850cf19eb9c6265715cff5d503c47

diff --git a/dev-ruby/capybara/capybara-3.0.3.ebuild 
b/dev-ruby/capybara/capybara-3.0.3.ebuild
new file mode 100644
index 000..d9c1c90896e
--- /dev/null
+++ b/dev-ruby/capybara/capybara-3.0.3.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_EXTRADOC="History.md README.md"
+
+# Rake tasks are not distributed in the gem.
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_TASK_TEST=""
+
+inherit virtualx ruby-fakegem
+
+DESCRIPTION="Capybara aims to simplify the process of integration testing Rack 
applications"
+HOMEPAGE="https://github.com/jnicklas/capybara;
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~arm64 ~hppa ~x86"
+SLOT="3"
+IUSE="test"
+
+DEPEND="${DEPEND} test? ( www-client/firefox )"
+
+ruby_add_bdepend "test? ( dev-ruby/rspec:3 dev-ruby/launchy 
>=dev-ruby/selenium-webdriver-2.0 dev-ruby/sinatra )"
+
+ruby_add_rdepend "
+   dev-ruby/addressable
+   >=dev-ruby/mini_mime-0.1.3
+   >=dev-ruby/nokogiri-1.8:0
+   >=dev-ruby/rack-1.6.0:*
+   >=dev-ruby/rack-test-0.6.3:*
+   dev-ruby/xpath:3"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/d' -e '/pry/d' -e '1igem "sinatra"' 
spec/spec_helper.rb || die
+
+   # Avoid window-manager specific tests (sizes are specific for fluxbox)
+   sed -i -e '/#maximize/,/^  end/ s:^:#:' 
lib/capybara/spec/session/window/window_spec.rb || die
+
+   # Avoid spec that requires unpackaged geckodriver
+   sed -i -e '/describe.*register_server/,/^  end/ s:^:#:' 
spec/capybara_spec.rb || die
+
+   # Avoid test dependency on puma server for now
+   sed -i -e '/should have :puma registered/,/^end/ s:^:#:' 
spec/capybara_spec.rb || die
+}
+
+each_ruby_test() {
+   virtx ${RUBY} -Ilib -S rspec-3 spec || die "Tests failed."
+}



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

2018-05-06 Thread Hans de Graaff
commit: 42fe91ca1cb479edb2e056fb3fa4532d496e03d9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May  7 03:53:48 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May  7 04:40:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42fe91ca

dev-ruby/xpath: add ruby25

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/xpath/xpath-2.1.0.ebuild | 2 +-
 dev-ruby/xpath/xpath-3.0.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/xpath/xpath-2.1.0.ebuild 
b/dev-ruby/xpath/xpath-2.1.0.ebuild
index 240dd82fee9..9b9e37ac162 100644
--- a/dev-ruby/xpath/xpath-2.1.0.ebuild
+++ b/dev-ruby/xpath/xpath-2.1.0.ebuild
@@ -2,7 +2,7 @@
 # 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="README.md"
 

diff --git a/dev-ruby/xpath/xpath-3.0.0.ebuild 
b/dev-ruby/xpath/xpath-3.0.0.ebuild
index 5ebcc80ee2b..14f25fc184b 100644
--- a/dev-ruby/xpath/xpath-3.0.0.ebuild
+++ b/dev-ruby/xpath/xpath-3.0.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_EXTRADOC="README.md"
 



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

2018-05-06 Thread Hans de Graaff
commit: 5b31e2a20d500edb87bae54d4429bf8307207a7e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May  7 04:08:15 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May  7 04:40:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b31e2a2

dev-ruby/launchy: add ruby25

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-ruby/launchy/launchy-2.4.3-r2.ebuild 
b/dev-ruby/launchy/launchy-2.4.3-r2.ebuild
index cb75dd85f16..d59aa0a0f8e 100644
--- a/dev-ruby/launchy/launchy-2.4.3-r2.ebuild
+++ b/dev-ruby/launchy/launchy-2.4.3-r2.ebuild
@@ -2,7 +2,7 @@
 # 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="README.md HISTORY.md"
 



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

2018-05-06 Thread Matt Turner
commit: 0a58d56d17fac94fdf5fc23efa6000610b6fb789
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May  7 04:26:22 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May  7 04:26:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a58d56d

media-libs/mesa: Transition deps to x11-base/xorg-proto

 media-libs/mesa/mesa-.ebuild | 14 +-
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 161933dd930..cf00b47b8bc 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -76,11 +76,7 @@ REQUIRED_USE="
 "
 
 LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.91"
-# keep correct libdrm and dri2proto dep
-# keep blocks in rdepend for binpkg
 RDEPEND="
-   !=app-eselect/eselect-opengl-1.3.0
@@ -223,15 +219,7 @@ DEPEND="${RDEPEND}
sys-devel/gettext
virtual/pkgconfig
valgrind? ( dev-util/valgrind )
-   >=x11-proto/dri2proto-2.8-r1:=[${MULTILIB_USEDEP}]
-   dri3? (
-   >=x11-proto/dri3proto-1.0:=[${MULTILIB_USEDEP}]
-   >=x11-proto/presentproto-1.0:=[${MULTILIB_USEDEP}]
-   )
-   >=x11-proto/glproto-1.4.17-r1:=[${MULTILIB_USEDEP}]
-   >=x11-proto/xextproto-7.2.1-r1:=[${MULTILIB_USEDEP}]
-   >=x11-proto/xf86driproto-2.1.1-r1:=[${MULTILIB_USEDEP}]
-   >=x11-proto/xf86vidmodeproto-2.3.1-r1:=[${MULTILIB_USEDEP}]
+   x11-base/xorg-proto
vulkan? (
$(python_gen_any_dep 
">=dev-python/mako-0.7.3[\${PYTHON_USEDEP}]")
)



[gentoo-commits] repo/dev/tamiko:master commit in: sci-libs/opencascade/, sci-libs/opencascade/files/

2018-05-06 Thread Matthias Maier
commit: af9d9dc9121ccf9b21d6b001f7f97992e09552ca
Author: Matthias Maier  gentoo  org>
AuthorDate: Mon May  7 00:34:02 2018 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Mon May  7 03:44:28 2018 +
URL:https://gitweb.gentoo.org/repo/dev/tamiko.git/commit/?id=af9d9dc9

sci-libs/opencascade: version bump to 7.2.0

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 sci-libs/opencascade/Manifest  |   1 +
 .../files/opencascade-7.2.0-vtk_fixes.patch|  50 +++
 sci-libs/opencascade/metadata.xml  |  14 ++
 sci-libs/opencascade/opencascade-7.2.0.ebuild  | 150 +
 4 files changed, 215 insertions(+)

diff --git a/sci-libs/opencascade/Manifest b/sci-libs/opencascade/Manifest
new file mode 100644
index 000..648cf88
--- /dev/null
+++ b/sci-libs/opencascade/Manifest
@@ -0,0 +1 @@
+DIST opencascade-7.2.0.tgz 202114726 SHA256 
245e344b2cf8a6e0a7d9f45d5d807f8ef48607bcd7a6d763ba2d7b861fa55249 SHA512 
d51a1d901d5a6afa2013ad5759c1d5e016af1b804b27ae611a3090a5fcb8bde34b646de92cf21cd3e221003322d17a044b14d8e54f44d056ed51e28df0ef5f67
 WHIRLPOOL 
5eb6b00dffaf7a091def0e7d07dab849ddd3864aed8928f3f3fbadad6208dd6ff2eafe5390a9fb3666e28b742704bb5138524455990da5b3fa21e54d19a56143

diff --git a/sci-libs/opencascade/files/opencascade-7.2.0-vtk_fixes.patch 
b/sci-libs/opencascade/files/opencascade-7.2.0-vtk_fixes.patch
new file mode 100644
index 000..945ced2
--- /dev/null
+++ b/sci-libs/opencascade/files/opencascade-7.2.0-vtk_fixes.patch
@@ -0,0 +1,50 @@
+diff --git a/src/IVtkVTK/IVtkVTK_ShapeData.cxx 
b/src/IVtkVTK/IVtkVTK_ShapeData.cxx
+index c05c28b..02d2015 100755
+--- a/src/IVtkVTK/IVtkVTK_ShapeData.cxx
 b/src/IVtkVTK/IVtkVTK_ShapeData.cxx
+@@ -80,9 +80,9 @@ void IVtkVTK_ShapeData::InsertVertex (const IVtk_IdType 
theShapeID,
+   vtkIdType aPointIdVTK = thePointId;
+   myPolyData->InsertNextCell (VTK_VERTEX, 1, );
+   const vtkIdType aShapeIDVTK = theShapeID;
+-  mySubShapeIDs->InsertNextTupleValue ();
++  mySubShapeIDs->InsertNextTypedTuple ();
+   const vtkIdType aType = theMeshType;
+-  myMeshTypes->InsertNextTupleValue ();
++  myMeshTypes->InsertNextTypedTuple ();
+ }
+ 
+ //
+@@ -97,9 +97,9 @@ void IVtkVTK_ShapeData::InsertLine (const IVtk_IdType   
theShapeID,
+   vtkIdType aPoints[2] = { thePointId1, thePointId2 };
+   myPolyData->InsertNextCell (VTK_LINE, 2, aPoints);
+   const vtkIdType aShapeIDVTK = theShapeID;
+-  mySubShapeIDs->InsertNextTupleValue ();
++  mySubShapeIDs->InsertNextTypedTuple ();
+   const vtkIdType aType = theMeshType;
+-  myMeshTypes->InsertNextTupleValue ();
++  myMeshTypes->InsertNextTypedTuple ();
+ }
+ 
+ //
+@@ -124,9 +124,9 @@ void IVtkVTK_ShapeData::InsertLine (const IVtk_IdType  
 theShapeID,
+ 
+ myPolyData->InsertNextCell (VTK_POLY_LINE, anIdList);
+ const vtkIdType aShapeIDVTK = theShapeID;
+-mySubShapeIDs->InsertNextTupleValue ();
++mySubShapeIDs->InsertNextTypedTuple ();
+ const vtkIdType aType = theMeshType;
+-myMeshTypes->InsertNextTupleValue ();
++myMeshTypes->InsertNextTypedTuple ();
+   }
+ }
+ 
+@@ -143,7 +143,7 @@ void IVtkVTK_ShapeData::InsertTriangle (const IVtk_IdType  
 theShapeID,
+   vtkIdType aPoints[3] = { thePointId1, thePointId2, thePointId3 };
+   myPolyData->InsertNextCell (VTK_TRIANGLE, 3, aPoints);
+   const vtkIdType aShapeIDVTK = theShapeID;
+-  mySubShapeIDs->InsertNextTupleValue ();
++  mySubShapeIDs->InsertNextTypedTuple ();
+   const vtkIdType aType = theMeshType;
+-  myMeshTypes->InsertNextTupleValue ();
++  myMeshTypes->InsertNextTypedTuple ();
+ }

diff --git a/sci-libs/opencascade/metadata.xml 
b/sci-libs/opencascade/metadata.xml
new file mode 100644
index 000..0dc2b1d
--- /dev/null
+++ b/sci-libs/opencascade/metadata.xml
@@ -0,0 +1,14 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+x...@gentoo.org
+Michael Weber
+  
+  
+Enable support for image i/o via 
media-libs/freeimage
+Use gl2ps PostScript printing library
+Enable multithreading with the Intel Threads Building 
Block dev-cpp/tbb
+Enable Virtualisation Toolkit
+  
+

diff --git a/sci-libs/opencascade/opencascade-7.2.0.ebuild 
b/sci-libs/opencascade/opencascade-7.2.0.ebuild
new file mode 100644
index 000..3ab5a4c
--- /dev/null
+++ b/sci-libs/opencascade/opencascade-7.2.0.ebuild
@@ -0,0 +1,150 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils eutils check-reqs multilib java-pkg-opt-2 flag-o-matic
+
+DESCRIPTION="Development platform for CAD/CAE, 3D surface/solid modeling and 
data exchange"
+HOMEPAGE="http://www.opencascade.com/;
+SRC_URI="http://www.${PN}.com/sites/default/files/private/occt/OCC_${PV}_release/${P}.tgz;
+
+LICENSE="|| ( Open-CASCADE-LGPL-2.1-Exception-1.0 LGPL-2.1 )"
+SLOT="${PV}"

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

2018-05-06 Thread Matt Turner
commit: de8a878f452020761ca235ffc6d9ca06b0830d99
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May  7 02:43:21 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May  7 02:43:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de8a878f

x11-apps/iceauth: Drop old versions

 x11-apps/iceauth/Manifest |  2 --
 x11-apps/iceauth/iceauth-1.0.6.ebuild | 15 ---
 x11-apps/iceauth/iceauth-1.0.7.ebuild | 15 ---
 3 files changed, 32 deletions(-)

diff --git a/x11-apps/iceauth/Manifest b/x11-apps/iceauth/Manifest
index bf6ce8475cc..e49dd4b3283 100644
--- a/x11-apps/iceauth/Manifest
+++ b/x11-apps/iceauth/Manifest
@@ -1,3 +1 @@
-DIST iceauth-1.0.6.tar.bz2 133531 BLAKE2B 
23119747e42b1901c08bc1e10605ca49200bcfd497f7609ea0b4cbe4c18a9cfd4950fe425dfc9405272e3614f171560c2f158a9602f7724500ca7a8160fbd6e0
 SHA512 
45a89d9742570f837225313032a63d66e658c379e7f6b776836e5aeed17443b26faa48ff23645517bf32353fb346de13b62c61d43f1fb1b044686d9fd4c4578d
-DIST iceauth-1.0.7.tar.bz2 135656 BLAKE2B 
4a17fb2b7a1f2ac1604131c9a91c9c78c7c6e480573dcb68c06c5a300ab8474dcbf6782672c3147bf848a81e6bf20fb602375497cc141ed465d3aa5e59d68b8a
 SHA512 
4fe08b3137904c99219456716879cbdf5b49ca9bf390011ffb44b1e896f9a6e008b5f761346a533e682f5cfbf18d18a859c74ad4268ec8d40002ffb79c33bcd7
 DIST iceauth-1.0.8.tar.bz2 137905 BLAKE2B 
8fb2e29e5f4fee57e5c1f86eb78ce518519f04301e8aa81778e0de6589f62f32478a7cae05db831177f4425eb388f7b666f697314d5ab967ea3e2b6ac7b47d56
 SHA512 
9d4520adf951b16a3e784349dbb70d5d8176b74b956f8adc63abf55d049745c113b03ccfa60a281fc39b487db3742302dc6287c9985ce83a0157bf4674df2af1

diff --git a/x11-apps/iceauth/iceauth-1.0.6.ebuild 
b/x11-apps/iceauth/iceauth-1.0.6.ebuild
deleted file mode 100644
index a9c41f4f9f7..000
--- a/x11-apps/iceauth/iceauth-1.0.6.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit xorg-2
-
-DESCRIPTION="ICE authority file utility"
-
-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 ~x86-solaris ~x86-winnt"
-IUSE=""
-
-RDEPEND="x11-libs/libICE"
-DEPEND="${RDEPEND}
-   x11-proto/xproto"

diff --git a/x11-apps/iceauth/iceauth-1.0.7.ebuild 
b/x11-apps/iceauth/iceauth-1.0.7.ebuild
deleted file mode 100644
index 2d87cb33677..000
--- a/x11-apps/iceauth/iceauth-1.0.7.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit xorg-2
-
-DESCRIPTION="ICE authority file utility"
-
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x86-solaris ~x86-winnt"
-IUSE=""
-
-RDEPEND="x11-libs/libICE"
-DEPEND="${RDEPEND}
-   x11-proto/xproto"



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

2018-05-06 Thread Matt Turner
commit: 6a7bec69bc816d09001183380891edbe65104066
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May  7 01:27:27 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May  7 01:32:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a7bec69

x11-base/xorg-server: Version bump to 1.19.99.905

 x11-base/xorg-server/Manifest  |   1 +
 .../xorg-server/xorg-server-1.19.99.905.ebuild | 219 +
 2 files changed, 220 insertions(+)

diff --git a/x11-base/xorg-server/Manifest b/x11-base/xorg-server/Manifest
index b262359d335..e1adc34f600 100644
--- a/x11-base/xorg-server/Manifest
+++ b/x11-base/xorg-server/Manifest
@@ -1,2 +1,3 @@
 DIST xorg-server-1.19.5.tar.bz2 5965044 BLAKE2B 
23375793ea4459a962f412440e307081ce2acd3c646e5db4d1bfac20e267bcbb1752ba8f6de66df06d25eaf92d1b55082a80eced0d44c257a757d5926ca6a7f3
 SHA512 
928dea5850b98cd815004cfa133eca23cfa9521920c934c68a92787f2cae13cca1534eee772a4fb74b8ae8cb92662b5d68b95b834c8aa8ec57cd57cb4e5dd45c
 DIST xorg-server-1.19.99.904.tar.bz2 6083787 BLAKE2B 
7b5ba4601494ab7714a977e6fcced12e373f5aaf30d433560a899d4446116cc4a5e22ae21378fea6ab07b68bad1a2544e065fd1d449b3b155b2c0e8a6787e479
 SHA512 
b9dccc777d0a30c6b40bddffe1f359dde4103539c6598f04bf8cf5f59e6770229221a199c1866b4eba0cf8d2d87fe878985bbd2e3c6ec5b65e3f16195ea8d57e
+DIST xorg-server-1.19.99.905.tar.bz2 6088508 BLAKE2B 
592404aebb0e1ee1e6c20a36e08a788331467875f304117711583b892442d4e0cbdd91a999b38ec1d2487f33904cd0913c2cfef37f2e49f6ef5ec9f4725372ab
 SHA512 
9a6f173835989f7562debfbadae0077d75e35bfad5be1f78931fe46ac43df20591162950b27e2c813fd857114f98247be28d357566e45e5d3ac6b60873d94466

diff --git a/x11-base/xorg-server/xorg-server-1.19.99.905.ebuild 
b/x11-base/xorg-server/xorg-server-1.19.99.905.ebuild
new file mode 100644
index 000..fc971faa631
--- /dev/null
+++ b/x11-base/xorg-server/xorg-server-1.19.99.905.ebuild
@@ -0,0 +1,219 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+XORG_DOC=doc
+inherit xorg-2 multilib versionator flag-o-matic
+EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/xserver.git;
+
+DESCRIPTION="X.Org X servers"
+SLOT="0/${PV}"
+if [[ ${PV} != * ]]; then
+   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
+
+IUSE_SERVERS="dmx kdrive wayland xephyr xnest xorg xvfb"
+IUSE="${IUSE_SERVERS} debug +glamor ipv6 libressl minimal selinux systemd 
+udev unwind xcsecurity"
+
+CDEPEND=">=app-eselect/eselect-opengl-1.3.0
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   >=x11-apps/iceauth-1.0.2
+   >=x11-apps/rgb-1.0.3
+   >=x11-apps/xauth-1.0.3
+   x11-apps/xkbcomp
+   >=x11-libs/libdrm-2.4.89
+   >=x11-libs/libpciaccess-0.12.901
+   >=x11-libs/libXau-1.0.4
+   >=x11-libs/libXdmcp-1.0.2
+   >=x11-libs/libXfont2-2.0.1
+   >=x11-libs/libxkbfile-1.0.4
+   >=x11-libs/libxshmfence-1.1
+   >=x11-libs/pixman-0.27.2
+   >=x11-libs/xtrans-1.3.5
+   >=x11-misc/xbitmaps-1.0.1
+   >=x11-misc/xkeyboard-config-2.4.1-r3
+   dmx? (
+   x11-libs/libXt
+   >=x11-libs/libdmx-1.0.99.1
+   >=x11-libs/libX11-1.1.5
+   >=x11-libs/libXaw-1.0.4
+   >=x11-libs/libXext-1.0.99.4
+   >=x11-libs/libXfixes-5.0
+   >=x11-libs/libXi-1.2.99.1
+   >=x11-libs/libXmu-1.0.3
+   x11-libs/libXrender
+   >=x11-libs/libXres-1.0.3
+   >=x11-libs/libXtst-1.0.99.2
+   )
+   glamor? (
+   media-libs/libepoxy[X]
+   >=media-libs/mesa-10.3.4-r1[egl,gbm]
+   !x11-libs/glamor
+   )
+   kdrive? (
+   >=x11-libs/libXext-1.0.5
+   x11-libs/libXv
+   )
+   xephyr? (
+   x11-libs/libxcb[xkb]
+   x11-libs/xcb-util
+   x11-libs/xcb-util-image
+   x11-libs/xcb-util-keysyms
+   x11-libs/xcb-util-renderutil
+   x11-libs/xcb-util-wm
+   )
+   !minimal? (
+   >=x11-libs/libX11-1.1.5
+   >=x11-libs/libXext-1.0.5
+   >=media-libs/mesa-10.3.4-r1
+   )
+   udev? ( >=virtual/udev-150 )
+   unwind? ( sys-libs/libunwind )
+   wayland? (
+   >=dev-libs/wayland-1.3.0
+   media-libs/libepoxy
+   >=dev-libs/wayland-protocols-1.1
+   )
+   >=x11-apps/xinit-1.3.3-r1
+   systemd? (
+   sys-apps/dbus
+   sys-apps/systemd
+   )"
+
+DEPEND="${CDEPEND}
+   sys-devel/flex
+   >=x11-base/xorg-proto-2018.3
+   dmx? (
+   doc? (
+   || (
+   www-client/links
+   www-client/lynx
+

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

2018-05-06 Thread Mart Raudsepp
commit: 3cc32a9e66e2951898182b1769fc663d7081c350
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon May  7 01:08:49 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 01:09:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc32a9e

x11-libs/gtk+: bump to 2.24.32

Thanks-to: Dennis Schridde  gmx.net>
Closes: https://bugs.gentoo.org/650536
Bug: https://bugs.gentoo.org/641994
Closes: https://bugs.gentoo.org/648916
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 x11-libs/gtk+/Manifest|   2 +
 x11-libs/gtk+/gtk+-2.24.32.ebuild | 311 ++
 2 files changed, 313 insertions(+)

diff --git a/x11-libs/gtk+/Manifest b/x11-libs/gtk+/Manifest
index 75cf5c490bc..79afd2f7ad4 100644
--- a/x11-libs/gtk+/Manifest
+++ b/x11-libs/gtk+/Manifest
@@ -1,4 +1,6 @@
 DIST gtk+-2.24.31.tar.xz 12805344 BLAKE2B 
f516f9970a95afa21ae5dbe9f0cafd3c57c5cd27af0c6740a0f7f4367eb8032719e39e533bf89db72dddba7485ee499da9c2370707f51bbc4a7af2d4fb7c1309
 SHA512 
75b846661308d94b5236e7e1c367deabf57753792ca87e92f9769822dd5ec90e00cd8d5574adcc12162e3702e1ae6dc152278a1d218f9bd9e4d1c8dc1dd520c1
+DIST gtk+-2.24.32-patchset.tar.xz 6392 BLAKE2B 
cd3a7256bf0552cd483a59dfd856497f5d908edb40d73c25a336726b880872a219d03a7163226abca6155bfb34a38675817124a82780760b226265ea3fdc3246
 SHA512 
6c8763826b479c9c122bb991ae42b0ce0e754d460be5c6ea8d1bba28f7318c014822eccaae0b39c3b7c16804991c8c46c53cd8ded3ad6212830a2f5746567543
+DIST gtk+-2.24.32.tar.xz 12620860 BLAKE2B 
03f4c0a8be98473f62bc8c86859937969c4169960a5f93d37ff6dcde00413215fa6c7125b15781bf50d67b40aa0056cb71b83fb50acb2c3467b5deb3c8d938f0
 SHA512 
8e8fd9ae32f1d6fb544da260f00599f0f05090d910d767b06ef086ab4f1f8373a29bb0da9767761c9b5f4cfd51b5c45d0fa5d39b0428c839ddf0a579df806696
 DIST gtk+-3.22.19.tar.xz 18841024 BLAKE2B 
dc4c27d022c6766036b16e52b53b4aa3946c41457abaabca390bdba2b720db71b9c584101990928af1bef73dc49f7b71a951babd52e11aa5306a1d877f18
 SHA512 
c83198794433ee6eb29f8740d59bd7056cd36808b4bff1a99563ab1a1742e6635dab4f2a8be33317f74d3b336f0d1adc28dd91410da056b50a08c215f184dce2
 DIST gtk+-3.22.26.tar.xz 18922136 BLAKE2B 
a1e43be24abe2bda8eb63f3794b191b152abb5717334f8f46fe3158eb7ec92d5413ed3ca0df2a1ad676deacee3e7ce5e737661ec5f5c911609d40d3b9379c4c4
 SHA512 
2fd3a4175168d37f243359bac5df84722a2830fe5b62f86b914ce39ff500f0361e412843922343dffef8bee8f1205799ff86dd3ae8ac419928f4fe977e0e946f
 DIST gtk+-3.22.29.tar.xz 18964852 BLAKE2B 
a7551d604a1e27cba1d0580f2645bf4afff900908ce40d3d4d05cfb7348afc0620922e9b7939cf4ce2314ff489ffe38386aaf2634f3eff6591dfd0a225f19bc7
 SHA512 
046fa4458626e81ea7b1ddb753d53ecd91d0f2101af428cfdf77fe866bbe430cb3622203cc5e895b220a9364e35009245cdaf76e0cfa30d32d31095b5fcb42bc

diff --git a/x11-libs/gtk+/gtk+-2.24.32.ebuild 
b/x11-libs/gtk+/gtk+-2.24.32.ebuild
new file mode 100644
index 000..dde87af5e34
--- /dev/null
+++ b/x11-libs/gtk+/gtk+-2.24.32.ebuild
@@ -0,0 +1,311 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+GNOME2_EAUTORECONF="yes"
+
+inherit eutils flag-o-matic gnome2 multilib multilib-minimal readme.gentoo-r1 
virtualx
+
+DESCRIPTION="Gimp ToolKit +"
+HOMEPAGE="https://www.gtk.org/;
+SRC_URI+=" https://dev.gentoo.org/~leio/distfiles/${P}-patchset.tar.xz;
+
+LICENSE="LGPL-2+"
+SLOT="2"
+IUSE="aqua cups examples +introspection test vim-syntax xinerama"
+REQUIRED_USE="
+   xinerama? ( !aqua )
+"
+
+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"
+
+# Upstream wants us to do their job:
+# https://bugzilla.gnome.org/show_bug.cgi?id=768663#c1
+RESTRICT="test"
+
+COMMON_DEPEND="
+   >=dev-libs/atk-2.10.0[introspection?,${MULTILIB_USEDEP}]
+   >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
+   >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}]
+   >=x11-libs/cairo-1.12.14-r4:=[aqua?,svg,${MULTILIB_USEDEP}]
+   >=x11-libs/gdk-pixbuf-2.30.7:2[introspection?,${MULTILIB_USEDEP}]
+   >=x11-libs/pango-1.36.3[introspection?,${MULTILIB_USEDEP}]
+   x11-misc/shared-mime-info
+
+   cups? ( >=net-print/cups-1.7.1-r2:=[${MULTILIB_USEDEP}] )
+   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
+   !aqua? (
+   >=x11-libs/cairo-1.12.14-r4:=[aqua?,svg,X,${MULTILIB_USEDEP}]
+   >=x11-libs/libXrender-0.9.8[${MULTILIB_USEDEP}]
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXi-1.7.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXrandr-1.5[${MULTILIB_USEDEP}]
+   >=x11-libs/libXcursor-1.1.14[${MULTILIB_USEDEP}]
+   >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}]
+   

[gentoo-commits] repo/gentoo:master commit in: dev-util/gtk-builder-convert/

2018-05-06 Thread Mart Raudsepp
commit: f8239c2a163f3801c84677d22653308235dce61c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon May  7 00:50:41 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 01:09:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8239c2a

dev-util/gtk-builder-convert: bump to 2.24.32

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-util/gtk-builder-convert/Manifest  |  1 +
 .../gtk-builder-convert-2.24.32.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-util/gtk-builder-convert/Manifest 
b/dev-util/gtk-builder-convert/Manifest
index 035477c49c7..78f7c691c42 100644
--- a/dev-util/gtk-builder-convert/Manifest
+++ b/dev-util/gtk-builder-convert/Manifest
@@ -1 +1,2 @@
 DIST gtk+-2.24.31.tar.xz 12805344 BLAKE2B 
f516f9970a95afa21ae5dbe9f0cafd3c57c5cd27af0c6740a0f7f4367eb8032719e39e533bf89db72dddba7485ee499da9c2370707f51bbc4a7af2d4fb7c1309
 SHA512 
75b846661308d94b5236e7e1c367deabf57753792ca87e92f9769822dd5ec90e00cd8d5574adcc12162e3702e1ae6dc152278a1d218f9bd9e4d1c8dc1dd520c1
+DIST gtk+-2.24.32.tar.xz 12620860 BLAKE2B 
03f4c0a8be98473f62bc8c86859937969c4169960a5f93d37ff6dcde00413215fa6c7125b15781bf50d67b40aa0056cb71b83fb50acb2c3467b5deb3c8d938f0
 SHA512 
8e8fd9ae32f1d6fb544da260f00599f0f05090d910d767b06ef086ab4f1f8373a29bb0da9767761c9b5f4cfd51b5c45d0fa5d39b0428c839ddf0a579df806696

diff --git a/dev-util/gtk-builder-convert/gtk-builder-convert-2.24.32.ebuild 
b/dev-util/gtk-builder-convert/gtk-builder-convert-2.24.32.ebuild
new file mode 100644
index 000..258cf2dda4e
--- /dev/null
+++ b/dev-util/gtk-builder-convert/gtk-builder-convert-2.24.32.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME_ORG_MODULE="gtk+"
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="xml"
+
+inherit gnome.org python-single-r1
+
+DESCRIPTION="Converts Glade files to GtkBuilder XML format"
+HOMEPAGE="https://www.gtk.org/;
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}"
+
+# gtk-builder-convert was part of gtk+ until 2.24.10-r1
+# man page transitioned in 2.24.31-r1
+RDEPEND="${COMMON_DEPEND}
+   !http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl 
docs/reference/gtk/gtk-builder-convert.xml
+}
+
+src_install() {
+   doman gtk-builder-convert.1
+   python_doscript gtk/gtk-builder-convert
+}



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

2018-05-06 Thread Matt Turner
commit: 6e1fd7415057efe313e0a0f73f3a105730748e28
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May  7 00:38:26 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May  7 00:39:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e1fd741

media-libs/t1lib: Drop unnecessary dependency on x11-libs/libXfont

Transition to depending on x11-base/xorg-proto while we're here.

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

 media-libs/t1lib/{t1lib-5.1.2-r1.ebuild => t1lib-5.1.2-r2.ebuild} | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/media-libs/t1lib/t1lib-5.1.2-r1.ebuild 
b/media-libs/t1lib/t1lib-5.1.2-r2.ebuild
similarity index 96%
rename from media-libs/t1lib/t1lib-5.1.2-r1.ebuild
rename to media-libs/t1lib/t1lib-5.1.2-r2.ebuild
index 8be12911e2e..e763c5eb15a 100644
--- a/media-libs/t1lib/t1lib-5.1.2-r1.ebuild
+++ b/media-libs/t1lib/t1lib-5.1.2-r2.ebuild
@@ -21,11 +21,7 @@ RDEPEND="X? (
)"
 DEPEND="${RDEPEND}
doc? ( virtual/latex-base )
-   X? (
-   x11-libs/libXfont
-   x11-proto/xproto
-   x11-proto/fontsproto
-   )"
+   X? ( x11-base/xorg-proto )"
 
 PATCHES=(
"${FILESDIR}"/${PN}-5.1.1-parallel.patch



[gentoo-commits] proj/portage:master commit in: pym/portage/tests/

2018-05-06 Thread Zac Medico
commit: 299a9a40536209c4c2664857b5aecb018fa0a6f6
Author: Zac Medico  gentoo  org>
AuthorDate: Sun May  6 23:40:33 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon May  7 00:19:54 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=299a9a40

TestCase: handle SkipTest during setUp method

 pym/portage/tests/__init__.py | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/pym/portage/tests/__init__.py b/pym/portage/tests/__init__.py
index bf681c47e..e149b5c0c 100644
--- a/pym/portage/tests/__init__.py
+++ b/pym/portage/tests/__init__.py
@@ -207,18 +207,18 @@ class TestCase(unittest.TestCase):
result.startTest(self)
testMethod = getattr(self, self._testMethodName)
try:
-   try:
-   self.setUp()
-   except SystemExit:
-   raise
-   except KeyboardInterrupt:
-   raise
-   except:
-   result.addError(self, sys.exc_info())
-   return
-
ok = False
try:
+   try:
+   self.setUp()
+   except KeyboardInterrupt:
+   raise
+   except SkipTest:
+   raise
+   except Exception:
+   result.addError(self, sys.exc_info())
+   return
+
testMethod()
ok = True
except SkipTest as e:



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

2018-05-06 Thread Zac Medico
commit: fefc6f1feb57503ce4826de1e405c12ef761c0ce
Author: Zac Medico  gentoo  org>
AuthorDate: Sun May  6 23:41:15 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon May  7 00:19:54 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=fefc6f1f

RetryTestCase: test ThreadPoolExecutor and ForkExecutor (bug 654390)

ThreadPoolExecutor is the default asyncio event loop's default executor,
so explicitly test it. Also explicitly test ForkExecutor, since it is
more useful in cases where tasks may need to be forcefully cancelled.

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

 pym/portage/tests/util/futures/test_retry.py | 37 ++--
 1 file changed, 35 insertions(+), 2 deletions(-)

diff --git a/pym/portage/tests/util/futures/test_retry.py 
b/pym/portage/tests/util/futures/test_retry.py
index baf293d56..16ecccbc7 100644
--- a/pym/portage/tests/util/futures/test_retry.py
+++ b/pym/portage/tests/util/futures/test_retry.py
@@ -1,16 +1,24 @@
 # Copyright 2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+try:
+   from concurrent.futures import ThreadPoolExecutor
+except ImportError:
+   ThreadPoolExecutor = None
+
 try:
import threading
 except ImportError:
import dummy_threading as threading
 
+import sys
+
 from portage.tests import TestCase
 from portage.util._eventloop.global_event_loop import global_event_loop
 from portage.util.backoff import RandomExponentialBackoff
 from portage.util.futures import asyncio
 from portage.util.futures.retry import retry
+from portage.util.futures.executor.fork import ForkExecutor
 from portage.util.monotonic import monotonic
 
 
@@ -155,13 +163,31 @@ class RetryTestCase(TestCase):
self.assertTrue(isinstance(done.pop().exception().__cause__, 
asyncio.TimeoutError))
 
 
-class RetryExecutorTestCase(RetryTestCase):
+class RetryForkExecutorTestCase(RetryTestCase):
"""
Wrap each coroutine function with AbstractEventLoop.run_in_executor,
in order to test the event loop's default executor. The executor
may use either a thread or a subprocess, and either case is
automatically detected and handled.
"""
+   def __init__(self, *pargs, **kwargs):
+   super(RetryForkExecutorTestCase, self).__init__(*pargs, 
**kwargs)
+   self._executor = None
+
+   def _setUpExecutor(self):
+   self._executor = ForkExecutor()
+
+   def _tearDownExecutor(self):
+   if self._executor is not None:
+   self._executor.shutdown(wait=True)
+   self._executor = None
+
+   def setUp(self):
+   self._setUpExecutor()
+
+   def tearDown(self):
+   self._tearDownExecutor()
+
def _wrap_coroutine_func(self, coroutine_func):
parent_loop = global_event_loop()
 
@@ -191,7 +217,7 @@ class RetryExecutorTestCase(RetryTestCase):
def execute_wrapper():
kill_switch = parent_loop.create_future()
parent_future = asyncio.ensure_future(
-   parent_loop.run_in_executor(None, wrapper, 
kill_switch),
+   parent_loop.run_in_executor(self._executor, 
wrapper, kill_switch),
loop=parent_loop)
parent_future.add_done_callback(
lambda parent_future: None if kill_switch.done()
@@ -199,3 +225,10 @@ class RetryExecutorTestCase(RetryTestCase):
return parent_future
 
return execute_wrapper
+
+
+class RetryThreadExecutorTestCase(RetryForkExecutorTestCase):
+   def _setUpExecutor(self):
+   if sys.version_info.major < 3:
+   self.skipTest('ThreadPoolExecutor not supported for 
python2')
+   self._executor = ThreadPoolExecutor(max_workers=1)



[gentoo-commits] proj/portage:master commit in: pym/portage/util/_eventloop/

2018-05-06 Thread Zac Medico
commit: a1360e017b7ee8156ad4ad850e2f8ea40228ca1a
Author: Zac Medico  gentoo  org>
AuthorDate: Mon May  7 00:06:07 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon May  7 00:19:54 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=a1360e01

EventLoop.run_in_executor: use asyncio.wrap_future

Since executors from the concurrent.futures package return
concurrent.futures.Future, it's necessary to wrap them.

 pym/portage/util/_eventloop/EventLoop.py | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/pym/portage/util/_eventloop/EventLoop.py 
b/pym/portage/util/_eventloop/EventLoop.py
index fc7380b03..de0795224 100644
--- a/pym/portage/util/_eventloop/EventLoop.py
+++ b/pym/portage/util/_eventloop/EventLoop.py
@@ -13,6 +13,11 @@ import signal
 import sys
 import traceback
 
+try:
+   import asyncio as _real_asyncio
+except ImportError:
+   _real_asyncio = None
+
 try:
import fcntl
 except ImportError:
@@ -937,7 +942,11 @@ class EventLoop(object):
if executor is None:
executor = ForkExecutor(loop=self)
self._default_executor = executor
-   return executor.submit(func, *args)
+   future = executor.submit(func, *args)
+   if _real_asyncio is not None:
+   future = _real_asyncio.wrap_future(future,
+   loop=self._asyncio_wrapper)
+   return future
 
def is_running(self):
"""Return whether the event loop is currently running."""



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kwallet-pam/

2018-05-06 Thread Thomas Deutschmann
commit: ecdd247695d760108a92e1e3a3bda79a160bda90
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:21:01 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecdd2476

kde-plasma/kwallet-pam: x86 stable (bug #654746)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 kde-plasma/kwallet-pam/kwallet-pam-5.11.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.11.5-r1.ebuild 
b/kde-plasma/kwallet-pam/kwallet-pam-5.11.5-r1.ebuild
index fdfa93bb219..7c512e1469d 100644
--- a/kde-plasma/kwallet-pam/kwallet-pam-5.11.5-r1.ebuild
+++ b/kde-plasma/kwallet-pam/kwallet-pam-5.11.5-r1.ebuild
@@ -7,7 +7,7 @@ inherit kde5
 
 DESCRIPTION="KWallet PAM module to not enter password again"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm x86"
 IUSE=""
 
 DEPEND="



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

2018-05-06 Thread Thomas Deutschmann
commit: d38f77561f0b38e1db50efbb7a84b039742f3a42
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:19:47 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d38f7756

app-office/kexi: x86 stable (bug #655064)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

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

diff --git a/app-office/kexi/kexi-3.1.0.ebuild 
b/app-office/kexi/kexi-3.1.0.ebuild
index 8ceeaf7b7c7..a6264d7bcc0 100644
--- a/app-office/kexi/kexi-3.1.0.ebuild
+++ b/app-office/kexi/kexi-3.1.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Visual database applications creator"
 HOMEPAGE="https://www.kde.org/applications/office/kexi/ 
http://www.kexi-project.org/;
 [[ ${KDE_BUILD_TYPE} != live ]] && 
SRC_URI="mirror://kde/stable/${PN}/src/${P}.tar.xz"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="debug experimental marble mdb mysql postgres sqlite webkit"
 
 COMMON_DEPEND="



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

2018-05-06 Thread Thomas Deutschmann
commit: 407fb90c99e5ca130f1ac0f42ec37552fd423565
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:18:28 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=407fb90c

dev-libs/kreport: x86 stable (bug #655064)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

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

diff --git a/dev-libs/kreport/kreport-3.1.0.ebuild 
b/dev-libs/kreport/kreport-3.1.0.ebuild
index 050b7101d52..f8092765760 100644
--- a/dev-libs/kreport/kreport-3.1.0.ebuild
+++ b/dev-libs/kreport/kreport-3.1.0.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Framework for creation and generation of reports 
in multiple format
 
 LICENSE="LGPL-2+"
 SLOT="5/4"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="marble +scripting webkit"
 
 RESTRICT+=" test"



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

2018-05-06 Thread Thomas Deutschmann
commit: 9b743745d412bc25c90f69b978ef9e806f9f6cba
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:21:37 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b743745

media-libs/libmp3splt: x86 stable (bug #633840)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

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

diff --git a/media-libs/libmp3splt/libmp3splt-0.9.2-r1.ebuild 
b/media-libs/libmp3splt/libmp3splt-0.9.2-r1.ebuild
index 0427694ed0b..0df68c86d41 100644
--- a/media-libs/libmp3splt/libmp3splt-0.9.2-r1.ebuild
+++ b/media-libs/libmp3splt/libmp3splt-0.9.2-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN:3}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="doc flac pcre"
 
 RDEPEND="media-libs/libmad



[gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-epgsearch/

2018-05-06 Thread Thomas Deutschmann
commit: 19189feb93b6d6524678ee07e20cd44dd0e4e431
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:21:57 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19189feb

media-plugins/vdr-epgsearch: x86 stable (bug #655004)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.1_p20141227-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.1_p20141227-r1.ebuild 
b/media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.1_p20141227-r1.ebuild
index c3d70846e48..babc5e19161 100644
--- a/media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.1_p20141227-r1.ebuild
+++ b/media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.1_p20141227-r1.ebuild
@@ -28,7 +28,7 @@ esac
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+conflictcheckonly +epgsearchonly l10n_de pcre +quicksearch tre"
 REQUIRED_USE="?? ( pcre tre )"
 



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

2018-05-06 Thread Thomas Deutschmann
commit: 8d21706f0429528f8f44eaf6426bbf733159f8dc
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:20:33 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d21706f

kde-misc/kshutdown: x86 stable (bug #655060)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 kde-misc/kshutdown/kshutdown-4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/kshutdown/kshutdown-4.2.ebuild 
b/kde-misc/kshutdown/kshutdown-4.2.ebuild
index 9ca2c20bb78..c27adb0172d 100644
--- a/kde-misc/kshutdown/kshutdown-4.2.ebuild
+++ b/kde-misc/kshutdown/kshutdown-4.2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://kshutdown.sourceforge.io;
 SRC_URI="mirror://sourceforge/${PN}/${PN}-source-${PV/_}.zip"
 
 LICENSE="GPL-2+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+kde"
 
 COMMON_DEPEND="



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

2018-05-06 Thread Thomas Deutschmann
commit: 6ebc97f67e140af45d33d7eb06a78bc29a57fcc4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:19:12 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ebc97f6

dev-libs/kproperty: x86 stable (bug #655064)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

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

diff --git a/dev-libs/kproperty/kproperty-3.1.0.ebuild 
b/dev-libs/kproperty/kproperty-3.1.0.ebuild
index 8969dc1eb31..29d32d10717 100644
--- a/dev-libs/kproperty/kproperty-3.1.0.ebuild
+++ b/dev-libs/kproperty/kproperty-3.1.0.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Property editing framework with editor widget 
similar to Qt Designe
 
 LICENSE="LGPL-2+"
 SLOT="5/4"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 DEPEND="



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

2018-05-06 Thread Thomas Deutschmann
commit: c3d48fd80e4bca8d092211277349d67c30570e8d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:20:11 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3d48fd8

kde-misc/kio-gdrive: x86 stable (bug #655062)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 kde-misc/kio-gdrive/kio-gdrive-1.2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/kio-gdrive/kio-gdrive-1.2.3.ebuild 
b/kde-misc/kio-gdrive/kio-gdrive-1.2.3.ebuild
index 774e9ad3b50..306d006924d 100644
--- a/kde-misc/kio-gdrive/kio-gdrive-1.2.3.ebuild
+++ b/kde-misc/kio-gdrive/kio-gdrive-1.2.3.ebuild
@@ -12,7 +12,7 @@ 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"
+   KEYWORDS="~amd64 x86"
 fi
 
 IUSE="+kaccounts"



[gentoo-commits] repo/gentoo:master commit in: sci-biology/wgs-assembler/

2018-05-06 Thread Thomas Deutschmann
commit: 5f265cce230e34d79603591a66285ed302754617
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:22:41 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f265cce

sci-biology/wgs-assembler: x86 stable (bug #374815)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 sci-biology/wgs-assembler/wgs-assembler-7.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-biology/wgs-assembler/wgs-assembler-7.0-r2.ebuild 
b/sci-biology/wgs-assembler/wgs-assembler-7.0-r2.ebuild
index 192dc48173e..dd3669d010a 100644
--- a/sci-biology/wgs-assembler/wgs-assembler-7.0-r2.ebuild
+++ b/sci-biology/wgs-assembler/wgs-assembler-7.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/wgs-${PV}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="static-libs"
 
 DEPEND="



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

2018-05-06 Thread Thomas Deutschmann
commit: 66d9b6dce568833b6a057a8846cd0500fa996380
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:22:22 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66d9b6dc

kde-misc/wacomtablet: x86 stable (bug #655056)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 kde-misc/wacomtablet/wacomtablet-3.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/wacomtablet/wacomtablet-3.0.0.ebuild 
b/kde-misc/wacomtablet/wacomtablet-3.0.0.ebuild
index 859c6790e54..9de21e63d92 100644
--- a/kde-misc/wacomtablet/wacomtablet-3.0.0.ebuild
+++ b/kde-misc/wacomtablet/wacomtablet-3.0.0.ebuild
@@ -12,7 +12,7 @@ 
HOMEPAGE="https://www.linux-apps.com/content/show.php?action=content=114
 SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-db/kdb/

2018-05-06 Thread Thomas Deutschmann
commit: d22131114bf94ce54fd9f50f07b2f9d05c8e518f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:18:54 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2213111

dev-db/kdb: x86 stable (bug #655064)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 dev-db/kdb/kdb-3.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/kdb/kdb-3.1.0-r1.ebuild b/dev-db/kdb/kdb-3.1.0-r1.ebuild
index b2e6da42d9e..2917c08dc9f 100644
--- a/dev-db/kdb/kdb-3.1.0-r1.ebuild
+++ b/dev-db/kdb/kdb-3.1.0-r1.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Database connectivity and creation framework for 
various vendors"
 
 LICENSE="LGPL-2+"
 SLOT="5/4"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="debug mysql postgres sqlite"
 
 RDEPEND="



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

2018-05-06 Thread Thomas Deutschmann
commit: 6f597edb19270c32954e252b435c75de43578fc4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:23:05 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f597edb

kde-misc/yakuake: x86 stable (bug #655066)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 kde-misc/yakuake/yakuake-3.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/yakuake/yakuake-3.0.5.ebuild 
b/kde-misc/yakuake/yakuake-3.0.5.ebuild
index 10a82b71570..117caeb21fd 100644
--- a/kde-misc/yakuake/yakuake-3.0.5.ebuild
+++ b/kde-misc/yakuake/yakuake-3.0.5.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Quake-style terminal emulator based on konsole"
 HOMEPAGE="https://yakuake.kde.org/;
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 x86"
 fi
 
 LICENSE="GPL-2 LGPL-2"



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

2018-05-06 Thread Thomas Deutschmann
commit: 9cdf7bf3592ebaae3ec72454df0d62836735bc12
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May  7 00:17:43 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May  7 00:24:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cdf7bf3

sci-libs/hdf: x86 stable (bug #630868)

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 sci-libs/hdf/hdf-4.2.13-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/hdf/hdf-4.2.13-r1.ebuild 
b/sci-libs/hdf/hdf-4.2.13-r1.ebuild
index 8ddb0d1d81c..ed67c5f51be 100644
--- a/sci-libs/hdf/hdf-4.2.13-r1.ebuild
+++ b/sci-libs/hdf/hdf-4.2.13-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://www.hdfgroup.org/ftp/HDF/HDF_Current/src/${MYP}.tar.bz2;
 
 SLOT="0"
 LICENSE="NCSA-HDF"
-KEYWORDS="amd64 ia64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ia64 ~ppc x86 ~amd64-linux ~x86-linux"
 IUSE="examples fortran szip static-libs test"
 REQUIRED_USE="test? ( szip )"
 



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

2018-05-06 Thread Mart Raudsepp
commit: bd07d4237d4eb81e6cf74f5480b405094e14cce3
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon May  7 00:17:05 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:17:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd07d423

dev-libs/libfastjson-0.99.8: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-libs/libfastjson/libfastjson-0.99.8.ebuild 
b/dev-libs/libfastjson/libfastjson-0.99.8.ebuild
index 56e9f91dde4..f88a8d2f5b9 100644
--- a/dev-libs/libfastjson/libfastjson-0.99.8.ebuild
+++ b/dev-libs/libfastjson/libfastjson-0.99.8.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://www.rsyslog.com/tag/libfastjson/;
 SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz;
 LICENSE="MIT"
 SLOT="0/4.2.0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~sparc x86"
 IUSE="static-libs"
 
 DEPEND=">=sys-devel/autoconf-archive-2015.02.04"



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

2018-05-06 Thread Mart Raudsepp
commit: fc09638e3a2cc891722cb1e500b935fa27c64c7a
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon May  7 00:08:53 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc09638e

dev-python/snowballstemmer-1.2.1: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild 
b/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild
index 35a5e288166..3cf1949396c 100644
--- a/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild
+++ b/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild
@@ -13,5 +13,5 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~x64-solaris ~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x64-solaris"
 IUSE=""



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

2018-05-06 Thread Mart Raudsepp
commit: 6ca2bca8816cd76205dba1f5baf07984e3336acc
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 23:58:38 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ca2bca8

dev-python/pygments-2.2.0: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/pygments/pygments-2.2.0.ebuild 
b/dev-python/pygments/pygments-2.2.0.ebuild
index 0ea8a1b1dce..413fa9ed07c 100644
--- a/dev-python/pygments/pygments-2.2.0.ebuild
+++ b/dev-python/pygments/pygments-2.2.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="BSD"
 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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2018-05-06 Thread Mart Raudsepp
commit: fc87a260c02b05c3f436f458eb2d1abd08ed3315
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon May  7 00:11:16 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc87a260

virtual/acl-0-r2: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/virtual/acl/acl-0-r2.ebuild b/virtual/acl/acl-0-r2.ebuild
index eb86ab78397..5e96576f590 100644
--- a/virtual/acl/acl-0-r2.ebuild
+++ b/virtual/acl/acl-0-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
@@ -7,7 +7,7 @@ inherit multilib-build
 
 DESCRIPTION="Virtual for acl support (sys/acl.h)"
 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"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="static-libs"
 
 RDEPEND="kernel_linux? ( 
>=sys-apps/acl-2.2.52-r1[static-libs?,${MULTILIB_USEDEP}] )



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

2018-05-06 Thread Mart Raudsepp
commit: 1f6a0e09e21de1cf18b65c0353c1af8077f6e9c5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 23:37:41 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f6a0e09

dev-python/iso8601-0.1.11: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/iso8601/iso8601-0.1.11.ebuild 
b/dev-python/iso8601/iso8601-0.1.11.ebuild
index e0129397f67..9e904942dbd 100644
--- a/dev-python/iso8601/iso8601-0.1.11.ebuild
+++ b/dev-python/iso8601/iso8601-0.1.11.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



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

2018-05-06 Thread Mart Raudsepp
commit: 3007dc86927b28ff91d3a3479c2eaa98a682a874
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 23:54:24 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3007dc86

dev-python/ply-3.9: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/ply/ply-3.9.ebuild b/dev-python/ply/ply-3.9.ebuild
index 80720fd928a..2fc44735344 100644
--- a/dev-python/ply/ply-3.9.ebuild
+++ b/dev-python/ply/ply-3.9.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
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0/${PV}"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris"
 IUSE="examples"
 
 RDEPEND=""



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

2018-05-06 Thread Mart Raudsepp
commit: 431a9101d466499512fbc226d8aa1393a3b303e7
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 23:57:38 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=431a9101

dev-python/pyasn1-modules-0.0.8: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/pyasn1-modules/pyasn1-modules-0.0.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyasn1-modules/pyasn1-modules-0.0.8.ebuild 
b/dev-python/pyasn1-modules/pyasn1-modules-0.0.8.ebuild
index f6a76a1feb3..466f6bb885c 100644
--- a/dev-python/pyasn1-modules/pyasn1-modules-0.0.8.ebuild
+++ b/dev-python/pyasn1-modules/pyasn1-modules-0.0.8.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
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=dev-python/pyasn1-0.1.8[${PYTHON_USEDEP}]"



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

2018-05-06 Thread Mart Raudsepp
commit: b777290ba4982898f32e7a95d80a585203b579aa
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon May  7 00:10:18 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b777290b

virtual/libusb-1-r2: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 virtual/libusb/libusb-1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/virtual/libusb/libusb-1-r2.ebuild 
b/virtual/libusb/libusb-1-r2.ebuild
index 73613ee4ca6..f4607f2ef10 100644
--- a/virtual/libusb/libusb-1-r2.ebuild
+++ b/virtual/libusb/libusb-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
@@ -6,7 +6,7 @@ inherit multilib-build
 
 DESCRIPTION="Virtual for libusb"
 SLOT="1"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="udev"
 
 # We force a recent libusb so that downstream consumers of virtual/libusb



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

2018-05-06 Thread Mart Raudsepp
commit: 34296cc946c102576d406602f9fea5dddfe60034
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 23:49:46 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34296cc9

dev-python/freezegun-0.3.10: arm64 stable

Needed by newer dev-python/Babel[test]

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/freezegun/freezegun-0.3.10.ebuild 
b/dev-python/freezegun/freezegun-0.3.10.ebuild
index c9305c43c92..ea56558d4e0 100644
--- a/dev-python/freezegun/freezegun-0.3.10.ebuild
+++ b/dev-python/freezegun/freezegun-0.3.10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 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 ~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="test"
 
 RDEPEND="



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

2018-05-06 Thread Mart Raudsepp
commit: a240e8a595945ed60365aff581243b03dcdeea6a
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 23:51:32 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a240e8a5

dev-python/Babel-2.5.3-r1: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/Babel/Babel-2.5.3-r1.ebuild 
b/dev-python/Babel/Babel-2.5.3-r1.ebuild
index 1afa7d0dd8c..19e1f91a58a 100644
--- a/dev-python/Babel/Babel-2.5.3-r1.ebuild
+++ b/dev-python/Babel/Babel-2.5.3-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 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 ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris"
 IUSE="doc test"
 
 RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]



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

2018-05-06 Thread Mart Raudsepp
commit: f9e368b6459ad04ed96192fb4d268e79644964f7
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon May  7 00:03:06 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9e368b6

dev-python/python-docs: 3.5 and 3.6 arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/python-docs/python-docs-3.5.4.ebuild | 2 +-
 dev-python/python-docs/python-docs-3.6.3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/python-docs/python-docs-3.5.4.ebuild 
b/dev-python/python-docs/python-docs-3.5.4.ebuild
index 10ce6019a60..fa449a9e526 100644
--- a/dev-python/python-docs/python-docs-3.5.4.ebuild
+++ b/dev-python/python-docs/python-docs-3.5.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.python.org/ftp/python/doc/${PV}/python-${PV}-docs-html.tar.
 
 LICENSE="PSF-2"
 SLOT="$(ver_cut 1-2)"
-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=""
 
 S="${WORKDIR}/python-${PV}-docs-html"

diff --git a/dev-python/python-docs/python-docs-3.6.3.ebuild 
b/dev-python/python-docs/python-docs-3.6.3.ebuild
index c867a73eba8..85d8bf62770 100644
--- a/dev-python/python-docs/python-docs-3.6.3.ebuild
+++ b/dev-python/python-docs/python-docs-3.6.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.python.org/ftp/python/doc/${PV}/python-${PV}-docs-html.tar.
 
 LICENSE="PSF-2"
 SLOT="$(ver_cut 1-2)"
-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=""
 
 S="${WORKDIR}/python-${PV}-docs-html"



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

2018-05-06 Thread Mart Raudsepp
commit: fe88ece1167ea73bcfa17dc31c23716a6a459a85
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 23:48:41 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon May  7 00:12:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe88ece1

dev-python/python-dateutil-2.6.1: arm64 stable

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/python-dateutil/python-dateutil-2.6.1.ebuild 
b/dev-python/python-dateutil/python-dateutil-2.6.1.ebuild
index 188fffa35f6..c50f4f28b4c 100644
--- a/dev-python/python-dateutil/python-dateutil-2.6.1.ebuild
+++ b/dev-python/python-dateutil/python-dateutil-2.6.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~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=""
 
 RDEPEND="



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

2018-05-06 Thread Aaron Bauman
commit: 778050e47602b05e905c8975a080569449729601
Author: Christopher Diaz Riveros  gentoo  org>
AuthorDate: Sun May  6 23:24:12 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May  6 23:47:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778050e4

app-admin/installer: fix SRC_URI bug #655038

Fixes alert:
Couldn't download 'installer-0.1.1_beta.tar.gz'. Aborting.

Change SRC_URI to https: protocol instead of mirror:
Closes: https://github.com/gentoo/gentoo/pull/8293

 app-admin/installer/installer-0.1.1_beta.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/installer/installer-0.1.1_beta.ebuild 
b/app-admin/installer/installer-0.1.1_beta.ebuild
index 0b585a450e7..cf7c24cab88 100644
--- a/app-admin/installer/installer-0.1.1_beta.ebuild
+++ b/app-admin/installer/installer-0.1.1_beta.ebuild
@@ -11,7 +11,7 @@ MY_PV=${PV/_/-}
 
 DESCRIPTION="A software for Gentoo installation"
 HOMEPAGE="https://github.com/ChrisADR/installer;
-SRC_URI="mirror://github.com/ChrisADR/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/ChrisADR/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"



[gentoo-commits] proj/portage:master commit in: bin/, pym/portage/tests/, pym/portage/util/_eventloop/, ...

2018-05-06 Thread Zac Medico
commit: 2d500ce2bc96995752dfc2fb475a7abe907e38b6
Author: Zac Medico  gentoo  org>
AuthorDate: Sun May  6 21:28:25 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun May  6 22:51:23 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=2d500ce2

asyncio: explicitly close event loops (bug 654390)

The default asyncio event loop triggers a resource warning if it
is not explicitly closed, therefore close it when appropriate.

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

 bin/ebuild| 4 
 bin/ebuild-ipc.py | 5 -
 bin/egencache | 5 -
 bin/emaint| 3 +++
 bin/emerge| 5 +
 bin/emirrordist   | 6 +-
 bin/portageq  | 6 +-
 bin/quickpkg  | 3 +++
 pym/portage/tests/runTests.py | 6 +-
 pym/portage/tests/util/futures/asyncio/test_child_watcher.py  | 5 +
 pym/portage/tests/util/futures/asyncio/test_event_loop_in_fork.py | 6 ++
 pym/portage/tests/util/futures/asyncio/test_pipe_closed.py| 7 +++
 pym/portage/tests/util/futures/asyncio/test_run_until_complete.py | 5 +
 pym/portage/tests/util/futures/asyncio/test_subprocess_exec.py| 7 ++-
 pym/portage/tests/util/futures/test_retry.py  | 5 -
 pym/portage/util/_eventloop/global_event_loop.py  | 5 -
 16 files changed, 75 insertions(+), 8 deletions(-)

diff --git a/bin/ebuild b/bin/ebuild
index 5221b21a8..710257549 100755
--- a/bin/ebuild
+++ b/bin/ebuild
@@ -55,6 +55,7 @@ from portage.exception import PermissionDenied, 
PortageKeyError, \
PortagePackageException, UnsupportedAPIException
 from portage.localization import _
 import portage.util
+from portage.util._eventloop.global_event_loop import global_event_loop
 from _emerge.Package import Package
 from _emerge.RootConfig import RootConfig
 
@@ -371,4 +372,7 @@ for arg in pargs:
print("Could not run the required binary?")
a = 127
if a:
+   global_event_loop().close()
sys.exit(a)
+
+global_event_loop().close()

diff --git a/bin/ebuild-ipc.py b/bin/ebuild-ipc.py
index 6d0cdbef9..1f323bdc5 100755
--- a/bin/ebuild-ipc.py
+++ b/bin/ebuild-ipc.py
@@ -273,4 +273,7 @@ def ebuild_ipc_main(args):
return ebuild_ipc.communicate(args)
 
 if __name__ == '__main__':
-   sys.exit(ebuild_ipc_main(sys.argv[1:]))
+   try:
+   sys.exit(ebuild_ipc_main(sys.argv[1:]))
+   finally:
+   global_event_loop().close()

diff --git a/bin/egencache b/bin/egencache
index e994b4ab1..70fb5aa00 100755
--- a/bin/egencache
+++ b/bin/egencache
@@ -1116,4 +1116,7 @@ def egencache_main(args):
 if __name__ == "__main__":
portage._disable_legacy_globals()
portage.util.noiselimit = -1
-   sys.exit(egencache_main(sys.argv[1:]))
+   try:
+   sys.exit(egencache_main(sys.argv[1:]))
+   finally:
+   global_event_loop().close()

diff --git a/bin/emaint b/bin/emaint
index 08e75851a..a26dae1e7 100755
--- a/bin/emaint
+++ b/bin/emaint
@@ -31,6 +31,7 @@ if 
osp.isfile(osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), ".porta
 import portage
 portage._internal_caller = True
 from portage.emaint.main import emaint_main
+from portage.util._eventloop.global_event_loop import global_event_loop
 
 try:
emaint_main(sys.argv[1:])
@@ -40,3 +41,5 @@ except IOError as e:
sys.exit(1)
else:
raise
+finally:
+   global_event_loop().close()

diff --git a/bin/emerge b/bin/emerge
index 5f08861e5..e1262d544 100755
--- a/bin/emerge
+++ b/bin/emerge
@@ -13,6 +13,7 @@ import sys
 # exiting from signal handlers intermittently causes python to ignore
 # the SystemExit exception with a message like this:
 # Exception SystemExit: 130 in  ignored
+global_event_loop = None
 try:
 
def exithandler(signum, _frame):
@@ -41,6 +42,7 @@ try:
import portage
portage._internal_caller = True
portage._disable_legacy_globals()
+   from portage.util._eventloop.global_event_loop import global_event_loop
from _emerge.main import emerge_main
 
if __name__ == "__main__":
@@ -84,3 +86,6 @@ except KeyboardInterrupt:
{"signal": signal.SIGINT})
sys.stderr.flush()
sys.exit(128 + signal.SIGINT)
+finally:
+   if global_event_loop is not None:
+   global_event_loop().close()

diff --git a/bin/emirrordist b/bin/emirrordist
index 17f99f590..3ea08379e 100755
--- a/bin/emirrordist
+++ b/bin/emirrordist
@@ -9,6 +9,7 @@ 

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

2018-05-06 Thread Sergei Trofimovich
commit: 4ec881ef10b4bcbffd3b56bc78a680b29cd59853
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 22:13:04 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 22:13:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ec881ef

sci-chemistry/openbabel: allow gcc-8, bug #654800

openbabel explicitly whitelists list of major GCC versions.
The change by Milan allow gcc-8. Newer upstream versions
fixed the code to handle in in a more generic way:
https://github.com/openbabel/openbabel/commit/00120f89cf62b121c30d0b2a891b159e19b53624

Fixed-by: milan hodoscek
Closes: https://bugs.gentoo.org/654800
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sci-chemistry/openbabel/files/openbabel-2.4.1-gcc-8.patch | 15 +++
 sci-chemistry/openbabel/openbabel-2.4.1.ebuild|  3 ++-
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/sci-chemistry/openbabel/files/openbabel-2.4.1-gcc-8.patch 
b/sci-chemistry/openbabel/files/openbabel-2.4.1-gcc-8.patch
new file mode 100644
index 000..632ffa86761
--- /dev/null
+++ b/sci-chemistry/openbabel/files/openbabel-2.4.1-gcc-8.patch
@@ -0,0 +1,15 @@
+https://bugs.gentoo.org/654800
+Fixed-by: milan hodoscek
+diff --git a/../old/CMakeLists.txt b/CMakeLists.txt
+index dc38d1b..801207e 100644
+--- a/../old/CMakeLists.txt
 b/CMakeLists.txt
+@@ -239,7 +239,7 @@ check_type_size(clock_t CLOCK_T)
+ # Get the GCC version - from KDE4 cmake files
+ if(CMAKE_COMPILER_IS_GNUCXX)
+   exec_program(${CMAKE_C_COMPILER} ARGS --version OUTPUT_VARIABLE 
_gcc_version_info)
+-  string(REGEX MATCH "[34567]\\.[0-9]\\.[0-9]" _gcc_version 
"${_gcc_version_info}")
++  string(REGEX MATCH "[345678]\\.[0-9]\\.[0-9]" _gcc_version 
"${_gcc_version_info}")
+   # gcc on mac just reports: "gcc (GCC) 3.3 20030304 ..." without the
+   # patch level, handle this here:
+   if (NOT _gcc_version)

diff --git a/sci-chemistry/openbabel/openbabel-2.4.1.ebuild 
b/sci-chemistry/openbabel/openbabel-2.4.1.ebuild
index 3719af8c81d..4606746af57 100644
--- a/sci-chemistry/openbabel/openbabel-2.4.1.ebuild
+++ b/sci-chemistry/openbabel/openbabel-2.4.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=6
@@ -31,6 +31,7 @@ DOCS=( AUTHORS NEWS.md README.md THANKS doc/dioxin.{inc,mol2} 
doc/README.{dioxin
 
 PATCHES=(
"${FILESDIR}"/${PN}-2.3.2-gcc-6_and_7-backport.patch
+   "${FILESDIR}"/${P}-gcc-8.patch
)
 
 pkg_setup() {



[gentoo-commits] repo/gentoo:master commit in: dev-db/percona-toolkit/

2018-05-06 Thread Thomas Deutschmann
commit: efa8789d254f99f589545334aeee55671abc4300
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun May  6 22:02:56 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun May  6 22:02:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efa8789d

dev-db/percona-toolkit: Bump to v3.0.9

Package-Manager: Portage-2.3.34, Repoman-2.3.9

 dev-db/percona-toolkit/Manifest|  1 +
 .../percona-toolkit/percona-toolkit-3.0.9.ebuild   | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-db/percona-toolkit/Manifest b/dev-db/percona-toolkit/Manifest
index fcfe183e1ae..215ec7fd21e 100644
--- a/dev-db/percona-toolkit/Manifest
+++ b/dev-db/percona-toolkit/Manifest
@@ -4,3 +4,4 @@ DIST percona-toolkit-2.2.19.tar.gz 1425623 BLAKE2B 
fe9b363ec924b1af9110ea7e7dab7
 DIST percona-toolkit-2.2.20.tar.gz 1431840 BLAKE2B 
76565662b4037010f7e8de98316f568c2994f55d042ae3a21b80dc3b839444a11014b61db675cc21c149f26c3b7df52013d7b06c9c1127ec325dae2942a4e4c0
 SHA512 
f7a5f47e9ca05c43dcb80866a1eacd13066e1f036f4f58d51145fc6354ddc86dd6515a9aa33c8f736029800bf4c80f7ba5fcb9f1e6ac41653b3351597885f679
 DIST percona-toolkit-3.0.7.tar.gz 79294306 BLAKE2B 
e3a556c823d355e5af504210dfb360e6fcf217ca6bfb7ba729e83e66cfdd09231c09d05fb51df1eac6bee0c6615620ac96ffce47c4f0473394d9c008ce8bdabe
 SHA512 
e5a23ce6f4fd74f0956187679810de23a9d60f8073609289d641411c9f397f49b02c05cbcd0a68d78992849f17b70fb3ae411ac967e25c7be45f95ec374414fe
 DIST percona-toolkit-3.0.8.tar.gz 79316265 BLAKE2B 
5d6efdbaa4fd3ac914c059c9240f6dcd0de89c6b2ea444c407b115b380bb676c51266f907f6e37a62a40032fd5aa6e1816752c8ec08150dddf71c7568f42c739
 SHA512 
d5380395b052aebe651806649ff22f259d1af9401112b7ffe86b10664b87f917fecfe91bdc72b401d00471fc9c141391006cd322c9464fca1343f704ecaa8623
+DIST percona-toolkit-3.0.9.tar.gz 15197340 BLAKE2B 
095d8c0b26853caa6d2515de1d8fb8ff13b3084caa46498c8c789cd4e7b18473d41992701e393ad91cd7fdda8b3e56a099600285aeb4ba788110d36a028f76b6
 SHA512 
56a8732cfdbd58d0602e482d7bf049d2049104b7ae203d756db81a052cd837f16d2a35f75def4f23748534d0d2eb6441cb9fe49175a931fbcdbb6adeb42f1c53

diff --git a/dev-db/percona-toolkit/percona-toolkit-3.0.9.ebuild 
b/dev-db/percona-toolkit/percona-toolkit-3.0.9.ebuild
new file mode 100644
index 000..8cb91309b31
--- /dev/null
+++ b/dev-db/percona-toolkit/percona-toolkit-3.0.9.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit perl-module
+
+DESCRIPTION="Advanced command-line tools to perform a variety of MySQL and 
system tasks"
+HOMEPAGE="https://www.percona.com/software/mysql-tools/percona-toolkit;
+SRC_URI="https://www.percona.com/downloads/${PN}/${PV}/source/tarball/${P}.tar.gz;
+
+LICENSE="|| ( GPL-2 Artistic )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+# Package warrants IUSE doc
+IUSE=""
+
+COMMON_DEPEND="dev-perl/DBI
+   dev-perl/DBD-mysql
+   virtual/perl-Time-HiRes"
+RDEPEND="${COMMON_DEPEND}
+   dev-perl/JSON
+   dev-perl/libwww-perl
+   dev-perl/Role-Tiny
+   virtual/perl-File-Path
+   virtual/perl-Getopt-Long
+   virtual/perl-Time-Local
+   virtual/perl-Digest-MD5
+   virtual/perl-IO-Compress
+   virtual/perl-File-Temp
+   virtual/perl-File-Spec
+   virtual/perl-Scalar-List-Utils
+   dev-perl/TermReadKey"
+DEPEND="${COMMON_DEPEND}
+   virtual/perl-ExtUtils-MakeMaker"
+
+# Bug #501904 - CVE-2014-2029
+# sed -i -e '/^=item --\[no\]version-check/,/^default: yes/{/^default: yes/d}' 
bin/*
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.0.7-no-versioncheck.patch
+)
+
+src_prepare() {
+   default
+
+   sed -i \
+   -e "s/=> 'percona-toolkit',/=> 'Percona::Toolkit',/g" \
+   Makefile.PL || die
+}



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

2018-05-06 Thread Patrice Clement
commit: 36b65c0cc3a13b57c1236c787bc290d2f229d43d
Author: Oleksandr Trotsenko  gmail  com>
AuthorDate: Sat May  5 14:16:15 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun May  6 21:48:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36b65c0c

app-admin/apachetop: version bump.

Bumping the version to latest 0.18.4.

Closes: https://bugs.gentoo.org/654970
Package-Manager: Portage-2.3.33, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8270

 app-admin/apachetop/Manifest|  1 +
 app-admin/apachetop/apachetop-0.18.4.ebuild | 36 +
 2 files changed, 37 insertions(+)

diff --git a/app-admin/apachetop/Manifest b/app-admin/apachetop/Manifest
index 49111859f76..75ab642f221 100644
--- a/app-admin/apachetop/Manifest
+++ b/app-admin/apachetop/Manifest
@@ -1,2 +1,3 @@
 DIST apachetop-0.12.6.tar.gz 126930 BLAKE2B 
06d12cc72791920c959fa4ef8e18aa90f1f29a616389329685abf445f416cde9ce6edd2db5aaadaba51488033148e8109245200086a11422436ffe0aab1b4a40
 SHA512 
35081772f817c6a83a1fcf78790d2a288a9e4e48234c4b3163a09ad15f49a78d649b77f41aa002940fb9416c263cea159c5092a9b87285488eb450964c823c3a
 DIST apachetop-0.17.4.tar.gz 128153 BLAKE2B 
7601ce98618d041f6fc67e528775ce79b63a726b765ff298d1d74a1dd22a4451be6c36669c7ab9bf82fb8c120a6930d2bbf03823de02a216c558c358c53c07be
 SHA512 
b5115048f79c694344fd341631fe7739567ba3ce6e18514d0be250cb6f42e04c54d35cc023dea5258725fcbfbb6debdaa51b91d64ae3120e70f5b78a7989a330
+DIST apachetop-0.18.4.tar.gz 128849 BLAKE2B 
912f060984da326b2e005cc0e3eb99c28182bc6a0930e6781d5a0a990dbbe56b5dbfe871baea1c86a5ac2bc02faa1e583ca104d3c8bd00cc3617599601b2d8bd
 SHA512 
e32f94ab6223578aa5b8c11083de762e8f916ba6d057d93f99208333632a8362b421c41fff76bf60a52f0b377a70d69c17ed02abfb95f86474ad3719016e59f7

diff --git a/app-admin/apachetop/apachetop-0.18.4.ebuild 
b/app-admin/apachetop/apachetop-0.18.4.ebuild
new file mode 100644
index 000..2f5954eb82b
--- /dev/null
+++ b/app-admin/apachetop/apachetop-0.18.4.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="A realtime Apache log analyzer"
+HOMEPAGE="https://github.com/tessus/apachetop;
+SRC_URI="https://github.com/tessus/${PN}/releases/download/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
+IUSE="fam pcre"
+
+RDEPEND="
+   sys-libs/ncurses:0=
+   sys-libs/readline:0=
+   fam? ( virtual/fam )
+   pcre? ( dev-libs/libpcre )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --with-logfile="${EPREFIX}"/var/log/apache2/access_log \
+   --without-adns \
+   $(use_with fam) \
+   $(use_with pcre)
+}



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

2018-05-06 Thread Mikle Kolyada
commit: 530b96094534c8a4ab199353a2039ec876a3be33
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun May  6 21:46:08 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun May  6 21:47:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=530b9609

sci-libs/hdf: amd64 stable wrt bug #630868

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sci-libs/hdf/hdf-4.2.13-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/hdf/hdf-4.2.13-r1.ebuild 
b/sci-libs/hdf/hdf-4.2.13-r1.ebuild
index f0e70016731..8ddb0d1d81c 100644
--- a/sci-libs/hdf/hdf-4.2.13-r1.ebuild
+++ b/sci-libs/hdf/hdf-4.2.13-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://www.hdfgroup.org/ftp/HDF/HDF_Current/src/${MYP}.tar.bz2;
 
 SLOT="0"
 LICENSE="NCSA-HDF"
-KEYWORDS="~amd64 ia64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ia64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="examples fortran szip static-libs test"
 REQUIRED_USE="test? ( szip )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-block/arcconf/

2018-05-06 Thread Patrice Clement
commit: c33a65226a7d3e4f2a61a6b9d51cbad126b425af
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Tue May  1 20:54:27 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun May  6 21:46:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c33a6522

sys-block/arcconf: update HOMEPAGE and SRC_URI.

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

 sys-block/arcconf/arcconf-2.01.22270.ebuild | 4 ++--
 sys-block/arcconf/arcconf-2.06.23164.ebuild | 4 ++--
 sys-block/arcconf/metadata.xml  | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-block/arcconf/arcconf-2.01.22270.ebuild 
b/sys-block/arcconf/arcconf-2.01.22270.ebuild
index 3dd5eee780d..0de9659e373 100644
--- a/sys-block/arcconf/arcconf-2.01.22270.ebuild
+++ b/sys-block/arcconf/arcconf-2.01.22270.ebuild
@@ -8,8 +8,8 @@ MY_PV="v${PV//./_}"
 inherit linux-info
 
 DESCRIPTION="Microsemi Adaptec RAID Controller Command Line Utility"
-HOMEPAGE="http://www.adaptec.com/en-us/downloads/;
-SRC_URI="http://download.adaptec.com/raid/storage_manager/${PN}_${MY_PV}.zip;
+HOMEPAGE="https://www.microsemi.com/;
+SRC_URI="https://download.adaptec.com/raid/storage_manager/${PN}_${MY_PV}.zip;
 
 KEYWORDS="-* ~amd64 ~x86"
 LICENSE="Microsemi"

diff --git a/sys-block/arcconf/arcconf-2.06.23164.ebuild 
b/sys-block/arcconf/arcconf-2.06.23164.ebuild
index b3851291875..663cf87d68e 100644
--- a/sys-block/arcconf/arcconf-2.06.23164.ebuild
+++ b/sys-block/arcconf/arcconf-2.06.23164.ebuild
@@ -8,8 +8,8 @@ MY_PV="v${PV//./_}"
 inherit linux-info
 
 DESCRIPTION="Microsemi Adaptec RAID Controller Command Line Utility"
-HOMEPAGE="http://www.adaptec.com/en-us/downloads/;
-SRC_URI="http://download.adaptec.com/raid/storage_manager/${PN}_${MY_PV}.zip;
+HOMEPAGE="https://www.microsemi.com/;
+SRC_URI="https://download.adaptec.com/raid/storage_manager/${PN}_${MY_PV}.zip;
 
 KEYWORDS="-* ~amd64"
 LICENSE="Microsemi"

diff --git a/sys-block/arcconf/metadata.xml b/sys-block/arcconf/metadata.xml
index 9c93700b722..ebc6102883f 100644
--- a/sys-block/arcconf/metadata.xml
+++ b/sys-block/arcconf/metadata.xml
@@ -14,7 +14,7 @@
Proxy Maintainers


-   Microsemi Adaptec RAID Controller Command Line Utility, which 
allows you to:
+   The Microsemi Adaptec RAID Controller Command Line Utility 
allows you to:
Create and delete logical drives.
Display and modify configuration settings.
Copy configurations from one computer to another.



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

2018-05-06 Thread Mart Raudsepp
commit: 63d09afa0d40f2e3a1b30def3d0fa02c0d729e1c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 21:14:08 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 21:27:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63d09afa

app-office/gnumeric: bump to 1.12.39

There's also a 1.12.40 released, but that needs more care for new
python introspection overrides installing; configure.ac changes are
no good out of the box for sandbox distro building (and potentially
multiple python versions in the future, albeit python2 only for
now it seems).

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 app-office/gnumeric/Manifest|  1 +
 app-office/gnumeric/gnumeric-1.12.39.ebuild | 64 +
 2 files changed, 65 insertions(+)

diff --git a/app-office/gnumeric/Manifest b/app-office/gnumeric/Manifest
index 67da0f6cfe1..c6e4ee7fe31 100644
--- a/app-office/gnumeric/Manifest
+++ b/app-office/gnumeric/Manifest
@@ -1 +1,2 @@
 DIST gnumeric-1.12.38.tar.xz 19807364 BLAKE2B 
5b250991d2a635334d1799b421733a50cbe5dc92c3b792f0c8f3635a37bb72601f62e444ed7cb705ae7456b804fd16e8ab7c1b6567db27a9f12b4b5407b30e1b
 SHA512 
71cf29355b865a3c0f966482ef0cbc90553326fcdc10103762d6c35c1f932371b5dffa3d3d89cd575d3f202ba041e4caaf987db08051b700757ea165508ea217
+DIST gnumeric-1.12.39.tar.xz 20040688 BLAKE2B 
5d99da20b567a939208881b962de3c79ab115a24953dc04d6c882e9a54946e5c5fbd32808a8006e396d70bc9a2a9783b20106536da1c19f7ed7dccd3b12c2fff
 SHA512 
8ae09ea857989e65a8fe2070b30c2309d82daa4142816ef3a1b107035aea0d71498d84eaeeaa870a1587e3785146fad3304321a531c75f6e2f200def53a8e898

diff --git a/app-office/gnumeric/gnumeric-1.12.39.ebuild 
b/app-office/gnumeric/gnumeric-1.12.39.ebuild
new file mode 100644
index 000..4c5b03f89eb
--- /dev/null
+++ b/app-office/gnumeric/gnumeric-1.12.39.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+GNOME2_LA_PUNT="yes"
+PYTHON_COMPAT=( python2_7 )
+
+inherit gnome2 flag-o-matic python-single-r1
+
+DESCRIPTION="The GNOME Spreadsheet"
+HOMEPAGE="http://www.gnumeric.org/;
+LICENSE="GPL-2"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+
+IUSE="+introspection libgda perl python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+# Missing gnome-extra/libgnomedb required version in tree
+# but its upstream is dead and will be dropped soon.
+
+# lots of missing files, also fails tests due to 80-bit long story
+# upstream bug #721556
+RESTRICT="test"
+
+RDEPEND="
+   app-arch/bzip2
+   sys-libs/zlib
+   >=dev-libs/glib-2.38.0:2
+   >=gnome-extra/libgsf-1.14.33:=
+   >=x11-libs/goffice-0.10.38:0.10
+   >=dev-libs/libxml2-2.4.12:2
+   >=x11-libs/pango-1.24.0:=
+
+   >=x11-libs/gtk+-3.8.7:3
+   x11-libs/cairo:=[svg]
+
+   introspection? ( >=dev-libs/gobject-introspection-1:= )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS}
+   >=dev-python/pygobject-3:3[${PYTHON_USEDEP}] )
+   libgda? ( gnome-extra/libgda:5[gtk] )
+"
+DEPEND="${RDEPEND}
+   dev-util/gtk-doc-am
+   >=dev-util/intltool-0.35.0
+   app-text/yelp-tools
+   virtual/pkgconfig
+"
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-static \
+   --with-zlib \
+   $(use_with libgda gda) \
+   $(use_enable introspection) \
+   $(use_with perl) \
+   $(use_with python)
+}



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

2018-05-06 Thread Mart Raudsepp
commit: d76831fc0c33570062d1192e26c30dc08e6b521c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun May  6 21:00:45 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun May  6 21:27:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d76831fc

x11-libs/goffice: bump to 0.10.40

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 x11-libs/goffice/Manifest   |  1 +
 x11-libs/goffice/goffice-0.10.40.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/x11-libs/goffice/Manifest b/x11-libs/goffice/Manifest
index 6c320a393a1..c2da237f805 100644
--- a/x11-libs/goffice/Manifest
+++ b/x11-libs/goffice/Manifest
@@ -1 +1,2 @@
 DIST goffice-0.10.38.tar.xz 2373308 BLAKE2B 
f270233adbbf300ad41516b1ed988db0772b95940196a6ac92c3090f6e52bc47933bb6bb4c023d7137cbca42adfab17fc41b82042c2e9c0340a6cd84942874e5
 SHA512 
1d72e30ee0b9f322cd4114d0a024a99e6d9ff7efcaeb9ca40b5fffe94180c232f03935743c15b1c6170f8bfc04fea5bdcc4d12760643c66cffafefbaa562fd62
+DIST goffice-0.10.40.tar.xz 2381416 BLAKE2B 
24d1905e41e1eb57be53f8f7598776457a17707412e79f2e314e9d1bdbea97a406b1ec27ee628f7d50e22305cd41d900a588520d2995f8be61021ae9b7de60d7
 SHA512 
1756ab825afe0d4a6249c351b2713b5397827bf289d1c2af5a6a6ccc21797ff01d8b69c72d83c9d8b941d5c73ad03bbf63bd98e475828787d8bbf8d18ffd0ede

diff --git a/x11-libs/goffice/goffice-0.10.40.ebuild 
b/x11-libs/goffice/goffice-0.10.40.ebuild
new file mode 100644
index 000..9bf3bf394d8
--- /dev/null
+++ b/x11-libs/goffice/goffice-0.10.40.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2
+
+DESCRIPTION="A library of document-centric objects and utilities"
+HOMEPAGE="https://git.gnome.org/browse/goffice/;
+
+LICENSE="GPL-2"
+SLOT="0.10"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x64-solaris"
+IUSE="+introspection"
+
+# FIXME: add lasem to tree
+RDEPEND="
+   >=app-text/libspectre-0.2.6:=
+   >=dev-libs/glib-2.38.0:2
+   dev-libs/libxslt
+   >=gnome-base/librsvg-2.22:2
+   >=gnome-extra/libgsf-1.14.24:=[introspection?]
+   >=dev-libs/libxml2-2.4.12:2
+   >=x11-libs/pango-1.24:=
+   >=x11-libs/cairo-1.10:=[svg]
+   x11-libs/libXext:=
+   x11-libs/libXrender:=
+   >=x11-libs/gdk-pixbuf-2.22:2
+   >=x11-libs/gtk+-3.20:3
+   introspection? (
+   >=dev-libs/gobject-introspection-1:=
+   >=gnome-extra/libgsf-1.14.23:= )
+"
+DEPEND="${RDEPEND}
+   dev-lang/perl
+   virtual/perl-Getopt-Long
+   virtual/perl-IO-Compress
+   virtual/perl-Compress-Raw-Zlib
+   >=dev-util/gtk-doc-am-1.12
+   >=dev-util/intltool-0.35
+   virtual/pkgconfig
+"
+
+src_configure() {
+   gnome2_src_configure \
+   --without-lasem \
+   --with-gtk \
+   --with-config-backend=gsettings \
+   $(use_enable introspection)
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/github-backup-utils/

2018-05-06 Thread William Hubbs
commit: ac73dbaf371903ae01d545748faa2b2173eff7d7
Author: William Hubbs  gentoo  org>
AuthorDate: Sun May  6 20:58:00 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun May  6 20:58:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac73dbaf

app-admin/github-backup-utils: 2.13.0 version bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-admin/github-backup-utils/Manifest |  1 +
 .../github-backup-utils-2.13.0.ebuild  | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/app-admin/github-backup-utils/Manifest 
b/app-admin/github-backup-utils/Manifest
index 57154e7c7d8..e3cec6309db 100644
--- a/app-admin/github-backup-utils/Manifest
+++ b/app-admin/github-backup-utils/Manifest
@@ -2,6 +2,7 @@ DIST github-backup-utils-2.10.0.tar.gz 73061 BLAKE2B 
072a3cf8b3a775b368e4f5c89f7
 DIST github-backup-utils-2.11.0.tar.gz 75105 BLAKE2B 
f14f30db263cc304aac0d2a9a6d82883067b80bd69292018876fa1b01b1e47d9f8dd44bdafed0eb1198fdabe2b25ec8e6f20117ae905a2ae17bb9a17174642ea
 SHA512 
7d96aff4c2e2bcce7b2b2d32854e759d561de8e683a13d3890bbbc5177cea861a666a60527b4b6ec4d4d7e8123bfff4618b6dfd0c3db73b1829cca0c43c0a9ec
 DIST github-backup-utils-2.11.1.tar.gz 79378 BLAKE2B 
d887cf6d3e41c1537816edc6073a85c66dcaae0db5882187f5c9202ecaef0c7ad6c3593145a6619cc27e106cacd5343f4b26615569890e112db4ec67f98293f6
 SHA512 
7bdd34386d8604bfddb07d958d6cc435ec3e00705a83e53730f44a82a02eb98be311b73bba299db80513169a0680641927d9e2e9583b936c4fffa86de2ce2cda
 DIST github-backup-utils-2.11.2.tar.gz 79492 BLAKE2B 
0eeba783fda89c862d1b6ecb56bc51dcb5130cc3ae8b35f38bba2b6fd850ee086d0b808f5cebb74617a1dea2f4ea3843c60a6162ac97e3139211b3796cc052d9
 SHA512 
64a622b090c8fe02ffba3c50b213ca177cc87e6aa41991cc3ee5031fc07b707e5f108f32d9346d2cd727939d76779d1f46dc6733e399c70e58ff8cb54087ddb8
+DIST github-backup-utils-2.13.0.tar.gz 79173 BLAKE2B 
567865ede11d200a9dbc4641d9820864d72a325aa6b6439f3633b5fccf2d2a55fdd8f9351a280321d0ee5a1bc7f331369ed09b2e8e5274a9442f98227c82963c
 SHA512 
e78c299b0131d76bd9f5d916f72a1a361a8ea706789c93d60b1980d348c4dad75e371ad84c725d8d8b05c45984d0edcf612d1a9e69e63657c212a848d359ad28
 DIST github-backup-utils-2.5.0.tar.gz 40850 BLAKE2B 
34f16e290619a21edef11410a583357a15b57c9a6a0d20b188863f5c41a7a30bcc168a2337ff7203de6f5659c611178bed0e0cff3d802c1ec923d7c4d8e1ee3a
 SHA512 
ecd5b85e0e2e300a9f40ecb8f545868554c7b48bdf800a21cf111ead80c185c96d475c67487c9b9e8af676f8c71a001730084abde79e05860b3e24004888292d
 DIST github-backup-utils-2.6.0.tar.gz 45970 BLAKE2B 
855c7e93aa4db136629db8ba109328d51b9e9ca82aef1190a9703be2cc456ac006cd6bacaf1d3ffe9ccd8d43fb83c15c30c9b514abd37fb2104e62b2e1ed51fa
 SHA512 
a795e439f9d28e27b457c5b6eb42f35d6aea1527c2a01a26b81d6e86829db14a0b27a366d9358214bbe1c16540fe524fb0010d5f509c78ba5398c6bdbf04182e
 DIST github-backup-utils-2.6.3.tar.gz 50884 BLAKE2B 
43e8c398da11f891230a7910fc29d9fc702f5985c8bda5388f8415446e12a3408383ee5a76a26f2519625be3bf442600e4281a4e10e24b5a1143ac4ca1934442
 SHA512 
dff092325ad6f3502c8c0afbea90a53469af0ab4b98eaa39a950022c5b4e199cd3b48b5ec0585e3ea39b9bbd707dd037e8e0ed00ed8c6858276ba1a8e1075290

diff --git a/app-admin/github-backup-utils/github-backup-utils-2.13.0.ebuild 
b/app-admin/github-backup-utils/github-backup-utils-2.13.0.ebuild
new file mode 100644
index 000..ef2c730c877
--- /dev/null
+++ b/app-admin/github-backup-utils/github-backup-utils-2.13.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# See https://github.com/github/backup-utils/issues/135
+PYTHON_COMPAT=(python2_7)
+inherit python-any-r1
+
+DESCRIPTION="Backup and recovery utilities for GitHub Enterprise"
+HOMEPAGE="https://github.com/github/backup-utils;
+SRC_URI="https://github.com/github/backup-utils/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+DEPEND="test? (
+   dev-util/checkbashisms
+   sys-apps/moreutils
+   ${PYTHON_DEPS}
+)"
+
+RDEPEND="net-misc/rsync"
+
+MY_PN="${PN/#github-/}"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   dobin bin/*
+   insinto usr/share/${PN}
+   doins share/${PN}/version
+
+   exeinto usr/share/${PN}
+   doexe share/${PN}/bm.sh
+   doexe share/${PN}/ghe-*
+
+   insinto etc/${PN}
+   newins backup.config-example backup.config
+
+dodoc -r docs/*
+}
+
+src_test() {
+   emake test
+}



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

2018-05-06 Thread Andreas Hüttel
commit: 3336345f78b135b3047ccf72c8035b82dad4e83e
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun May  6 20:49:22 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sun May  6 20:49:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3336345f

sys-libs/glibc: Restore keywords in 2.26-r7

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-libs/glibc/glibc-2.26-r7.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys-libs/glibc/glibc-2.26-r7.ebuild 
b/sys-libs/glibc/glibc-2.26-r7.ebuild
index dad9a620a2c..63fe46ce3f0 100644
--- a/sys-libs/glibc/glibc-2.26-r7.ebuild
+++ b/sys-libs/glibc/glibc-2.26-r7.ebuild
@@ -18,8 +18,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="git://sourceware.org/git/glibc.git"
inherit git-r3
 else
-   #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc 
~ppc64 ~s390 ~sh ~sparc ~x86"
-   KEYWORDS=""
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
 fi
 



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

2018-05-06 Thread Matt Turner
commit: 7e798a48c9b1cd92129f0dbdbf8bf1d3ffa8e03c
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:18 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e798a48

x11-drivers/xf86-input-wacom-0.36.0: ppc64 stable, bug 649316

 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 2f7d103ee29..aa89f1f23e7 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: media-libs/libepoxy/

2018-05-06 Thread Matt Turner
commit: 195c2dd3275e79571995e64fa96c95b51092765d
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:11 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=195c2dd3

media-libs/libepoxy-1.5.1: ppc64 stable, bug 649316

 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 02442ed308b..f9eacc8db9a 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: x11-libs/libxkbfile/

2018-05-06 Thread Matt Turner
commit: 29f6b7deea10652c61c4fa8359c8070269047c20
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:02 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29f6b7de

x11-libs/libxkbfile-1.0.9-r1: ppc stable, bug 649316

 x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild 
b/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
index bdf29440352..f33e704fbdf 100644
--- a/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
+++ b/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
@@ -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-drivers/xf86-input-libinput/

2018-05-06 Thread Matt Turner
commit: 79d54602cadcbc8a057cd89898421f0e499f12de
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:17 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79d54602

x11-drivers/xf86-input-libinput-0.27.1: ppc64 stable, bug 649316

 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 3f3149594c4..2e256a1b83d 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: dev-libs/libevdev/

2018-05-06 Thread Matt Turner
commit: 7cdc20e91c878c50a2bfd9c035061446195a5861
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:07 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cdc20e9

dev-libs/libevdev-1.5.9: ppc64 stable, bug 649316

 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 5a2e06f0197..57d2c1f12c8 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: x11-libs/libxshmfence/

2018-05-06 Thread Matt Turner
commit: 0617f452dec9c5732bb28fac61161533e6fc835e
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:03 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0617f452

x11-libs/libxshmfence-1.3: ppc stable, bug 649316

 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 eab1cf51289..54348b8c3b1 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-base/xorg-server/

2018-05-06 Thread Matt Turner
commit: 639b98110d78a72c97d2f6c0af950e64cbc70b42
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:16 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=639b9811

x11-base/xorg-server-1.19.5-r2: ppc64 stable, bug 649316

 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 53776b65c65..52f875ebb0d 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-libs/libpciaccess/

2018-05-06 Thread Matt Turner
commit: 9bb8203a0d049031b2aa2cf6c2e7c44a6a2dcfca
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:22 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bb8203a

x11-libs/libpciaccess-0.14: ppc64 stable, bug 649316

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

diff --git a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild 
b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
index 9eec4b7dea2..2c82608120d 100644
--- a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
+++ b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
@@ -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-apps/xkbcomp/

2018-05-06 Thread Matt Turner
commit: 1a1ec18255a53c84a220a5e4f32ae748988e8a95
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:14 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a1ec182

x11-apps/xkbcomp-1.4.1: ppc64 stable, bug 649316

 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 fcbd6a88860..d93da57c162 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-libs/libXres/

2018-05-06 Thread Matt Turner
commit: 6e393e7ecbfdaab48be4be165023aa1925e6957c
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:20 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e393e7e

x11-libs/libXres-1.2.0: ppc64 stable, bug 649316

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

diff --git a/x11-libs/libXres/libXres-1.2.0.ebuild 
b/x11-libs/libXres/libXres-1.2.0.ebuild
index df0652801ac..5de7b888633 100644
--- a/x11-libs/libXres/libXres-1.2.0.ebuild
+++ b/x11-libs/libXres/libXres-1.2.0.ebuild
@@ -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-apps/xtrap/

2018-05-06 Thread Matt Turner
commit: 6f97f11e8e5d32ead84ab42874d8e7b5f568bad2
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:15 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f97f11e

x11-apps/xtrap-1.0.3: ppc64 stable, bug 649316

 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 0b3f0c19ed6..963c4174b04 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: dev-libs/wayland-protocols/

2018-05-06 Thread Matt Turner
commit: dbbe45a1abada9e0a91f2ea0c0aff0d00e3c988c
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:10 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbbe45a1

dev-libs/wayland-protocols-1.13: ppc64 stable, bug 649316

 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 8e4b5aee899..95d298a8b54 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: dev-libs/libinput/

2018-05-06 Thread Matt Turner
commit: 112a2565e2f884b797be630b008dabb626daa76e
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:08 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=112a2565

dev-libs/libinput-1.10.5: ppc64 stable, bug 649316

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

diff --git a/dev-libs/libinput/libinput-1.10.5.ebuild 
b/dev-libs/libinput/libinput-1.10.5.ebuild
index 4843ef01f97..3e9391fbb24 100644
--- a/dev-libs/libinput/libinput-1.10.5.ebuild
+++ b/dev-libs/libinput/libinput-1.10.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz;
 
 LICENSE="MIT"
 SLOT="0/10"
-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="doc input_devices_wacom test"
 # Tests require write access to udev rules directory which is a no-no for live 
system.
 # Other tests are just about logs, exported symbols and autotest of the test 
library.



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

2018-05-06 Thread Matt Turner
commit: 886adf6cab9b4b46646541c0a202d8d50b302c44
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:21 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=886adf6c

x11-libs/libdrm-2.4.91: ppc64 stable, bug 649316

 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 56a73b88c6d..f14cd8176a3 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-base/xcb-proto/

2018-05-06 Thread Matt Turner
commit: 32a717079c996fa73294959a3e903baa204e68ac
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:15 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32a71707

x11-base/xcb-proto-1.13: ppc64 stable, bug 649316

 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 b5928c9bdb3..3d15c94215f 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-misc/xkeyboard-config/

2018-05-06 Thread Matt Turner
commit: 54329bea1d0ae7200e61ce18badd48b14fcadcff
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:04 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54329bea

x11-misc/xkeyboard-config-2.23.1-r1: ppc stable, bug 649316

 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 0493721fae5..c294ff4e646 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 Matt Turner
commit: 4b3b50dddcd94a05e47d7c28fbb0c6020fccdcb4
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:24 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b3b50dd

x11-libs/libxkbfile-1.0.9-r1: ppc64 stable, bug 649316

 x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild 
b/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
index f33e704fbdf..706ab5d34bb 100644
--- a/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
+++ b/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
@@ -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-drivers/xf86-video-ati/

2018-05-06 Thread Matt Turner
commit: 6a6f095698ec83f7ccf50c2b6d74cdc099e0bc25
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:19 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a6f0956

x11-drivers/xf86-video-ati-18.0.1: ppc64 stable, bug 649316

 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 a43b858f565..191cf2352c6 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-misc/xkeyboard-config/

2018-05-06 Thread Matt Turner
commit: d469dfa6126cfa77e25748fd4fa9deb27163d513
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:26 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d469dfa6

x11-misc/xkeyboard-config-2.23.1-r1: ppc64 stable, bug 649316

 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 c294ff4e646..ee9e46d0367 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/libxcb/

2018-05-06 Thread Matt Turner
commit: 33473de33ae24f2f3df0ebf8ed8ccb75c62c2757
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:23 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33473de3

x11-libs/libxcb-1.13: ppc64 stable, bug 649316

 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 97e40f491d8..1876a07fa6d 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-libs/libxshmfence/

2018-05-06 Thread Matt Turner
commit: 38dec4ccec87b7fdb6c8a1cf7e69fe53bec1519a
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:25 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38dec4cc

x11-libs/libxshmfence-1.3: ppc64 stable, bug 649316

 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 54348b8c3b1..b8c111557ac 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-apps/xinit/

2018-05-06 Thread Matt Turner
commit: df44f771bb103473ba83d5e0d23dd46c4f3ab963
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:13 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df44f771

x11-apps/xinit-1.4.0: ppc64 stable, bug 649316

 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 b98d068e11e..16c2a44bf18 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: dev-libs/wayland/

2018-05-06 Thread Matt Turner
commit: 61afd6073ed6ebe174c1dc55696d21cb8460599b
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:09 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61afd607

dev-libs/wayland-1.14.0: ppc64 stable, bug 649316

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

diff --git a/dev-libs/wayland/wayland-1.14.0.ebuild 
b/dev-libs/wayland/wayland-1.14.0.ebuild
index dfc68238870..f73af1e796e 100644
--- a/dev-libs/wayland/wayland-1.14.0.ebuild
+++ b/dev-libs/wayland/wayland-1.14.0.ebuild
@@ -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: x11-apps/bdftopcf/

2018-05-06 Thread Matt Turner
commit: bf11da5f71a0daac5daa614487ac15d78a16daac
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:12 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf11da5f

x11-apps/bdftopcf-1.1: ppc64 stable, bug 649316

 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 091e101f3fa..fc5db50f522 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: x11-libs/libxcb/

2018-05-06 Thread Matt Turner
commit: aa76e706463de075a681422ebc12c12417a4bb84
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  6 20:45:01 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  6 20:45:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa76e706

x11-libs/libxcb-1.13: ppc stable, bug 649316

 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 ff189db241a..97e40f491d8 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: dev-qt/qtlockedfile/

2018-05-06 Thread Andreas Sturmlechner
commit: 918567ca29a56d1a064bf6e9d2ee6044f5061718
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 18:03:45 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 20:18:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=918567ca

dev-qt/qtlockedfile: Drop old

Closes: https://bugs.gentoo.org/653986
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 dev-qt/qtlockedfile/Manifest   |  1 -
 .../qtlockedfile-2.4.1_p20150629.ebuild| 76 --
 2 files changed, 77 deletions(-)

diff --git a/dev-qt/qtlockedfile/Manifest b/dev-qt/qtlockedfile/Manifest
index a4bc5fdc6e8..45d4d15e89b 100644
--- a/dev-qt/qtlockedfile/Manifest
+++ b/dev-qt/qtlockedfile/Manifest
@@ -1,2 +1 @@
-DIST qt-solutions-20150629.tar.xz 710488 BLAKE2B 
102829e3b2afa7cb665c09fc259f9b966596a8245e8e8325c6c45e402bc337d205539b20be791e16515754c6d74247a714b278028e9ffbb74f578c9b8b39b094
 SHA512 
a95ed58f0218cd90d734a40eedd173b896fa0138ad235f3157d7bee538b16c5f385d93bae483fd22267f2984389b9940bb85ba0cd3d25c16124d56abb39568f5
 DIST qt-solutions-20171024.tar.xz 710532 BLAKE2B 
365f4c6fc3bee34bf26ac5039984ceac1d90527297b985b0d1b606f3ba67219bab7f7cba40b4adca55446c34e9f4fe218b4449ee255ba6f6409de78f80ccdaec
 SHA512 
4784d88c2f40c88f06abeb728842875fb5e428a630dbf749f71055681b0c631803d2901b60aa8cc95f5f382dcd21da8d739873aa45e3dd3676ee95925f0198da

diff --git a/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20150629.ebuild 
b/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20150629.ebuild
deleted file mode 100644
index 0ce3afe1772..000
--- a/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20150629.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multibuild qmake-utils
-
-MY_P=qt-solutions-${PV#*_p}
-
-DESCRIPTION="QFile extension with advisory locking functions"
-HOMEPAGE="https://code.qt.io/cgit/qt-solutions/qt-solutions.git/;
-SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.xz;
-
-LICENSE="|| ( LGPL-2.1 GPL-3 )"
-SLOT="0"
-KEYWORDS="amd64 arm ~hppa ~ppc ~ppc64 x86"
-IUSE="doc qt4 +qt5"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-DEPEND="
-   qt4? ( dev-qt/qtcore:4 )
-   qt5? ( dev-qt/qtcore:5 )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}/${PN}
-
-pkg_setup() {
-   MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
-}
-
-src_prepare() {
-   echo 'SOLUTIONS_LIBRARY = yes' > config.pri
-   echo 'QT -= gui' >> src/qtlockedfile.pri
-
-   sed -i -e "s/-head/-${PV%.*}/" common.pri || die
-   sed -i -e '/SUBDIRS+=example/d' ${PN}.pro || die
-
-   multibuild_copy_sources
-}
-
-src_configure() {
-   myconfigure() {
-   if [[ ${MULTIBUILD_VARIANT} == qt4 ]]; then
-   eqmake4
-   fi
-   if [[ ${MULTIBUILD_VARIANT} == qt5 ]]; then
-   eqmake5
-   fi
-   }
-   multibuild_foreach_variant run_in_build_dir myconfigure
-}
-
-src_compile() {
-   multibuild_foreach_variant run_in_build_dir default
-}
-
-src_install() {
-   dodoc README.TXT
-   use doc && dodoc -r doc/html
-
-   myinstall() {
-   # libraries
-   dolib.so lib/*
-
-   # headers
-   insinto "$(${MULTIBUILD_VARIANT}_get_headerdir)"/QtSolutions
-   doins src/QtLockedFile src/${PN}.h
-
-   # .prf files
-   insinto "$(${MULTIBUILD_VARIANT}_get_mkspecsdir)"/features
-   doins "${FILESDIR}"/${PN}.prf
-   }
-   multibuild_foreach_variant run_in_build_dir myinstall
-}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtsingleapplication/

2018-05-06 Thread Andreas Sturmlechner
commit: 1018f900289ff48a6a4ff5eb395a316aec38983b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 18:03:15 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 20:17:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1018f900

dev-qt/qtsingleapplication: Drop old

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

 dev-qt/qtsingleapplication/Manifest|  1 -
 .../qtsingleapplication-2.6.1_p20150629.ebuild | 95 --
 2 files changed, 96 deletions(-)

diff --git a/dev-qt/qtsingleapplication/Manifest 
b/dev-qt/qtsingleapplication/Manifest
index a4bc5fdc6e8..45d4d15e89b 100644
--- a/dev-qt/qtsingleapplication/Manifest
+++ b/dev-qt/qtsingleapplication/Manifest
@@ -1,2 +1 @@
-DIST qt-solutions-20150629.tar.xz 710488 BLAKE2B 
102829e3b2afa7cb665c09fc259f9b966596a8245e8e8325c6c45e402bc337d205539b20be791e16515754c6d74247a714b278028e9ffbb74f578c9b8b39b094
 SHA512 
a95ed58f0218cd90d734a40eedd173b896fa0138ad235f3157d7bee538b16c5f385d93bae483fd22267f2984389b9940bb85ba0cd3d25c16124d56abb39568f5
 DIST qt-solutions-20171024.tar.xz 710532 BLAKE2B 
365f4c6fc3bee34bf26ac5039984ceac1d90527297b985b0d1b606f3ba67219bab7f7cba40b4adca55446c34e9f4fe218b4449ee255ba6f6409de78f80ccdaec
 SHA512 
4784d88c2f40c88f06abeb728842875fb5e428a630dbf749f71055681b0c631803d2901b60aa8cc95f5f382dcd21da8d739873aa45e3dd3676ee95925f0198da

diff --git 
a/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20150629.ebuild 
b/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20150629.ebuild
deleted file mode 100644
index 92b582ef2f7..000
--- a/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20150629.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multibuild qmake-utils
-
-MY_P=qt-solutions-${PV#*_p}
-
-DESCRIPTION="Qt library to start applications only once per user"
-HOMEPAGE="https://code.qt.io/cgit/qt-solutions/qt-solutions.git/;
-SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.xz;
-
-LICENSE="|| ( LGPL-2.1 GPL-3 )"
-SLOT="0"
-KEYWORDS="amd64 arm ~hppa ~ppc ~ppc64 x86"
-IUSE="doc qt4 +qt5 X"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-DEPEND="
-   dev-qt/qtlockedfile[qt4?,qt5?]
-   qt4? (
-   dev-qt/qtcore:4
-   X? ( dev-qt/qtgui:4 )
-   )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtnetwork:5
-   X? (
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   )
-   )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}/${PN}
-
-pkg_setup() {
-   MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
-}
-
-src_prepare() {
-   epatch "${FILESDIR}/2.6.1_p20130904-unbundle-qtlockedfile.patch"
-   epatch "${FILESDIR}/2.6.1_p20130904-no-gui.patch"
-
-   echo 'SOLUTIONS_LIBRARY = yes' > config.pri
-   use X || echo 'QTSA_NO_GUI = yes' >> config.pri
-
-   sed -i -e "s/-head/-${PV%.*}/" common.pri || die
-   sed -i -e '/SUBDIRS+=examples/d' ${PN}.pro || die
-
-   # to ensure unbundling
-   rm -f src/qtlockedfile*
-
-   multibuild_copy_sources
-}
-
-src_configure() {
-   myconfigure() {
-   if [[ ${MULTIBUILD_VARIANT} == qt4 ]]; then
-   eqmake4
-   fi
-   if [[ ${MULTIBUILD_VARIANT} == qt5 ]]; then
-   eqmake5
-   fi
-   }
-   multibuild_foreach_variant run_in_build_dir myconfigure
-}
-
-src_compile() {
-   multibuild_foreach_variant run_in_build_dir default
-}
-
-src_install() {
-   dodoc README.TXT
-   use doc && dodoc -r doc/html
-
-   myinstall() {
-   # libraries
-   dolib.so lib/*
-
-   # headers
-   insinto "$(${MULTIBUILD_VARIANT}_get_headerdir)"/QtSolutions
-   doins src/qtsinglecoreapplication.h
-   use X && doins src/{QtSingleApplication,${PN}.h}
-
-   # .prf files
-   insinto "$(${MULTIBUILD_VARIANT}_get_mkspecsdir)"/features
-   doins "${FILESDIR}"/qtsinglecoreapplication.prf
-   use X && doins "${FILESDIR}"/${PN}.prf
-   }
-   multibuild_foreach_variant run_in_build_dir myinstall
-}



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

2018-05-06 Thread Andreas Sturmlechner
commit: 9c4ec0d74deebb7169bd783df2f15359ff5d92f6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 18:18:17 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 20:17:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c4ec0d7

app-office/texstudio: Prepare for dev-qt/qtsingleapplication qt5--

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 .../{texstudio-2.11.2-r1.ebuild => texstudio-2.11.2-r2.ebuild}  | 2 +-
 .../texstudio/{texstudio-2.12.2.ebuild => texstudio-2.12.2-r1.ebuild}   | 2 +-
 .../texstudio/{texstudio-2.12.4.ebuild => texstudio-2.12.4-r1.ebuild}   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-office/texstudio/texstudio-2.11.2-r1.ebuild 
b/app-office/texstudio/texstudio-2.11.2-r2.ebuild
similarity index 98%
rename from app-office/texstudio/texstudio-2.11.2-r1.ebuild
rename to app-office/texstudio/texstudio-2.11.2-r2.ebuild
index ef3720d5b3d..2fd2e68965d 100644
--- a/app-office/texstudio/texstudio-2.11.2-r1.ebuild
+++ b/app-office/texstudio/texstudio-2.11.2-r2.ebuild
@@ -25,7 +25,7 @@ COMMON_DEPEND="
dev-qt/qtnetwork:5
dev-qt/qtprintsupport:5
dev-qt/qtscript:5
-   dev-qt/qtsingleapplication[qt5,X]
+   dev-qt/qtsingleapplication[qt5(+),X]
dev-qt/qtsvg:5
dev-qt/qttest:5
dev-qt/qtwidgets:5

diff --git a/app-office/texstudio/texstudio-2.12.2.ebuild 
b/app-office/texstudio/texstudio-2.12.2-r1.ebuild
similarity index 98%
rename from app-office/texstudio/texstudio-2.12.2.ebuild
rename to app-office/texstudio/texstudio-2.12.2-r1.ebuild
index 2e154f9ff33..d7e445fa62a 100644
--- a/app-office/texstudio/texstudio-2.12.2.ebuild
+++ b/app-office/texstudio/texstudio-2.12.2-r1.ebuild
@@ -25,7 +25,7 @@ COMMON_DEPEND="
dev-qt/qtnetwork:5
dev-qt/qtprintsupport:5
dev-qt/qtscript:5
-   dev-qt/qtsingleapplication[qt5,X]
+   dev-qt/qtsingleapplication[qt5(+),X]
dev-qt/qtsvg:5
dev-qt/qttest:5
dev-qt/qtwidgets:5

diff --git a/app-office/texstudio/texstudio-2.12.4.ebuild 
b/app-office/texstudio/texstudio-2.12.4-r1.ebuild
similarity index 98%
rename from app-office/texstudio/texstudio-2.12.4.ebuild
rename to app-office/texstudio/texstudio-2.12.4-r1.ebuild
index 2e154f9ff33..d7e445fa62a 100644
--- a/app-office/texstudio/texstudio-2.12.4.ebuild
+++ b/app-office/texstudio/texstudio-2.12.4-r1.ebuild
@@ -25,7 +25,7 @@ COMMON_DEPEND="
dev-qt/qtnetwork:5
dev-qt/qtprintsupport:5
dev-qt/qtscript:5
-   dev-qt/qtsingleapplication[qt5,X]
+   dev-qt/qtsingleapplication[qt5(+),X]
dev-qt/qtsvg:5
dev-qt/qttest:5
dev-qt/qtwidgets:5



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

2018-05-06 Thread Andreas Sturmlechner
commit: 25a32a798855fc6a3995192233a40a686ee03053
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun May  6 17:58:33 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun May  6 20:17:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25a32a79

app-office/texmacs: Drop old, de-stabilise ppc

Closes: https://bugs.gentoo.org/644606
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 app-office/texmacs/Manifest|  2 -
 .../texmacs/files/texmacs-1.99.2-norpath.patch | 16 -
 .../files/texmacs-1.99.2-underlinking.patch| 16 -
 app-office/texmacs/metadata.xml|  1 -
 app-office/texmacs/texmacs-1.99.2-r1.ebuild| 83 --
 app-office/texmacs/texmacs-1.99.5.ebuild   | 81 -
 app-office/texmacs/texmacs-1.99.6-r1.ebuild| 71 --
 app-office/texmacs/texmacs-1.99.6.ebuild   | 79 
 8 files changed, 349 deletions(-)

diff --git a/app-office/texmacs/Manifest b/app-office/texmacs/Manifest
index 9305bd7c55f..74e06e2af0e 100644
--- a/app-office/texmacs/Manifest
+++ b/app-office/texmacs/Manifest
@@ -1,3 +1 @@
-DIST TeXmacs-1.99.2-src.tar.gz 18957858 BLAKE2B 
e109f012158d3382d26c52db2695df3d15fcbf45b85437e4bde0854a52762c6fd3ac630408d3e1e6cd29cb121def3bd6ce217464fc638c99fa120718ab7b7a5e
 SHA512 
e9d2dd0aab2e66470c4ae860e13b6fad2cc07913f14f7bca042c703d4d8b4a62fafafa711b81a0d8f8c125a3641b8bb5f38cd3adac74ec18895671423aa60be9
-DIST TeXmacs-1.99.5-src.tar.gz 25014543 BLAKE2B 
22c6f876015e6641959cded32dae93eda7e1c153f82c2fb60c026c9243c6e35d4b29df42c265a947e64a07cb72de6436e066713b200e3ec66bd4f1f274473807
 SHA512 
a7d846fd8823e486cf724bfcbe04ae877dd64995d6131af59b49427a1178e36b52b9fcd9109783b9ae1e39c988ae9ed497b1540dce29645ebf2c4301ca7357a8
 DIST TeXmacs-1.99.6-src.tar.gz 25081652 BLAKE2B 
08d0a141ff1b8ab59def50c636d917f9290488031d6f7f4343be4a04af44d8994dc791eb23a2a2b71b7a853a3a90482313062fbfc045cf585afdf8f1f8d2a5f3
 SHA512 
2e262037654493075cc4a3d47b93de08c3ad2d6f10ce5fe814a8046b38d327c5dd88c1575dff7e2145f1541f9765dc50ec5abcd63146090eea98ab5db9d103ee

diff --git a/app-office/texmacs/files/texmacs-1.99.2-norpath.patch 
b/app-office/texmacs/files/texmacs-1.99.2-norpath.patch
deleted file mode 100644
index b210a78c6d0..000
--- a/app-office/texmacs/files/texmacs-1.99.2-norpath.patch
+++ /dev/null
@@ -1,16 +0,0 @@
- configure.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.in b/configure.in
-index d79d4b2..8a558af 100644
 a/configure.in
-+++ b/configure.in
-@@ -691,7 +691,7 @@ CONFIG_CXXOPTIMIZE="-O2"
- CONFIG_BSTATIC="-lXdmcp -lXau -lXrender"
- CONFIG_BSHARED="-Wl,-Bdynamic"
- CONFIG_BFLAGS=""
--CONFIG_BPATH="-Wl,-rpath,"
-+CONFIG_BPATH=""
- CONFIG_LDRT=""
- CONFIG_WORD_LENGTH="4"
- CONFIG_WORD_LENGTH_INC="3"

diff --git a/app-office/texmacs/files/texmacs-1.99.2-underlinking.patch 
b/app-office/texmacs/files/texmacs-1.99.2-underlinking.patch
deleted file mode 100644
index 69a37aae71e..000
--- a/app-office/texmacs/files/texmacs-1.99.2-underlinking.patch
+++ /dev/null
@@ -1,16 +0,0 @@
- src/makefile.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/makefile.in b/src/makefile.in
-index f5666c2..b9a10d6 100644
 a/src/makefile.in
-+++ b/src/makefile.in
-@@ -399,7 +399,7 @@ TEXMACS_objects := $(strip $(call uses,system kernel data 
graphics\
- 
- link_options:=-L$(tmsrc)/lib $(LDRT) -lm $(LDPATH) $(LDGUI) $(LDICONV) \
-$(LDGUILE) $(LDAXEL) $(LDCAIRO) $(LDIMLIB2) $(LDSQLITE3) $(LDFREETYPE) \
--   $(LDDL) $(LDSPARKLE)
-+   $(LDDL) $(LDSPARKLE) -lz
- 
- $(tmsrc)/bin/texmacs.bin: Objects/texmacs-$(link).bin
-   $(CP) $^ $@

diff --git a/app-office/texmacs/metadata.xml b/app-office/texmacs/metadata.xml
index d6df84643b7..ba45e88b5f0 100644
--- a/app-office/texmacs/metadata.xml
+++ b/app-office/texmacs/metadata.xml
@@ -11,6 +11,5 @@
   
   
 Add support for media-libs/netpbm
-Add the experimental native pdf export
   
 

diff --git a/app-office/texmacs/texmacs-1.99.2-r1.ebuild 
b/app-office/texmacs/texmacs-1.99.2-r1.ebuild
deleted file mode 100644
index 8871e631366..000
--- a/app-office/texmacs/texmacs-1.99.2-r1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils fdo-mime gnome2-utils
-
-MY_P=${P/tex/TeX}-src
-
-DESCRIPTION="Wysiwyg text processor with high-quality maths"
-HOMEPAGE="http://www.texmacs.org/;
-SRC_URI="ftp://ftp.texmacs.org/pub/TeXmacs/tmftp/source/${MY_P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="imlib jpeg netpbm pdf qt4 svg spell"
-KEYWORDS="alpha amd64 ~ppc x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   app-text/ghostscript-gpl
-   dev-scheme/guile:12[deprecated]
-   media-libs/freetype
-   x11-apps/xmodmap
-   x11-libs/libXext
-   

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

2018-05-06 Thread Sergei Trofimovich
commit: da3a94ce933313b4abf4c7c487a532ed8eb6df4c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:55:52 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:55:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da3a94ce

dev-util/shadowman: stable 2 for ppc, bug #646652

Bug: https://bugs.gentoo.org/646652
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-util/shadowman/shadowman-2.ebuild 
b/dev-util/shadowman/shadowman-2.ebuild
index dc58b9c9c86..830f284c3f2 100644
--- a/dev-util/shadowman/shadowman-2.ebuild
+++ b/dev-util/shadowman/shadowman-2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/mgorny/shadowman/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ~ppc64 sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND="app-admin/eselect"



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

2018-05-06 Thread Sergei Trofimovich
commit: b08551d5dfcc1b8551c5597bd121301bdf011721
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:56:08 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:56:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b08551d5

dev-util/ccache: stable 3.3.4-r1 for ppc, bug #646652

Bug: https://bugs.gentoo.org/646652
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 dev-util/ccache/ccache-3.3.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/ccache/ccache-3.3.4-r1.ebuild 
b/dev-util/ccache/ccache-3.3.4-r1.ebuild
index 5e9e3a5522e..af04e4dd422 100644
--- a/dev-util/ccache/ccache-3.3.4-r1.ebuild
+++ b/dev-util/ccache/ccache-3.3.4-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.samba.org/ftp/ccache/${P}.tar.xz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ~ppc64 sparc x86 
~amd64-fbsd"
 IUSE=""
 
 DEPEND="app-arch/xz-utils



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

2018-05-06 Thread Sergei Trofimovich
commit: e61f2eeb4050f1bd4da1063d3ac66970d8a02bca
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:39:28 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:39:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e61f2eeb

x11-libs/libxcb: stable 1.13 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 90d7adae6ed..ff189db241a 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-base/xorg-server/

2018-05-06 Thread Sergei Trofimovich
commit: 3e62e8db052ce95838a06cd434b3457e6830da4e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:38:55 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:38:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e62e8db

x11-base/xorg-server: stable 1.19.5-r2 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 f765c1cca7b..323ba042ae2 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-libs/libXres/

2018-05-06 Thread Sergei Trofimovich
commit: 09718d327f9d583fd5c774c757197985f39a3d28
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:39:14 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:39:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09718d32

x11-libs/libXres: stable 1.2.0 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

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

diff --git a/x11-libs/libXres/libXres-1.2.0.ebuild 
b/x11-libs/libXres/libXres-1.2.0.ebuild
index 62a0c9af3b4..939fd6c6485 100644
--- a/x11-libs/libXres/libXres-1.2.0.ebuild
+++ b/x11-libs/libXres/libXres-1.2.0.ebuild
@@ -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-apps/xinit/

2018-05-06 Thread Sergei Trofimovich
commit: 0578dd147ec4b83b4c7f3688e2319b9cf2bbccef
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:38:40 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:38:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0578dd14

x11-apps/xinit: stable 1.4.0 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 3c27e57bc30..100e50fd4b7 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: x11-libs/libdrm/

2018-05-06 Thread Sergei Trofimovich
commit: 65ca9d6690fcf1634f060c63fb4fdc2440b99bed
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:39:19 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:39:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65ca9d66

x11-libs/libdrm: stable 2.4.91 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 bc4272e6597..a65888b436e 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/libxshmfence/

2018-05-06 Thread Sergei Trofimovich
commit: 0a8462ff1075a4e6336ec99037c81d7903da117d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:39:37 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:39:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8462ff

x11-libs/libxshmfence: stable 1.3 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 86fbc5670a7..eab1cf51289 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/libxkbfile/

2018-05-06 Thread Sergei Trofimovich
commit: bfa9cf6b8016f7c88619eefd61b7b69d3bdaea37
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:39:33 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:39:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa9cf6b

x11-libs/libxkbfile: stable 1.0.9-r1 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild 
b/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
index 9e996ed9cc6..bdf29440352 100644
--- a/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
+++ b/x11-libs/libxkbfile/libxkbfile-1.0.9-r1.ebuild
@@ -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-drivers/xf86-video-ati/

2018-05-06 Thread Sergei Trofimovich
commit: b53b448138360e8d64e404540abcc6b8575f41dc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:39:10 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:39:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b53b4481

x11-drivers/xf86-video-ati: stable 18.0.1 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 2671baeab5b..3f645ee9d4d 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: dev-libs/wayland/

2018-05-06 Thread Sergei Trofimovich
commit: 5dd8262d7bf748b36abb7b8173e2ac40335a7984
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:38:22 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:38:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dd8262d

dev-libs/wayland: stable 1.14.0 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

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

diff --git a/dev-libs/wayland/wayland-1.14.0.ebuild 
b/dev-libs/wayland/wayland-1.14.0.ebuild
index 3dc7e548d62..186ce57c072 100644
--- a/dev-libs/wayland/wayland-1.14.0.ebuild
+++ b/dev-libs/wayland/wayland-1.14.0.ebuild
@@ -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 Sergei Trofimovich
commit: 582d1caf0261ede0aedf89ef04dc9f1cc25b1a56
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:38:17 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:38:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=582d1caf

dev-libs/libevdev: stable 1.5.9 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 0c44f533c34..c2726d6fd24 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: x11-base/xcb-proto/

2018-05-06 Thread Sergei Trofimovich
commit: 3c512941ccf34b9180b7c4415fa978ef357bd744
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:38:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:38:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c512941

x11-base/xcb-proto: stable 1.13 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 4ac4ec4da82..f59221f7d4c 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-drivers/xf86-input-wacom/

2018-05-06 Thread Sergei Trofimovich
commit: dfeb6881b5d5a5b2548d6f1432d6ee57a0f189df
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:39:05 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:39:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfeb6881

x11-drivers/xf86-input-wacom: stable 0.36.0 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 5dac693470c..bcd1f952979 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: media-libs/libepoxy/

2018-05-06 Thread Sergei Trofimovich
commit: 371c7b31b1f643dc0f86d2e28f733a52fce44000
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:38:31 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:38:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=371c7b31

media-libs/libepoxy: stable 1.5.1 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 91472fc84c5..200be9673e7 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 Sergei Trofimovich
commit: 46f7fe7fc75c3489f1b0b697a27f6101fc59a3d0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:38:26 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:38:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f7fe7f

dev-libs/wayland-protocols: stable 1.13 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 86ba69108ee..d1a9db1e784 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-libs/libpciaccess/

2018-05-06 Thread Sergei Trofimovich
commit: b6f1adb90abab0738ce1229b78d6bde84688c765
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:39:23 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:39:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6f1adb9

x11-libs/libpciaccess: stable 0.14 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

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

diff --git a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild 
b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
index 1977b0a041d..85cd9d78016 100644
--- a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
+++ b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
@@ -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-apps/xkbcomp/

2018-05-06 Thread Sergei Trofimovich
commit: 1cbcfcba2ae63465ea79fb45ab488d5ce0a8753b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:38:44 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:38:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cbcfcba

x11-apps/xkbcomp: stable 1.4.1 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 34102ac1c3d..0e489cf7375 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/bdftopcf/

2018-05-06 Thread Sergei Trofimovich
commit: 02dd64c7c705af7fc40b13a5935603fcf9cd2cda
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun May  6 19:38:35 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun May  6 19:38:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02dd64c7

x11-apps/bdftopcf: stable 1.1 for ia64, bug #649316

Bug: https://bugs.gentoo.org/649316
Package-Manager: Portage-2.3.36, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 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 dd773127b3d..1f81914a39d 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



  1   2   3   4   >