[gentoo-commits] repo/gentoo:master commit in: dev-ada/gnatcoll/

2018-11-26 Thread Alfredo Tupone
commit: 54faf8aa2b54d177861ac06197f7d8bc182b867d
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Tue Nov 27 07:55:44 2018 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Nov 27 07:55:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54faf8aa

dev-ada/gnatcoll: blocks dev-ada/gnatcoll-*

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

 dev-ada/gnatcoll/gnatcoll-2017.ebuild | 5 -
 dev-ada/gnatcoll/metadata.xml | 3 +++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-ada/gnatcoll/gnatcoll-2017.ebuild 
b/dev-ada/gnatcoll/gnatcoll-2017.ebuild
index 20e5c844541..f43af38da68 100644
--- a/dev-ada/gnatcoll/gnatcoll-2017.ebuild
+++ b/dev-ada/gnatcoll/gnatcoll-2017.ebuild
@@ -37,7 +37,10 @@ RDEPEND="gnat_2016? ( dev-lang/gnat-gpl:4.9.4 )
projects? (
~dev-ada/libgpr-2018[gnat_2016=,gnat_2017=,shared?,static-libs?]
dev-ada/xmlada[shared?,static-libs?]
-   )"
+   )
+   !dev-ada/gnatcoll-core
+   !dev-ada/gnatcoll-bindings
+   !dev-ada/gnatcoll-db"
 DEPEND="${RDEPEND}
dev-ada/gprbuild[gnat_2016=,gnat_2017=]"
 

diff --git a/dev-ada/gnatcoll/metadata.xml b/dev-ada/gnatcoll/metadata.xml
index df4d11fa0b3..7ba8da900cc 100644
--- a/dev-ada/gnatcoll/metadata.xml
+++ b/dev-ada/gnatcoll/metadata.xml
@@ -1,6 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   a...@gentoo.org
+   

tup...@gentoo.org
Tupone Alfredo



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

2018-11-26 Thread Andreas Sturmlechner
commit: 04c9f723291d93383f60f576a177d7cefddd8ab7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Nov 27 00:18:17 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Nov 27 07:48:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04c9f723

dev-util/cmocka: Fix USE doc

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

 dev-util/cmocka/cmocka-1.1.3.ebuild| 19 ++
 .../cmocka/files/cmocka-1.1.3-fix-doxygen.patch| 43 ++
 2 files changed, 54 insertions(+), 8 deletions(-)

diff --git a/dev-util/cmocka/cmocka-1.1.3.ebuild 
b/dev-util/cmocka/cmocka-1.1.3.ebuild
index 6ae39d5ba5d..c98c2e9957e 100644
--- a/dev-util/cmocka/cmocka-1.1.3.ebuild
+++ b/dev-util/cmocka/cmocka-1.1.3.ebuild
@@ -15,12 +15,16 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc 
~ppc64 ~s390 ~sparc ~
 IUSE="doc static-libs test"
 
 DEPEND="
-   doc? ( app-doc/doxygen[latex] )
+   doc? ( app-doc/doxygen[dot] )
 "
 RDEPEND=""
 
 DOCS=( AUTHORS ChangeLog README.md )
 
