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

2019-01-25 Thread Georgy Yakovlev
commit: 82b1db904fc938eb1a56ab6f5ea70331337d28a3
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Jan 26 07:38:18 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Jan 26 07:38:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82b1db90

dev-util/sccache: remove obsolete warning line

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

 dev-util/sccache/sccache-0.2.8-r1.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-util/sccache/sccache-0.2.8-r1.ebuild 
b/dev-util/sccache/sccache-0.2.8-r1.ebuild
index bf3c4e7086a..21a6f2c2688 100644
--- a/dev-util/sccache/sccache-0.2.8-r1.ebuild
+++ b/dev-util/sccache/sccache-0.2.8-r1.ebuild
@@ -353,8 +353,6 @@ src_test() {
 
 pkg_postinst() {
ewarn "${PN} is experimental, please use with care"
-   ewarn ""
-   ewarn "Currently there are no initscripts"
use memcached && optfeature "memcached backend support" 
net-misc/memcached
use redis && optfeature "redis backend support" dev-db/redis
 }



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

2019-01-25 Thread Georgy Yakovlev
commit: 586c7e79932500ea8e4e0dc8a714683f0a9621cf
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Jan 26 07:30:20 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Jan 26 07:30:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=586c7e79

dev-util/sccache: add initscripts for scheduler and server

systemd units will follow later

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

 dev-util/sccache/files/logrotated|   5 +
 dev-util/sccache/files/scheduler.confd   |  21 ++
 dev-util/sccache/files/scheduler.initd   |  19 ++
 dev-util/sccache/files/server.confd  |  21 ++
 dev-util/sccache/files/server.initd  |  19 ++
 dev-util/sccache/sccache-0.2.8-r1.ebuild | 360 +++
 6 files changed, 445 insertions(+)

diff --git a/dev-util/sccache/files/logrotated 
b/dev-util/sccache/files/logrotated
new file mode 100644
index 000..83824277bd4
--- /dev/null
+++ b/dev-util/sccache/files/logrotated
@@ -0,0 +1,5 @@
+/var/log/sccache-scheduler.log /var/log/sccache-scheduler.error.log 
/var/log/sccache-server.log /var/log/sccache-server.error.log {
+   copytruncate
+   missingok
+   notifempty
+}

diff --git a/dev-util/sccache/files/scheduler.confd 
b/dev-util/sccache/files/scheduler.confd
new file mode 100644
index 000..a70327100fc
--- /dev/null
+++ b/dev-util/sccache/files/scheduler.confd
@@ -0,0 +1,21 @@
+# /etc/conf.d/sccache-scheduler: config file for /etc/init.d/sccache-scheduler
+#
+
+# Full path to config file. /etc/sccache/scheduler.conf is default if not set.
+#SCCACHE_SCHEDULER_CONF="/etc/sccache/scheduler.conf"
+
+# logging is off by default, see https://docs.rs/env_logger for possible values
+#SCCACHE_SCHEDULER_LOGLEVEL=info
+
+# plain file (preferred), change logrotate file as well if you change this.
+#output_log=/var/log/"${RC_SVCNAME}.log"
+#error_log=/var/log/"${RC_SVCNAME}.error.log"
+
+# syslog support via LOGGER(1). Note this spawns logger processes per io stream
+#output_logger="logger -p daemon.none --"
+#error_logger="logger -p daemon.err --"
+
+
+# no limits set by default, see IONICE(1), NICE(1), START-STOP-DAEMON(8)
+#SSD_NICELEVEL=15
+#SSD_IONICELEVEL=3

diff --git a/dev-util/sccache/files/scheduler.initd 
b/dev-util/sccache/files/scheduler.initd
new file mode 100755
index 000..fd4d616a6bd
--- /dev/null
+++ b/dev-util/sccache/files/scheduler.initd
@@ -0,0 +1,19 @@
+#!/sbin/openrc-run
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+SCCACHE_SCHEDULER_CONF="${SCCACHE_SCHEDULER_CONF:-/etc/sccache/scheduler.conf}"
+
+depend() {
+   need localmount
+   use net
+}
+
+description="Starts sccache build scheduler server"
+
+command="/usr/bin/sccache-dist"
+command_args="scheduler ${SCCACHE_SCHEDULER_CONF:+--config 
${SCCACHE_SCHEDULER_CONF}}"
+command_background="true"
+pidfile="/run/${RC_SVCNAME}.pid"
+required_files="${SCCACHE_SCHEDULER_CONF}"
+start_stop_daemon_args="--env RUST_LOG=${SCCACHE_SCHEDULER_LOGLEVEL:- }"

diff --git a/dev-util/sccache/files/server.confd 
b/dev-util/sccache/files/server.confd
new file mode 100644
index 000..20f3f843e60
--- /dev/null
+++ b/dev-util/sccache/files/server.confd
@@ -0,0 +1,21 @@
+# /etc/conf.d/sccache-scheduler: config file for /etc/init.d/sccache-scheduler
+#
+
+# Full path to config file. /etc/sccache/server.conf is default if not set.
+#SCCACHE_SERVER_CONF="/etc/sccache/server.conf"
+
+# logging is off by default, see https://docs.rs/env_logger for possible values
+#SCCACHE_SERVER_LOGLEVEL=info
+
+# plain file (preferred), change logrotate file as well if you change this.
+#output_log=/var/log/"${RC_SVCNAME}.log"
+#error_log=/var/log/"${RC_SVCNAME}.error.log"
+
+# syslog support via LOGGER(1). Note this spawns logger processes per io stream
+#output_logger="logger -p daemon.none --"
+#error_logger="logger -p daemon.err --"
+
+
+# no limits set by default, see IONICE(1), NICE(1), START-STOP-DAEMON(8)
+#SSD_NICELEVEL=15
+#SSD_IONICELEVEL=3

diff --git a/dev-util/sccache/files/server.initd 
b/dev-util/sccache/files/server.initd
new file mode 100755
index 000..004a0ab8356
--- /dev/null
+++ b/dev-util/sccache/files/server.initd
@@ -0,0 +1,19 @@
+#!/sbin/openrc-run
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+SCCACHE_SERVER_CONF="${SCCACHE_SERVER_CONF:-/etc/sccache/scheduler.conf}"
+
+depend() {
+   need localmount
+   use net
+}
+
+description="Starts sccache build server"
+
+command="/usr/bin/sccache-dist"
+command_args="server ${SCCACHE_SERVER_CONF:+--config ${SCCACHE_SERVER_CONF}}"
+command_background="true"
+pidfile="/run/${RC_SVCNAME}.pid"
+required_files="${SCCACHE_SERVER_CONF}"
+start_stop_daemon_args="--env RUST_LOG=${SCCACHE_SERVER_LOGLEVEL:- }"

diff --git a/dev-util/sccache/sccache-0.2.8-r1.ebuild 

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

2019-01-25 Thread Georgy Yakovlev
commit: c027d7a83b60b780d0c301956ecd85610ec89703
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Jan 26 07:31:33 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Jan 26 07:31:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c027d7a8

dev-util/sccache: drop old

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

 dev-util/sccache/sccache-0.2.8.ebuild | 342 --
 1 file changed, 342 deletions(-)

diff --git a/dev-util/sccache/sccache-0.2.8.ebuild 
b/dev-util/sccache/sccache-0.2.8.ebuild
deleted file mode 100644
index 5dbe457900e..000
--- a/dev-util/sccache/sccache-0.2.8.ebuild
+++ /dev/null
@@ -1,342 +0,0 @@
-# Copyright 2017-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# needs itoa-0.3.4 for tests
-CRATES="
-adler32-1.0.3
-aho-corasick-0.6.9
-ansi_term-0.11.0
-ar-0.6.1
-arc-swap-0.3.6
-arraydeque-0.4.3
-arrayvec-0.4.7
-ascii-0.8.7
-ascii-0.9.1
-assert_cmd-0.9.1
-atty-0.2.11
-backtrace-0.3.9
-backtrace-sys-0.1.24
-base64-0.9.3
-bincode-0.8.0
-bincode-1.0.1
-bitflags-0.9.1
-bitflags-1.0.4
-buf_redux-0.6.3
-bufstream-0.1.4
-build_const-0.2.1
-byteorder-1.2.7
-bytes-0.4.11
-case-0.1.0
-cc-1.0.25
-cfg-if-0.1.6
-chrono-0.4.6
-chunked_transfer-0.3.1
-clap-2.32.0
-cloudabi-0.0.3
-combine-3.6.3
-conhash-0.4.0
-core-foundation-0.2.3
-core-foundation-0.5.1
-core-foundation-sys-0.2.3
-core-foundation-sys-0.5.1
-counted-array-0.1.2
-crc-1.8.1
-crossbeam-deque-0.6.2
-crossbeam-epoch-0.6.1
-crossbeam-utils-0.5.0
-crossbeam-utils-0.6.1
-daemonize-0.3.0
-derive-error-0.0.3
-difference-2.0.0
-directories-1.0.2
-dtoa-0.4.3
-either-1.5.0
-encoding_rs-0.8.10
-env_logger-0.5.13
-error-chain-0.12.0
-escargot-0.3.1
-failure-0.1.3
-failure_derive-0.1.3
-filetime-0.1.15
-filetime-0.2.4
-flate2-1.0.5
-flate2-crc-0.1.1
-float-cmp-0.4.0
-fnv-1.0.6
-foreign-types-0.3.2
-foreign-types-shared-0.1.1
-fuchsia-zircon-0.3.3
-fuchsia-zircon-sys-0.3.3
-futures-0.1.25
-futures-cpupool-0.1.8
-gcc-0.3.55
-getopts-0.2.18
-h2-0.1.13
-http-0.1.14
-httparse-1.3.3
-humantime-1.1.1
-hyper-0.11.27
-hyper-0.12.16
-hyper-tls-0.1.4
-hyper-tls-0.3.1
-hyperx-0.12.0
-idna-0.1.5
-indexmap-1.0.2
-iovec-0.1.2
-itertools-0.7.9
-itoa-0.3.4
-itoa-0.4.3
-jobserver-0.1.11
-jsonwebtoken-5.0.1
-kernel32-sys-0.2.2
-language-tags-0.2.2
-lazy_static-0.2.11
-lazy_static-1.2.0
-lazycell-1.2.0
-libc-0.2.44
-libflate-0.1.18
-libmount-0.1.11
-linked-hash-map-0.2.1
-local-encoding-0.2.0
-lock_api-0.1.5
-log-0.3.9
-log-0.4.6
-lru-disk-cache-0.2.0
-matches-0.1.8
-md5-0.3.8
-memcached-rs-0.3.0
-memchr-1.0.2
-memchr-2.1.1
-memoffset-0.2.1
-mime-0.2.6
-mime-0.3.12
-mime_guess-1.8.6
-mime_guess-2.0.0-alpha.6
-miniz_oxide-0.2.0
-miniz_oxide_c_api-0.2.0
-mio-0.6.16
-mio-named-pipes-0.1.6
-mio-uds-0.6.7
-miow-0.2.1
-miow-0.3.3
-msdos_time-0.1.6
-multipart-0.13.6
-native-tls-0.1.5
-native-tls-0.2.2
-net2-0.2.33
-nix-0.11.0
-nodrop-0.1.13
-normalize-line-endings-0.2.2
-num-integer-0.1.39
-num-traits-0.1.43
-num-traits-0.2.6
-num_cpus-1.8.0
-number_prefix-0.2.8
-openssl-0.10.15
-openssl-0.9.24
-openssl-probe-0.1.2
-openssl-sys-0.9.39
-owning_ref-0.4.0
-parking_lot-0.6.4
-parking_lot_core-0.3.1
-percent-encoding-1.0.1
-phf-0.7.23
-phf_codegen-0.7.23
-phf_generator-0.7.23
-phf_shared-0.7.23
-pkg-config-0.3.14
-podio-0.1.6
-predicates-0.9.1
-predicates-core-0.9.0
-predicates-tree-0.9.0
-proc-macro2-0.4.24
-pulldown-cmark-0.0.3
-quick-error-1.2.2
-quote-0.3.15
-quote-0.6.10
-rand-0.3.22
-rand-0.4.3
-rand-0.5.5
-rand-0.6.1
-rand_chacha-0.1.0
-rand_core-0.2.2
-rand_core-0.3.0
-rand_hc-0.1.0
-rand_isaac-0.1.0
-rand_pcg-0.1.1
-rand_xorshift-0.1.0
-redis-0.9.1
-redox_syscall-0.1.42
-redox_termios-0.1.1
-regex-1.0.6
-regex-syntax-0.6.3
-relay-0.1.1
-remove_dir_all-0.5.1
-reqwest-0.8.8
-reqwest-0.9.5
-retry-0.4.0
-ring-0.13.2
-rouille-2.2.0
-rust-crypto-0.2.36
-rustc-demangle-0.1.9
-rustc-serialize-0.3.24
-rustc_version-0.2.3
-ryu-0.2.7
-safemem-0.2.0
-safemem-0.3.0
-same-file-0.1.3
-schannel-0.1.14
-scoped-tls-0.1.2
-scopeguard-0.3.3
-security-framework-0.1.16
-security-framework-0.2.1
-security-framework-sys-0.1.16
-security-framework-sys-0.2.1
-selenium-rs-0.1.1
-semver-0.9.0
-semver-parser-0.7.0
-serde-1.0.80
-serde_derive-1.0.80
-serde_json-1.0.33
-serde_urlencoded-0.5.4
-sha1-0.6.0
-signal-hook-0.1.6
-siphasher-0.2.3
-skeptic-0.4.0
-slab-0.4.1
-smallvec-0.6.6
-socket2-0.3.8
-stable_deref_trait-1.1.1
-string-0.1.2
-strip-ansi-escapes-0.1.0
-strsim-0.7.0
-syn-0.11.11
-syn-0.15.21
-synom-0.11.3
-synstructure-0.10.1
-tar-0.4.20
-tempdir-0.3.7
-tempfile-3.0.4
-term-0.5.1
-termcolor-1.0.4
-termion-1.5.1
-textwrap-0.10.0
-thread_local-0.3.6
-threadpool-1.7.1
-time-0.1.40
-tiny_http-0.6.2
-tokio-0.1.13
-tokio-codec-0.1.1
-tokio-core-0.1.17
-tokio-current-thread-0.1.4
-tokio-executor-0.1.5
-tokio-fs-0.1.4
-tokio-io-0.1.10
-tokio-named-pipes-0.1.0
-tokio-process-0.2.3
-tokio-reactor-0.1.7
-tokio-serde-0.1.0

[gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/, dev-lang/rust/files/

2019-01-25 Thread Georgy Yakovlev
commit: 0e00cd7cc089acdd3114b4aafc34fc921aabe058
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Jan 26 02:56:50 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Jan 26 02:58:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e00cd7c

dev-lang/rust: drop unneeded patch

Package-Manager: Portage-2.3.58, Repoman-2.3.12
Acked-by: Thomas Deutschmann  gentoo.org>
Signed-off-by: Georgy Yakovlev  gentoo.org>

 .../1.32.0-fix-configure-of-bundled-llvm.patch | 32 --
 dev-lang/rust/rust-1.32.0.ebuild   |  1 -
 2 files changed, 33 deletions(-)

diff --git a/dev-lang/rust/files/1.32.0-fix-configure-of-bundled-llvm.patch 
b/dev-lang/rust/files/1.32.0-fix-configure-of-bundled-llvm.patch
deleted file mode 100644
index eaeab87774e..000
--- a/dev-lang/rust/files/1.32.0-fix-configure-of-bundled-llvm.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Revert "[CMake] Unconditionally add .h and .td files to target sources"
-
-This reverts commit 
https://github.com/llvm-mirror/llvm/commit/6fb010f388bb2cb2f00fe039123092308ac4865d.
-
-Bug: https://bugs.gentoo.org/675752#c7
 a/src/llvm/cmake/modules/LLVMProcessSources.cmake
-+++ b/src/llvm/cmake/modules/LLVMProcessSources.cmake
-@@ -52,15 +52,16 @@ function(llvm_process_sources OUT_VAR)
-   cmake_parse_arguments(ARG "" "" "ADDITIONAL_HEADERS;ADDITIONAL_HEADER_DIRS" 
${ARGN})
-   set(sources ${ARG_UNPARSED_ARGUMENTS})
-   llvm_check_source_file_list( ${sources} )
--  
--  # This adds .td and .h files to the Visual Studio solution:
--  add_td_sources(sources)
--  find_all_header_files(hdrs "${ARG_ADDITIONAL_HEADER_DIRS}")
--  if (hdrs)
--set_source_files_properties(${hdrs} PROPERTIES HEADER_FILE_ONLY ON)
-+  if( LLVM_ENABLE_IDE )
-+# This adds .td and .h files to the Visual Studio solution:
-+add_td_sources(sources)
-+find_all_header_files(hdrs "${ARG_ADDITIONAL_HEADER_DIRS}")
-+if (hdrs)
-+  set_source_files_properties(${hdrs} PROPERTIES HEADER_FILE_ONLY ON)
-+endif()
-+set_source_files_properties(${ARG_ADDITIONAL_HEADERS} PROPERTIES 
HEADER_FILE_ONLY ON)
-+list(APPEND sources ${ARG_ADDITIONAL_HEADERS} ${hdrs})
-   endif()
--  set_source_files_properties(${ARG_ADDITIONAL_HEADERS} PROPERTIES 
HEADER_FILE_ONLY ON)
--  list(APPEND sources ${ARG_ADDITIONAL_HEADERS} ${hdrs})
- 
-   set( ${OUT_VAR} ${sources} PARENT_SCOPE )
- endfunction(llvm_process_sources)

diff --git a/dev-lang/rust/rust-1.32.0.ebuild b/dev-lang/rust/rust-1.32.0.ebuild
index bc2a6106b8a..ea00024950f 100644
--- a/dev-lang/rust/rust-1.32.0.ebuild
+++ b/dev-lang/rust/rust-1.32.0.ebuild
@@ -63,7 +63,6 @@ S="${WORKDIR}/${MY_P}-src"
 
 PATCHES=(
"${FILESDIR}"/1.30.1-clippy-sysroot.patch
-   "${FILESDIR}"/1.32.0-fix-configure-of-bundled-llvm.patch
"${FILESDIR}"/1.32.0-system-llvm-7-SIGSEGV.patch
 )
 



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

2019-01-25 Thread Georgy Yakovlev
commit: 7f55b5ccfddc83be39eb58a476b026473e6b0e13
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Jan 26 00:29:30 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Jan 26 03:35:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f55b5cc

dev-util/sccache: new package

ccache analog with support for:
rust
various storage backends (local, redis, memcached)
cloud storage
distributed storage

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

 dev-util/sccache/Manifest | 283 
 dev-util/sccache/metadata.xml |  26 +++
 dev-util/sccache/sccache-0.2.8.ebuild | 342 ++
 3 files changed, 651 insertions(+)

diff --git a/dev-util/sccache/Manifest b/dev-util/sccache/Manifest
new file mode 100644
index 000..dc5a9e43e1f
--- /dev/null
+++ b/dev-util/sccache/Manifest
@@ -0,0 +1,283 @@
+DIST adler32-1.0.3.crate 5734 BLAKE2B 
31cd43d1e13b5e854a195824084dc34a157ef59cccabaa335cfba2de532096046bbb66a9fce2430979b243509d608bfef752c46d80bdcc7e420e039269d575a3
 SHA512 
2128cc34abc74a363b18eec5abf414b95e4d84bfd99b6508ac807e13c026ad0e37e67b5a8c429212b85e78071f03e0df24ee70db5995772c4bc78acfb0234459
+DIST aho-corasick-0.6.9.crate 25979 BLAKE2B 
a1bbec11c322d20d435d8683151b144e31f04b07ca47fc1c8128464533256f4004c8d346fe59a1e1c41be5609fdf768fad5f1afa5df94d1a02ced5c4f02c4bac
 SHA512 
8dfc817b435d8a44fb4ca79bb20e283659c2fe9a75a4892389958f5880acc436bbe32552098429f15585ee025d064fdb5806b814f0e9d67a4261ffd23852172b
+DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
+DIST ar-0.6.1.crate 13383 BLAKE2B 
d52fe70cb51dc473a7f1947628db963fd52e0959b60bff684bb466509cf9f3f4867a47ce06fe6b82887f8175dfb2f5d36bf3b48c46f16c2ccb625a4a1c7de7b3
 SHA512 
38f1863cb1265ab4de71b2b9dd8e9de35cf0da9af5a6276704cdf10c596c92c43e0128c334f6f4a1a94d4b39ee04770f99dbd4a8697b2e47abffa8ff7e1577a5
+DIST arc-swap-0.3.6.crate 41603 BLAKE2B 
c340a43ce48a7e0b418dbfd9957e840c8e51f65fef4e08fbb2759e6ef8c29f36b4b74b75d0277c8b774311c6ae798497139a944e585ceb8734c3d7c4b6e0126a
 SHA512 
6cdf0fd63c813c9c11ae5587b4a681412873f71531054e119b5771a29089e344d44d2a4cc8347cefa76b33cb7a313308ea069251f66fc63e85f38705191d46e1
+DIST arraydeque-0.4.3.crate 17884 BLAKE2B 
7c104ffc8c3fce4664a21240ef3e921ed07205ad2bf204c0910ead05231ecc64e6ebd2ee832ebef2aea10382433309ea10153f1466e970f1949543ff24b2cf3a
 SHA512 
3fde1697f1b64a9abdaa996b36c45c64e67d9f081807d95c0ca9c262382839f10a527909cc99558878e21a9e3a4463dff2fe2734f62dde67df55d508cc34e342
+DIST arrayvec-0.4.7.crate 22946 BLAKE2B 
93d17ae9e706969e319980b4e00dd0a6c040c8d62cd41d1de34ab997e28798329e00d3dc3893da45ce5bc066fcf70dd5d8e98a79fbac8fc06d33a073a97b7b89
 SHA512 
195faecd7709eb908227cda7111e1b736ecf96120f9b615f1dc0a9a1cc61947e2ad4fedc7fc81d14405b51a4c8a216f81b8ed1d1d603a9fa451a38b4637e2bae
+DIST ascii-0.8.7.crate 23773 BLAKE2B 
52a81c714d4478af4298bf96e376c48bff248de825d1bc1f69d58380ee5b5e09ed76db713dffd0f8697f74f694775deb754b91c7b11595e526da11b877299693
 SHA512 
255efb6df7a297db6ada9571749e62bf041f5e777ba69dd367273db76282f244244e0c9e4c002f59e8d542a4c1f75a6a26a618d5962fe051ffb16349285186bc
+DIST ascii-0.9.1.crate 25317 BLAKE2B 
4cbb9afe82675c5d4419bce5dcb640f56ed168aff32b39bafd6f4539729159eb44130ea3802800357c8a618278f824f71a5b5c6b3d8724d04372fcbaa34828d1
 SHA512 
3e74dc12133e4530453daccdffd2fce2fc48d41b93509d3153f3d58803a7a00cde0543b96089d637539b97a5ad859270dfa4202d0b11658a51a6b6c88adb2f3b
+DIST assert_cmd-0.9.1.crate 17844 BLAKE2B 
fbdb8c2e0a185d9d4f275021295e0edb74ca46f41d278e9f2fecb1ac115499b6a26729b31e0538a8ea82136909b073ff3a8f8cbec9b795c6c035de949b649bc6
 SHA512 
761d43b5be35eba9ca5d49f6ec32e1e37f25dda18469b22f8d2e9efe78fd23ab298ff28bf1239399e4fc783659665969762a529e69db96ade3392a155b39cc61
+DIST atty-0.2.11.crate 5916 BLAKE2B 
e502c23faaa9dd27cc5865b68a721b0403071edb483fca0c745707f4c0ca1b1787b5677b2d8ad7f327b8f5588ba784126ce78496c1db54f7ca4ce0ccea669499
 SHA512 
9d6417dc1e8abdb4969418525b36c451274fd76769adb57bef9875ef62ef521c50d58626ebc4f96d2bea32cbadb6999fd67653b570293d7253b403b6d0736c79
+DIST backtrace-0.3.9.crate 31054 BLAKE2B 
5d90d098d149198eabe4665b1eb2cf41c5f392ddc1c5cc499047dd72533d79b679943781445f7d86f269a15d3f8ca2775dfe89123935d32ccef4b8151547283e
 SHA512 
edb485ad27d19e0cccea123cc6a9db5b3222831e48722d8fcec7349fd1c4b62b67ab1f488fea4973da82c8f17a86aeba4ea8f2fc1aa60f6528833cda39efa637
+DIST backtrace-sys-0.1.24.crate 522332 BLAKE2B 
aebfee4b257b44ce127f3bc13d7622dcb0d6cb4c1e73d504b8d77b6c0b1ed47e7ca310cb6b41798cd13e6589739c352d9e33072e20fae0547d292312604a27d9
 SHA512 
7e7b279bbe5f3d8bc2ff3234df11d7b08cb09209c861c24b3fa67dcd89699bd80a6fbf93d3b0b287544f73792983172bfb5e5c86caedee59f09ee66d259fd0c7
+DIST 

[gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/files/, dev-lang/rust/

2019-01-25 Thread Georgy Yakovlev
commit: 34783cfa9869949d36d723bcdf0039f3308abee8
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Jan 26 01:13:29 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Jan 26 02:58:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34783cfa

dev-lang/rust: fix segfaults with system llvm:7

Bug: https://bugs.gentoo.org/675752
Package-Manager: Portage-2.3.57, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev  gentoo.org>

 .../rust/files/1.32.0-system-llvm-7-SIGSEGV.patch  | 33 ++
 dev-lang/rust/rust-1.32.0.ebuild   |  1 +
 2 files changed, 34 insertions(+)

diff --git a/dev-lang/rust/files/1.32.0-system-llvm-7-SIGSEGV.patch 
b/dev-lang/rust/files/1.32.0-system-llvm-7-SIGSEGV.patch
new file mode 100644
index 000..afc2cabde4b
--- /dev/null
+++ b/dev-lang/rust/files/1.32.0-system-llvm-7-SIGSEGV.patch
@@ -0,0 +1,33 @@
+From 1c95f5a34c14f08d65cdd198827e3a2fcb63cf39 Mon Sep 17 00:00:00 2001
+From: Tom Tromey 
+Date: Tue, 22 Jan 2019 11:13:53 -0700
+Subject: [PATCH] Fix issue 57762
+
+Issue 57762 points out a compiler crash when the compiler was built
+using a stock LLVM 7.  LLVM 7 was released without a necessary fix for
+a bug in the DWARF discriminant code.
+
+This patch changes rustc to use the fallback mode on (non-Rust) LLVM 7.
+
+Closes #57762
+---
+ src/librustc_codegen_llvm/debuginfo/metadata.rs | 6 +-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/src/librustc_codegen_llvm/debuginfo/metadata.rs 
b/src/librustc_codegen_llvm/debuginfo/metadata.rs
+index 6deedd0b5ea3..a354eef6887a 100644
+--- a/src/librustc_codegen_llvm/debuginfo/metadata.rs
 b/src/librustc_codegen_llvm/debuginfo/metadata.rs
+@@ -1164,7 +1164,11 @@ fn use_enum_fallback(cx: ) -> bool {
+ // On MSVC we have to use the fallback mode, because LLVM doesn't
+ // lower variant parts to PDB.
+ return cx.sess().target.target.options.is_like_msvc
+-|| llvm_util::get_major_version() < 7;
++|| llvm_util::get_major_version() < 7
++// LLVM version 7 did not release with an important bug fix;
++// but the required patch is in the equivalent Rust LLVM.
++// See https://github.com/rust-lang/rust/issues/57762.
++|| (llvm_util::get_major_version() == 7 && unsafe { 
!llvm::LLVMRustIsRustLLVM() });
+ }
+ 
+ // Describes the members of an enum value: An enum is described as a union of

diff --git a/dev-lang/rust/rust-1.32.0.ebuild b/dev-lang/rust/rust-1.32.0.ebuild
index d7262e896e2..bc2a6106b8a 100644
--- a/dev-lang/rust/rust-1.32.0.ebuild
+++ b/dev-lang/rust/rust-1.32.0.ebuild
@@ -64,6 +64,7 @@ S="${WORKDIR}/${MY_P}-src"
 PATCHES=(
"${FILESDIR}"/1.30.1-clippy-sysroot.patch
"${FILESDIR}"/1.32.0-fix-configure-of-bundled-llvm.patch
+   "${FILESDIR}"/1.32.0-system-llvm-7-SIGSEGV.patch
 )
 
 toml_usex() {



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

2019-01-25 Thread Georgy Yakovlev
commit: 5346e2504a4c5ed64fbb41cc92b9a3095d59a656
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Jan 26 01:16:31 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Jan 26 03:35:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5346e250

profiles: remove system-llvm usemask for rust

Closes: https://bugs.gentoo.org/675752
Signed-off-by: Georgy Yakovlev  gentoo.org>

 profiles/base/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index d2047150349..6ef493ec731 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -7,10 +7,6 @@
 # This file is only for generic masks. For arch-specific masks (i.e.
 # mask everywhere, unmask on arch/*) use arch/base.
 
-# Georgy Yakovlev  (19 Jan 2019)
-# currently broken, segfaults, bug #675752
->=dev-lang/rust-1.32.0 system-llvm
-
 # Sven Wegener  (18 Jan 2019)
 # Waiting for >=dev-libs/libressl-2.7 to be unmasked.
 >=net-libs/libvncserver-0.9.12 libressl



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

2019-01-25 Thread Andreas K. Hüttel
commit: f1da9f2209af9f8b1f09f139a1f1491a5baba851
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jan 26 01:41:54 2019 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Jan 26 01:41:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1da9f22

media-libs/allegro: Stable -r2 for bug 670781

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

 media-libs/allegro/allegro-4.4.2-r1.ebuild | 111 -
 media-libs/allegro/allegro-4.4.2-r2.ebuild |   2 +-
 2 files changed, 1 insertion(+), 112 deletions(-)

diff --git a/media-libs/allegro/allegro-4.4.2-r1.ebuild 
b/media-libs/allegro/allegro-4.4.2-r1.ebuild
deleted file mode 100644
index 06ed3de8d26..000
--- a/media-libs/allegro/allegro-4.4.2-r1.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-CMAKE_IN_SOURCE_BUILD=1
-inherit cmake-utils desktop
-
-DESCRIPTION="cross-platform multimedia library"
-HOMEPAGE="https://liballeg.org/;
-SRC_URI="mirror://sourceforge/alleg/${P}.tar.gz"
-
-LICENSE="Allegro MIT GPL-2+ ZLIB"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~mips ppc ppc64 x86"
-IUSE="alsa fbcon jack jpeg opengl oss png svga test vga vorbis X"
-
-RDEPEND="
-   alsa? ( media-libs/alsa-lib )
-   jack? ( media-sound/jack-audio-connection-kit )
-   jpeg? ( virtual/jpeg:0 )
-   png? ( media-libs/libpng:0= )
-   svga? ( media-libs/svgalib )
-   vorbis? ( media-libs/libvorbis )
-   X? (
-   x11-libs/libX11
-   x11-libs/libXcursor
-   x11-libs/libXext
-   x11-libs/libXpm
-   x11-libs/libXt
-   x11-libs/libXxf86dga
-   x11-libs/libXxf86vm
-   opengl? (
-   virtual/glu
-   virtual/opengl
-   )
-   )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   X? ( x11-base/xorg-proto )"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-shared.patch
-   "${FILESDIR}"/${P}-underlink.patch
-   "${FILESDIR}"/${P}-gentoo.patch
-   "${FILESDIR}"/${P}-rpath.patch
-   "${FILESDIR}"/${P}-Werror-format-security.patch # bug 540470
-)
-
-src_prepare() {
-   cmake-utils_src_prepare
-
-   sed -i \
-   -e "s:allegro-\${ALLEGRO_VERSION}:${PF}:" \
-   docs/CMakeLists.txt || die
-}
-
-src_configure() {
-   # WANT_LINUX_CONSOLE is by default OFF
-   # WANT_EXAMPLES doesn't install anything
-   local mycmakeargs=(
-   -DDOCDIR=share/doc
-   -DINFODIR=share/info
-   -DMANDIR=share/man
-   -DWANT_ALSA=$(usex alsa)
-   -DWANT_EXAMPLES=OFF
-   -DWANT_JACK=$(usex jack)
-   -DWANT_JPGALLEG=$(usex jpeg)
-   -DWANT_LINUX_CONSOLE=OFF
-   -DWANT_LINUX_FBCON=$(usex fbcon)
-   -DWANT_LINUX_SVGALIB=$(usex svga)
-   -DWANT_LINUX_VGA=$(usex vga)
-   -DWANT_LOADPNG=$(usex png)
-   -DWANT_LOGG=$(usex vorbis)
-   -DWANT_OSS=$(usex oss)
-   -DWANT_TESTS=$(usex test)
-   -DWANT_TOOLS=$(usex X)
-   -DWANT_X11=$(usex X)
-   )
-
-   if use X; then
-   mycmakeargs+=( -DWANT_ALLEGROGL=$(usex opengl) )
-   else
-   mycmakeargs+=( -DWANT_ALLEGROGL=OFF )
-   fi
-
-   cmake-utils_src_configure
-}
-
-src_install() {
-   rm -r docs/html/{build,tmpfile.txt} || die
-   local HTML_DOCS=( docs/html/. )
-
-   cmake-utils_src_install
-
-   #176020 (init_dialog.3), #409305 (key.3)
-   pushd docs/man >/dev/null
-   local manpage
-   for manpage in $(ls -d *.3); do
-   newman ${manpage} ${PN}-${manpage}
-   done
-   popd >/dev/null
-
-   if use X; then
-   newbin setup/setup ${PN}-setup
-   insinto /usr/share/${PN}
-   doins {keyboard,language,setup/setup}.dat
-   newicon misc/icon.png ${PN}.png
-   make_desktop_entry ${PN}-setup "Allegro Setup" ${PN} "Settings"
-   fi
-}

diff --git a/media-libs/allegro/allegro-4.4.2-r2.ebuild 
b/media-libs/allegro/allegro-4.4.2-r2.ebuild
index 19cd6bed639..5797f5829b3 100644
--- a/media-libs/allegro/allegro-4.4.2-r2.ebuild
+++ b/media-libs/allegro/allegro-4.4.2-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/alleg/${P}.tar.gz"
 
 LICENSE="Allegro MIT GPL-2+ ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~mips ppc ppc64 x86"
 IUSE="alsa fbcon jack jpeg opengl oss png svga test vga vorbis X"
 
 RDEPEND="



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

2019-01-25 Thread Andreas K. Hüttel
commit: b876fbf030e9ef9958d178e4891155ed2753c23f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jan 26 01:35:46 2019 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Jan 26 01:35:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b876fbf0

sci-mathematics/pspp: Remove old

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

 sci-mathematics/pspp/Manifest   |  2 -
 sci-mathematics/pspp/pspp-0.10.1.ebuild | 78 -
 sci-mathematics/pspp/pspp-0.10.2.ebuild | 78 -
 3 files changed, 158 deletions(-)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index 0049a628c14..b6717e465c4 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1,3 +1 @@
-DIST pspp-0.10.1.tar.gz 7269109 BLAKE2B 
5f488b1bbe9d4cf833d847cd035485827e7e518fb82f0e5df98418e919da54553475e91fd8529df8819ee71d853fb8bdd079e27a9b8587b40074701a7d71a8c2
 SHA512 
a7f4eec3858340743ff845e67028af76d79a58968ceaa19a87e0443751917b2d70251e53231ecce15c937c9640ac733e00603baa76b4266d693375ab70b870b5
-DIST pspp-0.10.2.tar.gz 7316470 BLAKE2B 
9bbccfc8151d83613f5c4f49f285959c6b9e74bdc99edb95dc719561fb05c01e54b10fc5b3a58b9e5beeae199235d0d936a6ee08277fe7c710c3e40ca6c389f7
 SHA512 
7d6656c03da46b088e87cba7a947d1e56031ff50d704be8201a38563515cf5cf324a05f1d4999ba8aec7b2269a8fdbd09374a11374c9c1b9dd6d78d34fda4b76
 DIST pspp-1.2.0.tar.gz 7213194 BLAKE2B 
f468c6e025f996c9f806fb03e94a4497f02b774c509457cc6295bbefe37abc7e2ecf10d2876c8cff9a979d7a4264c7c185e1cec5fd1d5f2f00f1c6eae4da775e
 SHA512 
49eed2b55f10584abba18ff7d2020fd08691bbc1a3c2f332e6d283e32aa84e0abdae6092d17db9c1a539c63d85ecdfcc2dad40c94a06904b8893a1976e5e48d3

diff --git a/sci-mathematics/pspp/pspp-0.10.1.ebuild 
b/sci-mathematics/pspp/pspp-0.10.1.ebuild
deleted file mode 100644
index f1d6cf51359..000
--- a/sci-mathematics/pspp/pspp-0.10.1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils elisp-common
-
-DESCRIPTION="Program for statistical analysis of sampled data"
-HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
-
-RDEPEND="
-   dev-libs/libxml2:2=
-   sci-libs/gsl:0=
-   sys-devel/gettext:0=
-   sys-libs/readline:0=
-   sys-libs/zlib:0=
-   virtual/libiconv
-   cairo? ( x11-libs/cairo:0=[svg] )
-   emacs? ( virtual/emacs )
-   gtk? (
-   x11-libs/gtk+:3=
-   x11-libs/gtksourceview:3.0= )
-   ncurses? ( sys-libs/ncurses:0= )
-   postgres? ( dev-db/postgresql:=[server] )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( virtual/latex-base )"
-
-SITEFILE=50${PN}-gentoo.el
-
-src_configure() {
-   econf \
-   $(use_enable nls) \
-   $(use_enable static-libs static) \
-   $(use_with cairo) \
-   $(use_with gtk gui) \
-   $(use_with ncurses libncurses) \
-   $(use_with perl perl-module) \
-   $(use_with postgres libpq)
-}
-
-src_compile() {
-   default
-   use doc && emake html pdf
-   use emacs && elisp-compile *.el
-}
-
-src_install() {
-   default
-   if use doc; then
-   dodoc doc/pspp{,-dev}.pdf
-   insinto /usr/share/doc/${PF}/html
-   dodoc -r doc/pspp{,-dev}.html
-   fi
-   if use examples; then
-   insinto /usr/share/doc/${PF}
-   doins -r examples
-   fi
-   if use emacs; then
-   elisp-install ${PN} *.el *.elc
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-   fi
-   prune_libtool_files --all
-}
-
-pkg_postinst () {
-   use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-   use emacs && elisp-site-regen
-}

diff --git a/sci-mathematics/pspp/pspp-0.10.2.ebuild 
b/sci-mathematics/pspp/pspp-0.10.2.ebuild
deleted file mode 100644
index 4492cc326fb..000
--- a/sci-mathematics/pspp/pspp-0.10.2.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils elisp-common
-
-DESCRIPTION="Program for statistical analysis of sampled data"
-HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
-
-RDEPEND="
-   dev-libs/libxml2:2=
-   sci-libs/gsl:0=
-   sys-devel/gettext:0=
-   

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

2019-01-25 Thread Andreas K. Hüttel
commit: 0564327a7fa1016e29d4d611e99b35682904473c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jan 26 01:32:58 2019 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Jan 26 01:32:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0564327a

package.mask: Mask net-p2p/gtk-gnutella for removal, bug 669606

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 profiles/package.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 9d808e41942..1d6a2a5540c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Andreas K. Hüttel  (26 Jan 2019)
+# Fails to build with glibc-2.28, bug 669606. Removal in
+# 30 days (unless fixed).
+net-p2p/gtk-gnutella
+
 # Miroslav Šulc  (23 Jan 2019)
 # Depends on >=virtual/{jdk,jre}-11 which is masked
 =dev-java/ant-eclipse-ecj-4.10



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

2019-01-25 Thread Zac Medico
commit: abce65161c45f59b9315ebe206806574bc213f17
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Jan 25 23:49:32 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Jan 26 01:03:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abce6516

dev-python/awscli: version bump to 1.16.95

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

 dev-python/awscli/Manifest  |  1 +
 dev-python/awscli/awscli-1.16.95.ebuild | 56 +
 2 files changed, 57 insertions(+)

diff --git a/dev-python/awscli/Manifest b/dev-python/awscli/Manifest
index 12a40ac0a6d..d0d9319abd3 100644
--- a/dev-python/awscli/Manifest
+++ b/dev-python/awscli/Manifest
@@ -3,3 +3,4 @@ DIST awscli-1.16.62.tar.gz 1147749 BLAKE2B 
d0a578478f5aa6e08c8de3c0e5e85b99e09a8
 DIST awscli-1.16.72.tar.gz 1169697 BLAKE2B 
3ae37ee02bb821dc5e5578ff9937d6fb313bd369e9f57c276d3e3fb722743b5f07536ed60ffd98ffbb779e0ad3882f9345d0ccbed3572c2e7332c2a339320f49
 SHA512 
88914546c10e14749b6811a31ff664cd464ab424d2140f1218b03128fb8a7e4fcfb33feaa29cac534ea3902f1d4e0565c7578b61989bb6b8f8edbefa2d992355
 DIST awscli-1.16.81.tar.gz 1171490 BLAKE2B 
343e5ba75f8cb3b058e15346627b0d9c5d6e294147843be0608ccd2a92e643d05c5b6995771608af602e565a860d4088e1f7988c567343396054cec813ed660c
 SHA512 
44176ae796972571d07923ba13ac5a245af7b0c74488bd03a6fb5077f204f175f7ddfa9c4d592eb93d3dce14d9406b04c92ec2d1d9ce58c3a092a0b998efd2c7
 DIST awscli-1.16.91.tar.gz 1172430 BLAKE2B 
158f7420299c56f2e40883bbf1ad01cb7a747d04047b47aaf8c931c8aad02ad9b39cfe9fd69b86fcdbd76d02d652d68f33d707326307c600772fab97b93f7b60
 SHA512 
ad489cfc1225703b9bae26f31a94c7d9c143b8e355f4e1a2f1d7e3685b7ee9a6dbd0938db512cac83775292a1347fe72a9ae192717b1c73a21ac07bea4c9fede
+DIST awscli-1.16.95.tar.gz 1173389 BLAKE2B 
0babe5cb23b36e39bb495cef57bc1cba0b0c4ab3a613b88e6c52a0f22f94099116ff1a70f9149333be16f7243f2c5498e98bc0c8076aa4e24201c11b8db7bcbf
 SHA512 
37eabd6e7cbba5e3d635098e9c273ca143dd8f37dc7dedf6b85882f08fa01931ed2c56a7db191bae2c260e065c03fbcc7c473c5065b8e111616fb1341b4bc9a0

diff --git a/dev-python/awscli/awscli-1.16.95.ebuild 
b/dev-python/awscli/awscli-1.16.95.ebuild
new file mode 100644
index 000..bf41cae512b
--- /dev/null
+++ b/dev-python/awscli/awscli-1.16.95.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="https://pypi.org/project/awscli/;
+#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/aws/aws-cli/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+# requires network access
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/botocore-1.12[${PYTHON_USEDEP}]
+   =dev-python/s3transfer-0.1.12[${PYTHON_USEDEP}]
+   

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

2019-01-25 Thread Sergei Trofimovich
commit: ba445c919a88a74e3f8d5f4ac39a144323a7dbae
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jan 25 23:10:57 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jan 25 23:11:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba445c91

sys-libs/libunwind: add multilib use deps, bug #676204

Hamlet noticed that sys-libs/libunwind does state
it's use dependencies against non-default ABIs.

Reported-by: Hamlet
Closes: https://bugs.gentoo.org/676204
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-libs/libunwind/libunwind-1.2.1-r3.ebuild | 105 +++
 1 file changed, 105 insertions(+)

diff --git a/sys-libs/libunwind/libunwind-1.2.1-r3.ebuild 
b/sys-libs/libunwind/libunwind-1.2.1-r3.ebuild
new file mode 100644
index 000..27084d43a5b
--- /dev/null
+++ b/sys-libs/libunwind/libunwind-1.2.1-r3.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PV=${PV/_/-}
+MY_P=${PN}-${MY_PV}
+inherit autotools eutils libtool multilib-minimal
+
+DESCRIPTION="Portable and efficient API to determine the call-chain of a 
program"
+HOMEPAGE="https://savannah.nongnu.org/projects/libunwind;
+SRC_URI="mirror://nongnu/libunwind/${MY_P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="7"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE="debug debug-frame doc libatomic lzma +static-libs"
+
+RESTRICT="test" # half of tests are broken (toolchain version dependent)
+
+# We just use the header from libatomic.
+RDEPEND="lzma? ( app-arch/xz-utils[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   libatomic? ( dev-libs/libatomic_ops[${MULTILIB_USEDEP}] )"
+
+S="${WORKDIR}/${MY_P}"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/libunwind.h
+
+   # see libunwind.h for the full list of arch-specific headers
+   /usr/include/libunwind-aarch64.h
+   /usr/include/libunwind-arm.h
+   /usr/include/libunwind-hppa.h
+   /usr/include/libunwind-ia64.h
+   /usr/include/libunwind-mips.h
+   /usr/include/libunwind-ppc32.h
+   /usr/include/libunwind-ppc64.h
+   /usr/include/libunwind-sh.h
+   /usr/include/libunwind-tilegx.h
+   /usr/include/libunwind-x86.h
+   /usr/include/libunwind-x86_64.h
+)
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.2-coredump-regs.patch #586092
+   "${FILESDIR}"/${PN}-1.2-ia64-undwarf.patch
+   "${FILESDIR}"/${PN}-1.2-ia64-ptrace-coredump.patch
+   "${FILESDIR}"/${PN}-1.2-ia64-missing.patch
+   "${FILESDIR}"/${PN}-1.2.1-fix_version_macros.patch
+   "${FILESDIR}"/${PN}-1.2.1-only-include-execinfo_h-if-avaliable.patch
+   "${FILESDIR}"/${PN}-1.2.1-no-PROTECTED.patch #659732
+   "${FILESDIR}"/${PN}-1.2.1-arm-__asm__.patch #635674
+)
+
+src_prepare() {
+   default
+   chmod +x src/ia64/mk_cursor_i || die
+   # Since we have tests disabled via RESTRICT, disable building in the 
subdir
+   # entirely.  This worksaround some build errors too. #484846
+   sed -i -e '/^SUBDIRS/s:tests::' Makefile.in || die
+
+   elibtoolize
+   eautoreconf
+}
+
+multilib_src_configure() {
+   # --enable-cxx-exceptions: always enable it, headers provide the 
interface
+   # and on some archs it is disabled by default causing a mismatch 
between the
+   # API and the ABI, bug #418253
+   # conservative-checks: validate memory addresses before use; as of 
1.0.1,
+   # only x86_64 supports this, yet may be useful for debugging, couple it 
with
+   # debug useflag.
+   ECONF_SOURCE="${S}" \
+   ac_cv_header_atomic_ops_h=$(usex libatomic) \
+   econf \
+   --enable-cxx-exceptions \
+   --enable-coredump \
+   --enable-ptrace \
+   --enable-setjmp \
+   $(use_enable debug-frame) \
+   $(use_enable doc documentation) \
+   $(use_enable lzma minidebuginfo) \
+   $(use_enable static-libs static) \
+   $(use_enable debug conservative_checks) \
+   $(use_enable debug)
+}
+
+multilib_src_compile() {
+   # Bug 586208
+   CCACHE_NODIRECT=1 default
+}
+
+multilib_src_test() {
+   # Explicitly allow parallel build of tests.
+   # Sandbox causes some tests to freak out.
+   SANDBOX_ON=0 emake check
+}
+
+multilib_src_install() {
+   default
+   # libunwind-ptrace.a (and libunwind-ptrace.h) is separate API and 
without
+   # shared library, so we keep it in any case
+   use static-libs || find "${ED}"usr '(' -name 'libunwind-generic.a' -o 
-name 'libunwind*.la' ')' -delete
+}



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

