[gentoo-commits] repo/gentoo:master commit in: media-gfx/photoqt/files/, media-gfx/photoqt/

2019-01-24 Thread Andreas Sturmlechner
commit: 465064e149846c57787480f2cd8d6bc30b8d4965
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 24 21:19:50 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 24 22:25:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=465064e1

media-gfx/photoqt: Less invasive patch

Closes: https://bugs.gentoo.org/676194
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../photoqt/files/photoqt-1.7.1-exiv2-0.27.patch   | 447 +
 media-gfx/photoqt/photoqt-1.7.1-r1.ebuild  |   5 +-
 2 files changed, 8 insertions(+), 444 deletions(-)

diff --git a/media-gfx/photoqt/files/photoqt-1.7.1-exiv2-0.27.patch 
b/media-gfx/photoqt/files/photoqt-1.7.1-exiv2-0.27.patch
index d2b264e0175..48734ce7059 100644
--- a/media-gfx/photoqt/files/photoqt-1.7.1-exiv2-0.27.patch
+++ b/media-gfx/photoqt/files/photoqt-1.7.1-exiv2-0.27.patch
@@ -1,448 +1,9 @@
-From 66b2c16c0dec865db9c3d1720385625d22fbf021 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sat, 19 Jan 2019 23:17:32 +0100
-Subject: [PATCH 1/4] Simplify CMakeLists.txt using FeatureSummary
-

- CMakeLists.txt | 192 +++--
- 1 file changed, 75 insertions(+), 117 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 9af47a75..1ffe7ff3 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -52,6 +52,8 @@ include(CMake/ListFilesResources.cmake)
-  OPTIONS THAT CAN BE SET BY THE USER 
- #
- 
-+include(FeatureSummary)
-+
- option(RAW "Use libraw library" ON)
- option(EXIV2 "Use exiv2 library" ON)
- option(GM "Use graphicsmagick library" ON)
-@@ -65,35 +67,37 @@ option(TESTING "Enable some tests" OFF)
-  FIND REQUIRED PACKAGES 
- 
- 
-+find_package(Qt5 COMPONENTS Core Quick Svg Sql Xml LinguistTools REQUIRED)
-+
- if(WIN32)
--find_package(Qt5 COMPONENTS Core Quick Svg Sql Xml LinguistTools 
WinExtras REQUIRED)
--elseif(NOT WIN32)
--find_package(Qt5 COMPONENTS Core Quick Svg Sql Xml LinguistTools REQUIRED)
--endif(WIN32)
-+find_package(Qt5WinExtras REQUIRED)
-+endif()
- 
- set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake" 
${CMAKE_MODULE_PATH})
-+
-+find_package(LibArchive REQUIRED)
-+
- if(GM)
--find_package(Magick)
--endif(GM)
-+find_package(Magick REQUIRED)
-+endif()
- if(EXIV2)
--find_package(Exiv2)
--endif(EXIV2)
-+find_package(Exiv2 REQUIRED)
-+endif()
- if(RAW)
--find_package(LibRaw)
--endif(RAW)
-+find_package(LibRaw REQUIRED)
-+endif()
- if(FREEIMAGE)
--find_package(FreeImage)
--endif(FREEIMAGE)
--find_package(LibArchive)
-+find_package(FreeImage REQUIRED)
-+endif()
- 
- find_package(ECM REQUIRED NO_MODULE)
- set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} "${CMAKE_MODULE_PATH}")
- if(POPPLER)
--find_package(Poppler COMPONENTS Qt5)
--endif(POPPLER)
-+find_package(Poppler COMPONENTS Qt5 REQUIRED)
-+endif()
- if(DEVIL)
--find_package(DevIL)
--endif(DEVIL)
-+find_package(DevIL REQUIRED)
-+endif()
- 
- 
-  TRANSLATIONS AND RESOURCES 
-@@ -137,14 +141,14 @@ add_definitions(-DSIMPLECRYPTKEY="${CRYPTKEY}")
-  Add the executeable 
- #
- 
-+add_executable(${PROJECT_NAME} ${photoqt_SOURCES} ${photoqt_QML} ${RESOURCES})
-+target_link_libraries(${PROJECT_NAME} Qt5::Quick Qt5::Sql Qt5::Svg Qt5::Core 
Qt5::Xml)
-+
- # on windows we add application icons
- if(WIN32)
--add_executable(${PROJECT_NAME} WIN32 ${photoqt_SOURCES} ${photoqt_QML} 
${RESOURCES} windowsicons.rc)
--target_link_libraries(${PROJECT_NAME} Qt5::Quick Qt5::Sql Qt5::Svg 
Qt5::Core Qt5::Xml Qt5::WinExtras)
--elseif(NOT WIN32)
--add_executable(${PROJECT_NAME} ${photoqt_SOURCES} ${photoqt_QML} 
${RESOURCES})
--target_link_libraries(${PROJECT_NAME} Qt5::Quick Qt5::Sql Qt5::Svg 
Qt5::Core Qt5::Xml)
--endif(WIN32)
-+add_executable(${PROJECT_NAME} WIN32 windowsicons.rc)
-+target_link_libraries(${PROJECT_NAME} Qt5::WinExtras)
-+endif()
- 
- 
- 
-@@ -171,7 +175,7 @@ if(TESTING)
- # And inform the user
- message("** TESTING ENABLED")
- 
--endif(TESTING)
-+endif()
- 
- 
- ##
-@@ -186,112 +190,65 @@ composeDesktopFile()
-  CUSTOM OPTIONS 
- 
- 
--if(NOT ${LibArchive_FOUND})
--message(FATAL_ERROR "** Unable to locate LibArchive... is it installed?")
--elseif(${LibArchive_FOUND})
--include_directories(${LibArchive_INCLUDE_DIRS})
--target_link_libraries(${PROJECT_NAME} ${LibArchive_LIBRARIES})
--message("** Found LibArchive " ${LibArchive_VERSION})
--endif(NOT ${LibArchive_FOUND})
-+include_directories(${LibArchive_INCLUDE_DIRS})
-+target_link_libraries(${PROJECT_NAME} ${LibArchive_LIBRARIES})
- 
- if(POPPLER)
--if(NOT ${Poppler_FOUND})
--

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

2019-01-24 Thread Andreas Sturmlechner
commit: 59b084249c5d3cc781b3dfb9ab5fa939e57203f5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 24 21:51:18 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 24 22:26:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b08424

app-office/calligra: Add USE +charts

Fixes unhandled automagic dependency on dev-libs/kreport.

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

 app-office/calligra/calligra-3.1.0-r3.ebuild | 4 +++-
 app-office/calligra/metadata.xml | 1 +
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-office/calligra/calligra-3.1.0-r3.ebuild 
b/app-office/calligra/calligra-3.1.0-r3.ebuild
index 24ca06bcb3a..c3913bd48d1 100644
--- a/app-office/calligra/calligra-3.1.0-r3.ebuild
+++ b/app-office/calligra/calligra-3.1.0-r3.ebuild
@@ -18,7 +18,7 @@ KEYWORDS="amd64 x86"
 
 CAL_FTS=( karbon sheets stage words )
 
-IUSE="activities +crypt +fontconfig gemini gsl import-filter +lcms okular 
openexr +pdf
+IUSE="activities +charts +crypt +fontconfig gemini gsl import-filter +lcms 
okular openexr +pdf
phonon pim spacenav +truetype X $(printf 'calligra_features_%s ' 
${CAL_FTS[@]})"
 
 # TODO: Not packaged: Cauchy (https://bitbucket.org/cyrille/cauchy)
@@ -65,6 +65,7 @@ COMMON_DEPEND="
sys-libs/zlib
virtual/libiconv
activities? ( $(add_frameworks_dep kactivities) )
+   charts? ( dev-libs/kreport )
crypt? ( app-crypt/qca:2[qt5(+)] )
fontconfig? ( media-libs/fontconfig )
gemini? ( $(add_qt_dep qtdeclarative 'widgets') )
@@ -175,6 +176,7 @@ src_configure() {
-DWITH_Iconv=ON
-DPRODUCTSET="${myproducts[*]}"
$(cmake-utils_use_find_package activities KF5Activities)
+   $(cmake-utils_use_find_package charts KChart)
-DWITH_Qca-qt5=$(usex crypt)
-DWITH_Fontconfig=$(usex fontconfig)
$(cmake-utils_use_find_package gemini Libgit2)

diff --git a/app-office/calligra/metadata.xml b/app-office/calligra/metadata.xml
index 575f0b0a917..d5fb30da6eb 100644
--- a/app-office/calligra/metadata.xml
+++ b/app-office/calligra/metadata.xml
@@ -11,6 +11,7 @@


Enable kactivities support
+   Build chartshape plugin for creating 
business charts with dev-libs/kreport
Enable tablet and 2:1 devices support
Enable support for various import 
filter file formats like WordPerfect, Visio and Apple Keynote
Build colorengine plugins using 
media-libs/lcms



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

2019-01-24 Thread Andreas Sturmlechner
commit: 153c145d0b16557c8d8e5b5c7b79021c2765a9bf
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 24 22:24:49 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 24 22:26:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=153c145d

app-office/skrooge: Fix build without dev-qt/qtwebkit installed

Closes: https://bugs.gentoo.org/676196
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../skrooge/files/skrooge-2.17.0-noqtwebkit.patch  | 28 ++
 app-office/skrooge/skrooge-2.17.0.ebuild   | 12 ++
 2 files changed, 36 insertions(+), 4 deletions(-)

diff --git a/app-office/skrooge/files/skrooge-2.17.0-noqtwebkit.patch 
b/app-office/skrooge/files/skrooge-2.17.0-noqtwebkit.patch
new file mode 100644
index 000..cb56d16388f
--- /dev/null
+++ b/app-office/skrooge/files/skrooge-2.17.0-noqtwebkit.patch
@@ -0,0 +1,28 @@
+From 6ba59f2f707829242ad2410803f48089062c7241 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Thu, 24 Jan 2019 23:20:09 +0100
+Subject: [PATCH] Fix build without Qt5WebKit installed
+
+---
+ skgbasegui/skgtablewithgraph.ui | 5 -
+ 1 file changed, 5 deletions(-)
+
+diff --git a/skgbasegui/skgtablewithgraph.ui b/skgbasegui/skgtablewithgraph.ui
+index e1a3058aa..df93115f3 100644
+--- a/skgbasegui/skgtablewithgraph.ui
 b/skgbasegui/skgtablewithgraph.ui
+@@ -151,11 +151,6 @@
+   
+  
+  
+-  
+-   QWebView
+-   QWidget
+-   QtWebKitWidgets/QWebView
+-  
+   
+SKGGraphicsView
+QWidget
+-- 
+2.20.1
+

diff --git a/app-office/skrooge/skrooge-2.17.0.ebuild 
b/app-office/skrooge/skrooge-2.17.0.ebuild
index adde622d056..063a50e9408 100644
--- a/app-office/skrooge/skrooge-2.17.0.ebuild
+++ b/app-office/skrooge/skrooge-2.17.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,6 +16,8 @@ LICENSE="GPL-2"
 KEYWORDS="~amd64 ~x86"
 IUSE="activities designer kde ofx webkit"
 
+REQUIRED_USE="test? ( designer )"
+
 COMMON_DEPEND="
$(add_frameworks_dep karchive)
$(add_frameworks_dep kcompletion)
@@ -62,7 +64,6 @@ DEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kwindowsystem)
dev-libs/libxslt
virtual/pkgconfig
-   x11-misc/shared-mime-info
designer? (
$(add_frameworks_dep kdesignerplugin)
$(add_qt_dep designer)
@@ -73,11 +74,14 @@ RDEPEND="${COMMON_DEPEND}
$(add_qt_dep qtquickcontrols)
 "
 
-REQUIRED_USE="test? ( designer )"
-
 # hangs + installs files
 RESTRICT+=" test"
 
+src_prepare() {
+   use webkit || eapply "${FILESDIR}"/${P}-noqtwebkit.patch # bug 676196
+   kde5_src_prepare
+}
+
 src_configure() {
local mycmakeargs=(
-DSKG_BUILD_TEST=$(usex test)



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

2019-01-24 Thread Andreas Sturmlechner
commit: 4f94e36014e4ec45692f4419bf2705edb45fe667
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 24 23:46:03 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 24 23:59:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f94e360

app-office/scribus: 1.5.5_pre20190124 snapshot bump, re-add keywords

Dropped ~ppc for missing app-text/libqxp, media-libs/libzmf keyword.

Bug: https://bugs.gentoo.org/674804
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-office/scribus/Manifest|   1 +
 .../scribus/scribus-1.5.5_pre20190124.ebuild   | 240 +
 2 files changed, 241 insertions(+)

diff --git a/app-office/scribus/Manifest b/app-office/scribus/Manifest
index 4e57dbe3b39..aa18cb539d7 100644
--- a/app-office/scribus/Manifest
+++ b/app-office/scribus/Manifest
@@ -1,3 +1,4 @@
 DIST scribus-1.5.4-poppler-0.64.0.patch.tar.xz 3020 BLAKE2B 
3388efe6498545ffef6604a41b9e697a0cb6cd053c4893f9d64349bb2251400aca7a4f7dd193eb94cf69ca3f4ae1a3ba3ed106127c4fa680f396940d8056e669
 SHA512 
4577b4b737948a2b41dc0cec90ec95ba260959343e4953929696ceab518a2723a28a891b189caf79435e7fc8f8fc0a1012e7079e890d10549cb2ba426d15b568
 DIST scribus-1.5.4.tar.xz 72832248 BLAKE2B 
64797e865ce44fb01f1e29823e3cb46b2b8f1501e8d07e8b265e93a37961582ec4118d0f32d460bc044e32cf7fa6069732f6b9ce60e4dc4b0b42f914b280e637
 SHA512 
7875ea5f3db5fb116856cf4cf56b4cce2d0b00d9c4820969f52b89e9bf2b36f96eb9e15b368d392be74d4c6d32e971fc28f6ecbf6661fce5e3b9cb61c4d02403
 DIST scribus-1.5.5_pre20190113.tar.gz 84927002 BLAKE2B 
ff515bbd66267493e4558fa2cbdca57fb3e9514940c3c7cc48e435e5d78349674f57bdbeeeb0574c7e7e2d1a2d2482a5b16ccc48c62281f2d11c28a5cc38f915
 SHA512 
1ed9bd3add1a62234b8e26f10a31a015f3a224da588b7b72c854209a45faae61ee949d2986980700132f9d573a426c1283f4e375c25d7ea63ce6b04260a863bb
+DIST scribus-1.5.5_pre20190124.tar.gz 85713996 BLAKE2B 
c4bb181012c5b2d15076239cb06d5b2d88fb24ef67d5e258142a4acb7979a304d5fdbd9163a24aaa47a1c8f354b0b70af7115430173ade9a8e77c1cb489fc849
 SHA512 
e9bd63c37a4818a5dda151b7bb6b7fa9cf7918949bd5612009646335d630b4b4188c2346c7567a3dc5f857849a2d49967f825320720c12e38a6038c7a0d3c34a

diff --git a/app-office/scribus/scribus-1.5.5_pre20190124.ebuild 
b/app-office/scribus/scribus-1.5.5_pre20190124.ebuild
new file mode 100644
index 000..c926514f24c
--- /dev/null
+++ b/app-office/scribus/scribus-1.5.5_pre20190124.ebuild
@@ -0,0 +1,240 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="tk?"
+CMAKE_MAKEFILE_GENERATOR=ninja
+COMMIT=1ed85778dd55bcbcfad2bbc276fd4c97f43ad965
+inherit cmake-utils desktop flag-o-matic gnome2-utils python-single-r1 
xdg-utils
+
+DESCRIPTION="Desktop publishing (DTP) and layout program"
+HOMEPAGE="https://www.scribus.net/;
+SRC_URI="https://github.com/${PN}project/${PN}/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc64 ~sparc ~x86"
+IUSE="+boost debug examples graphicsmagick hunspell +minimal osg +pdf scripts 
templates tk"
+
+#a=$((ls resources/translations/scribus.*ts | sed -e 's:\.: :g' | awk '{print 
$2}'; ls resources/loremipsum/*xml | sed -e 's:\.: :g' -e 's:loremipsum\/: :g'| 
awk '{print $2}'; ls resources/dicts/hyph*dic | sed -e 's:\.: :g' -e 's:hyph_: 
:g' | awk '{print $2}'; ls resources/dicts/README_*txt | sed -e 's:_hyph::g' -e 
's:\.: :g' -e 's:README_: :g' | awk '{print $2}') | sort | uniq); echo $a
+# Keep this sorted, otherwise eliminating of duplicates below won't work
+IUSE_L10N=" af ar bg br ca ca_ES cs cs_CZ cy cy_GB da da_DK de de_1901 de_CH 
de_DE el en_AU en_GB en_US eo es es_ES et eu fa_IR fi fi_FI fr gl he he_IL hr 
hu hu_HU ia id id_ID is is_IS it ja kab kn_IN ko ku la lt lt_LT nb_NO nl nn_NO 
pl pl_PL pt pt_BR pt_PT ro ro_RO ru ru_RU_0 sa sk sk_SK sl sl_SI so sq sr sv 
sv_SE te th_TH tr uk uk_UA zh_CN zh_TW"
+
+map_lang() {
+   local lang=${1/_/-}
+   case $1 in
+   # Retain the following, which have a specific subtag
+   de_*|en_*|pt_*|zh_*) ;;
+   # Consider all other xx_XX as duplicates of the generic xx tag
+   *_*) lang=${1%%_*} ;;
+   esac
+   echo ${lang}
+}
+
+prev_l=
+for l in ${IUSE_L10N}; do
+   l=$(map_lang ${l})
+   [[ ${l} != "${prev_l}" ]] && IUSE+=" l10n_${l}"
+   prev_l=${l}
+done
+unset l prev_l
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   tk? ( scripts )"
+
+# osg
+# couple of third_party libs bundled
+COMMON_DEPEND="${PYTHON_DEPS}
+   app-text/libmspub
+   app-text/libqxp
+   app-text/poppler:=
+   dev-libs/hyphen
+   >=dev-libs/icu-58.2:0=
+   dev-libs/librevenge
+   dev-libs/libxml2
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5[-gles2]
+   dev-qt/qtnetwork:5
+   dev-qt/qtopengl:5
+   dev-qt/qtprintsupport:5
+   

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

2019-01-24 Thread Andreas Sturmlechner
commit: 6170ef8b13ba83f6c3d399514ce580ba46c00be8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 24 23:56:17 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 24 23:59:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6170ef8b

app-office/scribus: Drop 1.5.5_pre20190113 snapshot

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

 app-office/scribus/Manifest|   1 -
 .../scribus-1.5.5_pre20190113-poppler-0.73.patch   |  24 --
 .../scribus/scribus-1.5.5_pre20190113.ebuild   | 241 -
 3 files changed, 266 deletions(-)

diff --git a/app-office/scribus/Manifest b/app-office/scribus/Manifest
index aa18cb539d7..a4eef7c9181 100644
--- a/app-office/scribus/Manifest
+++ b/app-office/scribus/Manifest
@@ -1,4 +1,3 @@
 DIST scribus-1.5.4-poppler-0.64.0.patch.tar.xz 3020 BLAKE2B 
3388efe6498545ffef6604a41b9e697a0cb6cd053c4893f9d64349bb2251400aca7a4f7dd193eb94cf69ca3f4ae1a3ba3ed106127c4fa680f396940d8056e669
 SHA512 
4577b4b737948a2b41dc0cec90ec95ba260959343e4953929696ceab518a2723a28a891b189caf79435e7fc8f8fc0a1012e7079e890d10549cb2ba426d15b568
 DIST scribus-1.5.4.tar.xz 72832248 BLAKE2B 
64797e865ce44fb01f1e29823e3cb46b2b8f1501e8d07e8b265e93a37961582ec4118d0f32d460bc044e32cf7fa6069732f6b9ce60e4dc4b0b42f914b280e637
 SHA512 
7875ea5f3db5fb116856cf4cf56b4cce2d0b00d9c4820969f52b89e9bf2b36f96eb9e15b368d392be74d4c6d32e971fc28f6ecbf6661fce5e3b9cb61c4d02403
-DIST scribus-1.5.5_pre20190113.tar.gz 84927002 BLAKE2B 
ff515bbd66267493e4558fa2cbdca57fb3e9514940c3c7cc48e435e5d78349674f57bdbeeeb0574c7e7e2d1a2d2482a5b16ccc48c62281f2d11c28a5cc38f915
 SHA512 
1ed9bd3add1a62234b8e26f10a31a015f3a224da588b7b72c854209a45faae61ee949d2986980700132f9d573a426c1283f4e375c25d7ea63ce6b04260a863bb
 DIST scribus-1.5.5_pre20190124.tar.gz 85713996 BLAKE2B 
c4bb181012c5b2d15076239cb06d5b2d88fb24ef67d5e258142a4acb7979a304d5fdbd9163a24aaa47a1c8f354b0b70af7115430173ade9a8e77c1cb489fc849
 SHA512 
