[gentoo-commits] proj/eselect-rust:master commit in: /

2019-03-10 Thread Thomas Deutschmann
commit: 99577f8e98440da176709b6e4b988b40ae42b8d1
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 11 00:42:52 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 11 04:54:36 2019 +
URL:https://gitweb.gentoo.org/proj/eselect-rust.git/commit/?id=99577f8e

Add and make use of find_missing_broken_symlinks()

dev-lang/rust or dev-lang/rust-bin install more than one binary (program),
just checking for "rustc" is not enough.

In addition, set of installed programs depends on USE flags.

This new (internal) function will check for all provided programs.

Bug: https://bugs.gentoo.org/671182
Signed-off-by: Thomas Deutschmann  gentoo.org>

 rust.eselect.in | 40 
 1 file changed, 36 insertions(+), 4 deletions(-)

diff --git a/rust.eselect.in b/rust.eselect.in
index 02f7b75..d0f3361 100644
--- a/rust.eselect.in
+++ b/rust.eselect.in
@@ -10,6 +10,28 @@ BIN_DIR="${EROOT%/}/usr/bin"
 
 inherit package-manager path-manipulation
 
+# find a list of missing or broken symlinks
+# each compiler installs a list of provided programs.
+# this function checks if a symlink for a provided program
+# is missing or broken for the current active Rust implementation
+find_missing_broken_symlinks() {
+   local -a missing_symlinks
+   local required_symlinks=( "/usr/bin/rustc" $(get_last_set_symlinks) )
+
+   for i in "${required_symlinks[@]}"; do
+   local symlink="${EROOT%/}${i}"
+
+   if [[ -L "${symlink}" && -e "${symlink}" ]]; then
+   # existing symlink
+   continue
+   else
+   missing_symlinks+=( "${symlink}" )
+   fi
+   done
+
+   echo "${missing_symlinks[@]}"
+}
+
 # find a list of installed rust compilers
 # each compiler provider should install
 # a config file named provider-$pkgname-$pkgver
