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

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

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

Fix automagic
Fix desktop file
Fix htmldir

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

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

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

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

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

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

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

x11-misc/screengrab: version bump to 1.101

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

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

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

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



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

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

kde-apps/kalzium: added ~arm64

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

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

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



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

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

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

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

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

diff --git a/media-libs/sdl-mixer/sdl-mixer-1.2.12-r4.ebuild 
b/media-libs/sdl-mixer/sdl-mixer-1.2.12-r4.ebuild
index 789b3348622..8d73e8e50b6 100644
--- a/media-libs/sdl-mixer/sdl-mixer-1.2.12-r4.ebuild
+++ b/media-libs/sdl-mixer/sdl-mixer-1.2.12-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -28,7 +28,7 @@ REQUIRED_USE="
 RDEPEND=">=media-libs/libsdl-1.2.15-r4[${MULTILIB_USEDEP}]
flac? ( >=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}] )
midi? (
-   fluidsynth? ( 
>=media-sound/fluidsynth-1.1.6-r1[${MULTILIB_USEDEP}] )
+   fluidsynth? ( 
>=media-sound/fluidsynth-1.1.6-r1:=[${MULTILIB_USEDEP}] )
timidity? ( media-sound/timidity++ )
)
mp3? (



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

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

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

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

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

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



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

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

profile: arm64: added kde-plasma/discover firmware

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

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

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



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

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

media-sound/qsynth: 0.5.4 version bump

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

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

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

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



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

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

kde-plasma/plasma-meta: added ~arm64

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

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

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



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

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

dev-ml/facile: added ~arm64

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

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

diff --git a/dev-ml/facile/facile-1.1.3.ebuild 
b/dev-ml/facile/facile-1.1.3.ebuild
index 3027374ee74..2eb0fbb4b30 100644
--- a/dev-ml/facile/facile-1.1.3.ebuild
+++ b/dev-ml/facile/facile-1.1.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ 
SRC_URI="http://opti.recherche.enac.fr/facile/distrib/${P}.tar.gz";
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
 
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm64 hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"



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

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

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

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

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

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



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

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

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

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

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

diff --git a/media-sound/qsynth/qsynth-0.5.3.ebuild 
b/media-sound/qsynth/qsynth-0.5.3.ebuild
index 1abb5201564..43eae6aaae2 100644
--- a/media-sound/qsynth/qsynth-0.5.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.5.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -18,7 +18,7 @@ RDEPEND="
dev-qt/qtcore:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
-   media-sound/fluidsynth[jack?,alsa?,pulseaudio?]
+   media-sound/fluidsynth:=[jack?,alsa?,pulseaudio?]
x11-libs/libX11"
 DEPEND="${RDEPEND}
dev-qt/linguist-tools:5



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

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

kde-plasma/discover: added ~arm64

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

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

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



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

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

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

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

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

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



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

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

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

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

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

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



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

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

media-sound/drumstick: 1.1.2 version bump

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

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

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

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



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

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

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

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

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

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

diff --git a/media-plugins/audacious-plugins/audacious-plugins-3.9-r2.ebuild 
b/media-plugins/audacious-plugins/audacious-plugins-3.9-r2.ebuild
index 1c297c5c68a..82afc3d0bfc 100644
--- a/media-plugins/audacious-plugins/audacious-plugins-3.9-r2.ebuild
+++ b/media-plugins/audacious-plugins/audacious-plugins-3.9-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -55,7 +55,7 @@ RDEPEND="
>=media-libs/flac-1.2.1-r1
>=media-libs/libvorbis-1.0
)
-   fluidsynth? ( media-sound/fluidsynth )
+   fluidsynth? ( media-sound/fluidsynth:= )
http? ( >=net-libs/neon-0.26.4 )
jack? (
>=media-libs/bio2jack-0.4

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



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

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

kde-apps/kdeedu-meta: added ~arm64

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

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

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



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

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

media-plugins/calf: Sync with 0.90.1 changes

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

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

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



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

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

net-dialup/freeradius: drop v.3.0.15.

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

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

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

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

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

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

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

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

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

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

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

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

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

net-dialup/freeradius: drop libtool from RDEPEND.

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

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

diff --git a/net-dialup/freeradius/freeradius-3.0.17.ebuild 
b/net-dialup/freeradius/freeradius-3.0.17.ebuild
index 8aa7879f35c..4d25cae11be 100644
--- a/net-dialup/freeradius/freeradius-3.0.17.ebuild
+++ b/net-dialup/freeradius/freeradius-3.0.17.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -30,7 +30,6 @@ RESTRICT="test firebird? ( bindist )"
 #   
(http://lists.freeradius.org/pipermail/freeradius-devel/2018-October/013228.html)
 RDEPEND="!net-dialup/cistronradius
!net-dialup/gnuradius
-   sys-devel/libtool
dev-lang/perl:=
sys-libs/gdbm:=
sys-libs/talloc



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

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

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

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

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

diff --git a/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild 
b/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild
index b16df248b56..1273e920f09 100644
--- a/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild
+++ b/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,7 +20,7 @@ RDEPEND="
fontconfig? ( media-libs/fontconfig:1.0= )
g15? ( app-misc/g15daemon )
graphicsmagick? ( media-gfx/graphicsmagick:0/1.3 )
-   imagemagick? ( media-gfx/imagemagick:0/6.9.10.11 )
+   imagemagick? ( media-gfx/imagemagick:0/6.9.10.28 )
lcd_devices_ax206dpf? ( virtual/libusb:0 )
lcd_devices_picolcd_256x64? ( virtual/libusb:0 )
lcd_devices_vnc? ( net-libs/libvncserver )



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

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

sys-block/partitionmanager: Raise FRAMEWORKS_MINIMAL to 5.56

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

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

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



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

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

sys-libs/kpmcore: Raise FRAMEWORKS_MINIMAL to 5.56

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

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

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



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

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

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

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

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

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



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

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

dev-libs/appstream: 0.12.6 version bump

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

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

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

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



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

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

dev-util/clazy: Drop 1.4

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

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

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

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



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

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

media-sound/sidplayfp: Drop 1.4.0

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

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

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

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



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

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

media-gfx/jpegoptim: Drop 1.4.4

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

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

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

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



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

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

media-sound/sidplay: Drop 2.0.9 (r0)

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

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

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



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

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

media-libs/libsidplayfp: Drop 1.8.1

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

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

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

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



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

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

Documentation: Drop KDE Frameworks 5.55

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

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

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

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

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

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

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

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

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

sets: Drop obsolete kde-frameworks-5.5

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

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

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

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

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

sci-astronomy/kstars: Drop 3.1.0

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

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

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

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



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

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

app-office/libreoffice: EAPI-7 bump

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

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

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

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



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

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

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

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

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

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



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

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

app-office/libreoffice: Populate BDEPEND

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

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

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

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

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

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

dev-qt/qtxmlpatterns: Drop 5.12.1 (r0)

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

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

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

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

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

sys-apps/systemd: remove old

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

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

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

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

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

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

media-video/mpv: sync live ebuild

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

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

diff --git a/media-video/mpv/mpv-.ebuild b/media-video/mpv/mpv-.ebuild
index 9607105c7d3..54630e9e978 100644
--- a/media-video/mpv/mpv-.ebuild
+++ b/media-video/mpv/mpv-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -342,6 +342,8 @@ pkg_postinst() {
elog "please rebuild app-shells/mpv-bash-completion."
fi
 
+   elog "If you want URL support, please install net-misc/youtube-dl."
+
gnome2_icon_cache_update
xdg_desktop_database_update
 }



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

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

dev-python/cherrypy: remove 17.4.1 broken version

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

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

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



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

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

dev-python/cherrypy: remove broken 18.1.0

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

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

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



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

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

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

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

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

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



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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

media-video/mpv: drop old

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

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

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

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

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

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

www-servers/tomcat: remove unused patches

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

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

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

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

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

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

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

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

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

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



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

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

sys-auth/munge: remove unused patch

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

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

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

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

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

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

net-analyzer/arpwatch: use HTTPS

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

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

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

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

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



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

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

net-libs/libflowmanager: use HTTPS

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

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

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



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

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

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

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

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

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

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



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

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

net-misc/openssh: remove unused patches

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

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

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

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

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



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

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

dev-vcs/git: remove unused patch

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

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

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



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

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

net-libs/libprotoident: use HTTPS

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

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

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

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



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

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

net-libs/libnetfilter_conntrack: use HTTPS

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

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

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



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

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

net-libs/libtrace: use HTTPS

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

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

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



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

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

net-analyzer/ndoutils: use HTTPS

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

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

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



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

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

sys-apps/ripgrep: add ~ppc64

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

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

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



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

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

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

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

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

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

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



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

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

dev-lang/rust-bin: fix qa warnings

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

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

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

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

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

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



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

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

New tag: eselect-rust-20190311




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

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

Add cleanup action

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

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

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

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

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



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

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

Mark "unset" action as deprecated

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

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

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

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

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



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

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

bump version to 20190311

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

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

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



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

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

Update header & maintainer

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

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



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

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

Generate & add ChangeLog when creating dist target

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

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

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



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

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

find_targets(): sort by version

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

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

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



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

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

Add and make use of find_missing_broken_symlinks()

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

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

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

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

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

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



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

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

Use variables for common used paths

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

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

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



[gentoo-commits] proj/qt:master commit in: dev-qt/qtspeech/files/, dev-qt/qtspeech/

2019-03-10 Thread Michael Palimaka
commit: c5cba19e6c62c250b3ff6c75ee5c0967457c01d8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Mar 11 06:03:28 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Mar 11 06:03:46 2019 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=c5cba19e

dev-qt/qtspeech: improve patch avoiding build failure with no qtgui

Bug: https://bugs.gentoo.org/679210
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Michael Palimaka  gentoo.org>

 ...qtspeech-5.9.4-nogui.patch => qtspeech-5.12.1-nogui.patch} | 11 +++
 dev-qt/qtspeech/qtspeech-5.12..ebuild |  2 +-
 dev-qt/qtspeech/qtspeech-5.13..ebuild |  2 +-
 dev-qt/qtspeech/qtspeech-5..ebuild|  2 +-
 4 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/dev-qt/qtspeech/files/qtspeech-5.9.4-nogui.patch 
b/dev-qt/qtspeech/files/qtspeech-5.12.1-nogui.patch
similarity index 62%
rename from dev-qt/qtspeech/files/qtspeech-5.9.4-nogui.patch
rename to dev-qt/qtspeech/files/qtspeech-5.12.1-nogui.patch
index fa5d900a..7d0faa13 100644
--- a/dev-qt/qtspeech/files/qtspeech-5.9.4-nogui.patch
+++ b/dev-qt/qtspeech/files/qtspeech-5.12.1-nogui.patch
@@ -1,4 +1,5 @@
 Bug: https://bugs.gentoo.org/651012
+Bug: https://bugs.gentoo.org/679210
 
 --- a/src/plugins/tts/speechdispatcher/speechdispatcher.pro
 +++ b/src/plugins/tts/speechdispatcher/speechdispatcher.pro
@@ -10,3 +11,13 @@ Bug: https://bugs.gentoo.org/651012
  
  CONFIG += link_pkgconfig
  packagesExist(speech-dispatcher): PKGCONFIG = speech-dispatcher
+--- a/src/doc/doc.pro
 b/src/doc/doc.pro
+@@ -2,6 +2,7 @@
+ 
+ CONFIG += force_qt
+ QT += core-private
++QT -= doc
+ 
+ QMAKE_DOCS = $$PWD/qtspeech.qdocconf
+ 

diff --git a/dev-qt/qtspeech/qtspeech-5.12..ebuild 
b/dev-qt/qtspeech/qtspeech-5.12..ebuild
index 753b1829..bcec3c2f 100644
--- a/dev-qt/qtspeech/qtspeech-5.12..ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.12..ebuild
@@ -19,4 +19,4 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
-PATCHES=( "${FILESDIR}/${PN}-5.9.4-nogui.patch" )
+PATCHES=( "${FILESDIR}/${PN}-5.12.1-nogui.patch" )

diff --git a/dev-qt/qtspeech/qtspeech-5.13..ebuild 
b/dev-qt/qtspeech/qtspeech-5.13..ebuild
index 753b1829..bcec3c2f 100644
--- a/dev-qt/qtspeech/qtspeech-5.13..ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.13..ebuild
@@ -19,4 +19,4 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
-PATCHES=( "${FILESDIR}/${PN}-5.9.4-nogui.patch" )
+PATCHES=( "${FILESDIR}/${PN}-5.12.1-nogui.patch" )

diff --git a/dev-qt/qtspeech/qtspeech-5..ebuild 
b/dev-qt/qtspeech/qtspeech-5..ebuild
index 753b1829..bcec3c2f 100644
--- a/dev-qt/qtspeech/qtspeech-5..ebuild
+++ b/dev-qt/qtspeech/qtspeech-5..ebuild
@@ -19,4 +19,4 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
-PATCHES=( "${FILESDIR}/${PN}-5.9.4-nogui.patch" )
+PATCHES=( "${FILESDIR}/${PN}-5.12.1-nogui.patch" )



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtspeech/, dev-qt/qtspeech/files/

2019-03-10 Thread Michael Palimaka
commit: aa26da3778abf77ca12ff991630b2bcb49d180ca
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Mar 11 06:08:06 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Mar 11 06:08:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa26da37

dev-qt/qtspeech: improve patch avoiding build failure with no qtgui

Closes: https://bugs.gentoo.org/679210
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Michael Palimaka  gentoo.org>

 dev-qt/qtspeech/files/qtspeech-5.12.1-nogui.patch | 23 +++
 dev-qt/qtspeech/qtspeech-5.12.1.ebuild|  2 +-
 2 files changed, 24 insertions(+), 1 deletion(-)

diff --git a/dev-qt/qtspeech/files/qtspeech-5.12.1-nogui.patch 
b/dev-qt/qtspeech/files/qtspeech-5.12.1-nogui.patch
new file mode 100644
index 000..7d0faa13e69
--- /dev/null
+++ b/dev-qt/qtspeech/files/qtspeech-5.12.1-nogui.patch
@@ -0,0 +1,23 @@
+Bug: https://bugs.gentoo.org/651012
+Bug: https://bugs.gentoo.org/679210
+
+--- a/src/plugins/tts/speechdispatcher/speechdispatcher.pro
 b/src/plugins/tts/speechdispatcher/speechdispatcher.pro
+@@ -5,6 +5,7 @@
+ load(qt_plugin)
+ 
+ QT += core texttospeech
++QT -= gui
+ 
+ CONFIG += link_pkgconfig
+ packagesExist(speech-dispatcher): PKGCONFIG = speech-dispatcher
+--- a/src/doc/doc.pro
 b/src/doc/doc.pro
+@@ -2,6 +2,7 @@
+ 
+ CONFIG += force_qt
+ QT += core-private
++QT -= doc
+ 
+ QMAKE_DOCS = $$PWD/qtspeech.qdocconf
+ 

diff --git a/dev-qt/qtspeech/qtspeech-5.12.1.ebuild 
b/dev-qt/qtspeech/qtspeech-5.12.1.ebuild
index 753b1829827..bcec3c2f7c2 100644
--- a/dev-qt/qtspeech/qtspeech-5.12.1.ebuild
+++ b/dev-qt/qtspeech/qtspeech-5.12.1.ebuild
@@ -19,4 +19,4 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
-PATCHES=( "${FILESDIR}/${PN}-5.9.4-nogui.patch" )
+PATCHES=( "${FILESDIR}/${PN}-5.12.1-nogui.patch" )



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

2019-03-10 Thread Matt Turner
commit: 33ce43ea7941c1964a1ad0797cdd06523af09006
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Mar 11 05:13:21 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 11 06:10:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33ce43ea

x11-libs/libXcursor: Version bump to 1.2.0

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

 x11-libs/libXcursor/Manifest|  1 +
 x11-libs/libXcursor/libXcursor-1.2.0.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/x11-libs/libXcursor/Manifest b/x11-libs/libXcursor/Manifest
index add3897a6c5..d5c027648b3 100644
--- a/x11-libs/libXcursor/Manifest
+++ b/x11-libs/libXcursor/Manifest
@@ -1 +1,2 @@
 DIST libXcursor-1.1.15.tar.bz2 331607 BLAKE2B 
e39179902bf0a7c1b8c32f8c5fe856b51113a0c7fe98158f04d019df4737afb7d42b02ea509df66753d128c38c68dc976b2dfad8f6c8899002ecce9396fc4d8d
 SHA512 
53ad0fa2afd7b4cf1108b560e44ea71abdf5c55a18df243d7123942513589c927f5c105395f790d8769959e0129db54264e6aac7efd51a5f1aec270379b1f2f5
+DIST libXcursor-1.2.0.tar.bz2 334144 BLAKE2B 
d1dc7f09b88bc570653e615ec5e854b7cd9362a8429e90dc36e1d7efe26fd9c0eb9a38ae8d18a308e1912bb1765e2adbf13f36a265500be2f787d60017091898
 SHA512 
2b12d0fd17e311ce269dbba58588698885815eb07aa44d48525ed5cd9e5f379bb90138a792a191e2f74888ab10b3ca9a4f507f21de0984ed79748973ab927a03

diff --git a/x11-libs/libXcursor/libXcursor-1.2.0.ebuild 
b/x11-libs/libXcursor/libXcursor-1.2.0.ebuild
new file mode 100644
index 000..4e48fbaca81
--- /dev/null
+++ b/x11-libs/libXcursor/libXcursor-1.2.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+XORG_MULTILIB=yes
+inherit xorg-3
+
+DESCRIPTION="X.Org Xcursor library"
+
+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 ~x64-solaris ~x86-solaris"
+IUSE="doc"
+
+RDEPEND=">=x11-libs/libXrender-0.9.8[${MULTILIB_USEDEP}]
+   >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}]
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}"
+
+XORG_CONFIGURE_OPTIONS=(
+   --with-icondir=/usr/share/cursors/xorg-x11
+   
--with-cursorpath='~/.cursors:~/.icons:/usr/local/share/cursors/xorg-x11:/usr/local/share/cursors:/usr/local/share/icons:/usr/local/share/pixmaps:/usr/share/cursors/xorg-x11:/usr/share/cursors:/usr/share/pixmaps/xorg-x11:/usr/share/icons:/usr/share/pixmaps'
+)



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

