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

2019-07-02 Thread Jason Zaman
commit: 554a3365c8a6807a02976a55462a9708638457e2
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Jul  3 05:08:22 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul  3 05:49:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=554a3365

dev-util/bazel: respect CFLAGS

The bazelrc was not used by the build so pass the flags directly to
bazel extra flags.

Thanks to Michael Martis for triaging and finding the fix.

Signed-off-by: Jason Zaman  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 .../{bazel-0.27.0.ebuild => bazel-0.24.1-r1.ebuild}   | 17 ++---
 .../{bazel-0.26.1.ebuild => bazel-0.26.1-r1.ebuild}   | 19 +++
 .../{bazel-0.27.0.ebuild => bazel-0.27.0-r1.ebuild}   | 17 ++---
 3 files changed, 7 insertions(+), 46 deletions(-)

diff --git a/dev-util/bazel/bazel-0.27.0.ebuild 
b/dev-util/bazel/bazel-0.24.1-r1.ebuild
similarity index 80%
copy from dev-util/bazel/bazel-0.27.0.ebuild
copy to dev-util/bazel/bazel-0.24.1-r1.ebuild
index 3011c92b93f..a1d730d5713 100644
--- a/dev-util/bazel/bazel-0.27.0.ebuild
+++ b/dev-util/bazel/bazel-0.24.1-r1.ebuild
@@ -22,7 +22,6 @@ DEPEND="${RDEPEND}
app-arch/zip"
 
 S="${WORKDIR}"
-QA_FLAGS_IGNORED="usr/bin/bazel"
 
 bazel-get-flags() {
local i fs=()
@@ -63,23 +62,10 @@ src_prepare() {
# R: /proc/24939/setgroups
# C: /usr/lib/systemd/systemd
addpredict /proc
-
-   # Use standalone strategy to deactivate the bazel sandbox, since it
-   # conflicts with FEATURES=sandbox.
-   cat > "${T}/bazelrc" <<-EOF || die
-   build --verbose_failures
-   build --spawn_strategy=standalone --genrule_strategy=standalone
-
-   build --distdir="${S}/derived/distdir/"
-   build --jobs=$(makeopts_jobs) $(bazel-get-flags)
-
-   test --verbose_failures --verbose_test_summary
-   test --spawn_strategy=standalone --genrule_strategy=standalone
-   EOF
 }
 
 src_compile() {
-   export EXTRA_BAZEL_ARGS="--jobs=$(makeopts_jobs) 
--host_javabase=@local_jdk//:jdk"
+   export EXTRA_BAZEL_ARGS="--jobs=$(makeopts_jobs) $(bazel-get-flags) 
--host_javabase=@local_jdk//:jdk"
VERBOSE=yes ./compile.sh || die
 
./scripts/generate_bash_completion.sh \
@@ -117,5 +103,6 @@ src_install() {
docinto tools
dodoc -r tools/*
docompress -x /usr/share/doc/${PF}/tools
+   docompress -x /usr/share/doc/${PF}/tools/build_defs/pkg/testdata
fi
 }

diff --git a/dev-util/bazel/bazel-0.26.1.ebuild 
b/dev-util/bazel/bazel-0.26.1-r1.ebuild
similarity index 79%
rename from dev-util/bazel/bazel-0.26.1.ebuild
rename to dev-util/bazel/bazel-0.26.1-r1.ebuild
index f423e485530..a1d730d5713 100644
--- a/dev-util/bazel/bazel-0.26.1.ebuild
+++ b/dev-util/bazel/bazel-0.26.1-r1.ebuild
@@ -16,13 +16,12 @@ KEYWORDS="~amd64"
 IUSE="examples test tools"
 # strip corrupts the bazel binary
 RESTRICT="strip test? ( network-sandbox ) !test? ( test )"
-RDEPEND=">=virtual/jdk-1.8"
+RDEPEND=">=virtual/jdk-1.8:*"
 DEPEND="${RDEPEND}
app-arch/unzip
app-arch/zip"
 
 S="${WORKDIR}"
-QA_FLAGS_IGNORED="usr/bin/bazel"
 
 bazel-get-flags() {
local i fs=()
@@ -63,23 +62,10 @@ src_prepare() {
# R: /proc/24939/setgroups
# C: /usr/lib/systemd/systemd
addpredict /proc
-
-   # Use standalone strategy to deactivate the bazel sandbox, since it
-   # conflicts with FEATURES=sandbox.
-   cat > "${T}/bazelrc" <<-EOF || die
-   build --verbose_failures
-   build --spawn_strategy=standalone --genrule_strategy=standalone
-
-   build --distdir="${S}/derived/distdir/"
-   build --jobs=$(makeopts_jobs) $(bazel-get-flags)
-
-   test --verbose_failures --verbose_test_summary
-   test --spawn_strategy=standalone --genrule_strategy=standalone
-   EOF
 }
 
 src_compile() {
-   export EXTRA_BAZEL_ARGS="--jobs=$(makeopts_jobs) 
--host_javabase=@local_jdk//:jdk"
+   export EXTRA_BAZEL_ARGS="--jobs=$(makeopts_jobs) $(bazel-get-flags) 
--host_javabase=@local_jdk//:jdk"
VERBOSE=yes ./compile.sh || die
 
./scripts/generate_bash_completion.sh \
@@ -117,5 +103,6 @@ src_install() {
docinto tools
dodoc -r tools/*
docompress -x /usr/share/doc/${PF}/tools
+   docompress -x /usr/share/doc/${PF}/tools/build_defs/pkg/testdata
fi
 }

diff --git a/dev-util/bazel/bazel-0.27.0.ebuild 
b/dev-util/bazel/bazel-0.27.0-r1.ebuild
similarity index 80%
rename from dev-util/bazel/bazel-0.27.0.ebuild
rename to dev-util/bazel/bazel-0.27.0-r1.ebuild
index 3011c92b93f..a1d730d5713 100644
--- a/dev-util/bazel/bazel-0.27.0.ebuild
+++ b/dev-util/bazel/bazel-0.27.0-r1.ebuild
@@ -22,7 +22,6 @@ DEPEND="${RDEPEND}
app-arch/zip"
 
 S="${WORKDIR}"

[gentoo-commits] repo/gentoo:master commit in: net-wireless/rtl-sdr/

2019-07-02 Thread Rick Farina
commit: 18e036dea58798310071c094c1d245b405d99eea
Author: Rick Farina  gentoo  org>
AuthorDate: Wed Jul  3 04:46:31 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Wed Jul  3 05:22:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18e036de

net-wireless/rtl-sdr: bump

fix pkgconfig file

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

 net-wireless/rtl-sdr/Manifest |  1 +
 net-wireless/rtl-sdr/rtl-sdr-0.6.0.ebuild | 50 +++
 2 files changed, 51 insertions(+)

diff --git a/net-wireless/rtl-sdr/Manifest b/net-wireless/rtl-sdr/Manifest
index b1a13f93b50..b9197e7191d 100644
--- a/net-wireless/rtl-sdr/Manifest
+++ b/net-wireless/rtl-sdr/Manifest
@@ -1,2 +1,3 @@
 DIST rtl-sdr-0.5.3_p20170919.tar.xz 98972 BLAKE2B 
fb7d977bd05a2c717897ba58a2242698d1a90cf38a7a8340d7ec8c3aefeeff49bfe9612285253b27c6726ae584172e0b26c8f535bc4bec704958c1296e232f04
 SHA512 
b1b97c720882ccbe8be8e30af28b8d52c5a27507861bdb9e964e153cd8ece9de977abd271b68861c163a7cf239044f28c8d17ccda5ff5acf60f17d839d782a82
 DIST rtl-sdr-0.5.4.tar.xz 108708 BLAKE2B 
12f5f5a913089ec57327621eddab9b74b07eeac9d00ab2cbd413bc29d8444633953319e2887ef5e07a766f38b4ea2f5d3cbf73efd63a1886e30e2bed6968
 SHA512 
6cf3c62e6a56694f90deed64e2761105fdbeb40de8001a378e687d60cc3718ad64065b5d896b3f4b27ff6a5383173b53df52816e24b31c726485364cfd9c1a43
+DIST rtl-sdr-0.6.0.tar.gz 134289 BLAKE2B 
a630ceea359c49170c04bc6bb2a01b481e40b4529ed3d2c924d0370399bb149c47f751929716fa4c86fac9776d26584696ece7a5f83a428b300ccbed243d0ffd
 SHA512 
a08356a08672f03d86adb662e28923e7998b78c0f49432dc1b1e3844976158c467242e0c5eabf206fd257bdebcf91cd2767dabf13d2ef475f2f3e1d82e23ed75

diff --git a/net-wireless/rtl-sdr/rtl-sdr-0.6.0.ebuild 
b/net-wireless/rtl-sdr/rtl-sdr-0.6.0.ebuild
new file mode 100644
index 000..a6d38d237ac
--- /dev/null
+++ b/net-wireless/rtl-sdr/rtl-sdr-0.6.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils multilib
+
+DESCRIPTION="turns your Realtek RTL2832 based DVB dongle into a SDR receiver"
+HOMEPAGE="http://sdr.osmocom.org/trac/wiki/rtl-sdr;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   SRC_URI=""
+   EGIT_REPO_URI="https://git.osmocom.org/${PN};
+   KEYWORDS=""
+else
+   SRC_URI="https://github.com/steve-m/librtlsdr/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   S="${WORKDIR}"/librtlsdr-${PV}
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="virtual/libusb:1"
+RDEPEND="${DEPEND}"
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   else
+   default
+   fi
+}
+
+src_configure() {
+   #the udev rules are 666, we don't want that
+   mycmakeargs=(
+   -DINSTALL_UDEV_RULES=OFF
+   -DDETACH_KERNEL_DRIVER=ON
+   -DLIB_INSTALL_DIR=$(get_libdir)
+   )
+   cmake-utils_src_configure
+}
+
+pkg_postinst() {
+   elog "Only users in the usb group can capture."
+   elog "Just run 'gpasswd -a  usb', then have  re-login."
+}



[gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-osmosdr/

2019-07-02 Thread Rick Farina
commit: e276904d4623f4d2f21267dd5720cc58266c422c
Author: Rick Farina  gentoo  org>
AuthorDate: Wed Jul  3 04:33:01 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Wed Jul  3 05:22:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e276904d

net-wireless/gr-osmosdr: bug #675774

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

 net-wireless/gr-osmosdr/Manifest   |  1 -
 .../gr-osmosdr-0.1.4_p20170612-r2.ebuild   | 69 --
 ...ebuild => gr-osmosdr-0.1.4_p20180626-r4.ebuild} |  4 +-
 ...ebuild => gr-osmosdr-0.1.4_p20180626-r5.ebuild} |  4 +-
 4 files changed, 4 insertions(+), 74 deletions(-)

diff --git a/net-wireless/gr-osmosdr/Manifest b/net-wireless/gr-osmosdr/Manifest
index 97074e544a3..c2b2cbbba87 100644
--- a/net-wireless/gr-osmosdr/Manifest
+++ b/net-wireless/gr-osmosdr/Manifest
@@ -1,2 +1 @@
-DIST gr-osmosdr-0.1.4_p20170612.tar.xz 174416 BLAKE2B 
d0ef0d4348b561da10f3e8b99fb43f93fbee5c19a1a4fdcc465f2a63425a42ad0f8d64f522e4aafd5182e66c3c96b42f603e9b595e61b0be15b45eae5330fe5e
 SHA512 
9cf3d0453696c7cfe0679136335a71ec5fd18c4b09cbe3e75fca90626065bf6640969bf224219fe796739abbc3b627eb8bf3509b52f764c38b57f169005ea933
 DIST gr-osmosdr-0.1.4_p20180626.tar.xz 179568 BLAKE2B 
223d23bd17edd5f4ee78237e509c79e5e7e49bbfb516009c3b5a715f386fcd138beea48e417d4576a7749cdb440736b6d92c8766b614bf617ef6b2bb4a293fda
 SHA512 
8540da1f4d6936e0a97fa2f3e24af1866d44620fd7e7bc65b323364f67f1527fe8e0efd7bf0349be5e3d61f2ed24fa736c924ea0038e44fa3ab72848fe254a28

diff --git a/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20170612-r2.ebuild 
b/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20170612-r2.ebuild
deleted file mode 100644
index c60df9c387d..000
--- a/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20170612-r2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils python-single-r1
-
-DESCRIPTION="GNU Radio source block for OsmoSDR and rtlsdr and hackrf"
-HOMEPAGE="http://sdr.osmocom.org/trac/wiki/GrOsmoSDR;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   SRC_URI=""
-   EGIT_REPO_URI="git://git.osmocom.org/${PN}.git"
-else
-   
#SRC_URI="http://cgit.osmocom.org/gr-osmosdr/snapshot/gr-osmosdr-${PV}.tar.xz;
-   #git clone git://git.osmocom.org/gr-osmosdr.git
-   #cd gr-osmosdr
-   #git archive --format=tar --prefix=gr-osmosdr-${PV}/ v${PV} | xz > 
../gr-osmosdr-${PV}.tar.xz
-   
SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/gr-osmosdr-${PV}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-IUSE="bladerf fcd hackrf iqbalance mirisdr python rtlsdr soapy uhd"
-
-RDEPEND="${PYTHON_DEPS}
-   dev-libs/boost:=
-   >=net-wireless/gnuradio-3.7_rc:0=[fcd?,${PYTHON_USEDEP}]
-   bladerf? ( =net-wireless/rtl-sdr-0.5.3:= )
-   soapy? ( net-wireless/soapysdr:= )
-   uhd? ( net-wireless/uhd:=[${PYTHON_USEDEP}] )"
-DEPEND="${RDEPEND}
-   dev-python/cheetah"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_DEFAULT=OFF
-   -DPYTHON_EXECUTABLE="${PYTHON}"
-   -DENABLE_FILE=ON
-   -DENABLE_BLADERF="$(usex bladerf)"
-   -DENABLE_FCD="$(usex fcd)"
-   -DENABLE_HACKRF="$(usex hackrf)"
-   -DENABLE_IQBALANCE="$(usex iqbalance)"
-   -DENABLE_MIRI="$(usex mirisdr)"
-   -DENABLE_PYTHON="$(usex python)"
-   -DENABLE_RTL="$(usex rtlsdr)"
-   -DENABLE_RTL_TCP="$(usex rtlsdr)"
-   -DENABLE_SOAPY="$(usex soapy)"
-   -DENABLE_UHD="$(usex uhd)"
-   )
-
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-   if use python; then
-   python_fix_shebang "${ED}"/usr/bin
-   fi
-}

diff --git a/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20180626-r2.ebuild 
b/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20180626-r4.ebuild
similarity index 96%
rename from net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20180626-r2.ebuild
rename to net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20180626-r4.ebuild
index 2e7d5bdcee7..67f6413233c 100644
--- a/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20180626-r2.ebuild
+++ b/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20180626-r4.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
@@ -34,7 +34,7 @@ RDEPEND="${PYTHON_DEPS}
hackrf? ( net-libs/libhackrf:= )
iqbalance? ( net-wireless/gr-iqbal:=[${PYTHON_USEDEP}] )
mirisdr? ( net-libs/libmirisdr:= )
-   rtlsdr? ( >=net-wireless/rtl-sdr-0.5.3:= )
+   rtlsdr? ( >=net-wireless/rtl-sdr-0.5.4:= )
sdrplay? ( 

[gentoo-commits] repo/gentoo:master commit in: net-wireless/dump1090/

2019-07-02 Thread Rick Farina
commit: b4ac49a0b7d666360214d4f27ba05a32e70b8199
Author: Rick Farina  gentoo  org>
AuthorDate: Wed Jul  3 05:21:47 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Wed Jul  3 05:22:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4ac49a0

net-wireless/dump1090: wip update to fa fork

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

 net-wireless/dump1090/dump1090-.ebuild | 37 ++
 net-wireless/dump1090/metadata.xml |  6 -
 2 files changed, 27 insertions(+), 16 deletions(-)

diff --git a/net-wireless/dump1090/dump1090-.ebuild 
b/net-wireless/dump1090/dump1090-.ebuild
index 556e4a14a69..e4ab4ba0cfe 100644
--- a/net-wireless/dump1090/dump1090-.ebuild
+++ b/net-wireless/dump1090/dump1090-.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
@@ -9,34 +9,42 @@ DESCRIPTION="simple Mode S decoder for RTLSDR devices"
 #Original repo
 #HOMEPAGE="https://github.com/antirez/dump1090;
 #Repo that has actually been touched recenly
-HOMEPAGE="https://github.com/mutability/dump1090;
+#HOMEPAGE="https://github.com/mutability/dump1090;
+#And now we move to the next one in line
+HOMEPAGE="https://github.com/flightaware/dump1090;
 
 if [[ ${PV} == "" ]] ; then
inherit git-r3
-   EGIT_REPO_URI="https://github.com/mutability/${PN}.git;
+   EGIT_REPO_URI="https://github.com/flightaware/${PN}.git;
KEYWORDS=""
 else
KEYWORDS="~amd64 ~x86"
-   COMMIT="fb5942dba6505a21cbafc7905a5a7c513b214dc9"
-   
SRC_URI="https://github.com/mutability/dump1090/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/${PN}-${COMMIT}"
+   #COMMIT="fb5942dba6505a21cbafc7905a5a7c513b214dc9"
+   
#SRC_URI="https://github.com/flightaware/dump1090/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+   #S="${WORKDIR}/${PN}-${COMMIT}"
+   SRC_URI="https://github.com/flightaware/dump1090/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 fi
 
 LICENSE="BSD"
 SLOT="0"
-IUSE=""
+IUSE="bladerf +rtlsdr"
 
-RDEPEND="net-wireless/rtl-sdr
+RDEPEND="bladerf? ( net-wireless/bladerf:= )
+   rtlsdr? ( net-wireless/rtl-sdr:= )
+   sys-libs/ncurses:=
virtual/libusb:1"
 DEPEND="${RDEPEND}"
 
+src_prepare() {
+   default
+   sed -i 's#-O2 -g -Wall -Werror -W##' Makefile
+   sed -i "s#-lncurses#$($(tc-getPKG_CONFIG) --libs ncurses)#" Makefile
+}
+
 src_compile() {
emake CC="$(tc-getCC)" \
-   UNAME="Linux" \
-   DUMP1090_VERSION=${PV} \
-   CFLAGS="$($(tc-getPKG_CONFIG) --cflags librtlsdr) ${CFLAGS}" \
-   EXTRACFLAGS="-DHTMLPATH=\\\"/usr/share/dump1090/html\\\"" \
-   LIBS="${LDFLAGS} $($(tc-getPKG_CONFIG) --libs librtlsdr) -lm 
-lpthread"
+   BLADERF=$(usex bladerf) \
+   RTLSDR=$(usex rtlsdr)
 }
 
 src_install() {
@@ -50,6 +58,5 @@ src_install() {
insinto /usr/share/${PN}/tools
doins -r tools/*
 
-   newdoc debian/lighttpd/89-dump1090.conf lighttpd.conf
-   newdoc debian/nginx/dump1090-mutability nginx.conf
+   newdoc debian/lighttpd/89-dump1090-fa.conf lighttpd.conf
 }

diff --git a/net-wireless/dump1090/metadata.xml 
b/net-wireless/dump1090/metadata.xml
index 88faf189fed..da238ebeece 100644
--- a/net-wireless/dump1090/metadata.xml
+++ b/net-wireless/dump1090/metadata.xml
@@ -5,7 +5,11 @@
ra...@gentoo.org
Radio

+   
+   Build with Nuand BladeRF support
+   Build with Realtek RTL2832U (rtlsdr) 
support
+   

-   antirez/dump1090
+   flightaware/dump1090

 



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

2019-07-02 Thread Hans de Graaff
commit: 4cf1d0d719a766e2db519356fce2a06eb2ca65f4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul  3 04:49:45 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul  3 04:49:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cf1d0d7

dev-ruby/sshkit: cleanup

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

 dev-ruby/sshkit/Manifest |  1 -
 dev-ruby/sshkit/sshkit-1.19.0.ebuild | 42 
 2 files changed, 43 deletions(-)

diff --git a/dev-ruby/sshkit/Manifest b/dev-ruby/sshkit/Manifest
index d41e1ace31c..6f3b6d1d9ec 100644
--- a/dev-ruby/sshkit/Manifest
+++ b/dev-ruby/sshkit/Manifest
@@ -1,3 +1,2 @@
 DIST sshkit-1.18.2.gem 150016 BLAKE2B 
b9427eab02b6967a71252bf4a519d86f06429241e28d661dd424ff7739fd69d68ca9b430096518872141e4e09fbac832e04aab8a89fc1d89ebe5077303b87238
 SHA512 
a98477dfc9c566ba3777a2557db95aa20c2b220b238d8acd59888c8ac271b71c1bbebb29f37ad87102a155beecdd0b60872b4c735f71f7a65be2c1fb5ae60c8f
-DIST sshkit-1.19.0.gem 154624 BLAKE2B 
1ec997eccbd82d7601cc8f0cd0316ac928254cbf1f0880780c41b615286d05ad401ca3073ebe6e3a556958865e29229284a0509029166cbccbe27d27c98aa3da
 SHA512 
4534af05c2d73d17e11b22067b93c3303beea393a89718169313aa1ad3ee4c131450f1ee89c7fa68ddbdbce8aeff66a7330c03c9a6b4758c10eeb7efa172cff8
 DIST sshkit-1.19.1.gem 155136 BLAKE2B 
756d4f2e7575d0b2b2c0cdf885a22739e8b8f458d9ffebd614bc58135bd285853afe63bddc262dfb2d73ca64f6be5ebdb01436bbe25deaad73f5a62d9ac67b33
 SHA512 
9df31133c4d6b8da753aa2ab65574a813c99d086fff47b42db345057ff3eadce7e24bd6b648b28fcb476282a8b7f204acaec0cc766a3c25c52a3f64223169ebf

diff --git a/dev-ruby/sshkit/sshkit-1.19.0.ebuild 
b/dev-ruby/sshkit/sshkit-1.19.0.ebuild
deleted file mode 100644
index 2e3a0b61bd0..000
--- a/dev-ruby/sshkit/sshkit-1.19.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24 ruby25 ruby26"
-
-# There are functional tests that require vagrant boxes to be set up.
-RUBY_FAKEGEM_TASK_TEST="test:units"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md FAQ.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="SSHKit makes it easy to write structured, testable SSH commands 
in Ruby"
-HOMEPAGE="https://github.com/capistrano/sshkit;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/net-ssh-2.8.0:*
-   >=dev-ruby/net-scp-1.1.2
-"
-
-ruby_add_bdepend "test? ( dev-ruby/minitest dev-ruby/mocha )"
-
-all_ruby_prepare() {
-   sed -i -e '/bundler/I s:^:#:' Rakefile test/helper.rb || die
-   sed -i -e '/\(turn\|unindent\|reporters\)/I s:^:#:' \
-   -e '1irequire "set"; require "pathname"' test/helper.rb || die
-
-   # Fix assumption about parent directory name
-   sed -i -e '/assert_match/ s/sshkit/sshkit.*/' 
test/unit/test_deprecation_logger.rb || die
-}
-
-each_ruby_test() {
-   # Run tests directly to avoid dependencies in the Rakefile
-   ${RUBY} -Ilib:test:. -e "Dir['test/unit/**/test*.rb'].each{|f| require 
f}" || die
-}



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

2019-07-02 Thread Hans de Graaff
commit: e9bb8a3194edd6c7407bba0ad9cfaddfbd4d896f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul  3 04:46:01 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul  3 04:46:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9bb8a31

dev-ruby/simplecov: add 0.17.0

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

 dev-ruby/simplecov/Manifest|  1 +
 dev-ruby/simplecov/simplecov-0.17.0.ebuild | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/dev-ruby/simplecov/Manifest b/dev-ruby/simplecov/Manifest
index a6fd2416402..b6bdc3d5fc0 100644
--- a/dev-ruby/simplecov/Manifest
+++ b/dev-ruby/simplecov/Manifest
@@ -1 +1,2 @@
 DIST simplecov-0.16.1.tar.gz 62296 BLAKE2B 
f9ebe2c7ec3d8b5bb80f642be3e9803210f9af334a2e7eacc2d1339567750027bf0505106e9fd641c42b3ad41e5e74ebbe730d8ff80947b1ec2ff23f6ee8fef1
 SHA512 
5b3c16bcdcbfcbd5282bd91375d1593292ad421a73b88cbdf18fc8f57364e20e1eec44bb084be3619684f9871612ca81f790eea8eec98b61cf523bf38b4a997f
+DIST simplecov-0.17.0.tar.gz 64354 BLAKE2B 
640d2b312dd8202ddc13c2f33bfbd325441d4fd6502d8c738c15386fbac90a233043de1386c3bc57649b84a699187b71211c1b529071bae387451a16e5604ad9
 SHA512 
b477c215bfccafe0f24245078a211d6f7355098fc862b6dddf9c44cfaf9a352157535c628d31da4049323c5c7469be2e33566f381de5690a430d5d5cf5b6

diff --git a/dev-ruby/simplecov/simplecov-0.17.0.ebuild 
b/dev-ruby/simplecov/simplecov-0.17.0.ebuild
new file mode 100644
index 000..b0bba4411b7
--- /dev/null
+++ b/dev-ruby/simplecov/simplecov-0.17.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_TASK_DOC=""
+
+RUBY_FAKEGEM_GEMSPEC="simplecov.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Code coverage with a configuration library and merging across 
test suites"
+HOMEPAGE="https://www.ruby-toolbox.com/projects/simplecov 
https://github.com/colszowka/simplecov;
+SRC_URI="https://github.com/colszowka/simplecov/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="MIT"
+
+KEYWORDS="~amd64"
+SLOT="0.8"
+IUSE="doc"
+
+ruby_add_rdepend "|| ( dev-ruby/json:2 >=dev-ruby/json-1.8:0 )
+   dev-ruby/simplecov-html:0.10
+   >=dev-ruby/docile-1.1:0"
+
+ruby_add_bdepend "test? (
+   dev-ruby/rspec:3
+   dev-ruby/test-unit:2
+)"
+
+# There are also cucumber tests that require poltergeist and unpackaged 
phantomjs gem.
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/ s:^:#:' spec/helper.rb features/support/env.rb 
|| die
+
+   # Avoid test depending on spawning ruby and having timing issues
+   sed -i -e '/blocks other processes/askip "gentoo"' 
spec/result_merger_spec.rb || die
+}
+
+each_ruby_test() {
+   RSPEC_VERSION=3 ruby-ng_rspec spec/*spec.rb || die
+
+   #${RUBY} -S cucumber features || die
+}



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

2019-07-02 Thread Hans de Graaff
commit: 53eff6eeb7c496233f5c35a6dad1ebe5376e447a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul  3 04:49:28 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul  3 04:49:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53eff6ee

dev-ruby/sshkit: add 1.19.1

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

 dev-ruby/sshkit/Manifest |  1 +
 dev-ruby/sshkit/sshkit-1.19.1.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/dev-ruby/sshkit/Manifest b/dev-ruby/sshkit/Manifest
index e784d51ce51..d41e1ace31c 100644
--- a/dev-ruby/sshkit/Manifest
+++ b/dev-ruby/sshkit/Manifest
@@ -1,2 +1,3 @@
 DIST sshkit-1.18.2.gem 150016 BLAKE2B 
b9427eab02b6967a71252bf4a519d86f06429241e28d661dd424ff7739fd69d68ca9b430096518872141e4e09fbac832e04aab8a89fc1d89ebe5077303b87238
 SHA512 
a98477dfc9c566ba3777a2557db95aa20c2b220b238d8acd59888c8ac271b71c1bbebb29f37ad87102a155beecdd0b60872b4c735f71f7a65be2c1fb5ae60c8f
 DIST sshkit-1.19.0.gem 154624 BLAKE2B 
1ec997eccbd82d7601cc8f0cd0316ac928254cbf1f0880780c41b615286d05ad401ca3073ebe6e3a556958865e29229284a0509029166cbccbe27d27c98aa3da
 SHA512 
4534af05c2d73d17e11b22067b93c3303beea393a89718169313aa1ad3ee4c131450f1ee89c7fa68ddbdbce8aeff66a7330c03c9a6b4758c10eeb7efa172cff8
+DIST sshkit-1.19.1.gem 155136 BLAKE2B 
756d4f2e7575d0b2b2c0cdf885a22739e8b8f458d9ffebd614bc58135bd285853afe63bddc262dfb2d73ca64f6be5ebdb01436bbe25deaad73f5a62d9ac67b33
 SHA512 
9df31133c4d6b8da753aa2ab65574a813c99d086fff47b42db345057ff3eadce7e24bd6b648b28fcb476282a8b7f204acaec0cc766a3c25c52a3f64223169ebf

diff --git a/dev-ruby/sshkit/sshkit-1.19.1.ebuild 
b/dev-ruby/sshkit/sshkit-1.19.1.ebuild
new file mode 100644
index 000..2e3a0b61bd0
--- /dev/null
+++ b/dev-ruby/sshkit/sshkit-1.19.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby24 ruby25 ruby26"
+
+# There are functional tests that require vagrant boxes to be set up.
+RUBY_FAKEGEM_TASK_TEST="test:units"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md FAQ.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="SSHKit makes it easy to write structured, testable SSH commands 
in Ruby"
+HOMEPAGE="https://github.com/capistrano/sshkit;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/net-ssh-2.8.0:*
+   >=dev-ruby/net-scp-1.1.2
+"
+
+ruby_add_bdepend "test? ( dev-ruby/minitest dev-ruby/mocha )"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/I s:^:#:' Rakefile test/helper.rb || die
+   sed -i -e '/\(turn\|unindent\|reporters\)/I s:^:#:' \
+   -e '1irequire "set"; require "pathname"' test/helper.rb || die
+
+   # Fix assumption about parent directory name
+   sed -i -e '/assert_match/ s/sshkit/sshkit.*/' 
test/unit/test_deprecation_logger.rb || die
+}
+
+each_ruby_test() {
+   # Run tests directly to avoid dependencies in the Rakefile
+   ${RUBY} -Ilib:test:. -e "Dir['test/unit/**/test*.rb'].each{|f| require 
f}" || die
+}



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

2019-07-02 Thread Michał Górny
commit: 7dbe7f48f9b2a54b38d2d5c7675c2ee8a735e5b1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  3 03:26:50 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  3 03:45:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dbe7f48

dev-libs/jsoncpp: Bump to 1.9.0

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

 dev-libs/jsoncpp/Manifest |  1 +
 dev-libs/jsoncpp/jsoncpp-1.9.0.ebuild | 66 +++
 2 files changed, 67 insertions(+)

diff --git a/dev-libs/jsoncpp/Manifest b/dev-libs/jsoncpp/Manifest
index 633c98ce4f2..33f0c212b7d 100644
--- a/dev-libs/jsoncpp/Manifest
+++ b/dev-libs/jsoncpp/Manifest
@@ -1 +1,2 @@
 DIST jsoncpp-1.8.4.tar.gz 200226 BLAKE2B 
bbfa8cf7b6cfa6af34762b54de2da0e919849c65b1093b29f7a7ac437524d8b3cf07b42926b250489e9a289105df971fad798f3e73f908fac3e2f52a4e5467b3
 SHA512 
f70361a3263dd8b9441374a9a409462be1426c0d6587c865171a80448ab73b3f69de2b4d70d2f0c541764e1e6727dd53178347901f625ec6fb54fb94f4f1
+DIST jsoncpp-1.9.0.tar.gz 203176 BLAKE2B 
81026de1f4f1882b504598879c7425586ad4fed8e005116509c85e03431d879f92040d802a3a0a9a369d652a076a60221e7d3b32027e3ea2ff4633fb7275c7a9
 SHA512 
b1da96c12d9ad4c7e002ed84b6c0ff24a7c86034f462a4eb29d93be2f81d7961a03d6f7aa3e7fa58366a2ed76242f6c72e8c3c6d34bdf562c86ca9951f5f3785

