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

2018-11-16 Thread Michael Palimaka
commit: 6281dc11303b8c14979e3994f6cc2f2fd9e89062
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 17 07:43:14 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 17 07:43:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6281dc11

net-irc/unrealircd: version bump 4.2.0

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

 net-irc/unrealircd/Manifest|   1 +
 net-irc/unrealircd/unrealircd-4.2.0.ebuild | 184 +
 2 files changed, 185 insertions(+)

diff --git a/net-irc/unrealircd/Manifest b/net-irc/unrealircd/Manifest
index 79557586c05..f796d1e7b80 100644
--- a/net-irc/unrealircd/Manifest
+++ b/net-irc/unrealircd/Manifest
@@ -1 +1,2 @@
 DIST unrealircd-4.0.18.tar.gz 5317767 BLAKE2B 
cb71144ce0fce7f719b3081f2da9f85c997dbc372492dfa57354eb51aee122f0e42fdba9e0aca997cd118ed9c75fb6f197ca13e371931fe45709d6b64651336d
 SHA512 
b9541ea83c24963187931938eadbba746175ec1d9449631e799df038bb062625e4b508c2d0d4e9e69a6401158cc23a855cbfbda3d28a4b971fbb249f074d26d3
+DIST unrealircd-4.2.0.tar.gz 5340752 BLAKE2B 
12d1ada1d439c6acd692a04dd4ed7ed03ea91c897f9522c0fec853239ba9a21098bddb78c6f5159ed59f1b88cf88f0ecaa774d70aba226b3ac749c935bc18ff5
 SHA512 
2ee7955c3c6c9af2b74cb68cfa94f8500dddf640f0222888b230f0f46dd0a52fba2c68d795eff00c59a3025affb2becb1dd67ebac037c7f75e77a3a728239750

diff --git a/net-irc/unrealircd/unrealircd-4.2.0.ebuild 
b/net-irc/unrealircd/unrealircd-4.2.0.ebuild
new file mode 100644
index 000..59861f9667f
--- /dev/null
+++ b/net-irc/unrealircd/unrealircd-4.2.0.ebuild
@@ -0,0 +1,184 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+SSL_CERT_MANDATORY=1
+inherit eapi7-ver ssl-cert user
+
+DESCRIPTION="An advanced Internet Relay Chat daemon"
+HOMEPAGE="https://www.unrealircd.org/;
+SRC_URI="https://www.unrealircd.org/${PN}$(ver_cut 1)/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~amd64-linux"
+IUSE="class-nofakelag curl +extban-stacking +operoverride operoverride-verify 
+prefixaq
+   showlistmodes shunnotices topicisnuhost +usermod"
+
+RDEPEND="
+   dev-libs/openssl:0=
+   dev-libs/libpcre2
+   dev-libs/tre
+   >=net-dns/c-ares-1.7:=
+   sys-libs/zlib
+   curl? ( net-misc/curl[adns] )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+DOCS=( 
doc/{Authors,Donation,RELEASE-NOTES{,.old},tao.of.irc,technical/,translations.txt}
 )