2019-01-25 Thread Zac Medico
commit: e2118b990d3b32d2b29df2495ff906a37623e12d
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Jan 25 22:58:23 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jan 25 23:00:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2118b99

dev-python/awscli: allow colorama-0.3.9-r1 upgrade

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

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

diff --git a/dev-python/awscli/awscli-1.16.91.ebuild 
b/dev-python/awscli/awscli-1.16.91.ebuild
index dcda38a7f87..85100cd4157 100644
--- a/dev-python/awscli/awscli-1.16.91.ebuild
+++ b/dev-python/awscli/awscli-1.16.91.ebuild
@@ -22,7 +22,7 @@ RESTRICT="test"
 
 RDEPEND="
>=dev-python/botocore-1.12[${PYTHON_USEDEP}]
-   <=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]
+   =dev-python/s3transfer-0.1.12[${PYTHON_USEDEP}]



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

2019-01-25 Thread James Le Cuirot
commit: 26d2abf134411ea9f80c5377c5609808663370c0
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Jan 25 21:38:47 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Jan 25 21:39:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26d2abf1

sys-apps/groff: Fix cross-compiling following build file changes

Override the variables when calling make instead of changing the
Makefiles. The comment in the Makefiles suggests that this is how
upstream wants you to do it.

Using ${EPREFIX} as before is not correct as this refer to the target
prefix, not the build prefix. EAPI 7 provides ${BROOT} for this but
for tools in the path, it is better to use type -P instead.

groff is not in @system so there is no guarantee that it will actually
be present on the build system. EAPI 7 did not include EAPI
5-hdepend's targetroot USE flag feature, which prevents us from
putting groff in BDEPEND. The preferred approach is to do a native
build in tandem with a cross build but this makes the ebuild more
complex so I will attempt this in a separate fix.

Closes: https://bugs.gentoo.org/674866
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: James Le Cuirot  gentoo.org>

 sys-apps/groff/groff-1.22.4.ebuild | 25 -
 1 file changed, 12 insertions(+), 13 deletions(-)