diff --git a/dev-libs/jsoncpp/jsoncpp-1.9.0.ebuild 
b/dev-libs/jsoncpp/jsoncpp-1.9.0.ebuild
new file mode 100644
index 000..14eea97be97
--- /dev/null
+++ b/dev-libs/jsoncpp/jsoncpp-1.9.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-utils python-any-r1
+
+DESCRIPTION="C++ JSON reader and writer"
+HOMEPAGE="https://github.com/open-source-parsers/jsoncpp;
+SRC_URI="https://github.com/open-source-parsers/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="|| ( public-domain MIT )"
+SLOT="0/21"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
+IUSE="doc test"
+
+DEPEND="
+   doc? (
+   app-doc/doxygen
+   ${PYTHON_DEPS}
+   )
+   test? (
+   ${PYTHON_DEPS}
+   )"
+RDEPEND=""
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+   if use doc || use test; then
+   python-any-r1_pkg_setup
+   fi
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DJSONCPP_WITH_TESTS=$(usex test)
+   -DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF
+   -DJSONCPP_WITH_CMAKE_PACKAGE=ON
+
+   -DBUILD_SHARED_LIBS=ON
+
+   # Follow Debian, Ubuntu, Arch convention for headers location
+   # bug #452234
+   -DCMAKE_INSTALL_INCLUDEDIR=include/jsoncpp
+
+   # Disable implicit ccache use
+   -DCCACHE_FOUND=OFF
+   )
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+
+   if use doc; then
+   "${EPYTHON}" doxybuild.py 
--doxygen="${EPREFIX}"/usr/bin/doxygen || die
+   HTML_DOCS=( dist/doxygen/jsoncpp*/. )
+   fi
+}
+
+src_test() {
+   cmake-utils_src_make jsoncpp_check
+}



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

2019-07-02 Thread Michał Górny
commit: afa6c7b37d557bef45f72c0da922f5b60cc41024
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  3 03:38:55 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  3 03:45:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afa6c7b3

x11-terms/xfce4-terminal: Bump to 0.8.8

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

 x11-terms/xfce4-terminal/Manifest  |  1 +
 .../xfce4-terminal/xfce4-terminal-0.8.8.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/x11-terms/xfce4-terminal/Manifest 
b/x11-terms/xfce4-terminal/Manifest
index 4b7ab739de5..0153d645055 100644
--- a/x11-terms/xfce4-terminal/Manifest
+++ b/x11-terms/xfce4-terminal/Manifest
@@ -1 +1,2 @@
 DIST xfce4-terminal-0.8.7.4.tar.bz2 884272 BLAKE2B 
563223180cf781fa1723821c3851e60e15fc59473bf8608f781b8dffac052b90fbe4be672d4d878ffd00686ad992e2d5c53dbfdc80539e7197dcb631314f3370
 SHA512 
de56c08d5be47583484acf9aa5b3c0a0f14b1ac2790e0f6b59db61f80d71f871ff87e94f9353a0cc187cf1d9dff643e40ce15ed60a24d550843d898eee3d62dd
+DIST xfce4-terminal-0.8.8.tar.bz2 938843 BLAKE2B 
ae7beb611744d7f2cc168cf1c938f5c49add4fb4691f95cfd8f88959f380aa1e3ff11181f08529a9825273a5da7fd9ab5f45de6e3f78eb5b7f224d8044592c5b
 SHA512 
0ceb130f0a0ceaa0a30a808fb7ff5070f75a84ef460c99799b267e5ecb1e0c15ef29558f78949d9a8968bfc50efebabc0f32dfc426a1db7ee6d225c6fdbf7645

diff --git a/x11-terms/xfce4-terminal/xfce4-terminal-0.8.8.ebuild 
b/x11-terms/xfce4-terminal/xfce4-terminal-0.8.8.ebuild
new file mode 100644
index 000..4d3f4e0347d
--- /dev/null
+++ b/x11-terms/xfce4-terminal/xfce4-terminal-0.8.8.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eapi7-ver
+
+DESCRIPTION="A terminal emulator for the Xfce desktop environment"
+HOMEPAGE="https://docs.xfce.org/apps/terminal/start;
+SRC_URI="https://archive.xfce.org/src/apps/${PN}/$(ver_cut 1-2)/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
+IUSE="utempter"
+
+RDEPEND=">=dev-libs/glib-2.32:2=
+   >=x11-libs/gtk+-3.20.8:3=
+   x11-libs/libX11:=
+   >=x11-libs/vte-0.38:2.91=
+   >=xfce-base/libxfce4ui-4.10:=[gtk3(+)]
+   utempter? ( sys-libs/libutempter:= )"
+DEPEND="${RDEPEND}
+   dev-libs/libxml2
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog HACKING NEWS README THANKS )
+
+src_configure() {
+   local myconf=(
+   $(use_with utempter)
+   )
+
+   econf "${myconf[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-cpugraph-plugin/

2019-07-02 Thread Michał Górny
commit: 93b7084a6d729f1e0c44814a8300f33209e682d6
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  3 03:36:23 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  3 03:45:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93b7084a

xfce-extra/xfce4-cpugraph-plugin: Bump to 1.1.0

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

 xfce-extra/xfce4-cpugraph-plugin/Manifest  |  1 +
 .../xfce4-cpugraph-plugin-1.1.0.ebuild | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/xfce-extra/xfce4-cpugraph-plugin/Manifest 
b/xfce-extra/xfce4-cpugraph-plugin/Manifest
index 1784b4ef0dc..43be74c09f5 100644
--- a/xfce-extra/xfce4-cpugraph-plugin/Manifest
+++ b/xfce-extra/xfce4-cpugraph-plugin/Manifest
@@ -1,3 +1,4 @@
 DIST xfce4-cpugraph-plugin-1.0.5.tar.bz2 328972 BLAKE2B 
7c39aa6fd9d0d6ecc5bedce1d99d330765c329d1fa673b61282fdea654ebd997caa118f57dd0776008584eaa2dbe0a6ae7df532ed3b941b03b111f5ae753d2e8
 SHA512 
3d1246958dd30638104f14a8b0078e25c05b67b42da953a97cb51d2b04e70d3f1da9d42ca4f4575b7114bce5abc4cb94d598737631536c0575b55d9a391e210a
 DIST xfce4-cpugraph-plugin-1.0.90.tar.bz2 386127 BLAKE2B 
ec1809f64fa2fc142aa6efec315e2c138b7b49261ecce4735cc0dce225c24c69013f4b2a4250dcdf1513029765d81cb757e0bb38ebb3bd024b5b07fe2e0475d0
 SHA512 
7f2be5b41948ba4c730e6fd58038e96044ef8d007ae55f107a434308bfffc99071706c92854e41a589a807913fb98b9b216c141fc1d37c744275d5a3944aee09
 DIST xfce4-cpugraph-plugin-1.0.91.tar.bz2 377694 BLAKE2B 
da75c1295dc190923e1a16c2627fcb36517b00ded3a358c198152705ac220720b97db36a9e6b43c1efee11cbd95249acec38a0aa8985ce6b7d1e3c35a6d93d26
 SHA512 
513fdec6ed9c00b1f979c3ca9223667d7b50ccb55e9be9506497eade4d4495547e60e53507bf114aabd23af911a477f997c6f7c2944c1761125a12227c67ccf5
+DIST xfce4-cpugraph-plugin-1.1.0.tar.bz2 391629 BLAKE2B 
e1a18df75461466abf908100e3ace73c46751d78527a9928a5712e3b3388cb0908b697055bd229f700f3e36e908cbc90f2732fc65568ebbe47d876aa376fd087
 SHA512 
c928baac776517da8929b8ce3842be7e02a2b3394b7cc848028d1720ca611e1aa4ef706bd00736fecfed0b3b2d0cce94c09b0f905a226db5e50c036dabb8df2a

diff --git 
a/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.1.0.ebuild 
b/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.1.0.ebuild
new file mode 100644
index 000..684e97eec64
--- /dev/null
+++ b/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.1.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="A system load plug-in for the Xfce panel"
+HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin;
+SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="BSD-2 GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux"
+
+RDEPEND=">=x11-libs/gtk+-3.22:3
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfce4-panel-4.12:="
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] proj/musl:master commit in: sys-apps/iproute2/

2019-07-02 Thread Jory Pratt
commit: c04656f45e66a29ab7f9284c31059644d426c1ec
Author: Jory Pratt  gentoo  org>
AuthorDate: Wed Jul  3 03:08:39 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Wed Jul  3 03:08:39 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=c04656f4

sys-apps/iproute2: add missing sys-libs/queue-standalone dep

Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Jory Pratt  gentoo.org>

 sys-apps/iproute2/iproute2-5.1.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-apps/iproute2/iproute2-5.1.0.ebuild 
b/sys-apps/iproute2/iproute2-5.1.0.ebuild
index f2771e5..beb936e 100644
--- a/sys-apps/iproute2/iproute2-5.1.0.ebuild
+++ b/sys-apps/iproute2/iproute2-5.1.0.ebuild
@@ -31,6 +31,7 @@ RDEPEND="
berkdb? ( sys-libs/db:= )
atm? ( net-dialup/linux-atm )
selinux? ( sys-libs/libselinux )
+   elibc_musl? ( sys-libs/queue-standalone )
 "
 # We require newer linux-headers for ipset support #549948 and some defines 
#553876
 DEPEND="



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

2019-07-02 Thread Louis Sautier
commit: 6161e3ea01caecf1f49bdfd29702b8ac0d9a5dd7
Author: Louis Sautier  gentoo  org>
AuthorDate: Tue Jul  2 22:06:02 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Tue Jul  2 22:06:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6161e3ea

dev-python/jaraco-itertools: remove old

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/jaraco-itertools/Manifest   |  1 -
 .../jaraco-itertools-2.5.2-r1.ebuild   | 59 --
 2 files changed, 60 deletions(-)

diff --git a/dev-python/jaraco-itertools/Manifest 
b/dev-python/jaraco-itertools/Manifest
index 96153278e69..52884b33c9a 100644
--- a/dev-python/jaraco-itertools/Manifest
+++ b/dev-python/jaraco-itertools/Manifest
@@ -1,4 +1,3 @@
 DIST jaraco.itertools-2.3.tar.gz 12857 BLAKE2B 
714b123965af3ff593205aab373f3097709729377cd867ca2a7ccbb7795b1818f47b0b316d4c927c9aec4eb66fe1da63b44c1d60db310dd97b5444b01f7db04d
 SHA512 
070a442531fd079fefcb61bbbdb0cc98bc88cbc5f23f6cb40ee1fafbc9a259c69e0a373e949ab54d22836f54b0de41e1b09d10692f92d18030825ca09345be48
-DIST jaraco.itertools-2.5.2.tar.gz 13744 BLAKE2B 
3f27144d580805380446b89972c785fa7d7a37a4841d07584efff31f4bdb1ffb9c5e00571172050e63fd65531d7f1db3d9272420c200e717bf9b6dad4b2e4dc4
 SHA512 
6e5085eb60451f7a5e46df7f69c73062680d980e46a0d41c4e6baaf47d48f413f7cf0ee26b0b24d90e2499174df41b37d7388cfe33e52bfcbc96f7378213d575
 DIST jaraco.itertools-3.0.0.tar.gz 13461 BLAKE2B 
b6b5146ea2fd9aabe72da85be84224d1c06b71278661183ea52e6ca7c9032c4ca33310d61eb93ceeb14edc4f5923dffc5af25cc8f3345c7453921d85f20ca22e
 SHA512 
91ffcfd2e734fe6647115b54a0eec45b58176681208a48705600a7293484fabdb5190f6981a985f35048bbc2fcb66250fa8a0d862ef41422102cdec1acdbfa41
 DIST jaraco.itertools-4.4.2.tar.gz 19431 BLAKE2B 
d3493380f9522d436d4d8dbcdf484e7fd4fa223e96fabde0d7f3803c395e56d0bd28f49b9a6bfec0b680fdff7f5d145c85530036157f7976ffa82fc4851e3105
 SHA512 
74db7a3c7595c7deaf2a0c9ba68e9b02d02ccbc6c65142de34a5339aac679c2d71f05b27e27632d265de4f78997e11d7dc43178bd0d64f3010e1568a5085812c

diff --git a/dev-python/jaraco-itertools/jaraco-itertools-2.5.2-r1.ebuild 
b/dev-python/jaraco-itertools/jaraco-itertools-2.5.2-r1.ebuild
deleted file mode 100644
index 0d19fccfefd..000
--- a/dev-python/jaraco-itertools/jaraco-itertools-2.5.2-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# Tests fail with PyPy and PyPy 3
-PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
-
-inherit distutils-r1
-
-MY_PN="${PN/-/.}"
-DESCRIPTION="Tools for working with iterables. Complements itertools and 
more_itertools"
-HOMEPAGE="https://github.com/jaraco/jaraco.itertools;
-SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-
-RDEPEND="
-   =dev-python/more-itertools-4.0.0[${PYTHON_USEDEP}]
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
-   doc? (
-   >=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
-   >=dev-python/rst-linker-1.9[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   )
-   test? (
-   ${RDEPEND}
-   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
-   )
-"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-python_compile_all() {
-   if use doc; then
-   sphinx-build docs docs/_build/html || die
-   HTML_DOCS=( docs/_build/html/. )
-   fi
-}
-
-python_test() {
-   # Override pytest options to skip flake8
-   PYTHONPATH=. pytest -vv --override-ini="addopts=--doctest-modules" \
-   || die "tests failed with ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-   find "${ED}" -name '*.pth' -delete || die
-}



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

2019-07-02 Thread Louis Sautier
commit: 38456aec72aa8beb9016e459926c8c21d376a155
Author: Louis Sautier  gentoo  org>
AuthorDate: Tue Jul  2 22:05:33 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Tue Jul  2 22:05:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38456aec

dev-python/jaraco-itertools: bump to 4.4.2, switches to pkgutil

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/jaraco-itertools/Manifest   |  1 +
 .../jaraco-itertools/jaraco-itertools-4.4.2.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/jaraco-itertools/Manifest 
b/dev-python/jaraco-itertools/Manifest
index 9f1c83f87cd..96153278e69 100644
--- a/dev-python/jaraco-itertools/Manifest
+++ b/dev-python/jaraco-itertools/Manifest
@@ -1,3 +1,4 @@
 DIST jaraco.itertools-2.3.tar.gz 12857 BLAKE2B 
714b123965af3ff593205aab373f3097709729377cd867ca2a7ccbb7795b1818f47b0b316d4c927c9aec4eb66fe1da63b44c1d60db310dd97b5444b01f7db04d
 SHA512 
070a442531fd079fefcb61bbbdb0cc98bc88cbc5f23f6cb40ee1fafbc9a259c69e0a373e949ab54d22836f54b0de41e1b09d10692f92d18030825ca09345be48
 DIST jaraco.itertools-2.5.2.tar.gz 13744 BLAKE2B 
3f27144d580805380446b89972c785fa7d7a37a4841d07584efff31f4bdb1ffb9c5e00571172050e63fd65531d7f1db3d9272420c200e717bf9b6dad4b2e4dc4
 SHA512 
6e5085eb60451f7a5e46df7f69c73062680d980e46a0d41c4e6baaf47d48f413f7cf0ee26b0b24d90e2499174df41b37d7388cfe33e52bfcbc96f7378213d575
 DIST jaraco.itertools-3.0.0.tar.gz 13461 BLAKE2B 
b6b5146ea2fd9aabe72da85be84224d1c06b71278661183ea52e6ca7c9032c4ca33310d61eb93ceeb14edc4f5923dffc5af25cc8f3345c7453921d85f20ca22e
 SHA512 
91ffcfd2e734fe6647115b54a0eec45b58176681208a48705600a7293484fabdb5190f6981a985f35048bbc2fcb66250fa8a0d862ef41422102cdec1acdbfa41
+DIST jaraco.itertools-4.4.2.tar.gz 19431 BLAKE2B 
d3493380f9522d436d4d8dbcdf484e7fd4fa223e96fabde0d7f3803c395e56d0bd28f49b9a6bfec0b680fdff7f5d145c85530036157f7976ffa82fc4851e3105
 SHA512 
74db7a3c7595c7deaf2a0c9ba68e9b02d02ccbc6c65142de34a5339aac679c2d71f05b27e27632d265de4f78997e11d7dc43178bd0d64f3010e1568a5085812c

diff --git a/dev-python/jaraco-itertools/jaraco-itertools-4.4.2.ebuild 
b/dev-python/jaraco-itertools/jaraco-itertools-4.4.2.ebuild
new file mode 100644
index 000..430831d4c3a
--- /dev/null
+++ b/dev-python/jaraco-itertools/jaraco-itertools-4.4.2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Tests fail with PyPy and PyPy 3
+PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+DESCRIPTION="Tools for working with iterables. Complements itertools and 
more_itertools"
+HOMEPAGE="https://github.com/jaraco/jaraco.itertools;
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND="
+   >=dev-python/namespace-jaraco-2[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/inflect[${PYTHON_USEDEP}]
+   >=dev-python/more-itertools-4.0.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
+   doc? (
+   >=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
+   >=dev-python/rst-linker-1.9[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${RDEPEND}
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_compile_all() {
+   if use doc; then
+   sphinx-build docs docs/_build/html || die
+   HTML_DOCS=( docs/_build/html/. )
+   fi
+}
+
+python_test() {
+   # Override pytest options to skip flake8
+   PYTHONPATH=. pytest -vv --override-ini="addopts=--doctest-modules" \
+   || die "tests failed with ${EPYTHON}"
+}
+
+# 
https://wiki.gentoo.org/wiki/Project:Python/Namespace_packages#File_collisions_between_pkgutil-style_packages
+python_install() {
+   rm "${BUILD_DIR}"/lib/jaraco/__init__.py || die
+   # note: eclass may default to --skip-build in the future
+   distutils-r1_python_install --skip-build
+}



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

2019-07-02 Thread Louis Sautier
commit: 6c95f223c35aae386592b2d97a038fb0439775a2
Author: Louis Sautier  gentoo  org>
AuthorDate: Tue Jul  2 21:54:46 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Tue Jul  2 21:57:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c95f223

dev-python/jaraco-classes: bump to 2.0, switches to pkgutil

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/jaraco-classes/Manifest |  1 +
 .../jaraco-classes/jaraco-classes-2.0.ebuild   | 60 ++
 2 files changed, 61 insertions(+)

diff --git a/dev-python/jaraco-classes/Manifest 
b/dev-python/jaraco-classes/Manifest
index 3ea0e7e35ed..bbee372ff5b 100644
--- a/dev-python/jaraco-classes/Manifest
+++ b/dev-python/jaraco-classes/Manifest
@@ -1,2 +1,3 @@
 DIST jaraco.classes-1.4.tar.gz 5171 BLAKE2B 
19a9a543328b6f781888ba7a6ae3cf0b1ae7cab078c9da65a1ed26cc71164aa06a31f2495b62c7d7a388b6fc075e97c7af58f7d67bc0ecc1785f9c7056dd
 SHA512 
d434b470424c104f91e9a4a5e3a1f2109b919a35edf45540ad1ef8600f0b10864f32aefb411d747e13b5d99ba06601ea7abe5032e24e5dc6b25254b4e68f8a89
 DIST jaraco.classes-1.5.tar.gz 6710 BLAKE2B 
884e756c7bff272a0b35d9ef8cd30538eba793e6d838b7bd409a59fde9539776906aeb95a456f7095178ce0623e20634fe1a09a8f3515d4b661bf702480cd934
 SHA512 
8fe3d40863424547e5396fd6a2b4ef3f27a92185ca82206bb88de2716419a9c2dc917fc945c732d5dab1a1795727a12014e0bbaceee7834896351de05491f99c
+DIST jaraco.classes-2.0.tar.gz 9911 BLAKE2B 
aa5e5c90f16c9536239ed61e6dccbc426244c98a33a944de32239bd42a0a4944e5df3529cfd525e05cf276a4a4b028edcec734006b549053ac8817032f52b2ea
 SHA512 
83c9a570f951ef6c3708243dce6397cfbfe963db5920550ac807878a69860b34831af5f277f956fd0b327d85462676fd6386a22d6d97c7616e01ca81d7ace694

diff --git a/dev-python/jaraco-classes/jaraco-classes-2.0.ebuild 
b/dev-python/jaraco-classes/jaraco-classes-2.0.ebuild
new file mode 100644
index 000..dfe803bba47
--- /dev/null
+++ b/dev-python/jaraco-classes/jaraco-classes-2.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Tests fail with pypy
+PYTHON_COMPAT=( pypy3 python{2_7,3_{5,6,7}} )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+DESCRIPTION="Classes used by other projects by developer jaraco"
+HOMEPAGE="https://github.com/jaraco/jaraco.classes;
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc test"
+
+RDEPEND="
+   >=dev-python/namespace-jaraco-2[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
+   doc? (
+   >=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
+   >=dev-python/rst-linker-1.9[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${RDEPEND}
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_compile_all() {
+   if use doc; then
+   cd docs || die
+   sphinx-build . _build/html || die
+   HTML_DOCS=( docs/_build/html/. )
+   fi
+}
+
+python_test() {
+   # Avoid ImportMismatchError, override pytest options to skip flake8
+   pytest -vv "${BUILD_DIR}"/lib 
--override-ini="addopts=--doctest-modules" \
+   || die "tests failed with ${EPYTHON}"
+}
+
+# 
https://wiki.gentoo.org/wiki/Project:Python/Namespace_packages#File_collisions_between_pkgutil-style_packages
+python_install() {
+   rm "${BUILD_DIR}"/lib/jaraco/__init__.py || die
+   # note: eclass may default to --skip-build in the future
+   distutils-r1_python_install --skip-build
+}



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

2019-07-02 Thread Naohiro Aota
commit: a71bbae26460a04da78bd6f0b74d63c7c21d1aa0
Author: Naohiro Aota  gentoo  org>
AuthorDate: Tue Jul  2 21:23:21 2019 +
Commit: Naohiro Aota  gentoo  org>
CommitDate: Tue Jul  2 21:24:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a71bbae2

dev-util/perf: version bump; introduce clang patch

Apply a patch to support >=clang8.

Closes: https://bugs.gentoo.org/678652
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Naohiro Aota  gentoo.org>

 dev-util/perf/Manifest   |   2 +
 dev-util/perf/files/perf-5.1.15-fix-clang8.patch |  17 ++
 dev-util/perf/perf-5.1.15.ebuild | 237 +++
 3 files changed, 256 insertions(+)

diff --git a/dev-util/perf/Manifest b/dev-util/perf/Manifest
index b137cbd8102..6e7fe4cc0f3 100644
--- a/dev-util/perf/Manifest
+++ b/dev-util/perf/Manifest
@@ -1,4 +1,6 @@
 DIST linux-4.14.tar.xz 100770500 BLAKE2B 
85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a
 SHA512 
77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8
 DIST linux-4.20.tar.xz 104257836 BLAKE2B 
fb52cad2897da319299486fa8c3b9415cd0aee0842dbf353a5b269720dcb902db407bb55dd95a77b212dcb4a488c15363d561f3649d6bd16885561f2466d90b1
 SHA512 
e282399beea5da539701aed2bc131abd5bc74a970dcd344163e9d295106dfd700180e672ed546ae5e55bc6b9ac95efd5ca1de2039015c1b7a6fc9c01ea6583d4
+DIST linux-5.1.tar.xz 106244476 BLAKE2B 
ae3c63ced819737e34f8ec3a78138f87704a2f2956454411e3a4830ec8c0aaf2c288af6ca080f1892540e50f4a422482360010be8641afdeeeaf7231e7d8da97
 SHA512 
ae96f347badc95f1f3acf506c52b6cc23c0bd09ce8f4ce6705d4b4058b62593059bba1bc603c8d8b00a2f19131e7e56c31ac62b45883a346fa61d655e178f236
 DIST patch-4.14.33.xz 905284 BLAKE2B 
e67bd9a96708aaaf65eb0aa852493b2323c9e237bfcc6fa837f795e481943ead3e2d5005ee72e40fc247df01c50877d9da3848a05aba3c999c3cfb7678cbdbc9
 SHA512 
5c76be5171709c2df7df7d5a8e8f3d0f7ede47b433da3b0f1710f262c8fcf5cf6c744a96d4336ea397c2c88a5f0a7507a5ab08c7c82f08deeb7a6f887ad77cfd
 DIST patch-4.20.3.xz 91732 BLAKE2B 
bf99271bcb35508df239343fd6c9d57c246f88320b586e44e2d97771d08b249a24db230214d4957015a5ed35261e201f0680101b99d0e92f0f1f69bc53e21458
 SHA512 
47178b8e3bfe4ba09cb82bb1ce8b0742e6749d4be3412fb57518918f7109e74eac1d3d8eb32a43e21b3837a14f37d5eefd8cab819defd10cc2db61fb0ceddeaf
+DIST patch-5.1.15.xz 426292 BLAKE2B 
45a90fd8faafce8bb52273494adfb3b16f6e6c31fa8fba3fa89c71622db6a9db4868ca1a805cd32344cb72cf4cf0049af9215fceec5274c6796a91081db51b6f
 SHA512 
0b2e4436644da2699cf6fdfb38d80dd7156fac74c1d99bec718f74171fb91815e3de1d08b892effc0ae39080c90b569a2bd30c1c4665c6b3a156cbb8e4c2ba61

diff --git a/dev-util/perf/files/perf-5.1.15-fix-clang8.patch 
b/dev-util/perf/files/perf-5.1.15-fix-clang8.patch
new file mode 100644
index 000..743f4b017b1
--- /dev/null
+++ b/dev-util/perf/files/perf-5.1.15-fix-clang8.patch
@@ -0,0 +1,17 @@
+https://bugs.gentoo.org/678652
+Created-By: Maciej S. Szmigiero 
+---
+--- a/tools/build/feature/test-clang.cpp   2018-12-24 00:55:59.0 
+0100
 b/tools/build/feature/test-clang.cpp   2019-04-06 16:05:56.828757243 
+0200
+@@ -1,10 +1,10 @@
+ // SPDX-License-Identifier: GPL-2.0
+-#include "clang/Basic/VirtualFileSystem.h"
+ #include "clang/Driver/Driver.h"
+ #include "clang/Frontend/TextDiagnosticPrinter.h"
+ #include "llvm/ADT/IntrusiveRefCntPtr.h"
+ #include "llvm/Support/ManagedStatic.h"
+ #include "llvm/Support/raw_ostream.h"
++#include "llvm/Support/VirtualFileSystem.h"
+ 
+ using namespace clang;
+ using namespace clang::driver;

diff --git a/dev-util/perf/perf-5.1.15.ebuild b/dev-util/perf/perf-5.1.15.ebuild
new file mode 100644
index 000..269c7c597ef
--- /dev/null
+++ b/dev-util/perf/perf-5.1.15.ebuild
@@ -0,0 +1,237 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 )
+inherit bash-completion-r1 estack eutils toolchain-funcs python-single-r1 
linux-info
+
+MY_PV="${PV/_/-}"
+MY_PV="${MY_PV/-pre/-git}"
+
+DESCRIPTION="Userland tools for Linux Performance Counters"
+HOMEPAGE="https://perf.wiki.kernel.org/;
+
+LINUX_V="${PV:0:1}.x"
+if [[ ${PV} == *_rc* ]] ; then
+   LINUX_VER=$(ver_cut 1-2).$(($(ver_cut 3)-1))
+   PATCH_VERSION=$(ver_cut 1-3)
+   LINUX_PATCH=patch-${PV//_/-}.xz
+   SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
+   
mirror://kernel/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
+elif [[ ${PV} == *.*.* ]] ; then
+   # stable-release series
+   LINUX_VER=$(ver_cut 1-2)
+   LINUX_PATCH=patch-${PV}.xz
+   SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_PATCH}"
+else
+   LINUX_VER=${PV}
+   SRC_URI=""
+fi
+
+LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
+SRC_URI+=" 

[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-game-libretro-dosbox/

2019-07-02 Thread Craig Andrews
commit: 578e03522d9081bb4040a6715089b7dd281c6b54
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jul  2 21:11:25 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jul  2 21:16:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=578e0352

media-plugins/kodi-game-libretro-dosbox: 0.74.0.3 version bump

Bug: https://bugs.gentoo.org/688474
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Craig Andrews  gentoo.org>

 media-plugins/kodi-game-libretro-dosbox/Manifest | 1 +
 ...box-.ebuild => kodi-game-libretro-dosbox-0.74.0.3.ebuild} | 9 +
 .../kodi-game-libretro-dosbox-.ebuild| 7 ---
 3 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/media-plugins/kodi-game-libretro-dosbox/Manifest 
b/media-plugins/kodi-game-libretro-dosbox/Manifest
new file mode 100644
index 000..57ac8b7a065
--- /dev/null
+++ b/media-plugins/kodi-game-libretro-dosbox/Manifest
@@ -0,0 +1 @@
+DIST kodi-game-libretro-dosbox-0.74.0.3.tar.gz 53861 BLAKE2B 
bba95d96c9a313a96df7e3774573fdf43040efd23629242f1400a5a5ca8c2ebe948b68fba7d780ccd4cb3ca7cc4db74e23fece9d192e6988493a89eec19cdca7
 SHA512 
e802f5bdb1c9b82c5fa3224138f1956e4210aa532bea3ead20fba1a9349ef780f52d966b334beb498ab3433bd3822df7ae9e5cdcddbbf5b97318a5b65f4fc277

diff --git 
a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-.ebuild 
b/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.3.ebuild
similarity index 81%
copy from 
media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-.ebuild
copy to 
media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.3.ebuild
index 44c31d728f6..8d15e745cc2 100644
--- 
a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-0.74.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.dosbox/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.dosbox-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.dosbox/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.dosbox-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"
@@ -24,7 +25,7 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   ~media-tv/kodi-
+   =media-tv/kodi-18*
games-emulation/libretro-dosbox
"
 RDEPEND="

diff --git 
a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-.ebuild 
b/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-.ebuild
index 44c31d728f6..3e5fcb2608a 100644
--- 
a/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-dosbox/kodi-game-libretro-dosbox-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.dosbox/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.dosbox-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.dosbox/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.dosbox-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-game-libretro/

2019-07-02 Thread Craig Andrews
commit: a362213700b6bf9547463674a6b93b19d8ae1a7c
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jul  2 21:04:30 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jul  2 21:16:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3622137

media-plugins/kodi-game-libretro: 1.1.0 version bump

Bug: https://bugs.gentoo.org/688474
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Craig Andrews  gentoo.org>

 media-plugins/kodi-game-libretro/Manifest |  1 +
 ...e-libretro-.ebuild => kodi-game-libretro-1.1.0.ebuild} | 11 ++-
 .../kodi-game-libretro/kodi-game-libretro-.ebuild | 11 ++-
 3 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/media-plugins/kodi-game-libretro/Manifest 
b/media-plugins/kodi-game-libretro/Manifest
new file mode 100644
index 000..1e8e87c4dcc
--- /dev/null
+++ b/media-plugins/kodi-game-libretro/Manifest
@@ -0,0 +1 @@
+DIST kodi-game-libretro-1.1.0.tar.gz 101454 BLAKE2B 
8fcd65c8221b0ec4d24a41361eebcf1a144906e86b46749625462d507ca2813b6fdd0cb63ef0fcbe29b1f11039dc5b9cdf3d24eae788e4c275200c93855eed7b
 SHA512 
80cc868d57d4284085a7cd736930da6f1b2440cbd8667a20634c329c282e7f0b79158d4d510504a230427fae4d84d9ae29c7a76fab5e2a23820bfa72d75a8e91

diff --git a/media-plugins/kodi-game-libretro/kodi-game-libretro-.ebuild 
b/media-plugins/kodi-game-libretro/kodi-game-libretro-1.1.0.ebuild
similarity index 65%
copy from media-plugins/kodi-game-libretro/kodi-game-libretro-.ebuild
copy to media-plugins/kodi-game-libretro/kodi-game-libretro-1.1.0.ebuild
index 89eef4973a0..54e24230f46 100644
--- a/media-plugins/kodi-game-libretro/kodi-game-libretro-.ebuild
+++ b/media-plugins/kodi-game-libretro/kodi-game-libretro-1.1.0.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
@@ -17,8 +17,9 @@ case ${PV} in
;;
 *)
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/game.libretro-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro-${PV}-${CODENAME}"
;;
 esac
 
@@ -27,8 +28,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   =media-tv/kodi-
-   =media-libs/kodi-platform-
+   =media-tv/kodi-18*
+   =media-libs/kodi-platform-18*
=dev-libs/libplatform-2*
"
 RDEPEND="

diff --git a/media-plugins/kodi-game-libretro/kodi-game-libretro-.ebuild 
b/media-plugins/kodi-game-libretro/kodi-game-libretro-.ebuild
index 89eef4973a0..5f5c3e52887 100644
--- a/media-plugins/kodi-game-libretro/kodi-game-libretro-.ebuild
+++ b/media-plugins/kodi-game-libretro/kodi-game-libretro-.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
@@ -17,8 +17,9 @@ case ${PV} in
;;
 *)
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/game.libretro-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro-${PV}-${CODENAME}"
;;
 esac
 
@@ -27,8 +28,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   =media-tv/kodi-
-   =media-libs/kodi-platform-
+   ~media-tv/kodi-
+   ~media-libs/kodi-platform-
=dev-libs/libplatform-2*
"
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-game-libretro-snes9x/

2019-07-02 Thread Craig Andrews
commit: b6840198f02d2a23fc4b0aa342b67471598312bc
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jul  2 21:04:58 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jul  2 21:16:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6840198

media-plugins/kodi-game-libretro-snes9x: 1.58.0.6 version bump

Bug: https://bugs.gentoo.org/688474
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Craig Andrews  gentoo.org>

 media-plugins/kodi-game-libretro-snes9x/Manifest | 1 +
 ...s9x-.ebuild => kodi-game-libretro-snes9x-1.58.0.6.ebuild} | 9 +
 .../kodi-game-libretro-snes9x-.ebuild| 7 ---
 3 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/media-plugins/kodi-game-libretro-snes9x/Manifest 
b/media-plugins/kodi-game-libretro-snes9x/Manifest
new file mode 100644
index 000..1ca8085da30
--- /dev/null
+++ b/media-plugins/kodi-game-libretro-snes9x/Manifest
@@ -0,0 +1 @@
+DIST kodi-game-libretro-snes9x-1.58.0.6.tar.gz 1373392 BLAKE2B 
6d17ac222eeae8e23aa76ab0b1aafe805f260b14c210715275afb370c2c52381013b48805477d01389fa1067e14f24465f35449dd95e309dfec7ac93b090df72
 SHA512 
3cc3b5eda830223a447dda4efb0438db67900cae07d59f0879f95b1d252972186a241a74d0fa4668697a4ef8d2860923a43c7f4223af4ce794e937f255aa

diff --git 
a/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-.ebuild 
b/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.58.0.6.ebuild
similarity index 81%
copy from 
media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-.ebuild
copy to 
media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.58.0.6.ebuild
index a3c02f28e23..de406700e0d 100644
--- 
a/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-1.58.0.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.snes9x/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.snes9x-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.snes9x/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.snes9x-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"
@@ -24,7 +25,7 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   ~media-tv/kodi-
+   =media-tv/kodi-18*
games-emulation/libretro-snes9x
"
 RDEPEND="

diff --git 
a/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-.ebuild 
b/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-.ebuild
index a3c02f28e23..7dee71b48dd 100644
--- 
a/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-snes9x/kodi-game-libretro-snes9x-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.snes9x/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.snes9x-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.snes9x/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.snes9x-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-game-libretro-nestopia/

2019-07-02 Thread Craig Andrews
commit: 1903161ecf88f4f978c40880b88bc7c5761de51c
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jul  2 21:07:22 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jul  2 21:16:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1903161e

media-plugins/kodi-game-libretro-nestopia: 1.50.0.3 versiom bump

Bug: https://bugs.gentoo.org/688474
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Craig Andrews  gentoo.org>

 media-plugins/kodi-game-libretro-nestopia/Manifest   | 1 +
 ...a-.ebuild => kodi-game-libretro-nestopia-1.50.0.3.ebuild} | 9 +
 .../kodi-game-libretro-nestopia-.ebuild  | 7 ---
 3 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/media-plugins/kodi-game-libretro-nestopia/Manifest 