@@ -219,8 +241,13 @@ do_update() {
shift
done
 
-   if [[ "${if_unset}" == "1" && -f "${BIN_DIR}/rustc" ]]; then
-   return
+   if [[ "${if_unset}" == "1" ]]; then
+   local missing_symlinks=( $(find_missing_broken_symlinks) )
+   if [[ ${#missing_symlinks[@]} -eq 0 ]]; then
+   return
+   else
+   echo "Not all symlinks set. Will switch to the most 
recent Rust compiler!"
+   fi
fi
 
local targets=( $(find_targets) )
@@ -251,8 +278,13 @@ do_unset() {
shift
done
 
-   if [[ "${if_invalid}" == "1" && -e "${BIN_DIR}/rustc" ]]; then
-   return
+   if [[ "${if_invalid}" == "1" ]]; then
+   local missing_symlinks=( $(find_missing_broken_symlinks) )
+   if [[ ${#missing_symlinks[@]} -eq 0 ]]; then
+   return
+   else
+   echo "Not all symlinks set. Will unset current 
symlinked Rust binaries!"
+   fi
fi
 
unset_version || die -q "Couldn't unset active version"



[gentoo-commits] proj/eselect-rust:master commit in: /

2019-03-10 Thread Thomas Deutschmann
commit: 5799b7ee8492860b6dfc5542d04a2d2a2e3f7d56
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Mar 10 03:33:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 11 04:18:33 2019 +
URL:https://gitweb.gentoo.org/proj/eselect-rust.git/commit/?id=5799b7ee

Use variables for common used paths

Signed-off-by: Thomas Deutschmann  gentoo.org>

 rust.eselect.in | 37 -
 1 file changed, 20 insertions(+), 17 deletions(-)

diff --git a/rust.eselect.in b/rust.eselect.in
index 96fba74..02f7b75 100644
--- a/rust.eselect.in
+++ b/rust.eselect.in
@@ -5,17 +5,20 @@ DESCRIPTION="Manage the Rust compiler versions"
 MAINTAINER="r...@gentoo.org"
 VERSION="@VERSION@"
 
+ENV_D_PATH="${EROOT%/}/etc/env.d"
+BIN_DIR="${EROOT%/}/usr/bin"
+
 inherit package-manager path-manipulation
 
 # find a list of installed rust compilers
 # each compiler provider should install
 # a config file named provider-$pkgname-$pkgver
-# in "${EROOT}"/etc/env.d/rust directory
+# in "${ENV_D_PATH}/rust" directory
 # this function prints list of $pkgname-$pkgver values
 find_targets() {
local f
local -a providers
-   for f in "${EROOT}"/etc/env.d/rust/provider-*; do
+   for f in "${ENV_D_PATH}"/rust/provider-*; do
[[ -f ${f} ]] || continue
providers=("${providers[@]}" "${f##*/provider-}")
done
@@ -33,7 +36,7 @@ get_current_target() {
local i targets=( $(find_targets) )
for (( i = 0; i < ${#targets[@]}; i++ )); do
[[ rustc-$(get_postfix ${targets[i]}) = \
-   $(basename "$(canonicalise "${EROOT}/usr/bin/rustc")") 
]] \
+   $(basename "$(canonicalise "${BIN_DIR}/rustc")") ]] \
&& echo $i && return 0
done
echo "NOT_SET"
@@ -60,7 +63,7 @@ get_symlinks_from_file() {
 
 #get last set symlinks
 get_last_set_symlinks() {
-   local symlinks=( $(get_symlinks_from_file 
"${EROOT}/etc/env.d/rust/last-set") )
+   local symlinks=( $(get_symlinks_from_file 
"${ENV_D_PATH}/rust/last-set") )
echo "${symlinks[@]}"
 }
 
@@ -76,7 +79,7 @@ get_symlinks() {
target=${targets[target]}
fi
 
-   local symlinks=( $(get_symlinks_from_file 
"${EROOT}/etc/env.d/rust/provider-${target}") )
+   local symlinks=( $(get_symlinks_from_file 
"${ENV_D_PATH}/rust/provider-${target}") )
echo "${symlinks[@]}"
 }
 
@@ -112,17 +115,17 @@ set_symlink() {
 unset_version() {
local symlinks=( $(get_last_set_symlinks) )
for i in "${symlinks[@]}"; do
-   remove_symlink "${EROOT}${i}"
+   remove_symlink "${EROOT%/}${i}"
done
-   remove_symlink "${EROOT}/usr/bin/rustc"
-   rm -f "${EROOT}/etc/env.d/rust/last-set" \
-   || die -q "rm -f ${EROOT}/etc/env.d/rust/last-set failed"
+   remove_symlink "${BIN_DIR}/rustc"
+   rm -f "${ENV_D_PATH}/rust/last-set" \
+   || die -q "rm -f ${ENV_D_PATH}/rust/last-set failed"
 }
 
 # set the rust version
 # each compiler provider should install
 # files named rustc-$postfix and rustdoc-$postfix
-# in ${EROOT}/usr/bin directory
+# in ${BIN_DIR} directory
 # $postfix is defined as the part of $pkgname-$pkgver after the first -
 # for dev-lang/rust-bin- ebuild it would be bin-
 set_version() {
@@ -135,20 +138,20 @@ set_version() {
 
target_postfix=$(get_postfix ${target})
 
-   [[ -z ${target_postfix} || ! -x 
"${EROOT}/usr/bin/rustc-${target_postfix}" ]] \
+   [[ -z ${target_postfix} || ! -x "${BIN_DIR}/rustc-${target_postfix}" ]] 
\
&& die -q "Target \"$1\" doesn't appear to be valid!"
 
unset_version
 
-   set_symlink "${EROOT}/usr/bin/rustc-${target_postfix}" 
"${EROOT}/usr/bin/rustc"
+   set_symlink "${BIN_DIR}/rustc-${target_postfix}" "${BIN_DIR}/rustc"
 
local symlinks=( $(get_symlinks ${target}) )
for i in "${symlinks[@]}"; do
-   set_symlink "${EROOT}${i}-${target_postfix}" "${EROOT}${i}"
+   set_symlink "${EROOT%/}${i}-${target_postfix}" "${EROOT%/}${i}"
done
 
-   cp "${EROOT}/etc/env.d/rust/provider-${target}" \
-  "${EROOT}/etc/env.d/rust/last-set" || \
+   cp "${ENV_D_PATH}/rust/provider-${target}" \
+  "${ENV_D_PATH}/rust/last-set" || \
die -q "symlink list copying failed"
 }
 
@@ -216,7 +219,7 @@ do_update() {
shift
done
 
-   if [[ "${if_unset}" == "1" && -f "${EROOT}"/usr/bin/rustc ]]; then
+   if [[ "${if_unset}" == "1" && -f "${BIN_DIR}/rustc" ]]; then
return
fi
 
@@ -248,7 +251,7 @@ do_unset() {
shift
done
 
-   if [[ "${if_invalid}" == "1" && -e "${EROOT}"/usr/bin/rustc ]]; then
+   if [[ "${if_invalid}" == "1" && -e "${BIN_DIR}/rustc" ]]; then
return
fi
 



[gentoo-commits] proj/eselect-rust:master commit in: src/modules/

2019-03-10 Thread Thomas Deutschmann
commit: 7997093c4ec0ab83e22900463d66df5f08c261e3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Mar  9 22:42:29 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Mar  9 22:42:29 2019 +
URL:https://gitweb.gentoo.org/proj/eselect-rust.git/commit/?id=7997093c

Update header & maintainer

 src/modules/rust.eselect | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/modules/rust.eselect b/src/modules/rust.eselect
index 79a93f0..83f4496 100644
--- a/src/modules/rust.eselect
+++ b/src/modules/rust.eselect
@@ -1,9 +1,8 @@
-# -*-eselect-*-  vim: ft=eselect
-# Copyright 2015 Gentoo Foundation
-# Distributed under the terms of the GNU GPL version 2 or later
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
 
 DESCRIPTION="Manage the Rust compiler versions"
-MAINTAINER="jauh...@gentoo.org"
+MAINTAINER="r...@gentoo.org"
 VERSION="0.3"
 
 inherit package-manager path-manipulation
@@ -255,3 +254,5 @@ do_unset() {
 
unset_version || die -q "Couldn't unset active version"
 }
+
+# vim: set ft=eselect :



[gentoo-commits] proj/eselect-rust:master commit in: /

2019-03-10 Thread Thomas Deutschmann
commit: 4a507f5d088260c117fc3836ecc66e468af4849b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Mar 10 03:18:51 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Mar 10 03:18:51 2019 +
URL:https://gitweb.gentoo.org/proj/eselect-rust.git/commit/?id=4a507f5d

Generate & add ChangeLog when creating dist target

Signed-off-by: Thomas Deutschmann  gentoo.org>

 Makefile.am | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/Makefile.am b/Makefile.am
index 144bee4..b969189 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,2 +1,20 @@
 eselectdir = $(datadir)/eselect/modules
 dist_eselect_DATA = rust.eselect
+
+dist-hook: gen-ChangeLog
+
+.PHONY: gen-ChangeLog
+gen-ChangeLog:
+   @if test -d "$(top_srcdir)/.git"; \
+   then \
+   echo "Creating ChangeLog ..." && \
+   ( cd "$(top_srcdir)" && \
+ echo '# Generated by Makefile. Do not edit.'; echo; \
+ git log --no-color --no-decorate ) > ChangeLog.tmp \
+   && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
+   || ( rm -f ChangeLog.tmp ; \
+echo "Failed to generate ChangeLog" >&2; \
+exit 1; ); \
+   else \
+   echo "A git clone is required to generate a ChangeLog" >&2; \
+   fi



[gentoo-commits] proj/eselect-rust: New tag: eselect-rust-20190311

2019-03-10 Thread Thomas Deutschmann
commit: 
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 11 05:02:52 2019 +

New tag: eselect-rust-20190311




[gentoo-commits] proj/eselect-rust:master commit in: /

2019-03-10 Thread Thomas Deutschmann
commit: 47ad9a4eeb74a053d1fbc854fca7d13c96fb1a5b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 11 01:11:16 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 11 04:54:44 2019 +
URL:https://gitweb.gentoo.org/proj/eselect-rust.git/commit/?id=47ad9a4e

Add cleanup action

Cleanup action will make use of new find_missing_broken_symlinks() function
and should be called by ebuild during package removal.

If we detect a missing or broken symlink, we will automatically mark latest
available version as default (which will basically fix missing or broken
symlinks).

Bug: https://bugs.gentoo.org/671182
Signed-off-by: Thomas Deutschmann  gentoo.org>

 rust.eselect.in | 27 +++
 1 file changed, 27 insertions(+)

diff --git a/rust.eselect.in b/rust.eselect.in
index d0f3361..1360dc2 100644
--- a/rust.eselect.in
+++ b/rust.eselect.in
@@ -177,6 +177,33 @@ set_version() {
die -q "symlink list copying failed"
 }
 
+### cleanup action ###
+describe_cleanup() {
+   echo "This action is not to be called manually."
+}
+
+do_cleanup() {
+   [[ -z ${@} ]] || die -q "This function does not expect any arguments"
+
+   # Do we need to clean up?
+   local missing_symlinks=( $(find_missing_broken_symlinks) )
+   if [[ ${#missing_symlinks[@]} -eq 0 ]]; then
+   echo "Nothing to clean up."
+   return
+   fi
+
+   unset_version
+
+   local targets=( $(find_targets) )
+
+   if [[ ${#targets[@]} -ne 0 ]]; then
+   echo "Marking the latest still installed version as default..."
+   do_set ${#targets[@]}
+   else
+   echo "No Rust profiles left on the system. Stale symlinks 
removed."
+   fi
+}
+
 ### list action ###
 
 describe_list() {



[gentoo-commits] proj/eselect-rust:master commit in: /

2019-03-10 Thread Thomas Deutschmann
commit: 66c4c263a0f983bfb456e43cc674a25323ea189c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 11 01:13:53 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 11 04:56:21 2019 +
URL:https://gitweb.gentoo.org/proj/eselect-rust.git/commit/?id=66c4c263

Mark "unset" action as deprecated

As long as one Rust implementation is installed, there should be always
a Rust implementation marked as default.

However, we need to keep this function until all ebuilds which are calling
"eselect rust unset" are gone. So make this action an alias of new
cleanup action.

Signed-off-by: Thomas Deutschmann  gentoo.org>

 rust.eselect.in | 30 ++
 1 file changed, 2 insertions(+), 28 deletions(-)

diff --git a/rust.eselect.in b/rust.eselect.in
index 1360dc2..0ecf87a 100644
--- a/rust.eselect.in
+++ b/rust.eselect.in
@@ -284,37 +284,11 @@ do_update() {
 ### unset action ###
 
 describe_unset() {
-   echo "Unset active Rust version"
-}
-
-describe_unset_options() {
-   echo "--if-invalid: Unset only if symlink is invalid (e.g. package 
was uninstalled)"
+   echo 'DEPRECATED: Use "cleanup" action instead!'
 }
 
 do_unset() {
-   local if_invalid="0"
-   while [[ $# > 0 ]]; do
-   case "$1" in
-   --if-invalid)
-   if_invalid="1"
-   ;;
-   *)
-   die -q "Unrecognized argument '$1'"
-   ;;
-   esac
-   shift
-   done
-
-   if [[ "${if_invalid}" == "1" ]]; then
-   local missing_symlinks=( $(find_missing_broken_symlinks) )
-   if [[ ${#missing_symlinks[@]} -eq 0 ]]; then
-   return
-   else
-   echo "Not all symlinks set. Will unset current 
symlinked Rust binaries!"
-   fi
-   fi
-
-   unset_version || die -q "Couldn't unset active version"
+   do_cleanup
 }
 
 # vim: set ft=eselect :



[gentoo-commits] proj/eselect-rust:master commit in: /

2019-03-10 Thread Thomas Deutschmann
commit: 4421e5aedf451ddda2dac20a09511b9d427fecb8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 11 04:22:23 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 11 04:56:25 2019 +
URL:https://gitweb.gentoo.org/proj/eselect-rust.git/commit/?id=4421e5ae

bump version to 20190311

Signed-off-by: Thomas Deutschmann  gentoo.org>

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 70b2afd..1cdbabf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([eselect-rust], [20190310])
+AC_INIT([eselect-rust], [20190311])
 AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-bzip2])
 
 # Create output files.



[gentoo-commits] proj/eselect-rust:master commit in: /

2019-03-10 Thread Thomas Deutschmann
commit: 51b5d26d5fddcffc9f89a4e5256c457182bf47c8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 11 03:11:28 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 11 04:56:25 2019 +
URL:https://gitweb.gentoo.org/proj/eselect-rust.git/commit/?id=51b5d26d

find_targets(): sort by version

Signed-off-by: Thomas Deutschmann  gentoo.org>

 rust.eselect.in | 24 ++--
 1 file changed, 22 insertions(+), 2 deletions(-)

diff --git a/rust.eselect.in b/rust.eselect.in
index 0ecf87a..311d8c0 100644
--- a/rust.eselect.in
+++ b/rust.eselect.in
@@ -38,12 +38,32 @@ find_missing_broken_symlinks() {
 # in "${ENV_D_PATH}/rust" directory
 # this function prints list of $pkgname-$pkgver values
 find_targets() {
-   local f
+   local f fn
local -a providers
+   local -a providers_unsorted
+   local -a providers_sorted
for f in "${ENV_D_PATH}"/rust/provider-*; do
[[ -f ${f} ]] || continue
-   providers=("${providers[@]}" "${f##*/provider-}")
+   fn="${f##*/provider-}"
+   if [[ "${fn}" == rust-bin-* ]]; then
+   providers_unsorted+=( "${fn##rust-bin-}-mysortA" )
+   elif [[ "${fn}" == rust-* ]]; then
+   providers_unsorted+=( "${fn##rust-}-mysortZ" )
+   else
+   die -q "Unsupported rust provider file '${f}' found."
+   fi
+   done
+
+   IFS=$'\n' LC_COLLATE=C providers_sorted=( $(sort 
<<<"${providers_unsorted[*]}") )
+
+   for fn in "${providers_sorted[@]}"; do
+   if [[ "${fn}" == *-mysortA ]]; then
+   providers+=( "rust-bin-${fn%%-mysortA}" )
+   else
+   providers+=( "rust-${fn%%-mysortZ}" )
+   fi
done
+
echo "${providers[@]}"
 }
 



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

2019-03-10 Thread Georgy Yakovlev
commit: 2996a993055b3633b0bcb80833f808c946762a80
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Mar 11 04:57:23 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Mar 11 05:00:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2996a993

dev-lang/rust-bin: fix qa warnings

 * QA Notice: Files built without respecting CFLAGS have been detected
 *  Please include the following list of files in your report:
 * /opt/rust-bin-1.33.0/lib/rustlib/x86_64-unknown-linux-gnu/bin/rust-lld

 * QA Notice: Files built without respecting LDFLAGS have been detected
 *  Please include the following list of files in your report:
 * /opt/rust-bin-1.33.0/lib/rustlib/x86_64-unknown-linux-gnu/bin/rust-lld

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

 dev-lang/rust-bin/rust-bin-1.32.0.ebuild | 1 +
 dev-lang/rust-bin/rust-bin-1.33.0.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/dev-lang/rust-bin/rust-bin-1.32.0.ebuild 
b/dev-lang/rust-bin/rust-bin-1.32.0.ebuild
index 170a05bf814..a9f9e30d70c 100644
--- a/dev-lang/rust-bin/rust-bin-1.32.0.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.32.0.ebuild
@@ -31,6 +31,7 @@ REQUIRED_USE="x86? ( cpu_flags_x86_sse2 )"
 QA_PREBUILT="
opt/${P}/bin/*-${PV}
opt/${P}/lib/*.so
+   opt/${P}/lib/rustlib/*/bin/*
opt/${P}/lib/rustlib/*/lib/*.so
opt/${P}/lib/rustlib/*/lib/*.rlib*
 "

diff --git a/dev-lang/rust-bin/rust-bin-1.33.0.ebuild 
b/dev-lang/rust-bin/rust-bin-1.33.0.ebuild
index 170a05bf814..a9f9e30d70c 100644
--- a/dev-lang/rust-bin/rust-bin-1.33.0.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.33.0.ebuild
@@ -31,6 +31,7 @@ REQUIRED_USE="x86? ( cpu_flags_x86_sse2 )"
 QA_PREBUILT="
opt/${P}/bin/*-${PV}
opt/${P}/lib/*.so
+   opt/${P}/lib/rustlib/*/bin/*
opt/${P}/lib/rustlib/*/lib/*.so
opt/${P}/lib/rustlib/*/lib/*.rlib*
 "



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

2019-03-10 Thread Georgy Yakovlev
commit: 6e428d13d6870832812748de67e48f170cbce6a5
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Mar 11 04:46:09 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Mar 11 04:51:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e428d13

dev-lang/rust-bin: fix cargo on ppc64

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

 dev-lang/rust-bin/rust-bin-1.32.0.ebuild | 13 -
 dev-lang/rust-bin/rust-bin-1.33.0.ebuild | 13 -
 2 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/dev-lang/rust-bin/rust-bin-1.32.0.ebuild 
b/dev-lang/rust-bin/rust-bin-1.32.0.ebuild
index a2af32c2885..170a05bf814 100644
--- a/dev-lang/rust-bin/rust-bin-1.32.0.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.32.0.ebuild
@@ -76,7 +76,18 @@ src_install() {
dosym "../../opt/${P}/bin/${rustlldb}" "/usr/bin/${rustlldb}"
 
local cargo=cargo-bin-${PV}
-   mv "${D}/opt/${P}/bin/cargo" "${D}/opt/${P}/bin/${cargo}" || die
+   # ugly hack for https://bugs.gentoo.org/679806
+   if use ppc64; then
+   mv "${D}/opt/${P}/bin/cargo" "${D}/opt/${P}/bin/${cargo}".bin 
|| die
+   sed -i 's/getentropy/gEtEnTrOpY/g' 
"${D}/opt/${P}/bin/${cargo}".bin || die
+   cat <<- 'EOF' > "${D}/opt/${P}/bin/${cargo}"
+   #!/bin/sh
+   OPENSSL_ppccap=0 $(realpath $0).bin "${@}"
+   EOF
+   fperms +x "/opt/${P}/bin/${cargo}"
+   else
+   mv "${D}/opt/${P}/bin/cargo" "${D}/opt/${P}/bin/${cargo}" || die
+   fi
dosym "../../opt/${P}/bin/${cargo}" "/usr/bin/${cargo}"
if use clippy; then
local clippy_driver=clippy-driver-bin-${PV}

diff --git a/dev-lang/rust-bin/rust-bin-1.33.0.ebuild 
b/dev-lang/rust-bin/rust-bin-1.33.0.ebuild
index a2af32c2885..170a05bf814 100644
--- a/dev-lang/rust-bin/rust-bin-1.33.0.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.33.0.ebuild
@@ -76,7 +76,18 @@ src_install() {
dosym "../../opt/${P}/bin/${rustlldb}" "/usr/bin/${rustlldb}"
 
local cargo=cargo-bin-${PV}
-   mv "${D}/opt/${P}/bin/cargo" "${D}/opt/${P}/bin/${cargo}" || die
+   # ugly hack for https://bugs.gentoo.org/679806
+   if use ppc64; then
+   mv "${D}/opt/${P}/bin/cargo" "${D}/opt/${P}/bin/${cargo}".bin 
|| die
+   sed -i 's/getentropy/gEtEnTrOpY/g' 
"${D}/opt/${P}/bin/${cargo}".bin || die
+   cat <<- 'EOF' > "${D}/opt/${P}/bin/${cargo}"
+   #!/bin/sh
+   OPENSSL_ppccap=0 $(realpath $0).bin "${@}"
+   EOF
+   fperms +x "/opt/${P}/bin/${cargo}"
+   else
+   mv "${D}/opt/${P}/bin/cargo" "${D}/opt/${P}/bin/${cargo}" || die
+   fi
dosym "../../opt/${P}/bin/${cargo}" "/usr/bin/${cargo}"
if use clippy; then
local clippy_driver=clippy-driver-bin-${PV}



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

2019-03-10 Thread Georgy Yakovlev
commit: 24c81ff7185f768be1a5550d6cbaaf88f1c47daa
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Mar 11 04:47:40 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Mar 11 05:00:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24c81ff7

sys-apps/ripgrep: add ~ppc64

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

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

diff --git a/sys-apps/ripgrep/ripgrep-0.10.0-r1.ebuild 
b/sys-apps/ripgrep/ripgrep-0.10.0-r1.ebuild
index a11824de8e2..a1e87e3b628 100644
--- a/sys-apps/ripgrep/ripgrep-0.10.0-r1.ebuild
+++ b/sys-apps/ripgrep/ripgrep-0.10.0-r1.ebuild
@@ -100,7 +100,7 @@ SRC_URI="$(cargo_crate_uris ${CRATES})"
 
 LICENSE="|| ( MIT Unlicense )"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 IUSE="+man pcre"
 
 RDEPEND="pcre? ( dev-libs/libpcre2 )"



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

2019-03-10 Thread Aaron Bauman
commit: 031b939d0b29fba6390863cad39fa3aefad3c05a
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Mar  5 16:47:40 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=031b939d

dev-vcs/git: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11269
Signed-off-by: Aaron Bauman  gentoo.org>

 dev-vcs/git/files/git-2.5.1-freebsd-10.x-no-iconv.patch | 14 --
 1 file changed, 14 deletions(-)

diff --git a/dev-vcs/git/files/git-2.5.1-freebsd-10.x-no-iconv.patch 
b/dev-vcs/git/files/git-2.5.1-freebsd-10.x-no-iconv.patch
deleted file mode 100644
index a874236dc65..000
--- a/dev-vcs/git/files/git-2.5.1-freebsd-10.x-no-iconv.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -Naurp git-2.5.1.orig/config.mak.uname git-2.5.1/config.mak.uname
 git-2.5.1.orig/config.mak.uname2015-08-28 15:37:13.0 -0400
-+++ git-2.5.1/config.mak.uname 2015-09-06 18:54:28.538437000 -0400
-@@ -189,7 +189,9 @@ ifeq ($(uname_O),Cygwin)
-   SPARSE_FLAGS = -isystem /usr/include/w32api -Wno-one-bit-signed-bitfield
- endif
- ifeq ($(uname_S),FreeBSD)
--  NEEDS_LIBICONV = YesPlease
-+  ifeq ($(shell expr "$(uname_R)" : '[1-9]\.'),2)
-+  NEEDS_LIBICONV = YesPlease
-+  endif
-   OLD_ICONV = YesPlease
-   NO_MEMMEM = YesPlease
-   BASIC_CFLAGS += -I/usr/local/include



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

2019-03-10 Thread Aaron Bauman
commit: 263a82f8a55f7e1979b3d71964d8709bbf7d0076
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Mar  9 18:07:15 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=263a82f8

net-libs/libprotoident: use HTTPS

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Aaron Bauman  gentoo.org>

 net-libs/libprotoident/libprotoident-2.0.12.ebuild | 6 +++---
 net-libs/libprotoident/libprotoident-.ebuild   | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-libs/libprotoident/libprotoident-2.0.12.ebuild 
b/net-libs/libprotoident/libprotoident-2.0.12.ebuild
index 0eb230f26ce..e2e7b897916 100644
--- a/net-libs/libprotoident/libprotoident-2.0.12.ebuild
+++ b/net-libs/libprotoident/libprotoident-2.0.12.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 inherit eutils
 
 DESCRIPTION="A library that performs application layer protocol identification 
for flows"
-HOMEPAGE="http://research.wand.net.nz/software/libprotoident.php;
-SRC_URI="http://research.wand.net.nz/software/${PN}/${P}.tar.gz;
+HOMEPAGE="https://research.wand.net.nz/software/libprotoident.php;
+SRC_URI="https://research.wand.net.nz/software/${PN}/${P}.tar.gz;
 
 LICENSE="LGPL-3+"
 SLOT="0/2"

diff --git a/net-libs/libprotoident/libprotoident-.ebuild 
b/net-libs/libprotoident/libprotoident-.ebuild
index 522c59fb266..397ba5fb925 100644
--- a/net-libs/libprotoident/libprotoident-.ebuild
+++ b/net-libs/libprotoident/libprotoident-.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 inherit autotools eutils git-r3
 
 DESCRIPTION="A library that performs application layer protocol identification 
for flows"
-HOMEPAGE="http://research.wand.net.nz/software/libprotoident.php;
+HOMEPAGE="https://research.wand.net.nz/software/libprotoident.php;
 EGIT_REPO_URI="https://github.com/wanduow/libprotoident;
 EGIT_BRANCH="develop"
 



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

2019-03-10 Thread Aaron Bauman
commit: f157c16a611afb7feef40604a3c5f69025f0b664
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Mar  9 18:06:15 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f157c16a

net-libs/libnetfilter_conntrack: use HTTPS

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git 
a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.7.ebuild 
b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.7.ebuild
index c6147a21bff..9d57a35c161 100644
--- a/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.7.ebuild
+++ b/net-libs/libnetfilter_conntrack/libnetfilter_conntrack-1.0.7.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 inherit autotools linux-info
 
 DESCRIPTION="programming interface (API) to the in-kernel connection tracking 
state table"
-HOMEPAGE="http://www.netfilter.org/projects/libnetfilter_conntrack/;
-SRC_URI="http://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2;
+HOMEPAGE="https://www.netfilter.org/projects/libnetfilter_conntrack/;
+SRC_URI="https://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"



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

2019-03-10 Thread Aaron Bauman
commit: 609c32297df107847e895381fa93a80c62bd1939
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Mar  9 18:08:36 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=609c3229

net-libs/libtrace: use HTTPS

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/net-libs/libtrace/libtrace-4.0.5.ebuild 
b/net-libs/libtrace/libtrace-4.0.5.ebuild
index 14825e4a833..c8291b01d7f 100644
--- a/net-libs/libtrace/libtrace-4.0.5.ebuild
+++ b/net-libs/libtrace/libtrace-4.0.5.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 inherit autotools eutils
 
 DESCRIPTION="A library and tools for trace processing"
-HOMEPAGE="http://research.wand.net.nz/software/libtrace.php;
-SRC_URI="http://research.wand.net.nz/software/${PN}/${P/_/-}.tar.gz;
+HOMEPAGE="https://research.wand.net.nz/software/libtrace.php;
+SRC_URI="https://research.wand.net.nz/software/${PN}/${P/_/-}.tar.gz;
 
 LICENSE="LGPL-3"
 SLOT="0"



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

2019-03-10 Thread Aaron Bauman
commit: 271e99d26a8c028fe7cefeed5719a4af5bc223bf
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Mar  9 18:04:08 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=271e99d2

net-analyzer/ndoutils: use HTTPS

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Aaron Bauman  gentoo.org>

 net-analyzer/ndoutils/ndoutils-2.1.3-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/ndoutils/ndoutils-2.1.3-r1.ebuild 
b/net-analyzer/ndoutils/ndoutils-2.1.3-r1.ebuild
index 57a0389779b..018e14d53e3 100644
--- a/net-analyzer/ndoutils/ndoutils-2.1.3-r1.ebuild
+++ b/net-analyzer/ndoutils/ndoutils-2.1.3-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 inherit systemd
 
 DESCRIPTION="Nagios addon to store Nagios data in a MySQL database"
-HOMEPAGE="http://www.nagios.org/;
+HOMEPAGE="https://www.nagios.org/;
 SRC_URI="https://github.com/NagiosEnterprises/${PN}/archive/${P}.tar.gz;
 
 LICENSE="GPL-2"



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

2019-03-10 Thread Aaron Bauman
commit: a505b0e0c8707d6800f51b180514c749719e109d
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Mar  9 18:03:34 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a505b0e0

net-analyzer/arpwatch: use HTTPS

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11322
Signed-off-by: Aaron Bauman  gentoo.org>

 net-analyzer/arpwatch/arpwatch-2.1.15-r11.ebuild | 4 ++--
 net-analyzer/arpwatch/arpwatch-2.1.15-r8.ebuild  | 4 ++--
 net-analyzer/arpwatch/arpwatch-2.1.15-r9.ebuild  | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-analyzer/arpwatch/arpwatch-2.1.15-r11.ebuild 
b/net-analyzer/arpwatch/arpwatch-2.1.15-r11.ebuild
index 758ebf7b054..48113d00e72 100644
--- a/net-analyzer/arpwatch/arpwatch-2.1.15-r11.ebuild
+++ b/net-analyzer/arpwatch/arpwatch-2.1.15-r11.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
@@ -8,7 +8,7 @@ PATCH_VER="0.8"
 MY_P="${PN}-$(replace_version_separator 2 'a')"
 
 DESCRIPTION="An ethernet monitor program that keeps track of ethernet/IP 
address pairings"
-HOMEPAGE="http://ee.lbl.gov/;
+HOMEPAGE="https://ee.lbl.gov/;
 SRC_URI="
ftp://ftp.ee.lbl.gov/${MY_P}.tar.gz
https://dev.gentoo.org/~jer/arpwatch-patchset-${PATCH_VER}.tar.xz

diff --git a/net-analyzer/arpwatch/arpwatch-2.1.15-r8.ebuild 
b/net-analyzer/arpwatch/arpwatch-2.1.15-r8.ebuild
index d6e8e99955c..f49c0836734 100644
--- a/net-analyzer/arpwatch/arpwatch-2.1.15-r8.ebuild
+++ b/net-analyzer/arpwatch/arpwatch-2.1.15-r8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -8,7 +8,7 @@ PATCH_VER="0.7"
 
 MY_P="${PN}-$(replace_version_separator 2 'a')"
 DESCRIPTION="An ethernet monitor program that keeps track of ethernet/ip 
address pairings"
-HOMEPAGE="http://ee.lbl.gov/;
+HOMEPAGE="https://ee.lbl.gov/;
 SRC_URI="
ftp://ftp.ee.lbl.gov/${MY_P}.tar.gz
https://dev.gentoo.org/~jer/arpwatch-patchset-${PATCH_VER}.tar.xz

diff --git a/net-analyzer/arpwatch/arpwatch-2.1.15-r9.ebuild 
b/net-analyzer/arpwatch/arpwatch-2.1.15-r9.ebuild
index 8fdf28d149d..dcbace9cf4e 100644
--- a/net-analyzer/arpwatch/arpwatch-2.1.15-r9.ebuild
+++ b/net-analyzer/arpwatch/arpwatch-2.1.15-r9.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
@@ -8,7 +8,7 @@ PATCH_VER="0.8"
 MY_P="${PN}-$(replace_version_separator 2 'a')"
 
 DESCRIPTION="An ethernet monitor program that keeps track of ethernet/IP 
address pairings"
-HOMEPAGE="http://ee.lbl.gov/;
+HOMEPAGE="https://ee.lbl.gov/;
 SRC_URI="
ftp://ftp.ee.lbl.gov/${MY_P}.tar.gz
https://dev.gentoo.org/~jer/arpwatch-patchset-${PATCH_VER}.tar.xz



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

2019-03-10 Thread Aaron Bauman
commit: c037897e55a112b28892b13ebbda5f55ce434828
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat Mar  9 18:05:06 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c037897e

net-libs/libflowmanager: use HTTPS

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Aaron Bauman  gentoo.org>

 net-libs/libflowmanager/libflowmanager-3.0.0-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-libs/libflowmanager/libflowmanager-3.0.0-r1.ebuild 
b/net-libs/libflowmanager/libflowmanager-3.0.0-r1.ebuild
index 6705dcc8dc9..b72a446e2c9 100644
--- a/net-libs/libflowmanager/libflowmanager-3.0.0-r1.ebuild
+++ b/net-libs/libflowmanager/libflowmanager-3.0.0-r1.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 inherit eutils
 
 DESCRIPTION="A library that measures and reports on packet flows"
-HOMEPAGE="http://research.wand.net.nz/software/libflowmanager.php;
-SRC_URI="http://research.wand.net.nz/software/${PN}/${P}.tar.gz;
+HOMEPAGE="https://research.wand.net.nz/software/libflowmanager.php;
+SRC_URI="https://research.wand.net.nz/software/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0/3"



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

2019-03-10 Thread Aaron Bauman
commit: 4b515b99de1aaeb28010266127b80664e242262f
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Mar  5 16:54:11 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b515b99

www-servers/tomcat: remove unused patches

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11270
Signed-off-by: Aaron Bauman  gentoo.org>

 .../tomcat/files/tomcat-8.0.49-build.xml.patch | 265 -
 .../tomcat/files/tomcat-8.5.27-build.xml.patch | 256 
 2 files changed, 521 deletions(-)

diff --git a/www-servers/tomcat/files/tomcat-8.0.49-build.xml.patch 
b/www-servers/tomcat/files/tomcat-8.0.49-build.xml.patch
deleted file mode 100644
index ab6590d5c12..000
--- a/www-servers/tomcat/files/tomcat-8.0.49-build.xml.patch
+++ /dev/null
@@ -1,265 +0,0 @@
 a/build.xml
-+++ b/build.xml
-@@ -718,24 +718,29 @@
-   manifest="${tomcat.manifests}/annotations-api.jar.manifest" />
- 
- 
-+
- 
-+
- 
- 
-+
- 
- 
- 
--
-+
- 
- 
-   
-@@ -1067,7 +1072,7 @@
- 
-   
- 
--
-+
- 
- 
- 
-@@ -1101,7 +1106,7 @@
- 
-   
- 
--  
-+  
- 
- 
- 
-   
- 
--  
-+  
- 
- 
- 
- 
-+
- 
- 
- 
-+
- 
- 
- Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform.
-@@ -1955,6 +1963,7 @@ Apache Tomcat ${version} native binaries for Win64 
AMD64/EMT64 platform.
- 
-   
-+
- 
- 
-   
-+
-   
-   http://docs.oracle.com/javase/7/docs/api/"/>
-   http://commons.apache.org/proper/commons-io/javadocs/api-release/"/>
-@@ -2791,7 +2803,7 @@ skip.installer property in build.properties" />
-   
- 
-   
-+  description="Download (and build) components necessary to compile" 
unless="noget">
- 
- 
- 
-@@ -2811,7 +2823,7 @@ skip.installer property in build.properties" />
-   
- 
-   
-+  description="Download additional components for the tests" 
unless="noget">
- 
- 
-   
-@@ -2868,7 +2880,7 @@ skip.installer property in build.properties" />
-   
- 
-   
-+  description="Download additional components for a distribution" 
unless="noget">
- 
- 
-   
-@@ -2908,18 +2920,18 @@ skip.installer property in build.properties" />
- 
-   
- 
--  
-+  
- 
- 
-   
- 
--  
-+  
- 
- 
-   
- 
--  
-+  
- 
- 
- 
-@@ -2931,7 +2943,7 @@ skip.installer property in build.properties" />
- 
-   
- 
--  
-+  
- 
- 
- 
-@@ -2950,7 +2962,7 @@ skip.installer property in build.properties" />
- 
-   
- 
--  
-+  
- 
- 
- 
-@@ -2961,7 +2973,7 @@ skip.installer property in build.properties" />
- 
-   
- 
--  
-+  
- 
- 
- 
-@@ -2979,7 +2991,7 @@ skip.installer property in build.properties" />
- 
-   
- 
--  
-+  
- 
- 
- 
-@@ -2989,7 +3001,7 @@ skip.installer property in build.properties" />
- 
-   
- 
--  
-+  
- 
- 
- 
-@@ -3012,7 +3024,7 @@ skip.installer property in build.properties" />
- 
-   
- 
--  
-+  
- 
-   
- 
-@@ -3023,7 +3035,7 @@ skip.installer property in build.properties" />
- 
-   
- 
--  
-+  
- 
- 
-   
-@@ -3034,7 +3046,7 @@ skip.installer property in build.properties" />
- 
-   
-+  description="Prepares the source tree to be built in Eclipse" 
unless="noget">
- 
- 
- 

diff --git a/www-servers/tomcat/files/tomcat-8.5.27-build.xml.patch 
b/www-servers/tomcat/files/tomcat-8.5.27-build.xml.patch
deleted file mode 100644
index c8022bcd5e4..000
--- a/www-servers/tomcat/files/tomcat-8.5.27-build.xml.patch
+++ /dev/null
@@ -1,256 +0,0 @@
 a/build.xml
-+++ b/build.xml
-@@ -717,24 +717,29 @@
-   manifest="${tomcat.manifests}/annotations-api.jar.manifest" />
- 
- 
-+
- 
-+
- 
- 
-+
- 
- 
- 
--
-+
- 
- 
-   
-@@ -1072,7 +1077,7 @@
- 
-   
- 
--
-+
- 
- 
- 
-@@ -1106,7 +,7 @@
- 
-   
- 
--  
-+  
- 
- 
- 
-   
- 
--  
-+  
- 
- 
- 
- 
-+
- 
- 
- 
-+
- 
- 
- Apache Tomcat ${version} native binaries for Win64 AMD64/EMT64 platform.
-@@ -1764,6 +1772,7 @@ Apache Tomcat ${version} native binaries for Win64 
AMD64/EMT64 platform.
- 
-   
-+
- 
- 
-   
-+
-   
-   http://docs.oracle.com/javase/7/docs/api/"/>
-   http://commons.apache.org/proper/commons-io/javadocs/api-release/"/>
-@@ -2617,7 +2629,7 @@ skip.installer property in build.properties" />
-   
- 
-   
-+  description="Download (and build) components necessary to compile" 
unless="noget">
- 
- 
- 
-@@ -2637,7 +2649,7 @@ skip.installer property in build.properties" />
-   
- 
-   
-+  description="Download additional components for the tests" 
unless="noget">
- 
- 
-   
-@@ -2694,7 +2706,7 

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

2019-03-10 Thread Aaron Bauman
commit: 13cdef93017ab33bd801fd0596bf94ea90ffbf74
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Mar  5 16:58:11 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13cdef93

dev-util/ninja: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11274
Signed-off-by: Aaron Bauman  gentoo.org>

 dev-util/ninja/files/ninja-uclibc.patch | 18 --
 1 file changed, 18 deletions(-)

diff --git a/dev-util/ninja/files/ninja-uclibc.patch 
b/dev-util/ninja/files/ninja-uclibc.patch
deleted file mode 100644
index e87eea84272..000
--- a/dev-util/ninja/files/ninja-uclibc.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/src/util.cc b/src/util.cc
-index e31fd1f..1caa1ce 100644
 a/src/util.cc
-+++ b/src/util.cc
-@@ -585,6 +585,13 @@ double GetLoadAverage() {
-   // Calculation taken from comment in libperfstats.h
-   return double(cpu_stats.loadavg[0]) / double(1 << SBITS);
- }
-+#elif defined(__UCLIBC__)
-+double GetLoadAverage() {
-+  struct sysinfo si;
-+  if (sysinfo() != 0)
-+return -0.0f;
-+  return 1.0 / (1 << SI_LOAD_SHIFT) * si.loads[0];
-+}
- #else
- double GetLoadAverage() {
-   double loadavg[3] = { 0.0f, 0.0f, 0.0f };



[gentoo-commits] repo/gentoo:master commit in: sys-auth/munge/files/

2019-03-10 Thread Aaron Bauman
commit: 78c19d6b0415b3024d565a186cfe2996d561b498
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Mar  5 16:57:28 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78c19d6b

sys-auth/munge: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11273
Signed-off-by: Aaron Bauman  gentoo.org>

 .../fixed-recursive-use-of-make-in-makefiles.patch | 134 -
 1 file changed, 134 deletions(-)

diff --git 
a/sys-auth/munge/files/fixed-recursive-use-of-make-in-makefiles.patch 
b/sys-auth/munge/files/fixed-recursive-use-of-make-in-makefiles.patch
deleted file mode 100644
index 1810abc91f4..000
--- a/sys-auth/munge/files/fixed-recursive-use-of-make-in-makefiles.patch
+++ /dev/null
@@ -1,134 +0,0 @@
-From 5634ce9890da48f9ea88feece856361ce8f1563c Mon Sep 17 00:00:00 2001
-From: Brendan Horan 
-Date: Tue, 23 Jun 2015 09:32:31 +0800
-Subject: [PATCH] Fixed recursive use of make in makefiles [ make -> $(MAKE) ]
-

- Makefile.in| 2 +-
- config/Make-inc.mk | 2 +-
- src/Makefile.in| 2 +-
- src/etc/Makefile.in| 2 +-
- src/libcommon/Makefile.in  | 2 +-
- src/libmissing/Makefile.in | 2 +-
- src/libmunge/Makefile.in   | 2 +-
- src/munge/Makefile.in  | 2 +-
- src/munged/Makefile.in | 2 +-
- 9 files changed, 9 insertions(+), 9 deletions(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index 8b8ca76..df53ff1 100644
 a/Makefile.in
-+++ b/Makefile.in
-@@ -830,7 +830,7 @@ $(top_builddir)/src/libcommon/libcommon.la \
- $(top_builddir)/src/libmissing/libmissing.la \
- $(top_builddir)/src/libmunge/libmunge.la \
- : force-dependency-check
--  @cd `dirname $@` && make `basename $@`
-+  @cd `dirname $@` && $(MAKE) `basename $@`
- 
- force-dependency-check:
- 
-diff --git a/config/Make-inc.mk b/config/Make-inc.mk
-index 03a9622..edffea1 100644
 a/config/Make-inc.mk
-+++ b/config/Make-inc.mk
-@@ -31,7 +31,7 @@ $(top_builddir)/src/libcommon/libcommon.la \
- $(top_builddir)/src/libmissing/libmissing.la \
- $(top_builddir)/src/libmunge/libmunge.la \
- : force-dependency-check
--  @cd `dirname $@` && make `basename $@`
-+  @cd `dirname $@` && $(MAKE) `basename $@`
- 
- force-dependency-check:
- 
-diff --git a/src/Makefile.in b/src/Makefile.in
-index c89ec9c..38c32da 100644
 a/src/Makefile.in
-+++ b/src/Makefile.in
-@@ -648,7 +648,7 @@ $(top_builddir)/src/libcommon/libcommon.la \
- $(top_builddir)/src/libmissing/libmissing.la \
- $(top_builddir)/src/libmunge/libmunge.la \
- : force-dependency-check
--  @cd `dirname $@` && make `basename $@`
-+  @cd `dirname $@` && $(MAKE) `basename $@`
- 
- force-dependency-check:
- 
-diff --git a/src/etc/Makefile.in b/src/etc/Makefile.in
-index ffd41a0..d1eed84 100644
 a/src/etc/Makefile.in
-+++ b/src/etc/Makefile.in
-@@ -451,7 +451,7 @@ $(top_builddir)/src/libcommon/libcommon.la \
- $(top_builddir)/src/libmissing/libmissing.la \
- $(top_builddir)/src/libmunge/libmunge.la \
- : force-dependency-check
--  @cd `dirname $@` && make `basename $@`
-+  @cd `dirname $@` && $(MAKE) `basename $@`
- 
- force-dependency-check:
- 
-diff --git a/src/libcommon/Makefile.in b/src/libcommon/Makefile.in
-index 45419a8..8512b74 100644
 a/src/libcommon/Makefile.in
-+++ b/src/libcommon/Makefile.in
-@@ -683,7 +683,7 @@ $(top_builddir)/src/libcommon/libcommon.la \
- $(top_builddir)/src/libmissing/libmissing.la \
- $(top_builddir)/src/libmunge/libmunge.la \
- : force-dependency-check
--  @cd `dirname $@` && make `basename $@`
-+  @cd `dirname $@` && $(MAKE) `basename $@`
- 
- force-dependency-check:
- 
-diff --git a/src/libmissing/Makefile.in b/src/libmissing/Makefile.in
-index 10b1a78..187f4b3 100644
 a/src/libmissing/Makefile.in
-+++ b/src/libmissing/Makefile.in
-@@ -572,7 +572,7 @@ $(top_builddir)/src/libcommon/libcommon.la \
- $(top_builddir)/src/libmissing/libmissing.la \
- $(top_builddir)/src/libmunge/libmunge.la \
- : force-dependency-check
--  @cd `dirname $@` && make `basename $@`
-+  @cd `dirname $@` && $(MAKE) `basename $@`
- 
- force-dependency-check:
- 
-diff --git a/src/libmunge/Makefile.in b/src/libmunge/Makefile.in
-index 69dc54f..ab21fdc 100644
 a/src/libmunge/Makefile.in
-+++ b/src/libmunge/Makefile.in
-@@ -752,7 +752,7 @@ $(top_builddir)/src/libcommon/libcommon.la \
- $(top_builddir)/src/libmissing/libmissing.la \
- $(top_builddir)/src/libmunge/libmunge.la \
- : force-dependency-check
--  @cd `dirname $@` && make `basename $@`
-+  @cd `dirname $@` && $(MAKE) `basename $@`
- 
- force-dependency-check:
- 
-diff --git a/src/munge/Makefile.in b/src/munge/Makefile.in
-index f411d7e..411ec3b 100644
 a/src/munge/Makefile.in
-+++ b/src/munge/Makefile.in
-@@ -752,7 +752,7 @@ $(top_builddir)/src/libcommon/libcommon.la \
- $(top_builddir)/src/libmissing/libmissing.la \
- 

[gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/files/

2019-03-10 Thread Aaron Bauman
commit: cae520dea064dfd3309cd1959c38be57ea94520e
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Mar  5 17:00:53 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cae520de

dev-embedded/stlink: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11277
Signed-off-by: Aaron Bauman  gentoo.org>

 ...ink-1.4.0-add-LIB_INSTALL_DIR-flag-630932.patch | 50 --
 1 file changed, 50 deletions(-)

diff --git 
a/dev-embedded/stlink/files/stlink-1.4.0-add-LIB_INSTALL_DIR-flag-630932.patch 
b/dev-embedded/stlink/files/stlink-1.4.0-add-LIB_INSTALL_DIR-flag-630932.patch
deleted file mode 100644
index aa077c0823b..000
--- 
a/dev-embedded/stlink/files/stlink-1.4.0-add-LIB_INSTALL_DIR-flag-630932.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From cbba564f60bacd30344f9bb5c7bebaf8283b6794 Mon Sep 17 00:00:00 2001
-From: Vasiliy Glazov 
-Date: Fri, 8 Sep 2017 15:00:45 +0300
-Subject: [PATCH] Added LIB_INSTALL_DIR to correct libs install on 64-bit
- systems (#636)
-
-* Added LIB_INSTALL_DIR to correct libs install on 64-bit systems
-* Add description for using LIB_INSTALL_DIR parameter.

- CMakeLists.txt   | 3 ++-
- doc/compiling.md | 9 +
- 2 files changed, 11 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 46790de..da99b6e 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -4,7 +4,8 @@ project(stlink C)
- set(PROJECT_DESCRIPTION "Open source version of the STMicroelectronics Stlink 
Tools")
- set(STLINK_UDEV_RULES_DIR "/etc/udev/rules.d" CACHE PATH "Udev rules 
directory")
- set(STLINK_MODPROBED_DIR "/etc/modprobe.d" CACHE PATH "modprobe.d directory")
--set(STLINK_LIBRARY_PATH "lib/${CMAKE_LIBRARY_PATH}" CACHE PATH "Target lib 
directory")
-+set(LIB_INSTALL_DIR "lib" CACHE PATH "Main library directory")
-+set(STLINK_LIBRARY_PATH "${LIB_INSTALL_DIR}/${CMAKE_LIBRARY_PATH}" CACHE PATH 
"Target lib directory")
- 
- option(STLINK_GENERATE_MANPAGES "Generate manpages with pandoc" OFF)
- 
-diff --git a/doc/compiling.md b/doc/compiling.md
-index 3518d10..41d1fb7 100644
 a/doc/compiling.md
-+++ b/doc/compiling.md
-@@ -118,6 +118,15 @@ $ cmake -DSTLINK_UDEV_RULES_DIR="/usr/lib/udev/rules.d" \
- -DSTLINK_MODPROBED_DIR="/usr/lib/modprobe.d" ..
- ```
- 
-+## Build using different directory for shared libs
-+
-+To put the compiled shared libs into a different directory during installation
-+you can use the following cmake option:
-+
-+```
-+$ cmake -DLIB_INSTALL_DIR:PATH="/usr/lib64"  ..
-+```
-+
- ## Windows (MinGW64) 
- 
- ### Prequistes
--- 
-2.13.6
-



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

2019-03-10 Thread Aaron Bauman
commit: 06fadf406d567c15a99affc5b27adc4a7e6846c2
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Mar  5 16:51:24 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 04:46:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06fadf40

net-misc/openssh: remove unused patches

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Aaron Bauman  gentoo.org>

 .../openssh-7.9_p1-X509-dont-make-piddir.patch | 16 -
 .../openssh/files/openssh-7.9_p1-X509-glue.patch   | 28 --
 .../files/openssh-7.9_p1-libressl-2.8.patch| 16 -
 3 files changed, 60 deletions(-)

diff --git a/net-misc/openssh/files/openssh-7.9_p1-X509-dont-make-piddir.patch 
b/net-misc/openssh/files/openssh-7.9_p1-X509-dont-make-piddir.patch
deleted file mode 100644
index c30ca278544..000
--- a/net-misc/openssh/files/openssh-7.9_p1-X509-dont-make-piddir.patch
+++ /dev/null
@@ -1,16 +0,0 @@
 a/openssh-7.9p1+x509-11.5.diff 2018-12-07 17:24:03.211328918 -0800
-+++ b/openssh-7.9p1+x509-11.5.diff 2018-12-07 17:24:13.399262277 -0800
-@@ -40681,12 +40681,11 @@
-
-  install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files install-sysconf 
host-key check-config
-  install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files 
install-sysconf
--@@ -333,6 +351,8 @@
-+@@ -333,6 +351,7 @@
-   $(MKDIR_P) $(DESTDIR)$(mandir)/$(mansubdir)5
-   $(MKDIR_P) $(DESTDIR)$(mandir)/$(mansubdir)8
-   $(MKDIR_P) $(DESTDIR)$(libexecdir)
- + $(MKDIR_P) $(DESTDIR)$(sshcadir)
--+ $(MKDIR_P) $(DESTDIR)$(piddir)
-   $(MKDIR_P) -m 0755 $(DESTDIR)$(PRIVSEP_PATH)
-   $(INSTALL) -m 0755 $(STRIP_OPT) ssh$(EXEEXT) 
$(DESTDIR)$(bindir)/ssh$(EXEEXT)
-   $(INSTALL) -m 0755 $(STRIP_OPT) scp$(EXEEXT) 
$(DESTDIR)$(bindir)/scp$(EXEEXT)

diff --git a/net-misc/openssh/files/openssh-7.9_p1-X509-glue.patch 
b/net-misc/openssh/files/openssh-7.9_p1-X509-glue.patch
deleted file mode 100644
index 1f1ec4a4d77..000
--- a/net-misc/openssh/files/openssh-7.9_p1-X509-glue.patch
+++ /dev/null
@@ -1,28 +0,0 @@
 a/openssh-7.9p1+x509-11.5.diff 2018-10-23 16:21:22.580154353 -0700
-+++ b/openssh-7.9p1+x509-11.5.diff 2018-10-23 16:22:39.600652048 -0700
-@@ -44045,7 +44045,7 @@
-   ENGINE_register_all_complete();
- +#endif
-  
---#if OPENSSL_VERSION_NUMBER < 0x10001000L
-+-#if OPENSSL_VERSION_NUMBER < 0x1010L || defined(LIBRESSL_VERSION_NUMBER)
- + /* OPENSSL_config will load buildin engines and engines
- +  * specified in configuration file, i.e. method call
- +  * ENGINE_load_builtin_engines. Latter is only for
-@@ -77691,16 +77691,6 @@
-   setlocale(LC_CTYPE, "POSIX.UTF-8") != NULL))
-   return;
-   setlocale(LC_CTYPE, "C");
--diff -ruN openssh-7.9p1/version.h openssh-7.9p1+x509-11.5/version.h
- openssh-7.9p1/version.h   2018-10-17 03:01:20.0 +0300
--+++ openssh-7.9p1+x509-11.5/version.h 2018-10-19 19:07:00.0 +0300
--@@ -2,5 +2,4 @@
-- 
-- #define SSH_VERSION  "OpenSSH_7.9"
-- 
---#define SSH_PORTABLE "p1"
---#define SSH_RELEASE  SSH_VERSION SSH_PORTABLE
--+#define SSH_RELEASE  PACKAGE_STRING ", " SSH_VERSION "p1"
- diff -ruN openssh-7.9p1/version.m4 openssh-7.9p1+x509-11.5/version.m4
- --- openssh-7.9p1/version.m4  1970-01-01 02:00:00.0 +0200
- +++ openssh-7.9p1+x509-11.5/version.m42018-10-19 18:13:58.0 
+0300

diff --git a/net-misc/openssh/files/openssh-7.9_p1-libressl-2.8.patch 
b/net-misc/openssh/files/openssh-7.9_p1-libressl-2.8.patch
deleted file mode 100644
index 58f3ce2922e..000
--- a/net-misc/openssh/files/openssh-7.9_p1-libressl-2.8.patch
+++ /dev/null
@@ -1,16 +0,0 @@
 openssh-7.9p1.orig/evp-compat.h2018-12-07 17:07:37.929762570 -0800
-+++ openssh-7.9p1/evp-compat.h 2018-12-07 17:08:03.923592845 -0800
-@@ -100,11 +100,13 @@
- }
- 
- 
-+#if LIBRESSL_VERSION_NUMBER < 0x2080L
- static inline int
- EVP_CIPHER_CTX_encrypting(const EVP_CIPHER_CTX *ctx)
- {
-   return(ctx->encrypt);
- }
-+#endif /* LIBRESSL_VERSION_NUMBER < 0x2080L */
- 
- 
- static inline void*



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

2019-03-10 Thread Georgy Yakovlev
commit: f9910ada4e1c2e2701a5fbf6d22305ebdfcb2bdf
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Mar 11 03:06:31 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Mar 11 03:06:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9910ada

media-video/mpv: drop old

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

 media-video/mpv/Manifest  |   1 -
 media-video/mpv/mpv-0.28.2.ebuild | 366 --
 media-video/mpv/mpv-0.29.1.ebuild | 362 -
 3 files changed, 729 deletions(-)

diff --git a/media-video/mpv/Manifest b/media-video/mpv/Manifest
index a5ac9642e75..dcb75529845 100644
--- a/media-video/mpv/Manifest
+++ b/media-video/mpv/Manifest
@@ -1,6 +1,5 @@
 DIST mpv-0.27.2-patches-r0.tar.xz 6564 BLAKE2B 
c02efea40e0b19d60eaa49520988464fbf4c9221108cbf19021934dc0cb0a975dab148ec1ea03753d81b8035173e3e5bd74b262ab5675d9fc5dce4a0f75ea37c
 SHA512 
d1c955c32082338f5c7f1cd8268471ca0ac6dcd817c5fe39fb82f0e8bd3babf6f2f954d4ce52e9be786e5527df75cc6f4f3de8106a3517c8a1d8e39be1b4ebbd
 DIST mpv-0.27.2.tar.gz 2957191 BLAKE2B 
35e316e5a30869ae44ff229e99ae11a88e2f7d55b55946bfb752d5ed2d8212885c0c2abb59c9ff6d23a72daee47d80f44511313d67ee6fb265e6681ba4b89ee1
 SHA512 
bf74a150b3732b8c233362e0902c54f85fbea9ca1765a2a8f946a6eecd9b37a72ede36a36d0dd98a770539c4f81fe24c8ce26be9db7cd6eddd8514a8f82d9cda
-DIST mpv-0.28.2.tar.gz 2982558 BLAKE2B 
5faef4122d456916f43bd603192fc72dee1ad16fa3c842d54a2e53dc8f9db416545549a86af62481fe211dc088821ab13b832c09f82572b36167dd3a73d57f62
 SHA512 
e6206e8c65dca084e2cfa73ab09278b7113cdfd90b89877d1f75a1068c6379a093ea3955a023857357683edce1aba8c12ee441fd195d887af4d939fc7b66cef4
 DIST mpv-0.29.1.tar.gz 3059503 BLAKE2B 
231e7c184d441c126c6b6b7199810552981816e5afd59bce4b423c7b4f3739b540f26a4de947cb3cf87a31a7d3ce03a11a6d1247158250afde596f490321a537
 SHA512 
ec57c9ceaaf2915ee237dd5a1c5ea5d22725d8611e28a9b998e5bb0d8ab5bdf3631d0267fc7b54da31cb1eaa145ef35841e68846bd41c3b9e1024902e92fd086
 DIST waf-1.9.8 100685 BLAKE2B 
b335115b7ba5af4f8f49fc4da7967fa20e0633bfc7de7ad28fdb58dfcf7ae9c7833d053d298280e26e94b18af70a66fc13d08adf1fc7f9ad9b81e70d95cc74fc
 SHA512 
e7493767f65deeb38aa162adef22adf60ebbd038410e9cdf4fe6f0de8c43395dbbba14962aa2c3855e1277136085fc22ad12ebfb8ac4e76f16358296039b8ea2
 DIST waf-2.0.9 103104 BLAKE2B 
c7e996aa49662da3ff941d076fc7e2dd23e867ade92a3b2ae07560b76d63a69e495184a1f9c76be5c51977ddb1713f9247f62e672033ecb988ac559e3a47e546
 SHA512 
0755170ded115b03e78a2096f197cd9fff62b5036db764153d26ce426f182ea7d7b8231cfa1a10b4a564a8480428502f3691851df66e7b83c7bca8e5fe26de7d

diff --git a/media-video/mpv/mpv-0.28.2.ebuild 
b/media-video/mpv/mpv-0.28.2.ebuild
deleted file mode 100644
index feb5199d743..000
--- a/media-video/mpv/mpv-0.28.2.ebuild
+++ /dev/null
@@ -1,366 +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} )
-PYTHON_REQ_USE='threads(+)'
-
-WAF_PV=1.9.8
-
-inherit eapi7-ver flag-o-matic gnome2-utils pax-utils python-r1 
toolchain-funcs waf-utils xdg-utils
-
-DESCRIPTION="Media player based on MPlayer and mplayer2"
-HOMEPAGE="https://mpv.io/;
-
-if [[ ${PV} != ** ]]; then
-   SRC_URI="https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux"
-   DOCS=( RELEASE_NOTES )
-else
-   EGIT_REPO_URI="https://github.com/mpv-player/mpv.git;
-   inherit git-r3
-   DOCS=(); SRC_URI=""
-fi
-SRC_URI+=" https://waf.io/waf-${WAF_PV};
-DOCS+=( README.md DOCS/{client-api,interface}-changes.rst )
-
-# See Copyright in sources and Gentoo bug 506946. Waf is BSD, libmpv is ISC.
-LICENSE="LGPL-2.1+ GPL-2+ BSD ISC samba? ( GPL-3+ )"
-SLOT="0"
-IUSE="+alsa aqua archive bluray cdda +cli coreaudio cplugins cuda doc drm dvb
-   dvd +egl encode gbm +iconv jack javascript jpeg lcms +libass libav 
libcaca
-   libmpv +lua luajit openal +opengl oss pulseaudio raspberry-pi rubberband
-   samba sdl selinux test tools +uchardet v4l vaapi vdpau vulkan wayland +X
-   +xv zlib zsh-completion"
-
-REQUIRED_USE="
-   || ( cli libmpv )
-   aqua? ( opengl )
-   cuda? ( !libav opengl )
-   egl? ( || ( gbm X wayland ) )
-   gbm? ( drm egl opengl )
-   lcms? ( opengl )
-   luajit? ( lua )
-   opengl? ( || ( aqua egl X raspberry-pi !cli ) )
-   raspberry-pi? ( opengl )
-   test? ( opengl )
-   tools? ( cli )
-   uchardet? ( iconv )
-   v4l? ( || ( alsa oss ) )
-   vaapi? ( || ( gbm X wayland ) )
-   vdpau? ( X )
-   vulkan? ( || ( X wayland ) )
-   wayland? ( egl )
-   X? ( egl? ( opengl ) )
-   xv? ( X )
-   zsh-completion? ( cli )
-   ${PYTHON_REQUIRED_USE}
-"
-
-COMMON_DEPEND="
-   !libav? ( >=media-video/ffmpeg-4.0:0=[encode?,threads,vaapi?,vdpau?] )
-   

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

2019-03-10 Thread Aaron Bauman
commit: 9f732c236cf298e463539a60e94060d5903209f9
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Mar 11 02:38:08 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 02:39:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f732c23

sys-fs/squashfs-tools: drop vulnerable wrt bug #552484

Signed-off-by: Aaron Bauman  gentoo.org>

 sys-fs/squashfs-tools/Manifest |  2 --
 sys-fs/squashfs-tools/squashfs-tools-3.2_p2.ebuild | 39 --
 sys-fs/squashfs-tools/squashfs-tools-3.4.ebuild| 39 --
 3 files changed, 80 deletions(-)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index f12639416ff..e1aeb832119 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1,6 +1,4 @@
 DIST squashfs-tools_4.3-3.debian.tar.xz 15252 BLAKE2B 
5273eb8007192190786513f49be68eded38a7acae80d0c84067e8d239d53304a79be454cc4970af0d1c1eff6e58b75403201497dfd18d175f9d5aae5e0102834
 SHA512 
ab1a707e04e92697549f7e7c667c5da835d39d5e2cb791e47bf549b232e7173e6981c33a87cd373c4a7a4815e4af1b7294fe13e54422a5ccdcff90904bfc51ae
 DIST squashfs-tools_4.3-6.debian.tar.xz 19060 BLAKE2B 
4fc28fae1da2bd1bfbf774acd4f4b29e382760078efd16c655a9178633a58e1ab15fb0203a626dc6353df8ff6860f7da5f9369fd920cf773dd53f8b90cffe13c
 SHA512 
e2f64cdcfe01696980a45d4d6ec50e82626cb3e25e8c98d63b68c9754f519171fcfc4586b4ef88104e28275e1daf94a23f5b7dd08d37fe6e8417b054954de1e7
 DIST squashfs-tools_4.3-7.debian.tar.xz 19612 BLAKE2B 
7894b6fa27e7e46aec82b680a1ce521c895436ccb1cafcfd3d95e09f56546e08539a7c152854ee14e9516e217339617d25e68c0cc1a4c41b3bdd689caeefa94a
 SHA512 
88df37e0c13483c5591f925156628b3ae27279f56d2453f7f1f82558da1bc3338e23e9481d704b785a40846c6dedc6b0a0e1dd2ea70fe26ea2f1e855fd6d6fdf
-DIST squashfs3.2-r2.tar.gz 314764 BLAKE2B 
55d2f38572263c4b1ec704ed7a07794400e904e260e316e399511851d35ab0f7e1834eba605e8739d1b8f6b5a56512570d36196d21743d05842e958b3d80e368
 SHA512 
983f1fa966c15fb4929eaaf2d88401aac72f6d04e8c5523bd46397bc28928ff13b638e0e96bc09650627449c37f6a654ffa727445f1e9ca13cdc9de4fc43012f
-DIST squashfs3.4.tar.gz 352660 BLAKE2B 
f48b1f0399d3fde75b8f625fa4130d04772ed9e6d8dc179e7105a7770a5bd211a7aa5c7d5d621efedc54707b37a622351efa65291c03cd84d049ec4a1094773a
 SHA512 
5e126ea468271f54c62d473a04a355169514f2668b4dc0de4138a8ef2a6e633d373454e7b85c1c684b875d9dfc8afb17c05548dd5062d05f847ffef8e624d9fe
 DIST squashfs4.3.tar.gz 182550 BLAKE2B 
f56ff33a505f7d60cced11224526bfce003bc06184ad7e8cb9cd08b14854164da8d2ecc64694d44085c46bcfa3aaa85939c97820415345053f7956af04066fdb
 SHA512 
854ed7acc99920f24ecf11e0da807e5a2a162eeda55db971aba63a03f0da2c13b20ec0564a906c4b0e415bd8258b273a10208c7abc0704f2ceea773aa6148a79

diff --git a/sys-fs/squashfs-tools/squashfs-tools-3.2_p2.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-3.2_p2.ebuild
deleted file mode 100644
index 33c9be8386e..000
--- a/sys-fs/squashfs-tools/squashfs-tools-3.2_p2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit toolchain-funcs
-
-MY_PV=${PV/_p/-r}
-DESCRIPTION="Tool for creating compressed filesystem type squashfs"
-HOMEPAGE="http://squashfs.sourceforge.net/;
-SRC_URI="mirror://sourceforge/squashfs/squashfs${MY_PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="3.0" # squashfs filesystem version
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
-
-RDEPEND="sys-libs/zlib"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/squashfs${MY_PV}/squashfs-tools
-
-src_prepare() {
-   sed -i \
-   -e 's:-O2:$(CFLAGS):' \
-   -e '/-lz/s:$: $(LDFLAGS):' \
-   Makefile || die
-
-   echo "struct dir_info; `grep '^int dir_scan2' mksquashfs.c`;" >> 
global.h
-}
-
-src_compile() {
-   emake CC="$(tc-getCC)"
-}
-
-src_install() {
-   newbin mksquashfs mksquashfs-${SLOT}
-   newbin unsquashfs unsquashfs-${SLOT}
-   cd ..
-   dodoc README ACKNOWLEDGEMENTS CHANGES PERFORMANCE.README README-3.2
-}

diff --git a/sys-fs/squashfs-tools/squashfs-tools-3.4.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-3.4.ebuild
deleted file mode 100644
index ef2cd80bfd2..000
--- a/sys-fs/squashfs-tools/squashfs-tools-3.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit toolchain-funcs
-
-MY_PV=${PV/_p/-r}
-DESCRIPTION="Tool for creating compressed filesystem type squashfs"
-HOMEPAGE="http://squashfs.sourceforge.net/;
-SRC_URI="mirror://sourceforge/squashfs/squashfs${MY_PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="3.1" # squashfs filesystem version
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
-
-RDEPEND="sys-libs/zlib"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/squashfs${MY_PV}/squashfs-tools
-
-src_prepare() {
-   sed -i \
-   -e 's:-O2:$(CFLAGS):' \
-   

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

2019-03-10 Thread William Hubbs
commit: 5e8c08cc11b0e6907dcb14c7408241cb8eb848b8
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Mar 11 01:43:58 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Mar 11 02:31:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e8c08cc

dev-python/cherrypy: 17.4.1-r1 revbump to fix dependencies

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

 dev-python/cherrypy/cherrypy-17.4.1-r1.ebuild | 58 +++
 1 file changed, 58 insertions(+)

diff --git a/dev-python/cherrypy/cherrypy-17.4.1-r1.ebuild 
b/dev-python/cherrypy/cherrypy-17.4.1-r1.ebuild
new file mode 100644
index 000..ee92ccc9ea2
--- /dev/null
+++ b/dev-python/cherrypy/cherrypy-17.4.1-r1.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy3 )
+
+inherit distutils-r1
+
+MY_P="CherryPy-${PV}"
+
+DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework"
+HOMEPAGE="https://www.cherrypy.org https://pypi.org/project/CherryPy/;
+SRC_URI="mirror://pypi/C/CherryPy/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="ssl"
+# IUSE="ssl test"
+# See below to see what needs to be done before testing can be enabled
+# for this release.
+RESTRICT="test"
+
+RDEPEND=">=dev-python/six-1.11.0[${PYTHON_USEDEP}]
+>=dev-python/cheroot-6.2.4[${PYTHON_USEDEP}]
+   >=dev-python/portend-2.1.1[${PYTHON_USEDEP}]
+   dev-python/more-itertools[${PYTHON_USEDEP}]
+   dev-python/zc-lockfile[${PYTHON_USEDEP}]
+   dev-python/contextlib2[${PYTHON_USEDEP}]
+   ssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]"
+   # These will need to be checked for testing and some will need to be
+   # added to portage.
+   # test? (
+#  dev-python/coverage[${PYTHON_USEDEP}]
+#  dev-python/codecov[${PYTHON_USEDEP}]
+#  dev-python/objgraph[${PYTHON_USEDEP}]
+#  dev-python/pytest[${PYTHON_USEDEP}]
+#  dev-python/pytest-cov[${PYTHON_USEDEP}]
+#  dev-python/pytest-sugar[${PYTHON_USEDEP}]
+#  dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
+#  dev-python/path-py[${PYTHON_USEDEP}]
+#  )"
+S="${WORKDIR}/${MY_P}"
+
+python_prepare_all() {
+   # UnicodeEncodeError: 'ascii' codec can't encode character u'\u2603' in 
position 0: ordinal not in range(128)
+   sed -e 
's|@pytest.mark.xfail(py27_on_windows|@pytest.mark.xfail(sys.version_info < 
(3,)|' \
+   -i cherrypy/test/test_static.py || die
+   distutils-r1_python_prepare_all
+}
+
+# python_test() {
+#  py.test -v || die "tests failed under ${EPTYHON}"
+# }



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

2019-03-10 Thread William Hubbs
commit: a84dee9d9eb1914247ad70b7bc79b8373261389b
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Mar 11 02:25:17 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Mar 11 02:32:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84dee9d

dev-python/cherrypy: 18.1.0-r1 revbump for dependencies

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

 dev-python/cherrypy/cherrypy-18.1.0-r1.ebuild | 58 +++
 1 file changed, 58 insertions(+)

diff --git a/dev-python/cherrypy/cherrypy-18.1.0-r1.ebuild 
b/dev-python/cherrypy/cherrypy-18.1.0-r1.ebuild
new file mode 100644
index 000..ec04a4d67c2
--- /dev/null
+++ b/dev-python/cherrypy/cherrypy-18.1.0-r1.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,6,7} pypy3 )
+
+inherit distutils-r1
+
+MY_P="CherryPy-${PV}"
+
+DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework"
+HOMEPAGE="https://www.cherrypy.org https://pypi.org/project/CherryPy/;
+SRC_URI="mirror://pypi/C/CherryPy/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="ssl"
+# IUSE="ssl test"
+# See below to see what needs to be done before testing can be enabled
+# for this release.
+RESTRICT="test"
+
+RDEPEND=">=dev-python/cheroot-6.2.4[${PYTHON_USEDEP}]
+   >=dev-python/portend-2.1.1[${PYTHON_USEDEP}]
+   dev-python/more-itertools[${PYTHON_USEDEP}]
+   dev-python/zc-lockfile[${PYTHON_USEDEP}]
+   ssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]"
+   # These will need to be checked for testing and some will need to be
+   # added to portage.
+   # test? (
+#  dev-python/coverage[${PYTHON_USEDEP}]
+#  dev-python/codecov[${PYTHON_USEDEP}]
+#  dev-python/objgraph[${PYTHON_USEDEP}]
+#  dev-python/pytest[${PYTHON_USEDEP}]
+#  dev-python/pytest-cov[${PYTHON_USEDEP}]
+#  dev-python/pytest-services[${PYTHON_USEDEP}]
+#  dev-python/pytest-sugar[${PYTHON_USEDEP}]
+#  dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
+#  dev-python/path-py[${PYTHON_USEDEP}]
+#  dev-python/requests-toolbelt[${PYTHON_USEDEP}]
+#  )"
+S="${WORKDIR}/${MY_P}"
+
+python_prepare_all() {
+   # UnicodeEncodeError: 'ascii' codec can't encode character u'\u2603' in 
position 0: ordinal not in range(128)
+   sed -e 
's|@pytest.mark.xfail(py27_on_windows|@pytest.mark.xfail(sys.version_info < 
(3,)|' \
+   -i cherrypy/test/test_static.py || die
+   distutils-r1_python_prepare_all
+}
+
+# python_test() {
+#  py.test -v || die "tests failed under ${EPTYHON}"
+# }



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

2019-03-10 Thread William Hubbs
commit: e8f3bce6ba5d28067b73ec8cbb92477504bef3a0
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Mar 11 02:30:19 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Mar 11 02:32:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8f3bce6

dev-python/cherrypy: remove broken 18.1.0

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

 dev-python/cherrypy/cherrypy-18.1.0.ebuild | 44 --
 1 file changed, 44 deletions(-)

diff --git a/dev-python/cherrypy/cherrypy-18.1.0.ebuild 
b/dev-python/cherrypy/cherrypy-18.1.0.ebuild
deleted file mode 100644
index db0bd2c75f8..000
--- a/dev-python/cherrypy/cherrypy-18.1.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy3 )
-
-inherit distutils-r1
-
-MY_P="CherryPy-${PV}"
-
-DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework"
-HOMEPAGE="https://www.cherrypy.org https://pypi.org/project/CherryPy/;
-SRC_URI="mirror://pypi/C/CherryPy/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
-IUSE="test"
-
-RDEPEND=">=dev-python/cheroot-5.9.1[${PYTHON_USEDEP}]
-   >=dev-python/portend-2.1.1[${PYTHON_USEDEP}]
-   >=dev-python/six-1.11.0[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? (
-   dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
-   dev-python/path-py[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-cov[${PYTHON_USEDEP}]
-   )"
-S="${WORKDIR}/${MY_P}"
-
-python_prepare_all() {
-   # UnicodeEncodeError: 'ascii' codec can't encode character u'\u2603' in 
position 0: ordinal not in range(128)
-   sed -e 
's|@pytest.mark.xfail(py27_on_windows|@pytest.mark.xfail(sys.version_info < 
(3,)|' \
-   -i cherrypy/test/test_static.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   py.test -v || die "tests failed under ${EPTYHON}"
-}



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

2019-03-10 Thread William Hubbs
commit: a13ffac40a3ee5e20fb3b918ebc38ca4e45d63ee
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Mar 11 01:46:47 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Mar 11 02:31:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a13ffac4

dev-python/cherrypy: remove 17.4.1 broken version

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

 dev-python/cherrypy/cherrypy-17.4.1.ebuild | 44 --
 1 file changed, 44 deletions(-)

diff --git a/dev-python/cherrypy/cherrypy-17.4.1.ebuild 
b/dev-python/cherrypy/cherrypy-17.4.1.ebuild
deleted file mode 100644
index db0bd2c75f8..000
--- a/dev-python/cherrypy/cherrypy-17.4.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy3 )
-
-inherit distutils-r1
-
-MY_P="CherryPy-${PV}"
-
-DESCRIPTION="CherryPy is a pythonic, object-oriented HTTP framework"
-HOMEPAGE="https://www.cherrypy.org https://pypi.org/project/CherryPy/;
-SRC_URI="mirror://pypi/C/CherryPy/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
-IUSE="test"
-
-RDEPEND=">=dev-python/cheroot-5.9.1[${PYTHON_USEDEP}]
-   >=dev-python/portend-2.1.1[${PYTHON_USEDEP}]
-   >=dev-python/six-1.11.0[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? (
-   dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
-   dev-python/path-py[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-cov[${PYTHON_USEDEP}]
-   )"
-S="${WORKDIR}/${MY_P}"
-
-python_prepare_all() {
-   # UnicodeEncodeError: 'ascii' codec can't encode character u'\u2603' in 
position 0: ordinal not in range(128)
-   sed -e 
's|@pytest.mark.xfail(py27_on_windows|@pytest.mark.xfail(sys.version_info < 
(3,)|' \
-   -i cherrypy/test/test_static.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   py.test -v || die "tests failed under ${EPTYHON}"
-}



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

2019-03-10 Thread Georgy Yakovlev
commit: a117d2176678a254bf571e9733edabe9e3fb4b81
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Mar 11 02:24:27 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Mar 11 02:24:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a117d217

media-video/mpv: sync live ebuild

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

 media-video/mpv/mpv-.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-video/mpv/mpv-.ebuild b/media-video/mpv/mpv-.ebuild
index 9607105c7d3..54630e9e978 100644
--- a/media-video/mpv/mpv-.ebuild
+++ b/media-video/mpv/mpv-.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
@@ -342,6 +342,8 @@ pkg_postinst() {
elog "please rebuild app-shells/mpv-bash-completion."
fi
 
+   elog "If you want URL support, please install net-misc/youtube-dl."
+
gnome2_icon_cache_update
xdg_desktop_database_update
 }



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

2019-03-10 Thread Mike Gilbert
commit: a58a376b3fb78121d905dd52c3fa2070ec2f1bd1
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Mar 11 01:16:35 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Mar 11 01:16:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a58a376b

sys-apps/systemd: remove old

Closes: https://bugs.gentoo.org/677944
Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-apps/systemd/Manifest   |   6 -
 sys-apps/systemd/systemd-239-r2.ebuild  | 448 ---
 sys-apps/systemd/systemd-239-r3.ebuild  | 448 ---
 sys-apps/systemd/systemd-240-r3.ebuild  | 457 ---
 sys-apps/systemd/systemd-240-r4.ebuild  | 457 ---
 sys-apps/systemd/systemd-241.ebuild | 459 
 sys-apps/systemd/systemd-241_rc1.ebuild | 459 
 sys-apps/systemd/systemd-241_rc2.ebuild | 459 
 8 files changed, 3193 deletions(-)

diff --git a/sys-apps/systemd/Manifest b/sys-apps/systemd/Manifest
index bdfb13b3bd4..30f8aac4e80 100644
--- a/sys-apps/systemd/Manifest
+++ b/sys-apps/systemd/Manifest
@@ -1,9 +1,3 @@
-DIST systemd-239-patches-1.tar.gz 20639 BLAKE2B 
9b03367becdef20d16056cdbbeaaefd9f10bf6c56528ad1a738684ab08d99a464411c23aea32d47307b0399f092107069d09ad42fb07217f8eca520cc4010b84
 SHA512 
757c7fc8f60ccf99d2803128a8c4d8b924093b150384569c5ffb3bc39f06728e99b18e2f77ff0f1c16bbd45bc75cbb0f385dac0135443d70c7dcd9cc1e84a490
 DIST systemd-239-patches-2.tar.gz 33416 BLAKE2B 
9602d101cbac65d3b2490f28308e843c28fcaea848dd09005abef0da0bc79ba0766a1cbe7c3cac63f796accddf0295b4eb946e601a201f7e81a48bd1720051ca
 SHA512 
5f5a764d317c43c6b1854171a753eafaca006e12e4f91c81e6ba1d50e80bbbaca23c900fba417264bf9f0d827a73aca71a6da8f2a2043aaaefefed62f5a92b23
 DIST systemd-239.tar.gz 7157293 BLAKE2B 
975f6215c8bb6662d6e161f637e1fece22930c0190b3c31a8fc4cb1a10600546a252704ac95590d9d14e495fcd06082a590e6d755e36603a41b3a396d579d8b0
 SHA512 
fd44590dfd148504c5ed1e67521efce50d84b627b7fc77015fa95dfa76d7a42297c56cc89eff40181809732024b16d48f2a87038cf435e0c63bc2b95ecd86b0f
-DIST systemd-240-patches-2.tar.gz 28099 BLAKE2B 
2e497ed729e2482ef3cc0d010504314f2982a9af19341d6f4efa06b24b3c01f9f69996d43e5b484c641777d00a8a0ba4508bcf6a0296a63d4fc57440f2d3708c
 SHA512 
1be0432d918a4866056ffc65de6e8b412784e5018490c0349a98bba801536d2689c5b2ce41ddd5adbb945aac71bfd0168f94c1daf0788661cd83b159a8c975b8
-DIST systemd-240-patches-3.tar.gz 31952 BLAKE2B 
0677d24c4f4e1575dbd4953eb75734f0773671e4ffc2a8d848353a379f5ea2caf4f96620ed6303d98ec00a15367d5e2124b493aaef80b1a0fe118866a1c04ada
 SHA512 
e604e1de17bcd4c941036f12d2e3ae96dd6e86647db2b07576e8468405900b6e8af6a0e55a50c7e9b19704601930b8152c8ac506b2624e261ee0cd35dfc91a21
-DIST systemd-240.tar.gz 7582001 BLAKE2B 
cf53595a83424984dd9f533f7cd0c9905366c5a52ab946fc45ff7fd1bcc85978ff654720113641534e40c0f9a1ad1c9628255778616770762950426789f659c3
 SHA512 
da7467781b16f65d868931ae88fd07554db61542aec7f11dbec9f7279b529f900301edfea2d3813ddb64eeb3fdcfb7be86e540c65212dd7cfdcdebbc80de2ff5
-DIST systemd-241-rc1.tar.gz 7617965 BLAKE2B 
6c491297b71ad3c473d644de04bb334f902ee4110d647b654c5452f34401cfc11c7564b290022072555f3fbd46674ce009f587622f412f8a66330a7089db34c5
 SHA512 
168ba80d6e8abadbf1ed84270f2b02e257f1490b61021bb6fb704d9b5fad2670b63e0fc0cb26071e8d56c993faa30274e80d53cf49154cce2b609f47c73b30e0
-DIST systemd-241-rc2.tar.gz 7619504 BLAKE2B 
610940b3141d36a0534cf477d303eb681f418f8c04d7e9ff1d28832d02c05d68195aec108b15392662b134020c28df5b35f6c1c85f8eea8e7090cdc210ce5e26
 SHA512 
69932b1e5d48fbf6fd650a91354763b1e7e8d490def98a011d6377ee8623abc21244f2c8ddd97a500c4d3e6ab11bae2a6148ddc84e325d75a0273b3d456d8f41
 DIST systemd-241.tar.gz 7640538 BLAKE2B 
69d7196fee0d0ad06ea8d7c78b0299cc17517ecce3ca4c0b1181a3fbb13bc2627629156785051e2ff427dcc21414f7a078724c6409ebaa431618e4799ebcd50a
 SHA512 
a7757574590e8aa37e1291ea0b2c5eb03a8d8062fe9462fa5b0bf50830c933e2b301d106c70d904f94afc0aa8e43a8acfd11926dfa25b1b89174580e491e545e

diff --git a/sys-apps/systemd/systemd-239-r2.ebuild 
b/sys-apps/systemd/systemd-239-r2.ebuild
deleted file mode 100644
index c88520b0406..000
--- a/sys-apps/systemd/systemd-239-r2.ebuild
+++ /dev/null
@@ -1,448 +0,0 @@
-# Copyright 2011-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} ==  ]]; then
-   EGIT_REPO_URI="https://github.com/systemd/systemd.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/systemd/systemd/archive/v${PV}/${P}.tar.gz
-   https://dev.gentoo.org/~floppym/dist/${P}-patches-1.tar.gz;
-   KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86"
-fi
-
-PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} )
-
-inherit bash-completion-r1 linux-info meson multilib-minimal ninja-utils pam 
python-any-r1 systemd toolchain-funcs udev user
-

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

2019-03-10 Thread Andreas Sturmlechner
commit: 923a081a450ef1ad317a6c04cc9b8e0d7a8a657b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Mar 11 00:22:14 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Mar 11 00:27:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=923a081a

app-office/libreoffice: Populate BDEPEND

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

 app-office/libreoffice/libreoffice-6.2..ebuild | 51 +++---
 app-office/libreoffice/libreoffice-.ebuild | 51 +++---
 2 files changed, 50 insertions(+), 52 deletions(-)

diff --git a/app-office/libreoffice/libreoffice-6.2..ebuild 
b/app-office/libreoffice/libreoffice-6.2..ebuild
index a8c322b1441..33dcacf28ec 100644
--- a/app-office/libreoffice/libreoffice-6.2..ebuild
+++ b/app-office/libreoffice/libreoffice-6.2..ebuild
@@ -79,6 +79,14 @@ SLOT="0"
 [[ ${MY_PV} == ** ]] || \
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 
+BDEPEND="
+   dev-util/intltool
+   sys-devel/bison
+   sys-devel/flex
+   sys-devel/gettext
+   virtual/pkgconfig
+   odk? ( >=app-doc/doxygen-1.8.4 )
+"
 COMMON_DEPEND="${PYTHON_DEPS}
app-arch/unzip
app-arch/zip
@@ -192,26 +200,6 @@ COMMON_DEPEND="${PYTHON_DEPS}
pdfimport? ( app-text/poppler:=[cxx] )
postgres? ( >=dev-db/postgresql-9.0:*[kerberos] )
 "
-
-RDEPEND="${COMMON_DEPEND}
-   !app-office/libreoffice-bin
-   !app-office/libreoffice-bin-debug
-   !app-office/openoffice
-   media-fonts/liberation-fonts
-   || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools )
-   java? ( >=virtual/jre-1.6 )
-   kde? ( kde-frameworks/breeze-icons:* )
-   vlc? ( media-video/vlc )
-"
-
-if [[ ${MY_PV} != ** ]] && [[ ${PV} != *_* ]]; then
-   PDEPEND="=app-office/libreoffice-l10n-$(ver_cut 1-2)*"
-else
-   # Translations are not reliable on live ebuilds
-   # rather force people to use english only.
-   PDEPEND="!app-office/libreoffice-l10n"
-fi
-
 # FIXME: cppunit should be moved to test conditional
 #after everything upstream is under gbuild
 #as dmake execute tests right away
@@ -221,14 +209,9 @@ DEPEND="${COMMON_DEPEND}
dev-perl/Archive-Zip
>=dev-util/cppunit-1.14.0
>=dev-util/gperf-3
-   dev-util/intltool
>=dev-util/mdds-1.4.1:1=
media-libs/glm
-   sys-devel/bison
-   sys-devel/flex
-   sys-devel/gettext
sys-devel/ucpp
-   virtual/pkgconfig
x11-base/xorg-proto
x11-libs/libXt
x11-libs/libXtst
@@ -236,7 +219,6 @@ DEPEND="${COMMON_DEPEND}
dev-java/ant-core
>=virtual/jdk-1.6
)
-   odk? ( >=app-doc/doxygen-1.8.4 )
test? (
app-crypt/gnupg
dev-util/cppunit
@@ -244,6 +226,23 @@ DEPEND="${COMMON_DEPEND}
media-fonts/liberation-fonts
)
 "
+RDEPEND="${COMMON_DEPEND}
+   !app-office/libreoffice-bin
+   !app-office/libreoffice-bin-debug
+   !app-office/openoffice
+   media-fonts/liberation-fonts
+   || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools )
+   java? ( >=virtual/jre-1.6 )
+   kde? ( kde-frameworks/breeze-icons:* )
+   vlc? ( media-video/vlc )
+"
+if [[ ${MY_PV} != ** ]] && [[ ${PV} != *_* ]]; then
+   PDEPEND="=app-office/libreoffice-l10n-$(ver_cut 1-2)*"
+else
+   # Translations are not reliable on live ebuilds
+   # rather force people to use english only.
+   PDEPEND="!app-office/libreoffice-l10n"
+fi
 
 PATCHES=(
# master branch

diff --git a/app-office/libreoffice/libreoffice-.ebuild 
b/app-office/libreoffice/libreoffice-.ebuild
index 375aca4c6b2..33af7c8cd64 100644
--- a/app-office/libreoffice/libreoffice-.ebuild
+++ b/app-office/libreoffice/libreoffice-.ebuild
@@ -79,6 +79,14 @@ SLOT="0"
 [[ ${MY_PV} == ** ]] || \
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 
+BDEPEND="
+   dev-util/intltool
+   sys-devel/bison
+   sys-devel/flex
+   sys-devel/gettext
+   virtual/pkgconfig
+   odk? ( >=app-doc/doxygen-1.8.4 )
+"
 COMMON_DEPEND="${PYTHON_DEPS}
app-arch/unzip
app-arch/zip
@@ -192,26 +200,6 @@ COMMON_DEPEND="${PYTHON_DEPS}
pdfimport? ( app-text/poppler:=[cxx] )
postgres? ( >=dev-db/postgresql-9.0:*[kerberos] )
 "
-
-RDEPEND="${COMMON_DEPEND}
-   !app-office/libreoffice-bin
-   !app-office/libreoffice-bin-debug
-   !app-office/openoffice
-   media-fonts/liberation-fonts
-   || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools )
-   java? ( >=virtual/jre-1.6 )
-   kde? ( kde-frameworks/breeze-icons:* )
-   vlc? ( media-video/vlc )
-"
-
-if [[ ${MY_PV} != ** ]] && [[ ${PV} != *_* ]]; then
-   PDEPEND="=app-office/libreoffice-l10n-$(ver_cut 1-2)*"
-else
-   # 

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

2019-03-10 Thread Andreas Sturmlechner
commit: 4a24e75d28ad26c6eac63e7631b6d416b54e9214
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Mar 11 00:36:12 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Mar 11 00:36:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a24e75d

dev-qt/qtxmlpatterns: Drop 5.12.1 (r0)

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

 dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1.ebuild | 21 -
 1 file changed, 21 deletions(-)

diff --git a/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1.ebuild 
b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1.ebuild
deleted file mode 100644
index b88c40bc931..000
--- a/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit qt5-build
-
-DESCRIPTION="XPath, XQuery, XSLT, and XML Schema validation library for the 
Qt5 framework"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
-fi
-
-IUSE=""
-
-DEPEND="
-   ~dev-qt/qtcore-${PV}
-   ~dev-qt/qtnetwork-${PV}
-"
-RDEPEND="${DEPEND}
-   !

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

2019-03-10 Thread Andreas Sturmlechner
commit: 359fc371b09aa331917b8f5af3b0019bed1252e0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Mar 11 00:35:13 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Mar 11 00:35:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=359fc371

dev-qt/qtxmlpatterns: Add missing DEPEND on dev-qt/qtdeclarative

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

 dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1-r1.ebuild | 20 
 1 file changed, 20 insertions(+)

diff --git a/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1-r1.ebuild 
b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1-r1.ebuild
new file mode 100644
index 000..c18dcf034f8
--- /dev/null
+++ b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.1-r1.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit qt5-build
+
+DESCRIPTION="XPath, XQuery, XSLT, and XML Schema validation library for the 
Qt5 framework"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+fi
+
+IUSE=""
+
+DEPEND="
+   ~dev-qt/qtcore-${PV}
+   ~dev-qt/qtnetwork-${PV}
+   ~dev-qt/qtdeclarative-${PV}
+"
+RDEPEND="${DEPEND}"



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

2019-03-10 Thread Andreas Sturmlechner
commit: 767b00d3906d234b1165258eb0c9c59dc73f7bb7
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Mar  3 17:32:21 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Mar 11 00:17:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=767b00d3

app-office/libreoffice: EAPI-7 bump

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

 app-office/libreoffice/libreoffice-6.2..ebuild | 10 +-
 app-office/libreoffice/libreoffice-.ebuild | 10 +-
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/app-office/libreoffice/libreoffice-6.2..ebuild 
b/app-office/libreoffice/libreoffice-6.2..ebuild
index 4b4ea02af44..a8c322b1441 100644
--- a/app-office/libreoffice/libreoffice-6.2..ebuild
+++ b/app-office/libreoffice/libreoffice-6.2..ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
 PYTHON_REQ_USE="threads(+),xml"
@@ -21,7 +21,7 @@ BRANDING="${PN}-branding-gentoo-0.8.tar.xz"
 PATCHSET="${PN}-6.2.1.1-patchset-01.tar.xz"
 
 [[ ${MY_PV} == ** ]] && inherit git-r3
-inherit autotools bash-completion-r1 check-reqs eapi7-ver flag-o-matic 
java-pkg-opt-2 multiprocessing pax-utils python-single-r1 qmake-utils 
toolchain-funcs xdg
+inherit autotools bash-completion-r1 check-reqs flag-o-matic java-pkg-opt-2 
multiprocessing pax-utils python-single-r1 qmake-utils toolchain-funcs xdg
 
 DESCRIPTION="A full office productivity suite"
 HOMEPAGE="https://www.libreoffice.org;
@@ -554,7 +554,7 @@ src_install() {
insinto /usr/$(get_libdir)/${PN}/program
newins "${WORKDIR}/branding-sofficerc" sofficerc
dodir /etc/env.d
-   echo 
"CONFIG_PROTECT=/usr/$(get_libdir)/${PN}/program/sofficerc" > 
"${ED%/}"/etc/env.d/99${PN} || die
+   echo 
"CONFIG_PROTECT=/usr/$(get_libdir)/${PN}/program/sofficerc" > 
"${ED}"/etc/env.d/99${PN} || die
fi
 
# Hack for offlinehelp, this needs fixing upstream at some point.
@@ -563,8 +563,8 @@ src_install() {
insinto /usr/$(get_libdir)/libreoffice/help
doins xmlhelp/util/*.xsl
 
-   pax-mark -m "${ED%/}"/usr/$(get_libdir)/libreoffice/program/soffice.bin
-   pax-mark -m "${ED%/}"/usr/$(get_libdir)/libreoffice/program/unopkg.bin
+   pax-mark -m "${ED}"/usr/$(get_libdir)/libreoffice/program/soffice.bin
+   pax-mark -m "${ED}"/usr/$(get_libdir)/libreoffice/program/unopkg.bin
 }
 
 pkg_preinst() {

diff --git a/app-office/libreoffice/libreoffice-.ebuild 
b/app-office/libreoffice/libreoffice-.ebuild
index 66452c403fb..375aca4c6b2 100644
--- a/app-office/libreoffice/libreoffice-.ebuild
+++ b/app-office/libreoffice/libreoffice-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
 PYTHON_REQ_USE="threads(+),xml"
@@ -21,7 +21,7 @@ BRANDING="${PN}-branding-gentoo-0.8.tar.xz"
 # PATCHSET="${P}-patchset-01.tar.xz"
 
 [[ ${MY_PV} == ** ]] && inherit git-r3
-inherit autotools bash-completion-r1 check-reqs eapi7-ver flag-o-matic 
java-pkg-opt-2 multiprocessing pax-utils python-single-r1 qmake-utils 
toolchain-funcs xdg
+inherit autotools bash-completion-r1 check-reqs flag-o-matic java-pkg-opt-2 
multiprocessing pax-utils python-single-r1 qmake-utils toolchain-funcs xdg
 
 DESCRIPTION="A full office productivity suite"
 HOMEPAGE="https://www.libreoffice.org;
@@ -552,7 +552,7 @@ src_install() {
insinto /usr/$(get_libdir)/${PN}/program
newins "${WORKDIR}/branding-sofficerc" sofficerc
dodir /etc/env.d
-   echo 
"CONFIG_PROTECT=/usr/$(get_libdir)/${PN}/program/sofficerc" > 
"${ED%/}"/etc/env.d/99${PN} || die
+   echo 
"CONFIG_PROTECT=/usr/$(get_libdir)/${PN}/program/sofficerc" > 
"${ED}"/etc/env.d/99${PN} || die
fi
 
# Hack for offlinehelp, this needs fixing upstream at some point.
@@ -561,8 +561,8 @@ src_install() {
insinto /usr/$(get_libdir)/libreoffice/help
doins xmlhelp/util/*.xsl
 
-   pax-mark -m "${ED%/}"/usr/$(get_libdir)/libreoffice/program/soffice.bin
-   pax-mark -m "${ED%/}"/usr/$(get_libdir)/libreoffice/program/unopkg.bin
+   pax-mark -m "${ED}"/usr/$(get_libdir)/libreoffice/program/soffice.bin
+   pax-mark -m "${ED}"/usr/$(get_libdir)/libreoffice/program/unopkg.bin
 }
 
 pkg_preinst() {



[gentoo-commits] repo/gentoo:master commit in: sci-astronomy/kstars/

2019-03-10 Thread Andreas Sturmlechner
commit: f20d612c60a0d72662dc7221061b533e982f5243
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Mar 11 00:07:08 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Mar 11 00:07:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f20d612c

sci-astronomy/kstars: Drop 3.1.0

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

 sci-astronomy/kstars/Manifest|  1 -
 sci-astronomy/kstars/kstars-3.1.0.ebuild | 85 
 2 files changed, 86 deletions(-)

diff --git a/sci-astronomy/kstars/Manifest b/sci-astronomy/kstars/Manifest
index d7aa0dc2816..de72803b0b7 100644
--- a/sci-astronomy/kstars/Manifest
+++ b/sci-astronomy/kstars/Manifest
@@ -1,3 +1,2 @@
 DIST kstars-3.0.0.tar.xz 63604404 BLAKE2B 
23754eb1d29b9e7793fac71869045a4e172f8c9aa32dc55d529ef40bf03251d035a2edc68508d887c204389364c2dceba2c9984985bf2ddcc357fc835924f215
 SHA512 
e574c2529898d66bc79e1cf88ce778dddeedfdfed4ea23921219226121b60be042a94e6865e9076efff038a0a529587901f9a4ab2cd5b658440a8bf39c0c4d08
-DIST kstars-3.1.0.tar.xz 67769080 BLAKE2B 
c9afed7673a673fe595e20aad260d3bbe06a3541b6f8bea75c476db6b940977a186ebe18864353cafdb4eccc734dd9c3cfc9f3075e0b489d3089bc8d7a495bd0
 SHA512 
32b7685580eb71224d45d0a3fd213abeab7ddcbc90c58065e4d82724a1d29c527851cc7b90fb7fe36319a83200018d2c90d79549298436891891db44c187afb1
 DIST kstars-3.1.1.tar.xz 70308140 BLAKE2B 
97c32773bb600b6601f6b0f64cb951d9931760f3f83bd40e9968a49643c26af666756fde7b8fb59c634cdfdd7391d4ea8674e99acbe0955bc07b194f4285
 SHA512 
f482a0bf82eda596a6da9ab8641059aaae8c1983b3c28e963b18665aec3d6418472997aa3d94f6cdff496a95f4151f4b5ca2171bed4c9ff3f7f95177a8fd67c0

diff --git a/sci-astronomy/kstars/kstars-3.1.0.ebuild 
b/sci-astronomy/kstars/kstars-3.1.0.ebuild
deleted file mode 100644
index 6e6e693abac..000
--- a/sci-astronomy/kstars/kstars-3.1.0.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_HANDBOOK="forceoptional"
-PYTHON_COMPAT=( python2_7 )
-inherit kde5 python-single-r1
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Desktop Planetarium"
-HOMEPAGE="https://www.kde.org/applications/education/kstars 
https://edu.kde.org/kstars/;
-IUSE="fits indi +password raw wcs"
-
-REQUIRED_USE="indi? ( fits ) ${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep kauth)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kplotting)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtdatavis3d)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtsql)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwebsockets)
-   $(add_qt_dep qtwidgets)
-   sys-libs/zlib
-   fits? ( sci-libs/cfitsio )
-   indi? ( >=sci-libs/indilib-1.7.5 )
-   password? ( dev-libs/qtkeychain:= )
-   raw? ( media-libs/libraw:= )
-   wcs? ( sci-astronomy/wcslib )
-"
-# TODO: Add back when re-enabled by upstream
-#  opengl? (
-#  $(add_qt_dep qtopengl)
-#  virtual/opengl
-#  )
-DEPEND="${COMMON_DEPEND}
-   $(add_qt_dep qtconcurrent)
-   dev-cpp/eigen:3
-"
-RDEPEND="${COMMON_DEPEND}
-   ${PYTHON_DEPS}
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DFETCH_TRANSLATIONS=OFF
-   $(cmake-utils_use_find_package fits CFitsio)
-   $(cmake-utils_use_find_package indi INDI)
-   $(cmake-utils_use_find_package password Qt5Keychain)
-   $(cmake-utils_use_find_package raw LibRaw)
-   $(cmake-utils_use_find_package wcs WCSLIB)
-   )
-
-   kde5_src_configure
-}
-
-pkg_postinst () {
-   kde5_pkg_postinst
-
-   if [[ -z "${REPLACING_VERSIONS}" ]] && ! has_version "x11-misc/xplanet" 
; then
-   elog "${PN} has optional runtime support for x11-misc/xplanet"
-   fi
-   # same for AstrometryNet, which is not packaged.
-}



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

2019-03-10 Thread Andreas Sturmlechner
commit: 990ec2517004441e2dfce5efc446f67c7ce0d438
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Mar 11 00:04:21 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Mar 11 00:04:21 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=990ec251

sets: Drop obsolete kde-frameworks-5.5

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sets/kde-frameworks-5.55 | 80 
 1 file changed, 80 deletions(-)

diff --git a/sets/kde-frameworks-5.55 b/sets/kde-frameworks-5.55
deleted file mode 100644
index b81c47f19f..00
--- a/sets/kde-frameworks-5.55
+++ /dev/null
@@ -1,80 +0,0 @@
-

[gentoo-commits] proj/kde:master commit in: Documentation/package.accept_keywords/.kde-frameworks-5.55/, ...

2019-03-10 Thread Andreas Sturmlechner
commit: 5994f226eaf8754cd4908627572f7fb54609d583
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Mar 11 00:03:51 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Mar 11 00:03:51 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5994f226

Documentation: Drop KDE Frameworks 5.55

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 Documentation/maintainers/regenerate-files |  2 +-
 .../.kde-frameworks-5.55/_HEADER_  |  2 -
 .../.kde-frameworks-5.55/kde-frameworks-5.55   |  1 -
 .../.kde-frameworks-5.55/more-deps |  0
 .../kde-frameworks-5.55.keywords   | 83 --
 Documentation/package.mask/kde-frameworks-5.55 | 83 --
 .../package.unmask/.kde-frameworks-5.55/_HEADER_   |  2 -
 .../.kde-frameworks-5.55/kde-frameworks-5.55   |  1 -
 Documentation/package.unmask/kde-frameworks-5.55   | 83 --
 9 files changed, 1 insertion(+), 256 deletions(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index d2e714a25d..402674cb1d 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -9,7 +9,7 @@ cd "$(dirname $0)"
 SCRIPT=$(basename $0)
 HEADER="# Autogenerated by ${SCRIPT}, DO NOT EDIT."
 
-KF_RELEASES="5.54 5.55 5.56"
+KF_RELEASES="5.54 5.56"
 KF_RELEASE=${KF_RELEASE:-5.54}
 
 PLASMA_RELEASES="5.14 5.15"

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.55/_HEADER_ 
b/Documentation/package.accept_keywords/.kde-frameworks-5.55/_HEADER_
deleted file mode 100644
index b99320391a..00
--- a/Documentation/package.accept_keywords/.kde-frameworks-5.55/_HEADER_
+++ /dev/null
@@ -1,2 +0,0 @@
-# You can use this file to keyword/unkeyword the KDE Frameworks 5.55 release.
-# Edit Documentation/package.accept_keywords/.kde-frameworks-5.55/ files 
instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.55/kde-frameworks-5.55
 
b/Documentation/package.accept_keywords/.kde-frameworks-5.55/kde-frameworks-5.55
deleted file mode 12
index cf61328164..00
--- 
a/Documentation/package.accept_keywords/.kde-frameworks-5.55/kde-frameworks-5.55
+++ /dev/null
@@ -1 +0,0 @@
-../../../sets/kde-frameworks-5.55
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-frameworks-5.55/more-deps 
b/Documentation/package.accept_keywords/.kde-frameworks-5.55/more-deps
deleted file mode 100644
index e69de29bb2..00

diff --git a/Documentation/package.accept_keywords/kde-frameworks-5.55.keywords 
b/Documentation/package.accept_keywords/kde-frameworks-5.55.keywords
deleted file mode 100644
index 4b2dc35350..00
--- a/Documentation/package.accept_keywords/kde-frameworks-5.55.keywords
+++ /dev/null
@@ -1,83 +0,0 @@
-# Autogenerated by regenerate-files, DO NOT EDIT.
-# You can use this file to keyword/unkeyword the KDE Frameworks 5.55 release.
-# Edit Documentation/package.accept_keywords/.kde-frameworks-5.55/ files 
instead.
-

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

2019-03-10 Thread Andreas Sturmlechner
commit: acc479bc0d162748a0f6d0e1e0db8404502b1ce5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 23:12:00 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 23:57:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc479bc

media-sound/sidplay: Drop 2.0.9 (r0)

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

 media-sound/sidplay/sidplay-2.0.9.ebuild | 22 --
 1 file changed, 22 deletions(-)

diff --git a/media-sound/sidplay/sidplay-2.0.9.ebuild 
b/media-sound/sidplay/sidplay-2.0.9.ebuild
deleted file mode 100644
index e9a2c0d50f3..000
--- a/media-sound/sidplay/sidplay-2.0.9.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="C64 SID player"
-HOMEPAGE="http://sidplay2.sourceforge.net/;
-SRC_URI="mirror://sourceforge/sidplay2/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ppc ~sparc x86"
-IUSE=""
-
-RDEPEND=">=media-libs/libsidplay-2.1"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}/${P}-gcc43.patch"
-   "${FILESDIR}/${P}-gcc44.patch"
-)



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

2019-03-10 Thread Andreas Sturmlechner
commit: 9f6496b48979b629f85c52ad88ac4ad646235c28
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 23:12:30 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 23:57:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f6496b4

media-libs/libsidplayfp: Drop 1.8.1

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

 media-libs/libsidplayfp/Manifest  |  1 -
 media-libs/libsidplayfp/libsidplayfp-1.8.1.ebuild | 35 ---
 2 files changed, 36 deletions(-)

diff --git a/media-libs/libsidplayfp/Manifest b/media-libs/libsidplayfp/Manifest
index 58f626d5bbb..cabed56a86e 100644
--- a/media-libs/libsidplayfp/Manifest
+++ b/media-libs/libsidplayfp/Manifest
@@ -1,3 +1,2 @@
 DIST libsidplayfp-1.1.0.tar.gz 620228 BLAKE2B 
4e51092d84817c6c90ebb0327ba1816c6dae42868f6296f269cdeee1cdf8c226e71e799ab5d7a8609546cb07669dd80f5bd1fb70e14ef594ac128c43a5c7bf51
 SHA512 
fb0ce00d220772aaf97fc88b7ba3e764f1c94439c9d35713743726872cf6bc6524893489c5909be538f0630896bd328560c6b189d6d2d09932457671080ed76f
-DIST libsidplayfp-1.8.1.tar.gz 669478 BLAKE2B 
af6657ba2eceb40585f9900a72605455b50dc3afb36f091e05b8d9b557ae7dca13c2feb36ecf4a9dbab63e82d3d986a21008034b30189b5e9618518b68385284
 SHA512 
54731b33071a6bb7300b50c4d899706b71779977d8999302f7aae17d6a9406c9ec407baf87788cae073b04ce6b3f516d90af365b5d95d9dc5525c00cacf79ffd
 DIST libsidplayfp-1.8.8.tar.gz 673522 BLAKE2B 
2d31955e08b0b2b9558e033eff5d959acda08cdc5a3c2bb8c0aacb07c4b8c105812b4faa0af07dbc51255c72cfdf4893ce0da4d642dfc0f89ebc6ec96c51db51
 SHA512 
84fb24dcf6680dd0e2ec9cc39ddaf30707e4beb5136b7b496b1b85bf11580b1080fbb59b6ec3c1dc7b829fa0cd933db89ee3968518f23ef1a35d9253707d6392

diff --git a/media-libs/libsidplayfp/libsidplayfp-1.8.1.ebuild 
b/media-libs/libsidplayfp/libsidplayfp-1.8.1.ebuild
deleted file mode 100644
index 93296cb979e..000
--- a/media-libs/libsidplayfp/libsidplayfp-1.8.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils flag-o-matic versionator
-
-DESCRIPTION="A library for the sidplay2 fork with resid-fp"
-HOMEPAGE="https://sourceforge.net/projects/sidplay-residfp/;
-SRC_URI="mirror://sourceforge/sidplay-residfp/${PN}/$(get_version_component_range
 1-2)/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
-IUSE="cpu_flags_x86_mmx static-libs"
-
-src_prepare() {
-   # fix automagic. warning: modifying .ac triggers maintainer mode.
-   sed -i -e 's:doxygen:dIsAbLe&:' configure || die
-}
-
-src_configure() {
-   # relies on undocumented "uint" type in libstdc++
-   # bug 649832
-   append-cxxflags -std=c++14
-
-   econf \
-   $(use_enable static-libs static) \
-   $(use_enable cpu_flags_x86_mmx mmx)
-}
-
-src_install() {
-   default
-   prune_libtool_files
-}



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

2019-03-10 Thread Andreas Sturmlechner
commit: 21169c63dcade5d92012ede770ab43afda0d3449
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 23:14:46 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 23:57:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21169c63

media-gfx/jpegoptim: Drop 1.4.4

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

 media-gfx/jpegoptim/Manifest   |  1 -
 media-gfx/jpegoptim/jpegoptim-1.4.4.ebuild | 15 ---
 2 files changed, 16 deletions(-)

diff --git a/media-gfx/jpegoptim/Manifest b/media-gfx/jpegoptim/Manifest
index ed316f97357..750b9c16eb4 100644
--- a/media-gfx/jpegoptim/Manifest
+++ b/media-gfx/jpegoptim/Manifest
@@ -1,3 +1,2 @@
 DIST jpegoptim-1.4.3.tar.gz 98151 BLAKE2B 
6faf7097fbd72302707ca7f7b7f6bb02841d5f6433c6624254c09fcf389da99cc117ef1e58de941394e84b22d6cef06d54568de26558c8c9cb90b0c77595
 SHA512 
4495e9cf5af9ba41273bf23a4abea724adb19ddac373d5985c29fe65b227c0b23bf14baaa28fa8f8617370e9b9fe41b0d365ad19da67f34d32fa857232c7b09e
-DIST jpegoptim-1.4.4.tar.gz 98794 BLAKE2B 
32cc9a64b832ed994453f6f87c20c29ab23423cd94ecfa8894ad7ab3fd7aca2f7f54cc0eeb7148f768bf9378e79934c9c2ea6837f9348da6b8fad04b9be01dc1
 SHA512 
67879b5709a97c7b097e5eae6fe4047d330da8a445eab6e9528cb5f54d76db1bba058eff5c7342b68653e7d25e50ad923d5ce04799e1b3f1815d8b70affd46a3
 DIST jpegoptim-1.4.6.tar.gz 99004 BLAKE2B 
efe8d4155e6a111ef7f810ddfa9d2ddc2b58d2a54728b81698c47444eebde864662ecc397cd935af47070b84daf36b33815e87a2909fc8b6ba7ca2421eff9687
 SHA512 
1ebd4986cbfeae19c1e01521862c15de25e078ccb6483c29f0d89b9c8e308c93d8dca7a200a57dd5da793e481ca5dc9c4f0d84b252f5b9408b4e719c35d7e90f

diff --git a/media-gfx/jpegoptim/jpegoptim-1.4.4.ebuild 
b/media-gfx/jpegoptim/jpegoptim-1.4.4.ebuild
deleted file mode 100644
index 1fd5345af52..000
--- a/media-gfx/jpegoptim/jpegoptim-1.4.4.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Utility to optimize JPEG files"
-HOMEPAGE="https://www.kokkonen.net/tjko/projects.html 
https://github.com/tjko/jpegoptim;
-SRC_URI="https://www.kokkonen.net/tjko/src/${P}.tar.gz;
-
-LICENSE="GPL-2+" # While COPYING is plain GPL-2, COPYRIGHT is clarifying it to 
be 'any later version'
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
-RDEPEND="virtual/jpeg:0"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: media-sound/sidplayfp/

2019-03-10 Thread Andreas Sturmlechner
commit: e9ada342aae039c79c7b24a62271b8f42ee47f2c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 23:06:46 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 23:57:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9ada342

media-sound/sidplayfp: Drop 1.4.0

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

 media-sound/sidplayfp/Manifest   |  1 -
 media-sound/sidplayfp/sidplayfp-1.4.0.ebuild | 33 
 2 files changed, 34 deletions(-)

diff --git a/media-sound/sidplayfp/Manifest b/media-sound/sidplayfp/Manifest
index 9dfb6f45ad1..c32fb96f0fd 100644
--- a/media-sound/sidplayfp/Manifest
+++ b/media-sound/sidplayfp/Manifest
@@ -1,2 +1 @@
-DIST sidplayfp-1.4.0.tar.gz 181746 BLAKE2B 
ec21d900dbfaabe7d8e976acce0c4a53c60b4be8cfb6bc1e53005949f52a0dc28ff90e6087e57e77db571e987cdbc644eacbaaa3a78ef8868c4a48771e2c9603
 SHA512 
ac91cc26622b211408c50bcef14dcda78b8da81b43a8f334d91a02b89bd6dac0b3e3adaeb84545e6dbcef97354ba6c2dc555e4f0a2ff0298c6710fe1c6cbbd5f
 DIST sidplayfp-1.4.4.tar.gz 183711 BLAKE2B 
31ff002d4cd54e827117e2b2f86d253ee1e0bc07fb6ac777653109585c059311205e141e339a8d8cde08209e1c35776d6f0a0ccf0ad754f78eb5e5f4bafd3cfb
 SHA512 
8375a249da80a10d9c0ef55b35c5b047bf0249393026ad8ff25fb8a2660151f1d482fe581a85c6982b3c70ea257807ce17e1c6011874f10c64bec54a1982ec04

diff --git a/media-sound/sidplayfp/sidplayfp-1.4.0.ebuild 
b/media-sound/sidplayfp/sidplayfp-1.4.0.ebuild
deleted file mode 100644
index 997402d1740..000
--- a/media-sound/sidplayfp/sidplayfp-1.4.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils versionator
-
-DESCRIPTION="A sidplay2 fork with resid-fp"
-HOMEPAGE="https://sourceforge.net/projects/sidplay-residfp/;
-SRC_URI="mirror://sourceforge/sidplay-residfp/${PN}/$(get_version_component_range
 1-2)/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa oss pulseaudio"
-
-RDEPEND=">=media-libs/libsidplayfp-1.8.0
-   alsa? ( media-libs/alsa-lib )
-   pulseaudio? ( media-sound/pulseaudio )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   oss? ( virtual/os-headers )"
-
-DOCS=( AUTHORS README TODO )
-
-src_prepare() {
-   use alsa || { sed -i -e 's:alsa >= 1.0:dIsAbLe&:' configure || die; }
-   use pulseaudio || { sed -i -e 's:libpulse-simple >= 1.0:dIsAbLe&:' 
configure || die; }
-}
-
-src_configure() {
-   export ac_cv_header_linux_soundcard_h=$(usex oss)
-   econf
-}



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

2019-03-10 Thread Andreas Sturmlechner
commit: 31c76bd73f15e38afd5ac189231e8678fe491de5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 23:23:12 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 23:57:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c76bd7

dev-libs/appstream: 0.12.6 version bump

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

 dev-libs/appstream/Manifest|  1 +
 dev-libs/appstream/appstream-0.12.6.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-libs/appstream/Manifest b/dev-libs/appstream/Manifest
index be435a028d4..4a56dad69c7 100644
--- a/dev-libs/appstream/Manifest
+++ b/dev-libs/appstream/Manifest
@@ -1,2 +1,3 @@
 DIST AppStream-0.12.3.tar.xz 1940064 BLAKE2B 
a0160c4a922abfe315bdbfe6b7b32fea8d5eda5631347be4a39dcf102660ad26a3f40c5fed9dd0bdfb1b91956780ff7cf58e61d7f38b03d2f48a5bf67f2871f6
 SHA512 
3d54bb499e4056d341ffde2878549011708e6699b3ec58756ef2e4080864279ff5e5003224fcbad601007fd9296bb9ed062da7843e3e02272837ecc5d4c802f9
 DIST AppStream-0.12.4.tar.xz 1944416 BLAKE2B 
3a315b167084f9f6d8f50a86fa2853444a12beb63e3c7e77bf97c861e1a31dd7fd5ff9c4406d0da1b551b1fbb366531740cd4efdde354b857613507c06eabe62
 SHA512 
8a7a10b0c577a22b89e0b5505415d5b799f3316b4c87b0a2a9281e7b2672e041225896ac847781504b2828c5ed8a250e3a0558355df838d58e174a984b04e3d0
+DIST AppStream-0.12.6.tar.xz 1953604 BLAKE2B 
28b03a935b8c203f2ac2c52c1de8317cc899f2b81b00e83e2eb858dbd185a985ce608ba3f6b1c35f084b4ee91946a4870c89d6b0c0a4c6fd32a938558e3997f1
 SHA512 
c19cd89ba39aff5afa2ff6d5fca72581a8624463c33011b11036526db98392ff5aa6c0f599682e90fdee29b8732538cf96c20b66965016b96f60b3f899d722bb

diff --git a/dev-libs/appstream/appstream-0.12.6.ebuild 
b/dev-libs/appstream/appstream-0.12.6.ebuild
new file mode 100644
index 000..2b8019ab068
--- /dev/null
+++ b/dev-libs/appstream/appstream-0.12.6.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson xdg-utils
+
+if [[ ${PV} = ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/ximion/${PN};
+else
+   MY_PN="AppStream"
+   
SRC_URI="https://www.freedesktop.org/software/appstream/releases/${MY_PN}-${PV}.tar.xz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   S="${WORKDIR}/${MY_PN}-${PV}"
+fi
+
+DESCRIPTION="Cross-distro effort for providing metadata for software in the 
Linux ecosystem"
+HOMEPAGE="https://www.freedesktop.org/wiki/Distributions/AppStream/;
+
+LICENSE="LGPL-2.1+ GPL-2+"
+# check as_api_level
+SLOT="0/4"
+IUSE="apt +introspection qt5 test"
+
+BDEPEND="
+   app-text/docbook-xml-dtd:4.5
+   dev-libs/appstream-glib
+   dev-util/itstool
+   >=dev-util/meson-0.42.0
+   >=sys-devel/gettext-0.19.8
+   test? (
+   dev-qt/linguist-tools:5
+   qt5? ( dev-qt/qttest:5 )
+   )
+"
+DEPEND="
+   >=dev-libs/glib-2.54:2
+   dev-libs/libxml2:2
+   dev-libs/libyaml
+   dev-libs/snowball-stemmer
+   introspection? ( >=dev-libs/gobject-introspection-1.56:= )
+   qt5? ( dev-qt/qtcore:5 )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   sed -e "/^as_doc_target_dir/s/appstream/${PF}/" -i docs/meson.build || 
die
+   if ! use test; then
+   sed -e "/^subdir.*tests/s/^/#DONT /" -i {,qt/}meson.build || 
die # bug 675944
+   fi
+}
+
+src_configure() {
+   xdg_environment_reset
+
+   local emesonargs=(
+   -Dapidocs=false
+   -Ddocs=false
+   -Dmaintainer=false
+   -Dstemming=true
+   -Dvapi=false
+   -Dapt-support=$(usex apt true false)
+   -Dgir=$(usex introspection true false)
+   -Dqt=$(usex qt5 true false)
+   )
+
+   meson_src_configure
+}



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

2019-03-10 Thread Andreas Sturmlechner
commit: 7c3adbe560f7b304af93a007f76af914dd0212c8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 23:16:49 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 23:57:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c3adbe5

dev-util/clazy: Drop 1.4

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

 dev-util/clazy/Manifest |  1 -
 dev-util/clazy/clazy-1.4.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/dev-util/clazy/Manifest b/dev-util/clazy/Manifest
index 92cd0d77837..f331d9565a1 100644
--- a/dev-util/clazy/Manifest
+++ b/dev-util/clazy/Manifest
@@ -1,2 +1 @@
-DIST clazy-1.4.tar.xz 339104 BLAKE2B 
7740e85c8377f0757a545750d6d35d9b8b7207795a4b49f291a8c07a76e63e167fbd772f8689a1c83d66065a9a166f5dafa68a61923e46c17d6b6b4d74838106
 SHA512 
6458213a8db03c57dd5c80ecaa9403ce3fafb977e6f7433da728327af81ca52255b95aaceebfd90a43682c19ee63d4751bf23f6dbf343c59d616048f262c9e26
 DIST clazy-1.5.tar.xz 352344 BLAKE2B 
0f7200900f1a8bcad3020cf98522e3ac9ba01dddc9b2200f08a8a86102e4389af7a4a86e1832ee4c0e750267948a908627032385a01af94d8d0ae5f438114b9e
 SHA512 
863cb9609d02a2260b61bc6cb3e6d8a84975d3b4e4f1c94a82e8c600d95a28483c323f47ac39c39ecef24d0f51871b358055868c63a49b136cf8ee3060df5a52

diff --git a/dev-util/clazy/clazy-1.4.ebuild b/dev-util/clazy/clazy-1.4.ebuild
deleted file mode 100644
index a0fe3e5bc80..000
--- a/dev-util/clazy/clazy-1.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Compiler plugin which allows clang to understand Qt semantics"
-HOMEPAGE="https://github.com/KDE/clazy/blob/master/README.md;
-SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="
-   sys-devel/clang:=
-   >=sys-devel/llvm-3.8:=
-"
-DEPEND="${RDEPEND}"
-
-DOCS=( README.md )
-
-src_prepare() {
-   cmake-utils_src_prepare
-
-   sed -e '/install(FILES README.md COPYING-LGPL2.txt checks.json 
DESTINATION/d' \
-   -i CMakeLists.txt || die
-
-   sed -e 's|${MAN_INSTALL_DIR}|share/man/man1|' \
-   -i docs/man/CMakeLists.txt || die
-}
-
-src_install() {
-   cmake-utils_src_install
-   mv "${D}"/usr/share/doc/clazy/* "${D}"/usr/share/doc/${PF} || die
-   rmdir "${D}"/usr/share/doc/clazy || die
-}



[gentoo-commits] proj/kde:master commit in: sys-block/partitionmanager/

2019-03-10 Thread Andreas Sturmlechner
commit: a7a6b908b05a2b198adae9b134e2d815eb072f6b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 23:39:44 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 23:39:44 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a7a6b908

sys-block/partitionmanager: Raise FRAMEWORKS_MINIMAL to 5.56

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

 sys-block/partitionmanager/partitionmanager-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-block/partitionmanager/partitionmanager-.ebuild 
b/sys-block/partitionmanager/partitionmanager-.ebuild
index d3edf15757..9b49edf461 100644
--- a/sys-block/partitionmanager/partitionmanager-.ebuild
+++ b/sys-block/partitionmanager/partitionmanager-.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+FRAMEWORKS_MINIMAL="5.56"
 KDE_HANDBOOK="optional"
 inherit kde5
 



[gentoo-commits] proj/kde:master commit in: sys-libs/kpmcore/

2019-03-10 Thread Andreas Sturmlechner
commit: 8f11d139bb2b132564c59b409286be224ec69e29
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 23:39:18 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 23:39:18 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8f11d139

sys-libs/kpmcore: Raise FRAMEWORKS_MINIMAL to 5.56

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

 sys-libs/kpmcore/kpmcore-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-libs/kpmcore/kpmcore-.ebuild 
b/sys-libs/kpmcore/kpmcore-.ebuild
index 1c52ce4323..8becd35517 100644
--- a/sys-libs/kpmcore/kpmcore-.ebuild
+++ b/sys-libs/kpmcore/kpmcore-.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+FRAMEWORKS_MINIMAL="5.56"
 inherit kde5
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then



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

2019-03-10 Thread Andreas Sturmlechner
commit: f96d94a5cf86c81ce48aa29b6a7786e2f26e6475
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 23:41:45 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 23:41:45 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f96d94a5

kde-apps/minuet: Add missing media-sound/fluidsynth slot op

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

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

diff --git a/kde-apps/minuet/minuet-.ebuild 
b/kde-apps/minuet/minuet-.ebuild
index 9207259430..93a012ff69 100644
--- a/kde-apps/minuet/minuet-.ebuild
+++ b/kde-apps/minuet/minuet-.ebuild
@@ -22,6 +22,6 @@ DEPEND="
$(add_qt_dep qtgui)
$(add_qt_dep qtsvg)
$(add_qt_dep qtquickcontrols2)
-   media-sound/fluidsynth
+   media-sound/fluidsynth:=
 "
 RDEPEND="${DEPEND}"



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

2019-03-10 Thread Patrice Clement
commit: 67b5b57d5310edd56926da1be8c674243bfdc44a
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Mar 10 23:06:15 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 23:06:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67b5b57d

app-misc/graphlcd-base: update media-gfx/imagemagick dependency to latest 
version.

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

 app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild 
b/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild
index b16df248b56..1273e920f09 100644
--- a/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild
+++ b/app-misc/graphlcd-base/graphlcd-base-1.0.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=7
@@ -20,7 +20,7 @@ RDEPEND="
fontconfig? ( media-libs/fontconfig:1.0= )
g15? ( app-misc/g15daemon )
graphicsmagick? ( media-gfx/graphicsmagick:0/1.3 )
-   imagemagick? ( media-gfx/imagemagick:0/6.9.10.11 )
+   imagemagick? ( media-gfx/imagemagick:0/6.9.10.28 )
lcd_devices_ax206dpf? ( virtual/libusb:0 )
lcd_devices_picolcd_256x64? ( virtual/libusb:0 )
lcd_devices_vnc? ( net-libs/libvncserver )



[gentoo-commits] repo/gentoo:master commit in: net-dialup/freeradius/

2019-03-10 Thread Patrice Clement
commit: 8953512cec62299e83a8ca783adc137f279535b7
Author: Daniele Rondina  gmail  com>
AuthorDate: Fri Mar  8 18:08:24 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 23:01:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8953512c

net-dialup/freeradius: drop libtool from RDEPEND.

Closes: https://bugs.gentoo.org/675230
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Daniele Rondina  gmail.com>
Signed-off-by: Patrice Clement  gentoo.org>

 net-dialup/freeradius/freeradius-3.0.17.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-dialup/freeradius/freeradius-3.0.17.ebuild 
b/net-dialup/freeradius/freeradius-3.0.17.ebuild
index 8aa7879f35c..4d25cae11be 100644
--- a/net-dialup/freeradius/freeradius-3.0.17.ebuild
+++ b/net-dialup/freeradius/freeradius-3.0.17.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
@@ -30,7 +30,6 @@ RESTRICT="test firebird? ( bindist )"
 #   
(http://lists.freeradius.org/pipermail/freeradius-devel/2018-October/013228.html)
 RDEPEND="!net-dialup/cistronradius
!net-dialup/gnuradius
-   sys-devel/libtool
dev-lang/perl:=
sys-libs/gdbm:=
sys-libs/talloc



[gentoo-commits] repo/gentoo:master commit in: net-dialup/freeradius/

2019-03-10 Thread Patrice Clement
commit: bc284abb40fa5babc26fd80e590fcc565766e7ab
Author: Daniele Rondina  gmail  com>
AuthorDate: Fri Mar  8 18:11:57 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 23:01:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc284abb

net-dialup/freeradius: version bump to v.3.0.18.

Signed-off-by: Daniele Rondina  gmail.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Patrice Clement  gentoo.org>

 net-dialup/freeradius/Manifest |   1 +
 net-dialup/freeradius/freeradius-3.0.18.ebuild | 239 +
 2 files changed, 240 insertions(+)

diff --git a/net-dialup/freeradius/Manifest b/net-dialup/freeradius/Manifest
index bbff14070c2..51e5d37febc 100644
--- a/net-dialup/freeradius/Manifest
+++ b/net-dialup/freeradius/Manifest
@@ -1 +1,2 @@
 DIST freeradius-server-3.0.17.tar.gz 4843020 BLAKE2B 
9e1f54a9f5ad8ede471881ffe4ec987c3ac655a3c39fcd920094760c006102be02f3b7f25b14379a0bac876ac0944e8698c2781bbd804cd22d8b915b6c13a693
 SHA512 
381222e452288c56a1bf68953be57379a5568f0c92de022abc3004cc6a15078d46535b867b31801de3eb096ba7af92e745e79decfa7cc8151a1ffb371b1aea79
+DIST freeradius-server-3.0.18.tar.gz 4884192 BLAKE2B 
21df490f5eba4e0eca42127181fa02a9451abf5fc2b0d7c5e6d0c5c287eda739585500a31f480dccc618c3bbb4096fbe9258c1b2d3a2047951abf85d68784862
 SHA512 
b81c40cd22170adb1126b9dde6dd84411dfafce33e27da6c4665cb4fc524aab854a7cd4c80757db50899604d7980aec7216e1c53b8184af482c7113692a26458

diff --git a/net-dialup/freeradius/freeradius-3.0.18.ebuild 
b/net-dialup/freeradius/freeradius-3.0.18.ebuild
new file mode 100644
index 000..c512a5894ee
--- /dev/null
+++ b/net-dialup/freeradius/freeradius-3.0.18.ebuild
@@ -0,0 +1,239 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+inherit autotools pam python-single-r1 systemd user
+
+MY_P="${PN}-server-${PV}"
+
+DESCRIPTION="Highly configurable free RADIUS server"
+SRC_URI="
+   ftp://ftp.freeradius.org/pub/radius/${MY_P}.tar.gz
+   ftp://ftp.freeradius.org/pub/radius/old/${MY_P}.tar.gz
+"
+HOMEPAGE="http://www.freeradius.org/;
+
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="
+   debug firebird iodbc kerberos ldap libressl memcached mysql odbc oracle 
pam
+   pcap postgres python readline rest samba sqlite ssl redis
+"
+RESTRICT="test firebird? ( bindist )"
+
+# NOTE: Temporary freeradius doesn't support linking with mariadb client
+#   libs also if code is compliant, will be available in the next release.
+#   
(http://lists.freeradius.org/pipermail/freeradius-devel/2018-October/013228.html)
+RDEPEND="!net-dialup/cistronradius
+   !net-dialup/gnuradius
+   dev-lang/perl:=
+   sys-libs/gdbm:=
+   sys-libs/talloc
+   python? ( ${PYTHON_DEPS} )
+   readline? ( sys-libs/readline:0= )
+   pcap? ( net-libs/libpcap )
+   memcached? ( dev-libs/libmemcached )
+   mysql? ( dev-db/mysql-connector-c )
+   postgres? ( dev-db/postgresql:= )
+   firebird? ( dev-db/firebird )
+   pam? ( virtual/pam )
+   rest? ( dev-libs/json-c:= )
+   samba? ( net-fs/samba )
+   redis? ( dev-libs/hiredis:= )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[-bindist] )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   ldap? ( net-nds/openldap )
+   kerberos? ( virtual/krb5 )
+   sqlite? ( dev-db/sqlite:3 )
+   odbc? ( dev-db/unixODBC )
+   iodbc? ( dev-db/libiodbc )
+   oracle? ( dev-db/oracle-instantclient-basic )"
+DEPEND="${RDEPEND}"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+   enewgroup radius
+   enewuser radius -1 -1 /var/log/radius radius
+
+   if use python ; then
+   python-single-r1_pkg_setup
+   export PYTHONBIN="${EPYTHON}"
+   fi
+}
+
+src_prepare() {
+   # most of the configuration options do not appear as ./configure
+   # switches. Instead it identifies the directories that are available
+   # and run through them. These might check for the presence of
+   # various libraries, in which case they are not built.  To avoid
+   # automagic dependencies, we just remove all the modules that we're
+   # not interested in using.
+
+   use ssl || { rm -r src/modules/rlm_eap/types/rlm_eap_{tls,ttls,peap} || 
die ; }
+   use ldap || { rm -r src/modules/rlm_ldap || die ; }
+   use kerberos || { rm -r src/modules/rlm_krb5 || die ; }
+   use memcached || { rm -r 
src/modules/rlm_cache/drivers/rlm_cache_memcached || die ; }
+   use pam || { rm -r src/modules/rlm_pam || die ; }
+   use python || { rm -r src/modules/rlm_python || die ; }
+   use rest || { rm -r src/modules/rlm_rest || die ; }
+   use redis || { rm -r src/modules/rlm_redis{,who} || die ; }
+ 

[gentoo-commits] repo/gentoo:master commit in: net-dialup/freeradius/

2019-03-10 Thread Patrice Clement
commit: 5cc8b11d5071ded23edc8556cb3746b976362928
Author: Daniele Rondina  gmail  com>
AuthorDate: Fri Mar  8 18:02:17 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 23:01:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cc8b11d

net-dialup/freeradius: drop v.3.0.15.

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Daniele Rondina  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11304
Signed-off-by: Patrice Clement  gentoo.org>

 net-dialup/freeradius/Manifest |   1 -
 net-dialup/freeradius/freeradius-3.0.15.ebuild | 228 -
 2 files changed, 229 deletions(-)

diff --git a/net-dialup/freeradius/Manifest b/net-dialup/freeradius/Manifest
index a82866d5b03..bbff14070c2 100644
--- a/net-dialup/freeradius/Manifest
+++ b/net-dialup/freeradius/Manifest
@@ -1,2 +1 @@
-DIST freeradius-server-3.0.15.tar.gz 4818244 BLAKE2B 
24cded2c4f0c6fc6a6135058c40bb2c9d100a55161f2edfc388efba991ff85ecd0f546bc2008cc0c50f2753cf93ece8e67dc3fc0fe13a8b935193ff1f68514b9
 SHA512 
9b92045b445032bde9d421499fdc0f6a08d602c501730c31a8d3974b21cc5c12c78abb024ed62a176c7aa7fe260fe1d19386aaf558e0fecfcd3a0ba7aa47499c
 DIST freeradius-server-3.0.17.tar.gz 4843020 BLAKE2B 
9e1f54a9f5ad8ede471881ffe4ec987c3ac655a3c39fcd920094760c006102be02f3b7f25b14379a0bac876ac0944e8698c2781bbd804cd22d8b915b6c13a693
 SHA512 
381222e452288c56a1bf68953be57379a5568f0c92de022abc3004cc6a15078d46535b867b31801de3eb096ba7af92e745e79decfa7cc8151a1ffb371b1aea79

diff --git a/net-dialup/freeradius/freeradius-3.0.15.ebuild 
b/net-dialup/freeradius/freeradius-3.0.15.ebuild
deleted file mode 100644
index bf595e6d93b..000
--- a/net-dialup/freeradius/freeradius-3.0.15.ebuild
+++ /dev/null
@@ -1,228 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit autotools pam python-single-r1 systemd user
-
-MY_P="${PN}-server-${PV}"
-
-DESCRIPTION="Highly configurable free RADIUS server"
-SRC_URI="
-   ftp://ftp.freeradius.org/pub/radius/${MY_P}.tar.gz
-   ftp://ftp.freeradius.org/pub/radius/old/${MY_P}.tar.gz
-"
-HOMEPAGE="http://www.freeradius.org/;
-
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
-LICENSE="GPL-2"
-SLOT="0"
-
-IUSE="
-   debug firebird iodbc kerberos ldap libressl mysql odbc oracle pam pcap
-   postgres python readline sqlite ssl
-"
-RESTRICT="test firebird? ( bindist )"
-
-RDEPEND="!net-dialup/cistronradius
-   !net-dialup/gnuradius
-   sys-devel/libtool
-   dev-lang/perl:=
-   sys-libs/gdbm:=
-   sys-libs/talloc
-   python? ( ${PYTHON_DEPS} )
-   readline? ( sys-libs/readline:0= )
-   pcap? ( net-libs/libpcap )
-   mysql? ( dev-db/mysql-connector-c:= )
-   postgres? ( dev-db/postgresql:= )
-   firebird? ( dev-db/firebird )
-   pam? ( virtual/pam )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   )
-   ldap? ( net-nds/openldap )
-   kerberos? ( virtual/krb5 )
-   sqlite? ( dev-db/sqlite:3 )
-   odbc? ( dev-db/unixODBC )
-   iodbc? ( dev-db/libiodbc )
-   oracle? ( dev-db/oracle-instantclient-basic )"
-DEPEND="${RDEPEND}"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
-   enewgroup radius
-   enewuser radius -1 -1 /var/log/radius radius
-
-   python-single-r1_pkg_setup
-   export PYTHONBIN="${EPYTHON}"
-}
-
-src_prepare() {
-   # most of the configuration options do not appear as ./configure
-   # switches. Instead it identifies the directories that are available
-   # and run through them. These might check for the presence of
-   # various libraries, in which case they are not built.  To avoid
-   # automagic dependencies, we just remove all the modules that we're
-   # not interested in using.
-
-   use ssl || { rm -r src/modules/rlm_eap/types/rlm_eap_{tls,ttls,peap} || 
die ; }
-   use ldap || { rm -r src/modules/rlm_ldap || die ; }
-   use kerberos || { rm -r src/modules/rlm_krb5 || die ; }
-   use pam || { rm -r src/modules/rlm_pam || die ; }
-   use python || { rm -r src/modules/rlm_python || die ; }
-   # Do not install ruby rlm module, bug #483108
-   rm -r src/modules/rlm_ruby || die
-
-   # these are all things we don't have in portage/I don't want to deal
-   # with myself
-   rm -r src/modules/rlm_eap/types/rlm_eap_tnc || die # requires TNCS 
library
-   rm -r src/modules/rlm_eap/types/rlm_eap_ikev2 || die # requires 
libeap-ikev2
-   rm -r src/modules/rlm_opendirectory || die # requires some membership.h
-   rm -r src/modules/rlm_redis{,who} || die # requires redis
-   rm -r src/modules/rlm_sql/drivers/rlm_sql_{db2,freetds} || die
-
-   # sql drivers that are not part of experimental are loaded 

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

2019-03-10 Thread Andreas Sturmlechner
commit: a91285ba76204f1dbf171295ec238030638a562f
Author: Roy Bamford  gentoo  org>
AuthorDate: Sun Mar 10 21:21:41 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a91285ba

kde-apps/kdeedu-meta: added ~arm64

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

 kde-apps/kdeedu-meta/kdeedu-meta-18.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kdeedu-meta/kdeedu-meta-18.12.3.ebuild 
b/kde-apps/kdeedu-meta/kdeedu-meta-18.12.3.ebuild
index 23df4bfc85f..24a6d7958ce 100644
--- a/kde-apps/kdeedu-meta/kdeedu-meta-18.12.3.ebuild
+++ b/kde-apps/kdeedu-meta/kdeedu-meta-18.12.3.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://edu.kde.org;
 
 LICENSE="metapackage"
 SLOT="5"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="+webengine +webkit"
 
 RDEPEND="



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

2019-03-10 Thread Andreas Sturmlechner
commit: 23b79b93879c2709f271e9cfd7120a37eb37602d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 22:13:02 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23b79b93

media-libs/sdl-mixer: Add missing media-sound/fluidsynth slot op

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

 media-libs/sdl-mixer/sdl-mixer-1.2.12-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/sdl-mixer/sdl-mixer-1.2.12-r4.ebuild 
b/media-libs/sdl-mixer/sdl-mixer-1.2.12-r4.ebuild
index 789b3348622..8d73e8e50b6 100644
--- a/media-libs/sdl-mixer/sdl-mixer-1.2.12-r4.ebuild
+++ b/media-libs/sdl-mixer/sdl-mixer-1.2.12-r4.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=5
@@ -28,7 +28,7 @@ REQUIRED_USE="
 RDEPEND=">=media-libs/libsdl-1.2.15-r4[${MULTILIB_USEDEP}]
flac? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}] )
midi? (
-   fluidsynth? ( 
>=media-sound/fluidsynth-1.1.6-r1[${MULTILIB_USEDEP}] )
+   fluidsynth? ( 
>=media-sound/fluidsynth-1.1.6-r1:=[${MULTILIB_USEDEP}] )
timidity? ( media-sound/timidity++ )
)
mp3? (



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

2019-03-10 Thread Andreas Sturmlechner
commit: 9846a7698efd6377f21c3b2ddf660c5e1ede390d
Author: Roy Bamford  gentoo  org>
AuthorDate: Sun Mar 10 17:26:41 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9846a769

profiles: arm64: masked USE=editor on kde-apps/kalzium

Signed-off-by: Roy Bamford  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/11339
Signed-off-by: Andreas Sturmlechner  gentoo.org>

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

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 0947923ef23..9e0a2175dfb 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -1,6 +1,11 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Roy Bamford  (10 Mar 2019)
+# kde-apps/kalzium editor as sci-chemistry/openbabel
+# fails to build on arm64
+kde-apps/kalzium editor
+
 # Roy Bamford  (10 Mar 2019)
 # No arm64 ever had bios but sys-apps/fwupdate needs
 # refactored to separate bios and uefi



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

2019-03-10 Thread Andreas Sturmlechner
commit: 98b1ef1a458edfc816c3d7eae5061f3e9f6d79e3
Author: Roy Bamford  gentoo  org>
AuthorDate: Sun Mar 10 21:00:55 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98b1ef1a

profile: arm64: added kde-plasma/discover firmware

Signed-off-by: Roy Bamford  gentoo.org>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

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

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index fe3f7bfa652..0947923ef23 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -1,6 +1,11 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Roy Bamford  (10 Mar 2019)
+# No arm64 ever had bios but sys-apps/fwupdate needs
+# refactored to separate bios and uefi
+kde-plasma/discover firmware
+
 # Jimi Huotari  (10 Mar 2019)
 # Requires 'dev-qt/qttranslations' which is missing 'arm64'.
 lxqt-base/lxqt-meta nls



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2019-03-10 Thread Andreas Sturmlechner
commit: acee938945975798529b2402ee98038ba26844af
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 22:02:46 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acee9389

media-sound/qsynth: 0.5.4 version bump

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

 media-sound/qsynth/Manifest|  1 +
 media-sound/qsynth/qsynth-0.5.4.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/media-sound/qsynth/Manifest b/media-sound/qsynth/Manifest
index 92c3fefcb87..c4b71a9a609 100644
--- a/media-sound/qsynth/Manifest
+++ b/media-sound/qsynth/Manifest
@@ -1,2 +1,3 @@
 DIST qsynth-0.5.0.tar.gz 260537 BLAKE2B 
def589a1cfb76517fa34811fe75a8379043d7e0f9fc661dd456b49414042662c3a3b8f57e2d0de5fae99cbdb60062b12d9b73b93032115648b9a21921766fbeb
 SHA512 
3c7026edfef3115fae8e2167bb961f5e32d886c8d75b3534a3f110d921264cd270953145a4737f9d6660c55fccce81d7306ec0ce4064df6e7226598b52399298
 DIST qsynth-0.5.3.tar.gz 269252 BLAKE2B 
c496063ba33bc78a65d63151871e841f9d3938fe03049655da3c124fd495c592f9c726c479062c3fb2d1561e4dee3284d12b04e04a51ba06e20d297b6e84ac0f
 SHA512 
15632274e5822f5e1a49bd332c5d8b7e59a54800ad32510f425f06b4557e474d5479bd531b45fc43af20535017a656fbd9469d318940931912a56ea1856dc117
+DIST qsynth-0.5.4.tar.gz 268106 BLAKE2B 
e7e17c1427cbb6105fc6fbaa511325fcfbed0d06e28374e3b9fdce14a633e6554267339bb1ffe2bf1f16fbebf38095ae02eca86d74412add3a1e16d191cd1e45
 SHA512 
711b18efea3b4050c567f2c549ab4f44525f53de42c6cfea379260e62966215e6d59432bed946733c7e772d691edb739a882de753cf3f46b932833de7b120b7d

diff --git a/media-sound/qsynth/qsynth-0.5.4.ebuild 
b/media-sound/qsynth/qsynth-0.5.4.ebuild
new file mode 100644
index 000..0e48b971296
--- /dev/null
+++ b/media-sound/qsynth/qsynth-0.5.4.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop flag-o-matic qmake-utils
+
+DESCRIPTION="A Qt application to control FluidSynth"
+HOMEPAGE="http://qsynth.sourceforge.net/;
+SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="alsa debug jack pulseaudio"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
+   x11-libs/libX11"
+DEPEND="${RDEPEND}"
+
+REQUIRED_USE="|| ( alsa jack pulseaudio )"
+
+PATCHES=( "${FILESDIR}/${PN}-0.4.0-qt5-tagging.patch" )
+
+src_configure() {
+   append-cxxflags -std=c++11
+   sed -e "/@gzip.*mandir)\/man1/d" -i Makefile.in || die
+   econf \
+   $(use_enable debug)
+
+   eqmake5 ${PN}.pro -o ${PN}.mak
+}
+
+src_install () {
+   emake DESTDIR="${D}" INSTALL_ROOT="${D}" install
+   einstalldocs
+
+   # The desktop file is invalid, and we also change the command
+   # depending on useflags
+   rm "${ED}/usr/share/applications/qsynth.desktop" || die
+
+   local cmd
+   if use jack; then
+   cmd="qsynth"
+   elif use pulseaudio; then
+   cmd="qsynth -a pulseaudio"
+   elif use alsa; then
+   cmd="qsynth -a alsa"
+   else
+   cmd="qsynth -a oss"
+   fi
+
+   make_desktop_entry "${cmd}" Qsynth qsynth
+}



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

2019-03-10 Thread Andreas Sturmlechner
commit: cf742a21c3215c12129732e0d6066aadc03f
Author: Roy Bamford  gentoo  org>
AuthorDate: Sun Mar 10 21:04:46 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf742a21

kde-plasma/plasma-meta: added ~arm64

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

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

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



[gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/

2019-03-10 Thread Andreas Sturmlechner
commit: 4392580f654caefef901c8d5faa8715b8260ca50
Author: Roy Bamford  gentoo  org>
AuthorDate: Sun Mar 10 17:41:10 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4392580f

dev-ml/facile: added ~arm64

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

 dev-ml/facile/facile-1.1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index 3027374ee74..2eb0fbb4b30 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.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
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz;
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/xdg-desktop-portal-kde/

2019-03-10 Thread Andreas Sturmlechner
commit: b88217623b298da261a62232d276bf5a7b9fffee
Author: Roy Bamford  gentoo  org>
AuthorDate: Sun Mar 10 20:55:23 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8821762

kde-plasma/xdg-desktop-portal-kde: added ~arm64

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

 kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.15.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.15.2.ebuild 
b/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.15.2.ebuild
index 17964e9912b..b36da6ccfc5 100644
--- a/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.15.2.ebuild
+++ b/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.15.2.ebuild
@@ -8,7 +8,7 @@ inherit kde5
 
 DESCRIPTION="Backend implementation for xdg-desktop-portal that is using 
Qt/KDE Frameworks"
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE=""
 
 # TODO: Needed for screencast portal



[gentoo-commits] repo/gentoo:master commit in: media-sound/qsynth/

2019-03-10 Thread Andreas Sturmlechner
commit: 6c0725a585bcef7674edd364a65000cf7cd579a4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 21:55:17 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c0725a5

media-sound/qsynth: Add media-sound/fluidsynth slot op

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

 media-sound/qsynth/qsynth-0.5.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/qsynth/qsynth-0.5.3.ebuild 
b/media-sound/qsynth/qsynth-0.5.3.ebuild
index 1abb5201564..43eae6aaae2 100644
--- a/media-sound/qsynth/qsynth-0.5.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.5.3.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
@@ -18,7 +18,7 @@ RDEPEND="
dev-qt/qtcore:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
-   media-sound/fluidsynth[jack?,alsa?,pulseaudio?]
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
x11-libs/libX11"
 DEPEND="${RDEPEND}
dev-qt/linguist-tools:5



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

2019-03-10 Thread Andreas Sturmlechner
commit: 9fb15487e8689540bb217d554816b0ae3589415b
Author: Roy Bamford  gentoo  org>
AuthorDate: Sun Mar 10 22:13:13 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb15487

kde-plasma/discover: added ~arm64

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

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

diff --git a/kde-plasma/discover/discover-5.15.2-r1.ebuild 
b/kde-plasma/discover/discover-5.15.2-r1.ebuild
index 59f63447ccf..6317798c518 100644
--- a/kde-plasma/discover/discover-5.15.2-r1.ebuild
+++ b/kde-plasma/discover/discover-5.15.2-r1.ebuild
@@ -9,7 +9,7 @@ inherit kde5
 
 DESCRIPTION="KDE Plasma resources management GUI"
 HOMEPAGE="https://userbase.kde.org/Discover;
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE="firmware"
 
 # libmarkdown (app-text/discount) only used in PackageKitBackend



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

2019-03-10 Thread Andreas Sturmlechner
commit: c2cc32c6f18e60d91bae06f5b26971d3e6645552
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 22:16:03 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2cc32c6

media-plugins/calf: Sync with 0.90.1 changes

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

 media-plugins/calf/calf-.ebuild | 66 ++---
 1 file changed, 39 insertions(+), 27 deletions(-)

diff --git a/media-plugins/calf/calf-.ebuild 
b/media-plugins/calf/calf-.ebuild
index f39ee8bb02a..e8aaa6330d7 100644
--- a/media-plugins/calf/calf-.ebuild
+++ b/media-plugins/calf/calf-.ebuild
@@ -1,8 +1,9 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-inherit autotools gnome2-utils
+EAPI=7
+
+inherit autotools xdg
 
 DESCRIPTION="A set of open source instruments and effects for digital audio 
workstations"
 HOMEPAGE="http://calf-studio-gear.org/;
@@ -17,23 +18,35 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-IUSE="cpu_flags_x86_sse gtk jack lash lv2 static-libs experimental"
+IUSE="cpu_flags_x86_sse experimental gtk jack lash lv2 static-libs"
+
+REQUIRED_USE="jack? ( gtk )"
 
-RDEPEND="dev-libs/atk
+BDEPEND="
+   virtual/pkgconfig
+"
+DEPEND="
+   dev-libs/atk
dev-libs/expat
dev-libs/glib:2
-   media-sound/fluidsynth
-   jack? ( virtual/jack )
+   media-sound/fluidsynth:=
gtk? (
x11-libs/cairo
-   x11-libs/gtk+:2
x11-libs/gdk-pixbuf
+   x11-libs/gtk+:2
x11-libs/pango
)
+   jack? ( virtual/jack )
lash? ( media-sound/lash )
-   lv2? ( media-libs/lv2 )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
+   lv2? ( media-libs/lv2 )
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.90.1-no-automagic.patch"
+   "${FILESDIR}/${PN}-0.90.1-htmldir.patch"
+   "${FILESDIR}/${PN}-0.90.1-desktop.patch"
+)
 
 src_prepare() {
default
@@ -41,24 +54,23 @@ src_prepare() {
 }
 
 src_configure() {
-   # automagic...
-   #$(use_with gtk gui)
-   #$(use_with jack)
-   econf \
-   --prefix="${EPREFIX}"/usr \
-   --without-obsolete-check \
-   $(use_with lash) \
-   $(use_with lv2 lv2) \
-   $(usex lv2 "--with-lv2-dir=${EPREFIX}/usr/$(get_libdir)/lv2" 
"") \
-   $(use_enable static-libs static) \
-   $(use_enable cpu_flags_x86_sse sse) \
+   local myeconfargs=(
+   --prefix="${EPREFIX}"/usr
+   --without-obsolete-check
$(use_enable experimental)
+   $(use_enable gtk gui)
+   $(use_enable jack)
+   $(use_with lash)
+   $(use_with lv2 lv2)
+   $(usex lv2 "--with-lv2-dir=${EPREFIX}/usr/$(get_libdir)/lv2" "")
+   $(use_enable static-libs static)
+   $(use_enable cpu_flags_x86_sse sse)
+   )
+   econf "${myeconfargs[@]}"
 }
 
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
+src_install() {
+   default
+   mv "${ED}"/usr/share/bash-completion/completions/calf \
+   "${ED}"/usr/share/bash-completion/completions/calfjackhost
 }



[gentoo-commits] repo/gentoo:master commit in: media-sound/csound/

2019-03-10 Thread Andreas Sturmlechner
commit: 36ad66b98b048df09c21f6cc62604f9a5a12a093
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 21:54:10 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36ad66b9

media-sound/csound: Add media-sound/fluidsynth slot op

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

 media-sound/csound/csound-6.10.0.ebuild | 4 ++--
 media-sound/csound/csound-.ebuild   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-sound/csound/csound-6.10.0.ebuild 
b/media-sound/csound/csound-6.10.0.ebuild
index 5906af36652..185ce6f382b 100644
--- a/media-sound/csound/csound-6.10.0.ebuild
+++ b/media-sound/csound/csound-6.10.0.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
@@ -53,7 +53,7 @@ RDEPEND="
media-libs/dssi
media-libs/ladspa-sdk
)
-   fluidsynth? ( media-sound/fluidsynth )
+   fluidsynth? ( media-sound/fluidsynth:= )
fltk? ( x11-libs/fltk:1[threads?] )
image? ( media-libs/libpng:0= )
jack? ( media-sound/jack-audio-connection-kit )

diff --git a/media-sound/csound/csound-.ebuild 
b/media-sound/csound/csound-.ebuild
index b97419c554c..c0694b7cd5c 100644
--- a/media-sound/csound/csound-.ebuild
+++ b/media-sound/csound/csound-.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
@@ -53,7 +53,7 @@ RDEPEND="
media-libs/dssi
media-libs/ladspa-sdk
)
-   fluidsynth? ( media-sound/fluidsynth )
+   fluidsynth? ( media-sound/fluidsynth:= )
fltk? ( x11-libs/fltk:1[threads?] )
image? ( media-libs/libpng:0= )
jack? ( media-sound/jack-audio-connection-kit )



[gentoo-commits] repo/gentoo:master commit in: media-sound/pavucontrol-qt/

2019-03-10 Thread Andreas Sturmlechner
commit: 74b9aa9da20ed7aa467d26fc54a7053acf6685a1
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Mar  7 22:49:51 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74b9aa9d

media-sound/pavucontrol-qt: version bump to 0.14.1

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

 media-sound/pavucontrol-qt/Manifest|  1 +
 .../pavucontrol-qt/pavucontrol-qt-0.14.1.ebuild| 34 ++
 2 files changed, 35 insertions(+)

diff --git a/media-sound/pavucontrol-qt/Manifest 
b/media-sound/pavucontrol-qt/Manifest
index 6b17bfe3169..a97eff728a2 100644
--- a/media-sound/pavucontrol-qt/Manifest
+++ b/media-sound/pavucontrol-qt/Manifest
@@ -1 +1,2 @@
+DIST pavucontrol-qt-0.14.1.tar.xz 94948 BLAKE2B 
e0bbbaa2410220c0e34ff77cb84c783ba682587311eaf20eca286a142e122827b6294e9d0409f2ea5b18d80c06d822bbaed49d60d1402a4a97b7f7210ee2cacd
 SHA512 
55a8bceb31e07ceac7ab1fbb5f20101dfb087e58578039a238677e77f858e0564dca46efee2d5513a247c0be474f24d31e3afa9cf3cea0734feb0e56c33d5494
 DIST pavucontrol-qt-0.4.0.tar.xz 34916 BLAKE2B 
f42f560b125e292ae3a8ab76e2020d1a899019e8ed40d6f4d3e90fe1baa0cc044093310fe9ac11c6529f9cc1abc41d475aa2d445de8f19e6f89ed456525aa7d9
 SHA512 
62e0c909c98acc4605556ba63981e4599d37b592b99ee16301dc0ba154f3066708a31562e158c042b3530c11603cc43de930080770f027bb998cbb6f79f0f3fb

diff --git a/media-sound/pavucontrol-qt/pavucontrol-qt-0.14.1.ebuild 
b/media-sound/pavucontrol-qt/pavucontrol-qt-0.14.1.ebuild
new file mode 100644
index 000..24871a2f6a2
--- /dev/null
+++ b/media-sound/pavucontrol-qt/pavucontrol-qt-0.14.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils
+
+DESCRIPTION="A Pulseaudio mixer in Qt (port of pavucontrol)"
+HOMEPAGE="https://lxqt.org/;
+
+if [[ ${PV} = ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/lxqt/${PN}.git;
+else
+   SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+LICENSE="GPL-2+"
+SLOT="0"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   >=dev-util/lxqt-build-tools-0.6.0
+   virtual/pkgconfig
+"
+DEPEND="
+   dev-libs/glib:2
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtwidgets:5
+   media-sound/pulseaudio[glib]
+"
+RDEPEND="${DEPEND}"



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

2019-03-10 Thread Andreas Sturmlechner
commit: c77106d62e361e3a5e7b9b744375da7555211155
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 21:31:58 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c77106d6

media-libs/alure: Add missing media-sound/fluidsynth slot op

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

 media-libs/alure/alure-1.2-r1.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/media-libs/alure/alure-1.2-r1.ebuild 
b/media-libs/alure/alure-1.2-r1.ebuild
index 40d2702d0c6..24092bba44b 100644
--- a/media-libs/alure/alure-1.2-r1.ebuild
+++ b/media-libs/alure/alure-1.2-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-utils
 
@@ -14,10 +14,11 @@ SLOT="0"
 KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="dumb examples flac fluidsynth mp3 sndfile static-libs vorbis"
 
-RDEPEND=">=media-libs/openal-1.1
+RDEPEND="
+   >=media-libs/openal-1.1
dumb? ( media-libs/dumb )
flac? ( media-libs/flac )
-   fluidsynth? ( >=media-sound/fluidsynth-1.1.1 )
+   fluidsynth? ( >=media-sound/fluidsynth-1.1.1:= )
mp3? ( media-sound/mpg123 )
sndfile? ( media-libs/libsndfile )
vorbis? ( media-libs/libvorbis )"



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

2019-03-10 Thread Andreas Sturmlechner
commit: 5a90f9b90a2e0b9a413c06053d53a013e5eaca64
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 21:34:24 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a90f9b9

media-libs/sdl2-mixer: Add missing media-sound/fluidsynth slot op

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

 media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild 
b/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild
index 1e3995f3f5b..a609fd86c22 100644
--- a/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild
+++ b/media-libs/sdl2-mixer/sdl2-mixer-2.0.4.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
>=media-libs/libsdl2-2.0.7[${MULTILIB_USEDEP}]
flac? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}] )
midi? (
-   fluidsynth? ( 
>=media-sound/fluidsynth-1.1.6-r1[${MULTILIB_USEDEP}] )
+   fluidsynth? ( 
>=media-sound/fluidsynth-1.1.6-r1:=[${MULTILIB_USEDEP}] )
timidity? ( media-sound/timidity++ )
)
mod? (



[gentoo-commits] repo/gentoo:master commit in: media-sound/fluidsynth/

2019-03-10 Thread Andreas Sturmlechner
commit: 580fc2f06f2dd4c494c370fd92a14eccc8b9c86d
Author: Nikos Chantziaras  gmail  com>
AuthorDate: Mon Mar  4 17:50:22 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=580fc2f0

media-sound/fluidsynth: bump to 2.0.4 with subslot, update ebuild

Use subslot due to soversion change. Bump EAPI to 7. License is now LGPL-2.1+.
Add "oss" USE flag. Enable upstream-recommended USE flags by default (+readline
+sndfile). Drop versioned deps (no longer in portage.) Remove unused "ladcca"
cmake option. Put pkgconfig in BDEPEND. Remove forced "-pthread" flag.

Closes: https://bugs.gentoo.org/667254
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Nikos Chantziaras  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11257
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-sound/fluidsynth/Manifest|  1 +
 media-sound/fluidsynth/fluidsynth-2.0.4.ebuild | 75 ++
 2 files changed, 76 insertions(+)

diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest
index 73513b81a4b..3017ba15365 100644
--- a/media-sound/fluidsynth/Manifest
+++ b/media-sound/fluidsynth/Manifest
@@ -1 +1,2 @@
 DIST fluidsynth-1.1.11.tar.gz 634566 BLAKE2B 
ed135533c9e3e807794e0eca8117d430aa299b8772b2b6c85f6233e7e497d69f43381d9c7cf2de5ce8638f5dc616339bd28cecc3cdc23408bf5883a0b14fee79
 SHA512 
ad7c634426b29e5a05d67addf32d43a9ccb11a1fe3cfc09ad617416b9df3dc99a48191377f5027232521380737dde2d9b59833516d1bffb90f410bab3bbe140c
+DIST fluidsynth-2.0.4.tar.gz 1378042 BLAKE2B 
0fc75ea68169c47d64bdf727b8d78e311b36cb04509832f449a52d05e085908bd1ef837dd4c5e23edc25286b8ff3fdf69a9d042520c8eb2a3234fb929bed8de5
 SHA512 
d58ddc5f4da9bb5954a82749617548ef32edd25f6ca5c6d5c2b06d23090784ec175d2422553a66776f543c6b253f037a6cf1e717a853344ffb899fa53752eec0

diff --git a/media-sound/fluidsynth/fluidsynth-2.0.4.ebuild 
b/media-sound/fluidsynth/fluidsynth-2.0.4.ebuild
new file mode 100644
index 000..6d956183e8b
--- /dev/null
+++ b/media-sound/fluidsynth/fluidsynth-2.0.4.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-multilib
+
+DESCRIPTION="Software real-time synthesizer based on the Soundfont 2 
specifications"
+HOMEPAGE="http://www.fluidsynth.org/;
+SRC_URI="https://github.com/FluidSynth/fluidsynth/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0/2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="alsa dbus debug examples ipv6 jack ladspa lash oss portaudio pulseaudio 
+readline +sndfile"
+
+BDEPEND="
+   virtual/pkgconfig[${MULTILIB_USEDEP}]
+"
+DEPEND="
+   dev-libs/glib:2[${MULTILIB_USEDEP}]
+   alsa? (
+   media-libs/alsa-lib[${MULTILIB_USEDEP}]
+   lash? ( media-sound/lash[${MULTILIB_USEDEP}] )
+   )
+   dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
+   jack? ( virtual/jack[${MULTILIB_USEDEP}] )
+   ladspa? (
+   media-libs/ladspa-cmt[${MULTILIB_USEDEP}]
+   media-libs/ladspa-sdk[${MULTILIB_USEDEP}]
+   )
+   portaudio? ( media-libs/portaudio[${MULTILIB_USEDEP}] )
+   pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
+   readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
+   sndfile? ( media-libs/libsndfile[${MULTILIB_USEDEP}] )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS NEWS README.md THANKS TODO 
doc/{fluidsynth-v20-devdoc,xtrafluid}.txt )
+
+src_configure() {
+   local mycmakeargs=(
+   -Denable-alsa=$(usex alsa)
+   -Denable-dbus=$(usex dbus)
+   -Denable-debug=$(usex debug)
+   -Denable-ipv6=$(usex ipv6)
+   -Denable-jack=$(usex jack)
+   -Denable-ladspa=$(usex ladspa)
+   -Denable-oss=$(usex oss)
+   -Denable-libsndfile=$(usex sndfile)
+   -Denable-portaudio=$(usex portaudio)
+   -Denable-pulseaudio=$(usex pulseaudio)
+   -Denable-readline=$(usex readline)
+   )
+
+   if use alsa; then
+   mycmakeargs+=( -Denable-lash=$(usex lash) )
+   else
+   mycmakeargs+=( -Denable-lash=OFF )
+   fi
+
+   cmake-multilib_src_configure
+}
+
+src_install() {
+   cmake-multilib_src_install
+
+   docinto pdf
+   dodoc doc/*.pdf
+
+   if use examples; then
+   docinto examples
+   dodoc doc/*.c
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/calf/files/, media-plugins/calf/

2019-03-10 Thread Andreas Sturmlechner
commit: a526be6165eb8225aa164dc213338267d2c065b2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 17:02:49 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a526be61

media-plugins/calf: 0.90.1 version bump, EAPI-7 bump, various QA

Fix automagic
Fix desktop file
Fix htmldir

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

 media-plugins/calf/Manifest|  1 +
 media-plugins/calf/calf-0.90.1.ebuild  | 76 ++
 media-plugins/calf/files/calf-0.90.1-desktop.patch | 24 +++
 media-plugins/calf/files/calf-0.90.1-htmldir.patch | 66 +++
 .../calf/files/calf-0.90.1-no-automagic.patch  | 43 
 5 files changed, 210 insertions(+)

diff --git a/media-plugins/calf/Manifest b/media-plugins/calf/Manifest
index d665e74d184..67eda6b3569 100644
--- a/media-plugins/calf/Manifest
+++ b/media-plugins/calf/Manifest
@@ -1,2 +1,3 @@
 DIST calf-0.0.60.tar.gz 5594386 BLAKE2B 
2cba2618bc61e52c3f70bad1310670e1b11e3d03ddc2b98fc01edfa121d19229667c7494815a46ca9eaa57ec1dfd46f18c1c46514f67860758953a30b28e2930
 SHA512 
85a814b1210765bd16a60a4921c4518b1721c6b72aa9c902d1c0f8e4dcad285de2b52e3c2783bc221b575c61de9c859f40d589cf8a68efc260f393a864dfc360
 DIST calf-0.90.0.tar.gz 15876661 BLAKE2B 
48f9ba5386b1253771947e16a3d88912f83f75873e50340ac8f68c7c9a79595ef4a549c3a7616a16949b3bbbca7a6892b6ed9276a891c7b47ae0a4f0541776ae
 SHA512 
65dc1f7e6d83ca52ace25578d310b1806166a78a022d6509412ded44d3ac138a7e7909ebc91b93a3761a5ed3dff956809d6552bc70db6f25522132aa71f0b951
+DIST calf-0.90.1.tar.gz 15872959 BLAKE2B 
5d2d9e77ea600690814e503a0af0fcbc413b7a21496271add0ea3b1e83f3dc2d56b0df249447a861884422ac5b159befe2632c232fed4721cc7e0e7ac45f12b1
 SHA512 
48e5489fd3e1dd43ff520b3653597dea6903c60adcdd0462ac2ce4db6f35e2355a0386f8a29066b301dd9c3190f8f836a61d12f37cfc3a4fea3170947cec03ff

diff --git a/media-plugins/calf/calf-0.90.1.ebuild 
b/media-plugins/calf/calf-0.90.1.ebuild
new file mode 100644
index 000..d9425ffcaa7
--- /dev/null
+++ b/media-plugins/calf/calf-0.90.1.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 xdg
+
+DESCRIPTION="A set of open source instruments and effects for digital audio 
workstations"
+HOMEPAGE="http://calf-studio-gear.org/;
+
+if [[ "${PV}" = "" ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/calf-studio-gear/calf.git;
+else
+   SRC_URI="https://github.com/calf-studio-gear/calf/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="cpu_flags_x86_sse experimental gtk jack lash lv2 static-libs"
+
+REQUIRED_USE="jack? ( gtk )"
+
+BDEPEND="
+   virtual/pkgconfig
+"
+DEPEND="
+   dev-libs/atk
+   dev-libs/expat
+   dev-libs/glib:2
+   media-sound/fluidsynth:=
+   gtk? (
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:2
+   x11-libs/pango
+   )
+   jack? ( virtual/jack )
+   lash? ( media-sound/lash )
+   lv2? ( media-libs/lv2 )
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${P}-no-automagic.patch"
+   "${FILESDIR}/${P}-htmldir.patch"
+   "${FILESDIR}/${P}-desktop.patch"
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   --prefix="${EPREFIX}"/usr
+   --without-obsolete-check
+   $(use_enable experimental)
+   $(use_enable gtk gui)
+   $(use_enable jack)
+   $(use_with lash)
+   $(use_with lv2 lv2)
+   $(usex lv2 "--with-lv2-dir=${EPREFIX}/usr/$(get_libdir)/lv2" "")
+   $(use_enable static-libs static)
+   $(use_enable cpu_flags_x86_sse sse)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+   mv "${ED}"/usr/share/bash-completion/completions/calf \
+   "${ED}"/usr/share/bash-completion/completions/calfjackhost
+}

diff --git a/media-plugins/calf/files/calf-0.90.1-desktop.patch 
b/media-plugins/calf/files/calf-0.90.1-desktop.patch
new file mode 100644
index 000..93fc125e011
--- /dev/null
+++ b/media-plugins/calf/files/calf-0.90.1-desktop.patch
@@ -0,0 +1,24 @@
+ * QA Notice: This package installs one or more .desktop files that do not
+ * pass validation.
+ * 
+ *  /usr/share/applications/calf.desktop: error: value "0.90.1" for key 
"Version" in group "Desktop Entry" is not a known version
+ *  /usr/share/applications/calf.desktop: warning: value 
"Application;AudioVideo;Audio;GNOME" for key "Categories" in group "Desktop 
Entry" contains a deprecated value "Application"
+
+
+--- a/calf.desktop.in  

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

2019-03-10 Thread Andreas Sturmlechner
commit: c89d31dd6751cd430b1929c0be61aaf5ea5bf625
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Mar  7 22:33:22 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c89d31dd

x11-misc/screengrab: version bump to 1.101

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

 x11-misc/screengrab/Manifest|  1 +
 x11-misc/screengrab/screengrab-1.101.ebuild | 40 +
 2 files changed, 41 insertions(+)

diff --git a/x11-misc/screengrab/Manifest b/x11-misc/screengrab/Manifest
index 0f2d7809a8b..9bc8ebb5a0a 100644
--- a/x11-misc/screengrab/Manifest
+++ b/x11-misc/screengrab/Manifest
@@ -1 +1,2 @@
+DIST screengrab-1.101.tar.xz 130248 BLAKE2B 
0a81b80249322a8c6b4767b9bae70d43eaa41619927fdd799179d6dc9e15fe0cfb8ef50794890d9f9c84787bb88b447f84452b64f88e114aa3393466b1cf443c
 SHA512 
f253c4015f9c9ae6b53bb4919c0301cc843b0d6f6ab0b8ad88befbd397004aa4838d5900d1af86ed348cbba45fa352ded5192d494bd738c2f2b314e9ad73fb13
 DIST screengrab-1.99.tar.xz 118756 BLAKE2B 
0c18d07ee9fbce0686604e90a988e903bf9a13346e0667091d0e7e5bd42ce03975db1d43dda3d809d92fd2469101efc733fd58bccf9f2ce3af80c210c35179a1
 SHA512 
0cad70a9309f987b6fff8f85028b877f0c621cdcc5cb91f8b82a954637a45af30a144cfe50dc6dc04fb24c17ff2768368f3bf318f244b8a8d5b922bfa42c

diff --git a/x11-misc/screengrab/screengrab-1.101.ebuild 
b/x11-misc/screengrab/screengrab-1.101.ebuild
new file mode 100644
index 000..23ee2d34e1c
--- /dev/null
+++ b/x11-misc/screengrab/screengrab-1.101.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils xdg-utils
+
+DESCRIPTION="Qt application for getting screenshots"
+HOMEPAGE="https://lxqt.org/;
+SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE=""
+
+BDEPEND="dev-qt/linguist-tools:5"
+DEPEND="
+   >=dev-libs/libqtxdg-3.3.1
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   dev-qt/qtnetwork:5
+   kde-frameworks/kwindowsystem:5[X]
+   x11-libs/libxcb
+   x11-libs/libX11
+"
+RDEPEND="${DEPEND}"
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kalzium/

2019-03-10 Thread Andreas Sturmlechner
commit: 23bd3ab556e794baf0472df384850465ba24500a
Author: Roy Bamford  gentoo  org>
AuthorDate: Sun Mar 10 17:42:08 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23bd3ab5

kde-apps/kalzium: added ~arm64

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

 kde-apps/kalzium/kalzium-18.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kalzium/kalzium-18.12.3.ebuild 
b/kde-apps/kalzium/kalzium-18.12.3.ebuild
index b1298f23f82..11e2b28092e 100644
--- a/kde-apps/kalzium/kalzium-18.12.3.ebuild
+++ b/kde-apps/kalzium/kalzium-18.12.3.ebuild
@@ -8,7 +8,7 @@ inherit kde5 flag-o-matic
 
 DESCRIPTION="Periodic table of the elements"
 HOMEPAGE="https://www.kde.org/applications/education/kalzium 
https://edu.kde.org/kalzium/;
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="editor solver"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-apps/xdg-desktop-portal/

2019-03-10 Thread Andreas Sturmlechner
commit: fcb4675cf3cd4f4c2dc73eed4af0be44abc6ab4d
Author: Roy Bamford  gentoo  org>
AuthorDate: Sun Mar 10 20:53:51 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcb4675c

sys-apps/xdg-desktop-portal: added ~arm64

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Roy Bamford  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/11337
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild 
b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild
index 9b36be442ca..e4d30fa425b 100644
--- a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild
+++ b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE="doc" # geolocation
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-sound/drumstick/

2019-03-10 Thread Andreas Sturmlechner
commit: 744ca537be2b3f016ef6771139958215be10ad43
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 21:46:55 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=744ca537

media-sound/drumstick: EAPI-7 bump, add media-sound/fluidsynth slot op

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

 media-sound/drumstick/drumstick-1.1.1.ebuild | 48 ++--
 1 file changed, 16 insertions(+), 32 deletions(-)

diff --git a/media-sound/drumstick/drumstick-1.1.1.ebuild 
b/media-sound/drumstick/drumstick-1.1.1.ebuild
index dec23c6a8c8..637a6a2cf57 100644
--- a/media-sound/drumstick/drumstick-1.1.1.ebuild
+++ b/media-sound/drumstick/drumstick-1.1.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit cmake-utils xdg-utils gnome2-utils
+inherit cmake-utils xdg
 
 DESCRIPTION="Qt/C++ wrapper for ALSA sequencer"
 HOMEPAGE="http://drumstick.sourceforge.net/;
@@ -14,9 +14,16 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="doc fluidsynth pulseaudio"
 
-RESTRICT="test"
-
-RDEPEND="
+BDEPEND="
+   virtual/pkgconfig
+   x11-misc/shared-mime-info
+   doc? (
+   app-doc/doxygen
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   )
+"
+DEPEND="
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
@@ -27,18 +34,12 @@ RDEPEND="
fluidsynth? ( media-sound/fluidsynth )
pulseaudio? ( media-sound/pulseaudio )
 "
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   x11-misc/shared-mime-info
-   doc? (
-   app-doc/doxygen
-   app-text/docbook-xsl-stylesheets
-   dev-libs/libxslt
-   )
-"
+RDEPEND="${DEPEND}"
 
 DOCS=( AUTHORS ChangeLog NEWS README TODO )
 
+RESTRICT="test"
+
 src_prepare() {
cmake-utils_src_prepare
 
@@ -65,7 +66,6 @@ src_configure() {
 
 src_compile() {
cmake-utils_src_compile
-
use doc && cmake-utils_src_compile doxygen
 }
 
@@ -76,19 +76,3 @@ src_install() {
dodoc -r "${BUILD_DIR}"/doc/html
fi
 }
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/drumstick/

2019-03-10 Thread Andreas Sturmlechner
commit: a7b20853eb6f834bf24bc2aefb3f72b80042a16f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 21:52:31 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7b20853

media-sound/drumstick: 1.1.2 version bump

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

 media-sound/drumstick/Manifest   |  1 +
 media-sound/drumstick/drumstick-1.1.2.ebuild | 78 
 2 files changed, 79 insertions(+)

diff --git a/media-sound/drumstick/Manifest b/media-sound/drumstick/Manifest
index 5155e046682..82a056a61ff 100644
--- a/media-sound/drumstick/Manifest
+++ b/media-sound/drumstick/Manifest
@@ -1,2 +1,3 @@
 DIST drumstick-1.1.0.tar.bz2 1012405 BLAKE2B 
ad1e4990cbf4954eadf8c7ae602234852e77abcf534e14090a6e158e9032288fcce6c39b742c40ac9b8c7967dbfcd04578b871088f61ce411de9c910c79e1fbb
 SHA512 
1099b80e1d2819a8343e877742c5f01c114419b2c63a965717bcff2c220aa218f40ac3860cf9496d3586663e73a6c2c7b62aee74c51229578a5ae3044da208da
 DIST drumstick-1.1.1.tar.bz2 1011275 BLAKE2B 
dff36487a1cf79512150638c793c471fb410c3563184e9acdbd9d441c53596a0bc611d4ebef2b4dc0214c0fef5324443fe0dfe4158f45521762abf4e838cf716
 SHA512 
f3278be71b1850bbe742ff46b65a656443a1d655c5bcc1e289d92492db985ab185ed140b88ca68f37235c07926be5b82cfe97ae2f95ca7e3a7f48a7c95c61654
+DIST drumstick-1.1.2.tar.bz2 1012371 BLAKE2B 
e60a5678d33db1831130037bb4a6df6da8de815a6a0ca33a167f85596f45a1d420ca4c689c756c1fd3f794fb2a097bc19878d78bfe0789a40f9eae1b306b769f
 SHA512 
6e84fbf2ce717cdb3c669a477de65d2f32c277073d812546267c0a9556f7ead612e3140cbc412fcd560786ca024f201a1eb3ba9de4b037e3ba8d4db89e0e2e29

diff --git a/media-sound/drumstick/drumstick-1.1.2.ebuild 
b/media-sound/drumstick/drumstick-1.1.2.ebuild
new file mode 100644
index 000..637a6a2cf57
--- /dev/null
+++ b/media-sound/drumstick/drumstick-1.1.2.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils xdg
+
+DESCRIPTION="Qt/C++ wrapper for ALSA sequencer"
+HOMEPAGE="http://drumstick.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc fluidsynth pulseaudio"
+
+BDEPEND="
+   virtual/pkgconfig
+   x11-misc/shared-mime-info
+   doc? (
+   app-doc/doxygen
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   )
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   media-libs/alsa-lib
+   fluidsynth? ( media-sound/fluidsynth )
+   pulseaudio? ( media-sound/pulseaudio )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS ChangeLog NEWS README TODO )
+
+RESTRICT="test"
+
+src_prepare() {
+   cmake-utils_src_prepare
+
+   if ! use fluidsynth ; then
+   sed -i -e "/pkg_check_modules(FLUIDSYNTH/d" \
+   library/rt/CMakeLists.txt \
+   library/rt-backends/CMakeLists.txt \
+   utils/vpiano/CMakeLists.txt || die
+   fi
+
+   if ! use pulseaudio ; then
+   sed -i -e "/pkg_check_modules(PULSE/d" CMakeLists.txt || die
+   fi
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_TESTING=OFF
+   $(cmake-utils_use_find_package doc Doxygen)
+   )
+
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+   use doc && cmake-utils_src_compile doxygen
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   if use doc ; then
+   dodoc -r "${BUILD_DIR}"/doc/html
+   fi
+}



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

2019-03-10 Thread Andreas Sturmlechner
commit: b2fc3f7083616b8d19d307062cf4569104f6d703
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 21:41:51 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2fc3f70

media-plugins/audacious-plugins: Add media-sound/fluidsynth slot op

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

 media-plugins/audacious-plugins/audacious-plugins-3.10.1.ebuild | 2 +-
 media-plugins/audacious-plugins/audacious-plugins-3.9-r2.ebuild | 4 ++--
 media-plugins/audacious-plugins/audacious-plugins-.ebuild   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-plugins/audacious-plugins/audacious-plugins-3.10.1.ebuild 
b/media-plugins/audacious-plugins/audacious-plugins-3.10.1.ebuild
index 2b461d2a057..c5831e1e045 100644
--- a/media-plugins/audacious-plugins/audacious-plugins-3.10.1.ebuild
+++ b/media-plugins/audacious-plugins/audacious-plugins-3.10.1.ebuild
@@ -67,7 +67,7 @@ DEPEND="
>=media-libs/flac-1.2.1-r1
>=media-libs/libvorbis-1.0
)
-   fluidsynth? ( media-sound/fluidsynth )
+   fluidsynth? ( media-sound/fluidsynth:= )
http? ( >=net-libs/neon-0.26.4 )
jack? (
>=media-libs/bio2jack-0.4

diff --git a/media-plugins/audacious-plugins/audacious-plugins-3.9-r2.ebuild 
b/media-plugins/audacious-plugins/audacious-plugins-3.9-r2.ebuild
index 1c297c5c68a..82afc3d0bfc 100644
--- a/media-plugins/audacious-plugins/audacious-plugins-3.9-r2.ebuild
+++ b/media-plugins/audacious-plugins/audacious-plugins-3.9-r2.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
@@ -55,7 +55,7 @@ RDEPEND="
>=media-libs/flac-1.2.1-r1
>=media-libs/libvorbis-1.0
)
-   fluidsynth? ( media-sound/fluidsynth )
+   fluidsynth? ( media-sound/fluidsynth:= )
http? ( >=net-libs/neon-0.26.4 )
jack? (
>=media-libs/bio2jack-0.4

diff --git a/media-plugins/audacious-plugins/audacious-plugins-.ebuild 
b/media-plugins/audacious-plugins/audacious-plugins-.ebuild
index 2b461d2a057..c5831e1e045 100644
--- a/media-plugins/audacious-plugins/audacious-plugins-.ebuild
+++ b/media-plugins/audacious-plugins/audacious-plugins-.ebuild
@@ -67,7 +67,7 @@ DEPEND="
>=media-libs/flac-1.2.1-r1
>=media-libs/libvorbis-1.0
)
-   fluidsynth? ( media-sound/fluidsynth )
+   fluidsynth? ( media-sound/fluidsynth:= )
http? ( >=net-libs/neon-0.26.4 )
jack? (
>=media-libs/bio2jack-0.4



[gentoo-commits] repo/gentoo:master commit in: kde-apps/minuet/

2019-03-10 Thread Andreas Sturmlechner
commit: 52511e9b2e3cc5c189d98d709440cd52161566c9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 10 21:29:19 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52511e9b

kde-apps/minuet: Add missing media-sound/fluidsynth slot op

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

 kde-apps/minuet/minuet-18.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/minuet/minuet-18.12.3.ebuild 
b/kde-apps/minuet/minuet-18.12.3.ebuild
index 02b62fb7d64..591a5e23f18 100644
--- a/kde-apps/minuet/minuet-18.12.3.ebuild
+++ b/kde-apps/minuet/minuet-18.12.3.ebuild
@@ -22,6 +22,6 @@ DEPEND="
$(add_qt_dep qtgui)
$(add_qt_dep qtsvg)
$(add_qt_dep qtquickcontrols2)
-   media-sound/fluidsynth
+   media-sound/fluidsynth:=
 "
 RDEPEND="${DEPEND}"



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

2019-03-10 Thread Andreas Sturmlechner
commit: 226cde984ec3b731aea90ff0519142d943d8f4cf
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Mar  7 22:24:04 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 10 22:45:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=226cde98

x11-misc/qps: version bump to 1.10.20

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

 x11-misc/qps/Manifest   |  1 +
 x11-misc/qps/qps-1.10.20.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/x11-misc/qps/Manifest b/x11-misc/qps/Manifest
index aab02621c1d..d0749b99d36 100644
--- a/x11-misc/qps/Manifest
+++ b/x11-misc/qps/Manifest
@@ -1 +1,2 @@
 DIST qps-1.10.18.tar.xz 164256 BLAKE2B 
5eee79c2bab6eac23a91292132da4054836f86315a18399099aaad8853a06dbd79cb7c52af8c0e7098125d5cc06c04516235d6acb461e2caaf72584e7e05aa1b
 SHA512 
f2647cb814e6cefba71aa70ee63c92dde88b312c9ada67e677de2bf22141afa3d7196d089606d270b610ddf3bd7466e6534de3614bea1a68d3a3b61a23b1c37d
+DIST qps-1.10.20.tar.xz 209588 BLAKE2B 
abf50904a97e9d2f5755bfc25509266de9c4b5a941a1010f93f475f02e8801b970ba112b01727e076c7b232cf23f50f6b8f7d2fe7acf2d8b273686f6a92404f3
 SHA512 
407130ac12f1e68da3e22543634d101c7a8353363ff1d9c6edbf98ce5d48f149aa5d937985f00109b40bd3cdb0b9a8e9745e845dd921be4aaf119022632bb9ef

diff --git a/x11-misc/qps/qps-1.10.20.ebuild b/x11-misc/qps/qps-1.10.20.ebuild
new file mode 100644
index 000..67921d696b4
--- /dev/null
+++ b/x11-misc/qps/qps-1.10.20.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils xdg-utils
+
+DESCRIPTION="Visual process manager - Qt version of ps/top"
+HOMEPAGE="https://lxqt.org/;
+SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2+ LGPL-2.1+ QPL-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="debug"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   >=dev-util/lxqt-build-tools-0.6.0
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+"
+RDEPEND="${DEPEND}"
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-simulation/openrct2/

2019-03-10 Thread Patrice Clement
commit: 87fc169775638b9786c771018cf405bea78d1f1c
Author: Hendrik v. Raven  consetetur  de>
AuthorDate: Sun Mar  3 09:54:00 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87fc1697

games-simulation/openrct2: update objects versions.

Closes: https://bugs.gentoo.org/679288
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Hendrik v. Raven  consetetur.de>
Closes: https://github.com/gentoo/gentoo/pull/11227
Signed-off-by: Patrice Clement  gentoo.org>

 games-simulation/openrct2/Manifest | 2 +-
 games-simulation/openrct2/openrct2-.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-simulation/openrct2/Manifest 
b/games-simulation/openrct2/Manifest
index 1433c4cab37..cb463fa9fd2 100644
--- a/games-simulation/openrct2/Manifest
+++ b/games-simulation/openrct2/Manifest
@@ -1,6 +1,6 @@
 DIST openrct2-0.2.0.tar.gz 6481521 BLAKE2B 
b3a17d4dd7b0d3e68d4a0a200a81307fa598ac9bafd0636fc2fe62cc0921d1e620cf29a31f2fd5d9258d5b79cd952887e853c005ed719f5990744e9849ad0ee8
 SHA512 
ac42509ceb52eab20964bf95d7a140dc00d9b4c2569fab1200faff31548f063e209acde29f8ca4ee14858fcf5f6781eebe6d5f7de3d4e01fd43c43ee8905863b
 DIST openrct2-0.2.1.tar.gz 6571807 BLAKE2B 
f5a72072ce4cda9b68d1f82f56932f1a074c4ea4050d63e4bf39de1220544d543265c67f764f85d0cc85b6ff42f3fa67fc71e7dd9c5eacb1881be47e2d79a84f
 SHA512 
04bf2cfbb2d3b9fb0a8423cfffc70b81a2a2518af73b9a2c2c65b2a4e5ef2380621d4d3aaefaea73d926a99259dfb047d6fcc330cd0d7227541cffead28ba540
 DIST openrct2-objects-v1.0.2.zip 2068705 BLAKE2B 
4f291289a7f331bad19080ffc63d204819973682710ea62c3fc66fb9d05b63c267e2146d6c533f59eac3baa9760b85953ae344b6da4bb778e5ccd249f6160525
 SHA512 
814d52ee5c071f33c17d88bc53711a509d7988ece12381996b3d233b9b46c79739fd2dafbed57f00537b19c78e290e2481d72b2824b5574734f6876a0af0c359
-DIST openrct2-objects-v1.0.3.zip 2070513 BLAKE2B 
3499b022f1d1f2b05da003f87f5f885de8463ed63d751653b0d8d48e2a339496d84d025eb2e44619012aa76360f6880541a519312e6d339eca862f6274d2b73b
 SHA512 
9012a6337df7abd2743e94e3606266cde306335f33bf4f7869cca90c9c31758806c063b697bc3a6e21af7c733841551f2b29072592850cc51090d58f5f685f99
 DIST openrct2-objects-v1.0.7.zip 2164242 BLAKE2B 
003baf3400c52e3b2efdc208f6c64a45f7c9274aca3b729856a60fc1e72c8b6440b663d3fd791ebde7412df9920095367763bcad58257534b32c222d97976dcb
 SHA512 
8e77adae59062582a22be69e81d144477482148c839abbea76e6bbbc65ca6426a8354bd4726176702a41684f01a62c5bddc0f6c2c6e42fa91c88815879c91fe5
+DIST openrct2-objects-v1.0.8.zip 2167920 BLAKE2B 
551fd825a0bfb6bd2fce8a34aab393ea91f815508f51523a3839a3d2054afe96efac09976f1defd046be55fa14806b05c9cd5a9484d7e3ce1a86c54335a0741a
 SHA512 
29e60a2d72e0c7774993e9d70aeb1c931b359e35776049a1baafd2d0bdfc56c1374e577e43f596c31ee146bd38b87eeeb8acc3ea03fdd9c9bc3be08436b7aa6a
 DIST openrct2-title-sequence-v0.1.2.zip 4073116 BLAKE2B 
a36fb07e8da62afce129f2224f4cf5cc226922094132a3dc515fda1f02e0f8bbe07c973363f824ae58a54a26f252ad96f3f673bf5f142be5c964f45b6f712ed6
 SHA512 
7592c5397ceb27347c127ae5c4f8e11d7ef2ff23c97f627b354f941894420f546ffdcff88e2348e42c82d182ccf620e739c745d894a9b5650a0d7d028b68a106

diff --git a/games-simulation/openrct2/openrct2-.ebuild 
b/games-simulation/openrct2/openrct2-.ebuild
index 813f2f4c1db..36be8a5dcec 100644
--- a/games-simulation/openrct2/openrct2-.ebuild
+++ b/games-simulation/openrct2/openrct2-.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
@@ -20,7 +20,7 @@ else
 fi
 
 TSV="0.1.2"
-OBJV="1.0.3"
+OBJV="1.0.8"
 SRC_URI+="

https://github.com/OpenRCT2/title-sequences/releases/download/v${TSV}/title-sequence-v${TSV}.zip
-> ${PN}-title-sequence-v${TSV}.zip



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

2019-03-10 Thread Patrice Clement
commit: d48726c9bfc54ec57115503c65aa4670c9676519
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Fri Mar  8 20:58:37 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d48726c9

app-office/moneydance: bump to version 2019.1.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/11309
Signed-off-by: Patrice Clement  gentoo.org>

 app-office/moneydance/Manifest |  1 +
 app-office/moneydance/moneydance-2019.1.ebuild | 56 ++
 2 files changed, 57 insertions(+)

diff --git a/app-office/moneydance/Manifest b/app-office/moneydance/Manifest
index 89a5e0da89f..5f2581b71d3 100644
--- a/app-office/moneydance/Manifest
+++ b/app-office/moneydance/Manifest
@@ -1,3 +1,4 @@
 DIST moneydance-2017.10-amd64.tar.gz 132116528 BLAKE2B 
f5ba44a89944657c6c1380226dc512729825b084783e6d70dd7b2b731411294c7333bae858b2be3d5321e5145230257b325dc2b72a22744a877673c1c934d854
 SHA512 
175ff470b5fb5c3851eae708cc641777d7bdf1ede40366ccf5a135d6c813c08d9ce32665a2307c3aefa63eeb2206ad0874cb989aa998415abb86184a2b114ce8
 DIST moneydance-2017.10-x86.tar.gz 134860964 BLAKE2B 
92181a6c6a81063377823b0fd9ed652036cf1f633c2cab57f19d1dbb18a2542361fc2bafab8852c11b941a24532f662351ea2d05bc928818db24a4cf3cae7112
 SHA512 
18d9d4ce7b0b65566ac81fea66ba34d66173559ca90ac166cc9b90631400845ae1c9d92ae781a618cacc57cd4f630f079736101d29b66d9c6cee7d32c7c15c22
 DIST moneydance-2019.0-amd64.tar.gz 132467602 BLAKE2B 
d58df88166f73c80b755863bd9ea18fdadf192ac9f0016313ab59c209c895ef8c1203d0b7627004521a9569343c3269bc1854e4e7925ec6e438148059d8adaf3
 SHA512 
2ee22626b0b3918c3ebd80f7ca4ce9c1ad39716fb837887ca84a970f2f3d64d7daff36eff31eaa22753e55e0dcfc49ccb2f10e5c8dfbf21e67e8627b17d9de59
+DIST moneydance-2019.1-amd64.tar.gz 132469388 BLAKE2B 
516ff3af46e23370cf97b7a41e9802f14f5272c36b01080d69f339bdb9ca7de045de35baead8d97a8febece062dcd8b2befecad2744773e9a1c79b9a16b9639a
 SHA512 
a28787dcc10173f4d492ec1bd5a8f17b6592f86c324e57a7e2951a0265825e4f78b620a4aabb4cde94c97860d3aaac8066572882c772d5abfa79c90cd33770ee

diff --git a/app-office/moneydance/moneydance-2019.1.ebuild 
b/app-office/moneydance/moneydance-2019.1.ebuild
new file mode 100644
index 000..e6885dce27b
--- /dev/null
+++ b/app-office/moneydance/moneydance-2019.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2018-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit desktop eapi7-ver java-pkg-2 xdg-utils
+
+MY_PN="Moneydance"
+MY_PV="$(ver_cut 1)"
+
+DESCRIPTION="A cross-platform personal finance application"
+HOMEPAGE="https://moneydance.com/;
+SRC_URI="https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_amd64.tar.gz
 -> ${P}-amd64.tar.gz"
+
+LICENSE="Apache-1.0 Apache-2.0 BSD CPAL-1.0 CPL-1.0 CSL-2.0 LGPL-2 MIT TIK"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="|| (
+   >=dev-java/openjdk-bin-11.0
+   >=dev-java/openjdk-11.0
+   >=dev-java/oracle-jdk-bin-11.0
+   )
+"
+
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_PN}"
+
+RESTRICT="bindist fetch mirror"
+
+pkg_nofetch() {
+   elog "Please download ${A} from"
+   elog 
"https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_amd64.tar.gz;
+   elog "and place it in your DISTDIR directory."
+}
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   java-pkg_dojar lib/*.jar
+   java-pkg_dolauncher moneydance --main "Moneydance" --java_args "-client 
-Dawt.useSystemAAFontSettings=gasp -Dawt.useSystemAAFontSettings=on -Xmx1024m"
+
+   doicon resources/*.png
+   make_desktop_entry "moneydance" "Moneydance" moneydance Office
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



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

2019-03-10 Thread Patrice Clement
commit: 18edea7e3774cf8c6d39e33d2b6b63f56e4a5140
Author: Horea Christian  yandex  com>
AuthorDate: Thu Mar  7 13:25:40 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18edea7e

dev-python/pandas: version bump 0.24.1 EAPI bump 7.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Horea Christian  yandex.com>
Closes: https://github.com/gentoo/gentoo/pull/11291
Signed-off-by: Patrice Clement  gentoo.org>

 dev-python/pandas/Manifest |   1 +
 dev-python/pandas/pandas-0.24.1.ebuild | 171 +
 2 files changed, 172 insertions(+)

diff --git a/dev-python/pandas/Manifest b/dev-python/pandas/Manifest
index a786c571827..12e6c6bfc5c 100644
--- a/dev-python/pandas/Manifest
+++ b/dev-python/pandas/Manifest
@@ -1,3 +1,4 @@
 DIST pandas-0.19.1.tar.gz 8360233 BLAKE2B 
82611ca1a3e3169ac2d084f4dcd9c4d4d74e9e9c9913a41acad48ae68a208a884dfd877445a7d658a7ff098ef383cedae7e79a4900baa8d56c032ce9aaad96eb
 SHA512 
6451990a7fae8c6db8ab0b014a13b4f1828754d3998f13c17b111f891fb9fd23f8e09b907623096dfa55668c42298eee1373210a9fddb95f56dd7d552b964e6f
 DIST pandas-0.23.0.tar.gz 13092442 BLAKE2B 
e11ae088c9a4be481f516d83797b1b1d5e9c82f7d9fa98f1ea65e3405e33c99e1e1cf7a35f56a21d9dc922c1d0828b4947d9c6189a5f76ad5c1b28618293f9da
 SHA512 
c9dc7bf843e3392b8b1b4d46c6aa6dd12435aa974abc875574a7a8794abe6ea531fa92d8a635153839fd3fef9059d96a4512831b86b1fb6fb69588c8b29a95d6
 DIST pandas-0.23.4.tar.gz 10490077 BLAKE2B 
28a78860e0aa5de8def7bb529fc98b9121a516b7fd7620e31e000ae14217165e6677ce26b56da0b9c603930ab1304725c644426a135d8f9b2a84921b88f3d23d
 SHA512 
0c89db820a49e0cfb9764e64589ff9af819f9a53c01bd0254cd1b6dbd1e9fd452b2ff7c7330ede7623c7576589113e831a19a57c735562b55f90506df15805b9
+DIST pandas-0.24.1.tar.gz 11832827 BLAKE2B 
fd30fb736be9ac1e1778d78963ffa33e492fa27a54767c93647cef826cc95459dc97d07a88836554586c9a2db038fb2d897caa8bd1413433f276cffbdb49b1cc
 SHA512 
15f75308f4c437ad0096c3a3d768563b071b3d8e55e1850a5ee0f980f56a9d8d1b9fed9d7707ba43e80052e6c5fea313ac1ad2687935f0ab37a16a68bf64ae19

diff --git a/dev-python/pandas/pandas-0.24.1.ebuild 
b/dev-python/pandas/pandas-0.24.1.ebuild
new file mode 100644
index 000..25670ee8bcf
--- /dev/null
+++ b/dev-python/pandas/pandas-0.24.1.ebuild
@@ -0,0 +1,171 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+PYTHON_REQ_USE="threads(+)"
+
+VIRTUALX_REQUIRED="manual"
+
+inherit distutils-r1 eutils flag-o-matic virtualx
+
+DESCRIPTION="Powerful data structures for data analysis and statistics"
+HOMEPAGE="http://pandas.pydata.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P/_/}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc full-support minimal test X"
+
+RECOMMENDED_DEPEND="
+   >=dev-python/bottleneck-1.2.1[${PYTHON_USEDEP}]
+   >=dev-python/numexpr-2.1[${PYTHON_USEDEP}]
+"
+OPTIONAL_DEPEND="
+   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+   dev-python/blosc[${PYTHON_USEDEP}]
+   dev-python/boto[${PYTHON_USEDEP}]
+   >=dev-python/google-api-python-client-1.2.0[$(python_gen_usedep 
python2_7 pypy)]
+   || (
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   )
+   dev-python/httplib2[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   || (
+   >=dev-python/openpyxl-1.6.1[${PYTHON_USEDEP}]
+   dev-python/xlsxwriter[${PYTHON_USEDEP}]
+   )
+   >=dev-python/pytables-3.2.1[${PYTHON_USEDEP}]
+   dev-python/python-gflags[$(python_gen_usedep python2_7 pypy)]
+   dev-python/rpy[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/statsmodels[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-0.8.1[${PYTHON_USEDEP}]
+   >=dev-python/xarray-0.10.8[${PYTHON_USEDEP}]
+   dev-python/xlrd[${PYTHON_USEDEP}]
+   dev-python/xlwt[${PYTHON_USEDEP}]
+   sci-libs/scipy[${PYTHON_USEDEP}]
+   X? (
+   || (
+   dev-python/PyQt5[${PYTHON_USEDEP}]
+   dev-python/pygtk[$(python_gen_usedep python2_7)]
+   )
+   || (
+   x11-misc/xclip
+   x11-misc/xsel
+   )
+   )
+"
+COMMON_DEPEND="
+   >dev-python/numpy-1.7[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.0[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+"
+DEPEND="${COMMON_DEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/cython-0.23[${PYTHON_USEDEP}]
+   doc? (
+   ${VIRTUALX_DEPEND}
+   app-text/pandoc
+   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+   

[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamtk/, app-antivirus/clamtk/files/

2019-03-10 Thread Patrice Clement
commit: 314e4e9792a71c4db52b78022370680a8acf1ad7
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Fri Mar  8 20:39:00 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=314e4e97

app-antivirus/clamtk: bump to version 6.00.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/11305
Signed-off-by: Patrice Clement  gentoo.org>

 app-antivirus/clamtk/Manifest  |   1 +
 app-antivirus/clamtk/clamtk-6.00.ebuild| 157 +
 .../files/clamtk-6.00-change_icon_path.patch   |  15 ++
 3 files changed, 173 insertions(+)

diff --git a/app-antivirus/clamtk/Manifest b/app-antivirus/clamtk/Manifest
index 6b732e13288..1ced896de9c 100644
--- a/app-antivirus/clamtk/Manifest
+++ b/app-antivirus/clamtk/Manifest
@@ -1,4 +1,5 @@
 DIST clamtk-5.26.tar.xz 243748 BLAKE2B 
42845cdd0f9e7387b2b69c5844ba26306ba1b0e64f70c16bcb7a830ba17c35dd681e48f9b386f6fbbc5c4a8da1ac9383ca7ef19376ac7955405fd9234b3e
 SHA512 
791228a678a0b3bd57ef6effc959bec0c78151f56715d85ca8fafc139ab649d417762db1f567e9fc28d10475138ba90012a9fe9b49840a7658039f9d42e7bcf5
+DIST clamtk-6.00.tar.xz 227592 BLAKE2B 
b1fe3afc1fed5d96fea9fad4dfd065fc794cdcac3bbb49e04afa78548c37d6817c2c7638f46cd045bb1447d71ec619026e8d5226674951045914d5df28c3166a
 SHA512 
5b8434532142f340caf5b16f95da0f5d0f3910c3c834ef963c1c8a9d7c1d032555c38fcb3f6195ad5f6cacde796824b68432bc1d16460a34976f0608eee47fdc
 DIST clamtk-gnome-0.02.tar.xz 14888 BLAKE2B 
2137e7bc53f557cdb2f03afe3b6cb3b1185bb12c6b646f2bdb74c69bc3d6b59b23895d36583225f6a536d91237ffd84d307e7b52f16336a88311a60b84b2cbcd
 SHA512 
f4a33d31ecf914f016fd029a7e9b9c903ba39bb139ed21f15786445d2394ace36ff08396baf68130d4bc3081847c34efda31ad3f727b9f5c479da4392750940f
 DIST clamtk-kde-0.18.tar.xz 17732 BLAKE2B 
ca82934417f2d869fd8c8e36a31ef4a52cf4ee73581c5d1d400c1b28908c5ea2524a8f5d1110b1e949038378613fb4d5607d5123eebe91df695a53d0dd489302
 SHA512 
145ddd349010e0bb6fe3295e50d6e15a2dd96e604babbd5de4cb49ba75169d2050777cac38e40ac6a64cb89ddf94025d610aca73136c75f81115d0a2d863d24e
 DIST nemo-sendto-clamtk-0.04.tar.xz 4228 BLAKE2B 
ce656d4f021bc30cd12fb2ee5f98a78c1f1fdb2460ed2cbba0b572408617f91b39b2ca2fe542b9cec7be79b4b9fdfd685f5553e1a671454ca1e6723241dcb805
 SHA512 
2b5d3abbc4ae5dbc71b1b7bc836df88ad51e6afa00d5e954b5c1355a70c0420b6fef895e1cb5cccb86a662aee2039cef6c01821c1347fa155b5da3529b25562c

diff --git a/app-antivirus/clamtk/clamtk-6.00.ebuild 
b/app-antivirus/clamtk/clamtk-6.00.ebuild
new file mode 100644
index 000..e9a228575eb
--- /dev/null
+++ b/app-antivirus/clamtk/clamtk-6.00.ebuild
@@ -0,0 +1,157 @@
+# Copyright 1999-2019 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit desktop perl-functions python-single-r1 xdg-utils
+
+MY_PV_KDE="0.18"
+MY_PV_NAUTILUS="0.02"
+MY_PV_NEMO="0.04"
+MY_PV_THUNAR="0.06"
+
+DESCRIPTION="A graphical front-end for ClamAV"
+HOMEPAGE="https://dave-theunsub.github.io/clamtk/;
+SRC_URI="
+   https://bitbucket.org/davem_/${PN}-gtk3/downloads/${P}.tar.xz
+   kde? ( 
https://bitbucket.org/davem_/${PN}-kde/downloads/${PN}-kde-${MY_PV_KDE}.tar.xz )
+   nautilus? ( 
https://bitbucket.org/davem_/${PN}-gnome/downloads/${PN}-gnome-${MY_PV_NAUTILUS}.tar.xz
 )
+   nemo? ( 
https://bitbucket.org/davem_/nemo-sendto-${PN}/downloads/nemo-sendto-${PN}-${MY_PV_NEMO}.tar.xz
 )
+   thunar? ( 
https://bitbucket.org/davem_/thunar-sendto-${PN}/downloads/thunar-sendto-${PN}-${MY_PV_THUNAR}.tar.xz
 )
+"
+
+LICENSE="|| ( Artistic GPL-1+ )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="kde nautilus nemo +nls thunar"
+REQUIRED_USE="nautilus? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   app-antivirus/clamav
+   dev-perl/File-chdir
+   dev-perl/Gtk3
+   dev-perl/JSON
+   dev-perl/LWP-Protocol-https
+   dev-perl/LWP-UserAgent-Cached
+   dev-perl/Locale-gettext
+   dev-perl/Text-CSV
+   dev-perl/glib-perl
+   dev-perl/libwww-perl
+   virtual/perl-Digest-MD5
+   virtual/perl-Digest-SHA
+   virtual/perl-Encode
+   virtual/perl-MIME-Base64
+   virtual/perl-Time-Piece
+   x11-themes/faenza-icon-theme
+   nautilus? ( dev-python/nautilus-python[${PYTHON_USEDEP}] )
+"
+
+BDEPEND="nls? ( sys-devel/gettext )"
+
+DOCS=( "CHANGES" "credits.md" "DISCLAIMER" "README.md" )
+
+PATCHES=( "$FILESDIR"/"${P}"-change_icon_path.patch )
+
+pkg_setup() {
+   if use nautilus; then
+   python-single-r1_pkg_setup
+   fi
+}
+
+src_unpack() {
+   default
+
+   unpack "${S}"/clamtk.1.gz
+
+   if use kde; then
+   unpack "${S}"/../clamtk-kde-${MY_PV_KDE}/clamtk-kde.1.gz
+   fi
+
+   if use nautilus; then
+   unpack 
"${S}"/../clamtk-gnome-${MY_PV_NAUTILUS}/clamtk-gnome.1.gz
+   fi
+
+   if 

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

2019-03-10 Thread Patrice Clement
commit: e40d75a77bb07d4ebafda4c966efe50e2d1901b2
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sat Mar  9 22:09:51 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e40d75a7

sys-apps/smc-sum: bump to version 2.2.0.20190220.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/11323
Signed-off-by: Patrice Clement  gentoo.org>

 sys-apps/smc-sum/Manifest  |  1 +
 sys-apps/smc-sum/smc-sum-2.2.0.20190220.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/sys-apps/smc-sum/Manifest b/sys-apps/smc-sum/Manifest
index 1782a146348..bb80ebd6374 100644
--- a/sys-apps/smc-sum/Manifest
+++ b/sys-apps/smc-sum/Manifest
@@ -1 +1,2 @@
 DIST sum_2.1.0_Linux_x86_64_20180903.tar.gz 6958388 BLAKE2B 
5252408762912ab73c48b2167fd76cac719f909268132d959a86963c209787d2578cae89ff778823cea51049b618124ccc83a4d0cca461a814385516dc1298b8
 SHA512 
78665600083c12aa45cfb4176cb6b52a02291933bd4b771c2dee5519fdc00dcbf3a09cbb11ab9eb7471b99729640c322a156ece71398d859259af5720ab99bbb
+DIST sum_2.2.0_Linux_x86_64_20190220.tar.gz 8353887 BLAKE2B 
47c7a4fbd1fdba065c03cd9172283d5594ac0fc8d5443a7c0d144861899172f38e8a4023a037499baaa5c3afc2b45dd356e494ba0dc6ea77bf2e4acccd92
 SHA512 
f96acd97492d3299781fdc98fa318e8c5b1d02bcf48fe246f3231080691a641f0655af057c46dfec71aafd6b589b76f63e90bd936e5a5a48b94788391608

diff --git a/sys-apps/smc-sum/smc-sum-2.2.0.20190220.ebuild 
b/sys-apps/smc-sum/smc-sum-2.2.0.20190220.ebuild
new file mode 100644
index 000..d72c9760f77
--- /dev/null
+++ b/sys-apps/smc-sum/smc-sum-2.2.0.20190220.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_DATE="$(ver_cut 4)"
+MY_PN="${PN/smc-/}"
+MY_PV="$(ver_cut 1-3)"
+
+DESCRIPTION="Updates the BIOS and IPMI firmware and system settings on 
Supermicro mainboards"
+HOMEPAGE="https://www.supermicro.com;
+SRC_URI="${MY_PN}_${MY_PV}_Linux_x86_64_${MY_DATE}.tar.gz"
+
+LICENSE="supermicro"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+
+RDEPEND="sys-apps/smc-sum-driver"
+
+RESTRICT="bindist fetch mirror"
+
+S="${WORKDIR}/${MY_PN}_${MY_PV}_Linux_x86_64"
+
+DOCS=( "ReleaseNote.txt" "SUM_UserGuide.pdf" "sumrc.sample" 
"ExternalData/SMCIPID.txt" "ExternalData/VENID.txt" )
+
+QA_PREBUILT="usr/bin/smc-sum"
+
+pkg_nofetch() {
+   elog "Please download ${A} from"
+   elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0=SUM;
+   elog "and place it in your DISTDIR directory."
+}
+
+src_install() {
+   newbin sum smc-sum
+
+   einstalldocs
+}



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

2019-03-10 Thread Patrice Clement
commit: 316e239259a24abb2c71d7ecd017875125844b46
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sat Mar  9 22:11:02 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=316e2392

sys-apps/smc-sum: drop old version.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Signed-off-by: Patrice Clement  gentoo.org>

 sys-apps/smc-sum/Manifest  |  1 -
 sys-apps/smc-sum/smc-sum-2.1.0.20180903.ebuild | 38 --
 2 files changed, 39 deletions(-)

diff --git a/sys-apps/smc-sum/Manifest b/sys-apps/smc-sum/Manifest
index bb80ebd6374..78be620f98e 100644
--- a/sys-apps/smc-sum/Manifest
+++ b/sys-apps/smc-sum/Manifest
@@ -1,2 +1 @@
-DIST sum_2.1.0_Linux_x86_64_20180903.tar.gz 6958388 BLAKE2B 
5252408762912ab73c48b2167fd76cac719f909268132d959a86963c209787d2578cae89ff778823cea51049b618124ccc83a4d0cca461a814385516dc1298b8
 SHA512 
78665600083c12aa45cfb4176cb6b52a02291933bd4b771c2dee5519fdc00dcbf3a09cbb11ab9eb7471b99729640c322a156ece71398d859259af5720ab99bbb
 DIST sum_2.2.0_Linux_x86_64_20190220.tar.gz 8353887 BLAKE2B 
47c7a4fbd1fdba065c03cd9172283d5594ac0fc8d5443a7c0d144861899172f38e8a4023a037499baaa5c3afc2b45dd356e494ba0dc6ea77bf2e4acccd92
 SHA512 
f96acd97492d3299781fdc98fa318e8c5b1d02bcf48fe246f3231080691a641f0655af057c46dfec71aafd6b589b76f63e90bd936e5a5a48b94788391608

diff --git a/sys-apps/smc-sum/smc-sum-2.1.0.20180903.ebuild 
b/sys-apps/smc-sum/smc-sum-2.1.0.20180903.ebuild
deleted file mode 100644
index 878ee9ea607..000
--- a/sys-apps/smc-sum/smc-sum-2.1.0.20180903.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-MY_DATE="$(ver_cut 4)"
-MY_PN="${PN/smc-/}"
-MY_PV="$(ver_cut 1-3)"
-
-DESCRIPTION="Updates the BIOS and IPMI firmware and system settings on 
Supermicro mainboards"
-HOMEPAGE="https://www.supermicro.com;
-SRC_URI="${MY_PN}_${MY_PV}_Linux_x86_64_${MY_DATE}.tar.gz"
-
-KEYWORDS="-* ~amd64 ~x86"
-LICENSE="supermicro"
-SLOT="0"
-
-RDEPEND="sys-apps/smc-sum-driver"
-
-RESTRICT="bindist fetch mirror"
-
-S="${WORKDIR}/${MY_PN}_${MY_PV}_Linux_x86_64"
-
-DOCS=( "ReleaseNote.txt" "SUM_UserGuide.pdf" "sumrc.sample" 
"ExternalData/SMCIPID.txt" "ExternalData/VENID.txt" )
-
-QA_PREBUILT="usr/bin/smc-sum"
-
-pkg_nofetch() {
-   elog "Please download ${A} from"
-   elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0=SUM;
-   elog "and place it in your DISTDIR directory."
-}
-
-src_install() {
-   newbin sum smc-sum
-
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: net-p2p/go-ipfs-bin/

2019-03-10 Thread Patrice Clement
commit: e0f88818343ce4c033b17e956c8c402f448dd3c9
Author: David Roman  gmail  com>
AuthorDate: Sun Mar  3 13:45:52 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0f88818

net-p2p/go-ipfs-bin: drop old ebuilds.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: David Roman  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11230
Signed-off-by: Patrice Clement  gentoo.org>

 net-p2p/go-ipfs-bin/Manifest |  8 
 net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.15-r1.ebuild | 47 
 net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.17.ebuild| 47 
 3 files changed, 102 deletions(-)

diff --git a/net-p2p/go-ipfs-bin/Manifest b/net-p2p/go-ipfs-bin/Manifest
index 8b36bed1e9a..a2965722199 100644
--- a/net-p2p/go-ipfs-bin/Manifest
+++ b/net-p2p/go-ipfs-bin/Manifest
@@ -1,12 +1,4 @@
-DIST go-ipfs-bin-0.4.15.bash 20856 BLAKE2B 
60370fabf7dee1f157c242fef5709b486428db4dde24388fca1a21655b44e9cbd07a523af05c66f70e8a7ac43a40cb4a439faaae856bfe52c74853e7539b4f3e
 SHA512 
17568f42a0980734e57a6c22bab4bac149719ab4d586a5a477f4b11610c2c982c1b5c395b9244c73aa95c82bd40688b8368960bfc0fd5db2e6139660d38e6c9a
-DIST go-ipfs-bin-0.4.17.bash 20856 BLAKE2B 
60370fabf7dee1f157c242fef5709b486428db4dde24388fca1a21655b44e9cbd07a523af05c66f70e8a7ac43a40cb4a439faaae856bfe52c74853e7539b4f3e
 SHA512 
17568f42a0980734e57a6c22bab4bac149719ab4d586a5a477f4b11610c2c982c1b5c395b9244c73aa95c82bd40688b8368960bfc0fd5db2e6139660d38e6c9a
 DIST go-ipfs-bin-0.4.18.bash 20753 BLAKE2B 
c34d29a48cf249b7a646a8a7b6015b9c4a4a5d8656187ec5984b0dfb741a8ca7b2f2d0a10bc0288aa862679c6d52145936b46497936565ba7cdb2ba847fda5b8
 SHA512 
acd3bdb689964aa5e15965bfea3cd1267f54a2014c05f49f4e536902cbdab3e22038f4f5db5ecc273c147135b265fcb82a41db22bfc3fd8f6ddc8ae43fd053ea
-DIST go-ipfs_v0.4.15_linux-386.tar.gz 8189548 BLAKE2B 
6f82260f92b55d863189ad6f0cdeff4972df863953d132cbb11623e06c33b154e650e9fd0bd03d4a3f8477cce22447603a0207f0afc6eed074fcf7d05ead01af
 SHA512 
11b4f11da0754819456dc7b5d149d72670582cd3e9c90b518546024356857c49a9a97ebebf1bc495e48e4bde96884e58f979a51fc57993bdff0509bccc6fad31
-DIST go-ipfs_v0.4.15_linux-amd64.tar.gz 10209630 BLAKE2B 
ce6fec2968765ac54f1376f0e8f9f3728338b06104a4b841b7993b5955f889e62e0bcf4e79fe6e180ef2e6cb4e9b07745935aaea74d7d6a050b7484e6d6ba9be
 SHA512 
d77790c5c58f49229989b0e08fa537bc084bf9e2953479e307557e96924f96b913f00c4a7a76c687f2db63f098a18a575f34d88a3f226e7933039e8d8910dd10
-DIST go-ipfs_v0.4.15_linux-arm.tar.gz 8124892 BLAKE2B 
8f3ab08f83ca7c4067a230fc0557393f107a08d1df069fd2029393cc1320d5cf678316e988472696aeceadea2d4f04e8c0bb85526284627c1d9e5f0acb2cc3e7
 SHA512 
4e98fda84d0f8c1e118150771b03a238cec96631d8ea798bf5c494f60711f1d272abe0830edfafb9f7fa6e246c59f30fe7896f231217f1b5aa2bdb6ccd3a94a5
-DIST go-ipfs_v0.4.17_linux-386.tar.gz 8625346 BLAKE2B 
e72b51a25eb0c18958f434483d28c45b43120ec9e583184cad8ac57c9470d685c568d9e166899d355200f89a0fe9fb3b05f9ce4c00c8c03bb928b0714b5d67c8
 SHA512 
031ee1624499ba9fd72efef780b1a04dee9a69dccc41190cebefcf5c271f676829fc220281db24d75a9159cd52fbbe3c85855911a5925efa23db85d2daefb500
-DIST go-ipfs_v0.4.17_linux-amd64.tar.gz 10726868 BLAKE2B 
bde05330dec16a9d40cf6ab0a872a2b2640e9d6811bc70b0a77a2149c36f0f9ddca927dcf66a7264b71b9a39ca49ab4e698ddaa7683b4b4ce871e207032ba9f5
 SHA512 
1d0b1b14b544c81ed6ecf4b5481e9b186d11d29afe1c63ad49abcc54346ec98ba28f7cfd712b5947a988ea7b810c71178ee79aadc87f3a946ecbfd5dcfd00b17
-DIST go-ipfs_v0.4.17_linux-arm.tar.gz 8541559 BLAKE2B 
a0633f414a2b8e6bfd1679442653cdcecaa1f3e5072ed9ca3afb64dd0183155077af71723a282285f2d70b7ac256d4e2e27515175453f16cd900ee01dcfb7440
 SHA512 
586b40575a18933eccd3a5af81efac8c0b6ea941bb5cef9e5bfc95ce56134863934c0e2fde29aa24944791c4842f0055ef43d1aab64b339649033801e4739cb6
 DIST go-ipfs_v0.4.18_linux-386.tar.gz 11128726 BLAKE2B 
2f1289bb0aa93d0d03585bb90f577f91c8db922ba7905aab90c6e6b7804b7fab5c52b861aa0cdd927de8ea0b6e20f22f1c42c390628cd2e660fbaecd55b04d24
 SHA512 
7fff0da87827dcef7c84f959f4cfdc0b5e43e82c636b77fd600d4f62d7b78b8f1660ea346caa5eaf2d791ab275f41c0f83d606e4b36f29f3284a1851a82fbce5
 DIST go-ipfs_v0.4.18_linux-amd64.tar.gz 13791729 BLAKE2B 
777d20792d089216010574798245e0eac0a5ec46549aef3ec4162c289d1d4fec1b381d8fba39ad2a57d88fcbeee5cdd1bd8509fa8883dd946fb452c4266f95de
 SHA512 
ef5b44a0aaed604890c83322ca02228061204085b87b20dd173edfe6b6631fc7a54724d2e00202488c86886992a0d409f43e09f022cdf8b1138f8419cf7614b0
 DIST go-ipfs_v0.4.18_linux-arm.tar.gz 10933477 BLAKE2B 
b846926b33c78a6d089717689993c6a9c9b6ae03b32f184c2a74ecc1a9c290e7b29a9e35f2e7691e504e86c6f6229d86bbf956d90d939decb91a22fe04f74504
 SHA512 
c60cf427109c9c08a73a8270fe9d2792932894cfd68c1a90ec159733d121c5c12647e4b8ab2ed24865c9a4b7f8cb94db9dbe47667e48b5525b39f0c3a0acf085

diff --git a/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.15-r1.ebuild 
b/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.15-r1.ebuild
deleted file mode 100644
index ac644267056..000

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

2019-03-10 Thread Patrice Clement
commit: ad4a0ec0f342720647cf1b4f8a1c4aaeff785448
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Oct  7 14:57:17 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad4a0ec0

app-misc/glcdprocdriver: bump to version 0.1.2.

Closes: https://bugs.gentoo.org/470658
Closes: https://bugs.gentoo.org/667962
Signed-off-by: Conrad Kostecki  kostecki.com>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10097
Signed-off-by: Patrice Clement  gentoo.org>

 app-misc/glcdprocdriver/Manifest   |  1 +
 .../glcdprocdriver/glcdprocdriver-0.1.2.ebuild | 33 ++
 app-misc/glcdprocdriver/metadata.xml   | 26 -
 3 files changed, 53 insertions(+), 7 deletions(-)

diff --git a/app-misc/glcdprocdriver/Manifest b/app-misc/glcdprocdriver/Manifest
index a1009e9b551..ec109e884f1 100644
--- a/app-misc/glcdprocdriver/Manifest
+++ b/app-misc/glcdprocdriver/Manifest
@@ -1 +1,2 @@
+DIST GLCDprocDriver-0.1.2.tar.gz 21438 BLAKE2B 
a480d241ad1f7b88ef63a0d2934d59325a9d5739497313c8bcc3f720a071d5bf2804986715e4392fc4713fc3641ae23e5f54cb81cdf1d45db9397d98260a
 SHA512 
b39dc9d68225bde63a053f124260cec9a081da1d2df6d245be109c8017d60e0e495f056fbc7ee077633d3ac68aaf7cdbaf606e1726f383aa583775a75eea5433
 DIST glcdprocdriver-0.0.6.tar.bz2 17209 BLAKE2B 
631918337227c43eac163d7353182852500c08db0d1d0f3d4145d9b57895a66eb8c47a16715c1c0e4c3ab044a0de5ed80c282fd57850cbb33636cf775b721a4f
 SHA512 
c489b6e6d6a72306867adb94ed6a6cf6354c834a27fd2ab2ac733707954b18bf93dc56a868e167fcb183602c03ac648bb941699760817e414ab8e8592edb8b7e

diff --git a/app-misc/glcdprocdriver/glcdprocdriver-0.1.2.ebuild 
b/app-misc/glcdprocdriver/glcdprocdriver-0.1.2.ebuild
new file mode 100644
index 000..6b396bfbad4
--- /dev/null
+++ b/app-misc/glcdprocdriver/glcdprocdriver-0.1.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="GLCDprocDriver"
+MY_P="${MY_PN}-${PV}"
+
+inherit toolchain-funcs
+
+DESCRIPTION="A glue between the graphlcd-base library from the GraphLCD 
project"
+HOMEPAGE="https://lucianm.github.io/GLCDprocDriver
+   https://github.com/lucianm/GLCDprocDriver;
+SRC_URI="https://github.com/lucianm/${MY_PN}/archive/0.1.2.tar.gz -> 
${MY_P}.tar.gz"
+
+KEYWORDS="~amd64 ~ppc ~x86"
+SLOT="0"
+LICENSE="GPL-2"
+
+DEPEND=">=app-misc/graphlcd-base-1.0.0"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_compile() {
+   emake CC="$(tc-getCC)" CXX="$(tc-getCXX)"
+}
+
+src_install() {
+   emake DESTDIR="${ED%/}/usr" INCDIR="${ED%/}/usr/share/include" 
LIBDIR="${ED%/}/usr/$(get_libdir)" install
+
+   einstalldocs
+}

diff --git a/app-misc/glcdprocdriver/metadata.xml 
b/app-misc/glcdprocdriver/metadata.xml
index 9dde3d16415..85a394977ca 100644
--- a/app-misc/glcdprocdriver/metadata.xml
+++ b/app-misc/glcdprocdriver/metadata.xml
@@ -1,12 +1,24 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   
-   GLCDprocDriver is the glue between the app-misc/graphlcd-base
-   library, which is written in C++, and app-misc/lcdproc's
-   meta-driver glcdlib, which extends supported displays in LCDproc
-   by those supported through graphlcd-base (just in text mode, of
-   course).
+   
+   ck+gen...@bl4ckb0x.de
+   Conrad Kostecki
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   GLCDprocDriver is the glue between the graphlcd-base library 
from the GraphLCD project,
+   which is written in C++, and LCDproc's meta-driver "glcdlib", 
which extends supported
+   displays in LCDproc by those supported through graphlcd-base 
(but just in text mode, of course).
+   It is implemented in C++, but provides the necessary wrapper C 
calls for use by glcdlib.
+   It is NOT intended to provide general C wrapping for the whole 
graphlcd-base, library,
+   as it really only implements the actual meta-driver for LCDproc.

+   
+   
https://github.com/lucianm/GLCDprocDriver/issues
+   lucianm/GLCDprocDriver
+   
 



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

2019-03-10 Thread Patrice Clement
commit: 61c02bdcbe2db4c25cb2d76291794a649a4c1ba2
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Mar  8 09:35:32 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c02bdc

www-apache/mod_security: fix building USE=doc.

Patch-by: Dennis Lichtenthäler
Closes: https://bugs.gentoo.org/679522
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11296
Signed-off-by: Patrice Clement  gentoo.org>

 www-apache/mod_security/mod_security-2.9.3.ebuild | 9 ++---
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/www-apache/mod_security/mod_security-2.9.3.ebuild 
b/www-apache/mod_security/mod_security-2.9.3.ebuild
index 41cfb5afbc1..f04a0e597d6 100644
--- a/www-apache/mod_security/mod_security-2.9.3.ebuild
+++ b/www-apache/mod_security/mod_security-2.9.3.ebuild
@@ -60,19 +60,14 @@ src_configure() {
$(use_enable mlogc)
$(use_with lua)
$(use_enable lua lua-cache)
-   $(use_enable jit pcre-jit) )
+   $(use_enable jit pcre-jit)
+   $(use_enable doc docs) )
 
econf ${myconf[@]}
 }
 
 src_compile() {
default
-
-   # Building the docs is broken at the moment, see e.g.
-   # https://github.com/SpiderLabs/ModSecurity/issues/1322
-   if use doc; then
-   doxygen doc/doxygen-apache.conf || die 'failed to build 
documentation'
-   fi
 }
 
 src_install() {



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

2019-03-10 Thread Patrice Clement
commit: b34e2ae6f21625f525b4857256cc083471923235
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Fri Mar  8 20:05:51 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b34e2ae6

net-misc/ipmiview: bump to version 2.15.0.190109.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/11307
Signed-off-by: Patrice Clement  gentoo.org>

 net-misc/ipmiview/Manifest  |  2 +
 net-misc/ipmiview/ipmiview-2.15.0.190109.ebuild | 89 +
 net-misc/ipmiview/metadata.xml  |  7 ++
 3 files changed, 98 insertions(+)

diff --git a/net-misc/ipmiview/Manifest b/net-misc/ipmiview/Manifest
index 292d743261e..f949eb85cce 100644
--- a/net-misc/ipmiview/Manifest
+++ b/net-misc/ipmiview/Manifest
@@ -1,2 +1,4 @@
 DIST IPMIView_2.14.0_build.180213_bundleJRE_Linux.tar.gz 95430772 BLAKE2B 
467f1b8b99df6e0b48bab0d652411ce097826eb532e92ac7889ea9c93ad53ff78a291508498d9ffa1463342951cc640fb46bfddd887669b4ebad9f1a9dd09941
 SHA512 
59fd4ad70f7f6da98a8ca1a95678e368cf963caa3c454e1e1c60006966aa5faeb964c7c68d4fc7f0f5804ffbb49c06d44ab56974bb47bcb77490ad737c707e92
 DIST IPMIView_2.14.0_build.180213_bundleJRE_Linux_x64.tar.gz 94006067 BLAKE2B 
38e597401f3bfb27acb2b6c824ac1dcae17b7ca46fcba1ba64d3533142913915a836bbee6ccfbdb9d21f9a9976629b3412e5f6f40850c3ce139a97428bb25be1
 SHA512 
7b4f0e3438281da33cb85195048f21fe1101a44ec18a67f83f88665c875d01706664df44ea8eb7403b98685c09764094eaf553f985cebadce66c3dcf635151e1
+DIST IPMIView_2.15.0_build.190109_bundleJRE_Linux.tar.gz 138691420 BLAKE2B 
7f2d8e9519d6a9651d09c8b55e6a530266b809e437132ac4a814473ec25622663a0fb455a3b078fd5e79194e82d24d1b324369799f15bd1d4dbb6b607cdada76
 SHA512 
17078c8480579e63391a8cfb7af5033510ca3a9c5616b2af0af7679bbd6592f4f7fbe68dc01194aa11c1b481bc1c4089339adb42c22a687effa05dd728984579
+DIST IPMIView_2.15.0_build.190109_bundleJRE_Linux_x64.tar.gz 135584164 BLAKE2B 
d74ade013d00e7c7dd5d79b808d158519a520603931dfe9bd44f4dc64911b066f0e9f61bdff7386ee30d2d5b1f4fb86477ee339e76f00746f0b119c3a4b49e82
 SHA512 
2409f79850cafb2af5f34ec3fd755a6438ef7abef3c1a014df95d4ccc49d9b151ddfba7c1824de9c0f00234ea36b2fa6bb519f5035321dccae9ac06fa2f9458a

diff --git a/net-misc/ipmiview/ipmiview-2.15.0.190109.ebuild 
b/net-misc/ipmiview/ipmiview-2.15.0.190109.ebuild
new file mode 100644
index 000..7d565a17b74
--- /dev/null
+++ b/net-misc/ipmiview/ipmiview-2.15.0.190109.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit desktop eapi7-ver java-pkg-2 prefix
+
+MY_DATE="$(ver_cut 4)"
+MY_PN="IPMIView"
+MY_PV="$(ver_cut 1-3)"
+
+DESCRIPTION="A GUI application that allows to manage multiple target systems 
through BMC"
+HOMEPAGE="https://www.supermicro.com/;
+SRC_URI="
+   amd64? ( 
ftp://ftp.supermicro.com/utility/${MY_PN}/Linux/${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux_x64.tar.gz
 )
+   x86? ( 
ftp://ftp.supermicro.com/utility/${MY_PN}/Linux/${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux.tar.gz
 )
+"
+
+LICENSE="supermicro"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+
+RDEPEND="
+   net-misc/stunnel
+   virtual/jre:1.8
+"
+
+DEPEND="app-arch/unzip"
+
+RESTRICT="bindist fetch mirror strip"
+
+DIR="/usr/share/${PN}"
+QA_PREBUILT="usr/lib*"
+
+pkg_nofetch() {
+   elog "Please download ${A} from"
+   elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0=IPMI;
+   elog "and place it in your DISTDIR directory."
+}
+
+src_unpack() {
+   unpack ${A}
+   mv -v ${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux$(usex amd64 
_x64 "") ${P} || die
+}
+
+src_prepare() {
+   default
+
+   # Extract icons for menu entries
+   unzip -j -LL IPMIView20.jar images/ipmi{view,trap}.ico || die
+
+   # Don't use their scary launchers
+   rm -v lax.jar || die
+}
+
+src_compile() {
+   :
+}
+
+src_install() {
+   java-pkg_dojar *.jar
+   java-pkg_doso $(usex amd64 '*64.so' '*32.so')
+
+   local pre=$(prefixify_ro "${FILESDIR}"/launcher-pre.bash)
+   java-pkg_dolauncher ipmiview --jar IPMIView20.jar -pre "${pre}"
+   java-pkg_dolauncher ipmiview-ikvm --jar iKVM.jar -pre "${pre}"
+   java-pkg_dolauncher ipmiview-ikvmmicroblade --jar iKVMMicroBlade.jar 
-pre "${pre}"
+   java-pkg_dolauncher ipmiview-jviewerx9 --jar JViewerX9.jar -pre "${pre}"
+   java-pkg_dolauncher trapreceiver --jar TrapView.jar -pre "${pre}"
+
+   exeinto ${DIR}/jre/bin
+   newexe $(prefixify_ro "${FILESDIR}"/fake-java-r1.bash) java
+
+   insinto ${DIR}/lib/BMCSecurity
+   doins BMCSecurity/*.{crt,key,pem,txt}
+
+   insinto ${DIR}/lib/BMCSecurity/linux
+   doins BMCSecurity/linux/stunnel.conf
+
+   dosym ../../../../../bin/stunnel ${DIR}/lib/BMCSecurity/linux/stunnel32
+   dosym 

[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/stress-ng/

2019-03-10 Thread Patrice Clement
commit: 987e429e00aef245e815d3e6a99ff3ff54b6a9a1
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Fri Mar  8 19:19:31 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=987e429e

app-benchmarks/stress-ng: bump to version 0.09.55.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/11310
Signed-off-by: Patrice Clement  gentoo.org>

 app-benchmarks/stress-ng/Manifest |  1 +
 app-benchmarks/stress-ng/stress-ng-0.09.55.ebuild | 30 +++
 2 files changed, 31 insertions(+)

diff --git a/app-benchmarks/stress-ng/Manifest 
b/app-benchmarks/stress-ng/Manifest
index 253d8e8cac6..a49cc6107da 100644
--- a/app-benchmarks/stress-ng/Manifest
+++ b/app-benchmarks/stress-ng/Manifest
@@ -1 +1,2 @@
 DIST stress-ng-0.09.53.tar.xz 383408 BLAKE2B 
3893bd4683c0b7b57c2a8809ca0889d4a06131465e099609e96954b6fd980fb9dcd1a2c517de3a70100815c5493a61fdb166cc5c493bcbd0c5b0d622b2a18e79
 SHA512 
fb83a849259aa0e376c2ae8d51bd018e3fbdd7beadf2770471039b4cf34f7827cdcf2492ad7ef79359de5750fffcc78bfc18171e429d2cb38d5bbde82e0e70f2
+DIST stress-ng-0.09.55.tar.xz 385784 BLAKE2B 
c78d7abd2812888725866602893d7e5164ddfe83e3c121ff8f8b88045c5d2081d7d9b5de33bd7940b18b751a6b6089074c087db5d91bb042e06966c646b4aa68
 SHA512 
76d03a62dd9dd8076fd7b38c531c2e3c7e56f307a8a87f67df45aacadd5a57d7969a15709239c13a1a725a887a0770aaefa3e5d2e188abf06cf4a85c9ec358ce

diff --git a/app-benchmarks/stress-ng/stress-ng-0.09.55.ebuild 
b/app-benchmarks/stress-ng/stress-ng-0.09.55.ebuild
new file mode 100644
index 000..ca0f04e7861
--- /dev/null
+++ b/app-benchmarks/stress-ng/stress-ng-0.09.55.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Stress test for a computer system with various selectable ways"
+HOMEPAGE="https://kernel.ubuntu.com/~cking/stress-ng/;
+SRC_URI="https://kernel.ubuntu.com/~cking/tarballs/${PN}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+   dev-libs/libaio
+   dev-libs/libbsd
+   dev-libs/libgcrypt:0=
+   net-misc/lksctp-tools
+   sys-apps/attr
+   sys-apps/keyutils
+   sys-libs/libapparmor
+   sys-libs/libcap
+   sys-libs/zlib:=
+"
+
+RDEPEND="${DEPEND}"
+
+DOCS=( "README" "README.Android" "TODO" "syscalls.txt" )
+
+PATCHES=( "${FILESDIR}/${PN}-0.09.53-makefile.patch" )



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

2019-03-10 Thread Patrice Clement
commit: 649eb58479c701beb62f69b716f1a339d24bdd09
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Oct  7 14:55:16 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=649eb584

app-misc/graphlcd-base: bump to version 1.0.1.

Closes: https://bugs.gentoo.org/470654
Closes: https://bugs.gentoo.org/667964
Signed-off-by: Conrad Kostecki  kostecki.com>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Signed-off-by: Patrice Clement  gentoo.org>

 app-misc/graphlcd-base/Manifest   |  1 +
 app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild | 86 +++
 app-misc/graphlcd-base/metadata.xml   | 33 ++---
 3 files changed, 109 insertions(+), 11 deletions(-)

diff --git a/app-misc/graphlcd-base/Manifest b/app-misc/graphlcd-base/Manifest
index ff7009dfe0f..710aff9e02d 100644
--- a/app-misc/graphlcd-base/Manifest
+++ b/app-misc/graphlcd-base/Manifest
@@ -1 +1,2 @@
 DIST graphlcd-base-0.1.9.tgz 130390 BLAKE2B 
e25180c3679f9625efce94de77842ca296ef3155278727e3c74a657b36b45d0d3c70ceae5eb4b452c5b86ba4f0869a9c80a559fc89cd767423fe8041b2c47334
 SHA512 
3769cd31281f40c1cb343a70cba1fee4b27b5ab1454609dca430199b731744d63244ac39d6460c18b236dd1eaaae8284e236c63493b2df23c394ff628f3fb834
+DIST graphlcd-base-1.0.1.tar.bz2 522727 BLAKE2B 
2353ddf095fc5642705682130f3336a1610d058561ca0a3ee9f1644d8a4fecfc6b45865c06732d7ba75b874b7efd6b033c64345aa359f28a9c5a1d48ae8dc0d4
 SHA512 
bc0ee958475e7156d90ec818542324a4220873ad5a65a2677f75ace86db8905e4a8e8dda3076628a660f90dd90a94cdd2f76eadd8fdf35615f17729041aed40b

diff --git a/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild 
b/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild
new file mode 100644
index 000..b16df248b56
--- /dev/null
+++ b/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic udev
+
+DESCRIPTION="Contains the lowlevel lcd drivers for GraphLCD"
+HOMEPAGE="https://projects.vdr-developer.org/projects/graphlcd-base;
+SRC_URI="https://projects.vdr-developer.org/git/${PN}.git/snapshot/${P}.tar.bz2;
+
+KEYWORDS="~amd64 ~ppc ~x86"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE="fontconfig freetype g15 graphicsmagick imagemagick lcd_devices_ax206dpf 
lcd_devices_picolcd_256x64 lcd_devices_vnc"
+REQUIRED_USE="?? ( graphicsmagick imagemagick )"
+
+RDEPEND="
+   freetype? ( media-libs/freetype:2= )
+   fontconfig? ( media-libs/fontconfig:1.0= )
+   g15? ( app-misc/g15daemon )
+   graphicsmagick? ( media-gfx/graphicsmagick:0/1.3 )
+   imagemagick? ( media-gfx/imagemagick:0/6.9.10.11 )
+   lcd_devices_ax206dpf? ( virtual/libusb:0 )
+   lcd_devices_picolcd_256x64? ( virtual/libusb:0 )
+   lcd_devices_vnc? ( net-libs/libvncserver )
+"
+
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( "HISTORY" "README" "TODO" "docs/." )
+
+src_prepare() {
+   default
+
+   # Change '/usr/local/' to '/usr'
+   # Change '/usr/lib' to '/usr/$(get_libdir)'
+   sed -e "34s:/usr/local:/usr:" -e "37s:/lib:/$(get_libdir):" -i 
Make.config || die
+
+   # Fix pkg-config names for GraphicsMagick/ImageMagick
+   sed -e 's/GraphicsMagick++/GraphicsMagick/g' -e 
's/ImageMagick++/ImageMagick/g' -i glcdgraphics/Makefile || die
+
+   tc-export CC CXX
+}
+
+src_configure() {
+   # Build optional drivers
+   if use lcd_devices_ax206dpf; then
+   sed -e "78s:#::" -i Make.config || die
+   fi
+   if use lcd_devices_picolcd_256x64; then
+   sed -e "81s:#::" -i Make.config || die
+   fi
+   if use lcd_devices_vnc; then
+   sed -e "72s:1:0:" -i Make.config || die
+   fi
+
+   # Build optional features
+   if ! use freetype; then
+   sed -e "59s:HAVE:#HAVE:" -i Make.config || die
+   fi
+   if ! use fontconfig; then
+   sed -e "62s:HAVE:#HAVE:" -i Make.config || die
+   fi
+   if use graphicsmagick; then
+   sed -e "69s:#::" -i Make.config || die
+   fi
+   if use imagemagick; then
+   sed -e "68s:#::" -i Make.config || die
+   fi
+}
+
+src_install() {
+   default
+
+   udev_dorules 99-graphlcd-base.rules
+}
+
+pkg_postinst() {
+   udev_reload
+}
+
+pkg_postrm() {
+   udev_reload
+}

diff --git a/app-misc/graphlcd-base/metadata.xml 
b/app-misc/graphlcd-base/metadata.xml
index dd4d7485b6a..f095e3e1861 100644
--- a/app-misc/graphlcd-base/metadata.xml
+++ b/app-misc/graphlcd-base/metadata.xml
@@ -1,15 +1,26 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-  v...@gentoo.org
-  gentoo-vdr-project
-
-
-  This package provides Graphical LCD Driver.
-
-
-  Add support for app-misc/g15daemon driver
-(e.g. Logitech G15 Keybord)
-
+   
+   ck+gen...@bl4ckb0x.de
+   Conrad 

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

2019-03-10 Thread Patrice Clement
commit: f25710c9029eae6ce1c8560869b74ff8bca37345
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Fri Mar  8 20:06:27 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f25710c9

net-misc/ipmiview: drop old version.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Signed-off-by: Patrice Clement  gentoo.org>

 net-misc/ipmiview/Manifest |  2 -
 net-misc/ipmiview/ipmiview-2.14.0.180213-r1.ebuild | 85 --
 2 files changed, 87 deletions(-)

diff --git a/net-misc/ipmiview/Manifest b/net-misc/ipmiview/Manifest
index f949eb85cce..4c08b75def9 100644
--- a/net-misc/ipmiview/Manifest
+++ b/net-misc/ipmiview/Manifest
@@ -1,4 +1,2 @@
-DIST IPMIView_2.14.0_build.180213_bundleJRE_Linux.tar.gz 95430772 BLAKE2B 
467f1b8b99df6e0b48bab0d652411ce097826eb532e92ac7889ea9c93ad53ff78a291508498d9ffa1463342951cc640fb46bfddd887669b4ebad9f1a9dd09941
 SHA512 
59fd4ad70f7f6da98a8ca1a95678e368cf963caa3c454e1e1c60006966aa5faeb964c7c68d4fc7f0f5804ffbb49c06d44ab56974bb47bcb77490ad737c707e92
-DIST IPMIView_2.14.0_build.180213_bundleJRE_Linux_x64.tar.gz 94006067 BLAKE2B 
38e597401f3bfb27acb2b6c824ac1dcae17b7ca46fcba1ba64d3533142913915a836bbee6ccfbdb9d21f9a9976629b3412e5f6f40850c3ce139a97428bb25be1
 SHA512 
7b4f0e3438281da33cb85195048f21fe1101a44ec18a67f83f88665c875d01706664df44ea8eb7403b98685c09764094eaf553f985cebadce66c3dcf635151e1
 DIST IPMIView_2.15.0_build.190109_bundleJRE_Linux.tar.gz 138691420 BLAKE2B 
7f2d8e9519d6a9651d09c8b55e6a530266b809e437132ac4a814473ec25622663a0fb455a3b078fd5e79194e82d24d1b324369799f15bd1d4dbb6b607cdada76
 SHA512 
17078c8480579e63391a8cfb7af5033510ca3a9c5616b2af0af7679bbd6592f4f7fbe68dc01194aa11c1b481bc1c4089339adb42c22a687effa05dd728984579
 DIST IPMIView_2.15.0_build.190109_bundleJRE_Linux_x64.tar.gz 135584164 BLAKE2B 
d74ade013d00e7c7dd5d79b808d158519a520603931dfe9bd44f4dc64911b066f0e9f61bdff7386ee30d2d5b1f4fb86477ee339e76f00746f0b119c3a4b49e82
 SHA512 
2409f79850cafb2af5f34ec3fd755a6438ef7abef3c1a014df95d4ccc49d9b151ddfba7c1824de9c0f00234ea36b2fa6bb519f5035321dccae9ac06fa2f9458a

diff --git a/net-misc/ipmiview/ipmiview-2.14.0.180213-r1.ebuild 
b/net-misc/ipmiview/ipmiview-2.14.0.180213-r1.ebuild
deleted file mode 100644
index 9c6362bda4b..000
--- a/net-misc/ipmiview/ipmiview-2.14.0.180213-r1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit desktop eapi7-ver java-pkg-2 prefix
-
-MY_DATE="$(ver_cut 4)"
-MY_PN="IPMIView"
-MY_PV="$(ver_cut 1-3)"
-
-DESCRIPTION="A GUI application that allows to manage multiple target systems 
through BMC"
-HOMEPAGE="https://www.supermicro.com/;
-SRC_URI="amd64? ( 
ftp://ftp.supermicro.com/utility/${MY_PN}/Linux/${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux_x64.tar.gz
 )
-   x86? ( 
ftp://ftp.supermicro.com/utility/${MY_PN}/Linux/${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux.tar.gz
 )"
-
-LICENSE="supermicro"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-
-DEPEND="app-arch/unzip"
-
-RDEPEND="net-misc/stunnel
-   virtual/jre:1.8"
-
-RESTRICT="bindist fetch mirror strip"
-
-DIR="/usr/share/${PN}"
-QA_PREBUILT="usr/lib*"
-
-pkg_nofetch() {
-   elog "Please download ${A} from"
-   elog "https://www.supermicro.com/SwDownload/UserInfo.aspx?sw=0=IPMI;
-   elog "and place it in your DISTDIR directory."
-}
-
-src_unpack() {
-   unpack ${A}
-   mv -v ${MY_PN}_${MY_PV}_build.${MY_DATE}_bundleJRE_Linux$(usex amd64 
_x64 "") ${P} || die
-}
-
-src_prepare() {
-   default
-
-   # Extract icons for menu entries
-   unzip -j -LL IPMIView20.jar images/ipmi{view,trap}.ico || die
-
-   # Don't use their scary launchers
-   rm -v lax.jar || die
-}
-
-src_compile() {
-   :
-}
-
-src_install() {
-   java-pkg_dojar *.jar
-   java-pkg_doso $(usex amd64 '*64.so' '*32.so')
-
-   local pre=$(prefixify_ro "${FILESDIR}"/launcher-pre.bash)
-   java-pkg_dolauncher ipmiview --jar IPMIView20.jar -pre "${pre}"
-   java-pkg_dolauncher ipmiview-ikvm --jar iKVM.jar -pre "${pre}"
-   java-pkg_dolauncher ipmiview-ikvmmicroblade --jar iKVMMicroBlade.jar 
-pre "${pre}"
-   java-pkg_dolauncher ipmiview-jviewerx9 --jar JViewerX9.jar -pre "${pre}"
-   java-pkg_dolauncher trapreceiver --jar TrapView.jar -pre "${pre}"
-
-   exeinto ${DIR}/jre/bin
-   newexe $(prefixify_ro "${FILESDIR}"/fake-java-r1.bash) java
-
-   insinto ${DIR}/lib/BMCSecurity
-   doins BMCSecurity/*.{crt,key,pem,txt}
-
-   insinto ${DIR}/lib/BMCSecurity/linux
-   doins BMCSecurity/linux/stunnel.conf
-
-   dosym ../../../../../bin/stunnel ${DIR}/lib/BMCSecurity/linux/stunnel32
-   dosym ../../../../../bin/stunnel ${DIR}/lib/BMCSecurity/linux/stunnel64
-
-   doicon ipmi{view,trap}.ico
-   

[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/stress-ng/

2019-03-10 Thread Patrice Clement
commit: 8a87662b655ae05f7ea4d6ece0fd6e4b55b2f843
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Fri Mar  8 19:20:01 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a87662b

app-benchmarks/stress-ng: drop old version.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Signed-off-by: Patrice Clement  gentoo.org>

 app-benchmarks/stress-ng/Manifest |  1 -
 app-benchmarks/stress-ng/stress-ng-0.09.53.ebuild | 30 ---
 2 files changed, 31 deletions(-)

diff --git a/app-benchmarks/stress-ng/Manifest 
b/app-benchmarks/stress-ng/Manifest
index a49cc6107da..94174996191 100644
--- a/app-benchmarks/stress-ng/Manifest
+++ b/app-benchmarks/stress-ng/Manifest
@@ -1,2 +1 @@
-DIST stress-ng-0.09.53.tar.xz 383408 BLAKE2B 
3893bd4683c0b7b57c2a8809ca0889d4a06131465e099609e96954b6fd980fb9dcd1a2c517de3a70100815c5493a61fdb166cc5c493bcbd0c5b0d622b2a18e79
 SHA512 
fb83a849259aa0e376c2ae8d51bd018e3fbdd7beadf2770471039b4cf34f7827cdcf2492ad7ef79359de5750fffcc78bfc18171e429d2cb38d5bbde82e0e70f2
 DIST stress-ng-0.09.55.tar.xz 385784 BLAKE2B 
c78d7abd2812888725866602893d7e5164ddfe83e3c121ff8f8b88045c5d2081d7d9b5de33bd7940b18b751a6b6089074c087db5d91bb042e06966c646b4aa68
 SHA512 
76d03a62dd9dd8076fd7b38c531c2e3c7e56f307a8a87f67df45aacadd5a57d7969a15709239c13a1a725a887a0770aaefa3e5d2e188abf06cf4a85c9ec358ce

diff --git a/app-benchmarks/stress-ng/stress-ng-0.09.53.ebuild 
b/app-benchmarks/stress-ng/stress-ng-0.09.53.ebuild
deleted file mode 100644
index 0eb983a1b75..000
--- a/app-benchmarks/stress-ng/stress-ng-0.09.53.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-DESCRIPTION="Stress test for a computer system with various selectable ways"
-HOMEPAGE="https://kernel.ubuntu.com/~cking/stress-ng/;
-SRC_URI="https://kernel.ubuntu.com/~cking/tarballs/${PN}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="
-   dev-libs/libaio
-   dev-libs/libbsd
-   dev-libs/libgcrypt:0=
-   net-misc/lksctp-tools
-   sys-apps/attr
-   sys-apps/keyutils
-   sys-libs/libapparmor
-   sys-libs/libcap
-   sys-libs/zlib:=
-"
-
-RDEPEND="${DEPEND}"
-
-DOCS=( "README" "README.Android" "TODO" "syscalls.txt" )
-
-PATCHES=( "${FILESDIR}/${P}-makefile.patch" )



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

2019-03-10 Thread Patrice Clement
commit: 6f7bb59f0f622abc4f04d8dff1c69de2ccd714e8
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri Mar  8 17:57:47 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f7bb59f

dev-python/nbformat: use HTTPS.

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Patrice Clement  gentoo.org>

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

diff --git a/dev-python/nbformat/nbformat-4.4.0.ebuild 
b/dev-python/nbformat/nbformat-4.4.0.ebuild
index 23e45e23334..c26f2070dea 100644
--- a/dev-python/nbformat/nbformat-4.4.0.ebuild
+++ b/dev-python/nbformat/nbformat-4.4.0.ebuild
@@ -9,7 +9,7 @@ PYTHON_REQ_USE='sqlite'
 inherit distutils-r1
 
 DESCRIPTION="Reference implementation of the Jupyter Notebook format"
-HOMEPAGE="http://jupyter.org;
+HOMEPAGE="https://jupyter.org;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"



[gentoo-commits] repo/gentoo:master commit in: net-p2p/go-ipfs-bin/

2019-03-10 Thread Patrice Clement
commit: 9c6d71dec4b010ce79fc1f44377a7f6498c5e073
Author: David Roman  gmail  com>
AuthorDate: Sun Mar  3 13:46:59 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c6d71de

net-p2p/go-ipfs-bin: version bump to 0.4.19.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: David Roman  gmail.com>
Signed-off-by: Patrice Clement  gentoo.org>

 net-p2p/go-ipfs-bin/Manifest  |  4 +++
 net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.19.ebuild | 47 +++
 2 files changed, 51 insertions(+)

diff --git a/net-p2p/go-ipfs-bin/Manifest b/net-p2p/go-ipfs-bin/Manifest
index a2965722199..191bb1709f6 100644
--- a/net-p2p/go-ipfs-bin/Manifest
+++ b/net-p2p/go-ipfs-bin/Manifest
@@ -1,4 +1,8 @@
 DIST go-ipfs-bin-0.4.18.bash 20753 BLAKE2B 
c34d29a48cf249b7a646a8a7b6015b9c4a4a5d8656187ec5984b0dfb741a8ca7b2f2d0a10bc0288aa862679c6d52145936b46497936565ba7cdb2ba847fda5b8
 SHA512 
acd3bdb689964aa5e15965bfea3cd1267f54a2014c05f49f4e536902cbdab3e22038f4f5db5ecc273c147135b265fcb82a41db22bfc3fd8f6ddc8ae43fd053ea
+DIST go-ipfs-bin-0.4.19.bash 20753 BLAKE2B 
c34d29a48cf249b7a646a8a7b6015b9c4a4a5d8656187ec5984b0dfb741a8ca7b2f2d0a10bc0288aa862679c6d52145936b46497936565ba7cdb2ba847fda5b8
 SHA512 
acd3bdb689964aa5e15965bfea3cd1267f54a2014c05f49f4e536902cbdab3e22038f4f5db5ecc273c147135b265fcb82a41db22bfc3fd8f6ddc8ae43fd053ea
 DIST go-ipfs_v0.4.18_linux-386.tar.gz 11128726 BLAKE2B 
2f1289bb0aa93d0d03585bb90f577f91c8db922ba7905aab90c6e6b7804b7fab5c52b861aa0cdd927de8ea0b6e20f22f1c42c390628cd2e660fbaecd55b04d24
 SHA512 
7fff0da87827dcef7c84f959f4cfdc0b5e43e82c636b77fd600d4f62d7b78b8f1660ea346caa5eaf2d791ab275f41c0f83d606e4b36f29f3284a1851a82fbce5
 DIST go-ipfs_v0.4.18_linux-amd64.tar.gz 13791729 BLAKE2B 
777d20792d089216010574798245e0eac0a5ec46549aef3ec4162c289d1d4fec1b381d8fba39ad2a57d88fcbeee5cdd1bd8509fa8883dd946fb452c4266f95de
 SHA512 
ef5b44a0aaed604890c83322ca02228061204085b87b20dd173edfe6b6631fc7a54724d2e00202488c86886992a0d409f43e09f022cdf8b1138f8419cf7614b0
 DIST go-ipfs_v0.4.18_linux-arm.tar.gz 10933477 BLAKE2B 
b846926b33c78a6d089717689993c6a9c9b6ae03b32f184c2a74ecc1a9c290e7b29a9e35f2e7691e504e86c6f6229d86bbf956d90d939decb91a22fe04f74504
 SHA512 
c60cf427109c9c08a73a8270fe9d2792932894cfd68c1a90ec159733d121c5c12647e4b8ab2ed24865c9a4b7f8cb94db9dbe47667e48b5525b39f0c3a0acf085
+DIST go-ipfs_v0.4.19_linux-386.tar.gz 11313754 BLAKE2B 
ac45961d7af003b28668c208be8e5d4457f28284a9b2ce21d9958a52204212fa08c4a8077382913027b0e79cfd8a230227494ca7897d25ee4900f9747039d6af
 SHA512 
9fc7b467098613786788d41c04257b119d124a03279439c16c6a541d5057ce769b295eae16a42b10561f42f5eb982221dc2beacec42d56e517566115e72124da
+DIST go-ipfs_v0.4.19_linux-amd64.tar.gz 14068171 BLAKE2B 
e108fcbeeca0823a90df049c870501406ec68d5750d300d5e50fb8f8b2e8c3a1cbdceecc76687cfa9ca0185e7661ad5fb91bf0f33cdef1e1e7c4fc5e0c25dd6c
 SHA512 
66d930bef0196c70f25cb207c00da6e36f6c2c17ff0e785f45d360e710502c233aeeeaaa5ee0bfc984919d42225c74c6474e5e5ce5c8cd6993580903fa8ec0c4
+DIST go-ipfs_v0.4.19_linux-arm.tar.gz 8746 BLAKE2B 
08ea24e8367d22577798636faec3ecdacb2dad9dd635f727a129b875ab02d1b37712b20ce6a387046a7be753032b437aa1feb8fab79aff99140c543652f3d7c6
 SHA512 
00084c0ecdf2d78e792519dbfcc7f62897283d5d81e7df90745ac41091dabaf44674a62c0ebc6a63bfea9bed97f98ed1dde260d8eb05f4bef2f4d35d3ebe9f5b

diff --git a/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.19.ebuild 
b/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.19.ebuild
new file mode 100644
index 000..d19ef9ab710
--- /dev/null
+++ b/net-p2p/go-ipfs-bin/go-ipfs-bin-0.4.19.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1 systemd user
+
+DESCRIPTION="Main implementation of IPFS"
+HOMEPAGE="https://ipfs.io/;
+SRC_URI="amd64? ( 
https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-amd64.tar.gz )
+   x86? ( 
https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-386.tar.gz )
+   arm? ( 
https://dist.ipfs.io/go-ipfs/v${PV}/go-ipfs_v${PV}_linux-arm.tar.gz )
+
+   
https://raw.githubusercontent.com/ipfs/go-ipfs/v${PV}/misc/completion/ipfs-completion.bash
 -> ${P}.bash"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~x86"
+
+RDEPEND="sys-fs/fuse"
+S="${WORKDIR}/go-ipfs"
+
+QA_PREBUILT="/usr/bin/ipfs"
+
+src_install() {
+   dobin ipfs
+
+   systemd_dounit "${FILESDIR}/ipfs.service"
+   newinitd "${FILESDIR}/ipfs.init" ipfs
+   newconfd "${FILESDIR}/ipfs.confd" ipfs
+
+   newbashcomp "${DISTDIR}/${P}.bash" "ipfs"
+   keepdir /var/log/ipfs
+}
+
+pkg_preinst() {
+   enewgroup ipfs
+   enewuser ipfs "" "" /var/lib/ipfs ipfs
+
+   fowners -R ipfs:ipfs /var/log/ipfs
+}
+
+pkg_postinst() {
+   elog 'To be able to use the ipfs service you will need to create the 
ipfs repository'
+   elog '(eg: su -s /bin/sh -c "ipfs init -e" ipfs)'
+   

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

2019-03-10 Thread Patrice Clement
commit: 36c6375061f75af7f4186861dc64c2fa13555427
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Oct  7 15:41:14 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36c63750

media-plugins/vdr-graphlcd: bump to version 1.0.0.

Closes: https://bugs.gentoo.org/438124
Closes: https://bugs.gentoo.org/586154
Closes: https://bugs.gentoo.org/646176
Closes: https://bugs.gentoo.org/667970
Signed-off-by: Conrad Kostecki  kostecki.com>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
RepoMan-Options: --force
Closes: https://github.com/gentoo/gentoo/pull/10098
Signed-off-by: Patrice Clement  gentoo.org>

 media-plugins/vdr-graphlcd/Manifest|  1 +
 .../vdr-graphlcd/vdr-graphlcd-1.0.0.ebuild | 94 ++
 2 files changed, 95 insertions(+)

diff --git a/media-plugins/vdr-graphlcd/Manifest 
b/media-plugins/vdr-graphlcd/Manifest
index f921afd0902..8e778975844 100644
--- a/media-plugins/vdr-graphlcd/Manifest
+++ b/media-plugins/vdr-graphlcd/Manifest
@@ -1 +1,2 @@
 DIST vdr-graphlcd-0.1.9.tgz 286572 BLAKE2B 
251b7fce4149c01c9a3a1e64a88b8236e7ca0e041be25edf628df7754a3eb094a61582f9c3746ff28729c6e53cd784ee8b6b02169660ce9119239aac624e9b46
 SHA512 
46c78fe0c7bc7d67d757323a6a937e9feedcdb3e3f233227024dd84f0cb84ce8f08becd3b4ae9c0b7edfba40804a29fa0e3efc8e74eceb82812f288b8e40c6cd
+DIST vdr-plugin-graphlcd-1.0.0.tar.bz2 888495 BLAKE2B 
0557e0750cfa6baf16b2ca5d6e5b69b206d493717e9337fb84403b171b1a4a558fbbc77e32e2f00c1cc0aaadb1390f807e3cd578725aa2ad6786d037c4bb3251
 SHA512 
05994707b8e8a5640db3c9d4ea991d81b92d6d3e88de98ffc8a4bdac3b885fed2780958babbfec0967209aa15043a3799f08de0d3005ec6eeabf130de7879822

diff --git a/media-plugins/vdr-graphlcd/vdr-graphlcd-1.0.0.ebuild 
b/media-plugins/vdr-graphlcd/vdr-graphlcd-1.0.0.ebuild
new file mode 100644
index 000..8364adc443f
--- /dev/null
+++ b/media-plugins/vdr-graphlcd/vdr-graphlcd-1.0.0.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="vdr-plugin-graphlcd"
+MY_P="${MY_PN}-${PV}"
+
+inherit vdr-plugin-2
+
+DESCRIPTION="VDR Plugin: support output on Graphical LCD"
+HOMEPAGE="https://projects.vdr-developer.org/projects/graphlcd;
+SRC_URI="https://projects.vdr-developer.org/git/${MY_PN}.git/snapshot/${MY_P}.tar.bz2;
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=media-video/vdr-1.6
+   >=app-misc/graphlcd-base-${PV}"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+   vdr-plugin-2_pkg_setup
+
+   if ! getent group lp | grep -q vdr; then
+   einfo
+   einfo "Add user 'vdr' to group 'lp' for full user access to 
parport device"
+   elog
+   elog "User vdr added to group lp"
+   gpasswd -a vdr lp || die
+   fi
+   if ! getent group usb | grep -q vdr; then
+   einfo
+   einfo "Add user 'vdr' to group 'usb' for full user access to 
usb device"
+   elog
+   elog "User vdr added to group usb"
+   gpasswd -a vdr usb || die
+   fi
+}
+
+src_prepare() {
+   vdr-plugin-2_src_prepare
+
+   sed -i "s:/usr/local:/usr:" Makefile || die
+   sed -i "s:i18n.c:i18n.h:g" Makefile || die
+   sed -i "s:include \$(VDRDIR)/Make.global:-include 
\$(VDRDIR)/Make.global:" Makefile || die
+}
+
+src_install() {
+   vdr-plugin-2_src_install
+
+   insopts -m0644 -ovdr -gvdr
+
+   insinto /usr/share/vdr/${VDRPLUGIN}/logos
+   doins -r ${VDRPLUGIN}/logos/*
+
+   insinto /usr/share/vdr/${VDRPLUGIN}/fonts
+   doins ${VDRPLUGIN}/fonts/*.fnt
+
+   for font in /usr/share/fonts/corefonts/*.ttf; do
+   elog ${font}
+   dosym ${font} ../../usr/share/vdr/graphlcd/fonts
+   done
+
+   insinto /etc/vdr/plugins/${VDRPLUGIN}
+   doins ${VDRPLUGIN}/channels.alias
+
+   dosym /usr/share/vdr/${VDRPLUGIN}/fonts 
../../../../etc/vdr/plugins/${VDRPLUGIN}/fonts
+   dosym /usr/share/vdr/${VDRPLUGIN}/logos 
../../../..//etc/vdr/plugins/${VDRPLUGIN}/logos
+   dosym /etc/graphlcd.conf ../etc/vdr/plugins/${VDRPLUGIN}/graphlcd.conf
+
+   dosym /etc/vdr/plugins/${VDRPLUGIN}/logonames.alias.1.3 
../../../../etc/vdr/plugins/${VDRPLUGIN}/logonames.alias
+}
+
+pkg_preinst() {
+   if [[ -e /etc/vdr/plugins/graphlcd/fonts ]] && [[ ! -L 
/etc/vdr/plugins/graphlcd/fonts ]] \
+   || [[ -e /etc/vdr/plugins/graphlcd/logos ]] && [[ ! -L 
/etc/vdr/plugins/graphlcd/logos ]] ; then
+   elog "Remove wrong DIR in /etc/vdr/plugins/graphlcd from prior 
install"
+   rm -R /etc/vdrplugins/graphlcd/{fonts,logos} || die
+   fi
+}
+
+pkg_postinst() {
+   vdr-plugin-2_pkg_postinst
+
+   elog "Add additional options in /etc/conf.d/vdr.graphlcd"
+   elog
+   elog "Please copy or link one of the 

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

2019-03-10 Thread Patrice Clement
commit: b2257ba0517ae47b2c18c09be7c0b82fe3bd7cb1
Author: Oz N Tiram  gmail  com>
AuthorDate: Tue Feb 19 04:21:13 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2257ba0

dev-python/nuitka: version bump to 0.6.2.

Signed-off-by: Oz N Tiram  gmail.com>
Closes: https://bugs.gentoo.org/678320
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/11104
Signed-off-by: Patrice Clement  gentoo.org>

 dev-python/nuitka/Manifest|  1 +
 dev-python/nuitka/nuitka-0.6.2.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/dev-python/nuitka/Manifest b/dev-python/nuitka/Manifest
index 9609e008c67..328995bf08d 100644
--- a/dev-python/nuitka/Manifest
+++ b/dev-python/nuitka/Manifest
@@ -1,2 +1,3 @@
 DIST Nuitka-0.6.0.4.tar.gz 2010373 BLAKE2B 
96d31fde6d087bea81051bfcc208d52466b9c45785c2167c61721440fe930906958ee840bb98258c7c1b98c067302049afd63bbf5cfd422a69c1994675c29c70
 SHA512 
f9a30ad578b80679c0313be84150adff83a90b35c758487fc9f5240d527cf0a905b6257a0dfdf2a2c8c7322688108a6673c56238480344adce123d67416eb197
 DIST Nuitka-0.6.0.6.tar.gz 2011509 BLAKE2B 
1a5d37acd50bbb7d1a380306aa18d68ab6559fe3d90b988032cd36458e5ec663c2ba1597f50da89c6b2360f35cd576a2219860b0d74bb3d835db9525d10f22bf
 SHA512 
d893e49a2f91d310b4a86ddd1566990b66ae202bde642af8b7e45554ed6b2abf4b6b694bb03d020b15d9b748c0dd31ac1a79c77fcc9d15468ce37faf475e8beb
+DIST Nuitka-0.6.2.tar.gz 2064701 BLAKE2B 
9144bbae98584c64a642ede1155f26f88afa1ffe6d1e75f88039fe99f191e0939efc5ce7e71b2b9c661004213990e4896a392e2fce995a0649d45ed5b3a18168
 SHA512 
94547cdabaf6c591ff5d49179dc4538fa624b40a6d63e318aeabe371b7cfdbd9b1c9c41918a4ea1dfa816a7222c5587ed17c1980d89be6d9151ecc8cdaa8c5a5

diff --git a/dev-python/nuitka/nuitka-0.6.2.ebuild 
b/dev-python/nuitka/nuitka-0.6.2.ebuild
new file mode 100644
index 000..306034cd1e1
--- /dev/null
+++ b/dev-python/nuitka/nuitka-0.6.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_5 python3_6 )
+inherit distutils-r1 eutils
+
+DESCRIPTION="Python to native compiler"
+HOMEPAGE="https://www.nuitka.net;
+SRC_URI="https://nuitka.net/releases/${P^}.tar.gz;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+RDEPEND="${DEPEND}
+   dev-python/appdirs[${PYTHON_USEDEP}]
+   dev-util/scons[${PYTHON_USEDEP}]
+   "
+
+S="${WORKDIR}/${P^}"
+
+pkg_postinst() {
+   optfeature "support for stand-alone executables" app-admin/chrpath
+}



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

2019-03-10 Thread Patrice Clement
commit: e6a7a8c0209a939de7368498494c094e92d381ed
Author: David Roman  gmail  com>
AuthorDate: Sun Mar  3 13:27:21 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6a7a8c0

dev-python/flask-paginate: version bump to 0.5.2.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: David Roman  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11229
Signed-off-by: Patrice Clement  gentoo.org>

 dev-python/flask-paginate/Manifest |  1 +
 .../flask-paginate/flask-paginate-0.5.2.ebuild | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/flask-paginate/Manifest 
b/dev-python/flask-paginate/Manifest
index 9b484e21a94..9b6d59f4d81 100644
--- a/dev-python/flask-paginate/Manifest
+++ b/dev-python/flask-paginate/Manifest
@@ -1 +1,2 @@
 DIST flask-paginate-0.5.1.tar.gz 5397 BLAKE2B 
819740f6d1ff55331932dfb1a588fb0a92b2a6ffbf66c0ffcedddb2014c42c10f76ce50306fb9e389c66fdeba98fbf0d476915e935530bfeecc853ec25c1f9d4
 SHA512 
f17610cc3861d587e1940a69957a9266459270453d8f7c15ae6b6e5fa91633194e01384b1cec98647db70f38090d18fd44bf2fc4cbbd8d1d64cf541a5bd620c2
+DIST flask-paginate-0.5.2.tar.gz 5535 BLAKE2B 
c343fdbd04097ccbf187f7a0aa127157fd18e39e68c6ca6dfee0e30a31f6e6b25bac4f2d64cf7a88b4c9addb53e45f381146f9710d84335ceb684198ad164372
 SHA512 
03cdce455f64da226a64137c3a69fda23749280e52df5d4fc4850e816c38810519a2f5a79bdd06709fc686ff413bcbc4a1bf20da44eba7678c5f3e542c277037

diff --git a/dev-python/flask-paginate/flask-paginate-0.5.2.ebuild 
b/dev-python/flask-paginate/flask-paginate-0.5.2.ebuild
new file mode 100644
index 000..ffbe17e5d8f
--- /dev/null
+++ b/dev-python/flask-paginate/flask-paginate-0.5.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Pagination support for flask"
+HOMEPAGE="https://flask-paginate.readthedocs.io;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+RDEPEND="
+   ${DEPEND}
+   dev-python/flask[${PYTHON_USEDEP}]"
+
+python_install_all() {
+   distutils-r1_python_install_all
+}



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

2019-03-10 Thread Patrice Clement
commit: 10615fef1ec986a4457f256113b9d5bfdf507900
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sun Oct  7 14:54:17 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10615fef

profiles/desc/lcd_devices.desc: added new driver to list.

Bug: https://bugs.gentoo.org/667964
Signed-off-by: Conrad Kostecki  kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/10096
Signed-off-by: Patrice Clement  gentoo.org>

 profiles/desc/lcd_devices.desc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/profiles/desc/lcd_devices.desc b/profiles/desc/lcd_devices.desc
index 9d1ad482394..2cc4ca290e5 100644
--- a/profiles/desc/lcd_devices.desc
+++ b/profiles/desc/lcd_devices.desc
@@ -6,6 +6,7 @@
 # Keep it sorted.
 acoolsdcm - Add support for Alphacool USB display modules
 astusb - Add support for ASTUSB LCD modules
+ax206dpf - Add support for AX206 DPF LCD modules
 bayrad - Add support for BayRAD LCD modules by EMAC
 beckmannegle - Add support for Beckmann+Egle "Mini Terminals" and "Compact 
Terminals"
 bwct - Add support for BWCT USB LCD displays
@@ -88,6 +89,7 @@ pertelian - Add support for the Pertelian X2040 displays
 phanderson - Add support for the PHAnderson serial-to-HD44780 controller
 picgraphic - Add support for PIC graphic displays
 picolcd - Add support for Mini-Box's picoLCD
+picolcd_256x64 - Add support for Mini-Box's picoLCD with a higher resolution
 picolcdgraphic - Add support for Mini-Box's graphical picoLCD
 png - Add support for PNG output
 ppm - Add support for PNG output



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

2019-03-10 Thread Patrice Clement
commit: e5766b7fe30bf3c89ffe7222ad340aaf46930c9f
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri Mar  8 17:57:17 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5766b7f

dev-python/nbdime: use HTTPS.

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11302
Signed-off-by: Patrice Clement  gentoo.org>

 dev-python/nbdime/nbdime-0.1.2.ebuild | 4 ++--
 dev-python/nbdime/nbdime-0.2.0.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/nbdime/nbdime-0.1.2.ebuild 
b/dev-python/nbdime/nbdime-0.1.2.ebuild
index f469ec14ebc..c50f45a761e 100644
--- a/dev-python/nbdime/nbdime-0.1.2.ebuild
+++ b/dev-python/nbdime/nbdime-0.1.2.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
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{4,5} )
 inherit distutils-r1
 
 DESCRIPTION="Diff and merge of Jupyter Notebooks"
-HOMEPAGE="http://jupyter.org;
+HOMEPAGE="https://jupyter.org;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 KEYWORDS="~amd64"
 

diff --git a/dev-python/nbdime/nbdime-0.2.0.ebuild 
b/dev-python/nbdime/nbdime-0.2.0.ebuild
index d407d7d26d2..1304d390a05 100644
--- a/dev-python/nbdime/nbdime-0.2.0.ebuild
+++ b/dev-python/nbdime/nbdime-0.2.0.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
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{4,5,6} )
 inherit distutils-r1
 
 DESCRIPTION="Diff and merge of Jupyter Notebooks"
-HOMEPAGE="http://jupyter.org;
+HOMEPAGE="https://jupyter.org;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 KEYWORDS="~amd64"
 



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

2019-03-10 Thread Patrice Clement
commit: 4eb0be7ea233b8638abacc43d868196396c32126
Author: Ralph Seichter  seichter  de>
AuthorDate: Sat Mar  9 15:40:47 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eb0be7e

net-analyzer/ossec-hids: upstream release 3.2.0.

Extended JSON output support and more, see
https://github.com/ossec/ossec-hids/releases/tag/3.2.0
for the official release notes.

Signed-off-by: Ralph Seichter  seichter.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/11320
Signed-off-by: Patrice Clement  gentoo.org>

 net-analyzer/ossec-hids/Manifest   |  1 +
 net-analyzer/ossec-hids/files/makefile-3.2.0.patch | 28 ++
 net-analyzer/ossec-hids/ossec-hids-3.2.0.ebuild| 63 ++
 3 files changed, 92 insertions(+)

diff --git a/net-analyzer/ossec-hids/Manifest b/net-analyzer/ossec-hids/Manifest
index f36a96f0d3e..9fd4fe3f66d 100644
--- a/net-analyzer/ossec-hids/Manifest
+++ b/net-analyzer/ossec-hids/Manifest
@@ -1 +1,2 @@
 DIST ossec-hids-3.1.0.tar.gz 1886469 BLAKE2B 
c175c8659a8b5d0d269a5cb6bf142276f29e6f676afc6029accf854d68299d71147ba65a667601e77c6db8ca49a29afa49534e5683369f420f6389059ae61fc3
 SHA512 
fe55f82ac354d9fcd767d8379a492279644308788535780bb029d46688c93f259771686462570137555b40082c6756daad44bbdd1ddc953ed0bb22b65c6cb566
+DIST ossec-hids-3.2.0.tar.gz 1896977 BLAKE2B 
d77cff3a3a72287ad2235f346c7d07cfdad83872d956f57877ed44ad21bb717e4b4ddcfd0e8b2ce45cb90160bb63a28a7d06bc6225b53cc5ed42f7a97c5a1765
 SHA512 
40b25b97c43a66b8a145914ab0badd9d4f7de7d2168aa7a49abdf778c620a4b533ce3de0883d26c4c39816cf78674a053788a57c5f9c38fbea7cd8b13a35d18f

diff --git a/net-analyzer/ossec-hids/files/makefile-3.2.0.patch 
b/net-analyzer/ossec-hids/files/makefile-3.2.0.patch
new file mode 100644
index 000..810bc077d43
--- /dev/null
+++ b/net-analyzer/ossec-hids/files/makefile-3.2.0.patch
@@ -0,0 +1,28 @@
+--- a/Makefile 2019-03-09 16:33:13.465947636 +0100
 b/Makefile 2019-03-09 16:32:57.105946856 +0100
+@@ -370,7 +370,6 @@
+ install-server: install-server-generic
+ 
+ install-common: build
+-  ./init/adduser.sh ${OSSEC_USER} ${OSSEC_USER_MAIL} ${OSSEC_USER_REM} 
${OSSEC_GROUP} ${PREFIX}
+   $(call INSTALL_CMD,0550,root,${OSSEC_GROUP}) -d ${PREFIX}/
+   $(call INSTALL_CMD,0750,${OSSEC_USER},${OSSEC_GROUP}) -d ${PREFIX}/logs
+   $(call INSTALL_CMD,0660,${OSSEC_USER},${OSSEC_GROUP}) /dev/null 
${PREFIX}/logs/ossec.log
+@@ -1160,7 +1159,7 @@
+  test ##
+ 
+ 
+-CFLAGS_TEST = -g -O0 --coverage
++CFLAGS_TEST = -g -O0
+ 
+ LDFLAGS_TEST = -lcheck -lm -pthread -lrt
+ 
+@@ -1171,7 +1170,7 @@
+ 
+ test_programs = test_os_zlib test_os_xml test_os_regex test_os_crypto 
test_shared
+ 
+-.PHONY: test run_tests build_tests test_valgrind test_coverage
++.PHONY: test run_tests build_tests test_valgrind
+ 
+ test: build_tests
+   ${MAKE} run_tests

diff --git a/net-analyzer/ossec-hids/ossec-hids-3.2.0.ebuild 
b/net-analyzer/ossec-hids/ossec-hids-3.2.0.ebuild
new file mode 100644
index 000..417ebde460d
--- /dev/null
+++ b/net-analyzer/ossec-hids/ossec-hids-3.2.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit user
+
+DESCRIPTION="Open Source Host-based Intrusion Detection System"
+HOMEPAGE="https://www.ossec.net/;
+SRC_URI="https://github.com/ossec/ossec-hids/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="agent hybrid local mysql postgres server sqlite"
+REQUIRED_USE="^^ ( agent hybrid local server )
+   ?? ( mysql postgres )"
+
+DEPEND="mysql? ( virtual/mysql )
+   sqlite? ( dev-db/sqlite:3 )
+   postgres? ( dev-db/postgresql:= )"
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/${P}/src"
+PATCHES=( "${FILESDIR}/makefile-${PV}.patch" )
+
+declare -a MY_OPT
+
+pkg_setup() {
+   enewuser ossec -1 -1 /var/ossec
+   enewuser ossecm -1 -1 -1 ossec
+   enewuser ossecr -1 -1 -1 ossec
+}
+
+src_configure() {
+   local target="local"
+   use agent && target="agent"
+   use hybrid && target="hybrid"
+   use server && target="server"
+   MY_OPT=(
+   TARGET=${target}
+   USE_SQLITE=$(usex sqlite)
+   V=0
+   ZLIB_SYSTEM=yes
+   )
+   use mysql && MY_OPT+=( DATABASE=mysql )
+   use postgres && MY_OPT+=( DATABASE=pgsql )
+}
+
+src_compile() {
+   emake "${MY_OPT[@]}" PREFIX=/var/ossec
+}
+
+src_test() {
+   emake "${MY_OPT[@]}" PREFIX=/var/ossec test
+}
+
+src_install() {
+   keepdir /var/ossec/logs/{alerts,archives,firewall}
+   keepdir /var/ossec/lua/{compiled,native}
+   keepdir 
/var/ossec/queue/{agent-info,agentless,alerts,diff,fts,ossec,rids,rootcheck,syscheck}
+   keepdir /var/ossec/{.ssh,stats,tmp,var/run}
+   emake "${MY_OPT[@]}" 

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

2019-03-10 Thread Patrice Clement
commit: eebb749e1efce8ee4430ced80aa1286656b346dd
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Fri Mar  8 20:59:06 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 10 22:35:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eebb749e

app-office/moneydance: drop old version.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Conrad Kostecki  kostecki.com>
Signed-off-by: Patrice Clement  gentoo.org>

 app-office/moneydance/Manifest |  1 -
 app-office/moneydance/moneydance-2019.0.ebuild | 56 --
 2 files changed, 57 deletions(-)

diff --git a/app-office/moneydance/Manifest b/app-office/moneydance/Manifest
index 5f2581b71d3..2526a779f46 100644
--- a/app-office/moneydance/Manifest
+++ b/app-office/moneydance/Manifest
@@ -1,4 +1,3 @@
 DIST moneydance-2017.10-amd64.tar.gz 132116528 BLAKE2B 
f5ba44a89944657c6c1380226dc512729825b084783e6d70dd7b2b731411294c7333bae858b2be3d5321e5145230257b325dc2b72a22744a877673c1c934d854
 SHA512 
175ff470b5fb5c3851eae708cc641777d7bdf1ede40366ccf5a135d6c813c08d9ce32665a2307c3aefa63eeb2206ad0874cb989aa998415abb86184a2b114ce8
 DIST moneydance-2017.10-x86.tar.gz 134860964 BLAKE2B 
92181a6c6a81063377823b0fd9ed652036cf1f633c2cab57f19d1dbb18a2542361fc2bafab8852c11b941a24532f662351ea2d05bc928818db24a4cf3cae7112
 SHA512 
18d9d4ce7b0b65566ac81fea66ba34d66173559ca90ac166cc9b90631400845ae1c9d92ae781a618cacc57cd4f630f079736101d29b66d9c6cee7d32c7c15c22
-DIST moneydance-2019.0-amd64.tar.gz 132467602 BLAKE2B 
d58df88166f73c80b755863bd9ea18fdadf192ac9f0016313ab59c209c895ef8c1203d0b7627004521a9569343c3269bc1854e4e7925ec6e438148059d8adaf3
 SHA512 
2ee22626b0b3918c3ebd80f7ca4ce9c1ad39716fb837887ca84a970f2f3d64d7daff36eff31eaa22753e55e0dcfc49ccb2f10e5c8dfbf21e67e8627b17d9de59
 DIST moneydance-2019.1-amd64.tar.gz 132469388 BLAKE2B 
516ff3af46e23370cf97b7a41e9802f14f5272c36b01080d69f339bdb9ca7de045de35baead8d97a8febece062dcd8b2befecad2744773e9a1c79b9a16b9639a
 SHA512 
a28787dcc10173f4d492ec1bd5a8f17b6592f86c324e57a7e2951a0265825e4f78b620a4aabb4cde94c97860d3aaac8066572882c772d5abfa79c90cd33770ee

diff --git a/app-office/moneydance/moneydance-2019.0.ebuild 
b/app-office/moneydance/moneydance-2019.0.ebuild
deleted file mode 100644
index e205b32533b..000
--- a/app-office/moneydance/moneydance-2019.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 2018-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit desktop eapi7-ver gnome2-utils java-pkg-2
-
-MY_PN="Moneydance"
-MY_PV="$(ver_cut 1)"
-
-DESCRIPTION="A cross-platform personal finance application"
-HOMEPAGE="https://moneydance.com/;
-SRC_URI="https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_amd64.tar.gz
 -> ${P}-amd64.tar.gz"
-
-LICENSE="Apache-1.0 Apache-2.0 BSD CPAL-1.0 CPL-1.0 CSL-2.0 LGPL-2 MIT TIK"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="|| (
-   >=dev-java/openjdk-bin-11.0
-   >=dev-java/openjdk-11.0
-   >=dev-java/oracle-jdk-bin-11.0
-   )
-"
-
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_PN}"
-
-RESTRICT="bindist fetch mirror"
-
-pkg_nofetch() {
-   elog "Please download ${A} from"
-   elog 
"https://infinitekind.com/stabledl/${MY_PV}/${MY_PN}_linux_amd64.tar.gz;
-   elog "and place it in your DISTDIR directory."
-}
-
-src_compile() {
-   :;
-}
-
-src_install() {
-   java-pkg_dojar lib/*.jar
-   java-pkg_dolauncher moneydance --main "Moneydance" --java_args "-client 
-Dawt.useSystemAAFontSettings=gasp -Dawt.useSystemAAFontSettings=on -Xmx1024m"
-
-   doicon resources/*.png
-   make_desktop_entry "moneydance" "Moneydance" moneydance Office
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



  1   2   3   4   >