+
+pkg_pretend() {
+   local v
+   for v in ${REPLACING_VERSIONS}; do
+   ver_test "${v}" -ge 4 && continue
+   ewarn "The configuration file format has changed since ${v}."
+   ewarn "Please be prepared to manually update them and visit:"
+   ewarn "https://www.unrealircd.org/docs/Upgrading_from_3.2.x;
+   break
+   done
+}
+
+pkg_setup() {
+   enewuser unrealircd
+}
+
+src_prepare() {
+   # QA check against bundled pkgs
+   rm -r extras || die
+
+   if use class-nofakelag; then
+   sed -i -e 's:#undef\( FAKELAG_CONFIGURABLE\):#define\1:' 
include/config.h || die
+   fi
+
+   # By default looks in /etc/unrealircd/ssl/curl-ca-bundle.crt. Fix
+   # that to look for ca-certificates-provided file instead. %s is
+   # CONFDIR. #618066
+   sed -i -e 
's:%s/ssl/curl-ca-bundle.crt:%s/../ssl/certs/ca-certificates.crt:' src/s_conf.c 
|| die
+
+   eapply_user
+}
+
+src_configure() {
+   # Default value for privatelibdir adds a build path to -Wl,-rpath.
+   econf \
+   --with-bindir="${EPREFIX}"/usr/bin \
+   --with-cachedir="${EPREFIX}"/var/lib/${PN} \
+   --with-confdir="${EPREFIX}"/etc/${PN} \
+   --with-datadir="${EPREFIX}"/var/lib/${PN} \
+   --with-docdir="${EPREFIX}"/usr/share/doc/${PF} \
+   --with-logdir="${EPREFIX}"/var/log/${PN} \
+   
--with-modulesdir="${EPREFIX}"/usr/"$(get_libdir)"/${PN}/modules \
+   --without-privatelibdir \
+   --with-pidfile="${EPREFIX}"/run/${PN}/ircd.pid \
+   --with-tmpdir="${EPREFIX}"/var/lib/${PN}/tmp \
+   --with-nick-history=2000 \
+   --with-sendq=300 \
+   --with-permissions=0640 \
+   --with-fd-setsize=1024 \
+   --with-system-cares \
+   --with-system-pcre2 \
+   --with-system-tre \
+   --enable-dynamic-linking \
+   --enable-ssl="${EPREFIX}"/usr \
+   $(use_enable curl libcurl "${EPREFIX}"/usr) \
+   $(use_enable prefixaq) \
+   $(use_with showlistmodes) \
+   $(use_with topicisnuhost) \
+   $(use_with shunnotices) \
+   $(use_with !operoverride no-operoverride) \
+   $(use_with operoverride-verify) \
+   

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

2018-11-16 Thread Michael Palimaka
commit: 929df0fd9b5240d082cce55d451e9930ca5a7965
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 17 07:21:30 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 17 07:24:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=929df0fd

app-admin/keepass: remove old

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

 app-admin/keepass/Manifest  |   2 -
 app-admin/keepass/keepass-2.38.ebuild   | 111 
 app-admin/keepass/keepass-2.39.1.ebuild | 111 
 app-admin/keepass/keepass-2.40.ebuild   | 111 
 4 files changed, 335 deletions(-)

diff --git a/app-admin/keepass/Manifest b/app-admin/keepass/Manifest
index af6c4787cba..64419adf1b9 100644
--- a/app-admin/keepass/Manifest
+++ b/app-admin/keepass/Manifest
@@ -1,3 +1 @@
-DIST KeePass-2.38-Source.zip 5091900 BLAKE2B 
22e3f7046984204a3e0c4a1c6d8303661048bc0fee4bcdb7999b521d0ed6e5463d89044d2897cfec0c932349cc80a7b43d4c8dfbceb4f2e88041c642e0c0d231
 SHA512 
42fa7274874d4858da360a6772eb25adbf3a6dafe375093459d9a25903d8c159360ea722e969fe8b330bccf62ee5d381e131bd0ba075445932d8019eee19bf20
-DIST KeePass-2.39.1-Source.zip 5109228 BLAKE2B 
0b1214ac70d3d615e029c89abe63176f31e29a3fb800d84b6102220d2d39ebba848e3100e85e6f3d5cd4965461c68798ba880d5b229e8f8e6a20b0d65c2c632c
 SHA512 
9f2b5f6c86b00932f132f8eea24fc35f08c217ed3feb047afe585592761f5297b76140c3154fb519dc5c9137718227a0bc4b6a45d22d1eb0ac95d08c73a70314
 DIST KeePass-2.40-Source.zip 5136918 BLAKE2B 
7b5071cbe3bc5f20450a094a4b8969e2e25f6bba27d88ee5c2c25f2706ed3cf18e721ba53ff54c78db6ea1e167cef1108611fc8253a9d6e19eb3f9d1f3317c73
 SHA512 
222f7e7ef65be8b0d75baa0a6e871d5edad1b570b64f261405b843d7387ec1faeb4138afb8b31934d70eebe0add297681028cb4f3acfcbe4f518c763fe6c0145

diff --git a/app-admin/keepass/keepass-2.38.ebuild 
b/app-admin/keepass/keepass-2.38.ebuild
deleted file mode 100644
index 4b997c59a7e..000
--- a/app-admin/keepass/keepass-2.38.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils gnome2-utils xdg-utils
-
-MY_PN="KeePass"
-DESCRIPTION="A free, open source, light-weight and easy-to-use password 
manager"
-HOMEPAGE="https://keepass.info/;
-SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}-Source.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="aot"
-
-COMMON_DEPEND="dev-lang/mono"
-DEPEND="${COMMON_DEPEND}
-   app-arch/unzip
-"
-RDEPEND="${COMMON_DEPEND}
-   dev-dotnet/libgdiplus[cairo]
-"
-
-S="${WORKDIR}"
-PATCHES=( "${FILESDIR}/${PN}-2.36-xsl-path-detection.patch" )
-
-src_prepare() {
-   # KeePass looks for some XSL files in the same folder as the executable,
-   # we prefer to have it in /usr/share/KeePass. Apply patch using base 
function.
-   # This XSL file will not be upstreamed since the KeePass creator said 
that
-   # including this patch would break the Portable USB version of KeePass
-   # (which keeps/looks for xsl files in its own folder)
-   default
-
-   # Switch into build dir so the mono prepration script works correctly
-   cd Build || die
-   source PrepMonoDev.sh || die
-   cd ../ || die
-}
-
-src_compile() {
-   # Build with Release target
-   xbuild /target:KeePass /property:Configuration=Release || die
-
-   # Run Ahead Of Time compiler on the binary
-   if use aot; then
-   cp Ext/KeePass.exe.config Build/KeePass/Release/ || die
-   mono --aot -O=all Build/KeePass/Release/KeePass.exe || die
-   fi
-}
-
-src_install() {
-   # Wrapper script to launch mono
-   make_wrapper "${PN}" "mono /usr/$(get_libdir)/${PN}/KeePass.exe"
-
-   # Some XSL files
-   insinto "/usr/share/${PN}/XSL"
-   doins Ext/XSL/*
-
-   insinto "/usr/$(get_libdir)/${PN}/"
-   exeinto "/usr/$(get_libdir)/${PN}/"
-
-   doins Ext/KeePass.exe.config
-
-   # Default configuration, simply says to use user-specific configuration
-   doins Ext/KeePass.config.xml
-
-   # The actual executable
-   doexe Build/KeePass/Release/KeePass.exe
-
-   # Copy the AOT compilation result
-   if use aot; then
-   doexe Build/KeePass/Release/KeePass.exe.so
-   fi
-
-   # Prepare the icons
-   newicon -s 256 Ext/Icons_04_CB/Finals/plockb.png "${PN}.png"
-   newicon -s 256 -t gnome -c mimetypes Ext/Icons_04_CB/Finals/plockb.png 
"application-x-${PN}2.png"
-
-   # Create a desktop entry and associate it with the KeePass mime type
-   make_desktop_entry "${PN}" "${MY_PN}" "${PN}" "System;Security" 
"MimeType=application/x-keepass2;"
-
-   # MIME descriptor for .kdbx files
-   insinto /usr/share/mime/packages/
-   doins "${FILESDIR}/${PN}.xml"
-
-   # sed, because patching this really sucks
-   sed -i 

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

2018-11-16 Thread Michael Palimaka
commit: beb99ec9685f77e1b1881ef4e2f6f1d7d9948456
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 17 07:24:16 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 17 07:24:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beb99ec9

sys-auth/elogind: remove 238.1

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

 sys-auth/elogind/Manifest  |   1 -
 sys-auth/elogind/elogind-238.1.ebuild  | 132 -
 .../elogind/files/elogind-238.1-meson-0.48.patch   |  46 ---
 3 files changed, 179 deletions(-)

diff --git a/sys-auth/elogind/Manifest b/sys-auth/elogind/Manifest
index bd472106483..c1c421f1fa8 100644
--- a/sys-auth/elogind/Manifest
+++ b/sys-auth/elogind/Manifest
@@ -1,3 +1,2 @@
-DIST elogind-238.1.tar.gz 1074179 BLAKE2B 
3041e9cfa0d454f653db164db8e59af4db5f3821bbb65cb5482d83f63e410612e121791f7ef3e08c9ac3940c7b6c7931df2b072ba452d2073c3e424e4dfe10c3
 SHA512 
ba0a74e9b9168b08a54b13ed500e9c713c48bb1648aa6064dbe666a96fa3fbd5b69447c35f686db3a1813476a5585be34b1ae13e3c9017eac8171b73f6311c4c
 DIST elogind-238.2.tar.gz 1075847 BLAKE2B 
17e4d8ffabb65a210f34076223e502c9019a7fa639f6cc12b1c8a0e186d8a6e97f115cd68487c86470915a8208dead6830577d2da3ffd85ed2e12c3a699ef2c5
 SHA512 
c66dd514d7c708a1d1c52ac9f25f34af839c4d4ff452302b40eb95c040c1d3d8d238b4e35c33d81af71f6aac22c8793951d91d005e6595e02124edb976baf640
 DIST elogind-239.1.tar.gz 1123754 BLAKE2B 
e75a48c28ff17e946e3ac4b7d3d19f1798fd1812da6c1d1f2ac8917865331563ea3bce73bbe4d7591bd7caddaf11e4272b3c1a82b6128e99e8dfe2528a2e8e38
 SHA512 
282a5d9a809ce55a03f650dd235529c24254a20495c61e33f802390787486d9b303da8983fd7e28beaf3cdd2fed9497bd897c202d38ef0182d4b4c632d4d2f62

diff --git a/sys-auth/elogind/elogind-238.1.ebuild 
b/sys-auth/elogind/elogind-238.1.ebuild
deleted file mode 100644
index 176b4b39bba..000
--- a/sys-auth/elogind/elogind-238.1.ebuild
+++ /dev/null
@@ -1,132 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit linux-info meson pam udev xdg-utils
-
-DESCRIPTION="The systemd project's logind, extracted to a standalone package"
-HOMEPAGE="https://github.com/elogind/elogind;
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="CC0-1.0 LGPL-2.1+ public-domain"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="+acl debug doc +pam +policykit selinux"
-
-COMMON_DEPEND="
-   sys-apps/util-linux
-   sys-libs/libcap
-   virtual/libudev:=
-   acl? ( sys-apps/acl )
-   pam? ( virtual/pam )
-   selinux? ( sys-libs/libselinux )
-"
-DEPEND="${COMMON_DEPEND}
-   app-text/docbook-xml-dtd:4.2
-   app-text/docbook-xml-dtd:4.5
-   app-text/docbook-xsl-stylesheets
-   dev-util/gperf
-   dev-util/intltool
-   sys-devel/libtool
-   virtual/pkgconfig
-"
-RDEPEND="${COMMON_DEPEND}
-   !sys-apps/systemd
-"
-PDEPEND="
-   sys-apps/dbus
-   policykit? ( sys-auth/polkit )
-"
-
-DOCS=( src/libelogind/sd-bus/GVARIANT-SERIALIZATION )
-
-PATCHES=(
-   "${FILESDIR}/${P}-docs.patch"
-   "${FILESDIR}/${P}-meson-0.48.patch"
-)
-
-pkg_setup() {
-   local CONFIG_CHECK="~CGROUPS ~EPOLL ~INOTIFY_USER ~SIGNALFD ~TIMERFD"
-
-   if use kernel_linux; then
-   linux-info_pkg_setup
-   fi
-}
-
-src_prepare() {
-   default
-   xdg_environment_reset
-}
-
-src_configure() {
-   local rccgroupmode="$(grep rc_cgroup_mode /etc/rc.conf | cut -d '"' -f 
2)"
-   local cgroupmode="legacy"
-
-   if [[ "xhybrid" = "x${rccgroupmode}" ]] ; then
-   cgroupmode="hybrid"
-   elif [[ "xunified" = "x${rccgroupmode}" ]] ; then
-   cgroupmode="unified"
-   fi
-
-   local emesonargs=(
-   -Ddocdir="${EPREFIX}/usr/share/doc/${PF}"
-   -Dhtmldir="${EPREFIX}/usr/share/doc/${PF}/html"
-   -Dpamlibdir=$(getpam_mod_dir)
-   -Dudevrulesdir="$(get_udevdir)"/rules.d
-   --libdir="${EPREFIX}"/usr/$(get_libdir)
-   -Drootlibdir="${EPREFIX}"/$(get_libdir)
-   -Drootlibexecdir="${EPREFIX}"/$(get_libdir)/elogind
-   -Drootprefix="${EPREFIX}/"
-   
-Dbashcompletiondir="${EPREFIX}/usr/share/bash-completion/completions"
-   -Dman=auto
-   -Dsmack=true
-   -Dcgroup-controller=openrc
-   -Ddefault-hierarchy=${cgroupmode}
-   -Ddefault-kill-user-processes=false
-   -Dacl=$(usex acl true false)
-   -Ddebug=$(usex debug elogind false)
-   --buildtype $(usex debug debug release)
-   -Dhtml=$(usex doc auto false)
-   -Dpam=$(usex pam true false)
-   -Dselinux=$(usex selinux true false)
-   )
-
-   meson_src_configure
-}
-
-src_install() {
-   DOCS+=( 

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

2018-11-16 Thread Michael Palimaka
commit: 4f0c9d736deb10b47f919d4f1f0684f873c3351d
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 17 07:21:04 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 17 07:24:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f0c9d73

app-admin/keepass: stabilise 2.40-r1 for amd64/x86

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

 app-admin/keepass/keepass-2.40-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/keepass/keepass-2.40-r1.ebuild 
b/app-admin/keepass/keepass-2.40-r1.ebuild
index ef34df76c0b..6a0068dce46 100644
--- a/app-admin/keepass/keepass-2.40-r1.ebuild
+++ b/app-admin/keepass/keepass-2.40-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}-Source.zip"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="aot"
 
 COMMON_DEPEND="dev-lang/mono"



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

2018-11-16 Thread Michael Palimaka
commit: d5fc8739c14e28b27a31030e07768b424e5c68f6
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 17 07:22:53 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 17 07:24:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5fc8739

sys-auth/elogind: stabilise 238.2 for x86

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

 sys-auth/elogind/elogind-238.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/elogind/elogind-238.2.ebuild 
b/sys-auth/elogind/elogind-238.2.ebuild
index 8deed7157b0..8717f7ddfe8 100644
--- a/sys-auth/elogind/elogind-238.2.ebuild
+++ b/sys-auth/elogind/elogind-238.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="CC0-1.0 LGPL-2.1+ public-domain"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="+acl debug doc +pam +policykit selinux"
 
 COMMON_DEPEND="



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

2018-11-16 Thread Michael Palimaka
commit: 218b518fb2e67d51ec8bed457f4ae7c1ea9148b6
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 17 07:17:53 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 17 07:18:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=218b518f

kde-apps/kio-extras: revision bump to resolve CVE-2018-19120

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

 kde-apps/kio-extras/kio-extras-18.04.3-r1.ebuild | 77 
 1 file changed, 77 insertions(+)

diff --git a/kde-apps/kio-extras/kio-extras-18.04.3-r1.ebuild 
b/kde-apps/kio-extras/kio-extras-18.04.3-r1.ebuild
new file mode 100644
index 000..842ba65606a
--- /dev/null
+++ b/kde-apps/kio-extras/kio-extras-18.04.3-r1.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_HANDBOOK="forceoptional"
+KDE_TEST="optional"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="KIO plugins present a filesystem-like view of arbitrary data"
+HOMEPAGE="https://cgit.kde.org/kio-extras.git;
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="activities +man mtp openexr phonon samba +sftp taglib"
+
+COMMON_DEPEND="
+   $(add_frameworks_dep karchive 'bzip2,lzma')
+   $(add_frameworks_dep kbookmarks)
+   $(add_frameworks_dep kcodecs)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep kdnssd)
+   $(add_frameworks_dep kguiaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep kpty)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kxmlgui)
+   $(add_frameworks_dep solid)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtsvg)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtxml)
+   activities? (
+   $(add_frameworks_dep kactivities)
+   $(add_qt_dep qtsql)
+   )
+   man? ( $(add_frameworks_dep khtml) )
+   mtp? ( media-libs/libmtp:= )
+   openexr? ( media-libs/openexr )
+   phonon? ( media-libs/phonon[qt5(+)] )
+   samba? ( net-fs/samba[client] )
+   sftp? ( net-libs/libssh:=[sftp] )
+   taglib? ( >=media-libs/taglib-1.11.1 )
+"
+RDEPEND="${COMMON_DEPEND}
+   $(add_frameworks_dep kded)
+"
+DEPEND="${COMMON_DEPEND}
+   x11-misc/shared-mime-info
+   man? ( dev-util/gperf )
+"
+
+# requires running kde environment
+RESTRICT+=" test"
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets=ON
+   $(cmake-utils_use_find_package activities KF5Activities)
+   $(cmake-utils_use_find_package man Gperf)
+   $(cmake-utils_use_find_package mtp Mtp)
+   $(cmake-utils_use_find_package openexr OpenEXR)
+   $(cmake-utils_use_find_package phonon Phonon4Qt5)
+   $(cmake-utils_use_find_package samba Samba)
+   $(cmake-utils_use_find_package sftp LibSSH)
+   $(cmake-utils_use_find_package taglib Taglib)
+   )
+
+   kde5_src_configure
+}



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

2018-11-16 Thread Mikle Kolyada
commit: dea3848bf376f0749104732c45f35bddb376d493
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Nov 17 07:15:13 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Nov 17 07:15:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dea3848b

net-fs/minio: Version bump

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

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

diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest
index eb8b1cf67de..c06a7e8e9da 100644
--- a/net-fs/minio/Manifest
+++ b/net-fs/minio/Manifest
@@ -7,3 +7,4 @@ DIST minio-2018.10.18.00.28.58.tar.gz 9153624 BLAKE2B 
be2b9db53f0256bb7db1a19170
 DIST minio-2018.10.25.01.27.03.tar.gz 9083869 BLAKE2B 
8adc52a4557bde234c367b1a0d3a3ca5651700cdaca4c0cd3c1ff55d64ef7bb6f5dbb48eee9867eb7677293abdcd34e9469bd3980f7046934db17d1fa72229ea
 SHA512 
8227a0b320877131b5822e077f3ee2cc03268de2c1f9a13dbc34f8ade8828b20afda964f1d389f311547750b8a7a613037042fe2a10f30610972a8d6eb4f40fd
 DIST minio-2018.11.06.01.01.02.tar.gz 9090585 BLAKE2B 
e7cfcdd0eb89fe1c65ceaa7893c2f2c5c4667bea689c2e42ec1f09969590ed06b2a5977015206ee18bb7a5481c9e82b4311c2719cae6df1fd2c3b5da87f9f1fb
 SHA512 
f3d51f5a2c15b2c7cad0679fcb6c72647e090e64efb5e29ad04519fb8870809044f3ae6c2f95a36ad2f0ffb7401e602ea8f5d2f4e5b61c8b60082339b9b91c68
 DIST minio-2018.11.15.01.26.07.tar.gz 9075498 BLAKE2B 
8b690a05a597d0c1d3212891a47f0db944817855138dccf7806f023f6e1e0028287cca3a96df28c36d6f91fea2117abb1a417c23863e5d1464430dd0f40c977c
 SHA512 
aeaf3e4d3be48496742a48b9d7c0b49e040c6f5cc0501668b13aa1e81c64f759b547ab5c910d1fbc2d270d3f42b1b890c41043ad79edbf2caea74b6245d6
+DIST minio-2018.11.17.01.23.48.tar.gz 9076785 BLAKE2B 
3dbbda0ee971d2ecedeff96fa61b2d5f3710361f34ded69075515c7cf9fa40e411360e68d04b85f43fc7082f66ff779368a984a5c1f429c4660b64c6f65dfdc1
 SHA512 
e460ae63bc2e23d4706c396d76c06c66fb61f20fa10544470b28f1764e64be7ed45c33b65fbb9386e7a07e374a29d700c3df2b794dd6e6bd6322e7ea40ad3434

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



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

2018-11-16 Thread Hans de Graaff
commit: 8ca236e51bf87914458c23bb87d41429e99523a2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 17 07:11:57 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 17 07:12:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca236e5

dev-ruby/did_you_mean: avoid broken test

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

 dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild 
b/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
index 5531a462bc1..3d4c3dcac4d 100644
--- a/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
+++ b/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,4 +19,7 @@ IUSE=""
 
 all_ruby_prepare() {
sed -i -e '/bundler/ s:^:#:' Rakefile || die
+
+   # Skip test that is broken with newer ruby releases
+   sed -i -e  '/test_message/,/^  end/ s:^:#:' 
test/core_ext/name_error_extension_test.rb || die
 }



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

2018-11-16 Thread Hans de Graaff
commit: c6460ff357f0426252f1157e9962984590087fc9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 17 07:08:32 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 17 07:12:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6460ff3

dev-ruby/did_you_mean: avoid broken test

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

 dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild 
b/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild
index bd875176b60..3656e938bba 100644
--- a/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild
+++ b/dev-ruby/did_you_mean/did_you_mean-1.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,4 +19,7 @@ IUSE=""
 
 all_ruby_prepare() {
sed -i -e '/bundler/ s:^:#:' Rakefile || die
+
+   # Skip test that is broken with newer ruby releases
+   sed -i -e  '/test_message/,/^  end/ s:^:#:' 
test/core_ext/name_error_extension_test.rb || die
 }



[gentoo-commits] repo/gentoo:master commit in: dev-games/tiled/

2018-11-16 Thread Michael Palimaka
commit: 8f4be1c606ece8a6e169c0cd87efe91de2bb36fb
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 17 07:09:17 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 17 07:09:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f4be1c6

dev-games/tiled: version bump 1.2.1

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

 dev-games/tiled/Manifest   |  1 +
 dev-games/tiled/tiled-1.2.1.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/dev-games/tiled/Manifest b/dev-games/tiled/Manifest
index 3fd7b7fa6bd..8504656af23 100644
--- a/dev-games/tiled/Manifest
+++ b/dev-games/tiled/Manifest
@@ -1 +1,2 @@
 DIST tiled-1.2.0.tar.gz 17007687 BLAKE2B 
6bb5a34a19868574801a69015f6a05b299dd5b34df865cacf5d2a747a62ae731b80778fe49a432c5487cbfa3d30186dc80011cc8882cb86ac347fb35a7421cbc
 SHA512 
9c0c151348a90344b355e9bc8a7c9d38e2203d48474e8cf496e2c08cc75f764042e4355db2827f0e3518a1c03bfbcc79be7ba643c44c50430c7ecec09fbb8563
+DIST tiled-1.2.1.tar.gz 16773680 BLAKE2B 
1b7c662863d931dadd46d20c90822659b71fe5c7432cc6486813a6db533057d9db9768c2d14832a74b0f768c29b3d340cdc28a67df830ca984ad824610afe662
 SHA512 
9a66d41ed991b6af226c9456758f27bf5cf2e8d1059042fb684b003608509c0d0e13776710e777bab0e12f55223e4fca4048a07661c36a3273f9c6c5cbf7fa5d

diff --git a/dev-games/tiled/tiled-1.2.1.ebuild 
b/dev-games/tiled/tiled-1.2.1.ebuild
new file mode 100644
index 000..fb9cfdad6b9
--- /dev/null
+++ b/dev-games/tiled/tiled-1.2.1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_6 )
+inherit gnome2-utils multilib python-single-r1 qmake-utils xdg
+
+DESCRIPTION="A general purpose tile map editor"
+HOMEPAGE="https://www.mapeditor.org/;
+SRC_URI="https://github.com/bjorn/tiled/archive/v${PV}/${P}.tar.gz;
+
+LICENSE="BSD BSD-2 GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples python"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   >=dev-qt/qtcore-5.9:5
+   >=dev-qt/qtgui-5.9:5
+   >=dev-qt/qtnetwork-5.9:5
+   >=dev-qt/qtwidgets-5.9:5
+   sys-libs/zlib
+   python? ( ${PYTHON_DEPS} )
+"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5
+"
+
+DOCS=( AUTHORS COPYING NEWS.md README.md )
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_configure() {
+   eqmake5 LIBDIR="/usr/$(get_libdir)" PREFIX="/usr" 
DISABLE_PYTHON_PLUGIN="$(usex !python)"
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+
+   einstalldocs
+
+   if use examples ; then
+   docompress -x /usr/share/doc/${PF}/examples
+   dodoc -r examples
+   fi
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}



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

2018-11-16 Thread Hans de Graaff
commit: 98715efe7268af5488034a971d3b4b29adf99242
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 17 06:57:16 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 17 06:59:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98715efe

dev-ruby/capybara: add 3.11.1

Drop ~x86 due to new dev-ruby/regexp_parser dependency,
bug 671314.

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

 dev-ruby/capybara/Manifest   |  1 +
 dev-ruby/capybara/capybara-3.11.1.ebuild | 57 
 2 files changed, 58 insertions(+)

diff --git a/dev-ruby/capybara/Manifest b/dev-ruby/capybara/Manifest
index fe1aa37d748..a1e0ba1c86d 100644
--- a/dev-ruby/capybara/Manifest
+++ b/dev-ruby/capybara/Manifest
@@ -1,4 +1,5 @@
 DIST capybara-2.18.0.gem 274432 BLAKE2B 
992799362025b81a0d074fb06fdafef4c4385ca18ea85a7095d9e58625df6a59a349b60b462c5c4f403a6af955466bc46d82be6cd91724fc2b12cbe15ed74a4c
 SHA512 
3bb994e022593d485a07296193a16cae7b45e96e87dd10b2bd4807ad2bc990801044c0493360598d1626c3e367e8de87e407f65c2c6f42674d5f1b9c0b5c1933
+DIST capybara-3.11.1.gem 310784 BLAKE2B 
ed2c26d0340b0c0ea0fd008436ce29a38d650bf1a7b31279863c0f84e5bcebbd534f4611e9656743cdb9c61ca9eac4c3b152d21d6b630427829f3a2e53f27057
 SHA512 
d97c53135d5ea040950f42750f1644c7a1ba96ff86cefbc83934a19173cae1f303f4ed5b56b95b5d7b9dfb83209312de5e129275b03d472e2614371d4234082b
 DIST capybara-3.2.1.gem 284672 BLAKE2B 
9da8f588049fab74c4e734626e42758cdd4baf555cfc64e7456bfab2cb4d5c90ed6bfc8ada7cc0d6323ef1113169aec70fd4254aa50c003408376ea4afe00a06
 SHA512 
50af1d4c49c200a4c08901d19b16826499abb8d19de8e059160c509afd555edbe620b6fd5d78f8c286feeb15a72e5a4b241cb1f14151b349fd94cdd3648b64b2
 DIST capybara-3.6.0.gem 296448 BLAKE2B 
4054aaac6b6e0d5f1f0c1adee1951dcac7fcb3b2061dfe9de261e6c8bb749d6c88eb2c5a635b683e9a02719870435d52546701f4f21f722068836d4acd78f3eb
 SHA512 
d99e9aab306955e01c08f26e7e8e042019b30d97c106ce6e33c96d7277670b81a143312c06e89c2f6c5f959af461d219c213c3660e895bec1e8cfcae030728b4
 DIST capybara-3.7.2.gem 299520 BLAKE2B 
eea9d0bc35483174ccedd9366c04484a5b819e40aa6f0d01ceefad1700b04ded446d2b14de82698129fd5f7a5440f08dc2ee437ee3db8e7bcd70d6cde636
 SHA512 
980346ea0fd1c3cb6de2423707d8c8e637f64bde2c1ef48622a08d1fe2177e29eb5d7125a048ebafaf4ca1591c483d34a8b17ed7288985dad783023ed35305e0

diff --git a/dev-ruby/capybara/capybara-3.11.1.ebuild 
b/dev-ruby/capybara/capybara-3.11.1.ebuild
new file mode 100644
index 000..2380395dc83
--- /dev/null
+++ b/dev-ruby/capybara/capybara-3.11.1.ebuild
@@ -0,0 +1,57 @@
+# 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_EXTRADOC="History.md README.md"
+
+# Rake tasks are not distributed in the gem.
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_TASK_TEST=""
+
+inherit virtualx ruby-fakegem
+
+DESCRIPTION="Capybara aims to simplify the process of integration testing Rack 
applications"
+HOMEPAGE="https://github.com/jnicklas/capybara;
+LICENSE="MIT"
+
+KEYWORDS="~amd64"
+SLOT="3"
+IUSE="test"
+
+DEPEND="${DEPEND} test? ( www-client/firefox )"
+
+ruby_add_bdepend "test? (
+   dev-ruby/rspec:3
+   >=dev-ruby/launchy-2.4.0
+   >=dev-ruby/selenium-webdriver-3.5:3
+   dev-ruby/sinatra:2
+   www-servers/puma
+)"
+
+ruby_add_rdepend "
+   dev-ruby/addressable
+   >=dev-ruby/mini_mime-0.1.3
+   >=dev-ruby/nokogiri-1.8:0
+   >=dev-ruby/rack-1.6.0:*
+   >=dev-ruby/rack-test-0.6.3:*
+   >=dev-ruby/regexp_parser-1.2:1
+   >=dev-ruby/xpath-3.2:3"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/d' -e '/pry/d' -e '1igem "sinatra"' 
spec/spec_helper.rb || die
+
+   # Avoid window-manager specific tests (sizes are specific for fluxbox)
+   sed -i -e '/#maximize/,/^  end/ s:^:#:' 
lib/capybara/spec/session/window/window_spec.rb || die
+
+   # Avoid spec that requires unpackaged geckodriver
+   sed -i -e '/describe.*register_server/,/^  end/ s:^:#:' 
spec/capybara_spec.rb || die
+
+   # Avoid test dependency on puma server for now
+   sed -i -e '/should have :puma registered/,/^end/ s:^:#:' 
spec/capybara_spec.rb || die
+}
+
+each_ruby_test() {
+   virtx ${RUBY} -Ilib -S rspec-3 spec || die "Tests failed."
+}



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

2018-11-16 Thread Hans de Graaff
commit: a8ab40b6ba6ea147afb5c07bae673912c9f11dff
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 17 06:32:43 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 17 06:59:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8ab40b6

dev-ruby/exifr: cleanup

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

 dev-ruby/exifr/Manifest   |  1 -
 dev-ruby/exifr/exifr-1.3.3.ebuild | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-ruby/exifr/Manifest b/dev-ruby/exifr/Manifest
index 15b71147507..81d485743d8 100644
--- a/dev-ruby/exifr/Manifest
+++ b/dev-ruby/exifr/Manifest
@@ -1,2 +1 @@
-DIST exifr-1.3.3.gem 231936 BLAKE2B 
44958407a3f743a995b4ec28a287ea5352bf2da77362ce8e3cf61a51ef5b1d86836e64766a95697b4d3f142690d1928e11affb57fdc2568ee65e76f28787b0e8
 SHA512 
7362913874d4d78f8c5b7da7a5bc99a6f7bb120e58ebb67dc196e60bc7ac14243a2989a7e4e7db1853c71d09d866275d909c6407d72ec0271c34c1bb7f15ebc9
 DIST exifr-1.3.4.gem 232448 BLAKE2B 
525f2b8c74b15b2abb3a5fac82e475421a0e68003159cb5dcce99436ef7adff13ca614d82cfc55d2680bef64a9de7d5c65a9e1eb72d72b04987a5882fcaf81dc
 SHA512 
1609018119942bd845fc06a93783cb8035da1bdbf8cdaa8335f649f226ba6c6fc52c984528db5fbc3277faa80410fa3708845f26d2e5a48ef36999f22e1cc3be

diff --git a/dev-ruby/exifr/exifr-1.3.3.ebuild 
b/dev-ruby/exifr/exifr-1.3.3.ebuild
deleted file mode 100644
index 042c834dc24..000
--- a/dev-ruby/exifr/exifr-1.3.3.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_DOCDIR="doc/api"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A library to read EXIF info from JPEG and TIFF images"
-HOMEPAGE="https://github.com/remvee/exifr/;
-
-# License is not specified in source distribution but is in the GitHub
-# repository.
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""



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

2018-11-16 Thread Hans de Graaff
commit: 9186e3c3f0aa7e3894ababbaaa8d8cd962663347
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Nov 17 06:37:52 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Nov 17 06:59:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9186e3c3

dev-ruby/exifr: add 1.3.5

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

 dev-ruby/exifr/Manifest   |  1 +
 dev-ruby/exifr/exifr-1.3.5.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-ruby/exifr/Manifest b/dev-ruby/exifr/Manifest
index 81d485743d8..ef76675fe2b 100644
--- a/dev-ruby/exifr/Manifest
+++ b/dev-ruby/exifr/Manifest
@@ -1 +1,2 @@
 DIST exifr-1.3.4.gem 232448 BLAKE2B 
525f2b8c74b15b2abb3a5fac82e475421a0e68003159cb5dcce99436ef7adff13ca614d82cfc55d2680bef64a9de7d5c65a9e1eb72d72b04987a5882fcaf81dc
 SHA512 
1609018119942bd845fc06a93783cb8035da1bdbf8cdaa8335f649f226ba6c6fc52c984528db5fbc3277faa80410fa3708845f26d2e5a48ef36999f22e1cc3be
+DIST exifr-1.3.5.tar.gz 245074 BLAKE2B 
8cf2d1a8a400c39fedc21f2186742d83b4ec1931f18cce70938638ffce1dc97d0f3c631504adfa30cbd8a40774b78e83e4a7738665765381c222805b71d40630
 SHA512 
3d219957040f082d9f0ebb0897301c7fca162f9f0483443237dc410161aa564cbd4818a7bcc88efbe5072414c27e4818a86e8615fca9ba93c2564147b4ce6fc3

diff --git a/dev-ruby/exifr/exifr-1.3.5.ebuild 
b/dev-ruby/exifr/exifr-1.3.5.ebuild
new file mode 100644
index 000..4b4effbe274
--- /dev/null
+++ b/dev-ruby/exifr/exifr-1.3.5.ebuild
@@ -0,0 +1,25 @@
+# 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_DOCDIR="doc/api"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A library to read EXIF info from JPEG and TIFF images"
+HOMEPAGE="https://github.com/remvee/exifr/;
+SRC_URI="https://github.com/remvee/exifr/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="${PN}-release-${PV}"
+
+# License is not specified in source distribution but is in the GitHub
+# repository.
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""



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

2018-11-16 Thread Michael Palimaka
commit: 92619e4fa4c60564d467de7d6343cf689001cfb5
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 17 06:47:10 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 17 06:50:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92619e4f

net-irc/unrealircd: stabilise 4.0.18-r1

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

 net-irc/unrealircd/unrealircd-4.0.18-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/unrealircd/unrealircd-4.0.18-r1.ebuild 
b/net-irc/unrealircd/unrealircd-4.0.18-r1.ebuild
index 34b02bf9045..db75758bc7c 100644
--- a/net-irc/unrealircd/unrealircd-4.0.18-r1.ebuild
+++ b/net-irc/unrealircd/unrealircd-4.0.18-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.unrealircd.org/${PN}$(get_version_component_range 1)/${P}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd ~amd64-linux"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd ~amd64-linux"
 IUSE="class-nofakelag curl +extban-stacking +operoverride operoverride-verify 
+prefixaq
showlistmodes shunnotices topicisnuhost +usermod"
 



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

2018-11-16 Thread Michael Palimaka
commit: 1742110b170945178f7b34179efddb315ed76e2d
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 17 06:50:29 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 17 06:50:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1742110b

net-irc/unrealircd: remove old

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

 net-irc/unrealircd/Manifest|   3 -
 .../unrealircd-4.0.12-without-privatelibdir.patch  |  70 --
 net-irc/unrealircd/files/unrealircd.confd-r1   |  31 ---
 net-irc/unrealircd/files/unrealircd.confd-r2   |  35 ---
 net-irc/unrealircd/files/unrealircd.initd  |  43 
 net-irc/unrealircd/files/unrealircd.initd-r1   |  43 
 net-irc/unrealircd/unrealircd-3.2.10.7.ebuild  | 212 -
 net-irc/unrealircd/unrealircd-4.0.12.ebuild| 249 
 net-irc/unrealircd/unrealircd-4.0.17.ebuild| 250 -
 net-irc/unrealircd/unrealircd-4.0.18.ebuild| 184 ---
 10 files changed, 1120 deletions(-)

diff --git a/net-irc/unrealircd/Manifest b/net-irc/unrealircd/Manifest
index dc9f107acb1..79557586c05 100644
--- a/net-irc/unrealircd/Manifest
+++ b/net-irc/unrealircd/Manifest
@@ -1,4 +1 @@
-DIST Unreal3.2.10.7.tar.gz 3539026 BLAKE2B 
a61fcd7cd4329c6b0991219a331482ca84aecfa37638762aa1c20166ab2ce0d4facb2a51b2010a9dd2fbc32278de91acaf8fd209ce5b8a2d4232dce154880904
 SHA512 
7d5fd4729fdde56c6b3e38a93bc365857b5b4faf58cb39e844b43e87872623abc7527025247eeda8c8535576e2b1b8ef14d482c964ce940cafb5de77cc9e1667
-DIST unrealircd-4.0.12.tar.gz 5521686 BLAKE2B 
d55973387f58cabd80156e1113491adec623a56d83e0043dcd89457b00cc6519ab37459eb2c0a10176b5d5bb1518a81fa288bdea43f0e4b9303f629103c5ea1d
 SHA512 
3df18e07226673d7691f91f0f6c2129955523f1330519e5cada7989c8987382d78770c95837d520737796cf4fa84f1de3eb0f08ef017c5c56f775cf45420
-DIST unrealircd-4.0.17.tar.gz 5325068 BLAKE2B 
d6d1c05234ee5921e65e0a7a4223152bd729878a5d8b40dfb4b1b2d066a891564b8cd66097e03a8a47f84878aeeadb7356ff222dd4d8efece69a9f1df5fe3542
 SHA512 
e02684ba7b61747f6d0edb8105c3d9cb1f383c79b9ff563b374fefe1ed5224c168d8f9e3e482a122acd7a2af12ee8595812e4c46654e651cde7115656fb3d36e
 DIST unrealircd-4.0.18.tar.gz 5317767 BLAKE2B 
cb71144ce0fce7f719b3081f2da9f85c997dbc372492dfa57354eb51aee122f0e42fdba9e0aca997cd118ed9c75fb6f197ca13e371931fe45709d6b64651336d
 SHA512 
b9541ea83c24963187931938eadbba746175ec1d9449631e799df038bb062625e4b508c2d0d4e9e69a6401158cc23a855cbfbda3d28a4b971fbb249f074d26d3

diff --git 
a/net-irc/unrealircd/files/unrealircd-4.0.12-without-privatelibdir.patch 
b/net-irc/unrealircd/files/unrealircd-4.0.12-without-privatelibdir.patch
deleted file mode 100644
index 03b7a7a0eb2..000
--- a/net-irc/unrealircd/files/unrealircd-4.0.12-without-privatelibdir.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-From 2b94733cbe0161b58084a2e7a26985e6d321e1c8 Mon Sep 17 00:00:00 2001
-From: Nathan Phillip Brink 
-Date: Thu, 6 Jul 2017 06:04:18 +
-Subject: [PATCH] Support --without-privatelibdir for packagers.
-

- configure.ac | 22 +-
- 1 file changed, 13 insertions(+), 9 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 78360df..aa49df5 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -586,15 +586,19 @@ AC_ARG_WITH(pidfile, 
[AS_HELP_STRING([--with-pidfile=path],[Specify the path of
-   [AC_DEFINE_UNQUOTED([PIDFILE], 
["$HOME/unrealircd/data/unrealircd.pid"], [Define the path of the pid file])
-   PIDFILE="$HOME/unrealircd/data/unrealircd.pid"])
- 
--LDFLAGS_PRIVATELIBS=""
--AC_ARG_WITH(privatelibdir, 
[AS_HELP_STRING([--with-privatelibdir=path],[Specify the directory where 
private libraries are stored])],
--  [AC_DEFINE_UNQUOTED([PRIVATELIBDIR], ["$withval"], [Define the location 
of private libraries])
--  PRIVATELIBDIR="$withval"
--  LDFLAGS_PRIVATELIBS="-Wl,-rpath=$PRIVATELIBDIR"
--  LDFLAGS="$LDFLAGS $LDFLAGS_PRIVATELIBS"
--  export LDFLAGS],
--  [AC_DEFINE_UNQUOTED([PRIVATELIBDIR], ["$HOME/unrealircd/lib"], [Define 
the location of private libraries])
--  PRIVATELIBDIR="$HOME/unrealircd/lib"
-+dnl Ensure that this “feature” can be disabled as it makes it harder to 
package unrealircd.
-+dnl Users have always been able to specify “./configure 
LDFLAGS=-Wl,-rpath,/path/to/blah”—binki
-+AC_ARG_WITH(privatelibdir, 
[AS_HELP_STRING([--with-privatelibdir=path],[Specify the directory where 
private libraries are stored. Disable when building a package for a distro])],
-+  [],
-+  [with_privatelibdir="yes"])
-+AS_IF([test "x$with_privatelibdir" = "xno"],
-+  [PRIVATELIBDIR=],
-+  [test "x$with_privatelibdir" = "xyes"],
-+  [PRIVATELIBDIR="$HOME/unrealircd/lib"],
-+  [PRIVATELIBDIR="$with_privatelibdir"])
-+AS_IF([test "x$PRIVATELIBDIR" = "x"],
-+  [LDFLAGS_PRIVATELIBS=""],
-+  

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

2018-11-16 Thread Virgil Dupras
commit: 36e7b4d748af2a9b371def36eabbdffa34abf02a
Author: Virgil Dupras  gentoo  org>
AuthorDate: Sat Nov 17 03:44:44 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Sat Nov 17 03:44:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e7b4d7

dev-python/weasyprint: bump to v43

Also, re-enable tests.

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

 dev-python/weasyprint/Manifest |  1 +
 .../files/weasyprint-43-skip-failing-test.patch| 13 ++
 .../files/weasyprint-43-skip-useless-deps.patch| 30 +
 dev-python/weasyprint/weasyprint-43.ebuild | 52 ++
 4 files changed, 96 insertions(+)

diff --git a/dev-python/weasyprint/Manifest b/dev-python/weasyprint/Manifest
index 74acb12aef8..cd3063c8e10 100644
--- a/dev-python/weasyprint/Manifest
+++ b/dev-python/weasyprint/Manifest
@@ -1,2 +1,3 @@
 DIST WeasyPrint-0.29.tar.gz 1418105 BLAKE2B 
b94f1f0099fcac68aa393758fda23562eae6350e2fb185397cf888735389974f863b6b7025ce349c29e349c91d884320c96b9c7afba2c83e52f6c78ab81e8885
 SHA512 
3875240b7bed6991372f6a45f82d32f0d2f3add29ab1937001c5559368405737d185aa85871358730989a91ee6b17e62cc21535735c884c47705d0d2d38bb167
 DIST WeasyPrint-0.41.tar.gz 393866 BLAKE2B 
895624ee547a9ed91157db6a7a72890a56f270d2ea00a508c42899e42922e51867782b1dff3ab55f98df0a130b727a7db13aaf3553a90c4405b75b6813c95ab9
 SHA512 
44b2d9e0a186c5767cd01d6e66495241d088908467e0fa28cee114a9c480bfcb4ef393236e9304653603f3917c73c452c05a38286932e0a271946860120d9a1f
+DIST WeasyPrint-43.tar.gz 315365 BLAKE2B 
af643f6a6d09d09d89802dd3823e43e9f05873738b14e4f853a324850ffc12902cb791c3f187f6b550dded40669d376cf3d2e4d7d83e9747e87795a4d57e9014
 SHA512 
fc4c4decb298d4f9caf244433566c9b675b23db2508093d8c43c6e361119c5fe8298213075f550bebc72fe4156cfc516f04c8d7a2c6215fcd5add14360821f40

diff --git a/dev-python/weasyprint/files/weasyprint-43-skip-failing-test.patch 
b/dev-python/weasyprint/files/weasyprint-43-skip-failing-test.patch
new file mode 100644
index 000..f49635fc847
--- /dev/null
+++ b/dev-python/weasyprint/files/weasyprint-43-skip-failing-test.patch
@@ -0,0 +1,13 @@
+diff --git a/weasyprint/tests/test_layout/test_flex.py 
b/weasyprint/tests/test_layout/test_flex.py
+index 890df3e8..77c6bbf5 100644
+--- a/weasyprint/tests/test_layout/test_flex.py
 b/weasyprint/tests/test_layout/test_flex.py
+@@ -189,7 +189,7 @@ def test_flex_row_wrap_reverse():
+ 
+ 
+ @assert_no_logs
+-def test_flex_column_wrap_reverse():
++def xtest_flex_column_wrap_reverse():
+ page, = render_pages('''
+   

diff --git a/dev-python/weasyprint/files/weasyprint-43-skip-useless-deps.patch 
b/dev-python/weasyprint/files/weasyprint-43-skip-useless-deps.patch
new file mode 100644
index 000..1229f0bed26
--- /dev/null
+++ b/dev-python/weasyprint/files/weasyprint-43-skip-useless-deps.patch
@@ -0,0 +1,30 @@
+--- a/setup.cfg
 b/setup.cfg
+@@ -34,7 +34,6 @@
+ [options]
+ packages = find:
+ zip_safe = false
+-setup_requires = pytest-runner
+ install_requires = 
+   cffi>=0.6
+   html5lib>=0.9
+@@ -43,11 +42,6 @@
+   cssselect2>=0.1
+   CairoSVG>=1.0.20
+   Pyphen>=0.8
+-tests_require = 
+-  pytest-runner
+-  pytest-cov
+-  pytest-flake8
+-  pytest-isort
+ 
+ [options.entry_points]
+ console-scripts = weasyprint = weasyprint.__main__:main
+@@ -72,7 +72,6 @@
+ test = pytest
+ 
+ [tool:pytest]
+-addopts = --flake8 --isort
+ norecursedirs = build dist .cache .eggs .git
+ 
+ [coverage:run]

diff --git a/dev-python/weasyprint/weasyprint-43.ebuild 
b/dev-python/weasyprint/weasyprint-43.ebuild
new file mode 100644
index 000..d18200b1057
--- /dev/null
+++ b/dev-python/weasyprint/weasyprint-43.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Visual rendering engine for HTML and CSS that can export to PDF"
+MY_PN="WeasyPrint"
+MY_P="${MY_PN}-${PV}"
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+HOMEPAGE="http://weasyprint.org https://github.com/Kozea/WeasyPrint;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="jpeg jpeg2k test tiff"
+
+# Note: specific subslot of pango since it inlines some of pango headers.
+RDEPEND="
+   >=x11-libs/cairo-1.15.4
+   x11-libs/gdk-pixbuf[jpeg?,jpeg2k?,tiff?]
+   x11-libs/pango:0/0
+   >=dev-python/cairocffi-0.9[${PYTHON_USEDEP}]
+   >=dev-python/cffi-0.6:=[${PYTHON_USEDEP}]
+   >=dev-python/cssselect2-0.1[${PYTHON_USEDEP}]
+   >=dev-python/html5lib-0.9[${PYTHON_USEDEP}]
+   >=dev-python/lxml-3.0[${PYTHON_USEDEP}]
+   >=dev-python/pyphen-0.8[${PYTHON_USEDEP}]
+   >=dev-python/tinycss2-0.5[${PYTHON_USEDEP}]
+   >=media-gfx/cairosvg-1.0.20[${PYTHON_USEDEP}]
+"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   

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

2018-11-16 Thread Virgil Dupras
commit: adb0ea18726ba45bc9a7a72e0ed541e29f49657f
Author: Virgil Dupras  gentoo  org>
AuthorDate: Sat Nov 17 03:45:51 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Sat Nov 17 03:45:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb0ea18

dev-python/weasyprint: remove old

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

 dev-python/weasyprint/Manifest   |  1 -
 dev-python/weasyprint/weasyprint-0.29.ebuild | 41 
 2 files changed, 42 deletions(-)

diff --git a/dev-python/weasyprint/Manifest b/dev-python/weasyprint/Manifest
index cd3063c8e10..83651390b2b 100644
--- a/dev-python/weasyprint/Manifest
+++ b/dev-python/weasyprint/Manifest
@@ -1,3 +1,2 @@
-DIST WeasyPrint-0.29.tar.gz 1418105 BLAKE2B 
b94f1f0099fcac68aa393758fda23562eae6350e2fb185397cf888735389974f863b6b7025ce349c29e349c91d884320c96b9c7afba2c83e52f6c78ab81e8885
 SHA512 
3875240b7bed6991372f6a45f82d32f0d2f3add29ab1937001c5559368405737d185aa85871358730989a91ee6b17e62cc21535735c884c47705d0d2d38bb167
 DIST WeasyPrint-0.41.tar.gz 393866 BLAKE2B 
895624ee547a9ed91157db6a7a72890a56f270d2ea00a508c42899e42922e51867782b1dff3ab55f98df0a130b727a7db13aaf3553a90c4405b75b6813c95ab9
 SHA512 
44b2d9e0a186c5767cd01d6e66495241d088908467e0fa28cee114a9c480bfcb4ef393236e9304653603f3917c73c452c05a38286932e0a271946860120d9a1f
 DIST WeasyPrint-43.tar.gz 315365 BLAKE2B 
af643f6a6d09d09d89802dd3823e43e9f05873738b14e4f853a324850ffc12902cb791c3f187f6b550dded40669d376cf3d2e4d7d83e9747e87795a4d57e9014
 SHA512 
fc4c4decb298d4f9caf244433566c9b675b23db2508093d8c43c6e361119c5fe8298213075f550bebc72fe4156cfc516f04c8d7a2c6215fcd5add14360821f40

diff --git a/dev-python/weasyprint/weasyprint-0.29.ebuild 
b/dev-python/weasyprint/weasyprint-0.29.ebuild
deleted file mode 100644
index 737ee058558..000
--- a/dev-python/weasyprint/weasyprint-0.29.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Visual rendering engine for HTML and CSS that can export to PDF"
-MY_PN="WeasyPrint"
-MY_P="${MY_PN}-${PV}"
-SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
-HOMEPAGE="http://weasyprint.org https://github.com/Kozea/WeasyPrint;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-# Note: specific subslot of pango since it inlines some of pango headers.
-RDEPEND="x11-libs/pango:0/0
-   >=media-gfx/cairosvg-1.0.7[${PYTHON_USEDEP}]
-   >=dev-python/html5lib-0.999[${PYTHON_USEDEP}]
-   dev-python/cffi:=[${PYTHON_USEDEP}]
-   >=dev-python/lxml-3.0[${PYTHON_USEDEP}]
-   >=dev-python/cairocffi-0.5[${PYTHON_USEDEP}]
-   ~dev-python/tinycss-0.3[${PYTHON_USEDEP}]
-   >=dev-python/cssselect-0.6[${PYTHON_USEDEP}]
-   >=dev-python/pyphen-0.8[${PYTHON_USEDEP}]"
-# x11-libs/gdk-pixbuf # optional dep
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( ${RDEPEND}
-   dev-python/pytest[${PYTHON_USEDEP}]
-   media-fonts/ahem )"
-
-S="${WORKDIR}/${MY_P}"
-
-python_test() {
-   py.test || die "testsuite failed under ${EPYTHON}"
-}



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

2018-11-16 Thread Virgil Dupras
commit: accf2522d49e36bdbfa697adc2ddbc1e3aedaaa7
Author: Virgil Dupras  gentoo  org>
AuthorDate: Sat Nov 17 03:49:15 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Sat Nov 17 03:49:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=accf2522

dev-python/weasyprint: drop useless deps

coverage, flake8 and isort aren't needed in the context of gentoo
testing. Also, tests were restricted in this ebuild anyway, let's not
needlessly be a revdep to pytest-cov's futility.

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

 dev-python/weasyprint/weasyprint-0.41.ebuild | 11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/dev-python/weasyprint/weasyprint-0.41.ebuild 
b/dev-python/weasyprint/weasyprint-0.41.ebuild
index fce99c16ede..ba921c850bc 100644
--- a/dev-python/weasyprint/weasyprint-0.41.ebuild
+++ b/dev-python/weasyprint/weasyprint-0.41.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -37,12 +37,9 @@ RDEPEND="
 "
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? (
- ${RDEPEND}
- dev-python/pytest-cov[${PYTHON_USEDEP}]
- dev-python/pytest-flake8[${PYTHON_USEDEP}]
- dev-python/pytest-isort[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- media-fonts/ahem
+   ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   media-fonts/ahem
)
 "
 



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

2018-11-16 Thread Virgil Dupras
commit: 208cf548f168bdf9d72bd377b4c846e08a7da6ff
Author: Virgil Dupras  gentoo  org>
AuthorDate: Sat Nov 17 03:24:12 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Sat Nov 17 03:24:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=208cf548

dev-python/cairocffi: remove old

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

 dev-python/cairocffi/Manifest  |  1 -
 dev-python/cairocffi/cairocffi-0.7.2.ebuild| 57 -
 .../cairocffi/files/cairocffi-0.7.1-test.patch | 58 --
 3 files changed, 116 deletions(-)

diff --git a/dev-python/cairocffi/Manifest b/dev-python/cairocffi/Manifest
index 09e9aa4272a..6d413b4b999 100644
--- a/dev-python/cairocffi/Manifest
+++ b/dev-python/cairocffi/Manifest
@@ -1,3 +1,2 @@
-DIST cairocffi-0.7.2.tar.gz 75337 BLAKE2B 
9405eb6bafd0a83be2e2ae566eb9893a87bb8066c24885c955038f27357cc92e89e58998e16b2ec662559eebea6240e2e5c699d00e595fa13952e07f0264c9d2
 SHA512 
a4b5798ee713a8847ebd21ef328b3e0a94403ce1e80ac108f6d8e4abffbf96551542bb5c848550d82bcebb3d9f645c90ea87fc3eb254bd8e9d57b6a55db76de1
 DIST cairocffi-0.8.0.tar.gz 79217 BLAKE2B 
fefcee32e486c150d089b7d13b046c864b83fcc184f7880e86cfae0afc22c1e712ad7e835d76506b4ab0cefab6629abcc5bd86cd95c417dcc64c9374a8629110
 SHA512 
70179e05ca4a4efeaa39ade1ee1a96d280d198ecff5ae8c8fc634c24d8922ea6a3e1eb6cf5f55c5fc9d3f5b2fc3131a53051690eb86712762d8b6400df8a630a
 DIST cairocffi-0.9.0.tar.gz 84652 BLAKE2B 
9f09c038619b0f44c568d6636861b0e12ffd7e9ab546f3a65bbd8e77eee7ff5f0c6f4d92a841696492b786d0067af86e25949b723ef6ef73ede370fbf2576d6d
 SHA512 
0d3d54e0d54b3696c8336d8b3a6d745628da51d9d9f8c50f36006c007e1432a95dd9bafd8d865923059d040cc4e9f7989b3670a5318383b357ffc979eeb920d5

diff --git a/dev-python/cairocffi/cairocffi-0.7.2.ebuild 
b/dev-python/cairocffi/cairocffi-0.7.2.ebuild
deleted file mode 100644
index 25ff3059926..000
--- a/dev-python/cairocffi/cairocffi-0.7.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
-
-inherit distutils-r1
-
-MY_PN="${PN}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="CFFI-based drop-in replacement for Pycairo"
-HOMEPAGE="https://github.com/Kozea/cairocffi;
-SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc64 x86"
-IUSE="doc test"
-
-RDEPEND="
-   $(python_gen_cond_dep '>=dev-python/cffi-1.1.0:=[${PYTHON_USEDEP}]' 
'python*')
-   >=dev-python/xcffib-0.3.2[${PYTHON_USEDEP}]
-   x11-libs/cairo:0=
-   x11-libs/gdk-pixbuf[jpeg]
-   $(python_gen_cond_dep '>=virtual/pypy-2.6.0' pypy )"
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? (
-   ${RDEPEND}
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )
-   $(python_gen_cond_dep '>=virtual/pypy-2.6.0' pypy )"
-
-PATCHES=(
-   # Intersphinx cause the usual d'loading of objects.inv from TWO online 
sites
-"${FILESDIR}"/mapping.patch
-"${FILESDIR}"/${PN}-0.7.1-test.patch
-)
-
-S="${WORKDIR}/${MY_P}"
-
-python_compile_all() {
-   use doc && esetup.py build_sphinx
-}
-
-python_test() {
-   py.test -v --pyargs cairocffi || die "testsuite failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/_build/html/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/cairocffi/files/cairocffi-0.7.1-test.patch 
b/dev-python/cairocffi/files/cairocffi-0.7.1-test.patch
deleted file mode 100644
index b5a2b4530fb..000
--- a/dev-python/cairocffi/files/cairocffi-0.7.1-test.patch
+++ /dev/null
@@ -1,58 +0,0 @@
- cairocffi/test_cairo.py |  3 +--
- cairocffi/test_xcb.py   | 13 +++--
- 2 files changed, 8 insertions(+), 8 deletions(-)
-
-diff --git a/cairocffi/test_cairo.py b/cairocffi/test_cairo.py
-index 6b19ee1..542103d 100644
 a/cairocffi/test_cairo.py
-+++ b/cairocffi/test_cairo.py
-@@ -1049,7 +1049,7 @@ def test_font_options():
- options_1.merge(options_2)
- assert options_2 == options_1
- 
--
-+#@pytest.skip("https://github.com/SimonSapin/cairocffi/issues/65;)
- def test_glyphs():
- surface = ImageSurface(cairocffi.FORMAT_ARGB32, 100, 20)
- context = Context(surface)
-@@ -1064,7 +1064,6 @@ def test_glyphs():
- assert 5 == x1 < x2 < x3
- assert clusters == [(2, 1), (1, 1), (1, 1)]
- assert is_backwards == 0
--assert font.glyph_extents(glyphs) == font.text_extents(text)
- assert font.glyph_extents(glyphs) == context.glyph_extents(glyphs)
- 
- assert context.copy_path() == []
-diff --git a/cairocffi/test_xcb.py b/cairocffi/test_xcb.py
-index c8a6e70..0c6bab9 100644
 a/cairocffi/test_xcb.py
-+++ b/cairocffi/test_xcb.py
-@@ -118,14 +118,14 @@ def 

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

2018-11-16 Thread Virgil Dupras
commit: 114e19a26f5b589d29b45bfd7b7642afcafc20da
Author: Virgil Dupras  gentoo  org>
AuthorDate: Sat Nov 17 03:22:14 2018 +
Commit: Virgil Dupras  gentoo  org>
CommitDate: Sat Nov 17 03:22:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=114e19a2

dev-python/cairocffi: bump to 0.9.0

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

 dev-python/cairocffi/Manifest   |  1 +
 dev-python/cairocffi/cairocffi-0.9.0.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/dev-python/cairocffi/Manifest b/dev-python/cairocffi/Manifest
index 48e3ac8fc70..09e9aa4272a 100644
--- a/dev-python/cairocffi/Manifest
+++ b/dev-python/cairocffi/Manifest
@@ -1,2 +1,3 @@
 DIST cairocffi-0.7.2.tar.gz 75337 BLAKE2B 
9405eb6bafd0a83be2e2ae566eb9893a87bb8066c24885c955038f27357cc92e89e58998e16b2ec662559eebea6240e2e5c699d00e595fa13952e07f0264c9d2
 SHA512 
a4b5798ee713a8847ebd21ef328b3e0a94403ce1e80ac108f6d8e4abffbf96551542bb5c848550d82bcebb3d9f645c90ea87fc3eb254bd8e9d57b6a55db76de1
 DIST cairocffi-0.8.0.tar.gz 79217 BLAKE2B 
fefcee32e486c150d089b7d13b046c864b83fcc184f7880e86cfae0afc22c1e712ad7e835d76506b4ab0cefab6629abcc5bd86cd95c417dcc64c9374a8629110
 SHA512 
70179e05ca4a4efeaa39ade1ee1a96d280d198ecff5ae8c8fc634c24d8922ea6a3e1eb6cf5f55c5fc9d3f5b2fc3131a53051690eb86712762d8b6400df8a630a
+DIST cairocffi-0.9.0.tar.gz 84652 BLAKE2B 
9f09c038619b0f44c568d6636861b0e12ffd7e9ab546f3a65bbd8e77eee7ff5f0c6f4d92a841696492b786d0067af86e25949b723ef6ef73ede370fbf2576d6d
 SHA512 
0d3d54e0d54b3696c8336d8b3a6d745628da51d9d9f8c50f36006c007e1432a95dd9bafd8d865923059d040cc4e9f7989b3670a5318383b357ffc979eeb920d5

diff --git a/dev-python/cairocffi/cairocffi-0.9.0.ebuild 
b/dev-python/cairocffi/cairocffi-0.9.0.ebuild
new file mode 100644
index 000..7291340fb12
--- /dev/null
+++ b/dev-python/cairocffi/cairocffi-0.9.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
+
+inherit distutils-r1 virtualx
+
+MY_PN="${PN}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="CFFI-based drop-in replacement for Pycairo"
+HOMEPAGE="https://github.com/Kozea/cairocffi;
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="doc test"
+
+RDEPEND="
+   $(python_gen_cond_dep '>=dev-python/cffi-1.1.0:=[${PYTHON_USEDEP}]' 
'python*')
+   >=dev-python/xcffib-0.3.2[${PYTHON_USEDEP}]
+   x11-libs/cairo:0=[xcb]
+   x11-libs/gdk-pixbuf[jpeg]
+   $(python_gen_cond_dep '>=virtual/pypy-2.6.0' pypy )"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? (
+   ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )
+   $(python_gen_cond_dep '>=virtual/pypy-2.6.0' pypy )"
+
+S="${WORKDIR}/${MY_P}"
+
+python_compile_all() {
+   use doc && esetup.py build_sphinx
+}
+
+python_test() {
+   virtx py.test -v --pyargs cairocffi -o addopts= || die "testsuite 
failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && HTML_DOCS=( docs/_build/html/. )
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2018-11-16 Thread Mike Gilbert
commit: e2fa90ef4c6c1af3da9c80232cb023f17f40d96c
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Nov 17 02:29:44 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Nov 17 02:29:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2fa90ef

www-plugins/chrome-binary-plugins: automated update

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

 www-plugins/chrome-binary-plugins/Manifest| 4 ++--
 44_beta.ebuild => chrome-binary-plugins-71.0.3578.53_beta.ebuild} | 0
 4_alpha.ebuild => chrome-binary-plugins-72.0.3610.2_alpha.ebuild} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index bd9a2e44297..ee670d24c94 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_71.0.3578.44-1_amd64.deb 57853924 BLAKE2B 
f6db60e25ce472872f871804d62b8a9106ec9e982fe88dc7b900cd83b2641400127cef4193e79c4aa6c297e4a9ccbcc5454b84e922338726308ccfe93768220d
 SHA512 
a1f480a1c0146bb54e87902d050cc417348e8195a40ccd91f7c4344716c64039d3431b39b7672302d0a8680da102602f8867e596173666e9b5a9bb3b3b0daf4e
+DIST google-chrome-beta_71.0.3578.53-1_amd64.deb 57839204 BLAKE2B 
b9af474ac0924379afb6c41a27d76de4cc7f4be5644e3e12a22a87ac77e93a8fd665886a610aedc99f9db6f02c412fc9e3ee06aa6e52f186723e7fbfdc77e272
 SHA512 
6a6e4e6a073204cb77eefff4d992a593b5bc8290500f593336bc58690f0dded75641445dd0fc59548b8c4c347c99c36c8f84040b39ea7e42d8496f920a1221b5
 DIST google-chrome-stable_70.0.3538.102-1_amd64.deb 55894790 BLAKE2B 
214498690ec6b6d8f38bcd9937b2bce7bdfd3f8ba08328a939086f6e9725c7e3740eb46386cda12c83392fa4d2f7ca457a606a80f31dbded864416fedf0843fc
 SHA512 
4bede460eb4afae796cd5765472a267b84287adf038c0e3a133f74ecc36780d84bf49020529a07b7f6157b26a7a37856255ba6b3cced1037aa86b259b28c2ef1
-DIST google-chrome-unstable_72.0.3608.4-1_amd64.deb 59417554 BLAKE2B 
c5b0653ed441ce88be994284e90bd4a1286d0dd08873fd39d0593bf44a352cbb53eda7fbd60880c4a4de1a04954c2062553bb36169df1d2ac7bf4f69d093026f
 SHA512 
918ac2950951e3e59986a64c7bedc86f5eff3f633f6f7bfe8157cfbd7805eb385023bde9350eb94e50ec92825f953a12ab5f1faee22b13872b3ee174965a8158
+DIST google-chrome-unstable_72.0.3610.2-1_amd64.deb 58255564 BLAKE2B 
b6bec7e2441794a68d0f2c1ba5dabe71deffc82f97f37ae69f7d67b92a23c8b8624b5458d4c07dd153566705252866191983aa2afe241193789963ff0da31838
 SHA512 
1f60573f4b535e8d0488781424ace6ada48d9eb51ce2588acb34431e1c2cf22757af4aaf139f350deb3ca0bf878c865da3015df6d7ab9023e7d15fdd4ddeebe8

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-71.0.3578.44_beta.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-71.0.3578.53_beta.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-71.0.3578.44_beta.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-71.0.3578.53_beta.ebuild

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-72.0.3608.4_alpha.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-72.0.3610.2_alpha.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-72.0.3608.4_alpha.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-72.0.3610.2_alpha.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-beta/

2018-11-16 Thread Mike Gilbert
commit: 6d1e3cec24248a25ab7b0e399defec5f0ce6a560
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Nov 17 02:29:17 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Nov 17 02:29:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d1e3cec

www-client/google-chrome-beta: automated update (71.0.3578.53)

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

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-71.0.3578.44.ebuild => google-chrome-beta-71.0.3578.53.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index b442d38f1b6..b2b776f1eec 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_71.0.3578.44-1_amd64.deb 57853924 BLAKE2B 
f6db60e25ce472872f871804d62b8a9106ec9e982fe88dc7b900cd83b2641400127cef4193e79c4aa6c297e4a9ccbcc5454b84e922338726308ccfe93768220d
 SHA512 
a1f480a1c0146bb54e87902d050cc417348e8195a40ccd91f7c4344716c64039d3431b39b7672302d0a8680da102602f8867e596173666e9b5a9bb3b3b0daf4e
+DIST google-chrome-beta_71.0.3578.53-1_amd64.deb 57839204 BLAKE2B 
b9af474ac0924379afb6c41a27d76de4cc7f4be5644e3e12a22a87ac77e93a8fd665886a610aedc99f9db6f02c412fc9e3ee06aa6e52f186723e7fbfdc77e272
 SHA512 
6a6e4e6a073204cb77eefff4d992a593b5bc8290500f593336bc58690f0dded75641445dd0fc59548b8c4c347c99c36c8f84040b39ea7e42d8496f920a1221b5

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-71.0.3578.44.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-71.0.3578.53.ebuild
similarity index 100%
rename from www-client/google-chrome-beta/google-chrome-beta-71.0.3578.44.ebuild
rename to www-client/google-chrome-beta/google-chrome-beta-71.0.3578.53.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/

2018-11-16 Thread Mike Gilbert
commit: 96d6be4b05af2a32094f51abf66078cd1abf4483
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Nov 17 02:29:35 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Nov 17 02:29:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96d6be4b

www-client/google-chrome-unstable: automated update (72.0.3610.2)

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

 www-client/google-chrome-unstable/Manifest  | 2 +-
 ...ble-72.0.3608.4.ebuild => google-chrome-unstable-72.0.3610.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index cddd667675b..442a49612dc 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_72.0.3608.4-1_amd64.deb 59417554 BLAKE2B 
c5b0653ed441ce88be994284e90bd4a1286d0dd08873fd39d0593bf44a352cbb53eda7fbd60880c4a4de1a04954c2062553bb36169df1d2ac7bf4f69d093026f
 SHA512 
918ac2950951e3e59986a64c7bedc86f5eff3f633f6f7bfe8157cfbd7805eb385023bde9350eb94e50ec92825f953a12ab5f1faee22b13872b3ee174965a8158
+DIST google-chrome-unstable_72.0.3610.2-1_amd64.deb 58255564 BLAKE2B 
b6bec7e2441794a68d0f2c1ba5dabe71deffc82f97f37ae69f7d67b92a23c8b8624b5458d4c07dd153566705252866191983aa2afe241193789963ff0da31838
 SHA512 
1f60573f4b535e8d0488781424ace6ada48d9eb51ce2588acb34431e1c2cf22757af4aaf139f350deb3ca0bf878c865da3015df6d7ab9023e7d15fdd4ddeebe8

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-72.0.3608.4.ebuild 
b/www-client/google-chrome-unstable/google-chrome-unstable-72.0.3610.2.ebuild
similarity index 100%
rename from 
www-client/google-chrome-unstable/google-chrome-unstable-72.0.3608.4.ebuild
rename to 
www-client/google-chrome-unstable/google-chrome-unstable-72.0.3610.2.ebuild



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

2018-11-16 Thread Michael Palimaka
commit: 1e4544ef2186690c5418d2eb158670a35f5e751c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 17 02:06:35 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 17 02:07:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e4544ef

net-misc/sslh: remove 1.18-r2

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

 net-misc/sslh/Manifest |  1 -
 .../sslh/files/sslh-1.18-systemd-generator.patch   | 26 -
 net-misc/sslh/files/sslh-1.18-version-deps.patch   | 15 -
 net-misc/sslh/files/sslh.init.d-2  | 20 ---
 net-misc/sslh/sslh-1.18-r2.ebuild  | 68 --
 5 files changed, 130 deletions(-)

diff --git a/net-misc/sslh/Manifest b/net-misc/sslh/Manifest
index cd307555d73..3d060fb02b2 100644
--- a/net-misc/sslh/Manifest
+++ b/net-misc/sslh/Manifest
@@ -1,2 +1 @@
-DIST sslh-v1.18.tar.gz 53170 BLAKE2B 
8d26bdc9950b9017279b36699821b756ea0507949edca90758cd4149aac56fd1a12e0192009ce2154af09818a6aa009fd2009f88d89dae8f76525d7aacc4a830
 SHA512 
3f0f61c340b689fb30015d5c73d6c29398b5c6a115ae9089d0b3c0230e99c90049df03133e4b0c3668fbfe995ed40cd3543c5764171c57e632e75bd5c3548fea
 DIST sslh-v1.19c.tar.gz 57418 BLAKE2B 
97af9d8f79c54f1ba11476a142c762c69a16b6fdd48ead167c56c217a556183e3fda777f217c09d3bf6a5705d5cf491b68c282b626f70d42512d147d98b6f87c
 SHA512 
14529f1fc1488b10e660fa85f5d8bb642a0e119a15ca44d492793153447c9414ade5a1925fbbedd19c5d26662aa1bafd9743ab5ca11324632269110406fa8ce9

diff --git a/net-misc/sslh/files/sslh-1.18-systemd-generator.patch 
b/net-misc/sslh/files/sslh-1.18-systemd-generator.patch
deleted file mode 100644
index 476de2a4c1e..000
--- a/net-misc/sslh/files/sslh-1.18-systemd-generator.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-https://patch-diff.githubusercontent.com/raw/yrutschle/sslh/pull/98
 a/Makefile
-+++ b/Makefile
-@@ -27,6 +27,8 @@ CFLAGS ?=-Wall -g $(CFLAGS_COV)
- LIBS=
- OBJS=common.o sslh-main.o probe.o tls.o
- 
-+CONDITIONAL_TARGETS=
-+
- ifneq ($(strip $(USELIBWRAP)),)
-   LIBS:=$(LIBS) -lwrap
-   CPPFLAGS+=-DLIBWRAP
-@@ -54,10 +56,11 @@ endif
- ifneq ($(strip $(USESYSTEMD)),)
- LIBS:=$(LIBS) -lsystemd
- CPPFLAGS+=-DSYSTEMD
-+  CONDITIONAL_TARGETS+=systemd-sslh-generator
- endif
- 
- 
--all: sslh $(MAN) echosrv
-+all: sslh $(MAN) echosrv $(CONDITIONAL_TARGETS)
- 
- .c.o: *.h
-   $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
-

diff --git a/net-misc/sslh/files/sslh-1.18-version-deps.patch 
b/net-misc/sslh/files/sslh-1.18-version-deps.patch
deleted file mode 100644
index c6108ffb1e9..000
--- a/net-misc/sslh/files/sslh-1.18-version-deps.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Make sure the files using version.h depend on it being generated first.
-
-Gentoo-bug: 594586
-
 a/Makefile
-+++ b/Makefile
-@@ -59,7 +59,7 @@
- 
- all: sslh $(MAN) echosrv
- 
--.c.o: *.h
-+%.o: %.c *.h version.h
-   $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
- 
- version.h:

diff --git a/net-misc/sslh/files/sslh.init.d-2 
b/net-misc/sslh/files/sslh.init.d-2
deleted file mode 100644
index 7e4b2cb578a..000
--- a/net-misc/sslh/files/sslh.init.d-2
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-start() {
-   ebegin "Starting ${SVCNAME}"
-   start-stop-daemon --start \
-   --pidfile /var/run/${SVCNAME}.pid \
-   --exec /usr/sbin/sslh -- \
-   ${DAEMON_OPTS} \
-   --pidfile /var/run/${SVCNAME}.pid
-   eend $?
-}
-
-stop() {
-   ebegin "Stopping ${SVCNAME}"
-   start-stop-daemon --stop --quiet --retry 20 \
-   --pidfile /var/run/${SVCNAME}.pid
-   eend $?
-}

diff --git a/net-misc/sslh/sslh-1.18-r2.ebuild 
b/net-misc/sslh/sslh-1.18-r2.ebuild
deleted file mode 100644
index afc382f87c0..000
--- a/net-misc/sslh/sslh-1.18-r2.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_P="${PN}-v${PV}"
-inherit flag-o-matic systemd toolchain-funcs
-
-DESCRIPTION="Port multiplexer - accept both HTTPS and SSH connections on the 
same port"
-HOMEPAGE="https://www.rutschle.net/tech/sslh/README.html;
-SRC_URI="https://www.rutschle.net/tech/${PN}/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~m68k ~mips ~s390 ~sh x86"
-IUSE="caps systemd tcpd"
-
-RDEPEND="caps? ( sys-libs/libcap )
-   systemd? ( sys-apps/systemd:= )
-   tcpd? ( sys-apps/tcp-wrappers )
-   >=dev-libs/libconfig-1.5"
-DEPEND="${RDEPEND}
-   dev-lang/perl"
-
-RESTRICT="test"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.18-version-deps.patch"
-   "${FILESDIR}/${PN}-1.18-systemd-generator.patch"
-)
-
-src_compile() {
-   # On older versions of GCC, the default gnu89 

[gentoo-commits] proj/musl:master commit in: app-misc/screen/files/, app-misc/screen/

2018-11-16 Thread Anthony G. Basile
commit: 8f4bd10e4365a3e97d075d4170d439f2dde1c0f5
Author: xdch47  posteo  de>
AuthorDate: Fri Nov 16 14:31:56 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 17 00:36:46 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=8f4bd10e

app-misc/screen: build without utmp for musl

Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --force
Manifest-Sign-Key: 0DEDF1A904568BAD1FC45C283DCC44782ED07E1C
Signed-off-by: Anthony G. Basile  gentoo.org>

 app-misc/screen/Manifest   |  18 ++
 .../screen/files/screen-4.3.0-no-utempter.patch|  14 +
 app-misc/screen/files/screen-4.5.1-texinfo.patch   |  13 +
 app-misc/screen/files/screen-4.6.2-utmp-exit.patch |  55 
 app-misc/screen/files/screenrc | 356 +
 app-misc/screen/metadata.xml   |  35 ++
 app-misc/screen/screen-4.5.1.ebuild| 163 ++
 app-misc/screen/screen-4.6.0.ebuild| 161 ++
 app-misc/screen/screen-4.6.1.ebuild| 161 ++
 app-misc/screen/screen-4.6.2.ebuild| 163 ++
 app-misc/screen/screen-.ebuild | 152 +
 11 files changed, 1291 insertions(+)

diff --git a/app-misc/screen/Manifest b/app-misc/screen/Manifest
new file mode 100644
index 000..46ad105
--- /dev/null
+++ b/app-misc/screen/Manifest
@@ -0,0 +1,18 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST screen-4.5.1.tar.gz 963153 BLAKE2B 
8f7e20a0a3dde58435fc500714b49af97b4f2f225d34394170572e79ab9a8b49beac6c054021db367a01b6da91deaa726284a25c86eb57e11dcd09ad5dc44cb4
 SHA512 
ca53477ad38264be38efb1d10a1337b647dd061127162c77533b17a30d046cd0caabe38e4a9e5389aac30d5dc62eb53e7877411e69adae36d0ca869bd0a82804
+DIST screen-4.6.0.tar.gz 849062 BLAKE2B 
e08915bb34d4e356eb33c479f1b2dc7a8f4a855e9d1c27490ff31cfc88b4bd9dfb11101dd0e4508f3b37b023b9f9b987dfaff4c6cc930e994d22fcb024cf341d
 SHA512 
2ee7cc51c62a478e72eda0647f3f347e63f40384e19bc11b074158bd94cdb628c6425b1dd7a472496d56bff11a30a9dc58859c2e7e539fae2a8718ed9b0f96d7
+DIST screen-4.6.1.tar.gz 848979 BLAKE2B 
e78874b6d8723c52f827ab5e6b665102d7fd831f03a0006f9d31e000535ccce95ce08e2d302e34ba2d567167a917c8bd3b875843828d1951bcb38ab6ae4e0acf
 SHA512 
e5d029400ed5b509ebddc1f55812c33536d6f5ce91119537c7d06e1fa7dee84939c43337df4638f61c818ce0412f4d08fe212202162a4483a9e84bbc4b3e4336
+DIST screen-4.6.2.tar.gz 845210 BLAKE2B 
feea244e2e0c8f638442a524cd7cac93c6c5e576541bf1321fb32bc9424abf53415d00ebcb4a13a9613788c1baad6e132f209bd0a017b100e0687b3658603aea
 SHA512 
224bd16ad5ae501d1b8bb7d2ba9cc19e6a0743de5a5b320109c2f6bf3b1ca564cc7094ed9211be13733d9d769cde77d13fe236341d448cad0518038ab1e85c99
+-BEGIN PGP SIGNATURE-
+
+iQEzBAEBCAAdFiEEDe3xqQRWi60fxFwoPcxEeC7QfhwFAlvu1NoACgkQPcxEeC7Q
+fhyRJQgAnr43VlPa10cSJ4ndRWpxo0C0uXlmcBA12TthcwDrOPoU44QOlaai8qy8
+ZitvREY6W5fBgsfAz1OVAef1jlLLHJK+0k58CVdedQdtpbwOcBtFc1ZOWKYwXGxK
+kx8LSG44XcroLe3m9YWs+Y5+l3Db5FyLMbG/WSC1jwCZrRznrdzOC5U/5UDcqLZP
+IBAn1aqwnotO6t5rWnM2HBJ8i1K7f1xo3B7lnnYHEQqVJ/qCWqNbOVMUAfnpZhvM
+y9Nat9XjRuSaxsdnhqfncsdSPtnb+2nywfGZyjbSApNZ5xL3LdR8OADwko6ukRBP
+MpBJaPNhUVNQGEqu0eKEwDZheN824g==
+=3fDd
+-END PGP SIGNATURE-

diff --git a/app-misc/screen/files/screen-4.3.0-no-utempter.patch 
b/app-misc/screen/files/screen-4.3.0-no-utempter.patch
new file mode 100644
index 000..e11be5b
--- /dev/null
+++ b/app-misc/screen/files/screen-4.3.0-no-utempter.patch
@@ -0,0 +1,14 @@
+--- a/configure.ac
 b/configure.ac
+@@ -878,11 +878,6 @@
+ #include 
+ #endif
+ ],[struct utmp u; u.ut_host[0] = 0;], AC_DEFINE(UTHOST))
+-AC_CHECK_HEADER(utempter.h, have_utempter=yes, have_utempter=no)
+-if test "$have_utempter" = yes; then
+-  AC_DEFINE(HAVE_UTEMPTER)
+-  LIBS="$LIBS -lutempter"
+-fi
+ 
+ dnl
+ dnl  loadav  

diff --git a/app-misc/screen/files/screen-4.5.1-texinfo.patch 
b/app-misc/screen/files/screen-4.5.1-texinfo.patch
new file mode 100644
index 000..8d7a5e5
--- /dev/null
+++ b/app-misc/screen/files/screen-4.5.1-texinfo.patch
@@ -0,0 +1,13 @@
+--- a/doc/screen.texinfo
 b/doc/screen.texinfo
+@@ -5796,8 +5796,8 @@
+ 
+ 
+ @example
+- Thomas Renninger ,
+- Axel Beckert ,
++ Thomas Renninger ,
++ Axel Beckert ,
+  Ken Beal ,
+  Rudolf Koenig ,
+  Toerless Eckert ,

diff --git a/app-misc/screen/files/screen-4.6.2-utmp-exit.patch 
b/app-misc/screen/files/screen-4.6.2-utmp-exit.patch
new file mode 100644
index 000..11adf69
--- /dev/null
+++ b/app-misc/screen/files/screen-4.6.2-utmp-exit.patch
@@ -0,0 +1,55 @@
+From 2f1b9dfe03133c9b77ea450aed088d65128dc547 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Amadeusz=20S=C5=82awi=C5=84ski?= 
+Date: Tue, 5 Apr 2016 12:47:08 +0200
+Subject: [PATCH] check if we have ut_exit in utmpx struct
+
+---
+ acconfig.h   | 5 +
+ configure.ac | 4 
+ utmp.c   | 2 ++
+ 3 files changed, 11 insertions(+)
+
+diff --git a/acconfig.h b/acconfig.h
+index 

[gentoo-commits] proj/musl:master commit in: sys-libs/ldb/, sys-libs/ldb/files/

2018-11-16 Thread Anthony G. Basile
commit: e146ca9efa87d00ce03199a1390af7ecef8aa593
Author: xdch47  posteo  de>
AuthorDate: Thu Nov 15 19:36:27 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 17 00:26:35 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=e146ca9e

sys-libs/ldb: musl compile fixes

- add define for __NEED_pid_t

Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --force
Manifest-Sign-Key: 0DEDF1A904568BAD1FC45C283DCC44782ED07E1C
Signed-off-by: Anthony G. Basile  gentoo.org>

 sys-libs/ldb/Manifest  |  22 +
 .../ldb/files/ldb-1.1.24-optional-python.patch |  72 ++
 .../ldb/files/ldb-1.1.27-optional_packages.patch   |  92 ++
 sys-libs/ldb/files/ldb-1.1.29-disable-python.patch |  48 ++
 31-fix_PKGCONFIGDIR-when-python-disabled.patch |  17 
 .../ldb/files/ldb-1.1.31-optional_packages.patch   |  57 +++
 .../files/ldb-1.1.31-talloc-disable-python.patch   |  34 +++
 sys-libs/ldb/files/ldb-1.2.3-disable_python.patch  |  64 +
 .../ldb/files/ldb-1.4.0-optional_packages.patch|  45 +
 sys-libs/ldb/ldb-1.1.26.ebuild |  98 +++
 sys-libs/ldb/ldb-1.1.29-r1.ebuild  | 103 
 sys-libs/ldb/ldb-1.1.31.ebuild | 105 
 sys-libs/ldb/ldb-1.2.3.ebuild  | 104 
 sys-libs/ldb/ldb-1.3.6.ebuild  | 104 
 sys-libs/ldb/ldb-1.4.2.ebuild  | 106 +
 sys-libs/ldb/ldb-1.4.3.ebuild  | 106 +
 sys-libs/ldb/ldb-1.5.1.ebuild  | 106 +
 sys-libs/ldb/metadata.xml  |  14 +++
 18 files changed, 1297 insertions(+)

diff --git a/sys-libs/ldb/Manifest b/sys-libs/ldb/Manifest
new file mode 100644
index 000..fb9785b
--- /dev/null
+++ b/sys-libs/ldb/Manifest
@@ -0,0 +1,22 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
+DIST ldb-1.1.26.tar.gz 1262660 BLAKE2B 
66dcc38eb97fe4357d06b301ed1de5cf868adc5f33ea8341a7cbdd5be45c85c31cda58782a66daf9fcada9d873971fc29556f0c331794ede9fc2a7f592480f52
 SHA512 
484689c5b87f223820e3613c056de5528a87736baef7b884df506fc47a3412b35ba2ef8e85f62e2d3da803fdab6b37bb328d4347a20bfc8fef8ed557646b6bbe
+DIST ldb-1.1.29.tar.gz 1277551 BLAKE2B 
449333d40073fd63d6d013ba0ae43fc3a0b8201948eabd440d164d182492002c1d92047d652105c2fb6a3e8383d4b75f45e38cc52efc5d9a0e283676203a
 SHA512 
d37bbe84358e05d17483e2e963b8477da5ea351b855b454142c94af35f7987bede0f19faeaff17779efe04e3bb37c510437fcc59be99a17c826620fc25fd659c
+DIST ldb-1.1.31.tar.gz 1337586 BLAKE2B 
9454f91a621368cfc7cfdb709781653e947d63b275bb3b288049acb43ee3c02ae4f0be820ccf9e3bb32938d12598a91b7a6292b08c638ccfd59bd1be182f09c0
 SHA512 
49ccd57000cbcc6d828160f4457236b28853d766d641841471f61226156b6103fe563c43c950577b038ea3c0a54506bca94c640d3d5f912a3b8af95eb9ef2824
+DIST ldb-1.2.3.tar.gz 1344513 BLAKE2B 
941174d6e2c51319c8690a8d8a87bea443d4fa4d738bd13243b502fdc9d590ba075fcf4a9920c38bb6fc15564f0b116089cd62d99e7cfe33649dc751910265ad
 SHA512 
500ab069cf6cec39907300e3905d334163b5094087831708acc22c4199b006ef52af3b66aade7558a48fab7cd69be3af7883bda3816a83c576d01b36ab270247
+DIST ldb-1.3.6.tar.gz 1374574 BLAKE2B 
654f35eb25aeb373540ead7cb10da66c92970ea6b100631cb14bacf937fec64e09b19ed3e09a976406e3f8d6347c4e17144c0a0bff8795316559be45353edbf7
 SHA512 
8fcd72598e948c55adaa832d6ebcbc03b979281032cb900af4304c1c68ce9cc94a1e1d4729d0c2a0b83a618cab716749d851160005a0093cf8a178e6dbea298d
+DIST ldb-1.4.2.tar.gz 1427857 BLAKE2B 
5a90b31b4760f0504197d3cefdb16f7d4099df660fe75c5d80907e39abde8abc6b87cdb117ee9213abf8287932c18782ab153d87bb609cb1f346231e6e00997c
 SHA512 
f2b44cebd0f8c77926aa364d9ac4ea37da4a780b94e7f9fba7a55fef825e90e469a3230e56cd2b23ce4f6b528dda9041863e4af77bb0826a117e8317a0b79070
+DIST ldb-1.4.3.tar.gz 1428730 BLAKE2B 
1e0fec1aeb05ecd34b7dc88d85425b646ab28804245543256c575a44c1a321e873d74f623b1a003aec878a808d6bc967ff57e8115650f6089278d55d586c7e6a
 SHA512 
081dbc23e810213fb60fdb07c7f3bf1ec8849d10483c5cdabb8add2568d4f80d03bd74d7be3fcf9bb853eaf25aa6bbb2d69cda3f55dda0270978b051da315cb2
+DIST ldb-1.5.1.tar.gz 1432221 BLAKE2B 
1837a74b33b5f527bdea0925de2908fc58bb6ca713bea89cefec9dc9809bf40d107352926ed34dabb333f37533e599b142a36989ffad862b0a89e786ab54c434
 SHA512 
b7815da51944d4e61617fafac0417e57baa59c9dd3dfa926d5ef9072a95351562930150c691a23b81526697bfba3ffe10a75ead406bf5ffdbfc511d1861f984b
+-BEGIN PGP SIGNATURE-
+
+iQEzBAEBCAAdFiEEDe3xqQRWi60fxFwoPcxEeC7QfhwFAlvtxYYACgkQPcxEeC7Q
+fhyn1AgAhs5ho+axx4zsFTxrF5HCvYrsIsFlQ74LejtTSNVn1Lc/paFlflJDFIUz
+kftDkwFbxbXeHBng/t2jFxA9kcoZeQjRmNTXmItnufLFxauLop2qOW9URvlr6sGC
+nVYWqB19lyLE2mRpgMwc7L21XYkMBSVq9maij2XhzqlpcxcrZItX1YLhsl/NDsK2
+CKU6KhQurkNKR+d2pYC9DhMmyz/19eiLw9At0uPDYLfJ9G3Ky4lLM8HeOVynHPOq

[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2018-11-16 Thread Anthony G. Basile
commit: 9f932632698aa71b629de7d1fffa8c2c0d073c48
Author: xdch47  posteo  de>
AuthorDate: Fri Nov 16 09:46:00 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 17 00:21:28 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=9f932632

net-fs/samba: version bump to 4.9.2 for musl

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Manifest-Sign-Key: 0DEDF1A904568BAD1FC45C283DCC44782ED07E1C
Signed-off-by: Anthony G. Basile  gentoo.org>

 net-fs/samba/Manifest   | 15 +++
 net-fs/samba/samba-4.9.1.ebuild |  1 -
 net-fs/samba/{samba-4.9.1.ebuild => samba-4.9.2.ebuild} |  5 ++---
 3 files changed, 17 insertions(+), 4 deletions(-)

diff --git a/net-fs/samba/Manifest b/net-fs/samba/Manifest
index 7ca77f1..ba6cc79 100644
--- a/net-fs/samba/Manifest
+++ b/net-fs/samba/Manifest
@@ -1,3 +1,18 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
 DIST samba-4.5.11-disable-python-patches.tar.xz 6292 BLAKE2B 
c2a32a1059a02bc1c87ce5f604cbc5878c654b8f693c8486b5ba63b37513444915a7b6389fe82b7e31ab2f9577dd8462eddba60b4f4f756b4ed1145ce7bd90ae
 SHA512 
f0e3076e3e1ecaae3f06b3ef30efc81719fb3f63a1041dcbdae4b62ca4cf693732f9eb16f047d046d4930136fed82194e82b455ea888e12cf845b3e6a122d57d
 DIST samba-4.5.16.tar.gz 21024396 BLAKE2B 
e737559fb748044076608fa233700eb54c7e1c56bc234763f062b6341a179cc78a4a8cdf9f3d6f4d7f3cf8a79f846852ddd5cc753a468c3adb3a0451e1809ed9
 SHA512 
de8a41013cfb5ef3adcb290efd97a78a5de876d90ad05764d631f14e663a1849bb53e4ac394b46c906f1109be5748fee9316407a659c57007d36851ae8adcd7f
 DIST samba-4.9.1.tar.gz 18018259 BLAKE2B 
783423098864c391f08b30e05b70308e922bdb4dad08b8b0b4d1112808357b9bb96aad7a094d0fe2e308f84a143d5f90be523b9c3551a3068ecdcad7347613f6
 SHA512 
267673b6d6ab0db59063480c20f02e5864ef96e9ad1097c23a99b2ab4b5fd2252193d7a152729b40cae0751fb9b0b108b087a190f5db11eabbd075224bd6e663
+DIST samba-4.9.2.tar.gz 18042752 BLAKE2B 
e6d361a38f1103c104015987fa2b67c49a91fb2fac77538b3d9fa0c1629348df00c8fb4ea0dbb1a1f3f62cd377699c1ebc00b1b1b7b1e0d073d3633d41a62e7b
 SHA512 
67de5faeda45e5c245bf02cc195cdf9ca4b63f17625837badf7c50d97250e94de5309c9ef824bd7890bc771b1dc0a3bfbafea09880850b5167f0bf8a8ef488ed
+-BEGIN PGP SIGNATURE-
+
+iQEzBAEBCAAdFiEEDe3xqQRWi60fxFwoPcxEeC7QfhwFAlvukdUACgkQPcxEeC7Q
+fhwYTQf9FX5N807jrmzQv9wnqOrRtMOSTLJ73v4DpnYJpYYID8SHLGGErGdGw7QI
+xqg2FCtULHha+j4T8ruaMJ5KwxCyHsPnXYn/niRfNa9oYNHHz72+Ox2wGxd1vmMc
+D0BhMtvvdVaeE0Rq88K1LXBDAk5GzSt4lTjgPnialK/di9WuiUgY3u6S6rubPiNe
+ZUKLOws546vIj3oGiRVOKBidPpxbxpO24XDPRjZqbftdgfCulDdR8iQ22h7mVZf+
+AO9ime/GBVxol7Dh7efElwz0vgSyK3pR5L0xV302dYIEZkr3jHHI24AstwKKtKP5
+lUI9kY54Keut22SqCduvn7C5Rp3aug==
+=BVxv
+-END PGP SIGNATURE-

diff --git a/net-fs/samba/samba-4.9.1.ebuild b/net-fs/samba/samba-4.9.1.ebuild
index f088275..3f6a774 100644
--- a/net-fs/samba/samba-4.9.1.ebuild
+++ b/net-fs/samba/samba-4.9.1.ebuild
@@ -133,7 +133,6 @@ PATCHES=(
"${FILESDIR}/${PN}-4.4.0-pam.patch"
"${FILESDIR}/${PN}-4.5.1-compile_et_fix.patch"
"${FILESDIR}/netdb-defines.patch"
-
 )
 
 #CONFDIR="${FILESDIR}/$(get_version_component_range 1-2)"

diff --git a/net-fs/samba/samba-4.9.1.ebuild b/net-fs/samba/samba-4.9.2.ebuild
similarity index 98%
copy from net-fs/samba/samba-4.9.1.ebuild
copy to net-fs/samba/samba-4.9.2.ebuild
index f088275..21c71a2 100644
--- a/net-fs/samba/samba-4.9.1.ebuild
+++ b/net-fs/samba/samba-4.9.2.ebuild
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~amd64 ~arm64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/;
@@ -49,7 +49,7 @@ CDEPEND="
>=dev-util/cmocka-1.1.1[${MULTILIB_USEDEP}]
net-libs/libnsl:=[${MULTILIB_USEDEP}]
sys-apps/attr[${MULTILIB_USEDEP}]
-   
>=sys-libs/ldb-1.4.2[ldap(+)?,python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]
+   
>=sys-libs/ldb-1.4.3[ldap(+)?,python?,${PYTHON_USEDEP},${MULTILIB_USEDEP}]



[gentoo-commits] proj/musl:master commit in: net-fs/samba/

2018-11-16 Thread Anthony G. Basile
commit: 3a434db37e75a15c3e2224e761ac9c7dcbfb4831
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Nov 17 00:24:00 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 17 00:24:05 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=3a434db3

net-fs/samba: use only musl supported keywords

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

 net-fs/samba/samba-4.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-fs/samba/samba-4.9.1.ebuild b/net-fs/samba/samba-4.9.1.ebuild
index 3f6a774..33fcce0 100644
--- a/net-fs/samba/samba-4.9.1.ebuild
+++ b/net-fs/samba/samba-4.9.1.ebuild
@@ -15,7 +15,7 @@ SRC_PATH="stable"
 
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz"
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="~amd64 ~arm64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~arm ~mips ~ppc ~x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="https://www.samba.org/;



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2018-11-16 Thread Andreas Sturmlechner
commit: ad94571de40e641b1a6d8592029e3f4cb1951bc0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 16 22:52:06 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 16 23:12:11 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ad94571d

profiles: Add kde-apps-18.11.80 package.mask

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

 profiles/package.mask/kde-apps-18.11.80 | 234 
 1 file changed, 234 insertions(+)

diff --git a/profiles/package.mask/kde-apps-18.11.80 
b/profiles/package.mask/kde-apps-18.11.80
new file mode 100644
index 00..c31b267b6e
--- /dev/null
+++ b/profiles/package.mask/kde-apps-18.11.80
@@ -0,0 +1,234 @@
+# Andreas Sturmlechner  (16 Nov 2018)
+# KDE Applications 18.12 beta mask
+# Unstable release.
+~kde-apps/akonadi-18.11.80
+~kde-apps/akonadi-calendar-18.11.80
+~kde-apps/akonadiconsole-18.11.80
+~kde-apps/akonadi-contacts-18.11.80
+~kde-apps/akonadi-import-wizard-18.11.80
+~kde-apps/akonadi-mime-18.11.80
+~kde-apps/akonadi-notes-18.11.80
+~kde-apps/akonadi-search-18.11.80
+~kde-apps/akregator-18.11.80
+~kde-apps/analitza-18.11.80
+~kde-apps/ark-18.11.80
+~kde-apps/artikulate-18.11.80
+~kde-apps/audiocd-kio-18.11.80
+~kde-apps/baloo-widgets-18.11.80
+~kde-apps/blinken-18.11.80
+~kde-apps/bomber-18.11.80
+~kde-apps/bovo-18.11.80
+~kde-apps/calendarjanitor-18.11.80
+~kde-apps/calendarsupport-18.11.80
+~kde-apps/cantor-18.11.80
+~kde-apps/cervisia-18.11.80
+~kde-apps/dolphin-18.11.80
+~kde-apps/dolphin-plugins-18.11.80
+~kde-apps/dragon-18.11.80
+~kde-apps/eventviews-18.11.80
+~kde-apps/ffmpegthumbs-18.11.80
+~kde-apps/filelight-18.11.80
+~kde-apps/granatier-18.11.80
+~kde-apps/grantlee-editor-18.11.80
+~kde-apps/grantleetheme-18.11.80
+~kde-apps/gwenview-18.11.80
+~kde-apps/incidenceeditor-18.11.80
+~kde-apps/juk-18.11.80
+~kde-apps/k3b-18.11.80
+~kde-apps/kaccounts-integration-18.11.80
+~kde-apps/kaccounts-providers-18.11.80
+~kde-apps/kaddressbook-18.11.80
+~kde-apps/kajongg-18.11.80
+~kde-apps/kalarm-18.11.80
+~kde-apps/kalarmcal-18.11.80
+~kde-apps/kalgebra-18.11.80
+~kde-apps/kalzium-18.11.80
+~kde-apps/kamera-18.11.80
+~kde-apps/kamoso-18.11.80
+~kde-apps/kanagram-18.11.80
+~kde-apps/kapman-18.11.80
+~kde-apps/kapptemplate-18.11.80
+~kde-apps/kate-18.11.80
+~kde-apps/katomic-18.11.80
+~kde-apps/kbackup-18.11.80
+~kde-apps/kblackbox-18.11.80
+~kde-apps/kblocks-18.11.80
+~kde-apps/kblog-18.11.80
+~kde-apps/kbounce-18.11.80
+~kde-apps/kbreakout-18.11.80
+~kde-apps/kbruch-18.11.80
+~kde-apps/kcachegrind-18.11.80
+~kde-apps/kcalc-18.11.80
+~kde-apps/kcalcore-18.11.80
+~kde-apps/kcalutils-18.11.80
+~kde-apps/kcharselect-18.11.80
+~kde-apps/kcolorchooser-18.11.80
+~kde-apps/kcontacts-18.11.80
+~kde-apps/kcron-18.11.80
+~kde-apps/kdav-18.11.80
+~kde-apps/kdeaccessibility-meta-18.11.80
+~kde-apps/kdeadmin-meta-18.11.80
+~kde-apps/kde-apps-meta-18.11.80
+~kde-apps/kdebase-meta-18.11.80
+~kde-apps/kdebugsettings-18.11.80
+~kde-apps/kdecore-meta-18.11.80
+~kde-apps/kde-dev-scripts-18.11.80
+~kde-apps/kde-dev-utils-18.11.80
+~kde-apps/kdeedu-data-18.11.80
+~kde-apps/kdeedu-meta-18.11.80
+~kde-apps/kdegames-meta-18.11.80
+~kde-apps/kdegraphics-meta-18.11.80
+~kde-apps/kdegraphics-mobipocket-18.11.80
+~kde-apps/kde-meta-18.11.80
+~kde-apps/kdemultimedia-meta-18.11.80
+~kde-apps/kdenetwork-filesharing-18.11.80
+~kde-apps/kdenetwork-meta-18.11.80
+~kde-apps/kdenlive-18.11.80
+~kde-apps/kdepim-addons-18.11.80
+~kde-apps/kdepim-apps-libs-18.11.80
+~kde-apps/kdepim-meta-18.11.80
+~kde-apps/kdepim-runtime-18.11.80
+~kde-apps/kdesdk-kioslaves-18.11.80
+~kde-apps/kdesdk-meta-18.11.80
+~kde-apps/kdesdk-thumbnailers-18.11.80
+~kde-apps/kdeutils-meta-18.11.80
+~kde-apps/kdf-18.11.80
+~kde-apps/kdialog-18.11.80
+~kde-apps/kdiamond-18.11.80
+~kde-apps/keditbookmarks-18.11.80
+~kde-apps/kfind-18.11.80
+~kde-apps/kfloppy-18.11.80
+~kde-apps/kfourinline-18.11.80
+~kde-apps/kgeography-18.11.80
+~kde-apps/kget-18.11.80
+~kde-apps/kgoldrunner-18.11.80
+~kde-apps/kgpg-18.11.80
+~kde-apps/khangman-18.11.80
+~kde-apps/khelpcenter-18.11.80
+~kde-apps/kidentitymanagement-18.11.80
+~kde-apps/kig-18.11.80
+~kde-apps/kigo-18.11.80
+~kde-apps/killbots-18.11.80
+~kde-apps/kimagemapeditor-18.11.80
+~kde-apps/kimap-18.11.80
+~kde-apps/kio-extras-18.11.80
+~kde-apps/kiriki-18.11.80
+~kde-apps/kiten-18.11.80
+~kde-apps/kitinerary-18.11.80
+~kde-apps/kjumpingcube-18.11.80
+~kde-apps/kldap-18.11.80
+~kde-apps/kleopatra-18.11.80
+~kde-apps/klettres-18.11.80
+~kde-apps/klickety-18.11.80
+~kde-apps/klines-18.11.80
+~kde-apps/kmag-18.11.80
+~kde-apps/kmahjongg-18.11.80
+~kde-apps/kmail-18.11.80
+~kde-apps/kmail-account-wizard-18.11.80
+~kde-apps/kmailtransport-18.11.80
+~kde-apps/kmbox-18.11.80
+~kde-apps/kmime-18.11.80
+~kde-apps/kmines-18.11.80
+~kde-apps/kmix-18.11.80
+~kde-apps/kmousetool-18.11.80
+~kde-apps/kmouth-18.11.80
+~kde-apps/kmplot-18.11.80
+~kde-apps/knavalbattle-18.11.80
+~kde-apps/knetwalk-18.11.80

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

2018-11-16 Thread James Le Cuirot
commit: c894be80ab28c389a39a3f7fea974120fff5b83b
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 16 23:03:59 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 16 23:04:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c894be80

dev-libs/weston: Updates to  including remoting USE flag

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: James Le Cuirot  gentoo.org>

 dev-libs/weston/metadata.xml   |  1 +
 dev-libs/weston/weston-.ebuild | 28 
 2 files changed, 17 insertions(+), 12 deletions(-)

diff --git a/dev-libs/weston/metadata.xml b/dev-libs/weston/metadata.xml
index c1c3e3956fa..c976a4437cf 100644
--- a/dev-libs/weston/metadata.xml
+++ b/dev-libs/weston/metadata.xml
@@ -15,6 +15,7 @@
Enable the IVI shell
Install weston-launch utility
Enable Remote Desktop Protocol compositor 
support
+   Enable plugin to stream output to remote hosts 
using media-libs/gstreamer
Increase performance, allocate more 
RAM. Recommended to disable on Raspberry Pi
Enable screen-sharing through RDP
Enable libunwind usage for backtraces

diff --git a/dev-libs/weston/weston-.ebuild 
b/dev-libs/weston/weston-.ebuild
index 44880eb9639..40aa43e4412 100644
--- a/dev-libs/weston/weston-.ebuild
+++ b/dev-libs/weston/weston-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -25,7 +25,7 @@ fi
 LICENSE="MIT CC-BY-SA-3.0"
 SLOT="0"
 
-IUSE="colord dbus +drm editor examples fbdev +gles2 headless ivi jpeg +launch 
lcms rdp +resize-optimization screen-sharing static-libs +suid systemd test 
unwind wayland-compositor webp +X xwayland"
+IUSE="colord dbus +drm editor examples fbdev +gles2 headless ivi jpeg +launch 
lcms rdp remoting +resize-optimization screen-sharing static-libs +suid systemd 
test wayland-compositor webp +X xwayland"
 
 REQUIRED_USE="
drm? ( gles2 )
@@ -38,13 +38,13 @@ REQUIRED_USE="
 RDEPEND="
>=dev-libs/libinput-0.8.0
>=dev-libs/wayland-1.12.0
-   >=dev-libs/wayland-protocols-1.8
+   >=dev-libs/wayland-protocols-1.14
lcms? ( media-libs/lcms:2 )
media-libs/libpng:0=
webp? ( media-libs/libwebp:0= )
jpeg? ( virtual/jpeg:0= )
>=x11-libs/cairo-1.11.3
-   >=x11-libs/libdrm-2.4.30
+   >=x11-libs/libdrm-2.4.68
>=x11-libs/libxkbcommon-0.5.0
>=x11-libs/pixman-0.25.2
x11-misc/xkeyboard-config
@@ -55,7 +55,7 @@ RDEPEND="
colord? ( >=x11-misc/colord-0.1.27 )
dbus? ( >=sys-apps/dbus-1.6 )
drm? (
-   media-libs/mesa[gbm]
+   >=media-libs/mesa-17.1[gbm]
>=sys-libs/mtdev-1.1.0
>=virtual/udev-136
)
@@ -63,13 +63,16 @@ RDEPEND="
gles2? (
media-libs/mesa[gles2,wayland]
)
-   rdp? ( >=net-misc/freerdp-1.1.0_beta1_p20130710 )
+   rdp? ( >=net-misc/freerdp-1.1.0:= )
+   remoting? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
systemd? (
sys-auth/pambase[systemd]
>=sys-apps/systemd-209[pam]
)
launch? ( sys-auth/pambase )
-   unwind? ( sys-libs/libunwind )
X? (
>=x11-libs/libxcb-1.9
x11-libs/libX11
@@ -95,11 +98,12 @@ src_prepare() {
 }
 
 src_configure() {
-   local myconf
+   local myconf=()
+
if use examples || use test; then
-   myconf="--enable-simple-clients"
+   myconf+=( --enable-simple-clients )
else
-   myconf="--disable-simple-clients"
+   myconf+=( --disable-simple-clients )
fi
 
econf \
@@ -116,7 +120,7 @@ src_configure() {
$(use_enable launch weston-launch) \
$(use_enable colord) \
$(use_enable gles2 egl) \
-   $(use_enable unwind libunwind) \
+   $(use_enable remoting) \
$(use_enable resize-optimization) \
$(use_enable screen-sharing) \
$(use_enable suid setuid-install) \
@@ -132,7 +136,7 @@ src_configure() {
--disable-simple-dmabuf-v4l-client \
--disable-simple-egl-clients \
--disable-vaapi-recorder \
-   ${myconf}
+   "${myconf[@]}"
 }
 
 src_test() {



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

2018-11-16 Thread James Le Cuirot
commit: 64a36e616a2c524af2375f75dbee9b952fe2030a
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 16 23:01:44 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 16 23:04:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64a36e61

dev-libs/weston: Version bump to 5.0.0

Bug: https://bugs.gentoo.org/634572
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: James Le Cuirot  gentoo.org>

 dev-libs/weston/Manifest|   1 +
 dev-libs/weston/weston-5.0.0.ebuild | 150 
 2 files changed, 151 insertions(+)

diff --git a/dev-libs/weston/Manifest b/dev-libs/weston/Manifest
index e4a6d59c72c..2c30fde70a9 100644
--- a/dev-libs/weston/Manifest
+++ b/dev-libs/weston/Manifest
@@ -1 +1,2 @@
 DIST weston-3.0.0.tar.xz 1300340 BLAKE2B 
38b46ecca03ffee7832a561348cb1d6604db7e0add8b5629141ce61593ae250625d71c6716f02296157ea5a61764ff10561fa7ffc8f3c1426a4c86589b13b5c3
 SHA512 
b824c39f2a884f6d50d607613f447090621f684c96f7d905f25f6e500dabd03ecb2b1cd1030babc193c3417223cb220103abb792437e1a5ead7229a76b5c7a58
+DIST weston-5.0.0.tar.xz 1467496 BLAKE2B 
514bc4c4f09dc8bc5b068c66cf14b86687bee1e691f7dfcb251a5ae7fe02389b48626ed02c97eff9334b43e227ea8b83beef48c53a83b4691f59a65af53ad61d
 SHA512 
b6f97eca014ea47f3de0c5ddd89712f896cd66423d0eb499e1d88d35aab616cef1e735ebb8e0cefd8b60085314b6ec3d56b39d7c4776188bb56d58efc84a52cf

diff --git a/dev-libs/weston/weston-5.0.0.ebuild 
b/dev-libs/weston/weston-5.0.0.ebuild
new file mode 100644
index 000..61c5f7776cc
--- /dev/null
+++ b/dev-libs/weston/weston-5.0.0.ebuild
@@ -0,0 +1,150 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ ${PV} = * ]]; then
+   EGIT_REPO_URI="https://anongit.freedesktop.org/git/wayland/weston.git;
+   GIT_ECLASS="git-r3"
+   EXPERIMENTAL="true"
+fi
+
+inherit autotools readme.gentoo-r1 toolchain-funcs $GIT_ECLASS
+
+DESCRIPTION="Wayland reference compositor"
+HOMEPAGE="https://wayland.freedesktop.org/;
+
+if [[ $PV = * ]]; then
+   SRC_URI="${SRC_PATCHES}"
+   KEYWORDS=""
+else
+   SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+LICENSE="MIT CC-BY-SA-3.0"
+SLOT="0"
+
+IUSE="colord dbus +drm editor examples fbdev +gles2 headless ivi jpeg +launch 
lcms rdp +resize-optimization screen-sharing static-libs +suid systemd test 
wayland-compositor webp +X xwayland"
+
+REQUIRED_USE="
+   drm? ( gles2 )
+   screen-sharing? ( rdp )
+   systemd? ( dbus )
+   test? ( headless xwayland )
+   wayland-compositor? ( gles2 )
+"
+
+RDEPEND="
+   >=dev-libs/libinput-0.8.0
+   >=dev-libs/wayland-1.12.0
+   >=dev-libs/wayland-protocols-1.13
+   lcms? ( media-libs/lcms:2 )
+   media-libs/libpng:0=
+   webp? ( media-libs/libwebp:0= )
+   jpeg? ( virtual/jpeg:0= )
+   >=x11-libs/cairo-1.11.3
+   >=x11-libs/libdrm-2.4.68
+   >=x11-libs/libxkbcommon-0.5.0
+   >=x11-libs/pixman-0.25.2
+   x11-misc/xkeyboard-config
+   fbdev? (
+   >=sys-libs/mtdev-1.1.0
+   >=virtual/udev-136
+   )
+   colord? ( >=x11-misc/colord-0.1.27 )
+   dbus? ( >=sys-apps/dbus-1.6 )
+   drm? (
+   >=media-libs/mesa-17.1[gbm]
+   >=sys-libs/mtdev-1.1.0
+   >=virtual/udev-136
+   )
+   editor? ( x11-libs/pango )
+   gles2? (
+   media-libs/mesa[gles2,wayland]
+   )
+   rdp? ( >=net-misc/freerdp-1.1.0:= )
+   systemd? (
+   sys-auth/pambase[systemd]
+   >=sys-apps/systemd-209[pam]
+   )
+   launch? ( sys-auth/pambase )
+   X? (
+   >=x11-libs/libxcb-1.9
+   x11-libs/libX11
+   )
+   xwayland? (
+   x11-base/xorg-server[wayland]
+   x11-libs/cairo[xcb]
+   >=x11-libs/libxcb-1.9
+   x11-libs/libXcursor
+   )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   if [[ ${PV} = * ]]; then
+   eautoreconf
+   else
+   elibtoolize
+   fi
+}
+
+src_configure() {
+   local myconf=()
+
+   if use examples || use test; then
+   myconf+=( --enable-simple-clients )
+   else
+   myconf+=( --disable-simple-clients )
+   fi
+
+   econf \
+   $(use_enable examples demo-clients-install) \
+   $(use_enable fbdev fbdev-compositor) \
+   $(use_enable dbus) \
+   $(use_enable drm drm-compositor) \
+   $(use_enable headless headless-compositor) \
+   $(use_enable ivi ivi-shell) \
+   $(use_enable lcms) \
+   $(use_enable rdp rdp-compositor) \
+   $(use_enable wayland-compositor) \
+   $(use_enable X x11-compositor) \
+ 

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

2018-11-16 Thread Patrice Clement
commit: e766b9a94f3719c9008b6ac82971a56ac55a8c45
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Thu Nov  1 23:02:08 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Nov 16 23:01:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e766b9a9

app-office/moneydance: new package.

Moneydance is an easy-to-use personal finance software that is loaded with all 
the
features you need: online banking and bill payment, account management,
budgeting and investment tracking.

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

 app-office/moneydance/Manifest |  2 +
 app-office/moneydance/metadata.xml | 17 
 app-office/moneydance/moneydance-2017.8.ebuild | 59 ++
 3 files changed, 78 insertions(+)

diff --git a/app-office/moneydance/Manifest b/app-office/moneydance/Manifest
new file mode 100644
index 000..00c1b8726d4
--- /dev/null
+++ b/app-office/moneydance/Manifest
@@ -0,0 +1,2 @@
+DIST moneydance-2017.8-amd64.tar.gz 132109962 BLAKE2B 
4984b6266eed96337ab284168db1a167121daa6b454a338f348d1d724587e6dfd6a52c25ff739ca0e09a9c0441b1b582e59a571f001e8b2ddc6c5e10917100cd
 SHA512 
53e46ee63ee89b86f3108045e9a16fdda637effb5edb719ccf7192632e6ebace607f40871ee54b5c5bde40821fdf2cbf89a5abd6eba0698618a8db8d848971c6
+DIST moneydance-2017.8-x86.tar.gz 134851425 BLAKE2B 
4c40f30798b66d01b5abacc5cfbfa584a107f351de8bd2eb8c291aea6d96c122a36feb5ed092ea0aec4a99be7e1507f79551a1c6a1cd79365b8dfc52892a57bc
 SHA512 
434fbd0c941a455c862963e572b7c1489fa19ccf30efb315af33eac3974acdad57292943d129433e6a59d3f233cd797b6697c0e82d9293ce0464d25ab8c32912

diff --git a/app-office/moneydance/metadata.xml 
b/app-office/moneydance/metadata.xml
new file mode 100644
index 000..2c7b5849ff8
--- /dev/null
+++ b/app-office/moneydance/metadata.xml
@@ -0,0 +1,17 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   ck+gen...@bl4ckb0x.de
+   Conrad Kostecki
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   Moneydance is easy to use personal finance software that is 
loaded
+   with all the features you need: online banking and bill payment,
+   account management, budgeting and investment tracking.
+   
+

diff --git a/app-office/moneydance/moneydance-2017.8.ebuild 
b/app-office/moneydance/moneydance-2017.8.ebuild
new file mode 100644
index 000..f81dd0158f4
--- /dev/null
+++ b/app-office/moneydance/moneydance-2017.8.ebuild
@@ -0,0 +1,59 @@
+# Copyright 2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PN="Moneydance"
+
+inherit desktop gnome2-utils java-pkg-2
+
+DESCRIPTION="A personal finance app for Mac, Windows, Linux, iPhone and iPad"
+HOMEPAGE="https://www.moneydance.com/;
+SRC_URI="
+   amd64? ( 
https://infinitekind.com/stabledl/current/${MY_PN}_linux_amd64.tar.gz -> 
${P}-amd64.tar.gz )
+   x86? ( 
https://infinitekind.com/stabledl/current/${MY_PN}_linux_x86.tar.gz -> 
${P}-x86.tar.gz )
+"
+
+LICENSE="Apache-1.0 Apache-2.0 BSD CPAL-1.0 CPL-1.0 CSL-2.0 LGPL-2 MIT TIK"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=virtual/jre-1.8:="
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_PN}"
+
+RESTRICT="bindist fetch mirror"
+
+pkg_nofetch() {
+   elog "Please download ${A} from"
+   elog 
"https://www.infinitekind.com/download-moneydance-personal-finance-software;
+   elog "and place it in your DISTDIR directory."
+}
+
+src_prepare() {
+   default
+
+   # Modify .desktop file, to fix QA errors
+   sed -e 's/Application;//g' -e 's/.png//g' -i 
resources/moneydance.desktop || die
+}
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   java-pkg_dojar jars/*.jar
+   java-pkg_dolauncher moneydance --main "Moneydance" --java_args "-client 
-Dawt.useSystemAAFontSettings=gasp -Dawt.useSystemAAFontSettings=on -Xmx1024m"
+
+   doicon resources/*.png
+   domenu resources/moneydance.desktop
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-vim/tlib/

2018-11-16 Thread Patrice Clement
commit: 790ea8d917c14d899a3e304173a3dba11ebfaf93
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Nov 15 19:50:45 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Nov 16 23:01:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=790ea8d9

app-vim/tlib: stable for amd64+x86.

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

 app-vim/tlib/tlib-1.22.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/tlib/tlib-1.22.ebuild b/app-vim/tlib/tlib-1.22.ebuild
index 3b7985db27c..1c39dca52f2 100644
--- a/app-vim/tlib/tlib-1.22.ebuild
+++ b/app-vim/tlib/tlib-1.22.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ DESCRIPTION="vim plugin: a library of utility functions"
 HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1863 
https://github.com/tomtom/tlib_vim;
 SRC_URI="https://github.com/tomtom/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 VIM_PLUGIN_HELPFILES="${PN}.txt"
 



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

2018-11-16 Thread Patrice Clement
commit: bfae0756d50861d9efe1661c678289f0f79ada85
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Thu Nov  1 22:52:46 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Nov 16 23:01:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfae0756

profiles/license_groups: added TIK license to EULA group.

Bug: https://bugs.gentoo.org/19910
Signed-off-by: Conrad Kostecki  kostecki.com>
Signed-off-by: Patrice Clement  gentoo.org>

 profiles/license_groups | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/license_groups b/profiles/license_groups
index 4c5438935df..1da6cf53b48 100644
--- a/profiles/license_groups
+++ b/profiles/license_groups
@@ -71,7 +71,7 @@ BINARY-REDISTRIBUTABLE @FREE bh-luxi Broadcom Dina 
intel-ucode ipw2100-fw ipw220
 
 # License agreements that try to take away your rights. These are more
 # restrictive than "all-rights-reserved" or require explicit approval.
-EULA AdobeFlash-11.x AMD-GPU-PRO-EULA ArxFatalis-EULA-JoWooD baudline BCS 
bf1942-lnxded CAPYBARA-EULA Coherent-Graphics CROSSOVER-2 DOOM3 ETQW f.lux 
FAH-EULA-2014 FraunhoferFDK GameFront Gameplay-Group-EULA geekbench genymotion 
GIMPS GOG-EULA google-chrome Google-TOS Intel-SDP Introversion LastPass 
LOKI-EULA LRCTF MakeMKV-EULA Mendeley-terms Microsemi Mojang MTA-0.5 
NVIDIA-CODEC-SDK NVIDIA-CUDA Nero-EULA-US OPERA-12 OPERA-2014 
Oracle-BCLA-JavaSE PAPERS-PLEASE POMPOM postal2 Primate-Plunge 
protonmail-bridge-EULA PUEL Q3AEULA Q3AEULA-2111 QUAKE4 
Quartus-prime-megacore RAR RTCW RTCW-ETEULA RuneScape-EULA SJ-Labs Sourcetrail 
SPS StarUML-EULA Steam supermicro teamspeak3 TeamViewer THINKTANKS ubiquiti 
UPEK-SDK-EULA ut2003 ut2003-demo Vivaldi worklog-assistant zi-labone
+EULA AdobeFlash-11.x AMD-GPU-PRO-EULA ArxFatalis-EULA-JoWooD baudline BCS 
bf1942-lnxded CAPYBARA-EULA Coherent-Graphics CROSSOVER-2 DOOM3 ETQW f.lux 
FAH-EULA-2014 FraunhoferFDK GameFront Gameplay-Group-EULA geekbench genymotion 
GIMPS GOG-EULA google-chrome Google-TOS Intel-SDP Introversion LastPass 
LOKI-EULA LRCTF MakeMKV-EULA Mendeley-terms Microsemi Mojang MTA-0.5 
NVIDIA-CODEC-SDK NVIDIA-CUDA Nero-EULA-US OPERA-12 OPERA-2014 
Oracle-BCLA-JavaSE PAPERS-PLEASE POMPOM postal2 Primate-Plunge 
protonmail-bridge-EULA PUEL Q3AEULA Q3AEULA-2111 QUAKE4 
Quartus-prime-megacore RAR RTCW RTCW-ETEULA RuneScape-EULA SJ-Labs Sourcetrail 
SPS StarUML-EULA Steam supermicro teamspeak3 TeamViewer THINKTANKS TIK ubiquiti 
UPEK-SDK-EULA ut2003 ut2003-demo Vivaldi worklog-assistant zi-labone
 
 # Local Variables:
 # mode: conf-space



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

2018-11-16 Thread Patrice Clement
commit: 5ca75d8e513896bd7d98b6c96fe0fe18881a2ec5
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Thu Nov  1 22:52:00 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Nov 16 23:01:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ca75d8e

licenses/CSL-2.0: added new license for app-office/moneydance.

Bug: https://bugs.gentoo.org/19910
Signed-off-by: Conrad Kostecki  kostecki.com>
Signed-off-by: Patrice Clement  gentoo.org>

 licenses/CSL-2.0 | 110 +++
 1 file changed, 110 insertions(+)

diff --git a/licenses/CSL-2.0 b/licenses/CSL-2.0
new file mode 100644
index 000..93e66e072d0
--- /dev/null
+++ b/licenses/CSL-2.0
@@ -0,0 +1,110 @@
+The Clearthought Software License, Version 2.0
+
+Copyright (c) 2001 Daniel Barbalace.  All rights reserved.
+
+Project maintained at https://tablelayout.dev.java.net
+
+I. Terms for redistribution of original source and binaries
+
+Redistribution and use of unmodified source and/or binaries are
+permitted provided that the following condition is met:
+
+1. Redistributions of original source code must retain the above
+   copyright notice and license.  You are not required to redistribute
+   the original source; you may choose to redistribute only the
+   binaries.
+
+Basically, if you distribute unmodified source, you meet
+automatically comply with the license with no additional effort on
+your part.
+
+II. Terms for distribution of derived works via subclassing and/or
+composition.
+
+You may generate derived works by means of subclassing and/or
+composition (e.g., the Adaptor Pattern), provided that the following
+conditions are met:
+
+1. Redistributions of original source code must retain the above
+   copyright notice and license.  You are not required to redistribute
+   the original source; you may choose to redistribute only the
+   binaries.
+
+2. The original software is not altered.
+
+3. Derived works are not contained in the info.clearthought
+   namespace/package or any subpackage of info.clearthought.
+
+4. Derived works do not use the class or interface names from the
+   info.clearthought... packages
+
+For example, you may define a class with the following full name:
+   org.nameOfMyOrganization.layouts.RowMajorTableLayout
+
+However, you may not define a class with the either of the
+following full names:
+   info.clearthought.layout.RowMajorTableLayout
+   org.nameOfMyOrganization.layouts.TableLayout
+
+III. Terms for redistribution of source modified via patch files.
+
+You may generate derived works by means of patch files provided
+that the following conditions are met:
+
+1. Redistributions of original source code must retain the above
+   copyright notice and license.  You are not required to
+   redistribute the original source; you may choose to redistribute
+   only the binaries resulting from the patch files.
+
+2. The original source files are not altered.  All alteration is
+   done in patch files.
+
+3. Derived works are not contained in the info.clearthought
+   namespace/package or any subpackage of info.clearthought.  This
+   means that your patch files must change the namespace/package
+   for the derived work.  See section II for examples.
+
+4. Derived works do not use the class or interface names from the
+   info.clearthought... packages.  This means your patch files
+   must change the names of the interfaces and classes they alter.
+   See section II for examples.
+
+5. Derived works must include the following disclaimer.
+   "This work is derived from Clearthought's TableLayout,
+https://tablelayout.dev.java.net, by means of patch files
+rather than subclassing or composition.  Therefore, this work
+might not contain the latest fixes and features of TableLayout."
+
+IV. Terms for repackaging, transcoding, and compiling of binaries.
+
+You may do any of the following with the binaries of the
+original software.
+
+1. You may move binaries (.class files) from the original .jar file
+   to your own .jar file.
+
+2. You may move binaries from the original .jar file to other
+   resource containing files, including but not limited to .zip,
+   .gz, .tar, .dll, .exe files.
+
+3. You may backend compile the binaries to any platform, including
+   but not limited to Win32, Win64, MAC OS, Linux, Palm OS, any
+   handheld or embedded platform.
+
+4. You may transcribe the binaries to other virtual machine byte
+   code protocols, including but not limited to .NET.
+
+V. License Disclaimer.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR, AFFILATED BUSINESSES,
+OR ANYONE ELSE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF 

[gentoo-commits] repo/gentoo:master commit in: app-vim/tlib/

2018-11-16 Thread Patrice Clement
commit: 736be8d60d75adfadeffb59867d617c6c64919fa
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Nov 15 19:54:02 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Nov 16 23:01:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=736be8d6

app-vim/tlib: clean up old.

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

 app-vim/tlib/Manifest |  1 -
 app-vim/tlib/tlib-1.20.ebuild | 23 ---
 2 files changed, 24 deletions(-)

diff --git a/app-vim/tlib/Manifest b/app-vim/tlib/Manifest
index 9b0d42142a1..c638356f631 100644
--- a/app-vim/tlib/Manifest
+++ b/app-vim/tlib/Manifest
@@ -1,3 +1,2 @@
-DIST tlib-1.20.tar.gz 111202 BLAKE2B 
0ee6c662e1658607706516adab9b770942ec948633a75879b5a516b46989a34744acde52d10d5b2ea58af6e7215f1241b18c53267d643d4c2e08da425a93169e
 SHA512 
d8a344483da2a174324dc81472b5d3bdb811e54af22a1599c5567019d33bafdf499845d3efeabf081ecf17dc6965c69640a6a01b208811529e86266ba1871218
 DIST tlib-1.22.tar.gz 119979 BLAKE2B 
2fe1231b6a075989c41aa2cf38d0964b6d9ada390d0729ea417aa1c2ef1a105a07d569f80c75ba91a55f7e68f349faab2dcda66741b0b1da59f76d68a5467e24
 SHA512 
b7fc7e3741876c92bbccc116d4e170663e3d178aa8fb546f969475723cd82e07d9470af37574f8f97cfd23b8ca8f5dd5daa2e7bef50e2f62beec0015a2355908
 DIST tlib-1.23.tar.gz 120827 BLAKE2B 
7b86a1b0e22e499390239e5898d81c90ac1b3b989b929e3bde3ea516d05419fc8af19e72d5313df36ce856a4c7ee2cddbdbecbace835f24adefb1883d4e76e46
 SHA512 
5fd5d6e6ccd36117abcfca35173d28602a73b0773e5fc77cb8c1c8660f13dd7882c8a8de9b4335927b807c7d643c480f1371926b4ffb1758e53948132dee1d75

diff --git a/app-vim/tlib/tlib-1.20.ebuild b/app-vim/tlib/tlib-1.20.ebuild
deleted file mode 100644
index 3b64cc06f5e..000
--- a/app-vim/tlib/tlib-1.20.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit vim-plugin
-
-MY_PN=${PN}_vim
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="vim plugin: a library of utility functions"
-HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1863 
https://github.com/tomtom/tlib_vim;
-SRC_URI="https://github.com/tomtom/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="GPL-3"
-KEYWORDS="amd64 x86"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   rm -r test samples addon-info.json || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-vim/tlib/

2018-11-16 Thread Patrice Clement
commit: 10b1aa4b48d98ad07f80c5193af3cc6451033da7
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Nov 15 19:47:19 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Nov 16 23:01:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10b1aa4b

app-vim/tlib: version bump.

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

 app-vim/tlib/Manifest |  1 +
 app-vim/tlib/tlib-1.23.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/app-vim/tlib/Manifest b/app-vim/tlib/Manifest
index e9d40970137..9b0d42142a1 100644
--- a/app-vim/tlib/Manifest
+++ b/app-vim/tlib/Manifest
@@ -1,2 +1,3 @@
 DIST tlib-1.20.tar.gz 111202 BLAKE2B 
0ee6c662e1658607706516adab9b770942ec948633a75879b5a516b46989a34744acde52d10d5b2ea58af6e7215f1241b18c53267d643d4c2e08da425a93169e
 SHA512 
d8a344483da2a174324dc81472b5d3bdb811e54af22a1599c5567019d33bafdf499845d3efeabf081ecf17dc6965c69640a6a01b208811529e86266ba1871218
 DIST tlib-1.22.tar.gz 119979 BLAKE2B 
2fe1231b6a075989c41aa2cf38d0964b6d9ada390d0729ea417aa1c2ef1a105a07d569f80c75ba91a55f7e68f349faab2dcda66741b0b1da59f76d68a5467e24
 SHA512 
b7fc7e3741876c92bbccc116d4e170663e3d178aa8fb546f969475723cd82e07d9470af37574f8f97cfd23b8ca8f5dd5daa2e7bef50e2f62beec0015a2355908
+DIST tlib-1.23.tar.gz 120827 BLAKE2B 
7b86a1b0e22e499390239e5898d81c90ac1b3b989b929e3bde3ea516d05419fc8af19e72d5313df36ce856a4c7ee2cddbdbecbace835f24adefb1883d4e76e46
 SHA512 
5fd5d6e6ccd36117abcfca35173d28602a73b0773e5fc77cb8c1c8660f13dd7882c8a8de9b4335927b807c7d643c480f1371926b4ffb1758e53948132dee1d75

diff --git a/app-vim/tlib/tlib-1.23.ebuild b/app-vim/tlib/tlib-1.23.ebuild
new file mode 100644
index 000..eb715c1632e
--- /dev/null
+++ b/app-vim/tlib/tlib-1.23.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+MY_PN=${PN}_vim
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="vim plugin: a library of utility functions"
+HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=1863 
https://github.com/tomtom/tlib_vim;
+SRC_URI="https://github.com/tomtom/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+   rm -r test samples addon-info.json || die
+}



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

2018-11-16 Thread Patrice Clement
commit: 86adc23c19cd7e910e0a8cdb41c878745e0ee17f
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Thu Nov  1 22:51:30 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Nov 16 23:01:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86adc23c

licenses/TIK: added new license for app-office/moneydance.

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

 licenses/TIK | 60 
 1 file changed, 60 insertions(+)

diff --git a/licenses/TIK b/licenses/TIK
new file mode 100644
index 000..de053da4944
--- /dev/null
+++ b/licenses/TIK
@@ -0,0 +1,60 @@
+END-USER LICENSE AGREEMENT
+
+IMPORTANT--READ CAREFULLY BEFORE OPENING THIS PACKAGE OR USING THIS SOFTWARE
+
+BY OPENING THIS PACKAGE OR USING THIS SOFTWARE, YOU ACKNOWLEDGE THAT YOU HAVE 
READ THIS LICENSE AGREEMENT, THAT YOU UNDERSTAND IT, AND THAT YOU AGREE TO BE 
BOUND BY ITS TERMS.  IF YOU ARE GAINING ACCESS TO THIS SOFTWARE BY ELECTRONIC 
MEANS AND AGREE TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS LICENSE 
AGREEMENT, CLICK  "I ACCEPT" AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE 
TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT, PROMPTLY 
RETURN THE UNOPENED PACKAGE TOGETHER WITH ALL ACCOMPANYING ITEMS TO YOUR PLACE 
OF PURCHASE FOR A FULL REFUND OF YOUR PAYMENT, OR, IF YOU GAINED ACCESS TO THIS 
SOFTWARE BY ELECTRONIC MEANS, CLICK "I DECLINE" AT THE END OF THIS AGREEMENT. 
IN ANY EVENT, YOUR USE OF THIS SOFTWARE CONSTITUTES YOUR ACCEPTANCE AND 
AGREEMENT TO BE BOUND BY THE TERMS HEREIN.
+
+1. GRANT OF LICENSE FOR REGISTERED USERS.  The Infinite Kind, LLC ("TIK") 
hereby grants you a non-exclusive, non-transferable, limited license to use the 
software with which this license is distributed (the "Software"), including any 
documentation files accompanying the Software ("Documentation") solely on a 
single personal computer, provided that (i) the Software may not be modified; 
(ii) all copyright notices are maintained on the Software; and (iii) you agree 
to be bound by the terms of this License Agreement.  The Software is licensed 
to you and not sold to you.  The Software and Documentation shall be used only 
by you, only for your own personal use and not in the operation of a service 
bureau or for the benefit of any other person or entity. Any use of the 
Software, other than as expressly set forth herein, by you or any person, 
business, corporation, government organization or any other entity is strictly 
forbidden and is a violation of this License Agreement. 
+2. OWNERSHIP.  You have no ownership rights in the Software. Rather, you have 
a license to use the Software pursuant to the terms of this License Agreement 
as long as this License Agreement remains in full force and effect.  Ownership 
of the Software, Documentation and all intellectual property rights therein 
shall remain at all times with TIK. TIK shall own all right title and interest 
(including any copyrights, patents, trade secrets and other intellectual 
property rights) in and to all materials licensed by TIK under this Agreement.  
You acknowledge that as between you and TIK, TIK owns its proprietary 
trademark(s) (including but not limited to Moneydance(tm)), and all related 
trade names, logos and icons.
+3. COPYRIGHT AND TRADEMARK.  The Software and Documentation contain material 
that is protected by United States Copyright Law and trade secret law, and by 
international treaty provisions.  All rights not granted to you herein are 
reserved to TIK.  You may not remove any proprietary notice of TIK from any 
copy of the Software or Documentation.  You are not authorized to use, 
reproduce, publish, or distribute any trademarks, trade names, logos or icons 
of  TIK. You may not copy the printed materials and Documentation which 
accompany the Software. 
+4. RESTRICTIONS.  This License Agreement is your proof of license to exercise 
the rights granted herein and must be retained by you.  You must protect the 
Software and Documentation consistent with TIK's rights therein, including 
informing persons who are permitted access thereto in order to satisfy your 
obligations hereunder and maintain the confidentiality of the Software and 
Documentation.  You may not publish, display, disclose, rent, lease, modify, 
loan, distribute, alter or create derivative works based on the Software or any 
part thereof.  You may not reverse engineer, decompile, translate, adapt, or 
disassemble the Software, nor shall you attempt to create the source code from 
the object code for the Software.  You may not transmit the Software over any 
network or between any devices, although you may use the Software to make such 
transmissions of other materials.  You may transfer the Software to another 
computer you own as long as you first 

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

2018-11-16 Thread Patrice Clement
commit: ff66e10dec922c47dc30ff55409f952011e947a9
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Nov 16 23:01:19 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Nov 16 23:01:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff66e10d

app-office/moneydance: get DEPEND/RDEPEND right.

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

 app-office/moneydance/moneydance-2017.8.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/app-office/moneydance/moneydance-2017.8.ebuild 
b/app-office/moneydance/moneydance-2017.8.ebuild
index f81dd0158f4..f20ce04ad9b 100644
--- a/app-office/moneydance/moneydance-2017.8.ebuild
+++ b/app-office/moneydance/moneydance-2017.8.ebuild
@@ -18,8 +18,11 @@ LICENSE="Apache-1.0 Apache-2.0 BSD CPAL-1.0 CPL-1.0 CSL-2.0 
LGPL-2 MIT TIK"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-RDEPEND=">=virtual/jre-1.8:="
-DEPEND="${RDEPEND}"
+RDEPEND="
+   >=virtual/jre-1.8"
+
+DEPEND="
+   >=virtual/jdk-1.8"
 
 S="${WORKDIR}/${MY_PN}"
 



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

2018-11-16 Thread Thomas Deutschmann
commit: 57803e992dc7f3ccc2b600bd5d792a6061ced530
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Nov 16 23:00:11 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Nov 16 23:00:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57803e99

dev-db/percona-server: update known test failures

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

 .../percona-server/percona-server-5.7.23.24.ebuild | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/dev-db/percona-server/percona-server-5.7.23.24.ebuild 
b/dev-db/percona-server/percona-server-5.7.23.24.ebuild
index dea13fd0c16..9887b0d1eb4 100644
--- a/dev-db/percona-server/percona-server-5.7.23.24.ebuild
+++ b/dev-db/percona-server/percona-server-5.7.23.24.ebuild
@@ -597,6 +597,7 @@ src_test() {
# These are failing in Percona-Server 5.7 for now and are believed to be
# false positives or are known to fail:
#
+   # encryption.innodb_encryption_tables:  
https://jira.percona.com/browse/PS-5036
# group_replication.gr_communication_configuration: requires a valid 
local network address
#   which clashes with 
FEATURES=network-sandbox
# main.mysqlshow:   
https://jira.percona.com/browse/PS-5017
@@ -604,15 +605,36 @@ src_test() {
# keyring_vault.keyring_vault_timeout:  requires network 
access to vault.public-ci.percona.com
#   which clashes with 
FEATURES=network-sandbox
# perfschema.show_sanity:   
https://jira.percona.com/browse/PS-5018
+   # rocksdb.rocksdb:  
https://jira.percona.com/browse/PS-5034
+   # rocksdb.show_engine:  
https://jira.percona.com/browse/PS-5033
+   # rocksdb.show_table_status:
https://jira.percona.com/browse/PS-5035
+   # x.crud_insert_cast:   
https://jira.percona.com/browse/PS-5032
+   # x.insert_table_bad_column:
https://jira.percona.com/browse/PS-5032
+   # x.insert_table_bad_numcolumns:
https://jira.percona.com/browse/PS-5032
+   # x.insert_table_bad_column_type:   
https://jira.percona.com/browse/PS-5032
+   # x.insert_table:   
https://jira.percona.com/browse/PS-5032
+   # x.update_crud_arrayappend_o:  
https://jira.percona.com/browse/PS-5032
+   # x.update_crud_arrayinsert_o:  
https://jira.percona.com/browse/PS-5032
#
local t
 
for t in \
+   encryption.innodb_encryption_tables \
group_replication.gr_communication_configuration \
main.mysqlshow \
main.percona_bug1289599 \
keyring_vault.keyring_vault_timeout \
perfschema.show_sanity \
+   rocksdb.rocksdb \
+   rocksdb.show_engine \
+   rocksdb.show_table_status \
+   x.crud_insert_cast \
+   x.insert_table_bad_column \
+   x.insert_table_bad_numcolumns \
+   x.insert_table_bad_column_type \
+   x.insert_table \
+   x.update_crud_arrayappend_o \
+   x.update_crud_arrayinsert_o \
; do
_disable_test "$t" "False positives in Gentoo / Known 
bug"
done



[gentoo-commits] repo/gentoo:master commit in: virtual/pager/

2018-11-16 Thread Michał Górny
commit: eeb4732eca8e6fb97252c751614d3846f20d2a21
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 16 22:01:34 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 16 22:48:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeb4732e

virtual/pager: Take maintenance over

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

 virtual/pager/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/virtual/pager/metadata.xml b/virtual/pager/metadata.xml
index 6f49eba8f49..c6dd702ff51 100644
--- a/virtual/pager/metadata.xml
+++ b/virtual/pager/metadata.xml
@@ -1,5 +1,8 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
+   
+   mgo...@gentoo.org
+   Michał Górny
+   
 



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

2018-11-16 Thread Andreas Sturmlechner
commit: cd95dbfe862f549bbca214139b8be3e9b89cd44b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 14 21:43:09 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 14 21:43:19 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=cd95dbfe

kde-apps/kimagemapeditor: Fix DEPENDs, kdelibs4support--

Upstream commit 61ba7644d04d9898a5f26915340c7fec68687e3e

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

 kde-apps/kimagemapeditor/kimagemapeditor-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/kimagemapeditor/kimagemapeditor-.ebuild 
b/kde-apps/kimagemapeditor/kimagemapeditor-.ebuild
index d5cd563af8..7c49c60a9c 100644
--- a/kde-apps/kimagemapeditor/kimagemapeditor-.ebuild
+++ b/kde-apps/kimagemapeditor/kimagemapeditor-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,10 +17,10 @@ DEPEND="
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep kguiaddons)
$(add_frameworks_dep khtml)
$(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kparts)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)



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

2018-11-16 Thread Andreas Sturmlechner
commit: 8f2842949970b4d4f614d29960cba8a9205cfa5f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 16 21:55:42 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 16 21:55:42 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8f284294

kde-apps/kdepim-runtime: Drop likely obsolete oxygen-icons RDEPEND

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

 kde-apps/kdepim-runtime/kdepim-runtime-18.12.49..ebuild | 1 -
 kde-apps/kdepim-runtime/kdepim-runtime-.ebuild  | 1 -
 2 files changed, 2 deletions(-)

diff --git a/kde-apps/kdepim-runtime/kdepim-runtime-18.12.49..ebuild 
b/kde-apps/kdepim-runtime/kdepim-runtime-18.12.49..ebuild
index 440c589d90..a098bb9c0e 100644
--- a/kde-apps/kdepim-runtime/kdepim-runtime-18.12.49..ebuild
+++ b/kde-apps/kdepim-runtime/kdepim-runtime-18.12.49..ebuild
@@ -71,7 +71,6 @@ DEPEND="${COMMON_DEPEND}
 RDEPEND="${COMMON_DEPEND}
!kde-apps/kdepim-l10n
!kde-misc/akonadi-ews
-   $(add_frameworks_dep oxygen-icons)
 "
 
 RESTRICT+=" test"

diff --git a/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild 
b/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild
index 440c589d90..a098bb9c0e 100644
--- a/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild
+++ b/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild
@@ -71,7 +71,6 @@ DEPEND="${COMMON_DEPEND}
 RDEPEND="${COMMON_DEPEND}
!kde-apps/kdepim-l10n
!kde-misc/akonadi-ews
-   $(add_frameworks_dep oxygen-icons)
 "
 
 RESTRICT+=" test"



[gentoo-commits] proj/kde:master commit in: kde-apps/kdepim-runtime/, kde-apps/kdepim-runtime/files/

2018-11-16 Thread Andreas Sturmlechner
commit: 5160336c5b12b0550572f908dcf08a195ee70201
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Nov 16 21:52:04 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Nov 16 21:52:04 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5160336c

kde-apps/kdepim-runtime: Add back kdelibs4support DEPEND, add USE oauth

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

 ...kdepim-runtime-18.11.80-nokdelibs4support.patch | 55 --
 .../kdepim-runtime-18.12.49..ebuild| 12 -
 kde-apps/kdepim-runtime/kdepim-runtime-.ebuild | 12 -
 kde-apps/kdepim-runtime/metadata.xml   |  3 ++
 4 files changed, 23 insertions(+), 59 deletions(-)

diff --git 
a/kde-apps/kdepim-runtime/files/kdepim-runtime-18.11.80-nokdelibs4support.patch 
b/kde-apps/kdepim-runtime/files/kdepim-runtime-18.11.80-nokdelibs4support.patch
deleted file mode 100644
index d1a916cb1d..00
--- 
a/kde-apps/kdepim-runtime/files/kdepim-runtime-18.11.80-nokdelibs4support.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-From 952b572f381f965edbb0b339f7c04a4054aa262e Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Tue, 13 Nov 2018 19:23:21 +0100
-Subject: [PATCH] Move required KF5KDELibs4Support dependency to conditional
- kolab resource
-
-Fix definitions required for build when not provided by KF5KDELibs4Support.
-
-BUG: 400934

- CMakeLists.txt   | 7 +++
- resources/CMakeLists.txt | 1 +
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 9c567ab0e..f16bc117a 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -126,7 +126,6 @@ find_package(KF5DocTools ${KF5_VERSION} CONFIG REQUIRED) # 
pop3
- find_package(KF5Holidays ${KF5_VERSION} CONFIG REQUIRED)
- find_package(KF5DBusAddons ${KF5_VERSION} CONFIG REQUIRED)
- find_package(KF5IconThemes ${KF5_VERSION} CONFIG REQUIRED)
--find_package(KF5KDELibs4Support ${KF5_VERSION} CONFIG REQUIRED)
- 
- # KdepimLibs package
- find_package(KF5Akonadi ${AKONADI_VERSION} CONFIG REQUIRED)
-@@ -149,10 +148,10 @@ find_package(KPimGAPI ${KGAPI_LIB_VERSION} CONFIG 
REQUIRED)
- 
- option(KDEPIM_RUN_ISOLATED_TESTS "Run the isolated tests." FALSE)
- 
--
- #add_definitions( -DQT_DISABLE_DEPRECATED_BEFORE=0x06 )
--
--
-+# QUrl
-+add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0)
-+remove_definitions(-DQT_NO_CAST_FROM_ASCII)
- 
- add_subdirectory(resources)
- add_subdirectory(agents)
-diff --git a/resources/CMakeLists.txt b/resources/CMakeLists.txt
-index 99f7dbf00..d2534cd92 100644
 a/resources/CMakeLists.txt
-+++ b/resources/CMakeLists.txt
-@@ -43,6 +43,7 @@ add_subdirectory( dav )
- add_subdirectory( ical )
- add_subdirectory( imap )
- if (Libkolabxml_FOUND)
-+find_package(KF5KDELibs4Support ${KF5_VERSION} CONFIG REQUIRED)
- add_subdirectory( kolab )
- endif()
- add_subdirectory( facebook )
--- 
-2.19.1
-

diff --git a/kde-apps/kdepim-runtime/kdepim-runtime-18.12.49..ebuild 
b/kde-apps/kdepim-runtime/kdepim-runtime-18.12.49..ebuild
index 2df05fd0fe..440c589d90 100644
--- a/kde-apps/kdepim-runtime/kdepim-runtime-18.12.49..ebuild
+++ b/kde-apps/kdepim-runtime/kdepim-runtime-18.12.49..ebuild
@@ -11,7 +11,7 @@ inherit kde5
 DESCRIPTION="Runtime plugin collection to extend the functionality of KDE PIM"
 LICENSE="GPL-2+ LGPL-2.1+"
 KEYWORDS=""
-IUSE=""
+IUSE="+oauth"
 
 # TODO kolab
 COMMON_DEPEND="
@@ -21,6 +21,7 @@ COMMON_DEPEND="
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep kholidays)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
@@ -60,6 +61,7 @@ COMMON_DEPEND="
$(add_qt_dep qtxml)
dev-libs/cyrus-sasl:2
dev-libs/libical:=
+   oauth? ( $(add_qt_dep qtnetworkauth) )
 "
 DEPEND="${COMMON_DEPEND}
$(add_qt_dep qtxmlpatterns)
@@ -74,4 +76,10 @@ RDEPEND="${COMMON_DEPEND}
 
 RESTRICT+=" test"
 
-PATCHES=( "${FILESDIR}/${PN}-18.11.80-nokdelibs4support.patch" )
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package oauth Qt5NetworkAuth)
+   )
+
+   kde5_src_configure
+}

diff --git a/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild 
b/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild
index 2df05fd0fe..440c589d90 100644
--- a/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild
+++ b/kde-apps/kdepim-runtime/kdepim-runtime-.ebuild
@@ -11,7 +11,7 @@ inherit kde5
 DESCRIPTION="Runtime plugin collection to extend the functionality of KDE PIM"
 LICENSE="GPL-2+ LGPL-2.1+"
 KEYWORDS=""
-IUSE=""
+IUSE="+oauth"
 
 # TODO kolab
 COMMON_DEPEND="
@@ -21,6 +21,7 @@ COMMON_DEPEND="
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
+   

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

2018-11-16 Thread Matt Turner
commit: 57b176c43bcebd73bd41786667d3f81894591ffe
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Nov 16 21:11:53 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Nov 16 21:12:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57b176c4

media-libs/mesa: Make python_check_deps() unconditional

mako is unconditionally required. Noticed by Arfrever.

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

 media-libs/mesa/mesa-18.3.0_rc3.ebuild | 4 +---
 media-libs/mesa/mesa-.ebuild   | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/media-libs/mesa/mesa-18.3.0_rc3.ebuild 
b/media-libs/mesa/mesa-18.3.0_rc3.ebuild
index 2cbc171b7a7..c6579285709 100644
--- a/media-libs/mesa/mesa-18.3.0_rc3.ebuild
+++ b/media-libs/mesa/mesa-18.3.0_rc3.ebuild
@@ -301,9 +301,7 @@ pkg_pretend() {
 }
 
 python_check_deps() {
-   if use test; then
-   has_version ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]"
-   fi
+   has_version ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]"
 }
 
 pkg_setup() {

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index ab18ab72df4..bbc496e7156 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -301,9 +301,7 @@ pkg_pretend() {
 }
 
 python_check_deps() {
-   if use test; then
-   has_version ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]"
-   fi
+   has_version ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]"
 }
 
 pkg_setup() {



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

2018-11-16 Thread James Le Cuirot
commit: 2d0fa0fef69f27a90083c0801d2b5cecb86a7e5d
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Nov 16 21:00:07 2018 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Nov 16 21:00:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0fa0fe

media-video/makemkv: Add missing ccextractor dependency with symlink

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

 .../makemkv/{makemkv-1.14.1.ebuild => makemkv-1.14.1-r1.ebuild}   | 4 
 1 file changed, 4 insertions(+)

diff --git a/media-video/makemkv/makemkv-1.14.1.ebuild 
b/media-video/makemkv/makemkv-1.14.1-r1.ebuild
similarity index 95%
rename from media-video/makemkv/makemkv-1.14.1.ebuild
rename to media-video/makemkv/makemkv-1.14.1-r1.ebuild
index e5d644a114a..72c2f91d17c 100644
--- a/media-video/makemkv/makemkv-1.14.1.ebuild
+++ b/media-video/makemkv/makemkv-1.14.1-r1.ebuild
@@ -35,6 +35,7 @@ DEPEND="
libav? ( >=media-video/libav-0.8.9:0= )
 "
 RDEPEND="${DEPEND}
+   media-video/ccextractor
net-misc/wget"
 
 CONFIG_CHECK="~CHR_DEV_SG"
@@ -72,6 +73,9 @@ src_install() {
# install profiles and locales
insinto /usr/share/MakeMKV
doins src/share/*
+
+   # add symlink rather than relying on MMCCEXTRACTOR env var
+   dosym ccextractor /usr/bin/mmccextr
 }
 
 pkg_postinst() {



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

2018-11-16 Thread Georgy Yakovlev
commit: c3446a0be6be8a4770728890ad4a079fab9c092e
Author: Ralph Seichter  seichter  de>
AuthorDate: Sat Nov 10 15:14:21 2018 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Nov 16 20:49:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3446a0b

net-misc/httpie: upstream release 1.0.2

Upstream release 1.0.2. First HTTPie ebuild to support tests. Note that
support for Python 3.7 had to be removed because necessary test packages
are not yet available.

Closes: https://github.com/gentoo/gentoo/pull/10389

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Ralph Seichter  seichter.de>
Signed-off-by: Georgy Yakovlev  gentoo.org>

 net-misc/httpie/Manifest|  1 +
 net-misc/httpie/httpie-1.0.2.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/net-misc/httpie/Manifest b/net-misc/httpie/Manifest
index 8f86610e538..c8e1dfbb471 100644
--- a/net-misc/httpie/Manifest
+++ b/net-misc/httpie/Manifest
@@ -3,3 +3,4 @@ DIST httpie-0.9.3.tar.gz 73693 BLAKE2B 
f188a7fe5f63b39022d2a67e8f9dc2582ce8e8d48
 DIST httpie-0.9.4.tar.gz 79889 BLAKE2B 
13053cb3389a03ecbd90caba85801772cba9f09a03f759d526256fc0195a31824408a02b004d3af50a1fbcaca7c02128b438ce341464825a08e4dbd5177ddf99
 SHA512 
eea4e0fce334d12f9438d89f87d119bc569f8042d95c87f6898b9110030674f49361bf8e119d815330aa117479557766d614510d81c42c9c3a6803c769f38b26
 DIST httpie-0.9.9.tar.gz 85006 BLAKE2B 
c5412348b3add127a5d5dfc04fdc13a47f82ec65634eedefb55a0cf1ce182a49f81a3a68c0cbb5e8c90b53efb165c89b7444d23328e545bdbf92d69d1de9c921
 SHA512 
e9adb1ecf9a25b57c634f35199bf1f8fbe4136179c0ba0d6032a41ae786da9344f54436f91d89e624c154bdca325f94c637364a934fc2d5742b83056434f7e4c
 DIST httpie-1.0.0.tar.gz 268982 BLAKE2B 
36ae23876c995f450ac4d814a56a79db7aee175f3b6b060bf08049cd2ea5ec5000c91bf49a12eae8a2dff2c91e5d5200d3febc4cdd50d0488db35eb96777ed14
 SHA512 
9a68746636e367d1131069787f4a4a199b6434b828fe58fecef70e810c1d63c662c790fc45fd955a390113920a29d0116cf29d1167d638debe6b9419a4ae2d48
+DIST httpie-1.0.2.tar.gz 765210 BLAKE2B 
6eb6975aa8f9d2c27762ead5d49db25ba26ba82e21d696c3e5bfa19710ef2a7efbce9d74cd39a22282018ca4f9573c92d99b465c470adf5f04bed75f0416c693
 SHA512 
2b57164f4b20ef2033d527a3dfb9191b68fa95f419cde2c7e52ec47cf74540d0a2356aeee8669d4b43ab6feca80840be6ad6a8481930ddf3acf9ac3ef0b2c569

diff --git a/net-misc/httpie/httpie-1.0.2.ebuild 
b/net-misc/httpie/httpie-1.0.2.ebuild
new file mode 100644
index 000..af224843dd8
--- /dev/null
+++ b/net-misc/httpie/httpie-1.0.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_REQ_USE="ssl(+)"
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Modern command line HTTP client"
+HOMEPAGE="https://httpie.org/ https://pypi.org/project/httpie/;
+SRC_URI="https://github.com/jakubroztocil/httpie/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.19.1[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+python_test() {
+   pytest -vv || die "Tests failed with ${EPYTHON}"
+}
+
+python_install_all() {
+   newbashcomp extras/httpie-completion.bash http
+   insinto /usr/share/fish/vendor_completions.d
+   newins extras/httpie-completion.fish http.fish
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: media-fonts/kanjistrokeorders/

2018-11-16 Thread Mike Gilbert
commit: ba3929b6bdba404b563357f8ba93129d839b76d8
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Fri Nov 16 19:36:40 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Nov 16 20:24:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba3929b6

media-fonts/kanjistrokeorders: Version bump (4.002).

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 media-fonts/kanjistrokeorders/Manifest |  1 +
 .../kanjistrokeorders-4.002.ebuild | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/media-fonts/kanjistrokeorders/Manifest 
b/media-fonts/kanjistrokeorders/Manifest
index 907864200a2..0a980e1f474 100644
--- a/media-fonts/kanjistrokeorders/Manifest
+++ b/media-fonts/kanjistrokeorders/Manifest
@@ -1 +1,2 @@
 DIST KanjiStrokeOrders_v2.016.zip 8982113 BLAKE2B 
940d0ab1c7a0b045a88bec454b3f4dda4cb61d096d0e786884f2e3ea8aa7a21942604585173eded13e5618ae0051d01c975a0b9b45deeae7abff8983c03852a1
 SHA512 
8551864915f3d5b542df318a1fe1d8474304ec8adb61fd414d4bff132c69a5a875eae0bdccce90819da1f3c68192c589207bf9c997a81896ddd6916d79f363a0
+DIST KanjiStrokeOrders_v4.002.zip 9453962 BLAKE2B 
c340e53f4fa8fd56aa267cd5b9b1d9ebb15adcbe814c9ea00b9adacddbfee70e4925c7fa6a8939d16d0935e9c0067d69ba4dcf9ce9af346c2b457c001631b905
 SHA512 
49b5f5dbf70e900e547d5d0fb2fb51d2e8dc73e6dae3ee46e197ef5e2187c445fc39ca69cc69b5e7612b600e065cb17e760c3f48b6b7dde8f6abb3382a6d

diff --git a/media-fonts/kanjistrokeorders/kanjistrokeorders-4.002.ebuild 
b/media-fonts/kanjistrokeorders/kanjistrokeorders-4.002.ebuild
new file mode 100644
index 000..774eb4e49f3
--- /dev/null
+++ b/media-fonts/kanjistrokeorders/kanjistrokeorders-4.002.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2009-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit font
+
+MY_P="KanjiStrokeOrders_v${PV}"
+
+DESCRIPTION="Font for viewing stroke order diagrams for kanji, kana and other 
characters"
+HOMEPAGE="https://sites.google.com/site/nihilistorguk/;
+SRC_URI="https://sites.google.com/site/nihilistorguk/${MY_P}.zip;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+RESTRICT="binchecks"
+
+DEPEND="app-arch/unzip"
+RDEPEND=""
+
+S="${WORKDIR}"
+
+FONT_S="${S}"
+FONT_SUFFIX="ttf"
+DOCS="readme_en_v${PV}.txt"



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

2018-11-16 Thread Mike Gilbert
commit: 98aa2181b4af36fb55bd8ebaae23971e6ea4d38a
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Sat Nov 10 22:49:58 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Nov 16 20:24:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98aa2181

dev-libs/cyrus-sasl: dev-libs/cyrus-sasl: Fix detection of PostgreSQL library.

Fixes: https://bugs.gentoo.org/538042
Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 .../{cyrus-sasl-2.1.26-r11.ebuild => cyrus-sasl-2.1.26-r12.ebuild}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r11.ebuild 
b/dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r12.ebuild
similarity index 98%
rename from dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r11.ebuild
rename to dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r12.ebuild
index f7351ba..fab53dab97e 100644
--- a/dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r11.ebuild
+++ b/dev-libs/cyrus-sasl/cyrus-sasl-2.1.26-r12.ebuild
@@ -26,7 +26,7 @@ DEPEND="
openldap? ( >=net-nds/openldap-2.4.38-r1[${MULTILIB_USEDEP}] )
mysql? ( virtual/mysql )
pam? ( >=virtual/pam-0-r1[${MULTILIB_USEDEP}] )
-   postgres? ( dev-db/postgresql:= )
+   postgres? ( dev-db/postgresql:* )
sqlite? ( >=dev-db/sqlite-3.8.2:3[${MULTILIB_USEDEP}] )
ssl? (
!libressl? ( 
>=dev-libs/openssl-1.0.1h-r2:0=[${MULTILIB_USEDEP}] )
@@ -127,7 +127,7 @@ multilib_src_configure() {
$(multilib_native_use_enable java)
$(multilib_native_use_with java javahome ${JAVA_HOME})
$(multilib_native_use_with mysql mysql "${EPREFIX}"/usr)
-   $(multilib_native_use_with postgres pgsql)
+   $(multilib_native_use_with postgres pgsql 
"${EPREFIX}"/usr/$(get_libdir)/postgresql)
$(use_with sqlite sqlite3 "${EPREFIX}"/usr/$(get_libdir))
$(use_enable srp)
$(use_enable static-libs static)



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

2018-11-16 Thread Mike Gilbert
commit: 509172082535950a113746453f4af96b7e71d9d9
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Fri Nov 16 19:24:27 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Nov 16 20:24:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50917208

dev-db/sqlite: Version bump (3.25.3).

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 dev-db/sqlite/Manifest |   3 +
 dev-db/sqlite/sqlite-3.25.3.ebuild | 320 +
 2 files changed, 323 insertions(+)

diff --git a/dev-db/sqlite/Manifest b/dev-db/sqlite/Manifest
index d61f68c44ac..0c139aa5e0e 100644
--- a/dev-db/sqlite/Manifest
+++ b/dev-db/sqlite/Manifest
@@ -1,9 +1,12 @@
 DIST sqlite-autoconf-3230100.tar.gz 2675362 BLAKE2B 
2dd075f0dc05425563a8e679bb463724296294b5845746f06b51a24c9601be203ee0f2213f43eaca0757fcbb54b777cee746d873c98f377a0b010d8066d7fcb5
 SHA512 
52cae7ed0678b763d40373ae260672b906861379428529a58a017cbc82419a6b109e0b2ac7ff5532e6d941693cc4ab68e6563f424b92b3b27c8916859a6e4826
 DIST sqlite-autoconf-324.tar.gz 2699252 BLAKE2B 
c8beb3b90bdd06f76cafeba859cbf91cf4d0cb313fc9202d210ccbad5fca7f9a062ede63387e814d664f0ae38bcfa48db222f466dbcd429fecfb53cfdac155c4
 SHA512 
eaec866de26003ec36559aab15dd18dc0e6029453002a4eec5e176bb35a712b8b06c235436e6c1a226b67c7eb90d7a26c2b3b3d9a5e6e92a5af485236b77c878
 DIST sqlite-autoconf-3250200.tar.gz 2763876 BLAKE2B 
3d97cc60edf8f91855215bd59260362665c8ec7699510f2e07c7ba57e10c400dcc99bb392e216f798bef1ffa7120b48ee62ce144a871741ef57b3aefeab875d6
 SHA512 
5ef9a6dfbb0822257af1a3a379785a95ab02edecbbb53b57074ddd0b8dc294fc07cbb9a8a7acc4e1640fb1743525ed6331fecebbddce01bc017330b20e127ad9
+DIST sqlite-autoconf-3250300.tar.gz 2764429 BLAKE2B 
6a79a8785c1e84002c031a86c6563e937a45d6ef4aae1b941d42c06cb8630210c33583f25e41f3f90b181ce47da650f81845ad88cafbf9c764164cf8b5d92e81
 SHA512 
5bc501d15367e097f4070185974b0c3a8246c06b205fb2258ed18870ff3fbf120ac5e0ba031a6744af89f7659206e28e7de2f0367bdb190b8412e453b43de4ba
 DIST sqlite-doc-3230100.zip 8882546 BLAKE2B 
1e80647e3789b9130a93e881933fb1260794d9ccf359969a16bdeb0df5a51787eaf8404641c4b760bedd45063d46f8874fd74a4da1fef0234f3d8e92db754d76
 SHA512 
d3a42621480a928446c5f71d0f2ee68e245b071971da38438f9070bd5bcbe1930ea5bd20e06c68543df75badd2e4565abc94420df50b7152c9cd129587471471
 DIST sqlite-doc-324.zip 9030826 BLAKE2B 
e3dd0ce782e19fa01c881e0b5453723419ef1cf95cbe751d759a264bbe288a5c23a2b6514ed459b99b11637349c02def68fed7df8625bfc161307e44564c
 SHA512 
31e9046cea569d7ad1b3af176e1bb18cd59474afb6849871ead6e7c9c096f046162fb313a38684a8c944fad9f689c4c3c692be1d7dc6a8ef5a6685bbc7dfdab6
 DIST sqlite-doc-3250200.zip 9229732 BLAKE2B 
9bc4499c2934d15428dd30e0522362a2c2e703061c293f1b657f01d3945612760be3b4f145ddf76d9cf87953fae26884646887e53c0c55683ce42bc239dcf952
 SHA512 
a0b764ca0eea0e9719d46b6e1f92db78578457c8331976d4712c56cd10fc062fd73629686a0e45dfdeb505fbfbe0c53652a5e64507702ff4e12b62a2fc8d8211
+DIST sqlite-doc-3250300.zip 9265285 BLAKE2B 
0722f00d849b18dabf82d317eb0deeb5567534a9cb55e189f28b18e7a26b863190911a02a26e21cf39b3106e7e1a872c445a3d8b53876a16d245e77affb6abc4
 SHA512 
a57cefbb2338a87721fb34f7a0d19129a58fbce026f80719af7dbbeb7512c91ab59e07719d860cc1cf742807ab7b0b5f92cff3bf52f4dbbad8c6ca34ad0a68ac
 DIST sqlite-src-3230100.zip 10849436 BLAKE2B 
6bed0a45c83ddb51d665835d174f623b30b1c3b81562fdea2317b58d876a0852136fe4f8a3ebc7679676f366e19c84d0ad2f54d3d8c73712145099975f80cf1a
 SHA512 
69a87b76860c3b172d9e68b0fc0b8c157b606375e2b7d793ce4bd4b898ef737cd721189bc6a3342c749e224e60fa96203d449668c49dff2ebdc682b49630a59b
 DIST sqlite-src-324.zip 10980065 BLAKE2B 
201a59cb34271e5ac79e96e4e2ea64f8b61aa99c44eedf61c0a21752ad4376caaf7980a6923dca66266b1a315d9867871d0d172c17907b4147c15431aa212a70
 SHA512 
812c2df7179abb1e445b5b3e161c940b120c53366a7b2c1f0bfc3599cd9921e5543ba39ca3f297eeaefec318f10c15f630f00f9cf04133c7cd419a04f3bbdd0e
 DIST sqlite-src-3250200.zip 11381811 BLAKE2B 
6183436f66c862c32d1dfd59ea4ccb5eaf3dd516ffcf9d7edf786e8fbf56eff3cb84d08e291b2e86fae25e537bed452aed693bdb0f0d6bb6581da86641013557
 SHA512 
7354af2d45c574ba867fab8aabc6ff903279f028aebed50c71019066df78f61a0b941564c572c87b0f3ed3e5783bf325a690a9957d775228fbbb293dd9a5ad37
+DIST sqlite-src-3250300.zip 11384253 BLAKE2B 
dbc1d989b1f7ae26e34d629ae7926cfebacc0e3b9e07abb98ac6e6d2d801f111624d5b3f5a1d486580559ff0b42140bb798aa862df60946efa77d8b26c47fbd0
 SHA512 
7d6a38aea5626f7a32960fcdd109c647dd24a22ecf0772f01ffdba389f70fdfe6455f69733b22c220d4114a7d61d3d10097c23859d303e02d126988a1f663b65

diff --git a/dev-db/sqlite/sqlite-3.25.3.ebuild 
b/dev-db/sqlite/sqlite-3.25.3.ebuild
new file mode 100644
index 000..87da0102ad5
--- /dev/null
+++ b/dev-db/sqlite/sqlite-3.25.3.ebuild
@@ -0,0 +1,320 @@
+# Copyright 1999-2018 Arfrever Frehtes Taifersar Arahesis and others
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit autotools flag-o-matic 

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

2018-11-16 Thread Mike Gilbert
commit: 8c6f75ea91d43869be4fd3d408b943537ba2f0d8
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Fri Nov 16 19:57:47 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Nov 16 20:24:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c6f75ea

net-irc/kvirc: Stabilize 5.0_pre20181013192652 on amd64/x86.

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 net-irc/kvirc/kvirc-5.0_pre20181013192652.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/kvirc/kvirc-5.0_pre20181013192652.ebuild 
b/net-irc/kvirc/kvirc-5.0_pre20181013192652.ebuild
index a2c478a772c..cbed9863998 100644
--- a/net-irc/kvirc/kvirc-5.0_pre20181013192652.ebuild
+++ b/net-irc/kvirc/kvirc-5.0_pre20181013192652.ebuild
@@ -30,7 +30,7 @@ fi
 
 LICENSE="kvirc"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="audiofile +dbus dcc_video debug doc gsm kde +nls oss +perl +phonon 
profile +python spell +ssl theora webkit"
 REQUIRED_USE="audiofile? ( oss ) python? ( ${PYTHON_REQUIRED_USE} )"
 



[gentoo-commits] repo/gentoo:master commit in: app-i18n/libpinyin/

2018-11-16 Thread Mike Gilbert
commit: 5f7fa0d0faf6dab99170a63cb9c281b5281a1b4f
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Fri Nov 16 19:45:52 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Nov 16 20:24:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7fa0d0

app-i18n/libpinyin: Stabilize 2.2.1 on amd64/x86.

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 app-i18n/libpinyin/libpinyin-2.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/libpinyin/libpinyin-2.2.1.ebuild 
b/app-i18n/libpinyin/libpinyin-2.2.1.ebuild
index df27b515439..8591f5303c1 100644
--- a/app-i18n/libpinyin/libpinyin-2.2.1.ebuild
+++ b/app-i18n/libpinyin/libpinyin-2.2.1.ebuild
@@ -24,7 +24,7 @@ SRC_URI+=" 
mirror://sourceforge/${PN}/models/model${LIBPINYIN_MODEL_VERSION}.tex
 
 LICENSE="GPL-3+"
 SLOT="0/13"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86"
 IUSE=""
 
 BDEPEND="virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/speech-dispatcher/

2018-11-16 Thread Mike Gilbert
commit: 99b45c15a8fb13ce4bf1b0f606b1ec9071c57e4d
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Mon Nov 12 08:37:55 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Nov 16 20:24:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99b45c15

app-accessibility/speech-dispatcher: Fix dependency on dev-python/pyxdg.

Fixes: https://bugs.gentoo.org/670984
Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 app-accessibility/speech-dispatcher/speech-dispatcher-0.8.1.ebuild | 6 +++---
 app-accessibility/speech-dispatcher/speech-dispatcher-0.8.7.ebuild | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.1.ebuild 
b/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.1.ebuild
index 8049784a56c..120aa60f8b4 100644
--- a/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.1.ebuild
+++ b/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -32,8 +32,8 @@ COMMON_DEPEND="python? ( ${PYTHON_DEPS} )
 DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.40.0
virtual/pkgconfig"
-   RDEPEND="${COMMON_DEPEND}
-   dev-python/pyxdg"
+RDEPEND="${COMMON_DEPEND}
+   python? ( dev-python/pyxdg[${PYTHON_USEDEP}] )"
 
 src_configure() {
local myeconfargs=(

diff --git a/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.7.ebuild 
b/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.7.ebuild
index 7c27ba87a9d..8286f20c051 100644
--- a/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.7.ebuild
+++ b/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -33,7 +33,7 @@ DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.40.0
virtual/pkgconfig"
 RDEPEND="${COMMON_DEPEND}
-   dev-python/pyxdg"
+   python? ( dev-python/pyxdg[${PYTHON_USEDEP}] )"
 
 src_configure() {
# bug 573732



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

2018-11-16 Thread Mike Gilbert
commit: bf23f62e9216a13de246bda83914c648ee031409
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Fri Nov 16 19:52:44 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Nov 16 20:24:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf23f62e

dev-libs/oniguruma: Stabilize 6.9.0 on amd64/x86.

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

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

diff --git a/dev-libs/oniguruma/oniguruma-6.9.0.ebuild 
b/dev-libs/oniguruma/oniguruma-6.9.0.ebuild
index c37d24a6610..74b12d782ce 100644
--- a/dev-libs/oniguruma/oniguruma-6.9.0.ebuild
+++ b/dev-libs/oniguruma/oniguruma-6.9.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/kkos/${PN}/releases/download/v${PV}/${MY_P}.tar.gz;
 
 LICENSE="BSD-2"
 SLOT="0/5"
-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 ~x86-solaris"
+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 ~x86-solaris"
 IUSE="crnl-as-line-terminator static-libs"
 
 S="${WORKDIR}/${MY_P}"



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

2018-11-16 Thread Sergei Trofimovich
commit: 3df71af73a3ac448d4c4d897a623612931bd2f11
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Nov 16 15:46:12 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 16 19:08:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3df71af7

dev-libs/ivykis: stable 0.42.3-r1 for sparc, bug #670974

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

 dev-libs/ivykis/ivykis-0.42.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild 
b/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild
index 2bf8fc56e50..6b83df596c1 100644
--- a/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild
+++ b/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/buytenh/ivykis/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
 IUSE="static-libs"
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-el/

2018-11-16 Thread Sergei Trofimovich
commit: 3a0b59abf27743f5e65990a29478ba81233836b0
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Nov 16 15:56:43 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 16 19:08:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a0b59ab

app-dicts/myspell-el: stable 0.9 for sparc, bug #665044

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

 app-dicts/myspell-el/myspell-el-0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/myspell-el/myspell-el-0.9.ebuild 
b/app-dicts/myspell-el/myspell-el-0.9.ebuild
index 62286feda3d..35d827d71f0 100644
--- a/app-dicts/myspell-el/myspell-el-0.9.ebuild
+++ b/app-dicts/myspell-el/myspell-el-0.9.ebuild
@@ -23,5 +23,5 @@ 
SRC_URI="http://elspell.math.upatras.gr/files/ooffice/el_GR-${PV}.zip http://els
 
 LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""



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

2018-11-16 Thread Sergei Trofimovich
commit: 5473b079771324128311e90987a4ebcec5237f90
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Nov 16 15:58:40 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 16 19:08:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5473b079

app-text/hunspell: stable 1.6.2-r1 for sparc, bug #671066

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

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

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



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

2018-11-16 Thread Sergei Trofimovich
commit: 75874fb64cea0ce4d38ce2834f05e8871a5e4284
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Nov 16 15:55:41 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 16 19:08:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75874fb6

dev-libs/libmaxminddb: keyworded 1.3.2 for sparc

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

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

diff --git a/dev-libs/libmaxminddb/libmaxminddb-1.3.2.ebuild 
b/dev-libs/libmaxminddb/libmaxminddb-1.3.2.ebuild
index c67fe174146..e1fb2c68e57 100644
--- a/dev-libs/libmaxminddb/libmaxminddb-1.3.2.ebuild
+++ b/dev-libs/libmaxminddb/libmaxminddb-1.3.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="${HOMEPAGE}/releases/download/${PV}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0/0.0.7"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="static-libs"
 
 DOCS=( Changes.md )



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

2018-11-16 Thread Sergei Trofimovich
commit: d29900e8af55c9e60bdb1422af607d8a2e013c69
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Nov 16 15:59:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 16 19:08:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d29900e8

dev-libs/libbson: keyworded 1.3.6 for sparc, bug #517880

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

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

diff --git a/dev-libs/libbson/libbson-1.3.6.ebuild 
b/dev-libs/libbson/libbson-1.3.6.ebuild
index 89963ad2614..e2a4483d6d6 100644
--- a/dev-libs/libbson/libbson-1.3.6.ebuild
+++ b/dev-libs/libbson/libbson-1.3.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mongodb/${PN}/releases/download/${PV}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
 IUSE="debug examples static-libs"
 
 DOCS=( AUTHORS NEWS README )



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

2018-11-16 Thread Sergei Trofimovich
commit: 9b7f90cfdfa1c808733c92681007085d20b1c325
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Nov 16 15:45:12 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 16 19:08:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b7f90cf

net-libs/serf: stable 1.3.8-r1 for sparc, bug #647786

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

 net-libs/serf/serf-1.3.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/serf/serf-1.3.8-r1.ebuild 
b/net-libs/serf/serf-1.3.8-r1.ebuild
index d3611b033ab..355be74cd6f 100644
--- a/net-libs/serf/serf-1.3.8-r1.ebuild
+++ b/net-libs/serf/serf-1.3.8-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://apache/${PN}/${P}.tar.bz2"
 
 LICENSE="Apache-2.0"
 SLOT="1"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
 IUSE="kerberos static-libs libressl"
 RESTRICT="test"
 



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

2018-11-16 Thread Sergei Trofimovich
commit: 38634f7a27685f214c53e1666adcf29363454d05
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Nov 16 15:54:39 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Nov 16 19:08:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38634f7a

dev-libs/libmaxminddb: keyworded 1.2.1 for sparc

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

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

diff --git a/dev-libs/libmaxminddb/libmaxminddb-1.2.1.ebuild 
b/dev-libs/libmaxminddb/libmaxminddb-1.2.1.ebuild
index e1d2e8ef0f8..5f657caf7b7 100644
--- a/dev-libs/libmaxminddb/libmaxminddb-1.2.1.ebuild
+++ b/dev-libs/libmaxminddb/libmaxminddb-1.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}/releases/download/${PV}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0/0.0.7"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 x86"
+KEYWORDS="alpha amd64 ia64 ppc ppc64 ~sparc x86"
 IUSE="static-libs"
 
 DOCS=( Changes.md )



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

2018-11-16 Thread Mike Gilbert
commit: 291d3907a95e6ae0762ce2e9e27603031ed44710
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Nov 16 19:06:22 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Nov 16 19:07:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=291d3907

sys-apps/systemd: add MULTILIB_USEDEP to virtual/pkgconfig

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

 sys-apps/systemd/systemd-239-r2.ebuild | 2 +-
 sys-apps/systemd/systemd-.ebuild   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-apps/systemd/systemd-239-r2.ebuild 
b/sys-apps/systemd/systemd-239-r2.ebuild
index b6d91862a74..833177e4a2b 100644
--- a/sys-apps/systemd/systemd-239-r2.ebuild
+++ b/sys-apps/systemd/systemd-239-r2.ebuild
@@ -92,7 +92,7 @@ DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.50
>=sys-apps/coreutils-8.16
>=sys-kernel/linux-headers-${MINKV}
-   virtual/pkgconfig
+   virtual/pkgconfig[${MULTILIB_USEDEP}]
gnuefi? ( >=sys-boot/gnu-efi-3.0.2 )
test? ( sys-apps/dbus )
app-text/docbook-xml-dtd:4.2

diff --git a/sys-apps/systemd/systemd-.ebuild 
b/sys-apps/systemd/systemd-.ebuild
index 8743de4cdf5..aede109ac60 100644
--- a/sys-apps/systemd/systemd-.ebuild
+++ b/sys-apps/systemd/systemd-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -92,7 +92,7 @@ DEPEND="${COMMON_DEPEND}
>=dev-util/intltool-0.50
>=sys-apps/coreutils-8.16
>=sys-kernel/linux-headers-${MINKV}
-   virtual/pkgconfig
+   virtual/pkgconfig[${MULTILIB_USEDEP}]
gnuefi? ( >=sys-boot/gnu-efi-3.0.2 )
test? ( sys-apps/dbus )
app-text/docbook-xml-dtd:4.2



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

2018-11-16 Thread Matt Turner
commit: 136a7578f45e2b40334c3f050bda63439fe0704e
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Nov 16 18:53:41 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Nov 16 18:56:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=136a7578

media-libs/mesa: Version bump to 18.3.0_rc3

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

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-18.3.0_rc3.ebuild | 521 +
 2 files changed, 522 insertions(+)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index 877dffd49d8..502ade1ff4b 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -2,3 +2,4 @@ DIST mesa-18.1.9.tar.xz 11146188 BLAKE2B 
753f0fa3780502d56927f9b0e6124b4728cb5aa
 DIST mesa-18.2.4.tar.xz 11377556 BLAKE2B 
b11c33ade744fb976862fecccbcc4c97196a005e40a00ef02bd8d409b66b3aa11f97baee13f2aa92f2d7c5461b2ef44beae3103687dea9ee29e92439a068f08a
 SHA512 
088d43b087f4005752e4db75eaa6897e0fcb6de7b9a1f2d2b2ce3b5557d1dff829022e0092e8b1038ff01182c863ca0f26c97b9adde34bca462d3fa24502bfde
 DIST mesa-18.2.5.tar.xz 11365620 BLAKE2B 
401fbbcb0e56a97122c11b7d47e506fe86795e942ca412abfa0c29010434447d96bc17fa0e7fc43090c94d7907fc0acaed5f7dada164e8906dca43da0b64a932
 SHA512 
dd454c720241dffa61f3380be62479979a43004b2a52293b817bd3ea95f75960edee680e7380a13fae09b67a90dc0393e4a022d543db91b2f142f2468a9661f0
 DIST mesa-18.3.0-rc2.tar.xz 11862200 BLAKE2B 
4776d1dbf9fdab9dffc36ce8cdd5531491251c9d6f8317ec962d0a0556201ecf72a8cbc9ef2870085041e12702bba2a8be011d21ed440eec08fe81b2f96e
 SHA512 
af12adafbeac33f1ee527a0c7f61c24251912b5ee0a9e55d46f0133e6897b0ca91486ae2b3236159e43addef4de474a7b71ec3932083e68b9e94e480ee91c9fa
+DIST mesa-18.3.0-rc3.tar.xz 11862412 BLAKE2B 
b310ebdc2a62bc0ff9796cfafab1252d46eadc17c3e0abad894776c73b4c640eedc6481666a0ad111abd1dfd8f40f2419b6afca03804225a10ff53080d2f582b
 SHA512 
5ddc7ba15c47aeb3b6239147a43ff79435fce7d8a9a14b63f14d6382f9e911899821ad3e07a0c2dc5dbf3735b2fe5ee534d34614fbf1f89029d2de5d95955eeb

diff --git a/media-libs/mesa/mesa-18.3.0_rc3.ebuild 
b/media-libs/mesa/mesa-18.3.0_rc3.ebuild
new file mode 100644
index 000..2cbc171b7a7
--- /dev/null
+++ b/media-libs/mesa/mesa-18.3.0_rc3.ebuild
@@ -0,0 +1,521 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_4 python3_5 python3_6 python3_7 )
+
+inherit llvm meson multilib-minimal pax-utils python-any-r1
+
+OPENGL_DIR="xorg-x11"
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="OpenGL-like graphic library for Linux"
+HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/;
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/mesa.git;
+   EXPERIMENTAL="true"
+   inherit git-r3
+else
+   SRC_URI="https://mesa.freedesktop.org/archive/${MY_P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris 
~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="
+   !test? ( test )
+"
+
+RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
+VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 imx intel nouveau vc4 virgl 
vivante vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS}
+   +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm 
lm_sensors
+   opencl osmesa pax_kernel pic selinux test unwind vaapi valgrind vdpau
+   vulkan wayland xa xvmc"
+
+REQUIRED_USE="
+   d3d9?   ( dri3 || ( video_cards_r300 video_cards_r600 
video_cards_radeonsi video_cards_nouveau video_cards_vmware ) )
+   gles1?  ( egl )
+   gles2?  ( egl )
+   vulkan? ( dri3
+ || ( video_cards_i965 video_cards_radeonsi )
+ video_cards_radeonsi? ( llvm ) )
+   wayland? ( egl gbm )
+   video_cards_freedreno?  ( gallium )
+   video_cards_intel?  ( classic )
+   video_cards_i915?   ( || ( classic gallium ) )
+   video_cards_i965?   ( classic )
+   video_cards_imx?( gallium video_cards_vivante )
+   video_cards_nouveau? ( || ( classic gallium ) )
+   video_cards_radeon? ( || ( classic gallium )
+ gallium? ( x86? ( llvm ) 
amd64? ( llvm ) ) )
+   video_cards_r100?   ( classic )
+   video_cards_r200?   ( classic )
+   video_cards_r300?   ( gallium x86? ( llvm ) amd64? ( llvm ) )
+   video_cards_r600?   ( gallium )
+   video_cards_radeonsi?   ( gallium llvm )
+   video_cards_vc4? ( gallium )
+   video_cards_virgl? ( gallium )
+   video_cards_vivante? ( gallium gbm )
+   video_cards_vmware? ( gallium )
+"
+
+LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.96"
+RDEPEND="
+   !app-eselect/eselect-mesa
+   >=app-eselect/eselect-opengl-1.3.0
+   

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

2018-11-16 Thread Matt Turner
commit: c36e26e11f466ec9ed250c834fbe98936b241c39
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Nov 16 18:51:55 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Nov 16 18:56:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c36e26e1

media-libs/mesa: Provide a python_check_deps()

According to the documentation, this is required to pick the appropriate
version of python if multiple are available.

Closes: https://bugs.gentoo.org/663334
Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 46f8ece8fa1..ab18ab72df4 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -300,6 +300,12 @@ pkg_pretend() {
fi
 }
 
+python_check_deps() {
+   if use test; then
+   has_version ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]"
+   fi
+}
+
 pkg_setup() {
# warning message for bug 459306
if use llvm && has_version sys-devel/llvm[!debug=]; then



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

2018-11-16 Thread Rick Farina
commit: e34020154b6eb199ac418091d4ff96a46aff5d05
Author: Zero_Chaos  gentoo  org>
AuthorDate: Fri Nov 16 18:41:50 2018 +
Commit: Rick Farina  gentoo  org>
CommitDate: Fri Nov 16 18:42:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3402015

net-misc/hblink: initial commit

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

 net-misc/hblink/hblink-.ebuild | 54 ++
 net-misc/hblink/metadata.xml   | 10 +++
 2 files changed, 64 insertions(+)

diff --git a/net-misc/hblink/hblink-.ebuild 
b/net-misc/hblink/hblink-.ebuild
new file mode 100644
index 000..c616379777e
--- /dev/null
+++ b/net-misc/hblink/hblink-.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 )
+inherit git-r3 python-single-r1 systemd
+
+DESCRIPTION="HomeBrew Repeater protocol as used by DMR+, MMDVM and 
Brandmeister"
+HOMEPAGE="https://github.com/n0mjs710/HBlink;
+EGIT_REPO_URI="https://github.com/n0mjs710/HBlink.git;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS=""
+IUSE="systemd"
+
+PDEPEND="dev-python/bitstring["${PYTHON_USEDEP}"]
+   dev-python/bitarray["${PYTHON_USEDEP}"]
+   dev-python/twisted["${PYTHON_USEDEP}"]
+   net-misc/dmr_utils["${PYTHON_USEDEP}"]"
+
+src_prepare() {
+   rm -r retired || die
+   sed -i "s#/opt/HBlink#/usr/share/${PN}#" systemd/*.service
+   default
+}
+
+src_install() {
+   if use systemd; then
+   insinto "$(systemd_get_systemunitdir)"
+   doins systemd/*.service
+   fi
+   rm -r systemd || die
+
+   insinto /etc/hblink
+   newins hblink-SAMPLE.cfg hblink.cfg
+
+   insinto /usr/share/"${PN}"
+   doins -r *
+   python_fix_shebang "${ED}/usr/share/${PN}"
+   ln -s /etc/hblink/hblink.cfg "${ED}"/usr/share/"${PN}"/hblink.cfg
+
+   dodir /usr/bin
+   for i in hb_bridge_all hb_confbridge
+   do
+   cat <<-EOF > "${ED}"/usr/bin/${i}
+   #! /bin/sh
+   cd /usr/share/${PN}
+   python2 ./${i}.py "\$@"
+   EOF
+   fperms +x /usr/bin/${i}
+   done
+}

diff --git a/net-misc/hblink/metadata.xml b/net-misc/hblink/metadata.xml
new file mode 100644
index 000..b4ca965f410
--- /dev/null
+++ b/net-misc/hblink/metadata.xml
@@ -0,0 +1,10 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   Rick Farina
+   zeroch...@gentoo.org
+   
+   
+   
+



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

2018-11-16 Thread Rick Farina
commit: 9c685ea2d0ab1429e17af1d95733f6fac62d8aa0
Author: Zero_Chaos  gentoo  org>
AuthorDate: Fri Nov 16 18:40:21 2018 +
Commit: Rick Farina  gentoo  org>
CommitDate: Fri Nov 16 18:42:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c685ea2

net-misc/dmr_utils: import from pentoo

dep of hblink

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

 net-misc/dmr_utils/dmr_utils-.ebuild | 20 
 net-misc/dmr_utils/metadata.xml  | 10 ++
 2 files changed, 30 insertions(+)

diff --git a/net-misc/dmr_utils/dmr_utils-.ebuild 
b/net-misc/dmr_utils/dmr_utils-.ebuild
new file mode 100644
index 000..dff3e7fd70b
--- /dev/null
+++ b/net-misc/dmr_utils/dmr_utils-.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_6 )
+
+inherit git-r3 distutils-r1
+
+DESCRIPTION="Python utilities for working with DMR"
+HOMEPAGE="https://github.com/n0mjs710/dmr_utils;
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/n0mjs710/dmr_utils.git;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+PDEPEND="dev-python/bitarray["${PYTHON_USEDEP}"]"

diff --git a/net-misc/dmr_utils/metadata.xml b/net-misc/dmr_utils/metadata.xml
new file mode 100644
index 000..b4ca965f410
--- /dev/null
+++ b/net-misc/dmr_utils/metadata.xml
@@ -0,0 +1,10 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   Rick Farina
+   zeroch...@gentoo.org
+   
+   
+   
+



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2018-11-16 Thread Matt Turner
commit: 6b3d0333c7c1a0a69b4538e21880e4ec32731a5c
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri Nov 16 17:49:59 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Nov 16 18:00:29 2018 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=6b3d0333

create-iso.sh: Switch from genisoimage to xorrisofs for Alpha

genisoimage was part of app-cdr/cdrkit which was removed from Gentoo
last year.

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

 targets/support/create-iso.sh | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
index 39c3fe07..14c92f4b 100755
--- a/targets/support/create-iso.sh
+++ b/targets/support/create-iso.sh
@@ -8,8 +8,8 @@ source ${clst_shdir}/support/filesystem-functions.sh
 # Check for our CD ISO creation tools
 case ${clst_hostarch} in
alpha)
-   cdmaker="genisoimage"
-   cdmakerpkg="app-cdr/cdrkit"
+   cdmaker="xorrisofs"
+   cdmakerpkg="dev-libs/libisoburn"
;;
mips)
cdmaker="sgibootcd"
@@ -111,8 +111,8 @@ run_mkisofs() {
 # Here we actually create the ISO images for each architecture
 case ${clst_hostarch} in
alpha)
-   echo ">> genisoimage --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}"
-   genisoimage --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V "${clst_iso_volume_id}" -o "${1}" 
"${clst_target_path}" || die "Cannot make ISO image"
+   echo ">> xorrisofs -as genisofs --alpha-boot=boot/bootlx -R -l 
-J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} 
${clst_target_path}"
+   xorrisofs -as genisofs --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V "${clst_iso_volume_id}" -o "${1}" 
"${clst_target_path}" || die "Cannot make ISO image"
;;
arm)
;;



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2018-11-16 Thread Matt Turner
commit: b2872413c545c73f1b0edb0cb2ed89439a2f3212
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri Nov 16 17:49:59 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Nov 16 17:53:05 2018 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b2872413

create-iso.sh: Switch from genisoimage to xorrisofs for Alpha

genisoimage was part of app-cdr/cdrkit which was removed from Gentoo
last year.

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

 targets/support/create-iso.sh | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
index 39c3fe07..2a53a1da 100755
--- a/targets/support/create-iso.sh
+++ b/targets/support/create-iso.sh
@@ -8,8 +8,8 @@ source ${clst_shdir}/support/filesystem-functions.sh
 # Check for our CD ISO creation tools
 case ${clst_hostarch} in
alpha)
-   cdmaker="genisoimage"
-   cdmakerpkg="app-cdr/cdrkit"
+   cdmaker="xorrisofs"
+   cdmakerpkg="dev-libs/libisoburn"
;;
mips)
cdmaker="sgibootcd"
@@ -111,8 +111,8 @@ run_mkisofs() {
 # Here we actually create the ISO images for each architecture
 case ${clst_hostarch} in
alpha)
-   echo ">> genisoimage --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}"
-   genisoimage --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V "${clst_iso_volume_id}" -o "${1}" 
"${clst_target_path}" || die "Cannot make ISO image"
+   echo ">> xorrisofs -as "genisofs" --alpha-boot=boot/bootlx -R 
-l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} 
${clst_target_path}"
+   xorrisofs -as "genisofs" --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V "${clst_iso_volume_id}" -o "${1}" 
"${clst_target_path}" || die "Cannot make ISO image"
;;
arm)
;;



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2018-11-16 Thread Matt Turner
commit: 56eff26f4e7473d739ace8c04a5a0af09dd9021c
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Nov 16 17:49:59 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Nov 16 17:52:05 2018 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=56eff26f

create-iso.sh: Switch from genisoimage to xorrisofs for Alpha

genisoimage was part of app-cdr/cdrkit which was removed from Gentoo
last year.

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

 targets/support/create-iso.sh | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
index 39c3fe07..2a53a1da 100755
--- a/targets/support/create-iso.sh
+++ b/targets/support/create-iso.sh
@@ -8,8 +8,8 @@ source ${clst_shdir}/support/filesystem-functions.sh
 # Check for our CD ISO creation tools
 case ${clst_hostarch} in
alpha)
-   cdmaker="genisoimage"
-   cdmakerpkg="app-cdr/cdrkit"
+   cdmaker="xorrisofs"
+   cdmakerpkg="dev-libs/libisoburn"
;;
mips)
cdmaker="sgibootcd"
@@ -111,8 +111,8 @@ run_mkisofs() {
 # Here we actually create the ISO images for each architecture
 case ${clst_hostarch} in
alpha)
-   echo ">> genisoimage --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} ${clst_target_path}"
-   genisoimage --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V "${clst_iso_volume_id}" -o "${1}" 
"${clst_target_path}" || die "Cannot make ISO image"
+   echo ">> xorrisofs -as "genisofs" --alpha-boot=boot/bootlx -R 
-l -J ${mkisofs_zisofs_opts} -V \"${clst_iso_volume_id}\" -o ${1} 
${clst_target_path}"
+   xorrisofs -as "genisofs" --alpha-boot=boot/bootlx -R -l -J 
${mkisofs_zisofs_opts} -V "${clst_iso_volume_id}" -o "${1}" 
"${clst_target_path}" || die "Cannot make ISO image"
;;
arm)
;;



[gentoo-commits] proj/gnome:master commit in: gnome-base/gnome-desktop/, gnome-base/gnome-desktop/files/

2018-11-16 Thread Gilles Dartiguelongue
commit: 8b53f1d94092e8fa279539f49222ea3ddd001177
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Fri Nov 16 17:24:22 2018 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Fri Nov 16 17:24:57 2018 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=8b53f1d9

gnome-base/gnome-desktop: load ld.so.conf in sandbox

Closes: https://bugs.gentoo.org/654096
Signed-off-by: Gilles Dartiguelongue  gentoo.org>

 .../files/3.26.2-load-ld-so-cache.patch| 12 
 .../gnome-desktop/gnome-desktop-3.26.2-r1.ebuild   | 64 ++
 2 files changed, 76 insertions(+)

diff --git a/gnome-base/gnome-desktop/files/3.26.2-load-ld-so-cache.patch 
b/gnome-base/gnome-desktop/files/3.26.2-load-ld-so-cache.patch
new file mode 100644
index ..ac81e1c7
--- /dev/null
+++ b/gnome-base/gnome-desktop/files/3.26.2-load-ld-so-cache.patch
@@ -0,0 +1,12 @@
+diff --git a/libgnome-desktop/gnome-desktop-thumbnail-script.c 
b/libgnome-desktop/gnome-desktop-thumbnail-script.c
+index 99d83ac..72f4459 100644
+--- a/libgnome-desktop/gnome-desktop-thumbnail-script.c
 b/libgnome-desktop/gnome-desktop-thumbnail-script.c
+@@ -508,6 +508,7 @@ add_bwrap (GPtrArray   *array,
+   "--ro-bind", "/usr", "/usr",
+   "--ro-bind", "/lib", "/lib",
+   "--ro-bind", "/lib64", "/lib64",
++  "--ro-bind", "/etc/ld.so.cache", "/etc/ld.so.cache",
+   "--proc", "/proc",
+   "--dev", "/dev",
+   "--symlink", "usr/bin", "/bin",

diff --git a/gnome-base/gnome-desktop/gnome-desktop-3.26.2-r1.ebuild 
b/gnome-base/gnome-desktop/gnome-desktop-3.26.2-r1.ebuild
new file mode 100644
index ..93c9caee
--- /dev/null
+++ b/gnome-base/gnome-desktop/gnome-desktop-3.26.2-r1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2 virtualx
+
+DESCRIPTION="Libraries for the gnome desktop that are not part of the UI"
+HOMEPAGE="https://git.gnome.org/browse/gnome-desktop;
+
+LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
+SLOT="3/12" # subslot = libgnome-desktop-3 soname version
+IUSE="debug +introspection seccomp udev"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+
+# cairo[X] needed for gnome-bg
+# automagic dependency on seccomp
+COMMON_DEPEND="
+   app-text/iso-codes
+   >=dev-libs/glib-2.53.0:2[dbus]
+   >=x11-libs/gdk-pixbuf-2.36.5:2[introspection?]
+   >=x11-libs/gtk+-3.3.6:3[X,introspection?]
+   x11-libs/cairo:=[X]
+   x11-libs/libX11
+   x11-misc/xkeyboard-config
+   >=gnome-base/gsettings-desktop-schemas-3.5.91
+   introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
+   seccomp? ( sys-libs/libseccomp )
+   udev? (
+   sys-apps/hwids
+   virtual/libudev:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   !

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

2018-11-16 Thread Gilles Dartiguelongue
commit: 71022330c7696ed94cbb6b5af48f36a56bf3a066
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Tue Nov 13 15:17:34 2018 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Fri Nov 16 17:13:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71022330

sys-apps/bubblewrap: reviewed ebuild

Fix R/DEPEND. Add support for setuid and make it default per
bug #669210. Use release tarballs. Fix bash-completion eclass call.

Closes: https://bugs.gentoo.org/669210
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Gilles Dartiguelongue  gentoo.org>

 sys-apps/bubblewrap/Manifest   |  1 +
 sys-apps/bubblewrap/bubblewrap-0.3.1-r1.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/sys-apps/bubblewrap/Manifest b/sys-apps/bubblewrap/Manifest
index dba0bcb214e..9abc9af835b 100644
--- a/sys-apps/bubblewrap/Manifest
+++ b/sys-apps/bubblewrap/Manifest
@@ -1 +1,2 @@
 DIST bubblewrap-0.3.1.tar.gz 62768 BLAKE2B 
a8c29102f9b69bfbd6b6aebb9aa0878bd1e31b52a6cb6374b8341c1410526872d4063ff0524ab4f98d7cac7358dad3190144d12bb0b11cf26eeed2730c4ec475
 SHA512 
fbc44976f53fdf8913b94c57d1f26a3b87c773e86a289e58fd3d7b1c4ea7f33c862f1a38a4f791315358990928768a68334f0a171302c18a16c7e2e9f1a146dd
+DIST bubblewrap-0.3.1.tar.xz 209924 BLAKE2B 
bacc4080106cd9876bf0e1ad866a7397d7d232e61a720b52b5a6b9b0d860e625511ed15ac630aa71003fb9fa145ffa9d08ae2e6ba6d1411fd75e7d9568312717
 SHA512 
74e36caa56540a956158445f5f38c7ac5f7ff3c733ecaf85893de4607900e1fe4050db86a4435cbe18d722e90c5b39c466c555ea8ea8d4944da6207ef1011d67

diff --git a/sys-apps/bubblewrap/bubblewrap-0.3.1-r1.ebuild 
b/sys-apps/bubblewrap/bubblewrap-0.3.1-r1.ebuild
new file mode 100644
index 000..39a0a3e1e08
--- /dev/null
+++ b/sys-apps/bubblewrap/bubblewrap-0.3.1-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit bash-completion-r1 linux-info
+
+DESCRIPTION="Unprivileged sandboxing tool, namespaces-powered chroot-like 
solution"
+HOMEPAGE="https://github.com/projectatomic/bubblewrap;
+SRC_URI="https://github.com/projectatomic/${PN}/releases/download/v${PV}/${P}.tar.xz;
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="selinux +suid"
+
+RDEPEND="
+   sys-libs/libseccomp
+   sys-libs/libcap
+   selinux? ( >=sys-libs/libselinux-2.1.9 )
+"
+DEPEND="${DEPEND}
+   app-text/docbook-xml-dtd:4.3
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   virtual/pkgconfig
+"
+
+# tests require root priviledge
+RESTRICT="test"
+
+pkg_setup() {
+   if [[ ${MERGE_TYPE} != buildonly ]]; then
+   CONFIG_CHECK="~UTS_NS ~IPC_NS ~USER_NS ~PID_NS ~NET_NS"
+   linux-info_pkg_setup
+   fi
+}
+
+src_configure() {
+   econf \
+   $(use_enable selinux) \
+   "--enable-man" \
+   "--with-bash-completion-dir=$(get_bashcompdir)" \
+   "--with-priv-mode=$(usex suid setuid none)"
+}



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

2018-11-16 Thread Justin Bronder
commit: 01262286aacd734b782a12b65a984998d0396c0f
Author: Justin Bronder  gentoo  org>
AuthorDate: Fri Nov 16 17:00:36 2018 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Fri Nov 16 17:01:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01262286

sys-cluster/openmpi: bump 3.1.3

Package-Manager: Portage-2.3.49, Repoman-2.3.11
Signed-off-by: Justin Bronder  gentoo.org>

 sys-cluster/openmpi/Manifest   | 2 +-
 sys-cluster/openmpi/{openmpi-3.1.2.ebuild => openmpi-3.1.3.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/openmpi/Manifest b/sys-cluster/openmpi/Manifest
index ce183b7842a..2acdddb42f1 100644
--- a/sys-cluster/openmpi/Manifest
+++ b/sys-cluster/openmpi/Manifest
@@ -10,4 +10,4 @@ DIST openmpi-2.0.2.tar.bz2 8311215 BLAKE2B 
8dd0d7b95c396e9a0f05760136bbf62defd35
 DIST openmpi-2.0.4.tar.bz2 8272983 BLAKE2B 
7d0a392fbc8c896cdccefb9bf0ff83fbd8db8a42d17f06cb23ac88ba896e2c75e1b1b7a79559d0ce3c2b881f197f54ce1bd8967c889bafe2b97f95fb6b957501
 SHA512 
2cccb83847d44f6282ec24f7bc12ab51b84dc5ac1a2a919ef0761847ff7cdcb31cfb1f38dca33df7063a98c27a64575a108002716d207cbba3a54773b999e6c5
 DIST openmpi-2.1.5.tar.bz2 8323765 BLAKE2B 
37da1ee31e540507efb466887997946b3b45f376aa6fb60341470fee257473543743b9e5651bf434288e45cdff6a0bfc3a521625a32c4946fdeee62ceafad9b1
 SHA512 
8b256c7019e11829dd1f235b7d98e0d135c8e92046a07dc70337c58498d946078f57434d0330d16c06d0e8c645d6f21fa8235d76da62f558ff01f68f6e69a4f1
 DIST openmpi-3.0.3.tar.bz2 9316109 BLAKE2B 
e67e649917911eff3286c0f3d15e181b30e4ac6061891f6e13c75570368edb943fff55e4d41ffaa4a095b2060c84d24f8c32975758ad4632bae1813accd9f516
 SHA512 
12bbc5add4160e732ac10f302106c4bc2fa61ef2cde955e1fdd4a7aaad44b022d6babdd4bd529f687bb03fc5e5c3804ba6b1869e9609c9725bc291524c8304d7
-DIST openmpi-3.1.2.tar.bz2 9461841 BLAKE2B 
12a92bf8e7624d9e97e83b150af0e37674df7ed25df5bba2981dbf37025200f4d504a873dc0fc1c1a8455d7cdfa88e4fbc49fd5c166e3b629670af4e64f06c1a
 SHA512 
ec8df8e0ac89f5573adfd25707a03a583069012a3a874c939ede71635198045565e5e9ddf0181cea474a1a6baaf8d7ba647e2ed194d1b29a1882c1fc18967b57
+DIST openmpi-3.1.3.tar.bz2 9442937 BLAKE2B 
40067e1694a106d96e5ba41884a6facec9e605b5afba03ab908e4cf124f35b0691f0ab626e5190cffebc9c28d05b11b5c6401a5aa39ac17ec04650ed29e0976e
 SHA512 
700821df676de5f85ce2793298242dcaea73f585f89540e30999792a568f193545a9f9b2bcb3ea22effa3bf14744531c4eb5fc4c84a8d7bbe5e5fdd76ab3a04a

diff --git a/sys-cluster/openmpi/openmpi-3.1.2.ebuild 
b/sys-cluster/openmpi/openmpi-3.1.3.ebuild
similarity index 99%
rename from sys-cluster/openmpi/openmpi-3.1.2.ebuild
rename to sys-cluster/openmpi/openmpi-3.1.3.ebuild
index 4143e080805..8d04c697995 100644
--- a/sys-cluster/openmpi/openmpi-3.1.2.ebuild
+++ b/sys-cluster/openmpi/openmpi-3.1.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6



[gentoo-commits] repo/gentoo:master commit in: app-emulation/virtualbox-guest-additions/

2018-11-16 Thread Lars Wendler
commit: 1dfa32063a6414b21e7cedbf0e4214544059d240
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Nov 16 16:59:53 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Nov 16 16:59:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dfa3206

app-emulation/virtualbox-guest-additions: Fixed Mainfest.

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

 app-emulation/virtualbox-guest-additions/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/virtualbox-guest-additions/Manifest 
b/app-emulation/virtualbox-guest-additions/Manifest
index cef5467df51..8527693bf99 100644
--- a/app-emulation/virtualbox-guest-additions/Manifest
+++ b/app-emulation/virtualbox-guest-additions/Manifest
@@ -4,4 +4,4 @@ DIST VirtualBox-5.2.22.tar.bz2 118757134 BLAKE2B 
be795cdbfb09d3d443f63e190b63898
 DIST VirtualBox-6.0.0_BETA2.tar.bz2 150947619 BLAKE2B 
53ed4cfea4a9e62cb8ba68089e3b6cea04b33950496e8aa945591f0d30bb69bbf02428b6bd6dd67afbc916d612b0135ea10124741c0538b917749f46935cf834
 SHA512 
10f7bd5c7c14d79ed1bf4662fce76d66f4f61bba1a9c8c7dfff57dad2dd6eaf2ae03911fdc994d53769f872079d7a04a1732126fc1aa9907237cbdccefda3348
 DIST virtualbox-5.2.12-patches-01.tar.xz 2616 BLAKE2B 
5731484d185414d83588ee227bbc1eef266451d1a3a710adf1b769cd6404ef1750dba7a60549f2ab9f3fb81ef15809db9ea0190127caefc72d7bc9bb8b741fb0
 SHA512 
712b55392a8e8357e95abb42ea4f8dac3391ecbf9cbecf27c7dbf674c40f42a1eb19d227a1b3adcf621384a9f64a6438d20fb43866c736189097fb5770c5c654
 DIST virtualbox-5.2.16-patches-02.tar.xz 3152 BLAKE2B 
c8d8f3872f544a465c7d1aa07291599307120ac9eabfb299ddd788a11f85ca6c2d84b8e7306ee4ad436270dad0dd39f101ee68a549eac15afd1e3cdc03f23c6c
 SHA512 
85ee8c4045de562d71ab2d761695ea48b6726a6f0c4bcaa2562bb0d147542d3f1a1b5b47cf593a7f22dac1b86f87b59a56bef421dce3e1fa8e5260cd41998450
-DIST virtualbox-6.0.0_beta2-patches-01.tar.xz 2924 BLAKE2B 
fd2dd4bca69adbdcdc3f3035e86b84773c8e884cc36c78ba74047a0c5d971c2a74b47c284a321d144ee9ece058beba7909e978c12f6a22e9568d370075681a13
 SHA512 
d7db90a7975fd452e53219175b8eb21a3b09916bf0b2dba687ff7543cbacf9f24cc35156c0f19d4c3d98f8003e386db2d68e8d953226930bdae82b12cdc3c0e9
+DIST virtualbox-6.0.0_beta2-patches-01.tar.xz 2732 BLAKE2B 
a138e715d99f135f16ca21c92781bf6cd8913f7f766bb598eddcd63e98280e568e646f56bbd0a3714f273457ca90db0b77ec7940ba25028506a22891f1af7b2d
 SHA512 
954e4b40d6e272efe756ee0965adb4110d45f764433a89080fda7ebaebbc20031f86a3e0027dfdaa1c6a7d6379a1af557cea71512504e4b57b5f5adbfc86b56e



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

2018-11-16 Thread Lars Wendler
commit: 836850f704bc33a73b22f305d5de68cc7af74c76
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Nov 16 16:32:12 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Nov 16 16:32:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=836850f7

app-emulation/virtualbox: Fixed USE="opus" configure option.

Bug: https://bugs.gentoo.org/671280
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 app-emulation/virtualbox/Manifest  | 2 +-
 app-emulation/virtualbox/virtualbox-6.0.0_beta2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/virtualbox/Manifest 
b/app-emulation/virtualbox/Manifest
index cef5467df51..8527693bf99 100644
--- a/app-emulation/virtualbox/Manifest
+++ b/app-emulation/virtualbox/Manifest
@@ -4,4 +4,4 @@ DIST VirtualBox-5.2.22.tar.bz2 118757134 BLAKE2B 
be795cdbfb09d3d443f63e190b63898
 DIST VirtualBox-6.0.0_BETA2.tar.bz2 150947619 BLAKE2B 
53ed4cfea4a9e62cb8ba68089e3b6cea04b33950496e8aa945591f0d30bb69bbf02428b6bd6dd67afbc916d612b0135ea10124741c0538b917749f46935cf834
 SHA512 
10f7bd5c7c14d79ed1bf4662fce76d66f4f61bba1a9c8c7dfff57dad2dd6eaf2ae03911fdc994d53769f872079d7a04a1732126fc1aa9907237cbdccefda3348
 DIST virtualbox-5.2.12-patches-01.tar.xz 2616 BLAKE2B 
5731484d185414d83588ee227bbc1eef266451d1a3a710adf1b769cd6404ef1750dba7a60549f2ab9f3fb81ef15809db9ea0190127caefc72d7bc9bb8b741fb0
 SHA512 
712b55392a8e8357e95abb42ea4f8dac3391ecbf9cbecf27c7dbf674c40f42a1eb19d227a1b3adcf621384a9f64a6438d20fb43866c736189097fb5770c5c654
 DIST virtualbox-5.2.16-patches-02.tar.xz 3152 BLAKE2B 
c8d8f3872f544a465c7d1aa07291599307120ac9eabfb299ddd788a11f85ca6c2d84b8e7306ee4ad436270dad0dd39f101ee68a549eac15afd1e3cdc03f23c6c
 SHA512 
85ee8c4045de562d71ab2d761695ea48b6726a6f0c4bcaa2562bb0d147542d3f1a1b5b47cf593a7f22dac1b86f87b59a56bef421dce3e1fa8e5260cd41998450
-DIST virtualbox-6.0.0_beta2-patches-01.tar.xz 2924 BLAKE2B 
fd2dd4bca69adbdcdc3f3035e86b84773c8e884cc36c78ba74047a0c5d971c2a74b47c284a321d144ee9ece058beba7909e978c12f6a22e9568d370075681a13
 SHA512 
d7db90a7975fd452e53219175b8eb21a3b09916bf0b2dba687ff7543cbacf9f24cc35156c0f19d4c3d98f8003e386db2d68e8d953226930bdae82b12cdc3c0e9
+DIST virtualbox-6.0.0_beta2-patches-01.tar.xz 2732 BLAKE2B 
a138e715d99f135f16ca21c92781bf6cd8913f7f766bb598eddcd63e98280e568e646f56bbd0a3714f273457ca90db0b77ec7940ba25028506a22891f1af7b2d
 SHA512 
954e4b40d6e272efe756ee0965adb4110d45f764433a89080fda7ebaebbc20031f86a3e0027dfdaa1c6a7d6379a1af557cea71512504e4b57b5f5adbfc86b56e

diff --git a/app-emulation/virtualbox/virtualbox-6.0.0_beta2.ebuild 
b/app-emulation/virtualbox/virtualbox-6.0.0_beta2.ebuild
index fee02593ba9..b334d69c98a 100644
--- a/app-emulation/virtualbox/virtualbox-6.0.0_beta2.ebuild
+++ b/app-emulation/virtualbox/virtualbox-6.0.0_beta2.ebuild
@@ -209,7 +209,7 @@ src_configure() {
$(usex doc '' --disable-docs)
$(usex java '' --disable-java)
$(usex lvm '' --disable-devmapper)
-   $(usex opus --build-libopus '')
+   $(usex opus '' --disable-libopus)
$(usex pulseaudio '' --disable-pulse)
$(usex python '' --disable-python)
$(usex vboxwebsrv --enable-webservice '')



[gentoo-commits] repo/gentoo:master commit in: app-emulation/virtualbox-modules/, app-emulation/virtualbox-additions/, ...

2018-11-16 Thread Lars Wendler
commit: 10c68ecfcbdfda6b511ed4b101bf3885255a5311
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Nov 16 14:47:27 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Nov 16 14:48:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c68ecf

virtualbox packages: Bump to version 6.0.0_beta2

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

 app-emulation/virtualbox-additions/Manifest|   1 +
 .../virtualbox-additions-6.0.0_beta2.ebuild|  34 ++
 app-emulation/virtualbox-bin/Manifest  |   3 +
 .../virtualbox-bin-6.0.0.126642_beta2.ebuild   | 287 +
 app-emulation/virtualbox-extpack-oracle/Manifest   |   1 +
 ...ualbox-extpack-oracle-6.0.0.126642_beta2.ebuild |  43 ++
 app-emulation/virtualbox-guest-additions/Manifest  |   2 +
 .../virtualbox-guest-additions-6.0.0_beta2.ebuild  | 228 ++
 app-emulation/virtualbox-modules/Manifest  |   1 +
 .../virtualbox-modules-6.0.0_beta2.ebuild  |  52 +++
 app-emulation/virtualbox/Manifest  |   2 +
 .../virtualbox/virtualbox-6.0.0_beta2.ebuild   | 471 +
 12 files changed, 1125 insertions(+)

diff --git a/app-emulation/virtualbox-additions/Manifest 
b/app-emulation/virtualbox-additions/Manifest
index a5da20d59a4..e735dde076c 100644
--- a/app-emulation/virtualbox-additions/Manifest
+++ b/app-emulation/virtualbox-additions/Manifest
@@ -1,3 +1,4 @@
 DIST VBoxGuestAdditions_5.2.14.iso 57978880 BLAKE2B 
de5cb3c5b7e2f3ee018588308573389fd973820e87d5b2e6640499c96dc21db95e71eb4e5e2469455febba8b2ccb4a7c6014176e784613218fa7eccabefe9e53
 SHA512 
1fd878f9e7fc1687907ac8dff6827bfd7aefe3ed48012b0dbbaf42ced21695ce52be6fe146128a6d1c67c7a0c5c39c9ef24e8ee562271fda117d13cca81427cb
 DIST VBoxGuestAdditions_5.2.20.iso 58013696 BLAKE2B 
1a0df07f2a086c41741d884a3eabd43d6f1fee368b143fbae4c8dbc930834fb8d5dd82e8563fe7c9e4c562a58e79c25e9603847d9eca908943e525505bf2f697
 SHA512 
a8b8f12a8f0b26bb88745d33aa419c45adb4a1e682c3af9a34b0556ac1d8bdf33044253ede41d894e0dba1857f8f3c5cc234006149771a25133c6112ec4aa4c3
 DIST VBoxGuestAdditions_5.2.22.iso 58013696 BLAKE2B 
196f0048b685200328bcf753f3df23eac6477ce863885e93a54951795368bf62bdaa497589001ec203d75809b1f74ebbaa80419406d26bc7db43a131f5b9d698
 SHA512 
b320174b2f2ef796ac2c9c920579be38f0cedaa037d21992863ac355ecf6e99ae2aea56c70fb2034e9e03afac2cd7297f7717b447a6981701755593110164d37
+DIST VBoxGuestAdditions_6.0.0_BETA2.iso 73023488 BLAKE2B 
87a756c13686b49e0f80c332e3daf8033a60b65a1e658d6baf8be2e86c38dca7a46371774b8ebc6ffe57ac14ea4ebb83552a3583abb7a63091590f62b963933b
 SHA512 
7588efd3ef578465716adb0f9c277e4fbe9d08ca39c85cae0583cf30dc60036ceb2233ab3e56d17fc168e8c97e7d210517650b79829ece886249bd116a8d22a2

diff --git 
a/app-emulation/virtualbox-additions/virtualbox-additions-6.0.0_beta2.ebuild 
b/app-emulation/virtualbox-additions/virtualbox-additions-6.0.0_beta2.ebuild
new file mode 100644
index 000..74484529869
--- /dev/null
+++ b/app-emulation/virtualbox-additions/virtualbox-additions-6.0.0_beta2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN=VBoxGuestAdditions
+MY_PV="${PV/beta/BETA}"
+MY_PV="${MY_PV/rc/RC}"
+MY_P=${MY_PN}_${MY_PV}
+
+DESCRIPTION="CD image containing guest additions for VirtualBox"
+HOMEPAGE="https://www.virtualbox.org/;
+SRC_URI="https://download.virtualbox.org/virtualbox/${MY_PV}/${MY_P}.iso;
+
+LICENSE="GPL-2+ LGPL-2.1+ MIT SGI-B-2.0 CDDL"
+SLOT="0"
+[[ "${PV}" == *_beta* ]] || [[ "${PV}" == *_rc* ]] || \
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+RESTRICT="mirror"
+
+RDEPEND="!app-emulation/virtualbox-bin
+   !=app-emulation/virtualbox-"
+
+S="${WORKDIR}"
+
+src_unpack() {
+   return 0
+}
+
+src_install() {
+   insinto /usr/share/${PN/-additions}
+   newins "${DISTDIR}"/${MY_P}.iso ${MY_PN}.iso
+}

diff --git a/app-emulation/virtualbox-bin/Manifest 
b/app-emulation/virtualbox-bin/Manifest
index e84bb139e6e..d5b6bb5d2e9 100644
--- a/app-emulation/virtualbox-bin/Manifest
+++ b/app-emulation/virtualbox-bin/Manifest
@@ -1,12 +1,15 @@
 DIST Oracle_VM_VirtualBox_Extension_Pack-5.2.14-123301.tar.gz 19589209 BLAKE2B 
385bdfb4cef67788a1dd3e758f52dab7a367f56ca8d286e465af9a7674ffe3bc0f6187a66d7d19bb8f2a8fc0e23e0ce7ef35ac2d46fd6971dc2df96e8a61ca11
 SHA512 
a47a7173685b72995e5012386fc8f6c55f9106049a28ecaea223f58f1bb40077e0929cf05102a2588e516fe90891428b8e569ec9351fcaf235eb9f8293e45b92
 DIST Oracle_VM_VirtualBox_Extension_Pack-5.2.20-125813.tar.gz 19641208 BLAKE2B 
ffe4e89b88609d575f7e9f5aed5330de5024462ae564684cf3f565b62649d022c8fc9368cfd1685e3e4fc34e9a23cb0651c483f129b533f9afec38bcae89d587
 SHA512 
df9ae6af9ad1c1106bf8bf0595fdcdd3ec45bc74b90655e762fb18a4c8ea268bed366ce3caaf0f95682577b61b337650a6fe7ef901f6925fa38679ccd885c21c
 DIST Oracle_VM_VirtualBox_Extension_Pack-5.2.22-126460.tar.gz 19640932 BLAKE2B 

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

2018-11-16 Thread Lars Wendler
commit: b036555114a203eb62490c56edb726c2d3999e85
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Nov 16 14:06:28 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Nov 16 14:48:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0365551

app-emulation/virtualbox: removed "echo -n" replacement code

as upstream finally replaced "echo -n" with "printf" in their configure
script.

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

 app-emulation/virtualbox/virtualbox-5.2.14-r1.ebuild | 5 +
 app-emulation/virtualbox/virtualbox-5.2.20.ebuild| 3 ---
 app-emulation/virtualbox/virtualbox-5.2.22.ebuild| 3 ---
 3 files changed, 1 insertion(+), 10 deletions(-)

diff --git a/app-emulation/virtualbox/virtualbox-5.2.14-r1.ebuild 
b/app-emulation/virtualbox/virtualbox-5.2.14-r1.ebuild
index d2a03ffef0d..30079ef2356 100644
--- a/app-emulation/virtualbox/virtualbox-5.2.14-r1.ebuild
+++ b/app-emulation/virtualbox/virtualbox-5.2.14-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -154,9 +154,6 @@ src_prepare() {
sed -e 's@^check_gcc$@cc_maj="$(gcc -dumpversion | cut -d. -f1)" ; 
cc_min="$(gcc -dumpversion | cut -d. -f2)"@' \
-i configure || die
 
-   # Don't use "echo -n"
-   sed 's@ECHO_N="echo -n"@ECHO_N="printf"@' -i configure || die
-
# Disable things unused or split into separate ebuilds
sed -e "s@MY_LIBDIR@$(get_libdir)@" \
"${FILESDIR}"/${PN}-5-localconfig > LocalConfig.kmk || die

diff --git a/app-emulation/virtualbox/virtualbox-5.2.20.ebuild 
b/app-emulation/virtualbox/virtualbox-5.2.20.ebuild
index adcba1fd0cd..b7a4c078630 100644
--- a/app-emulation/virtualbox/virtualbox-5.2.20.ebuild
+++ b/app-emulation/virtualbox/virtualbox-5.2.20.ebuild
@@ -155,9 +155,6 @@ src_prepare() {
sed -e 's@^check_gcc$@cc_maj="$(gcc -dumpversion | cut -d. -f1)" ; 
cc_min="$(gcc -dumpversion | cut -d. -f2)"@' \
-i configure || die
 
-   # Don't use "echo -n"
-   sed 's@ECHO_N="echo -n"@ECHO_N="printf"@' -i configure || die
-
# Disable things unused or split into separate ebuilds
sed -e "s@MY_LIBDIR@$(get_libdir)@" \
"${FILESDIR}"/${PN}-5-localconfig > LocalConfig.kmk || die

diff --git a/app-emulation/virtualbox/virtualbox-5.2.22.ebuild 
b/app-emulation/virtualbox/virtualbox-5.2.22.ebuild
index adcba1fd0cd..b7a4c078630 100644
--- a/app-emulation/virtualbox/virtualbox-5.2.22.ebuild
+++ b/app-emulation/virtualbox/virtualbox-5.2.22.ebuild
@@ -155,9 +155,6 @@ src_prepare() {
sed -e 's@^check_gcc$@cc_maj="$(gcc -dumpversion | cut -d. -f1)" ; 
cc_min="$(gcc -dumpversion | cut -d. -f2)"@' \
-i configure || die
 
-   # Don't use "echo -n"
-   sed 's@ECHO_N="echo -n"@ECHO_N="printf"@' -i configure || die
-
# Disable things unused or split into separate ebuilds
sed -e "s@MY_LIBDIR@$(get_libdir)@" \
"${FILESDIR}"/${PN}-5-localconfig > LocalConfig.kmk || die



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

2018-11-16 Thread Mikle Kolyada
commit: 47bd28f89c2c28ed90b6a5775c4c7f82e1f315ba
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Nov 16 14:01:59 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Nov 16 14:01:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47bd28f8

media-sound/mpd: Version bump (v0.21.3)

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

 media-sound/mpd/Manifest  |   1 +
 media-sound/mpd/mpd-0.21.3.ebuild | 298 ++
 2 files changed, 299 insertions(+)

diff --git a/media-sound/mpd/Manifest b/media-sound/mpd/Manifest
index e3c66a4a4f9..f71c7e90bc7 100644
--- a/media-sound/mpd/Manifest
+++ b/media-sound/mpd/Manifest
@@ -1,3 +1,4 @@
 DIST mpd-0.20.21.tar.xz 800476 BLAKE2B 
0c807ae8d79abd9400aa417b516c709073b23390aeed2b385c716e20f8c4f93376a235b54fe5f5cfcd451b04c76e105b41acbd180d294281432d4d1b6a427a15
 SHA512 
d44fb326ea6213ecf46721ca81efdfffaec4faa5a66e627185fd5ab7c4f0c5a380f4d04aed5c2909746a37b33987cb61f62dc2d747365da06629fbb78bf7c7d6
 DIST mpd-0.21.1.tar.xz 662308 BLAKE2B 
59da1cf186d5a171d447bde8e17386b49e3b4e821b4afc429b5e70a7633fe23f9ef671debda4bdf46632a12f008dbfe68966c52e4d298aca0a063dda6ca615da
 SHA512 
9af720f7bb7120a6c6006ad21cd80a61c0f1976ced7b2e6815d5e33d8b1e9caf4e8a0047754db3eb37875176754fbf03bfd77b26232ef4aec9da48667694ba92
 DIST mpd-0.21.2.tar.xz 664408 BLAKE2B 
da1cde9b5f87c3e52c90d9a743ec8bf7acbcf52f3bf28969414bcc0f3f29151fd47157dc153a094844c94f6eb50e5a3564baf66a2e87d840b7b34efc8d0f760b
 SHA512 
a98ff2636a22f7f0e377f814d0312b03344624317a68fcd89a7c5f33a40629908cd19f8bfff5dde1eef96cebd93e92cef63153bf60b02791803532357a38e020
+DIST mpd-0.21.3.tar.xz 664992 BLAKE2B 
42e2bef46f4eb99e43c4078373dab4301cafa3062459abfed08e9f4b448a1fcfaa40da5a53941b49b426abecf2f31278fdb0857293b24156fa77845c56cbd095
 SHA512 
c6ce513ea641d026594cd7ae6e9051bd0060e45f5839d89b350ba144cc9094a8e1490052df4d024cbc92d88680ee8e8bae14fc8037431394771018a75c3ee3d7

diff --git a/media-sound/mpd/mpd-0.21.3.ebuild 
b/media-sound/mpd/mpd-0.21.3.ebuild
new file mode 100644
index 000..1b27c1b94a1
--- /dev/null
+++ b/media-sound/mpd/mpd-0.21.3.ebuild
@@ -0,0 +1,298 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic linux-info meson systemd user
+
+MESON_AUTO_DEPEND="no"
+
+DESCRIPTION="The Music Player Daemon (mpd)"
+HOMEPAGE="https://www.musicpd.org https://github.com/MusicPlayerDaemon/MPD;
+SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x64-macos"
+IUSE="adplug +alsa ao audiofile bzip2 cdio chromaprint +cue +curl +dbus debug
+   +eventfd expat faad +ffmpeg +fifo flac fluidsynth gme +icu +id3tag 
+inotify
+   +ipv6 jack lame libav libmpdclient libsamplerate libsoxr +mad mikmod mms
+   modplug mpg123 musepack +network nfs openal opus oss pipe pulseaudio 
qobuz
+   recorder samba selinux sid signalfd sndfile soundcloud sqlite systemd 
tcpd
+   test tidal twolame udisks unicode vorbis wavpack webdav wildmidi upnp
+   zeroconf zip zlib"
+
+OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder"
+DECODER_PLUGINS="adplug audiofile faad ffmpeg flac fluidsynth mad mikmod
+   modplug mpg123 musepack flac sid vorbis wavpack wildmidi"
+ENCODER_PLUGINS="audiofile flac lame twolame vorbis"
+
+REQUIRED_USE="
+   || ( ${OUTPUT_PLUGINS} )
+   || ( ${DECODER_PLUGINS} )
+   network? ( || ( ${ENCODER_PLUGINS} ) )
+   recorder? ( || ( ${ENCODER_PLUGINS} ) )
+   upnp? ( expat )
+   webdav? ( curl expat )
+   "
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   adplug? ( media-libs/adplug:= )
+   alsa? (
+   media-libs/alsa-lib
+   media-sound/alsa-utils
+   )
+
+   ao? ( media-libs/libao[alsa?,pulseaudio?] )
+   audiofile? ( media-libs/audiofile:= )
+
+   cdio? (
+   dev-libs/libcdio:=
+   dev-libs/libcdio-paranoia
+   )
+
+   chromaprint? ( media-libs/chromaprint )
+   curl? ( net-misc/curl )
+   dbus? ( sys-apps/dbus )
+   expat? ( dev-libs/expat )
+   faad? ( media-libs/faad2 )
+
+   ffmpeg? (
+   libav? ( media-video/libav:0= )
+   !libav? ( media-video/ffmpeg:0= )
+   )
+
+   flac? ( media-libs/flac )
+   fluidsynth? ( media-sound/fluidsynth )
+   gme? ( >=media-libs/game-music-emu-0.6.0_pre20120802 )
+   icu? (  dev-libs/icu:= )
+   id3tag? ( media-libs/libid3tag )
+   jack? ( virtual/jack )
+   lame? ( network? ( media-sound/lame ) )
+   libmpdclient? ( media-libs/libmpdclient )
+   libsamplerate? ( media-libs/libsamplerate )
+   libsoxr? ( media-libs/soxr )
+   mad? ( media-libs/libmad )
+   mikmod? ( media-libs/libmikmod )
+   mms? ( media-libs/libmms )
+  

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

2018-11-16 Thread Mikle Kolyada
commit: 2dbe961c28fe7e9613ba96a1b34f4a2160e37b8c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Nov 16 14:02:58 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Nov 16 14:02:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dbe961c

media-sound/mpd: Drop old

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

 media-sound/mpd/Manifest |   1 -
 media-sound/mpd/mpd-0.21.1-r1.ebuild | 298 ---
 2 files changed, 299 deletions(-)

diff --git a/media-sound/mpd/Manifest b/media-sound/mpd/Manifest
index f71c7e90bc7..4163208f1ae 100644
--- a/media-sound/mpd/Manifest
+++ b/media-sound/mpd/Manifest
@@ -1,4 +1,3 @@
 DIST mpd-0.20.21.tar.xz 800476 BLAKE2B 
0c807ae8d79abd9400aa417b516c709073b23390aeed2b385c716e20f8c4f93376a235b54fe5f5cfcd451b04c76e105b41acbd180d294281432d4d1b6a427a15
 SHA512 
d44fb326ea6213ecf46721ca81efdfffaec4faa5a66e627185fd5ab7c4f0c5a380f4d04aed5c2909746a37b33987cb61f62dc2d747365da06629fbb78bf7c7d6
-DIST mpd-0.21.1.tar.xz 662308 BLAKE2B 
59da1cf186d5a171d447bde8e17386b49e3b4e821b4afc429b5e70a7633fe23f9ef671debda4bdf46632a12f008dbfe68966c52e4d298aca0a063dda6ca615da
 SHA512 
9af720f7bb7120a6c6006ad21cd80a61c0f1976ced7b2e6815d5e33d8b1e9caf4e8a0047754db3eb37875176754fbf03bfd77b26232ef4aec9da48667694ba92
 DIST mpd-0.21.2.tar.xz 664408 BLAKE2B 
da1cde9b5f87c3e52c90d9a743ec8bf7acbcf52f3bf28969414bcc0f3f29151fd47157dc153a094844c94f6eb50e5a3564baf66a2e87d840b7b34efc8d0f760b
 SHA512 
a98ff2636a22f7f0e377f814d0312b03344624317a68fcd89a7c5f33a40629908cd19f8bfff5dde1eef96cebd93e92cef63153bf60b02791803532357a38e020
 DIST mpd-0.21.3.tar.xz 664992 BLAKE2B 
42e2bef46f4eb99e43c4078373dab4301cafa3062459abfed08e9f4b448a1fcfaa40da5a53941b49b426abecf2f31278fdb0857293b24156fa77845c56cbd095
 SHA512 
c6ce513ea641d026594cd7ae6e9051bd0060e45f5839d89b350ba144cc9094a8e1490052df4d024cbc92d88680ee8e8bae14fc8037431394771018a75c3ee3d7

diff --git a/media-sound/mpd/mpd-0.21.1-r1.ebuild 
b/media-sound/mpd/mpd-0.21.1-r1.ebuild
deleted file mode 100644
index 1b27c1b94a1..000
--- a/media-sound/mpd/mpd-0.21.1-r1.ebuild
+++ /dev/null
@@ -1,298 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic linux-info meson systemd user
-
-MESON_AUTO_DEPEND="no"
-
-DESCRIPTION="The Music Player Daemon (mpd)"
-HOMEPAGE="https://www.musicpd.org https://github.com/MusicPlayerDaemon/MPD;
-SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x64-macos"
-IUSE="adplug +alsa ao audiofile bzip2 cdio chromaprint +cue +curl +dbus debug
-   +eventfd expat faad +ffmpeg +fifo flac fluidsynth gme +icu +id3tag 
+inotify
-   +ipv6 jack lame libav libmpdclient libsamplerate libsoxr +mad mikmod mms
-   modplug mpg123 musepack +network nfs openal opus oss pipe pulseaudio 
qobuz
-   recorder samba selinux sid signalfd sndfile soundcloud sqlite systemd 
tcpd
-   test tidal twolame udisks unicode vorbis wavpack webdav wildmidi upnp
-   zeroconf zip zlib"
-
-OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder"
-DECODER_PLUGINS="adplug audiofile faad ffmpeg flac fluidsynth mad mikmod
-   modplug mpg123 musepack flac sid vorbis wavpack wildmidi"
-ENCODER_PLUGINS="audiofile flac lame twolame vorbis"
-
-REQUIRED_USE="
-   || ( ${OUTPUT_PLUGINS} )
-   || ( ${DECODER_PLUGINS} )
-   network? ( || ( ${ENCODER_PLUGINS} ) )
-   recorder? ( || ( ${ENCODER_PLUGINS} ) )
-   upnp? ( expat )
-   webdav? ( curl expat )
-   "
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   adplug? ( media-libs/adplug:= )
-   alsa? (
-   media-libs/alsa-lib
-   media-sound/alsa-utils
-   )
-
-   ao? ( media-libs/libao[alsa?,pulseaudio?] )
-   audiofile? ( media-libs/audiofile:= )
-
-   cdio? (
-   dev-libs/libcdio:=
-   dev-libs/libcdio-paranoia
-   )
-
-   chromaprint? ( media-libs/chromaprint )
-   curl? ( net-misc/curl )
-   dbus? ( sys-apps/dbus )
-   expat? ( dev-libs/expat )
-   faad? ( media-libs/faad2 )
-
-   ffmpeg? (
-   libav? ( media-video/libav:0= )
-   !libav? ( media-video/ffmpeg:0= )
-   )
-
-   flac? ( media-libs/flac )
-   fluidsynth? ( media-sound/fluidsynth )
-   gme? ( >=media-libs/game-music-emu-0.6.0_pre20120802 )
-   icu? (  dev-libs/icu:= )
-   id3tag? ( media-libs/libid3tag )
-   jack? ( virtual/jack )
-   lame? ( network? ( media-sound/lame ) )
-   libmpdclient? ( media-libs/libmpdclient )
-   libsamplerate? ( media-libs/libsamplerate )
-   libsoxr? ( media-libs/soxr )
-   mad? ( media-libs/libmad )
-   mikmod? ( media-libs/libmikmod )
-   mms? ( media-libs/libmms )
- 

[gentoo-commits] repo/gentoo:master commit in: sys-power/acpid/

2018-11-16 Thread Andrey Utkin
commit: 249b930dfd8d2df93a607cef825cdcb9d965b92f
Author: Andrey Utkin  gentoo  org>
AuthorDate: Fri Nov 16 12:25:31 2018 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Fri Nov 16 12:58:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=249b930d

sys-power/acpid: add new version 2.0.31

New in 2.0.31:

- Add events for keyboard illumination up/down
- kacpimon: Bump connection limit to 100, Debian #909399

Signed-off-by: Andrey Utkin  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10

 sys-power/acpid/Manifest|  1 +
 sys-power/acpid/acpid-2.0.31.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/sys-power/acpid/Manifest b/sys-power/acpid/Manifest
index e26ac7717e2..451121dc1cc 100644
--- a/sys-power/acpid/Manifest
+++ b/sys-power/acpid/Manifest
@@ -1,3 +1,4 @@
 DIST acpid-2.0.29.tar.xz 155568 BLAKE2B 
9a2c9f2f8ba035bf7452b633c20a73796ca05d4849d567f076a08a8216f2e07ca7a0b25e995054697e70bacacad07872e153c6c47f8204294964b276bca49f62
 SHA512 
5f480cb4456b6b843adb239519a8d05f83c3c668525457e55d7fae2ba7725356ec7a1faa16bbd54086f0eab2e8ca20952180c00b2b65a27eda534c3f28e8ed17
 DIST acpid-2.0.30.tar.xz 155528 BLAKE2B 
cbf387dc6342e0f4256360e99c02f8ebf4c322cd1c1dbd4ff0fcf703a323b90cfb0eb256233917dbdb81cd9a5f9bd075c581de9daee3d3a311208553084a093e
 SHA512 
6901e93cc626817b782e43976caf4b7f89e8c4275eb7e9d31aeeb967b5d5bbb6a2b4dcf71e72ba666e10343cdbdbe8528feee955af5ba14de8ec88ef61b29f96
+DIST acpid-2.0.31.tar.xz 155620 BLAKE2B 
11338d72156dfd90f680367e23e373f8c4ee5e553ad4a8a9c9688163e9a97ee99a9b866940320ee5af5a9e9fe956dd3e675d0b879ea984c2cca56162c0d163fd
 SHA512 
05eb96cdae698731b14caa89aa01239a0f16ce732f897d295447753aab7c8d49227c9b9ce901c6fd3bfdb117688e6ed80ec61aea0f64d75c9c0afe2aea2aa91a
 DIST sys-power_acpid_2.0.29-r1_extras.tar.xz 2548 BLAKE2B 
4568f0e44d33382fd294248d48c8852f689f0a6082d9b74b33b77918d3ce21d7f1bf8a3aafeaa252e8fe170b3829155344a256f01fe80414369f02d50a17ff55
 SHA512 
f2c366c50c75790df32a1f6573b7de640fd09a97c4598155ebd0aad2eba118961ddc82fe0fbb4dc935aa5b6d7fcfe3ade73fff555b4588b0e4579a1028bef12f

diff --git a/sys-power/acpid/acpid-2.0.31.ebuild 
b/sys-power/acpid/acpid-2.0.31.ebuild
new file mode 100644
index 000..a56844b5c59
--- /dev/null
+++ b/sys-power/acpid/acpid-2.0.31.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit linux-info systemd
+
+DESCRIPTION="Daemon for Advanced Configuration and Power Interface"
+HOMEPAGE="https://sourceforge.net/projects/acpid2;
+EXTRAS_VER="2.0.29-r1"
+EXTRAS_NAME="${CATEGORY}_${PN}_${EXTRAS_VER}_extras"
+SRC_URI="mirror://sourceforge/${PN}2/${P}.tar.xz
+   https://dev.gentoo.org/~andrey_utkin/distfiles/${EXTRAS_NAME}.tar.xz
+   "
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86"
+IUSE="selinux"
+
+RDEPEND="selinux? ( sec-policy/selinux-apm )"
+DEPEND=">=sys-kernel/linux-headers-3"
+
+pkg_pretend() {
+   local CONFIG_CHECK="~INPUT_EVDEV"
+   local WARNING_INPUT_EVDEV="CONFIG_INPUT_EVDEV is required for ACPI 
button event support."
+   [[ ${MERGE_TYPE} != buildonly ]] && check_extra_config
+}
+
+pkg_setup() { :; }
+
+PATCHES=(
+)
+
+src_install() {
+   emake DESTDIR="${D}" install
+
+   newdoc kacpimon/README README.kacpimon
+   dodoc -r samples
+   rm -f "${D}"/usr/share/doc/${PF}/COPYING || die
+
+   exeinto /etc/acpi
+   newexe "${WORKDIR}/${EXTRAS_NAME}/${PN}-1.0.6-default.sh" default.sh
+   exeinto /etc/acpi/actions
+   newexe samples/powerbtn/powerbtn.sh powerbtn.sh
+   insinto /etc/acpi/events
+   newins "${WORKDIR}/${EXTRAS_NAME}/${PN}-1.0.4-default" default
+
+   newinitd "${WORKDIR}/${EXTRAS_NAME}/${PN}-2.0.26-init.d" ${PN}
+   newconfd "${WORKDIR}/${EXTRAS_NAME}/${PN}-2.0.16-conf.d" ${PN}
+
+   systemd_dounit 
"${WORKDIR}"/${EXTRAS_NAME}/systemd/${PN}.{service,socket}
+}
+
+pkg_postinst() {
+   if [[ -z ${REPLACING_VERSIONS} ]]; then
+   elog
+   elog "You may wish to read the Gentoo Linux Power Management 
Guide,"
+   elog "which can be found online at:"
+   elog "https://wiki.gentoo.org/wiki/Power_management/Guide;
+   elog
+   fi
+
+   # files/systemd/acpid.socket -> ListenStream=/run/acpid.socket
+   mkdir -p "${ROOT%/}"/run
+
+   if ! grep -qs "^tmpfs.*/run " "${ROOT%/}"/proc/mounts ; then
+   echo
+   ewarn "You should reboot the system now to get /run mounted 
with tmpfs!"
+   fi
+}



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