+PATCHES=(
+   "${FILESDIR}/${P}-fix-doxygen.patch" # bug 671404
+)
+
 multilib_src_configure() {
local mycmakeargs=(
-DWITH_STATIC_LIB=$(usex static-libs)
@@ -32,15 +36,14 @@ multilib_src_configure() {
cmake-utils_src_configure
 }
 
+multilib_src_compile() {
+   cmake-utils_src_compile
+   multilib_is_native_abi && cmake-utils_src_compile docs
+}
+
 multilib_src_install() {
if multilib_is_native_abi && use doc; then
-   pushd doc || die
-   doxygen Doxyfile || die
-   rm -f html/*.md5 latex/*.md5 latex/Manifest man/man3/_* || die
-   dodoc -r html/
-   dodoc -r latex/
-   doman man/man3/*.3
-   popd || die
+   local HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )
fi
 
cmake-utils_src_install

diff --git a/dev-util/cmocka/files/cmocka-1.1.3-fix-doxygen.patch 
b/dev-util/cmocka/files/cmocka-1.1.3-fix-doxygen.patch
new file mode 100644
index 000..c093021aa82
--- /dev/null
+++ b/dev-util/cmocka/files/cmocka-1.1.3-fix-doxygen.patch
@@ -0,0 +1,43 @@
+From 1abfea55df24e83c2ea321b5f2b75e1a58963bc6 Mon Sep 17 00:00:00 2001
+From: Andreas Schneider 
+Date: Wed, 24 Oct 2018 16:33:39 +0200
+Subject: cmake: Fix doxygen generation
+
+Fixes #12
+
+Signed-off-by: Andreas Schneider 
+---
+ CMakeLists.txt | 2 +-
+ doc/CMakeLists.txt | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 88408a9..7778039 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -51,9 +51,9 @@ if (MINGW)
+ endif (MINGW)
+ 
+ # check subdirectories
+-add_subdirectory(doc)
+ add_subdirectory(include)
+ add_subdirectory(src)
++add_subdirectory(doc)
+ 
+ include(AddCMockaTest)
+ if (UNIT_TESTING)
+diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
+index a7bc65e..6ac7494 100644
+--- a/doc/CMakeLists.txt
 b/doc/CMakeLists.txt
+@@ -38,7 +38,7 @@ if (DOXYGEN_FOUND)
+ 
+ doxygen_add_docs(docs
+  ${cmocka-library_SOURCE_DIR}
+- ${cmocka-headers_SOURCE_DIR}
++ ${cmocka-header_SOURCE_DIR}
+  ${CMAKE_CURRENT_SOURCE_DIR})
+ endif(DOXYGEN_FOUND)
+ 
+-- 
+cgit v1.2.1



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kio/files/, kde-frameworks/kio/

2018-11-26 Thread Andreas Sturmlechner
commit: 8314b692cec95b14220ce96cf8f02f0e7b58c736
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Nov 26 22:13:06 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Nov 27 07:48:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8314b692

kde-frameworks/kio: Restore sendfile support

Backport from 5.53.0, fixes KF5-porting regression.

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

 kde-frameworks/kio/files/kio-5.52.0-sendfile.patch | 109 +
 kde-frameworks/kio/kio-5.52.0-r1.ebuild|  82 
 2 files changed, 191 insertions(+)

diff --git a/kde-frameworks/kio/files/kio-5.52.0-sendfile.patch 
b/kde-frameworks/kio/files/kio-5.52.0-sendfile.patch
new file mode 100644
index 000..d02b8f50b19
--- /dev/null
+++ b/kde-frameworks/kio/files/kio-5.52.0-sendfile.patch
@@ -0,0 +1,109 @@
+From 31980ecd1cacac9bd75ce35e3048946e1c27e1a0 Mon Sep 17 00:00:00 2001
+From: David Edmundson 
+Date: Wed, 21 Nov 2018 15:30:48 +
+Subject: Restore sendfile support
+
+Summary:
+Somehow in the kdelibs -> framework port the cmake checks for
+HAVE_SENDFILE got lost.
+
+That re-enables a massive optimisation in the file kioslave that has all the 
code existing and used in kdelibs4 that we're currently missing.
+
+Test Plan:
+Put a compilation fail inside the #ifdef, before it wasn't triggered, now it 
is.
+
+Ran unit tests
+Moved a file in dolphin
+
+Reviewers: dfaure
+
+Reviewed By: dfaure
+
+Subscribers: ngraham, apol, kde-frameworks-devel
+
+Tags: #frameworks
+
+Differential Revision: https://phabricator.kde.org/D17048
+---
+ src/ioslaves/file/ConfigureChecks.cmake| 1 +
+ src/ioslaves/file/config-kioslave-file.h.cmake | 2 ++
+ src/ioslaves/file/file_unix.cpp| 2 +-
+ 3 files changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/src/ioslaves/file/ConfigureChecks.cmake 
b/src/ioslaves/file/ConfigureChecks.cmake
+index 5a83d1b..39fcd6f 100644
+--- a/src/ioslaves/file/ConfigureChecks.cmake
 b/src/ioslaves/file/ConfigureChecks.cmake
+@@ -7,6 +7,7 @@ include(CheckStructHasMember)
+ check_include_files(sys/time.hHAVE_SYS_TIME_H)
+ check_include_files(string.h  HAVE_STRING_H)
+ check_include_files(limits.h  HAVE_LIMITS_H)
++check_function_exists(sendfileHAVE_SENDFILE)
+ 
+ check_function_exists(posix_fadviseHAVE_FADVISE)  # 
kioslave
+ 
+diff --git a/src/ioslaves/file/config-kioslave-file.h.cmake 
b/src/ioslaves/file/config-kioslave-file.h.cmake
+index e47fdb2..3df7ebd 100644
+--- a/src/ioslaves/file/config-kioslave-file.h.cmake
 b/src/ioslaves/file/config-kioslave-file.h.cmake
+@@ -13,3 +13,5 @@
+ /* Defined if system has extended file attributes support. */
+ #cmakedefine01 HAVE_SYS_XATTR_H
+ 
++/* Defined if system has the sendfile function. */
++#cmakedefine01 HAVE_SENDFILE
+diff --git a/src/ioslaves/file/file_unix.cpp b/src/ioslaves/file/file_unix.cpp
+index 817cce8..34422e5 100644
+--- a/src/ioslaves/file/file_unix.cpp
 b/src/ioslaves/file/file_unix.cpp
+@@ -49,7 +49,7 @@
+ #include "fdreceiver.h"
+ 
+ //sendfile has different semantics in different platforms
+-#if defined HAVE_SENDFILE && defined Q_OS_LINUX
++#if HAVE_SENDFILE && defined Q_OS_LINUX
+ #define USE_SENDFILE 1
+ #endif
+ 
+-- 
+cgit v0.11.2
+From 8f926e4596221b11e62c7ac80bb5864d3d8cf4f6 Mon Sep 17 00:00:00 2001
+From: David Edmundson 
+Date: Wed, 21 Nov 2018 15:30:53 +
+Subject: Use correct variable type for returned value from read/sendfile
+
+Summary:
+n stores the read/transferred bytes. This returns a ssize_t.
+We were casting to an int, which theoretically is a loss of data.
+
+In practice it isn't an issue as we only read a max of MAX_IPC_SIZE at a
+time, which would fit in an int.
+
+Reviewers: apol
+
+Reviewed By: apol
+
+Subscribers: kde-frameworks-devel
+
+Tags: #frameworks
+
+Differential Revision: https://phabricator.kde.org/D17051
+---
+ src/ioslaves/file/file_unix.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ioslaves/file/file_unix.cpp b/src/ioslaves/file/file_unix.cpp
+index 34422e5..7ed0ae8 100644
+--- a/src/ioslaves/file/file_unix.cpp
 b/src/ioslaves/file/file_unix.cpp
+@@ -251,7 +251,7 @@ void FileProtocol::copy(const QUrl , const QUrl 
,
+ 
+ KIO::filesize_t processed_size = 0;
+ char buffer[ MAX_IPC_SIZE ];
+-int n;
++ssize_t n = 0;
+ #ifdef USE_SENDFILE
+ bool use_sendfile = buff_src.st_size < 0x7FFF;
+ #endif
+-- 
+cgit v0.11.2

diff --git a/kde-frameworks/kio/kio-5.52.0-r1.ebuild 
b/kde-frameworks/kio/kio-5.52.0-r1.ebuild
new file mode 100644
index 000..7a9357c5fed
--- /dev/null
+++ b/kde-frameworks/kio/kio-5.52.0-r1.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_TEST="forceoptional"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+

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

2018-11-26 Thread Zac Medico
commit: ce9795af32d83d60e59253ff6ffb01d888b081ad
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Nov 27 07:17:32 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Nov 27 07:19:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce9795af

dev-python/APScheduler: remove empty line

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

 dev-python/APScheduler/APScheduler-3.5.3.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-python/APScheduler/APScheduler-3.5.3.ebuild 
b/dev-python/APScheduler/APScheduler-3.5.3.ebuild
index bd557d9b8d5..b43883c56e5 100644
--- a/dev-python/APScheduler/APScheduler-3.5.3.ebuild
+++ b/dev-python/APScheduler/APScheduler-3.5.3.ebuild
@@ -55,7 +55,6 @@ test_failures=(
test_zookeeper_client_ref
 )
 
-
 python_prepare_all() {
sed -i -e /setuptools_scm/d setup.py || die
while read -r -d ''; do
@@ -66,6 +65,5 @@ python_prepare_all() {
 }
 
 python_test() {
-   # 3 known failures due to caplog.set_level not existing
py.test || die "Testing failed with ${EPYTHON}"
 }



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

2018-11-26 Thread Hans de Graaff
commit: 6df5baf7b12c43c14e6c14669ab9d0ed6881035e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Nov 27 06:40:46 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Nov 27 06:40:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df5baf7

dev-ruby/curb: add 0.9.7

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

 dev-ruby/curb/Manifest  |  1 +
 dev-ruby/curb/curb-0.9.7.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/curb/Manifest b/dev-ruby/curb/Manifest
index 29c2a620cd1..d20c6d099d9 100644
--- a/dev-ruby/curb/Manifest
+++ b/dev-ruby/curb/Manifest
@@ -1,2 +1,3 @@
 DIST curb-0.9.4.gem 82432 BLAKE2B 
2bf2bf0d887369c484d246771afc9cb34c6eb72a3809f13c9047f82030d79b1be47141db03659c1e4f42792c94094e40f05d4b1b0d984aed73a47c24ef96379a
 SHA512 
7b81ba587ac9beb203e040234d9f5032d87352a3e045d3705f474d2eaf1f620245240a59894c7147f54d55f0293f60488e8f883367f96945d49ffcdcef42bfc1
 DIST curb-0.9.6.gem 83456 BLAKE2B 
79ef506ef3c570cae2527b3547d3b315ec3b1ba8cb8295f5c886d653ca5f3b8454a3326b9d704ce20aea6e2ff0652bb682e9931f9ba0573f449322e087ea53fe
 SHA512 
b592e04f963a32a81dec0b67348921da7b9a84d6943398984126eae1dc22653efbb049ad04201a7f22cbf19a03d6c587a525491d25585d3f12e29d4a5cf469a8
+DIST curb-0.9.7.gem 83968 BLAKE2B 
591c4fde6fe809c813bb7586875e954dcc3b6190eb6955b5769a2dd1538d156074d0e025af6b1d42cbd820fb012b46eec4e9ca96fe61acc3697cf1f6c5018b43
 SHA512 
6068eaaad6b1dc2dbbf7d0588235ce2a681d786bf8ed6d072e501b7cbff600d8fbc9d675fac3949a565c8451641982cbd9ab29a50cf3707e8c4cdc35b539f42b

diff --git a/dev-ruby/curb/curb-0.9.7.ebuild b/dev-ruby/curb/curb-0.9.7.ebuild
new file mode 100644
index 000..4f617df41cc
--- /dev/null
+++ b/dev-ruby/curb/curb-0.9.7.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rake"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby-language bindings for libcurl"
+HOMEPAGE="https://github.com/taf2/curb;
+
+LICENSE="Ruby"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND+=" net-misc/curl[ssl]"
+RDEPEND+=" net-misc/curl[ssl]"
+
+all_ruby_prepare() {
+   # fix tests when localhost is also ::1
+   sed -i -e 's|localhost:|127.0.0.1:|g' tests/*.rb || die
+
+   # avoid tests making outside network connections
+   rm tests/bug_postfields_crash.rb || die
+   sed -e '/test_easy_http_verbs_must_respond_to_str/,/^  end/ s:^:#:' \
+   -i tests/tc_curl_easy.rb || die
+
+   # avoid failing tests where failure condition seems weird, no
+   # upstream travis so not clear if the test is indeed broken.
+   sed -i -e '/test_multi_easy_http/,/^  end/ s:^:#:' 
tests/tc_curl_multi.rb || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext extconf.rb || die "extconf.rb failed"
+}
+
+each_ruby_compile() {
+   emake -Cext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}" V=1
+   cp -l ext/curb_core$(get_modname) lib || die
+}



[gentoo-commits] repo/gentoo:master commit in: mail-mta/postfix/

2018-11-26 Thread Eray Aslan
commit: e16da1fc516b244a4855d5be025145c5fa8b8782
Author: Eray Aslan  gentoo  org>
AuthorDate: Tue Nov 27 05:54:50 2018 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Tue Nov 27 05:54:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e16da1fc

mail-mta/postfix: bump

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Eray Aslan  gentoo.org>

 mail-mta/postfix/Manifest   |  3 ++-
 ...{postfix-3.4_pre20181118.ebuild => postfix-3.3.2.ebuild} | 13 ++---
 4_pre20181118.ebuild => postfix-3.4_pre20181125.ebuild} |  9 -
 3 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/mail-mta/postfix/Manifest b/mail-mta/postfix/Manifest
index 46892767fd8..2fa2086992a 100644
--- a/mail-mta/postfix/Manifest
+++ b/mail-mta/postfix/Manifest
@@ -3,5 +3,6 @@ DIST postfix-3.1.6.tar.gz 4341308 BLAKE2B 
6a5ec763cf96770240f63b35b4532c555cc6e5
 DIST postfix-3.2.4.tar.gz 4390376 BLAKE2B 
132a6b467f9156d716a92cc7beae0f9a7c47e6a2045e83726a5e7305e6f9bf666ebcfb93a9ab1a96ec988431661059d62e926287bd13089eeb4bab3e8f4b9fc7
 SHA512 
6dc583d3b1c98f5c8d6486351bee9f92a98b5379cd0d76d26a382379c112317e7a2a58c3a200477a6d0f831c73395257d1a63170df17ea8a65a4048a7df391f8
 DIST postfix-3.2.6.tar.gz 4395159 BLAKE2B 
2eef28f9189830725c02b98512ca7859770f090cbef3fe453b57fade967fd20f94cd3cd8e8955252dc230e674ed7827fc68ad910cd4fc63029dc2c92ea75f0af
 SHA512 
081751fe9af7612e7ee01a80ceffbc09db60764e12099d2a5e053205d0e7c70c6ef4f96526e1a98780965c43354e0ccd6ef61b4dbe93b249179890b81836c705
 DIST postfix-3.3.1.tar.gz 4420912 BLAKE2B 
065fd04cdfa343a6c50a629e8da47fad71465df790ca88adcad4efc7ab273330c39998c6bf503587b8bcba3d87bb98b1be6413e49449e2241258a99217473c11
 SHA512 
2307f50f8b7dab1db46ebe4ae30bc5682a25b9c49ae5ae65aa95b4620bb5450dd5929977c0f34b9e73a92ca6af36fd8e24167732420a1a2d89167c7a3b197276
-DIST postfix-3.4-20181118.tar.gz 4499405 BLAKE2B 
55ffa78c8f695c1c26b4d221297bd423361e8b9da685913e97760ff3efabb9b0ec0ab07a4fea5f2de6c69f764a863f2bdc6dfd3520b3bebe66ad4f717c161628
 SHA512 
e539c3a0c8e664471ee999e268361bc16c3f14d62e903f77cf325480ef8f6cdf2089db777de5cffbc72f23212c888f8698d1b3272a9ad3973ce8693668cbcee5
+DIST postfix-3.3.2.tar.gz 4429452 BLAKE2B 
8cbb4ea6626da1fdb78a3f4e5c546b6a335fe7e5727c2f7eb3f14e2b28791165857112e6af4698eae7e38339232fed722e238e289fef40bd1091b3048a543f7f
 SHA512 
df67eb978751900d357597def16f744dae990f5cc4e48af8dca57f84b0140e05416712727c1760b8f557ed3564cd593620756561b0a6f31db4b54d928e15293f
+DIST postfix-3.4-20181125.tar.gz 4508158 BLAKE2B 
b25bec69f70fdafb5cb414d1ba4f869c825c4cab424d6dd79b65a4fd9c25ba6a7841a88343753d63fe34b2788bb1cf519d79a79e3f278c05d2537df91f6524af
 SHA512 
e298e920dec3c52004de9b0621437d3377a4049d5d5c09985fc0abef209c04c962778cd1124e5c8cf7c1b20f1decac17a01f34e19714ffbd7ec213680bebc859
 DIST postfix-vda-v13-2.10.0.patch 55701 BLAKE2B 
d8df041bb4ae7457cd066e71b6ae9470840d42edc9990a550ae51356cd62bfb08516250249030da26d1ef475619f0ebd609570d84ce57f8cdc347a2824b29536
 SHA512 
0b4b53a8cd28abf56eee3b2ed63ca1814251b60816e6ca1143249d25fd6ef7f905bec3134125ac6e851af685db8aae878012113693261529ae2ddbcf1bd93e62

diff --git a/mail-mta/postfix/postfix-3.4_pre20181118.ebuild 
b/mail-mta/postfix/postfix-3.3.2.ebuild
similarity index 96%
copy from mail-mta/postfix/postfix-3.4_pre20181118.ebuild
copy to mail-mta/postfix/postfix-3.3.2.ebuild
index 653be1a5651..22d2fa49103 100644
--- a/mail-mta/postfix/postfix-3.4_pre20181118.ebuild
+++ b/mail-mta/postfix/postfix-3.3.2.ebuild
@@ -4,9 +4,9 @@
 EAPI=6
 inherit flag-o-matic pam systemd toolchain-funcs user
 
-MY_PV="${PV/_pre/-}"
+MY_PV="${PV/_rc/-RC}"
 MY_SRC="${PN}-${MY_PV}"
-MY_URI="ftp://ftp.porcupine.org/mirrors/postfix-release/experimental;
+MY_URI="ftp://ftp.porcupine.org/mirrors/postfix-release/official;
 RC_VER="2.7"
 
 DESCRIPTION="A fast and secure drop-in replacement for sendmail"
@@ -212,7 +212,6 @@ src_install () {
# Fix spool removal on upgrade
rm -Rf "${D}"/var
keepdir /var/spool/postfix
-   keepdir /etc/postfix/postfix-files.d
 
# Install rmail for UUCP, closes bug #19127
dobin auxiliary/rmail/rmail
@@ -232,7 +231,15 @@ src_install () {
dosbin bin/smtp-{source,sink} bin/qmqp-{source,sink}
doman man/man1/smtp-{source,sink}.1 man/man1/qmqp-{source,sink}.1
 
+   # Set proper permissions on required files/directories
+   keepdir /var/lib/postfix
+   fowners -R postfix:postfix /var/lib/postfix
+   fperms 0750 /var/lib/postfix
+   fowners root:postdrop /usr/sbin/post{drop,queue}
+   fperms 02755 /usr/sbin/post{drop,queue}
+
keepdir /etc/postfix
+   keepdir /etc/postfix/postfix-files.d
if use mbox; then
mypostconf="mail_spool_directory=/var/spool/mail"
else

diff --git a/mail-mta/postfix/postfix-3.4_pre20181118.ebuild 
b/mail-mta/postfix/postfix-3.4_pre20181125.ebuild
similarity index 97%
rename from mail-mta/postfix/postfix-3.4_pre20181118.ebuild
rename to 

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

2018-11-26 Thread Sergei Trofimovich
commit: f16605331f85ec6129e24f232aa76c020d88dea6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Nov 26 22:19:34 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Nov 26 22:19:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1660533

dev-util/radare2: bump up to 3.1.0

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/radare2/Manifest |  1 +
 dev-util/radare2/radare2-3.1.0.ebuild | 56 +++
 2 files changed, 57 insertions(+)

diff --git a/dev-util/radare2/Manifest b/dev-util/radare2/Manifest
index a4e278b0284..c034cfd8a3e 100644
--- a/dev-util/radare2/Manifest
+++ b/dev-util/radare2/Manifest
@@ -1,3 +1,4 @@
 DIST radare2-2.8.0.tar.gz 6513419 BLAKE2B 
51ee9fe82c09693e729b49e97b79a54e2b9f7de95ecf93c5e22107f68260ddc9fdee9291f200dba2770315487a85d1541abbb76281e6934d25c677a95e6882e3
 SHA512 
968c61eb5102125b232f9a74362fb90b0409da80b4cd4f109d11e49d02c80a5beee9e73065ef3b4a22fb8cdf43f86338fd21b648ddfa34001ed6cace47335803
 DIST radare2-3.0.0.tar.gz 6638430 BLAKE2B 
d95404e0f2d86705703119d53de2e1b60f111bcd8d3b05b5d040692e9d9cc4f51fe682892514b47b55d4ff88314b577253a5f2c6ff8cacebd30fd0663c21d1ff
 SHA512 
5ca698123ccad80c54c483f7e2cc678dabfc9c1c172670ff9e1d11512174c9ecc15e81dfdb5de846b42c951cafe23d29ceca6f3824504a2f3dac722c659bb2d4
 DIST radare2-3.0.1.tar.gz 6638512 BLAKE2B 
1051e2d948bf312a5d54d03fa20a2fa6954f0ef735416e1c6e95d2042dcc6e1ec46f750d200c84dcb01395d0925ed42a4a1aa3f96b9eafad39d19ee214c91220
 SHA512 
755cbbf968179d987b1bd11469ef356e9e5b9968983f45a3276e0001c877d13b3b12b71a29dd954e8111c5196284c0e49f26bd79f5b5e037dd4dd27b1f73e380
+DIST radare2-3.1.0.tar.gz 6652526 BLAKE2B 
8da52e93263b47261cadc28e0de637b177943ce978ff342e305c7c924c062458d4eee18d05a21c9ca5153b7ede13332c87e9cd2f22c6880d47fd8e05db21036e
 SHA512 
ee31de49ff83ca1ed093eaf113201cb3709adcb3315671d88413aa4d5c80c37cf9e981c33b4f472b9aa5f67309cdaf9577c2085a8c58e4faf86b37d1ee19866d

diff --git a/dev-util/radare2/radare2-3.1.0.ebuild 
b/dev-util/radare2/radare2-3.1.0.ebuild
new file mode 100644
index 000..ccba9bfa0ed
--- /dev/null
+++ b/dev-util/radare2/radare2-3.1.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1 eutils
+
+DESCRIPTION="unix-like reverse engineering framework and commandline tools"
+HOMEPAGE="http://www.radare.org;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/radare/radare2;
+else
+   SRC_URI="https://github.com/radare/radare2/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="ssl libressl"
+
+RDEPEND="
+   dev-libs/capstone:0=
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+   econf \
+   --without-libuv \
+   --with-syscapstone \
+   $(use_with ssl openssl)
+}
+
+src_install() {
+   default
+
+   insinto /usr/share/zsh/site-functions
+   doins doc/zsh/_*
+
+   newbashcomp doc/bash_autocompletion.sh "${PN}"
+   bashcomp_alias "${PN}" rafind2 r2 rabin2 rasm2 radiff2
+
+   # a workaround for unstable $(INSTALL) call, bug #574866
+   local d
+   for d in doc/*; do
+   if [[ -d $d ]]; then
+   rm -rfv "$d" || die "failed to delete '$d'"
+   fi
+   done
+}



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

2018-11-26 Thread Sergei Trofimovich
commit: 1c373b8a540ec475eee4571ffdf9083dd578f4d1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Nov 26 22:20:02 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Nov 26 22:20:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c373b8a

dev-util/radare2: drop old

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-util/radare2/Manifest |  2 --
 dev-util/radare2/radare2-2.8.0.ebuild | 56 ---
 dev-util/radare2/radare2-3.0.0.ebuild | 56 ---
 3 files changed, 114 deletions(-)

diff --git a/dev-util/radare2/Manifest b/dev-util/radare2/Manifest
index c034cfd8a3e..ea8c1e1a964 100644
--- a/dev-util/radare2/Manifest
+++ b/dev-util/radare2/Manifest
@@ -1,4 +1,2 @@
-DIST radare2-2.8.0.tar.gz 6513419 BLAKE2B 
51ee9fe82c09693e729b49e97b79a54e2b9f7de95ecf93c5e22107f68260ddc9fdee9291f200dba2770315487a85d1541abbb76281e6934d25c677a95e6882e3
 SHA512 
968c61eb5102125b232f9a74362fb90b0409da80b4cd4f109d11e49d02c80a5beee9e73065ef3b4a22fb8cdf43f86338fd21b648ddfa34001ed6cace47335803
-DIST radare2-3.0.0.tar.gz 6638430 BLAKE2B 
d95404e0f2d86705703119d53de2e1b60f111bcd8d3b05b5d040692e9d9cc4f51fe682892514b47b55d4ff88314b577253a5f2c6ff8cacebd30fd0663c21d1ff
 SHA512 
5ca698123ccad80c54c483f7e2cc678dabfc9c1c172670ff9e1d11512174c9ecc15e81dfdb5de846b42c951cafe23d29ceca6f3824504a2f3dac722c659bb2d4
 DIST radare2-3.0.1.tar.gz 6638512 BLAKE2B 
1051e2d948bf312a5d54d03fa20a2fa6954f0ef735416e1c6e95d2042dcc6e1ec46f750d200c84dcb01395d0925ed42a4a1aa3f96b9eafad39d19ee214c91220
 SHA512 
755cbbf968179d987b1bd11469ef356e9e5b9968983f45a3276e0001c877d13b3b12b71a29dd954e8111c5196284c0e49f26bd79f5b5e037dd4dd27b1f73e380
 DIST radare2-3.1.0.tar.gz 6652526 BLAKE2B 
8da52e93263b47261cadc28e0de637b177943ce978ff342e305c7c924c062458d4eee18d05a21c9ca5153b7ede13332c87e9cd2f22c6880d47fd8e05db21036e
 SHA512 
ee31de49ff83ca1ed093eaf113201cb3709adcb3315671d88413aa4d5c80c37cf9e981c33b4f472b9aa5f67309cdaf9577c2085a8c58e4faf86b37d1ee19866d

diff --git a/dev-util/radare2/radare2-2.8.0.ebuild 
b/dev-util/radare2/radare2-2.8.0.ebuild
deleted file mode 100644
index a3d09b6f37a..000
--- a/dev-util/radare2/radare2-2.8.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit bash-completion-r1 eutils
-
-DESCRIPTION="unix-like reverse engineering framework and commandline tools"
-HOMEPAGE="http://www.radare.org;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/radare/radare2;
-else
-   SRC_URI="https://github.com/radare/radare2/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="ssl libressl"
-
-RDEPEND="
-   dev-libs/capstone:0=
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_configure() {
-   econf \
-   --with-syscapstone \
-   $(use_with ssl openssl)
-}
-
-src_install() {
-   default
-
-   insinto /usr/share/zsh/site-functions
-   doins doc/zsh/_*
-
-   newbashcomp doc/bash_autocompletion.sh "${PN}"
-   bashcomp_alias "${PN}" rafind2 r2 rabin2 rasm2 radiff2
-
-   # a workaround for unstable $(INSTALL) call, bug #574866
-   local d
-   for d in doc/*; do
-   if [[ -d $d ]]; then
-   rm -rfv "$d" || die "failed to delete '$d'"
-   fi
-   done
-}

diff --git a/dev-util/radare2/radare2-3.0.0.ebuild 
b/dev-util/radare2/radare2-3.0.0.ebuild
deleted file mode 100644
index ccba9bfa0ed..000
--- a/dev-util/radare2/radare2-3.0.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit bash-completion-r1 eutils
-
-DESCRIPTION="unix-like reverse engineering framework and commandline tools"
-HOMEPAGE="http://www.radare.org;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/radare/radare2;
-else
-   SRC_URI="https://github.com/radare/radare2/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="ssl libressl"
-
-RDEPEND="
-   dev-libs/capstone:0=
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_configure() {
-   econf \
-   --without-libuv \
-   --with-syscapstone \
-   $(use_with ssl openssl)
-}
-
-src_install() {
-   default
-
-   insinto /usr/share/zsh/site-functions
-   doins doc/zsh/_*
-
-

[gentoo-commits] repo/gentoo:master commit in: dev-ada/libadalang/

2018-11-26 Thread Alfredo Tupone
commit: fbef382816d99cea392dfc8aa800b218a587a689
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Mon Nov 26 20:56:52 2018 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Nov 26 20:56:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbef3828

dev-ada/libadalang: Fix test

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

 dev-ada/libadalang/libadalang-2018.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-ada/libadalang/libadalang-2018.ebuild 
b/dev-ada/libadalang/libadalang-2018.ebuild
index 9099db13c30..6ac7ffb8994 100644
--- a/dev-ada/libadalang/libadalang-2018.ebuild
+++ b/dev-ada/libadalang/libadalang-2018.ebuild
@@ -28,7 +28,10 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 S="${WORKDIR}"/${MYP}
 
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+PATCHES=(
+   "${FILESDIR}"/${P}-gentoo.patch
+   "${FILESDIR}"/${PN}-2017-gentoo.patch
+)
 
 src_configure() {
ada/manage.py -v debug generate || die
@@ -52,4 +55,5 @@ src_install () {
$(use_enable static-libs static) \
install "${D}"usr || die
python_domodule build/python/libadalang.py
+   rm -r "${D}"usr/python || die
 }



[gentoo-commits] repo/gentoo:master commit in: dev-ada/gprbuild/, dev-ada/gprbuild/files/

2018-11-26 Thread Alfredo Tupone
commit: b851df513cc39a2268329423365e48bddcb758e0
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Mon Nov 26 20:55:48 2018 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Nov 26 20:55:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b851df51

dev-ada/gprbuild: Fix build with -Wl,-r

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

 dev-ada/gprbuild/files/gprbuild-2017-config.patch | 4 ++--
 dev-ada/gprbuild/gprbuild-2017-r1.ebuild  | 6 ++
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/dev-ada/gprbuild/files/gprbuild-2017-config.patch 
b/dev-ada/gprbuild/files/gprbuild-2017-config.patch
index cb37dd58dd2..5dcd58ffb21 100644
--- a/dev-ada/gprbuild/files/gprbuild-2017-config.patch
+++ b/dev-ada/gprbuild/files/gprbuild-2017-config.patch
@@ -107,7 +107,7 @@
   null;
when others =>
 - for Library_Partial_Linker use ("${PATH(ada)}${PREFIX(ada)}gcc", 
"-nostdlib", "-Wl,-r", "-o");
-+ for Library_Partial_Linker use 
("${PATH(ada)}${PREFIX(ada)}gcc-@VER@", "-nostdlib", "-Wl,-r", "-o");
++ for Library_Partial_Linker use 
("${PATH(ada)}${PREFIX(ada)}gcc-@VER@", "-nostdlib", "-Wl,-r", "-no-pie", "-o");
 end case;
  

@@ -116,7 +116,7 @@
  
  
 -   for Library_Partial_Linker use ("${PATH(ada)}${PREFIX(c)}gcc", 
"-nostdlib", "-Wl,-r", "-o");
-+   for Library_Partial_Linker use ("${PATH(ada)}${PREFIX(c)}gcc-@VER@", 
"-nostdlib", "-Wl,-r", "-o");
++   for Library_Partial_Linker use ("${PATH(ada)}${PREFIX(c)}gcc-@VER@", 
"-nostdlib", "-Wl,-r", "-no-pie", "-o");
  

  

diff --git a/dev-ada/gprbuild/gprbuild-2017-r1.ebuild 
b/dev-ada/gprbuild/gprbuild-2017-r1.ebuild
index df5101ac4bf..d279f478a5e 100644
--- a/dev-ada/gprbuild/gprbuild-2017-r1.ebuild
+++ b/dev-ada/gprbuild/gprbuild-2017-r1.ebuild
@@ -50,6 +50,12 @@ src_prepare() {
-e "s:@GNATBIND@:gnatbind-${GCC_PV}:g" \
src/gprlib.adb \
|| die
+   if use gnat_2016; then
+   sed -i \
+   -e 's:"-no-pie", ::g' \
+   share/gprconfig/linker.xml \
+   || die
+   fi
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: dev-ada/libadalang/

2018-11-26 Thread Alfredo Tupone
commit: e4c9ad3725dd1843f4d815c07d4f76886841d6f1
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Sat Nov 24 21:16:17 2018 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Nov 26 20:54:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4c9ad37

dev-ada/libadalang: Stable

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

 dev-ada/libadalang/libadalang-2017-r1.ebuild |  2 +-
 dev-ada/libadalang/libadalang-2017.ebuild| 49 
 2 files changed, 1 insertion(+), 50 deletions(-)

diff --git a/dev-ada/libadalang/libadalang-2017-r1.ebuild 
b/dev-ada/libadalang/libadalang-2017-r1.ebuild
index b4185f05c64..a2c06d0952a 100644
--- a/dev-ada/libadalang/libadalang-2017-r1.ebuild
+++ b/dev-ada/libadalang/libadalang-2017-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/591c45e2c7a447af2deed042
 
 LICENSE="GPL-3 gcc-runtime-library-exception-3.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="gnat_2016 +gnat_2017"
 
 RDEPEND="dev-python/pyyaml

diff --git a/dev-ada/libadalang/libadalang-2017.ebuild 
b/dev-ada/libadalang/libadalang-2017.ebuild
deleted file mode 100644
index 3856ef26cce..000
--- a/dev-ada/libadalang/libadalang-2017.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-single-r1
-
-DESCRIPTION="high performance semantic engine for the Ada programming language"
-HOMEPAGE="https://libre.adacore.com/;
-SRC_URI="http://mirrors.cdn.adacore.com/art/591c45e2c7a447af2deed042
-   -> ${P}-src.tar.gz"
-
-LICENSE="GPL-3 gcc-runtime-library-exception-3.1"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gnat_2016 +gnat_2017"
-
-RDEPEND="dev-python/pyyaml
-   dev-ada/gnatcoll[projects,shared,gnat_2016=,gnat_2017=]
-   ${PYTHON_DEPS}"
-DEPEND="${RDEPEND}
-   dev-ada/langkit"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-S="${WORKDIR}"/${PN}-gps-src
-
-src_prepare() {
-   default
-   rm -r ada/testsuite/tests/acats_parse || die
-}
-
-src_configure() {
-   ada/manage.py generate || die
-}
-
-src_compile() {
-   ada/manage.py --verbosity=debug build || die
-}
-
-src_test () {
-   ada/manage.py test | grep FAILED && die
-}
-
-src_install () {
-   ada/manage.py install "${D}"usr
-   python_domodule build/python/libadalang.py
-}



[gentoo-commits] data/api:master commit in: files/mirrors/

2018-11-26 Thread Alec Warner
commit: 52601cb2362c6a037208d14cb084c7affb5a9c62
Author: Alec Warner  gentoo  org>
AuthorDate: Mon Nov 26 20:23:34 2018 +
Commit: Alec Warner  gentoo  org>
CommitDate: Mon Nov 26 20:24:37 2018 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=52601cb2

Remove dead mirrors.

Signed-off-by: Alec Warner  gentoo.org>

 files/mirrors/rsync.xml | 16 
 1 file changed, 16 deletions(-)

diff --git a/files/mirrors/rsync.xml b/files/mirrors/rsync.xml
index a04a366..a644689 100644
--- a/files/mirrors/rsync.xml
+++ b/files/mirrors/rsync.xml
@@ -37,10 +37,6 @@ vim: ft=xml et ts=2 sts=2 sw=2:
   Rochester Institute of Technology - rsync5.us.gentoo.org
   rsync://rsync5.us.gentoo.org
 
-
-  University of Northern Iowa - rsync6.us.gentoo.org
-  rsync://rsync6.us.gentoo.org
-
 
   Steadfast Networks - rsync11.us.gentoo.org
   rsync://rsync11.us.gentoo.org
@@ -63,10 +59,6 @@ vim: ft=xml et ts=2 sts=2 sw=2:
   Any available mirror - rsync.br.gentoo.org
   rsync://rsync.br.gentoo.org
 
-
-  Laboratory of System Administration - rsync1.br.gentoo.org
-  rsync://rsync1.br.gentoo.org
-
   
   
 
@@ -91,10 +83,6 @@ vim: ft=xml et ts=2 sts=2 sw=2:
   UPC Česká republika, a.s - rsync1.cz.gentoo.org.
   rsync://rsync1.cz.gentoo.org
 
-
-  Advokatni Kancelar Kindl  Partneri - 
rsync2.cz.gentoo.org
-  rsync://rsync2.cz.gentoo.org
-
   
   
 
@@ -299,10 +287,6 @@ vim: ft=xml et ts=2 sts=2 sw=2:
 
   
   
-
-  Any available mirror - rsync.kz.gentoo.org
-  rsync://rsync.kz.gentoo.org
-
 
   Neo Lab's - rsync1.kz.gentoo.org
   rsync://rsync1.kz.gentoo.org



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kubectl/

2018-11-26 Thread Manuel Rüger
commit: 3bd819675f0d34be57f4526da9cf17468bdd974e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Nov 26 20:21:25 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Nov 26 20:21:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bd81967

sys-cluster/kubectl: Stabilize 1.9.11 on amd64

Signed-off-by: Manuel Rüger  gentoo.org>
Package-Manager: Portage-2.3.52, Repoman-2.3.11

 sys-cluster/kubectl/kubectl-1.9.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubectl/kubectl-1.9.11.ebuild 
b/sys-cluster/kubectl/kubectl-1.9.11.ebuild
index f12e63e5995..2ed18931e63 100644
--- a/sys-cluster/kubectl/kubectl-1.9.11.ebuild
+++ b/sys-cluster/kubectl/kubectl-1.9.11.ebuild
@@ -6,7 +6,7 @@ inherit golang-build golang-vcs-snapshot bash-completion-r1
 
 EGO_PN="k8s.io/kubernetes"
 ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 DESCRIPTION="CLI to run commands against Kubernetes clusters"
 HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kubectl/

2018-11-26 Thread Manuel Rüger
commit: 9e6ec0ae11578a243078efe4901149dd64739938
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Nov 26 20:20:07 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Nov 26 20:20:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e6ec0ae

sys-cluster/kubectl: Version bump to 1.11.5

Signed-off-by: Manuel Rüger  gentoo.org>
Package-Manager: Portage-2.3.52, Repoman-2.3.11

 sys-cluster/kubectl/Manifest  |  1 +
 sys-cluster/kubectl/kubectl-1.11.5.ebuild | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/sys-cluster/kubectl/Manifest b/sys-cluster/kubectl/Manifest
index bc0dda4bf8d..a81744300f5 100644
--- a/sys-cluster/kubectl/Manifest
+++ b/sys-cluster/kubectl/Manifest
@@ -4,6 +4,7 @@ DIST kubernetes-1.11.1.tar.gz 24774820 BLAKE2B 
2b4ffda2258fbdf7f05eeea57f7fad8ca
 DIST kubernetes-1.11.2.tar.gz 24780381 BLAKE2B 
020768d7acfbcd2feebea677db52bda785bbe9862327a0734cd8b2f66439c9e0538caebd12c706aada2513b277d37c3e3a3ff47e9eaeff31e75b06040b0b853a
 SHA512 
1e61c3ee5f74e9320d8887c9869c3e2cc1ca57f1e8eb83b92c39a8b1a81a82568b966219696ff420f9c0798f6793b311a959294e6f4b0fd9be59daf180147271
 DIST kubernetes-1.11.3.tar.gz 24788666 BLAKE2B 
b388132696b901901cdd5a9f0ab35ebea9533fe178bdf62bf0f1524b92bbb74e5d39c79c045ce0358ceabc8d68e87cb5e1603b0acf6a29f9bb557815e1ebed7e
 SHA512 
f25f7e7738b75bbea62e9c5b0a73f93086f460277acac864c06baf69f565b8fcfb6b09836b8c7fbb8dcec9efc4943b88f5fd8a361007270c7900e7e48c1d5cc5
 DIST kubernetes-1.11.4.tar.gz 24804063 BLAKE2B 
b102f143bfa62258ed78b03fd1e246481661d12a9c8a871e7ca3683b5f17ed7de9116e507a3e4af533e79bd279021f65f5e19cde41e0d5a87ac69ae271db7100
 SHA512 
4d57c96b5bc734e0493ed05ee948381cb50b11dfbcb12377b31404afb1a6b10ad0709c13b953be145fb3eb79f27ab54d7672aa92f856f1ccfbb8000479ac063b
+DIST kubernetes-1.11.5.tar.gz 24813001 BLAKE2B 
71c631b53246b9364ca29f5c2aebbf4303e7dbe103dc1d779c5e4f0aa26ee6caf5aab8023a8beb9a9fb513567283fcef4e584218c8cf30d1083f42344139cbfd
 SHA512 
60a28bb32a469517974d1ba6d950d7f1550fea47d951a993edea0036d1b5baf35719edc73c2022291b70532c22241518f8324d70a86083c65fe38863ed04ac1c
 DIST kubernetes-1.12.0.tar.gz 27995428 BLAKE2B 
5665425ec3cab7128e33c2e8bff49a66c306284604af88fa9a914d148638b1e894645cfd822bc288b567e97238018725bcefba89ba697734c5f74971358ad73a
 SHA512 
6e5286d4817b1fbb4677277674e48758c9a5f820fe7d839162e6298736233143feccdbfb8fd14a64d0fb72a25abe18818cf9852737932e878b25efcf333d983f
 DIST kubernetes-1.12.2.tar.gz 28035976 BLAKE2B 
4e6d0895a03bdf176fef46641a8e0e7ba440828a2a5852f57976c92bc1c95e6ede879cb17d45e26dd66a20777dad4d063b2b0fb541172c97a0886309df033202
 SHA512 
7d59a28465ceacc0559da0436f0459192977447f622b9b1b7c323b2cc4a7c38d5a4100e00287c37251d1da641c04692813afa65df4051436b9144e438396cbb2
 DIST kubernetes-1.12.3.tar.gz 28042821 BLAKE2B 
79c2020608e4e94532b2d525c2c68dfbf9e7660f9047a215675e24f08eb00d145155ea09d9b05f92732c964d47c65138ea9170f6e8fd13ff9d63208a78b60f7d
 SHA512 
6c4ef50240626f97246ed71229463e3649f42674d64bca3a8171728f67807cd0509da9156f53d0e7a8d4967e081cff0f03e0e1469ce5c81313eff67201d49b72

diff --git a/sys-cluster/kubectl/kubectl-1.11.5.ebuild 
b/sys-cluster/kubectl/kubectl-1.11.5.ebuild
new file mode 100644
index 000..f12e63e5995
--- /dev/null
+++ b/sys-cluster/kubectl/kubectl-1.11.5.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit golang-build golang-vcs-snapshot bash-completion-r1
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="CLI to run commands against Kubernetes clusters"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-go/go-bindata"
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" 
src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN} GOFLAGS=-v
+   pushd src/${EGO_PN} || die
+   _output/bin/${PN} completion bash > ${PN}.bash || die
+   _output/bin/${PN} completion zsh > ${PN}.zsh || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+
+   newbashcomp ${PN}.bash ${PN}
+   insinto /usr/share/zsh/site-functions
+   newins ${PN}.zsh _${PN}
+
+   popd || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kubectl/

2018-11-26 Thread Manuel Rüger
commit: 4e0bca42e348f72302927abd48a5a77bbc8dba34
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Nov 26 20:20:54 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Nov 26 20:20:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e0bca42

sys-cluster/kubectl: Version bump to 1.10.11

Signed-off-by: Manuel Rüger  gentoo.org>
Package-Manager: Portage-2.3.52, Repoman-2.3.11

 sys-cluster/kubectl/Manifest   |  1 +
 sys-cluster/kubectl/kubectl-1.10.11.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/sys-cluster/kubectl/Manifest b/sys-cluster/kubectl/Manifest
index a81744300f5..d49027a3ec0 100644
--- a/sys-cluster/kubectl/Manifest
+++ b/sys-cluster/kubectl/Manifest
@@ -1,3 +1,4 @@
+DIST kubernetes-1.10.11.tar.gz 25085442 BLAKE2B 
1cd758c8f042f9ccd797e67690f31038595a1162e8d50aed849e35dcc522aff3af2ce074f3c27f8dfce536ffb290af5d6bf0f684089eb76567f1bfb33f2764c6
 SHA512 
db7feafe398436123e66c90a271f714a645da5f170241d01371bfe613e87e2c177610f32325f85e02b63df9e847b19fd6000bff0b35d2635e8f03b31a40b9d11
 DIST kubernetes-1.10.5.tar.gz 25046108 BLAKE2B 
4e3d85e872e13a11d7f1fe030d9c6ba62c56b37788c31d6460c7d149c47a59a18a9cbfc791092183977089f4d612b690138faee46383c1b3b7e65adfdd3a0276
 SHA512 
55ac294297385cf6a69a48193c691744b886a5fa5d22b7a3a601d39aacd4cd898edccfcdc186bb1845e257f0f177d330af15d29d1419caab03f863bfa095eddf
 DIST kubernetes-1.10.9.tar.gz 25071180 BLAKE2B 
851b99258c61ef238c92ee2bc6918d53fe0927ce15ec4c38f4061746b01215aad8b6832a044ec96c5f88d61f7629722621c7bb0f4a53176f3c76a2aad4ec
 SHA512 
ebc859304c337b4dc92f4e1122a6ff8ef8e0564757bd1dea5050f7a295da752fe72f81f2fc86aea45dcba9b9c3690140c75f461951b839761d5c636b9b0d2a5b
 DIST kubernetes-1.11.1.tar.gz 24774820 BLAKE2B 
2b4ffda2258fbdf7f05eeea57f7fad8ca2eb574895d016475ceae35d8506d9c09d5874e689c0f25c806d0b0b957fca166a8930a8fc5aca98cbe3174dfd217653
 SHA512 
4afb54ae389aa414c7e64a7ab60d586c8f3c75afe4da00bcf2221b4b273e164a09548e61c24a0cdaf9d0e52394c3421e6c70f4fbfc80ed62c40ba7816b03afcf

diff --git a/sys-cluster/kubectl/kubectl-1.10.11.ebuild 
b/sys-cluster/kubectl/kubectl-1.10.11.ebuild
new file mode 100644
index 000..f12e63e5995
--- /dev/null
+++ b/sys-cluster/kubectl/kubectl-1.10.11.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit golang-build golang-vcs-snapshot bash-completion-r1
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="CLI to run commands against Kubernetes clusters"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-go/go-bindata"
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" 
src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN} GOFLAGS=-v
+   pushd src/${EGO_PN} || die
+   _output/bin/${PN} completion bash > ${PN}.bash || die
+   _output/bin/${PN} completion zsh > ${PN}.zsh || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+
+   newbashcomp ${PN}.bash ${PN}
+   insinto /usr/share/zsh/site-functions
+   newins ${PN}.zsh _${PN}
+
+   popd || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kubectl/

2018-11-26 Thread Manuel Rüger
commit: b0f3862aecd50e66dd47e065cdb26e81c6a1eb91
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Nov 26 20:19:25 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Nov 26 20:19:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0f3862a

sys-cluster/kubectl: Version bump to 1.12.3

Signed-off-by: Manuel Rüger  gentoo.org>
Package-Manager: Portage-2.3.52, Repoman-2.3.11

 sys-cluster/kubectl/Manifest  |  1 +
 sys-cluster/kubectl/kubectl-1.12.3.ebuild | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/sys-cluster/kubectl/Manifest b/sys-cluster/kubectl/Manifest
index ff8eb891606..bc0dda4bf8d 100644
--- a/sys-cluster/kubectl/Manifest
+++ b/sys-cluster/kubectl/Manifest
@@ -6,6 +6,7 @@ DIST kubernetes-1.11.3.tar.gz 24788666 BLAKE2B 
b388132696b901901cdd5a9f0ab35ebea
 DIST kubernetes-1.11.4.tar.gz 24804063 BLAKE2B 
b102f143bfa62258ed78b03fd1e246481661d12a9c8a871e7ca3683b5f17ed7de9116e507a3e4af533e79bd279021f65f5e19cde41e0d5a87ac69ae271db7100
 SHA512 
4d57c96b5bc734e0493ed05ee948381cb50b11dfbcb12377b31404afb1a6b10ad0709c13b953be145fb3eb79f27ab54d7672aa92f856f1ccfbb8000479ac063b
 DIST kubernetes-1.12.0.tar.gz 27995428 BLAKE2B 
5665425ec3cab7128e33c2e8bff49a66c306284604af88fa9a914d148638b1e894645cfd822bc288b567e97238018725bcefba89ba697734c5f74971358ad73a
 SHA512 
6e5286d4817b1fbb4677277674e48758c9a5f820fe7d839162e6298736233143feccdbfb8fd14a64d0fb72a25abe18818cf9852737932e878b25efcf333d983f
 DIST kubernetes-1.12.2.tar.gz 28035976 BLAKE2B 
4e6d0895a03bdf176fef46641a8e0e7ba440828a2a5852f57976c92bc1c95e6ede879cb17d45e26dd66a20777dad4d063b2b0fb541172c97a0886309df033202
 SHA512 
7d59a28465ceacc0559da0436f0459192977447f622b9b1b7c323b2cc4a7c38d5a4100e00287c37251d1da641c04692813afa65df4051436b9144e438396cbb2
+DIST kubernetes-1.12.3.tar.gz 28042821 BLAKE2B 
79c2020608e4e94532b2d525c2c68dfbf9e7660f9047a215675e24f08eb00d145155ea09d9b05f92732c964d47c65138ea9170f6e8fd13ff9d63208a78b60f7d
 SHA512 
6c4ef50240626f97246ed71229463e3649f42674d64bca3a8171728f67807cd0509da9156f53d0e7a8d4967e081cff0f03e0e1469ce5c81313eff67201d49b72
 DIST kubernetes-1.9.10.tar.gz 23592498 BLAKE2B 
021ffbb933a5b541d43617fe36967b91cb1895d4fb6ce7f3651b682976699288646b45d5d0a5698131eedc19f4aa7a125d353971d2ecd44a2fd8510a95fac423
 SHA512 
621a2c1c76f993ad61087916fc5946aa3f1b3dec93c7024e518de613063a605500d38e763ed55a35967acb8548d63b65a7d8482f68695dc7600c23d3c38187e9
 DIST kubernetes-1.9.11.tar.gz 23606810 BLAKE2B 
19d30d2cadaf5b95f919e82670b1a8e1d5e2b80a4134dbc5c6afcc23d06dee8392f63d80b59ebfbbbf3a4bcce0dc2d81b1d560c3b3b1910350efed35ee77fbbc
 SHA512 
87881d7dd7e0b3e46dc92f3160410fdf9e7ec1f0cbc3ef99da84b808c3813a3a2d843d49e2b501ee3eb8c9db3564f62c72eecaf5dc1917051e81c106bc80a9ba
 DIST kubernetes-1.9.8.tar.gz 23559610 BLAKE2B 
ef384dd9a06cb00c5a095b05a4b304b08a97c3eac9c40b1b06664bfffb5e5b7c71505d50c4f7c3b594975df1013030788c8cee40acbce5c9ccd34ee5b44dc4fe
 SHA512 
45e65d7a1f0950f2fb8fc923bdcaf1d607960be096a98fbfe187ef117da02ce7bf430cdc4c6d7e707557ef54f3239025e442be08729e86dabba624f3aa7503d1

diff --git a/sys-cluster/kubectl/kubectl-1.12.3.ebuild 
b/sys-cluster/kubectl/kubectl-1.12.3.ebuild
new file mode 100644
index 000..f12e63e5995
--- /dev/null
+++ b/sys-cluster/kubectl/kubectl-1.12.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit golang-build golang-vcs-snapshot bash-completion-r1
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="CLI to run commands against Kubernetes clusters"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-go/go-bindata"
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" 
src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN} GOFLAGS=-v
+   pushd src/${EGO_PN} || die
+   _output/bin/${PN} completion bash > ${PN}.bash || die
+   _output/bin/${PN} completion zsh > ${PN}.zsh || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+
+   newbashcomp ${PN}.bash ${PN}
+   insinto /usr/share/zsh/site-functions
+   newins ${PN}.zsh _${PN}
+
+   popd || die
+}



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

2018-11-26 Thread Manuel Rüger
commit: dbdb0d4218deaa30a86905b339868b732907a986
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Nov 26 20:18:09 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Nov 26 20:18:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbdb0d42

dev-db/etcd: Verbose build, add Git SHA

Signed-off-by: Manuel Rüger  gentoo.org>
Package-Manager: Portage-2.3.52, Repoman-2.3.11

 dev-db/etcd/etcd-3.3.10.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-db/etcd/etcd-3.3.10.ebuild b/dev-db/etcd/etcd-3.3.10.ebuild
index 19f780d0674..431d7d6ff86 100644
--- a/dev-db/etcd/etcd-3.3.10.ebuild
+++ b/dev-db/etcd/etcd-3.3.10.ebuild
@@ -7,6 +7,7 @@ inherit user systemd golang-vcs-snapshot
 
 KEYWORDS="~amd64"
 EGO_PN="github.com/coreos/etcd"
+GIT_COMMIT="27fc7e2"
 MY_PV="${PV/_rc/-rc.}"
 DESCRIPTION="Highly-available key value store for shared configuration and 
service discovery"
 HOMEPAGE="https://github.com/coreos/etcd;
@@ -19,7 +20,7 @@ RDEPEND="!dev-db/etcdctl"
 
 src_prepare() {
default
-   sed -e 's|GIT_SHA=.*|GIT_SHA=v${PV}|'\
+   sed -e "s|GIT_SHA=.*|GIT_SHA=${GIT_COMMIT}|"\
-i "${S}"/src/${EGO_PN}/build || die
sed -e 's:\(for p in \)shellcheck :\1 :' \
-e 's:^ gofmt \\$:\\:' \
@@ -40,7 +41,7 @@ pkg_setup() {
 src_compile() {
export GOPATH=${S}
pushd src/${EGO_PN} || die
-   ./build || die
+   GO_BUILD_FLAGS=-v ./build || die
popd || die
 }
 



[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/

2018-11-26 Thread Craig Andrews
commit: de4ac34ca98045c5b2f869754c5941ff2c9f0a06
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Nov 26 19:58:43 2018 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Nov 26 20:01:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de4ac34c

media-tv/kodi: Remove dependency on sys-power/upower-pm-utils

sys-power/upower-pm-utils is being tree cleaned

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

 media-tv/kodi/kodi-.ebuild | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index 9a85a62c67c..c6a55c97da4 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -138,12 +138,7 @@ RDEPEND="${COMMON_DEPEND}
lirc? ( app-misc/lirc )
!media-tv/xbmc
udisks? ( sys-fs/udisks:2 )
-   upower? (
-   systemd? ( sys-power/upower )
-   !systemd? (
-   || ( sys-power/upower-pm-utils sys-power/upower )
-   )
-   )
+   upower? ( sys-power/upower )
 "
 DEPEND="${COMMON_DEPEND}
app-arch/bzip2



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

2018-11-26 Thread Sergei Trofimovich
commit: 9e1df5c668a424438eb28d59160e4c15881d53dc
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Nov 26 17:18:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Nov 26 19:52:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e1df5c6

dev-python/pynacl: keyworded 1.2.1 for sparc, bug #667782

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

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

diff --git a/dev-python/pynacl/pynacl-1.2.1.ebuild 
b/dev-python/pynacl/pynacl-1.2.1.ebuild
index da852cc35a6..7863d16f5c1 100644
--- a/dev-python/pynacl/pynacl-1.2.1.ebuild
+++ b/dev-python/pynacl/pynacl-1.2.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/pyca/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 s390 x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 s390 ~sparc x86 ~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-11-26 Thread Sergei Trofimovich
commit: 2822afeae6e7626ca82b8d0d6ce960bb915b
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Nov 26 17:17:10 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Nov 26 19:52:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2822

net-analyzer/nagios: stable 4.3.4 for sparc, bug #629380

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

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

diff --git a/net-analyzer/nagios/nagios-4.3.4.ebuild 
b/net-analyzer/nagios/nagios-4.3.4.ebuild
index 4ee7be4efa1..dcae084d20c 100644
--- a/net-analyzer/nagios/nagios-4.3.4.ebuild
+++ b/net-analyzer/nagios/nagios-4.3.4.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://www.nagios.org/;
 
 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=""
 
 RDEPEND="~net-analyzer/nagios-core-${PV}



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

2018-11-26 Thread Mikle Kolyada
commit: 5893f88389a3cabcd08f9823dfceec1cb7ffd2d1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:47:52 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:47:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5893f883

dev-python/zstandard: Add ~arm keyword wrt bug #666978

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

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

diff --git a/dev-python/zstandard/zstandard-0.8.1.ebuild 
b/dev-python/zstandard/zstandard-0.8.1.ebuild
index b5177cb3a01..791e3534e36 100644
--- a/dev-python/zstandard/zstandard-0.8.1.ebuild
+++ b/dev-python/zstandard/zstandard-0.8.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="dev-python/cffi:=[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/mercurial/

2018-11-26 Thread Mikle Kolyada
commit: ab549a9c13857ec4820efadf2b32a85811135f51
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:48:48 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:48:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab549a9c

dev-vcs/mercurial: Add ~arm keyword wrt bug #666978

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

 dev-vcs/mercurial/mercurial-4.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/mercurial/mercurial-4.7.1-r1.ebuild 
b/dev-vcs/mercurial/mercurial-4.7.1-r1.ebuild
index 57d23f39153..d50338a38b9 100644
--- a/dev-vcs/mercurial/mercurial-4.7.1-r1.ebuild
+++ b/dev-vcs/mercurial/mercurial-4.7.1-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.mercurial-scm.org/release/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc64 ~sparc ~x86 ~ppc-aix 
~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 ~ppc64 ~sparc ~x86 ~ppc-aix 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="bugzilla emacs gpg test tk"
 
 RDEPEND="app-misc/ca-certificates



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

2018-11-26 Thread Mikle Kolyada
commit: 01ab0d1217c5812f8370a89fcb81074b53b8b37a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:44:32 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:44:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01ab0d12

dev-python/click: Add ~arm keyword wrt bug #668990

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

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

diff --git a/dev-python/click/click-7.0.ebuild 
b/dev-python/click/click-7.0.ebuild
index 32536a2732d..c8abb01039a 100644
--- a/dev-python/click/click-7.0.ebuild
+++ b/dev-python/click/click-7.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://click.pocoo.org/ 
https://pypi.org/project/click/;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc64 ~x86"
 IUSE="doc examples test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pallets-sphinx-themes/

2018-11-26 Thread Mikle Kolyada
commit: 4689f6ae8cc7834debfbad497ebb414aec4c7ac2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:43:57 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:43:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4689f6ae

dev-python/pallets-sphinx-themes: Add ~arm keyword wrt bug #668990

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

 dev-python/pallets-sphinx-themes/pallets-sphinx-themes-1.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/pallets-sphinx-themes/pallets-sphinx-themes-1.1.2.ebuild 
b/dev-python/pallets-sphinx-themes/pallets-sphinx-themes-1.1.2.ebuild
index 2315b931117..17d0fb32dc5 100644
--- a/dev-python/pallets-sphinx-themes/pallets-sphinx-themes-1.1.2.ebuild
+++ b/dev-python/pallets-sphinx-themes/pallets-sphinx-themes-1.1.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/pallets/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc64 ~x86"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="dev-python/jinja[${PYTHON_USEDEP}]



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

2018-11-26 Thread Mikle Kolyada
commit: 628d3eea158d37a55ad5abbd667426f13734e9fd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:41:25 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:41:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=628d3eea

dev-python/pocketlint: arm stable wrt bug #668464

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

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

diff --git a/dev-python/pocketlint/pocketlint-0.17.ebuild 
b/dev-python/pocketlint/pocketlint-0.17.ebuild
index 175c417072d..ab45840ab5d 100644
--- a/dev-python/pocketlint/pocketlint-0.17.ebuild
+++ b/dev-python/pocketlint/pocketlint-0.17.ebuild
@@ -13,5 +13,5 @@ 
SRC_URI="https://github.com/rhinstaller/${PN}/archive/${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE=""



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

2018-11-26 Thread Mikle Kolyada
commit: 1175ea38f67820defee99ecae0e1ad79352af244
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:37:54 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:37:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1175ea38

net-libs/libmicrohttpd: arm stable wrt bug #671014

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

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

diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.59.ebuild 
b/net-libs/libmicrohttpd/libmicrohttpd-0.9.59.ebuild
index c574f68acbd..fae43deaaf7 100644
--- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.59.ebuild
+++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.59.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/12"
-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="epoll messages ssl static-libs test"
 
 RDEPEND="ssl? (



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

2018-11-26 Thread Mikle Kolyada
commit: 464c9aa815a2f1844d3a31a07b2dd35ed68a22e9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:25:54 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:25:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=464c9aa8

dev-ruby/rbnacl: Add ~arm keyword wrt bug #666790

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

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

diff --git a/dev-ruby/rbnacl/rbnacl-6.0.0.ebuild 
b/dev-ruby/rbnacl/rbnacl-6.0.0.ebuild
index 8b66c427ccb..d5438f05beb 100644
--- a/dev-ruby/rbnacl/rbnacl-6.0.0.ebuild
+++ b/dev-ruby/rbnacl/rbnacl-6.0.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/cryptosphere/rbnacl;
 
 LICENSE="MIT"
 SLOT="6"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE=""
 
 RDEPEND+=" dev-libs/libsodium"



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

2018-11-26 Thread Mikle Kolyada
commit: 872f8691f17edee4558aa59a3fd62998710948ae
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:26:42 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:26:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=872f8691

dev-ruby/net-ssh: Add ~arm keyword wrt bug #666790

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

 dev-ruby/net-ssh/net-ssh-4.2.0.ebuild | 4 ++--
 dev-ruby/net-ssh/net-ssh-5.0.2.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/net-ssh/net-ssh-4.2.0.ebuild 
b/dev-ruby/net-ssh/net-ssh-4.2.0.ebuild
index 5a6dcfee99b..3f6e8106950 100644
--- a/dev-ruby/net-ssh/net-ssh-4.2.0.ebuild
+++ b/dev-ruby/net-ssh/net-ssh-4.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> net-ssh-git-${P
 
 LICENSE="GPL-2"
 SLOT="4"
-KEYWORDS="amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ppc ppc64 x86"
 IUSE="sodium test"
 
 ruby_add_rdepend "virtual/ruby-ssl sodium? ( dev-ruby/rbnacl:4 
dev-ruby/bcrypt_pbkdf )"

diff --git a/dev-ruby/net-ssh/net-ssh-5.0.2.ebuild 
b/dev-ruby/net-ssh/net-ssh-5.0.2.ebuild
index d3f19b3653e..5709cd84bd9 100644
--- a/dev-ruby/net-ssh/net-ssh-5.0.2.ebuild
+++ b/dev-ruby/net-ssh/net-ssh-5.0.2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> net-ssh-git-${P
 
 LICENSE="GPL-2"
 SLOT="5"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE="ed25519 test"
 
 ruby_add_rdepend "virtual/ruby-ssl ed25519? ( dev-ruby/ed25519 
dev-ruby/bcrypt_pbkdf )"



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

2018-11-26 Thread Mikle Kolyada
commit: d946ad1224a197f8cbc0e480916defeaf7d189b5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:22:04 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:23:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d946ad12

dev-ruby/regexp_property_values: Add ~arm keyword wrt bug #670976

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

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

diff --git 
a/dev-ruby/regexp_property_values/regexp_property_values-0.3.4.ebuild 
b/dev-ruby/regexp_property_values/regexp_property_values-0.3.4.ebuild
index 93ab3b93bc4..07b173fbfa6 100644
--- a/dev-ruby/regexp_property_values/regexp_property_values-0.3.4.ebuild
+++ b/dev-ruby/regexp_property_values/regexp_property_values-0.3.4.ebuild
@@ -21,7 +21,7 @@ 
SRC_URI="https://github.com/janosch-x/regexp_property_values/archive/v${PV}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 all_ruby_prepare() {



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

2018-11-26 Thread Mikle Kolyada
commit: dac9e13cc0fa5ebaed07ba572515b56a68f52d0d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:23:03 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:23:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dac9e13c

dev-ruby/regexp_parser: Add ~arm keyword wrt bug #670976

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

 dev-ruby/regexp_parser/regexp_parser-1.2.0.ebuild | 2 +-
 dev-ruby/regexp_parser/regexp_parser-1.3.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/regexp_parser/regexp_parser-1.2.0.ebuild 
b/dev-ruby/regexp_parser/regexp_parser-1.2.0.ebuild
index 6489aa2afd8..913ee35af70 100644
--- a/dev-ruby/regexp_parser/regexp_parser-1.2.0.ebuild
+++ b/dev-ruby/regexp_parser/regexp_parser-1.2.0.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/ammar/regexp_parser/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 DEPEND+=" =dev-util/ragel-6*"

diff --git a/dev-ruby/regexp_parser/regexp_parser-1.3.0.ebuild 
b/dev-ruby/regexp_parser/regexp_parser-1.3.0.ebuild
index 6489aa2afd8..913ee35af70 100644
--- a/dev-ruby/regexp_parser/regexp_parser-1.3.0.ebuild
+++ b/dev-ruby/regexp_parser/regexp_parser-1.3.0.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/ammar/regexp_parser/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 DEPEND+=" =dev-util/ragel-6*"



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

2018-11-26 Thread Thomas Deutschmann
commit: e5030e67578e623c670e9e22265bf8d3b7e77f3f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Nov 26 19:22:02 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Nov 26 19:22:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5030e67

dev-lang/php: add openssl 1.1.x compatibility

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

 dev-lang/php/Manifest |   1 +
 dev-lang/php/php-5.6.38-r1.ebuild | 779 ++
 2 files changed, 780 insertions(+)

diff --git a/dev-lang/php/Manifest b/dev-lang/php/Manifest
index cb27b12fe93..1a544ef80ff 100644
--- a/dev-lang/php/Manifest
+++ b/dev-lang/php/Manifest
@@ -1,3 +1,4 @@
+DIST php-5.6-openssl-1.1-compatibility.patch 42559 BLAKE2B 
b7f13866cd8545543143932930f31bcd928fa0b4b36ef63f04798b9ef4699f12b4f4227772ac9e6e5c498aaeacf7b106abcfa48031a12214e123de4b79d3a4cd
 SHA512 
eed695a3dd7ce27e8651b4a4b96ccd0514f256e7d2f0214fac899e9eeea6412aa24f863f1b5d13305bcac50667ccb62709597fb34da1002b005ebf411dd2f5df
 DIST php-5.6.38.tar.xz 12467408 BLAKE2B 
d9ee47e193d80bce8a9ed6ffd3eb13e67ba6d1f597ece2803cd92fddc6245f46cdfe644d6cda12a6bb409b92c1fe748610cc5eb43dea0bf063fda81188ee8b3d
 SHA512 
66c51a8e954b1496c0bad0a2864a2a1537dd1c1c573b553991d6d5bce85fc7bc340e56a21109bc5e9a03799e703204b980b569c95a5c0a1bddb01c8947e7a682
 DIST php-7.0.32.tar.xz 12030780 BLAKE2B 
0c277eac4c931a6e30954cceb7feef8dea1c3ef4aebac91779b7e1a6f90f608faa93d1750a2dc8f354c73304e0f7a9b9ac17bb0d1da4768ddb68925752c11aef
 SHA512 
4a7c9a6b91ad7da69303916202062d639e6f02dcd483e851a44d8c7a2efeb5c9a666097935ab60d700c4445f86a0c68df1515300c57af1cdb76528b54b757608
 DIST php-7.1.22.tar.xz 12227848 BLAKE2B 
72fab94b1c7ecfd3479f6d6c9a76a9d8813f7789402664201615d79ab8b5bb26fb1b7273769c4898a36f0336e0ce4d50bf2f17b81ddb54acc9583e39623e3a5b
 SHA512 
0fc0907d303711dbc4ba0a18618e3e73550c73d13988c769f8d50066017b1efe3feb0d22d5539f69271ea4e9532a3d997e22841cb59bdbf96313169e1c03538d

diff --git a/dev-lang/php/php-5.6.38-r1.ebuild 
b/dev-lang/php/php-5.6.38-r1.ebuild
new file mode 100644
index 000..362851c1e1d
--- /dev/null
+++ b/dev-lang/php/php-5.6.38-r1.ebuild
@@ -0,0 +1,779 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools flag-o-matic eapi7-ver systemd
+
+DESCRIPTION="The PHP language runtime engine"
+HOMEPAGE="https://secure.php.net/;
+SRC_URI="https://php.net/distributions/${P}.tar.xz
+   
https://salsa.debian.org/php-team/php/raw/8149a436/debian/patches/0055-Use-OpenSSL-1.1-compatibility-patch-when-built-with-.patch?inline=false
 -> php-5.6-openssl-1.1-compatibility.patch"
+
+LICENSE="PHP-3.01
+   BSD
+   Zend-2.0
+   bcmath? ( LGPL-2.1+ )
+   fpm? ( BSD-2 )
+   gd? ( gd )
+   unicode? ( BSD-2 LGPL-2.1 )"
+
+SLOT="$(ver_cut 1-2)"
+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"
+
+# We can build the following SAPIs in the given order
+SAPIS="embed cli cgi fpm apache2"
+
+# SAPIs and SAPI-specific USE flags (cli SAPI is default on):
+IUSE="${IUSE}
+   ${SAPIS/cli/+cli}
+   threads"
+
+IUSE="${IUSE} acl bcmath berkdb bzip2 calendar cdb cjk
+   coverage crypt +ctype curl debug
+   enchant exif +fileinfo +filter firebird
+   flatfile ftp gd gdbm gmp +hash +iconv imap inifile
+   intl iodbc ipv6 +json kerberos ldap ldap-sasl libedit libressl
+   mhash mssql mysql libmysqlclient mysqli nls
+   oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm
+   readline recode selinux +session sharedmem
+   +simplexml snmp soap sockets spell sqlite ssl
+   sybase-ct sysvipc systemd tidy +tokenizer truetype unicode vpx wddx
+   +xml xmlreader xmlwriter xmlrpc xpm xslt zip zlib"
+
+# The supported (that is, autodetected) versions of BDB are listed in
+# the ./configure script. Other versions *work*, but we need to stick to
+# the ones that can be detected to avoid a repeat of bug #564824.
+COMMON_DEPEND="
+   >=app-eselect/eselect-php-0.9.1[apache2?,fpm?]
+   >=dev-libs/libpcre-8.32[unicode]
+   fpm? ( acl? ( sys-apps/acl ) )
+   apache2? ( || ( >=www-servers/apache-2.4[apache2_modules_unixd,threads=]
+   =dev-libs/libmcrypt-2.4 )
+   curl? ( >=net-misc/curl-7.10.5 )
+   enchant? ( app-text/enchant )
+   exif? ( !gd? (
+   virtual/jpeg:0
+   media-libs/libpng:0=
+   sys-libs/zlib:0=
+   ) )
+   firebird? ( dev-db/firebird )
+   gd? ( virtual/jpeg:0 media-libs/libpng:0= sys-libs/zlib:0= )
+   gdbm? ( >=sys-libs/gdbm-1.8.0:0= )
+   gmp? ( dev-libs/gmp:0= )
+   iconv? ( virtual/libiconv )
+   imap? ( virtual/imap-c-client[kerberos=,ssl=] )
+   intl? ( =net-nds/openldap-1.2.11 )
+   

[gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu/

2018-11-26 Thread Thomas Deutschmann
commit: 7244a0c42efaf152e6052462565d1bc28ebb75ce
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Nov 26 18:49:12 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Nov 26 19:22:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7244a0c4

sys-fs/ncdu: drop old

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

 sys-fs/ncdu/Manifest |  1 -
 sys-fs/ncdu/ncdu-1.12.ebuild | 20 
 2 files changed, 21 deletions(-)

diff --git a/sys-fs/ncdu/Manifest b/sys-fs/ncdu/Manifest
index 68a9b8a79ae..2dac8cf4ff3 100644
--- a/sys-fs/ncdu/Manifest
+++ b/sys-fs/ncdu/Manifest
@@ -1,2 +1 @@
-DIST ncdu-1.12.tar.gz 140596 BLAKE2B 
5594d2d1e0b96eb7a1aa4a8461592e0298f0cd95a6ecb1cf18e09dc62fa1af9b7c8ac7f7ce4f7e5ec76ae1fe4702d9e47fc6d5e8410ac9bac86f444b02053792
 SHA512 
20620dd79d2af878442769e097f13806f64f23875dcb85ebccd573a3de43aba5663d496049b64015d13f9a79d624298032c008ef61dfb6f61d8b12902b8dca12
 DIST ncdu-1.13.tar.gz 143819 BLAKE2B 
8ba489dab1cbafec5b1d9b437b44aa7aa5d79ed7b6938f7904465c4d3803390307bfdfed531641fa186873005ce7f0c37db058855ffcd4ce45888bfbffd03c3b
 SHA512 
f1f417caa9bd9e9d9aa6311962b461e48301cf9eab5d0f57073e25df01f96ded05dd093627b95b43afc659ad99aed869efd4a98d723f5835b100747b5525a60c

diff --git a/sys-fs/ncdu/ncdu-1.12.ebuild b/sys-fs/ncdu/ncdu-1.12.ebuild
deleted file mode 100644
index 43abe04d5ae..000
--- a/sys-fs/ncdu/ncdu-1.12.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="NCurses Disk Usage"
-HOMEPAGE="https://dev.yorhel.nl/ncdu/;
-SRC_URI="https://dev.yorhel.nl/download/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux 
~x64-macos"
-
-RDEPEND="
-   sys-libs/ncurses:0=[unicode]
-"
-DEPEND="
-   ${RDEPEND}
-   virtual/pkgconfig
-"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu/

2018-11-26 Thread Thomas Deutschmann
commit: 6cd937e163b6ce04a93c9460916ceeffc234acd4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Nov 26 18:48:45 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Nov 26 19:22:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd937e1

sys-fs/ncdu: add myself as maintainer

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

 sys-fs/ncdu/metadata.xml | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/sys-fs/ncdu/metadata.xml b/sys-fs/ncdu/metadata.xml
index 82b99a853f6..a257e66514e 100644
--- a/sys-fs/ncdu/metadata.xml
+++ b/sys-fs/ncdu/metadata.xml
@@ -1,11 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-  
-As the name already suggests, ncdu is an NCurses version of the famous old 'du'
-unix command. It provides a fast and easy interface to your harddrive. Where is
-your disk space going? Why is your home directory that large? ncdu can answer
-those questions for you in just a matter of seconds!
-
+   
+   whi...@gentoo.org
+   Thomas Deutschmann
+   
+   
+   As the name already suggests, ncdu is an NCurses version of the 
famous old 'du'
+   unix command. It provides a fast and easy interface to your 
harddrive. Where is
+   your disk space going? Why is your home directory that large? 
ncdu can answer
+   those questions for you in just a matter of seconds!
+   
 



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

2018-11-26 Thread Mikle Kolyada
commit: 05e387adfba0c653c14a49476772e76fd72e40e3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:18:44 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:18:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05e387ad

dev-ruby/rack-test: Add ~arm keyword wrt bug #661564

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

 dev-ruby/rack-test/rack-test-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rack-test/rack-test-1.1.0.ebuild 
b/dev-ruby/rack-test/rack-test-1.1.0.ebuild
index 394d1753192..dfed93dd6b6 100644
--- a/dev-ruby/rack-test/rack-test-1.1.0.ebuild
+++ b/dev-ruby/rack-test/rack-test-1.1.0.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/rack-test/rack-test/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="1.0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/rack-1.0:* 

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

2018-11-26 Thread Mikle Kolyada
commit: 6b2f6f45f7390dca5a338d9ac597a77be2bad8a3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:19:06 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:19:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b2f6f45

dev-ruby/sinatra: Add ~arm keyword wrt bug #661564

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

 dev-ruby/sinatra/sinatra-2.0.3.ebuild | 2 +-
 dev-ruby/sinatra/sinatra-2.0.4.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/sinatra/sinatra-2.0.3.ebuild 
b/dev-ruby/sinatra/sinatra-2.0.3.ebuild
index 926154e8b59..edd943a533d 100644
--- a/dev-ruby/sinatra/sinatra-2.0.3.ebuild
+++ b/dev-ruby/sinatra/sinatra-2.0.3.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/sinatra/sinatra/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE=""
 
 ruby_add_rdepend "

diff --git a/dev-ruby/sinatra/sinatra-2.0.4.ebuild 
b/dev-ruby/sinatra/sinatra-2.0.4.ebuild
index 3f28c215bdd..8b480a9b0de 100644
--- a/dev-ruby/sinatra/sinatra-2.0.4.ebuild
+++ b/dev-ruby/sinatra/sinatra-2.0.4.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/sinatra/sinatra/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE=""
 
 ruby_add_rdepend "



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

2018-11-26 Thread Mikle Kolyada
commit: e735efae3e6f0712af8697c350bdebf9e6e357f0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:18:15 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:18:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e735efae

dev-ruby/mustermann: Add ~arm keyword wrt bug #661564

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

 dev-ruby/mustermann/mustermann-1.0.2.ebuild | 2 +-
 dev-ruby/mustermann/mustermann-1.0.3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/mustermann/mustermann-1.0.2.ebuild 
b/dev-ruby/mustermann/mustermann-1.0.2.ebuild
index 0ac05534230..2ee4055641d 100644
--- a/dev-ruby/mustermann/mustermann-1.0.2.ebuild
+++ b/dev-ruby/mustermann/mustermann-1.0.2.ebuild
@@ -18,5 +18,5 @@ HOMEPAGE="https://github.com/sinatra/mustermann;
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE=""

diff --git a/dev-ruby/mustermann/mustermann-1.0.3.ebuild 
b/dev-ruby/mustermann/mustermann-1.0.3.ebuild
index 665219fb4c0..ab69d4d6406 100644
--- a/dev-ruby/mustermann/mustermann-1.0.3.ebuild
+++ b/dev-ruby/mustermann/mustermann-1.0.3.ebuild
@@ -18,5 +18,5 @@ HOMEPAGE="https://github.com/sinatra/mustermann;
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE=""



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

2018-11-26 Thread Mikle Kolyada
commit: 210108828cd2d0db36b48c6150531183fd778d8a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 19:04:26 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 19:04:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21010882

sys-apps/sysvinit: arm stable wrt bug #671752

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

 sys-apps/sysvinit/sysvinit-2.91-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild 
b/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild
index 3ecebd5387f..1e178dea7a7 100644
--- a/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild
+++ b/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 IUSE="selinux ibm static kernel_FreeBSD"
 
 CDEPEND="



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

2018-11-26 Thread Jeroen Roovers
commit: 7687836ddc304cfa5fbf666a6a37bac5780515ef
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Nov 26 18:47:04 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Nov 26 18:57:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7687836d

www-client/opera: Version 56.0.3051.116

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

 www-client/opera/Manifest   |   1 +
 www-client/opera/opera-56.0.3051.116.ebuild | 112 
 2 files changed, 113 insertions(+)

diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest
index ca1d7218d47..90d226dd060 100644
--- a/www-client/opera/Manifest
+++ b/www-client/opera/Manifest
@@ -3,4 +3,5 @@ DIST opera-12.16-1860.i386.freebsd.tar.xz 13385696 BLAKE2B 
35fef5a5d1784941ce11f
 DIST opera-12.16-1860.i386.linux.tar.xz 13154668 BLAKE2B 
7f9ef54f44bc143c13173bce92543351c39288058455baf3fde19f9f8766c9acd72971216c8c340fd89e918f18e89320eb8d13c4be9ec71635e2073c94c90067
 SHA512 
a13ec53311e3e78f35103a9dd5337c0e9a555362860213080211ee9d21de88fbd6aae03bed20b7515874d5a09dfbab108954213745fb82175f5e48e555152613
 DIST opera-12.16-1860.x86_64.linux.tar.xz 14018800 BLAKE2B 
e0cb727ea79868d1c3c692d445fc8949f554c3bbe2bf3c9f222885891458cab7af1a29096cd3caf6936e83068841dda4bff5b8a17eb55a86bebe39ce2b270183
 SHA512 
c1289f352ea5fc8133b105771f48fdc56ccd770920330b1a0ed939ff909abc68081447673572eabeb1aae6db5194b6ab35c93afad78a91d8f7a9a0f91e81ef8b
 DIST opera-stable_56.0.3051.104_amd64.deb 56689076 BLAKE2B 
9aabfc7b93fb35b84469f0720d401483fb40415c9ff5fcf0b1b02435b25a2d733d50c05a3fcae84a4a9d6d97c2a7d5e0da18a1383b639d27944fbf243c68
 SHA512 
2013d74b4f975f5395092fd289fcdd77c26c52dcf46b3063cedd6fc88c168f5d71fae2360a7480b5938fb4a69de4eed24cf4379f1854ee43de4b9ffb5c3bd6fd
+DIST opera-stable_56.0.3051.116_amd64.deb 56584326 BLAKE2B 
cb94b666a5e5df4df39cbe25c1db5758461c1d1ac896b13eefde624bec4cb61b3c6836f4a358521c5f71c0248abe9d6ce1e71680b270323ee8f4be2ec253a12a
 SHA512 
80998a94db5891dc553a39a62220c3db2b2c0054577f1a86779b5766fb62be71fd7fd6f7802f674a4dec2f6927cede631c1634b789a00e58af873ea11f752c21
 DIST opera-stable_56.0.3051.52_amd64.deb 56675592 BLAKE2B 
cbaafec8c8a4132187bfab9a13f66bb1ffdf5e9e677dcbda39f0953d0ce7768adfa65ed4ab19155f7da6e35d96848f8f836c630c620fba875f246a51bb999d60
 SHA512 
76869c151c37dfedaa4fcacb6f1a38ddcbb6cfec36dfacaad7e12977c3f2e1be706dc2820201f38f98391d469a5a3ca0ce15a61e1b04b5b74a6c3be375f94bc4

diff --git a/www-client/opera/opera-56.0.3051.116.ebuild 
b/www-client/opera/opera-56.0.3051.116.ebuild
new file mode 100644
index 000..89d2858058e
--- /dev/null
+++ b/www-client/opera/opera-56.0.3051.116.ebuild
@@ -0,0 +1,112 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CHROMIUM_LANGS="
+   be bg bn ca cs da de el en-GB es-419 es fil fi fr-CA fr hi hr hu id it 
ja
+   ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi 
zh-CN
+   zh-TW
+"
+inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="https://www.opera.com/;
+LICENSE="OPERA-2014"
+SLOT="0"
+SRC_URI_BASE="
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
+"
+for uri in ${SRC_URI_BASE}; do
+SRC_URI+="
+   "${uri}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb"
+"
+done
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/libnotify
+   x11-libs/pango[X]
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+OPERA_HOME="usr/$(get_libdir)/${PN}"
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   epatch_user
+
+   case ${ARCH} in
+   amd64)
+   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
+   rm -r usr/lib || die
+   ;;
+   esac
+
+   rm usr/bin/${PN} || die
+
+   rm usr/share/doc/${PN}-stable/copyright || die
+   mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die
+   gunzip usr/share/doc/${PF}/changelog.gz || die
+
+   pushd "${OPERA_HOME}/localization" > /dev/null || die
+   chromium_remove_language_paks
+   popd > /dev/null || die
+
+ 

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

2018-11-26 Thread Jeroen Roovers
commit: 933061a8e52f69c1cf3a38a85befacabfe6fb956
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Nov 26 18:57:23 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Nov 26 18:57:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=933061a8

www-client/opera: Old

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

 www-client/opera/Manifest  |   1 -
 www-client/opera/opera-56.0.3051.52.ebuild | 112 -
 2 files changed, 113 deletions(-)

diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest
index 90d226dd060..2ccbbfad999 100644
--- a/www-client/opera/Manifest
+++ b/www-client/opera/Manifest
@@ -4,4 +4,3 @@ DIST opera-12.16-1860.i386.linux.tar.xz 13154668 BLAKE2B 
7f9ef54f44bc143c13173bc
 DIST opera-12.16-1860.x86_64.linux.tar.xz 14018800 BLAKE2B 
e0cb727ea79868d1c3c692d445fc8949f554c3bbe2bf3c9f222885891458cab7af1a29096cd3caf6936e83068841dda4bff5b8a17eb55a86bebe39ce2b270183
 SHA512 
c1289f352ea5fc8133b105771f48fdc56ccd770920330b1a0ed939ff909abc68081447673572eabeb1aae6db5194b6ab35c93afad78a91d8f7a9a0f91e81ef8b
 DIST opera-stable_56.0.3051.104_amd64.deb 56689076 BLAKE2B 
9aabfc7b93fb35b84469f0720d401483fb40415c9ff5fcf0b1b02435b25a2d733d50c05a3fcae84a4a9d6d97c2a7d5e0da18a1383b639d27944fbf243c68
 SHA512 
2013d74b4f975f5395092fd289fcdd77c26c52dcf46b3063cedd6fc88c168f5d71fae2360a7480b5938fb4a69de4eed24cf4379f1854ee43de4b9ffb5c3bd6fd
 DIST opera-stable_56.0.3051.116_amd64.deb 56584326 BLAKE2B 
cb94b666a5e5df4df39cbe25c1db5758461c1d1ac896b13eefde624bec4cb61b3c6836f4a358521c5f71c0248abe9d6ce1e71680b270323ee8f4be2ec253a12a
 SHA512 
80998a94db5891dc553a39a62220c3db2b2c0054577f1a86779b5766fb62be71fd7fd6f7802f674a4dec2f6927cede631c1634b789a00e58af873ea11f752c21
-DIST opera-stable_56.0.3051.52_amd64.deb 56675592 BLAKE2B 
cbaafec8c8a4132187bfab9a13f66bb1ffdf5e9e677dcbda39f0953d0ce7768adfa65ed4ab19155f7da6e35d96848f8f836c630c620fba875f246a51bb999d60
 SHA512 
76869c151c37dfedaa4fcacb6f1a38ddcbb6cfec36dfacaad7e12977c3f2e1be706dc2820201f38f98391d469a5a3ca0ce15a61e1b04b5b74a6c3be375f94bc4

diff --git a/www-client/opera/opera-56.0.3051.52.ebuild 
b/www-client/opera/opera-56.0.3051.52.ebuild
deleted file mode 100644
index 89d2858058e..000
--- a/www-client/opera/opera-56.0.3051.52.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB es-419 es fil fi fr-CA fr hi hr hu id it 
ja
-   ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi 
zh-CN
-   zh-TW
-"
-inherit chromium-2 gnome2-utils multilib unpacker xdg-utils
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="https://www.opera.com/;
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="
-   https://download1.operacdn.com/pub/
-   https://download2.operacdn.com/pub/
-   https://download3.operacdn.com/pub/
-   https://download4.operacdn.com/pub/
-"
-for uri in ${SRC_URI_BASE}; do
-SRC_URI+="
-   "${uri}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb"
-"
-done
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-OPERA_HOME="usr/$(get_libdir)/${PN}"
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   epatch_user
-
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   esac
-
-   rm usr/bin/${PN} || die
-
-   rm usr/share/doc/${PN}-stable/copyright || die
-   mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die
-   gunzip usr/share/doc/${PF}/changelog.gz || die
-
-   pushd "${OPERA_HOME}/localization" > /dev/null || die
-   chromium_remove_language_paks
-   popd > /dev/null || die
-
-   sed -i \
-   -e 's|^TargetEnvironment|X-&|g' \
-   usr/share/applications/${PN}.desktop || die
-}
-
-src_install() {
-   mv * "${D}" || die
-   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
-   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}

[gentoo-commits] repo/gentoo:master commit in: net-ftp/pure-ftpd/

2018-11-26 Thread Mikle Kolyada
commit: 476d20e124ef2d9a831df88f95bb6c29587f86e3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 18:56:29 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 18:56:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=476d20e1

net-ftp/pure-ftpd: arm stable wrt bug #671282

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

 net-ftp/pure-ftpd/pure-ftpd-1.0.47-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/pure-ftpd/pure-ftpd-1.0.47-r2.ebuild 
b/net-ftp/pure-ftpd/pure-ftpd-1.0.47-r2.ebuild
index 8d6ae58c20f..23a57ff4560 100644
--- a/net-ftp/pure-ftpd/pure-ftpd-1.0.47-r2.ebuild
+++ b/net-ftp/pure-ftpd/pure-ftpd-1.0.47-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 inherit flag-o-matic
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 sparc x86"
 
 DESCRIPTION="Fast, production-quality, standard-conformant FTP server"
 HOMEPAGE="http://www.pureftpd.org/;



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

2018-11-26 Thread Mikle Kolyada
commit: 08275e8e806626fdc480d0c7cf6b1865a546fbb7
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 18:54:52 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 18:54:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08275e8e

app-text/hunspell: arm stable wrt bug #671066

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

 app-text/hunspell/hunspell-1.6.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/hunspell/hunspell-1.6.2-r1.ebuild 
b/app-text/hunspell/hunspell-1.6.2-r1.ebuild
index 9a6a8118c3b..395dea17b46 100644
--- a/app-text/hunspell/hunspell-1.6.2-r1.ebuild
+++ b/app-text/hunspell/hunspell-1.6.2-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/hunspell;
 SLOT="0/$(get_version_component_range 1-2)"
 LICENSE="MPL-1.1 GPL-2 LGPL-2.1"
 IUSE="ncurses nls readline static-libs"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
ncurses? ( sys-libs/ncurses:0= )



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

2018-11-26 Thread Mikle Kolyada
commit: f8ca652a8ac71aebae2aec1c20347d7be38ff2e0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 18:53:09 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 18:53:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8ca652a

sys-process/cronie: arm stable wrt bug #671686

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

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

diff --git a/sys-process/cronie/cronie-1.5.2.ebuild 
b/sys-process/cronie/cronie-1.5.2.ebuild
index f4be254bc31..f678088bd7f 100644
--- a/sys-process/cronie/cronie-1.5.2.ebuild
+++ b/sys-process/cronie/cronie-1.5.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cronie-crond/cronie;
 SRC_URI="https://github.com/cronie-crond/cronie/archive/${P}.tar.gz;
 
 LICENSE="ISC BSD BSD-2 GPL-2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
 IUSE="+anacron +inotify pam selinux"
 
 DEPEND="pam? ( virtual/pam )



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/gromacs/

2018-11-26 Thread Mikle Kolyada
commit: 932774fdb5afdd31eeb6b8c47018199b29528829
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 18:50:25 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 18:50:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=932774fd

sci-chemistry/gromacs: arm stable wrt bug #669322

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

 sci-chemistry/gromacs/gromacs-2016.5.ebuild | 2 +-
 sci-chemistry/gromacs/gromacs-2018.3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-chemistry/gromacs/gromacs-2016.5.ebuild 
b/sci-chemistry/gromacs/gromacs-2016.5.ebuild
index a2b7857286d..15acf0b2cf7 100644
--- a/sci-chemistry/gromacs/gromacs-2016.5.ebuild
+++ b/sci-chemistry/gromacs/gromacs-2016.5.ebuild
@@ -17,7 +17,7 @@ if [[ $PV = ** ]]; then
 else
SRC_URI="ftp://ftp.gromacs.org/pub/${PN}/${PN}-${PV/_/-}.tar.gz
test? ( 
http://gerrit.gromacs.org/download/regressiontests-${PV/_/-}.tar.gz )"
-   KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+   KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 fi
 
 ACCE_IUSE="cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 cpu_flags_x86_fma4 
cpu_flags_x86_avx cpu_flags_x86_avx2"

diff --git a/sci-chemistry/gromacs/gromacs-2018.3.ebuild 
b/sci-chemistry/gromacs/gromacs-2018.3.ebuild
index 5a0ffcb03be..45a17254534 100644
--- a/sci-chemistry/gromacs/gromacs-2018.3.ebuild
+++ b/sci-chemistry/gromacs/gromacs-2018.3.ebuild
@@ -17,7 +17,7 @@ if [[ $PV = ** ]]; then
 else
SRC_URI="ftp://ftp.gromacs.org/pub/${PN}/${PN}-${PV/_/-}.tar.gz
test? ( 
http://gerrit.gromacs.org/download/regressiontests-${PV/_/-}.tar.gz )"
-   KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+   KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 fi
 
 ACCE_IUSE="cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 cpu_flags_x86_fma4 
cpu_flags_x86_avx cpu_flags_x86_avx2"



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

2018-11-26 Thread Mike Gilbert
commit: 1c612a4180955b5ce4fd8cebf65b8f1d4c9c5a23
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Nov 26 18:01:50 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Nov 26 18:02:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c612a41

net-misc/freerdp: bump to 2.0.0_rc4

Package-Manager: Portage-2.3.51_p14, Repoman-2.3.12_p5
Signed-off-by: Mike Gilbert  gentoo.org>

 net-misc/freerdp/Manifest |   1 +
 net-misc/freerdp/freerdp-2.0.0_rc4.ebuild | 116 ++
 2 files changed, 117 insertions(+)

diff --git a/net-misc/freerdp/Manifest b/net-misc/freerdp/Manifest
index 6897225a9f7..bbd94c0d422 100644
--- a/net-misc/freerdp/Manifest
+++ b/net-misc/freerdp/Manifest
@@ -3,3 +3,4 @@ DIST FreeRDP-2.0.0-rc1.tar.gz 6530403 BLAKE2B 
5e276c3d1153f04512dba4bf09807751ca
 DIST freerdp-1.2.1_pre20150326.tar.gz 6146857 BLAKE2B 
8ead05b89e129ba09b046f545073d128ca1d44dac7248c23bc543094f0fd23f336c890367945e7fce4def98c4ce1e01c4e5a970e92f3d4f74d08daf3cf0a8c6a
 SHA512 
ca1499d56ecb9c9bc624de2ecc976eb9633b795050ac01e16fcc9e0a8951d274cc63644a0e2b830e75f66de894f6a22274864fd20a9351834f6d664874e65ec8
 DIST freerdp-2.0.0-rc2.tar.gz 6611081 BLAKE2B 
564abd6289f0c9d3947b9074111ade8c2e7b6e6dce9af8a06ef1772d0e76822c5df80932a5cbac2f23c4d2a76d4796c12bd4fa067c6ef21ea84a1b8423be1ce3
 SHA512 
cb765b3b9559c4877be4c10e5df9e95d11a0184ce34e89564097c3234f859de8e82b6de6217396628e5f70c85c40c65ccd75f9b0f7f89daaed7e0e971a833589
 DIST freerdp-2.0.0-rc3.tar.gz 6575186 BLAKE2B 
a99b54ca284d1c5c61104e22edd6bb4bc435ed1d5b95a84f089c06e6d49c14987be24c5e6b08e02f7df4a56230159c827b8ada24f68ff0188e74c0386507d691
 SHA512 
0019daadd5f0071d983053c554834392a751ec3bcde2ed96d4c0fceb7c32a319b9bbfeb68ff9b15216f7db479c883b461e7c51e612c99626dd09af5a68ff96f5
+DIST freerdp-2.0.0-rc4.tar.gz 6662044 BLAKE2B 
50bc72336841e421b8fd89ce4f2be6a0b1a9f052933c4cd5bad33261689e6a6b54bc5563fb1ace8cc7a2271990c0ff4c7fe239243f5d75140af497ee6ff9bcd6
 SHA512 
63cf89aecc6d7ac55db8c7aca60f4ba29cfa54ad70d0fa87fdab011cd16500a3d184659119cd08b7596b7236346db3b61b46282c5325d7f0ca6da09b42d0df20

diff --git a/net-misc/freerdp/freerdp-2.0.0_rc4.ebuild 
b/net-misc/freerdp/freerdp-2.0.0_rc4.ebuild
new file mode 100644
index 000..28cbb8c7469
--- /dev/null
+++ b/net-misc/freerdp/freerdp-2.0.0_rc4.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit cmake-utils
+
+if [[ ${PV} !=  ]]; then
+   MY_P=${P/_/-}
+   S="${WORKDIR}/${MY_P}"
+   SRC_URI="https://pub.freerdp.com/releases/${MY_P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
+else
+   inherit git-r3
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/FreeRDP/FreeRDP.git;
+fi
+
+DESCRIPTION="Free implementation of the Remote Desktop Protocol"
+HOMEPAGE="http://www.freerdp.com/;
+
+LICENSE="Apache-2.0"
+SLOT="0/2"
+IUSE="alsa +client cups debug doc ffmpeg gstreamer jpeg libav libressl neon 
openh264 pulseaudio server smartcard systemd test usb wayland X xinerama xv"
+
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   sys-libs/zlib:0
+   alsa? ( media-libs/alsa-lib )
+   cups? ( net-print/cups )
+   client? (
+   usb? (
+   virtual/libudev:0=
+   sys-apps/util-linux:0=
+   dev-libs/dbus-glib:0=
+   virtual/libusb:1=
+   )
+   X? (
+   x11-libs/libXcursor
+   x11-libs/libXext
+   x11-libs/libXi
+   x11-libs/libXrender
+   xinerama? ( x11-libs/libXinerama )
+   xv? ( x11-libs/libXv )
+   )
+   )
+   ffmpeg? (
+   libav? ( media-video/libav:0= )
+   !libav? ( media-video/ffmpeg:0= )
+   )
+   gstreamer? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   x11-libs/libXrandr
+   )
+   jpeg? ( virtual/jpeg:0 )
+   openh264? ( media-libs/openh264 )
+   pulseaudio? ( media-sound/pulseaudio )
+   server? (
+   X? (
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libXtst
+   xinerama? ( x11-libs/libXinerama )
+   )
+   )
+   smartcard? ( sys-apps/pcsc-lite )
+   systemd? ( sys-apps/systemd:0= )
+   wayland? (
+   dev-libs/wayland
+   x11-libs/libxkbcommon
+   )
+   X? (
+   x11-libs/libX11
+   x11-libs/libxkbfile
+   )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   client? ( 

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

2018-11-26 Thread Benda XU
commit: aa9200e0a8a98bf29854e5808091f40200fb24d0
Author: Benda Xu  gentoo  org>
AuthorDate: Mon Nov 26 17:25:07 2018 +
Commit: Benda XU  gentoo  org>
CommitDate: Mon Nov 26 17:26:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa9200e0

dev-python/pycairo: fix .pc Prefix path.

Bug: https://bugs.gentoo.org/664802
Signed-off-by: Benda Xu  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

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

diff --git a/dev-python/pycairo/pycairo-1.17.0-r1.ebuild 
b/dev-python/pycairo/pycairo-1.17.0-r1.ebuild
index 6cb92da0112..17abca02c5a 100644
--- a/dev-python/pycairo/pycairo-1.17.0-r1.ebuild
+++ b/dev-python/pycairo/pycairo-1.17.0-r1.ebuild
@@ -42,7 +42,7 @@ python_test() {
 
 python_install() {
distutils-r1_python_install \
-   install_pkgconfig --pkgconfigdir="/usr/$(get_libdir)/pkgconfig"
+   install_pkgconfig 
--pkgconfigdir="${EPREFIX}/usr/$(get_libdir)/pkgconfig"
 }
 
 python_install_all() {



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

2018-11-26 Thread Lars Wendler
commit: 6859154e505aeebd6fb7b5af3fca7f88a719e82a
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Nov 26 16:43:56 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Nov 26 16:44:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6859154e

sys-libs/libcap: Fixed prefix installation.

Closes: https://bugs.gentoo.org/671946
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-libs/libcap/libcap-2.26-r2.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys-libs/libcap/libcap-2.26-r2.ebuild 
b/sys-libs/libcap/libcap-2.26-r2.ebuild
index 5e2452d4a65..27c8f7ee089 100644
--- a/sys-libs/libcap/libcap-2.26-r2.ebuild
+++ b/sys-libs/libcap/libcap-2.26-r2.ebuild
@@ -39,9 +39,11 @@ src_prepare() {
 
 run_emake() {
local args=(
+   exec_prefix="${EPREFIX}"
lib_prefix="${EPREFIX}/usr"
lib="$(get_libdir)"
-   PAM_CAP=$(usex pam yes no)
+   prefix="${EPREFIX}/usr"
+   PAM_CAP="$(usex pam yes no)"
DYNAMIC=yes
)
emake "${args[@]}" "$@"



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

2018-11-26 Thread Sven Wegener
commit: ca96ad2e887d64febee4984ace90b04daa805979
Author: Sven Wegener  gentoo  org>
AuthorDate: Mon Nov 26 16:39:31 2018 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Mon Nov 26 16:40:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca96ad2e

net-dns/pdns-recursor: Version bump, security bug #671982

Bug: https://bugs.gentoo.org/671982
Signed-off-by: Sven Wegener  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-dns/pdns-recursor/Manifest   |  1 +
 net-dns/pdns-recursor/pdns-recursor-4.1.8.ebuild | 78 
 2 files changed, 79 insertions(+)

diff --git a/net-dns/pdns-recursor/Manifest b/net-dns/pdns-recursor/Manifest
index 33509d30796..a6f7174342d 100644
--- a/net-dns/pdns-recursor/Manifest
+++ b/net-dns/pdns-recursor/Manifest
@@ -1 +1,2 @@
 DIST pdns-recursor-4.1.7.tar.bz2 1237866 BLAKE2B 
f87263c0b4c40c8d5822edd75b338fc23609fb648c71b0665fc3cfd6b1d54679884dcdcc196580ab663f4fdeafaa72bee41308e3720b50374f2dfeb425259b6f
 SHA512 
eb119b0da034624a95aadd4800e376b80f69b7151e773437c0f644bdc5a38a377c5547bcd57606367e148eaddf0b7de8f5f5ff3ab582b50ceb190f2fada5980a
+DIST pdns-recursor-4.1.8.tar.bz2 1237750 BLAKE2B 
1170198ea2ed9f1d16f7d8fa76e4c9f8bc56e3c72a391d094e7380d84657b55daa6f45acf4737a9d9b144f2deae64103c40dc3b95550a853ee6f41f0f8a92c78
 SHA512 
5c09b8ce3f2f3ed6bb350cbd20e6cad4b66f9db85677605d57eca67187c05ddde5071af246a7398e2821c9ed2e5ff101d2b4928366b3ddf12013020fa9b74e61

diff --git a/net-dns/pdns-recursor/pdns-recursor-4.1.8.ebuild 
b/net-dns/pdns-recursor/pdns-recursor-4.1.8.ebuild
new file mode 100644
index 000..2d88183b4f6
--- /dev/null
+++ b/net-dns/pdns-recursor/pdns-recursor-4.1.8.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit flag-o-matic
+
+DESCRIPTION="The PowerDNS Recursor"
+HOMEPAGE="https://www.powerdns.com/;
+SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="libressl luajit protobuf snmp sodium systemd"
+
+DEPEND="!luajit? ( >=dev-lang/lua-5.1:= )
+   luajit? ( dev-lang/luajit:= )
+   protobuf? (
+   dev-libs/protobuf
+   >=dev-libs/boost-1.42:=
+   )
+   systemd? ( sys-apps/systemd:0= )
+   snmp? ( net-analyzer/net-snmp )
+   sodium? ( dev-libs/libsodium:= )
+   libressl? ( dev-libs/libressl:= )
+   !libressl? ( dev-libs/openssl:= )
+   >=dev-libs/boost-1.35:="
+RDEPEND="${DEPEND}
+   !

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

2018-11-26 Thread Mike Gilbert
commit: 47f35700de86b896c91a5431870dd7b798187f5f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Nov 26 16:14:36 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Nov 26 16:14:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47f35700

distutils-r1.eclass: addpredict /usr/lib/${EPYTHON}

This works around sandbox failures with python3.7, which moved from
/usr/$(get_libdir) to /usr/lib.

Bug: https://bugs.gentoo.org/671948
Signed-off-by: Mike Gilbert  gentoo.org>

 eclass/distutils-r1.eclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
index ffb07441ad9..fa7a3ab5c12 100644
--- a/eclass/distutils-r1.eclass
+++ b/eclass/distutils-r1.eclass
@@ -545,6 +545,7 @@ distutils-r1_python_install() {
 
# python likes to compile any module it sees, which triggers sandbox
# failures if some packages haven't compiled their modules yet.
+   addpredict "${EPREFIX}/usr/lib/${EPYTHON}"
addpredict "${EPREFIX}/usr/$(get_libdir)/${EPYTHON}"
addpredict /usr/lib/portage/pym
addpredict /usr/local # bug 498232



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

2018-11-26 Thread Mike Gilbert
commit: 9d3277a5199c609627f126311021435b87f5f640
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Nov 26 15:55:25 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Nov 26 15:56:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d3277a5

Revert "dev-python/cryptography: add missing pycparser dep"

This reverts commit 76e7a21981368a77cbcdb198a91d63baebc1760e.

cryptography does not depend on pycparser directly.

Bug: https://bugs.gentoo.org/671948
Signed-off-by: Mike Gilbert  gentoo.org>

 dev-python/cryptography/cryptography-2.2.2-r1.ebuild | 3 +--
 dev-python/cryptography/cryptography-2.3.1.ebuild| 1 -
 dev-python/cryptography/cryptography-2.3.ebuild  | 3 +--
 3 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/dev-python/cryptography/cryptography-2.2.2-r1.ebuild 
b/dev-python/cryptography/cryptography-2.2.2-r1.ebuild
index e4d73ba997e..449719f769c 100644
--- a/dev-python/cryptography/cryptography-2.2.2-r1.ebuild
+++ b/dev-python/cryptography/cryptography-2.2.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -42,7 +42,6 @@ RDEPEND="
"
 DEPEND="${RDEPEND}
>=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
-   dev-python/pycparser[${PYTHON_USEDEP}]
test? (
~dev-python/cryptography-vectors-${PV}[${PYTHON_USEDEP}]
dev-python/hypothesis[${PYTHON_USEDEP}]

diff --git a/dev-python/cryptography/cryptography-2.3.1.ebuild 
b/dev-python/cryptography/cryptography-2.3.1.ebuild
index 9c239e0ef88..1a58e5692ef 100644
--- a/dev-python/cryptography/cryptography-2.3.1.ebuild
+++ b/dev-python/cryptography/cryptography-2.3.1.ebuild
@@ -41,7 +41,6 @@ RDEPEND="
"
 DEPEND="${RDEPEND}
>=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
-   dev-python/pycparser[${PYTHON_USEDEP}]
$(python_gen_cond_dep '>=dev-python/cffi-1.7:=[${PYTHON_USEDEP}]' 
'python*')
$(python_gen_cond_dep '!~dev-python/cffi-1.11.3[${PYTHON_USEDEP}]' 
'python*')
test? (

diff --git a/dev-python/cryptography/cryptography-2.3.ebuild 
b/dev-python/cryptography/cryptography-2.3.ebuild
index f858938c524..ec123a175ee 100644
--- a/dev-python/cryptography/cryptography-2.3.ebuild
+++ b/dev-python/cryptography/cryptography-2.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -41,7 +41,6 @@ RDEPEND="
"
 DEPEND="${RDEPEND}
>=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
-   dev-python/pycparser[${PYTHON_USEDEP}]
$(python_gen_cond_dep '>=dev-python/cffi-1.7:=[${PYTHON_USEDEP}]' 
'python*')
$(python_gen_cond_dep '!~dev-python/cffi-1.11.3[${PYTHON_USEDEP}]' 
'python*')
test? (



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

2018-11-26 Thread Rick Farina
commit: 175b383c0382c2a1970e1a373cf0ad2581de6b05
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Nov 26 15:43:40 2018 +
Commit: Rick Farina  gentoo  org>
CommitDate: Mon Nov 26 15:43:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=175b383c

dev-ruby/ed25519: add ~arm bug# 671660

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

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

diff --git a/dev-ruby/ed25519/ed25519-1.2.4.ebuild 
b/dev-ruby/ed25519/ed25519-1.2.4.ebuild
index 42d20b58a4f..69c4b0553ab 100644
--- a/dev-ruby/ed25519/ed25519-1.2.4.ebuild
+++ b/dev-ruby/ed25519/ed25519-1.2.4.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/crypto-rb/ed25519/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE=""
 
 all_ruby_prepare() {



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

2018-11-26 Thread Rick Farina
commit: 3fc676b1d7a5a693fea357e6149500b568259d89
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Nov 26 15:41:45 2018 +
Commit: Rick Farina  gentoo  org>
CommitDate: Mon Nov 26 15:41:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fc676b1

dev-ruby/rbnacl: add ~arm bug# 671660

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

 dev-ruby/rbnacl/rbnacl-4.0.2-r1.ebuild | 4 ++--
 dev-ruby/rbnacl/rbnacl-5.0.0-r1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/rbnacl/rbnacl-4.0.2-r1.ebuild 
b/dev-ruby/rbnacl/rbnacl-4.0.2-r1.ebuild
index 362512caff8..dff0a8d5da8 100644
--- a/dev-ruby/rbnacl/rbnacl-4.0.2-r1.ebuild
+++ b/dev-ruby/rbnacl/rbnacl-4.0.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/cryptosphere/rbnacl;
 
 LICENSE="MIT"
 SLOT="4"
-KEYWORDS="amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ppc ppc64 x86"
 IUSE=""
 
 RDEPEND+=" dev-libs/libsodium"

diff --git a/dev-ruby/rbnacl/rbnacl-5.0.0-r1.ebuild 
b/dev-ruby/rbnacl/rbnacl-5.0.0-r1.ebuild
index eb869f6fed5..f10721dc362 100644
--- a/dev-ruby/rbnacl/rbnacl-5.0.0-r1.ebuild
+++ b/dev-ruby/rbnacl/rbnacl-5.0.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/cryptosphere/rbnacl;
 
 LICENSE="MIT"
 SLOT="5"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE=""
 
 RDEPEND+=" dev-libs/libsodium"



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

2018-11-26 Thread Rick Farina
commit: 3ad9d6ef7f6103170ca239a463197adb57e7cb76
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Nov 26 15:39:29 2018 +
Commit: Rick Farina  gentoo  org>
CommitDate: Mon Nov 26 15:39:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ad9d6ef

dev-ruby/dnsruby: add ~arm bug# 671660

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

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

diff --git a/dev-ruby/dnsruby/dnsruby-1.60.2.ebuild 
b/dev-ruby/dnsruby/dnsruby-1.60.2.ebuild
index b2e1dbe2e25..c0d04b612dd 100644
--- a/dev-ruby/dnsruby/dnsruby-1.60.2.ebuild
+++ b/dev-ruby/dnsruby/dnsruby-1.60.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,7 +13,7 @@ inherit ruby-fakegem
 DESCRIPTION="A pure Ruby DNS client library"
 HOMEPAGE="https://github.com/alexdalitz/dnsruby;
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE=""



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

2018-11-26 Thread Rick Farina
commit: 33c399dab2696f9a6e16e67f35d43144f4abe02f
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Nov 26 15:42:48 2018 +
Commit: Rick Farina  gentoo  org>
CommitDate: Mon Nov 26 15:42:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c399da

dev-ruby/bcrypt_pbkdf: add ~arm bug# 671660

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

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

diff --git a/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild 
b/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild
index 5cb9a22043f..22f80e3201f 100644
--- a/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild
+++ b/dev-ruby/bcrypt_pbkdf/bcrypt_pbkdf-1.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/net-ssh/bcrypt_pbkdf-ruby;
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ppc ppc64 x86"
 IUSE=""
 
 ruby_add_bdepend "test? ( dev-ruby/rbnacl )"



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

2018-11-26 Thread Agostino Sarubbo
commit: 01cba520bc683756e06582ede9f9d1ef20b22256
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Nov 26 15:28:21 2018 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Nov 26 15:28:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01cba520

dev-python/paramiko: amd64 stable wrt bug #668876

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/dev-python/paramiko/paramiko-2.4.2.ebuild 
b/dev-python/paramiko/paramiko-2.4.2.ebuild
index 42cc0978f99..47f1b811eae 100644
--- a/dev-python/paramiko/paramiko-2.4.2.ebuild
+++ b/dev-python/paramiko/paramiko-2.4.2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-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 ~m68k-mint ~sparc-solaris"
 IUSE="doc examples server test"
 
 RDEPEND="



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

2018-11-26 Thread Agostino Sarubbo
commit: 4dacd056a1e6d476db62df8c805907d9680ad8ae
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Nov 26 15:28:06 2018 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Nov 26 15:28:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dacd056

net-analyzer/nagios: amd64 stable wrt bug #629380

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 net-analyzer/nagios/nagios-4.3.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/nagios/nagios-4.3.4.ebuild 
b/net-analyzer/nagios/nagios-4.3.4.ebuild
index a29da55bee7..4ee7be4efa1 100644
--- a/net-analyzer/nagios/nagios-4.3.4.ebuild
+++ b/net-analyzer/nagios/nagios-4.3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ HOMEPAGE="https://www.nagios.org/;
 
 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=""
 
 RDEPEND="~net-analyzer/nagios-core-${PV}



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

2018-11-26 Thread Matthew Thode
commit: 76e7a21981368a77cbcdb198a91d63baebc1760e
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Nov 26 15:10:44 2018 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Nov 26 15:11:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76e7a219

dev-python/cryptography: add missing pycparser dep

Fixes: https://bugs.gentoo.org/671948
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/cryptography/cryptography-2.2.2-r1.ebuild | 3 ++-
 dev-python/cryptography/cryptography-2.3.1.ebuild| 1 +
 dev-python/cryptography/cryptography-2.3.ebuild  | 3 ++-
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-python/cryptography/cryptography-2.2.2-r1.ebuild 
b/dev-python/cryptography/cryptography-2.2.2-r1.ebuild
index 449719f769c..e4d73ba997e 100644
--- a/dev-python/cryptography/cryptography-2.2.2-r1.ebuild
+++ b/dev-python/cryptography/cryptography-2.2.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -42,6 +42,7 @@ RDEPEND="
"
 DEPEND="${RDEPEND}
>=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
+   dev-python/pycparser[${PYTHON_USEDEP}]
test? (
~dev-python/cryptography-vectors-${PV}[${PYTHON_USEDEP}]
dev-python/hypothesis[${PYTHON_USEDEP}]

diff --git a/dev-python/cryptography/cryptography-2.3.1.ebuild 
b/dev-python/cryptography/cryptography-2.3.1.ebuild
index 1a58e5692ef..9c239e0ef88 100644
--- a/dev-python/cryptography/cryptography-2.3.1.ebuild
+++ b/dev-python/cryptography/cryptography-2.3.1.ebuild
@@ -41,6 +41,7 @@ RDEPEND="
"
 DEPEND="${RDEPEND}
>=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
+   dev-python/pycparser[${PYTHON_USEDEP}]
$(python_gen_cond_dep '>=dev-python/cffi-1.7:=[${PYTHON_USEDEP}]' 
'python*')
$(python_gen_cond_dep '!~dev-python/cffi-1.11.3[${PYTHON_USEDEP}]' 
'python*')
test? (

diff --git a/dev-python/cryptography/cryptography-2.3.ebuild 
b/dev-python/cryptography/cryptography-2.3.ebuild
index ec123a175ee..f858938c524 100644
--- a/dev-python/cryptography/cryptography-2.3.ebuild
+++ b/dev-python/cryptography/cryptography-2.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -41,6 +41,7 @@ RDEPEND="
"
 DEPEND="${RDEPEND}
>=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
+   dev-python/pycparser[${PYTHON_USEDEP}]
$(python_gen_cond_dep '>=dev-python/cffi-1.7:=[${PYTHON_USEDEP}]' 
'python*')
$(python_gen_cond_dep '!~dev-python/cffi-1.11.3[${PYTHON_USEDEP}]' 
'python*')
test? (



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

2018-11-26 Thread Mikle Kolyada
commit: c32c71cc6710d795e5a2fd1c860f944db4f98f7f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 14:48:52 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 14:48:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c32c71cc

dev-db/mysql: arm stable wrt bug #671516

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

 dev-db/mysql/mysql-5.6.42.ebuild | 2 +-
 dev-db/mysql/mysql-5.7.24.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/mysql/mysql-5.6.42.ebuild b/dev-db/mysql/mysql-5.6.42.ebuild
index 5ae48d703ed..d85ab4c13cd 100644
--- a/dev-db/mysql/mysql-5.6.42.ebuild
+++ b/dev-db/mysql/mysql-5.6.42.ebuild
@@ -37,7 +37,7 @@ RESTRICT="libressl? ( test )"
 
 REQUIRED_USE="?? ( tcmalloc jemalloc ) static? ( yassl )"
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase

diff --git a/dev-db/mysql/mysql-5.7.24.ebuild b/dev-db/mysql/mysql-5.7.24.ebuild
index a0174aac124..d3537fa9102 100644
--- a/dev-db/mysql/mysql-5.7.24.ebuild
+++ b/dev-db/mysql/mysql-5.7.24.ebuild
@@ -34,7 +34,7 @@ RESTRICT="libressl? ( test )"
 
 REQUIRED_USE="?? ( tcmalloc jemalloc ) static? ( yassl )"
 
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2018-11-26 Thread Mikle Kolyada
commit: 2fb8f13be0299db502ca460f1a5e2694ec474f0a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 14:41:26 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 14:41:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fb8f13b

dev-util/pycharm-community: Drop old

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

 dev-util/pycharm-community/Manifest|  1 -
 .../pycharm-community-2018.2.1.ebuild  | 54 --
 2 files changed, 55 deletions(-)

diff --git a/dev-util/pycharm-community/Manifest 
b/dev-util/pycharm-community/Manifest
index 2d825974d16..111934a44ce 100644
--- a/dev-util/pycharm-community/Manifest
+++ b/dev-util/pycharm-community/Manifest
@@ -1,3 +1,2 @@
-DIST pycharm-community-2018.2.1.tar.gz 260758803 BLAKE2B 
735d3e7483b46a9be8bf0a8fa88a51352b1048718aab00b63c133a408666e151947ded527b4ed754ce15aff17a3da9396e10b9194e61286f0ed0534d51f0eabe
 SHA512 
bcae7f579664aa9b071eef6fedc68dad8c9e36078c258cee6877ada1247f9051c4d542657ef2b01dce087e273623b84d86d786ddf1e922d7c6599725f50428bd
 DIST pycharm-community-2018.2.4.tar.gz 260812419 BLAKE2B 
2274d8af513535e4c5b3b69619c944f503dd9f2248a43cf3352221b34c40604f409038d85366321e858037e3c9c63dc838c046917c3102a2d536e4aef05c1636
 SHA512 
aca812b332c6a65865385e82c96fbca06f9caa39fd21723710922865f7aeb38de33eb041efb1e3553e161c34de6d8b8ed724d7c91ba16f3a818711ca9468
 DIST pycharm-community-2018.3.tar.gz 310642963 BLAKE2B 
b32f3c9a3c28bc1ee4658c1ef60cbbe2c4775b310512b3a7fd1b28839bf1c69a566198808b128d18cbbe2d987f61d80bcbcc590177b25d8e9c8fce5fb1754d49
 SHA512 
00121b4ee9daae92d5c389913f4dd9efcd634f9888b21f6bcae10a3a67cc4bc36a5012590e6836224168053521edf5ba848080f4fc1060df04dc4c58cfdd9fff

diff --git a/dev-util/pycharm-community/pycharm-community-2018.2.1.ebuild 
b/dev-util/pycharm-community/pycharm-community-2018.2.1.ebuild
deleted file mode 100644
index 736ca5466e0..000
--- a/dev-util/pycharm-community/pycharm-community-2018.2.1.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 gnome2-utils readme.gentoo-r1 xdg
-
-DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
-HOMEPAGE="http://www.jetbrains.com/pycharm/;
-SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
-
-LICENSE="Apache-2.0 BSD CDDL MIT-with-advertising"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND=">=virtual/jre-1.8
-dev-python/pip"
-
-RESTRICT="mirror strip"
-
-QA_PREBUILT="opt/${PN}/bin/fsnotifier
-   opt/${PN}/bin/fsnotifier64
-   opt/${PN}/bin/fsnotifier-arm"
-
-MY_PN=${PN/-community/}
-
-src_prepare() {
-   default
-
-   rm -rf jre || die
-}
-
-src_install() {
-   insinto /opt/${PN}
-   doins -r *
-
-   fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
-
-   dosym ../../opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
-   newicon bin/${MY_PN}.png ${PN}.png
-   make_desktop_entry ${PN} ${PN} ${PN}
-
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_icon_cache_update
-}



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

2018-11-26 Thread Zac Medico
commit: 8c45fd7af06e0911192b10f5e77dc9cdb20c0c3c
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Nov 26 14:40:19 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Nov 26 14:41:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c45fd7a

dev-python/aiohttp-jinja2: remove unneeded pytest-capturelog dep

Bug: https://bugs.gentoo.org/668746
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild 
b/dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild
index 9e58af359e8..208e9036e61 100644
--- a/dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild
+++ b/dev-python/aiohttp-jinja2/aiohttp-jinja2-0.15.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -30,7 +30,6 @@ DEPEND="
test? (
>=dev-python/pytest-3.2.2[${PYTHON_USEDEP}]
>=dev-python/pytest-aiohttp-0.3.0[${PYTHON_USEDEP}]
-   >=dev-python/pytest-capturelog-0.7[${PYTHON_USEDEP}]
)
 "
 



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

2018-11-26 Thread Mikle Kolyada
commit: 5f4ba1a82424feb360b4731c2edd0e46df68c493
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 14:40:47 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 14:41:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f4ba1a8

dev-util/pycharm-community: mark stable

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

 dev-util/pycharm-community/pycharm-community-2018.2.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/pycharm-community/pycharm-community-2018.2.4.ebuild 
b/dev-util/pycharm-community/pycharm-community-2018.2.4.ebuild
index c37c85ebc8e..2f2c58e1dab 100644
--- a/dev-util/pycharm-community/pycharm-community-2018.2.4.ebuild
+++ b/dev-util/pycharm-community/pycharm-community-2018.2.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
 
 LICENSE="Apache-2.0 BSD CDDL MIT-with-advertising"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND=">=virtual/jre-1.8
 dev-python/pip"



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

2018-11-26 Thread Mikle Kolyada
commit: 91e468f224b1a394ba22c91d66d88b8951866947
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 14:38:45 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 14:39:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91e468f2

dev-util/pycharm-community: Version bump (v2018.3)

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

 dev-util/pycharm-community/Manifest|  1 +
 .../pycharm-community-2018.3.ebuild| 54 ++
 2 files changed, 55 insertions(+)

diff --git a/dev-util/pycharm-community/Manifest 
b/dev-util/pycharm-community/Manifest
index 6b762287cac..2d825974d16 100644
--- a/dev-util/pycharm-community/Manifest
+++ b/dev-util/pycharm-community/Manifest
@@ -1,2 +1,3 @@
 DIST pycharm-community-2018.2.1.tar.gz 260758803 BLAKE2B 
735d3e7483b46a9be8bf0a8fa88a51352b1048718aab00b63c133a408666e151947ded527b4ed754ce15aff17a3da9396e10b9194e61286f0ed0534d51f0eabe
 SHA512 
bcae7f579664aa9b071eef6fedc68dad8c9e36078c258cee6877ada1247f9051c4d542657ef2b01dce087e273623b84d86d786ddf1e922d7c6599725f50428bd
 DIST pycharm-community-2018.2.4.tar.gz 260812419 BLAKE2B 
2274d8af513535e4c5b3b69619c944f503dd9f2248a43cf3352221b34c40604f409038d85366321e858037e3c9c63dc838c046917c3102a2d536e4aef05c1636
 SHA512 
aca812b332c6a65865385e82c96fbca06f9caa39fd21723710922865f7aeb38de33eb041efb1e3553e161c34de6d8b8ed724d7c91ba16f3a818711ca9468
+DIST pycharm-community-2018.3.tar.gz 310642963 BLAKE2B 
b32f3c9a3c28bc1ee4658c1ef60cbbe2c4775b310512b3a7fd1b28839bf1c69a566198808b128d18cbbe2d987f61d80bcbcc590177b25d8e9c8fce5fb1754d49
 SHA512 
00121b4ee9daae92d5c389913f4dd9efcd634f9888b21f6bcae10a3a67cc4bc36a5012590e6836224168053521edf5ba848080f4fc1060df04dc4c58cfdd9fff

diff --git a/dev-util/pycharm-community/pycharm-community-2018.3.ebuild 
b/dev-util/pycharm-community/pycharm-community-2018.3.ebuild
new file mode 100644
index 000..7a0fdedacc6
--- /dev/null
+++ b/dev-util/pycharm-community/pycharm-community-2018.3.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils readme.gentoo-r1 xdg
+
+DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
+HOMEPAGE="http://www.jetbrains.com/pycharm/;
+SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
+
+LICENSE="Apache-2.0 BSD CDDL MIT-with-advertising"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=virtual/jre-1.8
+dev-python/pip"
+
+RESTRICT="mirror strip"
+
+QA_PREBUILT="opt/${PN}/bin/fsnotifier
+   opt/${PN}/bin/fsnotifier64
+   opt/${PN}/bin/fsnotifier-arm"
+
+MY_PN=${PN/-community/}
+
+src_prepare() {
+   default
+
+   rm -rf jre || die
+}
+
+src_install() {
+   insinto /opt/${PN}
+   doins -r *
+
+   fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
+
+   dosym ../../opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
+   newicon bin/${MY_PN}.png ${PN}.png
+   make_desktop_entry ${PN} ${PN} ${PN}
+
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-11-26 Thread Craig Andrews
commit: c48303e3a22d6feaa494ad9ab1a257f516855598
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Nov 13 02:19:54 2018 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Nov 26 14:15:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c48303e3

media-video/ffmpeg: When using samba, require the client use flag

Closes: https://bugs.gentoo.org/670868
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 media-video/ffmpeg/ffmpeg-3.2.6.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-3.2.7.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-3.3.4.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-3.3.6.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-3.3.8.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-3.4.5.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-4.0.2.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-4.0.3.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-4.1.ebuild   | 2 +-
 media-video/ffmpeg/ffmpeg-.ebuild  | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/media-video/ffmpeg/ffmpeg-3.2.6.ebuild 
b/media-video/ffmpeg/ffmpeg-3.2.6.ebuild
index 010f59065ed..51bc4aba9a9 100644
--- a/media-video/ffmpeg/ffmpeg-3.2.6.ebuild
+++ b/media-video/ffmpeg/ffmpeg-3.2.6.ebuild
@@ -216,7 +216,7 @@ RDEPEND="
pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
librtmp? ( >=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}] )
rubberband? ( >=media-libs/rubberband-1.8.1-r1[${MULTILIB_USEDEP}] )
-   samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] )
+   samba? ( >=net-fs/samba-3.6.23-r1[client,${MULTILIB_USEDEP}] )
schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[${MULTILIB_USEDEP}] 
)
sdl? ( media-libs/libsdl2[sound,video,${MULTILIB_USEDEP}] )
speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] )

diff --git a/media-video/ffmpeg/ffmpeg-3.2.7.ebuild 
b/media-video/ffmpeg/ffmpeg-3.2.7.ebuild
index b798bf59bc2..326439232c9 100644
--- a/media-video/ffmpeg/ffmpeg-3.2.7.ebuild
+++ b/media-video/ffmpeg/ffmpeg-3.2.7.ebuild
@@ -216,7 +216,7 @@ RDEPEND="
pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
librtmp? ( >=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}] )
rubberband? ( >=media-libs/rubberband-1.8.1-r1[${MULTILIB_USEDEP}] )
-   samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] )
+   samba? ( >=net-fs/samba-3.6.23-r1[client,${MULTILIB_USEDEP}] )
schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[${MULTILIB_USEDEP}] 
)
sdl? ( media-libs/libsdl2[sound,video,${MULTILIB_USEDEP}] )
speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] )

diff --git a/media-video/ffmpeg/ffmpeg-3.3.4.ebuild 
b/media-video/ffmpeg/ffmpeg-3.3.4.ebuild
index e2134969906..f6b827597e8 100644
--- a/media-video/ffmpeg/ffmpeg-3.3.4.ebuild
+++ b/media-video/ffmpeg/ffmpeg-3.3.4.ebuild
@@ -232,7 +232,7 @@ RDEPEND="
pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
librtmp? ( >=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}] )
rubberband? ( >=media-libs/rubberband-1.8.1-r1[${MULTILIB_USEDEP}] )
-   samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] )
+   samba? ( >=net-fs/samba-3.6.23-r1[client,${MULTILIB_USEDEP}] )
schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[${MULTILIB_USEDEP}] 
)
sdl? ( media-libs/libsdl2[sound,video,${MULTILIB_USEDEP}] )
sofalizer? (

diff --git a/media-video/ffmpeg/ffmpeg-3.3.6.ebuild 
b/media-video/ffmpeg/ffmpeg-3.3.6.ebuild
index 8edfe99d1be..5e1f935e172 100644
--- a/media-video/ffmpeg/ffmpeg-3.3.6.ebuild
+++ b/media-video/ffmpeg/ffmpeg-3.3.6.ebuild
@@ -232,7 +232,7 @@ RDEPEND="
pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
librtmp? ( >=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}] )
rubberband? ( >=media-libs/rubberband-1.8.1-r1[${MULTILIB_USEDEP}] )
-   samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] )
+   samba? ( >=net-fs/samba-3.6.23-r1[client,${MULTILIB_USEDEP}] )
schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[${MULTILIB_USEDEP}] 
)
sdl? ( media-libs/libsdl2[sound,video,${MULTILIB_USEDEP}] )
sofalizer? (

diff --git a/media-video/ffmpeg/ffmpeg-3.3.8.ebuild 
b/media-video/ffmpeg/ffmpeg-3.3.8.ebuild
index 31f31bd7f75..6a794f83105 100644
--- a/media-video/ffmpeg/ffmpeg-3.3.8.ebuild
+++ b/media-video/ffmpeg/ffmpeg-3.3.8.ebuild
@@ -232,7 +232,7 @@ RDEPEND="
pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
librtmp? ( >=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}] )
rubberband? ( >=media-libs/rubberband-1.8.1-r1[${MULTILIB_USEDEP}] )
-   samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] )
+   samba? ( >=net-fs/samba-3.6.23-r1[client,${MULTILIB_USEDEP}] )
schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[${MULTILIB_USEDEP}] 
)
sdl? ( 

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

2018-11-26 Thread Craig Andrews
commit: e17d2c1bc69258e3e844c11d4eba1544a20982a4
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Nov 13 02:27:03 2018 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Nov 26 14:13:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e17d2c1b

media-video/ffmpeg: fix building with USE="jack"

Closes: https://bugs.gentoo.org/665254
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 media-video/ffmpeg/ffmpeg-4.0.3.ebuild | 4 ++--
 media-video/ffmpeg/ffmpeg-4.1.ebuild   | 4 ++--
 media-video/ffmpeg/ffmpeg-.ebuild  | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/media-video/ffmpeg/ffmpeg-4.0.3.ebuild 
b/media-video/ffmpeg/ffmpeg-4.0.3.ebuild
index ad72c8b4ebb..414fcea4086 100644
--- a/media-video/ffmpeg/ffmpeg-4.0.3.ebuild
+++ b/media-video/ffmpeg/ffmpeg-4.0.3.ebuild
@@ -71,7 +71,7 @@ FFMPEG_FLAG_MAP=(
cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca 
openal
opengl
# indevs
-   libv4l:libv4l2 pulseaudio:libpulse libdrm
+   libv4l:libv4l2 pulseaudio:libpulse libdrm jack:libjack
# decoders
amr:libopencore-amrwb amr:libopencore-amrnb codec2:libcodec2 
fdk:libfdk-aac
jpeg2k:libopenjpeg bluray:libbluray gme:libgme gsm:libgsm
@@ -98,7 +98,7 @@ FFMPEG_ENCODER_FLAG_MAP=(
 )
 
 IUSE="
-   alsa chromium doc +encode jack oss pic static-libs test v4l
+   alsa chromium doc +encode oss pic static-libs test v4l
${FFMPEG_FLAG_MAP[@]%:*}
${FFMPEG_ENCODER_FLAG_MAP[@]%:*}
 "

diff --git a/media-video/ffmpeg/ffmpeg-4.1.ebuild 
b/media-video/ffmpeg/ffmpeg-4.1.ebuild
index 5c79e1ee666..9016776c516 100644
--- a/media-video/ffmpeg/ffmpeg-4.1.ebuild
+++ b/media-video/ffmpeg/ffmpeg-4.1.ebuild
@@ -71,7 +71,7 @@ FFMPEG_FLAG_MAP=(
cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca 
openal
opengl
# indevs
-   libv4l:libv4l2 pulseaudio:libpulse libdrm
+   libv4l:libv4l2 pulseaudio:libpulse libdrm jack:libjack
# decoders
amr:libopencore-amrwb amr:libopencore-amrnb codec2:libcodec2 
fdk:libfdk-aac
jpeg2k:libopenjpeg bluray:libbluray gme:libgme gsm:libgsm
@@ -98,7 +98,7 @@ FFMPEG_ENCODER_FLAG_MAP=(
 )
 
 IUSE="
-   alsa chromium doc +encode jack oss pic static-libs test v4l
+   alsa chromium doc +encode oss pic static-libs test v4l
${FFMPEG_FLAG_MAP[@]%:*}
${FFMPEG_ENCODER_FLAG_MAP[@]%:*}
 "

diff --git a/media-video/ffmpeg/ffmpeg-.ebuild 
b/media-video/ffmpeg/ffmpeg-.ebuild
index 6968c4b4fb1..bc734de1468 100644
--- a/media-video/ffmpeg/ffmpeg-.ebuild
+++ b/media-video/ffmpeg/ffmpeg-.ebuild
@@ -71,7 +71,7 @@ FFMPEG_FLAG_MAP=(
cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca 
openal
opengl
# indevs
-   libv4l:libv4l2 pulseaudio:libpulse libdrm
+   libv4l:libv4l2 pulseaudio:libpulse libdrm jack:libjack
# decoders
amr:libopencore-amrwb amr:libopencore-amrnb codec2:libcodec2 
fdk:libfdk-aac
jpeg2k:libopenjpeg bluray:libbluray gme:libgme gsm:libgsm
@@ -98,7 +98,7 @@ FFMPEG_ENCODER_FLAG_MAP=(
 )
 
 IUSE="
-   alsa chromium doc +encode jack oss pic static-libs test v4l
+   alsa chromium doc +encode oss pic static-libs test v4l
${FFMPEG_FLAG_MAP[@]%:*}
${FFMPEG_ENCODER_FLAG_MAP[@]%:*}
 "



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

2018-11-26 Thread Craig Andrews
commit: c43979542ebb3f7b7880c321a0f5f327eacdf855
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Nov 13 02:36:31 2018 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Nov 26 14:10:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4397954

media-video/ffmpeg: Add srt use flag

Closes: https://bugs.gentoo.org/655434
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 media-video/ffmpeg/ffmpeg-4.0.3.ebuild | 3 ++-
 media-video/ffmpeg/ffmpeg-4.1.ebuild   | 3 ++-
 media-video/ffmpeg/ffmpeg-.ebuild  | 3 ++-
 media-video/ffmpeg/metadata.xml| 1 +
 4 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/media-video/ffmpeg/ffmpeg-4.0.3.ebuild 
b/media-video/ffmpeg/ffmpeg-4.0.3.ebuild
index 4c7c281769c..ad72c8b4ebb 100644
--- a/media-video/ffmpeg/ffmpeg-4.0.3.ebuild
+++ b/media-video/ffmpeg/ffmpeg-4.0.3.ebuild
@@ -76,7 +76,7 @@ FFMPEG_FLAG_MAP=(
amr:libopencore-amrwb amr:libopencore-amrnb codec2:libcodec2 
fdk:libfdk-aac
jpeg2k:libopenjpeg bluray:libbluray gme:libgme gsm:libgsm
mmal modplug:libmodplug opus:libopus libilbc librtmp ssh:libssh
-   speex:libspeex svg:librsvg video_cards_nvidia:ffnvcodec
+   speex:libspeex srt:libsrt svg:librsvg 
video_cards_nvidia:ffnvcodec
vorbis:libvorbis vpx:libvpx zvbi:libzvbi
# libavfilter options
appkit
@@ -229,6 +229,7 @@ RDEPEND="
samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] )
sdl? ( media-libs/libsdl2[sound,video,${MULTILIB_USEDEP}] )
speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] )
+   srt? ( net-libs/srt[${MULTILIB_USEDEP}] )
ssh? ( >=net-libs/libssh-0.5.5[${MULTILIB_USEDEP}] )
svg? ( gnome-base/librsvg:2=[${MULTILIB_USEDEP}] )
truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] )

diff --git a/media-video/ffmpeg/ffmpeg-4.1.ebuild 
b/media-video/ffmpeg/ffmpeg-4.1.ebuild
index 6cda905ec7a..5c79e1ee666 100644
--- a/media-video/ffmpeg/ffmpeg-4.1.ebuild
+++ b/media-video/ffmpeg/ffmpeg-4.1.ebuild
@@ -76,7 +76,7 @@ FFMPEG_FLAG_MAP=(
amr:libopencore-amrwb amr:libopencore-amrnb codec2:libcodec2 
fdk:libfdk-aac
jpeg2k:libopenjpeg bluray:libbluray gme:libgme gsm:libgsm
mmal modplug:libmodplug opus:libopus libilbc librtmp ssh:libssh
-   speex:libspeex svg:librsvg video_cards_nvidia:ffnvcodec
+   speex:libspeex srt:libsrt svg:librsvg 
video_cards_nvidia:ffnvcodec
vorbis:libvorbis vpx:libvpx zvbi:libzvbi
# libavfilter options
appkit
@@ -229,6 +229,7 @@ RDEPEND="
samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] )
sdl? ( media-libs/libsdl2[sound,video,${MULTILIB_USEDEP}] )
speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] )
+   srt? ( net-libs/srt[${MULTILIB_USEDEP}] )
ssh? ( >=net-libs/libssh-0.5.5[${MULTILIB_USEDEP}] )
svg? ( gnome-base/librsvg:2=[${MULTILIB_USEDEP}] )
truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] )

diff --git a/media-video/ffmpeg/ffmpeg-.ebuild 
b/media-video/ffmpeg/ffmpeg-.ebuild
index 2a10fdca948..6968c4b4fb1 100644
--- a/media-video/ffmpeg/ffmpeg-.ebuild
+++ b/media-video/ffmpeg/ffmpeg-.ebuild
@@ -76,7 +76,7 @@ FFMPEG_FLAG_MAP=(
amr:libopencore-amrwb amr:libopencore-amrnb codec2:libcodec2 
fdk:libfdk-aac
jpeg2k:libopenjpeg bluray:libbluray gme:libgme gsm:libgsm
mmal modplug:libmodplug opus:libopus libilbc librtmp ssh:libssh
-   speex:libspeex svg:librsvg video_cards_nvidia:ffnvcodec
+   speex:libspeex srt:libsrt svg:librsvg 
video_cards_nvidia:ffnvcodec
vorbis:libvorbis vpx:libvpx zvbi:libzvbi
# libavfilter options
appkit
@@ -229,6 +229,7 @@ RDEPEND="
samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] )
sdl? ( media-libs/libsdl2[sound,video,${MULTILIB_USEDEP}] )
speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] )
+   srt? ( net-libs/srt[${MULTILIB_USEDEP}] )
ssh? ( >=net-libs/libssh-0.5.5[${MULTILIB_USEDEP}] )
svg? ( gnome-base/librsvg:2=[${MULTILIB_USEDEP}] )
truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] )

diff --git a/media-video/ffmpeg/metadata.xml b/media-video/ffmpeg/metadata.xml
index 7ad4c88a08b..ac9e4e532cc 100644
--- a/media-video/ffmpeg/metadata.xml
+++ b/media-video/ffmpeg/metadata.xml
@@ -52,6 +52,7 @@
Enable Dirac video support (an advanced 
royalty-free video compression format) via libschroedinger (high-speed 
implementation in C of the Dirac codec).
Enable app-arch/snappy support. Required 
for e.g. Vidvox Hap encoder.
Enables Sofalizer filter
+   Enable support for Secure Reliable Transport 

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

2018-11-26 Thread Zac Medico
commit: 7a919b0b4ba9bc47316c557614cf001711c5212f
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Nov 26 14:06:17 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Nov 26 14:06:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a919b0b

dev-python/APScheduler: disable broken tests

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

 dev-python/APScheduler/APScheduler-3.3.1.ebuild | 37 +++--
 1 file changed, 35 insertions(+), 2 deletions(-)

diff --git a/dev-python/APScheduler/APScheduler-3.3.1.ebuild 
b/dev-python/APScheduler/APScheduler-3.3.1.ebuild
index c4f2cbbc9d7..d643457bf3b 100644
--- a/dev-python/APScheduler/APScheduler-3.3.1.ebuild
+++ b/dev-python/APScheduler/APScheduler-3.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -24,11 +24,44 @@ RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
 DEPEND="${RDEPEND}
test? (
dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-capturelog[${PYTHON_USEDEP}]
)"
 
+
+# Tests that are known to fail (some may be triggered by network-sandbox).
+test_failures=(
+   test_add_class_method_job
+   test_add_instance_method_job
+   test_add_job_conflicting_id
+   test_asyncio_executor_shutdown
+   test_get_all_jobs
+   test_get_next_run_time
+   test_get_pending_jobs
+   test_get_pending_jobs_subsecond_difference
+   test_lookup_job
+   test_lookup_nonexistent_job
+   test_one_job_fails_to_load
+   test_remove_all_jobs
+   test_remove_job
+   test_remove_nonexistent_job
+   test_repr_mongodbjobstore
+   test_repr_redisjobstore
+   test_repr_zookeeperjobstore
+   test_run_coroutine_job
+   test_run_coroutine_job_tornado
+   test_update_job
+   test_update_job_clear_next_runtime
+   test_update_job_next_runtime
+   test_update_job_nonexistent_job
+   test_zookeeper_client_keep_open
+   test_zookeeper_client_ref
+)
+
 python_prepare_all() {
sed -i -e /setuptools_scm/d setup.py || die
+   while read -r -d ''; do
+   sed -Ee "s:$(echo "${test_failures[@]}"| sed 's: :|:g'):_\\0:" 
-i "${REPLY}" || die
+   done < <(grep -rElZ "$(echo "${test_failures[@]}"| sed 's: :|:g')" 
"${S}")
+
distutils-r1_python_prepare_all
 }
 



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

2018-11-26 Thread Zac Medico
commit: 64b5a46a5be6d8dccb0522b2693563dd2320840c
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Nov 26 14:00:07 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Nov 26 14:00:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64b5a46a

dev-python/APScheduler: remove old versions

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

 dev-python/APScheduler/APScheduler-3.1.0.ebuild | 38 -
 dev-python/APScheduler/APScheduler-3.2.0.ebuild | 38 -
 dev-python/APScheduler/Manifest |  2 --
 3 files changed, 78 deletions(-)

diff --git a/dev-python/APScheduler/APScheduler-3.1.0.ebuild 
b/dev-python/APScheduler/APScheduler-3.1.0.ebuild
deleted file mode 100644
index 5413a75c850..000
--- a/dev-python/APScheduler/APScheduler-3.1.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="In-process task scheduler with Cron-like capabilities"
-HOMEPAGE="https://github.com/agronholm/apscheduler;
-SRC_URI="mirror://pypi/A/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/tzlocal-1.2[${PYTHON_USEDEP}]
-   virtual/python-funcsigs[${PYTHON_USEDEP}]
-   virtual/python-futures[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-capturelog[${PYTHON_USEDEP}]
-   )"
-
-python_prepare_all() {
-   sed -i -e /setuptools_scm/d setup.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   # 3 known failures due to caplog.set_level not existing
-   py.test || die "Testing failed with ${EPYTHON}"
-}

diff --git a/dev-python/APScheduler/APScheduler-3.2.0.ebuild 
b/dev-python/APScheduler/APScheduler-3.2.0.ebuild
deleted file mode 100644
index 5413a75c850..000
--- a/dev-python/APScheduler/APScheduler-3.2.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="In-process task scheduler with Cron-like capabilities"
-HOMEPAGE="https://github.com/agronholm/apscheduler;
-SRC_URI="mirror://pypi/A/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/tzlocal-1.2[${PYTHON_USEDEP}]
-   virtual/python-funcsigs[${PYTHON_USEDEP}]
-   virtual/python-futures[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-capturelog[${PYTHON_USEDEP}]
-   )"
-
-python_prepare_all() {
-   sed -i -e /setuptools_scm/d setup.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   # 3 known failures due to caplog.set_level not existing
-   py.test || die "Testing failed with ${EPYTHON}"
-}

diff --git a/dev-python/APScheduler/Manifest b/dev-python/APScheduler/Manifest
index 1ed15453910..7bfff477518 100644
--- a/dev-python/APScheduler/Manifest
+++ b/dev-python/APScheduler/Manifest
@@ -1,4 +1,2 @@
-DIST APScheduler-3.1.0.tar.gz 79124 BLAKE2B 
fefa9e273259eff7f2ce6889064e5fa6333d6eb76ce0fde65a3e3d41a44b81466d9329cee211c8641ee543802b0691bf0a89c55701adb6f6a301c3c28543878c
 SHA512 
8f8b1a997dffd8ebc090113f3edd6ba1c18514e2583e1bca52ed54b28c7965d146e082fa64de968f44b18b39aa5ead7e3114e3e049102aaab35c52245f37497c
-DIST APScheduler-3.2.0.tar.gz 80946 BLAKE2B 
4c8e74b35fb0167b8238792c1064e73570d385f9a149ae6c222fda596fdab61d5c1a641e4aae83b799dc4a21df7772538cea15e34d5b229e9ffe96e7e56ac482
 SHA512 
451e03e01a5b01126c8ab21acb6b053099271056372a5a66cf302a6aac02f5d4d9b033a0551d1029d82dee32b74db01518fc21c8bc718bbd38cf6417f68234e0
 DIST APScheduler-3.3.1.tar.gz 84198 BLAKE2B 
8706c68dc2b8097d4656da00b62b298ad2b0cb94079bd32b08c0c3316f8317bf299d513ef120822d40b938aff4c49aaa9a1beef9d91e554f02413407b2848711
 SHA512 
af861bff47f881200d97551d60a6d3210c9bf864fa83a37da7fbff31d24e9fce5d64d965ffefe6f8678320ad6dcf86dbdc65b611991b14fd8edd18efbf7e6bbd
 DIST APScheduler-3.5.3.tar.gz 95527 BLAKE2B 
3d1bb49a497781d017e2fbd47176186f6449650500c57a141a114f6c610081b9d85553793f9c9f00422d3a299c26c292ab667cfe3866c381bcbf39161133b615
 SHA512 
dd3e98d0f474511851bdc109a1c65f7f97d221f95d086603d12b3f280285460234724369f05816e1754d58d94adadbec0deb8a0fa63fcd6531914d4a1f4fb3fc



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

2018-11-26 Thread Zac Medico
commit: f0f6eedf437f010dda33e962ac63cd0a2e216355
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Nov 26 13:49:50 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Nov 26 13:56:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0f6eedf

dev-python/APScheduler: version bump to 3.5.3

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

 dev-python/APScheduler/APScheduler-3.5.3.ebuild | 71 +
 dev-python/APScheduler/Manifest |  1 +
 2 files changed, 72 insertions(+)

diff --git a/dev-python/APScheduler/APScheduler-3.5.3.ebuild 
b/dev-python/APScheduler/APScheduler-3.5.3.ebuild
new file mode 100644
index 000..bd557d9b8d5
--- /dev/null
+++ b/dev-python/APScheduler/APScheduler-3.5.3.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="In-process task scheduler with Cron-like capabilities"
+HOMEPAGE="https://github.com/agronholm/apscheduler;
+SRC_URI="mirror://pypi/A/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+   >=dev-python/tzlocal-1.2[${PYTHON_USEDEP}]
+   virtual/python-funcsigs[${PYTHON_USEDEP}]
+   virtual/python-futures[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+# Tests that are known to fail (some may be triggered by network-sandbox).
+test_failures=(
+   test_add_class_method_job
+   test_add_instance_method_job
+   test_add_job_conflicting_id
+   test_asyncio_executor_shutdown
+   test_get_all_jobs
+   test_get_next_run_time
+   test_get_pending_jobs
+   test_get_pending_jobs_subsecond_difference
+   test_lookup_job
+   test_lookup_nonexistent_job
+   test_one_job_fails_to_load
+   test_remove_all_jobs
+   test_remove_job
+   test_remove_nonexistent_job
+   test_repr_mongodbjobstore
+   test_repr_redisjobstore
+   test_repr_zookeeperjobstore
+   test_run_coroutine_job
+   test_run_coroutine_job_tornado
+   test_update_job
+   test_update_job_clear_next_runtime
+   test_update_job_next_runtime
+   test_update_job_nonexistent_job
+   test_zookeeper_client_keep_open
+   test_zookeeper_client_ref
+)
+
+
+python_prepare_all() {
+   sed -i -e /setuptools_scm/d setup.py || die
+   while read -r -d ''; do
+   sed -Ee "s:$(echo "${test_failures[@]}"| sed 's: :|:g'):_\\0:" 
-i "${REPLY}" || die
+   done < <(grep -rElZ "$(echo "${test_failures[@]}"| sed 's: :|:g')" 
"${S}")
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   # 3 known failures due to caplog.set_level not existing
+   py.test || die "Testing failed with ${EPYTHON}"
+}

diff --git a/dev-python/APScheduler/Manifest b/dev-python/APScheduler/Manifest
index 078e8c6af85..1ed15453910 100644
--- a/dev-python/APScheduler/Manifest
+++ b/dev-python/APScheduler/Manifest
@@ -1,3 +1,4 @@
 DIST APScheduler-3.1.0.tar.gz 79124 BLAKE2B 
fefa9e273259eff7f2ce6889064e5fa6333d6eb76ce0fde65a3e3d41a44b81466d9329cee211c8641ee543802b0691bf0a89c55701adb6f6a301c3c28543878c
 SHA512 
8f8b1a997dffd8ebc090113f3edd6ba1c18514e2583e1bca52ed54b28c7965d146e082fa64de968f44b18b39aa5ead7e3114e3e049102aaab35c52245f37497c
 DIST APScheduler-3.2.0.tar.gz 80946 BLAKE2B 
4c8e74b35fb0167b8238792c1064e73570d385f9a149ae6c222fda596fdab61d5c1a641e4aae83b799dc4a21df7772538cea15e34d5b229e9ffe96e7e56ac482
 SHA512 
451e03e01a5b01126c8ab21acb6b053099271056372a5a66cf302a6aac02f5d4d9b033a0551d1029d82dee32b74db01518fc21c8bc718bbd38cf6417f68234e0
 DIST APScheduler-3.3.1.tar.gz 84198 BLAKE2B 
8706c68dc2b8097d4656da00b62b298ad2b0cb94079bd32b08c0c3316f8317bf299d513ef120822d40b938aff4c49aaa9a1beef9d91e554f02413407b2848711
 SHA512 
af861bff47f881200d97551d60a6d3210c9bf864fa83a37da7fbff31d24e9fce5d64d965ffefe6f8678320ad6dcf86dbdc65b611991b14fd8edd18efbf7e6bbd
+DIST APScheduler-3.5.3.tar.gz 95527 BLAKE2B 
3d1bb49a497781d017e2fbd47176186f6449650500c57a141a114f6c610081b9d85553793f9c9f00422d3a299c26c292ab667cfe3866c381bcbf39161133b615
 SHA512 
dd3e98d0f474511851bdc109a1c65f7f97d221f95d086603d12b3f280285460234724369f05816e1754d58d94adadbec0deb8a0fa63fcd6531914d4a1f4fb3fc



[gentoo-commits] repo/gentoo:master commit in: dev-util/netsurf-buildsystem/files/

2018-11-26 Thread Benda XU
commit: 713fcd8a0be527f1784df5480daa8819ac532249
Author: Benda Xu  gentoo  org>
AuthorDate: Mon Nov 26 13:33:51 2018 +
Commit: Benda XU  gentoo  org>
CommitDate: Mon Nov 26 13:39:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=713fcd8a

dev-util/netsurf-buildsystem: fix Prefix regression from netsurf.eclass

Reference: 
https://archives.gentoo.org/gentoo-dev/message/776d6a128da1c7cfcdc5aa36e8bf83ae
Signed-off-by: Benda Xu  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 dev-util/netsurf-buildsystem/files/gentoo-helpers.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/netsurf-buildsystem/files/gentoo-helpers.sh 
b/dev-util/netsurf-buildsystem/files/gentoo-helpers.sh
index e033a53f767..ee81b3ccf88 100644
--- a/dev-util/netsurf-buildsystem/files/gentoo-helpers.sh
+++ b/dev-util/netsurf-buildsystem/files/gentoo-helpers.sh
@@ -2,7 +2,7 @@
 
 netsurf_define_makeconf() {
NETSURF_MAKECONF=(
-   NSSHARED=/usr/share/netsurf-buildsystem
+   NSSHARED="${EROOT}"/usr/share/netsurf-buildsystem
LIBDIR="$(get_libdir)"
PREFIX="${EROOT}/usr"
Q=



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

2018-11-26 Thread Benda XU
commit: 5c377b713d151c2fc9c67bf9f78844ba6f7dda4e
Author: Benda Xu  gentoo  org>
AuthorDate: Mon Nov 26 13:39:03 2018 +
Commit: Benda XU  gentoo  org>
CommitDate: Mon Nov 26 13:39:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c377b71

dev-libs/libutf8proc: fix Prefix regression introduced in -r1.

Reference: 
https://archives.gentoo.org/gentoo-dev/message/776d6a128da1c7cfcdc5aa36e8bf83ae
Signed-off-by: Benda Xu  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 dev-libs/libutf8proc/libutf8proc-2.2.0_p1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libutf8proc/libutf8proc-2.2.0_p1-r1.ebuild 
b/dev-libs/libutf8proc/libutf8proc-2.2.0_p1-r1.ebuild
index bfc2a2dc1b4..eeecdc8fec7 100644
--- a/dev-libs/libutf8proc/libutf8proc-2.2.0_p1-r1.ebuild
+++ b/dev-libs/libutf8proc/libutf8proc-2.2.0_p1-r1.ebuild
@@ -20,7 +20,7 @@ DEPEND="dev-util/netsurf-buildsystem"
 S="${WORKDIR}/${MY_P}"
 
 _emake() {
-   source /usr/share/netsurf-buildsystem/gentoo-helpers.sh
+   source "${EPREFIX}"/usr/share/netsurf-buildsystem/gentoo-helpers.sh
netsurf_define_makeconf
emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@
 }
@@ -30,5 +30,5 @@ src_compile() {
 }
 
 src_install() {
-   _emake DESTDIR="${ED}" install
+   _emake DESTDIR="${D}" install
 }



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

2018-11-26 Thread Tobias Klausmann
commit: 4cad03ab03838aa4b56102be635f114da3523bba
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Nov 26 13:28:08 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Nov 26 13:28:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cad03ab

net-im/prosody: Add v0.11 and bump to EAPI=7

Bug: https://bugs.gentoo.org/671750
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Tobias Klausmann  gentoo.org>

 net-im/prosody/Manifest  |  1 +
 net-im/prosody/prosody-0.11.0.ebuild | 85 
 2 files changed, 86 insertions(+)

diff --git a/net-im/prosody/Manifest b/net-im/prosody/Manifest
index af0978c715d..21822501c77 100644
--- a/net-im/prosody/Manifest
+++ b/net-im/prosody/Manifest
@@ -1,2 +1,3 @@
 DIST prosody-0.10.2.tar.gz 331874 BLAKE2B 
0e0af95a9168810263e6f60b825393d1088f69dba1faabf6c0c9dda3ef6b039a92f7edb9643cb9a60a3131a64038de5c3598f7076837b58ad196ac03fa98bfc4
 SHA512 
9fc05e34b45b0c16835ba94a73532fb3b4ee335f27d56bb9260e1b3e22614f89f44eb5d04b4e90d016db0b5bee6f5c7e7d099e1defb027e6823ee7667c1fe28f
+DIST prosody-0.11.0.tar.gz 418710 BLAKE2B 
2a9af1edbd77d3ef8f629ed5855a6638929bd0476d5245c0ef3ec6e2d840fda3a8b733bcfe35b7603057caa23576e0ec344d244d0c1678e28aa41badb75b6170
 SHA512 
292f555a25108716cd3ceb8ab39210bcb7f2fd113bd844092a51f68127e59b64ec76045740fd93edca8be2c1711a5fbab0f51a285f3ab78d36423a897ea667bf
 DIST prosody-0.9.14.tar.gz 268253 BLAKE2B 
0ae62ca3c8eb89feb34f1f67aa3d14aa1e6bf02cf10ff90a43fd7de8bd257d70508e36b10b3f159040c1fa5dcfb6ad8018e3411a5d6042992f71f643a13c11d4
 SHA512 
30116ebc20c719d88bae7f2f44c129604ec4477004581c3556ff548c75ee026a83dc519701a61a8c3f547776ba74c571e38c3e1e5240da9148dad35a5d1f67e3

diff --git a/net-im/prosody/prosody-0.11.0.ebuild 
b/net-im/prosody/prosody-0.11.0.ebuild
new file mode 100644
index 000..7ccfe253a71
--- /dev/null
+++ b/net-im/prosody/prosody-0.11.0.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic multilib systemd
+
+MY_PV=$(ver_rs 3 '')
+MY_P="${PN}-${MY_PV}"
+DESCRIPTION="Prosody is a flexible communications server for Jabber/XMPP 
written in Lua"
+HOMEPAGE="http://prosody.im/;
+SRC_URI="http://prosody.im/tmp/${MY_PV}/${MY_P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="ipv6 libevent mysql postgres sqlite ssl zlib jit libressl"
+
+DEPEND="net-im/jabber-base
+   dev-lua/LuaBitOp
+   !jit? ( >=dev-lang/lua-5.1:0 )
+   jit? ( dev-lang/luajit:2 )
+   >=net-dns/libidn-1.1
+   !libressl? ( dev-libs/openssl:0 ) libressl? ( 
dev-libs/libressl:= )"
+RDEPEND="${DEPEND}
+   >=dev-lua/luaexpat-1.3.0
+   dev-lua/luafilesystem
+   ipv6? ( >=dev-lua/luasocket-3 )
+   !ipv6? ( dev-lua/luasocket )
+   libevent? ( >=dev-lua/luaevent-0.4.3 )
+   mysql? ( dev-lua/luadbi[mysql] )
+   postgres? ( dev-lua/luadbi[postgres] )
+   sqlite? ( dev-lua/luadbi[sqlite] )
+   ssl? ( dev-lua/luasec )
+   zlib? ( dev-lua/lua-zlib )"
+
+S=${WORKDIR}/${MY_P}
+
+JABBER_ETC="/etc/jabber"
+JABBER_SPOOL="/var/spool/jabber"
+
+src_prepare() {
+   default
+   rm makefile && mv GNUmakefile Makefile || die
+   sed -i -e "s!MODULES = \$(DESTDIR)\$(PREFIX)/lib/!MODULES = 
\$(DESTDIR)\$(PREFIX)/$(get_libdir)/!"\
+   -e "s!SOURCE = \$(DESTDIR)\$(PREFIX)/lib/!SOURCE = 
\$(DESTDIR)\$(PREFIX)/$(get_libdir)/!"\
+   -e "s!INSTALLEDSOURCE = \$(PREFIX)/lib/!INSTALLEDSOURCE = 
\$(PREFIX)/$(get_libdir)/!"\
+   -e "s!INSTALLEDMODULES = \$(PREFIX)/lib/!INSTALLEDMODULES = 
\$(PREFIX)/$(get_libdir)/!"\
+   Makefile || die
+}
+
+src_configure() {
+   # the configure script is handcrafted (and yells at unknown options)
+   # hence do not use 'econf'
+   append-cflags -D_GNU_SOURCE
+   luajit=""
+   if use jit; then
+   luajit="--runwith=luajit"
+   fi
+   ./configure \
+   --ostype=linux $luajit \
+   --prefix="${EPREFIX}/usr" \
+   --libdir="${EPREFIX}/usr/lib64" \
+   --sysconfdir="${JABBER_ETC}" \
+   --datadir="${JABBER_SPOOL}" \
+   --with-lua-include=/usr/include \
+   --with-lua-lib=/usr/$(get_libdir)/lua \
+   --cflags="${CFLAGS} -Wall -fPIC" \
+   --ldflags="${LDFLAGS} -shared" \
+   --c-compiler="$(tc-getCC)" \
+   --linker="$(tc-getCC)" || die "configure failed"
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   systemd_dounit "${FILESDIR}/${PN}".service
+   systemd_newtmpfilesd "${FILESDIR}/${PN}".tmpfilesd "${PN}".conf
+   newinitd "${FILESDIR}/${PN}".initd-r2 ${PN}
+   keepdir /var/spool/jabber
+}
+
+pkg_postinst() {
+   

[gentoo-commits] repo/gentoo:master commit in: net-ftp/atftp/

2018-11-26 Thread Tobias Klausmann
commit: e59c9a01a14655acf765d29bf975ed4b3375813c
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Nov 26 13:03:30 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Nov 26 13:03:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e59c9a01

net-ftp/atftp: Bump to -r6

This changes the SRC_URI, but the resulting binaries and files are the
same, except for a handful of RFCs that shouldn't have been shipped
anyway.

Bug: https://bugs.gentoo.org/635786
Package-Manager: Portage-2.3.52, Repoman-2.3.12
RepoMan-Options: --force
Signed-off-by: Tobias Klausmann  gentoo.org>

 net-ftp/atftp/Manifest |  1 +
 net-ftp/atftp/atftp-0.7-r5.ebuild  |  2 +-
 .../{atftp-0.7-r3.ebuild => atftp-0.7-r6.ebuild}   | 56 --
 3 files changed, 33 insertions(+), 26 deletions(-)

diff --git a/net-ftp/atftp/Manifest b/net-ftp/atftp/Manifest
index 920c8ba5ed5..08fdd38b0b5 100644
--- a/net-ftp/atftp/Manifest
+++ b/net-ftp/atftp/Manifest
@@ -1,2 +1,3 @@
+DIST atftp-0.7.dfsg.tar.gz 187992 BLAKE2B 
8196c333ea8042879196ca9f9c656b4d60a332ed1d64a5738870e1d4fd5f108716da6769bf52759626ad3efce11946b5d6285ac9fbe46cb63e6e2d051fc7aeb3
 SHA512 
40d231c0bc0478fedb3eff9b4c540c62dd9bd6c40d9738e2db1813797a5d48e201720d43a48970ce250f1bb5b15460bb9b3d631c06f96c1a74775ecfb6d13f82
 DIST atftp-0.7.tar.gz 202234 BLAKE2B 
65ff486b6ef2b42b2a4737f121c2c36e8ff73838f3c10592c11020acdf2afdf0883fda8b39613e1cc35b47141fd29543a7ef2c3e2ead857033ad4f7181c91d04
 SHA512 
81c51b613a640f7db4d26da0fb891bda345d11d3f39e0af37f393d2abf619094c1de83f92f04ac75367f546cc70e37d7d47c1535c241c941036fd4df7863a440
 DIST atftp_0.7-11.diff.gz 26055 BLAKE2B 
c9be58836b5a7e3943dd28dd4661abab5e86b1941c9a2b58786eebe702ab515cf1bc08bf44c8ab4157584a437e861e24eb0c833c1fa1bc774f7f8a2134b6cd27
 SHA512 
28747f8f3ef2fc3b122361f682fe26ba93acf09b190f61efb3cfcbb6bdeef78cfe1348aeaf1699003a7e02586579be670d85b65baad1b1165a4bec9a9279adb5

diff --git a/net-ftp/atftp/atftp-0.7-r5.ebuild 
b/net-ftp/atftp/atftp-0.7-r5.ebuild
index 2327d0d852a..c72eba363ad 100644
--- a/net-ftp/atftp/atftp-0.7-r5.ebuild
+++ b/net-ftp/atftp/atftp-0.7-r5.ebuild
@@ -8,7 +8,7 @@ DEBIAN_PV="11"
 DEBIAN_A="${PN}_${PV}-${DEBIAN_PV}.diff"
 
 DESCRIPTION="Advanced TFTP implementation client/server"
-HOMEPAGE="https://sourceforge.net/projects/atftp/;
+HOMEPAGE="ftp://ftp.mamalinux.com/pub/atftp/;
 SRC_URI="ftp://ftp.mamalinux.com/pub/atftp/${P}.tar.gz
mirror://debian/pool/main/a/${PN}/${DEBIAN_A}.gz"
 

diff --git a/net-ftp/atftp/atftp-0.7-r3.ebuild 
b/net-ftp/atftp/atftp-0.7-r6.ebuild
similarity index 56%
rename from net-ftp/atftp/atftp-0.7-r3.ebuild
rename to net-ftp/atftp/atftp-0.7-r6.ebuild
index 1a7d65f79b9..64badd5fa1e 100644
--- a/net-ftp/atftp/atftp-0.7-r3.ebuild
+++ b/net-ftp/atftp/atftp-0.7-r6.ebuild
@@ -1,16 +1,16 @@
 # Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit eutils flag-o-matic systemd
+EAPI=6
+inherit autotools flag-o-matic systemd
 
 DEBIAN_PV="11"
-DEBIAN_A="${PN}_${PV}-${DEBIAN_PV}.diff.gz"
+DEBIAN_A="${PN}_${PV}-${DEBIAN_PV}.diff"
 
 DESCRIPTION="Advanced TFTP implementation client/server"
 HOMEPAGE="https://sourceforge.net/projects/atftp/;
-SRC_URI="ftp://ftp.mamalinux.com/pub/atftp/${P}.tar.gz
-   mirror://debian/pool/main/a/${PN}/${DEBIAN_A}"
+SRC_URI="mirror://sourceforge/${PN}/${P}.dfsg.tar.gz
+   mirror://debian/pool/main/a/${PN}/${DEBIAN_A}.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
@@ -18,7 +18,7 @@ KEYWORDS="amd64 arm ppc ppc64 ~s390 sparc x86"
 IUSE="selinux tcpd readline pcre"
 
 DEPEND="tcpd? ( sys-apps/tcp-wrappers )
-   readline? ( sys-libs/readline )
+   readline? ( sys-libs/readline:0= )
pcre? ( dev-libs/libpcre )"
 RDEPEND="${DEPEND}
!net-ftp/netkit-tftp
@@ -26,23 +26,33 @@ RDEPEND="${DEPEND}
!net-ftp/uftpd
selinux? ( sec-policy/selinux-tftp )"
 
+PATCHES=(
+   "${WORKDIR}/${DEBIAN_A}"
+   "${FILESDIR}/${P}-pcre.patch"
+   "${FILESDIR}/${P}-password.patch"
+   "${FILESDIR}/${P}-tests.patch"
+   "${FILESDIR}/${P}-glibc24.patch"
+   "${FILESDIR}/${P}-blockno.patch"
+   "${FILESDIR}/${P}-spaced_filename.patch"
+   "${FILESDIR}/${P}-illreply.patch"
+   "${FILESDIR}/${P}-CFLAGS.patch"
+)
+
+src_unpack() {
+   default
+   mv atftp-0.7.dfsg atftp-0.7 || die
+}
+
 src_prepare() {
-   epatch "${DISTDIR}"/${DEBIAN_A}
-   epatch "${FILESDIR}"/${P}-pcre.patch
-   epatch "${FILESDIR}"/${P}-password.patch
-   epatch "${FILESDIR}"/${P}-tests.patch
-   epatch "${FILESDIR}"/${P}-glibc24.patch
-   epatch "${FILESDIR}"/${P}-blockno.patch
-   epatch "${FILESDIR}"/${P}-spaced_filename.patch
-   epatch "${FILESDIR}"/${P}-illreply.patch
-   # remove upstream's broken CFLAGS
-   sed -i.orig -e \
- '/^CFLAGS="-g -Wall -D_REENTRANT"/s,".*","",g' \
- "${S}"/configure
+   append-cppflags 

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

2018-11-26 Thread Mikle Kolyada
commit: 51908ce736ea1272cee90d663a6848e5430b32cb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 26 12:51:19 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 26 12:52:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51908ce7

Revert "dev-util/pycharm-community: bump to 2018.3"

This reverts commit 1ccc1dcfe3ffc8a8aec06233e2ec28ae312207f2.

Signed-off-by: Mikle Kolyada  gentoo.org>

 dev-util/pycharm-community/Manifest|  1 -
 dev-util/pycharm-community/metadata.xml|  4 +-
 .../pycharm-community-2018.3.ebuild| 54 --
 3 files changed, 2 insertions(+), 57 deletions(-)

diff --git a/dev-util/pycharm-community/Manifest 
b/dev-util/pycharm-community/Manifest
index 2d825974d16..6b762287cac 100644
--- a/dev-util/pycharm-community/Manifest
+++ b/dev-util/pycharm-community/Manifest
@@ -1,3 +1,2 @@
 DIST pycharm-community-2018.2.1.tar.gz 260758803 BLAKE2B 
735d3e7483b46a9be8bf0a8fa88a51352b1048718aab00b63c133a408666e151947ded527b4ed754ce15aff17a3da9396e10b9194e61286f0ed0534d51f0eabe
 SHA512 
bcae7f579664aa9b071eef6fedc68dad8c9e36078c258cee6877ada1247f9051c4d542657ef2b01dce087e273623b84d86d786ddf1e922d7c6599725f50428bd
 DIST pycharm-community-2018.2.4.tar.gz 260812419 BLAKE2B 
2274d8af513535e4c5b3b69619c944f503dd9f2248a43cf3352221b34c40604f409038d85366321e858037e3c9c63dc838c046917c3102a2d536e4aef05c1636
 SHA512 
aca812b332c6a65865385e82c96fbca06f9caa39fd21723710922865f7aeb38de33eb041efb1e3553e161c34de6d8b8ed724d7c91ba16f3a818711ca9468
-DIST pycharm-community-2018.3.tar.gz 310642963 BLAKE2B 
b32f3c9a3c28bc1ee4658c1ef60cbbe2c4775b310512b3a7fd1b28839bf1c69a566198808b128d18cbbe2d987f61d80bcbcc590177b25d8e9c8fce5fb1754d49
 SHA512 
00121b4ee9daae92d5c389913f4dd9efcd634f9888b21f6bcae10a3a67cc4bc36a5012590e6836224168053521edf5ba848080f4fc1060df04dc4c58cfdd9fff

diff --git a/dev-util/pycharm-community/metadata.xml 
b/dev-util/pycharm-community/metadata.xml
index 7bbc2bee282..d21de2d9f07 100644
--- a/dev-util/pycharm-community/metadata.xml
+++ b/dev-util/pycharm-community/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
 
-gro...@gentoo.org
-Andrey Grozin
+   Mikle Kolyada
+   zlog...@gentoo.org
 
 

diff --git a/dev-util/pycharm-community/pycharm-community-2018.3.ebuild 
b/dev-util/pycharm-community/pycharm-community-2018.3.ebuild
deleted file mode 100644
index c37c85ebc8e..000
--- a/dev-util/pycharm-community/pycharm-community-2018.3.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 gnome2-utils readme.gentoo-r1 xdg
-
-DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
-HOMEPAGE="http://www.jetbrains.com/pycharm/;
-SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
-
-LICENSE="Apache-2.0 BSD CDDL MIT-with-advertising"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND=">=virtual/jre-1.8
-dev-python/pip"
-
-RESTRICT="mirror strip"
-
-QA_PREBUILT="opt/${PN}/bin/fsnotifier
-   opt/${PN}/bin/fsnotifier64
-   opt/${PN}/bin/fsnotifier-arm"
-
-MY_PN=${PN/-community/}
-
-src_prepare() {
-   default
-
-   rm -rf jre || die
-}
-
-src_install() {
-   insinto /opt/${PN}
-   doins -r *
-
-   fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
-
-   dosym ../../opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
-   newicon bin/${MY_PN}.png ${PN}.png
-   make_desktop_entry ${PN} ${PN} ${PN}
-
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: net-ftp/atftp/

2018-11-26 Thread Tobias Klausmann
commit: e4429d3fda54b99ebc68aa12bc21f8de4bfd657b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Nov 26 12:49:00 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Nov 26 12:49:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4429d3f

net-ftp/atftp: Fix HOMEPAGE

Bug: https://bugs.gentoo.org/635786
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Tobias Klausmann  gentoo.org>

 net-ftp/atftp/atftp-0.7-r3.ebuild | 4 ++--
 net-ftp/atftp/atftp-0.7-r5.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-ftp/atftp/atftp-0.7-r3.ebuild 
b/net-ftp/atftp/atftp-0.7-r3.ebuild
index 785ff81f7e8..1a7d65f79b9 100644
--- a/net-ftp/atftp/atftp-0.7-r3.ebuild
+++ b/net-ftp/atftp/atftp-0.7-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -8,7 +8,7 @@ DEBIAN_PV="11"
 DEBIAN_A="${PN}_${PV}-${DEBIAN_PV}.diff.gz"
 
 DESCRIPTION="Advanced TFTP implementation client/server"
-HOMEPAGE="ftp://ftp.mamalinux.com/pub/atftp/;
+HOMEPAGE="https://sourceforge.net/projects/atftp/;
 SRC_URI="ftp://ftp.mamalinux.com/pub/atftp/${P}.tar.gz
mirror://debian/pool/main/a/${PN}/${DEBIAN_A}"
 

diff --git a/net-ftp/atftp/atftp-0.7-r5.ebuild 
b/net-ftp/atftp/atftp-0.7-r5.ebuild
index 98408a1a501..2327d0d852a 100644
--- a/net-ftp/atftp/atftp-0.7-r5.ebuild
+++ b/net-ftp/atftp/atftp-0.7-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ DEBIAN_PV="11"
 DEBIAN_A="${PN}_${PV}-${DEBIAN_PV}.diff"
 
 DESCRIPTION="Advanced TFTP implementation client/server"
-HOMEPAGE="ftp://ftp.mamalinux.com/pub/atftp/;
+HOMEPAGE="https://sourceforge.net/projects/atftp/;
 SRC_URI="ftp://ftp.mamalinux.com/pub/atftp/${P}.tar.gz
mirror://debian/pool/main/a/${PN}/${DEBIAN_A}.gz"
 



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/wxmaxima/

2018-11-26 Thread Andrey Grozin
commit: 4c4d372843751051228358e04fd26ce64ebfc92a
Author: Andrey Grozin  gentoo  org>
AuthorDate: Mon Nov 26 12:46:08 2018 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Mon Nov 26 12:46:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4d3728

sci-mathematics/wxmaxima: bump to 18.11.4

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

 sci-mathematics/wxmaxima/Manifest|  1 +
 sci-mathematics/wxmaxima/wxmaxima-18.11.4.ebuild | 52 
 2 files changed, 53 insertions(+)

diff --git a/sci-mathematics/wxmaxima/Manifest 
b/sci-mathematics/wxmaxima/Manifest
index 9455e3c1f51..efe802da0c1 100644
--- a/sci-mathematics/wxmaxima/Manifest
+++ b/sci-mathematics/wxmaxima/Manifest
@@ -2,3 +2,4 @@ DIST wxmaxima-15.08.2.tar.gz 5592673 BLAKE2B 
cacb508cbcb24e27a43998ba0079b141179
 DIST wxmaxima-18.02.0.tar.gz 10131174 BLAKE2B 
d2137d4dfb23244c677a64578ea8cd132514d6e80b39ed1ed938a64952fcd9928459a64ceafccd34ef925fea6161a79112da9e8091de2ba8f93b4137f3240692
 SHA512 
e40a5fa701bd40c279de95bc16269a72678443ef0bdb14c3770c81feeaf33ddfff6c10f00b32239adcdf696f2a449c6d88d168b732d1273764c98c6ff807fd84
 DIST wxmaxima-18.10.0.tar.gz 12144997 BLAKE2B 
78cfe2cfa5532271cc07eb7bb106b0c9708df4ae3086c02a859f51affe87dd813b3ca28b7fb1137cfb2acbef4f2ce12d2464c30a6dd39d47c028cf4f6c6b030e
 SHA512 
b8cc4288db6bd673a7de7e05d3ff9e3dec1660a78944c2fcd80422cbb6102eea81de33dbc19e7f66e31e0a044be9e935a7f7323b855a1dd3302c3763e5c98196
 DIST wxmaxima-18.10.2.tar.gz 12146348 BLAKE2B 
3c43e807cd8eb2a7e2a6ec1cab82427a6e6df37d4d786639168008672a5763d545dd6387e969d0ff4d6db77d8155b7350a7673b273f00cb02c1779b82d64c35c
 SHA512 
96cabe17a1df4134d991c4a1104da76375429038da03df6a09729b8afaf279788cb0859d723bb1c9cf3e24782f63aeb198b9407515108e0e637c48c410b70a37
+DIST wxmaxima-18.11.4.tar.gz 12156776 BLAKE2B 
75be0fb88402af011885616a646f7abcad25516ea9b0b375daf02edac5518b113188290262bc431e8bfb4836fc1f731982a1c41c62871818e4d2cc68c96ccb31
 SHA512 
964de93edc5c46e98de3de405b1873fa0ed594d54f1ddc030377b023110261cb1e6b0b08dbf210551888bf890e28d16e9b1698768c93dde413d5e1918cbd234e

diff --git a/sci-mathematics/wxmaxima/wxmaxima-18.11.4.ebuild 
b/sci-mathematics/wxmaxima/wxmaxima-18.11.4.ebuild
new file mode 100644
index 000..56c7b4a3e19
--- /dev/null
+++ b/sci-mathematics/wxmaxima/wxmaxima-18.11.4.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+WX_GTK_VER="3.0"
+PLOCALES="ca cs da de el es fi fr gl hu it ja kab nb pl pt_BR ru tr uk zh_CN 
zh_TW"
+inherit cmake-utils wxwidgets l10n xdg-utils gnome2-utils
+
+DESCRIPTION="Graphical frontend to Maxima, using the wxWidgets toolkit"
+HOMEPAGE="http://wxmaxima-developers.github.io/wxmaxima/;
+SRC_URI="https://github.com/wxMaxima-developers/wxmaxima/archive/Version-${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+S="${WORKDIR}"/${PN}-Version-${PV}
+
+DEPEND="
+   dev-libs/libxml2:2
+   x11-libs/wxGTK:${WX_GTK_VER}"
+RDEPEND="${DEPEND}
+   media-fonts/jsmath
+   sci-visualization/gnuplot[wxwidgets]
+   sci-mathematics/maxima"
+
+src_prepare() {
+   setup-wxwidgets
+   cmake-utils_src_prepare
+
+   sed -e "s|share/doc/${PN}|share/doc/${PF}|g" -i 
"${S}"/info/CMakeLists.txt \
+   || die "sed info/CMakeLists.txt failed"
+
+   # locales
+   rm_po() {
+   rm "${S}"/locales/${1}.po || die "rm ${1}.po failed"
+   }
+   l10n_find_plocales_changes "${S}"/locales '' '.po'
+   l10n_for_each_disabled_locale_do rm_po
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+}



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

2018-11-26 Thread Andrey Grozin
commit: 1ccc1dcfe3ffc8a8aec06233e2ec28ae312207f2
Author: Andrey Grozin  gentoo  org>
AuthorDate: Mon Nov 26 12:42:50 2018 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Mon Nov 26 12:42:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ccc1dcf

dev-util/pycharm-community: bump to 2018.3

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

 dev-util/pycharm-community/Manifest|  1 +
 dev-util/pycharm-community/metadata.xml|  4 +-
 .../pycharm-community-2018.3.ebuild| 54 ++
 3 files changed, 57 insertions(+), 2 deletions(-)

diff --git a/dev-util/pycharm-community/Manifest 
b/dev-util/pycharm-community/Manifest
index 6b762287cac..2d825974d16 100644
--- a/dev-util/pycharm-community/Manifest
+++ b/dev-util/pycharm-community/Manifest
@@ -1,2 +1,3 @@
 DIST pycharm-community-2018.2.1.tar.gz 260758803 BLAKE2B 
735d3e7483b46a9be8bf0a8fa88a51352b1048718aab00b63c133a408666e151947ded527b4ed754ce15aff17a3da9396e10b9194e61286f0ed0534d51f0eabe
 SHA512 
bcae7f579664aa9b071eef6fedc68dad8c9e36078c258cee6877ada1247f9051c4d542657ef2b01dce087e273623b84d86d786ddf1e922d7c6599725f50428bd
 DIST pycharm-community-2018.2.4.tar.gz 260812419 BLAKE2B 
2274d8af513535e4c5b3b69619c944f503dd9f2248a43cf3352221b34c40604f409038d85366321e858037e3c9c63dc838c046917c3102a2d536e4aef05c1636
 SHA512 
aca812b332c6a65865385e82c96fbca06f9caa39fd21723710922865f7aeb38de33eb041efb1e3553e161c34de6d8b8ed724d7c91ba16f3a818711ca9468
+DIST pycharm-community-2018.3.tar.gz 310642963 BLAKE2B 
b32f3c9a3c28bc1ee4658c1ef60cbbe2c4775b310512b3a7fd1b28839bf1c69a566198808b128d18cbbe2d987f61d80bcbcc590177b25d8e9c8fce5fb1754d49
 SHA512 
00121b4ee9daae92d5c389913f4dd9efcd634f9888b21f6bcae10a3a67cc4bc36a5012590e6836224168053521edf5ba848080f4fc1060df04dc4c58cfdd9fff

diff --git a/dev-util/pycharm-community/metadata.xml 
b/dev-util/pycharm-community/metadata.xml
index d21de2d9f07..7bbc2bee282 100644
--- a/dev-util/pycharm-community/metadata.xml
+++ b/dev-util/pycharm-community/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
 
-   Mikle Kolyada
-   zlog...@gentoo.org
+gro...@gentoo.org
+Andrey Grozin
 
 

diff --git a/dev-util/pycharm-community/pycharm-community-2018.3.ebuild 
b/dev-util/pycharm-community/pycharm-community-2018.3.ebuild
new file mode 100644
index 000..c37c85ebc8e
--- /dev/null
+++ b/dev-util/pycharm-community/pycharm-community-2018.3.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils readme.gentoo-r1 xdg
+
+DESCRIPTION="Intelligent Python IDE with unique code assistance and analysis"
+HOMEPAGE="http://www.jetbrains.com/pycharm/;
+SRC_URI="http://download.jetbrains.com/python/${P}.tar.gz;
+
+LICENSE="Apache-2.0 BSD CDDL MIT-with-advertising"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=virtual/jre-1.8
+dev-python/pip"
+
+RESTRICT="mirror strip"
+
+QA_PREBUILT="opt/${PN}/bin/fsnotifier
+   opt/${PN}/bin/fsnotifier64
+   opt/${PN}/bin/fsnotifier-arm"
+
+MY_PN=${PN/-community/}
+
+src_prepare() {
+   default
+
+   rm -rf jre || die
+}
+
+src_install() {
+   insinto /opt/${PN}
+   doins -r *
+
+   fperms a+x /opt/${PN}/bin/{pycharm.sh,fsnotifier{,64},inspect.sh}
+
+   dosym ../../opt/${PN}/bin/pycharm.sh /usr/bin/${PN}
+   newicon bin/${MY_PN}.png ${PN}.png
+   make_desktop_entry ${PN} ${PN} ${PN}
+
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



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

2018-11-26 Thread Benda XU
commit: 59fe7001da0d15950d552c636a8e9651125b9a5b
Author: Benda Xu  gentoo  org>
AuthorDate: Mon Nov 26 12:14:28 2018 +
Commit: Benda XU  gentoo  org>
CommitDate: Mon Nov 26 12:15:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59fe7001

dev-libs/apr: support Prefix.

Suggested-By: Olivier Huber
Closes: https://bugs.gentoo.org/669396
Signed-off-by: Benda Xu  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

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

diff --git a/dev-libs/apr/apr-1.6.5.ebuild b/dev-libs/apr/apr-1.6.5.ebuild
index 40fc1cbca28..904427dc046 100644
--- a/dev-libs/apr/apr-1.6.5.ebuild
+++ b/dev-libs/apr/apr-1.6.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -49,7 +49,7 @@ src_configure() {
--enable-posix-shm
--enable-threads
$(use_enable static-libs static)
-   --with-installbuilddir=/usr/share/${PN}/build
+   --with-installbuilddir="${EPREFIX}"/usr/share/${PN}/build
)
 
[[ ${CHOST} == *-mint* ]] && export ac_cv_func_poll=no



[gentoo-commits] repo/gentoo:master commit in: net-mail/dovecot/files/, net-mail/dovecot/

2018-11-26 Thread Eray Aslan
commit: 9c0e4ef0762d8b1394a8d74b945b40defa34169d
Author: Eray Aslan  gentoo  org>
AuthorDate: Mon Nov 26 12:02:38 2018 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Mon Nov 26 12:02:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c0e4ef0

net-mail/dovecot: bump to 2.3.4

and better error handling at init script
Closes: https://github.com/gentoo/gentoo/pull/10472
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Eray Aslan  gentoo.org>

 net-mail/dovecot/Manifest  |   2 +
 net-mail/dovecot/dovecot-2.3.4.ebuild  | 293 +
 net-mail/dovecot/files/dovecot.init-r6 |  62 +++
 3 files changed, 357 insertions(+)

diff --git a/net-mail/dovecot/Manifest b/net-mail/dovecot/Manifest
index 1a99069f813..9357b9d649e 100644
--- a/net-mail/dovecot/Manifest
+++ b/net-mail/dovecot/Manifest
@@ -6,5 +6,7 @@ DIST dovecot-2.2.34.tar.gz 6181270 BLAKE2B 
dfdb1e6812574e79595202e830167400569ad
 DIST dovecot-2.2.36.tar.gz 6239707 BLAKE2B 
702bb24265b5fefec9c484b3cca890fb1536ff94d1f2d6c99ee8c294ee4e38091eef5a727f0d4bd03700263286361f55747a22fa74def350710f9e49a4b10580
 SHA512 
327c50971e276f6013ca7f7bb59498ee88d76c9f8419bd18ee531cf10142214350fb81c6d64eaef73ee01765dd0fcf4142ab146ed67d9d7d86d5a58d41cf8db5
 DIST dovecot-2.3-pigeonhole-0.5.2.tar.gz 1814618 BLAKE2B 
b1187021673429bee1b45a1f657bea995e9881257919ff55bac63106d65963294ee2b3829167c6d50e351c4bc3c7e88a5ccfb757308d2500c5d4146246145074
 SHA512 
6bc24d9241f94db795a012346d9bc94b5cc7d7ce0175c03213c2b5d179d80dec95e9bdbd50bed628c8f9f7c51639e692ba5e429212a3b4a654c1e4764ac4f11c
 DIST dovecot-2.3-pigeonhole-0.5.3.tar.gz 1827329 BLAKE2B 
0d484906022217b1082233e6a3a20c17bafc68b90ce1c5c956c714d111ffb9ab49a3794e199695bb61a1f3ad6bd46e56e63ee3c140cb01eaa7589ef7bd754b19
 SHA512 
8403b1976a915836ba875b96825446d46e0d8c7ff245ed1f2b014347fdc78a81f9ed6dbd05bd3b4f1f7072edc5e9a302201cdb375de44436adcbb83919f203f5
+DIST dovecot-2.3-pigeonhole-0.5.4.tar.gz 1831570 BLAKE2B 
d3e7dea3cdcc2b44476401046f6bd6a110a026d523ada2a898b5c99f509cfe37771dcfd31990139f5f4c1c6b405a9f27359cfd27a6e95525515a3aabb71538f8
 SHA512 
9c82cce7540f8ab66e2e370e0220c99048d6ac53ed680cd763e0b03d0200e2451cee4303ef97b87a16e7248e1c73b92ba91b47a2a20c75cb2cd62695a28046f3
 DIST dovecot-2.3.2.1.tar.gz 6797491 BLAKE2B 
92b88fd0f0cb8ed6c418bf27c2e1fc4efe13f1ccfb4948ce5eed1a4e76a4e96f0d6770d9841026ec5a515310ebaa4b335063e3516de454db8ba06cc4ee5a00ec
 SHA512 
c085a0d04925485423086736a3c7d919ad0ca9efeff005890382da5333edb68c7d23ccb89fbe2ac44f8f016fc993bf2c669e450794c3ab13463676cbb47c7bf7
 DIST dovecot-2.3.3.tar.gz 6851107 BLAKE2B 
87d6e11c8ff59cfe0b49d3561c307535efb09296af617530a4d5a89b4fc12055d006d1b283a4de076f27d59deb64324b96f28620958ad85c38197710c5decdf7
 SHA512 
8666c4f92f7df883067540f85be9d03dbe6815b58a7f5de55b4292e986e9a2a1ef52c7e0c72dde2bc781fe40d57488b78a99b6b813745b8e4683f1a2fdc1f2ff
+DIST dovecot-2.3.4.tar.gz 6924178 BLAKE2B 
13e52a1b04036d58e68d762c9330dd5efedbf2421d658a8b657ca59e311b899a9b4a84fd754678ee67cd5b60f47b5a5ccd6a3fa08fafca7413c8b1e6ecd2fb51
 SHA512 
9e97eb08c319c417e8abcb430b3e6c87ed5aa820d6288656fdfd958ff34664f67202a66e4846763bfc85b309b116cea8012e49dab98b478c57974cc178a37a5a

diff --git a/net-mail/dovecot/dovecot-2.3.4.ebuild 
b/net-mail/dovecot/dovecot-2.3.4.ebuild
new file mode 100644
index 000..3a9711794cd
--- /dev/null
+++ b/net-mail/dovecot/dovecot-2.3.4.ebuild
@@ -0,0 +1,293 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+# do not add a ssl USE flag.  ssl is mandatory
+SSL_DEPS_SKIP=1
+inherit autotools ssl-cert systemd user versionator
+
+MY_P="${P/_/.}"
+#MY_S="${PN}-ce-${PV}"
+major_minor="$(get_version_component_range 1-2)"
+sieve_version="0.5.4"
+if [[ ${PV} == *_rc* ]] ; then
+   rc_dir="rc/"
+else
+   rc_dir=""
+fi
+SRC_URI="https://dovecot.org/releases/${major_minor}/${rc_dir}${MY_P}.tar.gz
+   sieve? (
+   
https://pigeonhole.dovecot.org/releases/${major_minor}/${rc_dir}${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
+   )
+   managesieve? (
+   
https://pigeonhole.dovecot.org/releases/${major_minor}/${rc_dir}${PN}-${major_minor}-pigeonhole-${sieve_version}.tar.gz
+   ) "
+DESCRIPTION="An IMAP and POP3 server written with security primarily in mind"
+HOMEPAGE="https://www.dovecot.org/;
+
+SLOT="0"
+LICENSE="LGPL-2.1 MIT"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+
+IUSE_DOVECOT_AUTH="kerberos ldap lua mysql pam postgres sqlite vpopmail"
+IUSE_DOVECOT_COMPRESS="bzip2 lzma lz4 zlib"
+IUSE_DOVECOT_OTHER="argon2 caps doc ipv6 libressl lucene managesieve selinux 
sieve solr static-libs suid tcpd textcat"
+
+IUSE="${IUSE_DOVECOT_AUTH} ${IUSE_DOVECOT_STORAGE} ${IUSE_DOVECOT_COMPRESS} 
${IUSE_DOVECOT_OTHER}"
+
+DEPEND="argon2? ( dev-libs/libsodium )
+   bzip2? ( app-arch/bzip2 )
+   caps? ( sys-libs/libcap )
+   kerberos? ( virtual/krb5 )
+   ldap? 

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

2018-11-26 Thread Aaron Swenson
commit: 15321f6ec3be5eaa43510a078993bd92944b0106
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Mon Nov 26 11:20:09 2018 +
Commit: Aaron Swenson  gentoo  org>
CommitDate: Mon Nov 26 11:20:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15321f6e

dev-db/postgis: Bump to 2.4.6, 2.5.1

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Aaron W. Swenson  gentoo.org>

 dev-db/postgis/Manifest |   2 +
 dev-db/postgis/postgis-2.4.6.ebuild | 125 
 dev-db/postgis/postgis-2.5.1.ebuild | 125 
 3 files changed, 252 insertions(+)

diff --git a/dev-db/postgis/Manifest b/dev-db/postgis/Manifest
index 0c6de877d40..db040ac97ea 100644
--- a/dev-db/postgis/Manifest
+++ b/dev-db/postgis/Manifest
@@ -1,2 +1,4 @@
 DIST postgis-2.4.2.tar.gz 12470881 BLAKE2B 
116bb5d1c8f6066d537cac950254923a681babac456d155139dbdd2853b80499f4f9445dad985b94bd1d1285a6c78fee0fccb24e301d18147f3cd9230416
 SHA512 
e268572d5cd009754ef05f5d2eedcac7e362fa47199459c637cd4d9050d2b648d4b2b3746cde0dce5a42be2606a432b64dc905f193e12cf0869e3dd6f820b425
 DIST postgis-2.4.3.tar.gz 12601055 BLAKE2B 
662b2afe145bc23c77ebda7306d07a20e39c1a598316cee58e1591e65ce1b2d2a3f727f5463ba144711faa55f7c11e4a038b6ad2a76cab760b4fdd43647f09c3
 SHA512 
95b2c925cb10943e7136aa3b7b08a9ad3d6ff59a3994c653bba52e4c65193d519daa49684b924f68945dd596187aa17e0c713bf0b9e29f8c5973346b279dba1b
+DIST postgis-2.4.6.tar.gz 12616474 BLAKE2B 
8e33ae7e8ca5ef2a4dd90f64a8e9910118e4ef711444b196f46e4a63f98ff6044709d65a853c5c10de91308658a206965503b6a85a16438ea422becdbbd9bb40
 SHA512 
eec4276a58549f3cc57d6574186aebc72df0dd7dc2ab9acbaf410604b4d271dee6d5154caacd7297d20493d879434ca78050672e8197ff0fc63a36100c20c66c
+DIST postgis-2.5.1.tar.gz 16041872 BLAKE2B 
589cf7168d3698737a19d817b8efb91695c2c3f63d6c3aa24189d9a37459a28ca8a7db0450aa2d557699f76cd8e3ab1eec198bd332b294d976330fdc9d8a7f60
 SHA512 
c6c9c8c5befd945614e92d1062df1d753ca8b7fd69b70226065c2dac77a59783b14ece4da994187079b683ee090ba5a79389ba679f22fce8c20a5afc2c8dfca0

diff --git a/dev-db/postgis/postgis-2.4.6.ebuild 
b/dev-db/postgis/postgis-2.4.6.ebuild
new file mode 100644
index 000..c78f3e5ac27
--- /dev/null
+++ b/dev-db/postgis/postgis-2.4.6.ebuild
@@ -0,0 +1,125 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+POSTGRES_COMPAT=( 9.{3..6} {10..11} )
+POSTGRES_USEDEP="server"
+
+inherit autotools eutils postgres-multi versionator
+
+MY_PV=$(replace_version_separator 3 '')
+MY_P="${PN}-${MY_PV}"
+S="${WORKDIR}/${MY_P}"
+
+DESCRIPTION="Geographic Objects for PostgreSQL"
+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"
+IUSE="address-standardizer doc gtk static-libs mapbox test topology"
+
+RDEPEND="
+   ${POSTGRES_DEP}
+   dev-libs/json-c:=
+   dev-libs/libxml2:2
+   >=sci-libs/geos-3.5.0
+   >=sci-libs/proj-4.6.0
+   >=sci-libs/gdal-1.10.0
+   address-standardizer? ( dev-libs/libpcre )
+   gtk? ( x11-libs/gtk+:2 )
+   mapbox? ( dev-libs/protobuf )
+"
+
+DEPEND="${RDEPEND}
+   doc? (
+   app-text/docbook-xsl-stylesheets
+   app-text/docbook-xml-dtd:4.5
+   dev-libs/libxslt
+   || (
+   media-gfx/imagemagick[png]
+   
media-gfx/graphicsmagick[imagemagick,png]
+   )
+   )
+   virtual/pkgconfig
+   test? ( dev-util/cunit )
+"
+
+PGIS="$(get_version_component_range 1-2)"
+
+REQUIRED_USE="test? ( doc ) ${POSTGRES_REQ_USE}"
+
+# Needs a running psql instance, doesn't work out of the box
+RESTRICT="test"
+
+MAKEOPTS+=' -j1'
+
+# These modules are built using the same *FLAGS that were used to build
+# dev-db/postgresql. The right thing to do is to ignore the current
+# *FLAGS settings.
+QA_FLAGS_IGNORED="usr/lib(64)?/(rt)?postgis-${PGIS}\.so"
+
+src_prepare() {
+   eapply "${FILESDIR}/${PN}-2.2.0-arflags.patch"
+
+   local AT_M4DIR="macros"
+   eautoreconf
+
+   postgres-multi_src_prepare
+}
+
+src_configure() {
+   local myargs=""
+
+   use gtk  && myargs+=" --with-gui"
+
+   use address-standardizer || myargs+=" --without-address-standardizer"
+   use mapbox   || myargs+=" --without-protobuf"
+   use topology || myargs+=" --without-topology"
+
+   postgres-multi_foreach econf ${myargs}
+}
+
+src_compile() {
+   postgres-multi_foreach emake
+   postgres-multi_foreach emake -C topology
+
+   if use doc ; then
+   postgres-multi_foreach emake comments
+   postgres-multi_foreach emake cheatsheets
+   

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

2018-11-26 Thread Aaron Swenson
commit: ccd38d0162c3dea1860773d0c53dd6c7c90c56a8
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Mon Nov 26 10:19:29 2018 +
Commit: Aaron Swenson  gentoo  org>
CommitDate: Mon Nov 26 10:20:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccd38d01

mail-client/roundcube: Remove old, insecure

Bug: https://bugs.gentoo.org/669696
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Aaron W. Swenson  gentoo.org>

 mail-client/roundcube/Manifest   |  2 -
 mail-client/roundcube/roundcube-1.3.6.ebuild | 99 
 mail-client/roundcube/roundcube-1.3.7.ebuild | 96 ---
 3 files changed, 197 deletions(-)

diff --git a/mail-client/roundcube/Manifest b/mail-client/roundcube/Manifest
index 18b020db29d..3107020d7e0 100644
--- a/mail-client/roundcube/Manifest
+++ b/mail-client/roundcube/Manifest
@@ -1,3 +1 @@
-DIST roundcubemail-1.3.6-complete.tar.gz 5529370 BLAKE2B 
49fd04d81b7047c61d33007b49aff2fe8d68fb0572d305b51aa0ae997c06e4924a3ff32861c19741f0c4d82adb9abb317781de8c1b324120e57d77f413cfa480
 SHA512 
fc1627d4b539742524c43b3faaa8cb5d64f934ad03f7cf8a461580a3a38dccb11140d08499b988742a0892534b1eda52f37a50f0911015983b6e27703294c70e
-DIST roundcubemail-1.3.7-complete.tar.gz 5533537 BLAKE2B 
48d0c8e50d3d4878fa901bde40791bd9f6b11498f1acfed798bdd889817dc58baeec1985ad67b82326b48428f08b40730f301d2383df5a8700cf89bd31c01c0f
 SHA512 
2e6c1e94866750835d843b4f4ea77148e467dfbee3a15e20bd7c9086c11ad9919f0ddc6097c40cacfcdbc2ceacf2f6fb1b7e8546a7fcb9f20d0e5bf84283d724
 DIST roundcubemail-1.3.8-complete.tar.gz 5534385 BLAKE2B 
2f0cb528d0901d267c74d57baa18d1f057fdd2eb0f872f3cef1053847861998f8c6551fc17506ae365086ed1f86c3ee9e73a96adb2e43c6c32025e7afaf63710
 SHA512 
34dc9205cd93be6d6551086f4d22654dad7213b4b09000dc4def08357acdc634744ce1f560144a3d3b46e936258e90482e77fc4c691a55c205bcfdfe3745441e

diff --git a/mail-client/roundcube/roundcube-1.3.6.ebuild 
b/mail-client/roundcube/roundcube-1.3.6.ebuild
deleted file mode 100644
index 1c2eadee9c8..000
--- a/mail-client/roundcube/roundcube-1.3.6.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit webapp
-
-MY_PN=${PN}mail
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="A browser-based multilingual IMAP client with an application-like 
user interface"
-HOMEPAGE="https://roundcube.net;
-SRC_URI="https://github.com/${PN}/${MY_PN}/releases/download/${PV}/${MY_P}-complete.tar.gz;
-
-# roundcube is GPL-licensed, the rest of the licenses here are
-# for bundled PEAR components, googiespell and utf8.class.php
-LICENSE="GPL-3 BSD PHP-2.02 PHP-3 MIT public-domain"
-KEYWORDS="amd64 arm ppc ppc64 ~sparc x86"
-
-IUSE="enigma ldap managesieve mysql postgres sqlite ssl spell"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-# this function only sets DEPEND so we need to include that in RDEPEND
-need_httpd_cgi
-
-# :TODO: Support "endriod/qrcode: ~1.6.5" dep (ebuild needed)
-RDEPEND="
-   ${DEPEND}
-   
>=dev-lang/php-5.4.0[filter,gd,iconv,json,ldap?,pdo,postgres?,session,sockets,sqlite?,ssl?,unicode,xml]
-   >=dev-php/PEAR-Auth_SASL-1.1.0
-   >=dev-php/PEAR-Mail_Mime-1.10.0
-   >=dev-php/PEAR-Mail_mimeDecode-1.5.5
-   >=dev-php/PEAR-Net_IDNA2-0.2.0
-   >=dev-php/PEAR-Net_SMTP-1.7.1
-   >=dev-php/PEAR-Net_Socket-1.2.1
-   dev-php/PEAR-Console_CommandLine
-   dev-php/PEAR-Console_Getopt
-   dev-php/PEAR-Exception
-   virtual/httpd-php
-   enigma? (
-   >=dev-php/PEAR-Crypt_GPG-1.6.0
-   app-crypt/gnupg
-   )
-   ldap? (
-   >=dev-php/PEAR-Net_LDAP2-2.2.0
-   dev-php/PEAR-Net_LDAP3
-   )
-   managesieve? ( >=dev-php/PEAR-Net_Sieve-1.4.0 )
-   mysql? (
-   || (
-   dev-lang/php[mysql]
-   dev-lang/php[mysqli]
-   )
-   )
-   spell? ( dev-lang/php[curl,spell] )
-"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   default
-
-   # Redundant. (Bug #644896)
-   rm -r vendor/pear || die
-}
-
-src_install() {
-   webapp_src_preinst
-
-   dodoc CHANGELOG INSTALL README.md UPGRADING
-
-   insinto "${MY_HTDOCSDIR}"
-   doins -r [[:lower:]]* SQL
-   doins .htaccess
-
-   webapp_serverowned "${MY_HTDOCSDIR}"/logs
-   webapp_serverowned "${MY_HTDOCSDIR}"/temp
-
-   webapp_configfile "${MY_HTDOCSDIR}"/config/defaults.inc.php
-   webapp_postupgrade_txt en "${FILESDIR}/POST-UPGRADE.txt"
-
-   webapp_src_install
-}
-
-pkg_postinst() {
-   webapp_pkg_postinst
-
-   ewarn
-   ewarn "When upgrading from <= 0.9, note that the old configuration 
files"
-   ewarn "named main.inc.php and db.inc.php are deprecated and should be"
-   ewarn "replaced with one single config.inc.php file."
-   ewarn
-   ewarn "Run the ./bin/update.sh script to convert those"
-  

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

2018-11-26 Thread Jeroen Roovers
commit: 200ea45a05fa7bf4538426157d5f5a4e4115
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Nov 26 10:19:28 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Nov 26 10:19:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=200ea45a

dev-libs/confuse: Old

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Bug: https://bugs.gentoo.org/664328
Signed-off-by: Jeroen Roovers  gentoo.org>

 dev-libs/confuse/Manifest |  1 -
 dev-libs/confuse/confuse-3.2.1.ebuild | 50 ---
 2 files changed, 51 deletions(-)

diff --git a/dev-libs/confuse/Manifest b/dev-libs/confuse/Manifest
index 1a48119d572..49d169abc6b 100644
--- a/dev-libs/confuse/Manifest
+++ b/dev-libs/confuse/Manifest
@@ -1,3 +1,2 @@
 DIST confuse-3.0.tar.xz 449144 BLAKE2B 
c8e913aa8b074d55535c35ddce7de1a0f21dade78839f66723272780345d4b5c5f265c2040a4abc9b473a09e221b50450382dff60103198f72384d28d1ab068e
 SHA512 
12279045b772e94d2e29201ab1d7aef1ef8e698780a22d6a282d12f51ccd9a437e7817a4dd5e39bdfc8dae79700b72aa0783b4b983a935d751403d2cffd1161e
-DIST confuse-3.2.1.tar.xz 470260 BLAKE2B 
5327f7e71379b50620a6c44f1a9f88a0833d4b648874129a1d4eae6ec97a9ca748e80e902b74ba4c7669e2fda0d0bcd603ff95b5f096ca77b3ec7fe67263f0c6
 SHA512 
738bacf6a3abb9c64666fec103eb18c8456b994e7ba3562bdb090ef4eb33f0330da844de14d658ef44e74f90104f67ceaf408d21ddf0d251f4c6ddd80e0b387c
 DIST confuse-3.2.2.tar.xz 473912 BLAKE2B 
d8df03f4543291afa6d46a36c48f78d25aee7cdcd0fab7a37a639a73cd0562b52a70057075f83f7e4e56bb542a27561a65e3217c458d757345c46a29203e6187
 SHA512 
c6baea65e064fe7f2d1bde187c6dcbb7f03c31f5d777cb04576f9cc2d94e9c96b7ee202e030e9a2c7eb619deb240d9e76fb12b3528ae5aa0d3abe231354d12c9

diff --git a/dev-libs/confuse/confuse-3.2.1.ebuild 
b/dev-libs/confuse/confuse-3.2.1.ebuild
deleted file mode 100644
index 576798947c0..000
--- a/dev-libs/confuse/confuse-3.2.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils multilib-minimal
-
-DESCRIPTION="a configuration file parser library"
-HOMEPAGE="https://github.com/martinh/libconfuse;
-SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${P}.tar.xz"
-
-LICENSE="ISC"
-SLOT="0/2.0.0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
-
-IUSE="nls static-libs"
-
-DEPEND="sys-devel/flex
-   sys-devel/libtool
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-RDEPEND="nls? ( virtual/libintl[${MULTILIB_USEDEP}] )"
-
-DOCS=( AUTHORS )
-
-src_prepare() {
-   eapply_user
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   # examples are normally compiled but not installed. They
-   # fail during a mingw crosscompile.
-   local ECONF_SOURCE=${BUILD_DIR}
-   econf \
-   --enable-shared \
-   --disable-examples \
-   $(use_enable nls) \
-   $(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
-   prune_libtool_files
-
-   doman doc/man/man3/*.3
-   dodoc -r doc/html
-
-   docinto examples
-   dodoc examples/*.{c,conf}
-}



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

2018-11-26 Thread Jeroen Roovers
commit: 4c2385e6d6f176d0dc4a2d91b5a36ea883b89f3f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Nov 26 10:17:07 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Nov 26 10:17:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c2385e6

dev-libs/confuse: Version 3.2.2

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Bug: https://bugs.gentoo.org/664328
Signed-off-by: Jeroen Roovers  gentoo.org>

 dev-libs/confuse/Manifest |  1 +
 dev-libs/confuse/confuse-3.2.2.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-libs/confuse/Manifest b/dev-libs/confuse/Manifest
index 06c18295693..1a48119d572 100644
--- a/dev-libs/confuse/Manifest
+++ b/dev-libs/confuse/Manifest
@@ -1,2 +1,3 @@
 DIST confuse-3.0.tar.xz 449144 BLAKE2B 
c8e913aa8b074d55535c35ddce7de1a0f21dade78839f66723272780345d4b5c5f265c2040a4abc9b473a09e221b50450382dff60103198f72384d28d1ab068e
 SHA512 
12279045b772e94d2e29201ab1d7aef1ef8e698780a22d6a282d12f51ccd9a437e7817a4dd5e39bdfc8dae79700b72aa0783b4b983a935d751403d2cffd1161e
 DIST confuse-3.2.1.tar.xz 470260 BLAKE2B 
5327f7e71379b50620a6c44f1a9f88a0833d4b648874129a1d4eae6ec97a9ca748e80e902b74ba4c7669e2fda0d0bcd603ff95b5f096ca77b3ec7fe67263f0c6
 SHA512 
738bacf6a3abb9c64666fec103eb18c8456b994e7ba3562bdb090ef4eb33f0330da844de14d658ef44e74f90104f67ceaf408d21ddf0d251f4c6ddd80e0b387c
+DIST confuse-3.2.2.tar.xz 473912 BLAKE2B 
d8df03f4543291afa6d46a36c48f78d25aee7cdcd0fab7a37a639a73cd0562b52a70057075f83f7e4e56bb542a27561a65e3217c458d757345c46a29203e6187
 SHA512 
c6baea65e064fe7f2d1bde187c6dcbb7f03c31f5d777cb04576f9cc2d94e9c96b7ee202e030e9a2c7eb619deb240d9e76fb12b3528ae5aa0d3abe231354d12c9

diff --git a/dev-libs/confuse/confuse-3.2.2.ebuild 
b/dev-libs/confuse/confuse-3.2.2.ebuild
new file mode 100644
index 000..52a38f545bf
--- /dev/null
+++ b/dev-libs/confuse/confuse-3.2.2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit multilib-minimal
+
+DESCRIPTION="a configuration file parser library"
+HOMEPAGE="https://github.com/martinh/libconfuse;
+SRC_URI="${HOMEPAGE}/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="ISC"
+SLOT="0/2.0.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+
+IUSE="nls static-libs"
+
+BDEPEND="
+   sys-devel/flex
+   sys-devel/libtool
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+"
+RDEPEND="
+   nls? ( virtual/libintl[${MULTILIB_USEDEP}] )
+"
+
+DOCS=( AUTHORS )
+
+src_prepare() {
+   default
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   # examples are normally compiled but not installed. They
+   # fail during a mingw crosscompile.
+   local ECONF_SOURCE=${BUILD_DIR}
+   econf \
+   --enable-shared \
+   --disable-examples \
+   $(use_enable nls) \
+   $(use_enable static-libs static)
+}
+
+multilib_src_install_all() {
+   doman doc/man/man3/*.3
+   dodoc -r doc/html
+
+   docinto examples
+   dodoc examples/*.{c,conf}
+
+   find "${D}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/user/gerislay:master commit in: dev-python/junit2html/

2018-11-26 Thread gerion
commit: c5124957a127a2fa35bd9c4b6399e56e83a20703
Author: Gerion Entrup  flump  de>
AuthorDate: Mon Nov 26 10:12:08 2018 +
Commit: gerion  flump  de>
CommitDate: Mon Nov 26 10:14:46 2018 +
URL:https://gitweb.gentoo.org/repo/user/gerislay.git/commit/?id=c5124957

dev-python/junit2html: add for zephyr

Signed-off-by: Gerion Entrup  flump.de>

 dev-python/junit2html/Manifest |  2 ++
 dev-python/junit2html/junit2html-22.ebuild | 21 +
 2 files changed, 23 insertions(+)

diff --git a/dev-python/junit2html/Manifest b/dev-python/junit2html/Manifest
new file mode 100644
index 000..0bf6cd9
--- /dev/null
+++ b/dev-python/junit2html/Manifest
@@ -0,0 +1,2 @@
+DIST junit2html-v022.tar.gz 50730 BLAKE2B 
a961d90e0570da8f203cb978213d37890981757355f1176ea997006fc619939ddf27c0d3bbc7ac89d48dfc5f99c113e05907a72b63406e9cd98dc3568fb02baf
 SHA512 
2c3a0662edd705c5215e5900675ac10faafef75fd58514f2ac3315eb84e8f3a5f5a60cce7a19d2bcaf350e606ce01a6a3859fe406202e46e44cc85bb553f6ea1
+EBUILD junit2html-22.ebuild 537 BLAKE2B 
32b47dd6204ae6f8b6d7e8d5cee7d099782d9dbc6433eeccd8c1960c4807d57d8c49f62371a633dd91a86705e60112404dead10a2a5413648bfb7da422a59099
 SHA512 
b393d12c7f98f44ccc135831ffa0874406eb65149209feb85f885bdcecb87db8077d108a2a5404acc257b7e46f62019d047b1cf336e4f1138a00089e6ae74755

diff --git a/dev-python/junit2html/junit2html-22.ebuild 
b/dev-python/junit2html/junit2html-22.ebuild
new file mode 100644
index 000..6fe7efb
--- /dev/null
+++ b/dev-python/junit2html/junit2html-22.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+inherit distutils-r1
+
+DESCRIPTION="Tool to produce a single html file from a single junit xml file."
+HOMEPAGE="https://gitlab.com/inorton/junit2html;
+SRC_URI="https://gitlab.com/inorton/${PN}/-/archive/v0${PV}/${PN}-v0${PV}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+S="${WORKDIR}/${PN}-v0${PV}"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/user/gerislay:master commit in: dev-vcs/gitlint/

2018-11-26 Thread gerion
commit: 22253584c295ba3113dc4a775b4cd4a30c57c5d1
Author: Gerion Entrup  flump  de>
AuthorDate: Mon Nov 26 10:12:31 2018 +
Commit: gerion  flump  de>
CommitDate: Mon Nov 26 10:15:18 2018 +
URL:https://gitweb.gentoo.org/repo/user/gerislay.git/commit/?id=22253584

dev-vcs/gitlint: add for zephyr

Signed-off-by: Gerion Entrup  flump.de>

 dev-vcs/gitlint/Manifest  |  2 ++
 dev-vcs/gitlint/gitlint-0.10.0.ebuild | 23 +++
 2 files changed, 25 insertions(+)

diff --git a/dev-vcs/gitlint/Manifest b/dev-vcs/gitlint/Manifest
new file mode 100644
index 000..78b1ab4
--- /dev/null
+++ b/dev-vcs/gitlint/Manifest
@@ -0,0 +1,2 @@
+DIST gitlint-0.10.0.tar.gz 124351 BLAKE2B 
d599a72a7c908e8674545db9b2131026a9a792e0151f8e37c3b9d6cb3271d1b92071b55d681debb61704d981ab9633d82cc7d0544a40745c178c1e9da28667e0
 SHA512 
44a021b87e9fa2cea81b112c11e01ff1c05baa6d128ddbb89d6d4b58f17b80e42a888b690fa8c624b646b5d97372e8d5aa18ff0d1bb3b5d7c7a1695a48f660ee
+EBUILD gitlint-0.10.0.ebuild 622 BLAKE2B 
8c6560cad625ffb3ca70a406ac0be7083a16199c341d1e04ca5343fa56f68fe7a7b46553373206c24f2c8542153719caf9de3c914189bb19c002748e903ea442
 SHA512 
ce1dce509b94155b8a0e7c3532ee6ed5a69c0e82d90997662a4f9294e8c1f9b9f8384b3fa6fc05231823d7b7e523a9c3d9f7a48a46db002bef8ea2afdb6278c6

diff --git a/dev-vcs/gitlint/gitlint-0.10.0.ebuild 
b/dev-vcs/gitlint/gitlint-0.10.0.ebuild
new file mode 100644
index 000..dd046b2
--- /dev/null
+++ b/dev-vcs/gitlint/gitlint-0.10.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+inherit distutils-r1
+
+DESCRIPTION="Linting for your git commit messages"
+HOMEPAGE="https://github.com/jorisroovers/gitlint;
+SRC_URI="https://github.com/jorisroovers/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE=""
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
+   dev-python/click[${PYTHON_USEDEP}]
+   dev-python/sh[${PYTHON_USEDEP}]
+   dev-python/arrow[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"