e9bd63c37a4818a5dda151b7bb6b7fa9cf7918949bd5612009646335d630b4b4188c2346c7567a3dc5f857849a2d49967f825320720c12e38a6038c7a0d3c34a

diff --git 
a/app-office/scribus/files/scribus-1.5.5_pre20190113-poppler-0.73.patch 
b/app-office/scribus/files/scribus-1.5.5_pre20190113-poppler-0.73.patch
deleted file mode 100644
index f63f4c6d1ee..000
--- a/app-office/scribus/files/scribus-1.5.5_pre20190113-poppler-0.73.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From d34e59bfe495250ba023ba0f99e672ee32300a27 Mon Sep 17 00:00:00 2001
-From: Jean Ghali 
-Date: Wed, 16 Jan 2019 00:30:35 +
-Subject: [PATCH] #15537: changes in poppler 0.73.0 cause build failure
-
-git-svn-id: svn://scribus.net/trunk/Scribus@22806 
11d20701-8431-0410-a711-e3c959e3b870

- scribus/plugins/import/pdf/slaoutput.h | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/scribus/plugins/import/pdf/slaoutput.h 
b/scribus/plugins/import/pdf/slaoutput.h
-index c46448b80a..4dac7c3983 100644
 a/scribus/plugins/import/pdf/slaoutput.h
-+++ b/scribus/plugins/import/pdf/slaoutput.h
-@@ -28,7 +28,9 @@ for which a new license (GPL+exception) is in place.
- #include "selection.h"
- #include "vgradient.h"
- 
-+#if POPPLER_ENCODED_VERSION < POPPLER_VERSION_ENCODE(0, 73, 0)
- #include 
-+#endif
- #include 
- #include 
- #include 

diff --git a/app-office/scribus/scribus-1.5.5_pre20190113.ebuild 
b/app-office/scribus/scribus-1.5.5_pre20190113.ebuild
deleted file mode 100644
index 77540ffb19b..000
--- a/app-office/scribus/scribus-1.5.5_pre20190113.ebuild
+++ /dev/null
@@ -1,241 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="tk?"
-CMAKE_MAKEFILE_GENERATOR=ninja
-COMMIT=6326f2af85935842fa7a93eb8f86bd2ae698245e
-inherit cmake-utils desktop flag-o-matic gnome2-utils python-single-r1 
xdg-utils
-
-DESCRIPTION="Desktop publishing (DTP) and layout program"
-HOMEPAGE="https://www.scribus.net/;
-SRC_URI="https://github.com/${PN}project/${PN}/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="+boost debug examples graphicsmagick hunspell +minimal osg +pdf scripts 
templates tk"
-
-#a=$((ls resources/translations/scribus.*ts | sed -e 's:\.: :g' | awk '{print 
$2}'; ls resources/loremipsum/*xml | sed -e 's:\.: :g' -e 's:loremipsum\/: :g'| 
awk '{print $2}'; ls resources/dicts/hyph*dic | sed -e 's:\.: :g' -e 's:hyph_: 
:g' | awk '{print $2}'; ls resources/dicts/README_*txt | sed -e 's:_hyph::g' -e 
's:\.: :g' -e 's:README_: :g' | awk '{print $2}') | sort | uniq); echo $a
-# Keep this sorted, otherwise eliminating of duplicates below won't work
-IUSE_L10N=" af ar bg br ca ca_ES cs cs_CZ cy cy_GB da da_DK de de_1901 de_CH 
de_DE el en_AU en_GB en_US eo es es_ES et eu fa_IR fi fi_FI fr gl he he_IL hr 
hu hu_HU ia id id_ID is is_IS it ja kab kn_IN ko ku la lt lt_LT nb_NO nl nn_NO 
pl pl_PL pt 

[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-wmc/

2019-01-24 Thread Craig Andrews
commit: cdc6c6ca85e6201f2d0b82b850d42f6e75b2b2f7
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Jan 24 22:04:23 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Jan 24 22:05:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc6c6ca

media-plugins/kodi-pvr-wmc: 2.4.4 version bump

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

 media-plugins/kodi-pvr-wmc/Manifest|  1 +
 .../kodi-pvr-wmc/kodi-pvr-wmc-2.4.4.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/media-plugins/kodi-pvr-wmc/Manifest 
b/media-plugins/kodi-pvr-wmc/Manifest
index 4695c5fae06..cc3b2ffb913 100644
--- a/media-plugins/kodi-pvr-wmc/Manifest
+++ b/media-plugins/kodi-pvr-wmc/Manifest
@@ -2,3 +2,4 @@ DIST kodi-pvr-wmc-1.4.7.tar.gz 177937 BLAKE2B 
b11358971780005f12ae318cc8fb202e4b
 DIST kodi-pvr-wmc-1.4.9.tar.gz 177965 BLAKE2B 
680896d2f519977a0dbaaffdb6fe92f815787615dc9014934e2415eb817ac1a1f5dd5669f3d8ba1a0d6a98f0518062b285cdddb5cdf54efac4ec79aa3795ab73
 SHA512 
51ddfb064df5861b3fa89decdf78a499f8251fee3f18ffcf09fcdfbe9c3c741536cafce460486b38bd8abb447e3494f819aef3a2d0764b8e1579d649f386503f
 DIST kodi-pvr-wmc-2.4.1.tar.gz 178040 BLAKE2B 
4c76796d5a9ac1d89e602ebd5c58d3d82010fb433e531a7f36ccc005624561e333232ea532da01bbed5038017634f7c9e58fc33a49118795f1c9a1930f167734
 SHA512 
a2072ba33e3b1f2b0f87a6e2ebd713693814e520cb0aa6de1871122be45b233f5c68cafbf8f145f8c4983e9115391cfdb0cee76ab0a14a8270c839136d535587
 DIST kodi-pvr-wmc-2.4.3.tar.gz 178017 BLAKE2B 
fd08d6f2846e6570f41cf0dd37b0985ea58a65493209f8fc1e3e0e03665494b0e4f5fc484548af1d8fba4f1cee249c5d2ebe062b1224a5d235186c114202497f
 SHA512 
11b1c15f01be9859e6463898b8402165688e820a65ca0145ff2b706acb9b7157429cc128380c77be2a691d956566d54ca79fc14609140a6de6ada3c747641741
+DIST kodi-pvr-wmc-2.4.4.tar.gz 178508 BLAKE2B 
e1d80860ade2a639dd65a9dd541657ee29032facf95c427fd38038f5df28f5cc93622f00809228ae7968786b0d5499606c38eb79adc7ed9200b4e94e2de26206
 SHA512 
9932d3c44dd91ff371ef34cd9fbbbe1485629116b102c31dc7292e32f82869727423195ae9c78969d96e3a03dd22d481cc0708212921acba0524759a4acaad8d

diff --git a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.4.ebuild 
b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.4.ebuild
new file mode 100644
index 000..cd20b116f13
--- /dev/null
+++ b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.4.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils kodi-addon
+
+DESCRIPTION="Kodi's Windows Media Center client addon"
+HOMEPAGE="https://github.com/kodi-pvr/pvr.wmc;
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.wmc.git;
+   inherit git-r3
+   ;;
+*)
+   CODENAME="Leia"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}-${CODENAME}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.wmc-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   =media-tv/kodi-18*
+   =media-libs/kodi-platform-18*
+   "
+RDEPEND="
+   ${DEPEND}
+   "



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-wmc/

2019-01-24 Thread Craig Andrews
commit: ead9543e766deda1074329e80e1e3ac8b6db3c15
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Jan 24 22:04:55 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Jan 24 22:05:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ead9543e

media-plugins/kodi-pvr-wmc: Cleanup old versions

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

 media-plugins/kodi-pvr-wmc/Manifest|  3 --
 .../kodi-pvr-wmc/kodi-pvr-wmc-1.4.7.ebuild | 36 --
 .../kodi-pvr-wmc/kodi-pvr-wmc-2.4.1.ebuild | 36 --
 .../kodi-pvr-wmc/kodi-pvr-wmc-2.4.3.ebuild | 36 --
 4 files changed, 111 deletions(-)

diff --git a/media-plugins/kodi-pvr-wmc/Manifest 
b/media-plugins/kodi-pvr-wmc/Manifest
index cc3b2ffb913..ddbb5e51ee5 100644
--- a/media-plugins/kodi-pvr-wmc/Manifest
+++ b/media-plugins/kodi-pvr-wmc/Manifest
@@ -1,5 +1,2 @@
-DIST kodi-pvr-wmc-1.4.7.tar.gz 177937 BLAKE2B 
b11358971780005f12ae318cc8fb202e4b0ab92f4b97e712cf639dd4f5f568133b089780323fdace0fd1029ba233b0cfc7457d624408fc2443c2c22e629122d9
 SHA512 
15c2807528d169a9de7831b653c948bc8e597324f43dfaa1b1cd1bfefd37979387301c73cabe30ae87532f36d280d84b0e81b6a695f95eb4b4be9e75ebe3736e
 DIST kodi-pvr-wmc-1.4.9.tar.gz 177965 BLAKE2B 
680896d2f519977a0dbaaffdb6fe92f815787615dc9014934e2415eb817ac1a1f5dd5669f3d8ba1a0d6a98f0518062b285cdddb5cdf54efac4ec79aa3795ab73
 SHA512 
51ddfb064df5861b3fa89decdf78a499f8251fee3f18ffcf09fcdfbe9c3c741536cafce460486b38bd8abb447e3494f819aef3a2d0764b8e1579d649f386503f
-DIST kodi-pvr-wmc-2.4.1.tar.gz 178040 BLAKE2B 
4c76796d5a9ac1d89e602ebd5c58d3d82010fb433e531a7f36ccc005624561e333232ea532da01bbed5038017634f7c9e58fc33a49118795f1c9a1930f167734
 SHA512 
a2072ba33e3b1f2b0f87a6e2ebd713693814e520cb0aa6de1871122be45b233f5c68cafbf8f145f8c4983e9115391cfdb0cee76ab0a14a8270c839136d535587
-DIST kodi-pvr-wmc-2.4.3.tar.gz 178017 BLAKE2B 
fd08d6f2846e6570f41cf0dd37b0985ea58a65493209f8fc1e3e0e03665494b0e4f5fc484548af1d8fba4f1cee249c5d2ebe062b1224a5d235186c114202497f
 SHA512 
11b1c15f01be9859e6463898b8402165688e820a65ca0145ff2b706acb9b7157429cc128380c77be2a691d956566d54ca79fc14609140a6de6ada3c747641741
 DIST kodi-pvr-wmc-2.4.4.tar.gz 178508 BLAKE2B 
e1d80860ade2a639dd65a9dd541657ee29032facf95c427fd38038f5df28f5cc93622f00809228ae7968786b0d5499606c38eb79adc7ed9200b4e94e2de26206
 SHA512 
9932d3c44dd91ff371ef34cd9fbbbe1485629116b102c31dc7292e32f82869727423195ae9c78969d96e3a03dd22d481cc0708212921acba0524759a4acaad8d

diff --git a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-1.4.7.ebuild 
b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-1.4.7.ebuild
deleted file mode 100644
index d3e9857a1ed..000
--- a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-1.4.7.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils kodi-addon
-
-DESCRIPTION="Kodi's Windows Media Center client addon"
-HOMEPAGE="https://github.com/kodi-pvr/pvr.wmc;
-SRC_URI=""
-
-case ${PV} in
-)
-   SRC_URI=""
-   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.wmc.git;
-   inherit git-r3
-   ;;
-*)
-   CODENAME="Krypton"
-   KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}-${CODENAME}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/pvr.wmc-${PV}-${CODENAME}"
-   ;;
-esac
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="
-   =media-tv/kodi-17*
-   =media-libs/kodi-platform-17*
-   "
-RDEPEND="
-   ${DEPEND}
-   "

diff --git a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.1.ebuild 
b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.1.ebuild
deleted file mode 100644
index 4b761be8674..000
--- a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils kodi-addon
-
-DESCRIPTION="Kodi's Windows Media Center client addon"
-HOMEPAGE="https://github.com/kodi-pvr/pvr.wmc;
-SRC_URI=""
-
-case ${PV} in
-)
-   SRC_URI=""
-   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.wmc.git;
-   inherit git-r3
-   ;;
-*)
-   CODENAME="Leia"
-   KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-pvr/pvr.wmc/archive/${PV}-${CODENAME}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/pvr.wmc-${PV}-${CODENAME}"
-   ;;
-esac
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="
-   =media-tv/kodi-18*
-   =media-libs/kodi-platform-18*
-   "
-RDEPEND="
-   ${DEPEND}
-   "

diff --git a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.3.ebuild 
b/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.3.ebuild
deleted file mode 100644
index 4b761be8674..000
--- a/media-plugins/kodi-pvr-wmc/kodi-pvr-wmc-2.4.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# 

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

2019-01-24 Thread Thomas Deutschmann
commit: 3b9e817a8f02b8245b47cb8728cae994ecae71bc
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 22:10:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b9e817a