2018-11-16 Thread Lars Wendler
commit: 62b9f85d32fe91d1d9f733828eab14d91a402d7e
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Nov 16 12:53:24 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Nov 16 12:53:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62b9f85d

sys-apps/keyutils: Removed old.

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

 sys-apps/keyutils/Manifest  |   1 -
 sys-apps/keyutils/keyutils-1.5.10-r1.ebuild | 121 
 2 files changed, 122 deletions(-)

diff --git a/sys-apps/keyutils/Manifest b/sys-apps/keyutils/Manifest
index 2fbe7776b33..7354bfc3ddf 100644
--- a/sys-apps/keyutils/Manifest
+++ b/sys-apps/keyutils/Manifest
@@ -1,4 +1,3 @@
-DIST keyutils-1.5.10.tar.bz2 74190 BLAKE2B 
8eeab02ef363b785152ac4576f1ce9792711f482e27c3ba71d906624ecc88ef4ce2ee909d7bc3a35b42b50e971c0bd0600cfdefa9a3db35b25553bfcbe7d2d13
 SHA512 
7f6f956c7e76cdc2aeb52e74fe670b20a5f9a5d9b543fd2ce971d80c48745f37d05235a42f0a8f152b1128a109c7d8bf07e751282a20d2d3f433a99a5308ae8d
 DIST keyutils-1.5.11.tar.bz2 87644 BLAKE2B 