2019-03-10 Thread Matt Turner
commit: ed8b7b2e51b6df7f85afa439cdd8d4b924f21e95
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Mar 11 04:33:16 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 11 06:10:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed8b7b2e

x11-libs/libXcomposite: Version bump to 0.4.5

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

 x11-libs/libXcomposite/Manifest   |  1 +
 x11-libs/libXcomposite/libXcomposite-0.4.5.ebuild | 25 +++
 2 files changed, 26 insertions(+)

diff --git a/x11-libs/libXcomposite/Manifest b/x11-libs/libXcomposite/Manifest
index 4ccb2065b5f..107f28181a8 100644
--- a/x11-libs/libXcomposite/Manifest
+++ b/x11-libs/libXcomposite/Manifest
@@ -1 +1,2 @@
 DIST libXcomposite-0.4.4.tar.bz2 283746 BLAKE2B 
d72781ee1352027fab3c6dd543b367757c63d878235e324098c65a47bcafcf9b3404343be0af15743a40c092146493360b661bdc42367502f97667d7cedbb2a9
 SHA512 
b15f8fdbe4cb7488bdad161d73ef8e59ef603c5af92d7b573110ba136d7d4ce3749aac45972bce87662b0310b67e831cffad72c45c15bfff988b5b555d4c884b
+DIST libXcomposite-0.4.5.tar.bz2 316993 BLAKE2B 
4dc01b4c3fd85bdaad1ab9d9da0668caa162957056284fe864dacfcad302ddacf32a3ca233efe191592121a42783e04d5844277ef8ede21951e890114120ba22
 SHA512 
502fd51fd9097bb3ca72174ac5b25b9d3b1ff240d32c4765199df03d89337d94b4ddea49e90b177b370862430089d966ce9c38988337156352cfeae911c2d3d5

diff --git a/x11-libs/libXcomposite/libXcomposite-0.4.5.ebuild 
b/x11-libs/libXcomposite/libXcomposite-0.4.5.ebuild
new file mode 100644
index 000..d50d9baf579
--- /dev/null
+++ b/x11-libs/libXcomposite/libXcomposite-0.4.5.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+XORG_DOC=doc
+XORG_MULTILIB=yes
+inherit xorg-3
+
+DESCRIPTION="X.Org Xcomposite library"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND="
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"
+
+pkg_setup() {
+   XORG_CONFIGURE_OPTIONS=(
+   $(use_with doc xmlto)
+   )
+}



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

2019-03-10 Thread Matt Turner
commit: 378bf4f76e7843da4968e3054439c57d544564de
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Mar 11 05:51:34 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 11 06:10:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=378bf4f7

xorg-3.eclass: Remove unnecessary eutils inherit

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

 eclass/xorg-3.eclass | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass
index 4577767a77b..734877630be 100644
--- a/eclass/xorg-3.eclass
+++ b/eclass/xorg-3.eclass
@@ -34,8 +34,7 @@ fi
 : ${XORG_MULTILIB:="no"}
 
 # we need to inherit autotools first to get the deps
-inherit autotools eutils libtool multilib toolchain-funcs \
-   flag-o-matic ${GIT_ECLASS}
+inherit autotools libtool multilib toolchain-funcs flag-o-matic ${GIT_ECLASS}
 
 if [[ ${XORG_MULTILIB} == yes ]]; then
inherit multilib-minimal



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

2019-03-10 Thread Matt Turner
commit: 99e8ce55457b54be882af9c5b7768db0802bbad7
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Mar 11 05:30:50 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 11 06:10:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99e8ce55

x11-libs/libXdamage: Version bump to 1.1.5

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

 x11-libs/libXdamage/Manifest|  1 +
 x11-libs/libXdamage/libXdamage-1.1.5.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/x11-libs/libXdamage/Manifest b/x11-libs/libXdamage/Manifest
index ff666d0da09..a8c6bc53410 100644
--- a/x11-libs/libXdamage/Manifest
+++ b/x11-libs/libXdamage/Manifest
@@ -1 +1,2 @@
 DIST libXdamage-1.1.4.tar.bz2 278937 BLAKE2B 
eff95312ae989893904fca167075c10a784222db1ba4850d941f26c4235ae39ddfa242037e48ccc4b7912c27bb5e92b58eb61d7ac1ee6185d0b872b0be3e0ed1
 SHA512 
1058cef11a8f0edfcae7265837369e492b007c34d56ae04145b558e5f02a163827aba1d0b80656f4c8e5d1e9a40f5077d93b7ff4f5e704f7409060dceba03904
+DIST libXdamage-1.1.5.tar.bz2 303750 BLAKE2B 
78cb593365cc842cbc6fcb4dec94aa28293c385ad7ecfef032117d19e98c7b3f252c53b79559096b1c0b259d24a59220e9af7fb60d55c55f4474a33d117958de
 SHA512 
a3ca6cc33b1727f717a3e2aa5593f660508a81a47918a0aa949e9e8fba105e303fe5071983b48caac92feea0fe6e8e01620805e4d19b41f21f20d837b191c124

diff --git a/x11-libs/libXdamage/libXdamage-1.1.5.ebuild 
b/x11-libs/libXdamage/libXdamage-1.1.5.ebuild
new file mode 100644
index 000..646138cdd93
--- /dev/null
+++ b/x11-libs/libXdamage/libXdamage-1.1.5.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+XORG_MULTILIB=yes
+inherit xorg-3
+
+DESCRIPTION="X.Org Xdamage library"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+IUSE=""
+
+RDEPEND="
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"



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

2019-03-10 Thread Matt Turner
commit: 5cbb341f6727a48ee46421c2de4b8e20894cd424
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Mar 11 04:31:08 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 11 06:10:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cbb341f

x11-libs/libFS: Version bump to 1.0.8

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

 x11-libs/libFS/Manifest   |  1 +
 x11-libs/libFS/libFS-1.0.8.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/x11-libs/libFS/Manifest b/x11-libs/libFS/Manifest
index 3adf498370a..14b959bdd9f 100644
--- a/x11-libs/libFS/Manifest
+++ b/x11-libs/libFS/Manifest
@@ -1 +1,2 @@
 DIST libFS-1.0.7.tar.bz2 315569 BLAKE2B 
ea629c9d935e4e2f159edd6e3513a571d4a145fcd3030605babd2b931aff3377509e8476859e4278bfbbe48cfe9d9daa85628e9fcdfa384c4ac0a46dc01b
 SHA512 
3596e87710c14706ab345377799e9b2dbab79500fd75b4213f9615bf7db7df3265b4dbc65fdeca9d32343b848013780cfa1a43e76229665ce80246332bb8b96f
+DIST libFS-1.0.8.tar.bz2 347880 BLAKE2B 
74f9079f4ac98ad8cc83e73a162f4e308c49b643dc11ab6d68d36afe5f70b9326023fafb7a17ab14a083bbda20f99d6e140bf85facc4a3177d356b7c5dd6e126
 SHA512 
466198ae5c0b83e3579713d86ddfd0b039f5c5b511cf6d5dc0e9664ee2d40aec9e8929445c8e97394d85faf76a7cf2f81bddb13d23de7ce19919e3b1e36ba56f

