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

2019-03-15 Thread Michael Palimaka
commit: b32fc0e4740793faf9c8be3cc07bc14903f9dfa9
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Mar 16 05:26:33 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Mar 16 05:26:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32fc0e4

sys-auth/elogind: version bump 241.1

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

 sys-auth/elogind/Manifest   |   1 +
 sys-auth/elogind/elogind-241.1.ebuild   | 128 
 sys-auth/elogind/files/elogind-241.1-docs.patch |  24 +
 3 files changed, 153 insertions(+)

diff --git a/sys-auth/elogind/Manifest b/sys-auth/elogind/Manifest
index 77f0818a40b..b1cbfea8bc4 100644
--- a/sys-auth/elogind/Manifest
+++ b/sys-auth/elogind/Manifest
@@ -1 +1,2 @@
 DIST elogind-239.3.tar.gz 1171080 BLAKE2B 
95d158a861641415f2c6ea3648bafd32ee3da80b0258e33fb7b88cf834f42c4d76b634af055f81dfba7c6477423edf73ad7c0d79e5e3608938e90a713bdff00e
 SHA512 
61399f82d6a93d77e0984dc67b9c7ebdda27ba2254810be9725a09f91fde41c66adb53a5fe7989f53d6b156b70f147471c89fa64a432bccc482e8057a0cddf84
+DIST elogind-241.1.tar.gz 1399094 BLAKE2B 
d445f4db98da88ece22c1a61e846d3be4eeb4bb76272c1cf895f50d32b6bb0bf471b9cbc5b4760730fa4cfb17db518feb9fceb951eb4e1a2b19f4decfde12b52
 SHA512 
1bc058da23a595e386b9472579cc9f8247375f5600a511a929a50011adab9a6a36c041c2ab71eb545098d4baf5e35b0231893bfecc1349730316a2b6bda69f11

diff --git a/sys-auth/elogind/elogind-241.1.ebuild 
b/sys-auth/elogind/elogind-241.1.ebuild
new file mode 100644
index 000..7e8c5b8fa20
--- /dev/null
+++ b/sys-auth/elogind/elogind-241.1.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+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 ~arm64 ~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}/${PN}-241.1-docs.patch"
+)
+
+pkg_setup() {
+   local CONFIG_CHECK="~CGROUPS ~EPOLL ~INOTIFY_USER ~SIGNALFD ~TIMERFD"
+
+   use kernel_linux && linux-info_pkg_setup
+}
+
+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)
+   --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+=( src/libelogind/sd-bus/GVARIANT-SERIALIZATION )
+
+   meson_src_install
+
+   newinitd "${FILESDIR}"/${PN}.init ${PN}
+
+   sed -e "s/@libdir@/$(get_libdir)/" "${FILESDIR}"/${PN}.conf.in > 
${PN}.conf || die
+   newconfd ${PN}.conf ${PN}
+}
+
+pkg_postinst() {
+   if [[ "$(rc-config list boot | grep elogind)" != "" ]]; then
+   elog "elogind is currently started from boot runlevel."
+   elif [[ "$(rc-config list default | 

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

2019-03-15 Thread Michael Palimaka
commit: 46c1857aaf0c727d9a9b31bf0420bd1b84b370d2
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Mar 16 05:05:53 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Mar 16 05:26:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46c1857a

sys-auth/elogind: add ~arm64 keyword

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

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

diff --git a/sys-auth/elogind/elogind-239.3.ebuild 
b/sys-auth/elogind/elogind-239.3.ebuild
index bfab1c2cf5a..6be102becc3 100644
--- a/sys-auth/elogind/elogind-239.3.ebuild
+++ b/sys-auth/elogind/elogind-239.3.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 ~arm64 x86"
 IUSE="+acl debug doc +pam +policykit selinux"
 
 COMMON_DEPEND="



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

2019-03-15 Thread Michael Palimaka
commit: c789b291decb8bbe525c08839d796f8df81bf57c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Mar 16 05:05:09 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Mar 16 05:26:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c789b291

sys-auth/elogind: remove 238.2

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

 sys-auth/elogind/Manifest  |   1 -
 sys-auth/elogind/elogind-238.2.ebuild  | 127 -
 .../elogind/files/elogind-239.3-broken-test.patch  |  23 
 3 files changed, 151 deletions(-)

diff --git a/sys-auth/elogind/Manifest b/sys-auth/elogind/Manifest
index d42ef2e28f3..77f0818a40b 100644
--- a/sys-auth/elogind/Manifest
+++ b/sys-auth/elogind/Manifest
@@ -1,2 +1 @@
-DIST elogind-238.2.tar.gz 1075847 BLAKE2B 
17e4d8ffabb65a210f34076223e502c9019a7fa639f6cc12b1c8a0e186d8a6e97f115cd68487c86470915a8208dead6830577d2da3ffd85ed2e12c3a699ef2c5
 SHA512 
c66dd514d7c708a1d1c52ac9f25f34af839c4d4ff452302b40eb95c040c1d3d8d238b4e35c33d81af71f6aac22c8793951d91d005e6595e02124edb976baf640
 DIST elogind-239.3.tar.gz 1171080 BLAKE2B 
95d158a861641415f2c6ea3648bafd32ee3da80b0258e33fb7b88cf834f42c4d76b634af055f81dfba7c6477423edf73ad7c0d79e5e3608938e90a713bdff00e
 SHA512 
61399f82d6a93d77e0984dc67b9c7ebdda27ba2254810be9725a09f91fde41c66adb53a5fe7989f53d6b156b70f147471c89fa64a432bccc482e8057a0cddf84

diff --git a/sys-auth/elogind/elogind-238.2.ebuild 
b/sys-auth/elogind/elogind-238.2.ebuild
deleted file mode 100644
index 8717f7ddfe8..000
--- a/sys-auth/elogind/elogind-238.2.ebuild
+++ /dev/null
@@ -1,127 +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}/${PN}-238.1-docs.patch" )
-
-pkg_setup() {
-   local CONFIG_CHECK="~CGROUPS ~EPOLL ~INOTIFY_USER ~SIGNALFD ~TIMERFD"
-
-   use kernel_linux && linux-info_pkg_setup
-}
-
-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-extra=$(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+=( src/libelogind/sd-bus/GVARIANT-SERIALIZATION )
-
-   meson_src_install
-
-   newinitd "${FILESDIR}"/${PN}.init ${PN}
-
-   sed -e "s/@libdir@/$(get_libdir)/" "${FILESDIR}"/${PN}.conf.in > 
${PN}.conf || die
-   newconfd ${PN}.conf ${PN}
-}
-
-pkg_postinst() {
-   if [[ "$(rc-config list boot | grep elogind)" != "" ]]; then
-   elog "elogind is currently started from boot runlevel."
- 

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

2019-03-15 Thread Michael Palimaka
commit: 99166c6c9252da84182358815688bb24202147de
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Mar 16 05:00:23 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Mar 16 05:00:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99166c6c

net-analyzer/testssl: version bump 2.9.5_p7

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

 net-analyzer/testssl/Manifest|  1 +
 net-analyzer/testssl/testssl-2.9.5_p7.ebuild | 74 
 2 files changed, 75 insertions(+)

diff --git a/net-analyzer/testssl/Manifest b/net-analyzer/testssl/Manifest
index e5f73e08e9f..5d7991e9fe1 100644
--- a/net-analyzer/testssl/Manifest
+++ b/net-analyzer/testssl/Manifest
@@ -1 +1,2 @@
 DIST testssl-2.9.5_p5.tar.gz 8955523 BLAKE2B 
dcafb0931ddfb9d653acf79f72d2e30b2acc4a80246ecb3f26eaa35d4a69d5af65123005de34d09c563978593450895bf451b866182fd3ea38bdb121fb8e9385
 SHA512 
8a26989e1b8f45a2ac25efab500c89eeec2dbdbb9c0af715a61433ce0737ed69221df09a9554b6ae4415081a66ef4f6afd44c92405afefe4a810cb4375988700
+DIST testssl-2.9.5_p7.tar.gz 8955971 BLAKE2B 
6ca3bc60445c9448c3dc24ee7262e57bc03a2c686bbeebcc1cc850edfa652538c1ba5365189c27e78f0cb977e68d2ea1a9f940d47cd0a53402d1fa9a31a33483
 SHA512 
35ab900b84db8a0a210cb9ce8bb794ff7e8cddd5c85a151083bc76eba834dce37597b29b6235fcf2ce37b004dd295b1756e01374a4943e1e2ed0d2a8cf8761f6

diff --git a/net-analyzer/testssl/testssl-2.9.5_p7.ebuild 
b/net-analyzer/testssl/testssl-2.9.5_p7.ebuild
new file mode 100644
index 000..72ba2c885af
--- /dev/null
+++ b/net-analyzer/testssl/testssl-2.9.5_p7.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN}.sh"
+MY_PV="${PV/_p/-}"
+
+DESCRIPTION="Tool to check TLS/SSL cipher support"
+HOMEPAGE="https://testssl.sh/;
+SRC_URI="https://github.com/drwetter/${MY_PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2 bundled-openssl? ( openssl )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="bundled-openssl kerberos"
+
+RDEPEND="
+   app-shells/bash[net]
+   net-dns/bind-tools
+   sys-apps/util-linux
+   sys-libs/ncurses:0
+   sys-process/procps
+   bundled-openssl? (
+   kerberos? (
+   sys-libs/zlib
+   virtual/krb5
+   )
+   )
+   !bundled-openssl? ( dev-libs/openssl:0 )
+"
+
+S=${WORKDIR}/${MY_PN}-${MY_PV}
+
+QA_PREBUILT="opt/${PN}/*"
+
+pkg_setup() {
+   if use amd64; then
+   if use kerberos; then
+   BUNDLED_OPENSSL="openssl.Linux.x86_64.krb5"
+   else
+   BUNDLED_OPENSSL="openssl.Linux.x86_64"
+   fi
+   elif use x86; then
+   BUNDLED_OPENSSL="openssl.Linux.i686"
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i ${PN}.sh \
+   -e 
's|TESTSSL_INSTALL_DIR="${TESTSSL_INSTALL_DIR:-""}"|TESTSSL_INSTALL_DIR="/"|' \
+   -e 's|$TESTSSL_INSTALL_DIR/etc/|/|g' || die
+
+   if use bundled-openssl; then
+   sed -i ${PN}.sh \
+   -e "/find_openssl_binary()/a 
OPENSSL=\"/opt/${PN}/${BUNDLED_OPENSSL}\"" || die
+   fi
+}
+
+src_install() {
+   dodoc CHANGELOG.stable-releases.txt CREDITS.md Readme.md
+   dodoc openssl-rfc.mappping.html
+
+   dobin ${PN}.sh
+
+   insinto /etc/${PN}
+   doins etc/*
+
+   if use bundled-openssl; then
+   exeinto /opt/${PN}
+   use amd64 && doexe bin/${BUNDLED_OPENSSL}
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-crypt/argon2/, app-crypt/argon2/files/

2019-03-15 Thread Michael Palimaka
commit: b1ca5d3f98f9bd0e5207f0e7f4cdd4140a2fd109
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Mar 16 04:51:53 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Mar 16 04:55:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1ca5d3f

app-crypt/argon2: remove 20161029-r1

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

 app-crypt/argon2/Manifest  |  1 -
 app-crypt/argon2/argon2-20161029-r1.ebuild | 34 --
 .../argon2-20161029-makefile-soname-symlinks.patch | 28 --
 3 files changed, 63 deletions(-)

diff --git a/app-crypt/argon2/Manifest b/app-crypt/argon2/Manifest
index 18945a78ec6..0b6a21ebf66 100644
--- a/app-crypt/argon2/Manifest
+++ b/app-crypt/argon2/Manifest
@@ -1,2 +1 @@
-DIST argon2-20161029.tar.gz 1506864 BLAKE2B 
fbb0588439e811666af027710d1e5ef182b4d1c9012ca2c60d22ce103ceca14bb392dd8916b37c1c07799dc97f9401aa66d3bd08b250dd48314aa57a8599dff5
 SHA512 
e1f947a97e8b5f292dd32a6f1ea0ef3f2e411629218653821886ec4e1d5f8289d5b8f4b8bf0a37e69c344a83b975c695947d6b49fd2001a0e4273bebd4792892
 DIST argon2-20171227.tar.gz 1503745 BLAKE2B 
70171ce1b446974e18e6f7077f436c6b78f29fd3eb075314014219280fd984e51b00137d901175da5fcb8a8472df0cbb16ff0333a2f2f098e52d3e0ea496e2cc
 SHA512 
9c9e1a3905e61ac6913d1e073c104477e419ddd0506adc4487e88e98d19165ed8901fe8bb11246ed0cc71b3523c190da9692d5926642f86be09c3e67510afe4d

diff --git a/app-crypt/argon2/argon2-20161029-r1.ebuild 
b/app-crypt/argon2/argon2-20161029-r1.ebuild
deleted file mode 100644
index 1af92a37183..000
--- a/app-crypt/argon2/argon2-20161029-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib
-
-DESCRIPTION="Password hashing software that won the Password Hashing 
Competition (PHC)"
-HOMEPAGE="https://github.com/P-H-C/phc-winner-argon2;
-SRC_URI="https://github.com/P-H-C/phc-winner-argon2/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="|| ( Apache-2.0 CC0-1.0 )"
-SLOT="0/0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="static-libs"
-
-S="${WORKDIR}/phc-winner-${P}"
-PATCHES=(
-   "${FILESDIR}/${P}-makefile-soname-symlinks.patch"
-   )
-src_prepare() {
-   default
-   if ! use static-libs; then
-   sed -i -e 's/LIBRARIES = \$(LIB_SH) \$(LIB_ST)/LIBRARIES = 
\$(LIB_SH)/' Makefile || die "sed failed!"
-   fi
-   sed -i -e 's/-O3 //' Makefile || die "sed failed"
-   sed -i -e 's/-g //' Makefile || die "sed failed"
-   sed -i -e "s/-march=\$(OPTTARGET) /${CFLAGS} /" Makefile || die "sed 
failed"
-   sed -i -e 's/CFLAGS += -march=\$(OPTTARGET)//' Makefile || die "sed 
failed"
-}
-
-src_install() {
-   emake DESTDIR="${D}" LIBRARY_REL=$(get_libdir) install || die
-}

diff --git 
a/app-crypt/argon2/files/argon2-20161029-makefile-soname-symlinks.patch 
b/app-crypt/argon2/files/argon2-20161029-makefile-soname-symlinks.patch
deleted file mode 100644
index 11892de1115..000
--- a/app-crypt/argon2/files/argon2-20161029-makefile-soname-symlinks.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 1838c13..85aa710 100644
 a/Makefile
-+++ b/Makefile
-@@ -87,8 +87,10 @@ endif
- endif
- 
- LIB_SH := lib$(LIB_NAME).$(LIB_EXT)
-+LIB_SH_VERSION := $(LIB_SH).0
- LIB_ST := lib$(LIB_NAME).a
- LIBRARIES = $(LIB_SH) $(LIB_ST)
-+INSTALL_LIBRARIES = $(LIBRARIES) $(LIB_SH_VERSION)
- HEADERS = include/argon2.h
- 
- INSTALL = install
-@@ -153,9 +155,11 @@ format:
-   -i include/*.h src/*.c src/*.h src/blake2/*.c 
src/blake2/*.h
- 
- install: $(RUN) libs
-+  mv $(LIB_SH) $(LIB_SH_VERSION)
-+  ln -sf $(LIB_SH_VERSION) $(LIB_SH)
-   $(INSTALL) -d $(INST_INCLUDE)
-   $(INSTALL) $(HEADERS) $(INST_INCLUDE)
-   $(INSTALL) -d $(INST_LIBRARY)
--  $(INSTALL) $(LIBRARIES) $(INST_LIBRARY)
-+  $(INSTALL) $(INSTALL_LIBRARIES) $(INST_LIBRARY)
-   $(INSTALL) -d $(INST_BINARY)
-   $(INSTALL) $(RUN) $(INST_BINARY)



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

2019-03-15 Thread Michael Palimaka
commit: 60c0897b68f5e4a80e733a7ef0716b4bba421762
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Mar 16 04:51:26 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Mar 16 04:55:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60c0897b

app-crypt/argon2: revision bump

* Port to EAPI 7
* Install documentation
* Respect CC
* Install pkg-config file

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

 app-crypt/argon2/argon2-20171227-r1.ebuild | 40 ++
 1 file changed, 40 insertions(+)

diff --git a/app-crypt/argon2/argon2-20171227-r1.ebuild 
b/app-crypt/argon2/argon2-20171227-r1.ebuild
new file mode 100644
index 000..c7176327af1
--- /dev/null
+++ b/app-crypt/argon2/argon2-20171227-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Password hashing software that won the Password Hashing 
Competition (PHC)"
+HOMEPAGE="https://github.com/P-H-C/phc-winner-argon2;
+SRC_URI="https://github.com/P-H-C/phc-winner-argon2/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="|| ( Apache-2.0 CC0-1.0 )"
+SLOT="0/1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
+IUSE="static-libs"
+
+S="${WORKDIR}/phc-winner-${P}"
+
+DOCS=( argon2-specs.pdf CHANGELOG.md README.md )
+
+src_prepare() {
+   default
+   if ! use static-libs; then
+   sed -i -e 's/LIBRARIES = \$(LIB_SH) \$(LIB_ST)/LIBRARIES = 
\$(LIB_SH)/' Makefile || die "sed failed!"
+   fi
+   sed -i -e 's/-O3 //' -e 's/-g //' -e "s/-march=\$(OPTTARGET) /${CFLAGS} 
/" -e 's/CFLAGS += -march=\$(OPTTARGET)//' Makefile || die "sed failed"
+
+   sed -i -e "s/lib\/@HOST_MULTIARCH@/$(get_libdir)/" -e 
"s/@UPSTREAM_VER@/${PV}/" lib${PN}.pc || die
+
+   tc-export CC
+}
+
+src_install() {
+   emake DESTDIR="${ED}" LIBRARY_REL="$(get_libdir)" install
+   einstalldocs
+   doman man/${PN}.1
+
+   insinto /usr/$(get_libdir)/pkgconfig
+   doins lib${PN}.pc
+}



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

2019-03-15 Thread Michael Palimaka
commit: 320e4fa91361f3d58de8a89c0614078421a5c7a8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Mar 16 04:55:18 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Mar 16 04:55:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=320e4fa9

net-irc/unrealircd: version bump 4.2.2

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

 net-irc/unrealircd/Manifest|   1 +
 net-irc/unrealircd/unrealircd-4.2.2.ebuild | 187 +
 2 files changed, 188 insertions(+)

diff --git a/net-irc/unrealircd/Manifest b/net-irc/unrealircd/Manifest
index f796d1e7b80..b57362fab6f 100644
--- a/net-irc/unrealircd/Manifest
+++ b/net-irc/unrealircd/Manifest
@@ -1,2 +1,3 @@
 DIST unrealircd-4.0.18.tar.gz 5317767 BLAKE2B 
cb71144ce0fce7f719b3081f2da9f85c997dbc372492dfa57354eb51aee122f0e42fdba9e0aca997cd118ed9c75fb6f197ca13e371931fe45709d6b64651336d
 SHA512 
b9541ea83c24963187931938eadbba746175ec1d9449631e799df038bb062625e4b508c2d0d4e9e69a6401158cc23a855cbfbda3d28a4b971fbb249f074d26d3
 DIST unrealircd-4.2.0.tar.gz 5340752 BLAKE2B 
12d1ada1d439c6acd692a04dd4ed7ed03ea91c897f9522c0fec853239ba9a21098bddb78c6f5159ed59f1b88cf88f0ecaa774d70aba226b3ac749c935bc18ff5
 SHA512 
2ee7955c3c6c9af2b74cb68cfa94f8500dddf640f0222888b230f0f46dd0a52fba2c68d795eff00c59a3025affb2becb1dd67ebac037c7f75e77a3a728239750
+DIST unrealircd-4.2.2.tar.gz 6060272 BLAKE2B 
f45cae6aa85b478e7f667e379b557314fa509c17f150941f84ee80fb328b01de099235b69d3e2710afef01578f5898ba12f21245d6ce5370e7aa7ffdfa49d1f0
 SHA512 
961947e2286e10cd6032320d57cf3a99d4354f46ae28ad3142d11a0d423f7a0be915f8c09e8fe7b5816829752e4a03776907bb491366f418afc319fd8efb14ad

diff --git a/net-irc/unrealircd/unrealircd-4.2.2.ebuild 
b/net-irc/unrealircd/unrealircd-4.2.2.ebuild
new file mode 100644
index 000..85e8ccfaf7a
--- /dev/null
+++ b/net-irc/unrealircd/unrealircd-4.2.2.ebuild
@@ -0,0 +1,187 @@
+# Copyright 1999-2019 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="
+   >=app-crypt/argon2-20171227-r1:=
+   dev-libs/openssl:0=
+   dev-libs/libpcre2
+   dev-libs/tre
+   >=net-dns/c-ares-1.7:=
+   net-libs/libnsl:=
+   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-argon2 \
+   --with-system-cares \
+   --with-system-pcre2 \
+   --with-system-tre \
+   

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

2019-03-15 Thread Michael Palimaka
commit: d1030bb32c8d25916098a04c26656a55edc5bc19
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Mar 16 04:14:01 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Mar 16 04:22:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1030bb3

dev-games/tiled: version bump 1.2.3

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

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

diff --git a/dev-games/tiled/Manifest b/dev-games/tiled/Manifest
index ad932ac68c7..6ed911bfd72 100644
--- a/dev-games/tiled/Manifest
+++ b/dev-games/tiled/Manifest
@@ -1,3 +1,4 @@
 DIST tiled-1.2.0.tar.gz 17007687 BLAKE2B 
6bb5a34a19868574801a69015f6a05b299dd5b34df865cacf5d2a747a62ae731b80778fe49a432c5487cbfa3d30186dc80011cc8882cb86ac347fb35a7421cbc
 SHA512 
9c0c151348a90344b355e9bc8a7c9d38e2203d48474e8cf496e2c08cc75f764042e4355db2827f0e3518a1c03bfbcc79be7ba643c44c50430c7ecec09fbb8563
 DIST tiled-1.2.1.tar.gz 16773680 BLAKE2B 
1b7c662863d931dadd46d20c90822659b71fe5c7432cc6486813a6db533057d9db9768c2d14832a74b0f768c29b3d340cdc28a67df830ca984ad824610afe662
 SHA512 
9a66d41ed991b6af226c9456758f27bf5cf2e8d1059042fb684b003608509c0d0e13776710e777bab0e12f55223e4fca4048a07661c36a3273f9c6c5cbf7fa5d
 DIST tiled-1.2.2.tar.gz 16846444 BLAKE2B 
c359a75c5a3de8b9f9e52f2e772df9e6bc4ff7200330309e071f5497e80916a3512b47d47d6c502e186e95807a899fec7795d4246621ed988523468542a69b68
 SHA512 
b488f30f258d13e1513df7398b04e76153803c9384f94c0167d0a971c72e9c26f39eeceb8d587b36509b1c92e5e2f4df3c0cc41f49d66db2c1d9cf5b4b985be3
+DIST tiled-1.2.3.tar.gz 16848125 BLAKE2B 
cc2ab2a2ab14a575da1f47a415e1c544de9a80417ea5a081684893bad253fc742f89f5e17739bfe0617f859f6921ab214c2e8bdefe321545008b277684e654b1
 SHA512 
0c9e818872b1e8de67ff8d943dc47abb63667bc45917b29dca959b0a32594be4ffb156469375c0f5c4a4fa71ee85b05c018c58a2f581a860405cbb12c9c0aac5

diff --git a/dev-games/tiled/tiled-1.2.3.ebuild 
b/dev-games/tiled/tiled-1.2.3.ebuild
new file mode 100644
index 000..56763ea7c4f
--- /dev/null
+++ b/dev-games/tiled/tiled-1.2.3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_6 )
+inherit gnome2-utils multilib python-single-r1 qmake-utils xdg-utils
+
+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}"
+BDEPEND="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() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}



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

2019-03-15 Thread Michael Palimaka
commit: 897e9be9f0bce2ef9ba0e537bf7af7f643b8b0e6
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Mar 16 04:21:39 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Mar 16 04:22:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=897e9be9

metadata: gitignore repoman

Signed-off-by: Michael Palimaka  gentoo.org>

 metadata/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/metadata/.gitignore b/metadata/.gitignore
index e123805bcab..13892ec6541 100644
--- a/metadata/.gitignore
+++ b/metadata/.gitignore
@@ -9,6 +9,7 @@
 /news
 /pkg_desc_index
 /projects.xml
+/repoman
 /timestamp
 /timestamp.chk
 /timestamp.commit



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

2019-03-15 Thread William Hubbs
commit: b270548caafeed47e6329a58c63dc04a2dfe01cc
Author: William Hubbs  gentoo  org>
AuthorDate: Sat Mar 16 01:36:06 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat Mar 16 01:37:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b270548c

dev-vcs/hub: 2.10.0 bump

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

 dev-vcs/hub/Manifest  |  2 ++
 dev-vcs/hub/hub-2.10.0.ebuild | 51 +++
 2 files changed, 53 insertions(+)

diff --git a/dev-vcs/hub/Manifest b/dev-vcs/hub/Manifest
index 35ca67911f1..33d8272655e 100644
--- a/dev-vcs/hub/Manifest
+++ b/dev-vcs/hub/Manifest
@@ -1,7 +1,9 @@
+DIST hub-2.10.0.tar.gz 1042511 BLAKE2B 
8e95a6ce24ec9ed5c6d163346ab89a3a587d9f1700eed0773ae14473b06a1cbdba16ff5d75d3f64faa6b13382085a1cf8fb826e09cfd0ba3a0f0589f0abdc615
 SHA512 
6ded3a57f73fec226234e9b727d676a61a3312825c98cfb5d908ca45c163326352859a126e8b6c7f2e2302badc25a60c9c04c9184e4afab81c9f23d4555a045e
 DIST hub-2.2.9.tar.gz 318275 BLAKE2B 
731c3bb4cc4d92082f93bba94a5cc7ba31fc436479655fa19ffa8078416cedd814d2667589af9d6eed59a0be0c8b38963779429838d8dbaab8a628f838a5915c
 SHA512 
69d69683eb5f1c881b15c9b3294878c35edc51f9b7d568a3e0609c3d77cebf5c1be5c7c018b0356bdd68cf3f56691a860381a53f3e016b28b9f95ab0b852d9f9
 DIST hub-2.6.1.tar.gz 994752 BLAKE2B 
956f497699ecaac996fd3a92e5f7042d8e72050077e1de3b6091fe5e2481d9b8e4c46a8e34a2a95a81079b22b87bf82e2a5adf412e4dfbcbc53bf92f8b7ba2fa
 SHA512 
a3aed611455de88a5b410887717aeb28b8837a74b437848c53903ccc809e758678643471ee7b14903ee147417754b0d443aede63e4f69a0e4b252c6a5ab619e3
 DIST hub-2.7.0.tar.gz 997861 BLAKE2B 
b3ab44f8107d2613af230dc9e26cef2c87c9a8f114a044bbf4d62803fb31328a53425387bc865affbb95302ec0d6364f5c3e6823dae46ef2b322812916426534
 SHA512 
77223b0860bac42195dfc43e9164f5da446e414e32d0d3caa931f30e5b06d6f65cd69caa2f5097285a91d2ddb48265dfedec9dd8b361417556ff38782fa1a17c
 DIST hub-2.7.1.tar.gz 998391 BLAKE2B 
520f6f4edcae983bb65f56ddb44ef731a21a32e759df72311c77d87c103adaf83a8570b068767bbe49d65b614efbba9f6e5c9180794321dfc5f07c0ee925f3b2
 SHA512 
71232e443821dadc961d16f428cac01c0cc2adcd476e94727a5de430716826478803b8e6a881e2387103330122dd603180b546c99823c3c36942674185141714
+DIST hub-linux-amd64-2.10.0.tgz 4295227 BLAKE2B 
889dca0f5d750201d97d9eb1ab23cb781c2b12eb1cd7958c7816ee6c69dd344dc02b824754293071566b80ed7de24310d0ff78d690efb574de302910f16d6784
 SHA512 
5828977a14324a315a28dab1e25f7adf1671b14d24073cde550781eaaebee3f5f7c683a99329688dd86ac2e59252aa25f30c030d1a2f4bb8a7d135ec7bb88702
 DIST hub-linux-amd64-2.6.1.tgz 4242259 BLAKE2B 
b68234050982999f103281da974af9c008e85920c0821ecb5582bf97b0a4889f6dd053ab3e6c7c5a0e18d1b09c7093f69d70f46b94254e51b2e6eb217fe3f479
 SHA512 
e27d9b8037e50b924b7ef663d9f68568f2732ed28e366aa300881eeeb6a2bdd1f50b4e597e3d36eddb07eb9c133df02ab5f889d5c6ec8632824d244148524e9b
 DIST hub-linux-amd64-2.7.0.tgz 4263315 BLAKE2B 
e157acb727c8e4a118cc29ff5a433a820aeba5f92b10446440611056e8d8dc3bd534823983cf37aba818f224d36bfba3109d236b409e68592ed04f6b22aa450b
 SHA512 
dd48991dfbb48e6759805707ed34804a77b64e55fd56f17484c13ddc6b2a867c283305308991e462f338a4bab687cb89da42d5059193fad5825ef681b89eeb97
 DIST hub-linux-amd64-2.7.1.tgz 4263689 BLAKE2B 
bf30e98455d6afe98cb32e9253cbf99fadc39a821d44844ae6b35f909c5ce2b760d04a0cc3eba5743443c7014109f02805779277ce43fffddd1e7697904b6f49
 SHA512 
ae12658460aa2752cd245712a4c1035d738fd7e47a096999515b6fe381ab4741fb80bad75b8d9b0070a8cc83a5a2d4c90dc4a4f18019b9dae9817fe2c08703ca

diff --git a/dev-vcs/hub/hub-2.10.0.ebuild b/dev-vcs/hub/hub-2.10.0.ebuild
new file mode 100644
index 000..80f38432371
--- /dev/null
+++ b/dev-vcs/hub/hub-2.10.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGO_PN=github.com/github/hub
+inherit bash-completion-r1
+
+DESCRIPTION="Command-line wrapper for git that makes you better at GitHub"
+HOMEPAGE="https://github.com/github/hub;
+SRC_URI="https://github.com/github/hub/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   https://${EGO_PN}/releases/download/v${PV}/${PN}-linux-amd64-${PV}.tgz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+DEPEND=">=dev-lang/go-1.5.1:="
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+QA_FLAGS_IGNORED=".*"
+RESTRICT="strip"
+
+src_prepare() {
+   mkdir -p "${HOME}/go/src/${EGO_PN%/*}" || die "mkdir failed"
+   ln -snf "${S}" "${HOME}/go/src/${EGO_PN}" || die "ln failed"
+   default
+}
+
+src_compile() {
+   GOCACHE="${T}"/go-cache \
+   GOPATH= \
+   LDFLAGS= \
+   ./script/build -o bin/${PN} || die
+}
+
+#src_test() {
+#  ./script/test || die
+#}
+
+src_install() {
+   dobin bin/${PN}
+   dodoc README.md
+   doman ../${PN}-linux-amd64-${PV}/share/man/man1/*.1
+
+   newbashcomp etc/${PN}.bash_completion.sh ${PN}
+
+   insinto /usr/share/zsh/site-functions
+   newins 

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

2019-03-15 Thread Mikle Kolyada
commit: 4d44c027b9b9074f0b196eb0a69f17e2e05e4582
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:23:58 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:23:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d44c027

media-libs/gd: s390 stable wrt bug #679702

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

 media-libs/gd/gd-2.2.5-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/gd/gd-2.2.5-r2.ebuild b/media-libs/gd/gd-2.2.5-r2.ebuild
index 20c151564f1..61cd3fa0ce8 100644
--- a/media-libs/gd/gd-2.2.5-r2.ebuild
+++ b/media-libs/gd/gd-2.2.5-r2.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/libgd/libgd/releases/download/${P}/lib${P}.tar.xz
 
 LICENSE="gd IJG HPND BSD"
 SLOT="2/3"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="cpu_flags_x86_sse fontconfig jpeg png static-libs test tiff truetype 
webp xpm zlib"
 
 # fontconfig has prefixed font paths, details see bug #518970



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

2019-03-15 Thread Mikle Kolyada
commit: 767cbd46b027c50cb8131c2870163ebdcdaf6a66
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:20:50 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:20:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=767cbd46

net-misc/openssh: m68k stable wrt bug #675522

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="m68k"

 net-misc/openssh/openssh-7.9_p1-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openssh/openssh-7.9_p1-r4.ebuild 
b/net-misc/openssh/openssh-7.9_p1-r4.ebuild
index d99b60c8f3c..13f4df87840 100644
--- a/net-misc/openssh/openssh-7.9_p1-r4.ebuild
+++ b/net-misc/openssh/openssh-7.9_p1-r4.ebuild
@@ -33,7 +33,7 @@ SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-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 ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-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 ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 # Probably want to drop ssl defaulting to on in a future version.
 IUSE="abi_mips_n32 audit bindist debug hpn kerberos kernel_linux ldns libedit 
libressl livecd pam +pie sctp selinux +ssl static test X X509"
 RESTRICT="!test? ( test )"



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

2019-03-15 Thread Mikle Kolyada
commit: ac50dc417f5c0435b9e90db0fdfa0fdfa4bea68d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:20:07 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:20:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac50dc41

net-misc/openssh: s390 stable wrt bug #675522

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

 net-misc/openssh/openssh-7.9_p1-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openssh/openssh-7.9_p1-r4.ebuild 
b/net-misc/openssh/openssh-7.9_p1-r4.ebuild
index 0fdfa8edce6..4eef50cfdfc 100644
--- a/net-misc/openssh/openssh-7.9_p1-r4.ebuild
+++ b/net-misc/openssh/openssh-7.9_p1-r4.ebuild
@@ -33,7 +33,7 @@ SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-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 ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-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 ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 # Probably want to drop ssl defaulting to on in a future version.
 IUSE="abi_mips_n32 audit bindist debug hpn kerberos kernel_linux ldns libedit 
libressl livecd pam +pie sctp selinux +ssl static test X X509"
 RESTRICT="!test? ( test )"



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

2019-03-15 Thread Mikle Kolyada
commit: 4c0adc8738fba7a32c7752b8583e72945817b380
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:20:26 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:20:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c0adc87

net-misc/openssh: sh stable wrt bug #675522

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="sh"

 net-misc/openssh/openssh-7.9_p1-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openssh/openssh-7.9_p1-r4.ebuild 
b/net-misc/openssh/openssh-7.9_p1-r4.ebuild
index 4eef50cfdfc..d99b60c8f3c 100644
--- a/net-misc/openssh/openssh-7.9_p1-r4.ebuild
+++ b/net-misc/openssh/openssh-7.9_p1-r4.ebuild
@@ -33,7 +33,7 @@ SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-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 ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-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 ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 # Probably want to drop ssl defaulting to on in a future version.
 IUSE="abi_mips_n32 audit bindist debug hpn kerberos kernel_linux ldns libedit 
libressl livecd pam +pie sctp selinux +ssl static test X X509"
 RESTRICT="!test? ( test )"



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

2019-03-15 Thread Mikle Kolyada
commit: ad05a0dfdca2bf99633eb9bdb55613ab7b02
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:19:07 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:19:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad05a0df

dev-python/pyquery: s390 stable wrt bug #675160

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

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

diff --git a/dev-python/pyquery/pyquery-1.4.0.ebuild 
b/dev-python/pyquery/pyquery-1.4.0.ebuild
index ec28a49fefa..ff6aa2bcc57 100644
--- a/dev-python/pyquery/pyquery-1.4.0.ebuild
+++ b/dev-python/pyquery/pyquery-1.4.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 s390 ~sh ~sparc x86"
 IUSE="test"
 
 RDEPEND="



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

2019-03-15 Thread Mikle Kolyada
commit: 1301996ba7dfcfe95c9e15ddb4226bbb5a72ce7c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:17:36 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:17:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1301996b

sys-apps/hwids: s390 stable wrt bug #680018

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

 sys-apps/hwids/hwids-20180917.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/hwids/hwids-20180917.ebuild 
b/sys-apps/hwids/hwids-20180917.ebuild
index 488a2c8af68..40f1c962acc 100644
--- a/sys-apps/hwids/hwids-20180917.ebuild
+++ b/sys-apps/hwids/hwids-20180917.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="${HOMEPAGE}.git"
 else
SRC_URI="${HOMEPAGE}/archive/${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 
s390 ~sh sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 fi
 
 LICENSE="|| ( GPL-2 BSD ) public-domain"



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

2019-03-15 Thread Thomas Deutschmann
commit: ffa5867e1a184f04c7f190e16a17db48926139b5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Mar 15 23:17:12 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 23:17:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffa5867e

dev-python/awscli: drop old

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

 dev-python/awscli/Manifest  |  6 
 dev-python/awscli/awscli-1.16.59.ebuild | 45 --
 dev-python/awscli/awscli-1.16.62.ebuild | 45 --
 dev-python/awscli/awscli-1.16.72.ebuild | 45 --
 dev-python/awscli/awscli-1.16.81.ebuild | 45 --
 dev-python/awscli/awscli-1.16.91.ebuild | 56 -
 dev-python/awscli/awscli-1.16.95.ebuild | 56 -
 7 files changed, 298 deletions(-)

diff --git a/dev-python/awscli/Manifest b/dev-python/awscli/Manifest
index af932a4e722..0188dad7eb2 100644
--- a/dev-python/awscli/Manifest
+++ b/dev-python/awscli/Manifest
@@ -1,8 +1,2 @@
 DIST awscli-1.16.104.tar.gz 1186611 BLAKE2B 
8f0918b86c37e184ffc8055cb16a02379fd35e685c5ddfcbf2b7e1fb71a80f829569eb1c2264e75563a316d933143a662cd7dcf4d6d25d236d72c268fb4985f0
 SHA512 
738ceac890b28c335f0c9bc703975af3467f17723b8accf713ef131224602895f6b4fae06cad93495933563c08ede18e38cf67abff744e6f5b0042b182bddec3
 DIST awscli-1.16.125.tar.gz 1201382 BLAKE2B 
4412aad3e892527c053cc5baedaf9fcdf82f9c28fc1c19249713d5bbf174ad01ca61e2519702f67580c67ac389359e4493c3ad16646216619516a8ec76f37a2f
 SHA512 
01d66d2baf26377f5315f5b3b0bf52fe6643c0e695e83c75178d819b29ebf3d55b1ad4a4ab4065540fc091d2e12090687a1046dc586715c4021dc30519bf2feb
-DIST awscli-1.16.59.tar.gz 1147247 BLAKE2B 
f8571f2397735b4aad17543e25cd2764731b2986f420faccf76dad2bdab912029d7ac592607290bd76fe4c99ef57e168dfbc5a2a92e20927343006f964a4a3a8
 SHA512 
be7f6dac8d2ed27f53a0f50323d40395c51d7e0ef513e1410bd4ce5fb4affe1033919e01755ba768739e7e327a827d004a8da42353c0be05e90be3e5350399ff
-DIST awscli-1.16.62.tar.gz 1147749 BLAKE2B 
d0a578478f5aa6e08c8de3c0e5e85b99e09a8519931b35f5fa724f922b35e2981464ba2fc5fc842350dfe1cd5740104ee293caf13b2154c5140caa9f762c976c
 SHA512 
b7b0247c7c28fe3195cb6e2ec81fa15e8d6e9a8120d124d4cc84e827f8f9c904fb7feaa00d28173e0739066eb5ca77fc7f2af8b1f2b083605b23a4cc1c38fd1d
-DIST awscli-1.16.72.tar.gz 1169697 BLAKE2B 
3ae37ee02bb821dc5e5578ff9937d6fb313bd369e9f57c276d3e3fb722743b5f07536ed60ffd98ffbb779e0ad3882f9345d0ccbed3572c2e7332c2a339320f49
 SHA512 
88914546c10e14749b6811a31ff664cd464ab424d2140f1218b03128fb8a7e4fcfb33feaa29cac534ea3902f1d4e0565c7578b61989bb6b8f8edbefa2d992355
-DIST awscli-1.16.81.tar.gz 1171490 BLAKE2B 
343e5ba75f8cb3b058e15346627b0d9c5d6e294147843be0608ccd2a92e643d05c5b6995771608af602e565a860d4088e1f7988c567343396054cec813ed660c
 SHA512 
44176ae796972571d07923ba13ac5a245af7b0c74488bd03a6fb5077f204f175f7ddfa9c4d592eb93d3dce14d9406b04c92ec2d1d9ce58c3a092a0b998efd2c7
-DIST awscli-1.16.91.tar.gz 1172430 BLAKE2B 
158f7420299c56f2e40883bbf1ad01cb7a747d04047b47aaf8c931c8aad02ad9b39cfe9fd69b86fcdbd76d02d652d68f33d707326307c600772fab97b93f7b60
 SHA512 
ad489cfc1225703b9bae26f31a94c7d9c143b8e355f4e1a2f1d7e3685b7ee9a6dbd0938db512cac83775292a1347fe72a9ae192717b1c73a21ac07bea4c9fede
-DIST awscli-1.16.95.tar.gz 1173389 BLAKE2B 
0babe5cb23b36e39bb495cef57bc1cba0b0c4ab3a613b88e6c52a0f22f94099116ff1a70f9149333be16f7243f2c5498e98bc0c8076aa4e24201c11b8db7bcbf
 SHA512 
37eabd6e7cbba5e3d635098e9c273ca143dd8f37dc7dedf6b85882f08fa01931ed2c56a7db191bae2c260e065c03fbcc7c473c5065b8e111616fb1341b4bc9a0

diff --git a/dev-python/awscli/awscli-1.16.59.ebuild 
b/dev-python/awscli/awscli-1.16.59.ebuild
deleted file mode 100644
index 1a34c9d79e7..000
--- a/dev-python/awscli/awscli-1.16.59.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Universal Command Line Environment for AWS"
-HOMEPAGE="https://pypi.org/project/awscli/;
-#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-SRC_URI="https://github.com/aws/aws-cli/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-# requires network access
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-python/botocore-1.12[${PYTHON_USEDEP}]
-   <=dev-python/colorama-0.3.9[${PYTHON_USEDEP}]
-   dev-python/docutils[${PYTHON_USEDEP}]
-   <=dev-python/rsa-3.5.0[${PYTHON_USEDEP}]
-   >=dev-python/s3transfer-0.1.12[${PYTHON_USEDEP}]
-   <=dev-python/pyyaml-3.13[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/nose[${PYTHON_USEDEP}]
-   )
-"
-
-S="${WORKDIR}/aws-cli-${PV}"
-

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

2019-03-15 Thread Thomas Deutschmann
commit: 67d2714e412a81c466248b6d97a271094cfb648b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Mar 15 23:16:30 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 23:17:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67d2714e

dev-python/awscli: bump to v1.16.125

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

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

diff --git a/dev-python/awscli/Manifest b/dev-python/awscli/Manifest
index 20bad422e59..af932a4e722 100644
--- a/dev-python/awscli/Manifest
+++ b/dev-python/awscli/Manifest
@@ -1,4 +1,5 @@
 DIST awscli-1.16.104.tar.gz 1186611 BLAKE2B 
8f0918b86c37e184ffc8055cb16a02379fd35e685c5ddfcbf2b7e1fb71a80f829569eb1c2264e75563a316d933143a662cd7dcf4d6d25d236d72c268fb4985f0
 SHA512 
738ceac890b28c335f0c9bc703975af3467f17723b8accf713ef131224602895f6b4fae06cad93495933563c08ede18e38cf67abff744e6f5b0042b182bddec3
+DIST awscli-1.16.125.tar.gz 1201382 BLAKE2B 
4412aad3e892527c053cc5baedaf9fcdf82f9c28fc1c19249713d5bbf174ad01ca61e2519702f67580c67ac389359e4493c3ad16646216619516a8ec76f37a2f
 SHA512 
01d66d2baf26377f5315f5b3b0bf52fe6643c0e695e83c75178d819b29ebf3d55b1ad4a4ab4065540fc091d2e12090687a1046dc586715c4021dc30519bf2feb
 DIST awscli-1.16.59.tar.gz 1147247 BLAKE2B 
f8571f2397735b4aad17543e25cd2764731b2986f420faccf76dad2bdab912029d7ac592607290bd76fe4c99ef57e168dfbc5a2a92e20927343006f964a4a3a8
 SHA512 
be7f6dac8d2ed27f53a0f50323d40395c51d7e0ef513e1410bd4ce5fb4affe1033919e01755ba768739e7e327a827d004a8da42353c0be05e90be3e5350399ff
 DIST awscli-1.16.62.tar.gz 1147749 BLAKE2B 
d0a578478f5aa6e08c8de3c0e5e85b99e09a8519931b35f5fa724f922b35e2981464ba2fc5fc842350dfe1cd5740104ee293caf13b2154c5140caa9f762c976c
 SHA512 
b7b0247c7c28fe3195cb6e2ec81fa15e8d6e9a8120d124d4cc84e827f8f9c904fb7feaa00d28173e0739066eb5ca77fc7f2af8b1f2b083605b23a4cc1c38fd1d
 DIST awscli-1.16.72.tar.gz 1169697 BLAKE2B 
3ae37ee02bb821dc5e5578ff9937d6fb313bd369e9f57c276d3e3fb722743b5f07536ed60ffd98ffbb779e0ad3882f9345d0ccbed3572c2e7332c2a339320f49
 SHA512 
88914546c10e14749b6811a31ff664cd464ab424d2140f1218b03128fb8a7e4fcfb33feaa29cac534ea3902f1d4e0565c7578b61989bb6b8f8edbefa2d992355

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

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

2019-03-15 Thread Mikle Kolyada
commit: 77f9e6572c612e794eda28959a50c0013a4d83d0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:16:00 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:16:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77f9e657

dev-ruby/rubygems: s390 stable wrt bug #679490

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

 dev-ruby/rubygems/rubygems-2.7.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rubygems/rubygems-2.7.9.ebuild 
b/dev-ruby/rubygems/rubygems-2.7.9.ebuild
index 5c20091ba32..98365183a8b 100644
--- a/dev-ruby/rubygems/rubygems-2.7.9.ebuild
+++ b/dev-ruby/rubygems/rubygems-2.7.9.ebuild
@@ -13,7 +13,7 @@ LICENSE="GPL-2 || ( Ruby MIT )"
 
 SRC_URI="https://rubygems.org/rubygems/${P}.tgz;
 
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE="server test"
 



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

2019-03-15 Thread Mikle Kolyada
commit: 499766f4f43c3dfece3bf5e6411cbe5109706305
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:15:07 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:15:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=499766f4

sys-apps/makedev: s390 stable wrt bug #679452

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

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

diff --git a/sys-apps/makedev/makedev-3.23.1-r1.ebuild 
b/sys-apps/makedev/makedev-3.23.1-r1.ebuild
index 244494afd05..134984e6a8a 100644
--- a/sys-apps/makedev/makedev-3.23.1-r1.ebuild
+++ b/sys-apps/makedev/makedev-3.23.1-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://people.redhat.com/nalin/MAKEDEV/${MY_P}-${MY_REL}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh 
sparc x86"
 IUSE="build selinux"
 
 RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: net-mail/courier-imap/

2019-03-15 Thread Mikle Kolyada
commit: 49ed76abd3de5304b16e50518cadb824790f6b5f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:14:11 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:14:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49ed76ab

net-mail/courier-imap: s390 stable wrt bug #676732

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

 net-mail/courier-imap/courier-imap-4.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/courier-imap/courier-imap-4.18.2.ebuild 
b/net-mail/courier-imap/courier-imap-4.18.2.ebuild
index cc9e5b9d15f..79d8f1ab946 100644
--- a/net-mail/courier-imap/courier-imap-4.18.2.ebuild
+++ b/net-mail/courier-imap/courier-imap-4.18.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
 
 IUSE="berkdb debug fam +gdbm gnutls ipv6 libressl selinux trashquota"
 REQUIRED_USE="|| ( berkdb gdbm )"



[gentoo-commits] repo/gentoo:master commit in: sys-devel/distcc/

2019-03-15 Thread Mikle Kolyada
commit: 91575b4fbbc5f8e84e66f28398b93ea7bf74a122
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:13:19 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:13:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91575b4f

sys-devel/distcc: s390 stable wrt bug #679912

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="s390"

 sys-devel/distcc/distcc-3.3.2-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/distcc/distcc-3.3.2-r4.ebuild 
b/sys-devel/distcc/distcc-3.3.2-r4.ebuild
index 97f713b3a86..20876c8f76c 100644
--- a/sys-devel/distcc/distcc-3.3.2-r4.ebuild
+++ b/sys-devel/distcc/distcc-3.3.2-r4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh 
~sparc ~x86"
 IUSE="gnome gssapi gtk hardened ipv6 selinux xinetd zeroconf"
 
 RESTRICT="test"



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

2019-03-15 Thread Mikle Kolyada
commit: b4b6c265835c674538a6053b393d494b52543fef
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:12:14 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:12:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4b6c265

sys-apps/fakechroot: Add ~s390 keyword wrt bug #657502

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="~s390"

 sys-apps/fakechroot/fakechroot-2.19.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/fakechroot/fakechroot-2.19.ebuild 
b/sys-apps/fakechroot/fakechroot-2.19.ebuild
index 411692c7738..c4fc046ad16 100644
--- a/sys-apps/fakechroot/fakechroot-2.19.ebuild
+++ b/sys-apps/fakechroot/fakechroot-2.19.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ 
SRC_URI="mirror://debian/pool/main/f/${PN}/${PN}_${PV}.orig.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ppc ppc64 ~s390 ~sparc x86"
 
 RESTRICT="test"
 



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

2019-03-15 Thread Mikle Kolyada
commit: 47adaf37e2e72e216185909bfdb708c284dbe605
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:09:25 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:09:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47adaf37

media-sound/qsynth: amd64 stable wrt bug #679982

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/media-sound/qsynth/qsynth-0.5.3.ebuild 
b/media-sound/qsynth/qsynth-0.5.3.ebuild
index 43eae6aaae2..d603f1fab1d 100644
--- a/media-sound/qsynth/qsynth-0.5.3.ebuild
+++ b/media-sound/qsynth/qsynth-0.5.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/qsynth/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 IUSE="alsa debug jack pulseaudio"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 
 RDEPEND="
dev-qt/qtcore:5



[gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/

2019-03-15 Thread Mikle Kolyada
commit: 5859f31011d2e3fb98ed10dbfff694f1502c5d6e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:07:54 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:07:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5859f310

net-mail/qmail-autoresponder: amd64 stable wrt bug #679456

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild 
b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
index 4e031b06f80..7be4b19866a 100644
--- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
+++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.97-r3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~sparc x86"
 IUSE="mysql"
 
 DEPEND=">=dev-libs/bglibs-1.106



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

2019-03-15 Thread Mikle Kolyada
commit: aabe23ad51318912cdec6376b83cf2209d8798f0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 22:59:23 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 22:59:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aabe23ad

media-libs/libshout: amd64 stable wrt bug #679660

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 media-libs/libshout/libshout-2.4.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libshout/libshout-2.4.1-r2.ebuild 
b/media-libs/libshout/libshout-2.4.1-r2.ebuild
index 976775b2f22..f564706e107 100644
--- a/media-libs/libshout/libshout-2.4.1-r2.ebuild
+++ b/media-libs/libshout/libshout-2.4.1-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.gz;
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh sparc ~x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="libressl speex static-libs theora"
 
 RDEPEND="



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

2019-03-15 Thread Mikle Kolyada
commit: bd57f603752d4107a2b83eca665dc4d82cbdc3b8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 23:05:54 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 23:05:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd57f603

app-shells/posh: amd64 stable wrt bug #679904

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-shells/posh/posh-0.13.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-shells/posh/posh-0.13.2.ebuild 
b/app-shells/posh/posh-0.13.2.ebuild
index 5eb687e8030..0c36b6bd8e5 100644
--- a/app-shells/posh/posh-0.13.2.ebuild
+++ b/app-shells/posh/posh-0.13.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ SRC_URI="mirror://debian/pool/main/p/posh/${P/-/_}.tar.xz"
 
 LICENSE="GPL-2+ BSD public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE=""
 
 DEPEND="app-arch/xz-utils"



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

2019-03-15 Thread Mikle Kolyada
commit: ea7843bf16d7293989f5e87504cd54789053415e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 22:57:28 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 22:57:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea7843bf

media-gfx/feh: amd64 stable wrt bug #677582

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/media-gfx/feh/feh-3.1.1.ebuild b/media-gfx/feh/feh-3.1.1.ebuild
index 461f8261e5f..98f7cb6d011 100644
--- a/media-gfx/feh/feh-3.1.1.ebuild
+++ b/media-gfx/feh/feh-3.1.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://feh.finalrewind.org/${P}.tar.bz2;
 
 LICENSE="feh"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~mips ~ppc ppc64 ~x86"
 IUSE="debug curl exif test xinerama"
 
 COMMON_DEPEND="media-libs/imlib2[X]



[gentoo-commits] repo/gentoo:master commit in: app-backup/restic/

2019-03-15 Thread Thomas Deutschmann
commit: 69a40560aeb77dc417f17b1f3cb45486e14ca417
Author: David Roman  gmail  com>
AuthorDate: Mon Jan  7 18:43:28 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 22:56:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69a40560

app-backup/restic: verbump to 0.9.4

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: David Roman  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10767
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-backup/restic/Manifest|  1 +
 app-backup/restic/restic-0.9.4.ebuild | 54 +++
 2 files changed, 55 insertions(+)

diff --git a/app-backup/restic/Manifest b/app-backup/restic/Manifest
index 519253b1e19..f8be2f381d1 100644
--- a/app-backup/restic/Manifest
+++ b/app-backup/restic/Manifest
@@ -1,3 +1,4 @@
 DIST restic-0.8.3.tar.gz 48746281 BLAKE2B 
4161326068165b5ba19e9ee0e6386aa1df29a961a42509a2cb7924958100b9412abd1dd27d299d1eef76fdd4731d4a56f0a68e796a46071229a3e6767d3a6bb7
 SHA512 
758b2c69af8aad6bb62dc750141d5f5a1954ca2b51350ef59c35fd10afefaddc4d8d0cdd5914f249594946db6138124a48fba531b8a24353f022ccea773a240c
 DIST restic-0.9.2.tar.gz 27344284 BLAKE2B 
17c121a0d4df470397b467e09ceac559848c34e6a43f289b68eff8b85af86a18a4d2e1340060812613cb7e9cecf86f706565a6bcce31fbcd5aab076a85b57c67
 SHA512 
e060e0e16031924df7347ec74972bf52c75c84cca8ae996b1c5dd8a6f42c9022062e004ec17af2ebc0b6e9480ecfdff4ca7f64956afab9b9799201848d0be731
 DIST restic-0.9.3.tar.gz 26183792 BLAKE2B 
2bb98bd0b5430f928cdc566e558e503d84e611d05da8866f4f5d6f75a325ed73e7674098d73976d8f37ba8d38232adaedc25e2ea211403ea482cecc81f476ba9
 SHA512 
a8d906984d17e46533a377fba464d909a92016595d7585f37942bc68c24f9356c47df83f2e6ec15b877ea20f864be87362db4421665b594fecb4bca78b520393
+DIST restic-0.9.4.tar.gz 26211163 BLAKE2B 
950a8da8217500a910f0e5966787b668417f1168e81365ecda70469ef42c24fed876e97b6a44ed9dda89c07760db4678d791960d78760d68c8f1846c827cf340
 SHA512 
8e75a1da6ee9a364c2bf53ce8f9b014549e7065eae349dc6baf68b0e8a8e9736f83c0495b822aac87480751f448bd42da34c440290b5f0967aea7becda5c448b

diff --git a/app-backup/restic/restic-0.9.4.ebuild 
b/app-backup/restic/restic-0.9.4.ebuild
new file mode 100644
index 000..7d8f330c0fe
--- /dev/null
+++ b/app-backup/restic/restic-0.9.4.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit bash-completion-r1 golang-vcs-snapshot
+
+DESCRIPTION="A backup program that is fast, efficient and secure"
+HOMEPAGE="https://restic.github.io/;
+SRC_URI="https://github.com/restic/restic/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+EGO_PN="github.com/restic/restic"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="test"
+
+RDEPEND="sys-fs/fuse:0"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_compile() {
+   local mygoargs=(
+   -v
+   -work
+   -x
+   -tags release
+   -ldflags "-X main.version=${PV}"
+   -asmflags "-trimpath=${S}"
+   -gcflags "-trimpath=${S}"
+   -o restic ${EGO_PN}/cmd/restic
+   )
+
+   GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \
+   go build "${mygoargs[@]}" || die
+}
+
+src_test() {
+   GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" \
+   go test -timeout 30m -v -work -x ${EGO_PN}/cmd/... 
${EGO_PN}/internal/... || die
+}
+
+src_install() {
+   dobin restic
+
+   newbashcomp doc/bash-completion.sh "${PN}"
+
+   insinto /usr/share/zsh/site-functions
+   newins doc/zsh-completion.zsh _restic
+
+   doman doc/man/*
+   dodoc doc/*.rst
+}



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

2019-03-15 Thread Mikle Kolyada
commit: b3307ca07accdb5ea9462bf4a82d02096cf21593
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 22:55:20 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 22:55:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3307ca0

app-eselect/eselect-fontconfig: amd64 stable wrt bug #677356

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r1.ebuild 
b/app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r1.ebuild
index 6b6e8d81e09..f7950777437 100644
--- a/app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r1.ebuild
+++ b/app-eselect/eselect-fontconfig/eselect-fontconfig-1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ SRC_URI="mirror://gentoo/fontconfig.eselect-${PV}.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-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 ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-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 ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND=">=app-admin/eselect-1.2.3



[gentoo-commits] repo/gentoo:master commit in: mail-filter/rspamd/

2019-03-15 Thread Thomas Deutschmann
commit: 46efed1a1d9db8688001837b43e051ea00a85747
Author: Christian Rößner  roessner-network-solutions  com>
AuthorDate: Wed Mar 13 09:16:45 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 22:54:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46efed1a

mail-filter/rspamd: version bump to 1.9.0

* Remove fann support

Closes: https://github.com/gentoo/gentoo/pull/11355
Signed-off-by: Thomas Deutschmann  gentoo.org>

 mail-filter/rspamd/Manifest| 1 +
 mail-filter/rspamd/{rspamd-.ebuild => rspamd-1.9.0.ebuild} | 4 +---
 mail-filter/rspamd/rspamd-.ebuild  | 4 +---
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/mail-filter/rspamd/Manifest b/mail-filter/rspamd/Manifest
index d45c6ec491a..d7a8953f6a3 100644
--- a/mail-filter/rspamd/Manifest
+++ b/mail-filter/rspamd/Manifest
@@ -8,3 +8,4 @@ DIST rspamd-1.7.8.tar.gz 4542955 BLAKE2B 
78fbb01c51d290f8d88f4c512df248fcbc8e28e
 DIST rspamd-1.7.9.tar.gz 4557492 BLAKE2B 
f42775ba8157ef4815331c304e3030c522e9ae5e10ef0194da0c7dde105b40fed2ae84b063d78aed37992146311aecc1ac77f64dacdaf3ff11bb85076e8aef7c
 SHA512 
d11d8c03668b85feae665ed491cd156c7430fbad30f42fe44103ea3c3a8bc988e5f8981e784e8f31aa35ba1ff9f7abd23605638e4ee3086a056b22fb3109563e
 DIST rspamd-1.8.1.tar.gz 4286637 BLAKE2B 
dd202a2f3dab4ef459d978e06231f8fcef3724ea5912c7455d553dc04e2744322b9144ba05a2f6f22a7eb58cd0a967f213bfc76fb273b5425036a5042975ed89
 SHA512 
98c2d909b7dc19f1c431d4e6968092a10630ef238d3c8cc2825e7b2d92bee893bc7f9c431f3a6337ef2af4d2a157f0584e7b13fba0540660d7c853bc25cc
 DIST rspamd-1.8.3.tar.gz 4319623 BLAKE2B 
b7fdd6791df5899710bb1d696a9b94d1840335b6a34d6cdeebc2b5eebe9f4e5b6da3e90ed9ab5e3945aab7ef33f54f048024b51c3de37db1a083ad89c656b456
 SHA512 
5e20255466fe2cd4842196fb2138732b59911de655e73d9cc13009b5179b84e5a2060083961b35fe40b9f550f8e18067056415a1d803fac54fac70024c01
+DIST rspamd-1.9.0.tar.gz 4402395 BLAKE2B 
11f90fc232496b493296ef0fb9ff4118ac11863528cd6a52bcae6adbdc09ce86453bb39df35714702fcd5c6a535007ec402a580bd735abbddeeb154ff8807219
 SHA512 
fee2a60c10fbab087b12d9188974a0c47417a9894308f66980eb6311496b16661194d858d1e522d2d524b3e359f2f3ad88535421d1dc05be26414b5a346afec6

diff --git a/mail-filter/rspamd/rspamd-.ebuild 
b/mail-filter/rspamd/rspamd-1.9.0.ebuild
similarity index 93%
copy from mail-filter/rspamd/rspamd-.ebuild
copy to mail-filter/rspamd/rspamd-1.9.0.ebuild
index 64cb537424f..2000be8f549 100644
--- a/mail-filter/rspamd/rspamd-.ebuild
+++ b/mail-filter/rspamd/rspamd-1.9.0.ebuild
@@ -17,7 +17,7 @@ DESCRIPTION="Rapid spam filtering system"
 HOMEPAGE="https://github.com/vstakhov/rspamd;
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fann gd jemalloc +jit libressl pcre2 +torch"
+IUSE="cpu_flags_x86_ssse3 gd jemalloc +jit libressl pcre2 +torch"
 REQUIRED_USE="torch? ( jit )"
 
 RDEPEND="dev-db/sqlite:3
@@ -28,7 +28,6 @@ RDEPEND="dev-db/sqlite:3
sys-apps/file
dev-util/ragel
cpu_flags_x86_ssse3? ( dev-libs/hyperscan )
-   fann? ( sci-mathematics/fann )
gd? ( media-libs/gd[jpeg] )
jemalloc? ( dev-libs/jemalloc )
jit? ( dev-lang/luajit:2 )
@@ -58,7 +57,6 @@ src_configure() {
-DDBDIR=/var/lib/rspamd
-DLOGDIR=/var/log/rspamd
-DENABLE_LUAJIT=$(usex jit ON OFF)
-   -DENABLE_FANN=$(usex fann ON OFF)
-DENABLE_GD=$(usex gd ON OFF)
-DENABLE_PCRE2=$(usex pcre2 ON OFF)
-DENABLE_JEMALLOC=$(usex jemalloc ON OFF)

diff --git a/mail-filter/rspamd/rspamd-.ebuild 
b/mail-filter/rspamd/rspamd-.ebuild
index 64cb537424f..2000be8f549 100644
--- a/mail-filter/rspamd/rspamd-.ebuild
+++ b/mail-filter/rspamd/rspamd-.ebuild
@@ -17,7 +17,7 @@ DESCRIPTION="Rapid spam filtering system"
 HOMEPAGE="https://github.com/vstakhov/rspamd;
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fann gd jemalloc +jit libressl pcre2 +torch"
+IUSE="cpu_flags_x86_ssse3 gd jemalloc +jit libressl pcre2 +torch"
 REQUIRED_USE="torch? ( jit )"
 
 RDEPEND="dev-db/sqlite:3
@@ -28,7 +28,6 @@ RDEPEND="dev-db/sqlite:3
sys-apps/file
dev-util/ragel
cpu_flags_x86_ssse3? ( dev-libs/hyperscan )
-   fann? ( sci-mathematics/fann )
gd? ( media-libs/gd[jpeg] )
jemalloc? ( dev-libs/jemalloc )
jit? ( dev-lang/luajit:2 )
@@ -58,7 +57,6 @@ src_configure() {
-DDBDIR=/var/lib/rspamd
-DLOGDIR=/var/log/rspamd
-DENABLE_LUAJIT=$(usex jit ON OFF)
-   -DENABLE_FANN=$(usex fann ON OFF)
-DENABLE_GD=$(usex gd ON OFF)
-DENABLE_PCRE2=$(usex pcre2 ON OFF)
-DENABLE_JEMALLOC=$(usex jemalloc ON OFF)



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

2019-03-15 Thread Mikle Kolyada
commit: 0c5c2929f28d2104caa34b75462737d85cc119bb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 22:52:26 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 22:52:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c5c2929

sci-mathematics/wxmaxima: amd64 stable wrt bug #677420

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 sci-mathematics/wxmaxima/wxmaxima-18.11.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/wxmaxima/wxmaxima-18.11.4.ebuild 
b/sci-mathematics/wxmaxima/wxmaxima-18.11.4.ebuild
index 56c7b4a3e19..60a23d0a0c6 100644
--- a/sci-mathematics/wxmaxima/wxmaxima-18.11.4.ebuild
+++ b/sci-mathematics/wxmaxima/wxmaxima-18.11.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/wxMaxima-developers/wxmaxima/archive/Version-${PV}.t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE=""
 S="${WORKDIR}"/${PN}-Version-${PV}
 



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

2019-03-15 Thread Thomas Deutschmann
commit: 72b43ee08bd97f74c6b9daf6384990ead28f49d7
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Mar 14 04:57:38 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 22:49:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72b43ee0

app-emulation/xen-pvgrub: bump to 4.12.0_rc5

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-emulation/xen-pvgrub/Manifest   | 2 +-
 .../{xen-pvgrub-4.12.0_rc4.ebuild => xen-pvgrub-4.12.0_rc5.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/xen-pvgrub/Manifest 
b/app-emulation/xen-pvgrub/Manifest
index 5ea340eb89e..db8f2563a58 100644
--- a/app-emulation/xen-pvgrub/Manifest
+++ b/app-emulation/xen-pvgrub/Manifest
@@ -6,5 +6,5 @@ DIST polarssl-1.1.4-gpl.tgz 611340 BLAKE2B 
613da06dda9e4b86db5a4d616a0a0afee98c9
 DIST xen-4.10.2.tar.gz 24697204 BLAKE2B 
b331d3ad8d7842446f7d2da5dd31560f636aa1408dd3cc8798dff35b868ef5a609d17e97ef4355e1e5aa825a5abc74103796f9a8015037f0a564ffcebd825722
 SHA512 
2e301b4d6eb106fcb52203bc1208c8fd1fc7bb5d795166c0f86e4085227050301f7daa6f21db440c47bc2ca2c7f87d9b96753cfdf3fa724e0416b5679b84c163
 DIST xen-4.10.3.tar.gz 24695778 BLAKE2B 
50a9e31fb4cf587eeedb357fc710405a1cd4506174a38eb9b032a0cdd9b7f7343d98624ecb07cf605b1403664c7117cdc8f011290309caa18ca9604b4008b906
 SHA512 
030d23109ce4c0ebf50ade6841d5525a39032bcf8fd0599ccaa9502ff301c1f61f9c5f49233b41a5934a71228958febc1e529a9fc6822ba401a0c18c490ad412
 DIST xen-4.11.1.tar.gz 25152217 BLAKE2B 
a8dfbeb3d490787725c589e1ce82dcbbcd0be7fb4743b38daf3a8704dffda34d1faabb07d74e01d2fab1572ce0b730c21192469317545e8b3edb3fae1130ef8c
 SHA512 
c1655c5decdaed95a2b9a99652318cfc72f6cfdae957cfe60d635f7787e8850f33e8fafc4c4b8d61fb579c9b9d93028a6382903e71808a0418b931e76d72a649
-DIST xen-4.12.0-rc4.tar.gz 26954470 BLAKE2B 
355582acac6f1600ee4da05eb1e0b9cb11b6d3e47c0fe5b3a9247ae2441e9abb5358040acbd9421c58aa6379660cbda93b82a391b5452001666db43db67b39ce
 SHA512 
71207638f768f5bcc05988f74cdbe26bacf707e3a8da8dadce89d2e33617f0c0f244c98855f21b8916df6c7646f1039de2685ac6f5e6e33994d662b06b81833b
+DIST xen-4.12.0-rc5.tar.gz 26514850 BLAKE2B 
41985dc33175bee8bddc4da0ec3b4da9f8cf3ebe580406011db47a27a8740566c1ace6e906d3385f73fee9b6cd572b0f3292381ac72a696fc15d020eb982ad02
 SHA512 
3d7fb254503c412a3c37782f7c75d093a1d43553dc110338d8dc00df0c6be4c8825cebf7f0519731e49263cef38d07ef48c18f073926d7eaf30abe64b13c52cb
 DIST zlib-1.2.3.tar.gz 496597 BLAKE2B 
603020b70cd52b83e48bde420b86e2acfd29d69bf7476eecbeeb07d1b8bcab703d2cbd3eab2990bddb8c268f13594592ce985798d49e2d6ba25104d49f22
 SHA512 
021b958fcd0d346c4ba761bcf0cc40f3522de6186cf5a0a6ea34a70504ce9622b1c2626fce40675bc8282cf5f5ade18473656abc38050f72f5d6480507a2106e

diff --git a/app-emulation/xen-pvgrub/xen-pvgrub-4.12.0_rc4.ebuild 
b/app-emulation/xen-pvgrub/xen-pvgrub-4.12.0_rc5.ebuild
similarity index 100%
rename from app-emulation/xen-pvgrub/xen-pvgrub-4.12.0_rc4.ebuild
rename to app-emulation/xen-pvgrub/xen-pvgrub-4.12.0_rc5.ebuild



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

2019-03-15 Thread Thomas Deutschmann
commit: 20cf5724f6078ddac715a0590b36d5055ad75134
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Mar 14 04:55:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 22:49:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20cf5724

app-emulation/xen: bump to 4.12.0_rc5

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-emulation/xen/Manifest | 2 +-
 app-emulation/xen/{xen-4.12.0_rc4.ebuild => xen-4.12.0_rc5.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/xen/Manifest b/app-emulation/xen/Manifest
index 67a4d989cd0..dda039512ee 100644
--- a/app-emulation/xen/Manifest
+++ b/app-emulation/xen/Manifest
@@ -4,4 +4,4 @@ DIST xen-4.10.3-upstream-patches-1.tar.xz 24064 BLAKE2B 
ec9339d00afd4057738a7816
 DIST xen-4.10.3.tar.gz 24695778 BLAKE2B 
50a9e31fb4cf587eeedb357fc710405a1cd4506174a38eb9b032a0cdd9b7f7343d98624ecb07cf605b1403664c7117cdc8f011290309caa18ca9604b4008b906
 SHA512 
030d23109ce4c0ebf50ade6841d5525a39032bcf8fd0599ccaa9502ff301c1f61f9c5f49233b41a5934a71228958febc1e529a9fc6822ba401a0c18c490ad412
 DIST xen-4.11.1-upstream-patches-0.tar.xz 45416 BLAKE2B 
3990dbf338c2aebe1cd601d7caccc6919352cc1f937677d447c3d2626143710bdfda7f1977e2ad7112abff9cad6bb660bc1b0993ca74b2eff51da6d4f4365813
 SHA512 
ecbc13e607581a6f9b4e318145afaa92ce641bda6fb12585408f61bcf24fa9b245004ad22150e109db5d38fcea38e6bdaf6bb2d6eaaf8e5d5fa8816b5a19e456
 DIST xen-4.11.1.tar.gz 25152217 BLAKE2B 
a8dfbeb3d490787725c589e1ce82dcbbcd0be7fb4743b38daf3a8704dffda34d1faabb07d74e01d2fab1572ce0b730c21192469317545e8b3edb3fae1130ef8c
 SHA512 
c1655c5decdaed95a2b9a99652318cfc72f6cfdae957cfe60d635f7787e8850f33e8fafc4c4b8d61fb579c9b9d93028a6382903e71808a0418b931e76d72a649
-DIST xen-4.12.0-rc4.tar.gz 26954470 BLAKE2B 
355582acac6f1600ee4da05eb1e0b9cb11b6d3e47c0fe5b3a9247ae2441e9abb5358040acbd9421c58aa6379660cbda93b82a391b5452001666db43db67b39ce
 SHA512 
71207638f768f5bcc05988f74cdbe26bacf707e3a8da8dadce89d2e33617f0c0f244c98855f21b8916df6c7646f1039de2685ac6f5e6e33994d662b06b81833b
+DIST xen-4.12.0-rc5.tar.gz 26514850 BLAKE2B 
41985dc33175bee8bddc4da0ec3b4da9f8cf3ebe580406011db47a27a8740566c1ace6e906d3385f73fee9b6cd572b0f3292381ac72a696fc15d020eb982ad02
 SHA512 
3d7fb254503c412a3c37782f7c75d093a1d43553dc110338d8dc00df0c6be4c8825cebf7f0519731e49263cef38d07ef48c18f073926d7eaf30abe64b13c52cb

diff --git a/app-emulation/xen/xen-4.12.0_rc4.ebuild 
b/app-emulation/xen/xen-4.12.0_rc5.ebuild
similarity index 100%
rename from app-emulation/xen/xen-4.12.0_rc4.ebuild
rename to app-emulation/xen/xen-4.12.0_rc5.ebuild



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

2019-03-15 Thread Thomas Deutschmann
commit: a3618daa909f84c5c9963566b91941953a19c5a4
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Mar 14 05:02:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 22:49:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3618daa

app-emulation/xen-tools: drop old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-emulation/xen-tools/Manifest   |   2 -
 .../xen-tools/xen-tools-4.12.0_rc4.ebuild  | 472 -
 2 files changed, 474 deletions(-)

diff --git a/app-emulation/xen-tools/Manifest b/app-emulation/xen-tools/Manifest
index e9e943ca04e..9233cee6df2 100644
--- a/app-emulation/xen-tools/Manifest
+++ b/app-emulation/xen-tools/Manifest
@@ -7,9 +7,7 @@ DIST xen-4.10.3-upstream-patches-1.tar.xz 24064 BLAKE2B 
ec9339d00afd4057738a7816
 DIST xen-4.10.3.tar.gz 24695778 BLAKE2B 
50a9e31fb4cf587eeedb357fc710405a1cd4506174a38eb9b032a0cdd9b7f7343d98624ecb07cf605b1403664c7117cdc8f011290309caa18ca9604b4008b906
 SHA512 
030d23109ce4c0ebf50ade6841d5525a39032bcf8fd0599ccaa9502ff301c1f61f9c5f49233b41a5934a71228958febc1e529a9fc6822ba401a0c18c490ad412
 DIST xen-4.11.1-upstream-patches-0.tar.xz 45416 BLAKE2B 
3990dbf338c2aebe1cd601d7caccc6919352cc1f937677d447c3d2626143710bdfda7f1977e2ad7112abff9cad6bb660bc1b0993ca74b2eff51da6d4f4365813
 SHA512 
ecbc13e607581a6f9b4e318145afaa92ce641bda6fb12585408f61bcf24fa9b245004ad22150e109db5d38fcea38e6bdaf6bb2d6eaaf8e5d5fa8816b5a19e456
 DIST xen-4.11.1.tar.gz 25152217 BLAKE2B 
a8dfbeb3d490787725c589e1ce82dcbbcd0be7fb4743b38daf3a8704dffda34d1faabb07d74e01d2fab1572ce0b730c21192469317545e8b3edb3fae1130ef8c
 SHA512 
c1655c5decdaed95a2b9a99652318cfc72f6cfdae957cfe60d635f7787e8850f33e8fafc4c4b8d61fb579c9b9d93028a6382903e71808a0418b931e76d72a649
-DIST xen-4.12.0-rc4.tar.gz 26954470 BLAKE2B 
355582acac6f1600ee4da05eb1e0b9cb11b6d3e47c0fe5b3a9247ae2441e9abb5358040acbd9421c58aa6379660cbda93b82a391b5452001666db43db67b39ce
 SHA512 
71207638f768f5bcc05988f74cdbe26bacf707e3a8da8dadce89d2e33617f0c0f244c98855f21b8916df6c7646f1039de2685ac6f5e6e33994d662b06b81833b
 DIST xen-4.12.0-rc5.tar.gz 26514850 BLAKE2B 
41985dc33175bee8bddc4da0ec3b4da9f8cf3ebe580406011db47a27a8740566c1ace6e906d3385f73fee9b6cd572b0f3292381ac72a696fc15d020eb982ad02
 SHA512 
3d7fb254503c412a3c37782f7c75d093a1d43553dc110338d8dc00df0c6be4c8825cebf7f0519731e49263cef38d07ef48c18f073926d7eaf30abe64b13c52cb
 DIST xen-gentoo-patches-14.tar.xz 36244 BLAKE2B 
94b751df0ae9a49d1c52ec5fa835d4a040ccb6a4a0f63ef6ef628191163ce7dbd47d4e3b2dbb1cf6cf6c8b368bea4267ff989754482c4794209a80eae9313c25
 SHA512 
8a23aeddbcf80c049da36e3ef9d797c16996b45be21b56f46f3c9c3833a7c1028fd9ed56fc8053faeb78db21076608de2eb32908e1ae1285f4f200ace40c8c2d
-DIST xen-gentoo-patches-15.tar.xz 36508 BLAKE2B 
10b89597159916781f02e1d0f285317f7319cb26562c4e94f9a755637e31f26dd7e00fe250ceaa71ca140191c2fb76e6c889942dd2f33e0347d65b66734060c8
 SHA512 
60ba45d95a7f0fa34532395491de221998cf1c7d1aec6cacb8fdc163d31a79ef57a32ef9f2495a5ae10b5d4c9bc5bd43ce6c965ceb5d13291c462501bd419681
 DIST xen-gentoo-patches-16.tar.xz 36980 BLAKE2B 
a59fcb221a915e39fbbc463fa8b1ca1ef7654936cc17f64853d91737478a6f78480a3e459b07b8c3ddcc81ab9400beb9ea3906750ba69864d1b97db349d2
 SHA512 
7727e5c7f4ef997eea830618bc26b26f3a99539a1c702264132401e41a328b384346a06b6721f18e3056fc91a2d2d2bf6320e0ae3c79432c7458a24a0d269c56
 DIST xen-ovmf-patches-3.tar.xz 4208 BLAKE2B 
0df8f85667a33c91cbfd86c59aec2ae65eca892b45d66eed76f793a52e2748989bc2785861f8bfdf94235ef7a6c0be6572c6e6cce9695469e40f0facd0ce3947
 SHA512 
abe001053ca702138bbcdd6bea14e2daae5c785f862d6a15001ca894c8ed8617f0c5dc439c6f54a41433b988acf57c71911af1db074aa76732c39d98622a3b5b

diff --git a/app-emulation/xen-tools/xen-tools-4.12.0_rc4.ebuild 
b/app-emulation/xen-tools/xen-tools-4.12.0_rc4.ebuild
deleted file mode 100644
index 57bdbc739ef..000
--- a/app-emulation/xen-tools/xen-tools-4.12.0_rc4.ebuild
+++ /dev/null
@@ -1,472 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE='ncurses,xml,threads'
-
-inherit bash-completion-r1 flag-o-matic multilib python-single-r1 
toolchain-funcs
-
-MY_PV=${PV/_/-}
-
-if [[ $PV == * ]]; then
-   inherit git-r3
-   REPO="xen.git"
-   EGIT_REPO_URI="git://xenbits.xen.org/${REPO}"
-   S="${WORKDIR}/${REPO}"
-else
-   #KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-   KEYWORDS=""
-   UPSTREAM_VER=
-   SECURITY_VER=
-   # xen-tools's gentoo patches tarball
-   GENTOO_VER=15
-   # xen-tools's gentoo patches version which apply to this specific ebuild
-   GENTOO_GPV=0
-   # xen-tools ovmf's patches
-   OVMF_VER=3
-
-   SEABIOS_VER=1.12.0
-   # OVMF upstream 5920a9d16b1ab887c2858224316a98e961d71b05
-   OVMF_PV=20170321
-
-   [[ -n ${UPSTREAM_VER} ]] && \
- 

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

2019-03-15 Thread Thomas Deutschmann
commit: f0c5beb55a08fbe52f44e6b55332660eb9a020c5
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Mar 14 04:38:45 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 22:49:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0c5beb5

app-emulation/xen-tools: fix building on x86 with gcc 8

Closes: https://bugs.gentoo.org/679860
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-emulation/xen-tools/Manifest   |   1 +
 app-emulation/xen-tools/files/gentoo-patches.conf  |  13 +-
 app-emulation/xen-tools/xen-tools-4.10.3-r2.ebuild | 464 
 app-emulation/xen-tools/xen-tools-4.11.1-r2.ebuild | 470 +
 4 files changed, 947 insertions(+), 1 deletion(-)

diff --git a/app-emulation/xen-tools/Manifest b/app-emulation/xen-tools/Manifest
index a03d4b2b50a..38da60cfc91 100644
--- a/app-emulation/xen-tools/Manifest
+++ b/app-emulation/xen-tools/Manifest
@@ -10,4 +10,5 @@ DIST xen-4.11.1.tar.gz 25152217 BLAKE2B 
a8dfbeb3d490787725c589e1ce82dcbbcd0be7fb
 DIST xen-4.12.0-rc4.tar.gz 26954470 BLAKE2B 
355582acac6f1600ee4da05eb1e0b9cb11b6d3e47c0fe5b3a9247ae2441e9abb5358040acbd9421c58aa6379660cbda93b82a391b5452001666db43db67b39ce
 SHA512 
71207638f768f5bcc05988f74cdbe26bacf707e3a8da8dadce89d2e33617f0c0f244c98855f21b8916df6c7646f1039de2685ac6f5e6e33994d662b06b81833b
 DIST xen-gentoo-patches-14.tar.xz 36244 BLAKE2B 
94b751df0ae9a49d1c52ec5fa835d4a040ccb6a4a0f63ef6ef628191163ce7dbd47d4e3b2dbb1cf6cf6c8b368bea4267ff989754482c4794209a80eae9313c25
 SHA512 
8a23aeddbcf80c049da36e3ef9d797c16996b45be21b56f46f3c9c3833a7c1028fd9ed56fc8053faeb78db21076608de2eb32908e1ae1285f4f200ace40c8c2d
 DIST xen-gentoo-patches-15.tar.xz 36508 BLAKE2B 
10b89597159916781f02e1d0f285317f7319cb26562c4e94f9a755637e31f26dd7e00fe250ceaa71ca140191c2fb76e6c889942dd2f33e0347d65b66734060c8
 SHA512 
60ba45d95a7f0fa34532395491de221998cf1c7d1aec6cacb8fdc163d31a79ef57a32ef9f2495a5ae10b5d4c9bc5bd43ce6c965ceb5d13291c462501bd419681
+DIST xen-gentoo-patches-16.tar.xz 36980 BLAKE2B 
a59fcb221a915e39fbbc463fa8b1ca1ef7654936cc17f64853d91737478a6f78480a3e459b07b8c3ddcc81ab9400beb9ea3906750ba69864d1b97db349d2
 SHA512 
7727e5c7f4ef997eea830618bc26b26f3a99539a1c702264132401e41a328b384346a06b6721f18e3056fc91a2d2d2bf6320e0ae3c79432c7458a24a0d269c56
 DIST xen-ovmf-patches-3.tar.xz 4208 BLAKE2B 
0df8f85667a33c91cbfd86c59aec2ae65eca892b45d66eed76f793a52e2748989bc2785861f8bfdf94235ef7a6c0be6572c6e6cce9695469e40f0facd0ce3947
 SHA512 
abe001053ca702138bbcdd6bea14e2daae5c785f862d6a15001ca894c8ed8617f0c5dc439c6f54a41433b988acf57c71911af1db074aa76732c39d98622a3b5b

diff --git a/app-emulation/xen-tools/files/gentoo-patches.conf 
b/app-emulation/xen-tools/files/gentoo-patches.conf
index 47fcace8804..1c541bb0e84 100644
--- a/app-emulation/xen-tools/files/gentoo-patches.conf
+++ b/app-emulation/xen-tools/files/gentoo-patches.conf
@@ -113,7 +113,8 @@ _gx050=" xen-tools-4.12.0-shim.patch"
 
 # Fix building with gcc 8, bug #657388
 _gx047=" xen-tools-4.10.1-gcc8.patch"
-_gx048=" xen-tools-4.11.0-gcc8.patch"
+_gx048=" xen-tools-4.11.1-gcc8.patch"
+_gx052=" xen-tools-4.10.3-gcc8.patch"
 
 # Fix pdf document generation, bug #650396
 _gx049=" xen-tools-4.10.1-pdfdoc.patch"
@@ -138,6 +139,16 @@ ${_gx045} ${_gx046} ${_gx047}
 ${_gx049}
 "
 
+# xen-tools-4.10.3 patches set r1
+_gpv_xen_tools_4103_1="
+${_gx038} ${_gx017} ${_gx043}
+${_gx027}
+${_gx028} ${_gx029}
+${_gx037} ${_gx042}
+${_gx045} ${_gx046} ${_gx052}
+${_gx049}
+"
+
 # xen-tools-4.11.1 patches set
 _gpv_xen_tools_4111_0="
 ${_gx038} ${_gx017} ${_gx043}

diff --git a/app-emulation/xen-tools/xen-tools-4.10.3-r2.ebuild 
b/app-emulation/xen-tools/xen-tools-4.10.3-r2.ebuild
new file mode 100644
index 000..0f2b9bdd5db
--- /dev/null
+++ b/app-emulation/xen-tools/xen-tools-4.10.3-r2.ebuild
@@ -0,0 +1,464 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE='ncurses,xml,threads'
+
+inherit bash-completion-r1 flag-o-matic multilib python-single-r1 
toolchain-funcs
+
+MY_PV=${PV/_/-}
+
+if [[ $PV == * ]]; then
+   inherit git-r3
+   REPO="xen.git"
+   EGIT_REPO_URI="git://xenbits.xen.org/${REPO}"
+   S="${WORKDIR}/${REPO}"
+else
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   UPSTREAM_VER=1
+   SECURITY_VER=
+   # xen-tools's gentoo patches tarball
+   GENTOO_VER=16
+   # xen-tools's gentoo patches version which apply to this specific ebuild
+   GENTOO_GPV=1
+   # xen-tools ovmf's patches
+   OVMF_VER=3
+
+   SEABIOS_VER=1.10.0
+   # OVMF upstream 5920a9d16b1ab887c2858224316a98e961d71b05
+   OVMF_PV=20170321
+
+   [[ -n ${UPSTREAM_VER} ]] && \
+   

[gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/files/

2019-03-15 Thread Thomas Deutschmann
commit: 197560bea9c1229339a3bf7feaa682031df7bead
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Mar 14 06:04:52 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 22:49:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=197560be

app-emulation/xen-tools: drop unused patches definition

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11361
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-emulation/xen-tools/files/gentoo-patches.conf | 79 ---
 1 file changed, 79 deletions(-)

diff --git a/app-emulation/xen-tools/files/gentoo-patches.conf 
b/app-emulation/xen-tools/files/gentoo-patches.conf
index a099e2134f4..234abc9b2ad 100644
--- a/app-emulation/xen-tools/files/gentoo-patches.conf
+++ b/app-emulation/xen-tools/files/gentoo-patches.conf
@@ -1,76 +1,17 @@
-# Drop .config, fixes to gcc-4.6
-_gx001=" xen-4-fix_dotconfig-gcc.patch"
-_gx020=" xen-4.3-fix_dotconfig-gcc.patch"
-
-# Fix texi2html build error with new texi2html, qemu.doc.html
-_gx002=" xen-tools-4-docfix.patch"
-_gx003=" xen-tools-4-qemu-xen-doc.patch"
-
-_gx004=" xen-tools-4.2-pod-utf8-chars.patch"
-_gx005=" xen-tools-4.2-pod-docs.patch"
-_gx006=" xen-tools-4.2-pod-xl.patch"
-
-# Fix network broadcast on bridged networks
-_gx007=" xen-tools-3.4.0-network-bridge-broadcast.patch"
-
 # Bug 496708
-_gx008=" xen-tools-4-unbundle-ipxe.patch"
 _gx045=" xen-tools-4.10.1-unbundle-ipxe.patch"
-#use system-seabios && epatch "${FILESDIR}"/${PN}-4-unbundle-seabios.patch
-
-# Fix bridge by idella4, bug #362575
-_gx009=" xen-tools-4.1.1-bridge.patch"
-
-# Conditional patch, fix in ebuild
-# Don't build ipxe with pie on hardened, Bug #360805
-#if gcc-specs-pie; then
-#  epatch "${FILESDIR}"/ipxe-nopie.patch
-#fi
-
-# Prevent double stripping of files at install
-_gx010=" xen-4.2.0-nostrip.patch"
-_gx024+=" xen-4.4-nostrip.patch"
-
-# fix jobserver in Makefile
-_gx011=" xen-4.2.0-jserver.patch"
-_gx021=" xen-4.3-jserver.patch"
-
-# add missing header, Bug #467200
-_gx012=" xen-4-ulong.patch"
-_gx013=" xen-tools-4.2-xen_disk_leak.patch"
-
-# Set dom0-min-mem to kb; Bug #472982
-_gx014=" xen-4.2-configsxp.patch"
-
-# Bug 463840
-_gx015=" xen-tools-4.2.2-install.patch"
-_gx016=" xen-tools-4.2.2-rt-link.patch"
 
 # Bug 379537
 _gx017=" fix-gold-ld.patch"
 
-# Bug 510976
-_gx018=" xen-tools-4.2.4-udev-rules.patch"
-
-# bundled seabios
-_gx019=" xen-tools-4-anti-seabios-download.patch"
-_gx032=" xen-tools-4.5-anti-seabios-download.patch"
-
 # Bug 477676
-_gx022=" xen-tools-4.3-ar-cc.patch"
 _gx038=" xen-tools-4.8-ar-cc.patch"
 
 # Prevent file collision with qemu package Bug 478064
-_gx023=" qemu-bridge.patch"
-_gx025=" xen-4.4-qemu-bridge.patch"
-_gx031=" xen-4.5-qemu-bridge.patch"
-_gx039=" xen-4.8-qemu-bridge.patch"
 _gx043=" xen-4.10-qemu-bridge.patch"
 _gx051=" xen-4.12-qemu-bridge.patch"
 #mv tools/qemu-xen/qemu-bridge-helper.c tools/qemu-xen/xen-bridge-helper.c || 
die
 
-_gx026=" xen-tools-4.4-api-fix.patch"
-
 # Fix po file collision with app-emulation/qemu, while USE=qemu is enabled, 
Bug 508302
 _gx027=" xen-tools-4-qemu-fix-po-collision.patch"
 
@@ -80,33 +21,13 @@ _gx028=" xen-tools-4.4.1-tinfo.patch"
 # Don't download ovmf, use pre-released
 _gx029=" xen-tools-4-anti-ovmf-download.patch"
 
-# fix build err while using gcc-4.5.x, c99
-_gx033=" xen-tools-4.4.2-gcc99.patch"
-_gx034=" xen-tools-4.5.0-gcc99.patch"
-
-_gx035=" xen-tools-4.2-pod-docs-r1.patch"
-# disable stackcheck for hardened system, bug 569810
-_gx036=" xen-tools-4.6-no-stackcheck.patch"
-
 # increase stack to fix xenqemu err
 # https://lists.gnu.org/archive/html/qemu-devel/2016-09/msg03961.html
 _gx037=" xen-tools-4.6-increase-stack-size.patch"
 
-
-#Fix issues with zero-length records in migration v2"
-#https://xenbits.xen.org/gitweb/?p=people/andrewcoop/xen.git;a=shortlog;h=refs/heads/tools-fix-zero-length-records
-_gx040=" 0001-docs-Clarify-the-expected-behaviour-of-zero-length-r.patch
-   0003-tools-libxc-Avoid-generating-inappropriate-zero-leng.patch
-   0004-tools-python-Adjust-migration-v2-library-to-warn-abo.patch"
-
-_gx041=" 0002-tools-libxc-Tolerate-zero-length-records-in-migratio.patch"
-
 #Fix missing makedev(), major(), minor()
 _gx042=" xen-tools-4.8.2-makedev.patch"
 
-# Fix building with glibc 2.27, bug #648182
-_gx044=" xen-tools-4.9-glibc-memfd.patch"
-
 # Disable failing shim
 _gx046=" xen-tools-4.10.1-shim.patch"
 _gx050=" xen-tools-4.12.0-shim.patch"



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

2019-03-15 Thread Thomas Deutschmann
commit: 01fefce4a18db1346a58b70effd3aa2941bc307e
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Mar 14 04:53:28 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 22:49:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01fefce4

app-emulation/xen-tools: bump to 4.12.0_rc5

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-emulation/xen-tools/Manifest  |  1 +
 app-emulation/xen-tools/files/gentoo-patches.conf |  5 +++--
 ...tools-4.11.1-r1.ebuild => xen-tools-4.12.0_rc5.ebuild} | 15 +--
 3 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/app-emulation/xen-tools/Manifest b/app-emulation/xen-tools/Manifest
index 38da60cfc91..e9e943ca04e 100644
--- a/app-emulation/xen-tools/Manifest
+++ b/app-emulation/xen-tools/Manifest
@@ -8,6 +8,7 @@ DIST xen-4.10.3.tar.gz 24695778 BLAKE2B 
50a9e31fb4cf587eeedb357fc710405a1cd45061
 DIST xen-4.11.1-upstream-patches-0.tar.xz 45416 BLAKE2B 
3990dbf338c2aebe1cd601d7caccc6919352cc1f937677d447c3d2626143710bdfda7f1977e2ad7112abff9cad6bb660bc1b0993ca74b2eff51da6d4f4365813
 SHA512 
ecbc13e607581a6f9b4e318145afaa92ce641bda6fb12585408f61bcf24fa9b245004ad22150e109db5d38fcea38e6bdaf6bb2d6eaaf8e5d5fa8816b5a19e456
 DIST xen-4.11.1.tar.gz 25152217 BLAKE2B 
a8dfbeb3d490787725c589e1ce82dcbbcd0be7fb4743b38daf3a8704dffda34d1faabb07d74e01d2fab1572ce0b730c21192469317545e8b3edb3fae1130ef8c
 SHA512 
c1655c5decdaed95a2b9a99652318cfc72f6cfdae957cfe60d635f7787e8850f33e8fafc4c4b8d61fb579c9b9d93028a6382903e71808a0418b931e76d72a649
 DIST xen-4.12.0-rc4.tar.gz 26954470 BLAKE2B 
355582acac6f1600ee4da05eb1e0b9cb11b6d3e47c0fe5b3a9247ae2441e9abb5358040acbd9421c58aa6379660cbda93b82a391b5452001666db43db67b39ce
 SHA512 
71207638f768f5bcc05988f74cdbe26bacf707e3a8da8dadce89d2e33617f0c0f244c98855f21b8916df6c7646f1039de2685ac6f5e6e33994d662b06b81833b
+DIST xen-4.12.0-rc5.tar.gz 26514850 BLAKE2B 
41985dc33175bee8bddc4da0ec3b4da9f8cf3ebe580406011db47a27a8740566c1ace6e906d3385f73fee9b6cd572b0f3292381ac72a696fc15d020eb982ad02
 SHA512 
3d7fb254503c412a3c37782f7c75d093a1d43553dc110338d8dc00df0c6be4c8825cebf7f0519731e49263cef38d07ef48c18f073926d7eaf30abe64b13c52cb
 DIST xen-gentoo-patches-14.tar.xz 36244 BLAKE2B 
94b751df0ae9a49d1c52ec5fa835d4a040ccb6a4a0f63ef6ef628191163ce7dbd47d4e3b2dbb1cf6cf6c8b368bea4267ff989754482c4794209a80eae9313c25
 SHA512 
8a23aeddbcf80c049da36e3ef9d797c16996b45be21b56f46f3c9c3833a7c1028fd9ed56fc8053faeb78db21076608de2eb32908e1ae1285f4f200ace40c8c2d
 DIST xen-gentoo-patches-15.tar.xz 36508 BLAKE2B 
10b89597159916781f02e1d0f285317f7319cb26562c4e94f9a755637e31f26dd7e00fe250ceaa71ca140191c2fb76e6c889942dd2f33e0347d65b66734060c8
 SHA512 
60ba45d95a7f0fa34532395491de221998cf1c7d1aec6cacb8fdc163d31a79ef57a32ef9f2495a5ae10b5d4c9bc5bd43ce6c965ceb5d13291c462501bd419681
 DIST xen-gentoo-patches-16.tar.xz 36980 BLAKE2B 
a59fcb221a915e39fbbc463fa8b1ca1ef7654936cc17f64853d91737478a6f78480a3e459b07b8c3ddcc81ab9400beb9ea3906750ba69864d1b97db349d2
 SHA512 
7727e5c7f4ef997eea830618bc26b26f3a99539a1c702264132401e41a328b384346a06b6721f18e3056fc91a2d2d2bf6320e0ae3c79432c7458a24a0d269c56

diff --git a/app-emulation/xen-tools/files/gentoo-patches.conf 
b/app-emulation/xen-tools/files/gentoo-patches.conf
index 1c541bb0e84..a099e2134f4 100644
--- a/app-emulation/xen-tools/files/gentoo-patches.conf
+++ b/app-emulation/xen-tools/files/gentoo-patches.conf
@@ -115,6 +115,7 @@ _gx050=" xen-tools-4.12.0-shim.patch"
 _gx047=" xen-tools-4.10.1-gcc8.patch"
 _gx048=" xen-tools-4.11.1-gcc8.patch"
 _gx052=" xen-tools-4.10.3-gcc8.patch"
+_gx053=" xen-tools-4.12.0-gcc8.patch"
 
 # Fix pdf document generation, bug #650396
 _gx049=" xen-tools-4.10.1-pdfdoc.patch"
@@ -160,10 +161,10 @@ ${_gx049}
 "
 
 # xen-tools-4.12.0 patches set
-_gpv_xen_tools_4120_rc4_0="
+_gpv_xen_tools_4120_rc5_0="
 ${_gx038}
 ${_gx027}
 ${_gx028} ${_gx029}
 ${_gx037} ${_gx042}
-${_gx048} ${_gx050} ${_gx051}
+${_gx053} ${_gx050} ${_gx051}
 "

diff --git a/app-emulation/xen-tools/xen-tools-4.11.1-r1.ebuild 
b/app-emulation/xen-tools/xen-tools-4.12.0_rc5.ebuild
similarity index 98%
rename from app-emulation/xen-tools/xen-tools-4.11.1-r1.ebuild
rename to app-emulation/xen-tools/xen-tools-4.12.0_rc5.ebuild
index fa4b312cb48..36e89e49a69 100644
--- a/app-emulation/xen-tools/xen-tools-4.11.1-r1.ebuild
+++ b/app-emulation/xen-tools/xen-tools-4.12.0_rc5.ebuild
@@ -16,17 +16,18 @@ if [[ $PV == * ]]; then
EGIT_REPO_URI="git://xenbits.xen.org/${REPO}"
S="${WORKDIR}/${REPO}"
 else
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-   UPSTREAM_VER=0
+   #KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS=""
+   UPSTREAM_VER=
SECURITY_VER=
# xen-tools's gentoo patches tarball
-   GENTOO_VER=14
+   GENTOO_VER=16
# xen-tools's gentoo patches version which apply to this specific ebuild
GENTOO_GPV=0
  

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

2019-03-15 Thread Mikle Kolyada
commit: ffe274a264ffc88cbe98e4748e72a55fa3d238b6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 22:46:43 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 22:47:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffe274a2

media-libs/opusfile: amd64 stable wrt bug #675804

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

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

diff --git a/media-libs/opusfile/opusfile-0.11.ebuild 
b/media-libs/opusfile/opusfile-0.11.ebuild
index 5270f514641..2748719f154 100644
--- a/media-libs/opusfile/opusfile-0.11.ebuild
+++ b/media-libs/opusfile/opusfile-0.11.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://downloads.xiph.org/releases/opus/${P}.tar.gz;
 
 LICENSE="BSD"
 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="doc fixed-point +float +http libressl static-libs"
 
 RDEPEND="media-libs/libogg



[gentoo-commits] repo/gentoo:master commit in: games-engines/scummvm/

2019-03-15 Thread Lars Wendler
commit: 661cc3f91161da2a0771b9b8a5091615949d82ed
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Mar 15 22:13:00 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar 15 22:45:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=661cc3f9

games-engines/scummvm: Removed old.

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

 games-engines/scummvm/Manifest |   1 -
 games-engines/scummvm/scummvm-1.9.0.ebuild | 102 -
 2 files changed, 103 deletions(-)

diff --git a/games-engines/scummvm/Manifest b/games-engines/scummvm/Manifest
index a14c9fdd47f..e3b863b3406 100644
--- a/games-engines/scummvm/Manifest
+++ b/games-engines/scummvm/Manifest
@@ -1,2 +1 @@
-DIST scummvm-1.9.0.tar.xz 22020384 BLAKE2B 
10f2c20cf1e32a60897c9e909e0bfda7827a646eb38aaf4923b76708fb5b797c66f94d92f7c095ca77570712223cd0d037fccc563c709448d4d2093299050773
 SHA512 
c81248e8474ad5b354a46741ab2e40b8ddfb99e196b0c837424e9ccced285d03d5f12fc41be57034be53bdb8254a61ca0c9d9cd9a2340875d32e1bffa31699c2
 DIST scummvm-2.0.0.tar.xz 21291656 BLAKE2B 
303aa4254d1c940ce6d65d192f2678a033015f1b85e38c62902aa8fac05a1ff33fd7e3fe9de47825cd0cf72076027adb21c72a63a38349f9ee8f63566f3db948
 SHA512 
5f4c11145c5dfcc7ae95d5c0e5ac9e938912cc5060b9d5fdfcb699a745755b31412e44199e487ad388ca5e091afc3366f874610adb44d440f336e26d6cd4812c

diff --git a/games-engines/scummvm/scummvm-1.9.0.ebuild 
b/games-engines/scummvm/scummvm-1.9.0.ebuild
deleted file mode 100644
index 5e45b629955..000
--- a/games-engines/scummvm/scummvm-1.9.0.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils flag-o-matic gnome2-utils toolchain-funcs
-
-DESCRIPTION="Reimplementation of the SCUMM game engine used in Lucasarts 
adventures"
-HOMEPAGE="http://scummvm.sourceforge.net/;
-SRC_URI="http://scummvm.org/frs/scummvm/${PV}/${P}.tar.xz;
-
-LICENSE="GPL-2+ LGPL-2.1 BSD GPL-3-with-font-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd"
-IUSE="aac alsa debug flac fluidsynth jpeg mpeg2 mp3 opengl png theora truetype 
unsupported vorbis zlib"
-RESTRICT="test"  # it only looks like there's a test there #77507
-
-RDEPEND=">=media-libs/libsdl2-2.0.0[sound,joystick,video]
-   zlib? ( sys-libs/zlib )
-   jpeg? ( virtual/jpeg:0 )
-   png? ( media-libs/libpng:0 )
-   vorbis? ( media-libs/libogg media-libs/libvorbis )
-   theora? ( media-libs/libtheora )
-   aac? ( media-libs/faad2 )
-   alsa? ( media-libs/alsa-lib )
-   mp3? ( media-libs/libmad )
-   mpeg2? ( media-libs/libmpeg2 )
-   flac? ( media-libs/flac )
-   opengl? ( virtual/opengl )
-   truetype? ( media-libs/freetype:2 )
-   fluidsynth? ( media-sound/fluidsynth )"
-DEPEND="${RDEPEND}
-   app-arch/xz-utils
-   x86? ( dev-lang/nasm )"
-
-S=${WORKDIR}/${P/_/}
-
-src_prepare() {
-   default
-
-   # -g isn't needed for nasm here
-   sed -i \
-   -e '/NASMFLAGS/ s/-g//' \
-   configure || die
-   sed -i \
-   -e '/INSTALL.*doc/d' \
-   -e '/INSTALL.*\/pixmaps/d' \
-   -e 's/-s //' \
-   ports.mk || die
-}
-
-src_configure() {
-   use x86 && append-ldflags -Wl,-z,noexecstack
-
-   # NOT AN AUTOCONF SCRIPT SO DONT CALL ECONF
-   SDL_CONFIG="sdl2-config" \
-   ./configure \
-   --backend=sdl \
-   --host=${CHOST} \
-   --enable-verbose-build \
-   --prefix=/usr \
-   --libdir="/usr/$(get_libdir)" \
-   --opengl-mode=$(usex opengl auto none) \
-   $(use_enable aac faad) \
-   $(use_enable alsa) \
-   $(use_enable debug) \
-   $(use_enable !debug release-mode) \
-   $(use_enable flac) \
-   $(usex fluidsynth '' --disable-fluidsynth) \
-   $(use_enable jpeg) \
-   $(use_enable mp3 mad) \
-   $(use_enable mpeg2) \
-   $(use_enable png) \
-   $(use_enable theora theoradec) \
-   $(use_enable truetype freetype2) \
-   $(usex unsupported --enable-all-engines '') \
-   $(use_enable vorbis) \
-   $(use_enable zlib) \
-   $(use_enable x86 nasm) \
-   ${myconf} ${EXTRA_ECONF} || die
-}
-
-src_compile() {
-   emake AR="$(tc-getAR) cru" RANLIB=$(tc-getRANLIB)
-}
-
-src_install() {
-   default
-   doicon -s scalable icons/scummvm.svg
-   make_desktop_entry scummvm ScummVM scummvm "Game;AdventureGame"
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: games-engines/scummvm/

2019-03-15 Thread Lars Wendler
commit: f5af80ab565c07d5da0443dd2b2d137e54d9a3c8
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Mar 15 22:12:32 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar 15 22:45:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5af80ab

games-engines/scummvm: EAPI-7 revbump.

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

 games-engines/scummvm/scummvm-2.0.0-r1.ebuild | 110 ++
 1 file changed, 110 insertions(+)

diff --git a/games-engines/scummvm/scummvm-2.0.0-r1.ebuild 
b/games-engines/scummvm/scummvm-2.0.0-r1.ebuild
new file mode 100644
index 000..858b3bcc36b
--- /dev/null
+++ b/games-engines/scummvm/scummvm-2.0.0-r1.ebuild
@@ -0,0 +1,110 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit desktop flag-o-matic toolchain-funcs xdg
+
+DESCRIPTION="Reimplementation of the SCUMM game engine used in Lucasarts 
adventures"
+HOMEPAGE="http://scummvm.sourceforge.net/;
+SRC_URI="http://scummvm.org/frs/scummvm/${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2+ LGPL-2.1 BSD GPL-3-with-font-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd"
+IUSE="aac alsa debug flac fluidsynth jpeg mpeg2 mp3 opengl png theora truetype 
unsupported vorbis zlib"
+RESTRICT="test"  # it only looks like there's a test there #77507
+
+RDEPEND=">=media-libs/libsdl2-2.0.0[sound,joystick,video]
+   zlib? ( sys-libs/zlib:= )
+   jpeg? ( virtual/jpeg:0 )
+   png? ( media-libs/libpng:0 )
+   vorbis? (
+   media-libs/libogg
+   media-libs/libvorbis
+   )
+   theora? ( media-libs/libtheora )
+   aac? ( media-libs/faad2 )
+   alsa? ( media-libs/alsa-lib )
+   mp3? ( media-libs/libmad )
+   mpeg2? ( media-libs/libmpeg2 )
+   flac? ( media-libs/flac )
+   opengl? ( virtual/opengl )
+   truetype? ( media-libs/freetype:2 )
+   fluidsynth? ( media-sound/fluidsynth )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   app-arch/xz-utils
+   truetype? ( virtual/pkgconfig )
+   x86? ( dev-lang/nasm )
+"
+
+S="${WORKDIR}/${P/_/}"
+
+PATCHES=( "${FILESDIR}/${PN}-2.0.0-freetype_pkgconfig.patch" )
+
+src_prepare() {
+   default
+
+   # -g isn't needed for nasm here
+   sed -i \
+   -e '/NASMFLAGS/ s/-g//' \
+   configure || die
+   sed -i \
+   -e '/INSTALL.*doc/d' \
+   -e '/INSTALL.*\/pixmaps/d' \
+   -e 's/-s //' \
+   ports.mk || die
+}
+
+src_configure() {
+   use x86 && append-ldflags -Wl,-z,noexecstack
+
+   local myconf=(
+   --backend=sdl
+   --host=${CHOST}
+   --enable-verbose-build
+   --prefix="${EPREFIX}/usr"
+   --libdir="${EPREFIX}/usr/$(get_libdir)"
+   --opengl-mode=$(usex opengl auto none)
+   $(use_enable aac faad)
+   $(use_enable alsa)
+   $(use_enable debug)
+   $(use_enable !debug release-mode)
+   $(use_enable flac)
+   $(usex fluidsynth '' --disable-fluidsynth)
+   $(use_enable jpeg)
+   $(use_enable mp3 mad)
+   $(use_enable mpeg2)
+   $(use_enable png)
+   $(use_enable theora theoradec)
+   $(use_enable truetype freetype2)
+   $(usex unsupported --enable-all-engines '')
+   $(use_enable vorbis)
+   $(use_enable zlib)
+   $(use_enable x86 nasm)
+   )
+   # NOT AN AUTOCONF SCRIPT SO DONT CALL ECONF
+   SDL_CONFIG="sdl2-config" \
+   ./configure "${myconf[@]}" "${EXTRA_ECONF}" || die
+}
+
+src_compile() {
+   emake AR="$(tc-getAR) cru" RANLIB="$(tc-getRANLIB)"
+}
+
+src_install() {
+   default
+   doicon -s scalable icons/scummvm.svg
+}
+
+pkg_preinst() {
+   xdg_pkg_preinst
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+}



[gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/

2019-03-15 Thread Lars Wendler
commit: f1b88229a9ca4e5f9a38ed92a325a8b360c0b50e
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Mar 15 22:15:54 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar 15 22:45:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1b88229

games-engines/residualvm: Added EXTRA_ECONF

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

 games-engines/residualvm/residualvm-0.3.1-r1.ebuild | 6 +++---
 games-engines/residualvm/residualvm-.ebuild | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/games-engines/residualvm/residualvm-0.3.1-r1.ebuild 
b/games-engines/residualvm/residualvm-0.3.1-r1.ebuild
index c58d9fb53f7..97f1d29ed54 100644
--- a/games-engines/residualvm/residualvm-0.3.1-r1.ebuild
+++ b/games-engines/residualvm/residualvm-0.3.1-r1.ebuild
@@ -58,9 +58,10 @@ src_configure() {
--enable-all-engines
--enable-release-mode
--enable-zlib
+   --host="${CHOST}"
--prefix="${EPREFIX}/usr"
)
-   ./configure "${myconf[@]}" || die "configure failed"
+   ./configure "${myconf[@]}" "${EXTRA_ECONF}" || die
 }
 
 src_compile() {
@@ -71,8 +72,7 @@ src_compile() {
 }
 
 src_install() {
-   emake DESTDIR="${D}" install
-
+   default
doicon -s 256 icons/${PN}.png
 }
 

diff --git a/games-engines/residualvm/residualvm-.ebuild 
b/games-engines/residualvm/residualvm-.ebuild
index d263427ea17..ded84a46d1d 100644
--- a/games-engines/residualvm/residualvm-.ebuild
+++ b/games-engines/residualvm/residualvm-.ebuild
@@ -54,9 +54,10 @@ src_configure() {
--enable-all-engines
--enable-release-mode
--enable-zlib
+   --host="${CHOST}"
--prefix="${EPREFIX}/usr"
)
-   ./configure "${myconf[@]}" || die "configure failed"
+   ./configure "${myconf[@]}" "${EXTRA_ECONF}" || die
 }
 
 src_compile() {
@@ -67,8 +68,7 @@ src_compile() {
 }
 
 src_install() {
-   emake DESTDIR="${D}" install
-
+   default
doicon -s 256 icons/${PN}.png
 }
 



[gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/

2019-03-15 Thread Lars Wendler
commit: b3f5860372b2b084f0e291c94331e75e9f72e63b
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Mar 15 22:44:58 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar 15 22:45:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3f58603

games-engines/residualvm: Revbump to add USE flags to release.

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

 ...-0.3.1-r1.ebuild => residualvm-0.3.1-r2.ebuild} | 45 +-
 1 file changed, 27 insertions(+), 18 deletions(-)

diff --git a/games-engines/residualvm/residualvm-0.3.1-r1.ebuild 
b/games-engines/residualvm/residualvm-0.3.1-r2.ebuild
similarity index 63%
rename from games-engines/residualvm/residualvm-0.3.1-r1.ebuild
rename to games-engines/residualvm/residualvm-0.3.1-r2.ebuild
index 97f1d29ed54..fd5eba9a277 100644
--- a/games-engines/residualvm/residualvm-0.3.1-r1.ebuild
+++ b/games-engines/residualvm/residualvm-0.3.1-r2.ebuild
@@ -15,20 +15,24 @@ else
 fi
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-IUSE=""
+IUSE="alsa debug jpeg mpeg2 mp3 opengl png truetype vorbis zlib"
 
 # TODO: fix dynamic plugin support
 # games crash without media-libs/libsdl[alsa]
 RDEPEND="
-   media-libs/alsa-lib
-   media-libs/freetype:2
media-libs/glew:0=
-   media-libs/libpng:0=
media-libs/libsdl2[X,sound,alsa,joystick,opengl,video]
-   sys-libs/zlib:=
virtual/glu
-   virtual/jpeg:0
-   virtual/opengl"
+   alsa? ( media-libs/alsa-lib )
+   jpeg? ( virtual/jpeg:0 )
+   mp3? ( media-libs/libmad )
+   mpeg2? ( media-libs/libmpeg2 )
+   opengl? ( virtual/opengl )
+   png? ( media-libs/libpng:0= )
+   truetype? ( media-libs/freetype:2 )
+   vorbis? ( media-libs/libvorbis )
+   zlib? ( sys-libs/zlib:= )
+"
 DEPEND="${RDEPEND}"
 BDEPEND="
virtual/pkgconfig
@@ -40,35 +44,40 @@ PATCHES=(
 
 src_configure() {
# not an autotools script
-   # most configure options currently do nothing, verify on version bump 
!!!
+   # some configure options currently do nothing, verify on version bump 
!!!
# disable explicitly, otherwise we get unneeded linkage (some 
copy-paste build system)
local myconf=(
--backend=sdl
-   --disable-debug
--disable-faad
--disable-flac
--disable-fluidsynth
--disable-libunity
-   --disable-mad
--disable-sparkle
-   --disable-translation
--disable-tremor
-   --disable-vorbis
--docdir="/usr/share/doc/${PF}"
--enable-all-engines
-   --enable-release-mode
-   --enable-zlib
+   --enable-verbose-build
+   --libdir="${EPREFIX}/usr/$(get_libdir)"
--host="${CHOST}"
--prefix="${EPREFIX}/usr"
+   $(use_enable alsa)
+   $(use_enable debug)
+   $(use_enable !debug release-mode)
+   $(use_enable jpeg)
+   $(use_enable mp3 mad)
+   $(use_enable mpeg2)
+   $(use_enable opengl)
+   $(use_enable opengl opengl-shaders)
+   $(use_enable png)
+   $(use_enable truetype freetype2)
+   $(use_enable vorbis)
+   $(use_enable zlib)
)
./configure "${myconf[@]}" "${EXTRA_ECONF}" || die
 }
 
 src_compile() {
-   emake \
-   VERBOSE_BUILD=1 \
-   AR="$(tc-getAR) cru" \
-   RANLIB=$(tc-getRANLIB)
+   emake AR="$(tc-getAR) cru" RANLIB=$(tc-getRANLIB)
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/

2019-03-15 Thread Lars Wendler
commit: 14f9a4f07ec77a04653d0e3dbd183cc3e7da8d55
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Mar 15 22:40:58 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar 15 22:45:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14f9a4f0

games-engines/residualvm: Added lots of USE flags.

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

 games-engines/residualvm/metadata.xml   |  3 ++
 games-engines/residualvm/residualvm-.ebuild | 45 +++--
 2 files changed, 30 insertions(+), 18 deletions(-)

diff --git a/games-engines/residualvm/metadata.xml 
b/games-engines/residualvm/metadata.xml
index f346e545798..c5d960e91c7 100644
--- a/games-engines/residualvm/metadata.xml
+++ b/games-engines/residualvm/metadata.xml
@@ -5,6 +5,9 @@
ga...@gentoo.org
Gentoo Games Project

+   
+   enable mpeg2 codec for cutscenes
+   

residualvm


diff --git a/games-engines/residualvm/residualvm-.ebuild 
b/games-engines/residualvm/residualvm-.ebuild
index ded84a46d1d..0f0a4bb4dbc 100644
--- a/games-engines/residualvm/residualvm-.ebuild
+++ b/games-engines/residualvm/residualvm-.ebuild
@@ -15,20 +15,24 @@ else
 fi
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-IUSE=""
+IUSE="alsa debug jpeg mpeg2 mp3 opengl png truetype vorbis zlib"
 
 # TODO: fix dynamic plugin support
 # games crash without media-libs/libsdl[alsa]
 RDEPEND="
-   media-libs/alsa-lib
-   media-libs/freetype:2
media-libs/glew:0=
-   media-libs/libpng:0=
media-libs/libsdl2[X,sound,alsa,joystick,opengl,video]
-   sys-libs/zlib:=
virtual/glu
-   virtual/jpeg:0
-   virtual/opengl"
+   alsa? ( media-libs/alsa-lib )
+   jpeg? ( virtual/jpeg:0 )
+   mp3? ( media-libs/libmad )
+   mpeg2? ( media-libs/libmpeg2 )
+   opengl? ( virtual/opengl )
+   png? ( media-libs/libpng:0= )
+   truetype? ( media-libs/freetype:2 )
+   vorbis? ( media-libs/libvorbis )
+   zlib? ( sys-libs/zlib:= )
+"
 DEPEND="${RDEPEND}"
 BDEPEND="
virtual/pkgconfig
@@ -36,35 +40,40 @@ BDEPEND="
 
 src_configure() {
# not an autotools script
-   # most configure options currently do nothing, verify on version bump 
!!!
+   # some configure options currently do nothing, verify on version bump 
!!!
# disable explicitly, otherwise we get unneeded linkage (some 
copy-paste build system)
local myconf=(
--backend=sdl
-   --disable-debug
--disable-faad
--disable-flac
--disable-fluidsynth
--disable-libunity
-   --disable-mad
--disable-sparkle
-   --disable-translation
--disable-tremor
-   --disable-vorbis
--docdir="/usr/share/doc/${PF}"
--enable-all-engines
-   --enable-release-mode
-   --enable-zlib
+   --enable-verbose-build
+   --libdir="${EPREFIX}/usr/$(get_libdir)"
--host="${CHOST}"
--prefix="${EPREFIX}/usr"
+   $(use_enable alsa)
+   $(use_enable debug)
+   $(use_enable !debug release-mode)
+   $(use_enable jpeg)
+   $(use_enable mp3 mad)
+   $(use_enable mpeg2)
+   $(use_enable opengl)
+   $(use_enable opengl opengl-shaders)
+   $(use_enable png)
+   $(use_enable truetype freetype2)
+   $(use_enable vorbis)
+   $(use_enable zlib)
)
./configure "${myconf[@]}" "${EXTRA_ECONF}" || die
 }
 
 src_compile() {
-   emake \
-   VERBOSE_BUILD=1 \
-   AR="$(tc-getAR) cru" \
-   RANLIB=$(tc-getRANLIB)
+   emake AR="$(tc-getAR) cru" RANLIB=$(tc-getRANLIB)
 }
 
 src_install() {



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

2019-03-15 Thread Georgy Yakovlev
commit: ff7c7319ba96586d54578002b8444d694f20a1ad
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Mar 15 22:43:14 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Mar 15 22:43:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7c7319

sys-apps/lsd: drop old

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

 sys-apps/lsd/Manifest  |  2 --
 sys-apps/lsd/lsd-0.12.0.ebuild | 63 -
 sys-apps/lsd/lsd-0.13.0.ebuild | 64 --
 3 files changed, 129 deletions(-)

diff --git a/sys-apps/lsd/Manifest b/sys-apps/lsd/Manifest
index ea30ba6f117..b98c959be86 100644
--- a/sys-apps/lsd/Manifest
+++ b/sys-apps/lsd/Manifest
@@ -9,8 +9,6 @@ DIST fuchsia-zircon-sys-0.3.3.crate 7191 BLAKE2B 
530bb5d475ac828843af248c6bbd24c
 DIST kernel32-sys-0.2.2.crate 24537 BLAKE2B 
dfc4a1e31d3ec9e2ac62b890839919fb7fed1444070c1dcd75bb75acfb53556d6cf2eddf5a6639e7852a3df2a0cc715c5ce1d3fc898ef16a1687020d98f715bc
 SHA512 
682bc7c629aefd035966a2873518fd60719121cca7d63d89d6c97ff5306f24d8b5055a3c91b4eedaec22b1d5dd3fb8b48ff7341a05bbd72d86e06c422dab473b
 DIST libc-0.2.44.crate 347920 BLAKE2B 
04fd82a1aab02a25a1201f6c463c0b30547e69dbca161f9b0ad87bfcc5b9b8427267fad3534c0a900c23fdb808b8477e20047dac396c8d000657266753786abf
 SHA512 
fda87b206acb1a65be60784516c7d4f4aacb1ce53063e3c67a6a5335a02b3a7232867d11b0cdc574131d562fd98471df8bd0427cc5790c4add0556b2a090b284
 DIST lscolors-0.5.0.crate 15937 BLAKE2B 
27c9d42fbdfa32ce9f01fc627c2a758544dccd72f2b63f232b4984287f61f5f4dc8788a30ad60ae92ddc374b7b993b577bbc0d11a03c61756af81cc672300fc0
 SHA512 
97d881cf248dee1a744e6016941abb80579518ede0883e419b6c452215ddc0b2a6336c6c6c254e4f463cfa7f3a648ea56fef1df0ff044daba98c2d03e1731013
-DIST lsd-0.12.0.tar.gz 32067 BLAKE2B 
57683d0555774950e18a1119abf1053a8c934d23a9945cea820c39319329ad09bf464c30084a4a6530ac5df6cb9c1f067e86383052869ff7225c57686120b6eb
 SHA512 
b5bac177f3116ace5fed07fbcbf277b4657dfe15e7e66799844f3c0fc049673f9d99c0e9c27768704b0c35cd8bced2c1915b8d1bcbbef7c1052dd072e4965ea3
-DIST lsd-0.13.0.tar.gz 33392 BLAKE2B 
5e80e99d915a43ccbc4fe0ea809efa1effc7ee6f578e414845c8bce925c8cc47a4c87261e8db2d1cd97d596706a306e9c785c9fe75bc3dc381c25573178a1e95
 SHA512 
c55b0f6595b157a591bdd252432cd8d6aa63efe9cfae7f84602ec759e60b11cd08298f7dc792d59162e0ef3b84b8f2ff7caaacefd686b67c9d5ab81bea808cd9
 DIST lsd-0.14.0.tar.gz 33646 BLAKE2B 
b0bc5f8c9ef764e8e2c1a17da144e507ff6181bbde88a002950b47fb1678f4f4790e1cdc9e438c59ebf8e84eb7ef4c7a6308a45c21c75d63b56d0b5078bef987
 SHA512 
f1c17b63769f7c390a36e2ff99caf6d1da326fefc041a992986f756614a70db5aae4c87a0a33e416a6096d8ce65f0c0cbed50d168a8d0ca6dc2e97f0065593a0
 DIST num-integer-0.1.39.crate 17881 BLAKE2B 
1398b54766719f6fe298fb20489373ef774f1466349bcb96479610c00bb0f6f54b1a794def2841a0bf70558f6e5a080b528071ad5c64baa82bfac084354fa203
 SHA512 
1e00ef9fe5adcc312b4b8a59923015eb1387d90e6b3d7239b3aabcd83a9e67f2384b3a383d84ce8cdc82a470770f56373a89f0a679727a5fcc8f5bdb1f1209e3
 DIST num-traits-0.2.6.crate 39923 BLAKE2B 
7bd781368c553622620f0d62a09f2c82fd26d4e6378ea8fc51b0e655dcf0561701881027f46f7a98da1bc25b777c62ab7338387c776a9e5e3463ea53a7efe922
 SHA512 
db638c662737972f07bc7ab82b923bece8a6c04719199ec0c7ca90140ac11e4fd1e4eb3748a69ddd3ad2791d4f5f5f69a00ce8aae92a647d9015d130f85b6b4c

diff --git a/sys-apps/lsd/lsd-0.12.0.ebuild b/sys-apps/lsd/lsd-0.12.0.ebuild
deleted file mode 100644
index 672d6292a66..000
--- a/sys-apps/lsd/lsd-0.12.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CRATES="
-ansi_term-0.11.0
-atty-0.2.11
-bitflags-1.0.4
-chrono-0.4.6
-chrono-humanize-0.0.11
-clap-2.32.0
-fuchsia-zircon-0.3.3
-fuchsia-zircon-sys-0.3.3
-kernel32-sys-0.2.2
-libc-0.2.44
-num-integer-0.1.39
-num-traits-0.2.6
-rand-0.4.3
-redox_syscall-0.1.43
-redox_termios-0.1.1
-remove_dir_all-0.5.1
-strsim-0.7.0
-tempdir-0.3.7
-term_grid-0.1.7
-term_size-0.3.1
-terminal_size-0.1.8
-termion-1.5.1
-textwrap-0.10.0
-time-0.1.40
-unicode-width-0.1.5
-users-0.8.1
-vec_map-0.8.1
-version_check-0.1.5
-winapi-0.2.8
-winapi-0.3.6
-winapi-build-0.1.1
-winapi-i686-pc-windows-gnu-0.4.0
-winapi-x86_64-pc-windows-gnu-0.4.0
-"
-
-inherit cargo
-
-DESCRIPTION="A modern ls with a lot of pretty colors and awesome icons"
-HOMEPAGE="https://github.com/Peltoche/lsd;
-SRC_URI="https://github.com/Peltoche/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
-   $(cargo_crate_uris ${CRATES})"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-DEPEND=""
-RDEPEND=""
-BDEPEND=">=virtual/rust-1.30.1"
-
-QA_FLAGS_IGNORED="/usr/bin/lsd"
-
-src_install() {
-   cargo_src_install --path .
-   einstalldocs
-}

diff --git a/sys-apps/lsd/lsd-0.13.0.ebuild b/sys-apps/lsd/lsd-0.13.0.ebuild
deleted file mode 100644
index 3e0a6d01f38..000
--- a/sys-apps/lsd/lsd-0.13.0.ebuild
+++ /dev/null
@@ 

[gentoo-commits] repo/gentoo:master commit in: dev-tex/culmus-latex/

2019-03-15 Thread Mikle Kolyada
commit: 12c2de295954a2902a3e8acf16e5dbbaffcabe49
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 22:42:33 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 22:42:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12c2de29

dev-tex/culmus-latex: amd64 stable wrt bug #679460

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-tex/culmus-latex/culmus-latex-0.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/culmus-latex/culmus-latex-0.7-r1.ebuild 
b/dev-tex/culmus-latex/culmus-latex-0.7-r1.ebuild
index 0781f8caa59..cd4a645c032 100644
--- a/dev-tex/culmus-latex/culmus-latex-0.7-r1.ebuild
+++ b/dev-tex/culmus-latex/culmus-latex-0.7-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/ivritex/${P}_src.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
 IUSE="examples"
 
 RDEPEND="virtual/latex-base"



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

2019-03-15 Thread Patrice Clement
commit: 603caebf45e3196e7dcacbcfc56101b3b44527a2
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu Mar 14 19:10:57 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Mar 15 22:42:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=603caebf

media-gfx/slic3r: use HTTPS.

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

 media-gfx/slic3r/slic3r-1.1.7.ebuild| 4 ++--
 media-gfx/slic3r/slic3r-1.3.0-r1.ebuild | 4 ++--
 media-gfx/slic3r/slic3r-.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/media-gfx/slic3r/slic3r-1.1.7.ebuild 
b/media-gfx/slic3r/slic3r-1.1.7.ebuild
index a01849e78a0..6750210520c 100644
--- a/media-gfx/slic3r/slic3r-1.1.7.ebuild
+++ b/media-gfx/slic3r/slic3r-1.1.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit eutils perl-module
 
 DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication 
(3D printers)"
-HOMEPAGE="http://slic3r.org;
+HOMEPAGE="https://slic3r.org;
 SRC_URI="https://github.com/alexrj/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="AGPL-3 CC-BY-3.0"

diff --git a/media-gfx/slic3r/slic3r-1.3.0-r1.ebuild 
b/media-gfx/slic3r/slic3r-1.3.0-r1.ebuild
index a94b46f01a7..64cc0c14bc9 100644
--- a/media-gfx/slic3r/slic3r-1.3.0-r1.ebuild
+++ b/media-gfx/slic3r/slic3r-1.3.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit eutils flag-o-matic perl-module
 
 DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication 
(3D printers)"
-HOMEPAGE="http://slic3r.org;
+HOMEPAGE="https://slic3r.org;
 SRC_URI="https://github.com/alexrj/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="AGPL-3 CC-BY-3.0"

diff --git a/media-gfx/slic3r/slic3r-.ebuild 
b/media-gfx/slic3r/slic3r-.ebuild
index db80a647e0e..7e99f7d1650 100644
--- a/media-gfx/slic3r/slic3r-.ebuild
+++ b/media-gfx/slic3r/slic3r-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit eutils git-r3 perl-module
 
 DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication 
(3D printers)"
-HOMEPAGE="http://slic3r.org;
+HOMEPAGE="https://slic3r.org;
 SRC_URI=""
 EGIT_REPO_URI="https://github.com/alexrj/Slic3r.git;
 



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

2019-03-15 Thread Patrice Clement
commit: 80165a93325eda0d1ee7faf7aae59048bef9d824
Author: Vladimir Pavljuchenkov (SpiderX)  spiderx  dp 
 ua>
AuthorDate: Fri Mar 15 17:24:48 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Mar 15 22:42:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80165a93

net-p2p/resilio-sync: remove old version 2.5.12.

Signed-off-by: Vladimir Pavljuchenkov  spiderx.dp.ua>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/11376
Signed-off-by: Patrice Clement  gentoo.org>

 net-p2p/resilio-sync/Manifest   |  2 -
 net-p2p/resilio-sync/resilio-sync-2.5.12.ebuild | 78 -
 2 files changed, 80 deletions(-)

diff --git a/net-p2p/resilio-sync/Manifest b/net-p2p/resilio-sync/Manifest
index 91a4a133ffd..a85e4ac47e2 100644
--- a/net-p2p/resilio-sync/Manifest
+++ b/net-p2p/resilio-sync/Manifest
@@ -1,4 +1,2 @@
-DIST resilio-sync_2.5.12-1_amd64.deb 10466894 BLAKE2B 
d9125bfe49738db3a2cab0d66cad9fed2ae712ee613ccd104bc1d8764bd072b082f71fc0102b15d52f791b592d88ffa4f03892e7e4088e3bf4a847b6c15b4296
 SHA512 
bafc8dbce182253d585185e5d0a27f0a8ca18f768bba65c348752cc089e0e690c8c1848a71cb1b125c67d2c265cbbf13e98d7c99289b0bb0268d43d3e38454d3
-DIST resilio-sync_2.5.12-1_i386.deb 10334238 BLAKE2B 
447baf18db1f6c47a6a2518f9ba6a27b0d9a7092cc41d63958a66be6492cab3868a0ecae9faadfa91cfc5f777e1289cb62017519a0994b93ae448042de9b32d3
 SHA512 
bb46498070f6aa0e3debee839f50a9292116bd5f9105fe75c65d11f9f3199e6e5b8f828b34b364e7f3cb896bf88fd37a255289c68158df7414acf809e4701b32
 DIST resilio-sync_2.6.1-1_amd64.deb 11576892 BLAKE2B 
710bd96b91be84bc7210d8efe0d8954a33be878fc948694e7a1c62e7b53b5ac94133a16b89c4872e18798bc03f3508c7c130d4d56a3480c35d30edff5589ef3a
 SHA512 
a37d73a621a740f57b4f2824cc2a3178f365ccc8180a0e814480dde8d1b74b9d54da4e07bd18c89cc6a93c12b526f8a43e08165d3c2f0fdc913e1f38e46eb183
 DIST resilio-sync_2.6.1-1_i386.deb 11465194 BLAKE2B 
b56e01f79c5beec6a5ebd09724bebd1ce8c6d44eac694cd7fb89dc44823ccba22531b14e241fdd985ae63e6e0f177021becb593923eac8ac0183629e533ac72d
 SHA512 
84676c3fe5fcee484bcd58c6496aba0d2e3c86c339adb90b8b3cef28ae46d7b6f28c5fd0371a2cfe612ab8b3658eca2b9b2f6cfc9caa70aaff95946942a5c749

diff --git a/net-p2p/resilio-sync/resilio-sync-2.5.12.ebuild 
b/net-p2p/resilio-sync/resilio-sync-2.5.12.ebuild
deleted file mode 100644
index 33a5201ff21..000
--- a/net-p2p/resilio-sync/resilio-sync-2.5.12.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-BASE_URI="http://linux-packages.resilio.com/${PN}/deb/pool/non-free/r/${PN}/${PN}_${PV}-1_@arch@.deb;
-
-inherit pax-utils readme.gentoo-r1 systemd tmpfiles unpacker user
-
-NAME="rslsync"
-QA_PREBUILT="usr/bin/${NAME}"
-
-DESCRIPTION="Resilient, fast and scalable file synchronization tool"
-HOMEPAGE="https://getsync.com/;
-SRC_URI="amd64? ( ${BASE_URI/@arch@/amd64} )
-   x86? ( ${BASE_URI/@arch@/i386} )"
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="pax_kernel"
-RESTRICT="mirror"
-
-S="${WORKDIR}"
-
-DOC_CONTENTS="You may need to review /etc/${PN}/config.json\\n
-Default metadata path is /var/lib/${PN}/.sync\\n
-Default web-gui URL is http://localhost:/\\n\\n;
-
-pkg_setup() {
-   enewgroup "${NAME}"
-   enewuser "${NAME}" -1 -1 /var/lib/"${PN}" "${NAME}"
-}
-
-src_unpack() {
-   unpacker_src_unpack
-
-   unpack usr/share/man/man1/"${PN}".1.gz
-}
-
-src_install() {
-   dobin usr/bin/"${NAME}"
-   use pax_kernel && pax-mark m "${ED%/}"/usr/bin/"${NAME}"
-
-   doman "${PN}".1
-
-   dodir /var/log/"${PN}"
-   keepdir /etc/"${PN}" /var/lib/"${PN}"/ /var/lib/"${PN}"/.sync 
/var/log/"${PN}"
-   fperms 0700 /etc/"${PN}" /var/lib/"${PN}" /var/lib/"${PN}"/.sync 
/var/log/"${PN}"
-   fowners -R "${NAME}":"${NAME}" /etc/"${PN}" /var/lib/"${PN}" 
/var/log/"${PN}"
-
-   newinitd "${FILESDIR}"/"${PN}".initd "${PN}"
-   newconfd "${FILESDIR}"/"${PN}".confd "${PN}"
-   newinitd "${FILESDIR}"/"${PN}"-user.initd "${PN}"-user
-   newconfd "${FILESDIR}"/"${PN}"-user.confd "${PN}"-user
-   systemd_dounit "${FILESDIR}"/"${PN}".service
-   systemd_douserunit "${FILESDIR}"/"${PN}"-user.service
-   newtmpfiles "${FILESDIR}"/resilio-sync.tmpfile resilio-sync.conf
-
-   readme.gentoo_create_doc
-
-   # Generate sample config
-   "${ED%/}"/usr/bin/"${NAME}" --dump-sample-config > \
-   "${ED%/}"/etc/"${PN}"/config.json || die "generate config 
failed"
-   fowners "${NAME}":"${NAME}" /etc/"${PN}"/config.json
-   # Uncomment config directives and change their values
-   sed -i \
-   -e "/storage_path/s|//| |g" \
-   -e "/pid_file/s|//| |g" \
-   -e "/storage_path/s|/home/user/.sync|/var/lib/${PN}/.sync|g" \
-   -e "/pid_file/s|resilio/resilio|${PN}/${PN}|g" \
-   

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

2019-03-15 Thread Patrice Clement
commit: 6edfbc0131d0532ef84dc6751e778ed2dd1480b3
Author: Vladimir Pavljuchenkov (SpiderX)  spiderx  dp 
 ua>
AuthorDate: Fri Mar 15 17:27:06 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Mar 15 22:42:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6edfbc01

net-p2p/resilio-sync: version bump to 2.6.3, EAPI 7.

1. Version bump to 2.6.3
2. Moved to EAPI 7
3. Upstream changed URL

Signed-off-by: Vladimir Pavljuchenkov  spiderx.dp.ua>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Signed-off-by: Patrice Clement  gentoo.org>

 net-p2p/resilio-sync/Manifest  |  2 +
 net-p2p/resilio-sync/resilio-sync-2.6.3.ebuild | 74 ++
 2 files changed, 76 insertions(+)

diff --git a/net-p2p/resilio-sync/Manifest b/net-p2p/resilio-sync/Manifest
index a85e4ac47e2..815fa8be8b5 100644
--- a/net-p2p/resilio-sync/Manifest
+++ b/net-p2p/resilio-sync/Manifest
@@ -1,2 +1,4 @@
 DIST resilio-sync_2.6.1-1_amd64.deb 11576892 BLAKE2B 
710bd96b91be84bc7210d8efe0d8954a33be878fc948694e7a1c62e7b53b5ac94133a16b89c4872e18798bc03f3508c7c130d4d56a3480c35d30edff5589ef3a
 SHA512 
a37d73a621a740f57b4f2824cc2a3178f365ccc8180a0e814480dde8d1b74b9d54da4e07bd18c89cc6a93c12b526f8a43e08165d3c2f0fdc913e1f38e46eb183
 DIST resilio-sync_2.6.1-1_i386.deb 11465194 BLAKE2B 
b56e01f79c5beec6a5ebd09724bebd1ce8c6d44eac694cd7fb89dc44823ccba22531b14e241fdd985ae63e6e0f177021becb593923eac8ac0183629e533ac72d
 SHA512 
84676c3fe5fcee484bcd58c6496aba0d2e3c86c339adb90b8b3cef28ae46d7b6f28c5fd0371a2cfe612ab8b3658eca2b9b2f6cfc9caa70aaff95946942a5c749
+DIST resilio-sync_2.6.3-1_amd64.deb 12109918 BLAKE2B 
e89ca0eedadd29d1d0519f0e894f6cbb865b39600df6b516a85411da45e58751caf1c0988d13c821b134ac2318f6487cdad82a75b7357686bde1865b88779f3e
 SHA512 
4531936a5ddd23cfcf2354ea9c7f285e08d1afdd0922d1254baec2900f1c4bfdbbe5d57a5f9cf079b8b3fee69cc9f0a1557218657c1386f800d6e19cc6de31a3
+DIST resilio-sync_2.6.3-1_i386.deb 12062106 BLAKE2B 
f070844fc513ce052e1cb480f4b521216da485ffc00fb0b7e512d877ae6d0bb39452015bc24f931850542490e69d3b210c5a4dd8635a43f16901791144134880
 SHA512 
18e01ae12c198e7e921a8fd74e934365f027607940ada7378adb239b5c8a25b94e47ac4290c738acac54c53beff25e1ba35f4e079ce8145852f385212bd8794b

diff --git a/net-p2p/resilio-sync/resilio-sync-2.6.3.ebuild 
b/net-p2p/resilio-sync/resilio-sync-2.6.3.ebuild
new file mode 100644
index 000..95ea559330a
--- /dev/null
+++ b/net-p2p/resilio-sync/resilio-sync-2.6.3.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit pax-utils readme.gentoo-r1 systemd tmpfiles unpacker user
+
+QA_PREBUILT="usr/bin/rslsync"
+BASE_URI="http://download-cdn.resilio.com/${PV}/Debian/${PN}_${PV}-1_@arch@.deb;
+
+DESCRIPTION="Resilient, fast and scalable file synchronization tool"
+HOMEPAGE="https://resilio.com/;
+SRC_URI="amd64? ( ${BASE_URI/@arch@/amd64} )
+   x86? ( ${BASE_URI/@arch@/i386} )"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="pax_kernel"
+RESTRICT="bindist mirror"
+
+S="${WORKDIR}"
+
+DOC_CONTENTS="You may need to review /etc/resilio-sync/config.json\\n
+Default metadata path is /var/lib/resilio-sync/.sync\\n
+Default web-gui URL is http://localhost:/\\n\\n;
+
+pkg_setup() {
+   enewgroup rslsync
+   enewuser rslsync -1 -1 /var/lib/resilio-sync rslsync
+}
+
+src_unpack() {
+   unpacker_src_unpack
+
+   unpack usr/share/man/man1/resilio-sync.1.gz
+}
+
+src_install() {
+   dobin usr/bin/rslsync
+   use pax_kernel && pax-mark m "${ED%/}"/usr/bin/rslsync
+
+   doman resilio-sync.1
+
+   newinitd "${FILESDIR}"/resilio-sync.initd resilio-sync
+   newconfd "${FILESDIR}"/resilio-sync.confd resilio-sync
+   newinitd "${FILESDIR}"/resilio-sync-user.initd resilio-sync-user
+   newconfd "${FILESDIR}"/resilio-sync-user.confd resilio-sync-user
+   systemd_dounit "${FILESDIR}"/resilio-sync.service
+   systemd_douserunit "${FILESDIR}"/resilio-sync-user.service
+   newtmpfiles "${FILESDIR}"/resilio-sync.tmpfile resilio-sync.conf
+
+   readme.gentoo_create_doc
+
+   # Generate sample config, uncomment config directives and change values
+   insopts -orslsync -grslsync -m0644
+   insinto /etc/resilio-sync
+   newins - config.json < <("${ED%/}"/usr/bin/rslsync --dump-sample-config 
| \
+   sed \
+   -e "/storage_path/s|//| |g" \
+   -e "/pid_file/s|//| |g" \
+   -e 
"/storage_path/s|/home/user/.sync|/var/lib/resilio-sync/.sync|g" \
+   -e 
"/pid_file/s|resilio/resilio|resilio-sync/resilio-sync|g" \
+   || die "sed failed for config.json" )
+
+   diropts -orslsync -grslsync -m0700
+   keepdir /etc/resilio-sync /var/lib/resilio-sync/ \
+   /var/lib/resilio-sync/.sync /var/log/resilio-sync
+}
+
+pkg_postinst() {
+   tmpfiles_process 

[gentoo-commits] repo/gentoo:master commit in: www-apps/gitea/

2019-03-15 Thread Patrice Clement
commit: 881a87b77006ad27a9a2e47930276a11df182529
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Mar 15 09:14:19 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Mar 15 22:42:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=881a87b7

www-apps/gitea: drop old.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Patrice Clement  gentoo.org>

 www-apps/gitea/Manifest   |  1 -
 www-apps/gitea/gitea-1.5.2.ebuild | 66 ---
 2 files changed, 67 deletions(-)

diff --git a/www-apps/gitea/Manifest b/www-apps/gitea/Manifest
index 4065ddacc5d..4ed8383cb25 100644
--- a/www-apps/gitea/Manifest
+++ b/www-apps/gitea/Manifest
@@ -1,2 +1 @@
-DIST gitea-1.5.2.tar.gz 18866286 BLAKE2B 
a9a31fa6a310dcb6debd9399f234262214021d72adda52af959e6d9d692d5902ff6955a9802bf60212cecb2a0146c4905952d44643aa83e49c645d32541907c2
 SHA512 
ef91c881b3cb81d79d182b78c95624f24d63e21daa2d6e561fca79edba0ad588fae7c55503f900a8f05c566ed3bff92a9c4385fc7e5c701a80749d2a8c58b599
 DIST gitea-1.7.4.tar.gz 20858340 BLAKE2B 
81d896d313abe25bc1a5becd16249c2ce39ab45d9f40ccf3a565b6777847c7256d5b131f597be237df57513a207978e23480ad3c6087bbc588afe8bbcd46d5c9
 SHA512 
eede6d410529b1facf65061256e48fee7d459aa12d8c55346d3ad78004a45b7bf667536979fe92270a85901102fd9cddb8183490e16f912b742e799ca912e370

diff --git a/www-apps/gitea/gitea-1.5.2.ebuild 
b/www-apps/gitea/gitea-1.5.2.ebuild
deleted file mode 100644
index 49bba0eddfb..000
--- a/www-apps/gitea/gitea-1.5.2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit golang-build golang-vcs-snapshot systemd user
-
-EGO_PN="code.gitea.io/gitea"
-KEYWORDS="~amd64 ~arm"
-
-DESCRIPTION="A painless self-hosted Git service, written in Go"
-HOMEPAGE="https://github.com/go-gitea/gitea;
-SRC_URI="https://github.com/go-gitea/gitea/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-
-DEPEND="
-   dev-go/go-bindata
-   sys-libs/pam
-"
-RDEPEND="
-   dev-vcs/git
-   sys-libs/pam
-"
-
-pkg_setup() {
-   enewgroup git
-   enewuser git -1 /bin/bash /var/lib/gitea git
-}
-
-src_prepare() {
-   default
-   sed -i -e "s/\"main.Version.*$/\"main.Version=${PV}\"/"\
-   -e "s/-ldflags '-s/-ldflags '/" src/${EGO_PN}/Makefile || die
-}
-
-src_compile() {
-   GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} 
generate
-   TAGS="bindata pam sqlite" LDFLAGS="" CGO_LDFLAGS="" 
GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} build
-}
-
-src_install() {
-   diropts -m0750 -o git -g git
-   keepdir /var/log/gitea /var/lib/gitea /var/lib/gitea/data
-   pushd src/${EGO_PN} >/dev/null || die
-   dobin gitea
-   insinto /var/lib/gitea/conf
-   newins custom/conf/app.ini.sample app.ini.example
-   popd >/dev/null || die
-   newinitd "${FILESDIR}"/gitea.initd-r1 gitea
-   newconfd "${FILESDIR}"/gitea.confd gitea
-   systemd_dounit "${FILESDIR}/gitea.service"
-}
-
-pkg_postinst() {
-   if [[ ! -e "${EROOT}/var/lib/gitea/conf/app.ini" ]]; then
-   elog "No app.ini found, copying initial config over"
-   cp "${FILESDIR}"/app.ini "${EROOT}"/var/lib/gitea/conf/ || die
-   chown git:git /var/lib/gitea/conf/app.ini
-   else
-   elog "app.ini found, please check example file for possible 
changes"
-   ewarn "Please note that environment variables have been 
changed:"
-   ewarn "GITEA_WORK_DIR is set to /var/lib/gitea (previous value: 
unset)"
-   ewarn "GITEA_CUSTOM is set to '\$GITEA_WORK_DIR/custom' 
(previous: /var/lib/gitea)"
-   fi
-}



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

2019-03-15 Thread Patrice Clement
commit: 6020c496faa3d23842a201b610af58377cbfc1fb
Author: Horea Christian  yandex  com>
AuthorDate: Wed Mar 13 23:00:13 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Mar 15 22:42:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6020c496

dev-python/patsy: version bump to 0.5.1.

plus EAPI bump to 7

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

 dev-python/patsy/Manifest   |  1 +
 dev-python/patsy/patsy-0.5.1.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-python/patsy/Manifest b/dev-python/patsy/Manifest
index 9fe99193ebc..a19308dff17 100644
--- a/dev-python/patsy/Manifest
+++ b/dev-python/patsy/Manifest
@@ -1 +1,2 @@
 DIST patsy-0.4.1.zip 425390 BLAKE2B 
b8d5696abcf35fcd5e49a7d3efdfb201976efdbe7e845f136dd0cdbfb0972d8372e54b8f4141139cff9ad4df3525c67a10a3c71bc1471991a810e834e0dd0ad9
 SHA512 
24cf2e6f9a33e6dd795a839eb2b2ac9e0d45cd9c3d5250de17722914ac29436d0518388d0696b75d73236eda3c7819dc4fa24d6d9bc37d5ae035dde2af4510c3
+DIST patsy-0.5.1.tar.gz 397623 BLAKE2B 
b8861e8c8e223db5df616c378d5b1ce475a1b337d049723c1a4b01432d9e1569c4b6537dc467fbc1ba83dfc7cd999ad188008e387c446f2133f872393c9eb960
 SHA512 
aeb56411e68713ec75c0b5344890939f721c460d3c7643b9fd57d7c928421d21408b0f2963348edf27a025842989dbae6fd5cfccd3f9d9497d60a1dffe8d7bdc

diff --git a/dev-python/patsy/patsy-0.5.1.ebuild 
b/dev-python/patsy/patsy-0.5.1.ebuild
new file mode 100644
index 000..dc375b85bbf
--- /dev/null
+++ b/dev-python/patsy/patsy-0.5.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python module to describe statistical models and design matrices"
+HOMEPAGE="http://patsy.readthedocs.org/en/latest/index.html;
+SRC_URI="https://files.pythonhosted.org/packages/49/c7/b971d8685c52512dbaa45bf8d076695432245a9f59509fb20a6c8e4ff69a/patsy-0.5.1.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND="
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   "
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   sci-libs/scipy[${PYTHON_USEDEP}]
+   doc? (
+   dev-python/ipython[${PYTHON_USEDEP}]
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   )
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_compile_all() {
+   use doc && emake -C doc html
+}
+
+python_test() {
+   cd "${BUILD_DIR}" || die
+   nosetests -v || die "Testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && HTML_DOCS=( doc/_build/html/. )
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: www-apps/gitea/, www-apps/gitea/files/

2019-03-15 Thread Patrice Clement
commit: 5bd278c49c6680eedced51e9b6d910d7098bf159
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Mar 15 09:12:53 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Mar 15 22:42:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bd278c4

www-apps/gitea: bump to 1.7.4.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Tomáš Mózes  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11371
Signed-off-by: Patrice Clement  gentoo.org>

 www-apps/gitea/Manifest |  1 +
 www-apps/gitea/files/gitea.initd-r1 |  5 +--
 www-apps/gitea/files/gitea.service  |  8 +++--
 www-apps/gitea/gitea-1.7.4.ebuild   | 67 +
 4 files changed, 76 insertions(+), 5 deletions(-)

diff --git a/www-apps/gitea/Manifest b/www-apps/gitea/Manifest
index 5f6259a7c33..4065ddacc5d 100644
--- a/www-apps/gitea/Manifest
+++ b/www-apps/gitea/Manifest
@@ -1 +1,2 @@
 DIST gitea-1.5.2.tar.gz 18866286 BLAKE2B 
a9a31fa6a310dcb6debd9399f234262214021d72adda52af959e6d9d692d5902ff6955a9802bf60212cecb2a0146c4905952d44643aa83e49c645d32541907c2
 SHA512 
ef91c881b3cb81d79d182b78c95624f24d63e21daa2d6e561fca79edba0ad588fae7c55503f900a8f05c566ed3bff92a9c4385fc7e5c701a80749d2a8c58b599
+DIST gitea-1.7.4.tar.gz 20858340 BLAKE2B 
81d896d313abe25bc1a5becd16249c2ce39ab45d9f40ccf3a565b6777847c7256d5b131f597be237df57513a207978e23480ad3c6087bbc588afe8bbcd46d5c9
 SHA512 
eede6d410529b1facf65061256e48fee7d459aa12d8c55346d3ad78004a45b7bf667536979fe92270a85901102fd9cddb8183490e16f912b742e799ca912e370

diff --git a/www-apps/gitea/files/gitea.initd-r1 
b/www-apps/gitea/files/gitea.initd-r1
index 837164aa014..6f957d426c0 100644
--- a/www-apps/gitea/files/gitea.initd-r1
+++ b/www-apps/gitea/files/gitea.initd-r1
@@ -1,5 +1,5 @@
 #!/sbin/openrc-run
-# Copyright 2016-2018 Gentoo Foundation
+# Copyright 2016-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 description="Gitea, a self-hosted Git service"
@@ -11,7 +11,8 @@ command="/usr/bin/gitea web"
 command_args="${command_args:--config /var/lib/gitea/conf/app.ini}"
 command_background="true"
 start_stop_daemon_args="--user ${user} --group ${group} \
-   -e GITEA_WORK_DIR=/var/lib/gitea
+   -e GITEA_WORK_DIR=${GITEA_WORK_DIR:-/var/lib/gitea} \
+   -e GITEA_CUSTOM=${GITEA_CUSTOM:-/var/lib/gitea} \
--stdout /var/log/${SVCNAME}/${SVCNAME}.log \
--stderr /var/log/${SVCNAME}/${SVCNAME}.log"
 

diff --git a/www-apps/gitea/files/gitea.service 
b/www-apps/gitea/files/gitea.service
index 3fdbc1fd0c3..733e05ea1ed 100644
--- a/www-apps/gitea/files/gitea.service
+++ b/www-apps/gitea/files/gitea.service
@@ -1,6 +1,6 @@
 [Unit]
 Description=Gitea service
-Documentation=https://gitea.io
+Documentation=https://docs.gitea.io/
 
 AssertPathIsDirectory=/var/lib/gitea
 AssertPathIsReadWrite=/var/lib/gitea
@@ -8,13 +8,15 @@ AssertPathIsReadWrite=/var/lib/gitea
 After=network.target
 Requires=network.target
 After=mysqld.service
-Requires=mysqld.service
+After=postgresql.service
+After=memcached.service
+After=redis.service
 
 [Service]
 User=git
 Group=git
 
-Environment="GITEA_CUSTOM=/var/lib/gitea"
+Environment="GITEA_WORK_DIR=/var/lib/gitea GITEA_CUSTOM=/var/lib/gitea"
 WorkingDirectory=/var/lib/gitea
 ExecStart=/usr/bin/gitea web -c /var/lib/gitea/conf/app.ini
 

diff --git a/www-apps/gitea/gitea-1.7.4.ebuild 
b/www-apps/gitea/gitea-1.7.4.ebuild
new file mode 100644
index 000..6508562a68b
--- /dev/null
+++ b/www-apps/gitea/gitea-1.7.4.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit golang-build golang-vcs-snapshot systemd user
+
+EGO_PN="code.gitea.io/gitea"
+KEYWORDS="~amd64 ~arm"
+
+DESCRIPTION="A painless self-hosted Git service, written in Go"
+HOMEPAGE="https://github.com/go-gitea/gitea;
+SRC_URI="https://github.com/go-gitea/gitea/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+
+DEPEND="
+   dev-go/go-bindata
+   sys-libs/pam
+"
+RDEPEND="
+   dev-vcs/git
+   sys-libs/pam
+"
+
+pkg_setup() {
+   enewgroup git
+   enewuser git -1 /bin/bash /var/lib/gitea git
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/\"main.Version.*$/\"main.Version=${PV}\"/"\
+   -e "s/-ldflags '-s/-ldflags '/" src/${EGO_PN}/Makefile || die
+}
+
+src_compile() {
+   GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} 
generate
+   TAGS="bindata pam sqlite" LDFLAGS="" CGO_LDFLAGS="" 
GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} build
+}
+
+src_install() {
+   diropts -m0750 -o git -g git
+   keepdir /var/log/gitea /var/lib/gitea /var/lib/gitea/data
+   pushd src/${EGO_PN} >/dev/null || die
+   dobin gitea
+   insinto /var/lib/gitea/conf
+   newins custom/conf/app.ini.sample app.ini.example
+   popd >/dev/null || die
+   newinitd 

[gentoo-commits] repo/gentoo:master commit in: sci-visualization/gnuplot/

2019-03-15 Thread Mikle Kolyada
commit: 6646ecc350217e1d3c19d7356768f2823303b437
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 22:39:56 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 22:39:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6646ecc3

sci-visualization/gnuplot: amd64 stable wrt bug #677424

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 sci-visualization/gnuplot/gnuplot-5.2.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild 
b/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild
index 08d856ea631..88161e584c0 100644
--- a/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild
+++ b/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,7 +17,7 @@ if [[ -z ${PV%%*} ]]; then
 else
MY_P="${P/_/.}"
SRC_URI="mirror://sourceforge/gnuplot/${MY_P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 
~sparc ~x86 ~ppc-aix ~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 ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="gnuplot bitmap? ( free-noncomm )"



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

2019-03-15 Thread Mikle Kolyada
commit: a01ae7bdd52196da32e9dd469dd3e7311cd9013b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 22:37:28 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 22:37:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a01ae7bd

app-office/texstudio: amd64 stable wrt bug #677418

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-office/texstudio/texstudio-2.12.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/texstudio/texstudio-2.12.14.ebuild 
b/app-office/texstudio/texstudio-2.12.14.ebuild
index 53b1b3cbdb4..b0b38644ef6 100644
--- a/app-office/texstudio/texstudio-2.12.14.ebuild
+++ b/app-office/texstudio/texstudio-2.12.14.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/texstudio-org/texstudio/archive/${PV}.tar.gz -> ${P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
 IUSE="video"
 
 COMMON_DEPEND="



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

2019-03-15 Thread Mikle Kolyada
commit: 2e81d9a8923b9faff020bf179b7f6e0dac962bae
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Mar 15 22:35:56 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Mar 15 22:35:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e81d9a8

app-admin/pwgen: amd64 stable wrt bug #674636

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 app-admin/pwgen/pwgen-2.08.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/pwgen/pwgen-2.08.ebuild 
b/app-admin/pwgen/pwgen-2.08.ebuild
index feaedcda6f5..beb9adeb937 100644
--- a/app-admin/pwgen/pwgen-2.08.ebuild
+++ b/app-admin/pwgen/pwgen-2.08.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/pwgen/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 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 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="livecd"
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: app-metrics/mongodb_exporter/

2019-03-15 Thread William Hubbs
commit: 63c350cbc098cfb6750caa4156470fff1247cca0
Author: William Hubbs  sony  com>
AuthorDate: Fri Mar 15 22:29:19 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Mar 15 22:30:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c350cb

app-metrics/mongodb_exporter: 0.6.2 bump

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: William Hubbs  gentoo.org>

 app-metrics/mongodb_exporter/Manifest  |  1 +
 .../mongodb_exporter/mongodb_exporter-0.6.2.ebuild | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/app-metrics/mongodb_exporter/Manifest 
b/app-metrics/mongodb_exporter/Manifest
index 9a4d0e9d133..36bd4ef4482 100644
--- a/app-metrics/mongodb_exporter/Manifest
+++ b/app-metrics/mongodb_exporter/Manifest
@@ -1,2 +1,3 @@
 DIST mongodb_exporter-0.4.0.tar.gz 3386266 BLAKE2B 
a6bebada2792e620b2107b72b3ab8b2a4e7a08fc53747f266b30a3cf2fe42ed7e09e3be9aa36332cba2df124947064f545821f355726e09649509c671a56c30b
 SHA512 
0db1abd8c7439239cf59b24968ef33f83c6609a9deaed250315dd7fcb6844ef3d0d0c1f50b979f931beb539038a13eb7b88c03c899333d981112695be2e031b3
 DIST mongodb_exporter-0.6.0.tar.gz 1274979 BLAKE2B 
9e039d33048a7cc8552d39e9dbc6b04d26f062ac7c232088806318a69b2601b9ae98f09a41d255e9b6ac6883acfcda9511219513382837a0d88903cf31578bde
 SHA512 
c9d7f46a6d7222e4dca105be9c306a6d558dacf185a726345988e262386c27ed63ef7022e524086f522aa0b5c7ff0ad6207863e83670c6116bb2b1e681abfc9d
+DIST mongodb_exporter-0.6.2.tar.gz 1296198 BLAKE2B 
4cd04b5e69788f2bbe3e87eafe6a7cf4f0a2e72abff4784176299e46943eac2219141beed2f8d11cc8a2458737456d8edaed42a5392bedd017e85315dc75ba1d
 SHA512 
52c1464af82c09fc79338e805e62936d4da8131cea1bb6608500fa36a2d4069676eace5da0ed1b14d82de9d626be301b42c7bc1d5c620bbecb47ae9a350ecd65

diff --git a/app-metrics/mongodb_exporter/mongodb_exporter-0.6.2.ebuild 
b/app-metrics/mongodb_exporter/mongodb_exporter-0.6.2.ebuild
new file mode 100644
index 000..4f780222d44
--- /dev/null
+++ b/app-metrics/mongodb_exporter/mongodb_exporter-0.6.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN=github.com/percona/mongodb_exporter
+EXPORTER_COMMIT=a642618
+
+DESCRIPTION="Prometheus exporter for MongoDB"
+HOMEPAGE="https://github.com/percona/mongodb_exporter;
+SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="dev-util/promu"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "/-s$/d" -e "s/{{.Revision}}/${EXPORTER_COMMIT}/" 
src/${EGO_PN}/.promu.yml || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   mkdir -p bin || die
+   GOPATH="${S}" promu build -v --prefix bin || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin bin/mongodb_exporter
+   dodoc {README,CHANGELOG}.md
+   popd || die
+   keepdir /var/log/mongodb_exporter
+   fowners ${PN}:${PN} /var/log/mongodb_exporter
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+}



[gentoo-commits] repo/gentoo:master commit in: net-im/discord-bin/

2019-03-15 Thread Thomas Deutschmann
commit: 564d56ceb3fa244ef98866231db944807136c563
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Mar 15 22:22:34 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 22:22:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=564d56ce

net-im/discord-bin: remove libnode.so from QA_PREBUILT

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

 net-im/discord-bin/discord-bin-0.0.9.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-im/discord-bin/discord-bin-0.0.9.ebuild 
b/net-im/discord-bin/discord-bin-0.0.9.ebuild
index 633cd464b30..99ca345176a 100644
--- a/net-im/discord-bin/discord-bin-0.0.9.ebuild
+++ b/net-im/discord-bin/discord-bin-0.0.9.ebuild
@@ -58,7 +58,6 @@ QA_PREBUILT="
opt/discord/swiftshader/libEGL.so
opt/discord/swiftshader/libGLESv2.so
opt/discord/libVkICD_mock_icd.so
-   opt/discord/libnode.so
opt/discord/libffmpeg.so
 "
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-timezone-field/

2019-03-15 Thread William Hubbs
commit: c2ea5bae5a3f2fe0a59d2094da8eac2d353bd01b
Author: William Hubbs  sony  com>
AuthorDate: Fri Mar 15 20:24:04 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Mar 15 22:08:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2ea5bae

dev-python/django-timezone-field: db and form fields for pytz timezone objects

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: William Hubbs  gentoo.org>

 dev-python/django-timezone-field/Manifest|  1 +
 .../django-timezone-field-3.0.ebuild | 20 
 dev-python/django-timezone-field/metadata.xml|  8 
 3 files changed, 29 insertions(+)

diff --git a/dev-python/django-timezone-field/Manifest 
b/dev-python/django-timezone-field/Manifest
new file mode 100644
index 000..3a32750c502
--- /dev/null
+++ b/dev-python/django-timezone-field/Manifest
@@ -0,0 +1 @@
+DIST django-timezone-field-3.0.tar.gz 6217 BLAKE2B 
4f4214ecd142284f7da89711535834c8d4d931a2532ff54181e6b072d7e636bcfaa1fe0cab5421d047fdd6d6ab472246054dd8bec8bb0c987df6e336aa269e96
 SHA512 
624e5b1e6b75ec40252ea7137608d9f62a5fbba1a136068c0c4c5e6192afa9756456cfbcba5ae3b00980f8e0ab44e507226815b25196bb58a39789a75036789b

diff --git a/dev-python/django-timezone-field/django-timezone-field-3.0.ebuild 
b/dev-python/django-timezone-field/django-timezone-field-3.0.ebuild
new file mode 100644
index 000..9385b768fc8
--- /dev/null
+++ b/dev-python/django-timezone-field/django-timezone-field-3.0.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+inherit distutils-r1
+
+DESCRIPTION="A Django app providing database and form fields for pytz timezone 
objects"
+HOMEPAGE="http://github.com/mfogel/django-timezone-field;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=">=dev-python/django-1.8[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+dev-python/setuptools[${PYTHON_USEDEP}]"

diff --git a/dev-python/django-timezone-field/metadata.xml 
b/dev-python/django-timezone-field/metadata.xml
new file mode 100644
index 000..c36c37139fa
--- /dev/null
+++ b/dev-python/django-timezone-field/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   willi...@gentoo.org
+   William Hubbs
+   
+



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-taggit-serializer/

2019-03-15 Thread William Hubbs
commit: 98f8efcc3e3b3a05d13b5ce51f035da925a3e2fb
Author: William Hubbs  sony  com>
AuthorDate: Fri Mar 15 18:03:49 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Mar 15 22:08:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f8efcc

dev-python/django-taggit-serializer: The django taggit serializer for
the django rest framework

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: William Hubbs  gentoo.org>

 dev-python/django-taggit-serializer/Manifest |  1 +
 .../django-taggit-serializer-0.1.7.ebuild| 20 
 dev-python/django-taggit-serializer/metadata.xml |  8 
 3 files changed, 29 insertions(+)

diff --git a/dev-python/django-taggit-serializer/Manifest 
b/dev-python/django-taggit-serializer/Manifest
new file mode 100644
index 000..a82c1f867ca
--- /dev/null
+++ b/dev-python/django-taggit-serializer/Manifest
@@ -0,0 +1 @@
+DIST django-taggit-serializer-0.1.7.tar.gz 5589 BLAKE2B 
2e9fceacd1eb1908848da99d7ec6b708f4c37f64c7ccde9e1082356e7695430c4c1f436a7d1a37200a249d2736adb848c1ce4fe26f63a6b1748080b62c1215dd
 SHA512 
90a3e39cda13826bfcdd0a6f262108112d261bc5e03f8ed973c0af0e1a6d8efd80e1e0926682754df4efdb697cea5453df39de70b0067c02bc452a8462ab2574

diff --git 
a/dev-python/django-taggit-serializer/django-taggit-serializer-0.1.7.ebuild 
b/dev-python/django-taggit-serializer/django-taggit-serializer-0.1.7.ebuild
new file mode 100644
index 000..0336b6ed105
--- /dev/null
+++ b/dev-python/django-taggit-serializer/django-taggit-serializer-0.1.7.ebuild
@@ -0,0 +1,20 @@
+# Copyright 2019Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
+inherit distutils-r1
+
+DESCRIPTION="the django taggit serializer for the django rest framework"
+HOMEPAGE="https://github.com/glemmaPaul/django-taggit-serializer;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND=">=dev-python/django-1.11[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"

diff --git a/dev-python/django-taggit-serializer/metadata.xml 
b/dev-python/django-taggit-serializer/metadata.xml
new file mode 100644
index 000..c36c37139fa
--- /dev/null
+++ b/dev-python/django-taggit-serializer/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   willi...@gentoo.org
+   William Hubbs
+   
+



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

2019-03-15 Thread William Hubbs
commit: be867af8af1ab2e335f01cca909c15c72b9c34a2
Author: William Hubbs  sony  com>
AuthorDate: Fri Mar 15 20:37:58 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Mar 15 22:08:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be867af8

dev-python/djangorestframework: Web APIs with django made easy

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: William Hubbs  gentoo.org>

 dev-python/djangorestframework/Manifest   |  1 +
 .../djangorestframework-3.9.2.ebuild  | 19 +++
 dev-python/djangorestframework/metadata.xml   |  8 
 3 files changed, 28 insertions(+)

diff --git a/dev-python/djangorestframework/Manifest 
b/dev-python/djangorestframework/Manifest
new file mode 100644
index 000..f0ddcff8a37
--- /dev/null
+++ b/dev-python/djangorestframework/Manifest
@@ -0,0 +1 @@
+DIST djangorestframework-3.9.2.tar.gz 785546 BLAKE2B 
b00e502a483894bfcebb9075a2534a68d0c48093b60482dfd2fd3b5653731ba5d535259451fcdd2f25f16832ec9e5a6b5e13b5e43095f770b88a0f251525a69d
 SHA512 
cf3b23de7b27bca082df571a2cfcb1c593bebd36830b60238a2efa794ded762b22444a00885acac7d97db393943063a9f7a81e9dd32628afa7f1308008520a76

diff --git a/dev-python/djangorestframework/djangorestframework-3.9.2.ebuild 
b/dev-python/djangorestframework/djangorestframework-3.9.2.ebuild
new file mode 100644
index 000..745e84b017a
--- /dev/null
+++ b/dev-python/djangorestframework/djangorestframework-3.9.2.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
+inherit distutils-r1
+
+DESCRIPTION="Web APIs with django made easy"
+HOMEPAGE="https://www.django-rest-framework.org;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=">=dev-python/django-1.11[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+dev-python/setuptools[${PYTHON_USEDEP}]"

diff --git a/dev-python/djangorestframework/metadata.xml 
b/dev-python/djangorestframework/metadata.xml
new file mode 100644
index 000..c36c37139fa
--- /dev/null
+++ b/dev-python/djangorestframework/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   willi...@gentoo.org
+   William Hubbs
+   
+



[gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/

2019-03-15 Thread Lars Wendler
commit: d5f1692b30355f9ebf076f7d94b51671de875820
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Mar 15 21:53:35 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar 15 21:53:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f1692b

games-engines/residualvm: Synced live ebuild.

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

 games-engines/residualvm/residualvm-.ebuild | 30 ++---
 1 file changed, 12 insertions(+), 18 deletions(-)

diff --git a/games-engines/residualvm/residualvm-.ebuild 
b/games-engines/residualvm/residualvm-.ebuild
index 7343afbb7e7..d263427ea17 100644
--- a/games-engines/residualvm/residualvm-.ebuild
+++ b/games-engines/residualvm/residualvm-.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-inherit gnome2-utils toolchain-funcs xdg-utils
+EAPI=7
+inherit desktop toolchain-funcs xdg
 
 DESCRIPTION="A cross-platform 3D game interpreter for play LucasArts' 
LUA-based 3D adventures"
 HOMEPAGE="http://www.residualvm.org/;
@@ -25,11 +25,14 @@ RDEPEND="
media-libs/glew:0=
media-libs/libpng:0=
media-libs/libsdl2[X,sound,alsa,joystick,opengl,video]
-   sys-libs/zlib
+   sys-libs/zlib:=
virtual/glu
virtual/jpeg:0
virtual/opengl"
 DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+"
 
 src_configure() {
# not an autotools script
@@ -51,6 +54,7 @@ src_configure() {
--enable-all-engines
--enable-release-mode
--enable-zlib
+   --prefix="${EPREFIX}/usr"
)
./configure "${myconf[@]}" || die "configure failed"
 }
@@ -63,29 +67,19 @@ src_compile() {
 }
 
 src_install() {
-   dobin residualvm
+   emake DESTDIR="${D}" install
 
-   insinto "/usr/share/${PN}"
-   doins gui/themes/modern.zip dists/engine-data/residualvm-grim-patch.lab
-
-   doicon -s scalable icons/${PN}.svg
doicon -s 256 icons/${PN}.png
-   domenu dists/${PN}.desktop
-
-   doman dists/${PN}.6
-   dodoc AUTHORS README.md KNOWN_BUGS TODO
 }
 
 pkg_preinst() {
-   gnome2_icon_savelist
+   xdg_pkg_preinst
 }
 
 pkg_postinst() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
+   xdg_pkg_postinst
 }
 
 pkg_postrm() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
+   xdg_pkg_postrm
 }



[gentoo-commits] repo/gentoo:master commit in: games-engines/residualvm/, games-engines/residualvm/files/

2019-03-15 Thread Lars Wendler
commit: 65cc7020a65691e5974b8c883d9e15b0a0229f49
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Mar 15 21:50:18 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar 15 21:53:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65cc7020

games-engines/residualvm: Revbump to fix freetype detection

- Bumped to EAPI-7
- Use provided build system to install files

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

 .../residualvm-0.3.1-freetype_pkgconfig.patch  | 145 +
 ...lvm-0.3.1.ebuild => residualvm-0.3.1-r1.ebuild} |  34 +++--
 2 files changed, 161 insertions(+), 18 deletions(-)

diff --git 
a/games-engines/residualvm/files/residualvm-0.3.1-freetype_pkgconfig.patch 
b/games-engines/residualvm/files/residualvm-0.3.1-freetype_pkgconfig.patch
new file mode 100644
index 000..41468ebf2b1
--- /dev/null
+++ b/games-engines/residualvm/files/residualvm-0.3.1-freetype_pkgconfig.patch
@@ -0,0 +1,145 @@
+From 34fc21424803ad193532c8423049ad07131fd7db Mon Sep 17 00:00:00 2001
+From: Lars Wendler 
+Date: Sun, 6 May 2018 20:55:29 +0200
+Subject: [PATCH 1/2] BUILD: Prefer pkg-config over freetype-config if possible
+
+As of freetype-2.9.1 the freetype-config script no longer gets installed
+by default.
+---
+ configure | 47 ++-
+ 1 file changed, 38 insertions(+), 9 deletions(-)
+
+diff --git a/configure b/configure
+index 7e0c9300..0a00cd95 100755
+--- a/configure
 b/configure
+@@ -209,6 +209,7 @@ _sparklepath=
+ _sdlconfig=sdl2-config
+ _libcurlconfig=curl-config
+ _freetypeconfig=freetype-config
++_freetype_found="false"
+ _sdlpath="$PATH"
+ _freetypepath="$PATH"
+ _libcurlpath="$PATH"
+@@ -4529,17 +4530,45 @@ echo "$_libunity"
+ #
+ # Check for FreeType2 to be present
+ #
+-if test "$_freetype2" != "no"; then
+-
+-  # Look for the freetype-config script
+-  find_freetypeconfig
++find_freetype() {
++# Wrapper function which tries to find freetype
++# either by callimg freetype-config or by using
++# pkg-config.
++# As of freetype-2.9.1 the freetype-config file
++# no longer gets installed by default.
++
++  if pkg-config --exists freetype2; then
++  FREETYPE2_LIBS=`pkg-config --libs freetype2`
++  FREETYPE2_CFLAGS=`pkg-config --cflags freetype2`
++  FREETYPE2_STATIC_LIBS=`pkg-config --static --libs freetype2`
++  _freetype_found="true"
++  else
++  # Look for the freetype-config script
++  find_freetypeconfig
++  if test -n "$_freetypeconfig"; then
++  # Since 2.3.12, freetype-config prepends $SYSROOT to 
everything.
++  # This means we can't pass it a --prefix that includes 
$SYSROOT.
++  freetypeprefix="$_freetypepath"
++  if test -n "$SYSROOT" -a "$SYSROOT" != "/"; then
++  teststring=VeryImplausibleSysrootX1Y2Z3
++  if ( env SYSROOT=/$teststring 
"$_freetypeconfig" --cflags | grep $teststring 2> /dev/null > /dev/null ); then
++  echo "Adapting FreeType prefix to 
SYSROOT" >> "$TMPLOG"
++  
freetypeprefix="${freetypeprefix##$SYSROOT}"
++  fi
++  fi
++  FREETYPE2_LIBS=`$_freetypeconfig 
--prefix="$freetypeprefix" --libs`
++  FREETYPE2_CFLAGS=`$_freetypeconfig 
--prefix="$freetypeprefix" --cflags`
++  FREETYPE2_STATIC_LIBS=`$_freetypeconfig 
--prefix="$freetypeprefix" --static --libs 2>/dev/null`
++  _freetype_found="true"
++  fi
++  fi
++}
+ 
+-  if test -z "$_freetypeconfig"; then
++if test "$_freetype2" != "no"; then
++  find_freetype
++  if test $_freetype_found != true; then
+   _freetype2=no
+   else
+-  FREETYPE2_LIBS=`$_freetypeconfig --prefix="$_freetypepath" 
--libs`
+-  FREETYPE2_CFLAGS=`$_freetypeconfig --prefix="$_freetypepath" 
--cflags`
+-
+   if test "$_freetype2" = "auto"; then
+   _freetype2=no
+ 
+@@ -4559,7 +4588,7 @@ EOF
+   # required flags for static linking. We abuse this to 
detect
+   # FreeType2 builds which are static themselves.
+   if test "$_freetype2" != "yes"; then
+-  FREETYPE2_LIBS=`$_freetypeconfig 
--prefix="$_freetypepath" --static --libs 2>/dev/null`
++  FREETYPE2_LIBS="$FREETYPE2_STATIC_LIBS"
+   cc_check_no_clean $FREETYPE2_CFLAGS 
$FREETYPE2_LIBS && _freetype2=yes
+   fi
+   cc_check_clean
+-- 
+2.21.0
+
+From 

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

2019-03-15 Thread James Le Cuirot
commit: 0c116b4141352561a91c92c2e8eb7e222bbc8976
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Mar 15 21:34:52 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Mar 15 21:34:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c116b41

media-libs/mesa: Check for dev-python/mako with --host-root option

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

 media-libs/mesa/mesa-18.3.4.ebuild | 2 +-
 media-libs/mesa/mesa-19.0.0.ebuild | 2 +-
 media-libs/mesa/mesa-.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/mesa/mesa-18.3.4.ebuild 
b/media-libs/mesa/mesa-18.3.4.ebuild
index b83687d01f2..7ebe214399b 100644
--- a/media-libs/mesa/mesa-18.3.4.ebuild
+++ b/media-libs/mesa/mesa-18.3.4.ebuild
@@ -301,7 +301,7 @@ pkg_pretend() {
 }
 
 python_check_deps() {
-   has_version ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]"
+   has_version --host-root ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]"
 }
 
 pkg_setup() {

diff --git a/media-libs/mesa/mesa-19.0.0.ebuild 
b/media-libs/mesa/mesa-19.0.0.ebuild
index 34b85000781..46739d80f08 100644
--- a/media-libs/mesa/mesa-19.0.0.ebuild
+++ b/media-libs/mesa/mesa-19.0.0.ebuild
@@ -304,7 +304,7 @@ pkg_pretend() {
 }
 
 python_check_deps() {
-   has_version ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]"
+   has_version --host-root ">=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 254bd0f3514..95a36146b15 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -307,7 +307,7 @@ pkg_pretend() {
 }
 
 python_check_deps() {
-   has_version ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]"
+   has_version --host-root ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]"
 }
 
 pkg_setup() {



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

2019-03-15 Thread Matthew Thode
commit: b9359f2d13634b19f2d6a7406366b4576271fdbd
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Mar 15 21:24:16 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Mar 15 21:24:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9359f2d

app-admin/ansible: 2.7.9 and 2.6.15 bump

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

 app-admin/ansible/Manifest  |  2 +
 app-admin/ansible/ansible-2.6.15.ebuild | 66 +
 app-admin/ansible/ansible-2.7.9.ebuild  | 66 +
 3 files changed, 134 insertions(+)

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index eca62c69cd1..91cf7b545e2 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -1,5 +1,7 @@
 DIST ansible-2.5.14.tar.gz 10119785 BLAKE2B 
6e771aafc16053185ee6d275d6d41f64aa3f0d6dffbe721a66b548b97e84d78916e03827d592b961f9a4e0bb03fae09320731a4b8fdb814126cecdfb51f9f136
 SHA512 
9635b1c4bc9a93a24f4bb2894c9fed63803cecb01c5562559e3b808791d1007b26aa0aade4aa05fd4bae0f7d01216588d4e2e0bf4c5fb6cdf677d9b40e9e2de8
 DIST ansible-2.6.13.tar.gz 10730575 BLAKE2B 
2442925421996731be59db7ca18994f9c158f0b1247554bc8252d76d6c8fe8574e4ec2e62d71d7de075a9b109c43620232c78d91dcb3aa8d574752862de4d156
 SHA512 
7592214bc5c0c4283c99d7a422d44a54f424afe848b40fa2c0b0a4b556361a6290b459d8bdb575ec323e4e96bbad7abc939cdb5664839bb13f5de3d054ffb880
 DIST ansible-2.6.14.tar.gz 10732165 BLAKE2B 
c753860a521c37357c7a5042391957680865416c036fcaf3920a65e291dc3ed3a52e94ad5b99acdb0d2c919e3be68b8462e462a935497dfe83b406adf4e63dad
 SHA512 
ee532c0d61ab03a0937e89bfa7565f27f1905987784f31895e8ac6e4a8ecf76ca9f30201d278a68a995b8fc27151712dba2e79c13269a472d923355e36072e4e
+DIST ansible-2.6.15.tar.gz 10734433 BLAKE2B 
9c48d9de348a11a57b364921af26154b5a2106d0bfa2d7d341c06e2408b3f71d30b3cc2f5e4df1bb21eb6eebd39a4d297ce8d697d68826378d4e786a4acb4e25
 SHA512 
14951db33ed2124b3379adf1114a9c980f63668c18a79d436658d8ddc1bbbd38f26682520319bd0e399d6ced518ece0f01da5a6991003e8b30adf78f20c6d1e8
 DIST ansible-2.7.7.tar.gz 11809560 BLAKE2B 
3960e4dcd166fb77ddcb6bbae03b20fe679b76aee3db118ddd4642ab7b837a66929bd4ec76c071c53eba7ece47aaf8a52ceb34ea092d3e3db8355839575b684c
 SHA512 
41e007ccc5b22eaa1a7aa9c16f8d012268cbd1055b5c10a204134b7707ab7bf205aab04efccda9fb5497034896542d29ba253ad4ea09b4755b665bada22b4c54
 DIST ansible-2.7.8.tar.gz 11812884 BLAKE2B 
867ed7072efc4effafd637ac0353bd722269046cae8ddb794eea8c6cf9d739bc567f2a5323a589c21a74bbb57565ef153fb8c52798c17809a42400abe72ce65c
 SHA512 
f3501ce8b642f83fe3d5e21cdfa26bce8611e92bc6e68e40b3a7ff2443c7d8ee0b2175981c92a5e83f9ce8c5d7d75aac95106a237bb9325c66319d96a790009a
+DIST ansible-2.7.9.tar.gz 11830476 BLAKE2B 
7688ce9f74b0ab1fafd0e31dce90d995a9d8ca90bbe436f2d4ee9d005069b6e1b2c4dd679c2430a6873233da54ae06d3ebf08736681ec2e59e5b3ddafa6bb1e2
 SHA512 
4d39c7d4eb97264ce8f92812fb986b24af0c663efa6d8cd1d9a4cb25731d55e7518e503c04764e62d0458916b601baaa7acc623f9f83ce8b93e7f22900e29a53

diff --git a/app-admin/ansible/ansible-2.6.15.ebuild 
b/app-admin/ansible/ansible-2.6.15.ebuild
new file mode 100644
index 000..4bec3453ac7
--- /dev/null
+++ b/app-admin/ansible/ansible-2.6.15.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Model-driven deployment, config management, and command execution 
framework"
+HOMEPAGE="https://ansible.com/;
+SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x64-macos"
+IUSE="doc test"
+
+RDEPEND="
+   dev-python/paramiko[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/httplib2[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/netaddr[${PYTHON_USEDEP}]
+   net-misc/sshpass
+   virtual/ssh
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? (
+   ${RDEPEND}
+   dev-python/nose[${PYTHON_USEDEP}]
+   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
+   dev-python/passlib[${PYTHON_USEDEP}]
+   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/unittest2[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )"
+
+# not included in release tarball
+RESTRICT="test"
+
+python_compile_all() {
+   if use doc; then
+   cd docs/docsite || die
+   export CPUS=4
+   emake -f Makefile.sphinx html
+   fi
+}
+
+python_test() {
+   nosetests -d -w test/units -v --with-coverage 

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

2019-03-15 Thread Patrick McLean
commit: 73ee5377b7010290130f94130bf69916b12cded8
Author: Patrick McLean  sony  com>
AuthorDate: Fri Mar 15 21:17:20 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Mar 15 21:18:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73ee5377

sys-cluster/ceph: Remove old

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 sys-cluster/ceph/Manifest  |   7 -
 sys-cluster/ceph/ceph-12.2.10.ebuild   | 308 ---
 sys-cluster/ceph/ceph-12.2.7.ebuild| 305 ---
 sys-cluster/ceph/ceph-12.2.9-r1.ebuild | 308 ---
 sys-cluster/ceph/ceph-13.2.1-r1.ebuild | 352 ---
 sys-cluster/ceph/ceph-13.2.2-r3.ebuild | 371 -
 sys-cluster/ceph/metadata.xml  |   1 -
 7 files changed, 1652 deletions(-)

diff --git a/sys-cluster/ceph/Manifest b/sys-cluster/ceph/Manifest
index 14f64964442..5153037850a 100644
--- a/sys-cluster/ceph/Manifest
+++ b/sys-cluster/ceph/Manifest
@@ -1,13 +1,6 @@
 DIST ceph-10.2.10.tar.gz 14573701 BLAKE2B 
78c68deb8537cae8394b4d35569983431e938eff42b01f448dea68016b33ca5770c83d1e1d382bfd6c8164d5259e821779c6515f8c8fb4d5d52ee90b7df43180
 SHA512 
883d1b8340aaefc7a1eee4bbfb5b1d1cc15bffed8f35fb1e8fb86b1208a4d0d16753eb6c688ea0e661c4877d3d148b2b6c2b41620c4e8a61e47c69f46f98e537
 DIST ceph-10.2.3.tar.gz 11596171 BLAKE2B 
c24c879649f0d42f58cfb1d03701797bc685d83c157031156d13308c731412a4a0149b658193722b358ebf0c4f9760d9664668cd797b69d207e81dc572f49700
 SHA512 
9de1e6851fc343d2c52c72cec3f7887d998d5b588f1251ee3a1fda14427badfa10408e6691fb03a374a10f4ec9844868423fee70fbbe2c0d962af98481412f19
-DIST ceph-12.2.10.tar.gz 78884870 BLAKE2B 
321d8256fc6659be3da2ce348e022e79ded63783925c02d3140ffa7fed5528a2b03388f0dfcdf536c81eec7b2484c6db9def8aefb1d5d335c86bad525977977b
 SHA512 
2195a04bf937dba6af61389132240661126ef32e9fd86ca75af27a33c712053b15aa89b52c91ced04f06dc880d7c018afa3f26fff78bf313603f4fb73331b80c
 DIST ceph-12.2.11.tar.gz 79009034 BLAKE2B 
d8b1c188fe39603e90511eb436100ba14c0a9c4d9531f1a4ca52e78449462aacd274b80f8d0549918979fcb1ca4632ae0eaade1ae311a730fbe6657be044fc35
 SHA512 
14f46cc6f38d7d894cc657a040b428309632e5c163109a8a4a79a346ba2901a37d79966a0bc09148810c22b89375d9a4cb3b23f16364685b094c518bfafe9bef
-DIST ceph-12.2.7.tar.gz 78783279 BLAKE2B 
9058a5e408b3431cf0e8c28b44f95f6eb12f029697348eb6879efa9db4ad6a3b52b1040f484919a3f1781ac3a4aa72af3b8905760480fd3f3724dbceeab4eb07
 SHA512 
dde75a41c31cca54d4a680b0b93e28680a23f912a348a65e55e600c315bbfe3ced008d758fe8ba1e801a9d6e5f8079cc157ec5eef8916b86f487f42064ea
 DIST ceph-12.2.8.tar.gz 77243685 BLAKE2B 
37c34396a0c276b8d79735e14934ac70da024822c2a060061531c234e03e5d41aad6c41dc64b05c2ce47f03287d0cae9ef9bed67e4a0861b6380c8ce1de4ea69
 SHA512 
91c5c11aaeef701b3e31c9f8a1192b6b79fd34f3b96c61595c65173c98bfce0009c5b7c9b29764f5e4d4b1f5ac2ca7109fed5ae598c176aba717a34a132fabac
-DIST ceph-12.2.9.tar.gz 77300470 BLAKE2B 
3d3fe24986b890e7dcfc790441a80ad56b9c26f500811d524d0889773d425c88f278135d85cd84036973deb5aa58c4cd1cc9cead60db3f0f825349d73140be73
 SHA512 
93da6f9012fdb65e74dc1917f54839cb19a25672d53e7ee253553e93abb1a2afb51cd18b27bc82559108e2085e463a3b46003b03627e06a6e2e2312b54d86e92
-DIST ceph-13.2.1-frontend-node-modules.tar.xz 44352460 BLAKE2B 
0a0099e60f0b36d48928dcda3f69dbb00e14a9a9e10c688ecbeb3daa3adbe339655652a43924043fe140ce1754525be2abed61f1ad5f24779fa4ff890d2b7cf6
 SHA512 
3938e8cadb6385cdaf023fe55ab5f202e44ed80173b128e3b76fc4849556cea90ce5d8884a928b93776b0509b5aef814f1078ba5e44a9d644b43a871aea06dd9
-DIST ceph-13.2.1.tar.gz 90786830 BLAKE2B 
e0884a039ff0e8a1705d8f31f4dcf4cd8ab8989d7c2fa703417038ff9a6cf7b0fbca09abceb901970fbb2dd9a1dc87c2500fec38a2bfca86a9a6dcaab15be991
 SHA512 
411218ea6037bdf9425a741720ea89876e893e64fbfa518c9584ba581f805fde2c82b13ed47313279665e5d20f36223fc8d5c27055b580c72b22c2004e4da81b
-DIST ceph-13.2.2-frontend-node-modules.tar.xz 45100632 BLAKE2B 
c3929a6c5e6ec3da5ff60967ae40b99377b2186f31e64af571d9be14889d90bc48b570489aea300ead8e99afc0e62db4438cf343686757a39d84889e772c7fa9
 SHA512 
93eabc2010c0977c2980c739e131d231a809e375c42120e81effc6cecdeaf0e50b4f8c88286993ef60f1ffaede94f637475104e09fd7af58a289350bd670bf2f
-DIST ceph-13.2.2.tar.gz 90840817 BLAKE2B 
db5933f358a1ae6888030bca7522e20545a2e107055dca44b371e295537c854568682fa558d3f90193e0dfe618947918ce21816b5e20795fff8a14bc837216bb
 SHA512 
37c4845ae52550428c7f1e0d77d9d671ea1d6f5cad5bce0713dce97b54f3abe7346daa2cbd44b76638fb74fe7bdc4797033a4bf808253cfc8bec0fa495ec7e03
 DIST ceph-13.2.4.tar.gz 90910119 BLAKE2B 
eb395f435552d91789869bd92fee2a8b2fef155205f13b118bd01be4ff78a8e1dde682425a24311822bb819ec8cf41a9d45245ffa3cb7a921d3269f6658bf920
 SHA512 
5055979067234ad7fd2774007d524ef4643d968bf7ce42fc8c3f8e469fd84cbd7afc163cd6ddda53584bd5677fdea2fecf8194a378d49724504f639b9f688ff7
 DIST ceph-13.2.5.tar.gz 91006057 BLAKE2B 

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

2019-03-15 Thread Patrick McLean
commit: 13a2f5a373fd291cda6031b3052b583f77ac741e
Author: Patrick McLean  sony  com>
AuthorDate: Fri Mar 15 21:18:25 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Mar 15 21:18:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13a2f5a3

sys-cluster/ceph: Drop nodejs dep from 13.2.4  (bug #675744)

Closes: https://bugs.gentoo.org/675744
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 sys-cluster/ceph/ceph-13.2.4.ebuild | 4 
 1 file changed, 4 deletions(-)

diff --git a/sys-cluster/ceph/ceph-13.2.4.ebuild 
b/sys-cluster/ceph/ceph-13.2.4.ebuild
index 52ab54eb408..cca90b166f0 100644
--- a/sys-cluster/ceph/ceph-13.2.4.ebuild
+++ b/sys-cluster/ceph/ceph-13.2.4.ebuild
@@ -57,10 +57,6 @@ COMMON_DEPEND="
ssl? ( dev-libs/openssl:=[static-libs?] )
xfs? ( sys-fs/xfsprogs:=[static-libs?] )
zfs? ( sys-fs/zfs:=[static-libs?] )
-   mgr? (
-   net-libs/nodejs-8.10
-   )
radosgw? (
dev-libs/expat:=[static-libs?]
dev-libs/openssl:=[static-libs?]



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

2019-03-15 Thread Patrick McLean
commit: 0e9f26758cdc285372757707d8e0db28475f91ac
Author: Patrick McLean  sony  com>
AuthorDate: Fri Mar 15 21:15:22 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Mar 15 21:18:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e9f2675

sys-cluster/ceph: Version bump to 13.2.5

Remove dependency on nodejs (bug #675744)

Bug: https://bugs.gentoo.org/675744
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 sys-cluster/ceph/Manifest   |   1 +
 sys-cluster/ceph/ceph-13.2.5.ebuild | 322 
 2 files changed, 323 insertions(+)

diff --git a/sys-cluster/ceph/Manifest b/sys-cluster/ceph/Manifest
index fd8e0ccbd0a..14f64964442 100644
--- a/sys-cluster/ceph/Manifest
+++ b/sys-cluster/ceph/Manifest
@@ -10,3 +10,4 @@ DIST ceph-13.2.1.tar.gz 90786830 BLAKE2B 
e0884a039ff0e8a1705d8f31f4dcf4cd8ab8989
 DIST ceph-13.2.2-frontend-node-modules.tar.xz 45100632 BLAKE2B 
c3929a6c5e6ec3da5ff60967ae40b99377b2186f31e64af571d9be14889d90bc48b570489aea300ead8e99afc0e62db4438cf343686757a39d84889e772c7fa9
 SHA512 
93eabc2010c0977c2980c739e131d231a809e375c42120e81effc6cecdeaf0e50b4f8c88286993ef60f1ffaede94f637475104e09fd7af58a289350bd670bf2f
 DIST ceph-13.2.2.tar.gz 90840817 BLAKE2B 
db5933f358a1ae6888030bca7522e20545a2e107055dca44b371e295537c854568682fa558d3f90193e0dfe618947918ce21816b5e20795fff8a14bc837216bb
 SHA512 
37c4845ae52550428c7f1e0d77d9d671ea1d6f5cad5bce0713dce97b54f3abe7346daa2cbd44b76638fb74fe7bdc4797033a4bf808253cfc8bec0fa495ec7e03
 DIST ceph-13.2.4.tar.gz 90910119 BLAKE2B 
eb395f435552d91789869bd92fee2a8b2fef155205f13b118bd01be4ff78a8e1dde682425a24311822bb819ec8cf41a9d45245ffa3cb7a921d3269f6658bf920
 SHA512 
5055979067234ad7fd2774007d524ef4643d968bf7ce42fc8c3f8e469fd84cbd7afc163cd6ddda53584bd5677fdea2fecf8194a378d49724504f639b9f688ff7
+DIST ceph-13.2.5.tar.gz 91006057 BLAKE2B 
68551e2f54d78aff7b0e9ec3c62e6a3394dd7c23e80924a5b400cd9666a05a42e5f22445deee4040f1b78201c6a6660b283109878d4c92d845821bff831c8a5e
 SHA512 
6daea524523f829e725609328ea71f416b2c3a9530fa8956720a7bc69dc08e55a169654f500704579dc9ba693f04eedd7e04614c0850e9ab1169cd45f19039f8

diff --git a/sys-cluster/ceph/ceph-13.2.5.ebuild 
b/sys-cluster/ceph/ceph-13.2.5.ebuild
new file mode 100644
index 000..cca90b166f0
--- /dev/null
+++ b/sys-cluster/ceph/ceph-13.2.5.ebuild
@@ -0,0 +1,322 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
+DISTUTILS_OPTIONAL=1
+
+inherit check-reqs bash-completion-r1 cmake-utils distutils-r1 flag-o-matic \
+   multiprocessing python-r1 udev user readme.gentoo-r1 
toolchain-funcs \
+   systemd
+
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/ceph/ceph.git;
+   SRC_URI=""
+else
+   SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz;
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Ceph distributed filesystem"
+HOMEPAGE="https://ceph.com/;
+
+LICENSE="LGPL-2.1 CC-BY-SA-3.0 GPL-2 BSD Boost-1.0 MIT"
+SLOT="0"
+
+CPU_FLAGS_X86=(sse{,2,3,4_1,4_2} ssse3)
+
+IUSE="babeltrace cephfs dpdk fuse jemalloc ldap lttng +mgr"
+IUSE+=" +radosgw +ssl static-libs +system-boost systemd +tcmalloc test"
+IUSE+=" xfs zfs"
+IUSE+=" $(printf "cpu_flags_x86_%s\n" ${CPU_FLAGS_X86[@]})"
+
+# unbundling code commented out pending bugs 584056 and 584058
+#>=dev-libs/jerasure-2.0.0-r1
+#>=dev-libs/gf-complete-2.0.0
+COMMON_DEPEND="
+   virtual/libudev:=
+   app-arch/bzip2:=[static-libs?]
+   app-arch/lz4:=[static-libs?]
+   app-arch/snappy:=[static-libs?]
+   app-arch/zstd:=[static-libs?]
+   app-misc/jq:=[static-libs?]
+   dev-libs/crypto++:=[static-libs?]
+   dev-libs/leveldb:=[snappy,static-libs?,tcmalloc?]
+   dev-libs/libaio:=[static-libs?]
+   dev-libs/libxml2:=[static-libs?]
+   dev-libs/nss:=
+   sys-auth/oath-toolkit:=
+   sys-apps/keyutils:=[static-libs?]
+   sys-apps/util-linux:=[static-libs?]
+   sys-libs/zlib:=[static-libs?]
+   babeltrace? ( dev-util/babeltrace )
+   ldap? ( net-nds/openldap:=[static-libs?] )
+   lttng? ( dev-util/lttng-ust:= )
+   fuse? ( sys-fs/fuse:0=[static-libs?] )
+   ssl? ( dev-libs/openssl:=[static-libs?] )
+   xfs? ( sys-fs/xfsprogs:=[static-libs?] )
+   zfs? ( sys-fs/zfs:=[static-libs?] )
+   radosgw? (
+   dev-libs/expat:=[static-libs?]
+   dev-libs/openssl:=[static-libs?]
+   net-misc/curl:=[curl_ssl_openssl,static-libs?]
+   )
+   system-boost? (
+   
>=dev-libs/boost-1.67:=[threads,context,python,static-libs?,${PYTHON_USEDEP}]
+   )
+   jemalloc? ( dev-libs/jemalloc:=[static-libs?] )
+   !jemalloc? ( >=dev-util/google-perftools-2.4:=[static-libs?] )
+   ${PYTHON_DEPS}
+   "

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

2019-03-15 Thread Amy Liffey
commit: fe5d8423b5dd9df08487d476828df0cc0d26d909
Author: Amy Liffey  gentoo  org>
AuthorDate: Fri Mar 15 18:45:40 2019 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Fri Mar 15 20:44:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe5d8423

sci-libs/gdal: version bump 2.4.0

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

 sci-libs/gdal/Manifest  |   1 +
 sci-libs/gdal/gdal-2.4.0.ebuild | 318 
 2 files changed, 319 insertions(+)

diff --git a/sci-libs/gdal/Manifest b/sci-libs/gdal/Manifest
index 3e3fe719104..dd975944742 100644
--- a/sci-libs/gdal/Manifest
+++ b/sci-libs/gdal/Manifest
@@ -1 +1,2 @@
 DIST gdal-2.3.1.tar.gz 14450452 BLAKE2B 
226ddf80ff8b9e3d420ac717b245a09fe3daa0331931f4d371b62ab9fa9bb0735ca11e1e045398de92d61b68815aa1dc3e7b6568f4853964cf42d188e46e6eb7
 SHA512 
0c5bb515dd2a9ad3110421b39bd680ce7e9de68e969cf35a7e63118965dbe193d25a7720a525e53af153de3e78f76ccc6983f4dcdfa6ba429d732a7a47a35d57
+DIST gdal-2.4.0.tar.gz 14533664 BLAKE2B 
ec10a4a9ba438a758131c1b80286b27ee17f1f270e77af61d70ed4149d63b9224c98db9c55156075ebd86b5f0875c626d87df3779f0b981895ff1c00786f908e
 SHA512 
9517b23009621ed2622a460dc813b30de726d293531c6f107fb308a31e45a143e67e71aa3af3d1faed554ad516a35924973d714c63ee41445ac8d3b2da61dd10

diff --git a/sci-libs/gdal/gdal-2.4.0.ebuild b/sci-libs/gdal/gdal-2.4.0.ebuild
new file mode 100644
index 000..6341ce2b6ae
--- /dev/null
+++ b/sci-libs/gdal/gdal-2.4.0.ebuild
@@ -0,0 +1,318 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+GENTOO_DEPEND_ON_PERL="no"
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+DISTUTILS_OPTIONAL=1
+
+inherit autotools perl-module distutils-r1 toolchain-funcs flag-o-matic 
java-pkg-opt-2
+
+DESCRIPTION="Translator library for raster geospatial data formats (includes 
OGR support)"
+HOMEPAGE="https://www.gdal.org/;
+SRC_URI="https://download.osgeo.org/${PN}/${PV}/${P}.tar.gz;
+
+SLOT="0/2.3"
+LICENSE="BSD Info-ZIP MIT"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos"
+IUSE="armadillo +aux_xml curl debug doc fits geos gif gml hdf5 java jpeg 
jpeg2k lzma mdb mysql netcdf odbc ogdi opencl oracle pdf perl png postgres 
python spatialite sqlite threads webp xls zstd"
+
+COMMON_DEPEND="
+   dev-libs/expat
+   dev-libs/json-c:=
+   dev-libs/libpcre
+   dev-libs/libxml2:=
+   media-libs/tiff:0=
+   sci-libs/libgeotiff
+   sys-libs/zlib:=[minizip(+)]
+   armadillo? ( sci-libs/armadillo:=[lapack] )
+   curl? ( net-misc/curl )
+   fits? ( sci-libs/cfitsio:= )
+   geos? ( >=sci-libs/geos-2.2.1 )
+   gif? ( media-libs/giflib:= )
+   gml? ( >=dev-libs/xerces-c-3.1 )
+   hdf5? ( >=sci-libs/hdf5-1.6.4:=[szip] )
+   jpeg? ( virtual/jpeg:0= )
+   jpeg2k? ( media-libs/openjpeg:2= )
+   lzma? ( || (
+   app-arch/xz-utils
+   app-arch/lzma
+   ) )
+   mdb? ( dev-java/jackcess:1 )
+   mysql? ( virtual/mysql )
+   netcdf? ( sci-libs/netcdf:= )
+   odbc? ( dev-db/unixODBC )
+   ogdi? ( sci-libs/ogdi )
+   opencl? ( virtual/opencl )
+   oracle? ( dev-db/oracle-instantclient:= )
+   pdf? ( app-text/poppler:= )
+   perl? ( dev-lang/perl:= )
+   png? ( media-libs/libpng:0= )
+   postgres? ( >=dev-db/postgresql-8.4:= )
+   python? (
+   ${PYTHON_DEPS}
+   dev-python/numpy[${PYTHON_USEDEP}]
+   )
+   spatialite? ( dev-db/spatialite )
+   sqlite? ( dev-db/sqlite:3 )
+   webp? ( media-libs/libwebp:= )
+   xls? ( dev-libs/freexl )
+   zstd? ( app-arch/zstd:= )"
+
+RDEPEND="${COMMON_DEPEND}
+   java? ( >=virtual/jre-1.7:* )"
+
+DEPEND="${COMMON_DEPEND}
+   doc? ( app-doc/doxygen )
+   java? ( >=virtual/jdk-1.7:* )
+   perl? ( dev-lang/swig:0 )
+   python? (
+   dev-lang/swig:0
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   )"
+
+REQUIRED_USE="
+   mdb? ( java )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   spatialite? ( sqlite )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-2.2.3-soname.patch"
+   "${FILESDIR}/${PN}-2.2.3-bashcomp-path.patch" # bug 641866
+   "${FILESDIR}/${PN}-2.3.0-curl.patch" # bug 659840
+)
+
+src_prepare() {
+   # fix datadir and docdir placement
+   sed -e "s:@datadir@:@datadir@/gdal:" \
+   -e "s:@exec_prefix@/doc:@exec_prefix@/share/doc/${PF}/html:g" \
+   -i "${S}"/GDALmake.opt.in || die
+
+   # the second sed expression should fix bug 371075
+   sed -e "s:setup.py install:setup.py install --root=\$(DESTDIR):" \
+   -e "s:--prefix=\$(DESTDIR):--prefix=:" \
+   -i "${S}"/swig/python/GNUmakefile || die
+
+   # Fix spatialite/sqlite include issue
+   sed -e 's:spatialite/sqlite3.h:sqlite3.h:g' 

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

2019-03-15 Thread Anthony G. Basile
commit: 73b3615e0c8b71ea32fbd5fc8fc9c39e92fa96d8
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Mar 15 20:40:45 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Mar 15 20:40:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b3615e

net-libs/axtls: remove older unstable versions

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

 net-libs/axtls/Manifest   |   2 -
 net-libs/axtls/axtls-2.1.1.ebuild | 176 --
 net-libs/axtls/axtls-2.1.2.ebuild | 176 --
 3 files changed, 354 deletions(-)

diff --git a/net-libs/axtls/Manifest b/net-libs/axtls/Manifest
index 54c033cd5a8..27afd37d043 100644
--- a/net-libs/axtls/Manifest
+++ b/net-libs/axtls/Manifest
@@ -1,6 +1,4 @@
 DIST axTLS-1.5.3.tar.gz 1309853 BLAKE2B 
8a7db4df4775dc73e35c3a9b2a7bbee783d96f36c122393b72b47a4ed4e66f41e4736dcb7ed8eee4d756760957feafc113a5a4c6df58847b94721b1fb8560196
 SHA512 
d37fb1341259b079ed234512a96656d67e005c50d9f8e0c856fb140c9da35267624e065134e0cc8310f70e5cf5d196c7dd34f01e2a7a5cc29e77e7ca46c25281
-DIST axTLS-2.1.1.tar.gz 1305982 BLAKE2B 
37f6a233139ed290fd96787644eb9c40de57f4ddbf0615bf5fa314907ac497e2be26d66cef0245c5859038e4f2ec4edcca7c6b31d754e2d1989bfeb83cbf9587
 SHA512 
55619d5e02ce466bab223ebc1036ef39c6491d11126ed70f2712a427de2c7e396086a97d3607c9cb69685ade0763e2e55f2c94f9ba746d8ce7b34b0d1996f51a
-DIST axTLS-2.1.2.tar.gz 1317506 BLAKE2B 
e331ac1028fa59821e8213c30349839d324e62a24e3cb602050f87dab4ce044964bf04aa5dda1b533fc623ed300bb3a8987c4f5faa7e06c7b5b13e62a46c9d2d
 SHA512 
29e915c0b8549cf93f0664525c84281dd64159dcb3703badec382d203d0209b4f97d7cb875c710610da8e50a7e28d2b94ac161d1fd5fb625d492b15869333ada
 DIST axTLS-2.1.3.tar.gz 1316776 BLAKE2B 
f60502d34a9d23ac772e1bbe05dc9350ab2385fb3c42480117120923647f122ef7a955289b656b8a70b3ac9817b1bcf947f541739b8d01ebe1eb4340f8d9cf38
 SHA512 
aa116b671bf0fa059cb77f9e5c0307c48ab476b7ce7017f1d4b2e6362d9d527e534908cb30ec3667eec8c49566f950de3ae4ec0adf5b603fb4efb571eaffc596
 DIST axTLS-2.1.4.tar.gz 1316768 BLAKE2B 
3ff302c59313ee80d18a0d5390c591e6259625e62707cc0c7c677add1f7fddffa5b4dc46860ee18dd96fcc227b3cac1179ab290f8af50ac91fe2841fff977cd4
 SHA512 
ce301719a12f5b836e3c67a169119d2836382b7b97d39f4010b8b8a644a6751b9f948a6c91f8dc6c39d19f5723311af7aca8958f9052e72cb38a9907247af3e6
 DIST axTLS-2.1.5.tar.gz 1318286 BLAKE2B 
a4f7cb551f3569fbc9a3a7e0e8faa929a5310fdb412283487fedd4a58e36a65529ebd9aec859027ca6df8e69db85b9f908b56f8d37284548b3984da10774ca3d
 SHA512 
d208b174c31a144a779185e77834a34b0fdd15e8cadf4665b8fd76dcb3207955ed687f3d86d1e60f85d108ecccfd900a76e6d045d16a7182001e0b58da09be18

diff --git a/net-libs/axtls/axtls-2.1.1.ebuild 
b/net-libs/axtls/axtls-2.1.1.ebuild
deleted file mode 100644
index 26c6da07983..000
--- a/net-libs/axtls/axtls-2.1.1.ebuild
+++ /dev/null
@@ -1,176 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils multilib multilib-minimal savedconfig toolchain-funcs user
-
-
-# axtls CONFIG MINI-HOWTO
-#
-# Note: axtls is highly configurable and uses mconf, like the linux kernel.
-# You can configure it in a couple of ways:
-#
-# 1) USE="-savedconfig" and set/unset the remaining flags to obtain the 
features
-# you want, and possibly a lot more.
-#
-# 2) You can create your own configuration file by doing
-#
-#  FEATURES="keepwork" USE="savedconfig -*" emerge axtls
-#  cd /var/tmp/portage/net-libs/axtls*/work/axTLS
-#  make menuconfig
-#
-# Now configure axtls as you want.  Finally save your config file:
-#
-#  cp config/.config /etc/portage/savedconfig/net-libs/axtls-${PV}
-#
-# where ${PV} is the current version.  You can then run emerge again with
-# your configuration by doing
-#
-#  USE="savedconfig" emerge axtls
-#
-
-
-MY_PN=${PN/tls/TLS}
-
-DESCRIPTION="Embedded client/server TLSv1 SSL library and small HTTP(S) server"
-HOMEPAGE="http://axtls.sourceforge.net/;
-SRC_URI="mirror://sourceforge/axtls/${MY_PN}-${PV}.tar.gz"
-S="${WORKDIR}/${PN}-code"
-
-LICENSE="BSD GPL-2"
-SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
-
-IUSE="httpd cgi-lua cgi-php static static-libs doc"
-
-# TODO: add ipv6, and c#, java, lua, perl bindings
-# Currently these all have some issue
-DEPEND="doc? ( app-doc/doxygen )"
-RDEPEND="
-   httpd? (
-   cgi-lua? ( dev-lang/lua )
-   cgi-php? ( dev-lang/php[cgi] )
-   )"
-
-#Note1: static, cgi-* makes no sense if httpd is not given
-REQUIRED_USE="
-   static? ( httpd )
-   cgi-lua? ( httpd )
-   cgi-php? ( httpd )"
-
-AXTLS_GROUP="axtls"
-AXTLS_USER="axtls"
-
-pkg_setup() {
-   use httpd && {
-   ebegin "Creating axtls user 

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

2019-03-15 Thread Anthony G. Basile
commit: 40d957e0baec355f907d83bc1aa93c7d2e06f115
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Mar 15 20:36:58 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Mar 15 20:40:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40d957e0

net-libs/axtls: version bump to 2.1.5

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

 net-libs/axtls/Manifest   |   1 +
 net-libs/axtls/axtls-2.1.5.ebuild | 178 ++
 2 files changed, 179 insertions(+)

diff --git a/net-libs/axtls/Manifest b/net-libs/axtls/Manifest
index 4de2c6e83b5..54c033cd5a8 100644
--- a/net-libs/axtls/Manifest
+++ b/net-libs/axtls/Manifest
@@ -3,3 +3,4 @@ DIST axTLS-2.1.1.tar.gz 1305982 BLAKE2B 
37f6a233139ed290fd96787644eb9c40de57f4dd
 DIST axTLS-2.1.2.tar.gz 1317506 BLAKE2B 
e331ac1028fa59821e8213c30349839d324e62a24e3cb602050f87dab4ce044964bf04aa5dda1b533fc623ed300bb3a8987c4f5faa7e06c7b5b13e62a46c9d2d
 SHA512 
29e915c0b8549cf93f0664525c84281dd64159dcb3703badec382d203d0209b4f97d7cb875c710610da8e50a7e28d2b94ac161d1fd5fb625d492b15869333ada
 DIST axTLS-2.1.3.tar.gz 1316776 BLAKE2B 
f60502d34a9d23ac772e1bbe05dc9350ab2385fb3c42480117120923647f122ef7a955289b656b8a70b3ac9817b1bcf947f541739b8d01ebe1eb4340f8d9cf38
 SHA512 
aa116b671bf0fa059cb77f9e5c0307c48ab476b7ce7017f1d4b2e6362d9d527e534908cb30ec3667eec8c49566f950de3ae4ec0adf5b603fb4efb571eaffc596
 DIST axTLS-2.1.4.tar.gz 1316768 BLAKE2B 
3ff302c59313ee80d18a0d5390c591e6259625e62707cc0c7c677add1f7fddffa5b4dc46860ee18dd96fcc227b3cac1179ab290f8af50ac91fe2841fff977cd4
 SHA512 
ce301719a12f5b836e3c67a169119d2836382b7b97d39f4010b8b8a644a6751b9f948a6c91f8dc6c39d19f5723311af7aca8958f9052e72cb38a9907247af3e6
+DIST axTLS-2.1.5.tar.gz 1318286 BLAKE2B 
a4f7cb551f3569fbc9a3a7e0e8faa929a5310fdb412283487fedd4a58e36a65529ebd9aec859027ca6df8e69db85b9f908b56f8d37284548b3984da10774ca3d
 SHA512 
d208b174c31a144a779185e77834a34b0fdd15e8cadf4665b8fd76dcb3207955ed687f3d86d1e60f85d108ecccfd900a76e6d045d16a7182001e0b58da09be18

diff --git a/net-libs/axtls/axtls-2.1.5.ebuild 
b/net-libs/axtls/axtls-2.1.5.ebuild
new file mode 100644
index 000..490ad132093
--- /dev/null
+++ b/net-libs/axtls/axtls-2.1.5.ebuild
@@ -0,0 +1,178 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit multilib multilib-minimal savedconfig toolchain-funcs user
+
+
+# axtls CONFIG MINI-HOWTO
+#
+# Note: axtls is highly configurable and uses mconf, like the linux kernel.
+# You can configure it in a couple of ways:
+#
+# 1) USE="-savedconfig" and set/unset the remaining flags to obtain the 
features
+# you want, and possibly a lot more.
+#
+# 2) You can create your own configuration file by doing
+#
+#  FEATURES="keepwork" USE="savedconfig -*" emerge axtls
+#  cd /var/tmp/portage/net-libs/axtls*/work/axTLS
+#  make menuconfig
+#
+# Now configure axtls as you want.  Finally save your config file:
+#
+#  cp config/.config /etc/portage/savedconfig/net-libs/axtls-${PV}
+#
+# where ${PV} is the current version.  You can then run emerge again with
+# your configuration by doing
+#
+#  USE="savedconfig" emerge axtls
+#
+
+
+MY_PN=${PN/tls/TLS}
+
+DESCRIPTION="Embedded client/server TLSv1 SSL library and small HTTP(S) server"
+HOMEPAGE="http://axtls.sourceforge.net/;
+SRC_URI="mirror://sourceforge/axtls/${MY_PN}-${PV}.tar.gz"
+S="${WORKDIR}/${PN}-code"
+
+LICENSE="BSD GPL-2"
+SLOT="0/1"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+
+IUSE="httpd cgi-lua cgi-php static static-libs doc"
+
+# TODO: add ipv6, and c#, java, lua, perl bindings
+# Currently these all have some issue
+DEPEND="doc? ( app-doc/doxygen )"
+RDEPEND="
+   httpd? (
+   cgi-lua? ( dev-lang/lua )
+   cgi-php? ( dev-lang/php[cgi] )
+   )"
+
+#Note1: static, cgi-* makes no sense if httpd is not given
+REQUIRED_USE="
+   static? ( httpd )
+   cgi-lua? ( httpd )
+   cgi-php? ( httpd )"
+
+AXTLS_GROUP="axtls"
+AXTLS_USER="axtls"
+
+pkg_setup() {
+   use httpd && {
+   ebegin "Creating axtls user and group"
+   enewgroup ${AXTLS_GROUP}
+   enewuser ${AXTLS_USER} -1 -1 -1 ${AXTLS_GROUP}
+   }
+}
+
+src_prepare() {
+   tc-export AR CC
+
+   eapply "${FILESDIR}/explicit-libdir-r1.patch"
+
+   #We want CONFIG_DEBUG to avoid stripping
+   #but not for debugging info
+   sed -i -e 's: -g::' config/Rules.mak || die
+   sed -i -e 's: -g::' config/makefile.conf || die
+
+   eapply_user
+
+   multilib_copy_sources
+}
+
+use_flag_config() {
+   cp "${FILESDIR}"/config config/.config || die
+
+   #Respect CFLAGS/LDFLAGS
+   sed -i -e 

[gentoo-commits] repo/gentoo:master commit in: sys-firmware/b43legacy-firmware/

2019-03-15 Thread Rick Farina
commit: 55968bb7a2741b352e6fe61f931acc29ea4e86a8
Author: Rick Farina  gentoo  org>
AuthorDate: Fri Mar 15 20:35:05 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Fri Mar 15 20:35:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55968bb7

sys-firmware/b43legacy-firmware: license says unmodified

2.1.License Grants.  Subject to the terms and conditions of this Agreement,
Broadcom hereby grants to Licensee a non-exclusive, non-transferable,
royalty-free license (i) to use and integrate the Software in conjunction with
any other software; and (ii) to reproduce and distribute the Software complete,
unmodified and only for use with a Broadcom Product.

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

 sys-firmware/b43legacy-firmware/b43legacy-firmware-3.130.20.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/sys-firmware/b43legacy-firmware/b43legacy-firmware-3.130.20.0.ebuild 
b/sys-firmware/b43legacy-firmware/b43legacy-firmware-3.130.20.0.ebuild
index da476a3ca47..d31c683d0cb 100644
--- a/sys-firmware/b43legacy-firmware/b43legacy-firmware-3.130.20.0.ebuild
+++ b/sys-firmware/b43legacy-firmware/b43legacy-firmware-3.130.20.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -10,7 +10,7 @@ DESCRIPTION="broadcom firmware for b43legacy/bcm43xx"
 HOMEPAGE="http://linuxwireless.org/en/users/Drivers/b43;
 SRC_URI="http://downloads.openwrt.org/sources/wl_apsta-${PV}.o;
 
-RESTRICT="binchecks strip"
+RESTRICT="binchecks bindist strip"
 
 LICENSE="Broadcom"
 SLOT=0



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

2019-03-15 Thread Thomas Deutschmann
commit: 76fe2ea47021b48ac4fd9aa6429655a30d6336dd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Mar 15 20:26:06 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 20:33:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76fe2ea4

Revert "dev-lang/rust-bin: move app-eselect/eselect-rust to DEPEND"

This reverts commit 4ed92c969842db8a4699644abe61c717dba5de3c.

I was wrong, RDEPEND appropriate place to pull in app-eselect/eselect-rust.

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

 dev-lang/rust-bin/rust-bin-1.30.1-r1.ebuild | 5 +++--
 dev-lang/rust-bin/rust-bin-1.31.1.ebuild| 5 +++--
 dev-lang/rust-bin/rust-bin-1.32.0.ebuild| 5 +++--
 dev-lang/rust-bin/rust-bin-1.33.0.ebuild| 5 +++--
 4 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/dev-lang/rust-bin/rust-bin-1.30.1-r1.ebuild 
b/dev-lang/rust-bin/rust-bin-1.30.1-r1.ebuild
index 063ffde9237..c9cb9d5d92c 100644
--- a/dev-lang/rust-bin/rust-bin-1.30.1-r1.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.30.1-r1.ebuild
@@ -16,8 +16,9 @@ SLOT="stable"
 KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 IUSE="clippy cpu_flags_x86_sse2 doc libressl rustfmt"
 
-DEPEND=">=app-eselect/eselect-rust-20190311"
-RDEPEND="sys-libs/zlib
+DEPEND=""
+RDEPEND=">=app-eselect/eselect-rust-20190311
+   sys-libs/zlib
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
net-libs/libssh2

diff --git a/dev-lang/rust-bin/rust-bin-1.31.1.ebuild 
b/dev-lang/rust-bin/rust-bin-1.31.1.ebuild
index 89ba7839c39..9567b55a1c7 100644
--- a/dev-lang/rust-bin/rust-bin-1.31.1.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.31.1.ebuild
@@ -16,8 +16,9 @@ SLOT="stable"
 KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 IUSE="clippy cpu_flags_x86_sse2 doc libressl rustfmt"
 
-DEPEND=">=app-eselect/eselect-rust-20190311"
-RDEPEND="sys-libs/zlib
+DEPEND=""
+RDEPEND=">=app-eselect/eselect-rust-20190311
+   sys-libs/zlib
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
net-libs/libssh2

diff --git a/dev-lang/rust-bin/rust-bin-1.32.0.ebuild 
b/dev-lang/rust-bin/rust-bin-1.32.0.ebuild
index ef0e3aee64f..a4fb5e4c309 100644
--- a/dev-lang/rust-bin/rust-bin-1.32.0.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.32.0.ebuild
@@ -16,8 +16,9 @@ SLOT="stable"
 KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 IUSE="clippy cpu_flags_x86_sse2 doc libressl rustfmt"
 
-DEPEND=">=app-eselect/eselect-rust-20190311"
-RDEPEND="sys-libs/zlib
+DEPEND=""
+RDEPEND=">=app-eselect/eselect-rust-20190311
+   sys-libs/zlib
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
net-libs/libssh2

diff --git a/dev-lang/rust-bin/rust-bin-1.33.0.ebuild 
b/dev-lang/rust-bin/rust-bin-1.33.0.ebuild
index ef0e3aee64f..a4fb5e4c309 100644
--- a/dev-lang/rust-bin/rust-bin-1.33.0.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.33.0.ebuild
@@ -16,8 +16,9 @@ SLOT="stable"
 KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 IUSE="clippy cpu_flags_x86_sse2 doc libressl rustfmt"
 
-DEPEND=">=app-eselect/eselect-rust-20190311"
-RDEPEND="sys-libs/zlib
+DEPEND=""
+RDEPEND=">=app-eselect/eselect-rust-20190311
+   sys-libs/zlib
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
net-libs/libssh2



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

2019-03-15 Thread Thomas Deutschmann
commit: d7878e1706e9d96f4264c6d2066859cff554056b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Mar 15 20:31:53 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 20:33:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7878e17

dev-lang/rust: app-eselect/eselect-rust is only RDEPEND

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

 dev-lang/rust/rust-1.29.1-r1.ebuild | 6 +++---
 dev-lang/rust/rust-1.29.2-r1.ebuild | 6 +++---
 dev-lang/rust/rust-1.30.1-r1.ebuild | 3 ++-
 dev-lang/rust/rust-1.31.1.ebuild| 4 ++--
 dev-lang/rust/rust-1.32.0.ebuild| 4 ++--
 dev-lang/rust/rust-1.33.0.ebuild| 4 ++--
 6 files changed, 14 insertions(+), 13 deletions(-)

diff --git a/dev-lang/rust/rust-1.29.1-r1.ebuild 
b/dev-lang/rust/rust-1.29.1-r1.ebuild
index 7e2cf610220..a1262c26086 100644
--- a/dev-lang/rust/rust-1.29.1-r1.ebuild
+++ b/dev-lang/rust/rust-1.29.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -50,8 +50,7 @@ LICENSE="|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA"
 
 IUSE="cargo clippy cpu_flags_x86_sse2 debug doc +jemalloc libressl rls rustfmt 
wasm ${ALL_LLVM_TARGETS[*]}"
 
-COMMON_DEPEND=">=app-eselect/eselect-rust-0.3_pre20150425
-   jemalloc? ( dev-libs/jemalloc )
+COMMON_DEPEND="jemalloc? ( dev-libs/jemalloc )
cargo? (
sys-libs/zlib
!libressl? ( dev-libs/openssl:0= )
@@ -68,6 +67,7 @@ DEPEND="${COMMON_DEPEND}
)
dev-util/cmake"
 RDEPEND="${COMMON_DEPEND}
+   >=app-eselect/eselect-rust-0.3_pre20150425
cargo? ( !dev-util/cargo )
rustfmt? ( !dev-util/rustfmt )"
 PDEPEND="!cargo? ( >=dev-util/cargo-${CARGO_DEPEND_VERSION} )"

diff --git a/dev-lang/rust/rust-1.29.2-r1.ebuild 
b/dev-lang/rust/rust-1.29.2-r1.ebuild
index 724b161b99d..472f877be50 100644
--- a/dev-lang/rust/rust-1.29.2-r1.ebuild
+++ b/dev-lang/rust/rust-1.29.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -40,8 +40,7 @@ LICENSE="|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA"
 
 IUSE="cargo clippy cpu_flags_x86_sse2 debug doc +jemalloc libressl rls rustfmt 
wasm ${ALL_LLVM_TARGETS[*]}"
 
-COMMON_DEPEND=">=app-eselect/eselect-rust-0.3_pre20150425
-   jemalloc? ( dev-libs/jemalloc )
+COMMON_DEPEND="jemalloc? ( dev-libs/jemalloc )
cargo? (
sys-libs/zlib
!libressl? ( dev-libs/openssl:0= )
@@ -58,6 +57,7 @@ DEPEND="${COMMON_DEPEND}
)
dev-util/cmake"
 RDEPEND="${COMMOND_DEPEND}
+   >=app-eselect/eselect-rust-0.3_pre20150425
cargo? ( !dev-util/cargo )
rustfmt? ( !dev-util/rustfmt )"
 PDEPEND="!cargo? ( >=dev-util/cargo-${CARGO_DEPEND_VERSION} )"

diff --git a/dev-lang/rust/rust-1.30.1-r1.ebuild 
b/dev-lang/rust/rust-1.30.1-r1.ebuild
index f0f113a6597..425fdeb1bf6 100644
--- a/dev-lang/rust/rust-1.30.1-r1.ebuild
+++ b/dev-lang/rust/rust-1.30.1-r1.ebuild
@@ -40,7 +40,7 @@ LICENSE="|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA"
 
 IUSE="clippy cpu_flags_x86_sse2 debug doc +jemalloc libressl rls rustfmt 
system-llvm wasm ${ALL_LLVM_TARGETS[*]}"
 
-COMMON_DEPEND=">=app-eselect/eselect-rust-20190311
+COMMON_DEPEND="
jemalloc? ( dev-libs/jemalloc )
sys-libs/zlib
!libressl? ( dev-libs/openssl:0= )
@@ -57,6 +57,7 @@ DEPEND="${COMMON_DEPEND}
)
dev-util/cmake"
 RDEPEND="${COMMON_DEPEND}
+   >=app-eselect/eselect-rust-20190311
!dev-util/cargo
rustfmt? ( !dev-util/rustfmt )"
 REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )

diff --git a/dev-lang/rust/rust-1.31.1.ebuild b/dev-lang/rust/rust-1.31.1.ebuild
index 54605b4abc3..21695617d4b 100644
--- a/dev-lang/rust/rust-1.31.1.ebuild
+++ b/dev-lang/rust/rust-1.31.1.ebuild
@@ -40,8 +40,7 @@ LICENSE="|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA"
 
 IUSE="clippy cpu_flags_x86_sse2 debug doc +jemalloc libressl rls rustfmt 
system-llvm wasm ${ALL_LLVM_TARGETS[*]}"
 
-COMMON_DEPEND=">=app-eselect/eselect-rust-20190311
-   jemalloc? ( dev-libs/jemalloc )
+COMMON_DEPEND="jemalloc? ( dev-libs/jemalloc )
sys-libs/zlib
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
@@ -57,6 +56,7 @@ DEPEND="${COMMON_DEPEND}
)
dev-util/cmake"
 RDEPEND="${COMMON_DEPEND}
+   >=app-eselect/eselect-rust-20190311
!dev-util/cargo
rustfmt? ( !dev-util/rustfmt )"
 REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )

diff --git a/dev-lang/rust/rust-1.32.0.ebuild b/dev-lang/rust/rust-1.32.0.ebuild
index 

[gentoo-commits] repo/gentoo:master commit in: sys-firmware/b43-firmware/

2019-03-15 Thread Rick Farina
commit: b4ee356389420c029ccc59b50beabf872712095e
Author: Rick Farina  gentoo  org>
AuthorDate: Fri Mar 15 20:31:49 2019 +
Commit: Rick Farina  gentoo  org>
CommitDate: Fri Mar 15 20:32:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4ee3563

sys-firmware/b43-firmware: license says unmodified

2.1.License Grants.  Subject to the terms and conditions of this Agreement,
Broadcom hereby grants to Licensee a non-exclusive, non-transferable,
royalty-free license (i) to use and integrate the Software in conjunction with
any other software; and (ii) to reproduce and distribute the Software complete,
unmodified and only for use with a Broadcom Product.

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

 sys-firmware/b43-firmware/b43-firmware-5.100.138.ebuild   | 4 ++--
 sys-firmware/b43-firmware/b43-firmware-6.30.163.46.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-firmware/b43-firmware/b43-firmware-5.100.138.ebuild 
b/sys-firmware/b43-firmware/b43-firmware-5.100.138.ebuild
index b53bff24d38..c7fe6e64fc5 100644
--- a/sys-firmware/b43-firmware/b43-firmware-5.100.138.ebuild
+++ b/sys-firmware/b43-firmware/b43-firmware-5.100.138.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ LICENSE="Broadcom"
 SLOT="b43"
 KEYWORDS="~amd64 ppc ~x86"
 IUSE=""
-RESTRICT="binchecks strip"
+RESTRICT="binchecks strip bindist"
 
 DEPEND=">=net-wireless/b43-fwcutter-015"
 RDEPEND=""

diff --git a/sys-firmware/b43-firmware/b43-firmware-6.30.163.46.ebuild 
b/sys-firmware/b43-firmware/b43-firmware-6.30.163.46.ebuild
index 200f8e61c76..67b2e995dfd 100644
--- a/sys-firmware/b43-firmware/b43-firmware-6.30.163.46.ebuild
+++ b/sys-firmware/b43-firmware/b43-firmware-6.30.163.46.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ LICENSE="Broadcom"
 SLOT="b43"
 KEYWORDS="~amd64 ~ppc ~x86"
 IUSE=""
-RESTRICT="binchecks strip"
+RESTRICT="binchecks strip bindist"
 
 DEPEND=">=net-wireless/b43-fwcutter-015"
 RDEPEND=""



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

2019-03-15 Thread Michał Górny
commit: 8320d0d5d3dff6ddef33524d49ec829d41289b63
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 15 20:30:42 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 15 20:31:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8320d0d5

package.mask: Revert "Last rite sci-chemistry/prody"

Reverting the mask for sci-chemistry/prody; missed a revdep.

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 3f74ebcd923..40b98ff2d19 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,14 +29,6 @@
 
 #--- END OF EXAMPLES ---
 
-# Michał Górny  (15 Mar 2019)
-# Package added in 2015 and not bumped since (with upstream making
-# frequent releases).  The primary maintainer abandoned it.  The Gentoo
-# version requires Python 2, while it depends on IPython which dropped
-# support for Python 2.
-# Removal in 30 days.  Bug #672410.
-sci-chemistry/prody
-
 # Michał Górny  (15 Mar 2019)
 # Package added in 2014 and not updated since.  The current Gentoo
 # version used to violate multilib-strict (#627944), now it does not



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

2019-03-15 Thread Michał Górny
commit: e217ad1c08754200ba11a4abef21298ff74dc663
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 15 20:27:56 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 15 20:28:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e217ad1c

package.mask: Last rite sci-chemistry/prody

Bug: https://bugs.gentoo.org/672410
Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 40b98ff2d19..3f74ebcd923 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,14 @@
 
 #--- END OF EXAMPLES ---
 
+# Michał Górny  (15 Mar 2019)
+# Package added in 2015 and not bumped since (with upstream making
+# frequent releases).  The primary maintainer abandoned it.  The Gentoo
+# version requires Python 2, while it depends on IPython which dropped
+# support for Python 2.
+# Removal in 30 days.  Bug #672410.
+sci-chemistry/prody
+
 # Michał Górny  (15 Mar 2019)
 # Package added in 2014 and not updated since.  The current Gentoo
 # version used to violate multilib-strict (#627944), now it does not



[gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb-connector-c/files/, dev-db/mariadb-connector-c/

2019-03-15 Thread Brian Evans
commit: 0a4f621821c5c2ebd8e52ab24264b047cb60f5ad
Author: Brian Evans  gentoo  org>
AuthorDate: Fri Mar 15 19:13:01 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Fri Mar 15 19:13:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a4f6218

dev-db/mariadb-connector-c: Drop old

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

 dev-db/mariadb-connector-c/Manifest|   2 -
 ...db-connector-c-3.0.7-fix-pkconfig-file-r1.patch |  32 ---
 .../mariadb-connector-c-3.0.7-r1.ebuild| 102 
 .../mariadb-connector-c-3.0.8.ebuild   | 103 -
 4 files changed, 239 deletions(-)

diff --git a/dev-db/mariadb-connector-c/Manifest 
b/dev-db/mariadb-connector-c/Manifest
index 4ce03a3c9a6..6b46d2466d8 100644
--- a/dev-db/mariadb-connector-c/Manifest
+++ b/dev-db/mariadb-connector-c/Manifest
@@ -1,4 +1,2 @@
 DIST mariadb-connector-c-3.0.6-src.tar.gz 666819 BLAKE2B 
7245c0e13e569454d1cc70e3579afcbd53c64a0a7e828012b38d73f7d737a81b4fdf0363bd1b156dae783806a51773dbceb2ea06621bd4a73773edb78a70249a
 SHA512 
6a41efacff1840eb8ddd8b34d8894b51f260444c76a1344f9ac9b675fd8492d44716338e4c11594d80118b12d90f75430304282650bce0d5f64179df6cc14d8e
-DIST mariadb-connector-c-3.0.7-src.tar.gz 667274 BLAKE2B 
75d2d548d51889aecc8af56cbeb61f5eaf21e60924b70dd0559214de464eae209743febdb5d443797f853bc902352f7333aefe84cb367f61f7bf2c341a4a8ac2
 SHA512 
70facae6234f180d94c0526845a3bf7723d6de3b6871544cb8cea35311fec0537c6342fbf4f024d0dca58ee618642c38748ae73628fcba334064a3c15d307219
-DIST mariadb-connector-c-3.0.8-src.tar.gz 674455 BLAKE2B 
eca5972f8443c78cdc9f450e7e88ee1c69e2a004664916a0f7dfd9a1ab8242c9e11d3cafcd95323262223fba5d68c5d489d4f61fdddb8369cf603cdd563cfe51
 SHA512 
d9f970c7ac164ef7d8dd748bf2f749cc1f877a9c8f68a1d57e9ff62d95046bb9505619feca1f1d0d1cdefc1ac49489742aadf4ad9e47c8e6a9b8b40c56eed788
 DIST mariadb-connector-c-3.0.9-src.tar.gz 668142 BLAKE2B 
f61f855c334268b1cb079abc566a600093d7e0bdd164c22045000e337f43d2b57d14988cba1b3fd2f6316f6e0d949be7e67ac73410ddb1abc66e0faa16422946
 SHA512 
6f45bcd4bee07f6d72d1c4fee0bdb903ef4fa879eb7508156bc885a5657caf69b145d95647c4bc663eb2a2b03569b41ef9d87ca532b77901c2f67fd608048a1a

diff --git 
a/dev-db/mariadb-connector-c/files/mariadb-connector-c-3.0.7-fix-pkconfig-file-r1.patch
 
b/dev-db/mariadb-connector-c/files/mariadb-connector-c-3.0.7-fix-pkconfig-file-r1.patch
deleted file mode 100644
index 1fe06e2c8e5..000
--- 
a/dev-db/mariadb-connector-c/files/mariadb-connector-c-3.0.7-fix-pkconfig-file-r1.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-https://bugs.gentoo.org/673218
-
 a/mariadb_config/CMakeLists.txt
-+++ b/mariadb_config/CMakeLists.txt
-@@ -59,5 +59,5 @@ INSTALL(TARGETS mariadb_config
- COMPONENT Development)
- 
- INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libmariadb.pc
--DESTINATION "lib/pkgconfig"
-+DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig
- COMPONENT Development)
 a/mariadb_config/libmariadb.pc.in
-+++ b/mariadb_config/libmariadb.pc.in
-@@ -7,13 +7,12 @@
- #
- 
- prefix=@CMAKE_INSTALL_PREFIX@
--includedir=${prefix}/@INSTALL_INCLUDEDIR@/@SUFFIX_INSTALL_DIR@
--libdir=${prefix}/@INSTALL_LIBDIR@/@SUFFIX_INSTALL_DIR@
-+includedir=${prefix}/include
-+libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@
- 
- Name: libmariadb
- Version: @CPACK_PACKAGE_VERSION@
-+URL: https://mariadb.com/kb/en/library/mariadb-connector-c/
- Description: MariaDB Connector/C dynamic library
--Cflags: -I${includedir}
--Libs: -L${libdir} -lmariadb @extra_dynamic_LDFLAGS@
--
--
-+Cflags: -I${includedir}/mariadb
-+Libs: -L${libdir} -lmariadb

diff --git a/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.7-r1.ebuild 
b/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.7-r1.ebuild
deleted file mode 100644
index 2cd32bf0db3..000
--- a/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.7-r1.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-VCS_INHERIT=""
-if [[ "${PV}" ==  ]] ; then
-   VCS_INHERIT="git-r3"
-   EGIT_REPO_URI="https://github.com/MariaDB/mariadb-connector-c.git;
-else
-   MY_PN=${PN#mariadb-}
-   MY_PV=${PV/_b/-b}
-   
SRC_URI="https://downloads.mariadb.org/f/${MY_PN}-${PV%_beta}/${PN}-${MY_PV}-src.tar.gz?serve
 -> ${P}-src.tar.gz"
-   S="${WORKDIR%/}/${PN}-${MY_PV}-src"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
-fi
-
-inherit cmake-utils multilib-minimal toolchain-funcs ${VCS_INHERIT}
-
-MULTILIB_CHOST_TOOLS=( /usr/bin/mariadb_config )
-
-MULTILIB_WRAPPED_HEADERS+=(
-   /usr/include/mariadb/mariadb_version.h
-)
-
-DESCRIPTION="C client library for MariaDB/MySQL"
-HOMEPAGE="https://mariadb.org/;
-LICENSE="LGPL-2.1"
-
-SLOT="0/3"
-IUSE="+curl gnutls kerberos libressl mysqlcompat +ssl static-libs test"
-
-DEPEND="sys-libs/zlib:=[${MULTILIB_USEDEP}]
-  

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

2019-03-15 Thread Brian Evans
commit: 5195b2ae5d4c7edf3fea92e2b7f441f0160860b6
Author: Brian Evans  gentoo  org>
AuthorDate: Fri Mar 15 19:05:28 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Fri Mar 15 19:05:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5195b2ae

dev-db/mariadb-connector-c: Begin to drop the mysqlcompat USE flag

This library is functionally incompatible and should never have introduced
this in the first place.

Bug: https://bugs.gentoo.org/show_bug.cgi?id=666750
Bug: https://bugs.gentoo.org/668560
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Brian Evans  gentoo.org>

 .../mariadb-connector-c-3.0.9.ebuild| 21 ++---
 .../mariadb-connector-c-.ebuild | 17 +
 2 files changed, 3 insertions(+), 35 deletions(-)

diff --git a/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.9.ebuild 
b/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.9.ebuild
index c957edaec2d..854813a44d9 100644
--- a/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.9.ebuild
+++ b/dev-db/mariadb-connector-c/mariadb-connector-c-3.0.9.ebuild
@@ -28,7 +28,7 @@ HOMEPAGE="https://mariadb.org/;
 LICENSE="LGPL-2.1"
 
 SLOT="0/3"
-IUSE="+curl gnutls kerberos libressl mysqlcompat +ssl static-libs test"
+IUSE="+curl gnutls kerberos libressl +ssl static-libs test"
 
 DEPEND="sys-libs/zlib:=[${MULTILIB_USEDEP}]
virtual/libiconv:=[${MULTILIB_USEDEP}]
@@ -43,16 +43,7 @@ DEPEND="sys-libs/zlib:=[${MULTILIB_USEDEP}]
)
)
"
-RDEPEND="${DEPEND}
-   mysqlcompat? (
-   !dev-db/mysql[client-libs(+)]
-   !dev-db/mysql-cluster[client-libs(+)]
-   !dev-db/mariadb[client-libs(+)]
-   !dev-db/mariadb-galera[client-libs(+)]
-   !dev-db/percona-server[client-libs(+)]
-   !dev-db/mysql-connector-c )
-   !>=dev-db/mariadb-10.2.0[client-libs(+)]
-   "
+RDEPEND="${DEPEND}"
 PATCHES=(
"${FILESDIR}"/gentoo-layout-3.0.patch
"${FILESDIR}"/${PN}-3.0.8-fix-pkconfig-file.patch
@@ -86,18 +77,10 @@ multilib_src_compile() {
 
 multilib_src_install() {
cmake-utils_src_install
-   if use mysqlcompat ; then
-   dosym libmariadb.so.3 /usr/$(get_libdir)/libmysqlclient.so.19
-   dosym libmariadb.so.3 /usr/$(get_libdir)/libmysqlclient.so
-   fi
 }
 
 multilib_src_install_all() {
if ! use static-libs ; then
find "${D}" -name "*.a" -delete || die
fi
-   if use mysqlcompat ; then
-   dosym mariadb_config /usr/bin/mysql_config
-   dosym mariadb /usr/include/mysql
-   fi
 }

diff --git a/dev-db/mariadb-connector-c/mariadb-connector-c-.ebuild 
b/dev-db/mariadb-connector-c/mariadb-connector-c-.ebuild
index c957edaec2d..e6c4b2e6896 100644
--- a/dev-db/mariadb-connector-c/mariadb-connector-c-.ebuild
+++ b/dev-db/mariadb-connector-c/mariadb-connector-c-.ebuild
@@ -28,7 +28,7 @@ HOMEPAGE="https://mariadb.org/;
 LICENSE="LGPL-2.1"
 
 SLOT="0/3"
-IUSE="+curl gnutls kerberos libressl mysqlcompat +ssl static-libs test"
+IUSE="+curl gnutls kerberos libressl +ssl static-libs test"
 
 DEPEND="sys-libs/zlib:=[${MULTILIB_USEDEP}]
virtual/libiconv:=[${MULTILIB_USEDEP}]
@@ -44,13 +44,6 @@ DEPEND="sys-libs/zlib:=[${MULTILIB_USEDEP}]
)
"
 RDEPEND="${DEPEND}
-   mysqlcompat? (
-   !dev-db/mysql[client-libs(+)]
-   !dev-db/mysql-cluster[client-libs(+)]
-   !dev-db/mariadb[client-libs(+)]
-   !dev-db/mariadb-galera[client-libs(+)]
-   !dev-db/percona-server[client-libs(+)]
-   !dev-db/mysql-connector-c )
!>=dev-db/mariadb-10.2.0[client-libs(+)]
"
 PATCHES=(
@@ -86,18 +79,10 @@ multilib_src_compile() {
 
 multilib_src_install() {
cmake-utils_src_install
-   if use mysqlcompat ; then
-   dosym libmariadb.so.3 /usr/$(get_libdir)/libmysqlclient.so.19
-   dosym libmariadb.so.3 /usr/$(get_libdir)/libmysqlclient.so
-   fi
 }
 
 multilib_src_install_all() {
if ! use static-libs ; then
find "${D}" -name "*.a" -delete || die
fi
-   if use mysqlcompat ; then
-   dosym mariadb_config /usr/bin/mysql_config
-   dosym mariadb /usr/include/mysql
-   fi
 }



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

2019-03-15 Thread Brian Evans
commit: 36137d382667cf96e8fa52481d598d40e9bed861
Author: Brian Evans  gentoo  org>
AuthorDate: Fri Mar 15 19:08:21 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Fri Mar 15 19:08:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36137d38

profiles: Mask mysqlcompat USE on mariadb-connector-c

And the one consumer package media-tv/kodi

Signed-off-by: Brian Evans  gentoo.org>

 profiles/base/package.use.mask | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 7f528dec41a..853ae83e681 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -7,6 +7,13 @@
 # This file is only for generic masks. For arch-specific masks (i.e.
 # mask everywhere, unmask on arch/*) use arch/base.
 
+# Brian Evans  (15 Mar 2019)
+# Prepare to remove the mysqlcompat USE from mariadb-connector-c
+# Has multiple issues including symlinks and threading.
+# Packages should use and access libmariadb.so instead
+dev-db/mariadb-connector-c mysqlcompat
+media-tv/kodi mariadb
+
 # Georgy Yakovlev  (05 Mar 2019)
 # Not keyworded on non-x86 arches
 app-admin/conserver freeipmi



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

2019-03-15 Thread Georgy Yakovlev
commit: 761cc5ad761e12564d9271665b4b653ac4d772cd
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Fri Mar 15 18:56:31 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Fri Mar 15 18:58:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=761cc5ad

sys-apps/lsd: bump to 0.14.0

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

 sys-apps/lsd/Manifest  |  1 +
 sys-apps/lsd/lsd-0.14.0.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/sys-apps/lsd/Manifest b/sys-apps/lsd/Manifest
index cc83d15fe39..ea30ba6f117 100644
--- a/sys-apps/lsd/Manifest
+++ b/sys-apps/lsd/Manifest
@@ -11,6 +11,7 @@ DIST libc-0.2.44.crate 347920 BLAKE2B 
04fd82a1aab02a25a1201f6c463c0b30547e69dbca
 DIST lscolors-0.5.0.crate 15937 BLAKE2B 
27c9d42fbdfa32ce9f01fc627c2a758544dccd72f2b63f232b4984287f61f5f4dc8788a30ad60ae92ddc374b7b993b577bbc0d11a03c61756af81cc672300fc0
 SHA512 
97d881cf248dee1a744e6016941abb80579518ede0883e419b6c452215ddc0b2a6336c6c6c254e4f463cfa7f3a648ea56fef1df0ff044daba98c2d03e1731013
 DIST lsd-0.12.0.tar.gz 32067 BLAKE2B 
57683d0555774950e18a1119abf1053a8c934d23a9945cea820c39319329ad09bf464c30084a4a6530ac5df6cb9c1f067e86383052869ff7225c57686120b6eb
 SHA512 
b5bac177f3116ace5fed07fbcbf277b4657dfe15e7e66799844f3c0fc049673f9d99c0e9c27768704b0c35cd8bced2c1915b8d1bcbbef7c1052dd072e4965ea3
 DIST lsd-0.13.0.tar.gz 33392 BLAKE2B 
5e80e99d915a43ccbc4fe0ea809efa1effc7ee6f578e414845c8bce925c8cc47a4c87261e8db2d1cd97d596706a306e9c785c9fe75bc3dc381c25573178a1e95
 SHA512 
c55b0f6595b157a591bdd252432cd8d6aa63efe9cfae7f84602ec759e60b11cd08298f7dc792d59162e0ef3b84b8f2ff7caaacefd686b67c9d5ab81bea808cd9
+DIST lsd-0.14.0.tar.gz 33646 BLAKE2B 
b0bc5f8c9ef764e8e2c1a17da144e507ff6181bbde88a002950b47fb1678f4f4790e1cdc9e438c59ebf8e84eb7ef4c7a6308a45c21c75d63b56d0b5078bef987
 SHA512 
f1c17b63769f7c390a36e2ff99caf6d1da326fefc041a992986f756614a70db5aae4c87a0a33e416a6096d8ce65f0c0cbed50d168a8d0ca6dc2e97f0065593a0
 DIST num-integer-0.1.39.crate 17881 BLAKE2B 
1398b54766719f6fe298fb20489373ef774f1466349bcb96479610c00bb0f6f54b1a794def2841a0bf70558f6e5a080b528071ad5c64baa82bfac084354fa203
 SHA512 
1e00ef9fe5adcc312b4b8a59923015eb1387d90e6b3d7239b3aabcd83a9e67f2384b3a383d84ce8cdc82a470770f56373a89f0a679727a5fcc8f5bdb1f1209e3
 DIST num-traits-0.2.6.crate 39923 BLAKE2B 
7bd781368c553622620f0d62a09f2c82fd26d4e6378ea8fc51b0e655dcf0561701881027f46f7a98da1bc25b777c62ab7338387c776a9e5e3463ea53a7efe922
 SHA512 
db638c662737972f07bc7ab82b923bece8a6c04719199ec0c7ca90140ac11e4fd1e4eb3748a69ddd3ad2791d4f5f5f69a00ce8aae92a647d9015d130f85b6b4c
 DIST rand-0.4.3.crate 76094 BLAKE2B 
3889a26c9c41fd6b0b5bfdc75961aa4f74dd22aa61060914b0391361129a7557b504f3f23777cfddba6c2f71092ef9f2a76359245c0d594988c5ae7aa2968ad4
 SHA512 
d287faa583d07134a10db61d1dad30a3ac006624815240d50a8a21faca49085c3ef5c01c3741def25b3e93cb52507fff36497521caacf525e106f419013381d3

diff --git a/sys-apps/lsd/lsd-0.14.0.ebuild b/sys-apps/lsd/lsd-0.14.0.ebuild
new file mode 100644
index 000..780361d6787
--- /dev/null
+++ b/sys-apps/lsd/lsd-0.14.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CRATES="
+ansi_term-0.11.0
+atty-0.2.11
+bitflags-1.0.4
+chrono-0.4.6
+chrono-humanize-0.0.11
+clap-2.32.0
+fuchsia-zircon-0.3.3
+fuchsia-zircon-sys-0.3.3
+kernel32-sys-0.2.2
+libc-0.2.44
+lscolors-0.5.0
+num-integer-0.1.39
+num-traits-0.2.6
+rand-0.4.3
+redox_syscall-0.1.43
+redox_termios-0.1.1
+remove_dir_all-0.5.1
+strsim-0.7.0
+tempdir-0.3.7
+term_grid-0.1.7
+term_size-0.3.1
+terminal_size-0.1.8
+termion-1.5.1
+textwrap-0.10.0
+time-0.1.40
+unicode-width-0.1.5
+users-0.8.1
+vec_map-0.8.1
+version_check-0.1.5
+winapi-0.2.8
+winapi-0.3.6
+winapi-build-0.1.1
+winapi-i686-pc-windows-gnu-0.4.0
+winapi-x86_64-pc-windows-gnu-0.4.0
+"
+
+inherit cargo
+
+DESCRIPTION="A modern ls with a lot of pretty colors and awesome icons"
+HOMEPAGE="https://github.com/Peltoche/lsd;
+SRC_URI="https://github.com/Peltoche/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
+   $(cargo_crate_uris ${CRATES})"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+BDEPEND=">=virtual/rust-1.31.0"
+
+QA_FLAGS_IGNORED="/usr/bin/lsd"
+
+src_install() {
+   cargo_src_install --path .
+   einstalldocs
+}



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

2019-03-15 Thread Thomas Deutschmann
commit: dba80b6e0f53fa64f237935abdb2795d1c60c3fd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Mar 15 18:38:06 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 15 18:38:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dba80b6e

www-client/firefox: bump to v66.0rc3

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

 www-client/firefox/Manifest| 106 ++---
 ...fox-66.0_rc2.ebuild => firefox-66.0_rc3.ebuild} |   0
 2 files changed, 53 insertions(+), 53 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 7cb8d3c0253..9303cf4 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -316,57 +316,57 @@ DIST firefox-66.0-gd.xpi 474058 BLAKE2B 
e72e4be004e15be64da0bf7ab670ade87b9edefd
 DIST firefox-66.0-gl.xpi 458733 BLAKE2B 
ac6e61afdcec42f3e0fdec7a23d0c57c5f3c9cc7f53617de20f66bb1a9076756af704edd692a721d684a0d4e7fc7390108c95c94072d2bca497c520f8003bc8e
 SHA512 
c76f3f6a01fe5f11cc40bffe55cdb85ed0371a97c650b98b97567fbbcbe177d26b2e193652b9fd17714830697834bbb2c84a3e875dfe4b3523df5177e7ff329b
 DIST firefox-66.0-gn.xpi 480658 BLAKE2B 
a9661245ad609cdd85688614db3a7310912251ee53299c1f378b46941f8aa6b2f6d9e81ebecd1543fd42f570b977598924b4e97e872a38d1301c248de85248fe
 SHA512 
f79a19e009089b8849f40b06a5565b69d687c14ce96e3a88ec1e3d0bc9897013d5c2125502fa7ce354a8d2069c8fdfee12beb259ab434efd48d5f51d54ee63ef
 DIST firefox-66.0-gu-IN.xpi 539861 BLAKE2B 
21ede70c838edc570462beb5efdc1cbca89ccb41011788af47c0bf31407cd3a121c11c6dc71b41ed9b165fd1e1b406f041a1cc25ccca951e09e12a6cb23b7771
 SHA512 
6fe04f8efb9140e1b2f86ec0c9dbb30cbd2369403ffaaada471f6e3f9eb75a0c60c9049d5809702176789ae126b4c2568a199046b4d38d0f1a061cb678d3c414
-DIST firefox-66.0-he.xpi 479205 BLAKE2B 
910fe2a4d8a6c41a027a39cd8b42e9dc897c9d1f12617ac3b71879989e82d0f723e1d0beb6b0a2a639499f0450816ed779364bed261dec948538a6a68fea9852
 SHA512 
0d3efc7f0383f9e108ea0e25f4af8ed6b458d0614591d8308bd7b5e9d8b7714b2edfd1a619ed31921376882b632032e2616536217cc1a2712442475a71005370
-DIST firefox-66.0-hi-IN.xpi 525648 BLAKE2B 
3008c46ef1502744f6f22f099f6de5bb471d657b4ebfc8487183e6cc41f93c628db3ce07d706d9a9459002620a23345f8c2a8aee69303687f06857287b6bdb83
 SHA512 
6d42a03babf0daa5034a058406043cead2d37206332255e912a035ea10da24b2794afc4a210b55193247941b83648db501f20386623b2fdfea99547d3dbda995
-DIST firefox-66.0-hr.xpi 463596 BLAKE2B 
6df43accf963348dd5c07d4460f3018b9757bd07df3b5de12d58eb2ff3b501b970da53c577b05f8f61b76caa7fc9e6b814a2ec39c8b2baf61e29f8a76a7a0e86
 SHA512 
a02dd45b13aa16aecaeb88fbd0ece5ccf12c7d6b0a81b0e459f42ceadf05b2907d00d7557016846353cee2ec6e74b721da41939c3946936fd3f00d89ddac49fc
-DIST firefox-66.0-hsb.xpi 486130 BLAKE2B 
9fe0822deac25ccba8c4566ea3ef74ca64ae9a66282eb53f53fa027e48a5fe47e0f1d5a009f96f5c0e87b95d84b40fa97604f88a9772e86eadaa8eb4edc00344
 SHA512 
bd885d573b3a91e74c560436818419228dd7b773dfe7c4dce542e2fa010557252576775401740a4b45a2137fd58edc932e82586dcf3b6fadf9b57a862da6d10d
-DIST firefox-66.0-hu.xpi 483475 BLAKE2B 
4292a303fe405dbc31f254615905764e973a8e366e6322e537b093b28d87bc1bd3d5f1ae4e86e9d242030c8a534d32660778630edfb45ad1e9c92c2fce0a6699
 SHA512 
fbcb6b62cf2242b8a0ab68f618b778e910ef23b5908707e6632819bf46c59d028b63f2e1f95060ddeafae8b4fd1709bba3e670adddf324ef0e540497e08b67dc
-DIST firefox-66.0-hy-AM.xpi 508615 BLAKE2B 
78e1c06a76cce2fa2a0a5bcbb78c457c56fd39432dba32f404402807ac3ff97c14d8020b5880d5925da990595ed9acc8d125270249e20bf071014f2f51defb97
 SHA512 
d9c4fcb1df6dc76b03dcedd6facf8471f588c9d16216e654b9040cda7697b34b667a4805e3e9ac56155f5a11ea22d2b4f041c9423f86f70d23ea44c61a7ee577
-DIST firefox-66.0-id.xpi 453841 BLAKE2B 
fbdc4eba2abf0c988728b14b4718f88372b8fabf5c4b88aadff2dc61f9ccc08bc2393476e7e09e741b43b612483170a1c67d845c4db981cd5709446c56dcff5b
 SHA512 
de8fd7c24b3d825b962ba5216c12aeeea8d6e7337a013ac20d33b7b061df47db7952de4a0169ab975fe1e5a46a915c85ebf7b01a748836f92416289b0dcce287
-DIST firefox-66.0-is.xpi 464959 BLAKE2B 
b25f806e5ee22c7c11a461eda250d09bc1eded6a06b9346bb2b9be636fc51794fe201bf6ceaac96050b9a9064e1dd899cfbed5bf0921d9bdf58f939887c5fcf0
 SHA512 
b3dcaca359f0b36f59f37c56e8c517e8aac57deb9fa0df1fba3f1bc8b6ca52f8e0b452d3de35991392df36d1bb0f4734c36cceaeb9727b48738d918ef6654b0e
-DIST firefox-66.0-it.xpi 352984 BLAKE2B 
c7836611b1301361b3e2b6bff9efd8b5dc0d68a8f5861b74943ddcb2e1276cb6fd19ea7e0024a199964cc9e6e999e69adcb809fae464f319db5b61d1038a7f48
 SHA512 
cc32ef770cb71c5482a92bded8172d673320a80783f778958e9d9b02abe69016a85e15893932bb78eb875b1b879947b7dd44d5ed80d79cb5d42f773447048438
-DIST firefox-66.0-ja.xpi 494157 BLAKE2B 
285801fd35f8c3a10b405d380f4ec03653d552080345c64d566caaeec23c96c785c8389f2a6d1eddccdfb2512997493b1d3e658db26a2bc2576d84505b4c0334
 SHA512 
e64bda2e6b0ed0037471dfcbc0398b29462597b7a62d06c05f10a307f4d46b8ca4ced43caa1ff859ddd0246b5347e08cbd752f52a2c91c263021e244a4e3b729
-DIST firefox-66.0-ka.xpi 505251 BLAKE2B 

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

2019-03-15 Thread Ben Kohler
commit: 40494b3229cf646ed2f45bd34b192d4e727b69b7
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Mar 15 17:30:54 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Mar 15 17:45:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40494b32

net-wireless/unifi: 5.10.20 stable, drop old

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

 net-wireless/unifi/Manifest |  3 --
 net-wireless/unifi/unifi-5.10.12.ebuild | 74 -
 net-wireless/unifi/unifi-5.10.16.ebuild | 74 -
 net-wireless/unifi/unifi-5.10.17.ebuild | 74 -
 net-wireless/unifi/unifi-5.10.20.ebuild |  4 +-
 5 files changed, 2 insertions(+), 227 deletions(-)

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index 6f698f493a7..9ffd6d64483 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -1,6 +1,3 @@
-DIST unifi-5.10.12.zip 91787840 BLAKE2B 
e024f1d782dce5d2c88598c092c86d5d5761282154b323497e027b04091400d2db09f6da81ca8d637a51840613e8fca98d1c2d8c5e6fede71a2cb0c790efd950
 SHA512 
ba4b5322137f7fec0990105d66efbd290ef33218db432824dc9ae6af736a59188eed77c074e680c248d260c39e7974956bbd2492c6af2be3465276a9cc77ba48
-DIST unifi-5.10.16.zip 91777321 BLAKE2B 
ac039b8e0d9835a0228805fb9a4935ae4e4d07360133bc564cda42046eae33042576710e4e282e81e18ce822156c0f870faf58ec5d20bdb7642947ee00345ad0
 SHA512 
b28b6988971467dbdb34c480a5c83ebd402a4f989c3e1ef33478886b802758e077809712e818b04167325d06465b05ea8718f0b18248d328fd8f31f3e43a1817
-DIST unifi-5.10.17.zip 91799643 BLAKE2B 
d24f3477df720c8f679df8c49a976f30ce070300a7d2fa3cd230a1b87b85d64bae3de89aa5a938ef9573291fefdec5f44bcf51fb64794df03e81a79ef904a39c
 SHA512 
ebc0ba24ff8542691c3bc228a2d9a16dc6f54fa570e72f6c8985942cf6d023e5e1b5a0fb0912dbda1a1f43709ba56dbfefeded69c0f2d92b772dfe250808502c
 DIST unifi-5.10.19.zip 91782631 BLAKE2B 
d77b93a5a12ce492873fa744bbb20c5265425b46ebeb0394ff2a0d0cc74d37f933e473f1ba284c687f2d38cb81d2a11b25ab982e6e01397c9282b387e4c3a150
 SHA512 
b94a82c1a2c151056d60b47a234b45cc82f20f9fa8e198ae630bea0f9a429daa6a3fcb05d31470b974a49d345b54826e57e4ebd4ec06c43436987ebff14c2bce
 DIST unifi-5.10.20.zip 91796706 BLAKE2B 
0b425d423a9ffde722549681ecf67b07e01f497c232ff4d760cbc5d61f43a94e753bc5c018739414d169a704fceb16f5844230434519b3645acd5ef42dcb7ce5
 SHA512 
e43141177d5ad017925bd2cb8315ae4308df96d7185b895b1fd0042bb80da1c04beb143b5265a0d72efc2515be4db0c6ca37cab4fea5a1ccac837b10c2d4b4f6
 DIST unifi-5.6.40.zip 63584069 BLAKE2B 
9c241c7ef335b6e4d9ce1d53d8bf6a9b2e6a0c5b91d60f321100e67cc6201f1dc060398dc7af1ee014c47df194f64ddf1eb56a6c7ce53691251b4fd2937c5603
 SHA512 
d2e154ec6bdf24cfcb0e5154512a91dc0e601a2bfe7fcdda4c22b329b304b50315a42485daee8495a5076136055c2cf59ebe42b083221683168199e437589e9a

diff --git a/net-wireless/unifi/unifi-5.10.12.ebuild 
b/net-wireless/unifi/unifi-5.10.12.ebuild
deleted file mode 100644
index 27baa577f0b..000
--- a/net-wireless/unifi/unifi-5.10.12.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# Used, when it's an unstable, beta or release candidate
-#RC_SUFFIX=""
-
-inherit systemd user
-
-DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
-HOMEPAGE="https://www.ubnt.com;
-SRC_URI="https://dl.ubnt.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> 
${P}.zip"
-
-KEYWORDS="amd64"
-LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 
LGPL-3 MIT ubiquiti"
-SLOT="0/5.10"
-IUSE="systemd"
-
-RDEPEND="dev-db/mongodb
-   virtual/jre:1.8"
-
-DEPEND="app-arch/unzip"
-
-RESTRICT="bindist mirror"
-
-S="${WORKDIR}/UniFi"
-
-DOCS=( "readme.txt" )
-
-QA_PREBUILT="usr/lib/unifi/lib/native/Linux/x86_64/*.so"
-
-pkg_setup() {
-   enewgroup unifi
-   enewuser unifi -1 -1 /var/lib/unifi unifi
-}
-
-src_prepare() {
-   # Remove unneeded files Linux, Mac and Windows
-   rm -r lib/native/Linux/{aarch64,armv7} lib/native/{Mac,Windows} || die
-   if ! use systemd; then
-   rm lib/native/Linux/x86_64/libubnt_sdnotify_jni.so || die
-   fi
-
-   default
-}
-
-src_install() {
-   # Install MongoDB wrapper script, to avoid problems with >= 3.6.0
-   # See 
https://community.ubnt.com/t5/UniFi-Routing-Switching/MongoDB-3-6/td-p/2195435
-   exeinto /usr/lib/unifi/bin
-   newexe "${FILESDIR}"/mongod-wrapper mongod
-
-   insinto /usr/lib/unifi
-   doins -r dl lib webapps
-
-   diropts -o unifi -g unifi
-   keepdir /var/lib/unifi/{conf,data,run,tmp,work} /var/log/unifi
-
-   for symlink in conf data run tmp work; do
-   dosym ../../../var/lib/unifi/${symlink} 
/usr/lib/unifi/${symlink}
-   done
-   dosym ../../../var/log/unifi /usr/lib/unifi/logs
-
-   newinitd "${FILESDIR}"/unifi.initd-r1 unifi
-   systemd_dounit "${FILESDIR}"/unifi.service

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

2019-03-15 Thread Ben Kohler
commit: c19aeadd620414255e78077f5ec63e3cd970bcb6
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Mar 15 17:45:01 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Mar 15 17:45:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c19aeadd

net-misc/remmina: drop old

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

 net-misc/remmina/Manifest|  3 --
 net-misc/remmina/remmina-1.2.31.2.ebuild | 86 ---
 net-misc/remmina/remmina-1.3.1.ebuild| 88 
 net-misc/remmina/remmina-1.3.2.ebuild| 88 
 4 files changed, 265 deletions(-)

diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest
index c97df39d559..8ca21e8ca40 100644
--- a/net-misc/remmina/Manifest
+++ b/net-misc/remmina/Manifest
@@ -1,7 +1,4 @@
-DIST Remmina-1.2.31.2.tar.gz 1247378 BLAKE2B 
923b131ea2b4cff57d952bcfc2cdac58ad849ce3220dc6e3084b3905f9fe1203443fe0bb2f8a3fa910e7f367299b1b8c1b2373e8b337da7c4ff99ced1951492b
 SHA512 
e66bd77e3b3e8374773e6029a727d814ada09b90a5620452e8ecce19e6f4327aa2e50b8956b292abce2e9329deec79370665a6a6aecbc2d33557381ce5b8db3b
 DIST Remmina-v1.2.31.3.tar.gz 1248295 BLAKE2B 
da748ceea5aa50702b060075c8e5c4aefe11ca1ebbc301b2951df76208da5998746631ef4c57f5692678e948839a8869a183b777f7046d416a55e5ac5b0d76d1
 SHA512 
f95c4dcebd833b590fbf0b418854bae66541743bc77cda4b0b97e1e49b158927fa859907619fd532b0660fc30eee80be472e02c38a2afe33e477c4a903a99e28
-DIST Remmina-v1.3.1.tar.gz 1341006 BLAKE2B 
a4938558e2b3595a62514789a6f748f0e526a20dae23f21c835b6c11a3f321fe564fbc77fa4ea7def97875ada169b73692861707d432b81c3ad51d5630633e67
 SHA512 
91146a75563f169b39f7aa57fbd846cef1965a0e7c11931acda4bc461407cf3644a1f363b1f46421e5a6ccd1d43d6a89cdb38420dd98fea5ddad1a52ae65d41e
-DIST Remmina-v1.3.2.tar.gz 1362006 BLAKE2B 
fa6c4f84b6987850944906fac97340c7b17b44b076dadc73143924e35916f8306f8b053e734d1a388e97821b1bcf9eb8109cf787a8d3f4e02f0885fa06a338e6
 SHA512 
076759acbcb5191b01dda777137eb239a38124d20141e85556b23e3380e5d0a39ff187a4928605ca089d53c6cadd268d0de735795db84672ffa55ea247196ea8
 DIST Remmina-v1.3.3.tar.gz 1362239 BLAKE2B 
8ae5b72293ffe2f627a46aa9354256d84d318819b0d5c236f4d5628764eaa9e3a3d07f3130ae04ee271cbc6ac207ccfaf495533b3fa59ee184d3da19c8738bc8
 SHA512 
72d0303f922619c3842880365bb68b967eb2134fef7187d0fd83aeec2b50fb499573849f853d509216608eefc02db7ced91cfc65f89154b51d0657e42bd0d637
 DIST Remmina-v1.3.4.tar.gz 1365473 BLAKE2B 
f71a9c0a0fa9eafa547abf192972da39f0cfe1ca3745a87783d6a9ec5bab0674d93df8815b589b25659990bb345748f8f464f401c7efb934e8e71b207b0dab67
 SHA512 
212ebc6e08c694861522a05feb51e4efa012ef3361debf079384c07e4354370f6cf7d2880ff442bbe03782421bac7f33343d8049207073d90925d1c894d30e7a
 DIST remmina-1.2.0_rc24.tar.gz 1052140 BLAKE2B 
57b3d2ed8a765f98f1ffd3c79df076d07e00329bf95dfddb9094d8bc62838b0f6742b404b4deef0a037bd88259751799e1842fb97313337e11b8f0faed8ad302
 SHA512 
aab421c580e434ca673be063f3662f1d9128cc83aaee6f9bc6acf6996af0379af6fb99cc63273941c40c6b989653b972de6c43b575ca06bf56ec7c266590c17e

diff --git a/net-misc/remmina/remmina-1.2.31.2.ebuild 
b/net-misc/remmina/remmina-1.2.31.2.ebuild
deleted file mode 100644
index 9c7e1d7fba7..000
--- a/net-misc/remmina/remmina-1.2.31.2.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils eutils gnome2-utils xdg-utils
-
-DESCRIPTION="A GTK+ RDP, SPICE, VNC, XDMCP and SSH client"
-HOMEPAGE="https://remmina.org/;
-SRC_URI="https://github.com/FreeRDP/Remmina/archive/v${PV}.tar.gz -> 
${P^}.tar.gz"
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="ayatana crypt examples gnome-keyring libressl nls spice ssh rdp 
telepathy vnc zeroconf"
-
-CDEPEND="
-   dev-libs/glib:2
-   dev-libs/json-glib
-   net-libs/libsoup
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libxkbfile
-   ayatana? ( dev-libs/libappindicator:3 )
-   crypt? ( dev-libs/libgcrypt:0= )
-   rdp? ( >=net-misc/freerdp-2.0.0_rc2 )
-   gnome-keyring? ( app-crypt/libsecret )
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   spice? ( net-misc/spice-gtk[gtk3] )
-   ssh? ( net-libs/libssh[sftp]
-   x11-libs/vte:2.91 )
-   telepathy? ( net-libs/telepathy-glib )
-   vnc? ( net-libs/libvncserver )
-   zeroconf? ( net-dns/avahi[gtk3] )
-"
-DEPEND="${CDEPEND}
-   dev-util/intltool
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-"
-RDEPEND="${CDEPEND}
-   virtual/freedesktop-icon-theme
-"
-
-DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md )
-
-S="${WORKDIR}/${P^}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DWITH_APPINDICATOR=$(usex ayatana)
-   -DWITH_GCRYPT=$(usex crypt)
-   

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

2019-03-15 Thread Ben Kohler
commit: 4e5d120885931fef9b44bf23a5a355bcc44dfcf2
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Mar 15 17:35:25 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Mar 15 17:45:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e5d1208

net-misc/remmina: bump to 1.3.4

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

 net-misc/remmina/Manifest |  1 +
 net-misc/remmina/remmina-1.3.4.ebuild | 88 +++
 2 files changed, 89 insertions(+)

diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest
index fb70685a1d4..c97df39d559 100644
--- a/net-misc/remmina/Manifest
+++ b/net-misc/remmina/Manifest
@@ -3,4 +3,5 @@ DIST Remmina-v1.2.31.3.tar.gz 1248295 BLAKE2B 
da748ceea5aa50702b060075c8e5c4aefe
 DIST Remmina-v1.3.1.tar.gz 1341006 BLAKE2B 
a4938558e2b3595a62514789a6f748f0e526a20dae23f21c835b6c11a3f321fe564fbc77fa4ea7def97875ada169b73692861707d432b81c3ad51d5630633e67
 SHA512 
91146a75563f169b39f7aa57fbd846cef1965a0e7c11931acda4bc461407cf3644a1f363b1f46421e5a6ccd1d43d6a89cdb38420dd98fea5ddad1a52ae65d41e
 DIST Remmina-v1.3.2.tar.gz 1362006 BLAKE2B 
fa6c4f84b6987850944906fac97340c7b17b44b076dadc73143924e35916f8306f8b053e734d1a388e97821b1bcf9eb8109cf787a8d3f4e02f0885fa06a338e6
 SHA512 
076759acbcb5191b01dda777137eb239a38124d20141e85556b23e3380e5d0a39ff187a4928605ca089d53c6cadd268d0de735795db84672ffa55ea247196ea8
 DIST Remmina-v1.3.3.tar.gz 1362239 BLAKE2B 
8ae5b72293ffe2f627a46aa9354256d84d318819b0d5c236f4d5628764eaa9e3a3d07f3130ae04ee271cbc6ac207ccfaf495533b3fa59ee184d3da19c8738bc8
 SHA512 
72d0303f922619c3842880365bb68b967eb2134fef7187d0fd83aeec2b50fb499573849f853d509216608eefc02db7ced91cfc65f89154b51d0657e42bd0d637
+DIST Remmina-v1.3.4.tar.gz 1365473 BLAKE2B 
f71a9c0a0fa9eafa547abf192972da39f0cfe1ca3745a87783d6a9ec5bab0674d93df8815b589b25659990bb345748f8f464f401c7efb934e8e71b207b0dab67
 SHA512 
212ebc6e08c694861522a05feb51e4efa012ef3361debf079384c07e4354370f6cf7d2880ff442bbe03782421bac7f33343d8049207073d90925d1c894d30e7a
 DIST remmina-1.2.0_rc24.tar.gz 1052140 BLAKE2B 
57b3d2ed8a765f98f1ffd3c79df076d07e00329bf95dfddb9094d8bc62838b0f6742b404b4deef0a037bd88259751799e1842fb97313337e11b8f0faed8ad302
 SHA512 
aab421c580e434ca673be063f3662f1d9128cc83aaee6f9bc6acf6996af0379af6fb99cc63273941c40c6b989653b972de6c43b575ca06bf56ec7c266590c17e

diff --git a/net-misc/remmina/remmina-1.3.4.ebuild 
b/net-misc/remmina/remmina-1.3.4.ebuild
new file mode 100644
index 000..834591991fa
--- /dev/null
+++ b/net-misc/remmina/remmina-1.3.4.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils eutils gnome2-utils xdg-utils
+
+MY_P="${PN^}-v${PV}"
+
+DESCRIPTION="A GTK+ RDP, SPICE, VNC, XDMCP and SSH client"
+HOMEPAGE="https://remmina.org/;
+SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="ayatana crypt examples gnome-keyring libressl nls spice ssh rdp 
telepathy vnc zeroconf"
+
+CDEPEND="
+   dev-libs/glib:2
+   dev-libs/json-glib
+   net-libs/libsoup
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libxkbfile
+   ayatana? ( dev-libs/libappindicator:3 )
+   crypt? ( dev-libs/libgcrypt:0= )
+   rdp? ( >=net-misc/freerdp-2.0.0_rc4 )
+   gnome-keyring? ( app-crypt/libsecret )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   spice? ( net-misc/spice-gtk[gtk3] )
+   ssh? ( net-libs/libssh:0=[sftp]
+   x11-libs/vte:2.91 )
+   telepathy? ( net-libs/telepathy-glib )
+   vnc? ( net-libs/libvncserver[jpeg] )
+   zeroconf? ( net-dns/avahi[gtk3] )
+"
+DEPEND="${CDEPEND}
+   dev-util/intltool
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+"
+RDEPEND="${CDEPEND}
+   virtual/freedesktop-icon-theme
+"
+
+DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md )
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   local mycmakeargs=(
+   -DWITH_APPINDICATOR=$(usex ayatana)
+   -DWITH_GCRYPT=$(usex crypt)
+   -DWITH_EXAMPLES=$(usex examples)
+   -DWITH_LIBSECRET=$(usex gnome-keyring)
+   -DWITH_GETTEXT=$(usex nls)
+   -DWITH_TRANSLATIONS=$(usex nls)
+   -DWITH_FREERDP=$(usex rdp)
+   -DWITH_SPICE=$(usex spice)
+   -DWITH_LIBSSH=$(usex ssh)
+   -DWITH_VTE=$(usex ssh)
+   -DWITH_TELEPATHY=$(usex telepathy)
+   -DWITH_LIBVNCSERVER=$(usex vnc)
+   -DWITH_AVAHI=$(usex zeroconf)
+   )
+   cmake-utils_src_configure
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   xdg_mimeinfo_database_update
+   xdg_desktop_database_update
+
+   elog "To get additional 

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

2019-03-15 Thread Lars Wendler
commit: 9860bad5cb0d2184ec324a42a630abd926669a24
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Mar 15 17:13:54 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar 15 17:14:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9860bad5

media-libs/freetype: Bump to version 2.10.0

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

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

diff --git a/media-libs/freetype/Manifest b/media-libs/freetype/Manifest
index a60cc3d73ec..0ef428f3548 100644
--- a/media-libs/freetype/Manifest
+++ b/media-libs/freetype/Manifest
@@ -1,3 +1,6 @@
+DIST freetype-2.10.0.tar.bz2 2743740 BLAKE2B 
def3e6393a4a26cd063df1cdfa676677547a9f68a95b8f246c79a7ff88d3da842b214770cd60e359d42692d6c002ba4effab03905034aa67a841af4c5d7a7157
 SHA512 
dfad66f419ea9577f09932e0730c0c887bdcbdbc8152fa7477a0c39d69a5b68476761deed6864ddcc5cf18d100a7a3f728049768e24afcb04b1a74b25b6acf7e
 DIST freetype-2.9.1.tar.bz2 1926385 BLAKE2B 
f165d638e0f49749a2640aabba96aca20441c76028cc18bb2482fd620a29dd368bc55ea020c1e74fa6effe9fed3c59a53c7fdf2dd6021f445032b7007201948e
 SHA512 
856766e1f3f4c7dc8afb2b5ee991138c8b642c6a6e5e007cd2bc04ae58bde827f082557cf41bf541d97e8485f7fd064d10390d1ee597f19d1daed6c152e27708
+DIST freetype-doc-2.10.0.tar.bz2 2130601 BLAKE2B 
7814b8ad53343dc72f0b11b29224f9755686e504d099c53b76faefd9b38d207222c092ea549b25c7842956f13067a09cce460d33cfff1aace537f0044df627ac
 SHA512 
e0902983030b7b67443ca88f29a8bb72662de706ddff81309c66b6738b26c5d11dbd00eb75795851ddcd9f93ce05981623884afad096c0defd08bd544f5266d6
 DIST freetype-doc-2.9.1.tar.bz2 2130292 BLAKE2B 
667032fa447fbc28c0f753df3ade7a07a4f8d4d26cdd00fed2fa0e8098e9d6a083572608b7d06446ea91baa932e3c6d18beb1f86f6b549a8cd2c07a2df567da0
 SHA512 
1668f02f67e6e047df04e5e2fccb564cd9af780ec9b3c4878109868302a83eaec7b627390ff82c3e875122400e6f20fc690936a1e4964dfa65143e5309fa22d4
+DIST ft2demos-2.10.0.tar.bz2 237599 BLAKE2B 
722e586f412059b8b29a26c832037a860dc1b26afed85b8b0aa5fc71245293f45d19b379c54993f64ba4b8de329799834656d00fc4b6f6610ddd0b08cfd05449
 SHA512 
d48cbabd5cc673e0af2e0c4056dba95cee8e08092f881958c6908ea2d4da7104ca81b701d47a17640ac36cbdfd8aa274cc26353bb43f026f55c00d565f2ad641
 DIST ft2demos-2.9.1.tar.bz2 233462 BLAKE2B 
c689942b222b2c600b5ec3963791621ae87acefb9b01caa5dc35af52525d03e3a1094e48c0789d5eaabbce787bddd7c3055e12454e54ea3c7fae92bca47614de
 SHA512 
38bee59184b20c2eb983deaa5c1f241e31c1b4793e47dc06b1b419601489cfece3b11fde4cf4fb6c5af12254ad0c1ce9a1547885c208e8e715655e9c48f22a46

diff --git a/media-libs/freetype/freetype-2.10.0.ebuild 
b/media-libs/freetype/freetype-2.10.0.ebuild
new file mode 100644
index 000..2563974f72b
--- /dev/null
+++ b/media-libs/freetype/freetype-2.10.0.ebuild
@@ -0,0 +1,240 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic libtool multilib-build multilib-minimal toolchain-funcs
+
+DESCRIPTION="A high-quality and portable font engine"
+HOMEPAGE="https://www.freetype.org/;
+IUSE="X +adobe-cff bindist bzip2 +cleartype_hinting debug fontforge harfbuzz 
infinality png static-libs utils"
+
+if [[ "${PV}" !=  ]] ; then
+   SRC_URI="mirror://sourceforge/freetype/${P/_/}.tar.bz2
+   mirror://nongnu/freetype/${P/_/}.tar.bz2
+   utils?  ( mirror://sourceforge/freetype/ft2demos-${PV}.tar.bz2
+   mirror://nongnu/freetype/ft2demos-${PV}.tar.bz2 )
+   doc?( mirror://sourceforge/freetype/${PN}-doc-${PV}.tar.bz2
+   mirror://nongnu/freetype/${PN}-doc-${PV}.tar.bz2 )"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris ~x86-winnt"
+   IUSE+=" doc"
+else
+   inherit autotools git-r3
+fi
+
+LICENSE="|| ( FTL GPL-2+ )"
+SLOT="2"
+RESTRICT="!bindist? ( bindist )" # bug 541408
+
+RDEPEND="
+   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
+   bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] )
+   harfbuzz? ( >=media-libs/harfbuzz-1.3.0[truetype,${MULTILIB_USEDEP}] )
+   png? ( >=media-libs/libpng-1.2.51:0=[${MULTILIB_USEDEP}] )
+   utils? (
+   X? (
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXau-1.0.7-r1[${MULTILIB_USEDEP}]
+   >=x11-libs/libXdmcp-1.1.1-r1[${MULTILIB_USEDEP}]
+   )
+   )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+"
+PDEPEND="infinality? ( media-libs/fontconfig-infinality )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.4.11-sizeof-types.patch # 459966
+)
+
+_egit_repo_handler() {
+  

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

2019-03-15 Thread Lars Wendler
commit: 8908efb62371e75c7e5d82450d22913d624addc2
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Mar 15 17:11:56 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Mar 15 17:14:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8908efb6

media-libs/freetype: Bumped live ebuild to EAPI-7

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

 media-libs/freetype/freetype-.ebuild | 25 ++---
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/media-libs/freetype/freetype-.ebuild 
b/media-libs/freetype/freetype-.ebuild
index e9f895c9ce0..2563974f72b 100644
--- a/media-libs/freetype/freetype-.ebuild
+++ b/media-libs/freetype/freetype-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit flag-o-matic libtool multilib multilib-build multilib-minimal 
toolchain-funcs
+inherit flag-o-matic libtool multilib-build multilib-minimal toolchain-funcs
 
 DESCRIPTION="A high-quality and portable font engine"
 HOMEPAGE="https://www.freetype.org/;
@@ -26,7 +26,8 @@ LICENSE="|| ( FTL GPL-2+ )"
 SLOT="2"
 RESTRICT="!bindist? ( bindist )" # bug 541408
 
-RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
+RDEPEND="
+   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] )
harfbuzz? ( >=media-libs/harfbuzz-1.3.0[truetype,${MULTILIB_USEDEP}] )
png? ( >=media-libs/libpng-1.2.51:0=[${MULTILIB_USEDEP}] )
@@ -37,8 +38,10 @@ RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
>=x11-libs/libXdmcp-1.1.1-r1[${MULTILIB_USEDEP}]
)
)"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+"
 PDEPEND="infinality? ( media-libs/fontconfig-infinality )"
 
 PATCHES=(
@@ -71,11 +74,11 @@ _egit_repo_handler() {
 }
 
 src_fetch() {
-   _egit_repo_handler fetch
+   _egit_repo_handler ${EBUILD_PHASE}
 }
 
 src_unpack() {
-   _egit_repo_handler unpack
+   _egit_repo_handler ${EBUILD_PHASE}
 }
 
 src_prepare() {
@@ -207,7 +210,7 @@ multilib_src_install() {
local ft2demo
for ft2demo in ../ft2demos-${PV}/bin/*; do
./libtool --mode=install $(type -P install) -m 755 
"$ft2demo" \
-   "${ED%/}"/usr/bin || die
+   "${ED}"/usr/bin || die
done
fi
 }
@@ -219,8 +222,8 @@ multilib_src_install_all() {
local header
find src/truetype include/freetype/internal -name '*.h' | \
while read header; do
-   mkdir -p 
"${ED%/}/usr/include/freetype2/internal4fontforge/$(dirname ${header})" || die
-   cp ${header} 
"${ED%/}/usr/include/freetype2/internal4fontforge/$(dirname ${header})" || die
+   mkdir -p 
"${ED}/usr/include/freetype2/internal4fontforge/$(dirname ${header})" || die
+   cp ${header} 
"${ED}/usr/include/freetype2/internal4fontforge/$(dirname ${header})" || die
done
fi
 



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

2019-03-15 Thread Patrick Lauer
commit: 6b7df7227075027f79d43ad3254d78ce47742276
Author: Patrick Lauer  gentoo  org>
AuthorDate: Fri Mar 15 17:06:23 2019 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Fri Mar 15 17:06:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b7df722

dev-python/awscli: Restrict botocore dep

Package-Manager: Portage-2.3.62, Repoman-2.3.12
X-SoB-Autogenerated: yes
Signed-off-by: Patrick Lauer  gentoo.org>

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

diff --git a/dev-python/awscli/awscli-1.16.104.ebuild 
b/dev-python/awscli/awscli-1.16.104.ebuild
index bf41cae512b..fe20ff6e5f6 100644
--- a/dev-python/awscli/awscli-1.16.104.ebuild
+++ b/dev-python/awscli/awscli-1.16.104.ebuild
@@ -21,7 +21,7 @@ IUSE="test"
 RESTRICT="test"
 
 RDEPEND="
-   >=dev-python/botocore-1.12[${PYTHON_USEDEP}]
+   >=dev-python/botocore-1.12.81[${PYTHON_USEDEP}]


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

2019-03-15 Thread Michał Górny
commit: ff052fbe8bc2fa3c2b103c67de2cffee295d623b
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 15 16:48:16 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 15 16:48:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff052fbe

package.mask: Last rite dev-util/igprof

Bug: https://bugs.gentoo.org/638500
Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 5e381967aae..40b98ff2d19 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,13 @@
 
 #--- END OF EXAMPLES ---
 
+# Michał Górny  (15 Mar 2019)
+# Package added in 2014 and not updated since.  The current Gentoo
+# version used to violate multilib-strict (#627944), now it does not
+# build at all.
+# Removal in 30 days.  Bug #638500.
+dev-util/igprof
+
 # Michał Górny  (15 Mar 2019)
 # The current release is from 2005, upstream is gone.  Last patch
 # added in 2010, since then the package is completely unmaintained.



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

2019-03-15 Thread Michał Górny
commit: 6c607e139f5a0e0804d9c1455b8ec9a7e3b987fb
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 15 16:40:55 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 15 16:40:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c607e13

package.mask: Last rite sys-boot/quik

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 00b39b1ba24..5e381967aae 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,13 @@
 
 #--- END OF EXAMPLES ---
 
+# Michał Górny  (15 Mar 2019)
+# The current release is from 2005, upstream is gone.  Last patch
+# added in 2010, since then the package is completely unmaintained.
+# Very bad ebuild quality, blocking strictening of Portage behavior.
+# Removal in 30 days.  Bug #587306.
+sys-boot/quik
+
 # Michał Górny  (15 Mar 2019)
 # Upstream website disappeared, and along with it remote index needed
 # for the program to work.  No maintainer; package last touched in 2012.



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

2019-03-15 Thread Michał Górny
commit: cec23be8f4c2e70dc042b44c5c6316777fb4ce95
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 15 16:29:18 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 15 16:29:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cec23be8

package.mask: Last rite app-text/rfcutil

Bug: https://bugs.gentoo.org/673600
Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 87720635f3f..00b39b1ba24 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Michał Górny  (15 Mar 2019)
+# Upstream website disappeared, and along with it remote index needed
+# for the program to work.  No maintainer; package last touched in 2012.
+# Removal in 30 days.  Bug #673600.
+app-text/rfcutil
+
 # Michał Górny  (15 Mar 2019)
 # Unmaintained in Gentoo, obsoleted upstream.  Tests fail (#632706).
 # Upstream suggests switching to Kubernetes.



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/, dev-lisp/sbcl/files/

2019-03-15 Thread Andrey Grozin
commit: 3615ca8fe7b01d94562525f0f798b59531f40c42
Author: Andrey Grozin  gentoo  org>
AuthorDate: Fri Mar 15 15:59:30 2019 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Fri Mar 15 15:59:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3615ca8f

dev-lisp/sbcl: cleaning old versions

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

 dev-lisp/sbcl/Manifest |  13 -
 .../sbcl/files/sbcl-1.3.19-bsd-sockets-test.patch  | 363 -
 dev-lisp/sbcl/sbcl-1.3.21.ebuild   | 237 --
 dev-lisp/sbcl/sbcl-1.4.10.ebuild   | 246 --
 dev-lisp/sbcl/sbcl-1.4.11.ebuild   | 246 --
 dev-lisp/sbcl/sbcl-1.4.12.ebuild   | 246 --
 dev-lisp/sbcl/sbcl-1.4.13.ebuild   | 246 --
 dev-lisp/sbcl/sbcl-1.4.7.ebuild| 246 --
 dev-lisp/sbcl/sbcl-1.4.8.ebuild| 246 --
 9 files changed, 2089 deletions(-)

diff --git a/dev-lisp/sbcl/Manifest b/dev-lisp/sbcl/Manifest
index 4d0688ddf08..ad1f9145451 100644
--- a/dev-lisp/sbcl/Manifest
+++ b/dev-lisp/sbcl/Manifest
@@ -11,25 +11,12 @@ DIST sbcl-1.2.7-x86-solaris-binary.tar.bz2 10351529 BLAKE2B 
9b7324c8177856c60242
 DIST sbcl-1.3.11-source.tar.bz2 5790557 BLAKE2B 
d6b493d880ab2481f18381475165a3eed585fa46e626eb1e762cced29a6a7315be638df6f44ffdc694d8fb55509f912267a7dbe8892b6672eb56e839f55908ff
 SHA512 
07cce0b33f1d41bc208827d228ae356b56165bb55fab72c48973a15a63e2e680aafc16db67d36cc4952f71101faaacafd9660276cd67673314f1699d6a91af82
 DIST sbcl-1.3.11-x86-64-linux-binary.tar.bz2 9248214 BLAKE2B 
f1f6ebbec168a47d7405c15c63a70f10afad2d271d17dfa461f94bd8b1a1c21506a3a9c1d7ffe2501cc70419406e0d73b53a34ff9ff003e4791170101b7b1293
 SHA512 
ffb443f9e3ede2f9dbdc1bf28554bd59ef1fd5ad855465ee10f9835221fde20211188e881be854b4760870b122dfc6c5ad5c8cad1bea613ffb3b6a6f67a36056
 DIST sbcl-1.3.12-armhf-linux-binary.tar.bz2 9193847 BLAKE2B 
27106c0144ee99f534cd0a59cfb331ef8f39dbefdc76e294a8671523b1c05f42353d31b8e74600dd01f85fb5156d39216a877d77aba57a061427ea1dc28a492e
 SHA512 
5bdb4e2b584933e9ee9aaa2ba68328f219f072af802782ee5dedf83baa5c679cd5a1ccbf3458678810ccb8679ffd392d4fba108e86d537e10554c1860bfd4de5
-DIST sbcl-1.3.16-arm64-linux-binary.tar.bz2 11228304 BLAKE2B 
7825a53a86fdca32a2f99ff9ec9337b041c468831815d59f173a9f62e839e7b3f9f7a8d4e7d0d7586d126ac71fef332c193211e828528715036681776f3c59d6
 SHA512 
919835547d7613f64a2470157401e83c14584049602f21566a324af9fcbdfa838f5f2a7c5c6e28f3c3b5ccdec640024ce9c12b607a25741ad4c4d6e9813af3b8
-DIST sbcl-1.3.21-source.tar.bz2 5901141 BLAKE2B 
6c8c678a964595fdc74121e62ce46721c37dc326591a0401fa162e8abd2cd35f4ce4c58d426607239077669609e55277c0d88f3ab26a7fad4bfcd9c5463439d7
 SHA512 
845f4977b46236b9e018c6c7e5cf5628aed6b75b0ec942cd0c54fb91b6dc7d46369e346cd3c3dbb3f4084e06ef81a168c5f5fec72c4ca649504aeaef4b71c1e5
-DIST sbcl-1.3.21-x86-64-linux-binary.tar.bz2 10633302 BLAKE2B 
bb427994983d3ba5dc079dfa50188ed7339dee8a1e7ffb571c51b0c727b9d03ecef31f287837a6f3fc1f2dc0bbd4d92b4d4d078fb41e559a540ed6f411a74370
 SHA512 
a0ce82d35874344e72dd013df835000eb07656f3fcdb583e577f9d6ab37d7f81ab0c8c20e2f809d9d36c4139274fe722bb1e8a6ceb3f47d1f62bc3fc46c5cade
 DIST sbcl-1.3.9-armhf-linux-binary.tar.bz2 9161130 BLAKE2B 
0dbfe39803d6e3955124fa1a619da7b6d4ec9e7d6eb78e868508c61bf478a980cb15ba427ef0b38d0f051ce38b881020534c0d37bfbcd81a8d763654283669ec
 SHA512 
309e2ac7ef9ac95bf751432cf243af0de022c5b21054df2bf4e99da4ff087218af72b0ab3be69214eba3df1b6bbe707cc28840508e960c5d2ed2af0e86de3fdd
-DIST sbcl-1.4.10-source.tar.bz2 6161728 BLAKE2B 
192f008ec2f488f3f28375e56f5c90e3bdd655522db5f6cbd90a9e0dcb8b948a864bfcf818c7b3becd7b08162842f49cef0695a4ffdc7d7767c3cdffbfbf1279
 SHA512 
647e4cb61c1f9df6286c6d58c0f71d949aa1e359970ce7134202f00d319961fc0961d597bbdd48f7ebee5c0b8e16e5bddef772bc03b5bbaa19d508b283ef4990
 DIST sbcl-1.4.11-armhf-linux-binary.tar.bz2 9767589 BLAKE2B 
2949338bc19973e0ca38f435caaa4c991a6c86d70dc092a4f1b6ec3eefa47af76f2a0c3fd8a4f8004127f4b8b3666a5cf4260b6ab56802308880067e4eaf8568
 SHA512 
297edddc36e9b9de080f9e25faa323e23877af234104b4b7e0fe2b74f0dd117d9cf0caa87b79718a8b071bcb5e97c8118f1d11af0e4aba2a961beb40c4dc99cb
-DIST sbcl-1.4.11-source.tar.bz2 6168945 BLAKE2B 
bff67a41265c06d38b62ee6ab64b750af86a26ff8945dc6ad910ea6e2e2359652cfaabca4710e0a2e967af35e883d4095bbc89721f2e0cafefa1af475ded4a20
 SHA512 
4a86a3fd355bc77616941af5dadff72b56cc212babfebff1f21db7546f9aa49c75b4ef3302712239eef957ceaba571cd41bec664824d6d996966d6ad8a7b274b
-DIST sbcl-1.4.11-x86-64-linux-binary.tar.bz2 10263675 BLAKE2B 
bb8f1d15ebdca6f980e9da5073884115f6ee70fe0837b0718d72b9f64f5c5706c1c56cae6b232d7cf48a858a0d00237cd6df9c4721b746a1902f603672f3a5f4
 SHA512 
8fc7bd9cc5742eb60e649069ce575f5dad9f0285388a920432c1b4662f24e38de1b45ae9128ba33b5f5ee585d4ce737e0178295d37a38c8185be661599bc65bb
-DIST sbcl-1.4.12-source.tar.bz2 6166453 BLAKE2B 

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

2019-03-15 Thread Andrey Grozin
commit: ba5edca4a434ed2051e4e0cf3ccf62e148649d41
Author: Andrey Grozin  gentoo  org>
AuthorDate: Fri Mar 15 15:38:48 2019 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Fri Mar 15 15:38:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba5edca4

sci-mathematics/maxima: clean 5.41

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

 sci-mathematics/maxima/Manifest|   1 -
 sci-mathematics/maxima/maxima-5.41.0-r1.ebuild | 210 
 sci-mathematics/maxima/maxima-5.41.0-r2.ebuild | 212 -
 3 files changed, 423 deletions(-)

diff --git a/sci-mathematics/maxima/Manifest b/sci-mathematics/maxima/Manifest
index 1d01cae2071..a0c2fc48ac1 100644
--- a/sci-mathematics/maxima/Manifest
+++ b/sci-mathematics/maxima/Manifest
@@ -1,4 +1,3 @@
 DIST maxima-5.38.1.tar.gz 38641257 BLAKE2B 
0244b5dbdd337e64d4f7c3e7f6b946463b0246a9fd0660588798f7891fd1599cf400369fe0d1ce3433d01ce2e4b8bc86ad405d3f8368b429cd028362ec66a1b4
 SHA512 
abca10984dbb22a48bae481b2e803cb5bee6776e974b4bb9271773aa035fb5e49f34b2458aabca01f0a681a07179e57c012273be6f8d53c615b3309b1034abf9
-DIST maxima-5.41.0.tar.gz 41540226 BLAKE2B 
ff726044c9026bc58d04832fa6382146ed7e7d61d801fa7131b1e7e2ed386b99e238e039481697f9aa24cea59ffd0f6811675cd28818c9fe53f023f965f9d149
 SHA512 
1b93ae2db055ba7fb4a95924a896667f0cfa1c675c603c104181662aeb32b10b006158526b2f3ad93a59688a23eacdc82e870bb8ffb182a89e1e51de013ec209
 DIST maxima-5.42.1.tar.gz 41865510 BLAKE2B 
d3b8a50594dc0cef0c354c42be1aee96df77a4e222dbe457edeb47d7fe77a8fe376b10ce8da9e4ff6c447242e9c53a32286d09a64d8600112f6feda92f1fb58d
 SHA512 
79c5e70119b0384d9dd8aa47c7e96a0ccb7e6367526b8a14d21f00137a1c2f0c8b7990bb7231d7c90ffa0090f67c1fa30a418d013d9c5982030ae68de9717f48
 DIST maxima-5.42.2.tar.gz 41840181 BLAKE2B 
bca8a94366f1fe2f508436fdef8de80107b19c9b267a4b72dc6f56870078d35b3feb7dbdda384589b38c5351d6eeede1b9738a5ec2152063de2afacd1ced48c4
 SHA512 
5033b02272121f6aacff5ededf90eaad5e644a06d0c62aafd745401c08429da979ecd8274f7aa12596a0e32ddb614659af14e4273f59d372fe1ecbec081e7829

diff --git a/sci-mathematics/maxima/maxima-5.41.0-r1.ebuild 
b/sci-mathematics/maxima/maxima-5.41.0-r1.ebuild
deleted file mode 100644
index c9917d44ca0..000
--- a/sci-mathematics/maxima/maxima-5.41.0-r1.ebuild
+++ /dev/null
@@ -1,210 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools elisp-common eutils xdg
-
-DESCRIPTION="Free computer algebra environment based on Macsyma"
-HOMEPAGE="http://maxima.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2 GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-
-# Supported lisps
-LISPS=( sbcl cmucl gcl ecls clozurecl clisp )
-#  supports readline: . - no, y - yes
-SUPP_RL=(   .. y   .. y )
-# . - just --enable-,  - --enable-
-CONF_FLAG=( .. .   ecl  ccl   . )
-# patch file version; . - no patch
-PATCH_V=(   21 .   22 1 )
-
-IUSE="emacs tk nls unicode X ${LISPS[*]}"
-
-# Languages
-LANGS="de es pt pt_BR"
-for lang in ${LANGS}; do
-   IUSE="${IUSE} l10n_${lang/_/-}"
-done
-
-# texlive-latexrecommended needed by imaxima for breqn.sty
-RDEPEND="!app-emacs/imaxima
-   X? ( x11-misc/xdg-utils
-sci-visualization/gnuplot[gd]
-tk? ( dev-lang/tk:0 ) )
-   emacs? ( virtual/emacs
-   virtual/latex-base
-   app-emacs/auctex
-   app-text/ghostscript-gpl
-   dev-texlive/texlive-latexrecommended )"
-
-# generating lisp dependencies
-depends() {
-   local LISP DEP
-   LISP=${LISPS[$1]}
-   DEP="dev-lisp/${LISP}:="
-   if [ "${SUPP_RL[$1]}" = "." ]; then
-   DEP="${DEP} app-misc/rlwrap"
-   fi
-   echo ${DEP}
-}
-
-n=${#LISPS[*]}
-for ((n--; n >= 0; n--)); do
-   LISP=${LISPS[${n}]}
-   RDEPEND="${RDEPEND} ${LISP}? ( $(depends ${n}) )"
-   DEF_DEP="${DEF_DEP} !${LISP}? ( "
-done
-
-# default lisp
-DEF_LISP=0 # sbcl
-ARM_LISP=2 # gcl
-DEF_DEP="${DEF_DEP} arm? ( `depends ${ARM_LISP}` ) !arm? ( `depends 
${DEF_LISP}` )"
-
-n=${#LISPS[*]}
-for ((n--; n >= 0; n--)); do
-   DEF_DEP="${DEF_DEP} )"
-done
-
-unset LISP
-
-RDEPEND="${RDEPEND}
-   ${DEF_DEP}"
-
-DEPEND="${RDEPEND}
-   sys-apps/texinfo"
-
-TEXMF="${EPREFIX}"/usr/share/texmf-site
-
-pkg_setup() {
-   local n=${#LISPS[*]}
-
-   for ((n--; n >= 0; n--)); do
-   use ${LISPS[${n}]} && NLISPS="${NLISPS} ${n}"
-   done
-
-   if [ -z "${NLISPS}" ]; then
-   use arm && DEF_LISP=${ARM_LISP}
-   ewarn "No lisp specified in USE flags, choosing 
${LISPS[${DEF_LISP}]} as default"
-   NLISPS=${DEF_LISP}
-   fi
-}
-
-src_prepare() {
-   local 

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

2019-03-15 Thread Andrey Grozin
commit: 27371f70babe93ea9af76729fe44c21d738430c2
Author: Andrey Grozin  gentoo  org>
AuthorDate: Fri Mar 15 15:35:17 2019 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Fri Mar 15 15:35:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27371f70

sci-mathematics/wxmaxima: clean 19.02.2_p1

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

 sci-mathematics/wxmaxima/Manifest  |  1 -
 .../wxmaxima/wxmaxima-19.02.2_p1.ebuild| 57 --
 2 files changed, 58 deletions(-)

diff --git a/sci-mathematics/wxmaxima/Manifest 
b/sci-mathematics/wxmaxima/Manifest
index e1ba042a0a7..d0c4e2921e7 100644
--- a/sci-mathematics/wxmaxima/Manifest
+++ b/sci-mathematics/wxmaxima/Manifest
@@ -1,4 +1,3 @@
 DIST wxmaxima-15.08.2.tar.gz 5592673 BLAKE2B 
cacb508cbcb24e27a43998ba0079b14117980669c25b39b017c0c659ef48d2ad338c6503aea99447a14250ed1a68a3414880828fc8ffdcbd3177b8eb9355a919
 SHA512 
a537c49477f54df4fd9e4e42a5e0d0d740f1ede817d807a98b7cec877a3ad77b2be0a61ae487a7fa5beb193b112eca163b8873292ecab5acf118d58a91e91af6
 DIST wxmaxima-18.11.4.tar.gz 12156776 BLAKE2B 
75be0fb88402af011885616a646f7abcad25516ea9b0b375daf02edac5518b113188290262bc431e8bfb4836fc1f731982a1c41c62871818e4d2cc68c96ccb31
 SHA512 
964de93edc5c46e98de3de405b1873fa0ed594d54f1ddc030377b023110261cb1e6b0b08dbf210551888bf890e28d16e9b1698768c93dde413d5e1918cbd234e
-DIST wxmaxima-19.02.2_p1.tar.gz 11933618 BLAKE2B 
6521f3fede54658e0bd6328580bc68fd3a187a43050a4f5738a7db834e465a3c234b30e053792005f6a7b0390854b47d2beeadde23c34b820bcbd780b8d9a080
 SHA512 
35cf81e8ce7b230acbec52082531956b9ad7e933343859d2132c9d3ba9c64447933d39a416008dd9956a2223b3fd92728ae3515a6e85fb494a17ea6a7848f8cd
 DIST wxmaxima-19.03.1.tar.gz 12065575 BLAKE2B 
a376ac6f8dafd8779b6161695595a3f2fc87e8242086a0f97bfb2823151c198a94c824baa9297dd586271ef121fc9af692b33ac06b2266d58dbbab9212c14d98
 SHA512 
7aa9e03104d276a1cc753a4edfdc0948822efe3ef93b08090a91efc50efe4ec0d913ff5f87069c1433c18f5b8bf086d025dd6bf7560f3b42a70e883914cc995a

diff --git a/sci-mathematics/wxmaxima/wxmaxima-19.02.2_p1.ebuild 
b/sci-mathematics/wxmaxima/wxmaxima-19.02.2_p1.ebuild
deleted file mode 100644
index c59167cdf74..000
--- a/sci-mathematics/wxmaxima/wxmaxima-19.02.2_p1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-WX_GTK_VER="3.0"
-PLOCALES="ca cs da de el es fi fr gl hu it ja kab nb pl pt_BR ru tr uk zh_CN 
zh_TW"
-inherit cmake-utils wxwidgets l10n xdg-utils gnome2-utils
-
-DESCRIPTION="Graphical frontend to Maxima, using the wxWidgets toolkit"
-HOMEPAGE="http://wxmaxima-developers.github.io/wxmaxima/;
-SRC_URI="https://dev.gentoo.org/~grozin/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-S="${WORKDIR}"/${PN}-Version-${PV}
-
-DEPEND="
-   dev-libs/libxml2:2
-   x11-libs/wxGTK:${WX_GTK_VER}"
-RDEPEND="${DEPEND}
-   media-fonts/jsmath
-   sci-visualization/gnuplot[wxwidgets]
-   sci-mathematics/maxima"
-
-src_prepare() {
-   setup-wxwidgets
-   cmake-utils_src_prepare
-
-   sed -e "s|share/doc/${PN}|share/doc/${PF}|g" -i 
"${S}"/info/CMakeLists.txt \
-   || die "sed info/CMakeLists.txt failed"
-
-   # locales
-   rm_po() {
-   rm "${S}"/locales/${1}.po || die "rm ${1}.po failed"
-   }
-   l10n_find_plocales_changes "${S}"/locales '' '.po'
-   l10n_for_each_disabled_locale_do rm_po
-}
-
-src_install() {
-   docompress -x /usr/share/doc/${PF}/wxmaxima.hhp 
/usr/share/doc/${PF}/wxmaxima_tr.hhp
-   cmake-utils_src_install
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-   gnome2_icon_cache_update
-}



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

2019-03-15 Thread Eray Aslan
commit: 28ad7f2003ba52aab4bb82945ee0fefa01aced0a
Author: Eray Aslan  gentoo  org>
AuthorDate: Fri Mar 15 15:29:49 2019 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Fri Mar 15 15:29:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28ad7f20

mail-mta/postfix: remove old

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

 mail-mta/postfix/Manifest |   1 -
 mail-mta/postfix/postfix-3.4.0.ebuild | 326 --
 2 files changed, 327 deletions(-)

diff --git a/mail-mta/postfix/Manifest b/mail-mta/postfix/Manifest
index 13dab8258e5..45c9c9e6232 100644
--- a/mail-mta/postfix/Manifest
+++ b/mail-mta/postfix/Manifest
@@ -2,7 +2,6 @@ DIST postfix-2.10.9.tar.gz 3820525 BLAKE2B 
ed1fc10f016cdc63fe2b86c68cca270c98348
 DIST postfix-3.2.4.tar.gz 4390376 BLAKE2B 
132a6b467f9156d716a92cc7beae0f9a7c47e6a2045e83726a5e7305e6f9bf666ebcfb93a9ab1a96ec988431661059d62e926287bd13089eeb4bab3e8f4b9fc7
 SHA512 
6dc583d3b1c98f5c8d6486351bee9f92a98b5379cd0d76d26a382379c112317e7a2a58c3a200477a6d0f831c73395257d1a63170df17ea8a65a4048a7df391f8
 DIST postfix-3.3.1.tar.gz 4420912 BLAKE2B 
065fd04cdfa343a6c50a629e8da47fad71465df790ca88adcad4efc7ab273330c39998c6bf503587b8bcba3d87bb98b1be6413e49449e2241258a99217473c11
 SHA512 
2307f50f8b7dab1db46ebe4ae30bc5682a25b9c49ae5ae65aa95b4620bb5450dd5929977c0f34b9e73a92ca6af36fd8e24167732420a1a2d89167c7a3b197276
 DIST postfix-3.3.3.tar.gz 4429713 BLAKE2B 
0699d9bdc0f3a5267f9cbe5dc3b6ddc2e83d1b984b07638913c8ba419a0c71135ccae6f434aa2c60f69ffe60356b7a7652a6d83c176b119cd2f9ab8374a32283
 SHA512 
9d04d48b5393c49c00ca62f0a24e21c9642f2b645431b66b532a559ad1b4d35c7581fec8bd1bb1a2d7b31b812b1cea3b29e0a0cbd6576bd377b2c810d27b7ec3
-DIST postfix-3.4.0.tar.gz 4580627 BLAKE2B 
4a2356c8bd74d7146833e321e426503003058ba92e50a486fee2eb39a4a75aa96fb48511b4ea457fa94c84363593f24f3671b42bda4e92dcb71bb8eccf219996
 SHA512 
2afc7a4aef8768eb140b803b9e29d9270bd536d168845bfde18fc58c233d6d7293ab4ad40ab0b452c55130f7139246c752007e8d676294af3068110a9021f4e2
 DIST postfix-3.4.3.tar.gz 4581033 BLAKE2B 
b77aaf512a9987bd23d7a0cf4ae173fbc6d89721fde52521b2c20deb6d2c47a23ef55cd28404cb684c3057817e3f1f1b70c34ff8e4b2c0a8b889938ae74046db
 SHA512 
8832f6701dd7b48439f888a332b492695caaadb04834bc54101a5f8b790e76cd5e6f6654732bfd651bdbd5793049b0e181d3ea31185d071681c8c855da5256a1
 DIST postfix-3.4.4.tar.gz 4581121 BLAKE2B 
a891b080737e39695a92fd92928cccdd093ba32a13a33c38e810d467e65f68cbe5a2d8d6423b85fbe2f749fef14b6d242988185d89031ed491b5dcd3ed535d38
 SHA512 
e8398486a41f79da3716024104c178083c80eba7e3eec7669f9dd986914637174423c0328bcc79393b2d21edae72304ca4a89d53083f21598657593d05a05d64
 DIST postfix-3.5-20190312.tar.gz 4571238 BLAKE2B 
0056d18935cfe56c869e501d04b1cccd6a80ff82647e5308e420a7a252cd713ddc43e37765b69a65040dd91ba3937618d684a06b0f0e3a44627d2aec9d56348c
 SHA512 
aff124a317e3a61c8c6ddbb749458895f9ed48cd86533ec53d2cc85f76bebb3e532407ac20cc3d5a58befab6f2564abdbe45bfc219c50c8d042ba81459970093

diff --git a/mail-mta/postfix/postfix-3.4.0.ebuild 
b/mail-mta/postfix/postfix-3.4.0.ebuild
deleted file mode 100644
index 26d271615d3..000
--- a/mail-mta/postfix/postfix-3.4.0.ebuild
+++ /dev/null
@@ -1,326 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic pam systemd toolchain-funcs user
-
-MY_PV="${PV/_rc/-RC}"
-MY_SRC="${PN}-${MY_PV}"
-MY_URI="ftp://ftp.porcupine.org/mirrors/postfix-release/official;
-RC_VER="2.7"
-
-DESCRIPTION="A fast and secure drop-in replacement for sendmail"
-HOMEPAGE="http://www.postfix.org/;
-SRC_URI="${MY_URI}/${MY_SRC}.tar.gz"
-
-LICENSE="|| ( IBM EPL-2.0 )"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd"
-IUSE="+berkdb cdb dovecot-sasl +eai hardened ldap ldap-bind libressl lmdb 
memcached mbox mysql nis pam postgres sasl selinux sqlite ssl"
-
-DEPEND=">=dev-libs/libpcre-3.4
-   dev-lang/perl
-   berkdb? ( >=sys-libs/db-3.2:* )
-   cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r4 ) )
-   eai? ( dev-libs/icu:= )
-   ldap? ( net-nds/openldap )
-   ldap-bind? ( net-nds/openldap[sasl] )
-   lmdb? ( >=dev-db/lmdb-0.9.11 )
-   mysql? ( dev-db/mysql-connector-c:0= )
-   nis? ( net-libs/libnsl )
-   pam? ( virtual/pam )
-   postgres? ( dev-db/postgresql:* )
-   sasl? (  >=dev-libs/cyrus-sasl-2 )
-   sqlite? ( dev-db/sqlite:3 )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl )
-   )"
-
-RDEPEND="${DEPEND}
-   memcached? ( net-misc/memcached )
-   net-mail/mailbase
-   !mail-mta/courier
-   !mail-mta/esmtp
-   !mail-mta/exim
-   !mail-mta/mini-qmail
-   !mail-mta/msmtp[mta]
-   !mail-mta/netqmail
-   !mail-mta/nullmailer
-   !mail-mta/qmail-ldap
-   !mail-mta/sendmail
-   !mail-mta/opensmtpd
-   

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

2019-03-15 Thread Eray Aslan
commit: b277461b9044844dc8aa7cff5de567654130ad30
Author: Eray Aslan  gentoo  org>
AuthorDate: Fri Mar 15 15:27:47 2019 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Fri Mar 15 15:27:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b277461b

mail-mta/postfix: bump to 3.4.4

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

 mail-mta/postfix/Manifest |   1 +
 mail-mta/postfix/postfix-3.4.4.ebuild | 324 ++
 2 files changed, 325 insertions(+)

diff --git a/mail-mta/postfix/Manifest b/mail-mta/postfix/Manifest
index c0ad9efa135..13dab8258e5 100644
--- a/mail-mta/postfix/Manifest
+++ b/mail-mta/postfix/Manifest
@@ -4,5 +4,6 @@ DIST postfix-3.3.1.tar.gz 4420912 BLAKE2B 
065fd04cdfa343a6c50a629e8da47fad71465d
 DIST postfix-3.3.3.tar.gz 4429713 BLAKE2B 
0699d9bdc0f3a5267f9cbe5dc3b6ddc2e83d1b984b07638913c8ba419a0c71135ccae6f434aa2c60f69ffe60356b7a7652a6d83c176b119cd2f9ab8374a32283
 SHA512 
9d04d48b5393c49c00ca62f0a24e21c9642f2b645431b66b532a559ad1b4d35c7581fec8bd1bb1a2d7b31b812b1cea3b29e0a0cbd6576bd377b2c810d27b7ec3
 DIST postfix-3.4.0.tar.gz 4580627 BLAKE2B 
4a2356c8bd74d7146833e321e426503003058ba92e50a486fee2eb39a4a75aa96fb48511b4ea457fa94c84363593f24f3671b42bda4e92dcb71bb8eccf219996
 SHA512 
2afc7a4aef8768eb140b803b9e29d9270bd536d168845bfde18fc58c233d6d7293ab4ad40ab0b452c55130f7139246c752007e8d676294af3068110a9021f4e2
 DIST postfix-3.4.3.tar.gz 4581033 BLAKE2B 
b77aaf512a9987bd23d7a0cf4ae173fbc6d89721fde52521b2c20deb6d2c47a23ef55cd28404cb684c3057817e3f1f1b70c34ff8e4b2c0a8b889938ae74046db
 SHA512 
8832f6701dd7b48439f888a332b492695caaadb04834bc54101a5f8b790e76cd5e6f6654732bfd651bdbd5793049b0e181d3ea31185d071681c8c855da5256a1
+DIST postfix-3.4.4.tar.gz 4581121 BLAKE2B 
a891b080737e39695a92fd92928cccdd093ba32a13a33c38e810d467e65f68cbe5a2d8d6423b85fbe2f749fef14b6d242988185d89031ed491b5dcd3ed535d38
 SHA512 
e8398486a41f79da3716024104c178083c80eba7e3eec7669f9dd986914637174423c0328bcc79393b2d21edae72304ca4a89d53083f21598657593d05a05d64
 DIST postfix-3.5-20190312.tar.gz 4571238 BLAKE2B 
0056d18935cfe56c869e501d04b1cccd6a80ff82647e5308e420a7a252cd713ddc43e37765b69a65040dd91ba3937618d684a06b0f0e3a44627d2aec9d56348c
 SHA512 
aff124a317e3a61c8c6ddbb749458895f9ed48cd86533ec53d2cc85f76bebb3e532407ac20cc3d5a58befab6f2564abdbe45bfc219c50c8d042ba81459970093
 DIST postfix-vda-v13-2.10.0.patch 55701 BLAKE2B 
d8df041bb4ae7457cd066e71b6ae9470840d42edc9990a550ae51356cd62bfb08516250249030da26d1ef475619f0ebd609570d84ce57f8cdc347a2824b29536
 SHA512 
0b4b53a8cd28abf56eee3b2ed63ca1814251b60816e6ca1143249d25fd6ef7f905bec3134125ac6e851af685db8aae878012113693261529ae2ddbcf1bd93e62

diff --git a/mail-mta/postfix/postfix-3.4.4.ebuild 
b/mail-mta/postfix/postfix-3.4.4.ebuild
new file mode 100644
index 000..6b1a50eca24
--- /dev/null
+++ b/mail-mta/postfix/postfix-3.4.4.ebuild
@@ -0,0 +1,324 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic pam systemd toolchain-funcs user
+
+MY_PV="${PV/_rc/-RC}"
+MY_SRC="${PN}-${MY_PV}"
+MY_URI="ftp://ftp.porcupine.org/mirrors/postfix-release/official;
+RC_VER="2.7"
+
+DESCRIPTION="A fast and secure drop-in replacement for sendmail"
+HOMEPAGE="http://www.postfix.org/;
+SRC_URI="${MY_URI}/${MY_SRC}.tar.gz"
+
+LICENSE="|| ( IBM EPL-2.0 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd"
+IUSE="+berkdb cdb dovecot-sasl +eai hardened ldap ldap-bind libressl lmdb 
memcached mbox mysql nis pam postgres sasl selinux sqlite ssl"
+
+DEPEND=">=dev-libs/libpcre-3.4
+   dev-lang/perl
+   berkdb? ( >=sys-libs/db-3.2:* )
+   cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r4 ) )
+   eai? ( dev-libs/icu:= )
+   ldap? ( net-nds/openldap )
+   ldap-bind? ( net-nds/openldap[sasl] )
+   lmdb? ( >=dev-db/lmdb-0.9.11 )
+   mysql? ( dev-db/mysql-connector-c:0= )
+   nis? ( net-libs/libnsl )
+   pam? ( virtual/pam )
+   postgres? ( dev-db/postgresql:* )
+   sasl? (  >=dev-libs/cyrus-sasl-2 )
+   sqlite? ( dev-db/sqlite:3 )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl )
+   )"
+
+RDEPEND="${DEPEND}
+   memcached? ( net-misc/memcached )
+   net-mail/mailbase
+   !mail-mta/courier
+   !mail-mta/esmtp
+   !mail-mta/exim
+   !mail-mta/mini-qmail
+   !mail-mta/msmtp[mta]
+   !mail-mta/netqmail
+   !mail-mta/nullmailer
+   !mail-mta/qmail-ldap
+   !mail-mta/sendmail
+   !mail-mta/opensmtpd
+   !=mail-mta/ssmtp-2.64-r2[mta]
+   !net-mail/fastforward
+   selinux? ( sec-policy/selinux-postfix )"
+
+REQUIRED_USE="ldap-bind? ( ldap sasl )"
+
+S="${WORKDIR}/${MY_SRC}"
+
+pkg_setup() {
+   if use libressl; then
+   die "LibreSSL patches are not yet available for postfix-3.4 

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

2019-03-15 Thread Jeroen Roovers
commit: 6c5a74a1c6b30ad867f8b33f8ffd89f293063c1e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Mar 15 15:00:20 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Mar 15 15:08:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c5a74a1

dev-libs/libuv: Add live ebuild

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

 dev-libs/libuv/libuv-.ebuild | 47 
 1 file changed, 47 insertions(+)

diff --git a/dev-libs/libuv/libuv-.ebuild b/dev-libs/libuv/libuv-.ebuild
new file mode 100644
index 000..5e8f4c3920c
--- /dev/null
+++ b/dev-libs/libuv/libuv-.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools git-r3 multilib-minimal
+
+DESCRIPTION="Cross-platform asychronous I/O"
+HOMEPAGE="https://github.com/libuv/libuv;
+EGIT_REPO_URI="${HOMEPAGE}"
+
+LICENSE="BSD BSD-2 ISC MIT"
+SLOT="0/1"
+KEYWORDS=""
+IUSE="static-libs"
+RESTRICT="test"
+
+DEPEND="sys-devel/libtool
+   virtual/pkgconfig[${MULTILIB_USEDEP}]"
+
+src_prepare() {
+   default
+
+   echo "m4_define([UV_EXTRA_AUTOMAKE_FLAGS], [serial-tests])" \
+   > m4/libuv-extra-automake-flags.m4 || die
+
+   # upstream fails to ship a configure script
+   eautoreconf
+}
+
+multilib_src_configure() {
+   local myeconfargs=(
+   cc_cv_cflags__g=no
+   $(use_enable static-libs static)
+   )
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_test() {
+   mkdir "${BUILD_DIR}"/test || die
+   cp -pPR "${S}"/test/fixtures "${BUILD_DIR}"/test/fixtures || die
+   default
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   find "${D}" -name '*.la' -delete || die
+}



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

2019-03-15 Thread Mike Gilbert
commit: 9d6129855a22e28c5340c9827f98ca1eb7b7b64d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Mar 15 14:13:55 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Mar 15 14:13:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d612985

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

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

 www-plugins/chrome-binary-plugins/Manifest  | 6 +++---
 0.3626.121.ebuild => chrome-binary-plugins-73.0.3683.75.ebuild} | 0
 ...7_beta.ebuild => chrome-binary-plugins-73.0.3683.75_beta.ebuild} | 0
 ..._alpha.ebuild => chrome-binary-plugins-74.0.3729.6_alpha.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index dfa40b30f31..101db7f587a 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_73.0.3683.67-1_amd64.deb 58862052 BLAKE2B 
2424c7ad61646af0259648691271cc5328cebcbcd0f499ea0a022fb8d48349515535dccefdb6a8c9ad0dee14d68f2e33302073ffee7eb1cb139ea16a410aa7a0
 SHA512 
d68b7bb617b96261e25677380e7bbf545f04263f296c986e2aa68bfb5b279172cd8f72b93a08cd096098cbb2c7ee24cdfabf13f93fc385cd55fab0e1ac2bfa32
-DIST google-chrome-stable_72.0.3626.121-1_amd64.deb 57295524 BLAKE2B 
04bd058939baccf7cfb3452058e3aba4a55469d457295e9a672a4bea1f8b2c75a7240a1930977d931c5aa321d09a09b78572330be07b50f0909079419d447cdb
 SHA512 
b700048a0effe16ba1cc58c4105a3502f3f47f1aaa95c95bc24eae155e92d4750e6e8e2b49439ae46e5e59e9ae0bfda0556d5da810e982e681c33e93cde9b447
-DIST google-chrome-unstable_74.0.3724.8-1_amd64.deb 59581626 BLAKE2B 
469b4509135e93bf118039f0eef050e3e85111c8aff7143638353d471d03969ed32acae08229337bad478b2e03d16df7166dc8e86208dc9c67be17666fca304f
 SHA512 
6dab82ef8ea93446f3f873dde4ff4bf1c1c9067fd2458816d0f4632d837fbf7913428f492af86855d0cd6361faa0a3441215411d08c5057c14b61d695a3380d3
+DIST google-chrome-beta_73.0.3683.75-1_amd64.deb 58818860 BLAKE2B 
8d66a4603f5a9cb6533965cc85b132aebc96746074c93f94171b9f5583df84e4ae30367e21f5c3107b15d3ff415f128c6102a0858e57332029bbd915cc4bc54c
 SHA512 
f85fe40389973e9387cb82b9a0ffe9149b12fe47a7a995a6ded59a41c93b584822cd800c3fbcbff636dc3fefc80d9dc09625e311eebd62a5785173a942ca95a1
+DIST google-chrome-stable_73.0.3683.75-1_amd64.deb 57711706 BLAKE2B 
6254397961e86917944af1cf3f8bc545f5c7e6beec514310b89e14a4662a4578831f34170ddfe77b4f67e4a648cd3ff070a1113b142eba4313f3b37ec72d96e1
 SHA512 
473e82499a7f7b00b7cd51aaa6cfff22555b8ad42c13f48caa4e5b158f4df2f1eaeff57948978e1bedd810e40262b549ba057581adca29a7e60a04fac88e958e
+DIST google-chrome-unstable_74.0.3729.6-1_amd64.deb 59799538 BLAKE2B 
ed5982ffd6bfe4a0709c72a7a82863ca271d075439ce4b4e63709800b0427958a56c7505c1b0fd3c9ba3f69ff2b5aa0142a2c986bf9e77c6340e8f2da9c587fc
 SHA512 
cbe279e8bb4e1eac8fb207ba4ff90768316019f8bbf190f1486e9adc8495e28ebee44b973d6e91c1b778b08b8db3863ff28efed300d6667159965545993ceda8

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-72.0.3626.121.ebuild 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.75.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-72.0.3626.121.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-73.0.3683.75.ebuild

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

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



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

2019-03-15 Thread Mike Gilbert
commit: fa3d540b074b330d9edeff1d1d9f564dcaed0171
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Mar 15 14:13:19 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Mar 15 14:13:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa3d540b

www-client/google-chrome: automated update (73.0.3683.75)

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

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

diff --git a/www-client/google-chrome/Manifest 
b/www-client/google-chrome/Manifest
index 8fcfbf50447..8867e6bd3bc 100644
--- a/www-client/google-chrome/Manifest
+++ b/www-client/google-chrome/Manifest
@@ -1 +1 @@
-DIST google-chrome-stable_72.0.3626.121-1_amd64.deb 57295524 BLAKE2B 
04bd058939baccf7cfb3452058e3aba4a55469d457295e9a672a4bea1f8b2c75a7240a1930977d931c5aa321d09a09b78572330be07b50f0909079419d447cdb
 SHA512 
b700048a0effe16ba1cc58c4105a3502f3f47f1aaa95c95bc24eae155e92d4750e6e8e2b49439ae46e5e59e9ae0bfda0556d5da810e982e681c33e93cde9b447
+DIST google-chrome-stable_73.0.3683.75-1_amd64.deb 57711706 BLAKE2B 
6254397961e86917944af1cf3f8bc545f5c7e6beec514310b89e14a4662a4578831f34170ddfe77b4f67e4a648cd3ff070a1113b142eba4313f3b37ec72d96e1
 SHA512 
473e82499a7f7b00b7cd51aaa6cfff22555b8ad42c13f48caa4e5b158f4df2f1eaeff57948978e1bedd810e40262b549ba057581adca29a7e60a04fac88e958e

diff --git a/www-client/google-chrome/google-chrome-72.0.3626.121.ebuild 
b/www-client/google-chrome/google-chrome-73.0.3683.75.ebuild
similarity index 100%
rename from www-client/google-chrome/google-chrome-72.0.3626.121.ebuild
rename to www-client/google-chrome/google-chrome-73.0.3683.75.ebuild



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

2019-03-15 Thread Mike Gilbert
commit: bea76412fec7e70fe509d0dcf58510e655702632
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Mar 15 14:13:36 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Mar 15 14:13:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bea76412

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

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

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-73.0.3683.67.ebuild => google-chrome-beta-73.0.3683.75.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 0276d76dc09..08f31f784cd 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_73.0.3683.67-1_amd64.deb 58862052 BLAKE2B 
2424c7ad61646af0259648691271cc5328cebcbcd0f499ea0a022fb8d48349515535dccefdb6a8c9ad0dee14d68f2e33302073ffee7eb1cb139ea16a410aa7a0
 SHA512 
d68b7bb617b96261e25677380e7bbf545f04263f296c986e2aa68bfb5b279172cd8f72b93a08cd096098cbb2c7ee24cdfabf13f93fc385cd55fab0e1ac2bfa32
+DIST google-chrome-beta_73.0.3683.75-1_amd64.deb 58818860 BLAKE2B 
8d66a4603f5a9cb6533965cc85b132aebc96746074c93f94171b9f5583df84e4ae30367e21f5c3107b15d3ff415f128c6102a0858e57332029bbd915cc4bc54c
 SHA512 
f85fe40389973e9387cb82b9a0ffe9149b12fe47a7a995a6ded59a41c93b584822cd800c3fbcbff636dc3fefc80d9dc09625e311eebd62a5785173a942ca95a1

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



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

2019-03-15 Thread Mike Gilbert
commit: bedbd4eacadba7df3e3ae0e2a97c4754ce5fee57
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Mar 15 14:13:49 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Mar 15 14:13:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bedbd4ea

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

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

 www-client/google-chrome-unstable/Manifest  | 2 +-
 ...ble-74.0.3724.8.ebuild => google-chrome-unstable-74.0.3729.6.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 eece6c756ce..e8ef5305f63 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_74.0.3724.8-1_amd64.deb 59581626 BLAKE2B 
469b4509135e93bf118039f0eef050e3e85111c8aff7143638353d471d03969ed32acae08229337bad478b2e03d16df7166dc8e86208dc9c67be17666fca304f
 SHA512 
6dab82ef8ea93446f3f873dde4ff4bf1c1c9067fd2458816d0f4632d837fbf7913428f492af86855d0cd6361faa0a3441215411d08c5057c14b61d695a3380d3
+DIST google-chrome-unstable_74.0.3729.6-1_amd64.deb 59799538 BLAKE2B 
ed5982ffd6bfe4a0709c72a7a82863ca271d075439ce4b4e63709800b0427958a56c7505c1b0fd3c9ba3f69ff2b5aa0142a2c986bf9e77c6340e8f2da9c587fc
 SHA512 
cbe279e8bb4e1eac8fb207ba4ff90768316019f8bbf190f1486e9adc8495e28ebee44b973d6e91c1b778b08b8db3863ff28efed300d6667159965545993ceda8

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



  1   2   3   >