1a601b7036bcfe69b6272ae2b4fad44cbb22877aa94722fa26460f8addf105ff8898e851ad7c4f28bc755f7fe293c74bc70cffbe877978e462bc21c428c9a11d
 SHA512 
5f0dc5d5ceb673cf0ba71d3a0b525d09adc8d501a795372aa3dc29215ef393cb8577c72051cecabdb9a46dca4fcaa11e629291fb857290872475a7e445f47d43
 DIST keyutils-1.5.9.tar.bz2 74683 BLAKE2B 
8d5133dcc4c1f40e634fcd6584f3e2e56a0fd4ff25ded41c5f94ef3193ef7240ff4a24ef1c5beba6ba835195605a77126bf77aace35a1b4acf025160a2082dcb
 SHA512 
d4ee1dabb87844e18bfd8d094a5bc9ce792c96720b71e77961b6c36bb1addb9acea2a7004ddfba1d09b167af908368162312e5c3656b22a6266955bb57b887e2
 DIST keyutils-1.6.tar.bz2 93973 BLAKE2B 
250275852d13fb5f77786350e64175c9c0909d1a7e44750e44b09f79217acb9c40536bd61e15d1abdfe36b9e161832f4c59f11b73915d457356a273ad490
 SHA512 
ee50da165099ea26904066d24b27c5165cb1eb78df6768cba3a534aa318a5c8d926ec6e5322a38c8cedaa768cd79bdcb26ef918aa8447df2e5dfbbe7b8f200ff