diff --git a/x11-libs/libFS/libFS-1.0.8.ebuild 
b/x11-libs/libFS/libFS-1.0.8.ebuild
new file mode 100644
index 000..21b0de0eed9
--- /dev/null
+++ b/x11-libs/libFS/libFS-1.0.8.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xorg-3
+
+DESCRIPTION="X.Org FS library"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd"
+IUSE="ipv6"
+
+DEPEND="x11-base/xorg-proto
+   x11-libs/xtrans"
+RDEPEND=""
+
+pkg_setup() {
+   XORG_CONFIGURE_OPTIONS=(
+   $(use_enable ipv6)
+   )
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64-fbsd/clang/, profiles/base/, profiles/arch/sparc/, ...

2019-03-10 Thread Michał Górny
commit: 7af9edea579ae03faf7de87ff3b3f3a6999e019f
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 11 06:06:00 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 11 06:11:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af9edea

profiles: Remove obsolete LLVM masks/forces

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

 profiles/arch/amd64-fbsd/clang/package.use.force | 5 +
 profiles/arch/amd64-fbsd/package.use.mask| 5 -
 profiles/arch/arm/package.use.mask   | 4 
 profiles/arch/powerpc/package.use.mask   | 4 
 profiles/arch/sparc/package.use.mask | 6 +-
 profiles/arch/x86-fbsd/package.use.mask  | 7 +--
 profiles/base/package.use.mask   | 6 --
 profiles/default/linux/musl/package.use.mask | 5 +
 profiles/features/musl/package.use.mask  | 5 +
 profiles/prefix/darwin/macos/package.use.force   | 6 +-
 profiles/prefix/darwin/package.mask  | 8 +---
 profiles/releases/freebsd-11.1/package.use.force | 5 -
 12 files changed, 7 insertions(+), 59 deletions(-)

diff --git a/profiles/arch/amd64-fbsd/clang/package.use.force 
b/profiles/arch/amd64-fbsd/clang/package.use.force
index 4706847d448..36c6e4aadf9 100644
--- a/profiles/arch/amd64-fbsd/clang/package.use.force
+++ b/profiles/arch/amd64-fbsd/clang/package.use.force
@@ -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
 
 # Force building libc++ over libcxxrt.
@@ -12,9 +12,6 @@ sys-libs/libcxx static-libs abi_x86_32
 # libcxx on this profile. Mask the other ssl providers.
 net-misc/curl ssl curl_ssl_openssl
 
-# We obviously need clang
-sys-devel/llvm clang static-analyzer default-compiler-rt default-libcxx
-
 # o-flag-munging is required to compile dev-libs/libgcrypt with clang.
 # https://bugs.gentoo.org/629410
 dev-libs/libgcrypt o-flag-munging

diff --git a/profiles/arch/amd64-fbsd/package.use.mask 
b/profiles/arch/amd64-fbsd/package.use.mask
index 74c81944764..b1c96230c2f 100644
--- a/profiles/arch/amd64-fbsd/package.use.mask
+++ b/profiles/arch/amd64-fbsd/package.use.mask
@@ -95,11 +95,6 @@ net-libs/gnutls test-full
 # LLVM is going to be keyworded.
  (20 Jan 2018)
-# Needs dev-ml/ocaml-ctypes which is not keyworded. Newer versions
-# no longer have the flag, so no point in keywording it for old.
-sys-devel/llvm ocaml
-
 # Ulrich Müller  (23 Oct 2017)
 # Needs net-mail/mailutils which is not keyworded, bug #635216.
 app-editors/emacs mailutils

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index 4aec7920d90..bf6e57b124a 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -101,10 +101,6 @@ dev-cpp/xsd ace
 games-fps/doom-data doomsday
 media-tv/tvheadend hdhomerun
 
-# Michał Górny  (21 Dec 2017)
-# clang is not currently supported on Gentoo ARM profiles.
-sys-devel/llvm clang lldb
-
 # Michał Górny  (29 Nov 2017)
 # All current clang versions are broken on ARM.
 app-doc/doxygen clang

diff --git a/profiles/arch/powerpc/package.use.mask 
b/profiles/arch/powerpc/package.use.mask
index d5d319f6b5c..8fc5fa04d40 100644
--- a/profiles/arch/powerpc/package.use.mask
+++ b/profiles/arch/powerpc/package.use.mask
@@ -151,10 +151,6 @@ net-wireless/blueman appindicator
 # x11-drivers/xf86-video-amdgpu is not keyworded
 x11-base/xorg-drivers video_cards_amdgpu
 
-# Bernard Cafarelli  (06 Aug 2015)
-# Dependencies missing keywords, bug #543604
-sys-devel/llvm ocaml
-
 # Gilles Dartiguelongue  (10 Jun 2015)
 # net-libs/dleyna-connector-dbus lack ppc/ppc64 keyword, bug #551634
 >=media-plugins/grilo-plugins-0.2.14 upnp-av

diff --git a/profiles/arch/sparc/package.use.mask 
b/profiles/arch/sparc/package.use.mask
index 8034a36b298..b90dd1bf7c0 100644
--- a/profiles/arch/sparc/package.use.mask
+++ b/profiles/arch/sparc/package.use.mask
@@ -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
 
 # Sergei Trofimovich  (28 Sep 2018)
@@ -170,10 +170,6 @@ dev-python/restkit cli
 # Requires wifi USE flag, which is masked for this arch
 net-misc/networkmanager wext
 
-# Bernard Cafarelli  (06 Aug 2015)
-# Dependencies missing keywords, bug #543604
-sys-devel/llvm ocaml
-
 # Pacho Ramos  (13 Jun 2015)
 # Missing keywords, bug #513108
 net-misc/spice-gtk smartcard webdav

diff --git a/profiles/arch/x86-fbsd/package.use.mask 
b/profiles/arch/x86-fbsd/package.use.mask
index f10c46a9498..639f8a32756 100644
--- a/profiles/arch/x86-fbsd/package.use.mask
+++ b/profiles/arch/x86-fbsd/package.use.mask
@@ -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
 
 # Andreas Sturmlechner  (01 Sep 2018)
@@ -14,11 +14,6 @@

[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/uclibc/mips/, profiles/default/linux/uclibc/amd64/, ...

2019-03-10 Thread Michał Górny
commit: 3024f83168106e73019fc540986a3c6c415c79e0
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Mar 11 06:10:32 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Mar 11 06:11:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3024f831

profiles: Copy forced LLVM_TARGETS to dev-ml/llvm-ocaml

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

 profiles/arch/amd64-fbsd/package.use.force  | 3 ++-
 profiles/arch/amd64/package.use | 3 ++-
 profiles/arch/amd64/package.use.force   | 3 ++-
 profiles/arch/arm/package.use.force | 3 ++-
 profiles/arch/arm64/package.use.force   | 3 ++-
 profiles/arch/mips/package.use.force| 3 ++-
 profiles/arch/powerpc/package.use.force | 3 ++-
 profiles/arch/s390/s390x/package.use.force  | 3 ++-
 profiles/arch/sparc/package.use | 3 ++-
 profiles/arch/sparc/package.use.force   | 3 ++-
 profiles/arch/x86-fbsd/package.use.force| 3 ++-
 profiles/arch/x86/package.use   | 3 ++-
 profiles/arch/x86/package.use.force | 3 ++-
 profiles/base/package.use   | 3 ++-
 profiles/default/linux/musl/amd64/package.use.force | 3 ++-
 profiles/default/linux/musl/arm/package.use.force   | 3 ++-
 profiles/default/linux/musl/arm64/package.use.force | 3 ++-
 profiles/default/linux/musl/mips/package.use.force  | 1 +
 profiles/default/linux/musl/ppc/package.use.force   | 3 ++-
 profiles/default/linux/musl/x86/package.use.force   | 3 ++-
 profiles/default/linux/uclibc/amd64/package.use.force   | 3 ++-
 profiles/default/linux/uclibc/arm/package.use.force | 3 ++-
 profiles/default/linux/uclibc/mips/package.use.force| 3 ++-
 profiles/default/linux/uclibc/ppc/package.use.force | 3 ++-
 profiles/default/linux/uclibc/x86/package.use.force | 3 ++-
 profiles/prefix/darwin/macos/arch/ppc/package.use.force | 3 ++-
 profiles/prefix/darwin/macos/arch/x64/package.use.force | 3 ++-
 profiles/prefix/darwin/macos/arch/x86/package.use.force | 3 ++-
 28 files changed, 55 insertions(+), 27 deletions(-)

diff --git a/profiles/arch/amd64-fbsd/package.use.force 
b/profiles/arch/amd64-fbsd/package.use.force
index 6c7737109a3..3b36252505e 100644
--- a/profiles/arch/amd64-fbsd/package.use.force
+++ b/profiles/arch/amd64-fbsd/package.use.force
@@ -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
 
 # Michał Górny  (09 Mar 2018)
@@ -12,6 +12,7 @@ sys-apps/sandbox abi_x86_32
 
 # Michał Górny  (24 Sep 2016)
 # Force the host target to avoid dependency hell
+dev-ml/llvm-ocaml llvm_targets_X86
 sys-devel/clang llvm_targets_X86
 sys-devel/llvm llvm_targets_X86
 

diff --git a/profiles/arch/amd64/package.use b/profiles/arch/amd64/package.use
index 8791ceed9e5..cefb8e87249 100644
--- a/profiles/arch/amd64/package.use
+++ b/profiles/arch/amd64/package.use
@@ -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
 
 # Mike Gilbert  (17 Nov 2016)
@@ -8,6 +8,7 @@ sys-boot/grub:2 grub_platforms_efi-64 grub_platforms_pc
 
 # Michał Górny  (24 Sep 2016)
 # Enable the GPU targets matching the default VIDEO_CARDS
+dev-ml/llvm-ocaml llvm_targets_AMDGPU llvm_targets_NVPTX
 sys-devel/clang llvm_targets_AMDGPU llvm_targets_NVPTX
 sys-devel/llvm llvm_targets_AMDGPU llvm_targets_NVPTX
 

diff --git a/profiles/arch/amd64/package.use.force 
b/profiles/arch/amd64/package.use.force
index fd348f9dde1..5c86f6ef2ce 100644
--- a/profiles/arch/amd64/package.use.force
+++ b/profiles/arch/amd64/package.use.force
@@ -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
 
 # Georgy Yakovlev  (14 May 2018)
@@ -20,6 +20,7 @@ sys-apps/sandbox abi_x86_32
 
 # Michał Górny  (24 Sep 2016)
 # Force the host target to avoid dependency hell
+dev-ml/llvm-ocaml llvm_targets_X86
 sys-devel/clang llvm_targets_X86
 sys-devel/llvm llvm_targets_X86
 

diff --git a/profiles/arch/arm/package.use.force 
b/profiles/arch/arm/package.use.force
index b7a078cf4d6..3e52fa707e0 100644
--- a/profiles/arch/arm/package.use.force
+++ b/profiles/arch/arm/package.use.force
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # Georgy Yakovlev  (16 Feb 2019)
@@ -7,6 +7,7 @@ dev-lang/rust llvm_targets_ARM
 
 # Michał Górny  (24 Sep 2016)
 # Force the host target to avoid dependency hell
+dev-ml/llvm-ocaml llvm_targets_ARM
 sys-devel/clang llvm_targets_ARM
 sys-devel/llvm llvm_targets_ARM
 

diff --git a/profiles/arch/arm64/package.use.

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

2019-03-10 Thread Michael Palimaka
commit: d6652e1db55b96b632f0cdbf5988b4ce213146bd
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Mar 11 06:13:48 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Mar 11 06:14:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6652e1d

media-gfx/exiv2: remove vulnerable 0.26_p20180811-r3

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

 media-gfx/exiv2/Manifest   |   1 -
 media-gfx/exiv2/exiv2-0.26_p20180811-r3.ebuild | 123 -
 media-gfx/exiv2/files/exiv2-0.26-fix-docs.patch|  83 --
 .../exiv2/files/exiv2-0.26-tools-optional.patch|  28 -
 4 files changed, 235 deletions(-)

diff --git a/media-gfx/exiv2/Manifest b/media-gfx/exiv2/Manifest
index b8b4960b6b2..364b5bf76aa 100644
--- a/media-gfx/exiv2/Manifest
+++ b/media-gfx/exiv2/Manifest
@@ -1,2 +1 @@
-DIST exiv2-0.26_p20180811d.tar.xz 1722216 BLAKE2B 
9e1c8307eb923c340894c82c37e9f6c31d82ff1b1de3c79d4ec9b0ec9428ad1d05f945e9a4e440028335857e7fc32d50cdc5245842d743e017037bd641b654db
 SHA512 
5453650888440028acb139a02b387eab0232551c97256ce88dd626fa4cc8800ec02ad66e093c314bbfdc60726995b6c8482572d1ffaec73a265209c98c901780
 DIST exiv2-0.27.0a-Source.tar.gz 27168207 BLAKE2B 
3f5c4fbe4f41c1114c0a54433c810ed0fb28ae3fbe8258eb7a02da716b833d62a94725f839accf22600c420ace5cdbead599440d335ff694a4f123820613ecd9
 SHA512 
9873d6815c2a87b7cdc49e8863f72c713fe1054f2f46d2c9aaa7ca2cd42096a36c2970e6a396af9000faba32fa9ff054b9d2c5e22f3e2624669440e553239f9c

diff --git a/media-gfx/exiv2/exiv2-0.26_p20180811-r3.ebuild 
b/media-gfx/exiv2/exiv2-0.26_p20180811-r3.ebuild
deleted file mode 100644
index bce9baadb49..000
--- a/media-gfx/exiv2/exiv2-0.26_p20180811-r3.ebuild
+++ /dev/null
@@ -1,123 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-inherit cmake-multilib python-any-r1
-
-DESCRIPTION="EXIF, IPTC and XMP metadata C++ library and command line utility"
-HOMEPAGE="http://www.exiv2.org/";
-SRC_URI="https://dev.gentoo.org/~asturm/distfiles/${P}d.tar.xz";
-
-LICENSE="GPL-2"
-SLOT="0/26"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
-IUSE="doc examples nls png webready xmp"
-
-RDEPEND="
-   >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
-   nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )
-   png? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
-   webready? (
-   net-libs/libssh[${MULTILIB_USEDEP}]
-   net-misc/curl[${MULTILIB_USEDEP}]
-   )
-   xmp? ( >=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}
-   doc? (
-   ${PYTHON_DEPS}
-   app-doc/doxygen
-   dev-libs/libxslt
-   media-gfx/graphviz
-   virtual/pkgconfig
-   )
-   nls? ( sys-devel/gettext )
-"
-
-DOCS=( README doc/ChangeLog doc/cmd.txt )
-
-PATCHES=(
-   # TODO: Take to upstream
-   "${FILESDIR}"/${PN}-0.26-fix-docs.patch
-   "${FILESDIR}"/${PN}-0.26-tools-optional.patch
-)
-
-pkg_setup() {
-   use doc && python-any-r1_pkg_setup
-}
-
-src_prepare() {
-   if [[ ${PV} != * ]] ; then
-   if [[ -d po ]] ; then
-   pushd po > /dev/null || die
-   local lang
-   for lang in *.po; do
-   if [[ -e ${lang} ]] \
-   && ! has ${lang/.po/} 
${LINGUAS-${lang/.po/}} ; then
-   case ${lang} in
-   CMakeLists.txt | \
-   ${PN}.pot)  ;;
-   *) rm -r ${lang} || die ;;
-   esac
-   fi
-   done
-   popd > /dev/null || die
-   else
-   die "Failed to prepare LINGUAS - po directory moved?"
-   fi
-   fi
-
-   # FIXME @upstream:
-   einfo "Converting doc/cmd.txt to UTF-8"
-   iconv -f LATIN1 -t UTF-8 doc/cmd.txt > doc/cmd.txt.tmp || die
-   mv -f doc/cmd.txt.tmp doc/cmd.txt || die
-
-   if use doc; then
-   einfo "Updating doxygen config"
-   doxygen &>/dev/null -u config/Doxyfile || die
-   fi
-
-   edos2unix samples/exiv2json.cpp # workaround for CVE-2017-18005 patch
-
-   cmake-utils_src_prepare
-}
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DEXIV2_ENABLE_BUILD_SAMPLES=NO
-   -DEXIV2_ENABLE_BUILD_PO=$(usex nls)
-   -DEXIV2_ENABLE_NLS=$(usex nls)
-   -DEXIV2_ENABLE_PNG=$(usex png)
-   -D