diff --git a/sys-apps/groff/groff-1.22.4.ebuild 
b/sys-apps/groff/groff-1.22.4.ebuild
index 8ec07c8c1ad..3fa2e509662 100644
--- a/sys-apps/groff/groff-1.22.4.ebuild
+++ b/sys-apps/groff/groff-1.22.4.ebuild
@@ -47,18 +47,6 @@ src_prepare() {
Makefile.in \
|| die "failed to modify Makefile.in"
 
-   # Make sure we can cross-compile this puppy
-   if tc-is-cross-compiler ; then
-   sed -i \
-   -e '/^GROFFBIN=/s:=.*:=${EPREFIX}/usr/bin/groff:' \
-   -e '/^TROFFBIN=/s:=.*:=${EPREFIX}/usr/bin/troff:' \
-   -e '/^GROFF_BIN_PATH=/s:=.*:=:' \
-   -e '/^GROFF_BIN_DIR=/s:=.*:=:' \
-   contrib/*/Makefile.sub \
-   doc/Makefile.in \
-   doc/Makefile.sub || die "cross-compile sed failed"
-   fi
-
local pfx=$(usex prefix ' Prefix' '')
cat <<-EOF >> tmac/mdoc.local
.ds volume-operating-system Gentoo${pfx}
@@ -80,7 +68,18 @@ src_configure() {
 }
 
 src_compile() {
-   emake AR="$(tc-getAR)"
+   if tc-is-cross-compiler ; then
+   local CROSS_ARGS=(
+   GROFFBIN="$(type -P groff)"
+   TROFFBIN="$(type -P troff)"
+   GROFF_BIN_DIR=
+   GROFF_BIN_PATH=
+   )
+   else
+   unset CROSS_ARGS
+   fi
+
+   emake AR="$(tc-getAR)" "${CROSS_ARGS[@]}"
 }
 
 src_install() {



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

2019-01-25 Thread Robin H. Johnson
commit: cc60b9e0bfa1f8e49b22caabef3fb6009665d756
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Thu Jan 24 07:35:50 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jan 25 20:56:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc60b9e0

dev-ruby/facter: sandbox tweak for /proc/self/oom_score_adj

Fix for sandbox bad opening:
[  3%] Generating 
/dev/shm/portage/dev-ruby/facter-3.12.3/work/facter-3.12.3/lib/src/java/com_puppetlabs_Facter.h
cd /dev/shm/portage/dev-ruby/facter-3.12.3/work/facter-3.12.3_build/lib && 
javah -classpath facter.jar -d 
/dev/shm/portage/dev-ruby/facter-3.12.3/work/facter-3.12.3/lib/src/java 
com.puppetlabs.Facter
* javah is not available for oracle-jre-bin-1.8 on x86_64
* IMPORTANT: some Java tools are not available on some VMs on some architectures
* javah is not available for oracle-jre-bin-1.8 on x86_64
* IMPORTANT: some Java tools are not available on some VMs on some architectures
 * ACCESS DENIED:  open_wr:  /proc/self/oom_score_adj
 * ACCESS DENIED:  open_wr:  /proc/self/oom_score_adj
make[2]: *** [lib/CMakeFiles/libfactersrc.dir/build.make:65: 
/dev/shm/portage/dev-ruby/facter-3.12.3/work/facter-3.12.3/lib/src/java/com_puppetlabs_Facter.h]
 Error 1
make[2]: Leaving directory 
'/dev/shm/portage/dev-ruby/facter-3.12.3/work/facter-3.12.3_build'

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Robin H. Johnson  gentoo.org>

 dev-ruby/facter/facter-3.12.3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ruby/facter/facter-3.12.3.ebuild 
b/dev-ruby/facter/facter-3.12.3.ebuild
index 62e2727dc21..c6ee584a2af 100644
--- a/dev-ruby/facter/facter-3.12.3.ebuild
+++ b/dev-ruby/facter/facter-3.12.3.ebuild
@@ -93,6 +93,7 @@ src_configure() {
 }
 
 src_compile() {
+   addpredict /proc/self/oom_score_adj
cmake-utils_src_compile
 }
 



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

2019-01-25 Thread Robin H. Johnson
commit: d51fed45a9067b4ee6c69dc148c61f894d8a6596
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jan 25 19:20:38 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jan 25 20:56:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d51fed45

dev-lang/lua: bump to 5.2.4 and 5.3.5, re-add upstream testsuite

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Acked-By: Rafael Martins  gentoo.org>
Signed-off-by: Robin H. Johnson  gentoo.org>

 dev-lang/lua/Manifest  |  4 ++
 dev-lang/lua/lua-5.1.5-r100.ebuild |  2 +-
 dev-lang/lua/lua-5.1.5-r101.ebuild |  2 +-
 dev-lang/lua/lua-5.1.5-r102.ebuild |  2 +-
 dev-lang/lua/lua-5.1.5-r4.ebuild   |  2 +-
 dev-lang/lua/lua-5.2.3-r1.ebuild   |  2 +-
 dev-lang/lua/lua-5.2.3-r2.ebuild   |  2 +-
 dev-lang/lua/lua-5.2.3-r3.ebuild   |  2 +-
 dev-lang/lua/lua-5.2.3.ebuild  |  2 +-
 .../lua/{lua-5.2.3-r2.ebuild => lua-5.2.4.ebuild}  | 49 ++
 dev-lang/lua/lua-5.3.3-r1.ebuild   |  2 +-
 dev-lang/lua/lua-5.3.3-r2.ebuild   |  2 +-
 dev-lang/lua/lua-5.3.3.ebuild  |  2 +-
 .../lua/{lua-5.3.3-r2.ebuild => lua-5.3.5.ebuild}  | 43 +--
 dev-lang/lua/metadata.xml  |  5 ++-
 15 files changed, 100 insertions(+), 23 deletions(-)

diff --git a/dev-lang/lua/Manifest b/dev-lang/lua/Manifest
index 98e8d86978e..1106de1d1a2 100644
--- a/dev-lang/lua/Manifest
+++ b/dev-lang/lua/Manifest
@@ -1,3 +1,7 @@
 DIST lua-5.1.5.tar.gz 221213 BLAKE2B 
915eb8e8c9d7e460eacf1d7a59309c60dfc0f5d9d3d76fbc9764e7cae85920b95096db1c27b69ac53378a145c29efde403e88166a1332a67150d9d3a897aba02
 SHA512 
0142fefcbd13afcd9b201403592aa60620011cc8e8559d4d2db2f92739d18186860989f48caa45830ff4f99bfc7483287fd3ff3a16d4dec928e2767ce4d542a9
+DIST lua-5.2.2-tests.tar.gz 76629 BLAKE2B 
323eaae02ee61cfde2535d606ed704d964461c32627cb3ad4097afdc95a16a0921b9b05677c5b9b26cbff0d7d8270045e7df32a2cea0fd99a82e6aa613a0bdae
 SHA512 
699d5703dd1d03312f1e947ca4c68d8808bb226ae01337202c2bfb3d854a9b7d9ef9746630afd1f67e9ffe2868907ce3d600a6f5324a2c798540c5373a24aac8
 DIST lua-5.2.3.tar.gz 251195 BLAKE2B 
f3d11e180fe070cb5be98f0694081d26067e21eddeb09cd74b1bae6ecf01c53dc46746b871e3825da155bf1b83f0e60bae5387c2b96b1d19b15f94b716dc
 SHA512 
264bb7c8db2f190ef0ca38584ec81999ab588f54e03119c5214c40bb8925b0eb407fac483a03e40cc8a220f6748ddff7d3a7392da3803418276b0d263b866449
+DIST lua-5.2.4.tar.gz 252651 BLAKE2B 
6f20308d8413438f8446040e8de16274837cb55e626b98a0ae8cfe279dc8610fa2e032a2ce53ef3acda4b96a7198123cbc18eff16775f952e6dc0355fdf331b0
 SHA512 
cd77148aba4b707b6c159758b5e8444e04f968092eb98f6b4c405b2fb647e709370d5a8dcf604176101d3407e196a7433b5dcdce4fe9605c76191d3649d61a8c
 DIST lua-5.3.3.tar.gz 294290 BLAKE2B 
8052d3fa5f34636df314886a62d63e46fc76ada765679da9352e751f484a458404ac55e5b32ad63ced9d2b16d629d62a52240b1b1a509bcdf5d5df85e405646d
 SHA512 
7b8122ed48ea2a9faa47d1b69b4a5b1523bb7be67e78f252bb4339bf75e957a88c5405156e22b4b63ccf607a5407bf017a4cee1ce12b1aa5262047655960a3cc
+DIST lua-5.3.4-tests.tar.gz 103438 BLAKE2B 
ac82708022e7729039111c3df4fe24302c8d0efb224afb4828871ac085a3d64c41d674a6f9369035de01ed1f7f75a3d2ce16917f37e774e923216aac0be03e09
 SHA512 
79575d100a2efabc8243f55b55d912443e09ef7e8b0219cb93541d85c2ba802fb9538015e1228703f09ca57bdb28a640a8f1fa0735716ba1e4bca2179c712dfb
+DIST lua-5.3.5.tar.gz 303543 BLAKE2B 
8890fa70fcfb869296bc74c754dc30621a3786d4b38dd35ef9e57ca46ee4b3df12dac1b86109be0823847499ff6b0d95de11f446c4c22de440ae3bb704e5068b
 SHA512 
4f9516acc4659dfd0a9e911bfa00c0788f0ad9348e5724fe8fb17aac59e9c0060a64378f82be86f8534e49c6c013e7488ad17321bafcc787831d3d67406bd0f4

diff --git a/dev-lang/lua/lua-5.1.5-r100.ebuild 
b/dev-lang/lua/lua-5.1.5-r100.ebuild
index f532abb7f4f..2ea293401de 100644
--- a/dev-lang/lua/lua-5.1.5-r100.ebuild
+++ b/dev-lang/lua/lua-5.1.5-r100.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5

diff --git a/dev-lang/lua/lua-5.1.5-r101.ebuild 
b/dev-lang/lua/lua-5.1.5-r101.ebuild
index 94a5f0a3080..b26dc779b90 100644
--- a/dev-lang/lua/lua-5.1.5-r101.ebuild
+++ b/dev-lang/lua/lua-5.1.5-r101.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5

diff --git a/dev-lang/lua/lua-5.1.5-r102.ebuild 
b/dev-lang/lua/lua-5.1.5-r102.ebuild
index cfd1cdfe50e..4849b6596ff 100644
--- a/dev-lang/lua/lua-5.1.5-r102.ebuild
+++ b/dev-lang/lua/lua-5.1.5-r102.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5

diff --git 

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

2019-01-25 Thread Robin H. Johnson
commit: 2d82b58e6274ebf2d481a7c7aeb325fa7e847f9a
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jan 25 18:38:12 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jan 25 20:56:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d82b58e

sci-mathematics/octave: fix USE=doc sandbox trip due to tex fonts

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Robin H. Johnson  gentoo.org>

 sci-mathematics/octave/octave-4.2.2.ebuild | 3 ++-
 sci-mathematics/octave/octave-4.4.1.ebuild | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/octave/octave-4.2.2.ebuild 
b/sci-mathematics/octave/octave-4.2.2.ebuild
index cf855684553..f326d2dd104 100644
--- a/sci-mathematics/octave/octave-4.2.2.ebuild
+++ b/sci-mathematics/octave/octave-4.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -155,6 +155,7 @@ src_configure() {
 }
 
 src_compile() {
+   export VARTEXFONTS="${T}/fonts" # otherwise it will write to 
/var/cache/fonts/ and trip sandbox
default
if use java; then
pax-mark m "${S}/src/.libs/octave-cli"

diff --git a/sci-mathematics/octave/octave-4.4.1.ebuild 
b/sci-mathematics/octave/octave-4.4.1.ebuild
index 3e298f6bd61..ac34dd412bb 100644
--- a/sci-mathematics/octave/octave-4.4.1.ebuild
+++ b/sci-mathematics/octave/octave-4.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -160,6 +160,7 @@ src_configure() {
 }
 
 src_compile() {
+   export VARTEXFONTS="${T}/fonts" # otherwise it will write to 
/var/cache/fonts/ and trip sandbox
default
if use java; then
pax-mark m "${S}/src/.libs/octave-cli"



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

2019-01-25 Thread Virgil Dupras
commit: 09c796445b6028ac922090727d4eba85fca06e1e
Author: Virgil Dupras  gentoo  org>
AuthorDate: Fri Jan 25 20:53:46 2019 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Fri Jan 25 20:55:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09c79644

net-libs/libhubbub: fix test failure

Closes: https://bugs.gentoo.org/675836
Signed-off-by: Virgil Dupras  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-libs/libhubbub/libhubbub-0.3.5-r1.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/net-libs/libhubbub/libhubbub-0.3.5-r1.ebuild 
b/net-libs/libhubbub/libhubbub-0.3.5-r1.ebuild
index d0a20d7641e..28a147d5b6d 100644
--- a/net-libs/libhubbub/libhubbub-0.3.5-r1.ebuild
+++ b/net-libs/libhubbub/libhubbub-0.3.5-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit toolchain-funcs
+inherit toolchain-funcs flag-o-matic
 
 DESCRIPTION="HTML5 compliant parsing library, written in C"
 HOMEPAGE="http://www.netsurf-browser.org/projects/hubbub/;
@@ -22,7 +22,7 @@ DEPEND="${RDEPEND}
virtual/pkgconfig
test? (
dev-lang/perl
-   >=dev-libs/json-c-0.10-r1
+   

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

2019-01-25 Thread Chí-Thanh Christopher Nguyễn
commit: 2e13b3f4bb48373edffda315d1ba240893ee385f
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Fri Jan 25 20:52:03 2019 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Fri Jan 25 20:52:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e13b3f4

app-office/openoffice-bin: security bump to 4.1.6

Bug: https://bugs.gentoo.org/show_bug.cgi?id=676122
Signed-off-by: Chí-Thanh Christopher Nguyễn  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-office/openoffice-bin/Manifest |  80 +
 .../openoffice-bin/openoffice-bin-4.1.6.ebuild | 190 +
 2 files changed, 270 insertions(+)

diff --git a/app-office/openoffice-bin/Manifest 
b/app-office/openoffice-bin/Manifest
index e6c0cbe3f98..8a8e9ad6e6a 100644
--- a/app-office/openoffice-bin/Manifest
+++ b/app-office/openoffice-bin/Manifest
@@ -158,3 +158,83 @@ DIST 
Apache_OpenOffice_4.1.5_Linux_x86_langpack-rpm_tr.tar.gz 12192098 BLAKE2B 8
 DIST Apache_OpenOffice_4.1.5_Linux_x86_langpack-rpm_vi.tar.gz 13435858 BLAKE2B 
ab60a610cd30d3ea0726f0a6111fa47c2409b9c7347d51b2aa10d8a09f4281e053595e017db5a5f98de338f9937237988163c7d31274ec494893dc04447cb919
 SHA512 
648af13c4c1aa8e68e765afdca078203ec08edd130bfd65cd1e81b45e0ee7c6ebf1c06a114b82cb36a1bbef9148bf9c2dccbd090fa1e8d828c67bd42d0872a36
 DIST Apache_OpenOffice_4.1.5_Linux_x86_langpack-rpm_zh-CN.tar.gz 13870834 
BLAKE2B 
6eebb98351195f3712ac5db2134bfe97df9f3c5df12015f998d3b8dac18394c4b5f079f7274ba1d755350118f5159190c4735161dfaa652b75d8b1d20e6c00b8
 SHA512 
5a63e88278b18d76a497fc60829f533da8c9ac1c1af11d9b217942e57f14516784022fddbd1943ec4ed49efd64616f4496de11de9626e6787b8b35b6a06f9634
 DIST Apache_OpenOffice_4.1.5_Linux_x86_langpack-rpm_zh-TW.tar.gz 14082525 
BLAKE2B 
3799b4c5a5d282dd78e7d93687acacd0a4c0c08f9558c2baa2aa25c5eeffd0616c0312b65b326619ac8865c505bcad6cf813a5bc338e424862273ede5617
 SHA512 
f82ec54a570c81180b0b98e026ca0009ec1ae890e25d92fde07a83bb285515db59c70fc7859c470233bedbb823b092ce94e7040589b37a24a6cec7ea042fdcca
+DIST Apache_OpenOffice_4.1.6_Linux_x86-64_install-rpm_en-US.tar.gz 163655877 
BLAKE2B 
4a232f56f8fd511e07df93a3d6ccb873bb6d586075b1c8aae34d3ff63ad5790c4ee7587a7be41be7e2c71942291ad859b848af82e6a039f4e3bc09d299510420
 SHA512 
5618fdeff361fa2ec68f87d9ca7da2cc56158e941889cb464757b1ec852931a8063a5cf6a43b66da51d063a6230d19380a790b76ea777efbe8f2349c866001d6
+DIST Apache_OpenOffice_4.1.6_Linux_x86-64_langpack-rpm_ast.tar.gz 18753459 
BLAKE2B 
8d9e1fb6108403909546ab5ed688a6a6b39fd5cdcadedd2f3636a1024913c20e1964bb9e9152babab9fedd084e98126c8db80bebfd6daa6d921f96cd4f6bc302
 SHA512 
c3835453831903df9b133661de06dbada6e329aab0f80253ed4a20c1dcd2d97d0f7b513294dbc712a854840b20c33d7a6df6b0e3270ac867480c64fb86579c06
+DIST Apache_OpenOffice_4.1.6_Linux_x86-64_langpack-rpm_bg.tar.gz 13608507 
BLAKE2B 
badf53b10f6ac444d5d66fed932517dbc04a269b6796ebedb8f6ebe7899c9ca557526b1949a0a9557a25e07ab2bace1f8b57223b73e6b71caf51cdb4774acc7f
 SHA512 
63ef4b253bf5909f17e3a1e2352dc8a2fb17ae7dbaed59fd5f5fa91e0d7ca78944ccba8db4e42476d57ca67e6bcf438011ef12d6199b227c3260e76e536b6858
+DIST Apache_OpenOffice_4.1.6_Linux_x86-64_langpack-rpm_ca-XV.tar.gz 20190793 
BLAKE2B 
4b943b0bcad9f8b6f676b00f03f2b06ee139b7b5ce8d8f74e8b9f9846f77471b013ff19da2e03c49d404e7df54656202e8e8dcd065121c05e383c5b4928306b9
 SHA512 
bdafeea03a3788393b4d0c21058e9ee34091eb8e22d145ce615253fcc38098839297f0d4ee3d497b2d6afe699713265d43ac5297d2c0f0f6adcfdd77b042037c
+DIST Apache_OpenOffice_4.1.6_Linux_x86-64_langpack-rpm_ca.tar.gz 20184423 
BLAKE2B 
03be904ef2f76ae608efdaefa1351a1a7248cbd0db2d790ca1c0b472a682244b5948bda26224330267ab5ed3ed3f49012544507284548f0e38d8cb03cf04903a
 SHA512 
94e245f092acab015796fe40f9d79cfff333445434b1ed203285f10da83b8406743da27e99406e61a4955b078625c8b410b97434dc6ad7cb67a62feacea1db6d
+DIST Apache_OpenOffice_4.1.6_Linux_x86-64_langpack-rpm_cs.tar.gz 12651354 
BLAKE2B 
f7f6a5c8c42f494275cf05a248cddb8332684f48cf9dfe7766892944a404d2ee21725342dc10233a3839a247add39c2f663af069b83025b5ea481cf716df20a9
 SHA512 
1678889ef07560c36318565b107dd0b9c9d53b11bcbc259ed928c931e7f1a875ef819927ee6a74099d79dde212a9b8295d8dd5d7a6e539eba76a2b7d2ead
+DIST Apache_OpenOffice_4.1.6_Linux_x86-64_langpack-rpm_da.tar.gz 12441160 
BLAKE2B 
eaac2fc97039c5c7972585558aae379e88d6cb596244c3b12d30661a38bb519779522777b6d0f7fdab92ebb8480c94489c40a1b65d78775b01b7c2e34121984a
 SHA512 
965b439cc0beb69428db94970bb6be60e2d4d6b32fc58250da05a904d1800436d9271c21531342c0eaa1f922f95dd244c5816c31df2a96435ea5764370bb43b6
+DIST Apache_OpenOffice_4.1.6_Linux_x86-64_langpack-rpm_de.tar.gz 20372524 
BLAKE2B 
149e1bcbc14b2b852eb11633dd455052a3e70ccf314a07a4d310799ac584a8045116962bdef4163ff2160a9ff28c1da3b161c4af52d1169426a0e874b0aef070
 SHA512 
032c600940593089f26f90ef923261277548aab56369bedc7b7b66ebad55b964f43f5d2170707b233c5c54207365d7c37770cf3a1aa73760dc5f6a718138c0ed
+DIST Apache_OpenOffice_4.1.6_Linux_x86-64_langpack-rpm_el.tar.gz 21712932 
BLAKE2B 

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

2019-01-25 Thread Lars Wendler
commit: 2266f6dc9a31be7517c3fa7a04ef72f1c4ee1525
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 20:21:11 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 20:21:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2266f6dc

net-ftp/filezilla: Bump to version 3.40.0

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

 net-ftp/filezilla/Manifest|  1 +
 net-ftp/filezilla/filezilla-3.40.0.ebuild | 75 +++
 2 files changed, 76 insertions(+)

diff --git a/net-ftp/filezilla/Manifest b/net-ftp/filezilla/Manifest
index d031f9c5e35..0c51e778562 100644
--- a/net-ftp/filezilla/Manifest
+++ b/net-ftp/filezilla/Manifest
@@ -2,3 +2,4 @@ DIST FileZilla_3.34.0_src.tar.bz2 4869893 BLAKE2B 
43f017a833191126526195636607b7
 DIST FileZilla_3.37.4_src.tar.bz2 4983335 BLAKE2B 
16929caca3aabfdea406469a4128878f3cc48b347084d5d362ad206a7549be129195e8f111324b259e64d8e9324d9decd4bb51d088367fcaa560ec1feeb03570
 SHA512 
3f6697fd411b898f0db375bba7e6a34157c73274ee463832c38a4897240d990654c447baad8b0024492cb882106e7e63757d54401c487cfad96038d1f5eabfea
 DIST FileZilla_3.38.1_src.tar.bz2 4983087 BLAKE2B 
a19b80b35535485fd1c03aa36a85aa1f894b106d09d1b78ab7e02fec6cec3e78e0612c343694e5fabaa2202802d2ba2cd2aa4e4d0840342f17c60c06c0c8bcf8
 SHA512 
a224c6f65253ceeef1f3049fd6304533a7efb427707c73481d3973d06e3b887f2511bc705e718a1018b287940c3d682794c6cf3d0e8d9e3c403a1e2f14ed01fc
 DIST FileZilla_3.39.0_src.tar.bz2 4995713 BLAKE2B 
d89aaa1f57187cd926ae1c4dd34624b404baa291334c652293d2dcfaedc4a5dffb401f8727b5d5d1fb483bdd503f35124efb75bdd7dd750d68e517fcb57fb8c0
 SHA512 
a0360634517ffd07878082abae024dbb4896035edcbd9abe6d8adfc9d37b73d01d95f6c5ca031175d88b6e4badefafcc43b5ddce3d9dbddde4deab5f0cc97e83
+DIST FileZilla_3.40.0_src.tar.bz2 4997647 BLAKE2B 
88ff2461d33369c435645f1dd5afa98c566141bf825e74898f870bd4c09cc7b47a70f605afbaf7be28855385812a28ea24303b6ec7f0ba605a793160c3b76027
 SHA512 
7aeb0c340111a47c435e8d8cbf379e83d2fc6c0a94038e085664df34c2fe1f8ef8496ea894f5e4cfd576d034e8935fe29661bb9eff9f22416032f45f5a66db2f

diff --git a/net-ftp/filezilla/filezilla-3.40.0.ebuild 
b/net-ftp/filezilla/filezilla-3.40.0.ebuild
new file mode 100644
index 000..aa2e664800a
--- /dev/null
+++ b/net-ftp/filezilla/filezilla-3.40.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+WX_GTK_VER="3.0-gtk3"
+
+inherit autotools flag-o-matic gnome2-utils wxwidgets
+
+MY_PV=${PV/_/-}
+MY_P="FileZilla_${MY_PV}"
+
+DESCRIPTION="FTP client with lots of useful features and an intuitive 
interface"
+HOMEPAGE="https://filezilla-project.org/;
+SRC_URI="https://download.filezilla-project.org/client/${MY_P}_src.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
+IUSE="dbus nls test"
+
+# pugixml 1.7 minimal dependency is for c++11 proper configuration
+RDEPEND=">=app-eselect/eselect-wxwidgets-0.7-r1
+   >=dev-libs/nettle-3.1:=
+   >=dev-db/sqlite-3.7
+   >=dev-libs/libfilezilla-0.15.1
+   >=dev-libs/pugixml-1.7
+   >=net-libs/gnutls-3.4.15
+   >=x11-libs/wxGTK-3.0.4:${WX_GTK_VER}[X]
+   x11-misc/xdg-utils
+   dbus? ( sys-apps/dbus )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   >=sys-devel/libtool-1.4
+   nls? ( >=sys-devel/gettext-0.11 )
+   test? ( >=dev-util/cppunit-1.13.0 )"
+
+S="${WORKDIR}"/${PN}-${MY_PV}
+
+DOCS=(AUTHORS ChangeLog NEWS )
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.22.1-debug.patch
+)
+
+pkg_pretend() {
+   if [[ ${MERGE_TYPE} != binary ]]; then
+   if ! test-flag-CXX -std=c++14; then
+   eerror "${P} requires C++14-capable C++ compiler. Your 
current compiler"
+   eerror "does not seem to support -std=c++14 option. 
Please upgrade your compiler"
+   eerror "to gcc-4.9 or an equivalent version supporting 
C++14."
+   die "Currently active compiler does not support 
-std=c++14"
+   fi
+   fi
+}
+
+src_prepare() {
+   setup-wxwidgets
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_with dbus) $(use_enable nls locales) \
+   --with-pugixml=system \
+   --disable-autoupdatecheck
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2019-01-25 Thread Sergei Trofimovich
commit: ae15e149c4255c45d9bba54344f06e75baecc5e6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Jan 25 19:20:59 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jan 25 19:54:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae15e149

dev-python/pysendfile: keyworded 2.0.1-r1 for hppa, bug #657104

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

 dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild 
b/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild
index da9e8e132bd..b1259416301 100644
--- a/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild
+++ b/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ DESCRIPTION="A python interface to the sendfile(2) system 
call"
 HOMEPAGE="https://github.com/giampaolo/pysendfile;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
 IUSE=""
 LICENSE="MIT"
 SLOT="0"



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

2019-01-25 Thread Sergei Trofimovich
commit: 431ad9add303ab1b2936bb3e42a26526de4664a0
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Jan 25 19:21:56 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jan 25 19:54:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=431ad9ad

dev-python/psutil: keyworded 5.4.[78] for hppa, bug #657104

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

 dev-python/psutil/psutil-5.4.7.ebuild | 4 ++--
 dev-python/psutil/psutil-5.4.8.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/psutil/psutil-5.4.7.ebuild 
b/dev-python/psutil/psutil-5.4.7.ebuild
index 039f78170ff..54d07b7cc4c 100644
--- a/dev-python/psutil/psutil-5.4.7.ebuild
+++ b/dev-python/psutil/psutil-5.4.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 DEPEND="

diff --git a/dev-python/psutil/psutil-5.4.8.ebuild 
b/dev-python/psutil/psutil-5.4.8.ebuild
index 3eb377238a7..c2018817a3c 100644
--- a/dev-python/psutil/psutil-5.4.8.ebuild
+++ b/dev-python/psutil/psutil-5.4.8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 DEPEND="



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

2019-01-25 Thread Sergei Trofimovich
commit: c30ab4f5f97afc1481b3aabcdf86294f644d275f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Jan 25 19:20:05 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jan 25 19:53:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c30ab4f5

dev-util/cmocka: stable 1.1.3 for sparc, bug #676198

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-util/cmocka/cmocka-1.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/cmocka/cmocka-1.1.3.ebuild 
b/dev-util/cmocka/cmocka-1.1.3.ebuild
index 8153e29cfdb..ce382c801ad 100644
--- a/dev-util/cmocka/cmocka-1.1.3.ebuild
+++ b/dev-util/cmocka/cmocka-1.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://cmocka.org/files/1.1/${P}.tar.xz;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc examples static-libs test"
 
 BDEPEND="



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

2019-01-25 Thread Matthew Thode
commit: 07c22b132bf427d4faa50decd632c0c01edd5983
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan 25 18:51:58 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Jan 25 18:51:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07c22b13

net-misc/rabbitmq-server: 3.7.10 bump with smp erlang fix

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

 net-misc/rabbitmq-server/Manifest  |   1 +
 .../rabbitmq-server/rabbitmq-server-3.7.10.ebuild  | 105 +
 2 files changed, 106 insertions(+)

diff --git a/net-misc/rabbitmq-server/Manifest 
b/net-misc/rabbitmq-server/Manifest
index a2bacd15ebd..1eb8f261267 100644
--- a/net-misc/rabbitmq-server/Manifest
+++ b/net-misc/rabbitmq-server/Manifest
@@ -1,4 +1,5 @@
 DIST rabbitmq-server-3.6.14.tar.xz 1508216 BLAKE2B 
1ca3f933e91ce204cc90df7df619742e6d42e211b6350c629015a15a0ea6cdad05ad1e0139db5b2f1f353f314d1709ba468112a4059c6894ef9fb454fd616cf2
 SHA512 
22874b81fcebfd954e5ee8f4701bd8743bbc9559c1a1c09f8de03e16039153aa6e6b0bea71067770913493299e57da6b3928ff0ade4ee9ffb5ea48a30a154d9f
 DIST rabbitmq-server-3.6.9.tar.xz 1422316 BLAKE2B 
08f88cf3b592c2fecf3e2a9c7f9a4a2997f7bea6f14a2d72cb42ad8d3254b2bcd32b0605c7687eeae8e1c39a6d3ad1776f89e84292d508903b956ec05f6cd858
 SHA512 
a003d2343c97e546ac01a5aadc46e94e2dbcc78349072b362950e5c5e11229e2a6fc4020d281f9fbb5cc0f577d2a166ef09671e931ec1470ab2edcdd98443662
+DIST rabbitmq-server-3.7.10.tar.xz 2569968 BLAKE2B 
90a0162c9e573f1b99526c7a6cdec38061c3e6f355377b51b920a62b0d61c5f13a21b69d627b49c4c6702e517dfba4c856664e9741d9ad2d21171a3b46770799
 SHA512 
092df82ac00397fc90ecd69c712985f055ec25fd0ba427fce9330df75f5fe6d788aabc9e25ccbf63c8c3cbe111816a226fb63479a16d8530a53b23ab23b2598e
 DIST rabbitmq-server-3.7.3.tar.xz 7382708 BLAKE2B 
66d4c2fcb80ba5a851fb5d2bee91d41b04a05e70e74ac2b3adae8aebcaaa01de7ca47772c38deb4e9c25c19f67c2bbd6c4fb3b71480d73986540c60ab6dac02c
 SHA512 
337edddceb66c44b5cc3cec710918385306d9db97ae340752bc39a1be39229a58b3bb1c96763a2ce441a6d46135f2aac8cec09fc33591d0e14e7571c9507d79b
 DIST rabbitmq-server-3.7.9.tar.xz 2551456 BLAKE2B 
b64037481254f39300fecf53c1f8eda69df3fdc92bbacc6f6edc9d89e167e4cdd0708482b0daf680366986a28f4a3562d4af7dcf427604acc79145d24ca41bd2
 SHA512 
4a9fd452ad878f20c3a269d2dc0fa63ef7dcf99d2ee1ca46ff693df8d92ae0ef5a05453a6aaaeb00db643b2209770b15216fdff109f27d1e531e363a99bd4a2a

diff --git a/net-misc/rabbitmq-server/rabbitmq-server-3.7.10.ebuild 
b/net-misc/rabbitmq-server/rabbitmq-server-3.7.10.ebuild
new file mode 100644
index 000..e412841b290
--- /dev/null
+++ b/net-misc/rabbitmq-server/rabbitmq-server-3.7.10.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-any-r1 systemd user
+
+DESCRIPTION="RabbitMQ is a high-performance AMQP-compliant message broker 
written in Erlang"
+HOMEPAGE="http://www.rabbitmq.com/;
+SRC_URI="https://github.com/rabbitmq/rabbitmq-server/releases/download/v${PV}/rabbitmq-server-${PV}.tar.xz;
+
+LICENSE="GPL-2 MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+RESTRICT="test"
+
+RDEPEND=">=dev-lang/erlang-19.3[ssl,smp]"
+DEPEND="${RDEPEND}
+   app-arch/zip
+   app-arch/unzip
+   app-text/docbook-xml-dtd:4.5
+   app-text/xmlto
+   >=dev-lang/elixir-1.6.6
+   http://www.rabbitmq.com/release-notes/README-3.0.0.txt;
+   fi
+   if has_version "http://www.rabbitmq.com/access-control.html;
+   fi
+}



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

2019-01-25 Thread Matthew Thode
commit: 999292181b56ce82fbbb118d82c44d2262e050e4
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan 25 18:37:22 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Jan 25 18:39:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99929218

app-crypt/certbot-apache: 0.30.1 bump with cleanup

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot-apache/Manifest | 2 +-
 .../{certbot-apache-0.28.0.ebuild => certbot-apache-0.30.1.ebuild}| 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-crypt/certbot-apache/Manifest 
b/app-crypt/certbot-apache/Manifest
index c2562fa9158..75a516951eb 100644
--- a/app-crypt/certbot-apache/Manifest
+++ b/app-crypt/certbot-apache/Manifest
@@ -1,3 +1,3 @@
-DIST certbot-0.28.0.tar.gz 1253582 BLAKE2B 
f97a195afacd279b1dfc2d62ea45ae43dfd2d160f148200dd0756eda1c75561a6b1326a346f84c666c8409d339bc4341106ed4cfc684a7d868b6e1e10707ef78
 SHA512 
07c9bbad52acebc60e48d79619e4f12818d67c3b0f41ffa4fcd02098fb9da245e4006418f54c51c2e4bb9aaa01a21f7a083c9eb092f533e6676ed75ae8667a54
 DIST certbot-0.29.1.tar.gz 1265252 BLAKE2B 
dcb63862f427851655ae8282a3d479adc4aa2f553f510f3769d59748728505cb052291f728f1a01ad4efffa25d9aee6be881a9a7178fb0c025725780150ade45
 SHA512 
c9b976bec51c83412816726b709b79af0b464efa02f67c4ce7e754a2e6fa11e6811ca5db66616bd7b9e7920d6613665d3e58998c891bdb1452a5159a91971c56
 DIST certbot-0.30.0.tar.gz 1266974 BLAKE2B 
f6c0c6864297ba0f6fc3232e0655d79e0b045923c22015d34f706e392ef83ca95c19b36d47120500bf4a0561a277aced13f7fb49d7bdcdc8359113c617dca37c
 SHA512 
85095dd75ce639fcf93d748e2d32a686aecfa9002ccb2c23bdd4e33f1c47268386a86befbcca8180acf48881888fad484f485ad03fc7acef21a308c4d5432ac5
+DIST certbot-0.30.1.tar.gz 1267198 BLAKE2B 
dc1ce89f376d8cd0ca02dbec50cb39e8c7fc5e140c342b8b80e1226ddffa0a3cf798683679d7815cc9da24ce0371e19f5288619ba69941226f6170f8ec9948fc
 SHA512 
31b790ed6911a9e632327d0833209c679535403d71a9977c8b785cc7585c67a4e18971b33f407598da4c7c67e073b0c2164203df34ec69bf3a0feb6bb326fbce

diff --git a/app-crypt/certbot-apache/certbot-apache-0.28.0.ebuild 
b/app-crypt/certbot-apache/certbot-apache-0.30.1.ebuild
similarity index 93%
rename from app-crypt/certbot-apache/certbot-apache-0.28.0.ebuild
rename to app-crypt/certbot-apache/certbot-apache-0.30.1.ebuild
index 2ae0df4119f..b6c158fb2f5 100644
--- a/app-crypt/certbot-apache/certbot-apache-0.28.0.ebuild
+++ b/app-crypt/certbot-apache/certbot-apache-0.30.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
S=${WORKDIR}/${P}/${PN}
 else

SRC_URI="https://github.com/${PN%-apache}/${PN%-apache}/archive/v${PV}.tar.gz 
-> ${PN%-apache}-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm64 x86"
+   KEYWORDS="~amd64 ~arm64 ~x86"
S=${WORKDIR}/${PN%-apache}-${PV}/${PN}
 fi
 



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

2019-01-25 Thread Matthew Thode
commit: 7cb45bc15502de66db60b0529f9c83b856ab7430
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan 25 18:34:40 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Jan 25 18:39:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cb45bc1

app-crypt/certbot: 0.30.1 bump

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot/Manifest  |  1 +
 app-crypt/certbot/certbot-0.30.1.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
index c2562fa9158..0b21b049a44 100644
--- a/app-crypt/certbot/Manifest
+++ b/app-crypt/certbot/Manifest
@@ -1,3 +1,4 @@
 DIST certbot-0.28.0.tar.gz 1253582 BLAKE2B 
f97a195afacd279b1dfc2d62ea45ae43dfd2d160f148200dd0756eda1c75561a6b1326a346f84c666c8409d339bc4341106ed4cfc684a7d868b6e1e10707ef78
 SHA512 
07c9bbad52acebc60e48d79619e4f12818d67c3b0f41ffa4fcd02098fb9da245e4006418f54c51c2e4bb9aaa01a21f7a083c9eb092f533e6676ed75ae8667a54
 DIST certbot-0.29.1.tar.gz 1265252 BLAKE2B 
dcb63862f427851655ae8282a3d479adc4aa2f553f510f3769d59748728505cb052291f728f1a01ad4efffa25d9aee6be881a9a7178fb0c025725780150ade45
 SHA512 
c9b976bec51c83412816726b709b79af0b464efa02f67c4ce7e754a2e6fa11e6811ca5db66616bd7b9e7920d6613665d3e58998c891bdb1452a5159a91971c56
 DIST certbot-0.30.0.tar.gz 1266974 BLAKE2B 
f6c0c6864297ba0f6fc3232e0655d79e0b045923c22015d34f706e392ef83ca95c19b36d47120500bf4a0561a277aced13f7fb49d7bdcdc8359113c617dca37c
 SHA512 
85095dd75ce639fcf93d748e2d32a686aecfa9002ccb2c23bdd4e33f1c47268386a86befbcca8180acf48881888fad484f485ad03fc7acef21a308c4d5432ac5
+DIST certbot-0.30.1.tar.gz 1267198 BLAKE2B 
dc1ce89f376d8cd0ca02dbec50cb39e8c7fc5e140c342b8b80e1226ddffa0a3cf798683679d7815cc9da24ce0371e19f5288619ba69941226f6170f8ec9948fc
 SHA512 
31b790ed6911a9e632327d0833209c679535403d71a9977c8b785cc7585c67a4e18971b33f407598da4c7c67e073b0c2164203df34ec69bf3a0feb6bb326fbce

diff --git a/app-crypt/certbot/certbot-0.30.1.ebuild 
b/app-crypt/certbot/certbot-0.30.1.ebuild
new file mode 100644
index 000..f5ff7c45897
--- /dev/null
+++ b/app-crypt/certbot/certbot-0.30.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+fi
+
+inherit distutils-r1
+
+DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
+HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="test"
+
+CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="
+   ${CDEPEND}
+   >=app-crypt/acme-0.26.0[${PYTHON_USEDEP}]
+   >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
+   dev-python/configobj[${PYTHON_USEDEP}]
+   >=dev-python/cryptography-1.2[${PYTHON_USEDEP}]
+   dev-python/josepy[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   >=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
+   dev-python/pyrfc3339[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/zope-component[${PYTHON_USEDEP}]
+   dev-python/zope-interface[${PYTHON_USEDEP}]"
+DEPEND="
+   ${CDEPEND}
+   test? (
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+python_test() {
+   pytest -vv ${PN} || die
+}



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

2019-01-25 Thread Matthew Thode
commit: a993fad9a3506e144871eaebb9049c8302e09744
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan 25 18:37:55 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Jan 25 18:39:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a993fad9

app-crypt/certbot: 0.28.0 cleanup

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot/Manifest  |  1 -
 app-crypt/certbot/certbot-0.28.0.ebuild | 46 -
 2 files changed, 47 deletions(-)

diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
index 0b21b049a44..75a516951eb 100644
--- a/app-crypt/certbot/Manifest
+++ b/app-crypt/certbot/Manifest
@@ -1,4 +1,3 @@
-DIST certbot-0.28.0.tar.gz 1253582 BLAKE2B 
f97a195afacd279b1dfc2d62ea45ae43dfd2d160f148200dd0756eda1c75561a6b1326a346f84c666c8409d339bc4341106ed4cfc684a7d868b6e1e10707ef78
 SHA512 
07c9bbad52acebc60e48d79619e4f12818d67c3b0f41ffa4fcd02098fb9da245e4006418f54c51c2e4bb9aaa01a21f7a083c9eb092f533e6676ed75ae8667a54
 DIST certbot-0.29.1.tar.gz 1265252 BLAKE2B 
dcb63862f427851655ae8282a3d479adc4aa2f553f510f3769d59748728505cb052291f728f1a01ad4efffa25d9aee6be881a9a7178fb0c025725780150ade45
 SHA512 
c9b976bec51c83412816726b709b79af0b464efa02f67c4ce7e754a2e6fa11e6811ca5db66616bd7b9e7920d6613665d3e58998c891bdb1452a5159a91971c56
 DIST certbot-0.30.0.tar.gz 1266974 BLAKE2B 
f6c0c6864297ba0f6fc3232e0655d79e0b045923c22015d34f706e392ef83ca95c19b36d47120500bf4a0561a277aced13f7fb49d7bdcdc8359113c617dca37c
 SHA512 
85095dd75ce639fcf93d748e2d32a686aecfa9002ccb2c23bdd4e33f1c47268386a86befbcca8180acf48881888fad484f485ad03fc7acef21a308c4d5432ac5
 DIST certbot-0.30.1.tar.gz 1267198 BLAKE2B 
dc1ce89f376d8cd0ca02dbec50cb39e8c7fc5e140c342b8b80e1226ddffa0a3cf798683679d7815cc9da24ce0371e19f5288619ba69941226f6170f8ec9948fc
 SHA512 
31b790ed6911a9e632327d0833209c679535403d71a9977c8b785cc7585c67a4e18971b33f407598da4c7c67e073b0c2164203df34ec69bf3a0feb6bb326fbce

diff --git a/app-crypt/certbot/certbot-0.28.0.ebuild 
b/app-crypt/certbot/certbot-0.28.0.ebuild
deleted file mode 100644
index 23369bbd4ef..000
--- a/app-crypt/certbot/certbot-0.28.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# 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})
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="test"
-
-CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="
-   ${CDEPEND}
-   >=app-crypt/acme-0.26.0[${PYTHON_USEDEP}]
-   >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
-   dev-python/configobj[${PYTHON_USEDEP}]
-   >=dev-python/cryptography-1.2[${PYTHON_USEDEP}]
-   dev-python/josepy[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   >=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
-   dev-python/pyrfc3339[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/zope-component[${PYTHON_USEDEP}]
-   dev-python/zope-interface[${PYTHON_USEDEP}]"
-DEPEND="
-   ${CDEPEND}
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-python_test() {
-   pytest -vv ${PN} || die
-}



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

2019-01-25 Thread Matthew Thode
commit: 63dbc95500beefd836883d0811864d936496bffd
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan 25 18:38:47 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Jan 25 18:39:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63dbc955

app-crypt/acme: 0.28.0 cleanup

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/acme/Manifest   |  1 -
 app-crypt/acme/acme-0.28.0.ebuild | 48 ---
 app-crypt/acme/acme-.ebuild   |  6 ++---
 3 files changed, 3 insertions(+), 52 deletions(-)

diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
index 0b21b049a44..75a516951eb 100644
--- a/app-crypt/acme/Manifest
+++ b/app-crypt/acme/Manifest
@@ -1,4 +1,3 @@
-DIST certbot-0.28.0.tar.gz 1253582 BLAKE2B 
f97a195afacd279b1dfc2d62ea45ae43dfd2d160f148200dd0756eda1c75561a6b1326a346f84c666c8409d339bc4341106ed4cfc684a7d868b6e1e10707ef78
 SHA512 
07c9bbad52acebc60e48d79619e4f12818d67c3b0f41ffa4fcd02098fb9da245e4006418f54c51c2e4bb9aaa01a21f7a083c9eb092f533e6676ed75ae8667a54
 DIST certbot-0.29.1.tar.gz 1265252 BLAKE2B 
dcb63862f427851655ae8282a3d479adc4aa2f553f510f3769d59748728505cb052291f728f1a01ad4efffa25d9aee6be881a9a7178fb0c025725780150ade45
 SHA512 
c9b976bec51c83412816726b709b79af0b464efa02f67c4ce7e754a2e6fa11e6811ca5db66616bd7b9e7920d6613665d3e58998c891bdb1452a5159a91971c56
 DIST certbot-0.30.0.tar.gz 1266974 BLAKE2B 
f6c0c6864297ba0f6fc3232e0655d79e0b045923c22015d34f706e392ef83ca95c19b36d47120500bf4a0561a277aced13f7fb49d7bdcdc8359113c617dca37c
 SHA512 
85095dd75ce639fcf93d748e2d32a686aecfa9002ccb2c23bdd4e33f1c47268386a86befbcca8180acf48881888fad484f485ad03fc7acef21a308c4d5432ac5
 DIST certbot-0.30.1.tar.gz 1267198 BLAKE2B 
dc1ce89f376d8cd0ca02dbec50cb39e8c7fc5e140c342b8b80e1226ddffa0a3cf798683679d7815cc9da24ce0371e19f5288619ba69941226f6170f8ec9948fc
 SHA512 
31b790ed6911a9e632327d0833209c679535403d71a9977c8b785cc7585c67a4e18971b33f407598da4c7c67e073b0c2164203df34ec69bf3a0feb6bb326fbce

diff --git a/app-crypt/acme/acme-0.28.0.ebuild 
b/app-crypt/acme/acme-0.28.0.ebuild
deleted file mode 100644
index 4c81e8bdcdb..000
--- a/app-crypt/acme/acme-0.28.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# 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})
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
-   inherit git-r3
-   S=${WORKDIR}/${P}/${PN}
-else
-   SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-   S=${WORKDIR}/certbot-${PV}/acme
-fi
-
-inherit distutils-r1
-
-DESCRIPTION="An implementation of the ACME protocol"
-HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="test"
-
-RDEPEND="
-   >=dev-python/cryptography-0.8[${PYTHON_USEDEP}]
-   >=dev-python/josepy-1.0.0[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
-   dev-python/pyrfc3339[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.10[${PYTHON_USEDEP}]
-   >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-   test? (
-   ${RDEPEND}
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-xdist[${PYTHON_USEDEP}]
-   )
-   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
-"
-
-python_test() {
-   nosetests -w ${PN} || die
-}

diff --git a/app-crypt/acme/acme-.ebuild b/app-crypt/acme/acme-.ebuild
index cc2960bf38c..cc94bdaee73 100644
--- a/app-crypt/acme/acme-.ebuild
+++ b/app-crypt/acme/acme-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -24,10 +24,10 @@ SLOT="0"
 IUSE="test"
 
 RDEPEND="
-   >=dev-python/cryptography-0.8[${PYTHON_USEDEP}]
+   >=dev-python/cryptography-1.2.3[${PYTHON_USEDEP}]
>=dev-python/josepy-1.0.0[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
>=dev-python/requests-2.10[${PYTHON_USEDEP}]



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

2019-01-25 Thread Matthew Thode
commit: 4668465875fbbeabe38d7672e177399f5a848bd7
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan 25 18:36:04 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Jan 25 18:39:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46684658

app-crypt/certbot-nginx: 0.30.1 bump with cleanup

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot-nginx/Manifest  | 2 +-
 .../{certbot-nginx-0.28.0.ebuild => certbot-nginx-0.30.1.ebuild}  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-crypt/certbot-nginx/Manifest b/app-crypt/certbot-nginx/Manifest
index c2562fa9158..75a516951eb 100644
--- a/app-crypt/certbot-nginx/Manifest
+++ b/app-crypt/certbot-nginx/Manifest
@@ -1,3 +1,3 @@
-DIST certbot-0.28.0.tar.gz 1253582 BLAKE2B 
f97a195afacd279b1dfc2d62ea45ae43dfd2d160f148200dd0756eda1c75561a6b1326a346f84c666c8409d339bc4341106ed4cfc684a7d868b6e1e10707ef78
 SHA512 
07c9bbad52acebc60e48d79619e4f12818d67c3b0f41ffa4fcd02098fb9da245e4006418f54c51c2e4bb9aaa01a21f7a083c9eb092f533e6676ed75ae8667a54
 DIST certbot-0.29.1.tar.gz 1265252 BLAKE2B 
dcb63862f427851655ae8282a3d479adc4aa2f553f510f3769d59748728505cb052291f728f1a01ad4efffa25d9aee6be881a9a7178fb0c025725780150ade45
 SHA512 
c9b976bec51c83412816726b709b79af0b464efa02f67c4ce7e754a2e6fa11e6811ca5db66616bd7b9e7920d6613665d3e58998c891bdb1452a5159a91971c56
 DIST certbot-0.30.0.tar.gz 1266974 BLAKE2B 
f6c0c6864297ba0f6fc3232e0655d79e0b045923c22015d34f706e392ef83ca95c19b36d47120500bf4a0561a277aced13f7fb49d7bdcdc8359113c617dca37c
 SHA512 
85095dd75ce639fcf93d748e2d32a686aecfa9002ccb2c23bdd4e33f1c47268386a86befbcca8180acf48881888fad484f485ad03fc7acef21a308c4d5432ac5
+DIST certbot-0.30.1.tar.gz 1267198 BLAKE2B 
dc1ce89f376d8cd0ca02dbec50cb39e8c7fc5e140c342b8b80e1226ddffa0a3cf798683679d7815cc9da24ce0371e19f5288619ba69941226f6170f8ec9948fc
 SHA512 
31b790ed6911a9e632327d0833209c679535403d71a9977c8b785cc7585c67a4e18971b33f407598da4c7c67e073b0c2164203df34ec69bf3a0feb6bb326fbce

diff --git a/app-crypt/certbot-nginx/certbot-nginx-0.28.0.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-0.30.1.ebuild
similarity index 92%
rename from app-crypt/certbot-nginx/certbot-nginx-0.28.0.ebuild
rename to app-crypt/certbot-nginx/certbot-nginx-0.30.1.ebuild
index 6b6c1d3784c..b84d186a8cd 100644
--- a/app-crypt/certbot-nginx/certbot-nginx-0.28.0.ebuild
+++ b/app-crypt/certbot-nginx/certbot-nginx-0.30.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
S=${WORKDIR}/${P}/${PN}
 else

SRC_URI="https://github.com/${PN%-nginx}/${PN%-nginx}/archive/v${PV}.tar.gz -> 
${PN%-nginx}-${PV}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
S=${WORKDIR}/${PN%-nginx}-${PV}/${PN}
 fi
 



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

2019-01-25 Thread Matthew Thode
commit: dc973cad25b75ccdcecae00e81ad6eb153e71f7f
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan 25 18:31:54 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Jan 25 18:39:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc973cad

app-crypt/acme: 0.30.1 bump

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/acme/Manifest   |  1 +
 app-crypt/acme/acme-0.30.1.ebuild | 48 +++
 2 files changed, 49 insertions(+)

diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
index c2562fa9158..0b21b049a44 100644
--- a/app-crypt/acme/Manifest
+++ b/app-crypt/acme/Manifest
@@ -1,3 +1,4 @@
 DIST certbot-0.28.0.tar.gz 1253582 BLAKE2B 
f97a195afacd279b1dfc2d62ea45ae43dfd2d160f148200dd0756eda1c75561a6b1326a346f84c666c8409d339bc4341106ed4cfc684a7d868b6e1e10707ef78
 SHA512 
07c9bbad52acebc60e48d79619e4f12818d67c3b0f41ffa4fcd02098fb9da245e4006418f54c51c2e4bb9aaa01a21f7a083c9eb092f533e6676ed75ae8667a54
 DIST certbot-0.29.1.tar.gz 1265252 BLAKE2B 
dcb63862f427851655ae8282a3d479adc4aa2f553f510f3769d59748728505cb052291f728f1a01ad4efffa25d9aee6be881a9a7178fb0c025725780150ade45
 SHA512 
c9b976bec51c83412816726b709b79af0b464efa02f67c4ce7e754a2e6fa11e6811ca5db66616bd7b9e7920d6613665d3e58998c891bdb1452a5159a91971c56
 DIST certbot-0.30.0.tar.gz 1266974 BLAKE2B 
f6c0c6864297ba0f6fc3232e0655d79e0b045923c22015d34f706e392ef83ca95c19b36d47120500bf4a0561a277aced13f7fb49d7bdcdc8359113c617dca37c
 SHA512 
85095dd75ce639fcf93d748e2d32a686aecfa9002ccb2c23bdd4e33f1c47268386a86befbcca8180acf48881888fad484f485ad03fc7acef21a308c4d5432ac5
+DIST certbot-0.30.1.tar.gz 1267198 BLAKE2B 
dc1ce89f376d8cd0ca02dbec50cb39e8c7fc5e140c342b8b80e1226ddffa0a3cf798683679d7815cc9da24ce0371e19f5288619ba69941226f6170f8ec9948fc
 SHA512 
31b790ed6911a9e632327d0833209c679535403d71a9977c8b785cc7585c67a4e18971b33f407598da4c7c67e073b0c2164203df34ec69bf3a0feb6bb326fbce

diff --git a/app-crypt/acme/acme-0.30.1.ebuild 
b/app-crypt/acme/acme-0.30.1.ebuild
new file mode 100644
index 000..cc94bdaee73
--- /dev/null
+++ b/app-crypt/acme/acme-0.30.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
+   inherit git-r3
+   S=${WORKDIR}/${P}/${PN}
+else
+   SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+   S=${WORKDIR}/certbot-${PV}/acme
+fi
+
+inherit distutils-r1
+
+DESCRIPTION="An implementation of the ACME protocol"
+HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/cryptography-1.2.3[${PYTHON_USEDEP}]
+   >=dev-python/josepy-1.0.0[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}]
+   dev-python/pyrfc3339[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.10[${PYTHON_USEDEP}]
+   >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}]
+   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   test? (
+   ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
+"
+
+python_test() {
+   nosetests -w ${PN} || die
+}



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

2019-01-25 Thread Mikle Kolyada
commit: ac194697f14c2298a4b18ab43d811397a59e84d5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 17:17:51 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 17:17:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac194697

net-misc/dhcpcd: Drop old

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

 net-misc/dhcpcd/Manifest |   3 -
 net-misc/dhcpcd/dhcpcd-6.11.5.ebuild | 114 ---
 net-misc/dhcpcd/dhcpcd-7.0.6.ebuild  | 149 ---
 net-misc/dhcpcd/dhcpcd-7.0.7.ebuild  | 149 ---
 4 files changed, 415 deletions(-)

diff --git a/net-misc/dhcpcd/Manifest b/net-misc/dhcpcd/Manifest
index 4ccc0a2ffe1..45a78185d92 100644
--- a/net-misc/dhcpcd/Manifest
+++ b/net-misc/dhcpcd/Manifest
@@ -1,7 +1,4 @@
 DIST dhcpcd-6.11.3.tar.xz 194892 BLAKE2B 
08253879221f2cbccf69caf06ccbde960103fdf4de194f746572f4fa10497ab23dc1a41b6a849fe75f68a1d7a653e5358a7976581da0a92c8f19e2627b921440
 SHA512 
249185532cb239124f847c28e6bfb3e8a85e818e05a07eb0c6ac6843fbbab8afa8d6ebce4032b3537ccfb7fafb306dd0dc51c0e97f337f12f5071ba499686a70
-DIST dhcpcd-6.11.5.tar.xz 198080 BLAKE2B 
3172fcb1c09c3bb7fcf4896c6e9896744a8f4f6ae0292bfedb3a96ce435a774b42fdc1a1e9d288edc786c544c17c21fd7d3c8c6e6a6832acdad7e1f5edfa8c0b
 SHA512 
a23d5dde66567c4addbc86c8b3fbf2c5d4dba3b463659729778a310306ab0e949be8998154ef15401ac2d289bde2f090d44492bba6a1becd2f01890d4efe7051
 DIST dhcpcd-7.0.1.tar.xz 207908 BLAKE2B 
1a9350a0c4a9eb1eb6f5a7be78beb4a5fecd802ee90a4649ab17db69eabc75a913b9f3db97ea6260bcad3516b9613c20f74d9d68a7ac98b508458e5cd30cf15f
 SHA512 
d2a9b053aa663dd1ed38a10a73ee3377a3a076c9638bdda9331a4c161c2ba87f5f68f366ac8e1f1015404f617b74261a03a97ac7cdfd642b4a41b87b54984c34
-DIST dhcpcd-7.0.6.tar.xz 210392 BLAKE2B 
c343ebfd42cfd0c76d3524cab799d05e3ec0c1735fde1703613a60cd4e3a656d4a1428ed8a84f7d66ef4d39ffb519ab7eabf4d7c765e6dec93386ccf7d84f363
 SHA512 
5885739e60d6eb4fded117cb87f59a073ae6e8da8454dee56d8e7c5d33778e413e121d28a22163ebf31e4508a21d3a21c1d17ee6d4551081db2ee8e5384d44c9
-DIST dhcpcd-7.0.7.tar.xz 210572 BLAKE2B 
4ba70c32fe012930928a8c3363c8fe3f655943883ff521fcfb3b5b75950be2e7432ca79e52298a119fc70c1dd8095a28f59d4cabe62da3ad8179c0dc73af0aac
 SHA512 
04c316f7b180bbbf48aa58273d3a28d659824e474d1ce48325f610ed2c5d2a01117f5b65b4a9697f3e8e1b85d4bdcc0b8ab75a928a8cd5723a865d8c0a065269
 DIST dhcpcd-7.0.8.tar.xz 210752 BLAKE2B 
ad8ba622589cc1c8c4bb332470c59527e03c817729f43a5b55b4f53f8ed60f35faaffbff24416f8596e78df8deb304f0598e27d890e9601d36c81250fda99942
 SHA512 
82cd845eb35670788b8f31b973945460f4c5f1a0a3025e3a452b79230dc30704e129d97140e6aec6d0281e0c89c333c0ce0af03c4767b2e5e66547ed3e071953
 DIST dhcpcd-7.1.0.tar.xz 211496 BLAKE2B 
ca919723f8f205ad24e28751024ff68cb4d1e86d056d47b1390a8e81cbb62d61e6a09d50d95756968d43383420e479846a4527095532d2761e26c6f4d780988b
 SHA512 
28d2b5ff8cb372df6432becdbfeedaea945608b14374b6af8938936efdaa73d8d8f1cb3f37d2f440137c2f6988f72ed8de6d1bda43d65d4fe22efdd0a1662c24

diff --git a/net-misc/dhcpcd/dhcpcd-6.11.5.ebuild 
b/net-misc/dhcpcd/dhcpcd-6.11.5.ebuild
deleted file mode 100644
index 3880ad08283..000
--- a/net-misc/dhcpcd/dhcpcd-6.11.5.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} == "" ]]; then
-   FOSSIL_URI="http://roy.marples.name/projects/dhcpcd;
-else
-   MY_P="${P/_alpha/-alpha}"
-   MY_P="${MY_P/_beta/-beta}"
-   MY_P="${MY_P/_rc/-rc}"
-   SRC_URI="https://roy.marples.name/downloads/${PN}/${MY_P}.tar.xz;
-   KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-   S="${WORKDIR}/${MY_P}"
-fi
-
-inherit eutils systemd toolchain-funcs
-
-DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client"
-HOMEPAGE="https://roy.marples.name/projects/dhcpcd;
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="elibc_glibc +embedded ipv6 kernel_linux +udev"
-
-COMMON_DEPEND="udev? ( virtual/udev )"
-DEPEND="${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}"
-
-if [[ ${PV} == "" ]]; then
-   DEPEND+=" dev-vcs/fossil"
-
-   src_unpack()
-   {
-   local distdir=${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}
-   local repo=${distdir}/fossil/${PN}.fossil
-
-   addwrite "${distdir}"
-
-   if [[ -e "${repo}" ]]; then
-   fossil pull "${FOSSIL_URI}" -R "${repo}" || die
-   else
-   mkdir -p "${distdir}/fossil" || die
-   fossil clone "${FOSSIL_URI}" "${repo}" || die
-   fi
-
-   mkdir -p "${S}" || die
-   cd "${S}" || die
-   fossil open "${repo}" || die
-   }
-fi
-
-src_configure()
-{
-   local dev hooks rundir
-   use udev || dev="--without-dev 

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

2019-01-25 Thread Mikle Kolyada
commit: 7dbbfed35de25d2889231122f8f3f927c732096e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 17:16:12 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 17:16:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dbbfed3

net-misc/dhcpcd: Version bump (v7.1.0)

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

 net-misc/dhcpcd/Manifest|   1 +
 net-misc/dhcpcd/dhcpcd-7.1.0.ebuild | 149 
 2 files changed, 150 insertions(+)

diff --git a/net-misc/dhcpcd/Manifest b/net-misc/dhcpcd/Manifest
index eb44c071cf7..4ccc0a2ffe1 100644
--- a/net-misc/dhcpcd/Manifest
+++ b/net-misc/dhcpcd/Manifest
@@ -4,3 +4,4 @@ DIST dhcpcd-7.0.1.tar.xz 207908 BLAKE2B 
1a9350a0c4a9eb1eb6f5a7be78beb4a5fecd802e
 DIST dhcpcd-7.0.6.tar.xz 210392 BLAKE2B 
c343ebfd42cfd0c76d3524cab799d05e3ec0c1735fde1703613a60cd4e3a656d4a1428ed8a84f7d66ef4d39ffb519ab7eabf4d7c765e6dec93386ccf7d84f363
 SHA512 
5885739e60d6eb4fded117cb87f59a073ae6e8da8454dee56d8e7c5d33778e413e121d28a22163ebf31e4508a21d3a21c1d17ee6d4551081db2ee8e5384d44c9
 DIST dhcpcd-7.0.7.tar.xz 210572 BLAKE2B 
4ba70c32fe012930928a8c3363c8fe3f655943883ff521fcfb3b5b75950be2e7432ca79e52298a119fc70c1dd8095a28f59d4cabe62da3ad8179c0dc73af0aac
 SHA512 
04c316f7b180bbbf48aa58273d3a28d659824e474d1ce48325f610ed2c5d2a01117f5b65b4a9697f3e8e1b85d4bdcc0b8ab75a928a8cd5723a865d8c0a065269
 DIST dhcpcd-7.0.8.tar.xz 210752 BLAKE2B 
ad8ba622589cc1c8c4bb332470c59527e03c817729f43a5b55b4f53f8ed60f35faaffbff24416f8596e78df8deb304f0598e27d890e9601d36c81250fda99942
 SHA512 
82cd845eb35670788b8f31b973945460f4c5f1a0a3025e3a452b79230dc30704e129d97140e6aec6d0281e0c89c333c0ce0af03c4767b2e5e66547ed3e071953
+DIST dhcpcd-7.1.0.tar.xz 211496 BLAKE2B 
ca919723f8f205ad24e28751024ff68cb4d1e86d056d47b1390a8e81cbb62d61e6a09d50d95756968d43383420e479846a4527095532d2761e26c6f4d780988b
 SHA512 
28d2b5ff8cb372df6432becdbfeedaea945608b14374b6af8938936efdaa73d8d8f1cb3f37d2f440137c2f6988f72ed8de6d1bda43d65d4fe22efdd0a1662c24

diff --git a/net-misc/dhcpcd/dhcpcd-7.1.0.ebuild 
b/net-misc/dhcpcd/dhcpcd-7.1.0.ebuild
new file mode 100644
index 000..a1f2efc1cab
--- /dev/null
+++ b/net-misc/dhcpcd/dhcpcd-7.1.0.ebuild
@@ -0,0 +1,149 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://roy.marples.name/git/dhcpcd.git;
+   inherit git-r3
+else
+   MY_P="${P/_alpha/-alpha}"
+   MY_P="${MY_P/_beta/-beta}"
+   MY_P="${MY_P/_rc/-rc}"
+   SRC_URI="https://roy.marples.name/downloads/${PN}/${MY_P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+inherit eutils systemd toolchain-funcs
+
+DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client"
+HOMEPAGE="https://roy.marples.name/projects/dhcpcd;
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="elibc_glibc +embedded ipv6 kernel_linux +udev"
+
+COMMON_DEPEND="udev? ( virtual/udev )"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+
+src_configure()
+{
+   local dev hooks rundir
+   use udev || dev="--without-dev --without-udev"
+   hooks="--with-hook=ntp.conf"
+   use elibc_glibc && hooks="${hooks} --with-hook=yp.conf"
+   use kernel_linux && rundir="--rundir=${EPREFIX}/run"
+   econf \
+   --prefix="${EPREFIX}" \
+   --libexecdir="${EPREFIX}/lib/dhcpcd" \
+   --dbdir="${EPREFIX}/var/lib/dhcpcd" \
+   --localstatedir="${EPREFIX}/var" \
+   ${rundir} \
+   $(use_enable embedded) \
+   $(use_enable ipv6) \
+   ${dev} \
+   CC="$(tc-getCC)" \
+   ${hooks}
+}
+
+src_install()
+{
+   default
+   keepdir /var/lib/dhcpcd
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   systemd_dounit "${FILESDIR}"/${PN}.service
+}
+
+pkg_postinst()
+{
+   local dbdir="${EROOT%/}"/var/lib/dhcpcd old_files=
+
+   local old_old_duid="${EROOT%/}"/var/lib/dhcpcd/dhcpcd.duid
+   local old_duid="${EROOT%/}"/etc/dhcpcd.duid
+   local new_duid="${dbdir}"/duid
+   if [ -e "${old_old_duid}" ]; then
+   # Upgrade the duid file to the new format if needed
+   if ! grep -q '..:..:..:..:..:..' "${old_old_duid}"; then
+   sed -i -e 's/\(..\)/\1:/g; s/:$//g' "${old_old_duid}"
+   fi
+
+   # Move the duid to /etc, a more sensible location
+   if [ ! -e "${old_duid}" ]; then
+   cp -p "${old_old_duid}" "${new_duid}"
+   fi
+   old_files="${old_files} ${old_old_duid}"
+   fi
+
+   # dhcpcd-7 moves the files out of /etc
+   if [ -e "${old_duid}" ]; then
+   if [ ! 

[gentoo-commits] repo/gentoo:master commit in: www-apache/mod_h2/

2019-01-25 Thread Craig Andrews
commit: 9fbd1b02f14ea7d9ace7f6d448985fad0fc0069e
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Jan 25 17:02:56 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Fri Jan 25 17:03:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fbd1b02

www-apache/mod_h2: 1.12.2 version bump

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

 www-apache/mod_h2/Manifest |  1 +
 www-apache/mod_h2/mod_h2-1.12.2.ebuild | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/www-apache/mod_h2/Manifest b/www-apache/mod_h2/Manifest
index c58a2ba112a..5fa909f4d8d 100644
--- a/www-apache/mod_h2/Manifest
+++ b/www-apache/mod_h2/Manifest
@@ -3,3 +3,4 @@ DIST mod_http2-1.11.3.tar.gz 1028467 BLAKE2B 
3a5d644f87104e1f7baae05396fefe94975
 DIST mod_http2-1.11.4.tar.gz 1028706 BLAKE2B 
f2c662913a30e96fe28d68690cf0fe33e4de2d7072bb46016f063a9aa979dfdbb9e39f88110c56bc3a319e1220365159fd0c15356bfbf981ae57377e137c1e96
 SHA512 
1347e8fe4d88d8d87ca547270a27ac63c7b7804b57a06a225ab4199a24a55ad3048cb4c7a50fb7cc2ea2a78b2cf0f1dd8f5bad6191d2854df30042f0d64e6a1c
 DIST mod_http2-1.12.0.tar.gz 1029587 BLAKE2B 
10578491ce39b91e1d6363cb98d45c2c3ca74c5126af489b1c4261e80aef907b9b737a9322a54a144af7cd0892b8d0c0a86ba4467aeaf826199b989226593154
 SHA512 
50d8d8e44ba8d4516fac642aea9c2ce5afe766aaa1bb930ca64fd9fdb4983ee5db9677d4e9d10d88391d39b9a9be127594a90670493c39ef6368e073456034f0
 DIST mod_http2-1.12.1.tar.gz 1030534 BLAKE2B 
cbe02be6dfd1d1563a86c020f7eb8f5922e5d171b3a5d4714539658d5a3e067774b4bbb803e67943ef9b04caef6f3d69291d9ab0f6d8334839a98f466bd3851b
 SHA512 
72cb915bdd283742a7bc2676adf3440d5e30588df87e4dc5750886747b0026e0cd0a36f08a39c323e647c83ecef6b434b33c23c96bb7c00ad480d430c1f37f44
+DIST mod_http2-1.12.2.tar.gz 1030072 BLAKE2B 
efb829eb98bb40489e9a52267125d79093ed2055e50ef6ae6c5fed7616df050e9ec659dd72764534ec778d75e6c462764baff88193970d2bbadf85572d5535f2
 SHA512 
2fab9625ba7adaa85fa4b1c55e0e1420851d1e44766f81c1e5b60b0b310b071047651c07b44b0dbeaf2d3cb2c722b9de3c52f145eb12e63c08301cf8c1f294cc

diff --git a/www-apache/mod_h2/mod_h2-1.12.2.ebuild 
b/www-apache/mod_h2/mod_h2-1.12.2.ebuild
new file mode 100644
index 000..3e6d435d3f8
--- /dev/null
+++ b/www-apache/mod_h2/mod_h2-1.12.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit apache-module autotools
+
+MY_P="${PN/h2/http2}-${PV}"
+
+if [[ ${PV} ==  ]] ; then
+   EGIT_REPO_URI="https://github.com/icing/mod_h2.git;
+   inherit git-r3
+else
+   S="${WORKDIR}/${MY_P}"
+   
SRC_URI="https://github.com/icing/mod_h2/releases/download/v${PV}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="HTTP/2 module for Apache"
+HOMEPAGE="https://github.com/icing/mod_h2;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="ssl"
+
+RDEPEND=">=net-libs/nghttp2-1.0
+   >=www-servers/apache-2.4.20[-apache2_modules_http2,ssl?]"
+DEPEND="${RDEPEND}"
+
+need_apache2_4
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_compile() {
+   default
+}
+
+src_install() {
+   default
+
+   APACHE2_MOD_DEFINE="HTTP2"
+   insinto "${APACHE_MODULES_CONFDIR}"
+   newins "${FILESDIR}/mod_http2.conf" "41_mod_http2.conf"
+}



[gentoo-commits] repo/gentoo:master commit in: www-apache/mod_h2/

2019-01-25 Thread Craig Andrews
commit: 1802f6d90f927abd14eec17e11ca4cc5c425c238
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Jan 25 17:03:36 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Fri Jan 25 17:03:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1802f6d9

www-apache/mod_h2: Cleanup old versions

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

 www-apache/mod_h2/Manifest  |  4 ---
 www-apache/mod_h2/mod_h2-1.10.10.ebuild | 47 -
 www-apache/mod_h2/mod_h2-1.11.3.ebuild  | 47 -
 www-apache/mod_h2/mod_h2-1.11.4.ebuild  | 47 -
 www-apache/mod_h2/mod_h2-1.12.0.ebuild  | 47 -
 5 files changed, 192 deletions(-)

diff --git a/www-apache/mod_h2/Manifest b/www-apache/mod_h2/Manifest
index 5fa909f4d8d..899413b5a5f 100644
--- a/www-apache/mod_h2/Manifest
+++ b/www-apache/mod_h2/Manifest
@@ -1,6 +1,2 @@
-DIST mod_http2-1.10.10.tar.gz 528560 BLAKE2B 
7389441b1d30d0448bb17fc02a73957cf20365020796ce7260c1d63d1468537ecdeab83db12d1b245af1e760236da8e8d0ccf9ffb222d2dec1e55491ac77dc11
 SHA512 
b4b9e734ed35ca63fa114462f1adb358bb73e4cbd8df95ab28c4518b8f7db40233f4ba13bc2194847eb9c1adbc3eb86fc63cbb56389fc0867767658d4d8ba77b
-DIST mod_http2-1.11.3.tar.gz 1028467 BLAKE2B 
3a5d644f87104e1f7baae05396fefe94975e86e9289bb9c4e6d7ed94e45e1d9b38dfc79d0e0d9ee9270efedcd811db2374c898e419d4c16f73b38f53512e91ed
 SHA512 
b97697f44eab9984b7dcaa7d941f23375cd5c2c81405842e17910a37dc2c952fc36a37e0802755457ccedd196c5fd2fb5b60467cb0ed16ed7aeb88cce4eabd2f
-DIST mod_http2-1.11.4.tar.gz 1028706 BLAKE2B 
f2c662913a30e96fe28d68690cf0fe33e4de2d7072bb46016f063a9aa979dfdbb9e39f88110c56bc3a319e1220365159fd0c15356bfbf981ae57377e137c1e96
 SHA512 
1347e8fe4d88d8d87ca547270a27ac63c7b7804b57a06a225ab4199a24a55ad3048cb4c7a50fb7cc2ea2a78b2cf0f1dd8f5bad6191d2854df30042f0d64e6a1c
-DIST mod_http2-1.12.0.tar.gz 1029587 BLAKE2B 
10578491ce39b91e1d6363cb98d45c2c3ca74c5126af489b1c4261e80aef907b9b737a9322a54a144af7cd0892b8d0c0a86ba4467aeaf826199b989226593154
 SHA512 
50d8d8e44ba8d4516fac642aea9c2ce5afe766aaa1bb930ca64fd9fdb4983ee5db9677d4e9d10d88391d39b9a9be127594a90670493c39ef6368e073456034f0
 DIST mod_http2-1.12.1.tar.gz 1030534 BLAKE2B 
cbe02be6dfd1d1563a86c020f7eb8f5922e5d171b3a5d4714539658d5a3e067774b4bbb803e67943ef9b04caef6f3d69291d9ab0f6d8334839a98f466bd3851b
 SHA512 
72cb915bdd283742a7bc2676adf3440d5e30588df87e4dc5750886747b0026e0cd0a36f08a39c323e647c83ecef6b434b33c23c96bb7c00ad480d430c1f37f44
 DIST mod_http2-1.12.2.tar.gz 1030072 BLAKE2B 
efb829eb98bb40489e9a52267125d79093ed2055e50ef6ae6c5fed7616df050e9ec659dd72764534ec778d75e6c462764baff88193970d2bbadf85572d5535f2
 SHA512 
2fab9625ba7adaa85fa4b1c55e0e1420851d1e44766f81c1e5b60b0b310b071047651c07b44b0dbeaf2d3cb2c722b9de3c52f145eb12e63c08301cf8c1f294cc

diff --git a/www-apache/mod_h2/mod_h2-1.10.10.ebuild 
b/www-apache/mod_h2/mod_h2-1.10.10.ebuild
deleted file mode 100644
index eaf87ecaf6b..000
--- a/www-apache/mod_h2/mod_h2-1.10.10.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit apache-module
-
-MY_P="${PN/h2/http2}-${PV}"
-
-if [[ ${PV} ==  ]] ; then
-   EGIT_REPO_URI="https://github.com/icing/mod_h2.git;
-   inherit autotools git-r3
-else
-   S="${WORKDIR}/${MY_P}"
-   
SRC_URI="https://github.com/icing/mod_h2/releases/download/v${PV}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="HTTP/2 module for Apache"
-HOMEPAGE="https://github.com/icing/mod_h2;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="ssl"
-
-RDEPEND=">=net-libs/nghttp2-1.0
-   >=www-servers/apache-2.4.20[-apache2_modules_http2,ssl?]"
-DEPEND="${RDEPEND}"
-
-need_apache2_4
-
-src_prepare() {
-   default
-   [[ ${PV} =  ]] && eautoreconf
-}
-
-src_compile() {
-   default
-}
-
-src_install() {
-   default
-
-   APACHE2_MOD_DEFINE="HTTP2"
-   insinto "${APACHE_MODULES_CONFDIR}"
-   newins "${FILESDIR}/mod_http2.conf" "41_mod_http2.conf"
-}

diff --git a/www-apache/mod_h2/mod_h2-1.11.3.ebuild 
b/www-apache/mod_h2/mod_h2-1.11.3.ebuild
deleted file mode 100644
index 7a124f105c0..000
--- a/www-apache/mod_h2/mod_h2-1.11.3.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit apache-module autotools
-
-MY_P="${PN/h2/http2}-${PV}"
-
-if [[ ${PV} ==  ]] ; then
-   EGIT_REPO_URI="https://github.com/icing/mod_h2.git;
-   inherit git-r3
-else
-   S="${WORKDIR}/${MY_P}"
-   
SRC_URI="https://github.com/icing/mod_h2/releases/download/v${PV}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="HTTP/2 module for Apache"
-HOMEPAGE="https://github.com/icing/mod_h2;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="ssl"
-

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libvirt/files/, app-emulation/libvirt/

2019-01-25 Thread Matthias Maier
commit: 8b5293f550c56fc2ad05540cb245d8ac60a024ed
Author: Michal Privoznik  redhat  com>
AuthorDate: Fri Jan 25 15:24:13 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Fri Jan 25 16:24:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b5293f5

app-emulation/libvirt: Rebase libvirt-5.0.0-do-not-use-sysconf.patch

In the upstream, the Makefile.am file that the patch is fixing
was changed leaving the patch failing to apply.

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

Signed-off-by: Michal Privoznik  redhat.com>
Signed-off-by: Matthias Maier  gentoo.org>

 .../files/libvirt-5.1.0-do-not-use-sysconf.patch   | 216 +
 app-emulation/libvirt/libvirt-.ebuild  |   2 +-
 2 files changed, 217 insertions(+), 1 deletion(-)

diff --git a/app-emulation/libvirt/files/libvirt-5.1.0-do-not-use-sysconf.patch 
b/app-emulation/libvirt/files/libvirt-5.1.0-do-not-use-sysconf.patch
new file mode 100644
index 000..3c32ab81f1d
--- /dev/null
+++ b/app-emulation/libvirt/files/libvirt-5.1.0-do-not-use-sysconf.patch
@@ -0,0 +1,216 @@
+From cbc26250bcdc4eb3b1c4e7e09c824f3504d41b27 Mon Sep 17 00:00:00 2001
+Message-Id: 

+From: Michal Privoznik 
+Date: Tue, 26 Jun 2018 06:51:06 +0200
+Subject: [PATCH] gentoo: do not use sysconf
+
+Signed-off-by: Michal Privoznik 
+---
+ src/Makefile.am  | 29 ++---
+ src/locking/virtlockd.service.in |  3 +--
+ src/logging/virtlogd.service.in  |  3 +--
+ src/remote/libvirtd.service.in   |  3 +--
+ tools/Makefile.am| 17 -
+ tools/libvirt-guests.service.in  |  2 +-
+ tools/libvirt-guests.sysconf |  7 +++
+ 7 files changed, 21 insertions(+), 43 deletions(-)
+
+diff --git a/src/Makefile.am b/src/Makefile.am
+index 8c8dfe3dcf..25ced3abf3 100644
+--- a/src/Makefile.am
 b/src/Makefile.am
+@@ -756,23 +756,6 @@ endif WITH_SETUID_RPC_CLIENT
+ 
+ EXTRA_DIST += $(SYSCONF_FILES)
+ 
+-install-sysconfig:
+-  $(MKDIR_P) $(DESTDIR)$(sysconfdir)/sysconfig
+-  for f in $(SYSCONF_FILES:%.sysconf=%) ; \
+-  do \
+-tgt=`basename $$f`; \
+-$(INSTALL_DATA) $(srcdir)/$$f.sysconf \
+-$(DESTDIR)$(sysconfdir)/sysconfig/$$tgt; \
+-  done
+-
+-uninstall-sysconfig:
+-  for f in $(SYSCONF_FILES:%.sysconf=%) ; \
+-  do \
+-tgt=`basename $$f`; \
+-rm -f $(DESTDIR)$(sysconfdir)/sysconfig/$$tgt; \
+-  done
+-  rmdir $(DESTDIR)$(sysconfdir)/sysconfig || :
+-
+ SYSVINIT_FILES_IN += \
+   locking/virtlockd.init.in \
+   $(NULL)
+@@ -816,14 +799,14 @@ if WITH_LIBVIRTD
+ if LIBVIRT_INIT_SCRIPT_RED_HAT
+ initdir = $(sysconfdir)/rc.d/init.d
+ 
+-install-init: $(SYSVINIT_FILES) install-sysconfig
++install-init: $(SYSVINIT_FILES)
+   $(MKDIR_P) $(DESTDIR)$(initdir)
+   for f in $(SYSVINIT_FILES:%.init=%) ; \
+   do \
+ $(INSTALL_SCRIPT) $$f.init $(DESTDIR)$(initdir)/$$f; \
+   done
+ 
+-uninstall-init: uninstall-sysconfig
++uninstall-init:
+   rm -f $(SYSVINIT_FILES:%.init=$(DESTDIR)$(initdir)/%)
+   rmdir $(DESTDIR)$(initdir) || :
+ 
+@@ -862,14 +845,14 @@ SYSTEMD_UNIT_FILES = $(notdir 
$(SYSTEMD_UNIT_FILES_IN:%.in=%))
+ BUILT_SOURCES += $(SYSTEMD_UNIT_FILES)
+ DISTCLEANFILES += $(SYSTEMD_UNIT_FILES)
+ 
+-install-systemd: $(SYSTEMD_UNIT_FILES) install-sysconfig
++install-systemd: $(SYSTEMD_UNIT_FILES)
+   $(MKDIR_P) $(DESTDIR)$(SYSTEMD_UNIT_DIR)
+   for f in $(SYSTEMD_UNIT_FILES); \
+   do \
+ $(INSTALL_DATA) $$f $(DESTDIR)$(SYSTEMD_UNIT_DIR)/ ; \
+   done
+ 
+-uninstall-systemd: uninstall-sysconfig
++uninstall-systemd:
+   rm -f $(SYSTEMD_UNIT_FILES:%=$(DESTDIR)$(SYSTEMD_UNIT_DIR)/%)
+   rmdir $(DESTDIR)$(SYSTEMD_UNIT_DIR) || :
+ 
+@@ -884,7 +867,7 @@ EXTRA_DIST += $(UPSTART_FILES)
+ if WITH_LIBVIRTD
+ if LIBVIRT_INIT_SCRIPT_UPSTART
+ 
+-install-upstart: install-sysconfig
++install-upstart:
+   $(MKDIR_P) $(DESTDIR)$(sysconfdir)/event.d
+   for f in $(UPSTART_FILES:%.upstart=%); \
+   do \
+@@ -893,7 +876,7 @@ install-upstart: install-sysconfig
+ $(DESTDIR)$(sysconfdir)/event.d/$$tgt ; \
+   done
+ 
+-uninstall-upstart: uninstall-sysconfig
++uninstall-upstart:
+   for f in $(UPSTART_FILES:%.upstart=%); \
+   do \
+ tgt=`basename $$f` ; \
+diff --git a/src/locking/virtlockd.service.in 
b/src/locking/virtlockd.service.in
+index 3c9d587032..2449b201d9 100644
+--- a/src/locking/virtlockd.service.in
 b/src/locking/virtlockd.service.in
+@@ -7,8 +7,7 @@ Documentation=man:virtlockd(8)
+ Documentation=https://libvirt.org
+ 
+ [Service]
+-EnvironmentFile=-/etc/sysconfig/virtlockd
+-ExecStart=@sbindir@/virtlockd $VIRTLOCKD_ARGS
++ExecStart=@sbindir@/virtlockd
+ ExecReload=/bin/kill -USR1 $MAINPID
+ # Loosing the locks is a really bad thing that will
+ # cause the machine to be fenced (rebooted), so make
+diff --git a/src/logging/virtlogd.service.in b/src/logging/virtlogd.service.in
+index 

[gentoo-commits] repo/gentoo:master commit in: app-emulation/libvirt/

2019-01-25 Thread Matthias Maier
commit: 84532c1fc1a9caa8a9be5e01cf6786119c49f285
Author: Michal Privoznik  redhat  com>
AuthorDate: Fri Jan 25 15:24:12 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Fri Jan 25 16:27:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84532c1f

app-emulation/libvirt: version bump to 5.0.0

Signed-off-by: Michal Privoznik  redhat.com>
Signed-off-by: Matthias Maier  gentoo.org>

 app-emulation/libvirt/Manifest |   1 +
 app-emulation/libvirt/libvirt-5.0.0.ebuild | 382 +
 2 files changed, 383 insertions(+)

diff --git a/app-emulation/libvirt/Manifest b/app-emulation/libvirt/Manifest
index 19f7d33e671..13f25d957cd 100644
--- a/app-emulation/libvirt/Manifest
+++ b/app-emulation/libvirt/Manifest
@@ -1,3 +1,4 @@
 DIST libvirt-4.10.0.tar.xz 14841188 BLAKE2B 
b52f2ed1c4c65930339a6b6fc9e7b034c7661edc0defdd78642f305b97332c33247bfc552efc43aa75a8d360c0d721d1a58a22fa7a016e7cf14ee2219d70a762
 SHA512 
a4f97aed6299c7954518ab88738ab781cee0755bfd64094a44468f77f99cac5eb2bc74ecd6aec90177317606ebd073292f5b5d0056054d1d94973fa938589fbd
 DIST libvirt-4.5.0.tar.xz 14743956 BLAKE2B 
930852765104b1b22744df0ec4f1c74d89bc0fda80852978f7c857943858cc45eed9b74a3d42668f872540be2637f26c4d9d7859594847e58e6fb4cd33350130
 SHA512 
26710c7e5219f007524e9f93a642e55e4e8ea197afa6b2ca6a4b67b7028313f4b0d82924ee9a1e91ff688a4d2b53f89f3655fbeef0fa99a34f8418f37d787984
 DIST libvirt-4.9.0.tar.xz 14744184 BLAKE2B 
03ddefc8f505c8688ad506b81ea9b37ee085e4c9c429834c6b6f338981bfc3c6034a5455a79feca604fb36e658de766ee6104aeed690c682ae596d10eb5632a9
 SHA512 
3cfada940f9de6cc4b0504e089f41aa03d9986f0163344dd3b3ab8e6c4eb556a56996dc8f24bca913b036862c75b256628ea9ab7674ef0a57b87f47c58689e90
+DIST libvirt-5.0.0.tar.xz 14832576 BLAKE2B 
8839a10e4ec8de012ca17e348efd75cbd94cc3b1cf378c867d958b61079105d6eb4f98d8d4b89dd5a6a368a3d9ea41f30498e44b7e039cdf8931ae6de8fa47b3
 SHA512 
d93042f49d2550d14577b5257c548d7108462fe1ad69420c128acf094ffd3e80deb744db13d4c3d5fbe5e4c1826d13131be12e3413710711a2d8cba6cb5a9db9

diff --git a/app-emulation/libvirt/libvirt-5.0.0.ebuild 
b/app-emulation/libvirt/libvirt-5.0.0.ebuild
new file mode 100644
index 000..158a315e310
--- /dev/null
+++ b/app-emulation/libvirt/libvirt-5.0.0.ebuild
@@ -0,0 +1,382 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5,6,7} )
+
+inherit autotools bash-completion-r1 eutils linux-info python-any-r1 
readme.gentoo-r1 systemd user
+
+if [[ ${PV} = ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://libvirt.org/git/libvirt.git;
+   SRC_URI=""
+   KEYWORDS=""
+   SLOT="0"
+else
+   # Versions with 4 numbers are stable updates:
+   if [[ ${PV} =~ ^[0-9]+(\.[0-9]+){3} ]]; then
+   SRC_URI="https://libvirt.org/sources/stable_updates/${P}.tar.xz;
+   else
+   SRC_URI="https://libvirt.org/sources/${P}.tar.xz;
+   fi
+   KEYWORDS="~amd64 ~arm64 ~x86"
+   SLOT="0/${PV}"
+fi
+
+DESCRIPTION="C toolkit to manipulate virtual machines"
+HOMEPAGE="http://www.libvirt.org/;
+LICENSE="LGPL-2.1"
+IUSE="
+   apparmor audit +caps +dbus firewalld fuse glusterfs iscsi +libvirtd lvm
+   libssh lxc +macvtap nfs nls numa openvz parted pcap phyp policykit
+   +qemu rbd sasl selinux +udev +vepa virtualbox virt-network
+   wireshark-plugins xen zeroconf zfs
+"
+
+REQUIRED_USE="
+   firewalld? ( virt-network )
+   libvirtd? ( || ( lxc openvz qemu virtualbox xen ) )
+   lxc? ( caps libvirtd )
+   openvz? ( libvirtd )
+   policykit? ( dbus )
+   qemu? ( libvirtd )
+   vepa? ( macvtap )
+   virt-network? ( libvirtd )
+   virtualbox? ( libvirtd )
+   xen? ( libvirtd )"
+
+# gettext.sh command is used by the libvirt command wrappers, and it's
+# non-optional, so put it into RDEPEND.
+# We can use both libnl:1.1 and libnl:3, but if you have both installed, the
+# package will use 3 by default. Since we don't have slot pinning in an API,
+# we must go with the most recent
+RDEPEND="
+   app-misc/scrub
+   dev-libs/libgcrypt:0
+   dev-libs/libnl:3
+   >=dev-libs/libxml2-2.7.6
+   || ( >=net-analyzer/netcat6-1.0-r2 
>=net-analyzer/openbsd-netcat-1.105-r1 )
+   >=net-libs/gnutls-1.0.25:0=
+   net-libs/libssh2
+   net-libs/libtirpc
+   net-libs/rpcsvc-proto
+   >=net-misc/curl-7.18.0
+   sys-apps/dmidecode
+   >=sys-apps/util-linux-2.17
+   sys-devel/gettext
+   sys-libs/ncurses:0=
+   sys-libs/readline:=
+   apparmor? ( sys-libs/libapparmor )
+   audit? ( sys-process/audit )
+   caps? ( sys-libs/libcap-ng )
+   dbus? ( sys-apps/dbus )
+   firewalld? ( net-firewall/firewalld )
+   fuse? ( >=sys-fs/fuse-2.8.6:= )
+   glusterfs? ( >=sys-cluster/glusterfs-3.4.1 )
+   iscsi? ( sys-block/open-iscsi )
+   libssh? ( net-libs/libssh )
+   lvm? ( 

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

2019-01-25 Thread Lars Wendler
commit: 3fdbcb42993b4e516467283bee483835ef958773
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 16:11:13 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 16:12:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fdbcb42

net-libs/libetpan: Bump to version 1.9.3

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

 net-libs/libetpan/Manifest  |  1 +
 net-libs/libetpan/libetpan-1.9.3.ebuild | 76 +
 2 files changed, 77 insertions(+)

diff --git a/net-libs/libetpan/Manifest b/net-libs/libetpan/Manifest
index 9cf03ab661e..d7687c2881a 100644
--- a/net-libs/libetpan/Manifest
+++ b/net-libs/libetpan/Manifest
@@ -1,3 +1,4 @@
 DIST libetpan-1.8.tar.gz 6188927 BLAKE2B 
730d9fc545ea2fbd4dbc0eaf3cdbd0540ec85984dee5448c5f22c83ad12e568a9e066e53734da96ef6a9c77942e5aea2eb241c2228f0ca7577755e67646aa589
 SHA512 
a5e97998803cc56dbd54356153c8579b52a9675fe95fbf642c3158215428d9d2cb30c4e0060c5f4dd760634fff5b1c2a32ce4bb70a5f2bc6398a071ce95e1efd
 DIST libetpan-1.9.1.tar.gz 6189971 BLAKE2B 
d6cffd9c333c76451d7ac26e978e09b7f1a0b225ef1f318c80f28fe00047c523f2bba32cef5892e452bc84593ce0d635a4cd075e32575c812ff853d0932b01f9
 SHA512 
1dd72644672e15eecc9883ffb4b29ef34d4355c55aec950cac44e7b59f252d9355f37ef0ad37007c89728c09e057144b4c3b853496a011d693598b6027356286
 DIST libetpan-1.9.2.tar.gz 6191522 BLAKE2B 
a5b3b93c94596d64b49150680a2599c930b5f010d29be7fbd325e43ba82b8d61032bae65155d2c5e0e2bbcd219db3d916b10a6ce5a98df2ac31fb88811491d71
 SHA512 
3e2e1de77fae2212374e909d15ed8564eee90883c38fee0ca69f58785733b1ac2df848da1bda6f55577d647e0ad27bc3057199e70b6ef01f2a7e2823b24113ba
+DIST libetpan-1.9.3.tar.gz 549 BLAKE2B 
1664d93b112410a86935438aae5ff40202a9c10675701d40b60edf81e4f8bac45fb1f407e03714a37465c41a22c1b9fcbbc517d76dc47f812e154c932e05e600
 SHA512 
66e504fbf82445819845a3f1dcb8dc48ad2440993134d43752c754463cee2434a30080718687cd05c579f0da8df6b0f6dfc7572f2882d0dd9dfd327b4ae11fd6

diff --git a/net-libs/libetpan/libetpan-1.9.3.ebuild 
b/net-libs/libetpan/libetpan-1.9.3.ebuild
new file mode 100644
index 000..93ca868c961
--- /dev/null
+++ b/net-libs/libetpan/libetpan-1.9.3.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools
+
+DESCRIPTION="A portable, efficient middleware for different kinds of mail 
access"
+HOMEPAGE="http://libetpan.sourceforge.net/;
+SRC_URI="https://github.com/dinhviethoa/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="berkdb gnutls ipv6 liblockfile libressl lmdb sasl ssl static-libs"
+
+# BerkDB is only supported up to version 6.0
+DEPEND="sys-libs/zlib
+   !lmdb? ( berkdb? ( 

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

2019-01-25 Thread Lars Wendler
commit: bbd98e8ecce4ec9fc6614c3a53d25405d4aeff4a
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 16:11:44 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 16:12:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbd98e8e

net-libs/libetpan: Removed old.

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

 net-libs/libetpan/Manifest  |  1 -
 net-libs/libetpan/libetpan-1.9.1.ebuild | 69 -
 2 files changed, 70 deletions(-)

diff --git a/net-libs/libetpan/Manifest b/net-libs/libetpan/Manifest
index d7687c2881a..7bebc449a5e 100644
--- a/net-libs/libetpan/Manifest
+++ b/net-libs/libetpan/Manifest
@@ -1,4 +1,3 @@
 DIST libetpan-1.8.tar.gz 6188927 BLAKE2B 
730d9fc545ea2fbd4dbc0eaf3cdbd0540ec85984dee5448c5f22c83ad12e568a9e066e53734da96ef6a9c77942e5aea2eb241c2228f0ca7577755e67646aa589
 SHA512 
a5e97998803cc56dbd54356153c8579b52a9675fe95fbf642c3158215428d9d2cb30c4e0060c5f4dd760634fff5b1c2a32ce4bb70a5f2bc6398a071ce95e1efd
-DIST libetpan-1.9.1.tar.gz 6189971 BLAKE2B 
d6cffd9c333c76451d7ac26e978e09b7f1a0b225ef1f318c80f28fe00047c523f2bba32cef5892e452bc84593ce0d635a4cd075e32575c812ff853d0932b01f9
 SHA512 
1dd72644672e15eecc9883ffb4b29ef34d4355c55aec950cac44e7b59f252d9355f37ef0ad37007c89728c09e057144b4c3b853496a011d693598b6027356286
 DIST libetpan-1.9.2.tar.gz 6191522 BLAKE2B 
a5b3b93c94596d64b49150680a2599c930b5f010d29be7fbd325e43ba82b8d61032bae65155d2c5e0e2bbcd219db3d916b10a6ce5a98df2ac31fb88811491d71
 SHA512 
3e2e1de77fae2212374e909d15ed8564eee90883c38fee0ca69f58785733b1ac2df848da1bda6f55577d647e0ad27bc3057199e70b6ef01f2a7e2823b24113ba
 DIST libetpan-1.9.3.tar.gz 549 BLAKE2B 
1664d93b112410a86935438aae5ff40202a9c10675701d40b60edf81e4f8bac45fb1f407e03714a37465c41a22c1b9fcbbc517d76dc47f812e154c932e05e600
 SHA512 
66e504fbf82445819845a3f1dcb8dc48ad2440993134d43752c754463cee2434a30080718687cd05c579f0da8df6b0f6dfc7572f2882d0dd9dfd327b4ae11fd6

diff --git a/net-libs/libetpan/libetpan-1.9.1.ebuild 
b/net-libs/libetpan/libetpan-1.9.1.ebuild
deleted file mode 100644
index 31edc45696c..000
--- a/net-libs/libetpan/libetpan-1.9.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools
-
-DESCRIPTION="A portable, efficient middleware for different kinds of mail 
access"
-HOMEPAGE="http://libetpan.sourceforge.net/;
-SRC_URI="https://github.com/dinhviethoa/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="berkdb gnutls ipv6 liblockfile libressl sasl ssl static-libs"
-
-# BerkDB is only supported up to version 6.0
-DEPEND="sys-libs/zlib
-   berkdb? ( 

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

2019-01-25 Thread Jeroen Roovers
commit: c7c3b09456d5f7cff8afd6f991004ee160562ec6
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Jan 25 15:22:12 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Jan 25 15:22:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c3b094

x11-drivers/nvidia-drivers: Old

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

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

diff --git a/x11-drivers/nvidia-drivers/Manifest 
b/x11-drivers/nvidia-drivers/Manifest
index 34ef26714d8..0e3368b 100644
--- a/x11-drivers/nvidia-drivers/Manifest
+++ b/x11-drivers/nvidia-drivers/Manifest
@@ -3,7 +3,6 @@ DIST NVIDIA-FreeBSD-x86-390.87.tar.gz 64326801 BLAKE2B 
91cf9e77040d8c710a0fef58f
 DIST NVIDIA-FreeBSD-x86_64-340.107.tar.gz 61179967 BLAKE2B 
c12c7c07c090fd7bca78a30082890d0b0330dde07ce9beacdb94fad97d40e9ff9e1413fc36fd94116821137e74076d99a82ab85ecd0a8e16d52b47abeb747802
 SHA512 
661a4cc79a0adc9a1abebfb3567c26e69628266794b5b539c112112a0989760ea1ea2d8c35a5fe7539b579d4e9cef2685e3e1d12fc7031cd6d1b743c23eadc52
 DIST NVIDIA-FreeBSD-x86_64-390.87.tar.gz 63648591 BLAKE2B 
88aa38b11b64b2ad91f723ec84a2adb6829571136aabb1441a9119418395d5f143736487902f0c60b49ebc1284f3100fbd089e4c941cdd3519ab8511cc1d3261
 SHA512 
0865fef8b8a3be8f6d9fc81908b162fd6062ba0ea81fd00200e7b2a1e3149ef62408b46bc4ccb7a77f1ac943557a22b13a10cfdde084f0b76cf2b23432e57540
 DIST NVIDIA-FreeBSD-x86_64-410.93.tar.gz 61977979 BLAKE2B 
a662fa13866cfb36ef61a0b9dd459519e26ea93a6ad6ae7bf34075fae8e7622a91707d88cec8de0660513cb959c3596e8b6169357891c83e847870ecffd72928
 SHA512 
ecdd5270f9d5f32117d83cd3e3cf0376f0b37c748fe164e702c4230d225c6b28bdbbea4334555b6928d05f1a7cfaf87caf20dd2e7e06e1259c526f6bd50e4d0e
-DIST NVIDIA-FreeBSD-x86_64-415.25.tar.gz 62373961 BLAKE2B 
4c1ce36ad31933efdb7b9b3a5a530439cadb50c6ee29c0689a521308fbc213266a761765998c44643fd8511159ae96387a3a278accc4a0d00322b06b9b327232
 SHA512 
792f0cfafb1d6b2137db62c3a5a7e76217d89c3b18cee92ec8317d6c583fdc9676aa46efd55bc795aeaaf1532501f7b40d1d9609d782ffe63e55bb37d0d6db14
 DIST NVIDIA-FreeBSD-x86_64-415.27.tar.gz 62389955 BLAKE2B 
39ac5970ef1a6ffbb03abe8b758a6f5d7eaca787231845fa4b4bff5f26aa770fb7c695bbd5585d919c934c65b9ed0cfe42f9674bcaabd796c9bd8b89cea87ee6
 SHA512 
857d1523bad2fca21c75b45c29066be0f530afa8ca124806bcaa36509ac5135df1c4037e6b09e5718c701f085b3608925e2b1fea45d0681e69a99ef709c307d0
 DIST NVIDIA-Linux-armv7l-gnueabihf-390.87.run 29078256 BLAKE2B 
a7ce24bcaf82e6c2c95cd11a0d9e0e2aa69c717b8455d4ce0a79a9c03c92f5f6b84107dea6347dedc5c4f8fe076e616fc7a36053c6a5f571af9d794bada6cb1f
 SHA512 
3f8ef4eabc7275685bd5d887c6b7dc20786baab1f4a89bfb23ae6c8d837188d93369c777915d3ea010b08e578c4fb7318d9428811971470e31a8b8b4f51e240f
 DIST NVIDIA-Linux-x86-340.107.run 39016798 BLAKE2B 
2632c8f257d0cf7c5b9294eb2c0b763eee6feb60eacc316024655971e4d067c4af6548aab3b7b2b295792b064f3f3ac3e6403a2ecfa096761d308dfb6b2569b8
 SHA512 
0add713942bcdb639d19b5c36f5e0cea14f9e07490191d46dfeba0515ede7700fd8e9467ec531d38329fe1e76bf45905e70e0d440e7bc2dc79c1d767eab03338
@@ -11,10 +10,8 @@ DIST NVIDIA-Linux-x86-390.87.run 47959124 BLAKE2B 
bb799a53b6d25ecd0e6013cea54440
 DIST NVIDIA-Linux-x86_64-340.107.run 70233686 BLAKE2B 
821a2672dcc3b546fbb3f826230fb06741503d75b06f72cb407dd3c9de4f2cbd150bff34e554dca8aa86e7f6bf64ce4f7f9b52976799a477c6c2659aaa5bb4d3
 SHA512 
51df9370526732db099a8a925d35cdf1317ae2b0ab2c130eaf82373f25186165b4af7d44f71e51e2a68f7d07c7ae3f441a6c6c4be8467003b15dc770c4f4e89b
 DIST NVIDIA-Linux-x86_64-390.87.run 82690871 BLAKE2B 
b43a45a7d48160a72185417360a4ff4238922f6d77c7b58c0562f0e01c8aa33e89057e8a5d354e8d3c8e6fa86acf8908a6c2eab81e06158a92908eec18a9b02e
 SHA512 
f4883744f5e07150677918669eed03c7b87774f752112aabd52d903a09ae16351b34105075da2ff0fcb7a847cf66ec17e9797826859fcaecc44fdcd464a61805
 DIST NVIDIA-Linux-x86_64-410.93.run 107257681 BLAKE2B 
56e9b6a17ab4d2fe2f18d90b4e209fe048c53dc43846ee9c8bd0960999a06ef9d9b6ba7e4c242f77cc35cfc5b9a0e2ae24aa5f07f68cb7662bd5010de41a9b36
 SHA512 
1132884210e447d20768c4ae84ff572c9f6886fb9a082da4d229a03c13932a5c6ccc518cad3311a9302b6a0d9e9675e3a53199e7183e07c81282d46883d26105
-DIST NVIDIA-Linux-x86_64-415.25.run 108599932 BLAKE2B 
958a345f03157ebd8f8a84da91af78143ada75be4bf1d5abbbec9bc8b0ca11549891efb2f78c3ae89ed86fa94a4bf179834d1b229b2dc7d3587a138235a8ce7f
 SHA512 
d289a37344916f5d17425f17d0530a7838b264c49866a0148665c9b87dcb7c23e868abae866a2568abac425701149d9075da540dd0f45f3d18f67b57102c0857
 DIST NVIDIA-Linux-x86_64-415.27.run 108399659 BLAKE2B 
05fb81a4ab8626d0170a30b70ed114c639ba7f0e5ac260d2f38cb5042a4d6052e40ada51cf2feff6bae0f394781d77cb70014f390873a715b7d9495b86918bf1
 SHA512 
5919333136042a227ff36c850d0c57898fb428a77d88633d205a269db4b844356a87f5b1e5c3042f40feaf083d4f82d32df5366820375b601f9d69d98cada0b6
 DIST nvidia-settings-340.107.tar.bz2 1549413 BLAKE2B 

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

2019-01-25 Thread Jeroen Roovers
commit: 23cda60d4a47a1ca01898466e26f570d8c2fd49f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Jan 25 15:18:33 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Jan 25 15:22:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23cda60d

x11-drivers/nvidia-drivers: Stable for AMD64 too.

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

 x11-drivers/nvidia-drivers/nvidia-drivers-415.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-415.27.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-415.27.ebuild
index ca38002944b..60fea3075d3 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-415.27.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-415.27.ebuild
@@ -23,7 +23,7 @@ SRC_URI="
 
 LICENSE="GPL-2 NVIDIA-r2"
 SLOT="0/${PV%.*}"
-KEYWORDS="-* ~amd64 ~amd64-fbsd"
+KEYWORDS="-* amd64 ~amd64-fbsd"
 RESTRICT="bindist mirror"
 EMULTILIB_PKG="true"
 



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-browser-integration/, kde-plasma/kde-gtk-config/, ...

2019-01-25 Thread Andreas Sturmlechner
commit: 68a8227da67c9c70e574d0be26c9e67375141d3c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Jan 25 15:05:14 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan 25 15:05:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68a8227d

kde-plasma: Drop KDE Plasma 5.14.3

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

 kde-plasma/bluedevil/Manifest  |   1 -
 kde-plasma/bluedevil/bluedevil-5.14.3.ebuild   |  40 -
 kde-plasma/breeze-grub/Manifest|   1 -
 kde-plasma/breeze-grub/breeze-grub-5.14.3.ebuild   |  30 
 kde-plasma/breeze-gtk/Manifest |   1 -
 kde-plasma/breeze-gtk/breeze-gtk-5.14.3.ebuild |  12 --
 kde-plasma/breeze-plymouth/Manifest|   1 -
 .../breeze-plymouth/breeze-plymouth-5.14.3.ebuild  |  26 ---
 kde-plasma/breeze/Manifest |   1 -
 kde-plasma/breeze/breeze-5.14.3.ebuild |  49 --
 kde-plasma/drkonqi/Manifest|   1 -
 kde-plasma/drkonqi/drkonqi-5.14.3.ebuild   |  56 ---
 kde-plasma/kactivitymanagerd/Manifest  |   1 -
 .../kactivitymanagerd-5.14.3.ebuild|  35 
 kde-plasma/kde-cli-tools/Manifest  |   1 -
 .../kde-cli-tools/kde-cli-tools-5.14.3.ebuild  |  62 ---
 kde-plasma/kde-gtk-config/Manifest |   1 -
 .../kde-gtk-config/kde-gtk-config-5.14.3.ebuild|  52 --
 kde-plasma/kdecoration/Manifest|   1 -
 kde-plasma/kdecoration/kdecoration-5.14.3.ebuild   |  19 ---
 kde-plasma/kdeplasma-addons/Manifest   |   1 -
 .../kdeplasma-addons-5.14.3.ebuild |  58 ---
 kde-plasma/kgamma/Manifest |   1 -
 kde-plasma/kgamma/kgamma-5.14.3.ebuild |  26 ---
 kde-plasma/khotkeys/Manifest   |   1 -
 kde-plasma/khotkeys/khotkeys-5.14.3.ebuild |  46 --
 kde-plasma/kinfocenter/Manifest|   1 -
 kde-plasma/kinfocenter/kinfocenter-5.14.3.ebuild   |  96 ---
 kde-plasma/kmenuedit/Manifest  |   1 -
 kde-plasma/kmenuedit/kmenuedit-5.14.3.ebuild   |  47 --
 kde-plasma/kscreen/Manifest|   1 -
 kde-plasma/kscreen/kscreen-5.14.3.ebuild   |  40 -
 kde-plasma/kscreenlocker/Manifest  |   1 -
 .../kscreenlocker/kscreenlocker-5.14.3.ebuild  |  94 ---
 kde-plasma/ksshaskpass/Manifest|   1 -
 kde-plasma/ksshaskpass/ksshaskpass-5.14.3.ebuild   |  49 --
 kde-plasma/ksysguard/Manifest  |   1 -
 kde-plasma/ksysguard/ksysguard-5.14.3.ebuild   |  47 --
 kde-plasma/kwallet-pam/Manifest|   1 -
 kde-plasma/kwallet-pam/kwallet-pam-5.14.3.ebuild   |  33 
 kde-plasma/kwayland-integration/Manifest   |   1 -
 .../kwayland-integration-5.14.3.ebuild |  25 ---
 kde-plasma/kwin/Manifest   |   1 -
 .../kwin/files/kwin-5.14.3-kcrash-init.patch   |  48 --
 .../files/kwin-5.14.3-resizewindows-crash.patch|  72 -
 .../files/kwin-5.14.3-virtualdesktop-crash.patch   | 137 
 kde-plasma/kwin/kwin-5.14.3-r1.ebuild  | 112 -
 kde-plasma/kwrited/Manifest|   1 -
 kde-plasma/kwrited/kwrited-5.14.3.ebuild   |  23 ---
 kde-plasma/libkscreen/Manifest |   1 -
 kde-plasma/libkscreen/libkscreen-5.14.3.ebuild |  28 
 kde-plasma/libksysguard/Manifest   |   1 -
 kde-plasma/libksysguard/libksysguard-5.14.3.ebuild |  53 --
 kde-plasma/libkworkspace/Manifest  |   1 -
 .../libkworkspace/libkworkspace-5.14.3.ebuild  |  59 ---
 kde-plasma/milou/Manifest  |   1 -
 kde-plasma/milou/milou-5.14.3.ebuild   |  30 
 kde-plasma/oxygen/Manifest |   1 -
 kde-plasma/oxygen/oxygen-5.14.3.ebuild |  46 --
 kde-plasma/plasma-browser-integration/Manifest |   1 -
 .../plasma-browser-integration-5.14.3.ebuild   |  36 -
 kde-plasma/plasma-desktop/Manifest |   1 -
 .../plasma-desktop/plasma-desktop-5.14.3.ebuild| 144 -
 kde-plasma/plasma-integration/Manifest |   1 -
 .../plasma-integration-5.14.3.ebuild   |  43 -
 .../plasma-meta/plasma-meta-5.14.3-r1.ebuild   | 108 -
 kde-plasma/plasma-nm/Manifest  |   1 -
 kde-plasma/plasma-nm/plasma-nm-5.14.3.ebuild   |  74 -
 kde-plasma/plasma-pa/Manifest  |   1 -
 kde-plasma/plasma-pa/plasma-pa-5.14.3.ebuild   |  29 
 kde-plasma/plasma-sdk/Manifest |   1 -
 kde-plasma/plasma-sdk/plasma-sdk-5.14.3.ebuild |  39 -
 

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

2019-01-25 Thread Lars Wendler
commit: 33a4a05a3aafe556f5b926688e5bceebb68871b9
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 14:55:27 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 14:55:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33a4a05a

media-libs/sdl2-ttf: Bump to version 2.0.15

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

 media-libs/sdl2-ttf/Manifest   |  1 +
 media-libs/sdl2-ttf/sdl2-ttf-2.0.15.ebuild | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/media-libs/sdl2-ttf/Manifest b/media-libs/sdl2-ttf/Manifest
index a85b1d1c58f..ac1ee4929cd 100644
--- a/media-libs/sdl2-ttf/Manifest
+++ b/media-libs/sdl2-ttf/Manifest
@@ -1 +1,2 @@
 DIST SDL2_ttf-2.0.14.tar.gz 4147462 BLAKE2B 
c676c8880d26ee61900f82c418474d0eee9844842eb006f44c80f0cc3384dd2a3f0a1da0dc8a7e50f78caa6420cc494a4a4be1ef7a294310084d5a91b8ec3c44
 SHA512 
4db817573fd216e26180f4c401cc869ce407589a461032fd7167dc612d35e038cca1ab67be7909b6b49c741581a68125ab46362ad8e3c0a2cdd39624ad847099
+DIST SDL2_ttf-2.0.15.tar.gz 4479718 BLAKE2B 
8401ed4979dade5affa86be4463958d0c90f72d3b2874540cf868e460c5d6773a2b11eaf6d13792d23193085050970ebf877b707b0febaba9be29c4329be9d7c
 SHA512 
30d685932c3dd6f2c94e2778357a5c502f0421374293d7102a64d92f9c7861229bf36bedf51c1a698b296a58c858ca442d97afb908b7df1592fc8d4f8ae8ddfd

diff --git a/media-libs/sdl2-ttf/sdl2-ttf-2.0.15.ebuild 
b/media-libs/sdl2-ttf/sdl2-ttf-2.0.15.ebuild
new file mode 100644
index 000..3a6aae37a7d
--- /dev/null
+++ b/media-libs/sdl2-ttf/sdl2-ttf-2.0.15.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit multilib-minimal
+
+MY_P="SDL2_ttf-${PV}"
+DESCRIPTION="library that allows you to use TrueType fonts in SDL applications"
+HOMEPAGE="http://www.libsdl.org/projects/SDL_ttf/;
+SRC_URI="http://www.libsdl.org/projects/SDL_ttf/release/${MY_P}.tar.gz;
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs X"
+
+RDEPEND="X? ( >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}] )
+   >=media-libs/libsdl2-2.0.1-r1[${MULTILIB_USEDEP}]
+   >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}]
+   virtual/opengl[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+"
+
+S="${WORKDIR}/${MY_P}"
+
+multilib_src_configure() {
+   local myeconfargs=(
+   $(use_enable static-libs static)
+   $(use_with X x)
+   )
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+   dodoc {CHANGES,README}.txt
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-libs/db/, sys-libs/db/files/

2019-01-25 Thread Lars Wendler
commit: 79b63b3ecbf9298268529709d1129d11a230ebe8
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 14:34:17 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 14:47:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79b63b3e

sys-libs/db: Bump to version 18.1.25

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

 sys-libs/db/Manifest   |   1 +
 sys-libs/db/db-18.1.25.ebuild  | 244 +
 .../files/db-18.1.25-sqlite-configure-path.patch   |  11 +
 sys-libs/db/files/db-18.1.25-test-link.patch   |  38 
 4 files changed, 294 insertions(+)

diff --git a/sys-libs/db/Manifest b/sys-libs/db/Manifest
index 0fa279baf2d..c06e3e1b641 100644
--- a/sys-libs/db/Manifest
+++ b/sys-libs/db/Manifest
@@ -1,4 +1,5 @@
 DIST db-1.85-r3.1.patch.bz2 14641 BLAKE2B 
5ca59487a433a5e5b5fed7a8737c20df041be56733fe9209047f9e53845fa034576c29ad74407509ab96473e4eef0138a3a47de6c348d27209f0e39df85b9f5f
 SHA512 
32b1810515476758ece7415f241378460a4051bf5ee23fb464748f84a90a56ff2c5119ed93028114d64f1b1691b1c694c2301ff825edd89cdee90a870a68b6f4
+DIST db-18.1.25.tar.gz 43980391 BLAKE2B 
364f023809d9d68d58879dda80e5a6a1826db261ac371d63151278731a777c6ca629b051df3c1430f1c049fcc7e4ddfe041522e891290a43aba051b519b28523
 SHA512 
30a0508dc7eb92adb56bdc881cedf179e901f888c776bc515b342ae585168521fa9f3c763f438d0e8a008e7cc779b3f40a7385285d724f8494d25d3652e6f1c9
 DIST db-3.2.9.tar.gz 2085238 BLAKE2B 
10cb1c102bf5db52ec16181ccbb02a8c4560f42afd2382689ee4903fcd63bf3ab4802482a065a85b1d34c8fb9f620fceb985155b1390de7ca404c121b6b4b6bc
 SHA512 
5f07b27ae0cbd2832e5db9473cd4f2d4aebeee25ed8245ebd2c297a576571635ca5cf75e63e0967b1e90978128a5b6f5d8112559c56927d5bc5eb0d9fd3a2e95
 DIST db-4.2.52.tar.gz 4073147 BLAKE2B 
0bb9649a08df9b425f28471eb65c0efac0b7833b4c5c841b9ef53a142669b549e1f1b78cf42eeceea05ebb271aacd513d115070ea028f77fb1830bb9fcc7c8a9
 SHA512 
47a4e1353fe4f5c2160952a8f7a09b73fdf2dfcd222a8214e12630cec3139a624907bba83a06f10f8492b4dce328a979e9155ee049b9a88798edaca62cfe60d1
 DIST db-4.3.29.tar.gz 6103264 BLAKE2B 
eda13cd5c8b9421044f6c8b6b41ec318ff33e19da15f8d5e3075612186e60cfce30069078f712841058224ed58caf69d43960156ac645651670665390eae28e1
 SHA512 
93d36c040b25739b92c52504e117a9c7f4b671463d61d00029e70d0bc8171311f5d04211f7d966b8a9ef8c2a85a5ebe8cc55e4469c3c7c0e468caa4221f691fc

diff --git a/sys-libs/db/db-18.1.25.ebuild b/sys-libs/db/db-18.1.25.ebuild
new file mode 100644
index 000..ff6f5d1ca7d
--- /dev/null
+++ b/sys-libs/db/db-18.1.25.ebuild
@@ -0,0 +1,244 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit db flag-o-matic java-pkg-opt-2 autotools multilib multilib-minimal 
eapi7-ver toolchain-funcs
+
+#Number of official patches
+#PATCHNO=`echo ${PV}|sed -e "s,\(.*_p\)\([0-9]*\),\2,"`
+PATCHNO=${PV/*.*.*_p}
+if [[ ${PATCHNO} == "${PV}" ]] ; then
+   MY_PV=${PV}
+   MY_P=${P}
+   PATCHNO=0
+else
+   MY_PV=${PV/_p${PATCHNO}}
+   MY_P=${PN}-${MY_PV}
+fi
+
+S_BASE="${WORKDIR}/${MY_P}"
+S="${S_BASE}/dist"
+DESCRIPTION="Oracle Berkeley DB"
+HOMEPAGE="http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html;
+SRC_URI="http://download.oracle.com/berkeley-db/${MY_P}.tar.gz;
+for (( i=1 ; i<=${PATCHNO} ; i++ )) ; do
+   export SRC_URI="${SRC_URI} 
http://www.oracle.com/technology/products/berkeley-db/db/update/${MY_PV}/patch.${MY_PV}.${i};
+done
+
+LICENSE="AGPL-3"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd"
+IUSE="doc java cxx tcl test"
+
+REQUIRED_USE="test? ( tcl )"
+
+# the entire testsuite needs the TCL functionality
+DEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] )
+   test? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] )
+   java? ( >=virtual/jdk-1.5 )
+   >=sys-devel/binutils-2.16.1"
+RDEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] )
+   java? ( >=virtual/jre-1.5 )"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/db$(ver_cut 1-2)/db.h
+)
+
+PATCHES=(
+   # bug #510506
+   "${FILESDIR}"/${PN}-4.8.24-java-manifest-location.patch
+
+   # use the includes from the prefix
+   "${FILESDIR}"/${PN}-6.2.32-jni-check-prefix-first.patch
+   "${FILESDIR}"/${PN}-4.3-listen-to-java-options.patch
+
+   # sqlite configure call has an extra leading ..
+   # upstreamed:5.2.36, missing in 5.3.x/6.x
+   # still needs to be patched in 6.0.20
+   "${FILESDIR}"/${PN}-18.1.25-sqlite-configure-path.patch
+
+   # The upstream testsuite copies .lib and the binaries for each parallel 
test
+   # core, ~300MB each. This patch uses links instead, saves a lot of 
space.
+   "${FILESDIR}"/${PN}-18.1.25-test-link.patch
+)
+
+src_prepare() {
+   cd 

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

2019-01-25 Thread Lars Wendler
commit: 61fb17a6b338984394e548b152663525a5eb9033
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 14:32:55 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 14:47:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61fb17a6

package.mask: Masked =sys-libs/db-18.1*

Bug: https://bugs.gentoo.org/675202
Signed-off-by: Lars Wendler  gentoo.org>

 profiles/package.mask | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index d0d70a949c7..9d808e41942 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -444,8 +444,11 @@ dev-java/jcs
 # FAIL:07:02:35 (00:00:00) db_dump/db_load(./TESTDIR.3/recd001.db:child 
killed: kill signal): expected 0, got 1
 # FAIL:07:02:35 (00:00:00) Dump/load of ./TESTDIR.3/recd001.db failed.
 # FAIL:07:02:35 (00:00:00) db_verify_preop: expected 0, got 1
+# Lars Wendler  (25 Jan 2019)
+# Also masked because of mostly incompatible license (AGPL-3)
 =sys-libs/db-6.1*
 =sys-libs/db-6.2*
+=sys-libs/db-18.1*
 
 # Ulrich Müller  (15 Jul 2014)
 # Permanently mask sys-libs/lib-compat and its reverse dependencies,



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

2019-01-25 Thread Jeroen Roovers
commit: 0390c17140e8122552113b7da35220788de78b47
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Jan 25 14:39:28 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Jan 25 14:39:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0390c171

net-analyzer/nmap: include more time.h

Fixes: https://bugs.gentoo.org/676206
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/nmap/files/nmap-7.70-time.patch | 30 
 1 file changed, 30 insertions(+)

diff --git a/net-analyzer/nmap/files/nmap-7.70-time.patch 
b/net-analyzer/nmap/files/nmap-7.70-time.patch
index 6d12ea8f96f..4b97bdf4904 100644
--- a/net-analyzer/nmap/files/nmap-7.70-time.patch
+++ b/net-analyzer/nmap/files/nmap-7.70-time.patch
@@ -8,3 +8,33 @@
  
  extern NmapOps o;
  
+--- a/nmap.cc
 b/nmap.cc
+@@ -161,6 +161,7 @@
+ #endif
+ 
+ #include 
++#include 
+ 
+ #ifdef HAVE_PWD_H
+ #include 
+--- a/osscan2.cc
 b/osscan2.cc
+@@ -147,6 +147,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ extern NmapOps o;
+ #ifdef WIN32
+--- a/output.cc
 b/output.cc
+@@ -153,6 +153,7 @@
+ #include "libnetutil/netutil.h"
+ 
+ #include 
++#include 
+ 
+ #include 
+ #include 



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

2019-01-25 Thread Mikle Kolyada
commit: 923d01421c8cafeb59133743db4869daa7b20d64
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 10:14:14 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 14:20:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=923d0142

sys-process/audit: amd64 stable wrt bug #669532

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

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

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



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

2019-01-25 Thread Mikle Kolyada
commit: a528ff4973e51823512ffc30e5395c0c741d01df
Author: Nikos Chantziaras  gmail  com>
AuthorDate: Mon Jan 21 20:02:29 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 14:20:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a528ff49

net-p2p/qbittorrent: dep on libtorrent-rasterbar-1.1 and revbump-move

Build fails with libtorrent-rasterbar-1.2.

Closes: https://bugs.gentoo.org/675976
Package-Manager: Portage-2.3.57, Repoman-2.3.12
Signed-off-by: Nikos Chantziaras  gmail.com>
Signed-off-by: Mikle Kolyada  gentoo.org>

 .../{qbittorrent-4.1.4.ebuild => qbittorrent-4.1.4-r1.ebuild} | 4 ++--
 .../{qbittorrent-4.1.5.ebuild => qbittorrent-4.1.5-r1.ebuild} | 4 ++--
 net-p2p/qbittorrent/qbittorrent-.ebuild   | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-p2p/qbittorrent/qbittorrent-4.1.4.ebuild 
b/net-p2p/qbittorrent/qbittorrent-4.1.4-r1.ebuild
similarity index 94%
rename from net-p2p/qbittorrent/qbittorrent-4.1.4.ebuild
rename to net-p2p/qbittorrent/qbittorrent-4.1.4-r1.ebuild
index f990644fdec..e294819ff92 100644
--- a/net-p2p/qbittorrent/qbittorrent-4.1.4.ebuild
+++ b/net-p2p/qbittorrent/qbittorrent-4.1.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -29,7 +29,7 @@ RDEPEND="
dev-qt/qtnetwork:5[ssl]
>=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt5(+),X?]
dev-qt/qtxml:5
-   >=net-libs/libtorrent-rasterbar-1.0.6:0=
+   =net-libs/libtorrent-rasterbar-1.1*:0=
sys-libs/zlib
dbus? ( dev-qt/qtdbus:5 )
X? (

diff --git a/net-p2p/qbittorrent/qbittorrent-4.1.5.ebuild 
b/net-p2p/qbittorrent/qbittorrent-4.1.5-r1.ebuild
similarity index 94%
rename from net-p2p/qbittorrent/qbittorrent-4.1.5.ebuild
rename to net-p2p/qbittorrent/qbittorrent-4.1.5-r1.ebuild
index 970763d76f6..5023499c155 100644
--- a/net-p2p/qbittorrent/qbittorrent-4.1.5.ebuild
+++ b/net-p2p/qbittorrent/qbittorrent-4.1.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -29,7 +29,7 @@ RDEPEND="
dev-qt/qtnetwork:5[ssl]
>=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt5(+),X?]
dev-qt/qtxml:5
-   >=net-libs/libtorrent-rasterbar-1.0.6:0=
+   =net-libs/libtorrent-rasterbar-1.1*:0=
sys-libs/zlib
dbus? ( dev-qt/qtdbus:5 )
X? (

diff --git a/net-p2p/qbittorrent/qbittorrent-.ebuild 
b/net-p2p/qbittorrent/qbittorrent-.ebuild
index 2c128403ac6..30188ae78c3 100644
--- a/net-p2p/qbittorrent/qbittorrent-.ebuild
+++ b/net-p2p/qbittorrent/qbittorrent-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -29,7 +29,7 @@ RDEPEND="
dev-qt/qtnetwork:5[ssl]
>=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt5(+),X?]
dev-qt/qtxml:5
-   >=net-libs/libtorrent-rasterbar-1.0.6:0=
+   =net-libs/libtorrent-rasterbar-1.1*:0=
sys-libs/zlib
dbus? ( dev-qt/qtdbus:5 )
X? (



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nmap/files/, net-analyzer/nmap/

2019-01-25 Thread Jeroen Roovers
commit: b58e9ab433da5a8629d049ff3a73b348a27b5528
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Jan 25 14:13:37 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Jan 25 14:13:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b58e9ab4

net-analyzer/nmap: nmap_error.cc: include time.h

Fixes: https://bugs.gentoo.org/676206
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/nmap/files/nmap-7.70-time.patch | 10 ++
 net-analyzer/nmap/nmap-7.70.ebuild   |  5 ++---
 net-analyzer/nmap/nmap-.ebuild   |  3 ++-
 3 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/net-analyzer/nmap/files/nmap-7.70-time.patch 
b/net-analyzer/nmap/files/nmap-7.70-time.patch
new file mode 100644
index 000..6d12ea8f96f
--- /dev/null
+++ b/net-analyzer/nmap/files/nmap-7.70-time.patch
@@ -0,0 +1,10 @@
+--- a/nmap_error.cc
 b/nmap_error.cc
+@@ -135,6 +135,7 @@
+ #include "xml.h"
+ 
+ #include 
++#include 
+ 
+ extern NmapOps o;
+ 

diff --git a/net-analyzer/nmap/nmap-7.70.ebuild 
b/net-analyzer/nmap/nmap-7.70.ebuild
index 692e3cb1290..e9bc260c7a9 100644
--- a/net-analyzer/nmap/nmap-7.70.ebuild
+++ b/net-analyzer/nmap/nmap-7.70.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -25,13 +25,11 @@ IUSE="
zenmap
 "
 NMAP_LINGUAS=( de fr hi hr it ja pl pt_BR ru zh )
-
 REQUIRED_USE="
system-lua? ( nse )
ndiff? ( ${PYTHON_REQUIRED_USE} )
zenmap? ( ${PYTHON_REQUIRED_USE} )
 "
-
 RDEPEND="
dev-libs/liblinear:=
dev-libs/libpcre
@@ -66,6 +64,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-7.25-CXXFLAGS.patch
"${FILESDIR}"/${PN}-7.25-libpcre.patch
"${FILESDIR}"/${PN}-7.31-libnl.patch
+   "${FILESDIR}"/${PN}-7.70-time.patch
 )
 S="${WORKDIR}/${MY_P}"
 

diff --git a/net-analyzer/nmap/nmap-.ebuild 
b/net-analyzer/nmap/nmap-.ebuild
index a54dd5819b1..c282246d451 100644
--- a/net-analyzer/nmap/nmap-.ebuild
+++ b/net-analyzer/nmap/nmap-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -65,6 +65,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-7.25-CXXFLAGS.patch
"${FILESDIR}"/${PN}-7.25-libpcre.patch
"${FILESDIR}"/${PN}-7.31-libnl.patch
+   "${FILESDIR}"/${PN}-7.70-time.patch
 )
 S="${WORKDIR}/${MY_P}"
 



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

2019-01-25 Thread Lars Wendler
commit: f00620102dc8c99b7760ae2b769fa2146452c9f7
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 14:09:44 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 14:10:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0062010

sys-libs/db: Removed old.

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

 sys-libs/db/Manifest|   1 -
 sys-libs/db/db-6.1.29.ebuild| 236 --
 sys-libs/db/db-6.2.23-r1.ebuild | 243 
 sys-libs/db/db-6.2.23.ebuild| 241 ---
 sys-libs/db/db-6.2.32.ebuild| 241 ---
 5 files changed, 962 deletions(-)

diff --git a/sys-libs/db/Manifest b/sys-libs/db/Manifest
index 2c9de6d4f74..0fa279baf2d 100644
--- a/sys-libs/db/Manifest
+++ b/sys-libs/db/Manifest
@@ -13,7 +13,6 @@ DIST db-5.3.28.tar.gz 35090431 BLAKE2B 
5b77a4ec0945fa96ce6c2b452fb4b029295e037fa
 DIST db-6.0.35.tar.gz 36532251 BLAKE2B 
22fbe557ccc13e4b936db8ca7d6ba11ce42e477bbf39f7e472067e06fb5910b1147fa58a44ac944c24a51ea839f1c61edda6bd8f3c450acac0c13d7fdba11e89
 SHA512 
002db1553def44efa715095b04b2bac2de7450cdc7142586d1d8b5d8ce79ee5e98f824b3bd276cd586ca932dc51ed35a9ffbed95b2b9847264f262cfa092479d
 DIST db-6.1.29.tar.gz 37521943 BLAKE2B 
3f036647337a36cb5f8cf5cc8774bd49d4cdff2d57750f21488183de67e426ab0863ee97d972751adc10b294f6c23e1e5e3f2c7b3fc02616463f971b10f3b15e
 SHA512 
ced40e357acd1214f8b5800ddcf084c65c0ab77ca045a4504ac1a4c864035bd50aa8993cd1232174ff81071a36806314807330aa53dcb18de548c886c2a99e73
 DIST db-6.1.36.tar.gz 37526795 BLAKE2B 
9334dc66501465acf99f2675dc838a979c03a29b526b1d22fc9f811c6e76c5ecab4fafad4aa7efbc658c0bc64218f22ac4189c34bce866b0a4ffa052525607a6
 SHA512 
5f63eaaf75cad12c2a9b9f960bf39cb4ba6f8636609472f5909e38dccb65322a20104f0a8641b968c195c1b9a3ac5456c8bdaf3253995c9a4ace222a2e0d6811
-DIST db-6.2.23.tar.gz 44305964 BLAKE2B 
8d5705e8e4c66f93e52d1bee86a322ef6d2077d1e5c005208bedcb25f6cfd10e0a6d9c9a72a1d2e3568d6fec14ee82e2446a0fa0a0d505cc17f0ef245de826a1
 SHA512 
0aac380673ff4f97a2a6230f135f8151b8d2896a12710f708cd983b5fb95075b55fc2c67af577365e8ec7a32e43357a4f3118e37713d00b227f05eb11b1d12f5
 DIST db-6.2.32.tar.gz 45342417 BLAKE2B 
d3254fba1300d6c7dda5d872c5fa349e8704d71be9c4d37ccf3357782adeb879ce30e066cf083bd97554405c2e94071a96cee16090ad9f797a4fa657ff7e8c46
 SHA512 
83bdbf18a7b9782409cf4563f8d5f11322d5e564a39946c890604a60440a6ea6361e0236bbc30bd4e8e1de1fa9196b8e815fd126baa035f55c5826c2c6aa3401
 DIST db.1.85.tar.gz 270953 BLAKE2B 
7862979b6fe21a67eac7eb5e0d05093f33fa71fa92f9717a65bd39b366727e6928109c821b86ede85d6d2a8013199f3927e760bed19001a5cfd2270819a3b904
 SHA512 
03bf3a2b0947efdca4e38719542e96378b5eeb57da64d5030dd23ab710773c1826f1c867032d0bea658b7fdd8272db253e97bbc490d198b9437025ffdf9e880e
 DIST patch.3.2.9.1 2139 BLAKE2B 
7c442311499244d3432a1648294f3b610da827f7d940777de01f98816d6dc8bc50b68cb45900bcc1acf1672207a86009dbc33b6226f8a4fcbefc1bee51961138
 SHA512 
f410c43ea4af28a39d8ea47f774d38b53bf1183a34abfcf1f27e253eb61b42f4b5e9f0a3a500e174eb796ea342e6dd50a8bb95ff3eb8ee188461489cc994b8f9

diff --git a/sys-libs/db/db-6.1.29.ebuild b/sys-libs/db/db-6.1.29.ebuild
deleted file mode 100644
index 5a93fb270c1..000
--- a/sys-libs/db/db-6.1.29.ebuild
+++ /dev/null
@@ -1,236 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils db flag-o-matic java-pkg-opt-2 autotools multilib 
multilib-minimal versionator toolchain-funcs
-
-#Number of official patches
-#PATCHNO=`echo ${PV}|sed -e "s,\(.*_p\)\([0-9]*\),\2,"`
-PATCHNO=${PV/*.*.*_p}
-if [[ ${PATCHNO} == "${PV}" ]] ; then
-   MY_PV=${PV}
-   MY_P=${P}
-   PATCHNO=0
-else
-   MY_PV=${PV/_p${PATCHNO}}
-   MY_P=${PN}-${MY_PV}
-fi
-
-S_BASE="${WORKDIR}/${MY_P}"
-S="${S_BASE}/build_unix"
-DESCRIPTION="Oracle Berkeley DB"
-HOMEPAGE="http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html;
-SRC_URI="http://download.oracle.com/berkeley-db/${MY_P}.tar.gz;
-for (( i=1 ; i<=${PATCHNO} ; i++ )) ; do
-   export SRC_URI="${SRC_URI} 
http://www.oracle.com/technology/products/berkeley-db/db/update/${MY_PV}/patch.${MY_PV}.${i};
-done
-
-LICENSE="AGPL-3"
-SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd"
-IUSE="doc java cxx tcl test"
-
-REQUIRED_USE="test? ( tcl )"
-
-# the entire testsuite needs the TCL functionality
-DEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] )
-   test? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] )
-   java? ( >=virtual/jdk-1.5 )
-   >=sys-devel/binutils-2.16.1"
-RDEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] )
-   java? ( >=virtual/jre-1.5 )"
-
-MULTILIB_WRAPPED_HEADERS=(
-   

[gentoo-commits] repo/gentoo:master commit in: sys-libs/db/files/, sys-libs/db/

2019-01-25 Thread Lars Wendler
commit: 028f9596c072d426a3306af1bd083eb12e629fda
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 14:07:49 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 14:10:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=028f9596

sys-libs/db: Bump to version 6.1.36

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

 sys-libs/db/Manifest   |   1 +
 sys-libs/db/db-6.1.36.ebuild   | 242 +
 .../db/files/db-4.3-listen-to-java-options.patch   |   4 +-
 3 files changed, 245 insertions(+), 2 deletions(-)

diff --git a/sys-libs/db/Manifest b/sys-libs/db/Manifest
index d8fd85ce4af..2c9de6d4f74 100644
--- a/sys-libs/db/Manifest
+++ b/sys-libs/db/Manifest
@@ -12,6 +12,7 @@ DIST db-5.1.29.tar.gz 32188074 BLAKE2B 
6af9e6afc0ebd06a43c0e96fd0b2b3c8e17476507
 DIST db-5.3.28.tar.gz 35090431 BLAKE2B 
5b77a4ec0945fa96ce6c2b452fb4b029295e037fa64d5ff8dcb3b5e01ee3501fd75d9a73b8f5fa54d8907717d93546fbb5348ee70119e877fa2f17d301ecf50d
 SHA512 
e91bbe550fc147a8be7e69ade86fdb7066453814971b2b0223f7d17712bd029a8eff5b2b6b238042ff6ec1ffa6879d44cb95c5645a922fee305c26c3eeaee090
 DIST db-6.0.35.tar.gz 36532251 BLAKE2B 
22fbe557ccc13e4b936db8ca7d6ba11ce42e477bbf39f7e472067e06fb5910b1147fa58a44ac944c24a51ea839f1c61edda6bd8f3c450acac0c13d7fdba11e89
 SHA512 
002db1553def44efa715095b04b2bac2de7450cdc7142586d1d8b5d8ce79ee5e98f824b3bd276cd586ca932dc51ed35a9ffbed95b2b9847264f262cfa092479d
 DIST db-6.1.29.tar.gz 37521943 BLAKE2B 
3f036647337a36cb5f8cf5cc8774bd49d4cdff2d57750f21488183de67e426ab0863ee97d972751adc10b294f6c23e1e5e3f2c7b3fc02616463f971b10f3b15e
 SHA512 
ced40e357acd1214f8b5800ddcf084c65c0ab77ca045a4504ac1a4c864035bd50aa8993cd1232174ff81071a36806314807330aa53dcb18de548c886c2a99e73
+DIST db-6.1.36.tar.gz 37526795 BLAKE2B 
9334dc66501465acf99f2675dc838a979c03a29b526b1d22fc9f811c6e76c5ecab4fafad4aa7efbc658c0bc64218f22ac4189c34bce866b0a4ffa052525607a6
 SHA512 
5f63eaaf75cad12c2a9b9f960bf39cb4ba6f8636609472f5909e38dccb65322a20104f0a8641b968c195c1b9a3ac5456c8bdaf3253995c9a4ace222a2e0d6811
 DIST db-6.2.23.tar.gz 44305964 BLAKE2B 
8d5705e8e4c66f93e52d1bee86a322ef6d2077d1e5c005208bedcb25f6cfd10e0a6d9c9a72a1d2e3568d6fec14ee82e2446a0fa0a0d505cc17f0ef245de826a1
 SHA512 
0aac380673ff4f97a2a6230f135f8151b8d2896a12710f708cd983b5fb95075b55fc2c67af577365e8ec7a32e43357a4f3118e37713d00b227f05eb11b1d12f5
 DIST db-6.2.32.tar.gz 45342417 BLAKE2B 
d3254fba1300d6c7dda5d872c5fa349e8704d71be9c4d37ccf3357782adeb879ce30e066cf083bd97554405c2e94071a96cee16090ad9f797a4fa657ff7e8c46
 SHA512 
83bdbf18a7b9782409cf4563f8d5f11322d5e564a39946c890604a60440a6ea6361e0236bbc30bd4e8e1de1fa9196b8e815fd126baa035f55c5826c2c6aa3401
 DIST db.1.85.tar.gz 270953 BLAKE2B 
7862979b6fe21a67eac7eb5e0d05093f33fa71fa92f9717a65bd39b366727e6928109c821b86ede85d6d2a8013199f3927e760bed19001a5cfd2270819a3b904
 SHA512 
03bf3a2b0947efdca4e38719542e96378b5eeb57da64d5030dd23ab710773c1826f1c867032d0bea658b7fdd8272db253e97bbc490d198b9437025ffdf9e880e

diff --git a/sys-libs/db/db-6.1.36.ebuild b/sys-libs/db/db-6.1.36.ebuild
new file mode 100644
index 000..4f1b84ebf02
--- /dev/null
+++ b/sys-libs/db/db-6.1.36.ebuild
@@ -0,0 +1,242 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit db flag-o-matic java-pkg-opt-2 autotools multilib multilib-minimal 
eapi7-ver toolchain-funcs
+
+#Number of official patches
+#PATCHNO=`echo ${PV}|sed -e "s,\(.*_p\)\([0-9]*\),\2,"`
+PATCHNO=${PV/*.*.*_p}
+if [[ ${PATCHNO} == "${PV}" ]] ; then
+   MY_PV=${PV}
+   MY_P=${P}
+   PATCHNO=0
+else
+   MY_PV=${PV/_p${PATCHNO}}
+   MY_P=${PN}-${MY_PV}
+fi
+
+S_BASE="${WORKDIR}/${MY_P}"
+S="${S_BASE}/build_unix"
+DESCRIPTION="Oracle Berkeley DB"
+HOMEPAGE="http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html;
+SRC_URI="http://download.oracle.com/berkeley-db/${MY_P}.tar.gz;
+for (( i=1 ; i<=${PATCHNO} ; i++ )) ; do
+   export SRC_URI="${SRC_URI} 
http://www.oracle.com/technology/products/berkeley-db/db/update/${MY_PV}/patch.${MY_PV}.${i};
+done
+
+LICENSE="AGPL-3"
+SLOT="$(get_version_component_range 1-2)"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd"
+IUSE="doc java cxx tcl test"
+
+REQUIRED_USE="test? ( tcl )"
+
+# the entire testsuite needs the TCL functionality
+DEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] )
+   test? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] )
+   java? ( >=virtual/jdk-1.5 )
+   >=sys-devel/binutils-2.16.1"
+RDEPEND="tcl? ( >=dev-lang/tcl-8.5.15-r1:0=[${MULTILIB_USEDEP}] )
+   java? ( >=virtual/jre-1.5 )"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/db$(ver_cut 1-2)/db.h
+)
+
+PATCHES=(
+   # bug #510506
+   "${FILESDIR}"/${PN}-4.8.24-java-manifest-location.patch
+
+   # use the includes 

[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/

2019-01-25 Thread Michał Górny
commit: faa1076ddc6fcc48d39d3ec94e7c5a878c2c0b6a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan 25 13:17:40 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan 25 13:19:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faa1076d

xfce-base/thunar: Bump to 1.6.16 (stable branch)

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/thunar/Manifest |  1 +
 xfce-base/thunar/thunar-1.6.16.ebuild | 77 +++
 2 files changed, 78 insertions(+)

diff --git a/xfce-base/thunar/Manifest b/xfce-base/thunar/Manifest
index 0bf2634c5ce..c055c01e25a 100644
--- a/xfce-base/thunar/Manifest
+++ b/xfce-base/thunar/Manifest
@@ -1,5 +1,6 @@
 DIST Thunar-1.6.14.tar.bz2 1964822 BLAKE2B 
f080f3d0634b4b4a8e11cdb902d5f300b1829979a98b573bdb6fd11b273cdc5e37f8e8c03556561b9f8730a70c7f7c34cbfbda76fe90f86cf2c443c3f426aabe
 SHA512 
63287e35e71a6d1cb75a4d4db4d05f0fdf34d43b0ce7a2094e6aa9042d16f3eb60f7c5d755810bb0807112177e37954ba566b4f0ef701766205ed9e5561bd6e1
 DIST Thunar-1.6.15.tar.bz2 1964447 BLAKE2B 
07dd4241f5aad975ae8f3c4cffb1b40338fd31f5434fb436a2772a9671673b4b124ac4363dd7c1267b0b51d42550735bbb733ada16f77a5b89176a353c84edbc
 SHA512 
836d2d10347915b2e03be5501806e358af1c60786284c5e5afa11a6a79bc6a790966ea43bd9add6783fab91b08f06ae7852c21152f3aa0f29814325a16d65a7f
+DIST Thunar-1.6.16.tar.bz2 1977562 BLAKE2B 
efad6b45a64c5c80bff3d829207a1a0b45b4b48ab168c38bbcd263445a16dc230b0c5ea7515b65d686cbf256d294bcced19b248c252478a6a1cecb393d71a7f6
 SHA512 
6c7b8b88e01762e606bfd9e3848a98ae5825ff431f0686dd7bbcb987e448aa4c20d7cca3fb6b7c5d5dfde91ae6f8a16e674769d168f6f875e2efe519f4cdfd1b
 DIST Thunar-1.7.2.tar.bz2 2236176 BLAKE2B 
e7ebcd8b74295539edfeed710cc25204691af3eaa1c84dcd9b56399f5af2220aabc9ce2736f03c7c1bfe9a61600c6acc4f659ba8d56e575f0e4679a644f1c459
 SHA512 
b98b72558c9a8872f89632820be816f2c2e7f7e07750cc62eace741794cde4aa4daf2f4ed7fd52a5b1e3c4e9965925a038a948124d32ed6d392db65b8780ccdb
 DIST Thunar-1.8.1.tar.bz2 2289891 BLAKE2B 
79ccb1408bcacba7ed50536f0a8e622d2e251fedf4b0ffef425f1e0926dbaa93ccef0fa751c8362cb420eef013f9f442de3fe58d411558dd7b9cb5751d2e89f4
 SHA512 
89aa29af5e272d58c7de02ba1c96d7f0c32eed49cda9621ef863dd679712cc653f58e729e49b9dc3d1626c9b8ebe2b18a2307e00c7ea1d1d2b42fa71272aced7
 DIST Thunar-1.8.2.tar.bz2 2274521 BLAKE2B 
b5460a4bc5dd6547b8d620fd60a506899b4cfe6fdbadc46c9e7d259bed90ae5f98de2fa337762f8cbe5c7bdcb020ce3afd3d942763f0ea5aa84d1d9ceb47154f
 SHA512 
c770fae8b6e5e0e42148ed2b9777afba5159783e5fc716eba1e0499b5390684f386eb575f1a608814bc118bbf05ede34c6737e28c06470c4d01717b579308ec9

diff --git a/xfce-base/thunar/thunar-1.6.16.ebuild 
b/xfce-base/thunar/thunar-1.6.16.ebuild
new file mode 100644
index 000..f837cdbb8d2
--- /dev/null
+++ b/xfce-base/thunar/thunar-1.6.16.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2-utils virtualx xdg-utils
+
+MY_P=${P^}
+
+DESCRIPTION="File manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/ 
https://docs.xfce.org/xfce/thunar/start;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbus exif libnotify pcre test +trash-panel-plugin udisks"
+
+GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"
+COMMON_DEPEND=">=dev-lang/perl-5.6
+   >=dev-libs/glib-2.30:=
+   >=x11-libs/gdk-pixbuf-2.14:=
+   >=x11-libs/gtk+-2.24:2=
+   >=xfce-base/exo-0.10:=
+   >=xfce-base/libxfce4ui-4.10:=
+   >=xfce-base/libxfce4util-4.10.1:=
+   >=xfce-base/xfconf-4.10:=
+   dbus? ( >=dev-libs/dbus-glib-0.100:= )
+   exif? ( >=media-libs/libexif-0.6.19:= )
+   libnotify? ( >=x11-libs/libnotify-0.7:= )
+   pcre? ( >=dev-libs/libpcre-6:= )
+   trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= )
+   udisks? ( virtual/libgudev:= )"
+RDEPEND="${COMMON_DEPEND}
+   >=dev-util/desktop-file-utils-0.20-r1
+   x11-misc/shared-mime-info
+   dbus? ( ${GVFS_DEPEND} )
+   trash-panel-plugin? ( ${GVFS_DEPEND} )
+   udisks? (
+   virtual/udev
+   ${GVFS_DEPEND}[udisks,udev]
+   )"
+DEPEND="${COMMON_DEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+REQUIRED_USE="trash-panel-plugin? ( dbus )"
+
+S=${WORKDIR}/${MY_P}
+
+DOCS=( AUTHORS ChangeLog FAQ HACKING NEWS README THANKS TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable dbus)
+   $(use_enable udisks gudev)
+   $(use_enable libnotify notifications)
+   $(use_enable exif)
+   $(use_enable pcre)
+   $(use_enable trash-panel-plugin tpa-plugin)
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_test() {
+   virtx emake check
+}
+

[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/

2019-01-25 Thread Michał Górny
commit: b689bb538272f9321120326e634a91f54eccb9b0
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan 25 13:22:26 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan 25 13:22:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b689bb53

xfce-base/thunar: Drop old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/thunar/Manifest|  2 -
 xfce-base/thunar/thunar-1.7.2.ebuild | 80 
 xfce-base/thunar/thunar-1.8.1.ebuild | 80 
 3 files changed, 162 deletions(-)

diff --git a/xfce-base/thunar/Manifest b/xfce-base/thunar/Manifest
index 331cd2112a0..61188a8507d 100644
--- a/xfce-base/thunar/Manifest
+++ b/xfce-base/thunar/Manifest
@@ -1,7 +1,5 @@
 DIST Thunar-1.6.14.tar.bz2 1964822 BLAKE2B 
f080f3d0634b4b4a8e11cdb902d5f300b1829979a98b573bdb6fd11b273cdc5e37f8e8c03556561b9f8730a70c7f7c34cbfbda76fe90f86cf2c443c3f426aabe
 SHA512 
63287e35e71a6d1cb75a4d4db4d05f0fdf34d43b0ce7a2094e6aa9042d16f3eb60f7c5d755810bb0807112177e37954ba566b4f0ef701766205ed9e5561bd6e1
 DIST Thunar-1.6.15.tar.bz2 1964447 BLAKE2B 
07dd4241f5aad975ae8f3c4cffb1b40338fd31f5434fb436a2772a9671673b4b124ac4363dd7c1267b0b51d42550735bbb733ada16f77a5b89176a353c84edbc
 SHA512 
836d2d10347915b2e03be5501806e358af1c60786284c5e5afa11a6a79bc6a790966ea43bd9add6783fab91b08f06ae7852c21152f3aa0f29814325a16d65a7f
 DIST Thunar-1.6.16.tar.bz2 1977562 BLAKE2B 
efad6b45a64c5c80bff3d829207a1a0b45b4b48ab168c38bbcd263445a16dc230b0c5ea7515b65d686cbf256d294bcced19b248c252478a6a1cecb393d71a7f6
 SHA512 
6c7b8b88e01762e606bfd9e3848a98ae5825ff431f0686dd7bbcb987e448aa4c20d7cca3fb6b7c5d5dfde91ae6f8a16e674769d168f6f875e2efe519f4cdfd1b
-DIST Thunar-1.7.2.tar.bz2 2236176 BLAKE2B 
e7ebcd8b74295539edfeed710cc25204691af3eaa1c84dcd9b56399f5af2220aabc9ce2736f03c7c1bfe9a61600c6acc4f659ba8d56e575f0e4679a644f1c459
 SHA512 
b98b72558c9a8872f89632820be816f2c2e7f7e07750cc62eace741794cde4aa4daf2f4ed7fd52a5b1e3c4e9965925a038a948124d32ed6d392db65b8780ccdb
-DIST Thunar-1.8.1.tar.bz2 2289891 BLAKE2B 
79ccb1408bcacba7ed50536f0a8e622d2e251fedf4b0ffef425f1e0926dbaa93ccef0fa751c8362cb420eef013f9f442de3fe58d411558dd7b9cb5751d2e89f4
 SHA512 
89aa29af5e272d58c7de02ba1c96d7f0c32eed49cda9621ef863dd679712cc653f58e729e49b9dc3d1626c9b8ebe2b18a2307e00c7ea1d1d2b42fa71272aced7
 DIST Thunar-1.8.2.tar.bz2 2274521 BLAKE2B 
b5460a4bc5dd6547b8d620fd60a506899b4cfe6fdbadc46c9e7d259bed90ae5f98de2fa337762f8cbe5c7bdcb020ce3afd3d942763f0ea5aa84d1d9ceb47154f
 SHA512 
c770fae8b6e5e0e42148ed2b9777afba5159783e5fc716eba1e0499b5390684f386eb575f1a608814bc118bbf05ede34c6737e28c06470c4d01717b579308ec9
 DIST Thunar-1.8.3.tar.bz2 2348196 BLAKE2B 
c89ad2a763b3aa6956e32777c7000fedbb8448704b11cfdb979e350a665b3ee3f43bc065af3fbd396c6810438ba5e49515204f40d68a2b2217fd4e18019140da
 SHA512 
f584d4f8a474797bf422101c2eb21fe08e10c3ba0b842ac157b1016c49e164069181db9393c2c46c376e012bf0fd6ef693fd203175392368b5e30d5f44ee986f

diff --git a/xfce-base/thunar/thunar-1.7.2.ebuild 
b/xfce-base/thunar/thunar-1.7.2.ebuild
deleted file mode 100644
index 0246378c765..000
--- a/xfce-base/thunar/thunar-1.7.2.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2-utils virtualx xdg-utils
-
-MY_P=${P^}
-
-DESCRIPTION="File manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/ 
https://docs.xfce.org/xfce/thunar/start;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="exif introspection libnotify pcre test +trash-panel-plugin udisks"
-
-GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"
-COMMON_DEPEND=">=dev-lang/perl-5.6
-   >=dev-libs/glib-2.30:=
-   >=x11-libs/gdk-pixbuf-2.14:=
-   >=x11-libs/gtk+-3.22:3=
-   >=xfce-base/exo-0.11:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/libxfce4util-4.12:=
-   >=xfce-base/xfconf-4.12:=
-   exif? ( >=media-libs/libexif-0.6.19:= )
-   introspection? ( dev-libs/gobject-introspection:= )
-   libnotify? ( >=x11-libs/libnotify-0.7:= )
-   pcre? ( >=dev-libs/libpcre-6:= )
-   trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= )
-   udisks? ( virtual/libgudev:= )"
-RDEPEND="${COMMON_DEPEND}
-   >=dev-util/desktop-file-utils-0.20-r1
-   x11-misc/shared-mime-info
-   trash-panel-plugin? ( ${GVFS_DEPEND} )
-   udisks? (
-   virtual/udev
-   ${GVFS_DEPEND}[udisks,udev]
-   )"
-DEPEND="${COMMON_DEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}
-
-DOCS=( AUTHORS ChangeLog FAQ HACKING NEWS README THANKS TODO )
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-  

[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/

2019-01-25 Thread Michał Górny
commit: 7015a55e7c3ce398c41af80d4bdde44c9bbdcd3d
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan 25 13:21:59 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan 25 13:21:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7015a55e

xfce-base/thunar: Fix license

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/thunar/thunar-1.6.16.ebuild | 2 +-
 xfce-base/thunar/thunar-1.8.3.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/thunar/thunar-1.6.16.ebuild 
b/xfce-base/thunar/thunar-1.6.16.ebuild
index f837cdbb8d2..90a2f9ca2eb 100644
--- a/xfce-base/thunar/thunar-1.6.16.ebuild
+++ b/xfce-base/thunar/thunar-1.6.16.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="File manager for the Xfce desktop environment"
 HOMEPAGE="https://www.xfce.org/projects/ 
https://docs.xfce.org/xfce/thunar/start;
 SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${MY_P}.tar.bz2;
 
-LICENSE="GPL-2 LGPL-2"
+LICENSE="GPL-2+ LGPL-2+"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="+dbus exif libnotify pcre test +trash-panel-plugin udisks"

diff --git a/xfce-base/thunar/thunar-1.8.3.ebuild 
b/xfce-base/thunar/thunar-1.8.3.ebuild
index 31c52fc42f4..9ce63186aa2 100644
--- a/xfce-base/thunar/thunar-1.8.3.ebuild
+++ b/xfce-base/thunar/thunar-1.8.3.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="File manager for the Xfce desktop environment"
 HOMEPAGE="https://www.xfce.org/projects/ 
https://docs.xfce.org/xfce/thunar/start;
 SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${MY_P}.tar.bz2;
 
-LICENSE="GPL-2 LGPL-2"
+LICENSE="GPL-2+ LGPL-2+"
 SLOT="0/3"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="exif introspection libnotify pcre test +trash-panel-plugin udisks"



[gentoo-commits] repo/gentoo:master commit in: xfce-base/thunar/

2019-01-25 Thread Michał Górny
commit: 0073c4a8683fe1752fddb2035f8c5a657d44e5ff
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan 25 13:19:05 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan 25 13:19:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0073c4a8

xfce-base/thunar: Bump to 1.8.3 (~arch branch)

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/thunar/Manifest|  1 +
 xfce-base/thunar/thunar-1.8.3.ebuild | 80 
 2 files changed, 81 insertions(+)

diff --git a/xfce-base/thunar/Manifest b/xfce-base/thunar/Manifest
index c055c01e25a..331cd2112a0 100644
--- a/xfce-base/thunar/Manifest
+++ b/xfce-base/thunar/Manifest
@@ -4,3 +4,4 @@ DIST Thunar-1.6.16.tar.bz2 1977562 BLAKE2B 
efad6b45a64c5c80bff3d829207a1a0b45b4b
 DIST Thunar-1.7.2.tar.bz2 2236176 BLAKE2B 
e7ebcd8b74295539edfeed710cc25204691af3eaa1c84dcd9b56399f5af2220aabc9ce2736f03c7c1bfe9a61600c6acc4f659ba8d56e575f0e4679a644f1c459
 SHA512 
b98b72558c9a8872f89632820be816f2c2e7f7e07750cc62eace741794cde4aa4daf2f4ed7fd52a5b1e3c4e9965925a038a948124d32ed6d392db65b8780ccdb
 DIST Thunar-1.8.1.tar.bz2 2289891 BLAKE2B 
79ccb1408bcacba7ed50536f0a8e622d2e251fedf4b0ffef425f1e0926dbaa93ccef0fa751c8362cb420eef013f9f442de3fe58d411558dd7b9cb5751d2e89f4
 SHA512 
89aa29af5e272d58c7de02ba1c96d7f0c32eed49cda9621ef863dd679712cc653f58e729e49b9dc3d1626c9b8ebe2b18a2307e00c7ea1d1d2b42fa71272aced7
 DIST Thunar-1.8.2.tar.bz2 2274521 BLAKE2B 
b5460a4bc5dd6547b8d620fd60a506899b4cfe6fdbadc46c9e7d259bed90ae5f98de2fa337762f8cbe5c7bdcb020ce3afd3d942763f0ea5aa84d1d9ceb47154f
 SHA512 
c770fae8b6e5e0e42148ed2b9777afba5159783e5fc716eba1e0499b5390684f386eb575f1a608814bc118bbf05ede34c6737e28c06470c4d01717b579308ec9
+DIST Thunar-1.8.3.tar.bz2 2348196 BLAKE2B 
c89ad2a763b3aa6956e32777c7000fedbb8448704b11cfdb979e350a665b3ee3f43bc065af3fbd396c6810438ba5e49515204f40d68a2b2217fd4e18019140da
 SHA512 
f584d4f8a474797bf422101c2eb21fe08e10c3ba0b842ac157b1016c49e164069181db9393c2c46c376e012bf0fd6ef693fd203175392368b5e30d5f44ee986f

diff --git a/xfce-base/thunar/thunar-1.8.3.ebuild 
b/xfce-base/thunar/thunar-1.8.3.ebuild
new file mode 100644
index 000..31c52fc42f4
--- /dev/null
+++ b/xfce-base/thunar/thunar-1.8.3.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2-utils virtualx xdg-utils
+
+MY_P=${P^}
+
+DESCRIPTION="File manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/ 
https://docs.xfce.org/xfce/thunar/start;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0/3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="exif introspection libnotify pcre test +trash-panel-plugin udisks"
+
+GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"
+COMMON_DEPEND=">=dev-lang/perl-5.6
+   >=dev-libs/glib-2.30:=
+   >=x11-libs/gdk-pixbuf-2.14:=
+   >=x11-libs/gtk+-3.22:3=
+   >=xfce-base/exo-0.12:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/libxfce4util-4.12:=
+   >=xfce-base/xfconf-4.12:=
+   exif? ( >=media-libs/libexif-0.6.19:= )
+   introspection? ( dev-libs/gobject-introspection:= )
+   libnotify? ( >=x11-libs/libnotify-0.7:= )
+   pcre? ( >=dev-libs/libpcre-6:= )
+   trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= )
+   udisks? ( virtual/libgudev:= )"
+RDEPEND="${COMMON_DEPEND}
+   >=dev-util/desktop-file-utils-0.20-r1
+   x11-misc/shared-mime-info
+   trash-panel-plugin? ( ${GVFS_DEPEND} )
+   udisks? (
+   virtual/udev
+   ${GVFS_DEPEND}[udisks,udev]
+   )"
+DEPEND="${COMMON_DEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+S=${WORKDIR}/${MY_P}
+
+DOCS=( AUTHORS ChangeLog FAQ HACKING NEWS README THANKS TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable udisks gudev)
+   $(use_enable libnotify notifications)
+   $(use_enable exif)
+   $(use_enable pcre)
+   $(use_enable trash-panel-plugin tpa-plugin)
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_test() {
+   virtx emake check
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   gnome2_icon_cache_update
+}



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

2019-01-25 Thread Lars Wendler
commit: 57a9cba8c1e7a799c1a6a951fbbf3a95e62615ef
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 12:53:03 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 12:53:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57a9cba8

net-libs/gsoap: Bump to version 2.8.77

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

 net-libs/gsoap/Manifest|  1 +
 net-libs/gsoap/gsoap-2.8.77.ebuild | 86 ++
 2 files changed, 87 insertions(+)

diff --git a/net-libs/gsoap/Manifest b/net-libs/gsoap/Manifest
index ad3a36d5f8a..515a7883c17 100644
--- a/net-libs/gsoap/Manifest
+++ b/net-libs/gsoap/Manifest
@@ -1,3 +1,4 @@
 DIST gsoap_2.8.70.zip 32695627 BLAKE2B 
6d803441804badf06b29cee8ca898dc864b9a0388f6f3fa58b84c1b237d77e22ab70e0cc5439915c715bdba7831b14f86d8003e1338b6184ddbfe845bb76ff75
 SHA512 
f7e9f85580c19bb390f1310bb47b690a5788b54c1e12c6fc0d9166039a84ae24ec5d3268cb67cd72b20e2eaa78689e175b975f07da44fd20e172a77ef37f4ae7
 DIST gsoap_2.8.75.zip 32645773 BLAKE2B 
120d79a33f90881ef5c4486ffef3a7713770622a65832be9997edeebbd4beac6dbdb6dfd876eb86f8622a1693908e6f56a47b48179fb37fdb12d313e2929ea7e
 SHA512 
f5ebbe307b9125eec2284989a7ec1c16ade93df3b091ac44768750010bf51fdd9199ba96dbdc5b37b105bdd1156a0f90f41fdb407408d62b2c7750881db8b949
 DIST gsoap_2.8.76.zip 32474005 BLAKE2B 
4b604ea5c21ff98e2eddad3bd032e87e460d708a118ed65cb98e1577a7dc85f7103ffa4ddc4c3447425f4978f7ef72f6c1004fbe6d099a654ef3705fff53bc8a
 SHA512 
4613ce97a52c08267f6186fc90dfa15dac3be0407b754a42ceef59a5f784078c90e43086b9920031d7690a775b42184c330af03c7c594d6cd5b781ff44b1c0b6
+DIST gsoap_2.8.77.zip 32495225 BLAKE2B 
96d1d629eddfa470b53412f15fdb1ffdcc53bcda257ef4ed9c93b3da56cb1627fb98bed81108eb8344e6dbefa2b93c7cf9d9372186590c9a9668044eac9217e8
 SHA512 
3c03bd32ed9e6368f8483ff7979d2a75361f60f475a4b99b6d3a7d371719c254671d49177c70dd1538075a5e96b3e398d1d301e4fa66cb5979441b6bd6c60fd8

diff --git a/net-libs/gsoap/gsoap-2.8.77.ebuild 
b/net-libs/gsoap/gsoap-2.8.77.ebuild
new file mode 100644
index 000..a36f6c5466c
--- /dev/null
+++ b/net-libs/gsoap/gsoap-2.8.77.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+MY_P="${PN}-2.8"
+
+DESCRIPTION="A cross-platform open source C and C++ SDK for SOAP/XML Web 
services"
+HOMEPAGE="http://gsoap2.sourceforge.net;
+SRC_URI="mirror://sourceforge/gsoap2/gsoap_${PV}.zip"
+
+LICENSE="GPL-2 gSOAP"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc debug examples ipv6 libressl gnutls +ssl"
+
+RDEPEND="
+   sys-libs/zlib
+   gnutls? ( net-libs/gnutls )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl )
+   )
+"
+DEPEND="${RDEPEND}
+   app-arch/unzip
+   sys-devel/flex
+   sys-devel/bison
+"
+
+PATCHES=(
+   # Fix Pre-ISO headers
+   "${FILESDIR}/${PN}-2.7.10-fedora-install_soapcpp2_wsdl2h_aux.patch"
+
+   # enable shared libs https://bugs.gentoo.org/583398
+   "${FILESDIR}/${PN}-2.8.70-shared_libs.patch"
+
+   # Fix parallel make
+   "${FILESDIR}/${PN}-2.8.70-parallel.patch"
+)
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   # Don't include xlocale.h as it got removed in >=glibc-2.26
+   --disable-xlocale
+   $(use_enable debug)
+   $(use_enable examples samples)
+   $(usex gnutls --enable-gnutls '')
+   $(usex ipv6 --enable-ipv6 '')
+   $(usex ssl '' --disable-ssl)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+
+   # yes, we also install the license-file since
+   # it contains info about how to apply the licenses
+   dodoc *.txt
+
+   docinto html
+   dodoc changelog.md
+
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+
+   if use examples; then
+   rm -r gsoap/samples/Makefile* gsoap/samples/*/Makefile* 
gsoap/samples/*/*.o || die
+   insinto /usr/share/doc/${PF}/examples
+   doins -r gsoap/samples/*
+   fi
+
+   if use doc; then
+   docinto html
+   dodoc -r gsoap/doc/*
+   fi
+}



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

2019-01-25 Thread Lars Wendler
commit: cada2e18b8c0c15e3e1b1667d079266f0a48971b
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 12:44:41 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 12:44:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cada2e18

dev-vcs/tortoisehg: Bump to version 4.8.2

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

 dev-vcs/tortoisehg/Manifest|  1 +
 dev-vcs/tortoisehg/tortoisehg-4.8.2.ebuild | 79 ++
 2 files changed, 80 insertions(+)

diff --git a/dev-vcs/tortoisehg/Manifest b/dev-vcs/tortoisehg/Manifest
index deb0444a137..684acbd4aff 100644
--- a/dev-vcs/tortoisehg/Manifest
+++ b/dev-vcs/tortoisehg/Manifest
@@ -3,3 +3,4 @@ DIST tortoisehg-4.5.3.tar.gz 7929645 BLAKE2B 
95b867f372d636ed84eda918a707e24f4b1
 DIST tortoisehg-4.6.1.tar.gz 7947844 BLAKE2B 
68d0e8672febb9bfdca763e77cbaff8de79c2de79b61e0096c3ef7370cf9d9287a5fd65fbe3c262e13f185bcf5e384ece5d8365979bc05188e74ccfb49f43543
 SHA512 
adf5ebfc7a76843b62f66feddfde42c0f915c970a951e037f082ee4a6b393822b023f116dc650d5242838d006dc572235a4089c3805929727435588c24ded480
 DIST tortoisehg-4.7.2.tar.gz 7948303 BLAKE2B 
9439b86cfd004aa78fc39941cee005b3fe7fcf3a7a5d5dab4c0e0ac12477338000f07105fd7ee6c67def731f406313280acb6af7d5f1d70c51331d7339b21038
 SHA512 
d4d3c2bb097d12f69594d25c0029bf347f6aee7e4eb3fdecf3d49f3c679b2376410a87733bb5e29ffdef2c6837e47f7af18121cb5b14ccef22f27a55ebfe
 DIST tortoisehg-4.8.1.tar.gz 7950273 BLAKE2B 
91babad30d7fc34d6115babe86a6cf3a2a8afde73719bfec7220633f7824f953f3b6f6128a0f2956c0cafa568e3b12a4fd92d4a955f3b729c47a375c90ed500f
 SHA512 
6ee1efe504265a7a43cae88d6fe25777ffb9109f4b01056e6248b6df1a0214a6f9eacc3121c458e6e0ea051dc56faf48acb2bda73f6e89fc3f686026fa0528b2
+DIST tortoisehg-4.8.2.tar.gz 8961094 BLAKE2B 
3230ccd1f5fbfe44e1a656c5942592023d392816972663030df4d7c604dbea79a757b1695e60c450637d74aa53e0a821fd1e159ee9f1560ea6e48c766fd13dcb
 SHA512 
46357dd982bdb1ecde419b63ae845f60523769e1be8145e883fcd6928008bac63a4c206423e764d4e6723049bd7ebad5fcd8027fa11beea485287fe3e74be566

diff --git a/dev-vcs/tortoisehg/tortoisehg-4.8.2.ebuild 
b/dev-vcs/tortoisehg/tortoisehg-4.8.2.ebuild
new file mode 100644
index 000..c13880f7663
--- /dev/null
+++ b/dev-vcs/tortoisehg/tortoisehg-4.8.2.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 )
+
+inherit desktop distutils-r1
+
+if [[ ${PV} != ** ]]; then
+   KEYWORDS="~amd64 ~x86"
+   SRC_URI="https://www.bitbucket.org/${PN}/targz/downloads/${P}.tar.gz;
+   HG_DEPEND=">=dev-vcs/mercurial-4.7 https://bitbucket.org/tortoisehg/thg;
+   EHG_REVISION="stable"
+   HG_DEPEND="dev-vcs/mercurial"
+fi
+
+DESCRIPTION="Set of graphical tools for Mercurial"
+HOMEPAGE="https://tortoisehg.bitbucket.io/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc"
+
+RDEPEND="${HG_DEPEND}
+   dev-python/iniparse[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/PyQt5[network,svg,${PYTHON_USEDEP}]
+   >=dev-python/qscintilla-python-2.9.4:=[qt5(+),${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   doc? ( >=dev-python/sphinx-1.0.3 )"
+
+# Workaround race condition in build_qt
+DISTUTILS_IN_SOURCE_BUILD=1
+
+python_prepare_all() {
+   if [[ ${L10N+set} ]]; then
+   cd i18n/tortoisehg || die
+   local x y keep
+   for x in *.po; do
+   keep=false
+   for y in ${L10N}; do
+   if [[ ${y} == ${x%.po}* ]]; then
+   keep=true
+   break
+   fi
+   done
+   ${keep} || rm "${x}" || die
+   done
+   cd "${S}" || die
+   fi
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   use doc && emake -C doc html
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   dodoc doc/ReadMe*.txt doc/TODO contrib/mergetools.rc
+   if use doc ; then
+   dohtml -r doc/build/html/
+   fi
+   newicon -s scalable icons/scalable/apps/thg.svg thg_logo.svg
+   domenu contrib/thg.desktop
+
+   # Remove file that collides with >=mercurial-4.0 (bug #599266).
+   rm 
"${ED%/}"/usr/$(get_libdir)/${EPYTHON}/site-packages/hgext3rd/__init__.py \
+   || die
+}
+
+pkg_postinst() {
+   elog "When startup of ${PN} fails with an API version mismatch error"
+   elog "between dev-python/sip and dev-python/PyQt5 please rebuild"
+   elog "dev-python/qscintilla-python."
+}



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

2019-01-25 Thread Lars Wendler
commit: be155f5d636b7ec9d827f9fc1f9b6425568648ec
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 13:03:32 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 13:03:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be155f5d

sys-libs/freeipmi: Bump to version 1.6.3

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

 sys-libs/freeipmi/Manifest  |  1 +
 sys-libs/freeipmi/freeipmi-1.6.3.ebuild | 91 +
 2 files changed, 92 insertions(+)

diff --git a/sys-libs/freeipmi/Manifest b/sys-libs/freeipmi/Manifest
index 9d5a11391e6..cc6723d1ade 100644
--- a/sys-libs/freeipmi/Manifest
+++ b/sys-libs/freeipmi/Manifest
@@ -2,3 +2,4 @@ DIST freeipmi-1.4.8.tar.gz 3185068 BLAKE2B 
4133a7cdb5f66a28c07e965e6842c9d5931ed
 DIST freeipmi-1.5.7.tar.gz 3321187 BLAKE2B 
c6f7e9c4e0a03ce1d50972fee99741ec00a8f5beb0323d61d9217b3773eed33cb04e7bb92e1f293cb39c8012872babdc4774e6d81cf808615b8b283510e1e67c
 SHA512 
a4d39d11d4e4b9635c272ee3a197729ac61c3e1c909c202498fb480c41289116eb933cd716fe2e0b5aa6dc258751ee204892bfb009398b6d5c2c65ee1cc58544
 DIST freeipmi-1.6.1.tar.gz 3398508 BLAKE2B 
48c7cd791a635a1d82cc6304c8080aa2f88415c33a8dabf80a844305de5d21ef3bf20fd236c5a56d3a761fdadc1449b8750728465263828b157f93ba6080ad87
 SHA512 
f8ee5b3b59c0ccffeb52717a134cb8c149e42f3f66ea20420e4efbdbdc79d527e52e6d20b2a75a4406bc8c2190f368f83d8d36cef611eeeabd58ff7bf95380e5
 DIST freeipmi-1.6.2.tar.gz 3399236 BLAKE2B 
aedbfc785c1ec68418b9cfa79873d1b39a9591bfc5536a52c699c68558626c60aa11d29297252aa5fd2911fd47b88ab7010b8e72054431005f38a70268966bed
 SHA512 
5c3f0b3f0632ad89a49a69aae28420c6ec342c9924aff5a8b6c0ccc1dc2f26f8c68906fbd1bc00f0f102dc50690596bb9e8c3443cdcbf93dabb91a7529d87ee8
+DIST freeipmi-1.6.3.tar.gz 3414736 BLAKE2B 
8ae8d3744c98c5264c449da4cdd3335e36372dbef45d53e8329203bbb3bf39433f67393c2f0009a98e7c5e6afa52f461c8873c3e4fe9189f5750a539b8c9
 SHA512 
473dc26fe22e5d801cb640d5e99ded715e22e8c65d21632145e6711a24ffd60e09a842194d4cc87ad3f506f4b5456be393d87baf726d2479a34f6fc8644eedd7

diff --git a/sys-libs/freeipmi/freeipmi-1.6.3.ebuild 
b/sys-libs/freeipmi/freeipmi-1.6.3.ebuild
new file mode 100644
index 000..d15762658c9
--- /dev/null
+++ b/sys-libs/freeipmi/freeipmi-1.6.3.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+AT_M4DIR="config"
+
+DESCRIPTION="Provides Remote-Console and System Management Software as per 
IPMI v1.5/2.0"
+HOMEPAGE="https://www.gnu.org/software/freeipmi/;
+
+MY_P="${P/_/.}"
+S="${WORKDIR}"/${MY_P}
+[[ ${MY_P} == *.beta* ]] && ALPHA="-alpha"
+SRC_URI="mirror://gnu${ALPHA}/${PN}/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"
+IUSE="debug nagios"
+
+RDEPEND="dev-libs/libgcrypt:0="
+DEPEND="${RDEPEND}
+   virtual/os-headers"
+RDEPEND="${RDEPEND}
+   nagios? (
+   || ( net-analyzer/icinga net-analyzer/nagios )
+   dev-lang/perl
+   )
+"
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable debug)
+   --disable-static
+   --disable-init-scripts
+   --localstatedir="${EPREFIX}"/var
+   )
+
+   econf "${myeconfargs[@]}"
+}
+
+# There are no tests
+src_test() { :; }
+
+src_install() {
+   default
+
+   # freeipmi by defaults install _all_ commands to /usr/sbin, but
+   # quite a few can be run remotely as standard user, so move them
+   # in /usr/bin afterwards.
+   dodir /usr/bin
+   for file in ipmi{detect,ping,power,console}; do
+   mv "${ED}"/usr/{s,}bin/${file} || die
+
+   # The default install symlinks these commands to add a dash
+   # after the ipmi prefix; we repeat those after move for
+   # consistency.
+   rm "${ED}"/usr/sbin/${file/ipmi/ipmi-}
+   dosym ${file} /usr/bin/${file/ipmi/ipmi-}
+   done
+
+   # Install the nagios plugin in its proper place, if desired
+   if use nagios; then
+   dodir /usr/$(get_libdir)/nagios/plugins
+   mv 
"${ED}"/usr/share/doc/${PF}/contrib/nagios/nagios_ipmi_sensors.pl \
+   "${ED}"/usr/$(get_libdir)/nagios/plugins/ || die
+   fperms 0755 
/usr/$(get_libdir)/nagios/plugins/nagios_ipmi_sensors.pl
+
+   insinto /etc/icinga/conf.d
+   newins "${FILESDIR}"/freeipmi.icinga freeipmi-command.cfg
+   fi
+
+   dodoc AUTHORS ChangeLog* DISCLAIMER* NEWS README* TODO doc/*.txt
+
+   keepdir \
+   /var/cache/ipmimonitoringsdrcache \
+   /var/lib/freeipmi \
+   /var/log/ipmiconsole
+
+   # starting from version 1.2.0 the two daemons are similar enough
+   newinitd "${FILESDIR}"/bmc-watchdog.initd.4 ipmidetectd
+   newconfd "${FILESDIR}"/ipmidetectd.confd ipmidetectd
+
+   newinitd 

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

2019-01-25 Thread Lars Wendler
commit: 326ffbf4f5f46435f14bded83b04d1820fa679bb
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 13:08:17 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 13:08:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=326ffbf4

sys-libs/freeipmi: Removed old.

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

 sys-libs/freeipmi/Manifest  |  1 -
 sys-libs/freeipmi/freeipmi-1.6.1.ebuild | 91 -
 2 files changed, 92 deletions(-)

diff --git a/sys-libs/freeipmi/Manifest b/sys-libs/freeipmi/Manifest
index cc6723d1ade..69c78eba975 100644
--- a/sys-libs/freeipmi/Manifest
+++ b/sys-libs/freeipmi/Manifest
@@ -1,5 +1,4 @@
 DIST freeipmi-1.4.8.tar.gz 3185068 BLAKE2B 
4133a7cdb5f66a28c07e965e6842c9d5931edaab7c19a4d4e89f5907ffa5c3f9e753b7738141206835346d06ecb7045780fe2913682ce70153822895c4da4425
 SHA512 
3cd4acde402bbc945b007e31e7f8dad3ad4539d2cf00310e9168d7cec8024203a280c8ad91e3f08b86dfa9be536779969c5393c4523df2fe8eb904f765fcfc56
 DIST freeipmi-1.5.7.tar.gz 3321187 BLAKE2B 
c6f7e9c4e0a03ce1d50972fee99741ec00a8f5beb0323d61d9217b3773eed33cb04e7bb92e1f293cb39c8012872babdc4774e6d81cf808615b8b283510e1e67c
 SHA512 
a4d39d11d4e4b9635c272ee3a197729ac61c3e1c909c202498fb480c41289116eb933cd716fe2e0b5aa6dc258751ee204892bfb009398b6d5c2c65ee1cc58544
-DIST freeipmi-1.6.1.tar.gz 3398508 BLAKE2B 
48c7cd791a635a1d82cc6304c8080aa2f88415c33a8dabf80a844305de5d21ef3bf20fd236c5a56d3a761fdadc1449b8750728465263828b157f93ba6080ad87
 SHA512 
f8ee5b3b59c0ccffeb52717a134cb8c149e42f3f66ea20420e4efbdbdc79d527e52e6d20b2a75a4406bc8c2190f368f83d8d36cef611eeeabd58ff7bf95380e5
 DIST freeipmi-1.6.2.tar.gz 3399236 BLAKE2B 
aedbfc785c1ec68418b9cfa79873d1b39a9591bfc5536a52c699c68558626c60aa11d29297252aa5fd2911fd47b88ab7010b8e72054431005f38a70268966bed
 SHA512 
5c3f0b3f0632ad89a49a69aae28420c6ec342c9924aff5a8b6c0ccc1dc2f26f8c68906fbd1bc00f0f102dc50690596bb9e8c3443cdcbf93dabb91a7529d87ee8
 DIST freeipmi-1.6.3.tar.gz 3414736 BLAKE2B 
8ae8d3744c98c5264c449da4cdd3335e36372dbef45d53e8329203bbb3bf39433f67393c2f0009a98e7c5e6afa52f461c8873c3e4fe9189f5750a539b8c9
 SHA512 
473dc26fe22e5d801cb640d5e99ded715e22e8c65d21632145e6711a24ffd60e09a842194d4cc87ad3f506f4b5456be393d87baf726d2479a34f6fc8644eedd7

diff --git a/sys-libs/freeipmi/freeipmi-1.6.1.ebuild 
b/sys-libs/freeipmi/freeipmi-1.6.1.ebuild
deleted file mode 100644
index 44c0af38ab6..000
--- a/sys-libs/freeipmi/freeipmi-1.6.1.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-AT_M4DIR="config"
-
-inherit eutils multilib
-
-DESCRIPTION="Provides Remote-Console and System Management Software as per 
IPMI v1.5/2.0"
-HOMEPAGE="https://www.gnu.org/software/freeipmi/;
-
-MY_P="${P/_/.}"
-S="${WORKDIR}"/${MY_P}
-[[ ${MY_P} == *.beta* ]] && ALPHA="-alpha"
-SRC_URI="mirror://gnu${ALPHA}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
-IUSE="debug nagios"
-
-RDEPEND="dev-libs/libgcrypt:0"
-DEPEND="${RDEPEND}
-   virtual/os-headers"
-RDEPEND="${RDEPEND}
-   nagios? (
-   || ( net-analyzer/icinga net-analyzer/nagios )
-   dev-lang/perl
-   )
-"
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable debug)
-   --disable-static
-   --disable-init-scripts
-   --localstatedir=/var
-   )
-
-   econf "${myeconfargs[@]}"
-}
-
-# There are no tests
-src_test() { :; }
-
-src_install() {
-   default
-
-   # freeipmi by defaults install _all_ commands to /usr/sbin, but
-   # quite a few can be run remotely as standard user, so move them
-   # in /usr/bin afterwards.
-   dodir /usr/bin
-   for file in ipmi{detect,ping,power,console}; do
-   mv "${D}"/usr/{s,}bin/${file} || die
-
-   # The default install symlinks these commands to add a dash
-   # after the ipmi prefix; we repeat those after move for
-   # consistency.
-   rm "${D}"/usr/sbin/${file/ipmi/ipmi-}
-   dosym ${file} /usr/bin/${file/ipmi/ipmi-}
-   done
-
-   # Install the nagios plugin in its proper place, if desired
-   if use nagios; then
-   dodir /usr/$(get_libdir)/nagios/plugins
-   mv 
"${D}"/usr/share/doc/${PF}/contrib/nagios/nagios_ipmi_sensors.pl \
-   "${D}"/usr/$(get_libdir)/nagios/plugins/ || die
-   fperms 0755 
/usr/$(get_libdir)/nagios/plugins/nagios_ipmi_sensors.pl
-
-   insinto /etc/icinga/conf.d
-   newins "${FILESDIR}"/freeipmi.icinga freeipmi-command.cfg
-   fi
-
-   dodoc AUTHORS ChangeLog* DISCLAIMER* NEWS README* TODO doc/*.txt
-
-   keepdir \
-   /var/cache/ipmimonitoringsdrcache \
-   /var/lib/freeipmi \
-   

[gentoo-commits] proj/musl:master commit in: sys-devel/gcc/

2019-01-25 Thread Anthony G. Basile
commit: dfec99ac43db43f272ce24e7521265b45e8413ae
Author: stefson  yahoo  de>
AuthorDate: Wed Jan 23 21:18:13 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jan 25 12:37:02 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=dfec99ac

sys-devel/gcc: sync gcc-8.2.0 patchlevels with tree

Signed-off-by: Anthony G. Basile  gentoo.org>

 sys-devel/gcc/Manifest | 4 ++--
 sys-devel/gcc/{gcc-8.2.0-r2.ebuild => gcc-8.2.0-r5.ebuild} | 2 +-
 sys-devel/gcc/{gcc-8.2.0-r4.ebuild => gcc-8.2.0-r6.ebuild} | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index ac5372a..8b1771c 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -5,6 +5,6 @@ DIST gcc-6.4.0.tar.xz 76156220 BLAKE2B 
2018c338b28ea644cdd1b327cb0dfe7ee9aa20103
 DIST gcc-7.3.0-patches-1.4.tar.bz2 8238 BLAKE2B 
72a5dcb046558c8f5c3a75040fe24ce1106c43af7510d6febf667b4377cb9caea5ebe9e1287af90e4ebfffa3f3f22ca85f533acf57c2e2d896f92adc1659b9f5
 SHA512 
24ed0d82240426efb111bbf48913b96fdc824ae3aa5a653298a726ebe64a40791f484229bbab9cc58f73d658e0b4b83ccd13081cfbea6e1673ef1d076cca3b33
 DIST gcc-7.3.0-patches-1.8.tar.bz2 14435 BLAKE2B 
3e5c1abad56ccd6e0aa7739cb7cd651ec07ef9bf25be554343f1fa0444f251de41bde5fe6f8bb9e85e3f7a5cf8b2b83515647d93d62f338fa7843581fcaff2f8
 SHA512 
4d9d76b3d47f1af4f23cae15278d165b22065a3d1512323d1e31b5e0cb47e4654733dc43fa11906a3bd18e827621c9a5ec62b73563f8e5ead663c29f7d0d7345
 DIST gcc-7.3.0.tar.xz 62462388 BLAKE2B 
dc8f132b21bd0543c3d9dd17557038aafe65675aa73c540954234a3c972b4c31c939149bd50183d072ab6c8d16919e19daeaaffd619ce2ccd62dbdf9a5bb3302
 SHA512 
ad41a7e4584e40e92cdf860bc0288500fbaf5dfb7e8c3fcabe9eba809c87bcfa85b46c19c19921b0cdf6d05483faede8287bb9ea120c0d1559449a70e602c8d4
-DIST gcc-8.2.0-patches-1.2.tar.bz2 11419 BLAKE2B 
3d7a274ee42da5b73a3430c5043d38ae39cf27e9e642555c2e53a5c0ca3223b2a002cbc46c2d43c28ad1d5e40c9846019036868d91e22975e09351116ab62280
 SHA512 
dae9a9c0bb93ad35812d403ebba7aa2bb923b5b90ae66c68e34144e0e88466b78ac757ec3337a29118e8deeb5d945d6609829f9fd7c2cb8d133762333e599408
-DIST gcc-8.2.0-patches-1.5.tar.bz2 17012 BLAKE2B 
a6a09d316cdb008a5c3cd745bfb7730e8f6080c423712f9fdcc66f35aa060e81ba5959bb1997026eae9f0d52c0046797972de3194b2b79757353f4337367e934
 SHA512 
0e1da1f5eb9d6edd18822601865df112db2891517696316bf9d21ebd00b08b6432aef41d190c76d5b686c3504e140f47bfe6fc4a5a685e1f960ec0c7a2d4b889
+DIST gcc-8.2.0-patches-1.6.tar.bz2 17138 BLAKE2B 
edbeba9c41972836de072955c0db51406603aaf0dbb5f84ac1c5d8d2d61a8df6d725356655b69e3678950a0dc6dacc1bc2bf56f3620d685fe5c32045b3893f96
 SHA512 
32e7bddb5ec288def1e5c79d58023d90e29d77e83b70e3f21a22f4da78061cc49184d92c43807bdfd56a5067cbb9a8cfbfcb514016662aa1a24d791c7bd87b6b
+DIST gcc-8.2.0-patches-1.7.tar.bz2 18166 BLAKE2B 
2aff918d253d76c9b7d76b2d82e85c42f2ab8717e73831965b3a0fcc92b1ceacd7aa0b433dd0c180ad16906cfe059c020b256d01271ef95a6e56b08d41f4acfe
 SHA512 
5110b610a4c9116ecd91490f66e570c09217c6b4d18bf46af5e1a51ed043df188ce313bdae6ba670b8800842387c98c1b83b7e1e0c396cbce71e6726d81f589c
 DIST gcc-8.2.0.tar.xz 63460876 BLAKE2B 
c5372b0bdfcd2729577dca287b294623b78c583491998404eb307768c573618bdaaedb7d9ae0e39ba41a62a14b9525dff0e3083285754b7f5bb9987ecf635185
 SHA512 
64898a165f67e136d802a92e7633bf1b06c85266027e52127ea025bf5fc2291b5e858288aac0bdba246e6cdf7c6ec88bc8e0e7f3f6f1985f4297710cafde56ed

diff --git a/sys-devel/gcc/gcc-8.2.0-r2.ebuild 
b/sys-devel/gcc/gcc-8.2.0-r5.ebuild
similarity index 97%
rename from sys-devel/gcc/gcc-8.2.0-r2.ebuild
rename to sys-devel/gcc/gcc-8.2.0-r5.ebuild
index 35564be..79f2c9c 100644
--- a/sys-devel/gcc/gcc-8.2.0-r2.ebuild
+++ b/sys-devel/gcc/gcc-8.2.0-r5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="5"
 
-PATCH_VER="1.2"
+PATCH_VER="1.6"
 #UCLIBC_VER="1.0"
 
 inherit toolchain

diff --git a/sys-devel/gcc/gcc-8.2.0-r4.ebuild 
b/sys-devel/gcc/gcc-8.2.0-r6.ebuild
similarity index 97%
rename from sys-devel/gcc/gcc-8.2.0-r4.ebuild
rename to sys-devel/gcc/gcc-8.2.0-r6.ebuild
index aca35c1..ecee255 100644
--- a/sys-devel/gcc/gcc-8.2.0-r4.ebuild
+++ b/sys-devel/gcc/gcc-8.2.0-r6.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="5"
 
-PATCH_VER="1.5"
+PATCH_VER="1.7"
 #UCLIBC_VER="1.0"
 
 inherit toolchain



[gentoo-commits] proj/musl:master commit in: sys-devel/gcc/

2019-01-25 Thread Anthony G. Basile
commit: 8b8ce2b70d7431007a590794155fa708513a5926
Author: stefson  yahoo  de>
AuthorDate: Wed Jan 23 21:18:53 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jan 25 12:37:07 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=8b8ce2b7

sys-devel/gcc: revbump to gcc-7.4.0

Signed-off-by: Anthony G. Basile  gentoo.org>

 sys-devel/gcc/Manifest |  2 ++
 sys-devel/gcc/gcc-7.4.0.ebuild | 31 +++
 2 files changed, 33 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 8b1771c..46a3e6c 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -5,6 +5,8 @@ DIST gcc-6.4.0.tar.xz 76156220 BLAKE2B 
2018c338b28ea644cdd1b327cb0dfe7ee9aa20103
 DIST gcc-7.3.0-patches-1.4.tar.bz2 8238 BLAKE2B 
72a5dcb046558c8f5c3a75040fe24ce1106c43af7510d6febf667b4377cb9caea5ebe9e1287af90e4ebfffa3f3f22ca85f533acf57c2e2d896f92adc1659b9f5
 SHA512 
24ed0d82240426efb111bbf48913b96fdc824ae3aa5a653298a726ebe64a40791f484229bbab9cc58f73d658e0b4b83ccd13081cfbea6e1673ef1d076cca3b33
 DIST gcc-7.3.0-patches-1.8.tar.bz2 14435 BLAKE2B 
3e5c1abad56ccd6e0aa7739cb7cd651ec07ef9bf25be554343f1fa0444f251de41bde5fe6f8bb9e85e3f7a5cf8b2b83515647d93d62f338fa7843581fcaff2f8
 SHA512 
4d9d76b3d47f1af4f23cae15278d165b22065a3d1512323d1e31b5e0cb47e4654733dc43fa11906a3bd18e827621c9a5ec62b73563f8e5ead663c29f7d0d7345
 DIST gcc-7.3.0.tar.xz 62462388 BLAKE2B 
dc8f132b21bd0543c3d9dd17557038aafe65675aa73c540954234a3c972b4c31c939149bd50183d072ab6c8d16919e19daeaaffd619ce2ccd62dbdf9a5bb3302
 SHA512 
ad41a7e4584e40e92cdf860bc0288500fbaf5dfb7e8c3fcabe9eba809c87bcfa85b46c19c19921b0cdf6d05483faede8287bb9ea120c0d1559449a70e602c8d4
+DIST gcc-7.4.0-patches-1.1.tar.bz2 8778 BLAKE2B 
52b02b3c619b99912ee254599788abebe3963cf85e49b56166069318e340a8e271d767e82798e6062fc2a042a86a88da66ab95f2d9e42933ff17688d616a903f
 SHA512 
02ec2eb2460e24cf46f7a04ca3b80ca120719389a54a740070e991d9c96b6fd55d1fa04eb4249fd3043edc9c0f6519b5babcce76036cd0146183512aaae2d573
+DIST gcc-7.4.0.tar.xz 62601888 BLAKE2B 
df91ec680d5389736d3a37a2d85cf2e12fbe87b642fdf4b332e67a043e00944aca00243cc6709f86abd92115cb5a78502146636395571d1ea4899531e15d5d0e
 SHA512 
8864d8e4b97c2e1a4f17422f6e68120172ebefeab97b1757734f7185ca68a6b9a89011c6833c03fa454c17b0ac35b15e1d284881e6971035948ac6100f3aa45e
 DIST gcc-8.2.0-patches-1.6.tar.bz2 17138 BLAKE2B 
edbeba9c41972836de072955c0db51406603aaf0dbb5f84ac1c5d8d2d61a8df6d725356655b69e3678950a0dc6dacc1bc2bf56f3620d685fe5c32045b3893f96
 SHA512 
32e7bddb5ec288def1e5c79d58023d90e29d77e83b70e3f21a22f4da78061cc49184d92c43807bdfd56a5067cbb9a8cfbfcb514016662aa1a24d791c7bd87b6b
 DIST gcc-8.2.0-patches-1.7.tar.bz2 18166 BLAKE2B 
2aff918d253d76c9b7d76b2d82e85c42f2ab8717e73831965b3a0fcc92b1ceacd7aa0b433dd0c180ad16906cfe059c020b256d01271ef95a6e56b08d41f4acfe
 SHA512 
5110b610a4c9116ecd91490f66e570c09217c6b4d18bf46af5e1a51ed043df188ce313bdae6ba670b8800842387c98c1b83b7e1e0c396cbce71e6726d81f589c
 DIST gcc-8.2.0.tar.xz 63460876 BLAKE2B 
c5372b0bdfcd2729577dca287b294623b78c583491998404eb307768c573618bdaaedb7d9ae0e39ba41a62a14b9525dff0e3083285754b7f5bb9987ecf635185
 SHA512 
64898a165f67e136d802a92e7633bf1b06c85266027e52127ea025bf5fc2291b5e858288aac0bdba246e6cdf7c6ec88bc8e0e7f3f6f1985f4297710cafde56ed

diff --git a/sys-devel/gcc/gcc-7.4.0.ebuild b/sys-devel/gcc/gcc-7.4.0.ebuild
new file mode 100644
index 000..8410c02
--- /dev/null
+++ b/sys-devel/gcc/gcc-7.4.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+PATCH_VER="1.1"
+#UCLIBC_VER="1.0"
+
+inherit epatch toolchain
+
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   elibc_glibc? ( >=sys-libs/glibc-2.13 )
+   >=${CATEGORY}/binutils-2.20"
+
+if [[ ${CATEGORY} != cross-* ]] ; then
+   PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.13 )"
+fi
+
+src_prepare() {
+   toolchain_src_prepare
+
+   epatch "${FILESDIR}"/gcc-7.2.0-pr69728.patch
+
+   if use elibc_musl || [[ ${CATEGORY} = cross-*-musl* ]]; then
+   epatch "${FILESDIR}"/6.3.0/cpu_indicator.patch
+   epatch "${FILESDIR}"/7.1.0/posix_memalign.patch
+   fi
+}



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

2019-01-25 Thread Tony Vroon
commit: 37e822bd95701e0fca10c2cd7c3e8c68d4fbfd39
Author: Tony Vroon  gentoo  org>
AuthorDate: Fri Jan 25 12:02:42 2019 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jan 25 12:02:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37e822bd

net-misc/exabgp: Work around awkward upstream tarball filename

As per Mikle "zlogene" Kolyada, we cannot allow the upstream
tarball name to persist in the tree as it would cause distfile
collisions.
Bumping revision, belt & braces.

Closes: https://bugs.gentoo.org/542012
Signed-Off-By: Tony Vroon  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-misc/exabgp/Manifest  | 2 +-
 net-misc/exabgp/{exabgp-3.4.26.ebuild => exabgp-3.4.26-r1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/exabgp/Manifest b/net-misc/exabgp/Manifest
index dbc9fe05e45..68f404a8fd6 100644
--- a/net-misc/exabgp/Manifest
+++ b/net-misc/exabgp/Manifest
@@ -1,2 +1,2 @@
-DIST 3.4.26.tar.gz 544456 BLAKE2B 
75f62ce8a68588f711e86208f00cc6de9ae51a5c82f833b91459bc05974c8eff06fec080823adfecea7b75a43caa3310f6395bd22ab4e6a696f230787bbaae23
 SHA512 
6cfcc8a40e1e05dfa76df46d8b5e13ce85e73f078d6ab4d2e23dd85035c1ed52bbbde81602ea7572841e6e20d7d7183a7e968599f9e8314e1b89e3a6341f
 DIST exabgp-3.2.17.tar.gz 596373 BLAKE2B 
410b77af542160334d32e3e3ea54b25f45c990c56fe2dbef0714576eb9e728cebe6d1463c0f22b1240aaf8e99ccabc5f7334cd6c2b3c77426c94b2c048c8783c
 SHA512 
69dbff75caf287e9e0f6ab3707a2bbd576b0b4c8a8c318217cf88c8a1c417d47915b038bc7d64be3bbce9771caa550275703e5543fb5799afc7149dc9f054416
+DIST exabgp-3.4.26.tar.gz 544456 BLAKE2B 
75f62ce8a68588f711e86208f00cc6de9ae51a5c82f833b91459bc05974c8eff06fec080823adfecea7b75a43caa3310f6395bd22ab4e6a696f230787bbaae23
 SHA512 
6cfcc8a40e1e05dfa76df46d8b5e13ce85e73f078d6ab4d2e23dd85035c1ed52bbbde81602ea7572841e6e20d7d7183a7e968599f9e8314e1b89e3a6341f

diff --git a/net-misc/exabgp/exabgp-3.4.26.ebuild 
b/net-misc/exabgp/exabgp-3.4.26-r1.ebuild
similarity index 95%
rename from net-misc/exabgp/exabgp-3.4.26.ebuild
rename to net-misc/exabgp/exabgp-3.4.26-r1.ebuild
index 16361f516bf..c0a9b4043db 100644
--- a/net-misc/exabgp/exabgp-3.4.26.ebuild
+++ b/net-misc/exabgp/exabgp-3.4.26-r1.ebuild
@@ -8,7 +8,7 @@ inherit distutils-r1
 
 DESCRIPTION="The BGP swiss army knife of networking"
 HOMEPAGE="https://github.com/Exa-Networks/exabgp;
-SRC_URI="https://github.com/Exa-Networks/${PN}/archive/${PV}.tar.gz;
+SRC_URI="https://github.com/Exa-Networks/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: app-shells/zsh/

2019-01-25 Thread Lars Wendler
commit: c6ea09a784f9b55aa233f77a796537e277f71553
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 09:49:59 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 10:27:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6ea09a7

app-shells/zsh: Synced live ebuild.

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

 app-shells/zsh/zsh-.ebuild | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/app-shells/zsh/zsh-.ebuild b/app-shells/zsh/zsh-.ebuild
index 6b7bbf5c1e4..a0de20264a8 100644
--- a/app-shells/zsh/zsh-.ebuild
+++ b/app-shells/zsh/zsh-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,11 @@ else
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 ~sparc64-solaris ~x64-solaris 
~x86-solaris"
SRC_URI="https://www.zsh.org/pub/${P}.tar.xz
https://www.zsh.org/pub/old/${P}.tar.xz
-   doc? ( https://www.zsh.org/pub/${P}-doc.tar.xz )"
+   mirror://sourceforge/${PN}/${P}.tar.xz
+   doc? (
+   https://www.zsh.org/pub/${P}-doc.tar.xz
+   mirror://sourceforge/${PN}/${P}-doc.tar.xz
+   )"
 fi
 
 DESCRIPTION="UNIX Shell similar to the Korn shell"



[gentoo-commits] repo/gentoo:master commit in: app-shells/zsh/

2019-01-25 Thread Lars Wendler
commit: ce85b6403f8d92867aa5885d63f3c5a5b7b3ec7a
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jan 25 09:49:15 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jan 25 10:27:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce85b640

app-shells/zsh: Bump to version 5.7

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

 app-shells/zsh/Manifest   |   2 +
 app-shells/zsh/zsh-5.7.ebuild | 216 ++
 2 files changed, 218 insertions(+)

diff --git a/app-shells/zsh/Manifest b/app-shells/zsh/Manifest
index 909b7a8e97c..382379183ed 100644
--- a/app-shells/zsh/Manifest
+++ b/app-shells/zsh/Manifest
@@ -1,2 +1,4 @@
 DIST zsh-5.6.2-doc.tar.xz 3198932 BLAKE2B 
7e701bb12e0114b7d9847caad1146fa3d538f8f6d859a765037660fb18341f1c79002811a42ec795e41eb2bbe899e12d4bcd055ea5c66e7b73bd488bdf8bbb55
 SHA512 
5102314e2857b032c6e6b4b715c261970b2f0c28663aff99fb87f7bb6c3971f88f8e8892ed349793570beae3fb68ff7923c82e99a3c1bb485e4639f01caaad4a
 DIST zsh-5.6.2.tar.xz 3077368 BLAKE2B 
8c6ce22436f9f51eff809c779efad02f4a0730b4431630ab305abc9f1ef722698f7c565d0aa421b0d94c21f2c830f9d529709fd62a4205be1a20acf0f94a845a
 SHA512 
f0a49e41b55eb478692ab5471d7c9828956b7e96bc82944202b0ef1c49a889b21a0e7682aa5f59fd0054ebfd866c2244c8a622e7aa46c13038af5c226c48a3a2
+DIST zsh-5.7-doc.tar.xz 3062428 BLAKE2B 
1ee818fd3625c3c96add6fb8f0ccb42dd05eeb33b4f4513e4e436974f835465fdb9dd4092c652bcda24762bc39307946e14c4969e03038ae43f77c24871a5449
 SHA512 
4b5f256ed39c0594daf2fdb2f995c60944c70556438b986fcf6f4e40dbfdc58e70eb65691c841d5dbb973a20b30255abe55ed140482b7afd446e1911c4efd395
+DIST zsh-5.7.tar.xz 3124708 BLAKE2B 
6b3822d3bb647aaf1072b9d499dbe9a65dc6cec0b83fb7fb09050e26bcc71fc0fb2846a1b754f9f206b602632add39e52465c1092f131f9000a149dbd2b469de
 SHA512 
cfef5604d6ff30aeb081ed2a2660c861027c0a90169231cdb6b19093ffa6d63946be7b1fde527769e60e5b14bb6853b590bf4a207b63d6ec66fffd30d9a94958

diff --git a/app-shells/zsh/zsh-5.7.ebuild b/app-shells/zsh/zsh-5.7.ebuild
new file mode 100644
index 000..a0de20264a8
--- /dev/null
+++ b/app-shells/zsh/zsh-5.7.ebuild
@@ -0,0 +1,216 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic prefix
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3 autotools
+   EGIT_REPO_URI="https://git.code.sf.net/p/zsh/code;
+else
+   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 ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+   SRC_URI="https://www.zsh.org/pub/${P}.tar.xz
+   https://www.zsh.org/pub/old/${P}.tar.xz
+   mirror://sourceforge/${PN}/${P}.tar.xz
+   doc? (
+   https://www.zsh.org/pub/${P}-doc.tar.xz
+   mirror://sourceforge/${PN}/${P}-doc.tar.xz
+   )"
+fi
+
+DESCRIPTION="UNIX Shell similar to the Korn shell"
+HOMEPAGE="https://www.zsh.org/;
+
+LICENSE="ZSH gdbm? ( GPL-2 )"
+SLOT="0"
+IUSE="caps debug doc examples gdbm maildir pcre static unicode"
+
+RDEPEND="
+   >=sys-libs/ncurses-5.1:0=
+   static? ( >=sys-libs/ncurses-5.7-r4:0=[static-libs] )
+   caps? ( sys-libs/libcap )
+   pcre? (
+   >=dev-libs/libpcre-3.9
+   static? ( >=dev-libs/libpcre-3.9[static-libs] )
+   )
+   gdbm? ( sys-libs/gdbm:= )
+   ! Doc/zshall.1 || die
+
+   # add openrc specific options for init.d completion
+   eapply "${FILESDIR}"/${PN}-5.3-init.d-gentoo.diff
+   fi
+
+   eapply_user
+
+   if [[ ${PV} == * ]] ; then
+   sed -i "/^VERSION=/s/=.*/=${PV}/" Config/version.mk || die
+   eautoreconf
+   fi
+}
+
+src_configure() {
+   local myconf=(
+   --bindir="${EPREFIX}"/bin
+   --libdir="${EPREFIX}"/usr/$(get_libdir)
+   --enable-etcdir="${EPREFIX}"/etc/zsh
+   --enable-runhelpdir="${EPREFIX}"/usr/share/zsh/${PV%_*}/help
+   --enable-fndir="${EPREFIX}"/usr/share/zsh/${PV%_*}/functions
+   --enable-site-fndir="${EPREFIX}"/usr/share/zsh/site-functions
+   --enable-function-subdirs
+   --with-tcsetpgrp
+   $(use_enable maildir maildir-support)
+   $(use_enable pcre)
+   $(use_enable caps cap)
+   $(use_enable unicode multibyte)
+   $(use_enable gdbm)
+   )
+
+   if use static ; then
+   myconf+=( --disable-dynamic )
+   append-ldflags -static
+   fi
+   if use debug ; then
+   myconf+=(
+   --enable-zsh-debug
+   --enable-zsh-mem-debug
+   --enable-zsh-mem-warning
+   

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

2019-01-25 Thread Miroslav Šulc
commit: 9f7d05c70054fd252ec1f5e8b4a415ae2162ed27
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Jan 25 10:16:16 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jan 25 10:16:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f7d05c7

dev-java/oracle-jre-bin-1.8.0.192: removed

Bug: https://bugs.gentoo.org/676134
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/oracle-jre-bin/Manifest   |   2 -
 .../oracle-jre-bin/oracle-jre-bin-1.8.0.192.ebuild | 220 -
 2 files changed, 222 deletions(-)

diff --git a/dev-java/oracle-jre-bin/Manifest b/dev-java/oracle-jre-bin/Manifest
index 403b9df901f..73f543b631c 100644
--- a/dev-java/oracle-jre-bin/Manifest
+++ b/dev-java/oracle-jre-bin/Manifest
@@ -1,4 +1,2 @@
-DIST jre-8u192-linux-i586.tar.gz 87804679 BLAKE2B 
bb1dea51f0d45dcd3aabc82668790ee274c83f2e3c596d836d7b57c971ff6535881849cce5757132fed1b537a4a9677fbbb0b8b003d423d26ee72cb71047428f
 SHA512 
5c749f358aa5b55513765eeb52dd2e0d3cb2b3223cc93739aa36445af8c6a3171a01cab673e106312e816c0a3b584a8a1be4aed1e2662e86b6d318d86a135485
-DIST jre-8u192-linux-x64.tar.gz 84597342 BLAKE2B 
655db641df8349109e2944838f16f37ea208772580f0753e664a0642649745c123b2a781497ca3b9028f55c0bd2816cb5746d7d1d04cc83bb536ca0b467a4fc0
 SHA512 
d786f9e032bc286f3d4f361c382b6606c7462240b191d04606ca5ed9e59e3d7703cbaf1d57693c6763d00374c76c99cdb2f58c0bc372ef5c14c6304d556b4c8a
 DIST jre-8u202-linux-i586.tar.gz 90106000 BLAKE2B 
e756771caf8567c58870a267aafc9d48e98f06da1373a33bfdf40cc564c8df1645df38ad2f6951bc34d703bb0f4646b52ebf008dfc470231b4e93078c7730862
 SHA512 
573e32dc715d280084e71999e71a2875a488cbbba2b42c5107c55669c8842dd4ca6c6f42034b5e0b705c22a7a1d9799b456211034a6f351bc9d8e8fd803e0ad3
 DIST jre-8u202-linux-x64.tar.gz 86883826 BLAKE2B 
8e69f4e8d6ce7d556ce7c8f30f5c71a50997103f729935269581f0af054fd1dc769b7099ad3a35d4baf41c8a6bdd76b049ae4908714701b196c4ce57ff61b39b
 SHA512 
2460cde88162b00f5ca5600084f5f6b8720b8158869f5f5832fe886a5a6e839eb48398e9e3df47c45be257d9f6915e682d294d560b09e097ff610f09a76b1760

diff --git a/dev-java/oracle-jre-bin/oracle-jre-bin-1.8.0.192.ebuild 
b/dev-java/oracle-jre-bin/oracle-jre-bin-1.8.0.192.ebuild
deleted file mode 100644
index be2fb2010c2..000
--- a/dev-java/oracle-jre-bin/oracle-jre-bin-1.8.0.192.ebuild
+++ /dev/null
@@ -1,220 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit desktop gnome2-utils java-vm-2 prefix versionator
-
-KEYWORDS="-* amd64 x86"
-
-if [[ "$(get_version_component_range 4)" == 0 ]] ; then
-   S_PV="$(get_version_component_range 1-3)"
-else
-   MY_PV_EXT="u$(get_version_component_range 4)"
-   S_PV="$(get_version_component_range 1-4)"
-fi
-
-MY_PV="$(get_version_component_range 2)${MY_PV_EXT}"
-
-declare -A ARCH_FILES
-ARCH_FILES[amd64]="jre-${MY_PV}-linux-x64.tar.gz"
-ARCH_FILES[x86]="jre-${MY_PV}-linux-i586.tar.gz"
-
-for keyword in ${KEYWORDS//-\*} ; do
-   SRC_URI+=" ${keyword#\~}? ( ${ARCH_FILES[${keyword#\~}]} )"
-done
-
-DESCRIPTION="Oracle's Java SE Runtime Environment"
-HOMEPAGE="http://www.oracle.com/technetwork/java/javase/;
-LICENSE="Oracle-BCLA-JavaSE"
-SLOT="1.8"
-IUSE="alsa commercial cups +fontconfig headless-awt javafx jce nsplugin 
selinux"
-RESTRICT="fetch preserve-libs strip"
-QA_PREBUILT="*"
-
-# NOTES:
-#
-# * cups is dlopened.
-#
-# * libpng is also dlopened but only by libsplashscreen, which isn't
-#   important, so we can exclude that.
-#
-# * We still need to work out the exact AWT and JavaFX dependencies
-#   under MacOS. It doesn't appear to use many, if any, of the
-#   dependencies below.
-#
-RDEPEND="!x64-macos? (
-   !headless-awt? (
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXi
-   x11-libs/libXrender
-   x11-libs/libXtst
-   )
-   javafx? (
-   dev-libs/glib:2
-   dev-libs/libxml2:2
-   dev-libs/libxslt
-   media-libs/freetype:2
-   x11-libs/cairo
-   x11-libs/gtk+:2
-   x11-libs/libX11
-   x11-libs/libXtst
-   x11-libs/libXxf86vm
-   x11-libs/pango
-   virtual/opengl
-   )
-   )
-   alsa? ( media-libs/alsa-lib )
-   cups? ( net-print/cups )
-   fontconfig? ( media-libs/fontconfig:1.0 )
-   !prefix? ( sys-libs/glibc:* )
-   selinux? ( sec-policy/selinux-java )"
-
-DEPEND="app-arch/zip"
-
-S="${WORKDIR}/jre$(replace_version_separator 3 _  ${S_PV})"
-
-pkg_nofetch() {
-   einfo "Please download ${ARCH_FILES[${ARCH}]} and move it to"
-   einfo "your distfiles directory:"
-   einfo
-   einfo "  

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

2019-01-25 Thread Miroslav Šulc
commit: 31e007615d000ba33355438ed8dd9513f2660503
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Fri Jan 25 10:14:01 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jan 25 10:16:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31e00761

dev-java/oracle-jdk-bin-1.8.0.192: removed

Bug: https://bugs.gentoo.org/676134
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/oracle-jdk-bin/Manifest   |  14 -
 .../oracle-jdk-bin/oracle-jdk-bin-1.8.0.192.ebuild | 297 -
 2 files changed, 311 deletions(-)

diff --git a/dev-java/oracle-jdk-bin/Manifest b/dev-java/oracle-jdk-bin/Manifest
index 333667ee476..9295c539e8b 100644
--- a/dev-java/oracle-jdk-bin/Manifest
+++ b/dev-java/oracle-jdk-bin/Manifest
@@ -1,18 +1,4 @@
 DIST jdk-11.0.2_linux-x64_bin.tar.gz 179640645 BLAKE2B 
eec4537f9c1ca88d65a65b1b827afbe49b2a020f1ba9056fe4a2efa31bcf1e0f134eede8bb0f51669f1978c79cef9a1b7eba6c93eaa2bb79e1847713ccc1cd57
 SHA512 
f6cd77cdad20107d8920bcf403ec01a7fa6d6eb9c020cc59077bb07633ce824562bec8b261ff1a3ea0e3946f6e4f5db8f704b9700410967c10c583967629270d
-DIST jdk-8u192-linux-arm32-vfp-hflt-demos.tar.gz 9508019 BLAKE2B 
6eabd83f98f1497c2c73cfb5972985ca879efba002f474dca9a0f4d30e3986ccae7886aac074f2f6ffc4100cc8c96514ccae0bc60af845028e8e89b301fbfcbb
 SHA512 
8b5e79d55e2c88127b53f9c52fb0e7033b1023daddcb59b43c991baf46db7276a5fabf8b39516b097967aeed354e4d7399c459a5784448cd4f6f4872b1d758a0
-DIST jdk-8u192-linux-arm32-vfp-hflt.tar.gz 76544503 BLAKE2B 
fdafcddd9e277a9421e9218e2b5de83792f9533cfc3b3e99afe8ee94776ae573fc97ed73702dbf7e96461741e7939b111ac8dcdfba9bdf28d2b6951acad8479f
 SHA512 
ccf6c6fbae9453c86b53255e13a3eaf3cc1ab999480244c8a38236c7d29ca46e9f1a0ce9e9fd02295a0f98eac97f3ac5231909fab655c0eda0f24a2d42c7c4ed
-DIST jdk-8u192-linux-arm64-vfp-hflt-demos.tar.gz 9506333 BLAKE2B 
1928bab95e3877fd9f5c28a7ac988c37613f5ae74abca9646c8fca1d9ebb2c4d984783699411263537bd957b0268647e1dd1d62036a15f6dc7d918e4582ccebd
 SHA512 
cee7a8de81fddafb26ca4b64f6c01052c51524e28e281863b17536200068de0e68ae66494e9e0d86cc6bad1dd01aafed281a9690e3e1c0a05d890a3e32850e5f
-DIST jdk-8u192-linux-arm64-vfp-hflt.tar.gz 73317460 BLAKE2B 
5be8ac7829ecf7a95c7ee60436abf5ca318003d11a4c3ad9ba75306983c934bd3edbce2e54fbfd472a8a6ac6d7b24be57ef87f14c7af2ad4d5acb2c74ce167c9
 SHA512 
8471afed26e5ded356bbd39b95d8f1ebd3a5147ae7cc4a94c90efa9bf8baff23dc8f4b10f2973307a1f48d3722604603c3e4d708bdf21c4f5aacfb0cac088b7d
-DIST jdk-8u192-linux-i586-demos.tar.gz 58483041 BLAKE2B 
e333914701dcf4ae57506f12846b19de91b323a63cb11f1bf840d4f3dc1b620ff141b0b7c5e2a21e4d2e2e3141c1e9a9ea6ccb01d0a5bc97d51053e9ac4e5f9e
 SHA512 
d9b2e4b2f1052c56dad3dc0c715ab51e3cd68eeb8e6911a4f15683fec98873bf510b36541c8725263bfca7fcba65e4cb6c8bb47e4bc7e67d660b06b7e0cf0fdf
-DIST jdk-8u192-linux-i586.tar.gz 194717101 BLAKE2B 
73f59da39bb5b9c2bcedec5e112b4f7ad16df144a8ef0d030f157903eb3a51bbd7a7f262da5fb478c4441658c2a0a30ff96e497d72c24a143e2118e4b3ae6b96
 SHA512 
a4bd3bfa9dbd9d64d270c75b23c985ccc5bc2a706dedcf5007b6cd027249acf4e1a0379e470baf9cb2b83f8b3b26a3720320171b4ea286c38d9c1318195257d1
-DIST jdk-8u192-linux-x64-demos.tar.gz 58589568 BLAKE2B 
3a025954ed0b9a174f3bd642fe3a650562e200a549e6dfde4b34e01df0137a24a8d89b30b3bc9a2f7f189b4a41236b3678d54a7012a7c3555e168ed258a2bb3e
 SHA512 
48e1b112c91e7b81579625b29050a48f3237b18b15a278750ed4436a3eb9869392af091599e39f1d492eb3b92cdf932a8c772040539f9e10f0d263b1afafd1c4
-DIST jdk-8u192-linux-x64.tar.gz 191757099 BLAKE2B 
42135add35e5acf2ebe539a5667828f41e88de1dbb79d39228353d5cb5597899b6a15cfc5637317706f209888120af5d044cf3a074bbea960f425226e8e4002c
 SHA512 
96ce0662ab474b33d28fa14edada040bd6b0a17b9374741bb132f7e9cc21b6f5f03cf8926bdef5e44669a9ffa593f887ab82d42b7b701eeca74a173f70dfdedb
-DIST jdk-8u192-macosx-x64.dmg 257868944 BLAKE2B 
86e915111aabf53fddc46cdea4d7a1b6a9425e1238d156888e5d2f2784a685873c7a388cf066099d8bf5d164ff7d14380c3b9c329a48accb4d300542d95a67a5
 SHA512 
db059e7c8ec627dabbad46a388c0a36ec5591ae9513e9f82db9a0bd154c6001e97a526234c5f435ead867702986995dc8b866d925b63dfe2ff6d4d6394f10db9
-DIST jdk-8u192-macosx-x86_64-demos.zip 58763903 BLAKE2B 
b38c05db314582c5015ee7253473aa8bf81bb098e27e952153b139186390047b9357a5134ed1574cd0923d9fea4fafd265248ed65179c4288b4d57c0ae86044a
 SHA512 
c55ac8338b494cc20cf521163b500856d8583f6873100b30d1d7eb388789c28907f76f8504bfb1ccd657094280a1c26b26d5c0122bd95de6b30f3e72e300428c
-DIST jdk-8u192-solaris-sparcv9-demos.tar.gz 8867227 BLAKE2B 
76d8a98475eaa3ae2c0209d11640dbbd32aa677f8db40fcc87a9a4c86dd249fbf6bbc3ae9b84ae268468b8082dedd23374b1cae41438f45f7bf42038b2c2a5b9
 SHA512 
d5ccf03d693ab8ed10aac35b2bbd6823524e915a32e953dd162352cfa1bad7b5fe0db5cd1dcb44d79ab454bc2566d1ca6ba145ab4b28dba1a6c6a001198f3f91
-DIST jdk-8u192-solaris-sparcv9.tar.gz 98913870 BLAKE2B 
a27a3dc4a6e68972919417f769aeab5716410ed4f793f46886a081799fd4f8b0c2de6f30d7a0a65e08fe9dafe35c83e33f2c26d5e71e9161b6ef40ff3e05d8b4
 SHA512 

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

2019-01-25 Thread David Seifert
commit: 6fa7d7a549df89350764056b5dd98cbe8fb9b137
Author: Stefan Strogin  gmail  com>
AuthorDate: Fri Nov  9 18:41:46 2018 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Jan 25 10:12:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fa7d7a5

media-libs/libopusenc: bump to 0.2.1

Closes: https://bugs.gentoo.org/670771
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Stefan Strogin  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10379
Signed-off-by: David Seifert  gentoo.org>

 media-libs/libopusenc/Manifest|  1 +
 media-libs/libopusenc/libopusenc-0.2.1.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/media-libs/libopusenc/Manifest b/media-libs/libopusenc/Manifest
index 292742288e5..5b587f947a4 100644
--- a/media-libs/libopusenc/Manifest
+++ b/media-libs/libopusenc/Manifest
@@ -1 +1,2 @@
+DIST libopusenc-0.2.1.tar.gz 388071 BLAKE2B 
de3a69aeb6bb955352e097e41b12cf0c627ce5278687124d00996f52ccf5e8e39277e7c345bb26e75dd7d29b6a70f50396fa5a157913e0906a18acd007b1621b
 SHA512 
adf30cacea9ac2e5889a40147f53943a1bec5279c5ff3a9b09de8ca52727a6cbaeecd338417fc5856e337ae183c85b0d366d14ec4ec329de12d50709a6f6507a
 DIST libopusenc-0.2.tar.gz 388027 BLAKE2B 
5822d09ec56ce9dc0182241e7182b71c9c21def5645a2ef3472af380b25af1b1f8a08311c2cfb8bacdfde845dff81ee426401f1ab098b6598e41e664ccaf9c34
 SHA512 
82b9a60bf6fa0c8bc485b221bc633456245f8909875fb9e86876076bc37857d53a366bbc66f2e1e331adddcf12c4d5a29f0047e21d0fae2f8bd8a3199bd6f78f

diff --git a/media-libs/libopusenc/libopusenc-0.2.1.ebuild 
b/media-libs/libopusenc/libopusenc-0.2.1.ebuild
new file mode 100644
index 000..eaa29c50951
--- /dev/null
+++ b/media-libs/libopusenc/libopusenc-0.2.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="High-level API for encoding .opus files"
+HOMEPAGE="https://www.opus-codec.org/;
+SRC_URI="https://archive.mozilla.org/pub/opus/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="doc"
+
+BDEPEND="virtual/pkgconfig"
+RDEPEND=">=media-libs/opus-1.1:="
+DEPEND="
+   ${RDEPEND}
+   doc? ( app-doc/doxygen[dot] )"
+
+src_configure() {
+   econf \
+   --enable-shared \
+   --disable-static \
+   $(use_enable doc)
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: x11-terms/guake/

2019-01-25 Thread Mikle Kolyada
commit: 19c2f67e8d95607fd81419b9c57437e8566ca194
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 10:13:01 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 10:13:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19c2f67e

x11-terms/guake: amd64 stable wrt bug #667204

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

 x11-terms/guake/guake-3.3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/guake/guake-3.3.2.ebuild 
b/x11-terms/guake/guake-3.3.2.ebuild
index ab4c70893f9..58cb9477d9e 100644
--- a/x11-terms/guake/guake-3.3.2.ebuild
+++ b/x11-terms/guake/guake-3.3.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/G/${PN^}/${P^}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="utempter"
 
 RDEPEND="



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

2019-01-25 Thread Mikle Kolyada
commit: e6044fab2a7d3e15445c4f4f19a6beba4757d4c2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 10:09:50 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 10:09:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6044fab

dev-util/vulkan-tools: amd64 stable wrt bug #676006

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

 dev-util/vulkan-tools/vulkan-tools-1.1.92.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/vulkan-tools/vulkan-tools-1.1.92.0.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-1.1.92.0.ebuild
index d3d1c9c446f..a23ba1cb8bf 100644
--- a/dev-util/vulkan-tools/vulkan-tools-1.1.92.0.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-1.1.92.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ if [[ "${PV}" == "" ]]; then
inherit git-r3
 else
EGIT_COMMIT="9bbdd552f0fd62741aa1f1e02ab3eafc45cf3c1e"
-   KEYWORDS="~amd64"
+   KEYWORDS="amd64"

SRC_URI="https://github.com/KhronosGroup/Vulkan-Tools/archive/${EGIT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/Vulkan-Tools-${EGIT_COMMIT}"
 fi



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/eigen/

2019-01-25 Thread Mikle Kolyada
commit: c0ea4f1dab942f1b9e46a572c6edba622e351344
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 10:07:41 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 10:07:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0ea4f1d

dev-cpp/eigen: amd64 stable wrt bug #675662

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

 dev-cpp/eigen/eigen-3.3.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/eigen/eigen-3.3.7.ebuild b/dev-cpp/eigen/eigen-3.3.7.ebuild
index 4e4ce83d41a..a3682df6671 100644
--- a/dev-cpp/eigen/eigen-3.3.7.ebuild
+++ b/dev-cpp/eigen/eigen-3.3.7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://bitbucket.org/eigen/eigen/get/${PV}.tar.bz2 
-> ${P}.tar.bz2"
 
 LICENSE="MPL-2.0"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="altivec c++11 cuda debug doc neon openmp test" #zvector vsx
 RESTRICT="!test? ( test )"
 



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

2019-01-25 Thread Mikle Kolyada
commit: bc5505a605fa7eca5a3fb7218ee1f3d1b8f64225
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 10:04:45 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 10:04:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc5505a6

dev-java/oracle-jre-bin: amd64 stable wrt bug #676134

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

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

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



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

2019-01-25 Thread Mikle Kolyada
commit: 006c3eaddb1e64c7209c2e002eea01c730b62163
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 10:04:56 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 10:04:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=006c3ead

dev-java/oracle-jdk-bin: amd64 stable wrt bug #676134

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

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

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



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

2019-01-25 Thread Mikle Kolyada
commit: 9d3908b1a709ae06c35ca7022c93c7dd0b881c8c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 09:58:11 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 09:58:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d3908b1

net-dns/bind: amd64 stable wrt bug #657654

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

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

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



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

2019-01-25 Thread Tony Vroon
commit: 49def8e9809e623517522e76d58211fa52bc7ef4
Author: Tony Vroon  gentoo  org>
AuthorDate: Fri Jan 25 09:57:04 2019 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jan 25 09:57:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49def8e9

dev-python/asciitree: New addition.

This is a dependency for the irrtree package.

Signed-Off-By: Tony Vroon  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/asciitree/Manifest   |  1 +
 dev-python/asciitree/asciitree-0.3.3.ebuild | 18 ++
 dev-python/asciitree/metadata.xml   | 12 
 3 files changed, 31 insertions(+)

diff --git a/dev-python/asciitree/Manifest b/dev-python/asciitree/Manifest
new file mode 100644
index 000..31f5b6da8bc
--- /dev/null
+++ b/dev-python/asciitree/Manifest
@@ -0,0 +1 @@
+DIST asciitree-0.3.3.tar.gz 3951 BLAKE2B 
3ba081424ba94cc8afd9f688e78c3f05d99b01746023ce359285ec9389c1a8f4d471cbb16e2b66ac271a859379de0f195ad7072f016878b5c444bcfe4d2445c5
 SHA512 
7b61134299ff1cb907cbe74811dc1cab09d6aafdefad599e67025b85d8e35ffc8538524a8c6bb683009f7ff7f7f946250e81afac3fd3b7f3b3b0cd8e528b494f

diff --git a/dev-python/asciitree/asciitree-0.3.3.ebuild 
b/dev-python/asciitree/asciitree-0.3.3.ebuild
new file mode 100644
index 000..2941009afab
--- /dev/null
+++ b/dev-python/asciitree/asciitree-0.3.3.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 )
+inherit distutils-r1
+
+DESCRIPTION="Fast erasure codec for the command-line, C, Python, or Haskell"
+HOMEPAGE="https://pypi.org/project/asciitree/;
+SRC_URI="mirror://pypi/a/asciitree/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"

diff --git a/dev-python/asciitree/metadata.xml 
b/dev-python/asciitree/metadata.xml
new file mode 100644
index 000..34e95c6c075
--- /dev/null
+++ b/dev-python/asciitree/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   chain...@gentoo.org
+   Tony Vroon
+   
+
+   
+   asciitree
+   
+



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

2019-01-25 Thread Jeroen Roovers
commit: 118d887b15725d61036376d16db689d176ae8de0
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Jan 25 09:37:12 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Jan 25 09:37:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=118d887b

app-arch/dpkg: Old

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

 app-arch/dpkg/Manifest   |  1 -
 app-arch/dpkg/dpkg-1.19.2.ebuild | 91 
 2 files changed, 92 deletions(-)

diff --git a/app-arch/dpkg/Manifest b/app-arch/dpkg/Manifest
index a37be1dc100..e124bfe1541 100644
--- a/app-arch/dpkg/Manifest
+++ b/app-arch/dpkg/Manifest
@@ -1,4 +1,3 @@
 DIST dpkg_1.19.0.5.tar.xz 4557428 BLAKE2B 
99c31705bfad1cfa024366c788264f4e747a7143f87c581730797975303c1054003e41fd65ecf80df1dc053ba87c0e8449ec574ddcb158228b41ae57a23db18f
 SHA512 
60d7198ffe6ea759c30ad82143b3107d41ce59224b853cb5a7beb79af0de6ba6a69414c365e6b3555a0a9c60e3cf9b543a3a448d80a734be38ccecb77ae963a9
-DIST dpkg_1.19.2.tar.xz 4607868 BLAKE2B 
4c191fb3dbe64bb3a515dadbb5f81bb32a0ae3b7267603978f7aee34f6baa02bacb818600759fe4bac0c3470ce2d6409c778a408833af796fe65f27fe910713f
 SHA512 
244a6ef6aad935aee649503d6ce3238e34f4fae3f57ca79e99c1890140d913c29255bc9d0e90b50e96d2cf44ab0e44d6c3675a7bed306213fe5fe31710324cf7
 DIST dpkg_1.19.3.tar.xz 4644312 BLAKE2B 
42a906c5603cc36e53591d0f33c54930fcb0f0848b53cd1908ff5c018f3a4ab823c71408982247f61e0810f223124853fc181994853f39786563ddbf6228ba54
 SHA512 
6a53b68bc51b9c700618ad379d4f314f0058479d068ae7bb842388e57b6393f87c4990c1d71ed085e76314d0e29295a5344a0ea78f62ef8657df2d53124bbe8f
 DIST dpkg_1.19.4.tar.xz 4645784 BLAKE2B 
2c8a76686ece182b7c87b1fcf3ed81a7bbc9616475e2003847fe9a35b574a814873b183ab5984bb66f725a8e92f3a000bf9250f3f9d1e6b338f6620b3011a067
 SHA512 
e07538bac0645bf7d49b30f4fb3b59602f304f346437faaea6b4bffbeb59f05471c5e834d6c7e98c869e5466a66c39a0d9e9c05da1cc52a10b5fc60875be218e

diff --git a/app-arch/dpkg/dpkg-1.19.2.ebuild b/app-arch/dpkg/dpkg-1.19.2.ebuild
deleted file mode 100644
index ad8a5cb3b4f..000
--- a/app-arch/dpkg/dpkg-1.19.2.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils multilib autotools toolchain-funcs
-
-DESCRIPTION="Package maintenance system for Debian"
-HOMEPAGE="https://packages.qa.debian.org/dpkg;
-SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
-IUSE="+bzip2 libmd +lzma nls selinux static-libs test unicode 
+update-alternatives +zlib"
-
-RDEPEND="
-   >=dev-lang/perl-5.14.2:=
-   bzip2? ( app-arch/bzip2 )
-   libmd? ( app-crypt/libmd )
-   lzma? ( app-arch/xz-utils )
-   nls? ( virtual/libintl )
-   selinux? ( sys-libs/libselinux )
-   zlib? ( >=sys-libs/zlib-1.1.4 )
-"
-DEPEND="
-   ${RDEPEND}
-   app-arch/xz-utils
-   sys-devel/flex
-   virtual/pkgconfig
-   nls? (
-   app-text/po4a
-   >=sys-devel/gettext-0.18.2
-   )
-   test? (
-   dev-perl/IO-String
-   dev-perl/Test-Pod
-   virtual/perl-Test-Harness
-   )
-"
-DOCS=(
-   ChangeLog
-   THANKS
-   TODO
-)
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.18.12-dpkg_buildpackage-test.patch
-   "${FILESDIR}"/${PN}-1.18.12-flags.patch
-   "${FILESDIR}"/${PN}-1.18.12-rsyncable.patch
-)
-
-src_prepare() {
-   use nls && strip-linguas -i po
-
-   default
-
-   eautoreconf
-}
-
-src_configure() {
-   tc-export CC
-   econf \
-   $(use_enable nls) \
-   $(use_enable static-libs static) \
-   $(use_enable unicode) \
-   $(use_enable update-alternatives) \
-   $(use_with bzip2 libbz2) \
-   $(use_with libmd) \
-   $(use_with lzma liblzma) \
-   $(use_with selinux libselinux) \
-   $(use_with zlib libz) \
-   --disable-compiler-warnings \
-   --disable-dselect \
-   --disable-silent-rules \
-   --disable-start-stop-daemon \
-   --localstatedir="${EPREFIX}"/var
-}
-
-src_compile() {
-   emake AR=$(tc-getAR)
-}
-
-src_install() {
-   default
-
-   keepdir \
-   /usr/$(get_libdir)/db/methods/{mnt,floppy,disk} \
-   /var/lib/dpkg/{alternatives,info,parts,updates}
-#  /usr/$(get_libdir)/db/{alternatives,info,parts,updates} \
-
-   prune_libtool_files
-}



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

2019-01-25 Thread Jeroen Roovers
commit: df87d2f8ab4701c8a26d03bf1e6325cf0559b46c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Jan 25 09:36:23 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Jan 25 09:37:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df87d2f8

app-arch/dpkg: Version 1.19.4

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

 app-arch/dpkg/Manifest   |  1 +
 app-arch/dpkg/dpkg-1.19.4.ebuild | 91 
 2 files changed, 92 insertions(+)

diff --git a/app-arch/dpkg/Manifest b/app-arch/dpkg/Manifest
index 43ce29e80bf..a37be1dc100 100644
--- a/app-arch/dpkg/Manifest
+++ b/app-arch/dpkg/Manifest
@@ -1,3 +1,4 @@
 DIST dpkg_1.19.0.5.tar.xz 4557428 BLAKE2B 
99c31705bfad1cfa024366c788264f4e747a7143f87c581730797975303c1054003e41fd65ecf80df1dc053ba87c0e8449ec574ddcb158228b41ae57a23db18f
 SHA512 
60d7198ffe6ea759c30ad82143b3107d41ce59224b853cb5a7beb79af0de6ba6a69414c365e6b3555a0a9c60e3cf9b543a3a448d80a734be38ccecb77ae963a9
 DIST dpkg_1.19.2.tar.xz 4607868 BLAKE2B 
4c191fb3dbe64bb3a515dadbb5f81bb32a0ae3b7267603978f7aee34f6baa02bacb818600759fe4bac0c3470ce2d6409c778a408833af796fe65f27fe910713f
 SHA512 
244a6ef6aad935aee649503d6ce3238e34f4fae3f57ca79e99c1890140d913c29255bc9d0e90b50e96d2cf44ab0e44d6c3675a7bed306213fe5fe31710324cf7
 DIST dpkg_1.19.3.tar.xz 4644312 BLAKE2B 
42a906c5603cc36e53591d0f33c54930fcb0f0848b53cd1908ff5c018f3a4ab823c71408982247f61e0810f223124853fc181994853f39786563ddbf6228ba54
 SHA512 
6a53b68bc51b9c700618ad379d4f314f0058479d068ae7bb842388e57b6393f87c4990c1d71ed085e76314d0e29295a5344a0ea78f62ef8657df2d53124bbe8f
+DIST dpkg_1.19.4.tar.xz 4645784 BLAKE2B 
2c8a76686ece182b7c87b1fcf3ed81a7bbc9616475e2003847fe9a35b574a814873b183ab5984bb66f725a8e92f3a000bf9250f3f9d1e6b338f6620b3011a067
 SHA512 
e07538bac0645bf7d49b30f4fb3b59602f304f346437faaea6b4bffbeb59f05471c5e834d6c7e98c869e5466a66c39a0d9e9c05da1cc52a10b5fc60875be218e

diff --git a/app-arch/dpkg/dpkg-1.19.4.ebuild b/app-arch/dpkg/dpkg-1.19.4.ebuild
new file mode 100644
index 000..dce613b7e3f
--- /dev/null
+++ b/app-arch/dpkg/dpkg-1.19.4.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils multilib autotools toolchain-funcs
+
+DESCRIPTION="Package maintenance system for Debian"
+HOMEPAGE="https://packages.qa.debian.org/dpkg;
+SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.xz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
+IUSE="+bzip2 libmd +lzma nls selinux static-libs test unicode 
+update-alternatives +zlib"
+
+RDEPEND="
+   >=dev-lang/perl-5.14.2:=
+   bzip2? ( app-arch/bzip2 )
+   libmd? ( app-crypt/libmd )
+   lzma? ( app-arch/xz-utils )
+   nls? ( virtual/libintl )
+   selinux? ( sys-libs/libselinux )
+   zlib? ( >=sys-libs/zlib-1.1.4 )
+"
+DEPEND="
+   ${RDEPEND}
+   app-arch/xz-utils
+   sys-devel/flex
+   virtual/pkgconfig
+   nls? (
+   app-text/po4a
+   >=sys-devel/gettext-0.18.2
+   )
+   test? (
+   dev-perl/IO-String
+   dev-perl/Test-Pod
+   virtual/perl-Test-Harness
+   )
+"
+DOCS=(
+   ChangeLog
+   THANKS
+   TODO
+)
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.18.12-dpkg_buildpackage-test.patch
+   "${FILESDIR}"/${PN}-1.18.12-flags.patch
+   "${FILESDIR}"/${PN}-1.18.12-rsyncable.patch
+)
+
+src_prepare() {
+   use nls && strip-linguas -i po
+
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   tc-export CC
+   econf \
+   $(use_enable nls) \
+   $(use_enable static-libs static) \
+   $(use_enable unicode) \
+   $(use_enable update-alternatives) \
+   $(use_with bzip2 libbz2) \
+   $(use_with libmd) \
+   $(use_with lzma liblzma) \
+   $(use_with selinux libselinux) \
+   $(use_with zlib libz) \
+   --disable-compiler-warnings \
+   --disable-dselect \
+   --disable-silent-rules \
+   --disable-start-stop-daemon \
+   --localstatedir="${EPREFIX}"/var
+}
+
+src_compile() {
+   emake AR=$(tc-getAR)
+}
+
+src_install() {
+   default
+
+   keepdir \
+   /usr/$(get_libdir)/db/methods/{mnt,floppy,disk} \
+   /var/lib/dpkg/{alternatives,info,parts,updates}
+#  /usr/$(get_libdir)/db/{alternatives,info,parts,updates} \
+
+   prune_libtool_files
+}



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

2019-01-25 Thread Tony Vroon
commit: 0e3f5038684f55212a24f5014e159ba2b80818be
Author: Tony Vroon  gentoo  org>
AuthorDate: Fri Jan 25 09:29:34 2019 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jan 25 09:29:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e3f5038

net-misc/exabgp: 3.4.26 version bump

As reported by Toralf Förster, early versions of this package
incorrectly installed netlink into the global namespace.
Thanks to Zac Medico for reviving the bug report and confirming
that the issue was fixed upstream.

Closes: https://bugs.gentoo.org/542012
Signed-Off-By: Tony Vroon  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-misc/exabgp/Manifest |  1 +
 net-misc/exabgp/exabgp-3.4.26.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/net-misc/exabgp/Manifest b/net-misc/exabgp/Manifest
index af39d95a501..dbc9fe05e45 100644
--- a/net-misc/exabgp/Manifest
+++ b/net-misc/exabgp/Manifest
@@ -1 +1,2 @@
+DIST 3.4.26.tar.gz 544456 BLAKE2B 
75f62ce8a68588f711e86208f00cc6de9ae51a5c82f833b91459bc05974c8eff06fec080823adfecea7b75a43caa3310f6395bd22ab4e6a696f230787bbaae23
 SHA512 
6cfcc8a40e1e05dfa76df46d8b5e13ce85e73f078d6ab4d2e23dd85035c1ed52bbbde81602ea7572841e6e20d7d7183a7e968599f9e8314e1b89e3a6341f
 DIST exabgp-3.2.17.tar.gz 596373 BLAKE2B 
410b77af542160334d32e3e3ea54b25f45c990c56fe2dbef0714576eb9e728cebe6d1463c0f22b1240aaf8e99ccabc5f7334cd6c2b3c77426c94b2c048c8783c
 SHA512 
69dbff75caf287e9e0f6ab3707a2bbd576b0b4c8a8c318217cf88c8a1c417d47915b038bc7d64be3bbce9771caa550275703e5543fb5799afc7149dc9f054416

diff --git a/net-misc/exabgp/exabgp-3.4.26.ebuild 
b/net-misc/exabgp/exabgp-3.4.26.ebuild
new file mode 100644
index 000..16361f516bf
--- /dev/null
+++ b/net-misc/exabgp/exabgp-3.4.26.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="The BGP swiss army knife of networking"
+HOMEPAGE="https://github.com/Exa-Networks/exabgp;
+SRC_URI="https://github.com/Exa-Networks/${PN}/archive/${PV}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""



[gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/

2019-01-25 Thread Mikle Kolyada
commit: 925e72f7f73741313137f62fab1fabbd7e6c9b28
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 08:59:30 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 08:59:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=925e72f7

net-irc/iroffer-dinoex: Drop old

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

 net-irc/iroffer-dinoex/Manifest   |   1 -
 net-irc/iroffer-dinoex/iroffer-dinoex-3.29.ebuild | 119 --
 2 files changed, 120 deletions(-)

diff --git a/net-irc/iroffer-dinoex/Manifest b/net-irc/iroffer-dinoex/Manifest
index 7fb0e2de1c5..c2972b6816e 100644
--- a/net-irc/iroffer-dinoex/Manifest
+++ b/net-irc/iroffer-dinoex/Manifest
@@ -1,3 +1,2 @@
-DIST iroffer-dinoex-3.29.tar.gz 537027 BLAKE2B 
f660b5e4e837cfb56c450ee32249607375a386f9215a9a4eb34e7696c066b6c817ae956c044bbc208f69a73967df5aee9835b2a94ca70a849045ff11f37d
 SHA512 
bac4feaa0db11de3faed0beb7302cb090d3a6629a6c299bd1b4ee136bce7290f1a9fa998aab909f1fafe54f5577bed90f487d4b2592521a87d5d9ae7512eecb0
 DIST iroffer-dinoex-3.30.tar.gz 541131 BLAKE2B 
ea61113dffcd14b162153aa03c55a203d8ccd99e8f81de53a9ab8543bd91e948509281f753a8f332445eec102b6bd2b51972ff8bedb8b574b55b9325f6969269
 SHA512 
e45dc3dd901cbb73a9d59cd5a672834c7b6527864eb3385121856af562680a0f91e8846e8690fc60a6349dc4c4fc1cf190d3ac01813c6c045ef18147d61b7d4d
 DIST iroffer-dinoex-3.31.tar.gz 527712 BLAKE2B 
8e57058af9aad9537d29a15140ab59c921d2549eb9e7a2ce9145fc1c27a4307bea882927012b04fc9f0737a8853d927c79cc0f3156dfa311072c59589fe0221f
 SHA512 
677aa03a33b99d8062db077bba47fb18b2e9279243691981bbd09cb2859fcb4792e1383225b9698edb23370ce0f60667a09480644d31171e9a8234d80052dd80

diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.29.ebuild 
b/net-irc/iroffer-dinoex/iroffer-dinoex-3.29.ebuild
deleted file mode 100644
index e07c9359c4a..000
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.29.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PLOCALES="de en fr it"
-PLOCALE_BACKUP="en"
-
-inherit eutils l10n toolchain-funcs user
-
-DESCRIPTION="IRC fileserver using DCC"
-HOMEPAGE="http://iroffer.dinoex.net/;
-SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
-   http://iroffer.dinoex.net/HISTORY/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave 
ruby ssl +telnet upnp"
-
-REQUIRED_USE="
-   admin? ( http )
-   gnutls? ( ssl )
-"
-
-RDEPEND="chroot? ( dev-libs/nss )
-   curl? (
-   net-misc/curl[ssl?]
-   gnutls? ( net-misc/curl[curl_ssl_gnutls] )
-   !gnutls? ( ssl? ( net-misc/curl[curl_ssl_openssl] ) )
-   )
-   geoip? ( dev-libs/geoip )
-   gnutls? ( net-libs/gnutls )
-   ruby? ( dev-lang/ruby )
-   ssl? ( !gnutls? ( dev-libs/openssl ) )"
-
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
-   enewgroup iroffer
-   enewuser iroffer -1 -1 -1 iroffer
-}
-
-src_prepare() {
-   epatch "${FILESDIR}/${P}-config.patch"\
-  "${FILESDIR}/${PN}-Werror.patch"
-   epatch_user
-   l10n_find_plocales_changes "" 'help-admin-' '.txt'
-}
-
-do_configure() {
-   echo ./Configure $*
-   ./Configure $* || die "configure phase failed"
-}
-
-src_configure() {
-   do_configure \
-   PREFIX="${EPREFIX}/usr"\
-   $(usex debug '-profiling' '' '' '')\
-   $(usex debug '-debug' '' '' '')\
-   $(usex geoip '-geoip' '' '' '')\
-   $(usex chroot '' '-no-chroot' '' '')\
-   $(usex curl '-curl' '' '' '' )\
-   $(usex gnutls  '-tls' '' '' '' '')\
-   $(usex upnp '-upnp' '' '' '')\
-   $(usex ruby '-ruby' '' '' '')\
-   $(usex kqueue '-kqueue' '' '' '')\
-   $(usex blowfish '' '-no-blowfish' '' '')\
-   $(usex ssl '' '-no-openssl' '' '')\
-   $(usex http '' '-no-http' '' '')\
-   $(usex admin '' '-no-admin' '' '')\
-   $(usex telnet '' '-no-telnet' '' '')\
-   $(usex memsave '' '-no-memsave' '' '')
-}
-
-src_compile() {
-   # TODO: default compile targets always include chrooted target, which 
is not good
-   emake CC="$(tc-getCC)" $(l10n_get_locales)
-}
-
-myloc() {
-   emake DESTDIR="${D}" install-${1}
-
-   dodoc help-admin-${1}.txt
-   use http && dohtml doc/INSTALL-linux-${1}.html
-
-   insinto /etc/${PN}
-   case ${1} in
-   "de")
-   doins beispiel.config;;
-   "fr")
-   doins exemple.config;;
-   *)
-   doins sample.config;;
-   esac
-}
-
-src_install() {
-   l10n_for_each_locale_do myloc
-
-   dodoc README* THANKS TODO
-   doman iroffer.1 xdcc.7
-
-   newinitd "${FILESDIR}/${PN}.init" ${PN}
-   

[gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/

2019-01-25 Thread Mikle Kolyada
commit: 2331cc28e06eb5a11e51091ab04fb231c62c1c82
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 08:58:54 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 08:58:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2331cc28

net-irc/iroffer-dinoex: mark stable

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

 net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild 
b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
index d6533d41c96..b5ef681e382 100644
--- a/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
+++ b/net-irc/iroffer-dinoex/iroffer-dinoex-3.30-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ SRC_URI="http://iroffer.dinoex.net/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+admin +blowfish +chroot curl debug geoip gnutls +http kqueue +memsave 
ruby ssl +telnet upnp"
 
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: net-irc/iroffer-dinoex/, net-irc/iroffer-dinoex/files/

2019-01-25 Thread Mikle Kolyada
commit: 3b363abfd4b4423d73eddcfc2c95d77ee6ae8dd3
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 08:57:34 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 08:57:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b363abf

net-irc/iroffer-dinoex: Version bump (v3.31)

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

 net-irc/iroffer-dinoex/Manifest|   1 +
 .../files/iroffer-dinoex-3.31-config.patch | 167 +
 net-irc/iroffer-dinoex/iroffer-dinoex-3.31.ebuild  | 121 +++
 3 files changed, 289 insertions(+)

diff --git a/net-irc/iroffer-dinoex/Manifest b/net-irc/iroffer-dinoex/Manifest
index 19717b991a6..7fb0e2de1c5 100644
--- a/net-irc/iroffer-dinoex/Manifest
+++ b/net-irc/iroffer-dinoex/Manifest
@@ -1,2 +1,3 @@
 DIST iroffer-dinoex-3.29.tar.gz 537027 BLAKE2B 
f660b5e4e837cfb56c450ee32249607375a386f9215a9a4eb34e7696c066b6c817ae956c044bbc208f69a73967df5aee9835b2a94ca70a849045ff11f37d
 SHA512 
bac4feaa0db11de3faed0beb7302cb090d3a6629a6c299bd1b4ee136bce7290f1a9fa998aab909f1fafe54f5577bed90f487d4b2592521a87d5d9ae7512eecb0
 DIST iroffer-dinoex-3.30.tar.gz 541131 BLAKE2B 
ea61113dffcd14b162153aa03c55a203d8ccd99e8f81de53a9ab8543bd91e948509281f753a8f332445eec102b6bd2b51972ff8bedb8b574b55b9325f6969269
 SHA512 
e45dc3dd901cbb73a9d59cd5a672834c7b6527864eb3385121856af562680a0f91e8846e8690fc60a6349dc4c4fc1cf190d3ac01813c6c045ef18147d61b7d4d
+DIST iroffer-dinoex-3.31.tar.gz 527712 BLAKE2B 
8e57058af9aad9537d29a15140ab59c921d2549eb9e7a2ce9145fc1c27a4307bea882927012b04fc9f0737a8853d927c79cc0f3156dfa311072c59589fe0221f
 SHA512 
677aa03a33b99d8062db077bba47fb18b2e9279243691981bbd09cb2859fcb4792e1383225b9698edb23370ce0f60667a09480644d31171e9a8234d80052dd80

diff --git a/net-irc/iroffer-dinoex/files/iroffer-dinoex-3.31-config.patch 
b/net-irc/iroffer-dinoex/files/iroffer-dinoex-3.31-config.patch
new file mode 100644
index 000..d2000ddfdce
--- /dev/null
+++ b/net-irc/iroffer-dinoex/files/iroffer-dinoex-3.31-config.patch
@@ -0,0 +1,167 @@
+From 789499722508f641c7a1b6ce8857832fd9ae2c08 Mon Sep 17 00:00:00 2001
+From: Mikle Kolyada 
+Date: Fri, 25 Jan 2019 11:47:45 +0300
+Subject: [PATCH] fix config files paths
+
+---
+ beispiel.config | 12 ++--
+ exemple.config  | 12 ++--
+ sample.config   | 12 ++--
+ 3 files changed, 18 insertions(+), 18 deletions(-)
+
+diff --git a/beispiel.config b/beispiel.config
+index 90f76e8..a7f4d06 100644
+--- a/beispiel.config
 b/beispiel.config
+@@ -15,19 +15,19 @@
+ ##
+ ### - pid file -   ###
+ ### Schreibt die Prozess-ID beim Start in diese Datei  ###
+-pidfile mybot.pid
++pidfile /var/run/iroffer-dinoex/iroffer-dinoex.pid
+ 
+ ##
+ ### - log file -   ###
+ ### logfile gibt die Logdatei für den Bot an.  ###
+-logfile mybot.log
++logfile /var/log/iroffer-dinoex/mybot.log
+ 
+ ##
+ ###- log rotate -  ###
+ ### logrotate gibt den Zeitraum vor, nach dem die Logdatei gewechselt  ###
+ ### wird, mögliche Werte "none" (nie), "monthly" (monatlich),  ###
+ ### "weekly" (wöchentlich), "daily" (täglich) und 1-24 (stündlich).###
+-logrotate weekly
++logrotate none
+ 
+ ##
+ ### - expire logfiles -###
+@@ -41,14 +41,14 @@ logrotate weekly
+ ### Ist logstats aktiviert so schreit der Bot statistische Informationen   ###
+ ### in die Logdatei und meldet diese auch an einen eventuell aktiven   ###
+ ### DCC-Chat. Mögliche Werte yes (ja) und no (nein).   ###
+-logstats yes
++logstats no
+ 
+ ##
+ ### - state file - ###
+ ### Diese Datei dient als allgemeines Datenlager für die bereitgestellten  ###
+ ### Dateien und die dazugehörigen statistische Daten. Hier werden auch die ###
+ ### Beschreibungen der Pakete gespeichert. ###
+-statefile mybot.state
++statefile /var/lib/iroffer-dinoex/mybot.state
+ 
+ ##
+ ###  - old state file -###
+@@ -74,7 +74,7 @@ statefile mybot.state
+ ### als Packliste auf einer Webseite zu dienen, oder für andere Zwecke.###
+ ### Wenn xdcclistfileraw gesetzt ist, werden die IRC-Farbcode 

[gentoo-commits] repo/gentoo:master commit in: net-fs/minio/

2019-01-25 Thread Mikle Kolyada
commit: c3508d9c0ea8c6d46476b7c5b64249c5116bd95b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 08:25:36 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 08:25:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3508d9c

net-fs/minio: Version bump

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

 net-fs/minio/Manifest |  1 +
 net-fs/minio/minio-2019.01.23.23.18.58.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest
index 70b6947f399..c9b6baeb567 100644
--- a/net-fs/minio/Manifest
+++ b/net-fs/minio/Manifest
@@ -11,3 +11,4 @@ DIST minio-2018.12.19.23.46.24.tar.gz 9096254 BLAKE2B 
252c8e84e9df0f5e2f85f5f5a0
 DIST minio-2018.12.27.18.33.08.tar.gz 9102593 BLAKE2B 
40e1a014edcfe84f9310bd09b0d4e5853b3ef8e1cc7e1a0805aaf83f55320a516df0c930c78d5b7726625d9f2d521dbee534b949f31b63438ac19971f75e493c
 SHA512 
92ec8b8d1094d3b125f3522063895274e9aa0144063c4ac64a3919dfc65a6ee26e7a1bc03063f61acdb6b5b14681448f3451598939a8f17d107205091049279c
 DIST minio-2019.01.10.00.21.20.tar.gz 9272639 BLAKE2B 
e8d64c436795894ad6e20cfc5acc193598312a6c1d7e20b58a1250f0bcc4791f004afd1dfed4d0e2d506f4690290d0d29596a263853c216456555792e84da5b2
 SHA512 
fe68bbd56f131ba4e189114b45fbf2f95925cce3a11384503c67debdc9eb04cf1c034f28f792adbcca373783cf74f3f57853a6e61241a5864898e19946c31e6f
 DIST minio-2019.01.16.21.44.08.tar.gz 9284989 BLAKE2B 
f54ecdd5892375c2bc8c3f2c8dc0144ee61c4e94342e12a27d8c55e1745b74c82a480a5562274553d2a5c968fc252ec8b95d0c708405089304b63520eb10405a
 SHA512 
457c2adfe15a70c39fba8e8c7ac6dfa3dccc7265a725c932f57d4e45b5285859ce45701c8c7fa953300ad28322a46d1083f27e668ada5c3616c62337cdaf006c
+DIST minio-2019.01.23.23.18.58.tar.gz 9154650 BLAKE2B 
4dd2f34edef4b994af25b1bc83fadc5993522f9ee9e54ef620fe54b43076f0fe147fe1343375343d6cc6c47ca31f762e9a033dfc2b3de76cfd55307f6fe36912
 SHA512 
49cb40f5eaccc2dd76aeb699ce8376d9d665860f38c93748b97cbd589dfeaf4301964659a32fe20a7174be3462c6269446810b9443a1688874c95a95acf5b22e

diff --git a/net-fs/minio/minio-2019.01.23.23.18.58.ebuild 
b/net-fs/minio/minio-2019.01.23.23.18.58.ebuild
new file mode 100644
index 000..8154fe5911e
--- /dev/null
+++ b/net-fs/minio/minio-2019.01.23.23.18.58.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit user golang-build golang-vcs-snapshot eapi7-ver
+
+EGO_PN="github.com/minio/minio"
+MY_PV="$(ver_cut 1-3)T$(ver_cut 4-7)Z"
+MY_PV=${MY_PV//./-}
+EGIT_COMMIT="ce419c98352324caa4c79b159a9f840ca714c3d5"
+ARCHIVE_URI="https://${EGO_PN}/archive/RELEASE.${MY_PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~amd64-linux"
+
+DESCRIPTION="An Amazon S3 compatible object storage server"
+HOMEPAGE="https://github.com/minio/minio;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/time.Now().UTC().Format(time.RFC3339)/\"${MY_PV}\"/"\
+   -e "s/-s //"\
+   -e "/time/d"\
+   -e "s/+ commitID()/+ \"${EGIT_COMMIT}\"/"\
+   src/${EGO_PN}/buildscripts/gen-ldflags.go || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   MINIO_RELEASE="${MY_PV}"
+   go run buildscripts/gen-ldflags.go
+   GOPATH="${S}" go build --ldflags "$(go run 
buildscripts/gen-ldflags.go)" -o ${PN} || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dodoc -r README.md CONTRIBUTING.md MAINTAINERS.md docs
+   dobin minio
+   popd  || die
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   keepdir /var/{lib,log}/${PN}
+   fowners ${PN}:${PN} /var/{lib,log}/${PN}
+}



[gentoo-commits] repo/gentoo:master commit in: net-fs/mc/

2019-01-25 Thread Mikle Kolyada
commit: fdd3f3904b6cabe24f4590708e4923390c61f025
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan 25 08:23:14 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan 25 08:23:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdd3f390

net-fs/mc: Version bump

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

 net-fs/mc/Manifest  |  1 +
 net-fs/mc/mc-2019.01.24.01.40.23.ebuild | 49 +
 2 files changed, 50 insertions(+)

diff --git a/net-fs/mc/Manifest b/net-fs/mc/Manifest
index 4cf4068e10b..31080e57b85 100644
--- a/net-fs/mc/Manifest
+++ b/net-fs/mc/Manifest
@@ -8,3 +8,4 @@ DIST mc-2018.12.05.22.59.07.tar.gz 1732742 BLAKE2B 
33cf0023d3350d739567cf9d402f3
 DIST mc-2018.12.12.19.02.22.tar.gz 1734072 BLAKE2B 
23539e764308d91012ec7fde5531066f88cf654f5cb98d9424b7697610df5dd0b0257f3926fbe35370b28c96abcb82c00fe4061e6cfe8adf8a130800a2bb3bef
 SHA512 
c0f65b1e438f72716ff04e755654d021de37852f5eb2d2a16954c6b6e6356b9f9a31ce018b791e71c7deced82acb0be32c2bf4e27b4d6bd3ce9df91ecaf155cf
 DIST mc-2018.12.19.22.58.03.tar.gz 1732775 BLAKE2B 
300a514c3eca52ab9b136c1d6a01055593d40f2b207229fa9f32f2fa3b3dce30a28fd4e39dd97ca51ddf920a91d2b45ecf44e843d7de9f271896717391f7242c
 SHA512 
9fe0afbd4bb39d609b6e6e67a159997dd6b9ee43cc741282d05e9a55d4c24aa56258ad2eee08991112aa89002ac8a4c0042505b979d5ac49cb3714fd810da354
 DIST mc-2019.01.10.00.38.22.tar.gz 1791858 BLAKE2B 
ae89c935634190e347be8c2f0a3dfff12872b4eca7aa17b79b5e05d7cb9be6fe39ff7b0ccbb6ddf5851ae3ee84a89eebf289d801340519e91470b3f5c60f7c37
 SHA512 
626e5adf5a3dcda0945e5fb37394097550f2976626da50e795b389d1d78545b1a2907c9b9fded5ce26823694e7e3981a69fa18ed00ae21d5c405c69c165ae1ce
+DIST mc-2019.01.24.01.40.23.tar.gz 1791330 BLAKE2B 
a3fb0cb2cc199f4fe21c7770d58a3278d6a89a90916bd604293a5845064e337d36a5ac2e565d785a440803b6deefd84f114115a8f06dfc38d234225daa66a55e
 SHA512 
215f91a8f4f325ffb8714d92a8030c36ada5251df4b24cb1d9b82d7f8d6c0f1188dfc2fdc36b1dcf8d842a805ccba3965977908a01e39e7893e05b131eb3b9b9

diff --git a/net-fs/mc/mc-2019.01.24.01.40.23.ebuild 
b/net-fs/mc/mc-2019.01.24.01.40.23.ebuild
new file mode 100644
index 000..7a3a66e507b
--- /dev/null
+++ b/net-fs/mc/mc-2019.01.24.01.40.23.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eapi7-ver bash-completion-r1 golang-build golang-vcs-snapshot
+
+MY_PV="$(ver_cut 1-3)T$(ver_cut 4-7)Z"
+MY_PV=${MY_PV//./-}
+
+EGIT_COMMIT="c352cadd4be2c6bed64884c78d1e8a8ac6efaf3f"
+
+EGO_PN="github.com/minio/mc"
+
+DESCRIPTION="Minio client provides alternatives for ls, cat on cloud storage 
and filesystems"
+HOMEPAGE="https://github.com/minio/mc;
+SRC_URI="https://${EGO_PN}/archive/RELEASE.${MY_PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="!!app-misc/mc"
+
+src_prepare() {
+   default
+   sed -i -e "s/time.Now().UTC().Format(time.RFC3339)/\"${VERSION}\"/"\
+   -e "s/-s //"\
+   -e "/time/d"\
+   -e "s/+ commitID()/+ \"${EGIT_COMMIT}\"/"\
+   src/${EGO_PN}/buildscripts/gen-ldflags.go || die
+
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   MC_RELEASE="${MY_PV}"
+   GOPATH="${S}" go build --ldflags "$(go run 
buildscripts/gen-ldflags.go)" -o ${PN} || die
+   popd || die
+
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dodoc -r README.md CONTRIBUTING.md docs
+   dobin mc
+   newbashcomp autocomplete/bash_autocomplete ${PN}
+   popd  || die
+}