diff --git a/sys-apps/keyutils/keyutils-1.5.10-r1.ebuild 
b/sys-apps/keyutils/keyutils-1.5.10-r1.ebuild
deleted file mode 100644
index e76b88beb5d..000
--- a/sys-apps/keyutils/keyutils-1.5.10-r1.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multilib eutils toolchain-funcs linux-info multilib-minimal
-
-DESCRIPTION="Linux Key Management Utilities"
-HOMEPAGE="https://people.redhat.com/dhowells/keyutils/;
-SRC_URI="https://people.redhat.com/dhowells/${PN}/${P}.tar.bz2;
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0/1.6"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="static static-libs test"
-
-RDEPEND=""
-DEPEND="!prefix? ( >=sys-kernel/linux-headers-2.6.11 )"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.5.10-endian-check-1.patch
-   "${FILESDIR}"/${PN}-1.5.10-makefile-fixup.patch
-   "${FILESDIR}"/${PN}-1.5.10-silence-rpm-check.patch #656446
-   "${FILESDIR}"/${PN}-1.5.10-disable-tests.patch #519062 #522050
-   "${FILESDIR}"/${PN}-1.5.9-header-extern-c.patch
-)
-
-pkg_setup() {
-   # To prevent a failure in test phase and false positive bug reports
-   # we are enforcing the following options because testsuite expects
-   # that these options are available. I.e. testsuite only decides based
-   # on kernel version which tests will be called, no feature checking.
-   if use test ; then
-   CONFIG_CHECK="KEYS"
-   ERROR_KEYS="You must have CONFIG_KEYS to run the package 
testsuite!"
-
-   if kernel_is -ge 2 6 10 && kernel_is -lt 4 0 0 ; then
-   CONFIG_CHECK="${CONFIG_CHECK} KEYS_DEBUG_PROC_KEYS"
-   ERROR_KEYS_DEBUG_PROC_KEYS="You must have 
CONFIG_KEYS_DEBUG_PROC_KEYS to run the package testsuite!"
-   fi
-
-   if kernel_is -ge 4 7 ; then
-   CONFIG_CHECK="${CONFIG_CHECK} KEY_DH_OPERATIONS"
-   ERROR_KEY_DH_OPERATIONS="You must have 
CONFIG_KEY_DH_OPERATIONS to run the package testsuite!"
-   fi
-   else
-   CONFIG_CHECK="~KEYS"
-   ERROR_KEYS="You will be unable to use this package on this 
system because CONFIG_KEYS is not set!"
-
-   if kernel_is -ge 4 7 ; then
-   CONFIG_CHECK="${CONFIG_CHECK} ~KEY_DH_OPERATIONS"
-   ERROR_KEY_DH_OPERATIONS="You will be unable to use 
Diffie-Hellman on this system because CONFIG_KEY_DH_OPERATIONS is not set!"
-   fi
-   fi
-
-   linux-info_pkg_setup
-}
-
-src_prepare() {
-   epatch "${PATCHES[@]}"
-
-   # The lsb check is useless, so avoid spurious command not found 
messages.
-   sed -i -e 's,lsb_release,:,' tests/prepare.inc.sh || die
-   # All the test files are bash, but try to execute via 

[gentoo-commits] repo/gentoo:master commit in: sys-apps/keyutils/files/, sys-apps/keyutils/

2018-11-16 Thread Lars Wendler
commit: cbb28eaa7d2cd7b18b874c51f7ab0f0efcbf66b4
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Nov 16 12:51:45 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Nov 16 12:51:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbb28eaa

sys-apps/keyutils: Bump to version 1.6

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

 sys-apps/keyutils/Manifest |   1 +
 .../files/keyutils-1.6-endian-check-1.patch|  32 ++
 .../files/keyutils-1.6-makefile-fixup.patch|  25 +
 sys-apps/keyutils/keyutils-1.6.ebuild  | 121 +
 4 files changed, 179 insertions(+)

diff --git a/sys-apps/keyutils/Manifest b/sys-apps/keyutils/Manifest
index 3892769c71a..2fbe7776b33 100644
--- a/sys-apps/keyutils/Manifest
+++ b/sys-apps/keyutils/Manifest
@@ -1,3 +1,4 @@
 DIST keyutils-1.5.10.tar.bz2 74190 BLAKE2B 
8eeab02ef363b785152ac4576f1ce9792711f482e27c3ba71d906624ecc88ef4ce2ee909d7bc3a35b42b50e971c0bd0600cfdefa9a3db35b25553bfcbe7d2d13
 SHA512 
7f6f956c7e76cdc2aeb52e74fe670b20a5f9a5d9b543fd2ce971d80c48745f37d05235a42f0a8f152b1128a109c7d8bf07e751282a20d2d3f433a99a5308ae8d
 DIST keyutils-1.5.11.tar.bz2 87644 BLAKE2B 
1a601b7036bcfe69b6272ae2b4fad44cbb22877aa94722fa26460f8addf105ff8898e851ad7c4f28bc755f7fe293c74bc70cffbe877978e462bc21c428c9a11d
 SHA512 
5f0dc5d5ceb673cf0ba71d3a0b525d09adc8d501a795372aa3dc29215ef393cb8577c72051cecabdb9a46dca4fcaa11e629291fb857290872475a7e445f47d43
 DIST keyutils-1.5.9.tar.bz2 74683 BLAKE2B 
8d5133dcc4c1f40e634fcd6584f3e2e56a0fd4ff25ded41c5f94ef3193ef7240ff4a24ef1c5beba6ba835195605a77126bf77aace35a1b4acf025160a2082dcb
 SHA512 
d4ee1dabb87844e18bfd8d094a5bc9ce792c96720b71e77961b6c36bb1addb9acea2a7004ddfba1d09b167af908368162312e5c3656b22a6266955bb57b887e2
+DIST keyutils-1.6.tar.bz2 93973 BLAKE2B 
250275852d13fb5f77786350e64175c9c0909d1a7e44750e44b09f79217acb9c40536bd61e15d1abdfe36b9e161832f4c59f11b73915d457356a273ad490
 SHA512 
ee50da165099ea26904066d24b27c5165cb1eb78df6768cba3a534aa318a5c8d926ec6e5322a38c8cedaa768cd79bdcb26ef918aa8447df2e5dfbbe7b8f200ff

diff --git a/sys-apps/keyutils/files/keyutils-1.6-endian-check-1.patch 
b/sys-apps/keyutils/files/keyutils-1.6-endian-check-1.patch
new file mode 100644
index 000..e783ec699c3
--- /dev/null
+++ b/sys-apps/keyutils/files/keyutils-1.6-endian-check-1.patch
@@ -0,0 +1,32 @@
+From 0a99778774df85448aeda0a37b85c43bc8868a9e Mon Sep 17 00:00:00 2001
+From: Lars Wendler 
+Date: Fri, 16 Nov 2018 12:37:29 +0100
+Subject: [PATCH] fix regexp match against `file /proc/$$/exe` for -fPIE bash
+
+Now that bash is built with PIE enabled, keyutils' check for endianness
+fails because file no longer returns "executable", but instead returns
+"shared object" for file << 5.33 and "pie executable" for file >= 5.33.
+---
+ tests/toolbox.inc.sh | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/tests/toolbox.inc.sh b/tests/toolbox.inc.sh
+index 0ce6db0..712c5bd 100644
+--- a/tests/toolbox.inc.sh
 b/tests/toolbox.inc.sh
+@@ -13,10 +13,10 @@
+ echo === $OUTPUTFILE ===
+ 
+ endian=`file -L /proc/$$/exe`
+-if expr "$endian" : '.* MSB \+\(executable\|shared object\).*' >&/dev/null
++if expr "$endian" : '.* MSB \+\(executable\|shared object\|pie 
executable\).*' >&/dev/null
+ then
+ endian=BE
+-elif expr "$endian" : '.* LSB \+\(executable\|shared object\).*' >&/dev/null
++elif expr "$endian" : '.* LSB \+\(executable\|shared object\|pie 
executable\).*' >&/dev/null
+ then
+ endian=LE
+ else
+-- 
+2.19.1
+