kde-misc/tellico: x86 stable (bug #675300)

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

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

diff --git a/kde-misc/tellico/tellico-3.1.4.ebuild 
b/kde-misc/tellico/tellico-3.1.4.ebuild
index c0ca9f40731..14a4c066ed2 100644
--- a/kde-misc/tellico/tellico-3.1.4.ebuild
+++ b/kde-misc/tellico/tellico-3.1.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://tellico-project.org/;
 SRC_URI="http://tellico-project.org/files/${P}.tar.xz;
 
 LICENSE="|| ( GPL-2 GPL-3 )"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="cddb discid pdf scanner semantic-desktop taglib v4l xmp yaz"
 
 RDEPEND="



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

2019-01-24 Thread Thomas Deutschmann
commit: 9cb698ab483c8b9cfad6d985d243cb3a11513256
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:40:51 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cb698ab

x11-drivers/xf86-video-mga: x86 stable (bug #675818)

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

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

diff --git a/x11-drivers/xf86-video-mga/xf86-video-mga-2.0.0.ebuild 
b/x11-drivers/xf86-video-mga/xf86-video-mga-2.0.0.ebuild
index 7f6c3f9ec8a..b84a627f48f 100644
--- a/x11-drivers/xf86-video-mga/xf86-video-mga-2.0.0.ebuild
+++ b/x11-drivers/xf86-video-mga/xf86-video-mga-2.0.0.ebuild
@@ -8,7 +8,7 @@ inherit xorg-2
 DESCRIPTION="Matrox video driver"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc ~x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux"
 
 src_configure() {
XORG_CONFIGURE_OPTIONS="$(use_enable dri)"



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

2019-01-24 Thread Thomas Deutschmann
commit: a741c993a11ee66ec5a260681bcfec3dccfad22b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:56:20 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a741c993

dev-db/postgresql: x86 stable (bug #675572)

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

 dev-db/postgresql/postgresql-11.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/postgresql/postgresql-11.1.ebuild 
b/dev-db/postgresql/postgresql-11.1.ebuild
index e5e3465aa45..975cc54129a 100644
--- a/dev-db/postgresql/postgresql-11.1.ebuild
+++ b/dev-db/postgresql/postgresql-11.1.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
~x86 ~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 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 SLOT=$(get_major_version)
 



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

2019-01-24 Thread Thomas Deutschmann
commit: 42fdffd77af48c52d58aa37558946bda2b9a0ec3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:44:29 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42fdffd7

x11-misc/xtermcontrol: x86 stable (bug #675818)

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

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

diff --git a/x11-misc/xtermcontrol/xtermcontrol-3.6.ebuild 
b/x11-misc/xtermcontrol/xtermcontrol-3.6.ebuild
index 18ff93b92b8..5fe0fde095e 100644
--- a/x11-misc/xtermcontrol/xtermcontrol-3.6.ebuild
+++ b/x11-misc/xtermcontrol/xtermcontrol-3.6.ebuild
@@ -9,5 +9,5 @@ SRC_URI="https://www.thrysoee.dk/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc sparc ~x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc sparc x86"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: dev-java/oracle-jre-bin/

2019-01-24 Thread Thomas Deutschmann
commit: a91e05e641afce0df96e35e1fb092f0cf101d9bc
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:49:08 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a91e05e6

dev-java/oracle-jre-bin: x86 stable (bug #676134)

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

 dev-java/oracle-jre-bin/oracle-jre-bin-1.8.0.202.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/oracle-jre-bin/oracle-jre-bin-1.8.0.202.ebuild 
b/dev-java/oracle-jre-bin/oracle-jre-bin-1.8.0.202.ebuild
index 0301c67934a..4a38c8f9474 100644
--- a/dev-java/oracle-jre-bin/oracle-jre-bin-1.8.0.202.ebuild
+++ b/dev-java/oracle-jre-bin/oracle-jre-bin-1.8.0.202.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 inherit desktop gnome2-utils java-vm-2 prefix versionator
 
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* ~amd64 x86"
 
 if [[ "$(get_version_component_range 4)" == 0 ]] ; then
S_PV="$(get_version_component_range 1-3)"



[gentoo-commits] repo/gentoo:master commit in: dev-java/oracle-jdk-bin/

2019-01-24 Thread Thomas Deutschmann
commit: bed3e609e4fb31971c3c530f4828efeb125cc941
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:50:15 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bed3e609

dev-java/oracle-jdk-bin: x86 stable (bug #676134)

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

 dev-java/oracle-jdk-bin/oracle-jdk-bin-1.8.0.202.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/oracle-jdk-bin/oracle-jdk-bin-1.8.0.202.ebuild 
b/dev-java/oracle-jdk-bin/oracle-jdk-bin-1.8.0.202.ebuild
index 3bcad1957c5..f11f4449005 100644
--- a/dev-java/oracle-jdk-bin/oracle-jdk-bin-1.8.0.202.ebuild
+++ b/dev-java/oracle-jdk-bin/oracle-jdk-bin-1.8.0.202.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 inherit desktop gnome2-utils java-vm-2 prefix versionator
 
-KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux ~x64-macos 
~sparc64-solaris ~x64-solaris"
+KEYWORDS="-* ~amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux ~x64-macos 
~sparc64-solaris ~x64-solaris"
 
 if [[ "$(get_version_component_range 4)" == 0 ]] ; then
S_PV="$(get_version_component_range 1-3)"



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

2019-01-24 Thread Thomas Deutschmann
commit: 43c162836658e3d814e1fd4d91c09182863bc5fd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 22:09:56 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43c16283

net-libs/signon-ui: x86 stable (bug #674976)

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

 net-libs/signon-ui/signon-ui-0.15_p20171022.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/signon-ui/signon-ui-0.15_p20171022.ebuild 
b/net-libs/signon-ui/signon-ui-0.15_p20171022.ebuild
index 77124a8d3ec..0d93db60958 100644
--- a/net-libs/signon-ui/signon-ui-0.15_p20171022.ebuild
+++ b/net-libs/signon-ui/signon-ui-0.15_p20171022.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/${COMMIT}/${PN}-${COMMI
 
 LICENSE="GPL-2 GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 BDEPEND="test? ( dev-qt/qttest:5 )"



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

2019-01-24 Thread Thomas Deutschmann
commit: af7235bbab0c0050e1239ec2ba2374633d0a7a29
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:45:51 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af7235bb

dev-libs/libical: x86 stable (bug #587572)

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

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

diff --git a/dev-libs/libical/libical-3.0.4.ebuild 
b/dev-libs/libical/libical-3.0.4.ebuild
index d38481874cc..b989b6e001c 100644
--- a/dev-libs/libical/libical-3.0.4.ebuild
+++ b/dev-libs/libical/libical-3.0.4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
 SLOT="0/3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris"
 IUSE="berkdb doc examples static-libs test"
 
 # TODO: disabled until useful



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

2019-01-24 Thread Thomas Deutschmann
commit: bd430f85db9045578ea5cb549caf60064ca0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:42:41 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd430f85

x11-libs/cairo: x86 stable (bug #675818)

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

 x11-libs/cairo/cairo-1.16.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/cairo/cairo-1.16.0-r2.ebuild 
b/x11-libs/cairo/cairo-1.16.0-r2.ebuild
index 31430c1f1f3..68bdb8a0bce 100644
--- a/x11-libs/cairo/cairo-1.16.0-r2.ebuild
+++ b/x11-libs/cairo/cairo-1.16.0-r2.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]]; then
SRC_URI=""
 else
SRC_URI="https://www.cairographics.org/releases/${P}.tar.xz;
-   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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="A vector graphics library with cross-device output support"



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

2019-01-24 Thread Thomas Deutschmann
commit: 2a12e3c86239a98ea81b0ff35d05ab3fe145
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:36:02 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a12e3c8

dev-libs/libevdev: x86 stable (bug #675818)

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

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

diff --git a/dev-libs/libevdev/libevdev-1.6.0.ebuild 
b/dev-libs/libevdev/libevdev-1.6.0.ebuild
index 78c02e98f14..89e403e8f42 100644
--- a/dev-libs/libevdev/libevdev-1.6.0.ebuild
+++ b/dev-libs/libevdev/libevdev-1.6.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else
SRC_URI="https://www.freedesktop.org/software/libevdev/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 fi
 
 LICENSE="MIT"



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

2019-01-24 Thread Thomas Deutschmann
commit: 732931b5619d9a00b2112c49ca323eab4433a72e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:37:19 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=732931b5

dev-libs/wayland-protocols: x86 stable (bug #675818)

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

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

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



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

2019-01-24 Thread Thomas Deutschmann
commit: 951cdf8fd98716dc9feb7247de4246a2e7f634dd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:39:58 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=951cdf8f

x11-apps/xinit: x86 stable (bug #675818)

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

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

diff --git a/x11-apps/xinit/xinit-1.4.0-r1.ebuild 
b/x11-apps/xinit/xinit-1.4.0-r1.ebuild
index 5eaac0fd90a..3cccf1c5508 100644
--- a/x11-apps/xinit/xinit-1.4.0-r1.ebuild
+++ b/x11-apps/xinit/xinit-1.4.0-r1.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-lang/nasm/

2019-01-24 Thread Thomas Deutschmann
commit: 292e01ef3a988f2dc77f82edf25e112c7cf64c46
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:48:20 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=292e01ef

dev-lang/nasm: x86 stable (bug #670884)

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

 dev-lang/nasm/nasm-2.14.02.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/nasm/nasm-2.14.02.ebuild 
b/dev-lang/nasm/nasm-2.14.02.ebuild
index 6b8de70a92c..ebe185b58e1 100644
--- a/dev-lang/nasm/nasm-2.14.02.ebuild
+++ b/dev-lang/nasm/nasm-2.14.02.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.nasm.us/pub/nasm/releasebuilds/${PV/_}/${P/_}.tar.xz;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="amd64 ~ia64 x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
 IUSE="doc"
 
 RDEPEND=""



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

2019-01-24 Thread Thomas Deutschmann
commit: 1e7f491a67f9eaceba37c2dd107e790a67fbd8cf
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 22:00:26 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e7f491a

dev-db/pgpool2: x86 stable (bug #675982)

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

 dev-db/pgpool2/pgpool2-3.7.7.ebuild | 2 +-
 dev-db/pgpool2/pgpool2-4.0.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/pgpool2/pgpool2-3.7.7.ebuild 
b/dev-db/pgpool2/pgpool2-3.7.7.ebuild
index 59df68c3ad2..ddf55c788d5 100644
--- a/dev-db/pgpool2/pgpool2-3.7.7.ebuild
+++ b/dev-db/pgpool2/pgpool2-3.7.7.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://www.pgpool.net/download.php?f=${MY_P}.tar.gz 
-> ${MY_P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 IUSE="doc libressl memcached pam ssl static-libs"
 

diff --git a/dev-db/pgpool2/pgpool2-4.0.2.ebuild 
b/dev-db/pgpool2/pgpool2-4.0.2.ebuild
index 6bfa9756868..ef41b7cf7e2 100644
--- a/dev-db/pgpool2/pgpool2-4.0.2.ebuild
+++ b/dev-db/pgpool2/pgpool2-4.0.2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://www.pgpool.net/download.php?f=${MY_P}.tar.gz 
-> ${MY_P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 IUSE="doc libressl memcached pam ssl static-libs"
 



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

2019-01-24 Thread Thomas Deutschmann
commit: b43da933a3faea60fbe8a98bc3e6eed9a7c37652
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:38:43 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b43da933

x11-apps/xcursorgen: x86 stable (bug #675818)

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

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

diff --git a/x11-apps/xcursorgen/xcursorgen-1.0.7.ebuild 
b/x11-apps/xcursorgen/xcursorgen-1.0.7.ebuild
index eea7e1e3e9d..02f9d31c1b9 100644
--- a/x11-apps/xcursorgen/xcursorgen-1.0.7.ebuild
+++ b/x11-apps/xcursorgen/xcursorgen-1.0.7.ebuild
@@ -6,7 +6,7 @@ inherit xorg-2
 
 DESCRIPTION="create an X cursor file from a collection of PNG images"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="x11-libs/libX11



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

2019-01-24 Thread Thomas Deutschmann
commit: bbc69de145b2a44ff6632f7844c8001f00e13e9b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:33:17 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbc69de1

dev-libs/libisofs: x86 stable (bug #676052)

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

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

diff --git a/dev-libs/libisofs/libisofs-1.5.0.ebuild 
b/dev-libs/libisofs/libisofs-1.5.0.ebuild
index 077a9b567fe..4c4ad396d97 100644
--- a/dev-libs/libisofs/libisofs-1.5.0.ebuild
+++ b/dev-libs/libisofs/libisofs-1.5.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="acl debug static-libs verbose-debug xattr zlib"
 
 BDEPEND="



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

2019-01-24 Thread Thomas Deutschmann
commit: 503e642e4a306a26263bc5a0cfd00b6e73a59f62
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:34:38 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=503e642e

dev-libs/libisoburn: x86 stable (bug #676052)

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

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

diff --git a/dev-libs/libisoburn/libisoburn-1.5.0.ebuild 
b/dev-libs/libisoburn/libisoburn-1.5.0.ebuild
index 3b2a6b38d88..104c4f19e76 100644
--- a/dev-libs/libisoburn/libisoburn-1.5.0.ebuild
+++ b/dev-libs/libisoburn/libisoburn-1.5.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2 GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="acl debug external-filters external-filters-setuid frontend-optional
launch-frontend launch-frontend-setuid libedit readline static-libs 
xattr zlib"
 



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

2019-01-24 Thread Thomas Deutschmann
commit: 5d3ba97d9fe82ce1aec5380287ef6522556d6f90
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:43:51 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d3ba97d

x11-libs/pixman: x86 stable (bug #675818)

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

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

diff --git a/x11-libs/pixman/pixman-0.36.0.ebuild 
b/x11-libs/pixman/pixman-0.36.0.ebuild
index d99cc7d5d46..c0be981ce63 100644
--- a/x11-libs/pixman/pixman-0.36.0.ebuild
+++ b/x11-libs/pixman/pixman-0.36.0.ebuild
@@ -9,7 +9,7 @@ EGIT_REPO_URI="https://gitlab.freedesktop.org/pixman/pixman.git;
 DESCRIPTION="Low-level pixel manipulation routines"
 
 if [[ $PV != * ]]; then
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 fi
 
 IUSE="altivec loongson2f cpu_flags_arm_iwmmxt cpu_flags_x86_mmxext neon 
cpu_flags_x86_sse2 cpu_flags_x86_ssse3"



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

2019-01-24 Thread Thomas Deutschmann
commit: 21e141c0efcecfd5af9b121cf47d6c11acf259ef
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:47:38 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21e141c0

net-analyzer/nagios-plugins: x86 stable (bug #676042)

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

 net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild 
b/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild
index 470e88f0a68..b67ad27f692 100644
--- a/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild
+++ b/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://nagios-plugins.org/download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ppc ppc64 sparc x86"
 IUSE="ipv6 ldap libressl mysql nagios-dns nagios-ping nagios-game postgres 
radius samba selinux snmp ssh +ssl"
 
 # Most of the plugins use automagic dependencies, i.e. the plugin will



[gentoo-commits] repo/gentoo:master commit in: app-vim/reload/

2019-01-24 Thread Patrice Clement
commit: f65b96b81d021ee7f837ef8df0a86970fec84bbb
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jan 24 22:49:50 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jan 24 22:50:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f65b96b8

app-vim/reload: clean up old.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/reload/reload-0.6.17.ebuild | 22 --
 1 file changed, 22 deletions(-)

diff --git a/app-vim/reload/reload-0.6.17.ebuild 
b/app-vim/reload/reload-0.6.17.ebuild
deleted file mode 100644
index b55fba2bf07..000
--- a/app-vim/reload/reload-0.6.17.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: automatic reloading of vim scripts"
-HOMEPAGE="http://peterodding.com/code/vim/reload/;
-SRC_URI="https://github.com/xolox/vim-${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="MIT"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=app-vim/vim-misc-1.8.5"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"
-
-S=${WORKDIR}/vim-${P}
-
-src_prepare() {
-   rm addon-info.json *.md || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-vim/calendar/

2019-01-24 Thread Patrice Clement
commit: facb032096bf922dba78f40b6f7e1e1fd385440a
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jan 24 22:46:28 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jan 24 22:50:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=facb0320

app-vim/calendar: clean up old.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-vim/calendar/calendar-2.9.ebuild | 13 -
 1 file changed, 13 deletions(-)

diff --git a/app-vim/calendar/calendar-2.9.ebuild 
b/app-vim/calendar/calendar-2.9.ebuild
deleted file mode 100644
index d8ec95a7f8c..000
--- a/app-vim/calendar/calendar-2.9.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: calendar window"
-HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=52;
-LICENSE="vim"
-KEYWORDS="amd64 ~mips ppc x86"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: app-vim/calendar/

2019-01-24 Thread Patrice Clement
commit: 1b7285b800977fc8be0d9ebcda6e746ac8479b16
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jan 24 22:45:43 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jan 24 22:50:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b7285b8

app-vim/calendar: EAPI 6 bump.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --force

 app-vim/calendar/calendar-2.9-r1.ebuild | 13 +
 1 file changed, 13 insertions(+)

diff --git a/app-vim/calendar/calendar-2.9-r1.ebuild 
b/app-vim/calendar/calendar-2.9-r1.ebuild
new file mode 100644
index 000..0e28ebd3dd1
--- /dev/null
+++ b/app-vim/calendar/calendar-2.9-r1.ebuild
@@ -0,0 +1,13 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: calendar window"
+HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=52;
+LICENSE="vim"
+KEYWORDS="amd64 ~mips ppc x86"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: app-vim/reload/

2019-01-24 Thread Patrice Clement
commit: 4adc2f74feab88c391b9d4ba356047e7b7f8f64e
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jan 24 22:48:38 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jan 24 22:50:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4adc2f74

app-vim/reload: EAPI 6 bump.

Signed-off-by: Patrice Clement  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --force

 app-vim/reload/reload-0.6.17-r1.ebuild | 23 +++
 1 file changed, 23 insertions(+)

diff --git a/app-vim/reload/reload-0.6.17-r1.ebuild 
b/app-vim/reload/reload-0.6.17-r1.ebuild
new file mode 100644
index 000..b25107b0fb7
--- /dev/null
+++ b/app-vim/reload/reload-0.6.17-r1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: automatic reloading of vim scripts"
+HOMEPAGE="http://peterodding.com/code/vim/reload/;
+SRC_URI="https://github.com/xolox/vim-${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+KEYWORDS="amd64 x86"
+
+RDEPEND=">=app-vim/vim-misc-1.8.5"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"
+
+S="${WORKDIR}/vim-${P}"
+
+src_prepare() {
+   default
+   rm addon-info.json *.md || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/cmocka/files/, dev-util/cmocka/

2019-01-24 Thread Andreas Sturmlechner
commit: 30c33c07c94332463b72487288d5b02372e64190
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 24 22:32:32 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 24 22:59:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30c33c07

dev-util/cmocka: Add USE examples, EAPI-7 bump

Bug: https://bugs.gentoo.org/675876
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-util/cmocka/cmocka-1.1.3.ebuild   | 13 ---
 dev-util/cmocka/files/cmocka-1.1.3-examples.patch | 45 +++
 2 files changed, 52 insertions(+), 6 deletions(-)

diff --git a/dev-util/cmocka/cmocka-1.1.3.ebuild 
b/dev-util/cmocka/cmocka-1.1.3.ebuild
index 4cdb5fbec97..8153e29cfdb 100644
--- a/dev-util/cmocka/cmocka-1.1.3.ebuild
+++ b/dev-util/cmocka/cmocka-1.1.3.ebuild
@@ -1,32 +1,33 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-multilib
 
-DESCRIPTION="A unit testing framework for C"
+DESCRIPTION="Unit testing framework for C"
 HOMEPAGE="https://cmocka.org/;
 SRC_URI="https://cmocka.org/files/1.1/${P}.tar.xz;
 
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="doc static-libs test"
+IUSE="doc examples static-libs test"
 
-DEPEND="
+BDEPEND="
doc? ( app-doc/doxygen[dot] )
 "
-RDEPEND=""
 
 DOCS=( AUTHORS ChangeLog README.md )
 
 PATCHES=(
"${FILESDIR}/${P}-fix-doxygen.patch" # bug 671404
+   "${FILESDIR}/${P}-examples.patch"
 )
 
 multilib_src_configure() {
local mycmakeargs=(
+   -DWITH_EXAMPLES=$(usex examples)
-DWITH_STATIC_LIB=$(usex static-libs)
-DUNIT_TESTING=$(usex test)
$(multilib_is_native_abi && cmake-utils_use_find_package doc 
Doxygen \

diff --git a/dev-util/cmocka/files/cmocka-1.1.3-examples.patch 
b/dev-util/cmocka/files/cmocka-1.1.3-examples.patch
new file mode 100644
index 000..3d5fcc8098f
--- /dev/null
+++ b/dev-util/cmocka/files/cmocka-1.1.3-examples.patch
@@ -0,0 +1,45 @@
+From ee264da1aa222b354cee36184ab48c2072f62243 Mon Sep 17 00:00:00 2001
+From: Andreas Schneider 
+Date: Wed, 23 Jan 2019 11:20:31 +0100
+Subject: [PATCH] cmake: Add WITH_EXAMPLES options
+
+This is turned on by default, but you can disable it, if you just
+package cmocka for an opterating system.
+
+Fixes #14
+
+Signed-off-by: Andreas Schneider 
+---
+ CMakeLists.txt  | 4 +++-
+ DefineOptions.cmake | 1 +
+ 2 files changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 7778039..702be97 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -60,7 +60,9 @@ if (UNIT_TESTING)
+ add_subdirectory(tests)
+ endif (UNIT_TESTING)
+ 
+-add_subdirectory(example)
++if (WITH_EXAMPLES)
++add_subdirectory(example)
++endif ()
+ 
+ # pkg-config file
+ configure_file(cmocka.pc.cmake ${CMAKE_CURRENT_BINARY_DIR}/cmocka.pc)
+diff --git a/DefineOptions.cmake b/DefineOptions.cmake
+index 5bc1ef3..911ff1d 100644
+--- a/DefineOptions.cmake
 b/DefineOptions.cmake
+@@ -1,5 +1,6 @@
+ option(WITH_STATIC_LIB "Build with a static library" OFF)
+ option(WITH_CMOCKERY_SUPPORT "Install a cmockery header" OFF)
++option(WITH_EXAMPLES "Build examples" ON)
+ option(UNIT_TESTING "Build with unit testing" OFF)
+ option(PICKY_DEVELOPER "Build with picky developer flags" OFF)
+ 
+-- 
+2.18.1
+



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

2019-01-24 Thread Andreas Sturmlechner
commit: 50affba06984242bb01137e99048645f8b647d34
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 24 22:27:56 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 24 22:59:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50affba0

net-libs/signon-ui: Drop 0.15-r1

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

 net-libs/signon-ui/Manifest |  1 -
 net-libs/signon-ui/signon-ui-0.15-r1.ebuild | 54 -
 2 files changed, 55 deletions(-)

diff --git a/net-libs/signon-ui/Manifest b/net-libs/signon-ui/Manifest
index 4254a245852..13dc394fd00 100644
--- a/net-libs/signon-ui/Manifest
+++ b/net-libs/signon-ui/Manifest
@@ -1,2 +1 @@
-DIST signon-ui-0.15.tar.bz2 60278 BLAKE2B 
9674dbfb184249a8a88fbdbe07e6e1c3d070b3e7ca42666a99ae5cdff31ceefe6a45cde533d77234194dc294722999c48ac16dcf6fe0e67a6ce7d53c711edfbc
 SHA512 
02167d48cec3efbd1b0f39f65732742416b46e638a888a74df02bbfeb6deaefdd81549c8cee1a80ecdc8a9f9d0363a6935e8f105bec40bb798af5cc19a74bf03
 DIST signon-ui-0.15_p20171022.tar.bz2 55849 BLAKE2B 
6b97b3f673fb4494c7e32dc345f6c4697acdb19305b9459fe954d88983e4666211926921dac70829435706cdd9a41f36d36241a73905b2a795873c2894ffa8d7
 SHA512 
d0a4ca222de00abf4000905d917799fc6f9e04a2c3f49d0d0882dc4e90fdbcde14da91f355d10f8a3feac03661febd321ea6de1df227fa5a3c404eaefa7c2d60

diff --git a/net-libs/signon-ui/signon-ui-0.15-r1.ebuild 
b/net-libs/signon-ui/signon-ui-0.15-r1.ebuild
deleted file mode 100644
index d2b2a02363e..000
--- a/net-libs/signon-ui/signon-ui-0.15-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit qmake-utils
-
-DESCRIPTION="Online accounts signon UI"
-HOMEPAGE="https://launchpad.net/signon-ui;
-SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2;
-
-LICENSE="GPL-2 GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RESTRICT="test"
-
-# 

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

2019-01-24 Thread Andreas Sturmlechner
commit: 301156f6af16cbfab4108966d0672f38a8f77cfa
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 24 22:27:16 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 24 22:59:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=301156f6

kde-misc/tellico: Drop 3.1.3

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

 kde-misc/tellico/Manifest |  1 -
 kde-misc/tellico/tellico-3.1.3.ebuild | 91 ---
 2 files changed, 92 deletions(-)

diff --git a/kde-misc/tellico/Manifest b/kde-misc/tellico/Manifest
index a4af08a8594..da4f0d4a042 100644
--- a/kde-misc/tellico/Manifest
+++ b/kde-misc/tellico/Manifest
@@ -1,2 +1 @@
-DIST tellico-3.1.3.tar.xz 4607668 BLAKE2B 
4c4fb678b16611c448e0fc77f0b5c9e03f344c76d20e6006c03ee12140b647fefa7a3aba2f5312ea8c36f3722418981fb469a6c199f1e115542c784003854d28
 SHA512 
9024f423f0685e834ed46e7038c5b95fab5b684aaac00d6298e23493fb4290daeda994faf36a0f04973093a477be5506591e6b0e7f57ef5591fb10953ad8ec5e
 DIST tellico-3.1.4.tar.xz 4632792 BLAKE2B 
29db598ef558fe04618843cad6a58055b5de392f34aeea4860683f04ef4ab20856fd4a01523dc13c2d68023c266de69590e843ea56f912989d57c01e0d701ee2
 SHA512 
d09183bee13ae9f7c6c5114b76eeeb959a184def559ae239bb880ef9be964e33878530e9c4c0d3baa6f872bf8db155dffb94592e3a857623ab131d2f28f1f139

diff --git a/kde-misc/tellico/tellico-3.1.3.ebuild 
b/kde-misc/tellico/tellico-3.1.3.ebuild
deleted file mode 100644
index f2c511b9ba2..000
--- a/kde-misc/tellico/tellico-3.1.3.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="forceoptional"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Collection manager based on KDE Frameworks"
-HOMEPAGE="http://tellico-project.org/;
-SRC_URI="http://tellico-project.org/files/${P}.tar.xz;
-
-LICENSE="|| ( GPL-2 GPL-3 )"
-KEYWORDS="amd64 x86"
-IUSE="cddb discid pdf scanner semantic-desktop taglib v4l xmp yaz"
-
-RDEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcodecs)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kguiaddons)
-   $(add_frameworks_dep khtml)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kitemmodels)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwallet)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
-   $(add_frameworks_dep sonnet)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   >=dev-perl/Text-BibTeX-0.780.0-r1
-   dev-libs/libxml2
-   dev-libs/libxslt
-   cddb? ( $(add_kdeapps_dep libkcddb) )
-   discid? ( dev-libs/libcdio:= )
-   pdf? ( app-text/poppler[qt5] )
-   scanner? ( $(add_kdeapps_dep libksane) )
-   semantic-desktop? ( $(add_frameworks_dep kfilemetadata) )
-   taglib? ( >=media-libs/taglib-1.5 )
-   v4l? ( >=media-libs/libv4l-0.8.3 )
-   xmp? ( >=media-libs/exempi-2 )
-   yaz? ( >=dev-libs/yaz-2:0 )
-"
-DEPEND="${RDEPEND}
-   sys-devel/gettext
-"
-
-# tests need network access
-RESTRICT="test"
-
-DOCS=( AUTHORS ChangeLog README )
-
-PATCHES=(
-   "${FILESDIR}/${P}-version.patch"
-   "${FILESDIR}/${P}-regexp-filtering.patch"
-)
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_Csv=ON
-   $(cmake-utils_use_find_package cddb KF5Cddb)
-   $(cmake-utils_use_find_package discid CDIO)
-   $(cmake-utils_use_find_package pdf Poppler)
-   $(cmake-utils_use_find_package scanner KF5Sane)
-   $(cmake-utils_use_find_package semantic-desktop KF5FileMetaData)
-   $(cmake-utils_use_find_package taglib Taglib)
-   -DENABLE_WEBCAM=$(usex v4l)
-   $(cmake-utils_use_find_package xmp Exempi)
-   $(cmake-utils_use_find_package yaz Yaz)
-   )
-
-   kde5_src_configure
-}



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

2019-01-24 Thread Sergei Trofimovich
commit: 067cd758c11667bf72fdcc7264a6d22eff65deb1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 22:13:35 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 22:13:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=067cd758

sys-devel/autogen: stable 5.18.16 for ppc, bug #676082

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-devel/autogen/autogen-5.18.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autogen/autogen-5.18.16.ebuild 
b/sys-devel/autogen/autogen-5.18.16.ebuild
index 864feb94494..dc5b30616ba 100644
--- a/sys-devel/autogen/autogen-5.18.16.ebuild
+++ b/sys-devel/autogen/autogen-5.18.16.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/rel${PV}/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
 IUSE="libopts static-libs"
 
 RDEPEND=">=dev-scheme/guile-2.0:=



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

2019-01-24 Thread Andreas Sturmlechner
commit: 88fc96ebeee2e19bf7f5b48b2037257a008bb5e4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 24 22:57:21 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 24 22:59:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88fc96eb

app-office/calligra: Avoid dep on poppler[glib] for ifdef

Closes: https://bugs.gentoo.org/675972
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-office/calligra/calligra-3.1.0-r3.ebuild   |  8 ++--
 .../files/calligra-3.1.0-poppler-0.72.patch| 43 +++---
 2 files changed, 19 insertions(+), 32 deletions(-)

diff --git a/app-office/calligra/calligra-3.1.0-r3.ebuild 
b/app-office/calligra/calligra-3.1.0-r3.ebuild
index c3913bd48d1..81597b0d7d1 100644
--- a/app-office/calligra/calligra-3.1.0-r3.ebuild
+++ b/app-office/calligra/calligra-3.1.0-r3.ebuild
@@ -104,7 +104,6 @@ COMMON_DEPEND="
 DEPEND="${COMMON_DEPEND}
dev-libs/boost
sys-devel/gettext
-   x11-misc/shared-mime-info
test? ( $(add_frameworks_dep threadweaver) )
 "
 RDEPEND="${COMMON_DEPEND}
@@ -121,8 +120,6 @@ PATCHES=(
"${FILESDIR}"/${P}-stage-qt-5.11.patch
"${FILESDIR}"/${P}-poppler-0.69.patch
"${FILESDIR}"/${P}-poppler-0.71.patch
-   "${FILESDIR}"/${P}-poppler-0.72.patch # not upstreamable
-   "${FILESDIR}"/${P}-poppler-0.73.patch
"${FILESDIR}"/${P}-no-webkit.patch
 )
 
@@ -138,6 +135,11 @@ pkg_setup() {
 src_prepare() {
kde5_src_prepare
 
+   if has_version ">=app-text/poppler-0.72"; then
+   eapply "${FILESDIR}"/${P}-poppler-0.72.patch # not upstreamable
+   eapply "${FILESDIR}"/${P}-poppler-0.73.patch
+   fi
+
if ! use test; then
sed -e "/add_subdirectory( *benchmarks *)/s/^/#DONT/" \
-i libs/pigment/CMakeLists.txt || die

diff --git a/app-office/calligra/files/calligra-3.1.0-poppler-0.72.patch 
b/app-office/calligra/files/calligra-3.1.0-poppler-0.72.patch
index 3b2e690257b..817a8ddcd67 100644
--- a/app-office/calligra/files/calligra-3.1.0-poppler-0.72.patch
+++ b/app-office/calligra/files/calligra-3.1.0-poppler-0.72.patch
@@ -1,54 +1,39 @@
-From 8f20ea906235cbee1d4aac4706e4eb03366875bf Mon Sep 17 00:00:00 2001
-From: "Tobias C. Berner" 
-Date: Mon, 7 Jan 2019 19:50:48 +0100
-Subject: [PATCH] Make compatible with poppler 0.72
+From 3784fdf0259a14f1f7b20c156dcfe42b45d76896 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Thu, 24 Jan 2019 23:55:02 +0100
+Subject: [PATCH] Fix build with poppler-0.72
 
+This is a downstream fix without backwards compat, not upstreamable.
 ---
- filters/karbon/pdf/SvgOutputDev.cpp | 13 +
- 1 file changed, 13 insertions(+)
+ filters/karbon/pdf/SvgOutputDev.cpp | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
 
 diff --git a/filters/karbon/pdf/SvgOutputDev.cpp 
b/filters/karbon/pdf/SvgOutputDev.cpp
-index 4a1fad6bbcf..b1d4ea2d427 100644
+index 391e86cc117..bc72a003efb 100644
 --- a/filters/karbon/pdf/SvgOutputDev.cpp
 +++ b/filters/karbon/pdf/SvgOutputDev.cpp
-@@ -25,6 +25,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include 
- #include 
-@@ -409,7 +410,11 @@ void SvgOutputDev::drawString(GfxState * state, const 
GooString * s)
+@@ -402,7 +402,7 @@ void SvgOutputDev::drawString(GfxState * state, const 
GooString * s)
  
  QString str;
  
-+#if POPPLER_CHECK_VERSION(0,72,0)
+-const char * p = s->getCString();
 +const char * p = s->c_str();
-+#else
- const char * p = s->getCString();
-+#endif
  int len = s->getLength();
  CharCode code;
  Unicode *u = nullptr;
-@@ -459,10 +464,18 @@ void SvgOutputDev::drawString(GfxState * state, const 
GooString * s)
+@@ -451,10 +451,10 @@ void SvgOutputDev::drawString(GfxState * state, const 
GooString * s)
  *d->body << " y=\"" << y << "px\"";
  
  if (font && font->getFamily()) {
-+#if POPPLER_CHECK_VERSION(0,72,0)
+-*d->body << " font-family=\"" << 
QString::fromLatin1(font->getFamily()->getCString()) << "\"";
 +*d->body << " font-family=\"" << 
QString::fromLatin1(font->getFamily()->c_str()) << "\"";
-+#else
- *d->body << " font-family=\"" << 
QString::fromLatin1(font->getFamily()->getCString()) << "\"";
-+#endif
  //debugPdf << "font family:" << QString::fromLatin1( 
font->getFamily()->getCString() );
  } else if (font && font->getName()) {
-+#if POPPLER_CHECK_VERSION(0,72,0)
+-*d->body << " font-family=\"" << 
QString::fromLatin1(font->getName()->getCString()) << "\"";
 +*d->body << " font-family=\"" << 
QString::fromLatin1(font->getName()->c_str()) << "\"";
-+#else
- *d->body << " font-family=\"" << 
QString::fromLatin1(font->getName()->getCString()) << "\"";
-+#endif
  //debugPdf << "font name:" << QString::fromLatin1( 
font->getName()->getCString() );
  }
  *d->body << " 

[gentoo-commits] repo/gentoo:master commit in: dev-vcs/subversion/, dev-vcs/subversion/files/

2019-01-24 Thread Thomas Deutschmann
commit: 460a53098432a7c7a2dfd4d9f703ec631ca9f1a6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 19:13:11 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 19:13:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=460a5309

dev-vcs/subversion: fix test wc-queries-test test

Thanks to Branko ÄŒibej (upstream) for the patch!

Closes: https://bugs.gentoo.org/605438
Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 ...subversion-1.9.7-fix-wc-queries-test-test.patch | 26 ++
 dev-vcs/subversion/subversion-1.10.3.ebuild|  1 +
 dev-vcs/subversion/subversion-1.10.4.ebuild|  1 +
 dev-vcs/subversion/subversion-1.11.0.ebuild|  3 ++-
 dev-vcs/subversion/subversion-1.11.1.ebuild|  1 +
 dev-vcs/subversion/subversion-1.9.7-r1.ebuild  |  3 ++-
 6 files changed, 33 insertions(+), 2 deletions(-)

diff --git 
a/dev-vcs/subversion/files/subversion-1.9.7-fix-wc-queries-test-test.patch 
b/dev-vcs/subversion/files/subversion-1.9.7-fix-wc-queries-test-test.patch
new file mode 100644
index 000..6658bd683e7
--- /dev/null
+++ b/dev-vcs/subversion/files/subversion-1.9.7-fix-wc-queries-test-test.patch
@@ -0,0 +1,26 @@
+https://bugs.gentoo.org/605438
+
+--- a/subversion/tests/libsvn_wc/wc-queries-test.c 2019/01/24 10:33:42 
1852012
 b/subversion/tests/libsvn_wc/wc-queries-test.c 2019/01/24 10:58:23 
1852013
+@@ -670,7 +670,20 @@
+|| (item->expression_vars < 1))
+&& !is_result_table(item->table))
+ {
+-  if (in_list(primary_key_statements, i))
++  if (MATCH_TOKEN(item->table, "sqlite_master"))
++{
++  /* The sqlite_master table does not have an index.
++ Query explanations that say 'SCAN TABLE sqlite_master'
++ will appear if SQLite was compiled with the option
++ SQLITE_ENABLE_STMT_SCANSTATUS, for queries such
++ as 'DROP TABLE foo', but the performance of such
++ statements is not our concern here. */
++
++  /* "Slow" statements do expect too see a warning, however. 
*/
++  if (is_slow_statement(i))
++warned = TRUE;
++}
++  else if (in_list(primary_key_statements, i))
+ {
+   /* Reported as primary key index usage in Sqlite 3.7,
+  as table scan in 3.8+, while the execution plan is

diff --git a/dev-vcs/subversion/subversion-1.10.3.ebuild 
b/dev-vcs/subversion/subversion-1.10.3.ebuild
index 633b624d554..b13dd328ecf 100644
--- a/dev-vcs/subversion/subversion-1.10.3.ebuild
+++ b/dev-vcs/subversion/subversion-1.10.3.ebuild
@@ -151,6 +151,7 @@ pkg_setup() {
 
 src_prepare() {
eapply "${WORKDIR}/patches"
+   eapply "${FILESDIR}"/${PN}-1.9.7-fix-wc-queries-test-test.patch
eapply_user
 
fperms +x build/transform_libtool_scripts.sh

diff --git a/dev-vcs/subversion/subversion-1.10.4.ebuild 
b/dev-vcs/subversion/subversion-1.10.4.ebuild
index e21f5be59ff..ef55999b2c5 100644
--- a/dev-vcs/subversion/subversion-1.10.4.ebuild
+++ b/dev-vcs/subversion/subversion-1.10.4.ebuild
@@ -151,6 +151,7 @@ pkg_setup() {
 
 src_prepare() {
eapply "${WORKDIR}/patches"
+   eapply "${FILESDIR}"/${PN}-1.9.7-fix-wc-queries-test-test.patch
eapply_user
 
fperms +x build/transform_libtool_scripts.sh

diff --git a/dev-vcs/subversion/subversion-1.11.0.ebuild 
b/dev-vcs/subversion/subversion-1.11.0.ebuild
index df2a5c65a4c..a4a22eed915 100644
--- a/dev-vcs/subversion/subversion-1.11.0.ebuild
+++ b/dev-vcs/subversion/subversion-1.11.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -151,6 +151,7 @@ pkg_setup() {
 
 src_prepare() {
eapply "${WORKDIR}/patches"
+   eapply "${FILESDIR}"/${PN}-1.9.7-fix-wc-queries-test-test.patch
eapply_user
 
fperms +x build/transform_libtool_scripts.sh

diff --git a/dev-vcs/subversion/subversion-1.11.1.ebuild 
b/dev-vcs/subversion/subversion-1.11.1.ebuild
index 5b17d2b2a8c..a4a22eed915 100644
--- a/dev-vcs/subversion/subversion-1.11.1.ebuild
+++ b/dev-vcs/subversion/subversion-1.11.1.ebuild
@@ -151,6 +151,7 @@ pkg_setup() {
 
 src_prepare() {
eapply "${WORKDIR}/patches"
+   eapply "${FILESDIR}"/${PN}-1.9.7-fix-wc-queries-test-test.patch
eapply_user
 
fperms +x build/transform_libtool_scripts.sh

diff --git a/dev-vcs/subversion/subversion-1.9.7-r1.ebuild 
b/dev-vcs/subversion/subversion-1.9.7-r1.ebuild
index c135b20995f..b9444c0aaa8 100644
--- a/dev-vcs/subversion/subversion-1.9.7-r1.ebuild
+++ b/dev-vcs/subversion/subversion-1.9.7-r1.ebuild
@@ -1,4 +1,4 @@
-# 

[gentoo-commits] repo/gentoo:master commit in: net-im/poezio/

2019-01-24 Thread Andrey Utkin
commit: 9e26c41fd9d832a6686cec4ed51ddb91871b3a92
Author: Andrey Utkin  gentoo  org>
AuthorDate: Thu Jan 24 19:53:34 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Thu Jan 24 19:53:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e26c41f

net-im/poezio: : add fallback URI

Bug: https://bugs.gentoo.org/676166
Package-Manager: Portage-2.3.49, Repoman-2.3.12
Signed-off-by: Andrey Utkin  gentoo.org>

 net-im/poezio/poezio-.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/net-im/poezio/poezio-.ebuild b/net-im/poezio/poezio-.ebuild
index d550ee29c57..6c4752e9f1f 100644
--- a/net-im/poezio/poezio-.ebuild
+++ b/net-im/poezio/poezio-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,8 @@ SLOT="0"
 IUSE="test"
 
 if [[ "${PV}" == "" ]]; then
-   EGIT_REPO_URI="https://git.poez.io/${PN}.git;
+   EGIT_REPO_URI="https://git.poez.io/${PN}.git
+   https://lab.louiz.org/${PN}/${PN}.git;
inherit git-r3
 else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Archive_Tar/

2019-01-24 Thread Brian Evans
commit: 5a158d06fe1dca9963ddbf792635adcbae1f6f73
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Jan 24 23:30:11 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Jan 24 23:30:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a158d06

dev-php/PEAR-Archive_Tar: Drop vulnerable version

Bug: https://bugs.gentoo.org/675576
Package-Manager: Portage-2.3.57, Repoman-2.3.12
Signed-off-by: Brian Evans  gentoo.org>

 dev-php/PEAR-Archive_Tar/Manifest  |  1 -
 .../PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.3.ebuild | 31 --
 2 files changed, 32 deletions(-)

diff --git a/dev-php/PEAR-Archive_Tar/Manifest 
b/dev-php/PEAR-Archive_Tar/Manifest
index 706c905795e..b3720b5601c 100644
--- a/dev-php/PEAR-Archive_Tar/Manifest
+++ b/dev-php/PEAR-Archive_Tar/Manifest
@@ -1,2 +1 @@
-DIST Archive_Tar-1.4.3.tgz 20682 BLAKE2B 
a2e840087178fb55719634198852d191aef24139f819e3c478883fd007f6e72f523700617c7ff2c3d92a3ebe36a237b0eb7544dfe86dec394587ee0b3743520f
 SHA512 
62e60d59266c5d19b131f769f4d71d4cee6bf8964b0c6610c4f1381500ced582865bff26c608479b2678dda1e7407ba39a7ec84b31fed13e3875f1947ce5bd6c
 DIST Archive_Tar-1.4.5.tgz 20919 BLAKE2B 
506b2fae8f99634cf40ecff9c5ec695c101f4e14ae867795851a7e238a62c2611581aaab1cc0e9a9354184b20ba141f29ae3998881e7ebf777c596e5dc251577
 SHA512 
7a7e16e37b0c7112a77333ed2c4d0a0ae57cc1e971191c79b1858227b46f967aee915757a81bdfef3a9487a53b81a99bfbe84f78a346671fe44ac9f1f203a358

diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.3.ebuild 
b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.3.ebuild
deleted file mode 100644
index d2b8aa67a2e..000
--- a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.3.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="${PN/PEAR-/}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Tar file management class"
-HOMEPAGE="http://pear.php.net/package/${MY_PN};
-SRC_URI="http://pear.php.net/get/${MY_P}.tgz;
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 ~s390 ~sh sparc x86"
-IUSE=""
-
-# bzip2 and zlib are needed for compressed tarballs, and there's one
-# call to preg_match to test paths against a pattern of files and
-# directories that will be ignored.
-RDEPEND="dev-lang/php:*[bzip2,pcre(+),zlib]"
-PDEPEND="dev-php/PEAR-PEAR"
-DEPEND=""
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
-   insinto /usr/share/php
-   doins -r Archive
-
-   dodoc docs/*
-}



[gentoo-commits] repo/gentoo:master commit in: app-forensics/sleuthkit/files/, app-forensics/sleuthkit/

2019-01-24 Thread Göktürk Yüksek
commit: 358b5b2e29330305ba4c8bee1f072668877f2ab3
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Jan 24 19:46:51 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Jan 24 20:17:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=358b5b2e

app-forensics/sleuthkit: remove old 4.6.0 and 4.6.4

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

 app-forensics/sleuthkit/Manifest   |   2 -
 .../sleuthkit-4.6.4-CVE-2018-19497-backport.patch  |  83 ---
 app-forensics/sleuthkit/sleuthkit-4.6.0.ebuild | 227 --
 app-forensics/sleuthkit/sleuthkit-4.6.4-r1.ebuild  | 256 -
 4 files changed, 568 deletions(-)

diff --git a/app-forensics/sleuthkit/Manifest b/app-forensics/sleuthkit/Manifest
index 281da89a45b..d6e3eea75bc 100644
--- a/app-forensics/sleuthkit/Manifest
+++ b/app-forensics/sleuthkit/Manifest
@@ -1,7 +1,5 @@
 DIST SparseBitSet-1.1.jar 23706 BLAKE2B 
8623a723f11f97386a108c775fefddd324997b68bea7f7ade0581ec5800bfa8d32f699ab903ad66c631b7b5c69ba1ef377243653f5044f39234dac07543eb129
 SHA512 
cf75431c5f705961800ce5cbca2acb9b2459eaf98ec37b5ee21c5a90d204ffb466fa25457b0560fbb024489777efbea0276201024c7b1b2853124930ac490983
 DIST libewf-20130128.tar.gz 1978794 BLAKE2B 
e5d2bd8f4a8b878e13536b89b032d8cee6982272065b2bf325f8a811dff258264118a79496912377337ceb9ad630138b6bedb89e3c3be89a5f6a6fea85ab586b
 SHA512 
94cdd0c3f0d8f535f3462c5adba266302f9b129abacda077ed429fa38af6862fca5a90ba2e606b78607b509769305cc6134c483c7033c20e226596cca2d42b90
 DIST sleuthkit-4.5.0.tar.gz 8611141 BLAKE2B 
a1ae66bfcb74ce1fec24f80dfe60cd68f1de53119331c38848f7f82de8052eda49d78fdea49e42ada5843094939ef212dece42a5ceb85931a79e02adccda30e6
 SHA512 
911890cacca739f121681514197104cb2dc3bd219f3e068c4ce61264498c56989359976fc75172e1f456c94e4e25c6206413b0234c36e55736a577b8e664e4b3
-DIST sleuthkit-4.6.0.tar.gz 8634432 BLAKE2B 
b45721cdee798d84f0caa0bfe38645346539bb497f5a492c72016a6b3b0246b362ecea676a7a0e788d66cc0dc32335e719912434bd61aa205b7d51b8d4bd7c14
 SHA512 
dbf880e8503dccb0a686f1d9658d56e9cb40f452127f9b713cf2a4941f4083fa1cf80a886994d58421307a679242cd4ee005b3e874cf429cfb140a597a0dc739
-DIST sleuthkit-4.6.4.tar.gz 8655341 BLAKE2B 
9d8a2884d1c90e9be3104221c22fdc4346c8f288a13384ef8205cea46bbda2249691b548b7d19a1b34d6d0d1fc6d5390aa0fc8c8b28ea75b53de946b62c8e25c
 SHA512 
0dd3fc3659fd6dee49ababd8033bcc5ce218c9154b61eb072a943e8d1a96fb04dcabc85124583bc69ad0ced2609fed11812164a3db6587446255a9c507f08762
 DIST sleuthkit-4.6.5.tar.gz 8658866 BLAKE2B 
29b75c96a14c5d42522e7116a80cc368c8097fa43af27c0e958215142d6ee61131c7b154fb876fa3ea9c727e8100de9bd703dfd8cef9ccce1f660c8470fa
 SHA512 
ba21be166da1a7bdd197946722a1e0947f90bbb2c27d635cdfbcbc870aa42937fe6b42f432482f70a5e686942c8891d0367b5ce28615315d8905661e73aefe32
 DIST sqlite-jdbc-3.8.11.jar 5131732 BLAKE2B 
1a04fa9e9cb97fdddc19af2de9efa7b54c0b527642e6e325e31054e4e294e3bc6af00ea291087ed9dd26668d48dae356035fc85212c0eb81656550d552103ed0
 SHA512 
5f4705101992e8916e29742c560aef0d01eba9dc0d2d984b75a77e56be3c9fd20b284390fe8f9bb54bf9d1f8528c3413922684c446212ca8961ac731543fb179

diff --git 
a/app-forensics/sleuthkit/files/sleuthkit-4.6.4-CVE-2018-19497-backport.patch 
b/app-forensics/sleuthkit/files/sleuthkit-4.6.4-CVE-2018-19497-backport.patch
deleted file mode 100644
index 3ed90477481..000
--- 
a/app-forensics/sleuthkit/files/sleuthkit-4.6.4-CVE-2018-19497-backport.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-From dd679ad1d855e7f69a887eb343bb53d49dc664e7 Mon Sep 17 00:00:00 2001
-From: Jordy Zomer 
-Date: Sat, 24 Nov 2018 12:19:38 +0100
-Subject: [PATCH 1/3] Fix CVE-2018-19497.
-
-An issue was discovered in The Sleuth Kit (TSK) through 4.6.4.
-The "tsk_getu16(hfs->fs_info.endian, _buf[rec_off2])" call in 
hfs_dir_open_meta_cb in
-tsk/fs/hfs_dent.c does not properly check boundaries. This results in
-a crash (SEGV on unknown address
-READ memory access)
-when reading too much in the destination buffer.

- tsk/fs/hfs.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/tsk/fs/hfs.c b/tsk/fs/hfs.c
-index 00f1720b1b..0dec507165 100644
 a/tsk/fs/hfs.c
-+++ b/tsk/fs/hfs.c
-@@ -956,7 +956,8 @@ hfs_cat_traverse(HFS_INFO * hfs,
- key = (hfs_btree_key_cat *) & node[rec_off];
- 
- keylen = 2 + tsk_getu16(hfs->fs_info.endian, key->key_len);
--if ((keylen) > nodesize) {
-+   
-+if (keylen > nodesize - rec_off) {
- tsk_error_set_errno(TSK_ERR_FS_GENFS);
- tsk_error_set_errstr
- ("hfs_cat_traverse: length of key %d in index node %d 
too large (%d vs %"
-
-From fb2bc0ad693db852fac1dcc77a072aeabe106ac8 Mon Sep 17 00:00:00 2001
-From: Jordy Zomer 
-Date: Sat, 24 Nov 2018 12:37:09 +0100
-Subject: [PATCH 2/3] fix length in printf of nodesize
-
-Also fix the length in printf next to comit 
dd679ad1d855e7f69a887eb343bb53d49dc664e7

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

2019-01-24 Thread Göktürk Yüksek
commit: d2259d1b95193ed68ce4f81f1ba875ddc1ca6fdb
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Jan 24 20:04:33 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Jan 24 20:17:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2259d1b

dev-python/fido2: bump to 0.5.0

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

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

diff --git a/dev-python/fido2/Manifest b/dev-python/fido2/Manifest
index 7098c33fcc2..c35c830c1e0 100644
--- a/dev-python/fido2/Manifest
+++ b/dev-python/fido2/Manifest
@@ -1,2 +1,3 @@
 DIST fido2-0.3.0.tar.gz 125907 BLAKE2B 
95054f258c775ac3b4f65608fd3b62ec4165a568c237064ebb66da1ca6ae899a3d88b5613e9dd4be87c05068ebd698be452dd3467800317e5894092216196e12
 SHA512 
c6ea83e104d77350413156eba4c1aa2635b77ae00d157dce61e5a8539c65aca4dd1dfc5303f9d408359582eeb98ae558aa1e2043a9b1dfcb23415eb8bc9c6a09
 DIST fido2-0.4.0.tar.gz 141714 BLAKE2B 
3d57ef1598d2c84cea8a98e75cdef96b77807d4eb5951515560b43655a48bb0816c4e05ef39314b13b6bad84509e09145aeab5727a9fc6cba65ddf42f588b007
 SHA512 
4eb95a95e1f5b8b49267bc0a11e5501bd041a211ac8a6249ff9cc26ebb0b155b9d16494c18391a14feecb197d61dc50c8530b2ab38ba7e9dc600276abd6f8bcf
+DIST fido2-0.5.0.tar.gz 161562 BLAKE2B 
20d4f6c4e54366a26d5a56a84a6ff84bec0f0e22107aa612db721df8a5186a2129373ae609fb58a27008dc700b4b92d607fc2bf16aab7ac6bff8d9e7219204aa
 SHA512 
fa83848e179b9208e2a701a3330faa1dde75e5e23133540eaec896145dbde376bc424a5e59865d3cf90c5765882e22530e96df2491101d2b5dcb22cfc4bcbb87

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



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

2019-01-24 Thread Göktürk Yüksek
commit: 3e26009a67724d3af2dbdaae47d1dcf2288c5539
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Jan 24 19:44:24 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Jan 24 20:17:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e26009a

app-forensics/sleuthkit: bump to 4.6.5

Also addresses CVE-2018-19497.

Bug: https://bugs.gentoo.org/661160
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Göktürk Yüksek  gentoo.org>

 app-forensics/sleuthkit/Manifest   |   1 +
 app-forensics/sleuthkit/sleuthkit-4.6.5.ebuild | 255 +
 2 files changed, 256 insertions(+)

diff --git a/app-forensics/sleuthkit/Manifest b/app-forensics/sleuthkit/Manifest
index 9b98215a04a..281da89a45b 100644
--- a/app-forensics/sleuthkit/Manifest
+++ b/app-forensics/sleuthkit/Manifest
@@ -3,4 +3,5 @@ DIST libewf-20130128.tar.gz 1978794 BLAKE2B 
e5d2bd8f4a8b878e13536b89b032d8cee698
 DIST sleuthkit-4.5.0.tar.gz 8611141 BLAKE2B 
a1ae66bfcb74ce1fec24f80dfe60cd68f1de53119331c38848f7f82de8052eda49d78fdea49e42ada5843094939ef212dece42a5ceb85931a79e02adccda30e6
 SHA512 
911890cacca739f121681514197104cb2dc3bd219f3e068c4ce61264498c56989359976fc75172e1f456c94e4e25c6206413b0234c36e55736a577b8e664e4b3
 DIST sleuthkit-4.6.0.tar.gz 8634432 BLAKE2B 
b45721cdee798d84f0caa0bfe38645346539bb497f5a492c72016a6b3b0246b362ecea676a7a0e788d66cc0dc32335e719912434bd61aa205b7d51b8d4bd7c14
 SHA512 
dbf880e8503dccb0a686f1d9658d56e9cb40f452127f9b713cf2a4941f4083fa1cf80a886994d58421307a679242cd4ee005b3e874cf429cfb140a597a0dc739
 DIST sleuthkit-4.6.4.tar.gz 8655341 BLAKE2B 
9d8a2884d1c90e9be3104221c22fdc4346c8f288a13384ef8205cea46bbda2249691b548b7d19a1b34d6d0d1fc6d5390aa0fc8c8b28ea75b53de946b62c8e25c
 SHA512 
0dd3fc3659fd6dee49ababd8033bcc5ce218c9154b61eb072a943e8d1a96fb04dcabc85124583bc69ad0ced2609fed11812164a3db6587446255a9c507f08762
+DIST sleuthkit-4.6.5.tar.gz 8658866 BLAKE2B 
29b75c96a14c5d42522e7116a80cc368c8097fa43af27c0e958215142d6ee61131c7b154fb876fa3ea9c727e8100de9bd703dfd8cef9ccce1f660c8470fa
 SHA512 
ba21be166da1a7bdd197946722a1e0947f90bbb2c27d635cdfbcbc870aa42937fe6b42f432482f70a5e686942c8891d0367b5ce28615315d8905661e73aefe32
 DIST sqlite-jdbc-3.8.11.jar 5131732 BLAKE2B 
1a04fa9e9cb97fdddc19af2de9efa7b54c0b527642e6e325e31054e4e294e3bc6af00ea291087ed9dd26668d48dae356035fc85212c0eb81656550d552103ed0
 SHA512 
5f4705101992e8916e29742c560aef0d01eba9dc0d2d984b75a77e56be3c9fd20b284390fe8f9bb54bf9d1f8528c3413922684c446212ca8961ac731543fb179

diff --git a/app-forensics/sleuthkit/sleuthkit-4.6.5.ebuild 
b/app-forensics/sleuthkit/sleuthkit-4.6.5.ebuild
new file mode 100644
index 000..7acead628b4
--- /dev/null
+++ b/app-forensics/sleuthkit/sleuthkit-4.6.5.ebuild
@@ -0,0 +1,255 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+JAVA_PKG_BSFIX_NAME="build.xml build-unix.xml"
+inherit autotools java-pkg-opt-2 java-ant-2
+
+DESCRIPTION="A collection of file system and media management forensic 
analysis tools"
+HOMEPAGE="https://www.sleuthkit.org/sleuthkit/;
+# TODO: sqlite-jdbc does not exist in the tree, we bundle it for now
+# TODO: Upstream uses a very specific version of libewf which is not in
+#   the tree anymore. So we statically compile and link to sleuthkit.
+#   Hopefully upstream will figure something out in the future.
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz
+   java? (
+   
http://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.8.11/sqlite-jdbc-3.8.11.jar
+   
http://repo1.maven.org/maven2/com/zaxxer/SparseBitSet/1.1/SparseBitSet-1.1.jar
+   )
+   ewf? ( 
https://dev.gentoo.org/~gokturk/distfiles/app-forensics/libewf/libewf-20130128.tar.gz
 )"
+
+LICENSE="BSD CPL-1.0 GPL-2+ IBM java? ( Apache-2.0 )"
+SLOT="0/13" # subslot = major soname version
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+IUSE="aff doc ewf java postgres static-libs test +threads zlib"
+
+# Note: It is not possible to move the dep on dev-java/jdbc-postgresql
+# inside a conditional postgres? block because java sources import
+# org.postgres unconditionally as of writing this (version 4.6.4). The
+# postgres USE flag will be used for the TSK postgresql support however.
+DEPEND="
+   dev-db/sqlite:3
+   dev-lang/perl:*
+   aff? ( app-forensics/afflib )
+   ewf? ( sys-libs/zlib )
+   java? (
+   >=virtual/jdk-1.8:*
+   >=dev-java/c3p0-0.9.5:0
+   >=dev-java/jdbc-postgresql-9.4:0
+   )
+   postgres? ( dev-db/postgresql:= )
+   zlib? ( sys-libs/zlib )
+"
+# TODO: add support for not-in-tree libraries libvhdi and libvmdk
+# libvhdi: https://github.com/libyal/libvhdi
+# libvmdk: https://github.com/libyal/libvmdk
+# DEPEND="${DEPEND}
+#  vhdi? ( dev-libs/libvhdi )
+#  vmdk? ( dev-libs/libvmdk )
+# "
+
+RDEPEND="${DEPEND}
+   java? ( >=virtual/jre-1.8:= )
+"

[gentoo-commits] repo/gentoo:master commit in: app-misc/sphinx/

2019-01-24 Thread Sergei Trofimovich
commit: 0c5dc98abd6c366045b4688a830369c1aec82d7c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jan 24 20:52:26 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:35:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c5dc98a

app-misc/sphinx: keyworded 2.2.11-r2 for hppa, bug #563932

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

 app-misc/sphinx/sphinx-2.2.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/sphinx/sphinx-2.2.11-r2.ebuild 
b/app-misc/sphinx/sphinx-2.2.11-r2.ebuild
index ed278ee1e82..7bbac2622e5 100644
--- a/app-misc/sphinx/sphinx-2.2.11-r2.ebuild
+++ b/app-misc/sphinx/sphinx-2.2.11-r2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://sphinxsearch.com/files/${MY_P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris"
 IUSE="debug +id64 mariadb mysql odbc postgres re2 stemmer syslog xml"
 
 REQUIRED_USE="mysql? ( !mariadb ) mariadb? ( !mysql )"



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

2019-01-24 Thread Mikle Kolyada
commit: d257f0068c86d86b773d175b1b207aa74d299b4d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jan 24 22:15:16 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jan 24 22:15:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d257f006

sys-devel/autogen: amd64 stable wrt bug #676082

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sys-devel/autogen/autogen-5.18.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autogen/autogen-5.18.16.ebuild 
b/sys-devel/autogen/autogen-5.18.16.ebuild
index dc5b30616ba..82933d1636b 100644
--- a/sys-devel/autogen/autogen-5.18.16.ebuild
+++ b/sys-devel/autogen/autogen-5.18.16.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/rel${PV}/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
 IUSE="libopts static-libs"
 
 RDEPEND=">=dev-scheme/guile-2.0:=



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

2019-01-24 Thread Andreas Sturmlechner
commit: 2dd95b1b5378fc917fd27c5d0a5c925ce9b8f5cd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jan 24 23:16:28 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jan 24 23:16:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd95b1b

dev-libs/appstream: Fix build with USE !test

Closes: https://bugs.gentoo.org/675944
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-libs/appstream/appstream-0.12.4.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-libs/appstream/appstream-0.12.4.ebuild 
b/dev-libs/appstream/appstream-0.12.4.ebuild
index 315dc0c2acd..b64ac55e048 100644
--- a/dev-libs/appstream/appstream-0.12.4.ebuild
+++ b/dev-libs/appstream/appstream-0.12.4.ebuild
@@ -47,6 +47,9 @@ RDEPEND="${DEPEND}"
 src_prepare() {
default
sed -e "/^as_doc_target_dir/s/appstream/${PF}/" -i docs/meson.build || 
die
+   if ! use test; then
+   sed -e "/^subdir.*tests/s/^/#DONT /" -i {,qt/}meson.build || 
die # bug 675944
+   fi
 }
 
 src_configure() {



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

2019-01-24 Thread Thomas Deutschmann
commit: 3f3322f451af6d9a53fdd1987b1fd52eedb9a381
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 23:30:54 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 23:31:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f3322f4

sys-kernel/linux-firmware: mark stable everywhere

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

 sys-kernel/linux-firmware/linux-firmware-20190114.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/linux-firmware/linux-firmware-20190114.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-20190114.ebuild
index afca50ebb36..360918495e9 100644
--- a/sys-kernel/linux-firmware/linux-firmware-20190114.ebuild
+++ b/sys-kernel/linux-firmware/linux-firmware-20190114.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == * ]]; then
 else
GIT_COMMIT="bc656509a3cfb60fcdfc905d7e23c18873e4e7b9"

SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${GIT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 mips ppc ppc64 s390 sh sparc 
x86"
 fi
 
 DESCRIPTION="Linux firmware files"



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

2019-01-24 Thread Jeroen Roovers
commit: dd939d225219c2db104f7a5caddab2aed850046d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jan 24 19:12:57 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jan 24 19:14:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd939d22

net-misc/youtube-dl: Version 2019.01.24

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-misc/youtube-dl/Manifest |   1 +
 net-misc/youtube-dl/youtube-dl-2019.01.24.ebuild | 117 +++
 2 files changed, 118 insertions(+)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index 4b877077246..319444a9b49 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -1 +1,2 @@
 DIST youtube-dl-2019.01.17.tar.gz 3088912 BLAKE2B 
6cd46442d78126b3428135fcb820eb02bb2d567fe41fbfefcd80fc68a9ece0faaf2aa4981e31c619c3be1f789a9539236b1a71e72490c4ee667953837b25f0e5
 SHA512 
b8e81c2b2ec284033a5a92f49a965375d681d92435bc0402bb891b443f94d1321716a15717fe4e3c1fbc54ec610445282c52c18c046e140dd53731560230bd3f
+DIST youtube-dl-2019.01.24.tar.gz 3099596 BLAKE2B 
e8833a0432e32e843ed8a3e971b9572bc0f4f8e90ea9c26fe6426ccc95231d21cf85601615634611129405115fe1d3fc192f423c0d700beab7fbccfcfe25dc68
 SHA512 
23d81769dc202c6598a8ece772f104ed7a048464b3d14305492e562aa77dc77ef32e56ae7a1084b144460e18dcfb2a9d7813ef88f7fdc34760f62f4de23e4602

diff --git a/net-misc/youtube-dl/youtube-dl-2019.01.24.ebuild 
b/net-misc/youtube-dl/youtube-dl-2019.01.24.ebuild
new file mode 100644
index 000..6ef55f59a57
--- /dev/null
+++ b/net-misc/youtube-dl/youtube-dl-2019.01.24.ebuild
@@ -0,0 +1,117 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
+inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
+
+DESCRIPTION="Download videos from YouTube.com (and more sites...)"
+HOMEPAGE="https://rg3.github.com/youtube-dl/;
+SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+IUSE="+offensive test"
+
+RDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+   test? ( dev-python/nose[coverage(+)] )
+"
+
+S="${WORKDIR}/${PN}"
+
+python_prepare_all() {
+   if ! use offensive; then
+   sed -i -e "/..version../s|'$|+gentoo.no.offensive.sites'|g" \
+   youtube_dl/version.py || die
+   # these have single line import statements
+   local xxx=(
+   alphaporno anysex behindkink camwithher chaturbate 
eporner
+   eroprofile extremetube foxgay goshgay hellporno 
hentaistigma
+   hornbunny keezmovies lovehomeporn mofosex myvidster 
porn91 porncom
+   pornflip pornhd pornotube pornovoisines pornoxo 
ruleporn sexu
+   slutload spankbang spankwire sunporno thisav vporn 
watchindianporn
+   xbef xnxx xtube xvideos xxxymovies youjizz youporn
+   )
+   # these have multi-line import statements
+   local mxxx=(
+   drtuber fourtube motherless pornhub redtube tnaflix 
tube8 xhamster
+   )
+   # do single line imports
+   sed -i \
+   -e $( printf '/%s/d;' ${xxx[@]} ) \
+   youtube_dl/extractor/extractors.py \
+   || die
+
+   # do multiple line imports
+   sed -i \
+   -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
+   youtube_dl/extractor/extractors.py \
+   || die
+
+   sed -i \
+   -e $( printf '/%s/d;' ${mxxx[@]} ) \
+   youtube_dl/extractor/generic.py \
+   || die
+
+   rm \
+   $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \
+   $( printf 'youtube_dl/extractor/%s.py ' ${mxxx[@]} ) \
+   test/test_age_restriction.py \
+   || die
+   fi
+
+   eapply_user
+
+   distutils-r1_python_prepare_all
+}
+
+src_compile() {
+   distutils-r1_src_compile
+}
+
+python_test() {
+   emake test
+}
+
+python_install_all() {
+   dodoc README.txt
+   doman ${PN}.1
+
+   newbashcomp ${PN}.bash-completion ${PN}
+
+   insinto /usr/share/zsh/site-functions
+   newins ${PN}.zsh _${PN}
+
+   insinto /usr/share/fish/vendor_completions.d
+   doins ${PN}.fish
+
+   distutils-r1_python_install_all
+
+   rm -r "${ED}"/usr/etc || die
+   rm -r "${ED}"/usr/share/doc/youtube_dl || die
+}
+
+pkg_postinst() {
+   elog "${PN}(1) / 

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

2019-01-24 Thread Sergei Trofimovich
commit: f5284edad6823e9696929591f738557dd1362764
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 21:46:08 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:46:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5284eda

sys-devel/autogen: stable 5.18.16 for ppc64, bug #676082

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-devel/autogen/autogen-5.18.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autogen/autogen-5.18.16.ebuild 
b/sys-devel/autogen/autogen-5.18.16.ebuild
index 1d0393fb65c..864feb94494 100644
--- a/sys-devel/autogen/autogen-5.18.16.ebuild
+++ b/sys-devel/autogen/autogen-5.18.16.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/rel${PV}/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
 IUSE="libopts static-libs"
 
 RDEPEND=">=dev-scheme/guile-2.0:=



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

2019-01-24 Thread Sergei Trofimovich
commit: a8a5a473f5b1d7a687ff54fbe35f01d4d37c10e5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 21:44:57 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:44:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8a5a473

sys-devel/autogen: stable 5.18.16 for ia64, bug #676082

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-devel/autogen/autogen-5.18.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autogen/autogen-5.18.16.ebuild 
b/sys-devel/autogen/autogen-5.18.16.ebuild
index ba6390b0a87..1d0393fb65c 100644
--- a/sys-devel/autogen/autogen-5.18.16.ebuild
+++ b/sys-devel/autogen/autogen-5.18.16.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/rel${PV}/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x86-macos"
 IUSE="libopts static-libs"
 
 RDEPEND=">=dev-scheme/guile-2.0:=



[gentoo-commits] repo/gentoo:master commit in: net-dns/bind/

2019-01-24 Thread Sergei Trofimovich
commit: 4296fa01246b009d37514c6e873eb592655f915b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 21:43:04 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:43:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4296fa01

net-dns/bind: stable 9.11.4_p2 for hppa, bug #657654

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-dns/bind/bind-9.11.4_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/bind/bind-9.11.4_p2.ebuild 
b/net-dns/bind/bind-9.11.4_p2.ebuild
index f943f47c187..a760560b911 100644
--- a/net-dns/bind/bind-9.11.4_p2.ebuild
+++ b/net-dns/bind/bind-9.11.4_p2.ebuild
@@ -38,7 +38,7 @@ 
SRC_URI="https://www.isc.org/downloads/file/${MY_P}/?version=tar-gz -> ${P}.tar.
 
 LICENSE="Apache-2.0 BSD BSD-2 GPL-2 HPND ISC MPL-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 # -berkdb by default re bug 602682
 IUSE="-berkdb +caps dlz dnstap doc filter- fixed-rrset geoip gost gssapi 
idn ipv6
 json ldap libressl lmdb mysql odbc postgres python rpz seccomp selinux ssl 
static-libs



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

2019-01-24 Thread Sergei Trofimovich
commit: fcc806992806228cae6a35adadf642425eac99f5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 21:43:10 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:43:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcc80699

net-analyzer/nagios-plugins: stable 2.2.1-r3 for hppa, bug #676042

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild 
b/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild
index 36bb2e33134..470e88f0a68 100644
--- a/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild
+++ b/net-analyzer/nagios-plugins/nagios-plugins-2.2.1-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://nagios-plugins.org/download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ppc ppc64 sparc ~x86"
 IUSE="ipv6 ldap libressl mysql nagios-dns nagios-ping nagios-game postgres 
radius samba selinux snmp ssh +ssl"
 
 # Most of the plugins use automagic dependencies, i.e. the plugin will



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

2019-01-24 Thread Sergei Trofimovich
commit: 400e3d50585879ee55dd76ac9a2f50d1cd9735f3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 21:40:45 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:40:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=400e3d50

app-portage/pfl: stable 3.0-r2 for hppa, bug #676050

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-portage/pfl/pfl-3.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/pfl/pfl-3.0-r2.ebuild 
b/app-portage/pfl/pfl-3.0-r2.ebuild
index afa98efa3bf..1b73209d5f0 100644
--- a/app-portage/pfl/pfl-3.0-r2.ebuild
+++ b/app-portage/pfl/pfl-3.0-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://files.portagefilelist.de/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="~amd64 ~arm hppa ~mips ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux 
~x64-macos"
 IUSE="+network-cron"
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: sys-process/audit/

2019-01-24 Thread Sergei Trofimovich
commit: a7977593b287920849a4a799b352590e8807d919
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 21:40:40 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:40:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7977593

sys-process/audit: stable 2.8.4 for hppa, bug #669532

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-process/audit/audit-2.8.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/audit/audit-2.8.4.ebuild 
b/sys-process/audit/audit-2.8.4.ebuild
index 023e75dfe98..5b5277376cf 100644
--- a/sys-process/audit/audit-2.8.4.ebuild
+++ b/sys-process/audit/audit-2.8.4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://people.redhat.com/sgrubb/audit/${P}.tar.gz;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
~x86"
 IUSE="gssapi ldap python static-libs"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 # Testcases are pretty useless as they are built for RedHat users/groups and 
kernels.



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

2019-01-24 Thread Sergei Trofimovich
commit: c37f49f996bee2ed2fe5f7fe4ec6c3cc523a5bcb
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 21:42:00 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:42:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c37f49f9

dev-libs/libisoburn: stable 1.5.0 for hppa, bug #676052

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-libs/libisoburn/libisoburn-1.5.0.ebuild 
b/dev-libs/libisoburn/libisoburn-1.5.0.ebuild
index ba891504047..3b2a6b38d88 100644
--- a/dev-libs/libisoburn/libisoburn-1.5.0.ebuild
+++ b/dev-libs/libisoburn/libisoburn-1.5.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2 GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 sparc ~x86"
 IUSE="acl debug external-filters external-filters-setuid frontend-optional
launch-frontend launch-frontend-setuid libedit readline static-libs 
xattr zlib"
 



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

2019-01-24 Thread Sergei Trofimovich
commit: 9c34daa16652732b08cd15f641414dcb882d0898
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 21:40:48 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:40:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c34daa1

dev-libs/libburn: stable 1.5.0 for hppa, bug #676052

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-libs/libburn/libburn-1.5.0.ebuild 
b/dev-libs/libburn/libburn-1.5.0.ebuild
index 589911dbfc8..02e29cc5523 100644
--- a/dev-libs/libburn/libburn-1.5.0.ebuild
+++ b/dev-libs/libburn/libburn-1.5.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 sparc ~x86"
 IUSE="debug static-libs"
 
 BDEPEND="



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

2019-01-24 Thread Sergei Trofimovich
commit: 4656de783087bfa699071d461aaa0bdb92c2d3c1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 21:40:53 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:40:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4656de78

dev-libs/libisofs: stable 1.5.0 for hppa, bug #676052

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-libs/libisofs/libisofs-1.5.0.ebuild 
b/dev-libs/libisofs/libisofs-1.5.0.ebuild
index 36e0c414947..077a9b567fe 100644
--- a/dev-libs/libisofs/libisofs-1.5.0.ebuild
+++ b/dev-libs/libisofs/libisofs-1.5.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ppc ppc64 sparc ~x86"
 IUSE="acl debug static-libs verbose-debug xattr zlib"
 
 BDEPEND="



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

2019-01-24 Thread Sergei Trofimovich
commit: 7564841f3aa6057ed0ce122c6aa0a574a77fe58c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jan 24 21:40:55 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jan 24 21:40:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7564841f

sys-devel/autogen: stable 5.18.16 for hppa, bug #676082

Package-Manager: Portage-2.3.58, Repoman-2.3.12
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-devel/autogen/autogen-5.18.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/autogen/autogen-5.18.16.ebuild 
b/sys-devel/autogen/autogen-5.18.16.ebuild
index 12ede72a77c..ba6390b0a87 100644
--- a/sys-devel/autogen/autogen-5.18.16.ebuild
+++ b/sys-devel/autogen/autogen-5.18.16.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/rel${PV}/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos"
 IUSE="libopts static-libs"
 
 RDEPEND=">=dev-scheme/guile-2.0:=



[gentoo-commits] repo/gentoo:master commit in: sys-apps/texinfo/files/, sys-apps/texinfo/

2019-01-24 Thread Andreas K. Hüttel
commit: 3331aabac66e77ff61f11c8e35c5a6f121f4cdc9
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Jan 24 22:18:54 2019 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Jan 24 22:19:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3331aaba

sys-apps/texinfo: Backport perl-5.28 fixes from upstream

Closes: https://bugs.gentoo.org/662368
Package-Manager: Portage-2.3.57, Repoman-2.3.12
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 .../files/texinfo-6.5-escape-braces-in-regex.patch | 28 +
 ...texinfo-6.5-perl-5.28-thread-safe-locales.patch | 37 +
 sys-apps/texinfo/texinfo-6.5-r1.ebuild | 47 ++
 3 files changed, 112 insertions(+)

diff --git a/sys-apps/texinfo/files/texinfo-6.5-escape-braces-in-regex.patch 
b/sys-apps/texinfo/files/texinfo-6.5-escape-braces-in-regex.patch
new file mode 100644
index 000..72f1288393a
--- /dev/null
+++ b/sys-apps/texinfo/files/texinfo-6.5-escape-braces-in-regex.patch
@@ -0,0 +1,28 @@
+From efde0da129154376bebcfff6a47424669bb849df Mon Sep 17 00:00:00 2001
+From: Gavin Smith 
+Date: Fri, 13 Jul 2018 15:31:28 +
+Subject: [PATCH] escape braces in regex
+
+git-svn-id: svn://127.0.0.1/svn_repo/texinfo/trunk@8007 
39fee189-59d7-47db-b5d4-205258b72aed
+
+diff --git a/tp/Texinfo/Parser.pm b/tp/Texinfo/Parser.pm
+index ba1cd423d..b5eece680 100644
+--- a/tp/Texinfo/Parser.pm
 b/tp/Texinfo/Parser.pm
+@@ -5531,11 +5531,11 @@ sub _parse_special_misc_command()
+ }
+   } elsif ($command eq 'clickstyle') {
+ # REMACRO
+-if ($line =~ /^\s+@([[:alnum:]][[:alnum:]\-]*)({})?\s*/) {
++if ($line =~ /^\s+@([[:alnum:]][[:alnum:]\-]*)(\{\})?\s*/) {
+   $args = ['@'.$1];
+   $self->{'clickstyle'} = $1;
+   $remaining = $line;
+-  $remaining =~ 
s/^\s+@([[:alnum:]][[:alnum:]\-]*)({})?\s*(\@(c|comment)((\@|\s+).*)?)?//;
++  $remaining =~ 
s/^\s+@([[:alnum:]][[:alnum:]\-]*)(\{\})?\s*(\@(c|comment)((\@|\s+).*)?)?//;
+   $has_comment = 1 if (defined($4));
+ } else {
+   $self->line_error (sprintf($self->__(
+-- 
+2.20.1
+

diff --git 
a/sys-apps/texinfo/files/texinfo-6.5-perl-5.28-thread-safe-locales.patch 
b/sys-apps/texinfo/files/texinfo-6.5-perl-5.28-thread-safe-locales.patch
new file mode 100644
index 000..2d33abe78c7
--- /dev/null
+++ b/sys-apps/texinfo/files/texinfo-6.5-perl-5.28-thread-safe-locales.patch
@@ -0,0 +1,37 @@
+From a028ef47353b03177aab3facb4b2b74f7c3823e2 Mon Sep 17 00:00:00 2001
+From: Gavin Smith 
+Date: Fri, 13 Jul 2018 15:39:29 +
+Subject: [PATCH] perl 5.28 thread-safe locales
+
+git-svn-id: svn://127.0.0.1/svn_repo/texinfo/trunk@8008 
39fee189-59d7-47db-b5d4-205258b72aed
+
+diff --git a/tp/Texinfo/Convert/XSParagraph/xspara.c 
b/tp/Texinfo/Convert/XSParagraph/xspara.c
+index 51eea4a30..f2d6d1ccd 100644
+--- a/tp/Texinfo/Convert/XSParagraph/xspara.c
 b/tp/Texinfo/Convert/XSParagraph/xspara.c
+@@ -248,6 +248,11 @@ xspara_init (void)
+ 
+   dTHX;
+ 
++#if PERL_VERSION > 27 || (PERL_VERSION == 27 && PERL_SUBVERSION > 8)
++  /* needed due to thread-safe locale handling in newer perls */
++  switch_to_global_locale();
++#endif
++
+   if (setlocale (LC_CTYPE, "en_US.UTF-8")
+   || setlocale (LC_CTYPE, "en_US.utf8"))
+ goto success;
+@@ -320,6 +325,10 @@ failure:
+ {
+ success: ;
+   free (utf8_locale);
++#if PERL_VERSION > 27 || (PERL_VERSION == 27 && PERL_SUBVERSION > 8)
++  /* needed due to thread-safe locale handling in newer perls */
++  sync_locale();
++#endif
+   /*
+   fprintf (stderr, "tried to set LC_CTYPE to UTF-8.\n");
+   fprintf (stderr, "character encoding is: %s\n",
+-- 
+2.20.1
+

diff --git a/sys-apps/texinfo/texinfo-6.5-r1.ebuild 
b/sys-apps/texinfo/texinfo-6.5-r1.ebuild
new file mode 100644
index 000..d42ea554e6d
--- /dev/null
+++ b/sys-apps/texinfo/texinfo-6.5-r1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Note: if your package uses the texi2dvi utility, it must depend on the
+# virtual/texi2dvi package to pull in all the right deps.  The tool is not
+# usable out-of-the-box because it requires the large tex packages.
+
+EAPI=6
+
+inherit flag-o-matic
+
+DESCRIPTION="The GNU info program and utilities"
+HOMEPAGE="https://www.gnu.org/software/texinfo/;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="nls static"
+
+RDEPEND="
+   !=app-text/tetex-2*
+   >=sys-libs/ncurses-5.2-r2:0=
+   dev-lang/perl:=
+   dev-perl/libintl-perl
+   dev-perl/Unicode-EastAsianWidth
+   dev-perl/Text-Unidecode
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   nls? ( >=sys-devel/gettext-0.19.6 )"
+
+PATCHES=(
+   

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

2019-01-24 Thread Miroslav Å ulc
commit: 9989ce97dabcf6ef399581493ea145409012ccdf
Author: Miroslav Å ulc  gentoo  org>
AuthorDate: Thu Jan 24 22:04:38 2019 +
Commit: Miroslav Å ulc  gentoo  org>
CommitDate: Thu Jan 24 22:06:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9989ce97

dev-java/ant-core-1.{9.13,10.5}-r1: fixes

1) fixed bug #675992
2) fixed 'package not found' error on systems wnere ant-core
   is not installed yet

Closes: https://bugs.gentoo.org/675992
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Miroslav Å ulc  gentoo.org>

 dev-java/ant-core/Manifest| 4 ++--
 .../ant-core/{ant-core-1.10.5.ebuild => ant-core-1.10.5-r1.ebuild}| 4 +++-
 .../ant-core/{ant-core-1.9.13.ebuild => ant-core-1.9.13-r1.ebuild}| 4 +++-
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/dev-java/ant-core/Manifest b/dev-java/ant-core/Manifest
index 213bb1a3086..b5117327cb0 100644
--- a/dev-java/ant-core/Manifest
+++ b/dev-java/ant-core/Manifest
@@ -1,5 +1,5 @@
-DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
-DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
+DIST ant-1.10.5-r1-gentoo.tar.bz2 6400 BLAKE2B 
349a45ee678217ee31ae2f6e982ceec2d31138dcb58e614f496125d7d9bc01a0fa3630be069fbf0d131f4006cb7912597c31392bc82ab7f9b0a1189bbe9a763e
 SHA512 
adf544c151f46df8a7fb7f7d33450f9a2390f568dd4c7b1c0e8850b1a155ea0ddc1f834d869d657806570d59af2d194cb443ddfc653627967246f3b38e264b12
+DIST ant-1.9.13-r1-gentoo.tar.bz2 7208 BLAKE2B 
6f041a69f5f8e38e95b26030cf4d730ed22b071ad1d6e87ab1fb2707e2b40c7e23e1c8f7759d6904ad2b25793a7d9b2ead1c2649b6b029296cd9d05bec4ea296
 SHA512 
5b105ea00fbc7d6f63c0016b288f5e46a81b89cc46015e2ffcb2a4d41f915331ac8f8183752fea547396f204748132f6ce7aa7b3e6f6181c4983b4eb7ee84d54
 DIST ant-1.9.2-gentoo.tar.bz2 14884 BLAKE2B 
d67b14350ed135c656313a018c25dbd915838bb2f34c666d05347f9127ccee7c1552d319d195af24c748cc36aa1ec1c8dcc2a826da4cffcf05ddb08b2f6c5021
 SHA512 
2bb84e71d1f07fa9341e674164ee680875381a0a52f5309a1a6f4092df691bf9a83955e4b1a9bcc907fbb2f4d4427afa192bffb8909314b8e519f0b76ebf5b7f
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-core/ant-core-1.10.5.ebuild 
b/dev-java/ant-core/ant-core-1.10.5-r1.ebuild
similarity index 95%
rename from dev-java/ant-core/ant-core-1.10.5.ebuild
rename to dev-java/ant-core/ant-core-1.10.5-r1.ebuild
index 55b6cd4246f..7ddd5d55ba2 100644
--- a/dev-java/ant-core/ant-core-1.10.5.ebuild
+++ b/dev-java/ant-core/ant-core-1.10.5-r1.ebuild
@@ -17,7 +17,7 @@ MY_P="apache-ant-${PV}"
 DESCRIPTION="Java-based build tool similar to 'make' that uses XML 
configuration files"
 HOMEPAGE="https://ant.apache.org/;
 SRC_URI="https://archive.apache.org/dist/ant/source/${MY_P}-src.tar.bz2
-   https://dev.gentoo.org/~fordfrog/distfiles/ant-${PV}-gentoo.tar.bz2;
+   https://dev.gentoo.org/~fordfrog/distfiles/ant-${PV}-r1-gentoo.tar.bz2;
 
 LICENSE="Apache-2.0"
 SLOT="0"
@@ -51,6 +51,8 @@ src_prepare() {
 
 src_compile() {
export ANT_HOME=""
+   # Avoid error message that package ant-core was not found
+   export ANT_TASKS="none"
 
local bsyscp
 

diff --git a/dev-java/ant-core/ant-core-1.9.13.ebuild 
b/dev-java/ant-core/ant-core-1.9.13-r1.ebuild
similarity index 95%
rename from dev-java/ant-core/ant-core-1.9.13.ebuild
rename to dev-java/ant-core/ant-core-1.9.13-r1.ebuild
index 55b6cd4246f..7ddd5d55ba2 100644
--- a/dev-java/ant-core/ant-core-1.9.13.ebuild
+++ b/dev-java/ant-core/ant-core-1.9.13-r1.ebuild
@@ -17,7 +17,7 @@ MY_P="apache-ant-${PV}"
 DESCRIPTION="Java-based build tool similar to 'make' that uses XML 
configuration files"
 HOMEPAGE="https://ant.apache.org/;
 SRC_URI="https://archive.apache.org/dist/ant/source/${MY_P}-src.tar.bz2
-   https://dev.gentoo.org/~fordfrog/distfiles/ant-${PV}-gentoo.tar.bz2;
+   

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

2019-01-24 Thread Thomas Deutschmann
commit: 2d4fe2574aecc3ba02ed37302fed37bff08c1fda
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 22:09:37 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d4fe257

dev-ruby/rubyzip: x86 stable (bug #659282)

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

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

diff --git a/dev-ruby/rubyzip/rubyzip-1.2.2.ebuild 
b/dev-ruby/rubyzip/rubyzip-1.2.2.ebuild
index cbd1bdb8837..0b809868dc5 100644
--- a/dev-ruby/rubyzip/rubyzip-1.2.2.ebuild
+++ b/dev-ruby/rubyzip/rubyzip-1.2.2.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tg
 
 LICENSE="Ruby"
 SLOT="1"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND=""



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

2019-01-24 Thread Thomas Deutschmann
commit: c9edaf1d670981279ba4d14cd3b62ece27df2afa
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:52:44 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9edaf1d

app-portage/pfl: x86 stable (bug #676050)

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

 app-portage/pfl/pfl-3.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/pfl/pfl-3.0-r2.ebuild 
b/app-portage/pfl/pfl-3.0-r2.ebuild
index 1b73209d5f0..499ba16f765 100644
--- a/app-portage/pfl/pfl-3.0-r2.ebuild
+++ b/app-portage/pfl/pfl-3.0-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://files.portagefilelist.de/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm hppa ~mips ppc ppc64 sparc ~x86 ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="~amd64 ~arm hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~x64-macos"
 IUSE="+network-cron"
 
 DEPEND=""



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

2019-01-24 Thread Thomas Deutschmann
commit: 08b9209cb3dfbe3e40d116ebe31973430af9097d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 22:02:26 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08b9209c

dev-db/postgis: x86 stable (bug #674488)

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

 dev-db/postgis/postgis-2.4.6.ebuild| 4 ++--
 dev-db/postgis/postgis-2.5.1-r1.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-db/postgis/postgis-2.4.6.ebuild 
b/dev-db/postgis/postgis-2.4.6.ebuild
index c78f3e5ac27..4c1fdf889a9 100644
--- a/dev-db/postgis/postgis-2.4.6.ebuild
+++ b/dev-db/postgis/postgis-2.4.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -17,7 +17,7 @@ HOMEPAGE="http://postgis.net;
 SRC_URI="http://download.osgeo.org/postgis/source/${MY_P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="address-standardizer doc gtk static-libs mapbox test topology"
 
 RDEPEND="

diff --git a/dev-db/postgis/postgis-2.5.1-r1.ebuild 
b/dev-db/postgis/postgis-2.5.1-r1.ebuild
index 23608a5b3b0..910b9060e6f 100644
--- a/dev-db/postgis/postgis-2.5.1-r1.ebuild
+++ b/dev-db/postgis/postgis-2.5.1-r1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="http://postgis.net;
 SRC_URI="http://download.osgeo.org/postgis/source/${MY_P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="address-standardizer doc gtk static-libs mapbox test topology"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Archive_Tar/

2019-01-24 Thread Thomas Deutschmann
commit: d1c8b992f1f2509e57de5123405abc7cea54dffb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 21:51:27 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1c8b992

dev-php/PEAR-Archive_Tar: x86 stable, applying ALLARCHES policy (bug #675576)

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

 dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.5.ebuild 
b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.5.ebuild
index d9cfbfde0bf..67ea4e4bba0 100644
--- a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.5.ebuild
+++ b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.5.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://pear.php.net/package/${MY_PN};
 SRC_URI="http://pear.php.net/get/${MY_P}.tgz;
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc ~x86"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 ~s390 ~sh sparc x86"
 IUSE=""
 
 # bzip2 and zlib are needed for compressed tarballs, and there's one



[gentoo-commits] repo/gentoo:master commit in: app-misc/trash-cli/

2019-01-24 Thread Thomas Deutschmann
commit: 199adec77c2d1ff8174f68f9f9c03b331700d3ce
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 22:10:56 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=199adec7

app-misc/trash-cli: x86 stable (bug #656732)

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

 app-misc/trash-cli/trash-cli-0.17.1.14_p20170816.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/trash-cli/trash-cli-0.17.1.14_p20170816.ebuild 
b/app-misc/trash-cli/trash-cli-0.17.1.14_p20170816.ebuild
index 769a796bf48..bf00f26060c 100644
--- a/app-misc/trash-cli/trash-cli-0.17.1.14_p20170816.ebuild
+++ b/app-misc/trash-cli/trash-cli-0.17.1.14_p20170816.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/andreafrancia/${PN}/archive/${GIT_REF}.tar.gz -> ${P
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



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

2019-01-24 Thread Thomas Deutschmann
commit: f7f2fc5be6446ec949ed8eaed62e5b9fa84585c7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jan 24 22:01:38 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jan 24 22:22:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7f2fc5b

app-portage/portage-utils: x86 stable (bug #675960)

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

 app-portage/portage-utils/portage-utils-0.74.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/portage-utils/portage-utils-0.74.ebuild 
b/app-portage/portage-utils/portage-utils-0.74.ebuild
index 24645da7fdc..cb0eabec9f4 100644
--- a/app-portage/portage-utils/portage-utils-0.74.ebuild
+++ b/app-portage/portage-utils/portage-utils-0.74.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 RDEPEND="dev-libs/iniparser:0"



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

2019-01-24 Thread Craig Andrews
commit: dd83699d620548c1e6fe2cd14cd5f51058b1dac5
Author: PPed72  iol  it>
AuthorDate: Wed Jan 23 10:58:20 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Jan 24 23:22:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd83699d

net-p2p/deluge: restrict libtorrent-rasterbar dependency

net-libs/libtorrent-rasterbar-1.2 removed several deprecated
functions needed by net-p2p deluge. We thus restrict the
dependency to be https://bugs.gentoo.org/676056
Signed-off-by: Paolo Pedroni  iol.it>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10892
Signed-off-by: Craig Andrews  gentoo.org>

 ...uge-1.3..ebuild => deluge-1.3.15-r3.ebuild} | 23 +++---
 net-p2p/deluge/deluge-1.3..ebuild  | 19 +-
 2 files changed, 12 insertions(+), 30 deletions(-)

diff --git a/net-p2p/deluge/deluge-1.3..ebuild 
b/net-p2p/deluge/deluge-1.3.15-r3.ebuild
similarity index 85%
copy from net-p2p/deluge/deluge-1.3..ebuild
copy to net-p2p/deluge/deluge-1.3.15-r3.ebuild
index a32833a4f9f..2245028f990 100644
--- a/net-p2p/deluge/deluge-1.3..ebuild
+++ b/net-p2p/deluge/deluge-1.3.15-r3.ebuild
@@ -1,21 +1,19 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
 
 PYTHON_COMPAT=( python2_7 )
 DISTUTILS_SINGLE_IMPL=1
-PLOCALES="af ar ast be bg bn bs ca cs cy da de el en_AU en_CA en_GB eo es et 
eu fa fi fo fr fy ga gl he hi hr hu id is it iu ja ka kk km kn ko ku ky la lb 
lt lv mk ml ms nap nb nds nl nn oc pl pms pt pt_BR ro ru si sk sl sr sv ta te 
th tl tlh tr uk ur vi zh_CN zh_HK zh_TW"
-inherit distutils-r1 eutils systemd user l10n
+inherit distutils-r1 systemd user
 
 DESCRIPTION="BitTorrent client with a client/server model"
 HOMEPAGE="https://deluge-torrent.org/;
 
-if [[ ${PV} == 1.3. ]]; then
+if [[ ${PV} ==  ]]; then
inherit git-r3
EGIT_REPO_URI="git://deluge-torrent.org/${PN}.git
http://git.deluge-torrent.org/${PN};
-   EGIT_BRANCH="1.3-stable"
SRC_URI=""
 else
SRC_URI="http://download.deluge-torrent.org/source/${P}.tar.bz2;
@@ -32,13 +30,13 @@ REQUIRED_USE="
 "
 PATCHES=(
"${FILESDIR}/${PN}-1.3.5-disable_libtorrent_internal_copy.patch"
+   "${FILESDIR}/${PN}-1.3.15-r1-fix-preferences-ui.patch"
 )
 
-CDEPEND="net-libs/libtorrent-rasterbar[python,${PYTHON_USEDEP}]"
-DEPEND="${CDEPEND}
+DEPEND="https://deluge-torrent.org/;
@@ -34,11 +33,10 @@ PATCHES=(
"${FILESDIR}/${PN}-1.3.5-disable_libtorrent_internal_copy.patch"
 )
 
-CDEPEND="net-libs/libtorrent-rasterbar[python,${PYTHON_USEDEP}]"
-DEPEND="${CDEPEND}
+DEPEND="

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

2019-01-24 Thread Mikle Kolyada
commit: 536da9d9d5a4574b72a088dee05530bae8a42519
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 07:26:33 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 07:26:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=536da9d9

kde-plasma/plasma-workspace: x86 stable wrt bug #675040

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.ebuild 
b/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.ebuild
index bfae3ab2747..8ca2acf99e1 100644
--- a/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.ebuild
+++ b/kde-plasma/plasma-workspace/plasma-workspace-5.14.5.ebuild
@@ -9,7 +9,7 @@ VIRTUALX_REQUIRED="test"
 inherit kde5 qmake-utils
 
 DESCRIPTION="KDE Plasma workspace"
-KEYWORDS="amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="appstream +calendar geolocation gps prison qalculate +semantic-desktop 
systemd"
 
 REQUIRED_USE="gps? ( geolocation )"



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

2019-01-24 Thread Mikle Kolyada
commit: 7cfba6d0842489fc967b2dd1a9e9e02075b10ce6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 07:26:37 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 07:26:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cfba6d0

kde-plasma/plasma-workspace-wallpapers: x86 stable wrt bug #675040

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git 
a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.14.5.ebuild
 
b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.14.5.ebuild
index b09c77c6e58..3da50272f26 100644
--- 
a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.14.5.ebuild
+++ 
b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.14.5.ebuild
@@ -8,7 +8,7 @@ KDE_DEBUG="false"
 inherit kde5
 
 DESCRIPTION="Additional wallpapers for the Plasma workspace"
-KEYWORDS="amd64 ~arm ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~ppc64 x86"
 IUSE=""
 
 DEPEND="



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

2019-01-24 Thread Mikle Kolyada
commit: 17548b0965d173e7c543b589e8d2ddb41a6b26c5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 07:27:16 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 07:27:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17548b09

kde-plasma/xembed-sni-proxy: x86 stable wrt bug #675040

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.14.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.14.5.ebuild 
b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.14.5.ebuild
index c8de0a5b6d3..19e50398883 100644
--- a/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.14.5.ebuild
+++ b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.14.5.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="Legacy xembed tray icons support for SNI-only 
system trays"
 
HOMEPAGE="https://cgit.kde.org/plasma-workspace.git/tree/xembed-sni-proxy/Readme.md;
 
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 
 DEPEND="
$(add_frameworks_dep extra-cmake-modules)



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

2019-01-24 Thread Mikle Kolyada
commit: 1404e0a7afde3516beda34cc0c9f1c3ed8efd4df
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 07:26:57 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 07:26:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1404e0a7

kde-plasma/powerdevil: x86 stable wrt bug #675040

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/kde-plasma/powerdevil/powerdevil-5.14.5.ebuild 
b/kde-plasma/powerdevil/powerdevil-5.14.5.ebuild
index de7749ef006..17c3f6f8d8c 100644
--- a/kde-plasma/powerdevil/powerdevil-5.14.5.ebuild
+++ b/kde-plasma/powerdevil/powerdevil-5.14.5.ebuild
@@ -8,7 +8,7 @@ inherit kde5
 
 DESCRIPTION="Power management for KDE Plasma Shell"
 HOMEPAGE="https://cgit.kde.org/powerdevil.git;
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="brightness-control +wireless"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/sddm-kcm/

2019-01-24 Thread Mikle Kolyada
commit: cda496df2707ca1126f187426aab8a71e1e06656
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 07:27:02 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 07:27:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cda496df

kde-plasma/sddm-kcm: x86 stable wrt bug #675040

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/kde-plasma/sddm-kcm/sddm-kcm-5.14.5.ebuild 
b/kde-plasma/sddm-kcm/sddm-kcm-5.14.5.ebuild
index e85c780e462..6ca01a268b7 100644
--- a/kde-plasma/sddm-kcm/sddm-kcm-5.14.5.ebuild
+++ b/kde-plasma/sddm-kcm/sddm-kcm-5.14.5.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="KDE Plasma control module for SDDM"
 HOMEPAGE="https://cgit.kde.org/sddm-kcm.git;
 
 LICENSE="GPL-2+"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE=""
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/user-manager/

2019-01-24 Thread Mikle Kolyada
commit: b1419026baeba862b2dffbc08fe123466be00594
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 07:27:11 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 07:27:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1419026

kde-plasma/user-manager: x86 stable wrt bug #675040

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/kde-plasma/user-manager/user-manager-5.14.5.ebuild 
b/kde-plasma/user-manager/user-manager-5.14.5.ebuild
index 7460d472ced..91019a30de7 100644
--- a/kde-plasma/user-manager/user-manager-5.14.5.ebuild
+++ b/kde-plasma/user-manager/user-manager-5.14.5.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit kde5
 
 DESCRIPTION="Simple system settings module to manage the users of your system"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE=""
 
 DEPEND="



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

2019-01-24 Thread Mikle Kolyada
commit: c0676b8a65474a3659bea96aa456bfe05f7f7752
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 07:26:42 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 07:26:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0676b8a

kde-plasma/plasma-vault: x86 stable wrt bug #675040

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/kde-plasma/plasma-vault/plasma-vault-5.14.5.ebuild 
b/kde-plasma/plasma-vault/plasma-vault-5.14.5.ebuild
index 2edc65d3e33..9a9bad30295 100644
--- a/kde-plasma/plasma-vault/plasma-vault-5.14.5.ebuild
+++ b/kde-plasma/plasma-vault/plasma-vault-5.14.5.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Plasma applet and services for creating encrypted 
vaults"
 HOMEPAGE+=" https://cukic.co/2017/02/03/vaults-encryption-in-plasma/;
 
 LICENSE="LGPL-3"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="networkmanager"
 
 DEPEND="



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

2019-01-24 Thread Mikle Kolyada
commit: 12e17c995f972627bacde26b4562edf394e6e659
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 07:26:09 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 07:26:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12e17c99

kde-plasma/plasma-meta: x86 stable wrt bug #675040

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/kde-plasma/plasma-meta/plasma-meta-5.14.5.ebuild 
b/kde-plasma/plasma-meta/plasma-meta-5.14.5.ebuild
index c8a258e517e..ea23101e875 100644
--- a/kde-plasma/plasma-meta/plasma-meta-5.14.5.ebuild
+++ b/kde-plasma/plasma-meta/plasma-meta-5.14.5.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://www.kde.org/plasma-desktop;
 
 LICENSE="metapackage"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="bluetooth +browser-integration consolekit crypt +display-manager elogind 
grub gtk +handbook
 +legacy-systray networkmanager pam plymouth +pm-utils pulseaudio +sddm sdk 
systemd +wallpapers"
 



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plymouth-kcm/

2019-01-24 Thread Mikle Kolyada
commit: efb4439de4b4227d5eb680feb8376a25fd1a6b88
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 07:26:47 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 07:26:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efb4439d

kde-plasma/plymouth-kcm: x86 stable wrt bug #675040

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/kde-plasma/plymouth-kcm/plymouth-kcm-5.14.5.ebuild 
b/kde-plasma/plymouth-kcm/plymouth-kcm-5.14.5.ebuild
index 1bf07ad6ac6..6b288bc8f52 100644
--- a/kde-plasma/plymouth-kcm/plymouth-kcm-5.14.5.ebuild
+++ b/kde-plasma/plymouth-kcm/plymouth-kcm-5.14.5.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="KDE Plasma control module for Plymouth"
 HOMEPAGE="https://cgit.kde.org/plymouth-kcm.git;
 
 LICENSE="GPL-2+"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE=""
 
 DEPEND="



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

2019-01-24 Thread Patrick McLean
commit: 480e61e59482ac3bf2457035da65941c532c6095
Author: Patrick McLean  sony  com>
AuthorDate: Fri Jan 25 01:29:43 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Jan 25 01:29:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=480e61e5

sys-block/storcli: Add storcli32 to QA_PRESTRIPPED as well

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 sys-block/storcli/storcli-7.0709-r1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sys-block/storcli/storcli-7.0709-r1.ebuild 
b/sys-block/storcli/storcli-7.0709-r1.ebuild
index 89621f287ab..65a0583219b 100644
--- a/sys-block/storcli/storcli-7.0709-r1.ebuild
+++ b/sys-block/storcli/storcli-7.0709-r1.ebuild
@@ -24,7 +24,8 @@ DOCS=( readme.txt license.txt )
 
 MY_STORCLI_BASEDIR="/opt/lsi/storcli"
 
-QA_PRESTRIPPED="${MY_STORCLI_BASEDIR:1}/storcli"
+QA_PRESTRIPPED="${MY_STORCLI_BASEDIR:1}/storcli
+   ${MY_STORCLI_BASEDIR:1}/storcli32"
 QA_PREBUILT=${QA_PRESTRIPPED}
 
 src_unpack() {



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

2019-01-24 Thread Zac Medico
commit: 085bb92afa93ebe4f8db7295395754d01e8d5358
Author: Per Pomsel  gmx  net>
AuthorDate: Fri Jan 25 02:46:20 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jan 25 03:14:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=085bb92a

app-text/calibre: version bump to 3.38.1

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

 app-text/calibre/Manifest  |   1 +
 app-text/calibre/calibre-3.38.1.ebuild | 288 +
 2 files changed, 289 insertions(+)

diff --git a/app-text/calibre/Manifest b/app-text/calibre/Manifest
index 749b0349d96..1fc5102e2ac 100644
--- a/app-text/calibre/Manifest
+++ b/app-text/calibre/Manifest
@@ -1,3 +1,4 @@
 DIST calibre-3.26.1.tar.xz 39109660 BLAKE2B 
0e98c273b8a5dfafea7a7027de3f83ad25ab835edadedf78b7e9bc356bcac8937d915944f2ab6503b414c49b4e792e090e7bd2433a4e86373bf115720ed78b0a
 SHA512 
893e36b101defaca29281b4bd072aafc1c4cb20a9cd3ee06a0b68fbe6b39cab34952799939ac4f54c77148c87861c5ab4ddff84f5ec8c2274ae7fa6424259ff5
 DIST calibre-3.35.0.tar.xz 39482684 BLAKE2B 
acf61ad52b9de4ab87913d536890f1f74cd4bca656ec275cd5fe21d6bbb4b97792d7f13f40b85b61f7a27745be2aedfff8b6deb9f8dff980f6f30596c184f1f2
 SHA512 
c81a00832c812603e5c5752f47ad322fcd9aa5079273385af2e0d8813bf04c4b84cca40210d53207c5b52ac4975ecec725f5560cb3c629f4afe9150229138b0d
 DIST calibre-3.36.0.tar.xz 39685880 BLAKE2B 
2de7a7ed24b34d15cd4e25f343f50bee412b7b64a5c30d9a0be339a899cbca46453b419fbfb60ff9f05d2853af939f3bb9cf65263193148ec6d33bf06964c72b
 SHA512 
f7ddeb54dac7b52951dfdc4c14c4a18af436eed7e5d80326528d4101f8bf34a5de173049f04cda286f6172ff4aa8f0200a7e8d55aa720c36742327aebe5a9ab2
+DIST calibre-3.38.1.tar.xz 38193788 BLAKE2B 
a42a8c3a628246def1f27488db729fc5a859bbadea344d04aec7d2ddc347bc97706d623ba522ad960bf239debe62eee126367417067e4a7c1d427af50584fd37
 SHA512 
4ce1453ff50894adafd027e9bad7cbd557b9b13d5939e53b8476083bb221f1c84cabc465c46f7b6361bcef60ed8da2d96dbfe9670ebf372e4864195e4748ee18

diff --git a/app-text/calibre/calibre-3.38.1.ebuild 
b/app-text/calibre/calibre-3.38.1.ebuild
new file mode 100644
index 000..e2e78649911
--- /dev/null
+++ b/app-text/calibre/calibre-3.38.1.ebuild
@@ -0,0 +1,288 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="sqlite,ssl"
+
+inherit eutils bash-completion-r1 gnome2-utils multilib toolchain-funcs 
python-single-r1 xdg-utils
+
+DESCRIPTION="Ebook management application"
+HOMEPAGE="https://calibre-ebook.com/;
+SRC_URI="https://download.calibre-ebook.com/${PV}/${P}.tar.xz;
+
+LICENSE="
+   GPL-3+
+   GPL-3
+   GPL-2+
+   GPL-2
+   GPL-1+
+   LGPL-3+
+   LGPL-2.1+
+   LGPL-2.1
+   BSD
+   MIT
+   Old-MIT
+   Apache-2.0
+   public-domain
+   || ( Artistic GPL-1+ )
+   CC-BY-3.0
+   OFL-1.1
+   PSF-2
+"
+KEYWORDS="~amd64 ~arm ~x86"
+SLOT="0"
+IUSE="ios +udisks"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   >=app-text/podofo-0.9.6_pre20171027:=
+   >=app-text/poppler-0.26.5[qt5]
+   >=dev-libs/chmlib-0.40:=
+   dev-libs/glib:2=
+   >=dev-libs/icu-57.1:=
+   dev-libs/libinput:=
+   >=dev-python/apsw-3.13.0[${PYTHON_USEDEP}]
+   >=dev-python/beautifulsoup-3.0.5:python-2[${PYTHON_USEDEP}]
+   >=dev-python/chardet-3.0.3[${PYTHON_USEDEP}]
+   >=dev-python/cssselect-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/css-parser-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/dbus-python-1.2.4[${PYTHON_USEDEP}]
+   >=dev-libs/dbus-glib-0.106
+   >=sys-apps/dbus-1.10.8
+   >=dev-python/html5-parser-0.4.3[${PYTHON_USEDEP}]
+   >=dev-python/lxml-3.8.0[${PYTHON_USEDEP}]
+   >=dev-python/mechanize-0.3.5[${PYTHON_USEDEP}]
+   >=dev-python/msgpack-0.5.6[${PYTHON_USEDEP}]
+   >=dev-python/netifaces-0.10.5[${PYTHON_USEDEP}]
+   >=dev-python/pillow-3.2.0[${PYTHON_USEDEP}]
+   >=dev-python/psutil-4.3.0[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.1.3[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.5.3[${PYTHON_USEDEP}]
+   
>=dev-python/PyQt5-5.8[gui,svg,webkit,widgets,network,printsupport,${PYTHON_USEDEP}]
+   dev-python/regex[${PYTHON_USEDEP}]
+   dev-qt/qtcore:5=
+   dev-qt/qtdbus:5=
+   dev-qt/qtgui:5=
+   dev-qt/qtwidgets:5=
+   dev-util/desktop-file-utils
+   dev-util/gtk-update-icon-cache
+   media-fonts/liberation-fonts
+   media-libs/fontconfig:=
+   >=media-libs/freetype-2:=
+   >=media-libs/libmtp-1.1.11:=
+   >=media-libs/libwmf-0.2.8
+   >=media-gfx/optipng-0.7.6
+   >=sys-libs/zlib-1.2.11:=
+   virtual/libusb:1=
+   virtual/python-dnspython[${PYTHON_USEDEP}]
+   x11-libs/libxkbcommon:=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXrender:=
+   

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

2019-01-24 Thread Zac Medico
commit: a8b007539d38c99b29a545998802a6b99cf3311c
Author: Per Pomsel  gmx  net>
AuthorDate: Fri Jan 25 03:00:49 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jan 25 03:14:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8b00753

dev-python/css-parser: new package

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

 dev-python/css-parser/Manifest|  1 +
 dev-python/css-parser/css-parser-1.0.4.ebuild | 21 +
 dev-python/css-parser/metadata.xml| 10 ++
 3 files changed, 32 insertions(+)

diff --git a/dev-python/css-parser/Manifest b/dev-python/css-parser/Manifest
new file mode 100644
index 000..6cb95949e81
--- /dev/null
+++ b/dev-python/css-parser/Manifest
@@ -0,0 +1 @@
+DIST css-parser-1.0.4.tar.gz 143977 BLAKE2B 
94a42d751a90d306b0dd2d503d8d9c326509b438d1f52b5567e6f6db7d80e7a6d2c37cbfa0db79225cc4d0fd5df612b3e430fa1c62604a2f8990d20678019af0
 SHA512 
3781128e55c1e72aa00369873e214f683e3f42944ae83d399697adb7d2966f68fb500c39982845ce9cd06078e4021838d82b06f99d90938069371da8a89a0857

diff --git a/dev-python/css-parser/css-parser-1.0.4.ebuild 
b/dev-python/css-parser/css-parser-1.0.4.ebuild
new file mode 100644
index 000..22df8113753
--- /dev/null
+++ b/dev-python/css-parser/css-parser-1.0.4.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="A CSS Cascading Style Sheets library (fork of cssutils)"
+HOMEPAGE="https://pypi.org/project/css-parser/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+}

diff --git a/dev-python/css-parser/metadata.xml 
b/dev-python/css-parser/metadata.xml
new file mode 100644
index 000..4409159ffa7
--- /dev/null
+++ b/dev-python/css-parser/metadata.xml
@@ -0,0 +1,10 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+zmed...@gentoo.org
+  
+  
+ebook-utils/css-parser
+  
+



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

2019-01-24 Thread Hans de Graaff
commit: 65c8636ff65e6ee4118d82b0f2609a34a9ee011b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 25 05:42:06 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 25 05:42:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65c8636f

dev-ruby/i18n: add 1.5.3

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

 dev-ruby/i18n/Manifest  |  1 +
 dev-ruby/i18n/i18n-1.5.3.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/dev-ruby/i18n/Manifest b/dev-ruby/i18n/Manifest
index 4e807e4ddc1..c57f61dcee9 100644
--- a/dev-ruby/i18n/Manifest
+++ b/dev-ruby/i18n/Manifest
@@ -7,3 +7,4 @@ DIST i18n-1.1.1.tar.gz 61797 BLAKE2B 
3ba842d195075f02fd46be4e9b69250c93007da0528
 DIST i18n-1.2.0.tar.gz 64271 BLAKE2B 
9d8dc9a8187fb69317af6835ac2ee98219f662f6542be5bb96d678ebc63d5a57b33988d1cd435213c9d79cb6886be491c54e8624c481d56a2de91e8ac094a082
 SHA512 
9952fba2f923ecb76c736356599c9f205ed754283d07ac371ee2016633621187124a102b84d3f9431d8b074e9042377237846c512df431a02e86bd9c50c09c57
 DIST i18n-1.3.0.tar.gz 64414 BLAKE2B 
8ef3da9b2513ec7c0c10e04e3096361fac4b874f2591ba6354be0fe3fe924867a1741eacaf967fbfa263588abbe4bf2daece1635797f3dd8bc489e19e2b5
 SHA512 
08884f4e415e71794969a87f326edc1bce5d7cba9a43413f8c24a375fd7378dd40e15a7d161021ea4af8d5c6e692595b86da9793e910f99dbe51e166d404491e
 DIST i18n-1.5.2.tar.gz 64086 BLAKE2B 
8c50fd40a5d8f103e218bc47d15b1c6a51336c1b9340f474a35c178d84e9d0198151c5643cd6416b4e007c33c02de4d011acb40b1b02d6a238563a0a669c1044
 SHA512 
438145abed34b27af26dc513d0dc30e32412ace3a057cf14a8bc8cb64734ac531bb0a8b7512372faed995fff8bce7a8dd4e44ee29560704646ab35d46d58db3c
+DIST i18n-1.5.3.tar.gz 64156 BLAKE2B 
ba8c0806d38677229c87956e771ea646205a44553d5e09ec876f5eac35446f43e61c27f7d2b69aff429891551609b23eb169ee95623f75502a9d3bc1fdbe8b50
 SHA512 
c10f2fed363d390c4fb8a2792e1d8d6f56b72fd96a36b0a6ab837acbcb10ba313b7bdc6f4887d7096d396d25d8ae306091ead84cc95c94d2da9791c2debb30ac

diff --git a/dev-ruby/i18n/i18n-1.5.3.ebuild b/dev-ruby/i18n/i18n-1.5.3.ebuild
new file mode 100644
index 000..c6aacbabf2a
--- /dev/null
+++ b/dev-ruby/i18n/i18n-1.5.3.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="test"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="Add Internationalization support to your Ruby application"
+HOMEPAGE="http://rails-i18n.org/;
+SRC_URI="https://github.com/svenfuchs/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/concurrent-ruby:1"
+
+ruby_add_bdepend "test? (
+   >=dev-ruby/activesupport-5.1
+   dev-ruby/bundler
+   >=dev-ruby/mocha-1.7.0
+   dev-ruby/test_declarative )"
+
+all_ruby_prepare() {
+   rm -f gemfiles/*.lock || die
+
+   # Remove optional unpackaged oj gem
+   sed -i -e '/oj/ s:^:#:' gemfiles/* || die
+
+   # Update old test dependencies
+   sed -i -e 's/12.2.1/12/' -e 's/1.7.0/1.7/' gemfiles/* || die
+}
+
+each_ruby_test() {
+   case ${RUBY} in
+   *ruby26)
+   versions="5.2"
+   ;;
+   *ruby23|*ruby24|*ruby25)
+   versions="5.1 5.2"
+   ;;
+   esac
+
+   for version in ${versions} ; do
+   if has_version "dev-ruby/activesupport:${version}" ; then
+   einfo "Running tests with activesupport ${version}"
+   
BUNDLE_GEMFILE="${S}/gemfiles/Gemfile.rails-${version}.x" ${RUBY} -S bundle 
exec ${RUBY} -S rake test || die
+   fi
+   done
+}



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

2019-01-24 Thread Hans de Graaff
commit: f82ac1eb6498ea2c8b7afb301392b92aa03f6317
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 25 05:47:08 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 25 05:47:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82ac1eb

dev-ruby/ruby-glib2: add ruby26

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

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

diff --git a/dev-ruby/ruby-glib2/ruby-glib2-3.3.0.ebuild 
b/dev-ruby/ruby-glib2/ruby-glib2-3.3.0.ebuild
index 52fb52ad6ed..27277633767 100644
--- a/dev-ruby/ruby-glib2/ruby-glib2-3.3.0.ebuild
+++ b/dev-ruby/ruby-glib2/ruby-glib2-3.3.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 inherit ruby-ng-gnome2
 



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

2019-01-24 Thread Hans de Graaff
commit: fac77cce1b096d06919e1cba9cff9b05f0d24e89
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 25 05:32:55 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 25 05:32:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fac77cce

dev-ruby/highline: add 2.0.1

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

 dev-ruby/highline/Manifest  |  1 +
 dev-ruby/highline/highline-2.0.1.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-ruby/highline/Manifest b/dev-ruby/highline/Manifest
index 6a6e090f222..ec904643940 100644
--- a/dev-ruby/highline/Manifest
+++ b/dev-ruby/highline/Manifest
@@ -1,2 +1,3 @@
 DIST highline-1.7.8.gem 224768 BLAKE2B 
683fa70e3ea4bf697ab5a1cd40da2528e2586f8fe12fb0ffb799938f2bfa2efe64fe1424c0ee1f90ae3df69f86a92f44eebcbb2ab34f18b3c4cdbb143e596067
 SHA512 
85f57ab732009cc961b824e252f0b65bbe7c0a8c97849d453773a331016b2ea8fa0efe393bc1a0073eae6d3cf523d97b9434cd73bdceed55bc069be0b6f4b41d
 DIST highline-2.0.0.tar.gz 233750 BLAKE2B 
ac696d63aaf15309a8235d9a0c25e4722b257cda154bd00a420675e1bccedb5f06122f3532ac200685f22753783152255194751f2e3bdc908f80b278f325328c
 SHA512 
d1a96233ffb97b2985e7afebd3755d1b28d89ac2d84a3ec8c04450680c1149f1fcc46f0221242768a2aafa8bfbde4f5a6f3951013c0b5d25a3aa88f1e571b4d8
+DIST highline-2.0.1.tar.gz 233862 BLAKE2B 
ca65792d99f31a03f3ae86c774498692197b6e7db5bef6c3c47a88edeb476c0b41abb3afd7640eab16d2946235a72e247318de14ad600e542a999c124b96b03c
 SHA512 
1d6176465f0f1dd21084b5632e47b52a734ec97c1de849c40d4e904abc1fa1ff33ad8f70aba10047debfad16d60364b3acab224a6e57f6278c27c9c25ab37fa9

diff --git a/dev-ruby/highline/highline-2.0.1.ebuild 
b/dev-ruby/highline/highline-2.0.1.ebuild
new file mode 100644
index 000..8fd18cb45c6
--- /dev/null
+++ b/dev-ruby/highline/highline-2.0.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md TODO"
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="Highline is a high-level command-line IO library for ruby"
+HOMEPAGE="https://github.com/JEG2/highline;
+SRC_URI="https://github.com/JEG2/highline/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+IUSE=""
+LICENSE="|| ( GPL-2 Ruby )"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+
+all_ruby_prepare() {
+   # fix up gemspec file not to call git
+   sed -i -e '/git ls-files/d' highline.gemspec || die
+
+   # Avoid unneeded dependencies
+   sed -i -e '/\(bundler\|code_statistics\)/ s:^:#:' \
+   -e '/PackageTask/,/end/ s:^:#:' Rakefile || die
+   sed -i -e '/simplecov/ s:^:#:' test/test_helper.rb || die
+
+   # Remove almost empty doc directory to allow rdoc recipe to work
+   rm -rf doc || die
+}



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

2019-01-24 Thread Hans de Graaff
commit: d8c0661d76c1c8ad7571e915740133e62d5c6359
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 25 06:05:32 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 25 06:05:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8c0661d

dev-ruby/ruby_parser: add ruby26

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

 dev-ruby/ruby_parser/ruby_parser-3.12.0.ebuild | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/ruby_parser/ruby_parser-3.12.0.ebuild 
b/dev-ruby/ruby_parser/ruby_parser-3.12.0.ebuild
index d350dd8378d..2d80c363b30 100644
--- a/dev-ruby/ruby_parser/ruby_parser-3.12.0.ebuild
+++ b/dev-ruby/ruby_parser/ruby_parser-3.12.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="README.rdoc History.rdoc"
@@ -21,7 +21,6 @@ IUSE=""
 ruby_add_rdepend ">=dev-ruby/sexp_processor-4.9.0:4
!=dev-ruby/hoe-2.9.1 )"
 ruby_add_bdepend "test? ( dev-ruby/racc >=dev-ruby/minitest-4.3 
>=dev-ruby/sexp_processor-4.10.1:4 )"
 
 DEPEND+=" test? ( dev-util/unifdef )"
@@ -33,3 +32,7 @@ all_ruby_prepare() {
sed -i -e '/license/d' Rakefile || die
sed -i -e '/Hoe.plugin :isolate/ s:^:#:' Rakefile || die
 }
+
+each_ruby_test() {
+   ${RUBY} -Ilib:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
+}



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

2019-01-24 Thread Hans de Graaff
commit: 3c0567dc9708e7598822d493bb5baa3210861671
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 25 05:49:52 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 25 05:49:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c0567dc

dev-ruby/ruby-elf: add ruby26

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

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

diff --git a/dev-ruby/ruby-elf/ruby-elf-1.0.8.ebuild 
b/dev-ruby/ruby-elf/ruby-elf-1.0.8.ebuild
index e9842e59a13..246f1f2373f 100644
--- a/dev-ruby/ruby-elf/ruby-elf-1.0.8.ebuild
+++ b/dev-ruby/ruby-elf/ruby-elf-1.0.8.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 GITHUB_URI="https://github.com/Flameeyes/${PN};
 



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

2019-01-24 Thread Hans de Graaff
commit: 7d161da7826386d7084b9142b52dbd4c8d8188ad
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 25 05:39:10 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 25 05:39:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d161da7

dev-ruby/http: add 4.0.3

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

 dev-ruby/http/Manifest  |  1 +
 dev-ruby/http/http-4.0.3.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-ruby/http/Manifest b/dev-ruby/http/Manifest
index f7fe682a90f..0741f2b7ca3 100644
--- a/dev-ruby/http/Manifest
+++ b/dev-ruby/http/Manifest
@@ -2,3 +2,4 @@ DIST http-0.9.8.gem 66560 BLAKE2B 
15b6cc066d2b04c3c6df604787f69b5079dacd277dc95a
 DIST http-3.3.0.gem 70656 BLAKE2B 
5c52864168663640389a0f107e1bf8a202654a8b479c92bf5126354d360adcae45a9b4596da7cff2e412fee88ed3622870c4e2bb18eca97466b4ede28baa2a08
 SHA512 
fcb2549c22974712e129306b472c1a32466c50add85eee9a558582697c7ece26cb7a1db6da6aaceedb8bfd134d1213090c158db510fe53ddbe201bba6bd22c68
 DIST http-4.0.0.gem 72704 BLAKE2B 
6a7abec739f545e96b013d4bc10b11acd2cd6e336032cab08977476a0c50b73993ba9c8d46b68c7f891ae6129cddc5566bcdc16cc958b16a2241a5fdc1d2bc8c
 SHA512 
78fee306d0d53068b8082bffc766cb12c8d1a030407648af6c4471cab9d63e2c55e75c9546b684bcaabc795c04b76b91c562e4969e597ec70aed0e16052586b1
 DIST http-4.0.1.gem 72704 BLAKE2B 
5c4366044955d93f1ad149254843c916f599cc69557c69e87a7e56a745b6e58ee1fc69e5334eeba3b5dec00dc2c7e48c8a8123cdfb3bd5a73163c3192a365515
 SHA512 
ea579721e5fd01933daea74f37abdf4703aef670457a3eb781515f51f38190a8fdf95a49310df953bafc325515d3e963680d3b4c4056ccc02fe5e5f6426c57b5
+DIST http-4.0.3.gem 73216 BLAKE2B 
191dae46e423571dfb9251909efb4b3f0d331a9cbb83ac52b6261f9303b0f63ae5f776868499d6010032e9031a1e493ff8e1c4a14e83df359a9dd65c6de9f8f9
 SHA512 
42761a8c6988d76aeab298dff77182fb431cc808fadb587c483227285fc817b0affde032d67799f01866b60f3cc111bb91359e088c66808b192a61fc44d2bb70

diff --git a/dev-ruby/http/http-4.0.3.ebuild b/dev-ruby/http/http-4.0.3.ebuild
new file mode 100644
index 000..de3cc7b35d9
--- /dev/null
+++ b/dev-ruby/http/http-4.0.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="An easy-to-use client library for making requests from Ruby"
+HOMEPAGE="https://github.com/tarcieri/http;
+
+LICENSE="MIT"
+SLOT="4"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/addressable-2.3:0
+   >=dev-ruby/http-cookie-1.0:0
+   dev-ruby/http-form_data:2
+   >=dev-ruby/http_parser_rb-0.6.0 =dev-ruby/http_parser_rb-0.6*"
+
+ruby_add_bdepend "
+   test? ( dev-ruby/certificate_authority dev-ruby/rspec-its )"
+
+all_ruby_prepare() {
+   sed -i -e '/simplecov/,/end/ s:^:#:' \
+   -e '1irequire "cgi"' spec/spec_helper.rb || die
+
+   # Avoid specs that require network access
+   sed -i -e '/.persistent/,/^  end/ s:^:#:' \
+   spec/lib/http_spec.rb || die
+   sed -i -e '/with non-ASCII URLs/,/^end/ s:^:#:' \
+   spec/lib/http/client_spec.rb || die
+
+   # Avoid spec that may fail with a running web server
+   sed -i -e '/unifies socket errors into HTTP::ConnectionError/,/^  end/ 
s:^:#:' spec/lib/http_spec.rb || die
+
+   # Fix spec for production release
+   sed -i -e '/User-Agent:/ s/.dev//' 
spec/lib/http/features/logging_spec.rb || die
+}



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

2019-01-24 Thread Hans de Graaff
commit: a6d8b4db5c8fb62b091738ff50af25ace7764aa3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 25 05:51:14 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 25 05:51:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6d8b4db

dev-ruby/ruby-dict: add ruby26

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

 dev-ruby/ruby-dict/ruby-dict-0.9.4-r4.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/ruby-dict/ruby-dict-0.9.4-r4.ebuild 
b/dev-ruby/ruby-dict/ruby-dict-0.9.4-r4.ebuild
index 5f7f28a2cd3..1b4cec26118 100644
--- a/dev-ruby/ruby-dict/ruby-dict-0.9.4-r4.ebuild
+++ b/dev-ruby/ruby-dict/ruby-dict-0.9.4-r4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 inherit ruby-ng
 
@@ -26,7 +26,7 @@ all_ruby_install() {
dobin rdict
 
dodoc README Changelog TODO doc/rfc2229.txt
-   dohtml doc/dict.html doc/rdict.html
+   dodoc doc/dict.html doc/rdict.html
 
# This would probably need a 3rb section..
# doman doc/dict.3



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

2019-01-24 Thread Hans de Graaff
commit: 4df5d77a7de9390786236314de50c8e26bbbdac8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jan 25 05:56:01 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jan 25 05:56:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4df5d77a

dev-ruby/sexp_processor: add ruby26

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

 dev-ruby/sexp_processor/sexp_processor-4.11.0.ebuild | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/sexp_processor/sexp_processor-4.11.0.ebuild 
b/dev-ruby/sexp_processor/sexp_processor-4.11.0.ebuild
index 7c5d88b665e..4d0bfd8bc01 100644
--- a/dev-ruby/sexp_processor/sexp_processor-4.11.0.ebuild
+++ b/dev-ruby/sexp_processor/sexp_processor-4.11.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_DOCDIR="doc"
@@ -21,7 +21,9 @@ IUSE=""
 
 ruby_add_bdepend "
test? (
-   >=dev-ruby/hoe-3.13
-   dev-ruby/hoe-seattlerb
>=dev-ruby/minitest-5.5
)"
+
+each_ruby_test() {
+   ${RUBY} -Ilib:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
+}



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

2019-01-24 Thread Matt Turner
commit: 7b208cb88f870b1bd659e122317721d014847765
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:45 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b208cb8

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 7cf4871590a34cb074d0d7ff35e80d23b2618147
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:34 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cf48715

media-plugins/gst-plugins-mplex-1.14.3: alpha stable, bug 674854

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

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

diff --git a/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.14.3.ebuild 
b/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.14.3.ebuild
index b5d385d662a..f70072f5e41 100644
--- a/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.14.3.ebuild
+++ b/media-plugins/gst-plugins-mplex/gst-plugins-mplex-1.14.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="MPEG/DVD/SVCD/VCD video/audio multiplexing plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-video/mjpegtools-2.1.0-r1[${MULTILIB_USEDEP}]"



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

2019-01-24 Thread Patrick McLean
commit: 9266b61f02817b3935ef3166709cfc51639c1c01
Author: Patrick McLean  sony  com>
AuthorDate: Fri Jan 25 01:26:44 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Jan 25 01:26:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9266b61f

sys-block/storcli: Revbump to 7.0709-r1, 32-bit as well (bug 656494)

Install the 32-bit version as well as storcli32 on amd64. The 32-bit
version won't crash with some controllers that crash the 64-bit version.

Bug: https://bugs.gentoo.org/656494
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 sys-block/storcli/{storcli-7.0709.ebuild => storcli-7.0709-r1.ebuild} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys-block/storcli/storcli-7.0709.ebuild 
b/sys-block/storcli/storcli-7.0709-r1.ebuild
similarity index 94%
rename from sys-block/storcli/storcli-7.0709.ebuild
rename to sys-block/storcli/storcli-7.0709-r1.ebuild
index 0cdb4e15b17..89621f287ab 100644
--- a/sys-block/storcli/storcli-7.0709.ebuild
+++ b/sys-block/storcli/storcli-7.0709-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -67,6 +67,8 @@ src_install() {
if use x86; then
doexe storcli
elif use amd64; then
+   # 32-bit version is less crashy than the 64bit (bug #656494)
+   newexe storcli storcli32
newexe storcli64 storcli
fi
 



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

2019-01-24 Thread Matt Turner
commit: 6d1febf8b03989c40f20d80cfde73e02d00c1697
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:28 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d1febf8

media-plugins/gst-plugins-jpeg-1.14.4: alpha stable, bug 674854

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

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

diff --git a/media-plugins/gst-plugins-jpeg/gst-plugins-jpeg-1.14.4.ebuild 
b/media-plugins/gst-plugins-jpeg/gst-plugins-jpeg-1.14.4.ebuild
index 25ece405d59..59f1b9a57c5 100644
--- a/media-plugins/gst-plugins-jpeg/gst-plugins-jpeg-1.14.4.ebuild
+++ b/media-plugins/gst-plugins-jpeg/gst-plugins-jpeg-1.14.4.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="JPEG image encoder/decoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=">=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}]"



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

2019-01-24 Thread Matt Turner
commit: bdc35aab7fcb28b486f1c4681d7645947939c413
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:40 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdc35aab

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 2d0082774d72d65127b7fd0e01435ff3f0c8f80d
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:46 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d008277

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 38f160675ed53e890ae112899bd8cc8ab69d32a8
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:43 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38f16067

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 72ab4724005cbad76822b84470de6814e29d94cd
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:30 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72ab4724

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 4b177c7869dd594f7fc14d2fae88c2cba3a53b35
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:43 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b177c78

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 8ce8acb301d6e4061057eef2a5267c255b50876b
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:42 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ce8acb3

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 8fd32bad2197e5849f9c2850dd36d5211df81992
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:41 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fd32bad

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 6bc27322c876d94da3809e91e46d6d0ac9a59764
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:39 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bc27322

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 683675d4fa97754075960fdbcb9d7e846bf8e9ef
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:32 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=683675d4

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 95ef0f97f39c351beca3e21887ed354900f9d1b5
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:40 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ef0f97

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

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

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

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



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

2019-01-24 Thread Matt Turner
commit: 7ae101f1ec5c36653577b0e28f2a119e5ac329ff
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jan 25 02:38:31 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jan 25 02:38:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ae101f1

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

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

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

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



  1   2   >