[gentoo-commits] repo/gentoo:master commit in: x11-apps/mkfontscale/files/, x11-apps/mkfontscale/

2019-03-10 Thread Matt Turner
commit: fe2828046e6cc5fc7cc425cbd4e43adae8e3281a
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Mar 11 06:19:05 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 11 06:21:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe282804

x11-apps/mkfontscale: Add patch from upstream

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

 ...autoconf-instead-of-sed-to-substitute-bin.patch | 51 ++
 ...le-1.2.0.ebuild => mkfontscale-1.2.0-r1.ebuild} |  8 +++-
 2 files changed, 57 insertions(+), 2 deletions(-)

diff --git 
a/x11-apps/mkfontscale/files/mkfontscale-1.2.0-Revert-Use-autoconf-instead-of-sed-to-substitute-bin.patch
 
b/x11-apps/mkfontscale/files/mkfontscale-1.2.0-Revert-Use-autoconf-instead-of-sed-to-substitute-bin.patch
new file mode 100644
index 000..fdeea14e31d
--- /dev/null
+++ 
b/x11-apps/mkfontscale/files/mkfontscale-1.2.0-Revert-Use-autoconf-instead-of-sed-to-substitute-bin.patch
@@ -0,0 +1,51 @@
+From 29cab25240cf30f546671f265167a2eeadfd4c75 Mon Sep 17 00:00:00 2001
+From: Alan Coopersmith 
+Date: Thu, 7 Mar 2019 13:23:00 -0800
+Subject: [PATCH app/mkfontscale] Revert "Use autoconf instead of sed to
+ substitute @bindir@ in mkfontdir.in"
+
+This reverts commit 1f9d14bec07092d62da29a5a233cefbf84d47289.
+It caused https://gitlab.freedesktop.org/xorg/app/mkfontscale/issues/5
+---
+ Makefile.am  | 9 -
+ configure.ac | 1 -
+ 2 files changed, 8 insertions(+), 2 deletions(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index 7bb11ea..c36d171 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -23,6 +23,13 @@ SUBDIRS = man
+ bin_PROGRAMS = mkfontscale
+ bin_SCRIPTS = mkfontdir
+ 
++CLEANFILES = $(bin_SCRIPTS)
++EXTRA_DIST = $(bin_SCRIPTS:=.in)
++DIR_SUBSTS = -e 's|@bindir[@]|$(bindir)|g'
++
++mkfontdir: mkfontdir.in
++  $(AM_V_GEN)$(SED) $(DIR_SUBSTS) < $(srcdir)/mkfontdir.in > $@
++
+ AM_CPPFLAGS = @MKFONTSCALE_CFLAGS@ @X11_CFLAGS@ -D_BSD_SOURCE
+ AM_CFLAGS = $(CWARNFLAGS)
+ mkfontscale_LDADD  = @MKFONTSCALE_LIBS@
+@@ -59,4 +66,4 @@ lint:
+   $(LINT) $(ALL_LINT_FLAGS) $(mkfontscale_SOURCES)
+ endif LINT
+ 
+-EXTRA_DIST = README.md
++EXTRA_DIST += README.md
+diff --git a/configure.ac b/configure.ac
+index 5f5e463..7363bba 100644
+--- a/configure.ac
 b/configure.ac
+@@ -63,6 +63,5 @@ XORG_WITH_LINT
+ 
+ AC_CONFIG_FILES([
+   Makefile
+-  mkfontdir
+   man/Makefile])
+ AC_OUTPUT
+-- 
+2.19.2
+

diff --git a/x11-apps/mkfontscale/mkfontscale-1.2.0.ebuild 
b/x11-apps/mkfontscale/mkfontscale-1.2.0-r1.ebuild
similarity index 81%
rename from x11-apps/mkfontscale/mkfontscale-1.2.0.ebuild
rename to x11-apps/mkfontscale/mkfontscale-1.2.0-r1.ebuild
index c0f737d6f42..3228a01ba4e 100644
--- a/x11-apps/mkfontscale/mkfontscale-1.2.0.ebuild
+++ b/x11-apps/mkfontscale/mkfontscale-1.2.0-r1.ebuild
@@ -15,11 +15,15 @@ COMMON_DEPEND="
media-libs/freetype:2
sys-libs/zlib
app-arch/bzip2"
-DEPEND="x11-base/xorg-proto"
+DEPEND="${COMMON_DEPEND}
+   x11-base/xorg-proto"
 RDEPEND="${COMMON_DEPEND}
-   ${DEPEND}
!

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

2019-03-10 Thread Hans de Graaff
commit: c74fa7ab212cedf8c9fcd7bca99e21844206e5fc
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 11 06:09:07 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 11 06:25:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c74fa7ab

dev-ruby/http: add 4.1.0

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

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

diff --git a/dev-ruby/http/Manifest b/dev-ruby/http/Manifest
index 67b79e41e68..610fe630530 100644
--- a/dev-ruby/http/Manifest
+++ b/dev-ruby/http/Manifest
@@ -1,3 +1,4 @@
 DIST http-0.9.8.gem 66560 BLAKE2B 
15b6cc066d2b04c3c6df604787f69b5079dacd277dc95a74b56832fc26cd84d2b631b60a60baadaf46368e5dfda30152983c335faea63649bc5153d11736
 SHA512 
bb89147a3c28ebd75d2453e51c0c422557907e055b9a20a560b803bc64edfcdfe96e997ff225a26c9ca278211b0f70faaccf2d18ce2cdc9fd95bc4048093ef68
 DIST http-3.3.0.gem 70656 BLAKE2B 
5c52864168663640389a0f107e1bf8a202654a8b479c92bf5126354d360adcae45a9b4596da7cff2e412fee88ed3622870c4e2bb18eca97466b4ede28baa2a08
 SHA512 
fcb2549c22974712e129306b472c1a32466c50add85eee9a558582697c7ece26cb7a1db6da6aaceedb8bfd134d1213090c158db510fe53ddbe201bba6bd22c68
 DIST http-4.0.5.gem 73728 BLAKE2B 
467f812ebe2cde5cad513ae18ad290c6a4dab5e8d1b0d54955efe40988297afd6fcdf438172827bbe4d4434706741084936174af4b2d176de3aadc99f6cfa606
 SHA512 
e591ea761643d7a5a8e4c7b836a38389cbf09b4e16388997f4052213521bb0f47240e8511f9fefc5186bd33c1617c1048e0254f2d6c412b381f2cf2a4247a0c6
+DIST http-4.1.0.gem 74240 BLAKE2B 
edf9a84f4c097fc27dfc477ccf75601be77ca924c98afe62b82d94db43af34ea28437e15221c83314139e67ff7d8236242bad7274ed0bc226b4ae1701977b9b0
 SHA512 
cedc2944d45033e2750e34a401e93ae820f07317a4cd934eb512915f177ea29050f5a0ab1ee1733e13eaaefd2396e75f4067b54269d4b0615f9a745208ec4dae

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



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

2019-03-10 Thread Hans de Graaff
commit: 18cf5a8c11b34547f44e73371e762a0e1f5d0af2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 11 06:04:47 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 11 06:25:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18cf5a8c

dev-ruby/http: cleanup

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

 dev-ruby/http/Manifest  |  3 ---
 dev-ruby/http/http-4.0.0.ebuild | 46 -
 dev-ruby/http/http-4.0.1.ebuild | 46 -
 dev-ruby/http/http-4.0.3.ebuild | 46 -
 4 files changed, 141 deletions(-)

diff --git a/dev-ruby/http/Manifest b/dev-ruby/http/Manifest
index 0ceb59ca039..67b79e41e68 100644
--- a/dev-ruby/http/Manifest
+++ b/dev-ruby/http/Manifest
@@ -1,6 +1,3 @@
 DIST http-0.9.8.gem 66560 BLAKE2B 
15b6cc066d2b04c3c6df604787f69b5079dacd277dc95a74b56832fc26cd84d2b631b60a60baadaf46368e5dfda30152983c335faea63649bc5153d11736
 SHA512 
bb89147a3c28ebd75d2453e51c0c422557907e055b9a20a560b803bc64edfcdfe96e997ff225a26c9ca278211b0f70faaccf2d18ce2cdc9fd95bc4048093ef68
 DIST http-3.3.0.gem 70656 BLAKE2B 
5c52864168663640389a0f107e1bf8a202654a8b479c92bf5126354d360adcae45a9b4596da7cff2e412fee88ed3622870c4e2bb18eca97466b4ede28baa2a08
 SHA512 
fcb2549c22974712e129306b472c1a32466c50add85eee9a558582697c7ece26cb7a1db6da6aaceedb8bfd134d1213090c158db510fe53ddbe201bba6bd22c68
-DIST http-4.0.0.gem 72704 BLAKE2B 
6a7abec739f545e96b013d4bc10b11acd2cd6e336032cab08977476a0c50b73993ba9c8d46b68c7f891ae6129cddc5566bcdc16cc958b16a2241a5fdc1d2bc8c
 SHA512 
78fee306d0d53068b8082bffc766cb12c8d1a030407648af6c4471cab9d63e2c55e75c9546b684bcaabc795c04b76b91c562e4969e597ec70aed0e16052586b1
-DIST http-4.0.1.gem 72704 BLAKE2B 
5c4366044955d93f1ad149254843c916f599cc69557c69e87a7e56a745b6e58ee1fc69e5334eeba3b5dec00dc2c7e48c8a8123cdfb3bd5a73163c3192a365515
 SHA512 
ea579721e5fd01933daea74f37abdf4703aef670457a3eb781515f51f38190a8fdf95a49310df953bafc325515d3e963680d3b4c4056ccc02fe5e5f6426c57b5
-DIST http-4.0.3.gem 73216 BLAKE2B 
191dae46e423571dfb9251909efb4b3f0d331a9cbb83ac52b6261f9303b0f63ae5f776868499d6010032e9031a1e493ff8e1c4a14e83df359a9dd65c6de9f8f9
 SHA512 
42761a8c6988d76aeab298dff77182fb431cc808fadb587c483227285fc817b0affde032d67799f01866b60f3cc111bb91359e088c66808b192a61fc44d2bb70
 DIST http-4.0.5.gem 73728 BLAKE2B 
467f812ebe2cde5cad513ae18ad290c6a4dab5e8d1b0d54955efe40988297afd6fcdf438172827bbe4d4434706741084936174af4b2d176de3aadc99f6cfa606
 SHA512 
e591ea761643d7a5a8e4c7b836a38389cbf09b4e16388997f4052213521bb0f47240e8511f9fefc5186bd33c1617c1048e0254f2d6c412b381f2cf2a4247a0c6

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

diff --git a/dev-ruby/http/http-4.0.1.ebuild b/dev-ruby/http/http-4.0.1.ebuild
deleted file mode 100644
index de3cc7b35d9..000
--- a/dev-ruby/http/http-4.0.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="An easy-to-use client library for making requests from Ruby

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

2019-03-10 Thread Hans de Graaff
commit: 889034e135b17ffe1fec827e8e5c372c4e93c568
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 11 06:17:04 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 11 06:25:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=889034e1

dev-ruby/msgpack: add 1.2.8

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

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

diff --git a/dev-ruby/msgpack/Manifest b/dev-ruby/msgpack/Manifest
index 68c1caf6b88..741d8678320 100644
--- a/dev-ruby/msgpack/Manifest
+++ b/dev-ruby/msgpack/Manifest
@@ -1,3 +1,4 @@
 DIST msgpack-1.2.4.gem 78848 BLAKE2B 
5e4c0f75e051bd1da800257600a44a712a18430b77b1c6ceebf1b6452bda0169fa7fdbd3dc5230b76da226965b32e1581ab3c27be8416c00bd90e827b22bce51
 SHA512 
dc2267a8c2f673ce6c8910e09841ec01bd84f06baf68b9c9ba2c0acb905d197ca82f481748ceb7edb7dff5359c4d983f381882923a1d935bd5bc536bd2fa60be
 DIST msgpack-1.2.6.gem 78848 BLAKE2B 
06d0125f773d3fb8a15808e84a4661f51b0bf4c3951922697ae1bcb658eecc8e81eeb99ee10e23722b878a4be48c88ce8dc439fadf9f1a59f22bb5a1fdf93db7
 SHA512 
cbd28125826a2cb2db1fd6869443671da3093b8c834949741257abe69d763d1296f97d155f9a0d2bee53424b9a68c2b78ff8e8b00bb5f95dc1e6a34ad51981d1
 DIST msgpack-1.2.7.gem 79360 BLAKE2B 
edd9573d9c8da035b853a77acd55b9243bb9001323d570e47b7dce667ffb08223d74396b313ec392769a39096626ea7388a7369b7d4220cd96e53a6e96f7bcac
 SHA512 
086594a5f7202ae58f7681d7f58cea02560d68e4a3666e3bcead71dee0a8d0f7c56ac8a42e9ac2f7eea44f0d41207ae02ecc20e7bc0fea24af8a7965fdaceceb
+DIST msgpack-1.2.8.gem 79872 BLAKE2B 
199bc1efd3a4dfc955ad05114d9d1753ae030806e53ef217051464be173f0d117f036a4f650e5ec20d1e385c47cbb036910ed5b9c40b8a5fa5c46dcc440e5e43
 SHA512 
2434593124743221fe64ad0d738d96a131d1b2883326c2d4147cbfff46a2b508faa47465071bb4527d42e5c4a3d1a3c590489221a772c68f40d8be4ea31dd7b2

diff --git a/dev-ruby/msgpack/msgpack-1.2.8.ebuild 
b/dev-ruby/msgpack/msgpack-1.2.8.ebuild
new file mode 100644
index 000..2fb63620569
--- /dev/null
+++ b/dev-ruby/msgpack/msgpack-1.2.8.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="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.rdoc"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Binary-based efficient data interchange format for ruby binding"
+HOMEPAGE="https://msgpack.org/";
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~x86-fbsd"
+IUSE="doc"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/I s:^:#:' Rakefile || die
+
+   # Remove jruby-specific specs that are run also for other rubies.
+   rm -rf spec/jruby || die
+
+   sed -i -e '/git ls-files/d' msgpack.gemspec || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/${PN} extconf.rb || die "Configuration of extension 
failed."
+
+   # rb_num2int is not inlined on 32 bit arches but also not explicitly
+   # defined, bug 582968
+   sed -i -e 's:-Wl,--no-undefined::' ext/${PN}/Makefile || die
+}
+
+each_ruby_compile() {
+   emake V=1 -Cext/${PN}
+   cp ext/${PN}/msgpack$(get_modname) lib/${PN} || die "Unable to install 
msgpack library."
+}



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