diff --git a/sys-apps/keyutils/files/keyutils-1.6-makefile-fixup.patch 
b/sys-apps/keyutils/files/keyutils-1.6-makefile-fixup.patch
new file mode 100644
index 000..25dcdeb5fc3
--- /dev/null
+++ b/sys-apps/keyutils/files/keyutils-1.6-makefile-fixup.patch
@@ -0,0 +1,25 @@
+From d1a02ed81c86fe7140f93b9a160fbb53be148446 Mon Sep 17 00:00:00 2001
+From: Mike Frysinger 
+Date: Fri, 16 Nov 2018 12:39:12 +0100
+Subject: [PATCH] depend on $(DEVELLIB) not -lkeyutils
+
+---
+ Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index 33a451e..845b8fe 100644
+--- a/Makefile
 b/Makefile
+@@ -184,7 +184,7 @@ ifeq ($(NO_SOLIB),0)
+   $(INSTALL) -D $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(LIBNAME)
+   $(LNS) $(LIBNAME) $(DESTDIR)$(LIBDIR)/$(SONAME)
+   mkdir -p $(DESTDIR)$(USRLIBDIR)
+-  $(LNS) $(LIBDIR)/$(SONAME) $(DESTDIR)$(USRLIBDIR)/$(DEVELLIB)
++  $(LNS) $(SONAME) $(DESTDIR)$(USRLIBDIR)/$(DEVELLIB)
+   sed \
+   -e 's,@VERSION\@,$(VERSION),g' \
+   -e 's,@prefix\@,$(PREFIX),g' \
+-- 
+2.19.1
+