b/media-plugins/kodi-game-libretro-nestopia/Manifest
new file mode 100644
index 000..00cff3df3ac
--- /dev/null
+++ b/media-plugins/kodi-game-libretro-nestopia/Manifest
@@ -0,0 +1 @@
+DIST kodi-game-libretro-nestopia-1.50.0.3.tar.gz 793893 BLAKE2B 
89015bb8c687685264e4a8c34cf1caad87cfa1a3611cbd67b540ddb31e9e75049eed328b51c69702e92e358a659d4e503ccdac1b52b7db70688e1236529536ad
 SHA512 
4c41db8c77d24301f00b9d0283c948ae3c4176228e733a316fa5b2eba60ceea4dd094f48270d545008f144d3316cf5f8f190017f70e8378b9fbcbcdb2d8220e6

diff --git 
a/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-.ebuild
 
b/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-1.50.0.3.ebuild
similarity index 81%
copy from 
media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-.ebuild
copy to 
media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-1.50.0.3.ebuild
index 532ff29f02e..49c4284c228 100644
--- 
a/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-1.50.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.nestopia/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.nestopia-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.nestopia/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.nestopia-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"
@@ -24,7 +25,7 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   ~media-tv/kodi-
+   =media-tv/kodi-18*
games-emulation/libretro-nestopia
"
 RDEPEND="

diff --git 
a/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-.ebuild
 
b/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-.ebuild
index 532ff29f02e..f57205d8169 100644
--- 
a/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-nestopia/kodi-game-libretro-nestopia-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.nestopia/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.nestopia-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.nestopia/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.nestopia-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-game-libretro-fceumm/

2019-07-02 Thread Craig Andrews
commit: 03b8a0e53aff8c8e35a7504a04c76cd15f1936a2
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jul  2 21:13:03 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jul  2 21:16:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03b8a0e5

media-plugins/kodi-game-libretro-fceumm: 0.0.1.9 version bump

Bug: https://bugs.gentoo.org/688474
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Craig Andrews  gentoo.org>

 media-plugins/kodi-game-libretro-fceumm/Manifest | 1 +
 ...eumm-.ebuild => kodi-game-libretro-fceumm-0.0.1.9.ebuild} | 9 +
 .../kodi-game-libretro-fceumm-.ebuild| 7 ---
 3 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/media-plugins/kodi-game-libretro-fceumm/Manifest 
b/media-plugins/kodi-game-libretro-fceumm/Manifest
new file mode 100644
index 000..97c9a6c0ce1
--- /dev/null
+++ b/media-plugins/kodi-game-libretro-fceumm/Manifest
@@ -0,0 +1 @@
+DIST kodi-game-libretro-fceumm-0.0.1.9.tar.gz 778156 BLAKE2B 
a7a03d2df6cc4fbf89aa0a8b4320deb7ced5d452c045d3583fdd17dcdc2dbcf59a99ea323bc0b15355889522e2f3bf572d4b0c260dc381c2630bf58c8c7cd2ec
 SHA512 
772b69afff01e26d04fcc33d06e35da0329a1315f0e3ef01b51cc8459d145af782b6dd72b5b460de8dd7a59e308bf4922b2d77b62be1c5561b9debf3bbe36b60

diff --git 
a/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-.ebuild 
b/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-0.0.1.9.ebuild
similarity index 81%
copy from 
media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-.ebuild
copy to 
media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-0.0.1.9.ebuild
index 803fb82b6ea..2f5bc82a51b 100644
--- 
a/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-0.0.1.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.fceumm/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.fceumm-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.fceumm/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.fceumm-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"
@@ -24,7 +25,7 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   ~media-tv/kodi-
+   =media-tv/kodi-18*
games-emulation/libretro-fceumm
"
 RDEPEND="

diff --git 
a/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-.ebuild 
b/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-.ebuild
index 803fb82b6ea..e80efcb5cc4 100644
--- 
a/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-fceumm/kodi-game-libretro-fceumm-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.fceumm/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.fceumm-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.fceumm/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.fceumm-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-game-libretro-twentyfortyeight/

2019-07-02 Thread Craig Andrews
commit: 57cdd2a7fca48e29cfc61011ff0b584f6b6bd798
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jul  2 21:14:46 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jul  2 21:16:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57cdd2a7

media-plugins/kodi-game-libretro-twentyfortyeight: 1.0.0.106 version bump

Bug: https://bugs.gentoo.org/688474
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Craig Andrews  gentoo.org>

 media-plugins/kodi-game-libretro-twentyfortyeight/Manifest   | 1 +
 ...uild => kodi-game-libretro-twentyfortyeight-1.0.0.106.ebuild} | 9 +
 .../kodi-game-libretro-twentyfortyeight-.ebuild  | 7 ---
 3 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/media-plugins/kodi-game-libretro-twentyfortyeight/Manifest 
b/media-plugins/kodi-game-libretro-twentyfortyeight/Manifest
new file mode 100644
index 000..94a26510dd7
--- /dev/null
+++ b/media-plugins/kodi-game-libretro-twentyfortyeight/Manifest
@@ -0,0 +1 @@
+DIST kodi-game-libretro-twentyfortyeight-1.0.0.106.tar.gz 94621 BLAKE2B 
584e66eedb9956e75997fc8792652e0c5982150657169687976f0a52ecd07da1d50d2c43aed9379379a8cf1c668a1e9fda2c4c375910bbe02101d67f7813ff65
 SHA512 
2a30089b617bbbe62af7b17821e69d8c7bc8a393abbfdff5980b62753763595a93e6c326ee4ff17f4d48801399b325634d72c13ca22a30c4c490dfcc7c21952a

diff --git 
a/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-.ebuild
 
b/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-1.0.0.106.ebuild
similarity index 81%
copy from 
media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-.ebuild
copy to 
media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-1.0.0.106.ebuild
index 7a9f482f6a1..b31e25621de 100644
--- 
a/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-1.0.0.106.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.2048/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.2048-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.2048/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.2048-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"
@@ -24,7 +25,7 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   ~media-tv/kodi-
+   =media-tv/kodi-18*
games-emulation/libretro-twentyfortyeight
"
 RDEPEND="

diff --git 
a/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-.ebuild
 
b/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-.ebuild
index 7a9f482f6a1..a01c322557c 100644
--- 
a/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-twentyfortyeight/kodi-game-libretro-twentyfortyeight-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.2048/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.2048-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.2048/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.2048-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-game-libretro-bnes/

2019-07-02 Thread Craig Andrews
commit: 258854ed47fba1da8ae8f43962b5d98823cb4c73
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jul  2 21:09:08 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jul  2 21:16:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=258854ed

media-plugins/kodi-game-libretro-bnes: 0.83.0.3 version bump

Bug: https://bugs.gentoo.org/688474
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Craig Andrews  gentoo.org>

 media-plugins/kodi-game-libretro-bnes/Manifest   | 1 +
 ...-bnes-.ebuild => kodi-game-libretro-bnes-0.83.0.3.ebuild} | 9 +
 .../kodi-game-libretro-bnes/kodi-game-libretro-bnes-.ebuild  | 7 ---
 3 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/media-plugins/kodi-game-libretro-bnes/Manifest 
b/media-plugins/kodi-game-libretro-bnes/Manifest
new file mode 100644
index 000..276e2a910f4
--- /dev/null
+++ b/media-plugins/kodi-game-libretro-bnes/Manifest
@@ -0,0 +1 @@
+DIST kodi-game-libretro-bnes-0.83.0.3.tar.gz 809447 BLAKE2B 
4efcc72c60ceb433f755afe39058cffc2c39f9ad3726bd407b832b39fc4e4eb85287f6fc25cdbbebfe1b21db4b567fcd260544c1de544ddff2a94ab190c643d8
 SHA512 
371830f91cf3f7f47b45cd86ec7438a697e0acf886881e87c6dc9218d599e983cac0a540065b6d45b9228b20dd2c1bc264345ee454b55f68d13c62e33944bfd4

diff --git 
a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-.ebuild 
b/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.3.ebuild
similarity index 81%
copy from 
media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-.ebuild
copy to 
media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.3.ebuild
index 75ecc68d0df..960b86f16f9 100644
--- a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-.ebuild
+++ 
b/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-0.83.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.bnes/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.bnes-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.bnes/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.bnes-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"
@@ -24,7 +25,7 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   ~media-tv/kodi-
+   =media-tv/kodi-18*
games-emulation/libretro-bnes
"
 RDEPEND="

diff --git 
a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-.ebuild 
b/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-.ebuild
index 75ecc68d0df..bdef35c1c51 100644
--- a/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-.ebuild
+++ b/media-plugins/kodi-game-libretro-bnes/kodi-game-libretro-bnes-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,8 +15,9 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
KEYWORDS="~amd64 ~x86"
-   
SRC_URI="https://github.com/kodi-game/game.libretro.bnes/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/game.libretro.bnes-${PV}"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/kodi-game/game.libretro.bnes/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/game.libretro.bnes-${PV}-${CODENAME}"
 fi
 
 LICENSE="GPL-2"



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

2019-07-02 Thread Matthias Maier
commit: 6344f3b8e85bf46743f6e2c74a698f6297fa369e
Author: Matthias Maier  gentoo  org>
AuthorDate: Tue Jul  2 21:10:06 2019 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Tue Jul  2 21:10:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6344f3b8

app-emulation/qemu: drop vulnerable

Bug: https://bugs.gentoo.org/686026
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Matthias Maier  gentoo.org>

 app-emulation/qemu/Manifest |   2 -
 app-emulation/qemu/qemu-3.1.0-r4.ebuild | 813 
 2 files changed, 815 deletions(-)

diff --git a/app-emulation/qemu/Manifest b/app-emulation/qemu/Manifest
index 856d34fbff4..5cc79c76494 100644
--- a/app-emulation/qemu/Manifest
+++ b/app-emulation/qemu/Manifest
@@ -1,3 +1 @@
-DIST qemu-3.1.0-patches-r1.tar.xz 2292 BLAKE2B 
0861dcf2eebd7f1f6dd495035fc39a14e44eb8e437127b22105ea2374e5068613c4c3f41227e97e0093062f9448ded2d956dc6c40ae6c64c7258c3dcf87c59c3
 SHA512 
6eca3f4ec6e62c7a24af15405147d266f8fb77462eb8797da8d7f9e40805160d9431478428baece5b5744fc1edecff988b44c512ae1fbf8f2cc3632ea14962cc
-DIST qemu-3.1.0.tar.xz 36070104 BLAKE2B 
9ed7d1b3256d84f2b73d61763e20f5e4bc5b47d56e4e0d56cf4c29cd25669457b0f08e90d7255589c9666400bb310df3dba3b9290232cad18057b20f08013a3b
 SHA512 
7e8dae823937cfac2f0c60406bd3bdcb89df40313dab2a4bed327d5198f7fcc68ac8b31e44692caa09299cc71256ee0b8c17e4f49f78ada8043d424f5daf82fe
 DIST qemu-4.0.0.tar.xz 55628624 BLAKE2B 
8afd1f54aa13d2e61fd36c4f4544b7c4ffb1a7eee5c69d3aa1d40a432ca296ad8abe6cb83d7c66ac4045ca624d2a00e737f51e4e62ed46fef9766ef71f43b98b
 SHA512 
952e94194ce9e64c15388c59035cb31fb9f761d30095c2fb9441012b609c18c9976285727b93bf37b95e15675802d73f8e1c4619ebecd23606675bb503646b13

diff --git a/app-emulation/qemu/qemu-3.1.0-r4.ebuild 
b/app-emulation/qemu/qemu-3.1.0-r4.ebuild
deleted file mode 100644
index 086555e1bbe..000
--- a/app-emulation/qemu/qemu-3.1.0-r4.ebuild
+++ /dev/null
@@ -1,813 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
-PYTHON_REQ_USE="ncurses,readline"
-
-PLOCALES="bg de_DE fr_FR hu it tr zh_CN"
-
-FIRMWARE_ABI_VERSION="2.11.1-r50"
-
-inherit eutils flag-o-matic linux-info toolchain-funcs multilib python-r1 \
-   user udev fcaps readme.gentoo-r1 pax-utils l10n
-
-if [[ ${PV} = ** ]]; then
-   EGIT_REPO_URI="git://git.qemu.org/qemu.git"
-   inherit git-r3
-   SRC_URI=""
-else
-   SRC_URI="http://wiki.qemu-project.org/download/${P}.tar.xz;
-   KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86 ~x86-fbsd"
-
-   # Gentoo specific patchsets:
-   SRC_URI+=" 
https://dev.gentoo.org/~tamiko/distfiles/${P}-patches-r1.tar.xz;
-fi
-
-DESCRIPTION="QEMU + Kernel-based Virtual Machine userland tools"
-HOMEPAGE="http://www.qemu.org http://www.linux-kvm.org;
-
-LICENSE="GPL-2 LGPL-2 BSD-2"
-SLOT="0"
-IUSE="accessibility +aio alsa bzip2 capstone +caps +curl debug
-   +fdt glusterfs gnutls gtk infiniband iscsi +jpeg kernel_linux
-   kernel_FreeBSD lzo ncurses nfs nls numa opengl +pin-upstream-blobs +png
-   pulseaudio python rbd sasl +seccomp sdl selinux smartcard snappy
-   spice ssh static static-user systemtap tci test usb usbredir vde
-   +vhost-net virgl virtfs +vnc vte xattr xen xfs"
-
-RESTRICT=strip
-
-COMMON_TARGETS="aarch64 alpha arm cris hppa i386 m68k microblaze microblazeel
-   mips mips64 mips64el mipsel nios2 or1k ppc ppc64 riscv32 riscv64 s390x
-   sh4 sh4eb sparc sparc64 x86_64 xtensa xtensaeb"
-IUSE_SOFTMMU_TARGETS="${COMMON_TARGETS}
-   lm32 moxie tricore unicore32"
-IUSE_USER_TARGETS="${COMMON_TARGETS}
-   aarch64_be armeb mipsn32 mipsn32el ppc64abi32 ppc64le sparc32plus
-   tilegx"
-
-use_softmmu_targets=$(printf ' qemu_softmmu_targets_%s' 
${IUSE_SOFTMMU_TARGETS})
-use_user_targets=$(printf ' qemu_user_targets_%s' ${IUSE_USER_TARGETS})
-IUSE+=" ${use_softmmu_targets} ${use_user_targets}"
-
-# Allow no targets to be built so that people can get a tools-only build.
-# Block USE flag configurations known to not work.
-REQUIRED_USE="${PYTHON_REQUIRED_USE}
-   qemu_softmmu_targets_arm? ( fdt )
-   qemu_softmmu_targets_microblaze? ( fdt )
-   qemu_softmmu_targets_mips64el? ( fdt )
-   qemu_softmmu_targets_ppc64? ( fdt )
-   qemu_softmmu_targets_ppc? ( fdt )
-   qemu_softmmu_targets_riscv32? ( fdt )
-   qemu_softmmu_targets_riscv64? ( fdt )
-   static? ( static-user !alsa !gtk !opengl !pulseaudio !snappy )
-   virtfs? ( xattr )
-   vte? ( gtk )"
-
-# Dependencies required for qemu tools (qemu-nbd, qemu-img, qemu-io, ...)
-# and user/softmmu targets (qemu-*, qemu-system-*).
-#
-# Yep, you need both libcap and libcap-ng since virtfs only uses libcap.
-#
-# The attr lib isn't always linked in (although the USE flag is always
-# respected).  This is because qemu supports using the C library's API
-# when available rather 

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

2019-07-02 Thread Tim Harder
commit: c06fb0db5078770370d30791a61c9eabeb58f7e4
Author: Tim Harder  gentoo  org>
AuthorDate: Tue Jul  2 21:02:03 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Jul  2 21:05:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c06fb0db

media-libs/cimg: remove old

Signed-off-by: Tim Harder  gentoo.org>

 media-libs/cimg/Manifest  |  2 --
 media-libs/cimg/cimg-2.4.3.ebuild | 26 --
 media-libs/cimg/cimg-2.4.5.ebuild | 26 --
 3 files changed, 54 deletions(-)

diff --git a/media-libs/cimg/Manifest b/media-libs/cimg/Manifest
index 66ff0a3197f..af1e7f66934 100644
--- a/media-libs/cimg/Manifest
+++ b/media-libs/cimg/Manifest
@@ -1,4 +1,2 @@
-DIST cimg-2.4.3.tar.gz 11074736 BLAKE2B 
097da7f5b214470247296265950061acefec19a169139c65eb12b27ed8e1256b97f77d28deb910bb444f38d396e36c204c761437e8991421422e840fd7505a95
 SHA512 
3409fde40780d293051914ce988193063139f1f805e5b0205e829234944c76b877a2723dd7c616158bbb58238baf653a03f34d55052103286d3ee28a33136d15
-DIST cimg-2.4.5.tar.gz 11075045 BLAKE2B 
6e9b9ccb5aa826526e9f9adbb964296a5f298772b696bad400a432bfd68e4b00488591ac225393867aa2f00b708ea48c2858799522edcc2b021f3ba7fa7b
 SHA512 
0a306ba4265a0e68d358e1ca54c597e80b43e72205de161d0971cd5837ca7d48322725d6ec129381e708a1d11fb5697884a5901ac753080fd8d8c08b80b28138
 DIST cimg-2.6.5.tar.gz 11071672 BLAKE2B 
61fa37c2f78e09d6aba0eb867c3797f86ed5a685a114dae779e439c76f4cc9768fada70affd2b14139c7fe7b2e79b61e653165abc47833e3a5cf857af0eb4ca4
 SHA512 
d8c1e10f702b47f6788fedf27681fe8e7ab3994c8018f96d4964694edda6acb1ca040244d7d1436a5381ec5a12e7a2b991ede6d9ea6d961ae6c4842feb2bf141
 DIST cimg-2.6.7.tar.gz 11072149 BLAKE2B 
0695215eb57375ed216ab1b148bb09316af8f6e0191589e4a9a91b25355857a75d2f351d2e52584e626c8ff1f2aad940df4f8f0ee4c331ded62582804c3ce765
 SHA512 
9dadc0b7b1017ba19fb36232a32278c30628930b7c76a646ca343751754e10e1a1eb8a0c670ab308c437738ec28ceb324f6511ffb9c3bceabede01eb34b8a2e6

diff --git a/media-libs/cimg/cimg-2.4.3.ebuild 
b/media-libs/cimg/cimg-2.4.3.ebuild
deleted file mode 100644
index f4273ef1db4..000
--- a/media-libs/cimg/cimg-2.4.3.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="C++ template image processing toolkit"
-HOMEPAGE="https://cimg.eu/ https://github.com/dtschump/CImg;
-SRC_URI="https://github.com/dtschump/CImg/archive/v.${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="CeCILL-2 CeCILL-C"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples"
-
-S=${WORKDIR}/CImg-v.${PV}
-
-src_install() {
-   doheader CImg.h
-   dodoc README.txt
-
-   use doc && dodoc -r html
-   if use examples; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-}

diff --git a/media-libs/cimg/cimg-2.4.5.ebuild 
b/media-libs/cimg/cimg-2.4.5.ebuild
deleted file mode 100644
index a3f01bc9ba2..000
--- a/media-libs/cimg/cimg-2.4.5.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="C++ template image processing toolkit"
-HOMEPAGE="https://cimg.eu/ https://github.com/dtschump/CImg;
-SRC_URI="https://github.com/dtschump/CImg/archive/v.${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="CeCILL-2 CeCILL-C"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples"
-
-S=${WORKDIR}/CImg-v.${PV}
-
-src_install() {
-   doheader CImg.h
-   dodoc README.txt
-
-   use doc && dodoc -r html
-   if use examples; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-}



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

2019-07-02 Thread Tim Harder
commit: 941b0628f8086a1d63caa9809da845e483161c4b
Author: Tim Harder  gentoo  org>
AuthorDate: Tue Jul  2 21:04:40 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Jul  2 21:05:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=941b0628

media-gfx/gmic: remove old

Signed-off-by: Tim Harder  gentoo.org>

 media-gfx/gmic/Manifest  |   2 -
 media-gfx/gmic/gmic-2.4.3.ebuild | 170 --
 media-gfx/gmic/gmic-2.4.5.ebuild | 171 ---
 3 files changed, 343 deletions(-)

diff --git a/media-gfx/gmic/Manifest b/media-gfx/gmic/Manifest
index fc20d5e7d3c..df4a2a056fb 100644
--- a/media-gfx/gmic/Manifest
+++ b/media-gfx/gmic/Manifest
@@ -1,4 +1,2 @@
-DIST gmic_2.4.3.tar.gz 3816129 BLAKE2B 
1c9dd6c7e45809d0cf8b8a45476a4b20ad321b5f34fbc5214cb149777c6e9a6aba845cd816cc1503010e281bda0b32e1059dd34d052afe2ebc086469163967be
 SHA512 
482e70b0c82992799c5769ded1547904d16dbc9206d67279b6f524c1214258b97fa539678844a450d6f64144dc7a2715c754d6a1d85398e648bc34086fc3218f
-DIST gmic_2.4.5.tar.gz 3819428 BLAKE2B 
71d19bf6d79ca00bf95006bd96595b83ee28caadf46a9c899176dcd96c5da1b3b9fa7b2150ea2383262c1db2357838c4c716c8ab09060c6c06faa5f7c52975c8
 SHA512 
39f7c35303704c579d62377f491830f6d310be672f3015aafbd6715c5fa1185d64671f841fd5e0cb818dfc96851afc6dbdbbb99f9b5156ccaeab91e7e1b08033
 DIST gmic_2.5.3.tar.gz 5278154 BLAKE2B 
9549798eac0cf0cd869dcaeb14fca184bee3587ec8ac03f80e7f48002dfcd0afe4ad61f2c6a6f1929fb91c010aee3960d6301a0c6c6b6a2f32a7b62db9ddecb0
 SHA512 
fede101892d6867b83a8995dbc2b7f9e502401bf1ea952fbf95c459c932bb447693d6434e9562b00c9d96f109cbbb35d9ee876fa1f6ec9dfc52186276033e5a5
 DIST gmic_2.6.7.tar.gz 5810623 BLAKE2B 
407349683a7871937a37735aef81665ef5b06e5a88d5135e0d4264ce231ddba7ab088645049b1378dd73a7e6b45ada58958986b3282916aba19f7d7735c8bdaa
 SHA512 
18088e33c133ddfa9642295af331d1808e0a618df8a7d3bb7f93d9933d4b6ec2f53a96e5a0f2bca5f1a53b4c7c0628ac7906503be007860fc37907db47029567