2019-03-10 Thread Thomas Deutschmann
commit: 550eb47e987d99529b4a42e592def682047f4cfe
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 11 05:17:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 11 06:28:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=550eb47e

app-eselect/eselect-rust: bump to v20190311

Bug: https://bugs.gentoo.org/671182
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-eselect/eselect-rust/Manifest  |  1 +
 .../eselect-rust/eselect-rust-20190311.ebuild  | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/app-eselect/eselect-rust/Manifest 
b/app-eselect/eselect-rust/Manifest
index bd05ef8c6b2..daedb829aad 100644
--- a/app-eselect/eselect-rust/Manifest
+++ b/app-eselect/eselect-rust/Manifest
@@ -1 +1,2 @@
 DIST eselect-rust-0.3_pre20150428.tar.gz 64722 BLAKE2B 
17794065dd1a54a2caf73ac49271343a0bf21f96e7d6acbf5a2dfdf44354056f75d33656c2551ff06fdfe28d6245b161612fe57e3bddb1d3dbec52b801cd1c05
 SHA512 
214a6eb4b1f9bfcaed1a5fe92ec9633a82316716ffda8db2d2f88bfcbdae17ef7c026091de3927efad5c3624bb7003166d2ebadea6dd8828a0f1c41e0d3f16e7
+DIST eselect-rust-20190311.tar.bz2 49358 BLAKE2B 
be8060638a7ee553275e230466de8bc5e3fb1059afb049b71b767794f4f8e3968af03a755270d892e20e5ca6aa3efc869d2fd031713f9e8ed516e6465aad19ff
 SHA512 
98fb4502c1f5358e1a3fd2e91a0e9905aced990d62bb11414830b150e8d72fbab90c23518f9c30d04d015b4c303270a6332400bbb373cd4ea9dfbf0d0b3c942e

diff --git a/app-eselect/eselect-rust/eselect-rust-20190311.ebuild 
b/app-eselect/eselect-rust/eselect-rust-20190311.ebuild
new file mode 100644
index 000..3f188e8bc3a
--- /dev/null
+++ b/app-eselect/eselect-rust/eselect-rust-20190311.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+if [[ ${PV} == "" ]] ; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
+else
+   SRC_URI="mirrors://gentoo/${P}.tar.bz2"
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+fi
+
+DESCRIPTION="Eselect module for management of multiple Rust versions"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Rust";
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+RDEPEND=">=app-admin/eselect-1.2.3"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+pkg_postinst() {
+   if has_version 'dev-lang/rust' || has_version 'dev-lang/rust-bin'; then
+   eselect rust update --if-unset
+   fi
+}



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

2019-03-10 Thread Thomas Deutschmann
commit: b0a7fbefcd8e03543df2f3b7a2c893596ca79b27
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 11 06:28:33 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 11 06:28:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0a7fbef

dev-util/cargo: rev bump to add pkg_postrm function

Required to help upgrading to rust-1.30+.

Bug: https://bugs.gentoo.org/671182
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-util/cargo/{cargo-0.30.0.ebuild => cargo-0.30.0-r1.ebuild} | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/dev-util/cargo/cargo-0.30.0.ebuild 
b/dev-util/cargo/cargo-0.30.0-r1.ebuild
similarity index 96%
rename from dev-util/cargo/cargo-0.30.0.ebuild
rename to dev-util/cargo/cargo-0.30.0-r1.ebuild
index 3ab88c1f333..a1a63f13389 100644
--- a/dev-util/cargo/cargo-0.30.0.ebuild
+++ b/dev-util/cargo/cargo-0.30.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -156,7 +156,8 @@ KEYWORDS="amd64 ~arm64 x86"
 
 IUSE="doc libressl"
 