diff --git a/sys-apps/keyutils/keyutils-1.6.ebuild 
b/sys-apps/keyutils/keyutils-1.6.ebuild
new file mode 100644
index 000..ab926f98b57
--- /dev/null
+++ b/sys-apps/keyutils/keyutils-1.6.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General 

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

2018-11-16 Thread Manuel Rüger
commit: 2c233d4f345184c355641a4070acf472dbd9398c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Nov 16 11:01:11 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Nov 16 11:01:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c233d4f

app-admin/vault: Version bump to 0.11.5

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

 app-admin/vault/Manifest|  1 +
 app-admin/vault/vault-0.11.5.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/app-admin/vault/Manifest b/app-admin/vault/Manifest
index 640926e2e5f..25c2a3a0c83 100644
--- a/app-admin/vault/Manifest
+++ b/app-admin/vault/Manifest
@@ -2,3 +2,4 @@ DIST vault-0.10.3.tar.gz 15902247 BLAKE2B 
f69ddbe1309800cfae756f8ca1dd0da3e92ce4
 DIST vault-0.10.4.tar.gz 19207588 BLAKE2B 
035e83c1d119b266817490afd4506fee5e5ceeff8a7c59188c59e28067f06e78f57e06d200026b288908f49a19ed22ebfd67e08c3c70026c7da22d05e33ec343
 SHA512 