diff --git a/media-gfx/gmic/gmic-2.4.3.ebuild b/media-gfx/gmic/gmic-2.4.3.ebuild
deleted file mode 100644
index 0b6b7df9acb..000
--- a/media-gfx/gmic/gmic-2.4.3.ebuild
+++ /dev/null
@@ -1,170 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_BUILD_TYPE=Release
-CMAKE_MIN_VERSION=3.9
-
-inherit cmake-utils bash-completion-r1
-
-if [[ ${PV} == "" ]]; then
-   EGIT_REPO_URI="https://github.com/dtschump/gmic.git;
-   inherit git-r3
-else
-   SRC_URI="https://gmic.eu/files/source/${PN}_${PV}.tar.gz;
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="GREYC's Magic Image Converter"
-HOMEPAGE="https://gmic.eu/ https://github.com/dtschump/gmic;
-
-LICENSE="CeCILL-2 GPL-3"
-SLOT="0"
-IUSE="+cli curl ffmpeg fftw gimp graphicsmagick jpeg krita opencv openexr 
openmp png qt5 static-libs tiff X zlib"
-REQUIRED_USE="
-   || ( cli gimp krita qt5 )
-   gimp? ( png zlib fftw X )
-   krita? ( png zlib fftw X )
-   qt5? ( png zlib fftw X )
-"
-
-MIN_QT_VER="5.2.0"
-QT_DEPEND="
-   >=dev-qt/qtcore-${MIN_QT_VER}:5=
-   >=dev-qt/qtgui-${MIN_QT_VER}:5=
-   >=dev-qt/qtnetwork-${MIN_QT_VER}:5=
-   >=dev-qt/qtwidgets-${MIN_QT_VER}:5=
-"
-COMMON_DEPEND="
-   curl? ( net-misc/curl )
-   fftw? ( sci-libs/fftw:3.0=[threads] )
-   gimp? (
-   >=media-gfx/gimp-2.8.0
-   ${QT_DEPEND}
-   )
-   graphicsmagick? ( media-gfx/graphicsmagick:0= )
-   jpeg? ( virtual/jpeg:0 )
-   krita? ( ${QT_DEPEND} )
-   opencv? ( >=media-libs/opencv-2.3.1a-r1:0= )
-   openexr? (
-   media-libs/ilmbase:0=
-   media-libs/openexr:0=
-   )
-   png? ( media-libs/libpng:0= )
-   qt5? ( ${QT_DEPEND} )
-   tiff? ( media-libs/tiff:0 )
-   X? (
-   x11-libs/libX11
-   x11-libs/libXext
-   )
-   zlib? ( sys-libs/zlib:0= )"
-RDEPEND="${COMMON_DEPEND}
-   ffmpeg? ( media-video/ffmpeg:0= )
-"
-DEPEND="${COMMON_DEPEND}
-   virtual/pkgconfig
-   gimp? ( dev-qt/linguist-tools )
-   krita? ( dev-qt/linguist-tools )
-   qt5? ( dev-qt/linguist-tools )
-"
-
-pkg_pretend() {
-   if use openmp ; then
-   tc-has-openmp || die "Please switch to an openmp compatible 
compiler"
-   fi
-
-   if ! test-flag-CXX -std=c++11 ; then
-   die "You need at least GCC 4.7.x or Clang >= 3.3 for 
C++11-specific compiler flags"
-   fi
-}
-
-src_prepare() {
-   local PATCHES=( "${FILESDIR}"/${P}-curl.patch )
-   cmake-utils_src_prepare
-   sed -i '/CMAKE_CXX_FLAGS/s/-g //' CMakeLists.txt || die
-
-   if use gimp || use krita || use qt5; then
-   sed -i '/CMAKE_CXX_FLAGS_RELEASE/d' gmic-qt/CMakeLists.txt || 
die
-   local S="${S}/gmic-qt"
-   PATCHES=()
-   cmake-utils_src_prepare
-   fi
-}
-
-src_configure() {
-   local mycmakeargs=(
-  

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

2019-07-02 Thread Tim Harder
commit: 23a04f77b1ab7d3d5dcc3c4f08dedfd0d044b4ee
Author: Tim Harder  gentoo  org>
AuthorDate: Tue Jul  2 21:03:44 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Jul  2 21:05:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23a04f77

media-gfx/gmic: version bump to 2.6.7

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

Signed-off-by: Tim Harder  gentoo.org>

 media-gfx/gmic/Manifest|   1 +
 media-gfx/gmic/files/gmic-2.6.7-qt-cmake.patch |  54 
 media-gfx/gmic/gmic-2.6.7.ebuild   | 171 +
 3 files changed, 226 insertions(+)

diff --git a/media-gfx/gmic/Manifest b/media-gfx/gmic/Manifest
index 7504d64e6e4..fc20d5e7d3c 100644
--- a/media-gfx/gmic/Manifest
+++ b/media-gfx/gmic/Manifest
@@ -1,3 +1,4 @@
 DIST gmic_2.4.3.tar.gz 3816129 BLAKE2B 
1c9dd6c7e45809d0cf8b8a45476a4b20ad321b5f34fbc5214cb149777c6e9a6aba845cd816cc1503010e281bda0b32e1059dd34d052afe2ebc086469163967be
 SHA512 
482e70b0c82992799c5769ded1547904d16dbc9206d67279b6f524c1214258b97fa539678844a450d6f64144dc7a2715c754d6a1d85398e648bc34086fc3218f
 DIST gmic_2.4.5.tar.gz 3819428 BLAKE2B 
71d19bf6d79ca00bf95006bd96595b83ee28caadf46a9c899176dcd96c5da1b3b9fa7b2150ea2383262c1db2357838c4c716c8ab09060c6c06faa5f7c52975c8
 SHA512 
39f7c35303704c579d62377f491830f6d310be672f3015aafbd6715c5fa1185d64671f841fd5e0cb818dfc96851afc6dbdbbb99f9b5156ccaeab91e7e1b08033
 DIST gmic_2.5.3.tar.gz 5278154 BLAKE2B 
9549798eac0cf0cd869dcaeb14fca184bee3587ec8ac03f80e7f48002dfcd0afe4ad61f2c6a6f1929fb91c010aee3960d6301a0c6c6b6a2f32a7b62db9ddecb0
 SHA512 
fede101892d6867b83a8995dbc2b7f9e502401bf1ea952fbf95c459c932bb447693d6434e9562b00c9d96f109cbbb35d9ee876fa1f6ec9dfc52186276033e5a5
+DIST gmic_2.6.7.tar.gz 5810623 BLAKE2B 
407349683a7871937a37735aef81665ef5b06e5a88d5135e0d4264ce231ddba7ab088645049b1378dd73a7e6b45ada58958986b3282916aba19f7d7735c8bdaa
 SHA512 
18088e33c133ddfa9642295af331d1808e0a618df8a7d3bb7f93d9933d4b6ec2f53a96e5a0f2bca5f1a53b4c7c0628ac7906503be007860fc37907db47029567

diff --git a/media-gfx/gmic/files/gmic-2.6.7-qt-cmake.patch 
b/media-gfx/gmic/files/gmic-2.6.7-qt-cmake.patch
new file mode 100644
index 000..e268558a95e
--- /dev/null
+++ b/media-gfx/gmic/files/gmic-2.6.7-qt-cmake.patch
@@ -0,0 +1,54 @@
+Fix linking with fftw when thread support is enabled and fix source code file
+name typo.
+
+--- gmic-qt/CMakeLists.txt
 gmic-qt/CMakeLists.txt
+@@ -13,6 +13,7 @@
+ set(CMAKE_AUTOUIC OFF)
+ set(CMAKE_AUTORCC ON)
+ set(CMAKE_INCLUDE_CURRENT_DIR ON)
++set(EXTRA_LIBRARIES)
+ 
+ set (GMIC_QT_HOST "gimp" CACHE STRING "Define for which host qmic-qt will be 
built: gimp, krita or none.")
+ if (${GMIC_QT_HOST} STREQUAL "none")
+@@ -143,8 +144,13 @@
+ #
+ find_package(FFTW3 REQUIRED)
+ add_definitions(-Dcimg_use_fftw3 )
+-add_definitions(-Dcimg_use_fftw3_singlethread )
+ include_directories(${FFTW3_INCLUDE_DIR})
++find_library(FFTW3_THREADS_LIB fftw3_threads PATHS ${FFTW3_LIBRARY_DIRS})
++if(FFTW3_THREADS_LIB STREQUAL "FFTW3_THREADS_LIB-NOTFOUND")
++add_definitions(-Dcimg_use_fftw3_singlethread)
++else()
++list(APPEND EXTRA_LIBRARIES "-lfftw3_threads")
++endif()
+ 
+ #
+ # CURL
+@@ -185,6 +191,7 @@
+ ${PNG_LIBRARIES}
+ ${FFTW3_LIBRARIES}
+ ${ZLIB_LIBRARIES}
++${EXTRA_LIBRARIES}
+ )
+ 
+ if (CURL_FOUND)
+@@ -278,7 +285,7 @@
+   src/FilterParameters/ChoiceParameter.h
+   src/FilterParameters/ColorParameter.h
+   src/FilterParameters/ConstParameter.h
+-  src/FilterParameters/CustomDoubleSpinbox.h
++  src/FilterParameters/CustomDoubleSpinBox.h
+   src/FilterParameters/FileParameter.h
+   src/FilterParameters/FilterParametersWidget.h
+   src/FilterParameters/FloatParameter.h
+@@ -350,7 +357,7 @@
+   src/FilterParameters/ChoiceParameter.cpp
+   src/FilterParameters/ColorParameter.cpp
+   src/FilterParameters/ConstParameter.cpp
+-  src/FilterParameters/CustomDoubleSpinbox.cpp
++  src/FilterParameters/CustomDoubleSpinBox.cpp
+   src/FilterParameters/FileParameter.cpp
+   src/FilterParameters/FilterParametersWidget.cpp
+   src/FilterParameters/FloatParameter.cpp

diff --git a/media-gfx/gmic/gmic-2.6.7.ebuild b/media-gfx/gmic/gmic-2.6.7.ebuild
new file mode 100644
index 000..2a1fe822e6e
--- /dev/null
+++ b/media-gfx/gmic/gmic-2.6.7.ebuild
@@ -0,0 +1,171 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_BUILD_TYPE=Release
+CMAKE_MIN_VERSION=3.9
+
+inherit cmake-utils bash-completion-r1
+
+if [[ ${PV} == "" ]]; then
+   EGIT_REPO_URI="https://github.com/dtschump/gmic.git;
+   inherit git-r3
+else
+   SRC_URI="https://gmic.eu/files/source/${PN}_${PV}.tar.gz;
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="GREYC's Magic Image Converter"
+HOMEPAGE="https://gmic.eu/ https://github.com/dtschump/gmic;
+
+LICENSE="CeCILL-2 GPL-3"
+SLOT="0"
+IUSE="+cli curl ffmpeg fftw gimp graphicsmagick jpeg krita opencv openexr 
openmp png qt5 

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

2019-07-02 Thread Tim Harder
commit: 635b7b2811dafbc31ee6e968cc95bdb277519919
Author: Tim Harder  gentoo  org>
AuthorDate: Tue Jul  2 21:01:39 2019 +
Commit: Tim Harder  gentoo  org>
CommitDate: Tue Jul  2 21:05:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=635b7b28

media-libs/cimg: version bump to 2.6.7

Signed-off-by: Tim Harder  gentoo.org>

 media-libs/cimg/Manifest  |  1 +
 media-libs/cimg/cimg-2.6.7.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/media-libs/cimg/Manifest b/media-libs/cimg/Manifest
index 241d6e3f18a..66ff0a3197f 100644
--- a/media-libs/cimg/Manifest
+++ b/media-libs/cimg/Manifest
@@ -1,3 +1,4 @@
 DIST cimg-2.4.3.tar.gz 11074736 BLAKE2B 
097da7f5b214470247296265950061acefec19a169139c65eb12b27ed8e1256b97f77d28deb910bb444f38d396e36c204c761437e8991421422e840fd7505a95
 SHA512 
3409fde40780d293051914ce988193063139f1f805e5b0205e829234944c76b877a2723dd7c616158bbb58238baf653a03f34d55052103286d3ee28a33136d15
 DIST cimg-2.4.5.tar.gz 11075045 BLAKE2B 
6e9b9ccb5aa826526e9f9adbb964296a5f298772b696bad400a432bfd68e4b00488591ac225393867aa2f00b708ea48c2858799522edcc2b021f3ba7fa7b
 SHA512 
0a306ba4265a0e68d358e1ca54c597e80b43e72205de161d0971cd5837ca7d48322725d6ec129381e708a1d11fb5697884a5901ac753080fd8d8c08b80b28138
 DIST cimg-2.6.5.tar.gz 11071672 BLAKE2B 
61fa37c2f78e09d6aba0eb867c3797f86ed5a685a114dae779e439c76f4cc9768fada70affd2b14139c7fe7b2e79b61e653165abc47833e3a5cf857af0eb4ca4
 SHA512 
d8c1e10f702b47f6788fedf27681fe8e7ab3994c8018f96d4964694edda6acb1ca040244d7d1436a5381ec5a12e7a2b991ede6d9ea6d961ae6c4842feb2bf141
+DIST cimg-2.6.7.tar.gz 11072149 BLAKE2B 
0695215eb57375ed216ab1b148bb09316af8f6e0191589e4a9a91b25355857a75d2f351d2e52584e626c8ff1f2aad940df4f8f0ee4c331ded62582804c3ce765
 SHA512 
9dadc0b7b1017ba19fb36232a32278c30628930b7c76a646ca343751754e10e1a1eb8a0c670ab308c437738ec28ceb324f6511ffb9c3bceabede01eb34b8a2e6

diff --git a/media-libs/cimg/cimg-2.6.7.ebuild 
b/media-libs/cimg/cimg-2.6.7.ebuild
new file mode 100644
index 000..a3f01bc9ba2
--- /dev/null
+++ b/media-libs/cimg/cimg-2.6.7.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="C++ template image processing toolkit"
+HOMEPAGE="https://cimg.eu/ https://github.com/dtschump/CImg;
+SRC_URI="https://github.com/dtschump/CImg/archive/v.${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="CeCILL-2 CeCILL-C"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples"
+
+S=${WORKDIR}/CImg-v.${PV}
+
+src_install() {
+   doheader CImg.h
+   dodoc README.txt
+
+   use doc && dodoc -r html
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}



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

2019-07-02 Thread Craig Andrews
commit: 221570031a37bcab9e4d27521d6749f73d0d25e5
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jul  2 20:54:11 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jul  2 20:57:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22157003

net-analyzer/netdata: add support for dbengine

Closes: https://bugs.gentoo.org/687436
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Craig Andrews  gentoo.org>

 net-analyzer/netdata/metadata.xml| 1 +
 .../netdata/{netdata-.ebuild => netdata-1.15.0-r1.ebuild}| 9 -
 net-analyzer/netdata/netdata-.ebuild | 9 -
 3 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/netdata/metadata.xml 
b/net-analyzer/netdata/metadata.xml
index 06a8ae53618..f12bf742e15 100644
--- a/net-analyzer/netdata/metadata.xml
+++ b/net-analyzer/netdata/metadata.xml
@@ -7,6 +7,7 @@
 
 
 Enable compression via zlib
+Enable the Netdata database engine
 Install sys-apps/ipmitool required for 
monitoring IPMI sensors.
 Enable the nfacct plugin
 Enable use of nodejs (which some plugins 
use)

diff --git a/net-analyzer/netdata/netdata-.ebuild 
b/net-analyzer/netdata/netdata-1.15.0-r1.ebuild
similarity index 92%
copy from net-analyzer/netdata/netdata-.ebuild
copy to net-analyzer/netdata/netdata-1.15.0-r1.ebuild
index 54d150969d3..19ed4f693a0 100644
--- a/net-analyzer/netdata/netdata-.ebuild
+++ b/net-analyzer/netdata/netdata-1.15.0-r1.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/netdata/netdata 
https://my-netdata.io/;
 
 LICENSE="GPL-3+ MIT BSD"
 SLOT="0"
-IUSE="caps +compression cpu_flags_x86_sse2 cups ipmi mysql nfacct nodejs 
postgres +python tor xen"
+IUSE="caps +compression cpu_flags_x86_sse2 cups dbengine ipmi mysql nfacct 
nodejs postgres +python tor xen"
 REQUIRED_USE="
mysql? ( python )
python? ( ${PYTHON_REQUIRED_USE} )
@@ -41,6 +41,12 @@ RDEPEND="
virtual/awk
caps? ( sys-libs/libcap )
cups? ( net-print/cups )
+   dbengine? (
+   dev-libs/libuv
+   app-arch/lz4
+   dev-libs/judy
+   dev-libs/openssl:=
+   )
compression? ( sys-libs/zlib )
ipmi? ( sys-libs/freeipmi )
nfacct? (
@@ -91,6 +97,7 @@ src_configure() {
--localstatedir="${EPREFIX}"/var \
--with-user=${NETDATA_USER} \
$(use_enable cups plugin-cups) \
+   $(use_enable dbengine) \
$(use_enable nfacct plugin-nfacct) \
$(use_enable ipmi plugin-freeipmi) \
$(use_enable xen plugin-xenstat) \

diff --git a/net-analyzer/netdata/netdata-.ebuild 
b/net-analyzer/netdata/netdata-.ebuild
index 54d150969d3..19ed4f693a0 100644
--- a/net-analyzer/netdata/netdata-.ebuild
+++ b/net-analyzer/netdata/netdata-.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/netdata/netdata 
https://my-netdata.io/;
 
 LICENSE="GPL-3+ MIT BSD"
 SLOT="0"
-IUSE="caps +compression cpu_flags_x86_sse2 cups ipmi mysql nfacct nodejs 
postgres +python tor xen"
+IUSE="caps +compression cpu_flags_x86_sse2 cups dbengine ipmi mysql nfacct 
nodejs postgres +python tor xen"
 REQUIRED_USE="
mysql? ( python )
python? ( ${PYTHON_REQUIRED_USE} )
@@ -41,6 +41,12 @@ RDEPEND="
virtual/awk
caps? ( sys-libs/libcap )
cups? ( net-print/cups )
+   dbengine? (
+   dev-libs/libuv
+   app-arch/lz4
+   dev-libs/judy
+   dev-libs/openssl:=
+   )
compression? ( sys-libs/zlib )
ipmi? ( sys-libs/freeipmi )
nfacct? (
@@ -91,6 +97,7 @@ src_configure() {
--localstatedir="${EPREFIX}"/var \
--with-user=${NETDATA_USER} \
$(use_enable cups plugin-cups) \
+   $(use_enable dbengine) \
$(use_enable nfacct plugin-nfacct) \
$(use_enable ipmi plugin-freeipmi) \
$(use_enable xen plugin-xenstat) \



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

2019-07-02 Thread Sergei Trofimovich
commit: 4f1a73044b69a4006c3f3a9d05a2eb6af9fcb12c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jul  2 19:19:21 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jul  2 20:42:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f1a7304

sys-auth/polkit: stable 0.115-r4 for sparc, bug #688908

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

 sys-auth/polkit/polkit-0.115-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/polkit/polkit-0.115-r4.ebuild 
b/sys-auth/polkit/polkit-0.115-r4.ebuild
index fb2bc2184e1..f97991802f3 100644
--- a/sys-auth/polkit/polkit-0.115-r4.ebuild
+++ b/sys-auth/polkit/polkit-0.115-r4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz;
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86"
 IUSE="consolekit elogind examples gtk +introspection jit kde nls pam selinux 
systemd test"
 
 REQUIRED_USE="^^ ( consolekit elogind systemd )"



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

2019-07-02 Thread Sergei Trofimovich
commit: 739333a769f60508078d1ba3cd15d7735a938b03
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Jul  2 19:17:57 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Jul  2 20:42:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=739333a7

dev-libs/crypto++: stable 8.2.0 for hppa, bug #689038

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

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

diff --git a/dev-libs/crypto++/crypto++-8.2.0.ebuild 
b/dev-libs/crypto++/crypto++-8.2.0.ebuild
index b93de42b285..14912c421ee 100644
--- a/dev-libs/crypto++/crypto++-8.2.0.ebuild
+++ b/dev-libs/crypto++/crypto++-8.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.cryptopp.com/cryptopp${PV//.}.zip;
 
 LICENSE="Boost-1.0"
 SLOT="0/8" # subslot is so version
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ppc64 sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ppc ppc64 sparc x86 ~x64-macos"
 IUSE="+asm static-libs"
 
 BDEPEND="app-arch/unzip"



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

2019-07-02 Thread Craig Andrews
commit: 92986880f5714bbe783c995af1f3c12ce698acc9
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Jul  2 20:33:10 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jul  2 20:38:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92986880

net-p2p/cpuminer-opt: 3.9.5.1 version bump

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

 net-p2p/cpuminer-opt/Manifest|  1 +
 net-p2p/cpuminer-opt/cpuminer-opt-3.9.5.1.ebuild | 50 
 2 files changed, 51 insertions(+)

diff --git a/net-p2p/cpuminer-opt/Manifest b/net-p2p/cpuminer-opt/Manifest
index 0fca58ec98d..c79f0b74a34 100644
--- a/net-p2p/cpuminer-opt/Manifest
+++ b/net-p2p/cpuminer-opt/Manifest
@@ -10,4 +10,5 @@ DIST cpuminer-opt-3.9.2.5.tar.gz 1781488 BLAKE2B 
cd79f8cc363918d6db62b1970086a57
 DIST cpuminer-opt-3.9.2.tar.gz 1770769 BLAKE2B 
75413f98b522e30647c9e312e1a23ee5dd3d761780dad7617b68b20d08e123ddd256f70f1494f565abe67997bb1c5fd1401ccd21e7f5492182c7ec2619bc8e00
 SHA512 
ce12c867706a3caed0104859a8f2366af85497b493f8c2a8c87a45f430abb45a29c415889c8f219450ac2f4e10bd4482f6dbe9dd125e1dde98c8a25e3fdad8c8
 DIST cpuminer-opt-3.9.3.1.tar.gz 1781503 BLAKE2B 
3f5df07d6d68343bb074367e3296e08c7e958edfcd3c2d63da83b98e8ce635a8b27d0c871061087908840b665a27556833de8d8106557f6794e9ad35d5a9d53e
 SHA512 
d8f0c298c03e4f309f28a2b555f039212d66e6a9804fa2a1f7d0a8bd3d69969c48f1ac51570b10d5bf9bc695f7a9f91e884298d85d1b6a876d5d3a8974d3b890
 DIST cpuminer-opt-3.9.4.tar.gz 1787750 BLAKE2B 
74c3304f743c7650968f90606f7f12fa26b316634f29c5157cbe774ecbe155cc950d9ab44c227909aacbabba4af98379e22a971956a1b8560ce4c096822d6a88
 SHA512 
f2dc2dbdafb7c7028521aeec5212df87274b6a5f130c116e58fc575d4cd30dcaf10b4ff59f79e782bc6466db65758770c2f4717e446641e29a3eb9ccf4770011
+DIST cpuminer-opt-3.9.5.1.tar.gz 1789716 BLAKE2B 
8c2eb876837f86d39c9c665392172654fee8a969c0463e76adf47c1ae631f268ebfacf662c5edb79db3469af2299916a54c3b3ec88a8d3bce62878a0ecb0
 SHA512 
1da67a4a063781502bc7a2062331388205c6bedec1bbbfd447727b4d3aa23591d794ba8c4b59a9671f232d102298b448b539e54f723d86525ee19ae1e4d7fe52
 DIST cpuminer-opt-3.9.5.tar.gz 1787557 BLAKE2B 
e6d5623c2752a4dc6eae669e6daba2f3a0a8542863a3268e632b6d0e4ee2cf203614cebd8e41e33d71c58262bfc90d1df0c7eab0d72db28d8df6f40795bfd887
 SHA512 
7fc2d7afa9a85a6ec9a9a87eee18f68e61f4875b579bcca3e8d4fc4541a3085ae59b566d2851b978abdf27efeeaa310db430c3efce07bb422548d0bddfda1fa4

diff --git a/net-p2p/cpuminer-opt/cpuminer-opt-3.9.5.1.ebuild 
b/net-p2p/cpuminer-opt/cpuminer-opt-3.9.5.1.ebuild
new file mode 100644
index 000..666d27ee1c0
--- /dev/null
+++ b/net-p2p/cpuminer-opt/cpuminer-opt-3.9.5.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools flag-o-matic systemd
+
+DESCRIPTION="Optimized multi algo CPU miner"
+HOMEPAGE="https://github.com/JayDDee/cpuminer-opt;
+IUSE="cpu_flags_x86_sse2 curl libressl"
+LICENSE="GPL-2"
+SLOT="0"
+REQUIRED_USE="cpu_flags_x86_sse2"
+DEPEND="
+   dev-libs/gmp:0
+   dev-libs/jansson
+   >=net-misc/curl-7.15[ssl]
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+"
+RDEPEND="${DEPEND}"
+if [[ ${PV} == "" ]] ; then
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/JayDDee/${PN}.git;
+   inherit git-r3
+else
+   KEYWORDS="~amd64"
+   SRC_URI="https://github.com/JayDDee/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+fi
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   append-ldflags -Wl,-z,noexecstack
+   econf --with-crypto --with-curl
+}
+
+src_install() {
+   default
+   systemd_dounit "${FILESDIR}"/${PN}.service
+   insinto "/etc/${PN}"
+   doins cpuminer-conf.json
+}
+
+src_test() {
+   ./cpuminer --cputest || die
+}



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

2019-07-02 Thread Craig Andrews
commit: 936f1740b8339b3698a9ef817f79b92eb4c9d99a
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Jul  1 13:29:10 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Jul  2 20:38:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=936f1740

media-plugins/kodi-pvr-vuplus: 3.26.0 version bump

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

 media-plugins/kodi-pvr-vuplus/Manifest |  1 +
 .../kodi-pvr-vuplus/kodi-pvr-vuplus-3.26.0.ebuild  | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/media-plugins/kodi-pvr-vuplus/Manifest 
b/media-plugins/kodi-pvr-vuplus/Manifest
index b220276d147..f87f7fd780d 100644
--- a/media-plugins/kodi-pvr-vuplus/Manifest
+++ b/media-plugins/kodi-pvr-vuplus/Manifest
@@ -8,3 +8,4 @@ DIST kodi-pvr-vuplus-3.22.0.tar.gz 184305 BLAKE2B 
58d865950a7f24bf44293ff156a3cb
 DIST kodi-pvr-vuplus-3.23.0.tar.gz 185373 BLAKE2B 
55b8cec3e5affa376acc5c1c7036d7a550acd00b70e80a85ec89c95f6e861fd67f6a5d4d19b9632ae3099c5353696c34874c23bd10f4614d3d60b475540e36f9
 SHA512 
c6feb79f91cfd9657e00e177de168389e3393cf201e9ecf0dffef79994894c5c115e1e9e65460978dd066ab1a583d1bfbffa1c4c3ddabad9143a31763f47ec05
 DIST kodi-pvr-vuplus-3.24.0.tar.gz 189303 BLAKE2B 
e1d1276b460d54722f80144d0e186be3956aa9a841a6e9af7854a883610ad5317a3114f21af5fbd7e3070a3f4bb81795814b4142fb03919c589ce288ba389862
 SHA512 
e3631a3ac1d207380f810f482697c48909d246ee8510463694fc157bd4af1d0a0539cd82f700e47f195ed7bef868d0e0d7392aa3f65418a69bc79f4e15f83761
 DIST kodi-pvr-vuplus-3.25.0.tar.gz 190314 BLAKE2B 
fba8e3438bc7475f0c4e4cf1afe02fc356b7cdc78c756c30cd541f71215c741fe56e436b934cc22ac0157ccf919159526f41625421995198157a1f0d8802366c
 SHA512 
b94d6f846eb04cc241ae1a954f5d4fd07edd70b3389d9068bb9dc23083e3476bc46a17fd66e7f5d7ce04e361b1d9165672d7ada515f6251af86a5f3f18fa28b1
+DIST kodi-pvr-vuplus-3.26.0.tar.gz 192488 BLAKE2B 
71909a13cc640c2509405a2ca954536b3ecf767dd607223fe0555860da270d710896fbb0e62922465dc7d22e817c39e183813c8064498e21783548aa85369744
 SHA512 
c0cb5e0fab716d20d7a6bbc81a8caaca5325938190742e15fc86fe475f93b915623cd3589b4990ebbd1caeb3924365d2872a598fd8e9dbe1822c37e3b2e288f8

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



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

2019-07-02 Thread Jeroen Roovers
commit: 7920a7dc874c3ec7637d8cce4ff61c4da87d430d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jul  2 20:23:19 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jul  2 20:23:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7920a7dc

www-client/vivaldi: Old

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

 www-client/vivaldi/Manifest  |   3 -
 www-client/vivaldi/vivaldi-2.5.1525.48_p1.ebuild | 124 ---
 2 files changed, 127 deletions(-)

diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest
index bb7507597c6..f63b181a348 100644
--- a/www-client/vivaldi/Manifest
+++ b/www-client/vivaldi/Manifest
@@ -1,6 +1,3 @@
-DIST vivaldi-2.5.1525.48_p1-amd64.deb 59499592 BLAKE2B 
09f33e250dcbcead693760484a2444376ef52b705b729da84870a42d45cab6fb4e762900462714c51b037ae5d23bbff51c1744cfb6987a97b1a7c29bf240d69b
 SHA512 
ddcbe9c3d9f26cf6679cfdb6341b0fa991e1dba46b44ca8baf9bbcc7ea739e61eb61d2eac056ca98266e607b815f45cae7969bb39f3687bbc1fa219d9ba927bb
-DIST vivaldi-2.5.1525.48_p1-armhf.deb 52885016 BLAKE2B 
870b3dda45a8fb5f5ddc3a2543e7c1efc4979f4d193a1d5228cecf4fb270b8264042f7845081c6aa19f9f8ca557574b394180194895caea4718da418b57a7266
 SHA512 
a887cc0442d81c9e56d2e3e79b4e824348d7186bb09eda9512e75a4b6568fc6cc7cfbc815f72e1e9a0ef6091c99f99e69d9c5b9f8422cf91e1e462642f1ee92a
-DIST vivaldi-2.5.1525.48_p1-i386.deb 58071364 BLAKE2B 
00a4fdfefea9f85a5a0e406a5f741310509659f73137df83c89fa4dd3fe6ea8e5cae7f6003f99179e13b2154a86ed50530413686989bdc2b62556b6dc8a79625
 SHA512 
d4567413c7ef15bb33bf11a462a62d6a45c0f952b945ff5b476f8aa8c85bf48c9ea4e3dc0f099cba02c1aa6dcf16bef2e2b224dd922f4507247dd5cb09433257
 DIST vivaldi-2.6.1566.40_p1-amd64.deb 61151748 BLAKE2B 
b87be9d93798c8b94826d83af62f0c18a9b9e31cbcd8499ac2b00b969b92953dec0c4427f4d242180982648592f984b7477be830bf8899e4d3eff704b5949cd4
 SHA512 
3a5c68b8660a1940f4a9d6a949e112c9c966d4ccad8608e9e84e6ef33c864701b930b9a51ac04e359e0b96213324cfec987c9346a0093b70df722430d338692a
 DIST vivaldi-2.6.1566.40_p1-armhf.deb 54411476 BLAKE2B 
515320db7da8cb2eeb0fe8c639921b41d0debf7d19c31e70694603aa06516d282e8ce05c75230ba706364af40892f16fd95e92e07619e51c1f33defc24926a28
 SHA512 
f60b6b6572f8b22c921a8f2fa03171a6e09301ee0a09617dd2addc307466a2e941e77b6f495221ef96b2f72026c50281a20fc074875aeaf1bba10cc8d4463e5c
 DIST vivaldi-2.6.1566.40_p1-i386.deb 60685292 BLAKE2B 
e30cf79718238e4d221749668ca3098b5a6c39b764b34edb7d3cb428d891ffcf949b26f004babb0207388241882cf35adf43dc9d65f21ea6bea380c16edd2bdf
 SHA512 
8a873436af9c0059e6995b6d0905abcd14adbe3643795358ca43812d98989bc3f7a5a0034e86b188b245a90302a078ab2c8b219484a0387fb3e57aa190bbe202

diff --git a/www-client/vivaldi/vivaldi-2.5.1525.48_p1.ebuild 
b/www-client/vivaldi/vivaldi-2.5.1525.48_p1.ebuild
deleted file mode 100644
index 479dfcff484..000
--- a/www-client/vivaldi/vivaldi-2.5.1525.48_p1.ebuild
+++ /dev/null
@@ -1,124 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CHROMIUM_LANGS="
-   am ar be bg bn ca cs da de el en-GB en-US eo es es-419 es-PE et eu fa fi
-   fil fr fy gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku lt lv mk 
ml
-   mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te th tr uk 
vi
-   zh-CN zh-TW
-"
-inherit chromium-2 multilib unpacker toolchain-funcs xdg-utils
-
-#VIVALDI_BRANCH="snapshot"
-
-VIVALDI_PN="${PN}-${VIVALDI_BRANCH:-stable}"
-VIVALDI_BIN="${PN}${VIVALDI_BRANCH/snapshot/-snapshot}"
-VIVALDI_HOME="opt/${VIVALDI_BIN}"
-DESCRIPTION="A browser for our friends"
-HOMEPAGE="https://vivaldi.com/;
-VIVALDI_BASE_URI="https://downloads.${PN}.com/${VIVALDI_BRANCH:-stable}/${VIVALDI_PN}_${PV/_p/-}_;
-SRC_URI="
-   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
-   arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb )
-   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
-"
-
-LICENSE="Vivaldi"
-SLOT="0"
-KEYWORDS="-* amd64 ~arm x86"
-RESTRICT="bindist mirror"
-
-DEPEND="
-   virtual/libiconv
-"
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/speex
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/libcap
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/pango[X]
-"
-QA_PREBUILT="*"
-S=${WORKDIR}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   iconv -c -t UTF-8 usr/share/applications/${VIVALDI_PN}.desktop > 

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

2019-07-02 Thread Jeroen Roovers
commit: 36ea1b00524f9173c63c1afebc2aa44201adaa2b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jul  2 20:22:53 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jul  2 20:23:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36ea1b00

www-client/vivaldi: Stable

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

 www-client/vivaldi/vivaldi-2.6.1566.40_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/vivaldi/vivaldi-2.6.1566.40_p1.ebuild 
b/www-client/vivaldi/vivaldi-2.6.1566.40_p1.ebuild
index 69ed6a41d08..479dfcff484 100644
--- a/www-client/vivaldi/vivaldi-2.6.1566.40_p1.ebuild
+++ b/www-client/vivaldi/vivaldi-2.6.1566.40_p1.ebuild
@@ -26,7 +26,7 @@ SRC_URI="
 
 LICENSE="Vivaldi"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~x86"
+KEYWORDS="-* amd64 ~arm x86"
 RESTRICT="bindist mirror"
 
 DEPEND="



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

2019-07-02 Thread Jeroen Roovers
commit: c1edcc2233b50fec395df65dc68929b69649f25b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jul  2 20:19:17 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jul  2 20:23:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1edcc22

www-client/vivaldi-snapshot: Version 2.7.1594.4_p1

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

 www-client/vivaldi-snapshot/Manifest   |   3 +
 .../vivaldi-snapshot-2.7.1594.4_p1.ebuild  | 115 +
 2 files changed, 118 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index edd7f935e03..a0528451ad3 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -6,3 +6,6 @@ DIST vivaldi-snapshot-2.7.1587.4_p1-amd64.deb 63278640 BLAKE2B 
fb738b12d4fe9191f
 DIST vivaldi-snapshot-2.7.1587.4_p1-arm64.deb 56672572 BLAKE2B 
48d5c024982ff244a4eab168b7afd30a28524d9abe7305c601af055a1f825141dc9800a794fa68210a744ec6a2cd00f8bd3ed3f8573e6a0d87b72cbfca803259
 SHA512 
c78a25dc54a5050c5a46b980a6c0dd5ebb1e809192714cff6779033b5d58ffc262a8de14c7fab3b4a5803f4f87870899fdfbf3e66c3b7f767b2a08b64a632c94
 DIST vivaldi-snapshot-2.7.1587.4_p1-armhf.deb 55904856 BLAKE2B 
a6a5d866f910db980f03d8a3bf85850a7e9789b99949afd326e86ddf7a391bcdc5a16cd2d2b5ec2197605e230518e05411c9e0c160ab4d50b998fc71db192496
 SHA512 
00e877154f1a8950c9888cfa007a4b5e9d34beafbf7c31f27d2f75210ac66085083094d349b8d1753724408adee092fe71ad414872546674ba5b4fb333a76e36
 DIST vivaldi-snapshot-2.7.1587.4_p1-i386.deb 61721364 BLAKE2B 
5f3ff5a4bb7ad18e1db29112c7391d324ccdcf431e65cc0ddae383740487e4d4244b3e5346a3da1c815886422b23c3b3fa7ec0afffca88bc2d415e3cee1ce1a0
 SHA512 
e720c0bf5cf796cb50fceb1524a2105c747880caad93d6b976e88f82c0a4a4aa404100e76fd7289cc1b35e70101f96e86e8e48b54788546c703a20201953c86f
+DIST vivaldi-snapshot-2.7.1594.4_p1-amd64.deb 63360196 BLAKE2B 
d11ac4318a0f1e1fe705233bf877f7ede53e0769a75ca831f5d7c638f9fee0e1384802d2b75d927d08fb5f94da1ee89e4c3db089102a53b4a945dc271bd73a0d
 SHA512 
8389367530a52078d6a7181bcfa52df0952c0fc1d405829f4cea2492f5619fe7eebda8560329ab734062e445337ae3470c577639962fb97ba77eb3758819ef20
+DIST vivaldi-snapshot-2.7.1594.4_p1-arm64.deb 56749152 BLAKE2B 
a396261e4e66c532cdf912807bc3ebf9d2674a9abfd4fd3eae6c307f7b1dbf9a5ca610d913944adeee8358130769370de746f18f63aa530b4106e8da48e2a61d
 SHA512 
395b4cf6bd373a0d2eceac1058c4abc6443d977c3d5ab1737147c9c011703d1d28bad62be4d9efcfbfe74373827ff799d2da5a45cdcc8dbdab250ba044c47218
+DIST vivaldi-snapshot-2.7.1594.4_p1-i386.deb 61820800 BLAKE2B 
33826c95c1fbd592d94f284d66b261b656643877291182553cc46258da773329888fed803ee3c3577599d4b04d884f2799be15e1cc42bbba681edc6787866598
 SHA512 
46b17e2143b811ab5c869df1af5bc6b1f78ebe495c3076a5bb58d4e0b5332abacc4b11d2678c763b555f178e48b4a36f6fdc27e4a1daab0305198eb83a3bf259

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-2.7.1594.4_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-2.7.1594.4_p1.ebuild
new file mode 100644
index 000..3777ea957e1
--- /dev/null
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-2.7.1594.4_p1.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+CHROMIUM_LANGS="
+   af am ar be bg bn ca cs da de de-CH el en-GB en-US eo es es-419 es-PE 
et eu fa fi
+   fil fr fy gd gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku lt lv 
mk ml
+   mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te th tr uk 
vi
+   zh-CN zh-TW
+"
+inherit chromium-2 multilib unpacker toolchain-funcs xdg-utils
+
+VIVALDI_HOME="opt/${PN}"
+DESCRIPTION="A browser for our friends"
+HOMEPAGE="https://vivaldi.com/;
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_;
+SRC_URI="
+   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
+   arm64? ( ${VIVALDI_BASE_URI}arm64.deb -> ${P}-arm64.deb )
+   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
+"
+
+LICENSE="Vivaldi"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm64 ~x86"
+RESTRICT="bindist mirror"
+
+DEPEND="
+   virtual/libiconv
+"
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   media-libs/speex
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/libcap
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/pango[X]
+"
+QA_PREBUILT="*"
+S=${WORKDIR}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+

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

2019-07-02 Thread Jeroen Roovers
commit: eb4c987df7aa7da63f05cbf1c96ad4d867bfbc2d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jul  2 20:19:45 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jul  2 20:23:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb4c987d

www-client/vivaldi-snapshot: Old

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

 www-client/vivaldi-snapshot/Manifest   |   4 -
 .../vivaldi-snapshot-2.6.1581.5_p1.ebuild  | 116 -
 2 files changed, 120 deletions(-)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index a0528451ad3..6fff4b37204 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -1,7 +1,3 @@
-DIST vivaldi-snapshot-2.6.1581.5_p1-amd64.deb 62554528 BLAKE2B 
e37403bceb71f3cdfe237ecf59208e482341aaeb338e7d74c5e594aabb820e525c8dcf37be407fdc0a378f054d52df549f782c96cd6ab41005bc43f5ed13de0c
 SHA512 
0df7b30495d79011d407a19fe55b061217c0923b285f98d85f9df6e6412ca3d7ce9744d4d6b4748f70c30d56ba36773b6f569948d88a389bf092d05d9c80d909
-DIST vivaldi-snapshot-2.6.1581.5_p1-arm64.deb 56449420 BLAKE2B 
8af6d15b6fa40165d9fd337aae4cc584e6a16efa8d5cf9f7e18859e0e8c29b04dc74bfc9f8db2335f3a7af57db853ee7d3b5b5e2313d3fe26e9e324a081d3a3a
 SHA512 
14140a3fee15a42f57af9cd48afd31e2f80071387808852b660017c405b1621eebf093b27b2e53c1ee5a2174f04e12949979db9923d50545742402a473e6420c
-DIST vivaldi-snapshot-2.6.1581.5_p1-armhf.deb 55619276 BLAKE2B 
6b713fb5777c0e3ceeab081e808f8d0fcd5fc1102f5bbdab92655c4ceba2fecaa8a49ca64460ca308e6fa552372148e978dcadd58880ece085b8c33c09f6
 SHA512 
7ca68f265d12ef495fb4bfc3b46746afe78e64a4956702218dda2e3ce3ff56d0d605ccd52c3b550a8ecb08e60f562ffab38386eb06ce94b5f011529d9b5f6390
-DIST vivaldi-snapshot-2.6.1581.5_p1-i386.deb 61015088 BLAKE2B 
dc5b71d64b637ce76bdaa0dcffd690468eef1df7a81bc2a156effd608b0966cf0e3270a432be26693a91f82462af3d982cdcea7104b67bfd9e1c8671a3acfa0b
 SHA512 
8f68f406d0c91865b744f43dc0342ce91098e15893c29a71cd4e1187c2ae798cd42c36f1e5d28930a63f40439d78aaa97f5c41a86f71f069aa4f07386ee0fe2b
 DIST vivaldi-snapshot-2.7.1587.4_p1-amd64.deb 63278640 BLAKE2B 
fb738b12d4fe9191fa885c7f1e97006120ec2f46ac2d6f3cb31131a4a848036f82fd07a1840872027f384b96b9506275105e46dab1dea2fcd62dd855b21d9f13
 SHA512 
c45b51c5a00f25eb8a8d53a346e437ec9a628bb18519b9beb615c00c43f2b844edfd2effc4c99555d0acac740617276e450e4690e3d619942b6e42b2ef6b2b49
 DIST vivaldi-snapshot-2.7.1587.4_p1-arm64.deb 56672572 BLAKE2B 
48d5c024982ff244a4eab168b7afd30a28524d9abe7305c601af055a1f825141dc9800a794fa68210a744ec6a2cd00f8bd3ed3f8573e6a0d87b72cbfca803259
 SHA512 
c78a25dc54a5050c5a46b980a6c0dd5ebb1e809192714cff6779033b5d58ffc262a8de14c7fab3b4a5803f4f87870899fdfbf3e66c3b7f767b2a08b64a632c94
 DIST vivaldi-snapshot-2.7.1587.4_p1-armhf.deb 55904856 BLAKE2B 
a6a5d866f910db980f03d8a3bf85850a7e9789b99949afd326e86ddf7a391bcdc5a16cd2d2b5ec2197605e230518e05411c9e0c160ab4d50b998fc71db192496
 SHA512 
00e877154f1a8950c9888cfa007a4b5e9d34beafbf7c31f27d2f75210ac66085083094d349b8d1753724408adee092fe71ad414872546674ba5b4fb333a76e36

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-2.6.1581.5_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-2.6.1581.5_p1.ebuild
deleted file mode 100644
index 76ff637ebaa..000
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-2.6.1581.5_p1.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CHROMIUM_LANGS="
-   am ar be bg bn ca cs da de el en-GB en-US eo es es-419 es-PE et eu fa fi
-   fil fr fy gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku lt lv mk 
ml
-   mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te th tr uk 
vi
-   zh-CN zh-TW
-"
-inherit chromium-2 multilib unpacker toolchain-funcs xdg-utils
-
-VIVALDI_HOME="opt/${PN}"
-DESCRIPTION="A browser for our friends"
-HOMEPAGE="https://vivaldi.com/;
-VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_;
-SRC_URI="
-   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
-   arm64? ( ${VIVALDI_BASE_URI}arm64.deb -> ${P}-arm64.deb )
-   arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb )
-   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
-"
-
-LICENSE="Vivaldi"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86"
-RESTRICT="bindist mirror"
-
-DEPEND="
-   virtual/libiconv
-"
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/speex
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/libcap
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   

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

2019-07-02 Thread Jeroen Roovers
commit: d336096d22e5a4cf8835ad67c4b0a9dd208368ab
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Jul  2 19:43:04 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Jul  2 19:43:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d336096d

dev-libs/libuv: Version 1.30.1

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

 dev-libs/libuv/Manifest|  1 +
 dev-libs/libuv/libuv-1.30.1.ebuild | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/dev-libs/libuv/Manifest b/dev-libs/libuv/Manifest
index b776fba8df3..e594852d850 100644
--- a/dev-libs/libuv/Manifest
+++ b/dev-libs/libuv/Manifest
@@ -1,3 +1,4 @@
 DIST libuv-1.28.0.tar.gz 1218769 BLAKE2B 
444881479688144b36559a258f998e99e663d856c349086f74a21c3946f8d48d0fd9ed0a7c64c76c18b47edd3df037936fd87c4d47e9ae7c5639bb6e289e026d
 SHA512 
5f49b980b69011897bbb7a00d779fe0e71528d106626bc13fc130cd09afb7c8188007f354cd6320b1eba67f77c938ae3e83f3bd4a3ef5b9ea65a3adf51f66a53
 DIST libuv-1.29.1.tar.gz 1224127 BLAKE2B 
f116b0e0df9c2b65bafb8ebe0259ac1e1702232e751e015dbffa9be403f39727d255a7abc560b219279caff1bfab9528f38e32dbd2cf42dc0274dbaa57727861
 SHA512 
7e1ed1bc500bfaab44858b3ff4685ec3d2abce412718ad144d642f7526f6dbcba643ea9a623bb129d545599570be64ed9a498d85485c1716c4c365bb7ab61898
 DIST libuv-1.30.0.tar.gz 1228356 BLAKE2B 
1e70ff162f5b6200e1a88c069360cbbc246d8bd5428c918ff80fadd139b3416301116c1015953ff7be583523a5c977b1da003958e6dd66cf2f43ef5adfc798c3
 SHA512 
3ba158cea5027fe7c30314da08a620a718cb30ca38997e46ad00912eefac9d2d94f9dd256c204771686a546d7445da2db1be2a0abed7ba14f122332767ee5ee8
+DIST libuv-1.30.1.tar.gz 1228593 BLAKE2B 
db45d283b7aec00ee5b617a6d3578112aeae6f006da5b09c9d0eb07ce9ceee59d6acc0ae9e476602f664c67d24685c4e1ac0e1524f38475da1f00e89c8376bd8
 SHA512 
bf6d99e4807da3e90c1852b901953fb5ddb9354942a433d8ddfef9a0766abfe3783216936c546ea1b9f2872d0d031dd184519bb5c7f58f6baeae4446f0f5e3fd

diff --git a/dev-libs/libuv/libuv-1.30.1.ebuild 
b/dev-libs/libuv/libuv-1.30.1.ebuild
new file mode 100644
index 000..82a9f17f924
--- /dev/null
+++ b/dev-libs/libuv/libuv-1.30.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools multilib-minimal
+
+DESCRIPTION="Cross-platform asychronous I/O"
+HOMEPAGE="https://github.com/libuv/libuv;
+SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD BSD-2 ISC MIT"
+SLOT="0/1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="static-libs"
+RESTRICT="test"
+
+DEPEND="sys-devel/libtool
+   virtual/pkgconfig[${MULTILIB_USEDEP}]"
+
+src_prepare() {
+   default
+
+   echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \
+   > m4/libuv-extra-automake-flags.m4 || die
+
+   # upstream fails to ship a configure script
+   eautoreconf
+}
+
+multilib_src_configure() {
+   local myeconfargs=(
+   cc_cv_cflags__g=no
+   $(use_enable static-libs static)
+   )
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_test() {
+   mkdir "${BUILD_DIR}"/test || die
+   cp -pPR "${S}"/test/fixtures "${BUILD_DIR}"/test/fixtures || die
+   default
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   find "${D}" -name '*.la' -delete || die
+}



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

2019-07-02 Thread Mike Gilbert
commit: 6d2f38aa8cc9a73526c84ca0d1ab47bcdd3515c5
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Jul  2 18:09:29 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Jul  2 18:09:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d2f38aa

sys-apps/systemd: set support-url

Package-Manager: Portage-2.3.67_p17_p597801, Repoman-2.3.16_p1_p597801
Signed-off-by: Mike Gilbert  gentoo.org>

 sys-apps/systemd/systemd-241-r2.ebuild | 1 +
 sys-apps/systemd/systemd-242-r3.ebuild | 1 +
 sys-apps/systemd/systemd-.ebuild   | 1 +
 3 files changed, 3 insertions(+)

diff --git a/sys-apps/systemd/systemd-241-r2.ebuild 
b/sys-apps/systemd/systemd-241-r2.ebuild
index f1d8b6296e6..36ac11f3ccd 100644
--- a/sys-apps/systemd/systemd-241-r2.ebuild
+++ b/sys-apps/systemd/systemd-241-r2.ebuild
@@ -217,6 +217,7 @@ meson_multilib_native_use() {
 multilib_src_configure() {
local myconf=(
--localstatedir="${EPREFIX}/var"
+   -Dsupport-url="https://gentoo.org/support/;
-Dpamlibdir="$(getpam_mod_dir)"
# avoid bash-completion dep
-Dbashcompletiondir="$(get_bashcompdir)"

diff --git a/sys-apps/systemd/systemd-242-r3.ebuild 
b/sys-apps/systemd/systemd-242-r3.ebuild
index 4af6fc44b6e..a5bcd952cf4 100644
--- a/sys-apps/systemd/systemd-242-r3.ebuild
+++ b/sys-apps/systemd/systemd-242-r3.ebuild
@@ -220,6 +220,7 @@ meson_multilib_native_use() {
 multilib_src_configure() {
local myconf=(
--localstatedir="${EPREFIX}/var"
+   -Dsupport-url="https://gentoo.org/support/;
-Dpamlibdir="$(getpam_mod_dir)"
# avoid bash-completion dep
-Dbashcompletiondir="$(get_bashcompdir)"

diff --git a/sys-apps/systemd/systemd-.ebuild 
b/sys-apps/systemd/systemd-.ebuild
index 201667ade31..a3857fb1866 100644
--- a/sys-apps/systemd/systemd-.ebuild
+++ b/sys-apps/systemd/systemd-.ebuild
@@ -216,6 +216,7 @@ meson_multilib_native_use() {
 multilib_src_configure() {
local myconf=(
--localstatedir="${EPREFIX}/var"
+   -Dsupport-url="https://gentoo.org/support/;
-Dpamlibdir="$(getpam_mod_dir)"
# avoid bash-completion dep
-Dbashcompletiondir="$(get_bashcompdir)"



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

2019-07-02 Thread Anthony G. Basile
commit: 62ccbfb039074dd1320889d30d5792231cbcf78e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jul  2 17:40:52 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jul  2 17:40:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62ccbfb0

sys-apps/agedu: version bump to 20190630

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 sys-apps/agedu/Manifest  |  1 +
 sys-apps/agedu/agedu-20190630.ebuild | 37 
 2 files changed, 38 insertions(+)

diff --git a/sys-apps/agedu/Manifest b/sys-apps/agedu/Manifest
index 2349d99cded..313e68ea7c4 100644
--- a/sys-apps/agedu/Manifest
+++ b/sys-apps/agedu/Manifest
@@ -1,2 +1,3 @@
 DIST agedu-20180329.af641e6.tar.gz 178860 BLAKE2B 
a3b17bb708edb530ad56644314969b069577b6663cb3f6ccdc72345ac666c18f80b1eae14c5146be46c9f9692d820104111ccca586e3d5a564bb34a4938aff6a
 SHA512 
66fcaf1f4ee6a66fa68cce88f5a5edbfbc919978513370821de4e01f0fdb499beb7642333b459adb705934dcba2f4a14a8c28edc1045a8fd1b42a4a317061707
 DIST agedu-20180522.5b12791.tar.gz 178887 BLAKE2B 
f9c669d9b5e24bc40f59274626939713632bd16a4a3a6804665f35844603e88524a800da1dea6b311957284348014a87e9b513e934f178dbd07abea42b73095b
 SHA512 
89774e3cd0cce8a1a9c8d6415076a7b8b8109642bbb58a126707a651ab3da348886a4cb15fa975502a6bf4fdddb78aff16e5a7059c7ede89017e0c7a3cbf9618
+DIST agedu-20190630.66cb14d.tar.gz 180129 BLAKE2B 
e37e11afdf6d4e7b4169b65d547ed0fb672015118668d108081fd45728bd91cabb9774a586cdb2a44121bb7a8457cc59e2fbbc649d8585b1bb3b25207e48a3c2
 SHA512 
9a18f62eba86b71d54eee540ff194bb6d4292fca08ca2fc6f31e631d97e2cc7e9c63d1c796b05b0ebc529bdfe9ba9d0b34f1fd8b84c016d0ccfd9934394a7821

diff --git a/sys-apps/agedu/agedu-20190630.ebuild 
b/sys-apps/agedu/agedu-20190630.ebuild
new file mode 100644
index 000..2b4da578046
--- /dev/null
+++ b/sys-apps/agedu/agedu-20190630.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools eutils
+
+# agedu-20151213.59b0ed3.ebuild is not a legitimate name
+# so we'll drop versionator and just set MY_P manually.
+MY_P="${PN}"-20190630.66cb14d
+
+DESCRIPTION="A utility for tracking down wasted disk space"
+HOMEPAGE="https://www.chiark.greenend.org.uk/~sgtatham/agedu/;
+SRC_URI="https://www.chiark.greenend.org.uk/~sgtatham/agedu/${MY_P}.tar.gz -> 
${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc ipv6"
+
+DEPEND="doc? ( app-doc/halibut )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-r9671-fix-automagic.patch"
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf --enable-ipv4 \
+   $(use_enable doc halibut) \
+   $(use_enable ipv6)
+}



[gentoo-commits] proj/musl:master commit in: media-libs/mesa/files/, media-libs/mesa/

2019-07-02 Thread Jory Pratt
commit: 60e4a8942f1e6ab43491beab75db633bb53bc857
Author: Jory Pratt  gentoo  org>
AuthorDate: Tue Jul  2 17:27:36 2019 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Tue Jul  2 17:27:36 2019 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=60e4a894

media-libs/mesa: Fix stack overflow issues with musl, upstream patch

Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Jory Pratt  gentoo.org>

 .../files/mesa-19.1.0-cache_stack_overflow.patch   | 56 ++
 .../{mesa-19.1.1.ebuild => mesa-19.1.1-r1.ebuild}  |  1 +
 2 files changed, 57 insertions(+)

diff --git a/media-libs/mesa/files/mesa-19.1.0-cache_stack_overflow.patch 
b/media-libs/mesa/files/mesa-19.1.0-cache_stack_overflow.patch
new file mode 100644
index 000..3d6a8df
--- /dev/null
+++ b/media-libs/mesa/files/mesa-19.1.0-cache_stack_overflow.patch
@@ -0,0 +1,56 @@
+From 594d2ec43022871f3b9ad2737e9d7bb97991b2bb Mon Sep 17 00:00:00 2001
+From: Jory Pratt 
+Date: Mon, 17 Jun 2019 09:57:46 -0500
+Subject: [PATCH] The disk cache code tries to allocate a 256 Kbyte buffer on
+ the stack. Since musl only gives 80 Kbyte of stack space per thread, this
+ causes a trap.
+
+Signed-off-by: Jory Pratt 
+---
+ src/util/disk_cache.c | 9 -
+ 1 file changed, 8 insertions(+), 1 deletion(-)
+
+diff --git a/src/util/disk_cache.c b/src/util/disk_cache.c
+index 9977c38..c23abdb 100644
+--- a/src/util/disk_cache.c
 b/src/util/disk_cache.c
+@@ -732,7 +732,7 @@ static size_t
+ deflate_and_write_to_disk(const void *in_data, size_t in_data_size, int dest,
+   const char *filename)
+ {
+-   unsigned char out[BUFSIZE];
++   unsigned char *out;
+ 
+/* allocate deflate state */
+z_stream strm;
+@@ -749,6 +749,11 @@ deflate_and_write_to_disk(const void *in_data, size_t 
in_data_size, int dest,
+/* compress until end of in_data */
+size_t compressed_size = 0;
+int flush;
++
++   out = calloc(1, BUFSIZE);
++   if (out == NULL)
++  return 0;
++
+do {
+   int remaining = in_data_size - BUFSIZE;
+   flush = remaining > 0 ? Z_NO_FLUSH : Z_FINISH;
+@@ -770,6 +775,7 @@ deflate_and_write_to_disk(const void *in_data, size_t 
in_data_size, int dest,
+  ssize_t written = write_all(dest, out, have);
+  if (written == -1) {
+ (void)deflateEnd();
++free(out);
+ return 0;
+  }
+   } while (strm.avail_out == 0);
+@@ -784,6 +790,7 @@ deflate_and_write_to_disk(const void *in_data, size_t 
in_data_size, int dest,
+ 
+/* clean up and return */
+(void)deflateEnd();
++   free(out);
+return compressed_size;
+ }
+ 
+-- 
+2.22.0
+

diff --git a/media-libs/mesa/mesa-19.1.1.ebuild 
b/media-libs/mesa/mesa-19.1.1-r1.ebuild
similarity index 99%
rename from media-libs/mesa/mesa-19.1.1.ebuild
rename to media-libs/mesa/mesa-19.1.1-r1.ebuild
index 759f4d0..a7bff8c 100644
--- a/media-libs/mesa/mesa-19.1.1.ebuild
+++ b/media-libs/mesa/mesa-19.1.1-r1.ebuild
@@ -244,6 +244,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-18-musl-invocation_name.patch
"${FILESDIR}"/${PN}-18-musl-pthread.patch
"${FILESDIR}"/${PN}-18.2.4-add-disable-tls-support.patch
+   "${FILESDIR}"/${PN}-19.1.0-cache_stack_overflow.patch
 )
 
 llvm_check_deps() {



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

2019-07-02 Thread Alexis Ballier
commit: c49669e635143d33086ffb14e456f0327c174a4f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Jul  2 17:12:45 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Jul  2 17:13:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c49669e6

media-libs/x265: bump to 3.1

Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Alexis Ballier  gentoo.org>

 media-libs/x265/Manifest  | 1 +
 media-libs/x265/{x265-.ebuild => x265-3.1.ebuild} | 2 +-
 media-libs/x265/x265-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/media-libs/x265/Manifest b/media-libs/x265/Manifest
index 7bdfb7745e7..2d278838d13 100644
--- a/media-libs/x265/Manifest
+++ b/media-libs/x265/Manifest
@@ -1,3 +1,4 @@
 DIST x265_2.8.tar.gz 1379551 BLAKE2B 
c124864a08492739cdde89e44d72c84ad94a0b236d2c59d995e53a26d1a5fb9ec1557a03640a3065a727be69bfb0c0633b50351dc875c9706a1550f488c8ee24
 SHA512 
c2a8eaec64aa022badcbcd2a96304a9abd9d08489300b6a9c4c9d76066f3d9848e6948238c84ae16ea91bff0b2fac528a67ee29950d94dcd0ea7c0e9e7baa714
 DIST x265_2.9.tar.gz 1385848 BLAKE2B 
ff14eba55cea0646ad0ffc12f9032c9033d23c9d805939fc3a049911ebae459eee097349f074dcd224bef97d6140dbc37ee9bd3db54c5473b158e135784d2179
 SHA512 
270818c7fd84947fde371e32bef225c1880cfb0bcd95378d95b51f50577a134d7cd585fcdfa43b103a24d76c5ad826b09509a07eb9e208e8f2b56f2f77365cf3
 DIST x265_3.0.tar.gz 1398519 BLAKE2B 
e3ac28b01e89ce8a428f294c759644a8177e1b79941aba5e1b53033c236e3445f9afeea96f8adf7e5cdcfff8c790ca9fcadcc8b2de6c31ba3fe9ba87321a8ca8
 SHA512 
bb7665194ddd4bccbb91c16337463ad4ef32111a1e7779e4cc16964df0992aa99e578cb74fef0edbf41119105e4085574247f60541b0558cc36730ea12d2c6ba
+DIST x265_3.1.tar.gz 1419649 BLAKE2B 
b9151f136fdc6c0512f481af6c8d4d575ce4c75ef8891b42ca24ddfd1f4802bfe8cd47bb07dfc1834243560a8d36ddd5ca4d79d7b9f140fbd411b5b80ea6b8d4
 SHA512 
81905b6286a61fada7cb1632d7f8461295a28e8d53ccd53d3c26c60c7d8091df47a1b694de28caa721f632d66940f5ceeb44d3405dc3b079edd17d21c30e7a7d

diff --git a/media-libs/x265/x265-.ebuild b/media-libs/x265/x265-3.1.ebuild
similarity index 99%
copy from media-libs/x265/x265-.ebuild
copy to media-libs/x265/x265-3.1.ebuild
index 32a290b75dd..599c1341251 100644
--- a/media-libs/x265/x265-.ebuild
+++ b/media-libs/x265/x265-3.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="http://x265.org/;
 
 LICENSE="GPL-2"
 # subslot = libx265 soname
-SLOT="0/173"
+SLOT="0/176"
 IUSE="+10bit +12bit cpu_flags_arm_neon numa pic power8 test"
 
 ASM_DEPEND=">=dev-lang/yasm-1.2.0"

diff --git a/media-libs/x265/x265-.ebuild b/media-libs/x265/x265-.ebuild
index 32a290b75dd..599c1341251 100644
--- a/media-libs/x265/x265-.ebuild
+++ b/media-libs/x265/x265-.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="http://x265.org/;
 
 LICENSE="GPL-2"
 # subslot = libx265 soname
-SLOT="0/173"
+SLOT="0/176"
 IUSE="+10bit +12bit cpu_flags_arm_neon numa pic power8 test"
 
 ASM_DEPEND=">=dev-lang/yasm-1.2.0"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/crypto++/, dev-libs/crypto++/files/

2019-07-02 Thread Alon Bar-Lev
commit: d116b2a7d690b9a9717b7b97b8c67eda503756e3
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Tue Jul  2 16:48:35 2019 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Tue Jul  2 16:49:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d116b2a7

dev-libs/crypto++: add explicit cpu_flags_x86 flag

Closes: https://bugs.gentoo.org/show_bug.cgi?id=689162
Signed-off-by: Alon Bar-Lev  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-libs/crypto++/crypto++-8.2.0-r1.ebuild | 60 ++
 dev-libs/crypto++/files/crypto++-8.2.0-build.patch | 11 
 dev-libs/crypto++/metadata.xml |  1 +
 3 files changed, 72 insertions(+)

diff --git a/dev-libs/crypto++/crypto++-8.2.0-r1.ebuild 
b/dev-libs/crypto++/crypto++-8.2.0-r1.ebuild
new file mode 100644
index 000..41b85ded021
--- /dev/null
+++ b/dev-libs/crypto++/crypto++-8.2.0-r1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="C++ class library of cryptographic schemes"
+HOMEPAGE="https://cryptopp.com;
+SRC_URI="https://www.cryptopp.com/cryptopp${PV//.}.zip;
+
+LICENSE="Boost-1.0"
+SLOT="0/8" # subslot is so version
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+IUSE="+asm cpu_flags_x86_aes cpu_flags_x86_avx cpu_flags_x86_avx2 
cpu_flags_x86_pclmul cpu_flags_x86_sha cpu_flags_x86_sse2 cpu_flags_x86_sse4_2 
cpu_flags_x86_ssse3 static-libs"
+
+BDEPEND="app-arch/unzip"
+
+S="${WORKDIR}"
+
+PATCHES=(
+   "${FILESDIR}/${P}-build.patch"
+)
+
+config_add() {
+   sed -i -e "/Important Settings/a#define $1 1" config.h || die
+}
+
+pkg_setup() {
+   export CXX="$(tc-getCXX)"
+   export LIBDIR="${EPREFIX}/usr/$(get_libdir)"
+   export PREFIX="${EPREFIX}/usr"
+}
+
+src_prepare() {
+   default
+
+   use asm || config_add CRYPTOPP_DISABLE_ASM
+   use cpu_flags_x86_aes || config_add CRYPTOPP_DISABLE_AESNI
+   use cpu_flags_x86_avx || config_add CRYPTOPP_DISABLE_AVX
+   use cpu_flags_x86_avx2 || config_add CRYPTOPP_DISABLE_AVX2
+   use cpu_flags_x86_pclmul || config_add CRYPTOPP_DISABLE_CLMUL
+   use cpu_flags_x86_sha || config_add CRYPTOPP_DISABLE_SHANI
+   use cpu_flags_x86_sse2 || config_add CRYPTOPP_DISABLE_SSE2
+   use cpu_flags_x86_sse4_2 || config_add CRYPTOPP_DISABLE_SSE4
+   use cpu_flags_x86_ssse3 || config_add CRYPTOPP_DISABLE_SSSE3
+
+   # ASM isn't Darwin/Mach-O ready, #479554, buildsys doesn't grok CPPFLAGS
+   [[ ${CHOST} == *-darwin* ]] && config_add CRYPTOPP_DISABLE_ASM
+}
+
+src_compile() {
+   emake -f GNUmakefile all shared libcryptopp.pc
+}
+
+src_install() {
+   default
+
+   use static-libs || rm -f "${ED}${EPREFIX}"/usr/$(get_libdir)/*.a
+}

diff --git a/dev-libs/crypto++/files/crypto++-8.2.0-build.patch 
b/dev-libs/crypto++/files/crypto++-8.2.0-build.patch
new file mode 100644
index 000..903c6817e86
--- /dev/null
+++ b/dev-libs/crypto++/files/crypto++-8.2.0-build.patch
@@ -0,0 +1,11 @@
+--- a/config.h 2019-07-02 19:25:10.448720035 +0300
 a/config.h 2019-07-02 19:25:25.785455586 +0300
+@@ -514,7 +514,7 @@ NAMESPACE_END
+ #endif
+ 
+ // 32-bit SunCC does not enable SSE2 by default.
+-#if !defined(CRYPTOPP_DISABLE_ASM) && (defined(_MSC_VER) || 
CRYPTOPP_GCC_VERSION >= 30300 || defined(__SSE2__) || (__SUNPRO_CC >= 0x5100))
++#if !defined(CRYPTOPP_DISABLE_ASM) && !defined(CRYPTOPP_DISABLE_SSE2) && 
(defined(_MSC_VER) || CRYPTOPP_GCC_VERSION >= 30300 || defined(__SSE2__) || 
(__SUNPRO_CC >= 0x5100))
+   #define CRYPTOPP_SSE2_INTRIN_AVAILABLE 1
+ #endif
+ 

diff --git a/dev-libs/crypto++/metadata.xml b/dev-libs/crypto++/metadata.xml
index 3227b3be7c7..4ceb05b8abe 100644
--- a/dev-libs/crypto++/metadata.xml
+++ b/dev-libs/crypto++/metadata.xml
@@ -11,6 +11,7 @@


Support assembly hand optimized crypto 
functions (i.e. faster run time)
+   Enable support for Intel's SHA 
instruction set (SHA-NI)


weidai11/cryptopp



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

2019-07-02 Thread Matthew Thode
commit: d65fd01f07ac551f6442ddef0aae918cbcdcd5a6
Author: Matthew Thode  gentoo  org>
AuthorDate: Tue Jul  2 15:39:01 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Tue Jul  2 15:44:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d65fd01f

sys-block/tgt: 1.0.79 bump

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

 sys-block/tgt/Manifest  |  1 +
 sys-block/tgt/tgt-1.0.79.ebuild | 62 +
 2 files changed, 63 insertions(+)

diff --git a/sys-block/tgt/Manifest b/sys-block/tgt/Manifest
index 3081a247864..a2a579dc928 100644
--- a/sys-block/tgt/Manifest
+++ b/sys-block/tgt/Manifest
@@ -1,2 +1,3 @@
 DIST tgt-1.0.77.tar.gz 297550 BLAKE2B 
fdf5728b8b2d796a0b7d0845948d51161b1d2fa148c05e0c3940426a524246b3303b2e9aa6e748df54090ea3682a449edcf65c523ebd1e6d43b142e9339a605c
 SHA512 
ad8d5519a6c1a46991d5b8c2f6d2990e2d064b81e82fb4700728153accf6aff05dab79c9d91ee55a9a6c344e7bd7451de4f26840162e08467a81a11d2d841bdd
 DIST tgt-1.0.78.tar.gz 297886 BLAKE2B 
c9edf8e5d0fe6a9788ff6bea4097f6cc0a8a905ffdc1943dcab538843445ede9142e1684121dad7f80677207607e20695bdad04fef622364c23df7cbeab1339a
 SHA512 
dedafd490b6a042041fb9c8ed751747ec85f3bddab849fee301e0cf43b18aa92f5609657136700b867667fbff9ace62f4733c535cd425d8c71b072a7d7029430
+DIST tgt-1.0.79.tar.gz 297898 BLAKE2B 
d0f18dac863d6983a00eb9513bcbe17b5cbed76fad998af74b65311c1ace6f281bfb1bf639713e10124a520ad3916ef79ca0a81cef97b5ef678c25cfa9a71eaa
 SHA512 
d71b0a08bd1cdc717e22c4dd0a229e84bd19e02e01037231ee80d9ab24848bc7274050e1ffe7d9a3d50149c892ed1e6ea382e54dacc341650f4534629116be07

diff --git a/sys-block/tgt/tgt-1.0.79.ebuild b/sys-block/tgt/tgt-1.0.79.ebuild
new file mode 100644
index 000..e6f4ccd368a
--- /dev/null
+++ b/sys-block/tgt/tgt-1.0.79.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit flag-o-matic toolchain-funcs
+
+MY_TREE="b43dbc6"
+
+DESCRIPTION="Linux SCSI target framework (tgt)"
+HOMEPAGE="http://stgt.sourceforge.net;
+SRC_URI="https://github.com/fujita/tgt/tarball/v${PV} -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="fcoe fcp ibmvio infiniband rbd"
+
+CDEPEND="dev-perl/Config-General
+   dev-libs/libxslt
+   rbd? ( sys-cluster/ceph )
+   infiniband? (
+   sys-fabric/libibverbs:=
+   sys-fabric/librdmacm:=
+   )"
+DEPEND="${CDEPEND}
+   app-text/docbook-xsl-stylesheets"
+RDEPEND="${DEPEND}
+   dev-libs/libaio
+   sys-apps/sg3_utils"
+
+S=${WORKDIR}/fujita-tgt-${MY_TREE}
+
+pkg_setup() {
+   tc-export CC
+}
+
+src_prepare() {
+   sed -i -e 's:\($(CC)\) $^:\1 $(LDFLAGS) $^:' usr/Makefile || die
+   # make sure xml docs are generated before trying to install them
+   sed -i -e "s@install: @& all @g" doc/Makefile || die
+   eapply_user
+}
+
+src_compile() {
+   local myconf
+   use ibmvio && myconf="${myconf} IBMVIO=1"
+   use infiniband && myconf="${myconf} ISCSI_RDMA=1"
+   use fcp && myconf="${myconf} FCP=1"
+   use fcoe && myconf="${myconf} FCOE=1"
+   use rbd && myconf="${myconf} CEPH_RBD=1"
+
+   emake -C usr/ KERNELSRC="${KERNEL_DIR}" ISCSI=1 ${myconf}
+   emake -C doc
+}
+
+src_install() {
+   emake  install-programs install-scripts install-doc DESTDIR="${D}" 
docdir=/usr/share/doc/${PF}
+   newinitd "${FILESDIR}"/tgtd.initd tgtd
+   newconfd "${FILESDIR}"/tgtd.confd tgtd
+   dodir /etc/tgt
+   keepdir /etc/tgt
+}



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

2019-07-02 Thread Matthew Thode
commit: c0ecfa0f63e12d294d367a8d209f5252952a943d
Author: Matthew Thode  gentoo  org>
AuthorDate: Tue Jul  2 15:43:24 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Tue Jul  2 15:44:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0ecfa0f

app-admin/puppet-agent: 6.6.0 bump with 6.5.0 cleanup

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

 app-admin/puppet-agent/Manifest   | 4 ++--
 .../{puppet-agent-6.5.0.ebuild => puppet-agent-6.6.0.ebuild}  | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/puppet-agent/Manifest b/app-admin/puppet-agent/Manifest
index 0cd6ad3393e..d5c53966297 100644
--- a/app-admin/puppet-agent/Manifest
+++ b/app-admin/puppet-agent/Manifest
@@ -2,5 +2,5 @@ DIST puppet-agent_5.5.14-1stretch_amd64.deb 17369338 BLAKE2B 
bc0544d49f704b07fe0
 DIST puppet-agent_5.5.14-1stretch_i386.deb 18294894 BLAKE2B 
928ea0c7113dc6789a37b83f4499485d17f09cf7ac1ace5c3aad87f0a93e4143cd4763f61e42d35a7561d5438d7b5d70d6181ab7233f72eaccb67cc4d5388d18
 SHA512 
8ae02257cf729ce41e6437d9ee2f221884b0e49dda7b3fc04ef200487c937f258075f563817bb064a19c30ec19b790f4d9d03e240d8a363f2942cd613c579c1b
 DIST puppet-agent_6.4.2-1stretch_amd64.deb 18776024 BLAKE2B 
d8fd52357abb9649d74c9b7e54eb0f599cc2b6b1cbe8a4bdd3bd21c69904379dcda2fdea4e642d3f86bef846d1bdfb14eb8c3daed50958ad3add46bde96fe5d2
 SHA512 
b1bdbcb1cb87bbf4391073b0596d759e1386bd5b93046d25be112f1ddad6a0d4da162116dc9f85908de67bfd3d956a1c418faf39a85c3ed0d02f9891d4d9906c
 DIST puppet-agent_6.4.2-1stretch_i386.deb 19250972 BLAKE2B 
8424047586f7747daf24901f7ba134bfcd1fc4db094fd458f4298251880b0446221575cc463c511a32a6f7cf4c635c95b6132631640b5091e48b1e7cec67b844
 SHA512 
0041b1e3ff1401b21f7d9ab3b3aee66d76e30acd4748571ff3ff595d7006008e0d9d3f4c28db85cccece0cf08595cf4a3342353f5b18ea3e02ae02a094e42e41
-DIST puppet-agent_6.5.0-1stretch_amd64.deb 18847552 BLAKE2B 
7613daab71dfb75c96affc63d562417e085608fdcd92aa373c842d04e0cfee720b970f71016bc3d1b68aa1fa8cc691482ccddaf58b4b296b8a24180ecaa1e4bf
 SHA512 
0d73e599f66d95e41125680dbf3a86b20a0dda54d8a42e3e0522bf12635bdad1ceaa038fdadb58aafa699108dd46695a9c78a40ec3d9b45b7ad8e894bcd4b3be
-DIST puppet-agent_6.5.0-1stretch_i386.deb 19144924 BLAKE2B 
f6df20c6961d82f81cec8bec849da3e4a8353e1e148558251682a6f94af779ae17156fb546b4b1f61a4b21809809e651d24544b31d98332175345e76716a5c77
 SHA512 
ddd553ab83fec1c8e890030fcd7740924ed3f0479a859bd85f552d3976461400e46f60e4328f4ef3a34dd7a21825368da0650d818c363e0d8438fbbc03185778
+DIST puppet-agent_6.6.0-1stretch_amd64.deb 19177382 BLAKE2B 
c8034e4a943394da7fd97756b3dfb59897f3d787a8f49743a4c42ed47db4411f6d0e125cf6984728a108e5070cc8e42ca0a203d2afdcce99e08ae38a6ebb9293
 SHA512 
f0d129b357feb6e5d05c080437910e119bbce0e97e36927c2f97d3d7fb8f54a0eb1503a74ffec3cef7fd29785fe97ffd53f04a4be6a35b558ee278af8871289b
+DIST puppet-agent_6.6.0-1stretch_i386.deb 19443284 BLAKE2B 
c017abc3166b3cb04a98c511b5ab05dd7076906a38edd8ee919848c130ae5b1cb6c7542b6c6c3da267fa801e152ad963c84293083c709dd769185f943a4bebcb
 SHA512 
adadc3201dae261f2000282b67b8c4735eeb588c4c6c5dcbcde2e655772bebb1c343611607d84ba1b019279480445dc44cd4e3cc3d64e89b70e93b85a37678d5

diff --git a/app-admin/puppet-agent/puppet-agent-6.5.0.ebuild 
b/app-admin/puppet-agent/puppet-agent-6.6.0.ebuild
similarity index 100%
rename from app-admin/puppet-agent/puppet-agent-6.5.0.ebuild
rename to app-admin/puppet-agent/puppet-agent-6.6.0.ebuild



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

2019-07-02 Thread Matthew Thode
commit: 963364cbcc5cdac7cc6ca87cc86c207799cfbb6c
Author: Matthew Thode  gentoo  org>
AuthorDate: Tue Jul  2 15:42:16 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Tue Jul  2 15:44:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=963364cb

app-admin/puppet: 6.6.0 bump with cleanup of 6.5.0

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

 app-admin/puppet/Manifest | 2 +-
 app-admin/puppet/{puppet-6.5.0.ebuild => puppet-6.6.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/puppet/Manifest b/app-admin/puppet/Manifest
index af00ee57d5e..e43017da063 100644
--- a/app-admin/puppet/Manifest
+++ b/app-admin/puppet/Manifest
@@ -2,4 +2,4 @@ DIST puppet-4.10.12.tar.gz 3022218 BLAKE2B 
03757857868b1544078ae5e40d6e438631c78
 DIST puppet-5.5.14.tar.gz 3075736 BLAKE2B 
bfea82d40f9671cdefab0b10c9481e4fbad397dd0a4aa26f5d0fa9ffa94477a5cc59b3724ab9ae3ee2e7e9230881676582c328c804ce9138dc484b9bd92e0ec3
 SHA512 
861100c02e0b8a5bb232d266bcd5e54b0e32cf26954ea37f276690aa3159ffdb28195ab8691df61ee0098300d226ea1d369dbdff8aae69101c2bbe6068ede8b1
 DIST puppet-6.4.1.tar.gz 2893151 BLAKE2B 
5c48b30083f93ce3625551020cc3b386cbc4ca8ab249099249099dc7aa8866186c197732ad603366d5fa54c3fc1664d7b457d323a2e6d9266faa754f7d4fa4ca
 SHA512 
260f933dac3a3033e807c5b7c63d5562d9d8d29d11550efd38b0a94eac811f27444156cc11db38da170dc2369981072288df471fd05738a0f0e951bbdffe2a52
 DIST puppet-6.4.2.tar.gz 2891159 BLAKE2B 
dfd8e5d9935d54272096fac66a037b8eab75dedc42caf18bafe29738e749a66869ad2e741753e8b38d872e21b1a261f2b4017c54faa57043754d619cf27652ed
 SHA512 
7ec2746ef2a021d1cc3e3076840a9f1195fe51ba591cf2907e542b3f450cb1f4002fa3c958aee966c5976245073ba3cfacc9fd2a653d1d823720b33984aff911
-DIST puppet-6.5.0.tar.gz 2897110 BLAKE2B 
e14d6d2759fd83c0bdbf45fb0a7eaf9f3ea26071c39f56bb1a290b1fcd87bf8f9112811c25f8673b75810132aba5ab348302bf19c1b3efc6b8ad7a6c36dc4c04
 SHA512 
4dee7184ec9d8bc7c354939a1eb7745ad2bf8b13040f6c7986018678530d1b6a05c357672df269b2c41bc91c5a42de6197b223ac97dbc5122b9b4c70c8c907f8
+DIST puppet-6.6.0.tar.gz 2898687 BLAKE2B 
67370b191985f75f783d795d7ef38df53fbf28efa8ab79ae309dba985f4ba296d2862fb366b68a46d03f526c3f27c51b1e1cefcccbaa96f6694dc888a7adcc2c
 SHA512 
e7e7367565d12c208654bd353112542fb84b736f262dc86adb940e02a4e34d473e7bb5f084e0caa5fab01be4ef479ad2baa3e751d4d86ee447cf960f400413e5

diff --git a/app-admin/puppet/puppet-6.5.0.ebuild 
b/app-admin/puppet/puppet-6.6.0.ebuild
similarity index 100%
rename from app-admin/puppet/puppet-6.5.0.ebuild
rename to app-admin/puppet/puppet-6.6.0.ebuild



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

2019-07-02 Thread Agostino Sarubbo
commit: 0eb113ca62c5ae8c5506064091b8e76082bcaee3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 14:04:37 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 14:04:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eb113ca

dev-libs/crypto++: sparc stable wrt bug #689038

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

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

diff --git a/dev-libs/crypto++/crypto++-8.2.0.ebuild 
b/dev-libs/crypto++/crypto++-8.2.0.ebuild
index 8605676db93..b93de42b285 100644
--- a/dev-libs/crypto++/crypto++-8.2.0.ebuild
+++ b/dev-libs/crypto++/crypto++-8.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.cryptopp.com/cryptopp${PV//.}.zip;
 
 LICENSE="Boost-1.0"
 SLOT="0/8" # subslot is so version
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ppc64 sparc x86 ~x64-macos"
 IUSE="+asm static-libs"
 
 BDEPEND="app-arch/unzip"



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

2019-07-02 Thread Andreas Sturmlechner
commit: 4ac67447dd76e377ace3616300f2fb83cf8e1ad5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jul  2 13:41:06 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jul  2 14:07:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ac67447

dev-libs/quazip: Drop 0.7.6

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

 dev-libs/quazip/Manifest|  1 -
 dev-libs/quazip/quazip-0.7.6.ebuild | 48 -
 2 files changed, 49 deletions(-)

diff --git a/dev-libs/quazip/Manifest b/dev-libs/quazip/Manifest
index 3a2e764d596..b6da0d2bc9a 100644
--- a/dev-libs/quazip/Manifest
+++ b/dev-libs/quazip/Manifest
@@ -1,2 +1 @@
-DIST quazip-0.7.6.tar.gz 149029 BLAKE2B 
7eb99f550dc06d8d2911b22214294accaa5126657598bfd60614267715ea968790f470cea2820e1a78a8581ab0d4b75c90589c0da1ae815067e083e389020762
 SHA512 
4325a69918216bb66c6a7c53589ef73473c3752151522a135dd9c92dbf722b29656aea7be0314c84399a214391eca79296ecda5811ab31845d8cf53c010110d1
 DIST quazip-0.8.1.tar.gz 150584 BLAKE2B 
4a1d61b65b01eee06e1292ee88b543675c77ac922d0fb1726ac0afd447d74e8c8154db82da0ce95c2f2c303c036f2795e8938a412dc22e921ee09a0ef99278f6
 SHA512 
d65dab16c2cbc4d8bb23dae5b2fdff5ef787aaff2653b8e75c3fc8ba1701f5568a52bdde39009f83c5069a9fe3331cd1a49cf965822c4180e88bbc341faa2bfb

diff --git a/dev-libs/quazip/quazip-0.7.6.ebuild 
b/dev-libs/quazip/quazip-0.7.6.ebuild
deleted file mode 100644
index 5e502d2c03b..000
--- a/dev-libs/quazip/quazip-0.7.6.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils flag-o-matic qmake-utils
-
-DESCRIPTION="Simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package"
-HOMEPAGE="https://stachenov.github.io/quazip/;
-SRC_URI="https://github.com/stachenov/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="static-libs"
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtnetwork:5
-   sys-libs/zlib[minizip]
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   if ! use static-libs ; then
-   sed -e "/^install/ s/quazip_static//" -i CMakeLists.txt || die
-   fi
-   cmake-utils_src_prepare
-}
-
-src_configure() {
-   local libdir=$(get_libdir)
-   local -x CXXFLAGS="${CXXFLAGS}"
-   append-cxxflags -std=c++11 -fPIC
-
-   local mycmakeargs=(
-   -DBUILD_WITH_QT4=OFF
-   -DLIB_SUFFIX=${libdir/lib/}
-   )
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-
-   # compatibility with not yet fixed rdeps (Gentoo bug #598136)
-   dosym libquazip5.so /usr/$(get_libdir)/libquazip.so
-}



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

2019-07-02 Thread Andreas Sturmlechner
commit: 79a364670726168ab8acd94ec56113e82e22610f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jul  2 14:06:33 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jul  2 14:07:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79a36467

x11-misc/xfractint: Drop 20.04_p12

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

 x11-misc/xfractint/Manifest   |  1 -
 x11-misc/xfractint/xfractint-20.04_p12.ebuild | 45 ---
 2 files changed, 46 deletions(-)

diff --git a/x11-misc/xfractint/Manifest b/x11-misc/xfractint/Manifest
index 4a3744b4f1e..89b57a273ed 100644
--- a/x11-misc/xfractint/Manifest
+++ b/x11-misc/xfractint/Manifest
@@ -1,2 +1 @@
-DIST xfractint-20.04p12.tar.gz 1335480 BLAKE2B 
eef1cd37846865dab9c2616048b26d6a9674799d9317d9f3e92a783e872772c3322826689ec3bf71fc18cef80d4a13a604314d692685bcb268312085d34483fc
 SHA512 
ef233b417ccdff153e53b70f4ac0500be99e9fc6e87360b341640573592320b2485f18fd6426436432d968d33fa41d4862babf193c3b11c480f514a4602bb8f2
 DIST xfractint-20.04p14.tar.gz 1336285 BLAKE2B 
946c34551acf131845f1ecf17d4fe82214535627e8ea68d704efcff4b93c525d82f004bde8ae1bac11df8c82caa3bcff4778b2f8dfed1bdb494ba036e62256c5
 SHA512 
7d13c719f4f4b0680455b9b7f86644928d8145606973d208e5bf0d26b4f7b04ddbf8d2080ea35c872b21e079f1a116f3ef94e9acb36a45d43c16403c473e2acd

diff --git a/x11-misc/xfractint/xfractint-20.04_p12.ebuild 
b/x11-misc/xfractint/xfractint-20.04_p12.ebuild
deleted file mode 100644
index c7793395883..000
--- a/x11-misc/xfractint/xfractint-20.04_p12.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-MY_P=${P/_}
-
-DESCRIPTION="A fractal generator"
-HOMEPAGE="https://www.fractint.org;
-SRC_URI="https://www.fractint.org/ftp/old/linux/${MY_P}.tar.gz;
-
-LICENSE="freedist"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-RDEPEND="x11-libs/libX11"
-DEPEND="${RDEPEND}
-   x11-libs/libXft"
-#  x86? ( dev-lang/nasm )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   epatch "${FILESDIR}/xfractint-20.04p09-ldflags.patch"
-}
-
-src_compile() {
-   # Untested, any x86 archteam dev. is allowed to uncomment this.
-   local myasm="foo"
-#  use x86 && myasm="/usr/bin/nasm"
-   emake CC="$(tc-getCC)" AS="${myasm}" OPT="${CFLAGS}" 
LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   emake DESTDIR="${D}/usr" STRIP="true" install
-   newenvd "${FILESDIR}"/xfractint.envd 60xfractint
-}
-
-pkg_postinst() {
-   elog "XFractInt requires the FRACTDIR variable to be set in order to 
start."
-   elog "Please re-login or \`source /etc/profile\` to have this variable 
set."
-}



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

2019-07-02 Thread Andreas Sturmlechner
commit: 25e2903911a30d6c795e02cfe985e2a54e82640b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jul  2 13:40:22 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jul  2 14:07:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25e29039

media-sound/abcde: Drop 2.8.1

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

 media-sound/abcde/Manifest   |  1 -
 media-sound/abcde/abcde-2.8.1.ebuild | 70 
 2 files changed, 71 deletions(-)

diff --git a/media-sound/abcde/Manifest b/media-sound/abcde/Manifest
index cc26e3b0e0e..573f82f1935 100644
--- a/media-sound/abcde/Manifest
+++ b/media-sound/abcde/Manifest
@@ -1,2 +1 @@
-DIST abcde-2.8.1.tar.gz 149238 BLAKE2B 
0adb1ea164e72292ee1e5b7e99c6bd9a92342f9eb5036280b91ad43ab62e5b0ef79652d094a81f38f4052c749d874e12da76eaf74134d07517fc8fac1f0d7e64
 SHA512 
18e9e46ec69d0b99fc5e2b71ec549e3961e5f6d7f88cef1a6c8da154689554a70cc8bc748c1ef78f81583a510f8b03906b8a4fec454aa0b06f0169d0bc4a7b36
 DIST abcde-2.9.3.tar.gz 160876 BLAKE2B 
cb3ebc372b4bfcf002beda567c2aa91dba11e77fdaeee8ec0d351fe907d6209ccb9013135db2a3ea0f85148eeaaa91f06243c607ac732a1b13f7a0a54d721fb0
 SHA512 
51a1dfa1f1d2dab6b8dad7d9f70d0139938151bc2dae0e9fc80da5385b4bba4d71c89a4d1b2dec5bd24787a542cb0caeacbef423cf32b8014cf6320c391b4236

diff --git a/media-sound/abcde/abcde-2.8.1.ebuild 
b/media-sound/abcde/abcde-2.8.1.ebuild
deleted file mode 100644
index 2a06fdfdf54..000
--- a/media-sound/abcde/abcde-2.8.1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A command line CD encoder"
-HOMEPAGE="https://abcde.einval.com/;
-SRC_URI="https://abcde.einval.com/download/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-# Enable MP3 related flags by default
-IUSE="aac cdparanoia cdr flac +id3tag +lame mac musepack musicbrainz normalize 
opus replaygain speex vorbis wavpack"
-
-# See `grep :: abcde-musicbrainz-tool` output for USE musicbrainz dependencies
-RDEPEND="media-sound/cd-discid
-   net-misc/wget
-   virtual/eject
-   aac? (
-   media-libs/faac
-   || ( media-video/atomicparsley media-video/atomicparsley-wez )
-   )
-   cdparanoia? (
-   || ( dev-libs/libcdio-paranoia media-sound/cdparanoia )
-   )
-   cdr? ( virtual/cdrtools )
-   flac? ( media-libs/flac )
-   id3tag? (
-   dev-python/eyeD3:0.7
-   >=media-sound/id3-0.12
-   media-sound/id3v2
-   )
-   lame? ( media-sound/lame )
-   mac? (
-   media-sound/apetag
-   media-sound/mac
-   )
-   musepack? ( media-sound/musepack-tools )
-   musicbrainz? (
-   dev-perl/MusicBrainz-DiscID
-   dev-perl/WebService-MusicBrainz
-   virtual/perl-Digest-SHA
-   virtual/perl-Getopt-Long
-   )
-   normalize? ( >=media-sound/normalize-0.7.4 )
-   opus? ( media-sound/opus-tools )
-   replaygain? (
-   vorbis? ( media-sound/vorbisgain )
-   lame? ( media-sound/mp3gain )
-   )
-   speex? ( media-libs/speex )
-   vorbis? ( media-sound/vorbis-tools )
-   wavpack? ( media-sound/wavpack )
-"
-
-src_prepare() {
-   default
-   sed -i 's:etc/abcde.co:etc/abcde/abcde.co:g' abcde || die
-   sed -i -e '/^prefix/s/=/?=/' -e '/^sysconfdir/s/=/?=/' Makefile || die
-}
-
-src_install() {
-   emake DESTDIR="${D}" prefix="/usr" sysconfdir="/etc/abcde" install
-
-   dodoc changelog FAQ README
-
-   docinto examples
-   dodoc examples/*
-}



[gentoo-commits] repo/gentoo:master commit in: sci-astronomy/stellarium/files/, sci-astronomy/stellarium/

2019-07-02 Thread Andreas Sturmlechner
commit: 968f739831bcbb64de7513b279b376f6817b233a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jul  2 14:05:35 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jul  2 14:07:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=968f7398

sci-astronomy/stellarium: Drop 0.18.2

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

 sci-astronomy/stellarium/Manifest  |   1 -
 .../files/stellarium-0.18.2-as-needed.patch|  47 -
 .../files/stellarium-0.18.2-fix-test.patch | 113 -
 sci-astronomy/stellarium/stellarium-0.18.2.ebuild  |  92 -
 4 files changed, 253 deletions(-)

diff --git a/sci-astronomy/stellarium/Manifest 
b/sci-astronomy/stellarium/Manifest
index be30a0328bd..411c050d03a 100644
--- a/sci-astronomy/stellarium/Manifest
+++ b/sci-astronomy/stellarium/Manifest
@@ -3,5 +3,4 @@ DIST stars_5_2v0_1.cat 42580300 BLAKE2B 
eb6528c0577b3f2001a8b03cc5a4e08fa4e75723
 DIST stars_6_2v0_1.cat 148352404 BLAKE2B 
c605b284b3d768cb1619ada3f58d406fa7737f09949e8926d6c14b82a85927d124d7fcb50c6d6c357d21b003938cc0b28937f2adb28ae268bb5c85d575f5e0ff
 SHA512 
794279407595f44bbc1e492086063d98068bf332202a5448cd83dd7afbdcf7c6c3ff2878f3016369ebb5a98552874eb4eddb38e2c40e9a163c6231b640e02977
 DIST stars_7_2v0_1.cat 305710678 BLAKE2B 
1cc9b4a6bc35a9339e495f7e0da4f7e90a0e92b05b5de8599be1bbdd2a8053cbcec44b0e58bc9248364666db9cdf23449edf236e3f21fdc0e8f1a4a706afc919
 SHA512 
43b866eb793e8812c9d5502101a6c985d2055fb88bdbda274726bcd51e1527ecf342b22acd673318c9c8e88cac68eace18de8f27d29ffe64933fd32a5b84c5e3
 DIST stars_8_2v0_1.cat 559068934 BLAKE2B 
c040a369cdf6885759998e1315b554d21a5e2b9b149a67967a8af45606aebf57bec407fab5ce1904978af0dc529aa6bddd267331ca45f58617bbf56d5ca99dee
 SHA512 
06d4fa298b9dff8452f550377df99fcaa5e7107cfc7b75c9a4769b3cb6d97a822a54213c706102c1d7ef2dabc16df32a85f46b2f6d6c6f76a4e919353b739de4
-DIST stellarium-0.18.2.tar.gz 265334731 BLAKE2B 
d8527f93f2ea856466f98e7ab326a34e4265c4937c4d399755878cc6bbb1202580c825a6253e090986ebc80119fb33881b120a1ed6873278dacef75a1e69c517
 SHA512 
f658b19524b78739a5125ac7c89f5d2b48284d8696da54e39d2390bbbe5eeb8da70837c4e9055a650a492f3f71ebbc966c4c1341729982ba37d93b26fcb91912
 DIST stellarium-0.19.0.tar.gz 309151408 BLAKE2B 
d5726762c402cebca47c7cb218a2edc918aceb11e4bf44f0473bf86a8bfc75b908467112e8ce797c90f9c1307884f853a24f919efe11e86ef04c9eb0ff356a3b
 SHA512 
26cb44fe4280275ce64594d01bdded4ddd2cda5d21887b4329de51188cc392e8390036702ee316446dcdb54182dec5d217a387898c4c7aa82ce14742b4d4694f

diff --git a/sci-astronomy/stellarium/files/stellarium-0.18.2-as-needed.patch 
b/sci-astronomy/stellarium/files/stellarium-0.18.2-as-needed.patch
deleted file mode 100644
index 71fc8ccf2d7..000
--- a/sci-astronomy/stellarium/files/stellarium-0.18.2-as-needed.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From e1bd46e11fead134ee9d8ec4d72f2592c3e18c72 Mon Sep 17 00:00:00 2001
-From: Alexey Sokolov 
-Date: Thu, 8 Nov 2018 23:30:02 +
-Subject: [PATCH] Fix build with --as-needed
-
-Fixes the following error:
-
-/usr/bin/x86_64-pc-linux-gnu-g++  -O2 -pipe -march=bdver2 -ggdb3 -Wall -Wextra 
-Wno-unused-parameter -Wno-unused-result  -Wl,-O1 -Wl,--as-needed -rdynamic 
CMakeFiles/stellarium.dir/main.cpp.o 
CMakeFiles/stellarium.dir/stellarium_autogen/mocs_compilation.cpp.o  -o 
stellarium -lz external/libqtcompress_stel.a external/libglues_stel.a 
external/libqcustomplot_stel.a ../plugins/AngleMeasure/src/libAngleMeasure.a 
../plugins/ArchaeoLines/src/libArchaeoLines.a 
../plugins/CompassMarks/src/libCompassMarks.a 
../plugins/Exoplanets/src/libExoplanets.a 
../plugins/EquationOfTime/src/libEquationOfTime.a ../plugins/FOV/src/libFOV.a 
../plugins/MeteorShowers/src/libMeteorShowers.a 
../plugins/NavStars/src/libNavStars.a ../plugins/Novae/src/libNovae.a 
../plugins/Observability/src/libObservability.a 
../plugins/Oculars/src/libOculars.a 
../plugins/PointerCoordinates/src/libPointerCoordinates.a 
../plugins/Pulsars/src/libPulsars.a ../plugins/Quasars/src/libQuasars.a 
../plugins/RemoteControl/src/libRemoteCont
 rol.a ../plugins/RemoteSync/src/libRemoteSync.a 
../plugins/Satellites/src/libSatellites.a 
../plugins/Scenery3d/src/libScenery3d.a 
../plugins/SolarSystemEditor/src/libSolarSystemEditor.a 
../plugins/Supernovae/src/libSupernovae.a 
../plugins/TextUserInterface/src/libTextUserInterface.a 
../plugins/TelescopeControl/src/libTelescopeControl.a libstelMain.a 
external/libqtcompress_stel.a -lz external/libglues_stel.a 
../plugins/AngleMeasure/src/libAngleMeasure.a 
../plugins/ArchaeoLines/src/libArchaeoLines.a 
../plugins/CompassMarks/src/libCompassMarks.a 
../plugins/Exoplanets/src/libExoplanets.a external/libqcustomplot_stel.a 
/usr/lib64/libQt5PrintSupport.so.5.11.1 
../plugins/EquationOfTime/src/libEquationOfTime.a ../plugins/FOV/src/libFOV.a 
../plugins/MeteorShowers/src/libMeteorShowers.a 

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

2019-07-02 Thread Agostino Sarubbo
commit: 4d11539af037b5adbf61f7397b03253aa7ef3eb7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 14:04:35 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 14:04:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d11539a

net-libs/nghttp2: sparc stable wrt bug #689028

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

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

diff --git a/net-libs/nghttp2/nghttp2-1.39.1.ebuild 
b/net-libs/nghttp2/nghttp2-1.39.1.ebuild
index 29ffbf47b0b..ffebbda6912 100644
--- a/net-libs/nghttp2/nghttp2-1.39.1.ebuild
+++ b/net-libs/nghttp2/nghttp2-1.39.1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/nghttp2/nghttp2/releases/download/v${PV}/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 
~sh ~sparc x86 ~amd64-fbsd"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 
~sh sparc x86 ~amd64-fbsd"
 fi
 
 DESCRIPTION="HTTP/2 C Library"



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

2019-07-02 Thread Louis Sautier
commit: d528c4bfb9d0b293619dbe0918dffe171f29aaee
Author: Louis Sautier  gentoo  org>
AuthorDate: Tue Jul  2 13:59:33 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Tue Jul  2 14:02:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d528c4bf

dev-python/jaraco-logging: bump to 2.0, switches to pkgutil

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/jaraco-logging/Manifest |  1 +
 .../jaraco-logging/jaraco-logging-2.0.ebuild   | 60 ++
 2 files changed, 61 insertions(+)

diff --git a/dev-python/jaraco-logging/Manifest 
b/dev-python/jaraco-logging/Manifest
index a868354b9a8..74af9db8ac6 100644
--- a/dev-python/jaraco-logging/Manifest
+++ b/dev-python/jaraco-logging/Manifest
@@ -1,2 +1,3 @@
 DIST jaraco.logging-1.5.2.tar.gz 7135 BLAKE2B 
5235566df80008270f2f28101ab5df1d7fbc1446f138eb4cb851c9bb464b741c0ebb8528d3502130b5c557f30214ec27ce1ea563e09e78776e22d37811da21b5
 SHA512 
3299adc9c9ca6113198cddbc34147afe1bf453edee16a2d6bfcce64e63deeaff7f87beb74ff44f092435f3433a921b19167fb45778dce444512807357bce1661
 DIST jaraco.logging-1.5.tar.gz 5707 BLAKE2B 
853d2747ab92754de4480871355180a33a7a6cbf69fc3d32ba489ecac27dc55ad92d94bfb84e411ee13400d82d162ea400be1027c3002f317a97e00b849484ec
 SHA512 
18f267bd0c764f38ff5223d4fd6e08d7d9fa568691db285155d7b955c71439474fd84edd61b20d57f6eac77394d4b3ddf9b35d8e6ba08a2db5dd4b2ada6e0d68
+DIST jaraco.logging-2.0.tar.gz 10356 BLAKE2B 
a7522fa9895784a68c8c0af265ad5a82ba27f69e90a17ba18b4a579e1ca5785ad11b7718273adb33661e45e780876b885b581af1b4518ef5322c077ed76242ba
 SHA512 
9262575c3071f78ded2284ebef3a1a80c8ffd60addecf9b215db04471672bd892f6c6bd06a84f9a82e872adf31d45d4eb3faa2884815fcce608840821f49954e

diff --git a/dev-python/jaraco-logging/jaraco-logging-2.0.ebuild 
b/dev-python/jaraco-logging/jaraco-logging-2.0.ebuild
new file mode 100644
index 000..392aac0a28e
--- /dev/null
+++ b/dev-python/jaraco-logging/jaraco-logging-2.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python{2_7,3_{5,6,7}} )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+DESCRIPTION="Additional facilities to supplement Python's stdlib logging 
module"
+HOMEPAGE="https://github.com/jaraco/jaraco.logging;
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND="
+   >=dev-python/namespace-jaraco-2[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/tempora[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
+   doc? (
+   >=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
+   >=dev-python/rst-linker-1.9[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${RDEPEND}
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_compile_all() {
+   if use doc; then
+   cd docs || die
+   sphinx-build . _build/html || die
+   HTML_DOCS=( docs/_build/html/. )
+   fi
+}
+
+python_test() {
+   # Override pytest options to skip flake8
+   PYTHONPATH=. pytest -v --override-ini="addopts=--doctest-modules" \
+   || die "tests failed with ${EPYTHON}"
+}
+
+# 
https://wiki.gentoo.org/wiki/Project:Python/Namespace_packages#File_collisions_between_pkgutil-style_packages
+python_install() {
+   rm "${BUILD_DIR}"/lib/jaraco/__init__.py || die
+   # note: eclass may default to --skip-build in the future
+   distutils-r1_python_install --skip-build
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-functools/, dev-python/jaraco-functools/files/

2019-07-02 Thread Louis Sautier
commit: c80478b9ff46e877d10b881868714679d7ca1e1f
Author: Louis Sautier  gentoo  org>
AuthorDate: Tue Jul  2 13:34:34 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Tue Jul  2 14:02:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c80478b9

dev-python/jaraco-functools: bump to 2.0, switches to pkgutil

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/jaraco-functools/Manifest   |  1 +
 .../jaraco-functools-2.0-fix-py37-tests.patch  | 41 ++
 .../jaraco-functools/jaraco-functools-2.0.ebuild   | 64 ++
 3 files changed, 106 insertions(+)

diff --git a/dev-python/jaraco-functools/Manifest 
b/dev-python/jaraco-functools/Manifest
index d63ec84b252..d6c4b82c244 100644
--- a/dev-python/jaraco-functools/Manifest
+++ b/dev-python/jaraco-functools/Manifest
@@ -1,2 +1,3 @@
 DIST jaraco.functools-1.19.tar.gz 10588 BLAKE2B 
c71eb4e0c611f6a0bd82e04cacb7933961ba5e50091439c274bd8ceeda68b69789423994fe43f44af6cdd643b7a04418bc32ce2f937d118520298a019c5c6638
 SHA512 
7fbf1956ff8a132021e1f7fae5e98f40199a5d0e705b08b44ad5b2588fdd7d1088db9d7457b985c1852b50285a8f03cc9795fff0c4f53f9155f7c8ec371ff307
 DIST jaraco.functools-1.20.tar.gz 11063 BLAKE2B 
c202c3cda86c0f32fb3299a083ebb8d584eec444d9d8f0eff536f5e663634dab03c5831aef18d683e7eafff311b66a724d9004ad46f5ef92e90df16a9c7d
 SHA512 
ba17b567dfcadb0d8ff1cc7a6ed07f2a23abfd42e73f3d815a6fa19d9be97d6af0c90bff7fb5e7ef67012ea5d931e9babc963da8a7105ba6a92d5c43c7126e04
+DIST jaraco.functools-2.0.tar.gz 14340 BLAKE2B 
560490b1150c2385f9c4d468fe7ab4fa84475ad43e1ebed784343a71742976ed0c18df3f6240b1d5b69106a6835c0248838331a654f9d3fdc863622c3dda33be
 SHA512 
dce30c08f0e9f3c7b682c78fc3a46a26d9972706f4c8449a12ba11aa5ed130c6d9ca405213fd93b6b4110ef9cea549e5fa925c96bfaf18681cd6957d8ba0889f

diff --git 
a/dev-python/jaraco-functools/files/jaraco-functools-2.0-fix-py37-tests.patch 
b/dev-python/jaraco-functools/files/jaraco-functools-2.0-fix-py37-tests.patch
new file mode 100644
index 000..dc296c4eb47
--- /dev/null
+++ 
b/dev-python/jaraco-functools/files/jaraco-functools-2.0-fix-py37-tests.patch
@@ -0,0 +1,41 @@
+From cc972095e5aa2ae80d1d69d7ca84ee94178e869a Mon Sep 17 00:00:00 2001
+From: "Jason R. Coombs" 
+Date: Sat, 20 Apr 2019 07:08:41 -0400
+Subject: [PATCH] Rewrite docstring on Python 3.7.3 to allow the test to pass.
+ Fixes #12.
+
+---
+ conftest.py | 24 
+ 1 file changed, 24 insertions(+)
+ create mode 100644 conftest.py
+
+diff --git a/conftest.py b/conftest.py
+new file mode 100644
+index 000..b6fad41
+--- /dev/null
 b/conftest.py
+@@ -0,0 +1,24 @@
++import sys
++import re
++
++import jaraco.functools
++
++
++def pytest_configure():
++  patch_for_issue_12()
++
++
++def patch_for_issue_12():
++  """
++  Issue #12 revealed that Python 3.7.3 had a subtle
++  change in the C implementation of functools that
++  broke the assumptions around the method_cache (or
++  any caller using possibly empty keyword arguments).
++  This patch adjusts the docstring for that test so it
++  can pass on that Python version.
++  """
++  affected_ver = 3, 7, 3
++  if sys.version_info[:3] != affected_ver:
++  return
++  mc = jaraco.functools.method_cache
++  mc.__doc__ = re.sub(r'^(\s+)75', r'\g<1>76', mc.__doc__, flags=re.M)

diff --git a/dev-python/jaraco-functools/jaraco-functools-2.0.ebuild 
b/dev-python/jaraco-functools/jaraco-functools-2.0.ebuild
new file mode 100644
index 000..c6edbff3e67
--- /dev/null
+++ b/dev-python/jaraco-functools/jaraco-functools-2.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python{2_7,3_{5,6,7}} )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+DESCRIPTION="Additional functions used by other projects by developer jaraco"
+HOMEPAGE="https://github.com/jaraco/jaraco.functools;
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc test"
+
+RDEPEND="
+   >=dev-python/namespace-jaraco-2[${PYTHON_USEDEP}]
+   dev-python/more-itertools[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'dev-python/backports-functools-lru-cache[${PYTHON_USEDEP}]' python2_7)
+"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
+   doc? (
+   >=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
+   >=dev-python/rst-linker-1.9[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${RDEPEND}
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   dev-python/backports-unittest-mock[${PYTHON_USEDEP}]
+   dev-python/jaraco-classes[${PYTHON_USEDEP}]
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-functools/, dev-python/jaraco-text/, ...

2019-07-02 Thread Louis Sautier
commit: b948cc5f85cc8a983ab14452c64fd21127f05e75
Author: Louis Sautier  gentoo  org>
AuthorDate: Tue Jul  2 12:59:15 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Tue Jul  2 13:31:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b948cc5f

dev-python/jaraco-*: depend on old pkg_resources-style namespace pkg

In anticipation of a switch to a pkgutil-style namespace package.

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Louis Sautier  gentoo.org>

 .../{jaraco-classes-1.5.ebuild => jaraco-classes-1.5-r1.ebuild} | 2 +-
 ...raco-collections-1.5.3.ebuild => jaraco-collections-1.5.3-r1.ebuild} | 2 +-
 ...raco-collections-1.6.0.ebuild => jaraco-collections-1.6.0-r1.ebuild} | 2 +-
 .../{jaraco-functools-1.19.ebuild => jaraco-functools-1.19-r1.ebuild}   | 2 +-
 .../{jaraco-functools-1.20.ebuild => jaraco-functools-1.20-r1.ebuild}   | 2 +-
 .../{jaraco-itertools-2.3.ebuild => jaraco-itertools-2.3-r1.ebuild} | 2 +-
 .../{jaraco-itertools-3.0.0.ebuild => jaraco-itertools-2.5.2-r1.ebuild} | 2 +-
 .../{jaraco-itertools-2.5.2.ebuild => jaraco-itertools-3.0.0-r1.ebuild} | 2 +-
 .../{jaraco-logging-1.5.2.ebuild => jaraco-logging-1.5.2-r1.ebuild} | 2 +-
 .../{jaraco-packaging-5.1.ebuild => jaraco-packaging-5.1-r1.ebuild} | 2 +-
 .../{jaraco-packaging-5.1.1.ebuild => jaraco-packaging-5.1.1-r1.ebuild} | 2 +-
 .../{jaraco-packaging-5.2.ebuild => jaraco-packaging-5.2-r1.ebuild} | 2 +-
 .../{jaraco-stream-1.2.ebuild => jaraco-stream-1.2-r1.ebuild}   | 2 +-
 .../{jaraco-text-1.10.1.ebuild => jaraco-text-1.10.1-r1.ebuild} | 2 +-
 14 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/dev-python/jaraco-classes/jaraco-classes-1.5.ebuild 
b/dev-python/jaraco-classes/jaraco-classes-1.5-r1.ebuild
similarity index 96%
rename from dev-python/jaraco-classes/jaraco-classes-1.5.ebuild
rename to dev-python/jaraco-classes/jaraco-classes-1.5-r1.ebuild
index 8eee44f2f2c..53def5d5419 100644
--- a/dev-python/jaraco-classes/jaraco-classes-1.5.ebuild
+++ b/dev-python/jaraco-classes/jaraco-classes-1.5-r1.ebuild
@@ -19,7 +19,7 @@ KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc test"
 
 RDEPEND="
-   dev-python/namespace-jaraco[${PYTHON_USEDEP}]
+   

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

2019-07-02 Thread Louis Sautier
commit: c4edda0d524dfca20de6f9546f3806de9109fdae
Author: Louis Sautier  gentoo  org>
AuthorDate: Tue Jul  2 12:55:15 2019 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Tue Jul  2 13:31:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4edda0d

dev-python/namespace-jaraco: bump to v2 for pkgutil-style packages

All dev-python/jaraco-* packages are switching to pkgutil-style
packages.

Drop blocker on older jaraco-logging versions that are not in the tree
any more.

Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Louis Sautier  gentoo.org>

 .../namespace-jaraco/namespace-jaraco-2.ebuild | 35 ++
 1 file changed, 35 insertions(+)

diff --git a/dev-python/namespace-jaraco/namespace-jaraco-2.ebuild 
b/dev-python/namespace-jaraco/namespace-jaraco-2.ebuild
new file mode 100644
index 000..eae5d12efb4
--- /dev/null
+++ b/dev-python/namespace-jaraco/namespace-jaraco-2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy{,3} python{2_7,3_{5,6,7}} )
+inherit python-r1
+
+DESCRIPTION="Namespace package declaration for jaraco"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Python/Namespace_packages;
+SRC_URI=""
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd"
+IUSE=""
+
+RDEPEND="
+   ! "${S}"/jaraco/__init__.py <<-EOF || die
+   __path__ = __import__('pkgutil').extend_path(__path__, __name__)
+   EOF
+}
+
+src_install() {
+   python_foreach_impl python_domodule jaraco
+}



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

2019-07-02 Thread Agostino Sarubbo
commit: 8a7aa821e9acbd1c4f9ea17a3098f296da1a49cc
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 13:12:45 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 13:12:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a7aa821

media-libs/x264: sparc stable wrt bug #688712

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

 media-libs/x264/x264-0.0.20190214.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/x264/x264-0.0.20190214.ebuild 
b/media-libs/x264/x264-0.0.20190214.ebuild
index cee949670bd..9c2a819d5bb 100644
--- a/media-libs/x264/x264-0.0.20190214.ebuild
+++ b/media-libs/x264/x264-0.0.20190214.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
 else
MY_P="x264-snapshot-$(ver_cut 3)-2245"

SRC_URI="https://download.videolan.org/pub/videolan/x264/snapshots/${MY_P}.tar.bz2;
-   KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+   KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: net-vpn/wireguard/

2019-07-02 Thread Jason A. Donenfeld
commit: 16ad4bb522297f6fb10c7c62535faf7d2d7f4d2d
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Tue Jul  2 12:39:33 2019 +
Commit: Jason A. Donenfeld  gentoo  org>
CommitDate: Tue Jul  2 12:41:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16ad4bb5

net-vpn/wireguard: version bump

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Jason A. Donenfeld  gentoo.org>

 net-vpn/wireguard/Manifest  | 2 +-
 .../{wireguard-0.0.20190601.ebuild => wireguard-0.0.20190702.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/wireguard/Manifest b/net-vpn/wireguard/Manifest
index 1cc183965db..eeab5530f60 100644
--- a/net-vpn/wireguard/Manifest
+++ b/net-vpn/wireguard/Manifest
@@ -1 +1 @@
-DIST WireGuard-0.0.20190601.tar.xz 327348 BLAKE2B 
bd7827262f0c056b2deaad9c3ca62b28d26200b32c3b31c6d970c141d58255a8c9dd361603663040118d68defe9d5a130f7dd8a2eb26306f66d5fff84762228f
 SHA512 
d667e42b90fbda85b005ae2966689dadc9975c1a53ca5ddfff44214ed55ad7d55d451008c225a4619c834bd7af598af1f127d76a8a3a86cf2e6d886ea0638cf3
+DIST WireGuard-0.0.20190702.tar.xz 327632 BLAKE2B 
5a6ecb34e7f02507a2d97209c6210f01c8000644519f6b6532de5f50b7f2cd9d1534c2e5098bb1f5615ce08891b71e2d54b31b976808ad386cd0c99d1cd79c14
 SHA512 
8b92b51506cd3f8e9939378b86f23678e08e8501432decd0abf6a9d4e3dfe4742b6f1cb75e06407f5816778b3dd90849a5da83252ab882392ec1905dfb997501

diff --git a/net-vpn/wireguard/wireguard-0.0.20190601.ebuild 
b/net-vpn/wireguard/wireguard-0.0.20190702.ebuild
similarity index 100%
rename from net-vpn/wireguard/wireguard-0.0.20190601.ebuild
rename to net-vpn/wireguard/wireguard-0.0.20190702.ebuild



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

2019-07-02 Thread Agostino Sarubbo
commit: 6aeb79a65b2340ea1c9269b39e5e8f216ee9e028
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 12:36:37 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 12:36:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aeb79a6

net-libs/libnftnl: ppc64 stable wrt bug #688970

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

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

diff --git a/net-libs/libnftnl/libnftnl-1.1.3.ebuild 
b/net-libs/libnftnl/libnftnl-1.1.3.ebuild
index df267ab10fa..e68cc96005a 100644
--- a/net-libs/libnftnl/libnftnl-1.1.3.ebuild
+++ b/net-libs/libnftnl/libnftnl-1.1.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://netfilter.org/projects/${PN}/files/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/11" # libnftnl.so version
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
x86"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ppc64 ~riscv ~sparc 
x86"
 IUSE="examples static-libs test"
 
 RDEPEND=">=net-libs/libmnl-1.0.3"



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

2019-07-02 Thread Agostino Sarubbo
commit: 5cdce9ba951ebe1163b881f25f76894fd16de1f7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 12:36:41 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 12:36:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cdce9ba

dev-libs/crypto++: ppc64 stable wrt bug #689038

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

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

diff --git a/dev-libs/crypto++/crypto++-8.2.0.ebuild 
b/dev-libs/crypto++/crypto++-8.2.0.ebuild
index eb8b9103b07..8605676db93 100644
--- a/dev-libs/crypto++/crypto++-8.2.0.ebuild
+++ b/dev-libs/crypto++/crypto++-8.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.cryptopp.com/cryptopp${PV//.}.zip;
 
 LICENSE="Boost-1.0"
 SLOT="0/8" # subslot is so version
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~sparc x86 ~x64-macos"
 IUSE="+asm static-libs"
 
 BDEPEND="app-arch/unzip"



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

2019-07-02 Thread Agostino Sarubbo
commit: 676e31d1dd8c313a331204f5fa5770ff65770448
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 12:35:05 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 12:35:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=676e31d1

net-libs/libnftnl: ia64 stable wrt bug #688970

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

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

diff --git a/net-libs/libnftnl/libnftnl-1.1.3.ebuild 
b/net-libs/libnftnl/libnftnl-1.1.3.ebuild
index 6342a08da37..df267ab10fa 100644
--- a/net-libs/libnftnl/libnftnl-1.1.3.ebuild
+++ b/net-libs/libnftnl/libnftnl-1.1.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://netfilter.org/projects/${PN}/files/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/11" # libnftnl.so version
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
x86"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
x86"
 IUSE="examples static-libs test"
 
 RDEPEND=">=net-libs/libmnl-1.0.3"



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

2019-07-02 Thread Agostino Sarubbo
commit: f3c657183761aeb3ecf04c5d09aed33606b94198
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 12:35:08 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 12:35:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3c65718

app-admin/haskell-updater: ia64 stable wrt bug #689138

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

 app-admin/haskell-updater/haskell-updater-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild 
b/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild
index f551ee82251..55c7181d1b8 100644
--- a/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild
+++ b/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=dev-lang/ghc-6.12.1"



[gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/

2019-07-02 Thread Agostino Sarubbo
commit: 72816b9f3ae1fcdd2e66c3f7b2299e0a1d8a1b4b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 12:35:03 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 12:35:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72816b9f

net-firewall/nftables: ia64 stable wrt bug #688970

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

 net-firewall/nftables/nftables-0.9.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/nftables/nftables-0.9.0-r4.ebuild 
b/net-firewall/nftables/nftables-0.9.0-r4.ebuild
index 6df77a71727..edd756eca79 100644
--- a/net-firewall/nftables/nftables-0.9.0-r4.ebuild
+++ b/net-firewall/nftables/nftables-0.9.0-r4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://git.netfilter.org/nftables/snapshot/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ia64 x86"
 IUSE="debug doc +gmp json +modern_kernel +readline"
 
 RDEPEND=">=net-libs/libmnl-1.0.3:0=



[gentoo-commits] repo/gentoo:master commit in: app-editors/okteta/

2019-07-02 Thread Andreas Sturmlechner
commit: 9785bcf11ba35530da53ab95bbf0d5309bdb6041
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jul  2 12:02:28 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jul  2 12:21:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9785bcf1

app-editors/okteta: 0.26.2 version bump

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

 app-editors/okteta/Manifest |  1 +
 app-editors/okteta/okteta-0.26.2.ebuild | 66 +
 2 files changed, 67 insertions(+)

diff --git a/app-editors/okteta/Manifest b/app-editors/okteta/Manifest
index 1571166e91f..67748879f58 100644
--- a/app-editors/okteta/Manifest
+++ b/app-editors/okteta/Manifest
@@ -1 +1,2 @@
 DIST okteta-0.26.1.tar.xz 970532 BLAKE2B 
c04e0c4a2665f91cde26ee28b95f768f3074a08c8fd30920c75f3ce52fdfa717e3e6cea9acf87c3c5d53c830e5badb51faa2abcebd5b55839ea4ee52874a6d4c
 SHA512 
fa4e841c77ae255e9936b29e30fa0bc1f65594898820652ac8ba78497658ec5ef78cadf8b4d33cab09b2ee8da1d75b84377be28680b2d91c5af2dcdfe5da95e3
+DIST okteta-0.26.2.tar.xz 976264 BLAKE2B 
6bd0708ecab61097130ad3b96d44c4a58a7711f6d9ecc9c70d3db792728489f395e691b0157f0cf8ffc0e07b1796ce6fde9f689108c3236412ad37c4e87a210a
 SHA512 
9d79cfecf80a7bfd4eb42ac8ee93d83140064601c16be0bed38481f7f0ea8ed2fa0aedfd16be3547f2bbd65ab483281e0ecdc0e59799040d67ecf1b4cda39246

diff --git a/app-editors/okteta/okteta-0.26.2.ebuild 
b/app-editors/okteta/okteta-0.26.2.ebuild
new file mode 100644
index 000..614b30f95d1
--- /dev/null
+++ b/app-editors/okteta/okteta-0.26.2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KDE_HANDBOOK="forceoptional"
+KDE_TEST="true"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Hex editor by KDE"
+HOMEPAGE="https://kde.org/applications/utilities/okteta
+https://utils.kde.org/projects/okteta/;
+IUSE="crypt designer"
+
+DEPEND="
+   $(add_frameworks_dep kbookmarks)
+   $(add_frameworks_dep kcmutils)
+   $(add_frameworks_dep kcodecs)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kjobwidgets)
+   $(add_frameworks_dep knewstuff)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtdeclarative)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtprintsupport)
+   $(add_qt_dep qtscript 'scripttools')
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtxml)
+   crypt? ( app-crypt/qca:2[qt5(+)] )
+   designer? ( $(add_qt_dep designer) )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   -DOMIT_EXAMPLES=ON
+   $(cmake-utils_use_find_package crypt Qca-qt5)
+   -DBUILD_DESIGNERPLUGIN=$(usex designer)
+   )
+
+   kde5_src_configure
+}
+
+src_test() {
+   local myctestargs=( -j1 )
+
+   kde5_src_test
+}



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

2019-07-02 Thread Agostino Sarubbo
commit: 7fea191afef7a4351677e3d74e29870d69670953
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 12:14:18 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 12:14:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fea191a

sci-libs/libqalculate: x86 stable wrt bug #689020

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

 sci-libs/libqalculate/libqalculate-2.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/libqalculate/libqalculate-2.8.1.ebuild 
b/sci-libs/libqalculate/libqalculate-2.8.1.ebuild
index 41f0eee990a..f48cbe607c5 100644
--- a/sci-libs/libqalculate/libqalculate-2.8.1.ebuild
+++ b/sci-libs/libqalculate/libqalculate-2.8.1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0/20"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="curl icu gnuplot readline static-libs"
 
 COMMON_DEPEND="



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

2019-07-02 Thread Agostino Sarubbo
commit: 88b67eb446b55ce2ff29f15c7fda752dbc3b38d0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 12:14:21 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 12:14:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88b67eb4

dev-libs/crypto++: x86 stable wrt bug #689038

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

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

diff --git a/dev-libs/crypto++/crypto++-8.2.0.ebuild 
b/dev-libs/crypto++/crypto++-8.2.0.ebuild
index 34010d579c8..eb8b9103b07 100644
--- a/dev-libs/crypto++/crypto++-8.2.0.ebuild
+++ b/dev-libs/crypto++/crypto++-8.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.cryptopp.com/cryptopp${PV//.}.zip;
 
 LICENSE="Boost-1.0"
 SLOT="0/8" # subslot is so version
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~x64-macos"
 IUSE="+asm static-libs"
 
 BDEPEND="app-arch/unzip"



[gentoo-commits] repo/gentoo:master commit in: sci-calculators/qalculate-gtk/

2019-07-02 Thread Agostino Sarubbo
commit: 2cf60c82acb78920a22c050a386e46fbdd68572f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 12:14:15 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 12:14:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cf60c82

sci-calculators/qalculate-gtk: x86 stable wrt bug #689020

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

 sci-calculators/qalculate-gtk/qalculate-gtk-2.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-calculators/qalculate-gtk/qalculate-gtk-2.8.1.ebuild 
b/sci-calculators/qalculate-gtk/qalculate-gtk-2.8.1.ebuild
index bbedb02a91a..f4ef70c73b2 100644
--- a/sci-calculators/qalculate-gtk/qalculate-gtk-2.8.1.ebuild
+++ b/sci-calculators/qalculate-gtk/qalculate-gtk-2.8.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~hppa ppc ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="dev-libs/glib:2



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

2019-07-02 Thread Agostino Sarubbo
commit: 6e59e9c7dd6d8ba2b99d486163a28e833f0f9ee7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 12:14:24 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 12:14:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e59e9c7

app-admin/haskell-updater: x86 stable wrt bug #689138

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

 app-admin/haskell-updater/haskell-updater-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild 
b/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild
index a5971881eb2..f551ee82251 100644
--- a/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild
+++ b/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=dev-lang/ghc-6.12.1"



[gentoo-commits] repo/gentoo:master commit in: games-board/stockfish/

2019-07-02 Thread Agostino Sarubbo
commit: b56764003f15d5e213cd65cd17e5d2ec99b3b1e2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 11:56:01 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 11:56:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5676400

games-board/stockfish: x86 stable wrt bug #689018

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

 games-board/stockfish/stockfish-10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-board/stockfish/stockfish-10.ebuild 
b/games-board/stockfish/stockfish-10.ebuild
index d6e91d7bd25..f507eeb1a67 100644
--- a/games-board/stockfish/stockfish-10.ebuild
+++ b/games-board/stockfish/stockfish-10.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://stockfishchess.org/;
 SRC_URI="https://stockfish.s3.amazonaws.com/${P}-src.zip;
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="armv7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse debug
general-32 general-64 +optimize"
 



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

2019-07-02 Thread Agostino Sarubbo
commit: 13aded077132ac6684c2e1d68e23275ca0ecd317
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 11:54:58 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 11:54:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13aded07

app-arch/cksfv: x86 stable wrt bug #688956

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

 app-arch/cksfv/cksfv-1.3.14-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/cksfv/cksfv-1.3.14-r1.ebuild 
b/app-arch/cksfv/cksfv-1.3.14-r1.ebuild
index b01f889829c..47615468c28 100644
--- a/app-arch/cksfv/cksfv-1.3.14-r1.ebuild
+++ b/app-arch/cksfv/cksfv-1.3.14-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://zakalwe.fi/~shd/foss/cksfv/files/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ~sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
 
 src_configure() {
# note: not an autoconf configure script



[gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/

2019-07-02 Thread Agostino Sarubbo
commit: b570f899afc49bfa8f04ddb7656cc5cac7ab652f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 11:55:02 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 11:55:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b570f899

net-firewall/nftables: x86 stable wrt bug #688970

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

 net-firewall/nftables/nftables-0.9.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/nftables/nftables-0.9.0-r4.ebuild 
b/net-firewall/nftables/nftables-0.9.0-r4.ebuild
index 7e2ab59fa42..6df77a71727 100644
--- a/net-firewall/nftables/nftables-0.9.0-r4.ebuild
+++ b/net-firewall/nftables/nftables-0.9.0-r4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://git.netfilter.org/nftables/snapshot/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 x86"
 IUSE="debug doc +gmp json +modern_kernel +readline"
 
 RDEPEND=">=net-libs/libmnl-1.0.3:0=



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

2019-07-02 Thread Agostino Sarubbo
commit: 8ef572fa8ac5ba7f3d1f0a4f7b7df0954e0fd6ef
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 11:54:55 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 11:54:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ef572fa

media-sound/vimpc: x86 stable wrt bug #688824

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

 media-sound/vimpc/vimpc-0.09.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/vimpc/vimpc-0.09.2.ebuild 
b/media-sound/vimpc/vimpc-0.09.2.ebuild
index 20535fa1ece..a8dc8d3d487 100644
--- a/media-sound/vimpc/vimpc-0.09.2.ebuild
+++ b/media-sound/vimpc/vimpc-0.09.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/boysetsfrog/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="boost taglib"
 
 RDEPEND="dev-libs/libpcre



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

2019-07-02 Thread Agostino Sarubbo
commit: 53d332627928e7accb79d20d94c50a9aafae1c86
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 11:55:04 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 11:55:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53d33262

net-libs/libnftnl: x86 stable wrt bug #688970

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

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

diff --git a/net-libs/libnftnl/libnftnl-1.1.3.ebuild 
b/net-libs/libnftnl/libnftnl-1.1.3.ebuild
index 9fd96030949..6342a08da37 100644
--- a/net-libs/libnftnl/libnftnl-1.1.3.ebuild
+++ b/net-libs/libnftnl/libnftnl-1.1.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://netfilter.org/projects/${PN}/files/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/11" # libnftnl.so version
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
x86"
 IUSE="examples static-libs test"
 
 RDEPEND=">=net-libs/libmnl-1.0.3"



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

2019-07-02 Thread Agostino Sarubbo
commit: 3fcf00a717fbb536e0abfd0fedbc0aeaf8a137ce
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 11:55:07 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 11:55:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fcf00a7

dev-cpp/muParser: x86 stable wrt bug #689010

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

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

diff --git a/dev-cpp/muParser/muParser-2.2.6.1.ebuild 
b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
index 222df098835..a19668ce09b 100644
--- a/dev-cpp/muParser/muParser-2.2.6.1.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
 IUSE="doc test"
 
 S=${WORKDIR}/muparser-${PV}



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

2019-07-02 Thread Lars Wendler
commit: 175a62c962114d340fde03578b7b87a4003da1f7
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Jul  2 11:50:26 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Jul  2 11:50:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=175a62c9

x11-terms/xterm: Bump to version 347

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

 x11-terms/xterm/Manifest |  1 +
 x11-terms/xterm/xterm-347.ebuild | 99 
 2 files changed, 100 insertions(+)

diff --git a/x11-terms/xterm/Manifest b/x11-terms/xterm/Manifest
index 5f2028d4cd7..412955946e8 100644
--- a/x11-terms/xterm/Manifest
+++ b/x11-terms/xterm/Manifest
@@ -1,3 +1,4 @@
 DIST xterm-327.tgz 1240131 BLAKE2B 
7f009ec995fa9f8007cd5497d13f1120440df40ef0801da9be6c708e6e9a31e5c43ddb8fe1af1abfa24ce4c1c9e769bf8d74d0bd7acf94d172ea4cc10ddc177c
 SHA512 
d9d9f3b870fea8db9ae3c076a9d85152488b2d392b9b1e2e4ebbeded287ed4911f1f63e5e035d5b3793b2506b993125c6fca437393b435a28aeb519d76147672
 DIST xterm-337.tgz 1336781 BLAKE2B 
6878154cc5d2f8547b8b8ffac0bff7603dce6d58c294b4153e169654fc441f1209c97a6d17bf3f880d0160a42e102ca8fd4a291c2b7d373269290a7bbebeeb8d
 SHA512 
fad31aa971a42cf38d3e3db2edc615b408d92226c305654b9276592c6dee075f31c7f082a3f549284f1685a31d5d9dedbda99c2c308a90bd741958f862806609
 DIST xterm-346.tgz 1366363 BLAKE2B 
5ff790bb94b973fe4e5fd684c782d6e36cacc769bc6b0152820c7ca7d41a5b96b347c4b015b3c8a2342601f71d1381de1de399c9dfd9ccc9bb371b5b772d3607
 SHA512 
ef0db8132a88b8bd980343007a61ca3c4c1b7ece23ef8e72245a17fa8305fa4dfed9cdf0613d8daf60da53fb8b03d41acd22aee04f2d51aeffb4a340268f51f7
+DIST xterm-347.tgz 1371955 BLAKE2B 
8144afe48fac33ed7fec50dc8863af992440ca045fd5bef0db15176aa0b550daa26cda8f6a06fd4e340ec5aaf562a1cbdb7e9da21d0f42c0ef1966b5b2c91d93
 SHA512 
4b90094c21b7af3042591939308538dc767d42718e9a6112115e6df12a974f8e3b7fba8d791d7c9557863fd07d08f2365fa7f759f7797f859a6fe5fe0852ab4e

diff --git a/x11-terms/xterm/xterm-347.ebuild b/x11-terms/xterm/xterm-347.ebuild
new file mode 100644
index 000..f915dffe05f
--- /dev/null
+++ b/x11-terms/xterm/xterm-347.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop flag-o-matic multilib
+
+DESCRIPTION="Terminal Emulator for X Windows"
+HOMEPAGE="https://invisible-island.net/xterm/;
+SRC_URI="ftp://ftp.invisible-island.net/${PN}/${P}.tgz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="+openpty sixel toolbar truetype unicode Xaw3d xinerama"
+
+BDEPEND="virtual/pkgconfig
+   x11-base/xorg-proto"
+DEPEND="kernel_linux? ( sys-libs/libutempter )
+   kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-lib-9.0 
sys-libs/libutempter ) )
+   media-libs/fontconfig:1.0
+   >=sys-libs/ncurses-5.7-r7:0=
+   x11-apps/xmessage
+   x11-libs/libICE
+   x11-libs/libX11
+   x11-libs/libXaw
+   x11-libs/libXft
+   x11-libs/libxkbfile
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   unicode? ( x11-apps/luit )
+   Xaw3d? ( x11-libs/libXaw3d )
+   xinerama? ( x11-libs/libXinerama )"
+RDEPEND="${DEPEND}
+   media-fonts/font-misc-misc
+   x11-apps/rgb"
+
+DOCS=( README{,.i18n} ctlseqs.txt )
+
+pkg_setup() {
+   DEFAULTS_DIR="${EPREFIX}"/usr/share/X11/app-defaults
+}
+
+src_configure() {
+   # 454736
+   # Workaround for ncurses[tinfo] until upstream fixes their buildsystem 
using
+   # something sane like pkg-config or ncurses5-config and stops guessing 
libs
+   # Everything gets linked against ncurses anyways, so don't shout
+   append-libs $(pkg-config --libs ncurses)
+
+   local myeconfargs=(
+   --disable-full-tgetent
+   --disable-imake
+   --disable-setgid
+   --disable-setuid
+   --enable-256-color
+   --enable-broken-osc
+   --enable-broken-st
+   --enable-dabbrev
+   --enable-exec-xterm
+   --enable-i18n
+   --enable-load-vt-fonts
+   --enable-logging
+   --enable-screen-dumps
+   --enable-warnings
+   --enable-wide-chars
+   --libdir="${EPREFIX}"/etc
+   --with-app-defaults="${DEFAULTS_DIR}"
+   --with-utempter
+   --with-x
+   $(use_enable openpty)
+   $(use_enable sixel sixel-graphics)
+   $(use_enable toolbar)
+   $(use_enable truetype freetype)
+   $(use_enable unicode luit)
+   $(use_enable unicode mini-luit)
+   $(use_with Xaw3d)
+   $(use_with xinerama)
+   )
+   

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

2019-07-02 Thread Agostino Sarubbo
commit: ed0d56d564fc71c6a3a2703825c7769c9ad2657f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 11:22:01 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 11:22:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed0d56d5

app-crypt/sbsigntools: x86 stable wrt bug #684642

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

 app-crypt/sbsigntools/sbsigntools-0.9.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/sbsigntools/sbsigntools-0.9.2.ebuild 
b/app-crypt/sbsigntools/sbsigntools-0.9.2.ebuild
index 91acf5a7e33..ccb45d15616 100644
--- a/app-crypt/sbsigntools/sbsigntools-0.9.2.ebuild
+++ b/app-crypt/sbsigntools/sbsigntools-0.9.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/jejb/${PN}.git/snapshot
 
 LICENSE="GPL-3 LGPL-3 LGPL-2.1 CC0-1.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 RDEPEND="



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

2019-07-02 Thread Agostino Sarubbo
commit: e99c67a7c32be0538412f3d3e4dc83c0eee0b26c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 11:18:35 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 11:18:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e99c67a7

media-libs/dav1d: amd64 stable wrt bug #688642

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

 media-libs/dav1d/dav1d-0.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/dav1d/dav1d-0.3.1.ebuild 
b/media-libs/dav1d/dav1d-0.3.1.ebuild
index 8a9c0a90c7f..e706c77f900 100644
--- a/media-libs/dav1d/dav1d-0.3.1.ebuild
+++ b/media-libs/dav1d/dav1d-0.3.1.ebuild
@@ -8,7 +8,7 @@ if [[ "${PV}" == "" ]]; then
SCM="git-r3"
EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d;
 else
-   KEYWORDS="~amd64 ~arm ~arm64 ppc64 x86"
+   KEYWORDS="amd64 ~arm ~arm64 ppc64 x86"

SRC_URI="https://code.videolan.org/videolan/dav1d/-/archive/${PV}/${P}.tar.bz2;
 fi
 



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

2019-07-02 Thread Agostino Sarubbo
commit: 272544d28e0319c388fc40abae94c9db2ebd990f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 11:19:05 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 11:19:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=272544d2

media-video/vlc: amd64 stable wrt bug #688642

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

 media-video/vlc/vlc-3.0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/vlc/vlc-3.0.7.1.ebuild 
b/media-video/vlc/vlc-3.0.7.1.ebuild
index 87424126c6c..f3499f47567 100644
--- a/media-video/vlc/vlc-3.0.7.1.ebuild
+++ b/media-video/vlc/vlc-3.0.7.1.ebuild
@@ -19,7 +19,7 @@ else
else

SRC_URI="https://download.videolan.org/pub/videolan/testing/${MY_P}/${MY_P}.tar.xz;
fi
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 -sparc x86 ~x86-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 -sparc x86 ~x86-fbsd"
 fi
 inherit autotools flag-o-matic toolchain-funcs virtualx xdg
 



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2019-07-02 Thread Fabian Groffen
commit: e55d105d94506b77de1814f52346b0a4d126f129
Author: Fabian Groffen  gentoo  org>
AuthorDate: Tue Jul  2 11:10:22 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Tue Jul  2 11:11:13 2019 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=e55d105d

scripts/bootstrap-prefix: bump bootstrap portage

This is necessary for ppc-macos.

Signed-off-by: Fabian Groffen  gentoo.org>

 scripts/bootstrap-prefix.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index f8ce6c86c5..25786ed6d4 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -666,8 +666,8 @@ bootstrap_portage() {
# STABLE_PV that is known to work. Intended for power users only.
## It is critical that STABLE_PV is the lastest (non-masked) version 
that is
## included in the snapshot for bootstrap_tree.
-   STABLE_PV="2.3.67"
-   [[ ${TESTING_PV} == latest ]] && TESTING_PV="2.3.67"
+   STABLE_PV="2.3.68"
+   [[ ${TESTING_PV} == latest ]] && TESTING_PV="2.3.68"
PV="${TESTING_PV:-${STABLE_PV}}"
A=prefix-portage-${PV}.tar.bz2
einfo "Bootstrapping ${A%-*}"



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

2019-07-02 Thread Lars Wendler
commit: ae36884d5dca37b12e5621697c17afef6a5d4d34
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Jul  2 10:46:57 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Jul  2 10:47:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae36884d

media-libs/freetype: Bump to version 2.10.1

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

 media-libs/freetype/Manifest   |   3 +
 media-libs/freetype/freetype-2.10.1.ebuild | 240 +
 2 files changed, 243 insertions(+)

diff --git a/media-libs/freetype/Manifest b/media-libs/freetype/Manifest
index 0ef428f3548..8883fcd7599 100644
--- a/media-libs/freetype/Manifest
+++ b/media-libs/freetype/Manifest
@@ -1,6 +1,9 @@
 DIST freetype-2.10.0.tar.bz2 2743740 BLAKE2B 
def3e6393a4a26cd063df1cdfa676677547a9f68a95b8f246c79a7ff88d3da842b214770cd60e359d42692d6c002ba4effab03905034aa67a841af4c5d7a7157
 SHA512 
dfad66f419ea9577f09932e0730c0c887bdcbdbc8152fa7477a0c39d69a5b68476761deed6864ddcc5cf18d100a7a3f728049768e24afcb04b1a74b25b6acf7e
+DIST freetype-2.10.1.tar.xz 2378784 BLAKE2B 
7c177d3ca9ad923dc9534719529686c4242d87d85bfbc32fa8a12d0be87aceb4960ec84b84e433413312de17ac24a8ed2a9d092efa25a39108d28e2051ada574
 SHA512 
c7a565b0ab3dce81927008a6965d5c7540f0dc973fcefdc1677c2e65add8668b4701c2958d25593cb41f706f4488765365d40b93da71dbfa72907394f28b2650
 DIST freetype-2.9.1.tar.bz2 1926385 BLAKE2B 
f165d638e0f49749a2640aabba96aca20441c76028cc18bb2482fd620a29dd368bc55ea020c1e74fa6effe9fed3c59a53c7fdf2dd6021f445032b7007201948e
 SHA512 
856766e1f3f4c7dc8afb2b5ee991138c8b642c6a6e5e007cd2bc04ae58bde827f082557cf41bf541d97e8485f7fd064d10390d1ee597f19d1daed6c152e27708
 DIST freetype-doc-2.10.0.tar.bz2 2130601 BLAKE2B 
7814b8ad53343dc72f0b11b29224f9755686e504d099c53b76faefd9b38d207222c092ea549b25c7842956f13067a09cce460d33cfff1aace537f0044df627ac
 SHA512 
e0902983030b7b67443ca88f29a8bb72662de706ddff81309c66b6738b26c5d11dbd00eb75795851ddcd9f93ce05981623884afad096c0defd08bd544f5266d6
+DIST freetype-doc-2.10.1.tar.xz 2079092 BLAKE2B 
7d2b8ccdfeba71f1dab57f31cfb96a21afbf628ad329f798e9ac25f6e57cc662db67040a9f7c63df2d43b1c0a169c37ca0cd82bfa2d95ef382b16066859dc5b3
 SHA512 
7260d0d6b1bd04f9940b456b20d8d8157fc528f5b6a5c2028fe57008bee3e8d0434bdf89589e2e521b04e3e2c43627155549091d3aaf06384b654f795458991e
 DIST freetype-doc-2.9.1.tar.bz2 2130292 BLAKE2B 
667032fa447fbc28c0f753df3ade7a07a4f8d4d26cdd00fed2fa0e8098e9d6a083572608b7d06446ea91baa932e3c6d18beb1f86f6b549a8cd2c07a2df567da0
 SHA512 
1668f02f67e6e047df04e5e2fccb564cd9af780ec9b3c4878109868302a83eaec7b627390ff82c3e875122400e6f20fc690936a1e4964dfa65143e5309fa22d4
 DIST ft2demos-2.10.0.tar.bz2 237599 BLAKE2B 
722e586f412059b8b29a26c832037a860dc1b26afed85b8b0aa5fc71245293f45d19b379c54993f64ba4b8de329799834656d00fc4b6f6610ddd0b08cfd05449
 SHA512 
d48cbabd5cc673e0af2e0c4056dba95cee8e08092f881958c6908ea2d4da7104ca81b701d47a17640ac36cbdfd8aa274cc26353bb43f026f55c00d565f2ad641
+DIST ft2demos-2.10.1.tar.xz 229228 BLAKE2B 
015448f3f246fc7772b10f55037450866323e1b7410cf840fa15fa1da3e6a1c980167bfedbe197b6e6637a8e1dcef1f4fd83174e47f33f090d554fab2c40380c
 SHA512 
f1c06fae3d5653d6d8f8d630e531d47b7be4429b122dc826c80791953e61df7374dfc151f90519fe110f78fcbf592d9dbd9e96c83200730a6f04e42760cc3142
 DIST ft2demos-2.9.1.tar.bz2 233462 BLAKE2B 
c689942b222b2c600b5ec3963791621ae87acefb9b01caa5dc35af52525d03e3a1094e48c0789d5eaabbce787bddd7c3055e12454e54ea3c7fae92bca47614de
 SHA512 
38bee59184b20c2eb983deaa5c1f241e31c1b4793e47dc06b1b419601489cfece3b11fde4cf4fb6c5af12254ad0c1ce9a1547885c208e8e715655e9c48f22a46

diff --git a/media-libs/freetype/freetype-2.10.1.ebuild 
b/media-libs/freetype/freetype-2.10.1.ebuild
new file mode 100644
index 000..d7060a13e1c
--- /dev/null
+++ b/media-libs/freetype/freetype-2.10.1.ebuild
@@ -0,0 +1,240 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic libtool multilib-build multilib-minimal toolchain-funcs
+
+DESCRIPTION="A high-quality and portable font engine"
+HOMEPAGE="https://www.freetype.org/;
+IUSE="X +adobe-cff bindist bzip2 +cleartype_hinting debug fontforge harfbuzz 
infinality png static-libs utils"
+
+if [[ "${PV}" !=  ]] ; then
+   SRC_URI="mirror://sourceforge/freetype/${P/_/}.tar.xz
+   mirror://nongnu/freetype/${P/_/}.tar.xz
+   utils?  ( mirror://sourceforge/freetype/ft2demos-${PV}.tar.xz
+   mirror://nongnu/freetype/ft2demos-${PV}.tar.xz )
+   doc?( mirror://sourceforge/freetype/${PN}-doc-${PV}.tar.xz
+   mirror://nongnu/freetype/${PN}-doc-${PV}.tar.xz )"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris ~x86-winnt"
+

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

2019-07-02 Thread Lars Wendler
commit: b826fdb3cdfd42750305cf7627c6a5e007dcd7ba
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Jul  2 10:47:38 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Jul  2 10:47:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b826fdb3

media-libs/freetype: Synced live ebuild

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

 media-libs/freetype/freetype-.ebuild | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/media-libs/freetype/freetype-.ebuild 
b/media-libs/freetype/freetype-.ebuild
index 968731b2230..d7060a13e1c 100644
--- a/media-libs/freetype/freetype-.ebuild
+++ b/media-libs/freetype/freetype-.ebuild
@@ -10,12 +10,12 @@ HOMEPAGE="https://www.freetype.org/;
 IUSE="X +adobe-cff bindist bzip2 +cleartype_hinting debug fontforge harfbuzz 
infinality png static-libs utils"
 
 if [[ "${PV}" !=  ]] ; then
-   SRC_URI="mirror://sourceforge/freetype/${P/_/}.tar.bz2
-   mirror://nongnu/freetype/${P/_/}.tar.bz2
-   utils?  ( mirror://sourceforge/freetype/ft2demos-${PV}.tar.bz2
-   mirror://nongnu/freetype/ft2demos-${PV}.tar.bz2 )
-   doc?( mirror://sourceforge/freetype/${PN}-doc-${PV}.tar.bz2
-   mirror://nongnu/freetype/${PN}-doc-${PV}.tar.bz2 )"
+   SRC_URI="mirror://sourceforge/freetype/${P/_/}.tar.xz
+   mirror://nongnu/freetype/${P/_/}.tar.xz
+   utils?  ( mirror://sourceforge/freetype/ft2demos-${PV}.tar.xz
+   mirror://nongnu/freetype/ft2demos-${PV}.tar.xz )
+   doc?( mirror://sourceforge/freetype/${PN}-doc-${PV}.tar.xz
+   mirror://nongnu/freetype/${PN}-doc-${PV}.tar.xz )"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris ~x86-winnt"
IUSE+=" doc"
 else



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

2019-07-02 Thread Agostino Sarubbo
commit: 2342abaa1eafe9e64307b6fea54e92ba7f2eb5a1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:40:34 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:40:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2342abaa

dev-db/mariadb: ppc64 stable wrt bug #679024

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

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

diff --git a/dev-db/mariadb/mariadb-10.1.38-r1.ebuild 
b/dev-db/mariadb/mariadb-10.1.38-r1.ebuild
index 59b977d1815..b92d23a790a 100644
--- a/dev-db/mariadb/mariadb-10.1.38-r1.ebuild
+++ b/dev-db/mariadb/mariadb-10.1.38-r1.ebuild
@@ -40,7 +40,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2019-07-02 Thread Agostino Sarubbo
commit: bc2c7c86fffcec068e042b83339be1cd7b5c1fa3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:36:52 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:36:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc2c7c86

dev-db/mariadb: ppc64 stable wrt bug #670388

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

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

diff --git a/dev-db/mariadb/mariadb-10.1.37.ebuild 
b/dev-db/mariadb/mariadb-10.1.37.ebuild
index 613cf33056b..bedd1b7a1ba 100644
--- a/dev-db/mariadb/mariadb-10.1.37.ebuild
+++ b/dev-db/mariadb/mariadb-10.1.37.ebuild
@@ -40,7 +40,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2019-07-02 Thread Agostino Sarubbo
commit: 1c126a07edce69457ca6152f19bd9a03a4dd07ec
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:33:03 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:33:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c126a07

net-libs/libnftnl: amd64 stable wrt bug #688970

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

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

diff --git a/net-libs/libnftnl/libnftnl-1.1.3.ebuild 
b/net-libs/libnftnl/libnftnl-1.1.3.ebuild
index ad331225f20..9fd96030949 100644
--- a/net-libs/libnftnl/libnftnl-1.1.3.ebuild
+++ b/net-libs/libnftnl/libnftnl-1.1.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://netfilter.org/projects/${PN}/files/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/11" # libnftnl.so version
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 IUSE="examples static-libs test"
 
 RDEPEND=">=net-libs/libmnl-1.0.3"



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

2019-07-02 Thread Agostino Sarubbo
commit: f8a3869e58e845f324c4d2f39bd23d285762
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:32:50 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:32:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8a3869e

app-arch/cksfv: amd64 stable wrt bug #688956

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

 app-arch/cksfv/cksfv-1.3.14-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/cksfv/cksfv-1.3.14-r1.ebuild 
b/app-arch/cksfv/cksfv-1.3.14-r1.ebuild
index a10f618bcab..b01f889829c 100644
--- a/app-arch/cksfv/cksfv-1.3.14-r1.ebuild
+++ b/app-arch/cksfv/cksfv-1.3.14-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://zakalwe.fi/~shd/foss/cksfv/files/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~hppa ia64 ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
+KEYWORDS="alpha amd64 ~hppa ia64 ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
 
 src_configure() {
# note: not an autoconf configure script



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

2019-07-02 Thread Agostino Sarubbo
commit: ade34cd211398ec12bf1756997aa8cbc7a14317f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:32:09 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:32:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ade34cd2

app-admin/haskell-updater: amd64 stable wrt bug #689138

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

 app-admin/haskell-updater/haskell-updater-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild 
b/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild
index 9bdd7f451d1..a5971881eb2 100644
--- a/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild
+++ b/app-admin/haskell-updater/haskell-updater-1.3.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=dev-lang/ghc-6.12.1"



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

2019-07-02 Thread Agostino Sarubbo
commit: 88a68d200ed053d6bfa4bb247cd818e4a8bdb970
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:32:46 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:32:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88a68d20

media-sound/vimpc: amd64 stable wrt bug #688824

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

 media-sound/vimpc/vimpc-0.09.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/vimpc/vimpc-0.09.2.ebuild 
b/media-sound/vimpc/vimpc-0.09.2.ebuild
index 04c0f9dd274..20535fa1ece 100644
--- a/media-sound/vimpc/vimpc-0.09.2.ebuild
+++ b/media-sound/vimpc/vimpc-0.09.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/boysetsfrog/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="boost taglib"
 
 RDEPEND="dev-libs/libpcre



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

2019-07-02 Thread Agostino Sarubbo
commit: 05660be259fb34ae24386b89a5927c7f08d70f06
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:32:17 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:32:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05660be2

app-crypt/sbsigntools: amd64 stable wrt bug #684642

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

 app-crypt/sbsigntools/sbsigntools-0.9.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/sbsigntools/sbsigntools-0.9.2.ebuild 
b/app-crypt/sbsigntools/sbsigntools-0.9.2.ebuild
index f00fc00b3b9..91acf5a7e33 100644
--- a/app-crypt/sbsigntools/sbsigntools-0.9.2.ebuild
+++ b/app-crypt/sbsigntools/sbsigntools-0.9.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/jejb/${PN}.git/snapshot
 
 LICENSE="GPL-3 LGPL-3 LGPL-2.1 CC0-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE=""
 
 RDEPEND="



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

2019-07-02 Thread Agostino Sarubbo
commit: fae14342c6ada3c558cd57f48fd0c197cd3e3ed5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:31:50 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:31:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fae14342

net-libs/nghttp2: amd64 stable wrt bug #689028

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

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

diff --git a/net-libs/nghttp2/nghttp2-1.39.1.ebuild 
b/net-libs/nghttp2/nghttp2-1.39.1.ebuild
index 62762136e02..29ffbf47b0b 100644
--- a/net-libs/nghttp2/nghttp2-1.39.1.ebuild
+++ b/net-libs/nghttp2/nghttp2-1.39.1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/nghttp2/nghttp2/releases/download/v${PV}/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 
s390 ~sh ~sparc x86 ~amd64-fbsd"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 
~sh ~sparc x86 ~amd64-fbsd"
 fi
 
 DESCRIPTION="HTTP/2 C Library"



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

2019-07-02 Thread Agostino Sarubbo
commit: 8277cdb12750cf23825e51d431a47f0cd24a9204
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:32:39 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:32:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8277cdb1

media-video/x264-encoder: amd64 stable wrt bug #688712

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

 media-video/x264-encoder/x264-encoder-0.0.20190214.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/x264-encoder/x264-encoder-0.0.20190214.ebuild 
b/media-video/x264-encoder/x264-encoder-0.0.20190214.ebuild
index 1b388f29833..83503e08e45 100644
--- a/media-video/x264-encoder/x264-encoder-0.0.20190214.ebuild
+++ b/media-video/x264-encoder/x264-encoder-0.0.20190214.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} ==  ]]; then
 else
MY_P="x264-snapshot-$(ver_cut 3)-2245"

SRC_URI="http://download.videolan.org/pub/videolan/x264/snapshots/${MY_P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+   KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
S="${WORKDIR}/${MY_P}"
 fi
 



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

2019-07-02 Thread Agostino Sarubbo
commit: 4c703d8162fb9e33756fa18941158f79f9433ec0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:31:44 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:31:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c703d81

sci-libs/libqalculate: amd64 stable wrt bug #689020

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

 sci-libs/libqalculate/libqalculate-2.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/libqalculate/libqalculate-2.8.1.ebuild 
b/sci-libs/libqalculate/libqalculate-2.8.1.ebuild
index eee3872123c..41f0eee990a 100644
--- a/sci-libs/libqalculate/libqalculate-2.8.1.ebuild
+++ b/sci-libs/libqalculate/libqalculate-2.8.1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0/20"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="curl icu gnuplot readline static-libs"
 
 COMMON_DEPEND="



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

2019-07-02 Thread Ulrich Müller
commit: fc95ca3d222b50ac1e43f4b22742d3cc7a79619f
Author: Ulrich Müller  gentoo  org>
AuthorDate: Tue Jul  2 10:30:41 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Tue Jul  2 10:33:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc95ca3d

profiles: Drop obsolete emacs[imagemagick] mask on arm64.

Signed-off-by: Ulrich Müller  gentoo.org>

 profiles/arch/arm64/package.use.mask | 6 --
 1 file changed, 6 deletions(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index d6f9751a3cf..2c7d35ac8e1 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -84,12 +84,6 @@ dev-lang/rust-bin doc
 # sci-libs/oce not yet keyworded
 sci-electronics/kicad occ oce ngspice
 
-# Ulrich Müller  (2018-09-02)
-# =media-gfx/imagemagick-6* not keyworded
- (2018-07-18)
 # dev-python/pandas not keyworded and test uses pandas
 dev-python/networkx pandas test



[gentoo-commits] repo/gentoo:master commit in: sci-calculators/qalculate-gtk/

2019-07-02 Thread Agostino Sarubbo
commit: 3127c3fd9d63c614cdaab2245c6ebc9ea8f7f187
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:31:37 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:31:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3127c3fd

sci-calculators/qalculate-gtk: amd64 stable wrt bug #689020

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

 sci-calculators/qalculate-gtk/qalculate-gtk-2.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-calculators/qalculate-gtk/qalculate-gtk-2.8.1.ebuild 
b/sci-calculators/qalculate-gtk/qalculate-gtk-2.8.1.ebuild
index ea730648ebc..bbedb02a91a 100644
--- a/sci-calculators/qalculate-gtk/qalculate-gtk-2.8.1.ebuild
+++ b/sci-calculators/qalculate-gtk/qalculate-gtk-2.8.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/Qalculate/${PN}/releases/download/v${PV}/${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~hppa ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="dev-libs/glib:2



[gentoo-commits] repo/gentoo:master commit in: games-board/stockfish/

2019-07-02 Thread Agostino Sarubbo
commit: 1d7d16d7ddfabe934ef8f0745731fad2a3e0fe47
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:33:13 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:33:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d7d16d7

games-board/stockfish: amd64 stable wrt bug #689018

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

 games-board/stockfish/stockfish-10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-board/stockfish/stockfish-10.ebuild 
b/games-board/stockfish/stockfish-10.ebuild
index bf574d4333b..d6e91d7bd25 100644
--- a/games-board/stockfish/stockfish-10.ebuild
+++ b/games-board/stockfish/stockfish-10.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://stockfishchess.org/;
 SRC_URI="https://stockfish.s3.amazonaws.com/${P}-src.zip;
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="armv7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse debug
general-32 general-64 +optimize"
 



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

2019-07-02 Thread Agostino Sarubbo
commit: 1040b33076405b9f87daace931f8c583a340edd5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:31:55 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:31:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1040b330

dev-libs/crypto++: amd64 stable wrt bug #689038

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

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

diff --git a/dev-libs/crypto++/crypto++-8.2.0.ebuild 
b/dev-libs/crypto++/crypto++-8.2.0.ebuild
index be40704c5f3..34010d579c8 100644
--- a/dev-libs/crypto++/crypto++-8.2.0.ebuild
+++ b/dev-libs/crypto++/crypto++-8.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.cryptopp.com/cryptopp${PV//.}.zip;
 
 LICENSE="Boost-1.0"
 SLOT="0/8" # subslot is so version
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
 IUSE="+asm static-libs"
 
 BDEPEND="app-arch/unzip"



[gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/

2019-07-02 Thread Agostino Sarubbo
commit: 404e34e51b2e81010fa466064f64b709c097baca
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:32:58 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:32:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=404e34e5

net-firewall/nftables: amd64 stable wrt bug #688970

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

 net-firewall/nftables/nftables-0.9.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/nftables/nftables-0.9.0-r4.ebuild 
b/net-firewall/nftables/nftables-0.9.0-r4.ebuild
index 0529f229347..7e2ab59fa42 100644
--- a/net-firewall/nftables/nftables-0.9.0-r4.ebuild
+++ b/net-firewall/nftables/nftables-0.9.0-r4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://git.netfilter.org/nftables/snapshot/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~x86"
 IUSE="debug doc +gmp json +modern_kernel +readline"
 
 RDEPEND=">=net-libs/libmnl-1.0.3:0=



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

2019-07-02 Thread Agostino Sarubbo
commit: 9367109309a728bbcfdca23ef01ca5a5b71571ea
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:32:32 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:32:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93671093

media-libs/x264: amd64 stable wrt bug #688712

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

 media-libs/x264/x264-0.0.20190214.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/x264/x264-0.0.20190214.ebuild 
b/media-libs/x264/x264-0.0.20190214.ebuild
index 935de3c67ca..cee949670bd 100644
--- a/media-libs/x264/x264-0.0.20190214.ebuild
+++ b/media-libs/x264/x264-0.0.20190214.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
 else
MY_P="x264-snapshot-$(ver_cut 3)-2245"

SRC_URI="https://download.videolan.org/pub/videolan/x264/snapshots/${MY_P}.tar.bz2;
-   KEYWORDS="alpha ~amd64 ~arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+   KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
S="${WORKDIR}/${MY_P}"
 fi
 



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

2019-07-02 Thread Agostino Sarubbo
commit: ee7f5d77601f86f8acc4ce84429a0a9741fe1a48
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:32:26 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:32:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee7f5d77

net-misc/httpie: amd64 stable wrt bug #685466

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

 net-misc/httpie/httpie-1.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/httpie/httpie-1.0.2-r1.ebuild 
b/net-misc/httpie/httpie-1.0.2-r1.ebuild
index 93877935221..aac3979a899 100644
--- a/net-misc/httpie/httpie-1.0.2-r1.ebuild
+++ b/net-misc/httpie/httpie-1.0.2-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]



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

2019-07-02 Thread Agostino Sarubbo
commit: b8a54b64646e4dcf64bffd40f0fe195121db0698
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:31:30 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:31:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8a54b64

mail-mta/postfix: amd64 stable wrt bug #683132

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

 mail-mta/postfix/postfix-3.4.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-mta/postfix/postfix-3.4.5-r1.ebuild 
b/mail-mta/postfix/postfix-3.4.5-r1.ebuild
index cb89d6365da..84ded6ddc28 100644
--- a/mail-mta/postfix/postfix-3.4.5-r1.ebuild
+++ b/mail-mta/postfix/postfix-3.4.5-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="${MY_URI}/${MY_SRC}.tar.gz"
 
 LICENSE="|| ( IBM EPL-2.0 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 
~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 
~x86-fbsd"
 IUSE="+berkdb cdb dovecot-sasl +eai hardened ldap ldap-bind libressl lmdb 
memcached mbox mysql nis pam postgres sasl selinux sqlite ssl"
 
 DEPEND=">=dev-libs/libpcre-3.4



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

2019-07-02 Thread Agostino Sarubbo
commit: 0242e9baf5c604880325a7d2203591561d168920
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:33:08 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:33:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0242e9ba

dev-cpp/muParser: amd64 stable wrt bug #689010

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

 dev-cpp/muParser/muParser-2.2.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/muParser/muParser-2.2.6.1.ebuild 
b/dev-cpp/muParser/muParser-2.2.6.1.ebuild
index a5025c1f8c2..222df098835 100644
--- a/dev-cpp/muParser/muParser-2.2.6.1.ebuild
+++ b/dev-cpp/muParser/muParser-2.2.6.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=5
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/beltoforion/muparser/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
 IUSE="doc test"
 
 S=${WORKDIR}/muparser-${PV}



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

2019-07-02 Thread Agostino Sarubbo
commit: f9bd6b9d226ce9be82de2e6a074599cea44f463c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jul  2 10:32:01 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jul  2 10:32:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9bd6b9d

dev-util/numdiff: amd64 stable wrt bug #689066

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

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

diff --git a/dev-util/numdiff/numdiff-5.9.0.ebuild 
b/dev-util/numdiff/numdiff-5.9.0.ebuild
index 78603d7846f..aeea42ca7bb 100644
--- a/dev-util/numdiff/numdiff-5.9.0.ebuild
+++ b/dev-util/numdiff/numdiff-5.9.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://savannah.nongnu.org/download/numdiff/${P}.tar.gz;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="+nls +gmp"
 
 RDEPEND="



  1   2   >