-COMMON_DEPEND="sys-libs/zlib
+COMMON_DEPEND=">=app-eselect/eselect-rust-0.3_pre20150425
+   sys-libs/zlib
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
net-libs/libssh2
@@ -200,3 +201,7 @@ src_install() {
doins src/etc/_cargo
doman src/etc/man/*
 }
+
+pkg_postrm() {
+   eselect rust update
+}



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

2019-03-10 Thread Michael Palimaka
commit: 9ec6e152589c4484df1a67188f5823612abe728a
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Mar 11 06:30:31 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Mar 11 06:30:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ec6e152

media-gfx/darktable: stabilise 2.6.1 for amd64/x86

Bug: https://bugs.gentoo.org/678426
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Michael Palimaka  gentoo.org>

 media-gfx/darktable/darktable-2.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/darktable/darktable-2.6.1.ebuild 
b/media-gfx/darktable/darktable-2.6.1.ebuild
index 16cb27650ab..9aad79d520f 100644
--- a/media-gfx/darktable/darktable-2.6.1.ebuild
+++ b/media-gfx/darktable/darktable-2.6.1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/darktable-org/${PN}/releases/download/release-${MY_P
 
 LICENSE="GPL-3 CC-BY-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 LANGS=" ca de es fi fr hu ja nb nl pl pt-BR ru sl"
 # TODO add lua once dev-lang/lua-5.2 is unmasked
 IUSE="colord cups cpu_flags_x86_sse3 doc flickr geolocation gnome-keyring 
gphoto2 graphicsmagick jpeg2k kwallet



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

2019-03-10 Thread Aaron Bauman
commit: d7b18f912d0c8622e8647cef757c715d6eb2eec8
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Mar 11 06:31:20 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 11 06:32:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b18f91

net-analyzer/wireshark: drop vulnerable wrt bug #661578

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

 net-analyzer/wireshark/Manifest   |   1 -
 net-analyzer/wireshark/wireshark-2.4.5.ebuild | 291 --
 2 files changed, 292 deletions(-)

diff --git a/net-analyzer/wireshark/Manifest b/net-analyzer/wireshark/Manifest
index 9e5bc3e93b8..c4ba02e145b 100644
--- a/net-analyzer/wireshark/Manifest
+++ b/net-analyzer/wireshark/Manifest
@@ -1,4 +1,3 @@
-DIST wireshark-2.4.5.tar.xz 28836740 BLAKE2B 
797540daca259a2d5d7dc6e637f2b504b6d14191af4040e6b344c95db6c776b7de80c25c59c98ab84d0337cc96c7313b42c13103a3c3944768a793130deae258
 SHA512 
2f2c201d6b8a37dcbe03bc9affbf97d632d8e40e4fe5b3a3e79cbd5cfbeb5b9111919850546ccae355fcb042def3456438eb1c4d73f7d56d373e7898311b42f3
 DIST wireshark-2.6.3.tar.xz 28384004 BLAKE2B 
f275c73173fbaf3f819c58f28859362e9c53ae50cf2649ac42c8d172362241eb00d7f43d0aead184ec67cb8da34d405124be10c5bf31226c2cb4800b8a01955b
 SHA512 
87e5335840baa401a1064ee83e3f0ee859c059dd37a09f63f19eb5d91ad273e84f1c0e7a8fdd63fe8a7076abff5e79593827544c5796d921cf7dc7682c7c3f80
 DIST wireshark-2.6.6.tar.xz 28407404 BLAKE2B 
5135789d345b675814a6394d5ba1469585b9eab917885730125b8a007aecd9cb48a510fc9e7479148cadf625807bac9017b854797e4bb2e562d7dc7f76140826
 SHA512 
b781c3b34dc76a3d8e60dc2b9b4e46a11994440b8df7b56134521ea9a77b27b0719a600db60d7f3d65f15972a5db2a7e85a8bf60d7217fce498fb5668de8fe56
 DIST wireshark-2.6.7.tar.xz 28420060 BLAKE2B 
fda1fb2b9a8968916dd24c59c193854ab56dc13d5a69d2f589ae89b257f92794d092a3da75c2e20b1c83c902966db15527346dc4072a38d16a21ed095cde364e
 SHA512 
bd0f87debd8bd8947f386aaec9fc843148e3cdfbffc28ba499526c4053732becea606061deae6799da0cf52458fba840ba0ff8e4a034a671fa876b8a0ff25677

diff --git a/net-analyzer/wireshark/wireshark-2.4.5.ebuild 
b/net-analyzer/wireshark/wireshark-2.4.5.ebuild
deleted file mode 100644
index c1819bafbf8..000
--- a/net-analyzer/wireshark/wireshark-2.4.5.ebuild
+++ /dev/null
@@ -1,291 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools eutils fcaps flag-o-matic gnome2-utils multilib qmake-utils 
user xdg-utils
-
-DESCRIPTION="A network protocol analyzer formerly known as ethereal"
-HOMEPAGE="https://www.wireshark.org/";
-SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0/${PV}"
-KEYWORDS="~arm64 ~x86-fbsd"
-IUSE="
-   adns androiddump +capinfos +caps +captype ciscodump cpu_flags_x86_sse4_2
-   +dftest doc doc-pdf +dumpcap +editcap geoip gtk kerberos libssh libxml2 
lua
-   lz4 +mergecap +netlink nghttp2 +pcap portaudio +qt5 +randpkt 
+randpktdump
-   +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl 
+text2pcap
-   tfshark +tshark +udpdump zlib
-"
-REQUIRED_USE="
-   ciscodump? ( libssh )
-   sshdump? ( libssh )
-"
-
-S=${WORKDIR}/${P/_/}
-
-CDEPEND="
-   >=dev-libs/glib-2.14:2
-   dev-libs/libgcrypt:0
-   netlink? ( dev-libs/libnl:3 )
-   adns? ( >=net-dns/c-ares-1.5 )
-   caps? ( sys-libs/libcap )
-   geoip? ( dev-libs/geoip )
-   gtk? (
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/pango
-   x11-misc/xdg-utils
-   )
-   kerberos? ( virtual/krb5 )
-   libssh? ( >=net-libs/libssh-0.6 )
-   libxml2? ( dev-libs/libxml2 )
-   lua? ( >=dev-lang/lua-5.1:* )
-   lz4? ( app-arch/lz4 )
-   nghttp2? ( net-libs/nghttp2 )
-   pcap? ( net-libs/libpcap )
-   portaudio? ( media-libs/portaudio )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtmultimedia:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qtwidgets:5
-   >=media-libs/speex-1.2.0
-   media-libs/speexdsp
-   x11-misc/xdg-utils
-   )
-   sbc? ( media-libs/sbc )
-   smi? ( net-libs/libsmi )
-   snappy? ( app-arch/snappy )
-   spandsp? ( media-libs/spandsp )
-   ssl? ( net-libs/gnutls:= )
-   zlib? ( sys-libs/zlib )
-"
-# We need perl for `pod2html`.  The rest of the perl stuff is to block older
-# and broken installs. #455122
-DEPEND="
-   ${CDEPEND}
-   dev-lang/perl
-   !

[gentoo-commits] proj/qt:master commit in: dev-qt/qtmultimedia/

2019-03-10 Thread Michael Palimaka
commit: a7d1acecd37cf439b71d4402a952154818e16a29
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Mar 11 06:44:47 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Mar 11 06:45:04 2019 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=a7d1acec

dev-qt/qtmultimedia: fix media-sound/pulseaudio USE dependency

Bug: https://bugs.gentoo.org/679372
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Michael Palimaka  gentoo.org>

 dev-qt/qtmultimedia/qtmultimedia-5.12..ebuild | 4 ++--
 dev-qt/qtmultimedia/qtmultimedia-5.13..ebuild | 2 +-
 dev-qt/qtmultimedia/qtmultimedia-5..ebuild| 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.12..ebuild 
b/dev-qt/qtmultimedia/qtmultimedia-5.12..ebuild
index 8dd9750e..6d824153 100644
--- a/dev-qt/qtmultimedia/qtmultimedia-5.12..ebuild
+++ b/dev-qt/qtmultimedia/qtmultimedia-5.12..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
@@ -23,7 +23,7 @@ RDEPEND="
media-libs/gst-plugins-bad:1.0
media-libs/gst-plugins-base:1.0
)
-   pulseaudio? ( media-sound/pulseaudio )
+   pulseaudio? ( media-sound/pulseaudio[glib] )
qml? (
~dev-qt/qtdeclarative-${PV}
gles2? ( ~dev-qt/qtgui-${PV}[egl] )

diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.13..ebuild 
b/dev-qt/qtmultimedia/qtmultimedia-5.13..ebuild
index 921705de..6d824153 100644
--- a/dev-qt/qtmultimedia/qtmultimedia-5.13..ebuild
+++ b/dev-qt/qtmultimedia/qtmultimedia-5.13..ebuild
@@ -23,7 +23,7 @@ RDEPEND="
media-libs/gst-plugins-bad:1.0
media-libs/gst-plugins-base:1.0
)
-   pulseaudio? ( media-sound/pulseaudio )
+   pulseaudio? ( media-sound/pulseaudio[glib] )
qml? (
~dev-qt/qtdeclarative-${PV}
gles2? ( ~dev-qt/qtgui-${PV}[egl] )

diff --git a/dev-qt/qtmultimedia/qtmultimedia-5..ebuild 
b/dev-qt/qtmultimedia/qtmultimedia-5..ebuild
index 8dd9750e..6d824153 100644
--- a/dev-qt/qtmultimedia/qtmultimedia-5..ebuild
+++ b/dev-qt/qtmultimedia/qtmultimedia-5..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
@@ -23,7 +23,7 @@ RDEPEND="
media-libs/gst-plugins-bad:1.0
media-libs/gst-plugins-base:1.0
)
-   pulseaudio? ( media-sound/pulseaudio )
+   pulseaudio? ( media-sound/pulseaudio[glib] )
qml? (
~dev-qt/qtdeclarative-${PV}
gles2? ( ~dev-qt/qtgui-${PV}[egl] )



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

2019-03-10 Thread Michael Palimaka
commit: 027a5ebc1b6b90be15fc1b7cc40c540ce84b5a5b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Mar 11 06:46:43 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Mar 11 06:46:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=027a5ebc

dev-qt/qtmultimedia: fix media-sound/pulseaudio USE dependency

Closes: https://bugs.gentoo.org/679372
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Michael Palimaka  gentoo.org>

 dev-qt/qtmultimedia/qtmultimedia-5.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.12.1.ebuild 
b/dev-qt/qtmultimedia/qtmultimedia-5.12.1.ebuild
index 921705de1ee..6d8241532e2 100644
--- a/dev-qt/qtmultimedia/qtmultimedia-5.12.1.ebuild
+++ b/dev-qt/qtmultimedia/qtmultimedia-5.12.1.ebuild
@@ -23,7 +23,7 @@ RDEPEND="
media-libs/gst-plugins-bad:1.0
media-libs/gst-plugins-base:1.0
)
-   pulseaudio? ( media-sound/pulseaudio )
+   pulseaudio? ( media-sound/pulseaudio[glib] )
qml? (
~dev-qt/qtdeclarative-${PV}
gles2? ( ~dev-qt/qtgui-${PV}[egl] )



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

2019-03-10 Thread Michael Palimaka
commit: 72b06272a1743827709e26364b3413f0a97b388f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Mar 11 06:51:07 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Mar 11 06:51:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72b06272

x11-terms/qterminal: add ~ppc64 keyword

Bug: https://bugs.gentoo.org/679252
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Michael Palimaka  gentoo.org>

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

diff --git a/x11-terms/qterminal/qterminal-0.14.1.ebuild 
b/x11-terms/qterminal/qterminal-0.14.1.ebuild
index f7797f36015..49fa71664d1 100644
--- a/x11-terms/qterminal/qterminal-0.14.1.ebuild
+++ b/x11-terms/qterminal/qterminal-0.14.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git";
 else
SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz";
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="GPL-2"



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

2019-03-10 Thread Michael Palimaka
commit: 4f52cd440e3f9bce272816213608ffc7b0eb76de
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Mar 11 06:50:13 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Mar 11 06:51:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f52cd44

dev-util/lxqt-build-tools: add ~ppc64 keyword

Bug: https://bugs.gentoo.org/679252
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Michael Palimaka  gentoo.org>

 dev-util/lxqt-build-tools/lxqt-build-tools-0.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lxqt-build-tools/lxqt-build-tools-0.6.0.ebuild 
b/dev-util/lxqt-build-tools/lxqt-build-tools-0.6.0.ebuild
index 3093a7f96f2..7cd05eadac9 100644
--- a/dev-util/lxqt-build-tools/lxqt-build-tools-0.6.0.ebuild
+++ b/dev-util/lxqt-build-tools/lxqt-build-tools-0.6.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git";
 else
SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz";
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="BSD"



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

2019-03-10 Thread Michael Palimaka
commit: 7981eaaa97ba51e08afe5036fe976b57f3bc042e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Mar 11 06:50:41 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Mar 11 06:51:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7981eaaa

x11-libs/qtermwidget: add ~ppc64 keyword

Bug: https://bugs.gentoo.org/679252
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Michael Palimaka  gentoo.org>

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

diff --git a/x11-libs/qtermwidget/qtermwidget-0.14.1.ebuild 
b/x11-libs/qtermwidget/qtermwidget-0.14.1.ebuild
index 9c367cc15cb..ad0fb2e7781 100644
--- a/x11-libs/qtermwidget/qtermwidget-0.14.1.ebuild
+++ b/x11-libs/qtermwidget/qtermwidget-0.14.1.ebuild
@@ -13,7 +13,7 @@ if [[ "${PV}" == "" ]]; then
EGIT_REPO_URI="https://github.com/lxqt/${PN}.git";
 else
SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz";
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 fi
 
 LICENSE="BSD GPL-2 LGPL-2+"



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

2019-03-10 Thread Michał Górny
commit: 7e59a9ad0a28835c551577ab449ca0f3df086c48
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar 10 07:40:26 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 10 08:06:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e59a9ad

app-portage/eclass-manpages: Make 20190310 snapshot

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

 app-portage/eclass-manpages/Manifest   |  1 +
 .../eclass-manpages-20190310.ebuild| 33 ++
 2 files changed, 34 insertions(+)

diff --git a/app-portage/eclass-manpages/Manifest 
b/app-portage/eclass-manpages/Manifest
index 693ca819202..55adff4166c 100644
--- a/app-portage/eclass-manpages/Manifest
+++ b/app-portage/eclass-manpages/Manifest
@@ -1 +1,2 @@
 DIST eclass-manpages-20180812.tar.xz 419912 BLAKE2B 
35659ac43e43e71c600fb4955267c9d57ed36f29e0607150a8e8c061b158b6135a4b91f4e4c05fa178a03aa3068726ac13cd54e4cd135fbe152c8bebf81659bb
 SHA512 
6d01070c6113e5d5f4102d466abaa03ae824350285ca71a5a4f84d859f6c473e8e92d3f5387b76c4bb5dc8bcedcc6b36a63e074d70725c87233dea4fa6a6d0c6
+DIST eclass-manpages-20190310.tar.xz 419588 BLAKE2B 
7832ebf2a9ed6fe1cd274094838217348f6c792b64c2b81126788e9035a773509223bec4515d7930fafc83ba8243785add3ec295dd66fc433c7f42bd69209174
 SHA512 
cd24a571769acb5dcbf179b1194921353f3d5e72f91bcddfbb6c827be259127e355933968ea1a1be1f7fb11b09c5d0c302556ad4c5b8782fc5c5a982a5108a0d

diff --git a/app-portage/eclass-manpages/eclass-manpages-20190310.ebuild 
b/app-portage/eclass-manpages/eclass-manpages-20190310.ebuild
new file mode 100644
index 000..db10d2aba06
--- /dev/null
+++ b/app-portage/eclass-manpages/eclass-manpages-20190310.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+DESCRIPTION="Collection of Gentoo eclass manpages"
+HOMEPAGE="https://www.gentoo.org/";
+SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.xz";
+
+LICENSE="GPL-2"
+SLOT="0"
+# Keep the keywords stabled. No need to change to ~arch.
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+
+DEPEND="app-arch/xz-utils"
+
+# How to create a snapshot and upload it to your dev-space:
+#
+# mkdir eclass-manpages-$(date +%Y%m%d)
+# cp "$(portageq get_repo_path / gentoo)"/eclass/*.eclass 
eclass-manpages-$(date +%Y%m%d)/
+# tar -cf eclass-manpages-$(date +%Y%m%d).tar eclass-manpages-$(date +%Y%m%d)
+# xz -e eclass-manpages-$(date +%Y%m%d).tar
+# scp eclass-manpages-$(date +%Y%m%d).tar.xz dev.gentoo.org:public_html/dist/
+#
+# Then copy the ebuild and update your name in SRC_URI ;-).
+
+src_compile() {
+   env ECLASSDIR="${S}" bash "${FILESDIR}"/eclass-to-manpage.sh || die
+}
+
+src_install() {
+   doman *.5
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/, app-crypt/openpgp-keys-gentoo-release/

2019-03-10 Thread Michał Górny
commit: c1c8bc053ad852906317b5eeb85fd2a894415039
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar 10 07:37:40 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 10 07:37:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1c8bc05

app-crypt/openpgp-keys-gentoo-release: Drop old

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

 app-crypt/openpgp-keys-gentoo-release/Manifest |  4 ---
 .../openpgp-keys-gentoo-release-20180706.ebuild| 41 --
 .../openpgp-keys-gentoo-release-20190102.ebuild| 41 --
 .../openpgp-keys-gentoo-release-20190223.ebuild| 41 --
 profiles/package.mask  |  5 ---
 5 files changed, 132 deletions(-)

diff --git a/app-crypt/openpgp-keys-gentoo-release/Manifest 
b/app-crypt/openpgp-keys-gentoo-release/Manifest
index 7d6c57b0ad5..0d6974e0e3f 100644
--- a/app-crypt/openpgp-keys-gentoo-release/Manifest
+++ b/app-crypt/openpgp-keys-gentoo-release/Manifest
@@ -1,6 +1,2 @@
-DIST gentoo-release-test-sigs-20180706.tar.gz 1437 BLAKE2B 
00fb0a491c84853068ea578e68e8ab0a57842f6098c14da7ec44faf20abb23deef480aca958a7e352b9c55a024681eabc0c9aaf400e5dcbf8873277a3a940e38
 SHA512 
2a7cc2c650693c0e1fdf7083d77bf975e05ece3ab1495ed03362d02e8411481c80a62a9f21b23861bdc602d74c656a618e9a39d2bdef7ccd253ea9f3e4c7531a
 DIST gentoo-release-test-sigs-20190224.tar.gz 3235 BLAKE2B 
924c69a62d5321716f536144f0607bd3ec4a65d76be492adc729864fd9bef82df0086541ae13034a83152ea0c8dc3cbd168be6cff111a3484128a22cbc8ef1d4
 SHA512 
f8cc2e84bedbdf14ace6abe4aacf8f0c9810c77ff6ae0fac301829d9d4d5cf0c128a76516c773ac993879215bcdb0aab097e1e7e747d8e1a7c4cfc815bd4d3e6
-DIST gentoo-release.asc.20180706.gz 44805 BLAKE2B 
1ba26b90e564738a1282c5febe426628144ab70e526397b866f97214254c73bbb517cdaa48ba0e83ca75a7d88cd622375fda0f362c43d13b66720ffb682682d2
 SHA512 
ba48cb6d7e72c6a720df3ff2430a4b4dd261f947c23762cd0c1255a93391d10becfb491db1bb80b295edd1f8192580315d5c7be3670b8689ef702ed228b05894
-DIST gentoo-release.asc.20190102.gz 51067 BLAKE2B 
ace66e603afb9a171e705992ae550439dbc51e6dd9a788e78a9e85d938b7f9841bd0dd866306b32066cab5c23995ed2278d4d22670b238227de28d08c914c142
 SHA512 
eea90df98e795edcc0e4cbc26f48313c0cf4593424106ff79e0dc237835e51536777840fcf54619252438515ad10930992bcfbcd32596bb203a75151cee10553
-DIST gentoo-release.asc.20190223.gz 50407 BLAKE2B 
6e3788da555fbb012c76ad174ddf6d0fd034c522b466b58c12e52eef5c900824724e32c51b53c7f7b542cca43073d1ab02ebcb7fc7560f0ff8c384cb47ee2fcc
 SHA512 
3d71a91ae889ee1d237003f017d1cb7aec9129a9bcc9aa9cf2256656a88aaf96048c308994eda0b9f6b6fc2041fdb81cf91eb31d0b1ab7b380fe692b43e70d62
 DIST gentoo-release.asc.20190224.gz 42534 BLAKE2B 
9b8bc98dbd66fdf44eb1b0b5a8e83bd4d08d85a3f9a95b293ae3e900de291567f36d59cb8dfb412e3f71db453184e2eefa453cf3e340d5b3091c55919fccebc7
 SHA512 
4f46c303faa134fc17903859527a9fa81d1015f4f2d2908509437ee2d07a992eb181c5a05544b333c310eda8ee2c1861cb07e978d92ef3f02955ade36110da67

diff --git 
a/app-crypt/openpgp-keys-gentoo-release/openpgp-keys-gentoo-release-20180706.ebuild
 
b/app-crypt/openpgp-keys-gentoo-release/openpgp-keys-gentoo-release-20180706.ebuild
deleted file mode 100644
index a36da1acafb..000
--- 
a/app-crypt/openpgp-keys-gentoo-release/openpgp-keys-gentoo-release-20180706.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="OpenPGP keys used for Gentoo releases (snapshots, stages)"
-HOMEPAGE="https://www.gentoo.org/downloads/signatures/";
-SRC_URI="https://dev.gentoo.org/~mgorny/dist/openpgp-keys/gentoo-release.asc.${PV}.gz
-   test? ( 
https://dev.gentoo.org/~mgorny/dist/openpgp-keys/gentoo-release-test-sigs-${PV}.tar.gz
 )"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="test"
-
-DEPEND="test? ( app-crypt/gnupg )"
-
-S=${WORKDIR}
-
-src_test() {
-   local old_umask=$(umask)
-   umask 077
-
-   local -x GNUPGHOME=${T}/.gnupg
-   mkdir "${GNUPGHOME}" || die
-   einfo "Importing keys ..."
-   gpg --import "gentoo-release.asc.${PV}" || die "Key import failed"
-
-   local f
-   for f in gentoo-release-test-sigs*/*.asc; do
-   einfo "Testing ${f##*/} ..."
-   gpg -q --trust-model always --verify "${f}" || die 
"Verification failed on ${f}"
-   done
-
-   umask "${old_umask}"
-}
-
-src_install() {
-   insinto /usr/share/openpgp-keys
-   newins "gentoo-release.asc.${PV}" gentoo-release.asc
-}