7331e49c2becebc74cfc1ce7d6984590fdd39b47f0bbf1b610cfe37b900a86b8ea63bc5d5e28ba34b68433944486979177aee6c10bf188095f5a50a4b61a
 DIST vault-0.11.0.tar.gz 24430984 BLAKE2B 
0c1d40ed9f8dbc19ae7bce38308f7a55e12e8a907798022ce6b5783f2be9b9d7a9a1842683b8df411b3b754c716fd7366a0261d890e2153c64a70df6a3c6b844
 SHA512 
33e1e76a0e16803a8d0d6ed8ec0b6d1f8876d54ecf35a70bc4969404bd7991ef0cc5986eae958885d288bb316396e0594a5571b7a11f8b052b22b445388f03c7
 DIST vault-0.11.4.tar.gz 25456828 BLAKE2B 
35ed79e8474c4fffb046b5163bfd7115ca4ffe3c3560732d9f73349a1187417a288c30985d7ac450b86f682aa7a1d5318634c1be60e5bffce04137e32f2ad13d
 SHA512 
99e592d679d65d75d62812e2d0ae9a652342a97f4934a2ca00a9ac044cdc92b35e7108296cf1a700ed36818a504fcaf155f8f61d7b10d84933932bdab00a9f7e
+DIST vault-0.11.5.tar.gz 25459691 BLAKE2B 
9f77e90b71629e1ed341d03830a0376b6731d85189dde0205148c7c8002556521538144cbf1b7bc425253cc55de6ab3d48cbcc1d270165e5804f7f632d06523b
 SHA512 
b290523ee94199d241bbd2477ca686076f645804953181996aefe2a425bc5114db3d375fd5c832d1fa257a790947544406f50777317e854ccf2d4d4477ab6ffd

diff --git a/app-admin/vault/vault-0.11.5.ebuild 
b/app-admin/vault/vault-0.11.5.ebuild
new file mode 100644
index 000..52a7f68b449
--- /dev/null
+++ b/app-admin/vault/vault-0.11.5.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit fcaps golang-base golang-vcs-snapshot systemd user
+
+EGO_PN="github.com/hashicorp/${PN}"
+DESCRIPTION="A tool for managing secrets"
+HOMEPAGE="https://vaultproject.io/;
+SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SLOT="0"
+LICENSE="MPL-2.0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RESTRICT="test"
+
+DEPEND=">=dev-lang/go-1.10:=
+   dev-go/gox"
+
+FILECAPS=(
+   -m 755 'cap_ipc_lock=+ep' usr/bin/${PN}
+)
+
+src_prepare() {
+   default
+   # Avoid the need to have a git checkout
+   sed -e 's:^\(GIT_COMMIT=\).*:\1:' \
+   -e 's:^\(GIT_DIRTY=\).*:\1:' \
+   -e s:\'\${GIT_COMMIT}\${GIT_DIRTY}\':: \
+   -i src/${EGO_PN}/scripts/build.sh || die
+   sed -e "/hooks/d" -i src/${EGO_PN}/Makefile || die
+}
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_compile() {
+   mkdir bin || die
+   export GOPATH=${S}
+   cd src/${EGO_PN} || die
+   # The fmt target may need to be executed if it was previously
+   # executed by an older version of go (bug 665438).
+   emake fmt
+   XC_ARCH=$(go env GOARCH) \
+   XC_OS=$(go env GOOS) \
+   XC_OSARCH=$(go env GOOS)/$(go env GOARCH) \
+   emake
+}
+
+src_install() {
+   dodoc src/${EGO_PN}/{CHANGELOG.md,CONTRIBUTING.md,README.md}
+   newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+   newconfd "${FILESDIR}/${PN}.confd" "${PN}"
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/${PN}.logrotated" "${PN}"
+   systemd_dounit "${FILESDIR}/${PN}.service"
+
+   keepdir /etc/${PN}.d
+   insinto /etc/${PN}.d
+   doins "${FILESDIR}/"*.json.example
+
+   keepdir /var/log/${PN}
+   fowners ${PN}:${PN} /var/log/${PN}
+
+   dobin bin/${PN}
+}



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

2018-11-16 Thread Manuel Rüger
commit: 92d2cd4866a558a0337c7985388302452d7c0836
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Nov 16 10:36:59 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Nov 16 10:36:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92d2cd48

app-admin/consul: Version bump to 1.4.0

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

 app-admin/consul/Manifest|  1 +
 app-admin/consul/consul-1.4.0.ebuild | 69 
 2 files changed, 70 insertions(+)

diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest
index 036382bef7e..a11f4e9a3a7 100644
--- a/app-admin/consul/Manifest
+++ b/app-admin/consul/Manifest
@@ -1,3 +1,4 @@
 DIST consul-1.2.2.tar.gz 15789375 BLAKE2B 
8a0af370568f6fcb90334b147bd84e479efb682ed6c58d63dd56f3554f9e6538d37963ac825bb8598eef8948492feec688b8266733223d1557dbce9704daef35
 SHA512 
715f69e7b36d0070ea4e602dc50f51aa2547db07cce985da79d1e201c6e84dade8a7c810e3602f88cfbd30e063669076954d2541810a18a0c9e7c9ff8458
 DIST consul-1.2.3.tar.gz 18428593 BLAKE2B 
14582bf9668e4f2a1c8c443cb01d7b9780c9bc414ff226907335f3873c135b77566898649d16b352ef21ee9300c290338f59672c5fb2b187694aea97b8735dec
 SHA512 
71a7dbfc031df4a96faf2ddd829f289e96adefd0e0087208bbdd26e742a24e3da05fceea4181eb915703ad3323ed5b02bf74eb3fdfbed1e9a1afa2f74acb2a34
 DIST consul-1.3.0.tar.gz 19423317 BLAKE2B 
1db4de2d24be31b2d889b6f49cae33f2719080cf35df15c12c09159a57b9930cbe7204f8a35bbfe0f77145f562e3fe7d224785dde1f7b0cc3f0086e95e1316ef
 SHA512 
b05b0ed316e10f45b83839812fb3394153e8bed604d35f0a983d33fcad3012a3b1872411b3034dbba54dd0ba000e737f18f7f351ed57fe737b0f365bdfe92f2c
+DIST consul-1.4.0.tar.gz 19685523 BLAKE2B 
df999d29fdab59b41d8e7ea4ec977a35aa7ec5b7daa293a75a39f695e3a75b1748b5bb584be9d9d5b3e1f0adac9626613a04949ff711ac713e2741cd2f9ad127
 SHA512 
a9f253ef5baa4e43800a0982ecb6893bf9487775cdcbe3a17bc7c45d601b6dca4e4c398ae3b70cdc1880577dbe1504d1a1f0cb702a1dd8c98b108e059fc721a0

diff --git a/app-admin/consul/consul-1.4.0.ebuild 
b/app-admin/consul/consul-1.4.0.ebuild
new file mode 100644
index 000..e1763349f0d
--- /dev/null
+++ b/app-admin/consul/consul-1.4.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit golang-vcs-snapshot systemd user
+GIT_COMMIT="0bddfa2"
+KEYWORDS="~amd64"
+EGO_PN="github.com/hashicorp/consul"
+DESCRIPTION="A tool for service discovery, monitoring and configuration"
+HOMEPAGE="https://www.consul.io;
+SRC_URI="https://github.com/hashicorp/consul/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MPL-2.0"
+IUSE=""
+
+RESTRICT="test"
+
+DEPEND="dev-go/gox
+   >=dev-lang/go-1.9:=
+   >=dev-go/go-tools-0_pre20160121"
+RDEPEND=""
+
+pkg_setup() {
+   enewgroup consul
+   enewuser consul -1 -1 /var/lib/${PN} consul
+}
+
+src_prepare() {
+   default
+
+   sed -e 's:go get -u -v $(GOTOOLS)::' \
+   -e 's:vendorfmt dev-build:dev-build:' \
+   -i "src/${EGO_PN}/GNUmakefile" || die
+}
+
+src_compile() {
+   # The dev target sets causes build.sh to set appropriate XC_OS
+   # and XC_ARCH, and skips generation of an unused zip file,
+   # avoiding a dependency on app-arch/zip.
+   GOPATH="${S}" \
+   GOBIN="${S}/bin" \
+   GIT_DESCRIBE="v${PV}" \
+   GIT_DIRTY="" \
+   GIT_COMMIT="${GIT_COMMIT}" \
+   emake -C "src/${EGO_PN}" dev-build
+}
+
+src_install() {
+   local x
+
+   dobin bin/consul
+
+   keepdir /etc/consul.d
+   insinto /etc/consul.d
+   doins "${FILESDIR}/"*.json.example
+
+   for x in /var/{lib,log}/${PN}; do
+   keepdir "${x}"
+   fowners consul:consul "${x}"
+   done
+
+   newinitd "${FILESDIR}/consul.initd" "${PN}"
+   newconfd "${FILESDIR}/consul.confd" "${PN}"
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}/${PN}.logrotated" "${PN}"
+   systemd_dounit "${FILESDIR}/consul.service"
+}



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

2018-11-16 Thread Manuel Rüger
commit: bdeb78a3a6467119c7c59fda1ad927c8036245fd
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Nov 16 10:25:57 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Nov 16 10:25:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdeb78a3

dev-util/drone-cli: Version bump to 1.0.1

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

 dev-util/drone-cli/Manifest   |  1 +
 dev-util/drone-cli/drone-cli-1.0.1.ebuild | 34 +++
 2 files changed, 35 insertions(+)

diff --git a/dev-util/drone-cli/Manifest b/dev-util/drone-cli/Manifest
index 365e7ac70bf..e08e5db652b 100644
--- a/dev-util/drone-cli/Manifest
+++ b/dev-util/drone-cli/Manifest
@@ -1,3 +1,4 @@
 DIST drone-cli-0.7.0_p20170717.tar.gz 1148862 BLAKE2B 
a631b546917c542dc9395a2390a8f22c6f041314ece6cd185fbfd312a636040098c7f50f1ae07bedaba5ca1d718ad2a6741a24322ad0d9c291addf11b9b74035
 SHA512 
f901b9409354c9dc3bf21024f82a188e789c8ab05e8bca179cc77069baf024f40ce13995230f48d5c40e7485ab31bb3f22fae0ca68a8669295cdfb11dbb1b168
 DIST drone-cli-0.8.6.tar.gz 1778122 BLAKE2B 
040c93386330990a5f4e38f6ca353226145a99d14adc141243900fb4cd3d28bc87665bc6f466b31cd1e5561df31edd378049f0e38e28006206c3cf02ac0d5c21
 SHA512 
51eb538d5571b2e48722e4e4de6f9d6fc67375e55284f6bdec5c4c495a67e0808f9d158ba925849353bdff7903df2ecae7a073d88185fc607d45383f4f2f5c0d
 DIST drone-cli-1.0.0.tar.gz 2619027 BLAKE2B 
9941607393ff86682dfb3cdf27869ecd38ea83298587c54fcfa80d3d48a9ce2b5248251ab22489b711d192a0ee1b0960d40ce68c7a475c45d4385b7106c7f20d
 SHA512 
40519096befec078f653c9d91440a942bd974da528c6b900cd613a88c21468b56c85fbb3d581e32a1a9d572b098e78549d7fe9f23a05faff1acd46c1266a2081
+DIST drone-cli-1.0.1.tar.gz 2619641 BLAKE2B 
6c87defffe75e9bd67a67e9ccc4285cc35bbb74bef742d29d47bc8f1a9099d56040637431380f0c83b4e469fa7478de1860bc62b6baa99c3b70f963065aba1b2
 SHA512 
0fcafa7e71d1b2e2f94dcecd641dc5225d32f149966ede653434630c70b865f8beb134a926e1d39faf82626607fdccbd93d84b0d3a97aa12c73e201a5b916208

diff --git a/dev-util/drone-cli/drone-cli-1.0.1.ebuild 
b/dev-util/drone-cli/drone-cli-1.0.1.ebuild
new file mode 100644
index 000..76b00a393dc
--- /dev/null
+++ b/dev-util/drone-cli/drone-cli-1.0.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGO_PN="github.com/drone/drone-cli"
+
+inherit golang-build golang-vcs-snapshot
+
+ARCHIVE_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Command-line interface for Drone"
+HOMEPAGE="https://github.com/drone/drone-cli;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+RESTRICT="test"
+
+RDEPEND="!!

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

2018-11-16 Thread Manuel Rüger
commit: 44559f74d3a67c88361b350a33ae179db1dece6f
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Nov 16 10:17:30 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Nov 16 10:17:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44559f74

dev-util/drone: Version bump to 0.8.9

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

 dev-util/drone/Manifest   |  1 +
 dev-util/drone/drone-0.8.9.ebuild | 52 +++
 2 files changed, 53 insertions(+)

diff --git a/dev-util/drone/Manifest b/dev-util/drone/Manifest
index ab0ec94dfc5..6470a0bd41a 100644
--- a/dev-util/drone/Manifest
+++ b/dev-util/drone/Manifest
@@ -3,6 +3,7 @@ DIST drone-0.8.5.tar.gz 4766128 BLAKE2B 
11c60896a8aced0aa6303ec049755192e473f742
 DIST drone-0.8.6.tar.gz 4767466 BLAKE2B 
708fbe2fb4e6a647e8fc370c39c71fdbdbd67abd28a18348985831c3bc8dee2880c64a2be01ce50c3dbe56d27ee89605ee2fef00e643a66c641a57f664867cf8
 SHA512 
2227bad9a0067e9c235c3a30677032b4b54488727e44c9caa6bd7dcd804338ed62d8f76879310499e7063d7e84d2b23a6b389f6a60a43f138ed2c83d8df07435
 DIST drone-0.8.7.tar.gz 4770079 BLAKE2B 
bc2a71c09fa7d1086899175bc7042e8bf57833088ec7d1edccf26385f4a6c16335d8ba56af471697c86d0e19a2ff838e69eaa9e082d64cb5b6029d7c84c6e425
 SHA512 
1451de48a9397b877a7ef668d15092ed1d0ee7c899bc025ff16fbbf9d78c2807d6989685a39bca03070f9b1188cd9ea23640dc2b7f2389d13228d178923dc7ed
 DIST drone-0.8.8.tar.gz 4766250 BLAKE2B 
27f99b2f6889cb9ea89b87b9a435595d73180ae0897710f4345a1816875023af343dc6948327b0c327b5a7f37db07d55fca766c1374951b273a3f872497f2e53
 SHA512 
db85df0974737ce31f72243b2269fe7cce8d39a3e7bd7779841e398b85ccd97a512fa50cd9f60be36bd81eb7c081d282fccc4b35e2527ae65283ff56c27b111d
+DIST drone-0.8.9.tar.gz 4767398 BLAKE2B 
7c32f01a692e1a29e8b2e602a804bea3997efe01257f2fe5aa39f8d7f321f42f714b909a470f2ec7ee6d69bfdc2f06f75cb990e98769502b68725adc43ebd579
 SHA512 
97b773356bb770a8ca060e4696ba0d288a7204d0cffd966d1124a71ec1110981ac7cdce9ce4df04b8ce33faa745f853d59502b0bce5fc708435379924e3850ac
 DIST github.com-drone-drone-ui-2910d0ee662816a2463d31f0988b1ecccd0410b5.tar.gz 
167172 BLAKE2B 
26d5aadcaee776c073bc5b4514f5c7b2925a7dab25a22162c10464f16a18e14cb564012b2b13ca929d7c5156dc5790d0d0659ccef8d8424ee82be2410ce0d211
 SHA512 
d4c6fbeba9ae5c55533a76fdcf6c251516aa4f8c650f49add7e9392d22a131438bd829670df801495d361417ec12cce07e9d9c28aacd1ce1adc0024408cf3cca
 DIST github.com-drone-drone-ui-4d60e46e3938c277e90de404cc6236530beaab3d.tar.gz 
229886 BLAKE2B 
3681f8fc5f380da3c7ab6dd5f34903f44fbe1ee5b309f5d1db25cd72347690249943814bd9e1ea3f4eaf04b14247bbf53e9a817dcfa5ad0e0bbc7d5d1585d2ea
 SHA512 
4bd9909b82b31ed0b872d39da79fea161fdd1408d9da262b8a92c8cb884caf3dceb953ab522daaf8c96747cf4b22724e8e1d6234d80f2859a9ddd436fb513345
 DIST github.com-drone-drone-ui-e7597b5234814a2c2f2a7f489b631a76649c335a.tar.gz 
230464 BLAKE2B 
23641867938e85a716a8628209892861578d519e49b9e3aa70e08d9099b4628a744e5bb8bb3f622640ef1438eac50df21b5c32064328165c4aafc2496ca54361
 SHA512 
6f997ec14fa59859436ed995d52cce2105abab5aceca21c6740869c651078f1ffdcaff8b5a117d624d624cf47382f89824f7868dd8e8df3598d6e632db341212

diff --git a/dev-util/drone/drone-0.8.9.ebuild 
b/dev-util/drone/drone-0.8.9.ebuild
new file mode 100644
index 000..c39a14f6176
--- /dev/null
+++ b/dev-util/drone/drone-0.8.9.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGO_PN="github.com/drone/drone"
+EGIT_COMMIT="768ed784bd74b0e0c2d8d49c4c8b6dca99b25e96"
+EGO_VENDOR=( "github.com/drone/drone-ui 
e7597b5234814a2c2f2a7f489b631a76649c335a"
+   "github.com/golang/protobuf aa810b61a9c79d51363740d207bb46cf8e620ed5"
+   "golang.org/x/net 9b4f9f5ad5197c79fd623a3638e70d8b26cef344 
github.com/golang/net"
+   )
+
+inherit golang-build golang-vcs-snapshot user
+
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="A Continuous Delivery platform built on Docker, written in Go"
+HOMEPAGE="https://github.com/drone/drone;
+SRC_URI="${ARCHIVE_URI}
+   ${EGO_VENDOR_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-go/go-bindata
+   dev-go/go-bindata-assetfs:="
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 /var/lib/drone ${PN}
+}
+
+src_compile() {
+   pushd src || die
+   GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" go build -v -ldflags 
"-extldflags '-static' -X 
github.com/drone/drone/version.VersionDev=build.${PV}.${EGIT_COMMIT:0:7}" -o 
release/drone-server ${EGO_PN}/cmd/drone-server || die
+   GOPATH="${WORKDIR}/${P}" go build -v -ldflags "-X 
github.com/drone/drone/version.VersionDev=build.${PV}.${EGIT_COMMIT:0:7}" -o 
release/drone-agent ${EGO_PN}/cmd/drone-agent || die
+   popd || die
+}
+
+src_install() {
+   dobin src/release/drone-{agent,server}
+   dodoc src/github.com/drone/drone/README.md

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

2018-11-16 Thread Alon Bar-Lev
commit: a9ff70d29822d62bec828d1b49a440edc8514de8
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Fri Nov 16 10:11:01 2018 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Fri Nov 16 10:11:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9ff70d2

dev-libs/xmlsec: version bump

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

 dev-libs/xmlsec/Manifest |  1 +
 dev-libs/xmlsec/xmlsec-1.2.27.ebuild | 65 
 2 files changed, 66 insertions(+)

diff --git a/dev-libs/xmlsec/Manifest b/dev-libs/xmlsec/Manifest
index 3c8103ad8a7..7b78da91ee1 100644
--- a/dev-libs/xmlsec/Manifest
+++ b/dev-libs/xmlsec/Manifest
@@ -1 +1,2 @@
 DIST xmlsec1-1.2.26.tar.gz 1922183 BLAKE2B 
8cb8557a7d24df756655a7dfa45091445adc89cb67169a7620d9d1116f3fb3d982ea45199a53475e29300478c07e8e1168cec79cf9c3b5ff1dd6c840123b982b
 SHA512 
1e3dc3c8c192eefee7b055787bef52ce3bcfafa786224f68af065aa45f4d7da93232da973359b3135615c5981ad4df7c124047d3934e552ab78439472685a7a4
+DIST xmlsec1-1.2.27.tar.gz 2013651 BLAKE2B 
fa46a25e3aaef432134d1c98a0e7bf0aba83f2ef6d1aff3774d6d37c5f6f392d1c2c11a0fe433ee910c39b56400c96b74ab061577948622b14a1116fa1ec2947
 SHA512 
01f7231d7d7ac8037aecc1f922acc572cbfe0903abf5bd5879d836438c36684e23402b803d20806fff6b1cdc5ad9af114d1341b10b336f71c0bce28b4716f920

diff --git a/dev-libs/xmlsec/xmlsec-1.2.27.ebuild 
b/dev-libs/xmlsec/xmlsec-1.2.27.ebuild
new file mode 100644
index 000..be5606ab62e
--- /dev/null
+++ b/dev-libs/xmlsec/xmlsec-1.2.27.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Command line tool for signing, verifying, encrypting and 
decrypting XML"
+HOMEPAGE="https://www.aleksey.com/xmlsec;
+SRC_URI="https://www.aleksey.com/xmlsec/download/${PN}1-${PV}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc gcrypt gnutls libressl nss +openssl static-libs"
+REQUIRED_USE="|| ( gcrypt gnutls nss openssl )
+   gnutls? ( gcrypt )"
+
+RDEPEND=">=dev-libs/libxml2-2.7.4
+   >=dev-libs/libxslt-1.0.20
+   gcrypt? ( >=dev-libs/libgcrypt-1.4.0:0 )
+   gnutls? ( >=net-libs/gnutls-2.8.0 )
+   nss? (
+   >=dev-libs/nspr-4.4.1
+   >=dev-libs/nss-3.9
+   )
+   openssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+S="${WORKDIR}/${PN}1-${PV}"
+
+src_prepare() {
+   default
+   # conditionally install extra documentation
+   if ! use doc ; then
+   sed -i '/^SUBDIRS/s/docs//' Makefile.am || die
+   eautoreconf
+   fi
+}
+
+src_configure() {
+   econf \
+   --enable-pkgconfig \
+   --with-html-dir=/usr/share/doc/${PF}/html \
+   $(use_enable static-libs static) \
+   $(use_with gcrypt gcrypt "") \
+   $(use_with gnutls gnutls "") \
+   $(use_with nss nspr "") \
+   $(use_with nss nss "") \
+   $(use_with openssl openssl "") \
+   $(use_enable openssl aes)
+}
+
+src_test() {
+   emake TMPFOLDER="${T}" check
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-nntp/tin/

2018-11-16 Thread Michał Górny
commit: 34065b40cb672ba22874add5ef25838fd66d7041
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 13 12:11:06 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 16 09:07:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34065b40

net-nntp/tin: Make USE=mime local

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

 net-nntp/tin/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-nntp/tin/metadata.xml b/net-nntp/tin/metadata.xml
index ca0ce1646b9..54d0b1a0158 100644
--- a/net-nntp/tin/metadata.xml
+++ b/net-nntp/tin/metadata.xml
@@ -6,5 +6,6 @@
 Enable Cancel-Lock header functionality (also 
enables USE=evil)
 Enable app-crypt/gnupg support
 Enable the display off posting etiquettes
+Add MIME support
 
 



[gentoo-commits] repo/gentoo:master commit in: net-print/lprng/

2018-11-16 Thread Michał Górny
commit: 07ae7317b7ed3ce8a574ba7d8d4101160e210c50
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 13 11:51:17 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 16 09:08:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07ae7317

net-print/lprng: Make USE=foomaticdb local

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

 net-print/lprng/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/net-print/lprng/metadata.xml b/net-print/lprng/metadata.xml
index 568181659c3..4aaa7226a2d 100644
--- a/net-print/lprng/metadata.xml
+++ b/net-print/lprng/metadata.xml
@@ -9,4 +9,8 @@
print...@gentoo.org
Gentoo Printing Project

+   
+   Add support for the foomatic printing
+   driver database
+   
 



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

2018-11-16 Thread Michał Górny
commit: 688b384930947a0f23e5e0abf6a125f7944584c1
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 16 09:08:41 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 16 09:08:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=688b3849

use.desc: Remove now-local foomaticdb, mime, sybase

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

 profiles/use.desc | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/profiles/use.desc b/profiles/use.desc
index 3d32359f137..74cdcf1de8d 100644
--- a/profiles/use.desc
+++ b/profiles/use.desc
@@ -94,7 +94,6 @@ firebird - Add support for the Firebird relational database
 flac - Add support for FLAC: Free Lossless Audio Codec
 fltk - Add support for the Fast Light Toolkit gui interface
 fontconfig - Support for configuring and customizing font access via 
media-libs/fontconfig
-foomaticdb - Add support for the foomatic printing driver database
 fortran - Add support for fortran
 freetds - Add support for the TDS protocol to connect to MSSQL/Sybase databases
 freewnn - Add support for FreeWnn kana to kanji conversion engine
@@ -194,7 +193,6 @@ mhash - Add support for the mhash library
 migemo - Enable migemo support for Japanese
 mikmod - Add libmikmod support to allow playing of SoundTracker-style music 
files
 milter - Add sendmail mail filter (milter) support
-mime - Add MIME support
 minimal - Install a very minimal build (disables, for example, plugins, fonts, 
most drivers, non-critical features)
 mmap - Add mmap (memory map) support
 mms - Support for Microsoft Media Server (MMS) streams
@@ -319,7 +317,6 @@ subversion - Enable subversion (version control system) 
support
 suid - Enable setuid root program, with potential security risks
 svg - Add support for SVG (Scalable Vector Graphics)
 svga - Add support for SVGAlib (graphics library)
-sybase - Add support for the Sybase SQL Database Server
 symlink - Force kernel ebuilds to automatically update the /usr/src/linux 
symlink
 syslog - Enable support for syslog
 systemd - Enable use of systemd-specific libraries and features like socket 
activation or session tracking



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

2018-11-16 Thread Michał Górny
commit: 9817d94c0c886bc634e61e772a295e45288ebc6e
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 13 12:00:52 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 16 09:07:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9817d94c

dev-db/sqldeveloper: Make USE=sybase local

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

 dev-db/sqldeveloper/metadata.xml | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-db/sqldeveloper/metadata.xml b/dev-db/sqldeveloper/metadata.xml
index 684b678e70f..f58ed544b3d 100644
--- a/dev-db/sqldeveloper/metadata.xml
+++ b/dev-db/sqldeveloper/metadata.xml
@@ -1,6 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
+   
+   
+   Add support for the Sybase SQL Database
+   Server
+   
 
-



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

2018-11-16 Thread Michał Górny
commit: f6b70e23c2627472c08c0765c10d6973bdafb4c9
Author: Pedro Arizmendi  gmail  com>
AuthorDate: Fri Nov 16 08:43:28 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 16 08:56:26 2018 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=f6b70e23

repositories: Remove silmano-overlay

Closes: https://github.com/gentoo/api-gentoo-org/pull/173
Signed-off-by: Michał Górny  gentoo.org>

 files/overlays/repositories.xml | 14 --
 1 file changed, 14 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 4e02b59..6b35ba1 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -4284,20 +4284,6 @@
 g...@github.com:optiz0r/gentoo-overlay.git
 https://github.com/optiz0r/gentoo-overlay/commits/master.atom
   
-  
-silmano
-Peter's personal overlay
-https://cgit.gentoo.org/user/silmano.git/
-
-  silm...@gmail.com
-  Pedro Arizmendi
-
-https://anongit.gentoo.org/git/user/silmano.git
-git://anongit.gentoo.org/user/silmano.git
-git+ssh://g...@git.gentoo.org/user/silmano.git
-https://cgit.gentoo.org/user/silmano.git/atom/
-
-  
   
 simonvanderveldt
 Personal Gentoo overlay focused on music production 
and engineering applications



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

2018-11-16 Thread Michał Górny
commit: 47493cdfef862c4d40b33e9093f9e2f170bb3b90
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 16 08:54:11 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 16 08:54:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47493cdf

package.mask: Unmask dev-util/mutrace as binutils-config is fixed

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

 profiles/package.mask | 5 -
 1 file changed, 5 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index dc60b91d179..62acad36590 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -811,11 +811,6 @@ sys-kernel/hardened-sources
 # upstream.
 >=app-text/jabref-bin-4.0
 
-# Pacho Ramos  (14 Jul 2017)
-# Randomly broken due to sys-devel/binutils-config bug (#584296).
-# Unmask when it is finally fixed, so people can build the package.
-dev-util/mutrace
-
 # Hans de Graaff  (05 Jun 2017)
 # Bundles obsolete and vulnerable webkit version.
 # Upstream has stopped development and recommends using



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

2018-11-16 Thread Michał Górny
commit: 9ceb4952fbb9402c0b31b7d2b606e8a8fe47d411
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Nov 16 07:42:01 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Nov 16 07:59:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ceb4952

app-admin/systemrescuecd-x86: Bump to 5.3.2

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

 app-admin/systemrescuecd-x86/Manifest  |  1 +
 .../systemrescuecd-x86-5.3.2.ebuild| 61 ++
 2 files changed, 62 insertions(+)

diff --git a/app-admin/systemrescuecd-x86/Manifest 
b/app-admin/systemrescuecd-x86/Manifest
index 9edf7db3501..142edad5865 100644
--- a/app-admin/systemrescuecd-x86/Manifest
+++ b/app-admin/systemrescuecd-x86/Manifest
@@ -34,3 +34,4 @@ DIST systemrescuecd-x86-5.2.1.iso 570523648 BLAKE2B 
9bb6b2ff7b9930f658baddbf60ef
 DIST systemrescuecd-x86-5.2.2.iso 572006400 BLAKE2B 
2cc95acc529ae8e0525664ffbdfefaf6e4513e8135fa6af120121b0b7930b0203bd17d5d70ccafacfe0064bb8615f45aa22b6e6e3fcee8a005a0315fd9b5cf62
 SHA512 
7dd1ccd63775e35f6589808416468c4a9314f4a7a5d0cb1f2bc34ffb9eef3a450b0da244dfc9e325d828c39404c0cdcce27cc990eade33762c17a1e32f8db9b5
 DIST systemrescuecd-x86-5.3.0.iso 607547392 BLAKE2B 
92aa82e54794adc1705111776b4df21bd39f96bdbed1c6e05bb24b01fd1a12d92fb1209241289f89adca7885fd441ddd61639d5168978b95dd0784faec65f32a
 SHA512 
082a82a2882b62012944184107b2655de6c89f5a6c26145a3edb2b5a54ff6aad6a4ef43edc0468e62895daf4d5365d2722ffa8bf4f2f8e60f1ee7d9a727b013d
 DIST systemrescuecd-x86-5.3.1.iso 573913088 BLAKE2B 
3c4da5777d05999e0b3e30b01dc821a4e840bb22d513fa4bfb9fdf601b9811676be8cee7ed9aae0aa7b971916add500b39172964384a2a07b3ed1cf5b946ba04
 SHA512 
1038622e148995450e61cd27f65af2ecb929ec8d0367fec3dbde01410a33596ec8f183d79ab931595c21deb597d60dae45ad516d8e1f00f32013729bdcd53ec8
+DIST systemrescuecd-x86-5.3.2.iso 585920512 BLAKE2B 
e68bb4e765359ac0e8124c9cb6090ed2ec9340a09e3ebafbcaa4acc175f8afe3985a57f193cd4be4192dfb23a6042a68328a29bbfb962f73fbe010c32d66e020
 SHA512 
c9da6a63556836bd38f7072b49a5408f2f9e5fa310dbae3f229c9b7af4fe6e073cdfc95b942bc1a6d9c42d41527fc54e8c6c15379082bc3ee0f025da80b01e5a

diff --git a/app-admin/systemrescuecd-x86/systemrescuecd-x86-5.3.2.ebuild 
b/app-admin/systemrescuecd-x86/systemrescuecd-x86-5.3.2.ebuild
new file mode 100644
index 000..7ae127d5dec
--- /dev/null
+++ b/app-admin/systemrescuecd-x86/systemrescuecd-x86-5.3.2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="The .iso image of SystemRescueCD rescue disk, x86 (+ amd64) 
variant"
+HOMEPAGE="http://www.sysresccd.org/;
+# Large ISO mirroring explicitly approved by infra in bug #588766
+SRC_URI="mirror://sourceforge/systemrescuecd/sysresccd-${PN#*-}/${PV}/${P}.iso"
+
+LICENSE="GPL-2"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+isohybrid"
+
+DEPEND="isohybrid? ( >=sys-boot/syslinux-4 )"
+
+S=${WORKDIR}
+
+src_install() {
+   insinto "/usr/share/${PN%-*}"
+   doins "${DISTDIR}/${P}.iso"
+
+   if use isohybrid; then
+   set -- isohybrid -u "${ED}usr/share/${PN%-*}/${P}.iso"
+   echo "${@}"
+   "${@}" || die "${*} failed"
+   fi
+}
+
+pkg_postinst() {
+   local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
+
+   # no version newer than ours? we're the newest!
+   if ! has_version ">${CATEGORY}/${PF}"; then
+   ln -f -s -v "${P}.iso" "${f}" || die
+   fi
+}
+
+pkg_postrm() {
+   local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
+
+   # if there is no version newer than ours installed
+   if ! has_version ">${CATEGORY}/${PF}"; then
+   # and we are truly and completely uninstalled...
+   if [[ ! ${REPLACED_BY_VERSION} ]]; then
+   # then find an older version to set the symlink to
+   local newest_version=$(best_version 
"<${CATEGORY}/${PF}")
+
+   if [[ ${newest_version} ]]; then
+   # update the symlink
+   ln -f -s -v "${newest_version%-r*}.iso" "${f}" 
|| die
+   else
+   # last version removed? clean up the symlink
+   rm -v "${f}" || die
+   # and the parent directory
+   rmdir "${f%/*}" || die
+   fi
+   fi
+   fi
+}