diff --git 
a/app-crypt/openpgp-keys-gentoo-release/openpgp-keys-gentoo-release-20190102.ebuild
 
b/app-crypt/openpgp-keys-gentoo-release/openpgp-keys-gentoo-release-20190102.ebuild
deleted file mode 100644
index b9a927fd8e1..000
--- 
a/app-crypt/openpgp-keys-gentoo-release/openpgp-keys-gentoo-release-20190102.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# 

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

2019-03-10 Thread Michał Górny
commit: b23bd84193a985fb55fcbff4f57f0ff24f8ee4c8
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar 10 07:53:38 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 10 08:06:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b23bd841

sys-fs/duperemove: Drop old

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

 sys-fs/duperemove/Manifest   |  1 -
 sys-fs/duperemove/duperemove-0.11.ebuild | 32 
 2 files changed, 33 deletions(-)

diff --git a/sys-fs/duperemove/Manifest b/sys-fs/duperemove/Manifest
index 45de93d439e..06ec96bc426 100644
--- a/sys-fs/duperemove/Manifest
+++ b/sys-fs/duperemove/Manifest
@@ -1,2 +1 @@
 DIST duperemove-0.11.1.tar.gz 115740 BLAKE2B 
7804f1c98cdeb349ae12425636575c9b2468613dfe908d8c9f1d9fb74aefb412142002a0fc899b8448ed1b255257569555264b9d9c172899f856a919d02dd1a8
 SHA512 
3c344b00b8fb58a259840aea977ba2e5123b651bb58ec84177bdfd8337a377361984b85c6325271b7d3e4ea216017fa6fda793136c83e9837a13ec041df326b9
-DIST duperemove-0.11.tar.gz 115307 BLAKE2B 
39fa9f80c017583c8943a5cddd1c69f38216adad26548c248e1877548717995d7b80f03f0e1c1515648aaad90996c80c224bb36fa27f13fe14fb22a123facf48
 SHA512 
b1bc2beb92223f9b46f8838e2f983ec763a9dff302f4202a34cc5e10591b985519f0464b6eba566c56872e671ba80583c7fdf4a232325086141d011384a286cf

diff --git a/sys-fs/duperemove/duperemove-0.11.ebuild 
b/sys-fs/duperemove/duperemove-0.11.ebuild
deleted file mode 100644
index d4e2c71f1ab..000
--- a/sys-fs/duperemove/duperemove-0.11.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="Btrfs deduplication utility"
-HOMEPAGE="https://github.com/markfasheh/duperemove";
-SRC_URI="https://github.com/markfasheh/duperemove/archive/v${PV/_/.}.tar.gz -> 
${P/_/.}.tar.gz"
-
-# includes code from libbloom, xxhash (BSD-2)
-# includes code from polarssl (GPL-2+)
-LICENSE="GPL-2 GPL-2+ BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-db/sqlite:3=
-   dev-libs/glib:2="
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${P/_/.}
-
-src_compile() {
-   emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall"
-}
-
-src_install() {
-   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
-}



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

2019-03-10 Thread Michał Górny
commit: eeba7d5d605cd8ece37d764f49d16a6b3070a26a
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar 10 07:50:11 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 10 08:06:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeba7d5d

sci-mathematics/z3: Drop old

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

 sci-mathematics/z3/Manifest   |   1 -
 sci-mathematics/z3/z3-4.8.3-r1.ebuild | 106 -
 sci-mathematics/z3/z3-4.8.3.ebuild| 108 --
 3 files changed, 215 deletions(-)

diff --git a/sci-mathematics/z3/Manifest b/sci-mathematics/z3/Manifest
index 29f6e9034b3..8fa3186e1cc 100644
--- a/sci-mathematics/z3/Manifest
+++ b/sci-mathematics/z3/Manifest
@@ -1,4 +1,3 @@
 DIST z3-4.4.1.tar.gz 3347371 BLAKE2B 
57f090b891618613c4647a89620d12f2ac05ea110268e63b343594f53fa2cc7aa347781001e2778ea7dc1ce475c964ddeced7a82c304b4be706ad164fd17a285
 SHA512 
76991a24f47f2b53ceb8d7a9a6be19913c57994ffb6cf6acfe30f61b2e73959cf02a99f656053594fccb5aaf4d1f44b3ae7e51f1c8953b213d738ceeeaea74f8
 DIST z3-4.5.0.tar.gz 3573695 BLAKE2B 
285cc4d1f998d61ddb0b854044b7c79c1bb4cccf51bbdcba7c4a45698d74d9591f84d0aa74c5ef7c8aea2c6539ac987f29e326b44037e954108df67644dff594
 SHA512 
1ebc2c908d90b6b879f1e819c864ff894613276af47a440f27cf94968c195656952434754c3eb20f4bdbdd8497d227d22e1b4821c0d320b11052b5648d9e2dc7
-DIST z3-4.8.3.tar.gz 4119116 BLAKE2B 
02535832a28ba09bb5b5c9354c77941bdce29fe977fa88d59e2e757fd6242b7d9ffcb0bbc0f9462ac7fd58bc29020be848b27311cf3f51cd60e84f66713a05e1
 SHA512 
34a2dca0083ed469fdaf5ac062dda26248633245607ddd9ef90629c5f76ae30f87bfa4191c04ba9be7a617bf182a1bd00b59fd2274699e12ece69b86088c8044
 DIST z3-4.8.4.tar.gz 4117081 BLAKE2B 
6912defbae0e5444c451c4d7c6fb5d51167a1ae166257c7bfc53044ce7e9b9c4bd9824986c2ae1e6abfd6fef495234c9bea60078f8db2c1faaae11f34d666831
 SHA512 
4660ba6ab33a6345b2e8396c332d4afcfc73eda66ceb2595a39f152df4d62a9ea0f349b0f9212389ba84ecba6bdae6ad9b62b376ba44dc4d9c74f80d7a818bf4

diff --git a/sci-mathematics/z3/z3-4.8.3-r1.ebuild 
b/sci-mathematics/z3/z3-4.8.3-r1.ebuild
deleted file mode 100644
index 6c92ed32341..000
--- a/sci-mathematics/z3/z3-4.8.3-r1.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} )
-
-inherit cmake-multilib python-single-r1 toolchain-funcs
-
-DESCRIPTION="An efficient theorem prover"
-HOMEPAGE="http://z3.codeplex.com/";
-SRC_URI="https://github.com/Z3Prover/z3/archive/${P}.tar.gz";
-
-SLOT="0/4.8"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples gmp isabelle java openmp python"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-   gmp? ( dev-libs/gmp:0=[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )
-   java? ( >=virtual/jdk-1.8 )"
-
-S=${WORKDIR}/${PN}-${P}
-
-CMAKE_BUILD_TYPE=RelWithDebInfo
-
-pkg_setup() {
-   python_setup
-
-   if [[ ${MERGE_TYPE} != binary ]]; then
-   if use openmp && ! tc-has-openmp; then
-   ewarn "Please use an openmp compatible compiler"
-   ewarn "like >gcc-4.2 with USE=openmp"
-   die "Openmp support missing in compiler"
-   fi
-   fi
-}
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_INSTALL_DOCDIR="${EPREFIX}/usr/share/doc/${P}"
-   -DUSE_LIB_GMP=$(usex gmp)
-   -DUSE_OPENMP=$(usex openmp)
-   -DENABLE_EXAMPLE_TARGETS=OFF
-   -DBUILD_DOCUMENTATION=$(multilib_native_usex doc)
-   -DBUILD_PYTHON_BINDINGS=$(multilib_native_usex python)
-   -DBUILD_JAVA_BINDINGS=$(multilib_native_usex java)
-   )
-
-   cmake-utils_src_configure
-}
-
-multilib_src_test() {
-   cmake-utils_src_make test-z3
-   set -- "${BUILD_DIR}"/test-z3 /a
-   echo "${@}" >&2
-   "${@}" || die
-}
-
-multilib_src_install_all() {
-   dodoc README.md RELEASE_NOTES
-   use examples && dodoc -r examples
-   use python && python_optimize
-
-   if use isabelle; then
-   insinto /usr/share/Isabelle/contrib/${P}/etc
-   newins - settings <<-EOF
-   Z3_COMPONENT="\$COMPONENT"
-   Z3_HOME="${EPREFIX}/usr/bin"
-   Z3_SOLVER="${EPREFIX}/usr/bin/z3"
-   Z3_REMOTE_SOLVER="z3"
-   Z3_VERSION="${PV}"
-   Z3_INSTALLED="yes"
-   Z3_NON_COMMERCIAL="yes"
-   EOF
-   fi
-}
-
-pkg_postinst() {
-   if use isabelle; then
-   if [[ -f ${ROOT%/}/etc/isabelle/components ]]; then
-   sed -e "/contrib\/${PN}-[0-9.]*/d" \
-   -i "${ROOT%/}/etc/isabelle/components" || die
-   cat <<-EOF >> "${ROOT%/}/

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

2019-03-10 Thread Michał Górny
commit: dc05668b1508596a631606d7883cfcfeffe38150
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar 10 07:48:21 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 10 08:06:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc05668b

net-misc/minissdpd: Drop old

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

 net-misc/minissdpd/Manifest  |  1 -
 net-misc/minissdpd/minissdpd-1.5.20180223.ebuild | 32 
 2 files changed, 33 deletions(-)

diff --git a/net-misc/minissdpd/Manifest b/net-misc/minissdpd/Manifest
index 0879fce76d2..7dbb366172f 100644
--- a/net-misc/minissdpd/Manifest
+++ b/net-misc/minissdpd/Manifest
@@ -1,2 +1 @@
-DIST minissdpd-1.5.20180223.tar.gz 36179 BLAKE2B 
0668862848e8d3f87b151e84e3fbea39a593556b4c9a3800ab7b534228a5af2c7cb20ad183e99f95d9616d306cc5aabdc379521bfb19a5e25a63fe0d81d816d7
 SHA512 
2564aa91ad54da392ca305a59b3eeab9b4c0a8504c674fc0c34d387560b239ea03c988e667fa3100b2b01e6916dc8e00ddc161fd6f652912a37b4b879b54dfbd
 DIST minissdpd-1.5.20190210.tar.gz 37227 BLAKE2B 
a273c35bb332e50f5c528cc395b257de7761fbec2cdef910018b0c751026ca4f3fc9fce60485c4209488574d3130a3c8a6d2755ae4114d2f4e2c0316491be021
 SHA512 
1902c3c396cdcec90af0638305224f77871bd7f70057ac8a1ff59b3ab6da168ee17eb52a5bee87eb85c8d759d02112225876e38c254ad521396eca9c4884686c

diff --git a/net-misc/minissdpd/minissdpd-1.5.20180223.ebuild 
b/net-misc/minissdpd/minissdpd-1.5.20180223.ebuild
deleted file mode 100644
index dea4e303461..000
--- a/net-misc/minissdpd/minissdpd-1.5.20180223.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-inherit toolchain-funcs
-
-DESCRIPTION="MiniSSDP Daemon"
-SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz";
-HOMEPAGE="http://miniupnp.free.fr/";
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="net-libs/libnfnetlink"
-
-RDEPEND="$DEPEND
-   || ( net-misc/miniupnpd net-libs/miniupnpc )"
-
-src_compile() {
-   emake CC="$(tc-getCC)"
-}
-
-src_install () {
-   emake PREFIX="${ED}" install
-   # note: we overwrite upstream's init.d
-   newinitd "${FILESDIR}/${PN}.initd-r2" ${PN}
-   newconfd "${FILESDIR}/${PN}.confd" ${PN}
-   dodoc Changelog.txt README
-   doman minissdpd.1
-}



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

2019-03-10 Thread Michał Górny
commit: 2d3f6d0e4d4df32ab5462d887516da22b41f440a
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar 10 07:48:51 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 10 08:06:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d3f6d0e

net-wireless/blueman: Drop old

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

 net-wireless/blueman/Manifest  |   1 -
 net-wireless/blueman/blueman-2.1_alpha2.ebuild | 125 -
 2 files changed, 126 deletions(-)

diff --git a/net-wireless/blueman/Manifest b/net-wireless/blueman/Manifest
index 7f7f0743ec3..124c276d615 100644
--- a/net-wireless/blueman/Manifest
+++ b/net-wireless/blueman/Manifest
@@ -1,2 +1 @@
-DIST blueman-2.1.alpha2.tar.xz 977344 BLAKE2B 
c5d3d0a96c1220596647ade310263342cdaaeef511a2fb36973d182025330a29b41fb805ce54e10a2f48c1c66312006858789233f8f0a93923952bb03ac32b19
 SHA512 
bde4922a93087d07fd99b165255ded8d9465866e62662f644beaafe363d5618a107abbd9d951cfbd034b02b6ece11fb8117efdd5d453632e4a2fea13d3825643
 DIST blueman-2.1.alpha3.tar.xz 977724 BLAKE2B 
a1b02956249c65bb9dc870f9585f917b17e99d570c2a3f05f505de9ea4ec004ff9ad5d88e958ec84566fdcf0f3fe6cf1965dcdc050241feedbd08fff98d18b22
 SHA512 
e2ad9aff87148e522705872829e9c4c78a1bfbe29e102b69b1f1f56348743343cb543eaac4c21e157aa579b76f023ca9164700a4a08848f55f17d025cead23a6

diff --git a/net-wireless/blueman/blueman-2.1_alpha2.ebuild 
b/net-wireless/blueman/blueman-2.1_alpha2.ebuild
deleted file mode 100644
index b87f40169f1..000
--- a/net-wireless/blueman/blueman-2.1_alpha2.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} )
-inherit gnome2-utils linux-info python-single-r1 systemd
-
-DESCRIPTION="Simple and intuitive GTK+ Bluetooth Manager"
-HOMEPAGE="https://github.com/blueman-project/blueman";
-
-if [[ ${PV} == "" ]] ; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/blueman-project/blueman.git";
-   KEYWORDS=""
-else
-   
SRC_URI="https://github.com/blueman-project/${PN}/releases/download/${PV/_/.}/${P/_/.}.tar.xz";
-   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="appindicator network nls policykit pulseaudio"
-
-COMMON_DEPEND="
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   >=net-wireless/bluez-5:=
-   ${PYTHON_DEPS}"
-DEPEND="${COMMON_DEPEND}
-   dev-python/cython[${PYTHON_USEDEP}]
-   virtual/pkgconfig
-   nls? ( dev-util/intltool sys-devel/gettext )"
-RDEPEND="${COMMON_DEPEND}
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   sys-apps/dbus
-   x11-libs/gtk+:3[introspection]
-   x11-libs/libnotify[introspection]
-   || (
-   x11-themes/adwaita-icon-theme
-   x11-themes/faenza-icon-theme
-   x11-themes/mate-icon-theme
-   )
-   appindicator? ( dev-libs/libappindicator:3[introspection] )
-   network? (
-   net-firewall/iptables
-   sys-apps/net-tools
-   || (
-   net-dns/dnsmasq
-   net-misc/dhcp
-   >=net-misc/networkmanager-0.8
-   )
-   )
-   policykit? ( sys-auth/polkit )
-   pulseaudio? ( media-sound/pulseaudio[bluetooth] )
-   !net-wireless/gnome-bluetooth
-"
-
-S=${WORKDIR}/${P/_/.}
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-pkg_pretend() {
-   if use network; then
-   local CONFIG_CHECK="~BRIDGE ~IP_NF_IPTABLES
-   ~IP_NF_NAT ~IP_NF_TARGET_MASQUERADE"
-   linux-info_pkg_setup
-   fi
-}
-
-pkg_setup() {
-   pkg_pretend
-   python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   default
-   [[ ${PV} ==  ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --docdir=/usr/share/doc/${PF}
-   --disable-runtime-deps-check
-   --disable-static
-   # TODO: replace upstream with sane system/user unitdir getters
-   --with-systemdunitdir="$(systemd_get_utildir)"
-   $(use_enable appindicator)
-   $(use_enable policykit polkit)
-   $(use_enable nls)
-   $(use_enable pulseaudio)
-   # thunar integration is a single data file with no extra deps
-   # so install it unconditionally
-   --enable-thunar-sendto
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-
-   if use policykit; then
-   # Allow users in plugdev group to modify connections
-   insinto /usr/share/polkit-1/rules.d
-   doins "${FILESDIR}/01-org.blueman.rules"
-   fi
-
-   python_fix_shebang "${D}"
-   rm "${D}"/$(python_get_sitedir)/*.la || die
-}
-
-pkg_preinst() {
-   gnom

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

2019-03-10 Thread Michał Górny
commit: 2c9c43271800da94ff93981c39eca24c8e3bddda
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar 10 07:48:35 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 10 08:06:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c9c4327

net-misc/miniupnpd: Drop old

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

 net-misc/miniupnpd/Manifest  |  1 -
 net-misc/miniupnpd/miniupnpd-2.1.20180706.ebuild | 62 
 2 files changed, 63 deletions(-)

diff --git a/net-misc/miniupnpd/Manifest b/net-misc/miniupnpd/Manifest
index f95f7bc2a90..8bb0d316b83 100644
--- a/net-misc/miniupnpd/Manifest
+++ b/net-misc/miniupnpd/Manifest
@@ -1,2 +1 @@
-DIST miniupnpd-2.1.20180706.tar.gz 233675 BLAKE2B 
641be6dc6a32383a02711139ac56236dc285041f2bda595a909ed5281a5163d1300212892e011f6256c6cf73b877f0e5e2e93efbfb08a77b0ae7d3dde94c28f6
 SHA512 
90881e08754f9fe3d1ef01da1fe437626d1fef09bea5eab9c1bcf3347e1197038ab87de8c7c454083ba90a86760230a323a6c293307b0fcecefbd5cfb658d227
 DIST miniupnpd-2.1.20190210.tar.gz 235093 BLAKE2B 
d86b4a73ebfe6b5f3665b92624e7eac36718fffea058c0e7d2cb4af2c0871534c7f7ec56ade6c3cb2e13215a77971173259f912efd61a37e41d0f2f0a4596e5c
 SHA512 
d664d5f61a0e2e71086aa520cb91af9f7f9b8b34268a76d570bbca271d86eab4976655a1fec1d21be80a93e357a0cb185281037604a0cfc00e4944d8e8b6f664

diff --git a/net-misc/miniupnpd/miniupnpd-2.1.20180706.ebuild 
b/net-misc/miniupnpd/miniupnpd-2.1.20180706.ebuild
deleted file mode 100644
index 9f786c4d43a..000
--- a/net-misc/miniupnpd/miniupnpd-2.1.20180706.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="MiniUPnP IGD Daemon"
-HOMEPAGE="http://miniupnp.free.fr/";
-SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="+leasefile igd2 ipv6 pcp-peer portinuse strict"
-
-RDEPEND=">=net-firewall/iptables-1.4.6:0=[ipv6?]
-   net-libs/libnfnetlink:=
-   net-libs/libmnl:=
-   dev-libs/gmp:0=
-   sys-apps/util-linux
-   dev-libs/openssl:0="
-DEPEND="${RDEPEND}
-   sys-apps/lsb-release"
-
-src_prepare() {
-   default
-   mv Makefile.linux Makefile || die
-}
-
-src_configure() {
-   local -a opts
-   opts=(
-   --vendorcfg
-   $(usex igd2 '--igd2' '')
-   $(usex ipv6 '--ipv6' '')
-   $(usex leasefile '--leasefile' '')
-   $(usex portinuse '--portinuse' '')
-   $(usex pcp-peer '--pcp-peer' '')
-   $(usex strict '--strict' '')
-   )
-
-   emake CONFIG_OPTIONS="${opts[*]}" config.h
-}
-
-src_compile() {
-   # By default, it builds a bunch of unittests that are missing wrapper
-   # scripts in the tarball
-   emake CC="$(tc-getCC)" STRIP=true miniupnpd
-}
-
-src_install() {
-   emake PREFIX="${ED}" STRIP=true install
-
-   newinitd "${FILESDIR}"/${PN}-init.d-r1 ${PN}
-   newconfd "${FILESDIR}"/${PN}-conf.d-r1 ${PN}
-}
-
-pkg_postinst() {
-   elog "Please correct the external interface in the top of the two"
-   elog "scripts in /etc/miniupnpd and edit the config file in there too"
-}



  1   2   3   4   >