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

2019-03-24 Thread Hans de Graaff
commit: 31acf9d9a99ea466eb9279814161c066ace7f4ad
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 25 05:47:57 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 25 05:47:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31acf9d9

dev-ruby/parallel: add 1.15.0

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

 dev-ruby/parallel/Manifest   |  1 +
 dev-ruby/parallel/parallel-1.15.0.ebuild | 55 
 2 files changed, 56 insertions(+)

diff --git a/dev-ruby/parallel/Manifest b/dev-ruby/parallel/Manifest
index 416953d26f2..36f8f09c887 100644
--- a/dev-ruby/parallel/Manifest
+++ b/dev-ruby/parallel/Manifest
@@ -1,3 +1,4 @@
 DIST parallel-1.12.1.tar.gz 20499 BLAKE2B 
f0fa25b9fe65e44804854f703dd2d80e53572e64c2072c418d0462922bd04f89cff0e023caf4293d8a1504ad66a2a29ebbdd01920fc6fe400837859da0f0eb78
 SHA512 
f0ab332dfa60bb3190bba8275dbdf7b54d3de205ab76099d11f0a64e1fc28e1ba7e72d1a242bd615015c2d09a3f08df01c382869fd6990b854b01fe182245857
 DIST parallel-1.13.0.tar.gz 20771 BLAKE2B 
ca0070492d7e15800bab751c8c1e8b0f88e89310f8455a3e6197a6b572efc1c691d9584eac7d199caa66a4b32eb49f4e7f4bdcae59c5c08f9c61ab3d60fc469f
 SHA512 
7fec6eb3ee6ae06390f1a444a24ec3350e0562772d9ce654f126875b36e6cab42703f85978a08889e3a25c4f1d8a95d8a67c78b3ab9ac75c7ca6e198311f797d
 DIST parallel-1.14.0.tar.gz 20361 BLAKE2B 
55d7d58f6036485fc513bd6fd784bd6d6e8a8fd96b4ab892849c4a47afda5fd6f71f8560c4db23e20c1c6de85c7606f48edbb440aa386a10963737c099444d58
 SHA512 
fe6d526eeabb07a86523118be232b31a7d0d8de38a70927e6741a112538c29a239cdc4490355fcc09740ca9620a1c2aea43498e33ee38e617f4ac64b8320ed9f
+DIST parallel-1.15.0.tar.gz 20420 BLAKE2B 
9eecba1a6ecda4a07a18cce8c04c9777c0dfe9197d0c91b3abd9f8f5e66c47943727671ed4f39b6169e00f945d5bcd4ed182d0f9fdd0ae196d76316bf7789c69
 SHA512 
1acc2d3585d89f6fe64f70b0eec96ca6838477d64fe5be827479dc3178a9cce33ef3309aa7fb09669c811a95f6251a112455c2c9096e108783d955f75fe523e6

diff --git a/dev-ruby/parallel/parallel-1.15.0.ebuild 
b/dev-ruby/parallel/parallel-1.15.0.ebuild
new file mode 100644
index 000..471513dfe1f
--- /dev/null
+++ b/dev-ruby/parallel/parallel-1.15.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_EXTRAINSTALL="Readme.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Run any code in parallel Processes or Threads"
+HOMEPAGE="https://github.com/grosser/parallel;
+LICENSE="MIT"
+SRC_URI="https://github.com/grosser/parallel/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+KEYWORDS="~amd64"
+SLOT="1"
+IUSE="test"
+
+DEPEND+="test? ( sys-process/lsof )"
+
+ruby_add_bdepend "
+   test? ( dev-ruby/ruby-progressbar dev-ruby/activerecord:5.2 
dev-ruby/sqlite3 )"
+
+each_ruby_prepare() {
+   # Make sure the correct ruby is used for testing
+   sed -e 's:ruby :'${RUBY}' :' -i spec/parallel_spec.rb || die
+}
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/ s:^:#:' \
+   -e '1i require "tempfile"; gem "activerecord", "~>5.2.0"' 
spec/cases/helper.rb || die
+   sed -i -e '3irequire "timeout"' spec/spec_helper.rb || die
+
+   # Avoid a failing spec regarding to pipes. The spec seems like it
+   # should always fail.
+   sed -e '/does not open unnecessary pipes/,/end/ s:^:#:' \
+   -i spec/parallel_spec.rb || die
+
+   # Avoid fragile ar sqlite tests. They throw ReadOnly errors every now 
and then.
+   sed -i -e '/works with SQLite in/,/end/ s:^:#:' spec/parallel_spec.rb 
|| die
+
+   # Avoid spec broken on Ruby 2.1 that clearly doesn't match code and 
doesn't really test anything
+   sed -i -e '/doesnt use Etc.nprocessors in Ruby 2.1 and below/,/end/ 
s:^:#:' spec/parallel_spec.rb || die
+}
+
+each_ruby_test() {
+   # Set RUBYLIB explicitly for the ruby's that get started from the specs.
+   TRAVIS=true RUBYLIB="lib" ${RUBY} -S rspec-3 spec || die
+}



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

2019-03-24 Thread Hans de Graaff
commit: 44e0a25a586dc5b9b36ea010b7a9b9b575940756
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 25 05:49:58 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 25 05:49:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44e0a25a

dev-ruby/moneta: add 1.1.0

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

 dev-ruby/moneta/Manifest|  1 +
 dev-ruby/moneta/moneta-1.1.0.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-ruby/moneta/Manifest b/dev-ruby/moneta/Manifest
index 0d557165f5d..e2b3c2abb1d 100644
--- a/dev-ruby/moneta/Manifest
+++ b/dev-ruby/moneta/Manifest
@@ -1 +1,2 @@
 DIST moneta-1.0.0.tar.gz 174765 BLAKE2B 
0f17b4c3a2ead8753a5285603df1df385f8150c4eb21e9c088647982c7eb9d8380cb53f8d9177712b0992a0d4472d0defdaba9bf117b767555960186c81cc323
 SHA512 
367207c693991a956d5454b3884b8504cc007cc247284ff00178c423167a403ac88e83bc510453daff76e52fe30e429714805c1fb716bea6a7eae7a3b3d965b4
+DIST moneta-1.1.0.tar.gz 113116 BLAKE2B 
15e70515f112794e95a0e665bca161bf3d9d28b2f3cee6ca77d9bf9ece825669f71994b2b581e61cba6c2a97b6d8b779000ba0c17b9e3fe564ca85f2a59c6581
 SHA512 
5caec98088989ed0e7da526a831248c86d365de97582f78276199eaa099fc25b3139f7ec2dc65265073fc6826c9abf954e55e4fdc7ea11cd9b6cddcd65c40f2d

diff --git a/dev-ruby/moneta/moneta-1.1.0.ebuild 
b/dev-ruby/moneta/moneta-1.1.0.ebuild
new file mode 100644
index 000..08a5f6d1cba
--- /dev/null
+++ b/dev-ruby/moneta/moneta-1.1.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_RECIPE_TEST="none"
+# test is disabled for now. It requires many packages.  Test suite also
+# takes very long run time and has high memory consumption.
+
+RUBY_FAKEGEM_EXTRADOC="CHANGES README.md SPEC.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+GITHUB_USER="minad"
+
+DESCRIPTION="A unified interface to key/value stores"
+HOMEPAGE="https://github.com/minad/moneta;
+SRC_URI="https://github.com/${GITHUB_USER}/moneta/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+all_ruby_prepare() {
+   sed -i -e '/ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+}



[gentoo-commits] repo/proj/libressl:master commit in: dev-perl/Net-SSLeay/files/, dev-perl/Net-SSLeay/

2019-03-24 Thread Stefan Strogin
commit: 81907d2f76c51dbc3de6f01843de103cc8bfd635
Author: Stefan Strogin  gmail  com>
AuthorDate: Mon Mar 25 05:40:09 2019 +
Commit: Stefan Strogin  gmail  com>
CommitDate: Mon Mar 25 05:40:09 2019 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=81907d2f

dev-perl/Net-SSLeay: add version 1.860.0_p9

This version supports LibreSSL 2.9.0 out of box.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Stefan Strogin  gmail.com>

 dev-perl/Net-SSLeay/Manifest   |  1 +
 dev-perl/Net-SSLeay/Net-SSLeay-1.860.0_p9.ebuild   | 62 ++
 .../files/Net-SSLeay-1.86-fix-libdir.patch | 27 ++
 dev-perl/Net-SSLeay/metadata.xml   | 13 +
 4 files changed, 103 insertions(+)

diff --git a/dev-perl/Net-SSLeay/Manifest b/dev-perl/Net-SSLeay/Manifest
new file mode 100644
index 000..e14a4f6
--- /dev/null
+++ b/dev-perl/Net-SSLeay/Manifest
@@ -0,0 +1 @@
+DIST Net-SSLeay-1.86_09.tar.gz 430456 BLAKE2B 
c16cba2a1252d572d828e0f3a7cf708ab5bb2369998e949e95edba0098fa5b2c26b724c1029fad63ba4fa200280696035bcb83682214559e0dc09b446d245b89
 SHA512 
5f878169075dac9b0e5f9aabec732a5034858a414a8344d16928fe8ec614277872d3af75295ac065ef5a7511c0f5ca22fc3f5cd040f0009d2a8119314da54727

diff --git a/dev-perl/Net-SSLeay/Net-SSLeay-1.860.0_p9.ebuild 
b/dev-perl/Net-SSLeay/Net-SSLeay-1.860.0_p9.ebuild
new file mode 100644
index 000..6180799
--- /dev/null
+++ b/dev-perl/Net-SSLeay/Net-SSLeay-1.860.0_p9.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=CHRISN
+DIST_VERSION=1.86_09
+DIST_EXAMPLES=("examples/*")
+inherit multilib perl-module
+
+DESCRIPTION="Perl extension for using OpenSSL"
+
+LICENSE="openssl"
+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"
+IUSE="libressl test minimal examples"
+
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   virtual/perl-MIME-Base64
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   !minimal? (
+   dev-perl/Test-Exception
+   dev-perl/Test-Warn
+   dev-perl/Test-NoWarnings
+   )
+   virtual/perl-Test-Simple
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.86-fix-libdir.patch"
+)
+PERL_RM_FILES=(
+   # Hateful author tests
+   't/local/01_pod.t'
+   't/local/02_pod_coverage.t'
+   't/local/kwalitee.t'
+   # Broken under FEATURES="network-sandbox"
+   # https://rt.cpan.org/Ticket/Display.html?id=128207
+   't/local/06_tcpecho.t'
+   't/local/07_sslecho.t'
+)
+mymake=(
+   OPTIMIZE="${CFLAGS}"
+   OPENSSL_PREFIX="${EPREFIX}"/usr
+)
+
+src_configure() {
+   if use test && has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do 
parallel}}; then
+   export NETWORK_TESTS=yes
+   else
+   use test && einfo "Network tests will be skipped without 
DIST_TEST_OVERRIDE=~network"
+   export NETWORK_TESTS=no
+   fi
+   export LIBDIR=$(get_libdir)
+   perl-module_src_configure
+}

diff --git a/dev-perl/Net-SSLeay/files/Net-SSLeay-1.86-fix-libdir.patch 
b/dev-perl/Net-SSLeay/files/Net-SSLeay-1.86-fix-libdir.patch
new file mode 100644
index 000..d78acb9
--- /dev/null
+++ b/dev-perl/Net-SSLeay/files/Net-SSLeay-1.86-fix-libdir.patch
@@ -0,0 +1,27 @@
+Bug: https://bugs.gentoo.org/416339
+
+The previous patch for the above bug report used $ENV{LIBDIR} but this
+wasn't enough to help with cross-compiling. We could use $ENV{SYSROOT}
+but this results in a bogus RPATH entry. It is better to simply trust
+the toolchain, which may have its own sysroot applied.
+
+Cross-compiling Perl modules requires additional hackery but at least
+that hackery will work now. :)
+
+Chewi
+2017/12/03
+
+diff -Naur a/Makefile.PL b/Makefile.PL
+--- a/Makefile.PL  2017-10-13 01:38:01.0 +0100
 b/Makefile.PL  2017-12-03 10:52:27.304861804 +
+@@ -141,10 +141,8 @@
+ cccdlflags => '',
+ };
+ for ("$prefix/include", "$prefix/inc32", '/usr/kerberos/include') {
+-  push @{$opts->{inc_paths}}, $_ if -f "$_/openssl/ssl.h";
+ }
+ for ($prefix, "$prefix/lib64", "$prefix/lib", "$prefix/out32dll") {
+-  push @{$opts->{lib_paths}}, $_ if -d $_;
+ }
+ 
+ my $rsaref  = $self->ssleay_is_rsaref;

diff --git a/dev-perl/Net-SSLeay/metadata.xml b/dev-perl/Net-SSLeay/metadata.xml
new file mode 100644
index 000..3a182c2
--- /dev/null
+++ b/dev-perl/Net-SSLeay/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project

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

2019-03-24 Thread Sven Wegener
commit: a0c25e16323e6ecc948112b65daf79be6d84d520
Author: Sven Wegener  gentoo  org>
AuthorDate: Mon Mar 25 05:11:30 2019 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Mon Mar 25 05:15:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0c25e16

net-misc/cgminer: -nopie -> -no-pie

Signed-off-by: Sven Wegener  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 net-misc/cgminer/cgminer-4.10.0.ebuild | 2 +-
 net-misc/cgminer/cgminer-4.9.2.ebuild  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/cgminer/cgminer-4.10.0.ebuild 
b/net-misc/cgminer/cgminer-4.10.0.ebuild
index 9f112f4a838..1ac87f413db 100644
--- a/net-misc/cgminer/cgminer-4.10.0.ebuild
+++ b/net-misc/cgminer/cgminer-4.10.0.ebuild
@@ -28,7 +28,7 @@ DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
 src_configure() {
-   use hardened && append-cflags "-nopie"
+   use hardened && append-cflags "-no-pie"
 
# PKG_CHECK_MODULES needs PKG_CONFIG for --with-system-jansson.
export PKG_CONFIG="$(tc-getPKG_CONFIG)"

diff --git a/net-misc/cgminer/cgminer-4.9.2.ebuild 
b/net-misc/cgminer/cgminer-4.9.2.ebuild
index 68b775d5d85..6cf544e6b08 100644
--- a/net-misc/cgminer/cgminer-4.9.2.ebuild
+++ b/net-misc/cgminer/cgminer-4.9.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=6
@@ -28,7 +28,7 @@ DEPEND="virtual/pkgconfig
${RDEPEND}"
 
 src_configure() {
-   use hardened && append-cflags "-nopie"
+   use hardened && append-cflags "-no-pie"
 
# PKG_CHECK_MODULES needs PKG_CONFIG for --with-system-jansson.
export PKG_CONFIG=/usr/bin/pkg-config



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

2019-03-24 Thread Robin H. Johnson
commit: e0f5533ddffe91ed212b9a2fa982e9e38806d63f
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Mar 25 05:18:19 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Mar 25 05:18:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0f5533d

dev-lang/lua: add myself as maintainer as well

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Robin H. Johnson  gentoo.org>

 dev-lang/lua/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-lang/lua/metadata.xml b/dev-lang/lua/metadata.xml
index 0594eb429d6..0ce90a652d2 100644
--- a/dev-lang/lua/metadata.xml
+++ b/dev-lang/lua/metadata.xml
@@ -5,6 +5,10 @@
willi...@gentoo.org
William Hubbs
 
+
+   robb...@gentoo.org
+   Robin H. Johnson
+
 
make deprecated data structures/routines 
available
Run the complete (non-portable) 
testsuite



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

2019-03-24 Thread Robin H. Johnson
commit: d8b34e68bfeb0eb58cec6d7e0f274987c253c2a0
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Mar 25 05:03:33 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Mar 25 05:13:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8b34e68

dev-lang/lua: fix pkgconfig for lua 5.2 & lua 5.3

Slotted Lua uses distinct names for libraries and the include path.
This variant is explicitly compatible with Debian's layout as seen at
[1].

[1] https://packages.debian.org/stretch/amd64/liblua5.3-dev/filelist

Fixes: https://bugs.gentoo.org/592052
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Robin H. Johnson  gentoo.org>

 dev-lang/lua/lua-5.2.4-r1.ebuild | 192 +++
 dev-lang/lua/lua-5.3.5-r1.ebuild | 192 +++
 2 files changed, 384 insertions(+)

diff --git a/dev-lang/lua/lua-5.2.4-r1.ebuild b/dev-lang/lua/lua-5.2.4-r1.ebuild
new file mode 100644
index 000..707b872c384
--- /dev/null
+++ b/dev-lang/lua/lua-5.2.4-r1.ebuild
@@ -0,0 +1,192 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit eutils autotools multilib multilib-minimal portability toolchain-funcs 
versionator
+
+DESCRIPTION="A powerful light-weight programming language designed for 
extending applications"
+HOMEPAGE="http://www.lua.org/;
+TEST_PV="5.2.2" # no 5.2.3-specific release yet
+TEST_A="${PN}-${TEST_PV}-tests.tar.gz"
+PKG_A="${P}.tar.gz"
+SRC_URI="
+   http://www.lua.org/ftp/${PKG_A}
+   test? ( https://www.lua.org/tests/${TEST_A} )"
+
+LICENSE="MIT"
+SLOT="5.2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~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 ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="+deprecated emacs readline static test test-complete"
+
+RDEPEND="readline? ( sys-libs/readline:0= )
+   app-eselect/eselect-lua
+   !dev-lang/lua:0"
+DEPEND="${RDEPEND}
+   sys-devel/libtool"
+PDEPEND="emacs? ( app-emacs/lua-mode )"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/lua${SLOT}/luaconf.h
+)
+
+src_prepare() {
+   local PATCH_PV=$(get_version_component_range 1-2)
+
+   epatch "${FILESDIR}"/${PN}-${PATCH_PV}-make-r1.patch
+
+   # use glibtool on Darwin (versus Apple libtool)
+   if [[ ${CHOST} == *-darwin* ]] ; then
+   sed -i -e '/LIBTOOL = /s:/libtool:/glibtool:' \
+   Makefile src/Makefile || die
+   fi
+
+   [ -d "${FILESDIR}/${PV}" ] && \
+   EPATCH_SOURCE="${FILESDIR}/${PV}" 
EPATCH_SUFFIX="upstream.patch" epatch
+
+   # correct lua versioning
+   sed -i -e 's/\(LIB_VERSION = \)6:1:1/\10:0:0/' src/Makefile || die
+
+   sed -i -e 's:\(/README\)\("\):\1.gz\2:g' doc/readme.html || die
+
+   if ! use readline ; then
+   sed -i -e '/#define LUA_USE_READLINE/d' src/luaconf.h || die
+   fi
+
+   # Using dynamic linked lua is not recommended for performance
+   # reasons. http://article.gmane.org/gmane.comp.lang.lua.general/18519
+   # Mainly, this is of concern if your arch is poor with GPRs, like x86
+   # Note that this only affects the interpreter binary (named lua), not 
the lua
+   # compiler (built statically) nor the lua libraries (both shared and 
static
+   # are installed)
+   if use static ; then
+   sed -i -e 's:\(-export-dynamic\):-static \1:' src/Makefile || 
die
+   fi
+
+   # upstream does not use libtool, but we do (see bug #336167)
+   cp "${FILESDIR}/configure.in" "${S}/configure.ac" || die
+   eautoreconf
+
+   # custom Makefiles
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   sed -i \
+   -e 's:\(define LUA_ROOT\s*\).*:\1"'${EPREFIX}'/usr/":' \
+   -e "s:\(define LUA_CDIR\s*LUA_ROOT \"\)lib:\1$(get_libdir):" \
+   src/luaconf.h \
+   || die "failed patching luaconf.h"
+
+   econf
+}
+
+multilib_src_compile() {
+   tc-export CC
+
+   # what to link to liblua
+   liblibs="-lm"
+   liblibs="${liblibs} $(dlopen_lib)"
+
+   # what to link to the executables
+   mylibs=
+   use readline && mylibs="-lreadline"
+
+   cd src
+
+   local myCFLAGS=""
+   use deprecated && myCFLAGS="-DLUA_COMPAT_ALL"
+
+   case "${CHOST}" in
+   *-mingw*) : ;;
+   *) myCFLAGS+=" -DLUA_USE_LINUX" ;;
+   esac
+
+   emake CC="${CC}" CFLAGS="${myCFLAGS} ${CFLAGS}" \
+   SYSLDFLAGS="${LDFLAGS}" \
+   RPATH="${EPREFIX}/usr/$(get_libdir)/" \
+   LUA_LIBS="${mylibs}" \
+   LIB_LIBS="${liblibs}" \
+   V=$(get_version_component_range 1-2) \
+   gentoo_all
+}
+
+multilib_src_install() {
+

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

2019-03-24 Thread Aaron Bauman
commit: fb2072ab3e7df8412eb3fba3fa4ece70fd859d8b
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Mar 25 05:10:38 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Mar 25 05:10:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb2072ab

Revert "app-emulation/xen: drop vulnerable wrt bug #678338"

This reverts commit 52e83bcaae43348e30e4365b2b43895e9d276b6e.

Should have dropped 4.10.2.

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

 app-emulation/xen/Manifest |   2 +
 app-emulation/xen/xen-4.10.3-r1.ebuild | 171 +
 2 files changed, 173 insertions(+)

diff --git a/app-emulation/xen/Manifest b/app-emulation/xen/Manifest
index d5d154fa7ac..dda039512ee 100644
--- a/app-emulation/xen/Manifest
+++ b/app-emulation/xen/Manifest
@@ -1,5 +1,7 @@
 DIST xen-4.10.2-upstream-patches-2.tar.xz 37800 BLAKE2B 
ecf4c1a97a1d76eef925e79fd25a654695a954f81bf8a5884cd4b1007714c888d6d7e19839556c457cf49a2f20ee88d5689a0287ffd7b16487dac676b3386daf
 SHA512 
e9212efd65827286b729b08eded4bd6deda4a9f0b72af26bf0d106a1111b56e51154d3e2a2ee4b38fcf4e8a81f30ffe2a6b711b9261e50e5954447d30e60
 DIST xen-4.10.2.tar.gz 24697204 BLAKE2B 
b331d3ad8d7842446f7d2da5dd31560f636aa1408dd3cc8798dff35b868ef5a609d17e97ef4355e1e5aa825a5abc74103796f9a8015037f0a564ffcebd825722
 SHA512 
2e301b4d6eb106fcb52203bc1208c8fd1fc7bb5d795166c0f86e4085227050301f7daa6f21db440c47bc2ca2c7f87d9b96753cfdf3fa724e0416b5679b84c163
+DIST xen-4.10.3-upstream-patches-1.tar.xz 24064 BLAKE2B 
ec9339d00afd4057738a78165a82dbebbab73eb561984a049daff84dfb115c0550e67796bfa775d5e5a3a4576c4ea7db408d491fe745a68c412f93a04719c58d
 SHA512 
b3761acdb7a581d172e1e2b1e09406c4748eda3e25c81c19bb53b38e005d27e10ac64109870b47ce72372dc7b7c63ec3eca6156389c174f28ab4ad1c2b9e5634
+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-rc5.tar.gz 26514850 BLAKE2B 
41985dc33175bee8bddc4da0ec3b4da9f8cf3ebe580406011db47a27a8740566c1ace6e906d3385f73fee9b6cd572b0f3292381ac72a696fc15d020eb982ad02
 SHA512 
3d7fb254503c412a3c37782f7c75d093a1d43553dc110338d8dc00df0c6be4c8825cebf7f0519731e49263cef38d07ef48c18f073926d7eaf30abe64b13c52cb

diff --git a/app-emulation/xen/xen-4.10.3-r1.ebuild 
b/app-emulation/xen/xen-4.10.3-r1.ebuild
new file mode 100644
index 000..c776b7262c6
--- /dev/null
+++ b/app-emulation/xen/xen-4.10.3-r1.ebuild
@@ -0,0 +1,171 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit flag-o-matic mount-boot multilib python-any-r1 toolchain-funcs
+
+MY_PV=${PV/_/-}
+MY_P=${PN}-${MY_PV}
+
+if [[ $PV == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="git://xenbits.xen.org/xen.git"
+   SRC_URI=""
+else
+   KEYWORDS="amd64 ~arm -x86"
+   UPSTREAM_VER=1
+   SECURITY_VER=
+   GENTOO_VER=
+
+   [[ -n ${UPSTREAM_VER} ]] && \
+   
UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz
+   
https://github.com/hydrapolic/gentoo-dist/raw/master/xen/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz;
+   [[ -n ${SECURITY_VER} ]] && \
+   
SECURITY_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-security-patches-${SECURITY_VER}.tar.xz;
+   [[ -n ${GENTOO_VER} ]] && \
+   
GENTOO_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-gentoo-patches-${GENTOO_VER}.tar.xz;
+   
SRC_URI="https://downloads.xenproject.org/release/xen/${MY_PV}/${MY_P}.tar.gz
+   ${UPSTREAM_PATCHSET_URI}
+   ${SECURITY_PATCHSET_URI}
+   ${GENTOO_PATCHSET_URI}"
+fi
+
+DESCRIPTION="The Xen virtual machine monitor"
+HOMEPAGE="https://www.xenproject.org;
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="custom-cflags debug efi flask"
+
+DEPEND="${PYTHON_DEPS}
+   efi? ( >=sys-devel/binutils-2.22[multitarget] )
+   !efi? ( >=sys-devel/binutils-2.22 )"
+RDEPEND=""
+PDEPEND="~app-emulation/xen-tools-${PV}"
+
+# no tests are available for the hypervisor
+# prevent the silliness 

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

2019-03-24 Thread Robin H. Johnson
commit: aade4eec718e2d85152a668be8c12be841c166c0
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Mar 25 04:13:48 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Mar 25 04:18:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aade4eec

dev-db/redis: early Lua-5.[23] support

This enables easier testing of Lua 5.2 & Lua 5.3 support in Redis.
It's blocked behind 'if false' at the moment, because it's clear the
upstream Redis doesn't entirely support it yet. Failure messages logged
in the ebuild.

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Robin H. Johnson  gentoo.org>

 dev-db/redis/redis-5.0.3.ebuild | 22 ++
 1 file changed, 18 insertions(+), 4 deletions(-)

diff --git a/dev-db/redis/redis-5.0.3.ebuild b/dev-db/redis/redis-5.0.3.ebuild
index 2b13aad0139..c584f33c21f 100644
--- a/dev-db/redis/redis-5.0.3.ebuild
+++ b/dev-db/redis/redis-5.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -68,9 +68,23 @@ src_prepare() {
cp "${FILESDIR}"/configure.ac-3.2 configure.ac || die
 
# Use the correct pkgconfig name for Lua
-   has_version 'dev-lang/lua:5.1' \
-   && LUAPKGCONFIG=lua5.1 \
-   || LUAPKGCONFIG=lua
+   if false && has_version 'dev-lang/lua:5.3'; then
+   # Lua5.3 gives:
+   #lua_bit.c:83:2: error: #error "Unknown number type, check 
LUA_NUMBER_* in luaconf.h"
+   LUAPKGCONFIG=lua5.3
+   elif false && has_version 'dev-lang/lua:5.2'; then
+   # Lua5.2 fails with:
+   # scripting.c:(.text+0x1f9b): undefined reference to `lua_open'
+   # Because lua_open because lua_newstate in 5.2
+   LUAPKGCONFIG=lua5.2
+   elif has_version 'dev-lang/lua:5.1'; then
+   LUAPKGCONFIG=lua5.1
+   else
+   LUAPKGCONFIG=lua
+   fi
+   # The upstream configure script handles luajit specially, and is not
+   # effected by these changes.
+   einfo "Selected LUAPKGCONFIG=${LUAPKGCONFIG}"
sed -i  \
-e "/^AC_INIT/s|, [0-9].+, |, $PV, |" \
-e 
"s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \



[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-server/, x11-base/xorg-proto/, x11-base/xcb-proto/

2019-03-24 Thread Matt Turner
commit: b9fa6bff58e5fb61b6b6d8f982aaa376b9b73948
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Mon Mar 25 03:39:36 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 25 03:59:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9fa6bff

x11-base/*: Update HOMEPAGE and EGIT_REPO_URI.

Bug: https://bugs.gentoo.org/681708
Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Matt Turner  gentoo.org>

 x11-base/xcb-proto/xcb-proto-1.13.ebuild   | 6 +++---
 x11-base/xorg-proto/xorg-proto-2018.4.ebuild   | 4 ++--
 x11-base/xorg-proto/xorg-proto-.ebuild | 6 +++---
 x11-base/xorg-server/xorg-server-1.20.3.ebuild | 2 +-
 x11-base/xorg-server/xorg-server-1.20.4.ebuild | 2 +-
 x11-base/xorg-server/xorg-server-.ebuild   | 2 +-
 6 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/x11-base/xcb-proto/xcb-proto-1.13.ebuild 
b/x11-base/xcb-proto/xcb-proto-1.13.ebuild
index 2140e995651..c7879409035 100644
--- a/x11-base/xcb-proto/xcb-proto-1.13.ebuild
+++ b/x11-base/xcb-proto/xcb-proto-1.13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -10,8 +10,8 @@ XORG_STATIC=no
 inherit python-r1 xorg-2
 
 DESCRIPTION="X C-language Bindings protocol headers"
-HOMEPAGE="https://xcb.freedesktop.org/;
-EGIT_REPO_URI="https://anongit.freedesktop.org/git/xcb/proto.git;
+HOMEPAGE="https://xcb.freedesktop.org/ 
https://gitlab.freedesktop.org/xorg/proto/xcbproto;
+EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/proto/xcbproto.git;
 [[ ${PV} != * ]] && \
SRC_URI="https://xcb.freedesktop.org/dist/${P}.tar.bz2;
 

diff --git a/x11-base/xorg-proto/xorg-proto-2018.4.ebuild 
b/x11-base/xorg-proto/xorg-proto-2018.4.ebuild
index a5b2a6dbded..7f883941f8f 100644
--- a/x11-base/xorg-proto/xorg-proto-2018.4.ebuild
+++ b/x11-base/xorg-proto/xorg-proto-2018.4.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 MY_PN="${PN/xorg-/xorg}"
 MY_P="${MY_PN}-${PV}"
 
-EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/proto/${MY_PN};
+EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/proto/${MY_PN}.git;
 
 if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
@@ -15,7 +15,7 @@ fi
 inherit ${GIT_ECLASS} meson
 
 DESCRIPTION="X.Org combined protocol headers"
-HOMEPAGE="https://cgit.freedesktop.org/xorg/proto/xorgproto/;
+HOMEPAGE="https://gitlab.freedesktop.org/xorg/proto/xorgproto;
 if [[ ${PV} = * ]]; then
SRC_URI=""
 else

diff --git a/x11-base/xorg-proto/xorg-proto-.ebuild 
b/x11-base/xorg-proto/xorg-proto-.ebuild
index d2b4b3d1186..9399dc7c97f 100644
--- a/x11-base/xorg-proto/xorg-proto-.ebuild
+++ b/x11-base/xorg-proto/xorg-proto-.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
@@ -6,7 +6,7 @@ EAPI=6
 MY_PN="${PN/xorg-/xorg}"
 MY_P="${MY_PN}-${PV}"
 
-EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/proto/${MY_PN};
+EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/proto/${MY_PN}.git;
 
 if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
@@ -15,7 +15,7 @@ fi
 inherit ${GIT_ECLASS} meson
 
 DESCRIPTION="X.Org combined protocol headers"
-HOMEPAGE="https://cgit.freedesktop.org/xorg/proto/xorgproto/;
+HOMEPAGE="https://gitlab.freedesktop.org/xorg/proto/xorgproto;
 if [[ ${PV} = * ]]; then
SRC_URI=""
 else

diff --git a/x11-base/xorg-server/xorg-server-1.20.3.ebuild 
b/x11-base/xorg-server/xorg-server-1.20.3.ebuild
index 45a9266a610..228ac01881d 100644
--- a/x11-base/xorg-server/xorg-server-1.20.3.ebuild
+++ b/x11-base/xorg-server/xorg-server-1.20.3.ebuild
@@ -5,7 +5,7 @@ EAPI=5
 
 XORG_DOC=doc
 inherit xorg-2 multilib versionator flag-o-matic
-EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/xserver.git;
+EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/xserver.git;
 
 DESCRIPTION="X.Org X servers"
 SLOT="0/${PV}"

diff --git a/x11-base/xorg-server/xorg-server-1.20.4.ebuild 
b/x11-base/xorg-server/xorg-server-1.20.4.ebuild
index 96600b70e5e..f6eb007ca3a 100644
--- a/x11-base/xorg-server/xorg-server-1.20.4.ebuild
+++ b/x11-base/xorg-server/xorg-server-1.20.4.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 XORG_DOC=doc
 XORG_EAUTORECONF="yes"
 inherit xorg-3 multilib flag-o-matic
-EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/xserver.git;
+EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/xserver.git;
 
 DESCRIPTION="X.Org X servers"
 SLOT="0/${PV}"

diff --git a/x11-base/xorg-server/xorg-server-.ebuild 
b/x11-base/xorg-server/xorg-server-.ebuild
index 40361a76003..fa2165bade9 100644
--- a/x11-base/xorg-server/xorg-server-.ebuild
+++ b/x11-base/xorg-server/xorg-server-.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 XORG_DOC=doc
 inherit xorg-3 multilib flag-o-matic

[gentoo-commits] repo/gentoo:master commit in: x11-libs/libXfont2/, x11-libs/libXres/, x11-libs/libxcb/, ...

2019-03-24 Thread Matt Turner
commit: b2b83f21fa25c1e531f4760316d046052a89ad8e
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Mon Mar 25 03:40:33 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 25 03:59:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2b83f21

x11-libs/*: Update HOMEPAGE and EGIT_REPO_URI.

Bug: https://bugs.gentoo.org/681708
Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/cairo/cairo-1.16.0-r2.ebuild| 4 ++--
 x11-libs/cairo/cairo-.ebuild | 6 +++---
 x11-libs/libXfont2/libXfont2-2.0.3-r1.ebuild | 1 +
 x11-libs/libXfont2/libXfont2-.ebuild | 4 ++--
 x11-libs/libXres/libXres-1.2.0-r1.ebuild | 1 -
 x11-libs/libdrm/libdrm-2.4.96.ebuild | 4 ++--
 x11-libs/libdrm/libdrm-2.4.97.ebuild | 4 ++--
 x11-libs/libdrm/libdrm-.ebuild   | 4 ++--
 x11-libs/libva/libva-1.7.3.ebuild| 4 ++--
 x11-libs/libva/libva-1.8.3.ebuild| 4 ++--
 x11-libs/libxcb/libxcb-1.13.1.ebuild | 5 ++---
 x11-libs/xcb-util-cursor/xcb-util-cursor-0.1.3-r2.ebuild | 4 ++--
 x11-libs/xcb-util-image/xcb-util-image-0.4.0-r1.ebuild   | 4 ++--
 x11-libs/xcb-util-keysyms/xcb-util-keysyms-0.4.0-r1.ebuild   | 4 ++--
 x11-libs/xcb-util-renderutil/xcb-util-renderutil-0.3.9-r2.ebuild | 4 ++--
 x11-libs/xcb-util-wm/xcb-util-wm-0.4.1-r2.ebuild | 4 ++--
 x11-libs/xcb-util/xcb-util-0.4.0-r1.ebuild   | 4 ++--
 17 files changed, 32 insertions(+), 33 deletions(-)

diff --git a/x11-libs/cairo/cairo-1.16.0-r2.ebuild 
b/x11-libs/cairo/cairo-1.16.0-r2.ebuild
index f4962758523..33d36a60703 100644
--- a/x11-libs/cairo/cairo-1.16.0-r2.ebuild
+++ b/x11-libs/cairo/cairo-1.16.0-r2.ebuild
@@ -7,7 +7,7 @@ inherit eutils flag-o-matic autotools multilib-minimal
 
 if [[ ${PV} == ** ]]; then
inherit git-r3
-   EGIT_REPO_URI="https://anongit.freedesktop.org/git/cairo;
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/cairo/cairo.git;
SRC_URI=""
 else
SRC_URI="https://www.cairographics.org/releases/${P}.tar.xz;
@@ -15,7 +15,7 @@ else
 fi
 
 DESCRIPTION="A vector graphics library with cross-device output support"
-HOMEPAGE="https://www.cairographics.org;
+HOMEPAGE="https://www.cairographics.org/ 
https://gitlab.freedesktop.org/cairo/cairo;
 LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
 SLOT="0"
 IUSE="X aqua debug gles2 +glib opengl static-libs +svg utils valgrind xcb"

diff --git a/x11-libs/cairo/cairo-.ebuild b/x11-libs/cairo/cairo-.ebuild
index 50f6c6a7649..2145909816d 100644
--- a/x11-libs/cairo/cairo-.ebuild
+++ b/x11-libs/cairo/cairo-.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
@@ -7,7 +7,7 @@ inherit eutils flag-o-matic autotools multilib-minimal
 
 if [[ ${PV} == ** ]]; then
inherit git-r3
-   EGIT_REPO_URI="https://anongit.freedesktop.org/git/cairo;
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/cairo/cairo.git;
SRC_URI=""
 else
SRC_URI="https://www.cairographics.org/releases/${P}.tar.xz;
@@ -15,7 +15,7 @@ else
 fi
 
 DESCRIPTION="A vector graphics library with cross-device output support"
-HOMEPAGE="https://www.cairographics.org;
+HOMEPAGE="https://www.cairographics.org/ 
https://gitlab.freedesktop.org/cairo/cairo;
 LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
 SLOT="0"
 IUSE="X aqua debug gles2 +glib opengl static-libs +svg utils valgrind xcb"

diff --git a/x11-libs/libXfont2/libXfont2-2.0.3-r1.ebuild 
b/x11-libs/libXfont2/libXfont2-2.0.3-r1.ebuild
index 213dbc54ea8..b58394e5019 100644
--- a/x11-libs/libXfont2/libXfont2-2.0.3-r1.ebuild
+++ b/x11-libs/libXfont2/libXfont2-2.0.3-r1.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=5
 
+XORG_PACKAGE_NAME=libxfont
 XORG_DOC=doc
 inherit xorg-2
 

diff --git a/x11-libs/libXfont2/libXfont2-.ebuild 
b/x11-libs/libXfont2/libXfont2-.ebuild
index cbf9a115a36..9463d5e1310 100644
--- a/x11-libs/libXfont2/libXfont2-.ebuild
+++ b/x11-libs/libXfont2/libXfont2-.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
+XORG_PACKAGE_NAME=libxfont
 XORG_DOC=doc
-EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/lib/libXfont.git;
 inherit xorg-2
 
 DESCRIPTION="X.Org Xfont library"

diff --git a/x11-libs/libXres/libXres-1.2.0-r1.ebuild 
b/x11-libs/libXres/libXres-1.2.0-r1.ebuild
index e1881a43c52..f943dd0cebc 100644
--- a/x11-libs/libXres/libXres-1.2.0-r1.ebuild
+++ b/x11-libs/libXres/libXres-1.2.0-r1.ebuild
@@ -4,7 +4,6 @@

[gentoo-commits] repo/gentoo:master commit in: x11-apps/mesa-progs/, x11-apps/mkfontdir/, x11-apps/transset/

2019-03-24 Thread Matt Turner
commit: 2e25ba4cac552f7ff69d7e62f3ef15fa9374bb63
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Mon Mar 25 03:37:51 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 25 03:59:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e25ba4c

x11-apps/*: Update HOMEPAGE and EGIT_REPO_URI.

Bug: https://bugs.gentoo.org/681708
Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Matt Turner  gentoo.org>

 x11-apps/mesa-progs/mesa-progs-8.3.0.ebuild | 6 +++---
 x11-apps/mesa-progs/mesa-progs-8.4.0.ebuild | 4 ++--
 x11-apps/mesa-progs/mesa-progs-.ebuild  | 4 ++--
 x11-apps/mkfontdir/mkfontdir-1.2.0.ebuild   | 2 +-
 x11-apps/transset/transset-1.0.1.ebuild | 4 ++--
 x11-apps/transset/transset-1.0.2.ebuild | 4 ++--
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/x11-apps/mesa-progs/mesa-progs-8.3.0.ebuild 
b/x11-apps/mesa-progs/mesa-progs-8.3.0.ebuild
index 3888f77a892..fa5959248cd 100644
--- a/x11-apps/mesa-progs/mesa-progs-8.3.0.ebuild
+++ b/x11-apps/mesa-progs/mesa-progs-8.3.0.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
 MY_PN=${PN/progs/demos}
 MY_P=${MY_PN}-${PV}
-EGIT_REPO_URI="https://anongit.freedesktop.org/git/mesa/demos.git;
+EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/demos.git;
 
 if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
@@ -15,7 +15,7 @@ fi
 inherit base autotools toolchain-funcs ${GIT_ECLASS}
 
 DESCRIPTION="Mesa's OpenGL utility and demo programs (glxgears and glxinfo)"
-HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/;
+HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/ 
https://gitlab.freedesktop.org/mesa/demos;
 if [[ ${PV} == * ]]; then
SRC_URI=""
KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 sparc x86"

diff --git a/x11-apps/mesa-progs/mesa-progs-8.4.0.ebuild 
b/x11-apps/mesa-progs/mesa-progs-8.4.0.ebuild
index a2a56e359cd..84d6850209c 100644
--- a/x11-apps/mesa-progs/mesa-progs-8.4.0.ebuild
+++ b/x11-apps/mesa-progs/mesa-progs-8.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ MY_PN="${PN/progs/demos}"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="Mesa's OpenGL utility and demo programs (glxgears and glxinfo)"
-HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/;
+HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/ 
https://gitlab.freedesktop.org/mesa/demos;
 if [[ ${PV} = * ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/demos.git;

diff --git a/x11-apps/mesa-progs/mesa-progs-.ebuild 
b/x11-apps/mesa-progs/mesa-progs-.ebuild
index 248a1db51fc..c0dc4af1460 100644
--- a/x11-apps/mesa-progs/mesa-progs-.ebuild
+++ b/x11-apps/mesa-progs/mesa-progs-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ MY_PN="${PN/progs/demos}"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="Mesa's OpenGL utility and demo programs (glxgears and glxinfo)"
-HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/;
+HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/ 
https://gitlab.freedesktop.org/mesa/demos;
 if [[ ${PV} = * ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/demos.git;

diff --git a/x11-apps/mkfontdir/mkfontdir-1.2.0.ebuild 
b/x11-apps/mkfontdir/mkfontdir-1.2.0.ebuild
index 106e3bb6bed..b6689f368a1 100644
--- a/x11-apps/mkfontdir/mkfontdir-1.2.0.ebuild
+++ b/x11-apps/mkfontdir/mkfontdir-1.2.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 DESCRIPTION="create an index of X font files in a directory"
-HOMEPAGE="https://www.x.org/wiki/ https://cgit.freedesktop.org/;
+HOMEPAGE="https://www.x.org/wiki/ 
https://gitlab.freedesktop.org/xorg/app/mkfontdir;
 
 LICENSE="MIT"
 SLOT="0"

diff --git a/x11-apps/transset/transset-1.0.1.ebuild 
b/x11-apps/transset/transset-1.0.1.ebuild
index d0aa1d6e3b3..52eefdd0f0b 100644
--- a/x11-apps/transset/transset-1.0.1.ebuild
+++ b/x11-apps/transset/transset-1.0.1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit xorg-2
 
 DESCRIPTION="An utility for setting opacity property"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/xapps 
https://cgit.freedesktop.org/xorg/app/transset/;
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xapps 
https://gitlab.freedesktop.org/xorg/app/transset;
 
 LICENSE="SGI-B-2.0"
 KEYWORDS="amd64 x86"

diff --git 

[gentoo-commits] proj/genkernel:master commit in: /

2019-03-24 Thread Thomas Deutschmann
commit: ad81cac6c150d4ba0136520812f95f508a81d5cd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 25 02:20:52 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 25 02:20:52 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=ad81cac6

Make "--[no-]ssh" parameter work

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

 gen_determineargs.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gen_determineargs.sh b/gen_determineargs.sh
index cdd6f2a..5b4a240 100755
--- a/gen_determineargs.sh
+++ b/gen_determineargs.sh
@@ -116,6 +116,7 @@ determine_real_args() {
set_config_with_override BOOL   SYMLINK  CMD_SYMLINK
set_config_with_override STRING INSTALL_MOD_PATH 
CMD_INSTALL_MOD_PATH
set_config_with_override BOOL   OLDCONFIGCMD_OLDCONFIG
+   set_config_with_override BOOL   SSH  CMD_SSH
  "no"
set_config_with_override BOOL   LVM  CMD_LVM
set_config_with_override BOOL   DMRAID   CMD_DMRAID
set_config_with_override BOOL   ISCSICMD_ISCSI



[gentoo-commits] proj/genkernel:master commit in: /

2019-03-24 Thread Thomas Deutschmann
commit: 1730c1575e3f51ebc409e7fcb51900f32cbc1cbd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 25 02:55:03 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 25 02:55:03 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=1730c157

dropbear: add error handling

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

 gen_cmdline.sh   | 12 
 gen_initramfs.sh | 43 +--
 2 files changed, 41 insertions(+), 14 deletions(-)

diff --git a/gen_cmdline.sh b/gen_cmdline.sh
index 6d9dd39..31b1d79 100755
--- a/gen_cmdline.sh
+++ b/gen_cmdline.sh
@@ -446,6 +446,18 @@ parse_cmdline() {
--ssh|--no-ssh)
CMD_SSH=`parse_optbool "$*"`
print_info 2 "CMD_SSH: ${CMD_SSH}"
+   if isTrue "${CMD_SSH}" && [ ! -e /usr/sbin/dropbear ]
+   then
+   echo 'Error: --ssh requires net-misc/dropbear' \
+   'to be installed on the host system.'
+   exit 1
+   fi
+   if isTrue "${CMD_SSH}" && [ ! -e 
/etc/dropbear/authorized_keys ]
+   then
+   echo 'Error: --ssh requires that dropbear is 
configured' \
+   'but /etc/dropbear/authorized_keys does 
not exist!'
+   exit 1
+   fi
;;
--loglevel=*)
CMD_LOGLEVEL="${*#*=}"

diff --git a/gen_initramfs.sh b/gen_initramfs.sh
index 1469aaa..a90668e 100755
--- a/gen_initramfs.sh
+++ b/gen_initramfs.sh
@@ -693,15 +693,30 @@ append_dropbear(){
then
if [ -e /usr/bin/dropbearconvert -a /etc/ssh/ssh_host_rsa_key ]
then
-   /usr/bin/dropbearconvert openssh dropbear 
/etc/ssh/ssh_host_rsa_key /etc/dropbear/dropbear_rsa_host_key
+   if /usr/bin/dropbearconvert openssh dropbear 
/etc/ssh/ssh_host_rsa_key /etc/dropbear/dropbear_rsa_host_key
+   then
+   print_info 1 "$(getIndent 2)SSH: >> 
/etc/ssh/ssh_host_rsa_key converted into /etc/dropbear/dropbear_rsa_host_key"
+   else
+   gen_die "RSA host key conversion using 
dropbearconvert failed"
+   fi
else
-   /usr/bin/dropbearkey -t rsa -f 
/etc/dropbear/dropbear_rsa_host_key -s 4096 > /dev/null
+   if /usr/bin/dropbearkey -t rsa -f 
/etc/dropbear/dropbear_rsa_host_key -s 4096 > /dev/null
+   then
+   print_info 1 "$(getIndent 2)SSH: >> New 
dropbear RSA host key /etc/dropbear/dropbear_rsa_host_key created"
+   else
+   gen_die "RSA host key generation using 
dropbearkey failed"
+   fi
fi
fi
-   
+
if [ ! -e /etc/dropbear/dropbear_dss_host_key ]
then
-   /usr/bin/dropbearkey -t dss -f 
/etc/dropbear/dropbear_dss_host_key > /dev/null
+   if /usr/bin/dropbearkey -t dss -f 
/etc/dropbear/dropbear_dss_host_key > /dev/null
+   then
+   print_info 1 "$(getIndent 2)SSH: >> New dropbear DSS 
host key /etc/dropbear/dropbear_dss_host_key created"
+   else
+   gen_die "DSS host key generation using dropbearkey 
failed"
+   fi
fi
 
cd "${TEMP}" \
@@ -712,20 +727,20 @@ append_dropbear(){
mkdir -p ${TEMP}/initramfs-dropbear-temp/bin
mkdir -p ${TEMP}/initramfs-dropbear-temp/root/.ssh
 
-   cp -L ${GK_SHARE}/defaults/login-remote.sh 
${TEMP}/initramfs-dropbear-temp/bin/
-   cp -L /etc/dropbear/{dropbear_rsa_host_key,dropbear_dss_host_key} 
${TEMP}/initramfs-dropbear-temp/etc/dropbear/
-   cp -L /etc/dropbear/authorized_keys 
${TEMP}/initramfs-dropbear-temp/root/.ssh
-   cp -L /etc/localtime ${TEMP}/initramfs-dropbear-temp/etc/
+   cp -L ${GK_SHARE}/defaults/login-remote.sh 
${TEMP}/initramfs-dropbear-temp/bin/ || gen_die "failed to copy 
defaults/login-remote.sh"
+   cp -L /etc/dropbear/{dropbear_rsa_host_key,dropbear_dss_host_key} 
${TEMP}/initramfs-dropbear-temp/etc/dropbear/ || gen_die "failed to copy 
dropbear host key(s)"
+   cp -L /etc/dropbear/authorized_keys 
${TEMP}/initramfs-dropbear-temp/root/.ssh || gen_die "failed to copy 
/etc/dropbear/authorized_keys. Did you forget to configure dropbear?"
+   cp -L /etc/localtime ${TEMP}/initramfs-dropbear-temp/etc/ || gen_die 
"failed to copy /etc/localtime. Please set system's timezone!"
if [ ${ARCH} = "x86_64" ]
then
mkdir -p ${TEMP}/initramfs-dropbear-temp/lib64
-   cp -L 

[gentoo-commits] proj/genkernel:master commit in: doc/, /

2019-03-24 Thread Thomas Deutschmann
commit: b79bf458363f70195715111468f445144e96b7e0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 25 02:06:12 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 25 02:06:12 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=b79bf458

sys-fs/cryptsetup[static] isn't required since 2012 anymore ...

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

 doc/genkernel.8.txt | 9 -
 gen_initramfs.sh| 2 +-
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt
index 26196db..54ea00a 100644
--- a/doc/genkernel.8.txt
+++ b/doc/genkernel.8.txt
@@ -335,8 +335,7 @@ INITIALIZATION
 Includes or excludes disk label and uuid support in your initrd.
 
 *--*[*no-*]*luks*::
-Includes or excludes Luks support from static binaries if they exist on
-the system.
+Includes or excludes LUKS support.
 
 *--*[*no-*]*gpg*::
 Includes or excludes support for GnuPG 1.x, the portable standalone branch
@@ -461,11 +460,11 @@ recognized by the kernel itself.
 Does the same as *root*=, which should be used in its place.
 
 *crypt_root*=<...>::
-This specifies the device encrypted by Luks, which contains the
+This specifies the device encrypted by LUKS, which contains the
 root filesystem to mount.
 
 *crypt_swap*=<...>::
-This specifies the swap device encrypted by Luks.
+This specifies the swap device encrypted by LUKS.
 
 *root_key*=<...>::
 In case your root is encrypted with a key, you can use a device
@@ -478,7 +477,7 @@ recognized by the kernel itself.
 look for the device in every boot.
 
 *root_trim*=(yes|no)::
-Enables TRIM support for a Luks-based root device.  Only useful
+Enables TRIM support for a LUKS-based root device.  Only useful
 with SSD setups.  Have a look at 'https://en.wikipedia.org/wiki/TRIM'
 for more information.
 

diff --git a/gen_initramfs.sh b/gen_initramfs.sh
index d684844..1469aaa 100755
--- a/gen_initramfs.sh
+++ b/gen_initramfs.sh
@@ -649,7 +649,7 @@ append_overlay(){
 }
 
 append_luks() {
-   local _luks_error_format="LUKS support cannot be included: %s. Please 
emerge sys-fs/cryptsetup[static]."
+   local _luks_error_format="LUKS support cannot be included: %s. Please 
emerge sys-fs/cryptsetup."
local _luks_source=/sbin/cryptsetup
local _luks_dest=/sbin/cryptsetup
 



[gentoo-commits] proj/genkernel:master commit in: /

2019-03-24 Thread Thomas Deutschmann
commit: 37f8173af1b05399bc99c53d08feadeccd13fd82
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 25 01:48:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 25 01:48:36 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=37f8173a

Update longusage()

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

 gen_cmdline.sh | 18 +++---
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/gen_cmdline.sh b/gen_cmdline.sh
index 051350a..6d9dd39 100755
--- a/gen_cmdline.sh
+++ b/gen_cmdline.sh
@@ -35,7 +35,13 @@ longusage() {
   echo "   --no-xconfigDon't run xconfig after oldconfig"
   echo "   --save-config   Save the configuration to /etc/kernels"
   echo "   --no-save-configDon't save the configuration to 
/etc/kernels"
-  echo "   --virtioInclude VirtIO kernel code"
+  echo "   --hypervEnable Microsoft Hyper-V kernel options 
in kernel"
+  echo "   --no-hyperv Don't enable Microsoft Hyper-V kernel 
options in kernel"
+  echo "   --microcode[=]Enable early microcode support in 
kernel configuration,"
+  echo "   'all' for all, 'amd' for AMD and 
'intel' for Intel CPU types."
+  echo "   --no-microcode  Don't enable early microcode support in 
kernel configuration"
+  echo "   --virtioEnable VirtIO kernel options in kernel"
+  echo "   --no-virtio Don't enable VirtIO kernel options in 
kernel"
   echo "  Kernel Compile settings"
   echo "   --oldconfig Implies --no-clean and runs a 'make 
oldconfig'"
   echo "   --clean Run make clean before compilation"
@@ -101,9 +107,9 @@ longusage() {
   echo "   --mdadm Include MDADM/MDMON support"
   echo "   --no-mdadm  Exclude MDADM/MDMON support"
   echo "   --mdadm-config=   Use file as mdadm.conf in initramfs"
-  echo "   --microcode[=]Include early microcode support, for 
'all'/'amd'/'intel' CPU types"
-  echo "   --no-microcode  Exclude early microcode support"
-  echo "   --microcode-initramfs   Include early microcode in initramfs"
+  echo "   --microcode-initramfs   Prepend early microcode to initramfs"
+  echo "   --no-microcode-initramfs"
+  echo "   Don't prepend early microcode to 
initramfs"
   echo "   --nfs   Include NFS support"
   echo "   --no-nfsExclude NFS support"
   echo "   --dmraidInclude DMRAID support"
@@ -118,8 +124,6 @@ longusage() {
   echo "   --no-multipath  Exclude Multipath support"
   echo "   --iscsi Include iSCSI support"
   echo "   --no-iscsi  Exclude iSCSI support"
-  echo "   --hypervInclude Microsoft Hyper-V support"
-  echo "   --no-hyperv Exclude Microsoft Hyper-V support"
   echo "   --ssh   Include SSH (dropbear) support"
   echo "   --no-sshExclude SSH (dropbear) support"
   echo "   --bootloader=(grub|grub2)"
@@ -395,7 +399,7 @@ parse_cmdline() {
CMD_BTRFS=`parse_optbool "$*"`
print_info 2 "CMD_BTRFS: ${CMD_BTRFS}"
;;
-   --virtio)
+   --virtio|--no-virtio)
CMD_VIRTIO=`parse_optbool "$*"`
print_info 2 "CMD_VIRTIO: ${CMD_VIRTIO}"
;;



[gentoo-commits] proj/genkernel:master commit in: doc/

2019-03-24 Thread Thomas Deutschmann
commit: 8de84b46dbd7c012c5f3c69b7b8b22e692b89c76
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 25 00:59:47 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 25 01:34:04 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=8de84b46

man page: Update

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

 doc/genkernel.8.txt | 93 ++---
 1 file changed, 53 insertions(+), 40 deletions(-)

diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt
index ca84816..26196db 100644
--- a/doc/genkernel.8.txt
+++ b/doc/genkernel.8.txt
@@ -68,7 +68,7 @@ You can specify your options in any order.
 CONFIGURATION OPTIONS
 ~
 *--config*=::
-Genkernel configuration file to use
+Genkernel configuration file to use.
 
 
 DEBUGGING OPTIONS
@@ -97,18 +97,28 @@ KERNEL CONFIGURATION
 *--*[*no-*]*nconfig*::
 Runs, or does not run "make nconfig" after running "make oldconfig".
 
+*--*[*no-*]*gconfig*::
+Runs, or does not run "make gconfig" after "make oldconfig".
+
+*--*[*no-*]*xconfig*::
+Runs, or does not run "make xconfig" after "make oldconfig".
+
 *--*[*no-*]*save-config*::
 Saves, or does not save the kernel configuration to '/etc/kernels'
 if the kernel is successfully compiled.
 
-*--virtio*::
-Adds Virtio support to kernel configuration.
+*--*[*no-*]*hyperv*::
+Adds, or skip adding Microsoft Hyper-V support to kernel configuration.
 
-*--*[*no-*]*gconfig*::
-Runs, or does not run "make gconfig" after "make oldconfig".
+*--microcode*[=]::
+Adds early microcode loading support for all, only AMD or Intel processors
+to kernel configuration.
 
-*--*[*no-*]*xconfig*::
-Runs, or does not run "make xconfig" after "make oldconfig".
+*--no-microcode*::
+Do not add early microcode loading support to kernel configuration.
+
+*--*[*no-*]*virtio*::
+Adds, or skip adding VirtIO support to kernel configuration.
 
 
 KERNEL COMPILATION
@@ -202,10 +212,10 @@ LOW-LEVEL COMPILATION OPTIONS
 *--kernel-target*=::
 Override default make target (bzImage), note that values
 like *--kernel-target=* are also valid (useful for Xen
-based kernel sources)
+based kernel sources).
 
 *--kernel-binary*=::
-Override default kernel binary path (arch/foo/boot/bar)
+Override default kernel binary path (arch/foo/boot/bar).
 
 *--kernel-outputdir*=::
 Save output files outside the source tree. This should be used rather than
@@ -231,6 +241,9 @@ LOW-LEVEL COMPILATION OPTIONS
 *--utils-arch*=::
 Force to arch for utils only instead of autodetect.
 
+*--makeopts*=::
+GNU Make options such as -j2, etc.
+
 *--*[*no-*]*mountboot*::
 Mount, or not, BOOTDIR automatically if mountable.
 
@@ -240,13 +253,11 @@ LOW-LEVEL COMPILATION OPTIONS
 *--modprobedir*=::
 Set the location of the modprobe.d-directory, default is '/etc/modprobe.d'.
 
-*--makeopts*=::
-GNU Make options such as -j2, etc.
-
 *--*[*no-*]*nice*[=]::
 Runs the kernel make at the default niceness (reduction in priority) of
 10, or in the case of --no-nice, runs the kernel make at normal priority.
 
+
 INITIALIZATION
 ~~
 *--splash*=::
@@ -279,15 +290,17 @@ INITIALIZATION
 By default the ramdisk will be built *without* an mdadm.conf and
 will auto-detect arrays during boot-up.
 
+*--*[*no-*]*microcode-initramfs*::
+Prepends, or do not prepend ucode(s) to the initramfs.
+But only when kernel configuration does support early microcode loading.
+See *--microcode* option to auto-update kernel configuration.
+
 *--*[*no-*]*dmraid*::
 Includes or excludes DMRAID support.
 
 *--*[*no-*]*nfs*::
 Includes or excludes NFS support.
 
-*--*[*no-*]*microcode*::
-Includes or excludes early microcode support.
-
 *--*[*no-*]*e2fsprogs*::
 Includes or excludes e2fsprogs.
 
@@ -298,19 +311,16 @@ INITIALIZATION
 Includes or excludes Btrfs support.
 
 *--*[*no-*]*multipath*::
-Includes or excludes Multipath support
+Includes or excludes Multipath support.
 
 *--*[*no-*]*iscsi*::
-Includes or excludes iSCSI support
-
-*--*[*no-*]*hyperv*::
-Includes or excludes Microsoft Hyper-V support
+Includes or excludes iSCSI support.
 
 *--*[*no-*]*ssh*::
 Includes or excludes SSH (dropbear) support for remote LUKS keys.
 
-*--bootloader*=*grub*::
-Add new kernel to GRUB configuration.
+*--bootloader*=::
+Add new kernel to GRUB or GRUB2 configuration.
 
 *--linuxrc*=::
 Use  for the linuxrc instead of the genkernel linuxrc.
@@ -338,10 +348,10 @@ INITIALIZATION
 Includes or excludes busybox in the initrd or initramfs.
 
 *--*[*no-*]*unionfs*::
-Includes or excludes support for unionfs
+Includes or excludes support for unionfs.
 
 *--*[*no-*]*netboot*::
-Creates or does not create a self-contained env in the initramfs
+Creates or does not create a self-contained env in the initramfs.
 
 

[gentoo-commits] proj/genkernel:master commit in: /

2019-03-24 Thread Thomas Deutschmann
commit: 1647b1a27c50b419010ef39f55b55328a6500077
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Mar 25 01:24:47 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Mar 25 01:34:10 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=1647b1a2

Makefile: Update verify-doc target

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

 Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index d18a3f2..4751822 100644
--- a/Makefile
+++ b/Makefile
@@ -72,7 +72,8 @@ verify-doc: doc/genkernel.8.txt
tr -s ' ' '\n' | \
sed -r \
-e 's,[[:space:]]*--(no-)?,,g' \
-   -e '/bootloader/s,=grub,,g' | \
+   -e '/bootloader/s,=\(grub\|grub2\),,g' \
+   -e '/microcode/s,\[\],,g' | \
while read opt ; do \
regex="^*--(...no-...)?$$opt" ; \
if ! egrep -e "$$regex" $< -sq ; then \



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

2019-03-24 Thread Georgy Yakovlev
commit: 5eeb345a341c0f6c3403f28dceb96147e789c46d
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Mar 25 01:57:15 2019 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Mar 25 01:57:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eeb345a

app-misc/skim: bump to 0.6.3

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

 app-misc/skim/Manifest  |   2 +
 app-misc/skim/skim-0.6.3.ebuild | 108 
 2 files changed, 110 insertions(+)

diff --git a/app-misc/skim/Manifest b/app-misc/skim/Manifest
index 11f58cf328d..567cd4649d4 100644
--- a/app-misc/skim/Manifest
+++ b/app-misc/skim/Manifest
@@ -59,6 +59,7 @@ DIST skim-0.5.4.tar.gz 87040 BLAKE2B 
c7816dae5142d3230bf98db7c86ec8b8d78adac52df
 DIST skim-0.5.5.tar.gz 87411 BLAKE2B 
98dbd5d8f5d45a0752975316aa41971622e6d65e91dbfe9c8248882931d05dcfb0d8ab32fc51504060fd41aef7c456c8f753e2939a726ad41cd3b82515adeeb1
 SHA512 
a6970252633e32004edc4e4cf910a5d07d1a63b11b77e56d5ddc6ad656d33ea984dc02523fbfaf5eeb58c197d95a17fb6bcdf16448d68c6a239798b3180d7aa2
 DIST skim-0.6.1.tar.gz 80538 BLAKE2B 
bff6e24e0c2b8461cf61f7f1e48f96ba0a353e39de0f4ead0ae40748286d666955f35cf3e088fc4253b9bde97784321a9636c0cee20fe4039782c57acaed8b66
 SHA512 
7fba58012cdce94f8d55afbde1ca8a4adcf07a2e4bf86da58b54cdc31fe700824ac7a16e1ea9558bd5f74ed21f8fda25a50237c68c4ca8ded9e9935570386ad1
 DIST skim-0.6.2.tar.gz 81573 BLAKE2B 
91843436748456d513e4abd19682ce329d4971ef9d989a7c059088aeaa4274cb2fe4d38760102f3c16bc6638a2b0f1162609a5a3531c8a75bbba508e957fc487
 SHA512 
47c89b9f6bdbbc3c470c4edb5b23fcf94165cb34ab7be4de6113b4eb4433d81064395c5495d2129c7877dd8ed3bea9067f1d2b965fd7683c39aec1bb070b7b3d
+DIST skim-0.6.3.tar.gz 85901 BLAKE2B 
1a16c725b07a582f125d9e64d0f520e1218ca3fe1cd4ccc73e78a05b2d19d8d63387cb11c9da50c29237fdd31bce668bd1ca12d8c72509c7c1041774f6b34fc1
 SHA512 
9f1bc94a4566e5ba1419ba06ce3eef66280ca4dc0824414af20ea8ff2cf58abbe3ec9a83d909c95542b88e88bb97be1c8dd27278844c17adeee45ee1ef98352a
 DIST strsim-0.6.0.crate 8500 BLAKE2B 
fb5d756691a359d086886bf579445a262d2691285c120670e1b9da828922e43630339d59e4dbc98fe1fd6c92785264bef645be4ca80681059d8ee9f6d7be582b
 SHA512 
43cbcf2cab7f91515f52f20719e8013cff23807ca79a9a69f1997ec1ba2eacf713d64c88e33f4c9ba852fb3dda4b87e943587ae4b6ff5bfbbb81deb6dbf76a97
 DIST strsim-0.7.0.crate 8435 BLAKE2B 
6869075bc3949fbdec1b74548b816560d1bf3759ba4c3e972a84f885e6732edd25596d75a4b6f6b85d93821f559757d096cb5f0b0eb04dabd8bb974d214f3188
 SHA512 
3f92df0f444129b16fbb15c533b7bc1d6f18970b487b57345f74747fb7f41e3dc0cb61255712e94d419a5777b8f6a9cdf1a716718698c479eb98dfb6464d1983
 DIST syn-0.15.29.crate 146203 BLAKE2B 
b9280bda7735dfc08f80816e5db9c22e27596e5bfcbc54accd37a9bc4899c2caf1bcef03155c653441365ed9fc8cad910fa47c58ba7a386b3fc9f40b4be59a27
 SHA512 
1a5f365a8239758c9a2e2cfac3bac1bc94995ea48eb087cc8a2dc62a33a2f22b2bbe2985e344fdd758021ab66e55ff17e76c0234e9ae342499d1ae1fc3294767
@@ -72,6 +73,7 @@ DIST time-0.1.38.crate 28500 BLAKE2B 
f0d98a7288616c2a5a07691e6bfe2bed5b043c9ddec
 DIST time-0.1.42.crate 30005 BLAKE2B 
6d85ae2e56612b5c6955921b671ac62ad10c174fa9fd382e2d76018fc2789253836397b980f8e6d0db4f1b19da244c64d3bffb4fa6c25ac0b66e7ba9876590d4
 SHA512 
4df662212377093b0fd8fcd88ddc30b20a8af7d989c2e100c0cf64f9741e88eea6e858e1aa4220be6b76b0cf8b62c8116b492010d74d1ebef197c66aa130aa83
 DIST tuikit-0.2.1.crate 31554 BLAKE2B 
e07173a3dc76110a905c448291e2a9f5b75bc963a47349744700bab7063a9b652eaf66ff2bf242280c76c902d914baf474076c7c5a531a310a1dc54bffe619ac
 SHA512 
1aca6f200f15765191d46fb136486eeb3da70ecd59ad7716769ffe41950020f6eb36b365ab1c7f7844ba07f0e75f7c4644611ff592ae316fb9fad139b64e8f06
 DIST tuikit-0.2.2.crate 33081 BLAKE2B 
fd9f918d8fffd424d67975975a17a2c3e11c9f87ff1f790e3c5eb09de609e78980cf63b76ef3761b8061473eced6801dfddb52d891a0e3bc864e7be7cc1e3369
 SHA512 
fa9b6aeebb9e3ea93ec3378c76e11d9f86fa17be1d4b36b3bb9ff4c98ea3ab8f020e4464f035af9f5e4c5ee44ce1d4fea1871d5c81f025666e19e5c5f8c18ff9
+DIST tuikit-0.2.4.crate 33957 BLAKE2B 
3fa1eeb5ac69e0754ada795f79c4c487b5dd4477af57d20c526b8a8f79b586b9de0ec1038cacc7d103b1947ea2cf034658b741c4670acd6a5582a49dc5afd3e0
 SHA512 
1020e264eb63bf966cc34dadbf74d19e752752f53f07a6148c79310cb5d0cb33f1d57566c2e72dff005012eaa62b02c673ff69ac857805fe28af4e7648c18ac4
 DIST ucd-util-0.1.3.crate 25897 BLAKE2B 
d67d250603625d7fe55b1bd17a8bff03ddf2e48b531e8f754f51dcd49370a2b66d0915842fb2fce85a69df2c38f9c086ac3c36115d40c5a8138e5451f71a1cfe
 SHA512 
50a796feb198012241d73001bb53c8e3d3168df379de91d7ecaccfd829b08a356afe3db736fb8cced8748141d7a9e4b157440442c425816c78c0615c08e20f2e
 DIST unicode-width-0.1.4.crate 15283 BLAKE2B 
61a72cc00c929624bbf46ab89a8850270ce36d0c986dd302b436b98405e2b53c1199588c70920a3379fa55c9dadd070404a8d3580544c02ffe9bbdb6ed078215
 SHA512 
f06b243e533ab9c68d88ccd06a283dfff5fd13e9340cf11bfa74473fc9100bb704c34e7fb66919202a97e7d2ba2e7eed968eced02d557835a06e6a0166865ea3
 DIST unicode-width-0.1.5.crate 15761 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: edcc06dc2f246bbf31b8abcdc2465a1980e6766a
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 21:41:00 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edcc06dc

sys-kernel/raspberrypi-image: drop empty src_{configure,compile}

Portage doesn't do anything in these phases by default if there is no
file to run. No need to have explicit empty functions.

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

 sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild | 4 
 1 file changed, 4 deletions(-)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index a18735fa66e..c747c307216 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -19,10 +19,6 @@ DOC_CONTENTS="Please configure your ram setup by editing 
/boot/config.txt"
 
 RESTRICT="binchecks strip"
 
-src_configure() { :; }
-
-src_compile() { :; }
-
 src_install() {
insinto /lib/modules
doins -r modules/*



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: de304edf9d2f0f8991cb389a7a252c661218f48c
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 21:43:45 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de304edf

sys-kernel/raspberrypi-image: drop empty variables

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

 sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild | 6 --
 1 file changed, 6 deletions(-)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index c747c307216..21ff9da6347 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -7,16 +7,10 @@ inherit git-r3 mount-boot readme.gentoo-r1
 
 DESCRIPTION="Raspberry Pi (all versions) kernel and modules"
 HOMEPAGE="https://github.com/raspberrypi/firmware;
-SRC_URI=""
-
 LICENSE="GPL-2 raspberrypi-videocore-bin"
 SLOT="0"
-KEYWORDS=""
-IUSE=""
-
 EGIT_REPO_URI="https://github.com/raspberrypi/firmware;
 DOC_CONTENTS="Please configure your ram setup by editing /boot/config.txt"
-
 RESTRICT="binchecks strip"
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: 8bc55d267cad793687b335b1863b11888fc36e22
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 22:36:47 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bc55d26

sys-kernel/raspberrypi-image: simplify installing kernel images

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

 sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index 8eefabc8bf4..2ed2790951f 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -27,6 +27,5 @@ src_install() {
insinto /lib/modules
doins -r modules/*
insinto /boot
-   newins boot/kernel.img kernel.img
-   newins boot/kernel7.img kernel7.img
+   doins boot/*.img
 }



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: e101fdeb53f965dae2a7d901ae8d728ffcb2b834
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 22:30:17 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e101fdeb

sys-kernel/raspberrypi-image: : add logic for non-live releases

This allows adding release ebuilds by copying the file verbatim.

Auto-resolution of tag version from ebuild was contributed by Conrad
Kostecki  kostecki.com>.

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

 sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild | 14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index ac28eee28fe..47546b5babf 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -3,15 +3,25 @@
 
 EAPI=7
 
-inherit git-r3 mount-boot
+inherit mount-boot
 
 DESCRIPTION="Raspberry Pi (all versions) kernel and modules"
 HOMEPAGE="https://github.com/raspberrypi/firmware;
 LICENSE="GPL-2 raspberrypi-videocore-bin"
 SLOT="0"
-EGIT_REPO_URI="https://github.com/raspberrypi/firmware;
 RESTRICT="binchecks strip"
 
+if [[ "${PV}" ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/raspberrypi/firmware;
+else
+   [[ "$(ver_cut 4)" == 'p' ]] || die "Unsupported version format, tweak 
the ebuild."
+   MY_PV="1.$(ver_cut 5)"
+   
SRC_URI="https://github.com/raspberrypi/firmware/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
+   S="${WORKDIR}/firmware-${MY_PV}"
+   KEYWORDS="-* ~arm"
+fi
+
 src_install() {
insinto /lib/modules
doins -r modules/*



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: dcb6a89b72ec33acc8c97e3e844bd7a8bb68177d
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 22:56:17 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:18:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb6a89b

sys-kernel/raspberrypi-image: drop old versions

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

 sys-kernel/raspberrypi-image/Manifest  |  2 -
 .../raspberrypi-image-4.1.17_p20160209.ebuild  | 62 --
 .../raspberrypi-image-4.1.19_p20160309.ebuild  | 62 --
 3 files changed, 126 deletions(-)

diff --git a/sys-kernel/raspberrypi-image/Manifest 
b/sys-kernel/raspberrypi-image/Manifest
index 44a306a64d1..4d094a1b9a6 100644
--- a/sys-kernel/raspberrypi-image/Manifest
+++ b/sys-kernel/raspberrypi-image/Manifest
@@ -1,3 +1 @@
-DIST raspberrypi-firmware-1.20160209.tar.gz 114792438 BLAKE2B 
10453495af56d4f50859ec2ee4bdccbba131518b1460dfdf61143d7e7965ccb53b7bf83a4ddc340caa88bb6653762ec58a55fbaf3e7fd72c65c714ce1df489b8
 SHA512 
281092c11d422d821e5e2b0479c3b8f891f8df66cfbf931992902d759c99ed40cbb2d9fada1f944372e5bcd8af69784739e79e9912db3482892b10bf668611f2
-DIST raspberrypi-firmware-1.20160309.tar.gz 115673896 BLAKE2B 
d08101180cd7373f9e93817ee8adc0c2798ff3f53e8a488232fff186707a602e38d916fee292662eac8858d7da857f66f10bac9837e479d657013d985b48d709
 SHA512 
30a6396ef52355c6f6404354645e8d0f5bbf70332b0e1661dfa8ef3456154d07e105d3b7b5bd64efb3e7397fa2fb8c36de1aa78040dc4118060b26949c2ab884
 DIST raspberrypi-image-4.14.98_p20190215.tar.gz 123074917 BLAKE2B 
cefedb5c979db7dfd47938aad37a567d91d3ad78247c7a63f789362768ab7a39a1967ac116b4b0475e3b210ab11f6474706df042af85a622e8e7905c85ec7498
 SHA512 
082f26caf427222d838881e5f1e9fa0136765b3eaf74a84877fc33616fd07e49085db0889226c40c655039a9d41a10566510c7d752cfc48a67b4683616a51193

diff --git 
a/sys-kernel/raspberrypi-image/raspberrypi-image-4.1.17_p20160209.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-4.1.17_p20160209.ebuild
deleted file mode 100644
index daf784d859f..000
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-4.1.17_p20160209.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit readme.gentoo
-
-DESCRIPTION="Raspberry PI boot loader and firmware"
-HOMEPAGE="https://github.com/raspberrypi/firmware;
-MY_PV="1.20160209"
-SRC_URI="https://github.com/raspberrypi/firmware/archive/${MY_PV} -> 
raspberrypi-firmware-${MY_PV}.tar.gz"
-
-LICENSE="GPL-2 raspberrypi-videocore-bin"
-SLOT="${PVR}"
-KEYWORDS="~arm -*"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-S=${WORKDIR}/firmware-${MY_PV}
-
-RESTRICT=""
-
-pkg_preinst() {
-   if [ -z "${REPLACING_VERSIONS}" ] ; then
-   local msg=""
-   if [ -e "${D}"/boot/cmdline.txt -a -e 
"${ROOT}"/boot/cmdline.txt ] ; then
-   msg+="/boot/cmdline.txt "
-   fi
-   if [ -e "${D}"/boot/config.txt -a -e "${ROOT}"/boot/config.txt 
] ; then
-   msg+="/boot/config.txt "
-   fi
-   if [ -n "${msg}" ] ; then
-   msg="This package installs following files: ${msg}."
-   msg="${msg} Please remove(backup) your copies during 
install"
-   msg="${msg} and merge settings afterwards."
-   msg="${msg} Further updates will be CONFIG_PROTECTed."
-   die "${msg}"
-   fi
-   fi
-
-   if ! grep "${ROOT}boot" /proc/mounts >/dev/null 2>&1; then
-   ewarn "${ROOT}boot is not mounted, the files might not be 
installed at the right place"
-   fi
-}
-
-src_configure() { :; }
-
-src_compile() { :; }
-
-src_install() {
-   insinto /lib/modules
-   doins -r modules/*
-   insinto /boot
-   newins boot/kernel.img kernel-${PV}.img
-   newins boot/kernel7.img kernel7-${PV}.img
-
-   readme.gentoo_create_doc
-}
-
-DOC_CONTENTS="Please configure your ram setup by editing /boot/config.txt"

diff --git 
a/sys-kernel/raspberrypi-image/raspberrypi-image-4.1.19_p20160309.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-4.1.19_p20160309.ebuild
deleted file mode 100644
index 550713fe4a3..000
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-4.1.19_p20160309.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit readme.gentoo
-
-DESCRIPTION="Raspberry PI boot loader and firmware"
-HOMEPAGE="https://github.com/raspberrypi/firmware;
-MY_PV="1.20160309"
-SRC_URI="https://github.com/raspberrypi/firmware/archive/${MY_PV} -> 
raspberrypi-firmware-${MY_PV}.tar.gz"
-
-LICENSE="GPL-2 raspberrypi-videocore-bin"
-SLOT="${PVR}"
-KEYWORDS="~arm -*"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-

[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: dd6092806babb75c7e0a00f2dd0d5cca9428cdfa
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 22:52:01 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:18:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd609280

sys-kernel/raspberrypi-image: add new version 4.14.98_p20190215

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

 sys-kernel/raspberrypi-image/Manifest  |  1 +
 .../raspberrypi-image-4.14.98_p20190215.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/sys-kernel/raspberrypi-image/Manifest 
b/sys-kernel/raspberrypi-image/Manifest
index 16535dbf9d8..44a306a64d1 100644
--- a/sys-kernel/raspberrypi-image/Manifest
+++ b/sys-kernel/raspberrypi-image/Manifest
@@ -1,2 +1,3 @@
 DIST raspberrypi-firmware-1.20160209.tar.gz 114792438 BLAKE2B 
10453495af56d4f50859ec2ee4bdccbba131518b1460dfdf61143d7e7965ccb53b7bf83a4ddc340caa88bb6653762ec58a55fbaf3e7fd72c65c714ce1df489b8
 SHA512 
281092c11d422d821e5e2b0479c3b8f891f8df66cfbf931992902d759c99ed40cbb2d9fada1f944372e5bcd8af69784739e79e9912db3482892b10bf668611f2
 DIST raspberrypi-firmware-1.20160309.tar.gz 115673896 BLAKE2B 
d08101180cd7373f9e93817ee8adc0c2798ff3f53e8a488232fff186707a602e38d916fee292662eac8858d7da857f66f10bac9837e479d657013d985b48d709
 SHA512 
30a6396ef52355c6f6404354645e8d0f5bbf70332b0e1661dfa8ef3456154d07e105d3b7b5bd64efb3e7397fa2fb8c36de1aa78040dc4118060b26949c2ab884
+DIST raspberrypi-image-4.14.98_p20190215.tar.gz 123074917 BLAKE2B 
cefedb5c979db7dfd47938aad37a567d91d3ad78247c7a63f789362768ab7a39a1967ac116b4b0475e3b210ab11f6474706df042af85a622e8e7905c85ec7498
 SHA512 
082f26caf427222d838881e5f1e9fa0136765b3eaf74a84877fc33616fd07e49085db0889226c40c655039a9d41a10566510c7d752cfc48a67b4683616a51193

diff --git 
a/sys-kernel/raspberrypi-image/raspberrypi-image-4.14.98_p20190215.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-4.14.98_p20190215.ebuild
new file mode 100644
index 000..6bd6d37a4aa
--- /dev/null
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-4.14.98_p20190215.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit mount-boot
+
+DESCRIPTION="Raspberry Pi (all versions) kernel and modules"
+HOMEPAGE="https://github.com/raspberrypi/firmware;
+LICENSE="GPL-2 raspberrypi-videocore-bin"
+SLOT="0"
+RESTRICT="binchecks strip"
+
+RDEPEND="sys-boot/raspberrypi-firmware"
+
+if [[ "${PV}" ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/raspberrypi/firmware;
+   EGIT_CLONE_TYPE="shallow"
+else
+   [[ "$(ver_cut 4)" == 'p' ]] || die "Unsupported version format, tweak 
the ebuild."
+   MY_PV="1.$(ver_cut 5)"
+   
SRC_URI="https://github.com/raspberrypi/firmware/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
+   S="${WORKDIR}/firmware-${MY_PV}"
+   KEYWORDS="-* ~arm"
+fi
+
+src_install() {
+   insinto /lib/modules
+   doins -r modules/*
+   insinto /boot
+   doins boot/*.img
+}



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: e6782c31ff831333af4e03fd122d5a163d2afaeb
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 21:02:24 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6782c31

sys-kernel/raspberrypi-image: add maintainers

Conrad actively contributes to RPi packages and many others as proxied
maintainer.

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

 sys-kernel/raspberrypi-image/metadata.xml | 13 -
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/sys-kernel/raspberrypi-image/metadata.xml 
b/sys-kernel/raspberrypi-image/metadata.xml
index 7775715c3da..1bf4ea6603b 100644
--- a/sys-kernel/raspberrypi-image/metadata.xml
+++ b/sys-kernel/raspberrypi-image/metadata.xml
@@ -1,7 +1,18 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   andrey_ut...@gentoo.org
+   Andrey Utkin
+   
+   
+   ck+gen...@bl4ckb0x.de
+   Conrad Kostecki
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

raspberrypi/firmware




[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: 00dcc6f0c3f3547eee7652ce27cf455be26144fb
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 21:27:29 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00dcc6f0

sys-kernel/raspberrypi-image: fix description

DESCRIPTION value in ebuilds is just incorrect - it is a copy of
sys-boot/raspberrypi-firmware description.

Updated only  ebuild (older release versions will be phased out
shortly).

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

 sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index 0e6d2da6e68..077df9f790e 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
 inherit git-r3 readme.gentoo-r1
 
-DESCRIPTION="Raspberry PI boot loader and firmware"
+DESCRIPTION="Raspberry Pi (all versions) kernel and modules"
 HOMEPAGE="https://github.com/raspberrypi/firmware;
 SRC_URI=""
 



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: 4b87c186402467d8741a937b1d947f2b3722ba8b
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 22:31:14 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b87c186

sys-kernel/raspberrypi-image: use shallow git clone

By default git-r3 eclass pulls full history of the master branch, which
is huge in case of this specific upstream repository.

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

 sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index 47546b5babf..8eefabc8bf4 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -14,6 +14,7 @@ RESTRICT="binchecks strip"
 if [[ "${PV}" ==  ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/raspberrypi/firmware;
+   EGIT_CLONE_TYPE="shallow"
 else
[[ "$(ver_cut 4)" == 'p' ]] || die "Unsupported version format, tweak 
the ebuild."
MY_PV="1.$(ver_cut 5)"



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: d6abca5ecf0e5f378df7cdeaa2dddbae22f8f924
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 21:31:37 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6abca5e

sys-kernel/raspberrypi-image: inherit mount-boot

This package installs files directly into /boot which is meant to be on
a separate partition.

Suggested-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrey Utkin  gentoo.org>

 sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index 077df9f790e..dd395d591b0 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit git-r3 readme.gentoo-r1
+inherit git-r3 mount-boot readme.gentoo-r1
 
 DESCRIPTION="Raspberry Pi (all versions) kernel and modules"
 HOMEPAGE="https://github.com/raspberrypi/firmware;



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: 44eef67a97605634bc28110b8a089d795e0e3762
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 22:44:05 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:18:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44eef67a

sys-kernel/raspberrypi-image: add raspberrypi-firmware to runtime deps

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

 sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index 2ed2790951f..6bd6d37a4aa 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -11,6 +11,8 @@ LICENSE="GPL-2 raspberrypi-videocore-bin"
 SLOT="0"
 RESTRICT="binchecks strip"
 
+RDEPEND="sys-boot/raspberrypi-firmware"
+
 if [[ "${PV}" ==  ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/raspberrypi/firmware;



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: c6af4629bf4d8679ab631d8d48719e0b3e257263
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 21:47:17 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6af4629

sys-kernel/raspberrypi-image: stop generating readme

The message is exactly the same as in sys-boot/raspberrypi-firmware.
Users of this package are expected to use the firmware package, too,
hence they will see that message.

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

 sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index 21ff9da6347..72557c13f40 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -3,14 +3,13 @@
 
 EAPI=5
 
-inherit git-r3 mount-boot readme.gentoo-r1
+inherit git-r3 mount-boot
 
 DESCRIPTION="Raspberry Pi (all versions) kernel and modules"
 HOMEPAGE="https://github.com/raspberrypi/firmware;
 LICENSE="GPL-2 raspberrypi-videocore-bin"
 SLOT="0"
 EGIT_REPO_URI="https://github.com/raspberrypi/firmware;
-DOC_CONTENTS="Please configure your ram setup by editing /boot/config.txt"
 RESTRICT="binchecks strip"
 
 src_install() {
@@ -19,6 +18,4 @@ src_install() {
insinto /boot
newins boot/kernel.img kernel.img
newins boot/kernel7.img kernel7.img
-
-   readme.gentoo_create_doc
 }



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: 47879bafb12ce8ca10959d2831f5090f8d89e679
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 21:37:24 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47879baf

sys-kernel/raspberrypi-image: drop pkg_preinst

The first part of it is useless because it is about installing
config.txt and cmdline.txt, which this package doesn't do.

The second part is a check for /boot being mounted. This is done by
mount-boot eclass nowadays.

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

 .../raspberrypi-image-.ebuild  | 23 --
 1 file changed, 23 deletions(-)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index dd395d591b0..a18735fa66e 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -19,29 +19,6 @@ DOC_CONTENTS="Please configure your ram setup by editing 
/boot/config.txt"
 
 RESTRICT="binchecks strip"
 
-pkg_preinst() {
-   if [ -z "${REPLACING_VERSIONS}" ] ; then
-   local msg=""
-   if [ -e "${D}"/boot/cmdline.txt -a -e 
"${ROOT}"/boot/cmdline.txt ] ; then
-   msg+="/boot/cmdline.txt "
-   fi
-   if [ -e "${D}"/boot/config.txt -a -e "${ROOT}"/boot/config.txt 
] ; then
-   msg+="/boot/config.txt "
-   fi
-   if [ -n "${msg}" ] ; then
-   msg="This package installs following files: ${msg}."
-   msg="${msg} Please remove(backup) your copies during 
install"
-   msg="${msg} and merge settings afterwards."
-   msg="${msg} Further updates will be CONFIG_PROTECTed."
-   die "${msg}"
-   fi
-   fi
-
-   if ! grep "${ROOT}boot" /proc/mounts >/dev/null 2>&1; then
-   ewarn "${ROOT}boot is not mounted, the files might not be 
installed at the right place"
-   fi
-}
-
 src_configure() { :; }
 
 src_compile() { :; }



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/raspberrypi-image/

2019-03-24 Thread Andrey Utkin
commit: 0e1c1995d37fadc51f57ffc4e3770c23cc9587b6
Author: Andrey Utkin  gentoo  org>
AuthorDate: Sun Mar 24 21:48:31 2019 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Mon Mar 25 00:17:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e1c1995

sys-kernel/raspberrypi-image: EAPI 5 -> 7

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

 sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild 
b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
index 72557c13f40..ac28eee28fe 100644
--- a/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
+++ b/sys-kernel/raspberrypi-image/raspberrypi-image-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 inherit git-r3 mount-boot
 



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

2019-03-24 Thread Matthew Thode
commit: a547e14aff9d483af6ca37b246d5343e297cf4f2
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 25 00:00:08 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a547e14a

dev-python/oslo-concurrency: remove pike/queens

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

 dev-python/oslo-concurrency/Manifest   |  1 -
 .../oslo-concurrency-3.25.1.ebuild | 56 --
 2 files changed, 57 deletions(-)

diff --git a/dev-python/oslo-concurrency/Manifest 
b/dev-python/oslo-concurrency/Manifest
index ec9fef31ba5..01a12bcb1fd 100644
--- a/dev-python/oslo-concurrency/Manifest
+++ b/dev-python/oslo-concurrency/Manifest
@@ -1,2 +1 @@
-DIST oslo.concurrency-3.25.1.tar.gz 49218 BLAKE2B 
95fccb051ef782a0b6cd01801e9b44272a8b04ca52fd0f00f91a2aa3514885c302a3f251885f59c32303708c91331f3f59ee06ebdce4751d013559a0e7d19b16
 SHA512 
5c306e742c652d66209a3218ccdc1d1f957ec6fde0b0bcb9411a71e470e8c0402c4cc1a40a05094ce591942ed16b8e0a7b456d60a64e0299ef32a257b37c8388
 DIST oslo.concurrency-3.27.0.tar.gz 49604 BLAKE2B 
04a7ed66c6d7cf37014080113bd3782cf186f57f486d6834fd28f3d518141f8dcac6f5e67ffb5ef894bc6f5085a90aa41a041e35b72325c645f7567dd743a912
 SHA512 
fb2e1377a8bbad451ef0a2713dfbcd58ec06d455e97fc4d8acf8bfde8eb27d59826d68dd3411bd60b6d6b5e68ff629f0e6e4781b17dd4349bc5b87f17c8b9d52

diff --git a/dev-python/oslo-concurrency/oslo-concurrency-3.25.1.ebuild 
b/dev-python/oslo-concurrency/oslo-concurrency-3.25.1.ebuild
deleted file mode 100644
index e4343f6c932..000
--- a/dev-python/oslo-concurrency/oslo-concurrency-3.25.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="library for running  multi-thread, multi-process applications"
-HOMEPAGE="https://pypi.org/project/oslo.concurrency/;
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.concurrency/oslo.concurrency-${PV}.tar.gz"
-S="${WORKDIR}/oslo.concurrency-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   test? (
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
-   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
-   virtual/python-futures[${PYTHON_USEDEP}]
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
-   !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}]
-   >=dev-python/openstackdocstheme-1.18.1[${PYTHON_USEDEP}]
-   >=dev-python/reno-2.5.0[${PYTHON_USEDEP}]
-   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
-   !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}]
-   =dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   ${CDEPEND}
-   virtual/python-enum34[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/fasteners-0.7.0[${PYTHON_USEDEP}]
-"
-
-python_prepare_all() {
-   sed -i '/^futures/d' test-requirements.txt || die
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   nosetests ${PN/-/_}/tests/ || die "test failed under ${EPYTHON}"
-}



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

2019-03-24 Thread Matthew Thode
commit: 69c3e2b1bcc2bf00c087d95669b80623de25cd80
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:48:57 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69c3e2b1

app-admin/glance: remove pike/queens

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

 app-admin/glance/Manifest  |   2 -
 app-admin/glance/glance-15.0.1.ebuild  | 150 -
 app-admin/glance/glance-16.0.1.ebuild  | 145 
 app-admin/glance/glance-2017.2..ebuild | 150 -
 app-admin/glance/glance-2018.1..ebuild | 145 
 5 files changed, 592 deletions(-)

diff --git a/app-admin/glance/Manifest b/app-admin/glance/Manifest
index 214599d2107..b5526cf4aba 100644
--- a/app-admin/glance/Manifest
+++ b/app-admin/glance/Manifest
@@ -1,3 +1 @@
-DIST glance-15.0.1.tar.gz 1815463 BLAKE2B 
ec6e51340fc4d737e2bd777baf03163a0b515d19c1dc8e5203918e07b304a9539f47ba763207e26def985c6a384d21250ffe1386b433d8b606b55d3d70e4431a
 SHA512 
2da3ada256424a7817d0c49aac0940443cbefcfff3df77a623d7099badf356808b5df59f109ac233f84ac561b7310d3b8d53cafd6c9955a8e2b296a1655cedd3
-DIST glance-16.0.1.tar.gz 1957403 BLAKE2B 
a58a37b1926432ff227ebbd2b8538d25276085c4183244f930cdb6432ce00ed3927130ede24faeb9ebd25489f649c7f6542d71b9fe9614859ed3953bded13ab2
 SHA512 
dad883c308cfa6799bd5fc4111585af2bd7f2c5a20126976d1044e2bf573f94756f2ecea87f3b04fe611f80602709e0501c0efceed5061d0c752416b6255a2a2
 DIST glance-17.0.0.tar.gz 1961137 BLAKE2B 
ff649ce366739320bcc5073cb60cc24ab09e098bd6808374007f89808d6caf020a77f711a714b34f8a1ef5b0754220aab7c35c02fbdc0d3d0f44e24185a8cdc4
 SHA512 
cd10bd2d3e98ab1a80ec4f09b5954dbc334079a36d3dfc0d27c5a4f40e5920e0a6fb91c0fc5430c9e625a375e44a8d886568f2a712190dc0f80df10b4998e9af

diff --git a/app-admin/glance/glance-15.0.1.ebuild 
b/app-admin/glance/glance-15.0.1.ebuild
deleted file mode 100644
index affe9f8be82..000
--- a/app-admin/glance/glance-15.0.1.ebuild
+++ /dev/null
@@ -1,150 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1 user
-
-DESCRIPTION="Services for discovering, registering, and retrieving VM images"
-HOMEPAGE="https://launchpad.net/glance;
-
-if [[ ${PV} == * ]];then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/openstack/glance.git;
-   EGIT_BRANCH="stable/pike"
-else
-   SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm64 x86"
-fi
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="doc mysql postgres +sqlite +swift"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-
-#note to self, wsgiref is a python builtin, no need to package it
-#>=dev-python/wsgiref-0.1.2[${PYTHON_USEDEP}]
-
-RDEPEND="
-   ${CDEPEND}
-   sqlite? (
-   >=dev-python/sqlalchemy-1.0.10[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.5[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.6[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.7[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.8[sqlite,${PYTHON_USEDEP}]
-   )
-   mysql? (
-   >=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}]
-   !~dev-python/pymysql-0.7.7[${PYTHON_USEDEP}]
-   >=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.5[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.6[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.7[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.8[${PYTHON_USEDEP}]
-   )
-   postgres? (
-   >=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}]
-   >=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.5[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.6[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.7[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.8[${PYTHON_USEDEP}]
-   )
-   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
-   !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}]
-   =dev-python/pastedeploy-1.5.0[${PYTHON_USEDEP}]
-   >=dev-python/routes-2.3.1[${PYTHON_USEDEP}]
-   >=dev-python/webob-1.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sqlalchemy-migrate-0.11.0[${PYTHON_USEDEP}]
-   >=dev-python/python-sqlparse-0.2.2[${PYTHON_USEDEP}]
-   >=dev-python/alembic-0.8.10[${PYTHON_USEDEP}]
-   >=dev-python/httplib2-0.7.5[${PYTHON_USEDEP}]
-   

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

2019-03-24 Thread Matthew Thode
commit: b598b773a494ee03e5d58e0b313c3a299e05becf
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:46:52 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b598b773

sys-cluster/neutron: remove pike/queens

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

 sys-cluster/neutron/Manifest   |  10 -
 sys-cluster/neutron/neutron-11.0.6-r1.ebuild   | 255 
 sys-cluster/neutron/neutron-12.0.5-r1.ebuild   | 256 -
 sys-cluster/neutron/neutron-2017.2..ebuild | 256 -
 sys-cluster/neutron/neutron-2018.1..ebuild | 256 -
 5 files changed, 1033 deletions(-)

diff --git a/sys-cluster/neutron/Manifest b/sys-cluster/neutron/Manifest
index 2597c8fa03f..ee226797cb2 100644
--- a/sys-cluster/neutron/Manifest
+++ b/sys-cluster/neutron/Manifest
@@ -1,15 +1,5 @@
-DIST neutron-11.0.6.tar.gz 10516797 BLAKE2B 
3d7ece145a96a299a2619e592b1d055365495938506ea357f10bfc951a5ac76588c18c3201f239529e999c670d483ee91b867db61d49948fd5edf0a1aff6ff0f
 SHA512 
35e1e95ff5a08986577b95457d09da078bcc5d9f67d3c0f325d2f934a489bc0481a2e3b6300ac37d91e4ba4c3a3523e39ff1bc53dc9cc7e757d12648f3f7ab1e
-DIST neutron-12.0.5.tar.gz 10454003 BLAKE2B 
9aa617a824e00dcb8979e476bd902940f306a44d7b92f22e273e7793d93d121c0b2a5ab2d2ee21962b3aee124d00a31187df6cffa2319f799add1494fecd9afb
 SHA512 
a9e54ab43ae0a2b6798d37aad6a7cfa87ef6fa80d6121ca1b01817b93bf9480d436cffd0c526fe5d08a46256d885eb1d610039a0412a7a8cc69641db8bf1562b
 DIST neutron-13.0.2.tar.gz 10596419 BLAKE2B 
5d18c5ada86c2676ecab1c0121834c04e5c12d2c81a42ddb9554d0bdc2b7d472b5941b7290dc701c22b21b69442d04a44768c9423ff5d317b51d8cd37aa076bf
 SHA512 
4fb343039a6f6a6930d9770b02d58be732c57910e36739c8364bf8027a7ed55dafc40201ef8c349278310afc2ab6ee80fea562af94896e38891c35eaeb1faced
-DIST neutron-configs-11.0.6.tar.gz 25030 BLAKE2B 
6ca7507571983cdf576cb943bb2981623351c3de4220ccf990ba478147bcbaea06f4d5218ba6ad65c98f2a0c60c820be03429e8a22a624cf10339b80fcf17bbd
 SHA512 
d82abfcfe5c911dc8a0689e23aaad810bb3aacaf64bd35439220f41390a71958e7cd34e60500580c24ea9e8b55a6fb0441ce4e5612fad9aba2e48d6f14d4d87a
-DIST neutron-configs-12.0.5.tar.gz 26252 BLAKE2B 
c1493e313dc590445e60dcf8df9fc2b89a8e96e57ce072577b3a73fe247218a9ef9805ca9c61b79d2bd4c7aa088933762389258c1184e4572975db03c1674869
 SHA512 
05c8774d142a59da3e294f2351f1cc89f8cd275aedf3771c11d8176305ceec472980673f0ed07b3f4219a8ff4b4bb6e79f836a1f11ddd8e003d1ccd49051e5ac
 DIST neutron-configs-13.0.2.tar.gz 26109 BLAKE2B 
5de3b90dcb6f8c86ce659b3ab439a79dd920aaf57b66a1e1b29f1b0d0fd433b222335a634dca01ce2b0e07acc3011ff6bf25983071dc0ff00e78ac847ee3fdd6
 SHA512 
498f41ffec6c14597e9785da9a36c2d906138215b34017aa93f56d051078682279bcce05288d2534ff7ab8208b8251c9f721256488f6850173210e41bc6dd51c
-DIST neutron-configs-2017.2..tar.gz 25030 BLAKE2B 
6ca7507571983cdf576cb943bb2981623351c3de4220ccf990ba478147bcbaea06f4d5218ba6ad65c98f2a0c60c820be03429e8a22a624cf10339b80fcf17bbd
 SHA512 
d82abfcfe5c911dc8a0689e23aaad810bb3aacaf64bd35439220f41390a71958e7cd34e60500580c24ea9e8b55a6fb0441ce4e5612fad9aba2e48d6f14d4d87a
-DIST neutron-configs-2018.1..tar.gz 26252 BLAKE2B 
c1493e313dc590445e60dcf8df9fc2b89a8e96e57ce072577b3a73fe247218a9ef9805ca9c61b79d2bd4c7aa088933762389258c1184e4572975db03c1674869
 SHA512 
05c8774d142a59da3e294f2351f1cc89f8cd275aedf3771c11d8176305ceec472980673f0ed07b3f4219a8ff4b4bb6e79f836a1f11ddd8e003d1ccd49051e5ac
 DIST neutron-configs-2018.2..tar.gz 26109 BLAKE2B 
5de3b90dcb6f8c86ce659b3ab439a79dd920aaf57b66a1e1b29f1b0d0fd433b222335a634dca01ce2b0e07acc3011ff6bf25983071dc0ff00e78ac847ee3fdd6
 SHA512 
498f41ffec6c14597e9785da9a36c2d906138215b34017aa93f56d051078682279bcce05288d2534ff7ab8208b8251c9f721256488f6850173210e41bc6dd51c
-DIST neutron-ml2-plugins-11.0.6.tar.gz 6885 BLAKE2B 
c953d7222932d09c545dcfe01923f77cbc9e76157f78e5cb85a8e3bb03c8f3b4ab2bcc7eb2fc213578f71cf70543c4182c98bc6e5947fc1a0cbffe3d845bce20
 SHA512 
e5acaed2fc370e99c9c8b54040cdc994cd35bfbd3d74682d3c03c381568c89b316a6a87356aa6ae538a19c2ae83b6b3c512095afcc778525c2885b9b6bef04bd
-DIST neutron-ml2-plugins-12.0.5.tar.gz 7060 BLAKE2B 
7690218233971ab50623900e01fe4311e2b599661838a232616cdc4b56bff1a7fd6e6c3b7fe77f79c78c024eb571525b0e21a306c18fd884bd0dfdd6b814f2b4
 SHA512 
259db5513c014c6dda97432834f90744dec3732292a2de71d488e537f0f660959ea09890cf3dd3d22206295b259dad83440a60ee28e84a5b125547f869e0016b
 DIST neutron-ml2-plugins-13.0.2.tar.gz 7068 BLAKE2B 
fa27bd84c1d67bd36c7c7e47b6e8f98dd100e09c7a3bfa7aec615ed24e3dadf240f8ef44874c868ff92f79452afbf4a21fba46b1b9aec191bad53a62767b1861
 SHA512 
add4697c78c592dfe5ebadd3b0cf9b9c2a2c33bd05130a8e1422abf7456d8a0cc926a0d46f6b49ceee87017304d7c9c3486c975086e46f178e3bc142844f836f
-DIST neutron-ml2-plugins-2017.2..tar.gz 6885 BLAKE2B 

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

2019-03-24 Thread Matthew Thode
commit: 5b2206484dbe77ea87139ab4b58357a90b353e00
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:41:06 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b220648

sys-cluster/nova: remove pike/queens

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

 sys-cluster/nova/Manifest|   6 -
 sys-cluster/nova/nova-16.1.7.ebuild  | 251 --
 sys-cluster/nova/nova-17.0.9.ebuild  | 257 ---
 sys-cluster/nova/nova-2017.2..ebuild | 252 --
 sys-cluster/nova/nova-2018.1..ebuild | 257 ---
 5 files changed, 1023 deletions(-)

diff --git a/sys-cluster/nova/Manifest b/sys-cluster/nova/Manifest
index ee07ebb3a60..39da8d29363 100644
--- a/sys-cluster/nova/Manifest
+++ b/sys-cluster/nova/Manifest
@@ -1,9 +1,3 @@
-DIST nova-16.1.7.tar.gz 11004656 BLAKE2B 
342ab3efad95b85f07f9fcb6ac4de177270254f5f051348ac9a25992b9a118027965c60b06e56683484fe3c2c5227782991f0874dbcb9319bdccd37e6c60e263
 SHA512 
024694be9d9d5acc446ca89b6f8597dd9d255c72e32041c9a62200bf5ab72c7caee26e769a93c80b4e7cf144e4e03df1704aa12dc859e39e9835bbe80481021d
-DIST nova-17.0.9.tar.gz 0881 BLAKE2B 
9c6e79844462cce14d95bb8796c72e30a953e3fb4fa6de0ccdd359dc571997c06d34e0946f13dadd480661aee4ec9726ead099f1aa39085d64be41abe9d481af
 SHA512 
4e0b487d6eeb17c8c2e34a1823170a2e1f12df1e048b15d67fab92f3d9d5d66bfa433ee6dc8316819ca9f2f23ac57714d5a8431f3e0017c8f71a6207a5ad33d0
 DIST nova-18.1.0.tar.gz 11391992 BLAKE2B 
5dd417661908cae6e12b4a0f3af5c620bd29d3a022661c6f852cd8954940a3a0a2e84d0cf72d43ff926a13836aeb8ed2ecfe0e9be39dc882d705ab0389297891
 SHA512 
d5112d2528a70338a9293423ede81b9a5dee10cf7872e3070c33d0e16d728d1a1612b8af45ba8424400fd67322238dec299bc85bb84c10989272496b684f8cbd
-DIST nova.conf.sample-16.1.7 360926 BLAKE2B 
0cdfcff1d5faf5803de72b8113085591df4d1c7feb0591df786a5bf0e13ff133c1fcc4a2c3ebfdadf2a60943a7810e18813a00f5f78987daf3c271e3ba627911
 SHA512 
68f548e998396c7b18692fb3b1e9bf267f9bc06d73f602bb8f20bba426b6ede01e270447906f1685133cdbfd43b76ed5a9913b0167ce70f1ff3debd1ca11d378
-DIST nova.conf.sample-17.0.9 361499 BLAKE2B 
3d5543fbec2b2688d8cc1a2dbc5d954302c4168999ddd9349f3602035259439e7b1daac05bd7d60d61e9296a37ae62aaedd63cc4d77f2e03cec4614a4b3d470e
 SHA512 
c1d14671ecb2c1941a98b80a267ed47969c1ed5c27d88a2f9fa9857b318c6ff6aae9a0fe22e6c28c964221b3c38df26c632a7bbd24ca4110bd03aafa4db0f459
 DIST nova.conf.sample-18.1.0 387334 BLAKE2B 
a51b8cdc644ee60390cde3a30ba8f64a339695887b57b2640da39b5a8d34dfec51664b1249955a6cf9202ae19e8e0a8bcd805d4b87d2f6c99a5a6294cc955577
 SHA512 
be9fbab15ea1cac6d3cd1d186aab904454ef17801f9f4b2f1a37c6e46b4c69fed22a7724846049ebd343beff7753d8db408abae52ad3fca0693d70414c6afc61
-DIST nova.conf.sample-2017.2. 360926 BLAKE2B 
0cdfcff1d5faf5803de72b8113085591df4d1c7feb0591df786a5bf0e13ff133c1fcc4a2c3ebfdadf2a60943a7810e18813a00f5f78987daf3c271e3ba627911
 SHA512 
68f548e998396c7b18692fb3b1e9bf267f9bc06d73f602bb8f20bba426b6ede01e270447906f1685133cdbfd43b76ed5a9913b0167ce70f1ff3debd1ca11d378
-DIST nova.conf.sample-2018.1. 361499 BLAKE2B 
3d5543fbec2b2688d8cc1a2dbc5d954302c4168999ddd9349f3602035259439e7b1daac05bd7d60d61e9296a37ae62aaedd63cc4d77f2e03cec4614a4b3d470e
 SHA512 
c1d14671ecb2c1941a98b80a267ed47969c1ed5c27d88a2f9fa9857b318c6ff6aae9a0fe22e6c28c964221b3c38df26c632a7bbd24ca4110bd03aafa4db0f459
 DIST nova.conf.sample-2018.2. 387334 BLAKE2B 
a51b8cdc644ee60390cde3a30ba8f64a339695887b57b2640da39b5a8d34dfec51664b1249955a6cf9202ae19e8e0a8bcd805d4b87d2f6c99a5a6294cc955577
 SHA512 
be9fbab15ea1cac6d3cd1d186aab904454ef17801f9f4b2f1a37c6e46b4c69fed22a7724846049ebd343beff7753d8db408abae52ad3fca0693d70414c6afc61

diff --git a/sys-cluster/nova/nova-16.1.7.ebuild 
b/sys-cluster/nova/nova-16.1.7.ebuild
deleted file mode 100644
index dd7d9990362..000
--- a/sys-cluster/nova/nova-16.1.7.ebuild
+++ /dev/null
@@ -1,251 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 eutils linux-info multilib user
-
-DESCRIPTION="Cloud computing fabric controller (main part of an IaaS system) 
in Python"
-HOMEPAGE="https://launchpad.net/nova;
-SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/pike/nova.conf.sample
 -> nova.conf.sample-${PV}
-   https://tarballs.openstack.org/${PN}/${P}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="+compute compute-only iscsi +memcached mysql +novncproxy openvswitch 
postgres +rabbitmq sqlite"
-REQUIRED_USE="
-   !compute-only? ( || ( mysql postgres sqlite ) )
-   compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite )"
-
-CDEPEND="
-   >=dev-python/setuptools-16.0[${PYTHON_USEDEP}]
-   

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

2019-03-24 Thread Matthew Thode
commit: 553664edf2b12068a2b5ec5f9027df093383f427
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 25 00:02:20 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=553664ed

dev-python/os-brick: 2.5.5 stable amd64/x86 with cleanup

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

 dev-python/os-brick/Manifest  |  1 -
 dev-python/os-brick/os-brick-2.5.4.ebuild | 44 ---
 dev-python/os-brick/os-brick-2.5.5.ebuild |  2 +-
 3 files changed, 1 insertion(+), 46 deletions(-)

diff --git a/dev-python/os-brick/Manifest b/dev-python/os-brick/Manifest
index d48a89c1e5a..db6f0c4026e 100644
--- a/dev-python/os-brick/Manifest
+++ b/dev-python/os-brick/Manifest
@@ -1,2 +1 @@
-DIST os-brick-2.5.4.tar.gz 173675 BLAKE2B 
9e1906f718b79ed3b0b332864fc6263af7d3c9ef0da2d93b2b099e48faf805a0250c525589280b9416897d3751d01d0331867c10ee971ccd849b60f34ac2cea5
 SHA512 
bf6a696ee48591e49ff6e1eea7d74eb4acd0457257c7733ae649059f307170f4f7bd4154ada3498a801c4e54675c802eb9df096d44063b018a2628bc654ae17f
 DIST os-brick-2.5.5.tar.gz 174931 BLAKE2B 
0efa117c756728062ef0ae3bdff4ce8127bd0d800cac906960c9f2d5fcd79820e2b72753744f8acfbc52a8dce8a357583283e2adacb692cbb391c5b198b4a919
 SHA512 
a343cb9194ca1b497bdec55853258b8d51b109abbb3ea406aab672e87c5c68d00511928d8690bca88c37e65bb4d8bfb4cab2cd3ba6fbff2794edbdcb681e0cc0

diff --git a/dev-python/os-brick/os-brick-2.5.4.ebuild 
b/dev-python/os-brick/os-brick-2.5.4.ebuild
deleted file mode 100644
index fe3071c689e..000
--- a/dev-python/os-brick/os-brick-2.5.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="OpenStack Cinder brick library for managing local volume attaches"
-HOMEPAGE="https://github.com/openstack/cinder;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
-   !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
-   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
-   !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-concurrency-3.26.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.26.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-privsep-1.23.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-service-1.24.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-service-1.28.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
-   >=dev-python/retrying-1.2.3[${PYTHON_USEDEP}]
-   !~dev-python/retrying-1.3.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/os-win-3.0.0[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}

diff --git a/dev-python/os-brick/os-brick-2.5.5.ebuild 
b/dev-python/os-brick/os-brick-2.5.5.ebuild
index 0229d3350c1..fe3071c689e 100644
--- a/dev-python/os-brick/os-brick-2.5.5.ebuild
+++ b/dev-python/os-brick/os-brick-2.5.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



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

2019-03-24 Thread Matthew Thode
commit: 1160a37cb2cc9042e9997339e434b2fffec79850
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:56:47 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1160a37c

dev-python/oslo-policy: remove pike/queens

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

 dev-python/oslo-policy/Manifest  |  1 -
 dev-python/oslo-policy/oslo-policy-1.33.2.ebuild | 41 
 2 files changed, 42 deletions(-)

diff --git a/dev-python/oslo-policy/Manifest b/dev-python/oslo-policy/Manifest
index f7f4eb333c2..e0cd30dd3ce 100644
--- a/dev-python/oslo-policy/Manifest
+++ b/dev-python/oslo-policy/Manifest
@@ -1,2 +1 @@
-DIST oslo.policy-1.33.2.tar.gz 74863 BLAKE2B 
c509ae19786bdb58760413219214a6d928097003f046d51d9c42e2c738585fe7a324e875d7b0fe9b8084c4991cebdd530f382c025742f055ec9f157a48f8e969
 SHA512 
c6479993ac7ea8671632178e339d2842d185334557691ffa7ca30bc641313f080f7849e7141bbda941fcf22349ab076ab4ba2bd8dc9dae59fab6446988700848
 DIST oslo.policy-1.38.1.tar.gz 82871 BLAKE2B 
e47e96230874d1c287a1d4e930c9a5dd4ab35ccfee62b1c93c9d046adaf877c7e0cb65f9c34ef378c2a212d6986b0c1abf86af0ca6671c17f7dc8e85e1f1e706
 SHA512 
6b80a45ef550f5562d0c5cd3a0a466163d741bba7f9fb430c4e9d5273e0811d468d9c0c19c1e6168b38b4436279b81a1aec379d6513cf12d59f1a50fd7a4eb91

diff --git a/dev-python/oslo-policy/oslo-policy-1.33.2.ebuild 
b/dev-python/oslo-policy/oslo-policy-1.33.2.ebuild
deleted file mode 100644
index 9fdb94430d8..000
--- a/dev-python/oslo-policy/oslo-policy-1.33.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Support for RBAC policy enforcement across all OpenStack services"
-HOMEPAGE="https://pypi.org/project/oslo.policy/;
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.policy/oslo.policy-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/oslo-serialization-1.18.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-serialization-1.19.1[${PYTHON_USEDEP}]
-   >=dev-python/pyyaml-3.10.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/oslo.policy-${PV}"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}



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

2019-03-24 Thread Matthew Thode
commit: 3614a5c5acf841cb0e587046203772efab37860a
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:56:18 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3614a5c5

dev-python/oslo-privsep: remove pike/queens

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

 dev-python/oslo-privsep/Manifest   |  1 -
 .../oslo-privsep/oslo-privsep-1.27.0-r1.ebuild | 53 --
 2 files changed, 54 deletions(-)

diff --git a/dev-python/oslo-privsep/Manifest b/dev-python/oslo-privsep/Manifest
index 8c4f562a6a0..49aa59d6f3b 100644
--- a/dev-python/oslo-privsep/Manifest
+++ b/dev-python/oslo-privsep/Manifest
@@ -1,2 +1 @@
-DIST oslo.privsep-1.27.0.tar.gz 32766 BLAKE2B 
307bed6c5dac28eb38cb4bbb1b001cdd579ae1148c63de43aee7d740901cf53a9b6d619baf5cb5263b30b398017f3411d0ef065590f0710bf0becb85df08b879
 SHA512 
1a7980bb0dff17314081745b60037bb84a0ba0ac5f2784b4cf4dcadc2cc9cea0158c7c64652823c7ac2e9071db8f915cf68ae2b08c634d21ec51ff75c017a3e6
 DIST oslo.privsep-1.29.2.tar.gz 34376 BLAKE2B 
aab2807ec44cb984f7b304f46ffae39d2965dbfb876f08e3a6fbf24e9e70d5f0ae7a2aed9d47b126c48641c56004195bcc4ff015865e97b966e7f6b172f9f5a3
 SHA512 
8130700578cc1b54530011da259c795b6eb24ceba959f927934cf21e439d1412d393dee9f7bcb804ac52a4ae716284df8950677d5386905ac68bd6c37adfabbc

diff --git a/dev-python/oslo-privsep/oslo-privsep-1.27.0-r1.ebuild 
b/dev-python/oslo-privsep/oslo-privsep-1.27.0-r1.ebuild
deleted file mode 100644
index 836885efd6e..000
--- a/dev-python/oslo-privsep/oslo-privsep-1.27.0-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="OpenStack library for privilege separation."
-HOMEPAGE="https://pypi.org/project/oslo.privsep/;
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.privsep/oslo.privsep-${PV}.tar.gz"
-S="${WORKDIR}/oslo.privsep-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   test? (
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
-   >=dev-python/openstackdocstheme-1.17.0[${PYTHON_USEDEP}]
-   >=dev-python/reno-2.5.0[${PYTHON_USEDEP}]
-   >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
-   dev-python/nose[${PYTHON_USEDEP}] )"
-RDEPEND="
-   >=dev-python/oslo-log-3.30.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   virtual/python-enum34[${PYTHON_USEDEP}]
-   >=dev-python/cffi-1.7.0[${PYTHON_USEDEP}]
-   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
-   !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}]
-   =dev-python/greenlet-0.4.10[${PYTHON_USEDEP}]
-   >=dev-python/msgpack-0.4.0[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   # allow useage of renamed msgpack
-   sed -i '/^msgpack/d' requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-# python_test() {
-# }



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

2019-03-24 Thread Matthew Thode
commit: d266dad69224126ac32497c4cced388930791eec
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 25 00:00:57 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d266dad6

dev-python/oslo-cache: 1.30.3 stable amd64/x86 with cleanup

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

 dev-python/oslo-cache/Manifest |  1 -
 dev-python/oslo-cache/oslo-cache-1.30.1.ebuild | 39 --
 dev-python/oslo-cache/oslo-cache-1.30.3.ebuild |  2 +-
 3 files changed, 1 insertion(+), 41 deletions(-)

diff --git a/dev-python/oslo-cache/Manifest b/dev-python/oslo-cache/Manifest
index be6685e2d5d..22f3e2756ed 100644
--- a/dev-python/oslo-cache/Manifest
+++ b/dev-python/oslo-cache/Manifest
@@ -1,2 +1 @@
-DIST oslo-cache-1.30.1.tar.gz 53406 BLAKE2B 
1b518c7f7af4b95fc71f76567f8742de7c7ab520cf4a1943fc7ed7bd9f3dcfd4150f83774e507d4135c7b567e53c3beb79a0cf6295c23e23d88a49d9ce63d2ed
 SHA512 
8ee8ef32d07e8112aa7280f541446d13b3bba90fc7314eee60972180b0382a413e02cfcffbdd5bf4313aa394a25265665579f43f702a4b3754dc00f50441ca38
 DIST oslo-cache-1.30.3.tar.gz 53116 BLAKE2B 
0b63f828f61dd82b69efe7a6e345974c56b2e980d88f159dd7c3ba5484cd1e8f78a393a7f73a6f2152db1c30178a054e2f20d753a286a0cd8f7d83af7f623bf2
 SHA512 
3ab9842cd388a846fe9004b97364057245936b9af185ba0f68e6d6bcc750dd957eb873d45e686cddeec94fda6872b72e4549c71ebc9e1de4755504c2a138b85c

diff --git a/dev-python/oslo-cache/oslo-cache-1.30.1.ebuild 
b/dev-python/oslo-cache/oslo-cache-1.30.1.ebuild
deleted file mode 100644
index 476fbb16b39..000
--- a/dev-python/oslo-cache/oslo-cache-1.30.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
-
-inherit distutils-r1 vcs-snapshot
-
-MY_PN=${PN/-/.}
-
-DESCRIPTION="Oslo Caching around dogpile.cache"
-HOMEPAGE="https://launchpad.net/oslo;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/dogpile-cache-0.6.2[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.30.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.31.0[${PYTHON_USEDEP}]
-"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}

diff --git a/dev-python/oslo-cache/oslo-cache-1.30.3.ebuild 
b/dev-python/oslo-cache/oslo-cache-1.30.3.ebuild
index 71b251dd4d5..476fbb16b39 100644
--- a/dev-python/oslo-cache/oslo-cache-1.30.3.ebuild
+++ b/dev-python/oslo-cache/oslo-cache-1.30.3.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
!~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"



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

2019-03-24 Thread Matthew Thode
commit: 92ee0d27d555a32b964e665ac090f0bec0ce388f
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 25 00:04:58 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92ee0d27

dev-python/os-traits: cleanup

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

 dev-python/os-traits/Manifest   |  1 -
 dev-python/os-traits/os-traits-0.3.3.ebuild | 29 -
 2 files changed, 30 deletions(-)

diff --git a/dev-python/os-traits/Manifest b/dev-python/os-traits/Manifest
index ad368a16646..97588fc677c 100644
--- a/dev-python/os-traits/Manifest
+++ b/dev-python/os-traits/Manifest
@@ -1,2 +1 @@
-DIST os-traits-0.3.3.tar.gz 17374 BLAKE2B 
cc5707317448f66aac84e69340dc1923436846553b059753217ae51971289dc2413ce858f46fc809e80b1754c917fd431b4134b3886eaa6ffac81a4962c30730
 SHA512 
bd8a7a29170aee1be59ed21684ed2a5dbb1440841a54b522bd3ec31ef61c9fd4f6eecca812c8a8b927c285142801c3da190d7bb47c7b315312e10c1c81d50e27
 DIST os-traits-0.5.0.tar.gz 15775 BLAKE2B 
288db72d500a3187a8520b9674982f3233f8644a537ec04971453ece394344b7310cbf133785dfee7122e1aeadebee7fd91d18f57a6ccecf0f176fd569b2bfae
 SHA512 
2dd9019b13fc3394bf97fa9ff6c82d02d26dc6ca8ba8b32e619e9f88a9fdee0d3082e3818ca6a51eea9eb45997dfb48eee6976190b27dff6ab5b892747ce2a54

diff --git a/dev-python/os-traits/os-traits-0.3.3.ebuild 
b/dev-python/os-traits/os-traits-0.3.3.ebuild
deleted file mode 100644
index 3b5b610f897..000
--- a/dev-python/os-traits/os-traits-0.3.3.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="os-traits is a library containing standardized trait strings."
-HOMEPAGE="https://github.com/openstack/os-traits;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/os-client-config/

2019-03-24 Thread Matthew Thode
commit: 8448b9801ca7d969a18eed376ad0246e1158560a
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 25 00:03:25 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8448b980

dev-python/os-client-config: cleanup

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

 dev-python/os-client-config/Manifest   |  1 -
 .../os-client-config-1.28.0.ebuild | 81 --
 2 files changed, 82 deletions(-)

diff --git a/dev-python/os-client-config/Manifest 
b/dev-python/os-client-config/Manifest
index 3c2a6cde1d6..f85663fabe7 100644
--- a/dev-python/os-client-config/Manifest
+++ b/dev-python/os-client-config/Manifest
@@ -1,2 +1 @@
-DIST os-client-config-1.28.0.tar.gz 64102 BLAKE2B 
955f3e4387d38ef99805c9fa53032c974b68d2128c89b9525570f1736f74d4a757e43ec50957bd5fbc7c6c1bf9a9b97577058f44aa9abc77d58e917cb2670151
 SHA512 
80cea066eeb8dce03afa91a720b2e3449676f019f33c8ab0a3c0ecd5cfd49cd5a061abde1a4f0eb1ff947e505de74d94ba3ce71e763d2e2e4fbd1c72b313d1d9
 DIST os-client-config-1.29.0.tar.gz 65974 BLAKE2B 
f8632f4f4ae95941e81b039ea928bb1013d4208b93a3cf67abcb689aeb8f2f128ad309b4c86ead98ede98c2a9c44a5e0db49a32bd6e73490ce50a357f1f37bba
 SHA512 
1b50777fb1476a58ff0b6ca9fe3015d4002eee312bc970d23284f2a05c5b27a96204c3e892b8262c8d830b1681fb7376387cc4a032736e31a3c353a0a348e752

diff --git a/dev-python/os-client-config/os-client-config-1.28.0.ebuild 
b/dev-python/os-client-config/os-client-config-1.28.0.ebuild
deleted file mode 100644
index ed735bddb12..000
--- a/dev-python/os-client-config/os-client-config-1.28.0.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="OpenStack Client Configuation Library"
-HOMEPAGE="http://www.openstack.org/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc test"
-
-CDEPEND=">=dev-python/pbr-1.8.0[${PYTHON_USEDEP}]"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   test? (
-   >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
-   >=dev-python/docutils-0.11[${PYTHON_USEDEP}]
-   dev-python/extras[${PYTHON_USEDEP}]
-   >=dev-python/fixtures-0.3.144[${PYTHON_USEDEP}]
-   >=dev-python/jsonschema-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/jsonschema-2.5.0[${PYTHON_USEDEP}]
-   =dev-python/mock-1.2[${PYTHON_USEDEP}]
-   >=dev-python/python-glanceclient-0.18.0[${PYTHON_USEDEP}]
-   >=dev-python/python-keystoneclient-1.1.0[${PYTHON_USEDEP}]
-   >=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.5.1[${PYTHON_USEDEP}]
-   >=dev-python/reno-0.1.1[${PYTHON_USEDEP}]
-   >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-0.9.36[${PYTHON_USEDEP}]
-   !~dev-python/testtools-1.2.0[${PYTHON_USEDEP}]
-   )
-   doc? (
-   >=dev-python/sphinx-1.5.1[${PYTHON_USEDEP}]
-   >=dev-python/openstackdocstheme-1.5.0[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/pyyaml-3.1.0[${PYTHON_USEDEP}]
-   >=dev-python/appdirs-1.3.0[${PYTHON_USEDEP}]
-   >=dev-python/keystoneauth-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/requestsexceptions-1.1.1[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
-   "${FILESDIR}"/test_get_all_clouds.patch
-)
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && esetup.py build_sphinx
-}
-
-python_test() {
-   distutils_install_for_testing
-
-   rm -rf .testrepository || die "couldn't remove '.testrepository' under 
${EPTYHON}"
-
-   testr init || die "testr init failed under ${EPYTHON}"
-   testr run || die "testr run failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( doc/build/html/. )
-
-   distutils-r1_python_install_all
-}



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

2019-03-24 Thread Matthew Thode
commit: 09f1df6028fc848aef167f2fe6f6799b00902d80
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:57:12 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09f1df60

dev-python/oslo-messaging: remove pike/queens

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

 dev-python/oslo-messaging/Manifest |  1 -
 .../oslo-messaging/oslo-messaging-5.35.1.ebuild| 54 --
 2 files changed, 55 deletions(-)

diff --git a/dev-python/oslo-messaging/Manifest 
b/dev-python/oslo-messaging/Manifest
index 5937aa0cff9..c979f9b51c2 100644
--- a/dev-python/oslo-messaging/Manifest
+++ b/dev-python/oslo-messaging/Manifest
@@ -1,2 +1 @@
-DIST oslo.messaging-5.35.1.tar.gz 325408 BLAKE2B 
89d16f094962d3603634a0925d0d2f569fcff0e59da7ca99462d0c0faad7fa47b0eade2b7c24b29585901c1d04bc6f4bf91ee04b4dfad0a63eb3100261e99e39
 SHA512 
0022b394812384d13189cab9eb99f45eae2a134e50a4d7ec2473ea35fc2712d2bf7c2b2dd71caa01a38dc47f7f9793130176cbd1afc041675ecb20282e1a653f
 DIST oslo.messaging-8.1.2.tar.gz 296052 BLAKE2B 
c24d8bc22f1e7bb8fd4f58bf15c349a5fa5e41b98031611a0820b66ab7cabb2742d49995e5c730d1bba2c04a36ef4a055de0aced5f1100a7930052a4f4efd5fb
 SHA512 
f7bebc525019f19f6d25178f4b2ef811c3073dc2b10600a9a01aa23dfadad4b428baeb929963df31ee7c775bb94c47493699e8031d5dd9cea5d865c28432d3ba

diff --git a/dev-python/oslo-messaging/oslo-messaging-5.35.1.ebuild 
b/dev-python/oslo-messaging/oslo-messaging-5.35.1.ebuild
deleted file mode 100644
index f12b4dbaf33..000
--- a/dev-python/oslo-messaging/oslo-messaging-5.35.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Messaging API for RPC and notifications over different messaging 
transports"
-HOMEPAGE="https://pypi.org/project/oslo.messaging/;
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.messaging/oslo.messaging-${PV}.tar.gz"
-S="${WORKDIR}/oslo.messaging-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/futurist-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-serialization-1.18.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-service-1.24.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-service-1.28.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/monotonic-0.6[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/cachetools-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/webob-1.7.1[${PYTHON_USEDEP}]
-   >=dev-python/pyyaml-3.10.0[${PYTHON_USEDEP}]
-   >=dev-python/py-amqp-2.1.1[${PYTHON_USEDEP}]
-   !~dev-python/py-amqp-2.1.4[${PYTHON_USEDEP}]
-   >=dev-python/kombu-4.0.0[${PYTHON_USEDEP}]
-   !~dev-python/kombu-4.0.2[${PYTHON_USEDEP}]
-   >=dev-python/pika-0.10.0[${PYTHON_USEDEP}]
-   >=dev-python/pika-pool-0.1.3[${PYTHON_USEDEP}]
-   virtual/python-futures[${PYTHON_USEDEP}]
-   >=dev-python/tenacity-3.2.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-middleware-3.31.0[${PYTHON_USEDEP}]
-"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}



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

2019-03-24 Thread Matthew Thode
commit: c5a91802a7e8372c16f16510137621b9c91450e0
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 25 00:06:29 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a91802

dev-python/os-xenapi: cleanup

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

 dev-python/os-xenapi/Manifest   |  2 --
 dev-python/os-xenapi/os-xenapi-0.2.0.ebuild | 35 ---
 dev-python/os-xenapi/os-xenapi-0.3.1.ebuild | 37 -
 3 files changed, 74 deletions(-)

diff --git a/dev-python/os-xenapi/Manifest b/dev-python/os-xenapi/Manifest
index c67d5566648..2ea171adcdb 100644
--- a/dev-python/os-xenapi/Manifest
+++ b/dev-python/os-xenapi/Manifest
@@ -1,3 +1 @@
-DIST os-xenapi-0.2.0.tar.gz 73753 BLAKE2B 
dbb42c1fe15a55e39622876293d7797801ee4e67d152957e32e88a1d1a4503a2d70ab144216924c7d45935bbc79109a76535cc0b121df63e82468a37cb353cfc
 SHA512 
6eb7a8b8137c6c28cf07af51ddfed9aa08ad5af3cafd48ed72d9fa909d0dd2416e17eed8a587fc5cffac55704652e24ef8e759f60806b569f2765a5fff58884f
-DIST os-xenapi-0.3.1.tar.gz 121953 BLAKE2B 
4c2091fe0d7610dea7e973a6db68b0edea62d7323d09b0e3cc0c3a43b9a5a4b4509e29ee9e48755958f8d99dd5db2bb6ea13a3425c0156388e19ff986f86fa24
 SHA512 
24c1fa9e7b3e37b7847d7f82a533d9c92e7b551bd69681a985950d92ba22974a495e10ab7acf0f8f6a9a6fc9bf4c71820f413f948684a5b17d010dd076749cf4
 DIST os-xenapi-0.3.3.tar.gz 135902 BLAKE2B 
7ba2a7a386d3bbc0a0e20aeeae7b34c22540ed66a97ab48819eeb5995b6a5c8de09f59f0ab31ecee543147c75b33a5b590e6cb228f2f2f7aed861e3fe03654b4
 SHA512 
ec7b89299cfb4a76d0184bbac933e30857e45082cadf43c6b3f74d0c241cbb1013959e6338f85cb2af71c815a6ec6166d8e173898539c9f68eca128e2e908ad1

diff --git a/dev-python/os-xenapi/os-xenapi-0.2.0.ebuild 
b/dev-python/os-xenapi/os-xenapi-0.2.0.ebuild
deleted file mode 100644
index a139b9757d2..000
--- a/dev-python/os-xenapi/os-xenapi-0.2.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="XenAPI library for OpenStack projects"
-HOMEPAGE="https://github.com/openstack/os-xenapi;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND="
-   >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
-   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
-   >=dev-python/oslo-concurrency-3.8.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.22.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.20.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}

diff --git a/dev-python/os-xenapi/os-xenapi-0.3.1.ebuild 
b/dev-python/os-xenapi/os-xenapi-0.3.1.ebuild
deleted file mode 100644
index 4d44ba6e967..000
--- a/dev-python/os-xenapi/os-xenapi-0.3.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="XenAPI library for OpenStack projects"
-HOMEPAGE="https://github.com/openstack/os-xenapi;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND="
-   >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
-   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
-   !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}]
-   =dev-python/oslo-concurrency-3.20.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.30.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.28.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}



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

2019-03-24 Thread Matthew Thode
commit: 5affb29210bd083b3fdb60734d8e9245cbd2fec5
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:57:43 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5affb292

dev-python/oslo-log: remove pike/queens

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

 dev-python/oslo-log/Manifest   |  1 -
 dev-python/oslo-log/oslo-log-3.36.0.ebuild | 58 --
 2 files changed, 59 deletions(-)

diff --git a/dev-python/oslo-log/Manifest b/dev-python/oslo-log/Manifest
index 7a0c9a18236..5c8a8cc24cb 100644
--- a/dev-python/oslo-log/Manifest
+++ b/dev-python/oslo-log/Manifest
@@ -1,2 +1 @@
-DIST oslo.log-3.36.0.tar.gz 81964 BLAKE2B 
f08a5cc5160da123e7a0acef96f94a20b4051c415056e639b4eb20a10ca725da2527a5c6c25cbce8e532606ab390bd273be54b691d52e6e93a1a51b59f8ba909
 SHA512 
47234c4bef09e105709b765fe0d5b297312ac73169a438f2759cbff335f059afdefc323c290a32bb587dbb6d2095de536ae7111a31e6c5b280e760b9b6b971c6
 DIST oslo.log-3.39.2.tar.gz 85121 BLAKE2B 
782323490b619d28b1ff5df0d72e752431b01156e4c6fc8c1ff6191e22960398560dfc3c871edf65d33b92a75a3af61c85a5b1b66bf56ed8237a638355ccae35
 SHA512 
6b5fad426387d65559be2cd014054c123b9db57158969229ce184919f36ea355b181e3c0c06c78d8e1567108bd05af38ec2695354070826933888332699261ed

diff --git a/dev-python/oslo-log/oslo-log-3.36.0.ebuild 
b/dev-python/oslo-log/oslo-log-3.36.0.ebuild
deleted file mode 100644
index 6f194882f3f..000
--- a/dev-python/oslo-log/oslo-log-3.36.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="OpenStack logging config library, configuration for all openstack 
projects."
-HOMEPAGE="https://pypi.org/project/oslo.log/ 
https://github.com/openstack/oslo.log;
-SRC_URI="mirror://pypi/o/oslo.log/oslo.log-${PV}.tar.gz"
-S="${WORKDIR}/oslo.log-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-context-2.19.2[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-serialization-1.18.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-serialization-1.19.1[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/pyinotify-0.9.6[${PYTHON_USEDEP}]
-   >=dev-python/python-dateutil-2.4.2[${PYTHON_USEDEP}]
-   >=dev-python/monotonic-0.6[${PYTHON_USEDEP}]"
-DEPEND="
-   ${CDEPEND}
-   test? ( ${RDEPEND}
-   >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
-   >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
-   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
-   >=dev-python/openstackdocstheme-1.17.0[${PYTHON_USEDEP}]
-   >=dev-python/reno-2.5.0[${PYTHON_USEDEP}]
-   >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
-   )"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   nosetests oslo_log/tests || die "Tests fail with ${EPYTHON}"
-}



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

2019-03-24 Thread Matthew Thode
commit: 11cf0cdb5f0cd09b95e1c7217dc7c63cc6469a1f
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:34:10 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11cf0cdb

sys-cluster/heat: remove pike/queens

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

 sys-cluster/heat/Manifest|   6 --
 sys-cluster/heat/heat-10.0.2.ebuild  | 163 -
 sys-cluster/heat/heat-2017.2..ebuild | 169 ---
 sys-cluster/heat/heat-2018.1..ebuild | 162 -
 sys-cluster/heat/heat-9.0.5.ebuild   | 169 ---
 5 files changed, 669 deletions(-)

diff --git a/sys-cluster/heat/Manifest b/sys-cluster/heat/Manifest
index 5b261ed33d8..745fbd9ba33 100644
--- a/sys-cluster/heat/Manifest
+++ b/sys-cluster/heat/Manifest
@@ -1,9 +1,3 @@
-DIST heat-10.0.2.tar.gz 2355489 BLAKE2B 
5fe952f029bc4ad510b300ebc7d1be069e110a2c96312d254c1f5a44be580b5204cc2e58faa6371bed47a46cd21896f68790a93e8cc1a52ce65e5569b0bd1fa3
 SHA512 
b028b5ddee6b17edab91ecd2f78fa5fd29bcc431d21af34104d2c4a1023ef355affd4391061986056c21c72374c528f46178c1fcafe1c39b1cba6fe8f205ff86
 DIST heat-11.0.0.tar.gz 2316538 BLAKE2B 
c7c56d273761af1846ef69d2a29563f96550afa97022ef749ac5fbd5c62117214bcfd0bd802a315168ea97d94cdf647c5e9c655803dc6f798ca7d64e0f1a9339
 SHA512 
bc38b062e273d4dfb11ba72c558b4c0ed7a9220a083cf1cc22b42583b864cc4bce8fb80acaa5a88f8f3e1658d585ee2950466d35ca5cb367390141a28aed1e6f
-DIST heat-9.0.5.tar.gz 2365613 BLAKE2B 
36ae4d2e4221d5ae21607ee5833c7a6486e9b8c603276ae34ac18be9d662fc69b62bebb99ab6d64daeab18645ff1804a2cce1c8424f8f5122b9b23f6f7eefd54
 SHA512 
9aab590769c764e46b3d5e0ea88e7e7bdd410b36a00740d5a3b503d328b2c8fba70547b07db56548809feb3ece0e2579278b9cd662ae81ecc40d461754c4416e
-DIST heat.conf.sample-10.0.2 92161 BLAKE2B 
745cdb4eb6006079201cfe31b6486a5d759a93d1deceb42c3e9c5224b9512437013a5f44eb0f81694949efad648559a1b4e436992a91986206e50b65c69a09b8
 SHA512 
44b9f0e5779a21afc73a2720181ffaf778d5e54f61db7b177b59a777985c6155dac1d6b535eed311be372236f4d39d0601a8814c5ad7aa0c48acf3771bf65120
 DIST heat.conf.sample-11.0.0 89219 BLAKE2B 
6db6b6476c90bedb8bccb88d6e792fd62d599bf4721153f9cd79fc22d6e99f5096d560d5ead9ee2388529a9ff0514e591444c462621e37ecdc0879ed6f78
 SHA512 
aedde1cea25ecbdff4de8fe410bcb13cf937a4479b9fa27aab8170f92956499c678c2546cc3f373f58c287f13576b1561613b5ff71e6fae5b60bb3d580a90f4f
-DIST heat.conf.sample-2017.2. 88901 BLAKE2B 
050cfaacb46a8d9b79a17b7406acf6bca9be27a21f8278194021cadc69fb364c630ca0f0e7a320dfe9d46303d779eb8b5c31efaa9c25d3695caf70cab18b1b4d
 SHA512 
f62feaa4a0d27866876aed9f78099501247ae4b7deaefd04d77b1f4b2a1d1c991e6f3e68d9f82e3b6a4358c99fbffd90f14a05ff98105df0ef0db68ef8bc6932
-DIST heat.conf.sample-2018.1. 92161 BLAKE2B 
745cdb4eb6006079201cfe31b6486a5d759a93d1deceb42c3e9c5224b9512437013a5f44eb0f81694949efad648559a1b4e436992a91986206e50b65c69a09b8
 SHA512 
44b9f0e5779a21afc73a2720181ffaf778d5e54f61db7b177b59a777985c6155dac1d6b535eed311be372236f4d39d0601a8814c5ad7aa0c48acf3771bf65120
 DIST heat.conf.sample-2018.2. 89219 BLAKE2B 
6db6b6476c90bedb8bccb88d6e792fd62d599bf4721153f9cd79fc22d6e99f5096d560d5ead9ee2388529a9ff0514e591444c462621e37ecdc0879ed6f78
 SHA512 
aedde1cea25ecbdff4de8fe410bcb13cf937a4479b9fa27aab8170f92956499c678c2546cc3f373f58c287f13576b1561613b5ff71e6fae5b60bb3d580a90f4f
-DIST heat.conf.sample-9.0.5 88901 BLAKE2B 
050cfaacb46a8d9b79a17b7406acf6bca9be27a21f8278194021cadc69fb364c630ca0f0e7a320dfe9d46303d779eb8b5c31efaa9c25d3695caf70cab18b1b4d
 SHA512 
f62feaa4a0d27866876aed9f78099501247ae4b7deaefd04d77b1f4b2a1d1c991e6f3e68d9f82e3b6a4358c99fbffd90f14a05ff98105df0ef0db68ef8bc6932

diff --git a/sys-cluster/heat/heat-10.0.2.ebuild 
b/sys-cluster/heat/heat-10.0.2.ebuild
deleted file mode 100644
index ee55018f59c..000
--- a/sys-cluster/heat/heat-10.0.2.ebuild
+++ /dev/null
@@ -1,163 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1 eutils linux-info user
-
-DESCRIPTION="A CloudFormation-compatible openstack-native cloud orchestration 
engine."
-HOMEPAGE="https://launchpad.net/heat;
-
-if [[ ${PV} == * ]];then
-   inherit git-r3
-   
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/heat/heat.conf.sample.queens
 -> heat.conf.sample-${PV}"
-   EGIT_REPO_URI="https://github.com/openstack/heat.git;
-   EGIT_BRANCH="stable/queens"
-else
-   
SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/heat/heat.conf.sample.queens
 -> heat.conf.sample-${PV}
-   https://tarballs.openstack.org/${PN}/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm64 x86"
-fi
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="+mysql +memcached postgres sqlite"
-REQUIRED_USE="|| ( 

[gentoo-commits] repo/gentoo:master commit in: dev-python/os-service-types/

2019-03-24 Thread Matthew Thode
commit: ba4c48ef026ca510a732d387d669eb4ef490438f
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 25 00:04:10 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba4c48ef

dev-python/os-service-types: cleanup

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

 dev-python/os-service-types/Manifest|  1 -
 .../os-service-types/os-service-types-1.1.0.ebuild  | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-python/os-service-types/Manifest 
b/dev-python/os-service-types/Manifest
index da951c4ec1c..22e6c099e3c 100644
--- a/dev-python/os-service-types/Manifest
+++ b/dev-python/os-service-types/Manifest
@@ -1,2 +1 @@
-DIST os-service-types-1.1.0.tar.gz 20838 BLAKE2B 
8fbf5b5bf9d7fefcf88f51f98a6e0326bd42c0f452d614801543b45c79cc5220aeb15d4e3225c83636cb462e03914cd235942f06a367b0a4b67805c503b63d08
 SHA512 
d6a5e9ce633a92c61c7ca2b44e7c0bb5fb7f28efc3bdb7e240bb8c1d06f02ce1c038e11a709508dcdc4bbb8e1245297b7dafae5b49535b69359af576bb147130
 DIST os-service-types-1.3.0.tar.gz 22961 BLAKE2B 
6ad32594c7fd86f61b0e9018901da740c6ce7d30ba10610cb3fac1900cb8188084ed754a36b608dc076582f438a8cdff0f655cef2ee406de4186c12b5b454f1c
 SHA512 
6a90cd4744902dc314ae2af09411947270a06db548016a0d8e424e6dd44520b20a24e061425e7dcebe4c62fad4c0bab4636e9537644d87f66e652ae02025afe1

diff --git a/dev-python/os-service-types/os-service-types-1.1.0.ebuild 
b/dev-python/os-service-types/os-service-types-1.1.0.ebuild
deleted file mode 100644
index 4e2b9f6d145..000
--- a/dev-python/os-service-types/os-service-types-1.1.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-inherit distutils-r1
-
-DESCRIPTION="A library to handle official service types for OpenStack and it's 
aliases."
-HOMEPAGE="https://github.com/openstack/os-service-types;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="${CDEPEND}"
-RDEPEND="${CDEPEND}"



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

2019-03-24 Thread Matthew Thode
commit: b24288edfe3af4cc9ba18b5a2e473338221ab457
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:50:12 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b24288ed

sys-cluster/swift: remove pike/queens

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

 sys-cluster/swift/Manifest |   4 -
 sys-cluster/swift/swift-2.17.0.ebuild  | 114 ---
 sys-cluster/swift/swift-2.17.1.ebuild  | 114 ---
 sys-cluster/swift/swift-2.19.0.ebuild  | 122 -
 sys-cluster/swift/swift-2.19.1.ebuild  | 122 -
 sys-cluster/swift/swift-2017.2..ebuild | 115 ---
 sys-cluster/swift/swift-2018.1..ebuild | 120 
 7 files changed, 711 deletions(-)

diff --git a/sys-cluster/swift/Manifest b/sys-cluster/swift/Manifest
index 3accd952cea..2be1cdab02e 100644
--- a/sys-cluster/swift/Manifest
+++ b/sys-cluster/swift/Manifest
@@ -1,5 +1 @@
-DIST swift-2.17.0.tar.gz 2527561 BLAKE2B 
baf8d2363bfd39062263542ddd01702e5f5847f3bbd2d227234da44ba742fa7e2bb6954569aab12082de67cfd785496a5530a0fc7613a0ad28d88bd62dbec9f8
 SHA512 
d5b13a63f549f1118eb1a27505a7444e09bedb532eed8e1ea34d370163dde2ce3e3911b9e4d6bea0d96f0a5c7d99bb103ed80ee8a547051fa29e9b4a09cced16
-DIST swift-2.17.1.tar.gz 2497165 BLAKE2B 
c400734ac42831bcecbff575aded3efce6ae33ccf46d4e48c58dc24409e5388663d2e81801b290f77550764a41de1393865e1175ab5995bd1044535844fdf595
 SHA512 
223fa5d9f47b3ffb81cc05b83e7f015392a568f3631344c5713c12f2667362c7bdd0a0a8b657a8caf2bcd1aec11dbcd5a0d582b50109b9b8f24ca6b53321411d
-DIST swift-2.19.0.tar.gz 2977206 BLAKE2B 
05f53e7deb7948924ed36f7fcef164dd72254a90329e88a20ffae1f97ca632967d2e4de34a95c29008f8d636ec95b6860238f77f28b2f9f7ebe78ddb8c784a6c
 SHA512 
fa6f08bacb7488762efaf8dd067cacd82adbc0ca773ee9b9c4a23d05d448eea9d79af2c9fbd619f4a458634e0af3cc3ce8fb8eb0d7cf0c10c7d3c28955000afd
-DIST swift-2.19.1.tar.gz 2936438 BLAKE2B 
35f4c0d5ae3b5f0add9f3a076bcad7d707a6ea034e167fd6d648e9f02ef7c68e1e2d6538fd1934270e7db950320260b44abc5ae373890ecf39b24fa9bfce1d61
 SHA512 
1d6f9889cf29c747a50dc3a4983eb2a2be1dfedf07ce38167a2204d3c2690a2ff3cba58705afb0de60c702ffa63d3dfb84237925689d956df55cb11c59c26de6
 DIST swift-2.20.0.tar.gz 3012428 BLAKE2B 
48cfb52bce8d89836ede3d82cde197e282b55cec7fa9366c18102a2259a2c96553c573c92b884e6471a3ff5a5fc88ff3eeadbb200c691db3c6b20b6881132576
 SHA512 
15f1082a94f16684001b1d6eaa635500d41dd2ed0b65b87d8fc2363f96179cbc4d40a6faee10e966ad954e45035ed77c31dc265daa2c7c9d17a0e81890e6bc79

diff --git a/sys-cluster/swift/swift-2.17.0.ebuild 
b/sys-cluster/swift/swift-2.17.0.ebuild
deleted file mode 100644
index 9c09fe33ba4..000
--- a/sys-cluster/swift/swift-2.17.0.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 eutils linux-info user
-
-DESCRIPTION="A highly available, distributed, and eventually consistent 
object/blob store"
-HOMEPAGE="https://launchpad.net/swift;
-SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="proxy account container object +memcached"
-REQUIRED_USE="|| ( proxy account container object )"
-
-CDEPEND=">=dev-python/pbr-1.8.0[${PYTHON_USEDEP}]"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/dnspython-1.14.0:0[${PYTHON_USEDEP}]
-   >=dev-python/eventlet-0.17.4[${PYTHON_USEDEP}]
-   >=dev-python/greenlet-0.3.1[${PYTHON_USEDEP}]
-   >=dev-python/netifaces-0.5[${PYTHON_USEDEP}]
-   !~dev-python/netifaces-0.10.0[${PYTHON_USEDEP}]
-   !~dev-python/netifaces-0.10.1[${PYTHON_USEDEP}]
-   >=dev-python/pastedeploy-1.3.3[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-   dev-python/pyxattr[${PYTHON_USEDEP}]
-   >=dev-python/PyECLib-1.3.1[${PYTHON_USEDEP}]
-   >=dev-python/cryptography-1.6.0[${PYTHON_USEDEP}]
-   !~dev-python/cryptography-2.0[${PYTHON_USEDEP}]
-   memcached? ( net-misc/memcached )
-   net-misc/rsync[xattr]"
-
-pkg_pretend() {
-   linux-info_pkg_setup
-   CONFIG_CHECK="~EXT3_FS_XATTR ~SQUASHFS_XATTR ~CIFS_XATTR ~JFFS2_FS_XATTR
-   ~TMPFS_XATTR ~UBIFS_FS_XATTR ~EXT2_FS_XATTR ~REISERFS_FS_XATTR 
~EXT4_FS_XATTR
-   ~ZFS"
-   if linux_config_exists; then
-   for module in ${CONFIG_CHECK}; do
-   linux_chkconfig_present ${module} || ewarn "${module} 
needs to be enabled"
-   done
-   fi
-}
-
-pkg_setup() {
-   enewuser swift
-   enewgroup swift
-}
-
-src_prepare() {
-   sed -i 's/xattr/pyxattr/g' requirements.txt || die
-   

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

2019-03-24 Thread Matthew Thode
commit: 2b073cd0be83dc09322899b761bec2cfa16bb243
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:51:36 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b073cd0

sys-cluster/openstack-meta: remove pike/queens

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

 .../openstack-meta-2017.2..ebuild  | 23 --
 .../openstack-meta-2018.1..ebuild  | 22 -
 2 files changed, 45 deletions(-)

diff --git a/sys-cluster/openstack-meta/openstack-meta-2017.2..ebuild 
b/sys-cluster/openstack-meta/openstack-meta-2017.2..ebuild
deleted file mode 100644
index 59b9ec4d427..000
--- a/sys-cluster/openstack-meta/openstack-meta-2017.2..ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A openstack meta-package for installing the various openstack 
pieces"
-HOMEPAGE="https://openstack.org;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS=""
-IUSE="cinder glance heat keystone neutron nova swift"
-
-DEPEND=""
-RDEPEND="
-   keystone? ( ~sys-auth/keystone-${PV} )
-   swift? ( ~sys-cluster/swift-${PV} )
-   neutron? ( ~sys-cluster/neutron-${PV} )
-   glance? ( ~app-admin/glance-${PV} )
-   cinder? ( ~sys-cluster/cinder-${PV} )
-   nova? ( ~sys-cluster/nova-${PV} )
-   heat? ( ~sys-cluster/heat-${PV} )
-"

diff --git a/sys-cluster/openstack-meta/openstack-meta-2018.1..ebuild 
b/sys-cluster/openstack-meta/openstack-meta-2018.1..ebuild
deleted file mode 100644
index ea5f7467b12..000
--- a/sys-cluster/openstack-meta/openstack-meta-2018.1..ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A openstack meta-package for installing the various openstack 
pieces"
-HOMEPAGE="https://openstack.org;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="cinder glance heat keystone neutron nova swift"
-
-DEPEND=""
-RDEPEND="
-   keystone? ( ~sys-auth/keystone-${PV} )
-   swift? ( ~sys-cluster/swift-${PV} )
-   neutron? ( ~sys-cluster/neutron-${PV} )
-   glance? ( ~app-admin/glance-${PV} )
-   cinder? ( ~sys-cluster/cinder-${PV} )
-   nova? ( ~sys-cluster/nova-${PV} )
-   heat? ( ~sys-cluster/heat-${PV} )
-"



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

2019-03-24 Thread Matthew Thode
commit: e398ce0eec3f81ffea4ff699c7cf25efe8571137
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:54:35 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e398ce0e

dev-python/oslo-versionedobjects: remove pike/queens

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

 dev-python/oslo-versionedobjects/Manifest  |  1 -
 .../oslo-versionedobjects-1.31.3.ebuild| 38 --
 2 files changed, 39 deletions(-)

diff --git a/dev-python/oslo-versionedobjects/Manifest 
b/dev-python/oslo-versionedobjects/Manifest
index 3e58703a4ff..b11f4611f5f 100644
--- a/dev-python/oslo-versionedobjects/Manifest
+++ b/dev-python/oslo-versionedobjects/Manifest
@@ -1,2 +1 @@
-DIST oslo.versionedobjects-1.31.3.tar.gz 148869 BLAKE2B 
90ee5fce0dc51f4be1e9dbe2e4cab501e7fa1625591847c6a37dad34e570f9739317ec5e1d08ce5a90c6fde3d639852d1f0ed6e6da33119c8d805146b7dfab40
 SHA512 
2c131ca04b3967a98ada7052fe176faee18d0fb36d53c94c6c098d88e108c865e4a967c8300fd2781bb18741f280781e398ebdb9cbe3c8b8aba516ab7800217b
 DIST oslo.versionedobjects-1.33.3.tar.gz 150086 BLAKE2B 
7248c5cc114962ed33c70a3c6e9698ed784a2a995d949830f5e8f3f97953caf793a37c60074e848e8c4518aed2de29ed54ae637166f247bb7e6f95af0d9c6e87
 SHA512 
0d1d8654b1f971bc922d57771c159608d30fd7474448d425beb7c5a98b9810c6796c7e0b21436f75a266f54913fb01ce6b8e8ad4402e09453b797854f9fc4575

diff --git 
a/dev-python/oslo-versionedobjects/oslo-versionedobjects-1.31.3.ebuild 
b/dev-python/oslo-versionedobjects/oslo-versionedobjects-1.31.3.ebuild
deleted file mode 100644
index ac8ddb666da..000
--- a/dev-python/oslo-versionedobjects/oslo-versionedobjects-1.31.3.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="A library that provides a generic versioned and RPC-friendly  
object model."
-HOMEPAGE="http://docs.openstack.org/developer/oslo.versionedobjects;
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.versionedobjects/oslo.versionedobjects-${PV}.tar.gz"
-S="${WORKDIR}/oslo.versionedobjects-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-concurrency-3.25.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-context-2.19.2[${PYTHON_USEDEP}]
-   >=dev-python/oslo-messaging-5.29.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-serialization-1.18.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-serialization-1.19.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/webob-1.7.1[${PYTHON_USEDEP}]
-   >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]"



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

2019-03-24 Thread Matthew Thode
commit: 123229a3a74b98e780ef64a8cbbec1820dd23f82
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:59:07 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=123229a3

dev-python/oslo-db: remove pike/queens

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

 dev-python/oslo-db/Manifest  |  1 -
 dev-python/oslo-db/oslo-db-4.33.1.ebuild | 62 
 2 files changed, 63 deletions(-)

diff --git a/dev-python/oslo-db/Manifest b/dev-python/oslo-db/Manifest
index b040ec0ea91..860c0912726 100644
--- a/dev-python/oslo-db/Manifest
+++ b/dev-python/oslo-db/Manifest
@@ -1,2 +1 @@
-DIST oslo.db-4.33.1.tar.gz 169088 BLAKE2B 
e386d8c71669569256d88e2ad654e017dfae5cfc0635fa7c7f9e41a11d7114f6f7d0e826a6855113f8e672d5e57ed8b645e8c6d3a54c30aa78d45e53894fe8bf
 SHA512 
b627bef035c13aa32afded20ff1e5198bc94d5ce96384c7eff44992d7f5c7178bb5e9ae398c53a04be6f280f433c688ae28fa72d6c617fc7c9299bd7c6a02eff
 DIST oslo.db-4.40.0.tar.gz 171545 BLAKE2B 
34172325f99938595b36cbbabea421f8e51f8c5916a908ade56a2cd072ea532ec08b884c2ee74481f3651855f9c1432be145df3689569b06a6597e9eb9bdd6d2
 SHA512 
b1a0db1d3624ffc86eb41b49f76a4afe3737d943b6465a1b66a2aed18524c463e52130f1d6fe27cd382f04633df327bba07254b6d4bfb300cdaeb51b608745f0

diff --git a/dev-python/oslo-db/oslo-db-4.33.1.ebuild 
b/dev-python/oslo-db/oslo-db-4.33.1.ebuild
deleted file mode 100644
index ace830db786..000
--- a/dev-python/oslo-db/oslo-db-4.33.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="OpenStack Common DB Code"
-HOMEPAGE="https://launchpad.net/oslo;
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.db/oslo.db-${PV}.tar.gz"
-S="${WORKDIR}/oslo.db-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="+sqlite mysql postgres"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/alembic-0.8.10[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   sqlite? (
-   >=dev-python/sqlalchemy-1.0.10[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.5[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.6[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.7[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.8[sqlite,${PYTHON_USEDEP}]
-   )
-   mysql? (
-   || (
-   dev-python/pymysql[${PYTHON_USEDEP}]
-   dev-python/mysql-python[$(python_gen_usedep 
'python2_7')]
-   )
-   >=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.5[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.6[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.7[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.8[${PYTHON_USEDEP}]
-   )
-   postgres? (
-   dev-python/psycopg:2[${PYTHON_USEDEP}]
-   >=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.5[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.6[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.7[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.8[${PYTHON_USEDEP}]
-   )
-   >=dev-python/sqlalchemy-migrate-0.11.0[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-"



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

2019-03-24 Thread Matthew Thode
commit: 8d89b828ff39b47982213f60343d83e2686226ae
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:50:55 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d89b828

sys-auth/keystone: remove pike/queens

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

 sys-auth/keystone/Manifest|   2 -
 sys-auth/keystone/keystone-12.0.2.ebuild  | 175 -
 sys-auth/keystone/keystone-13.0.2.ebuild  | 176 --
 sys-auth/keystone/keystone-2017.2..ebuild | 176 --
 sys-auth/keystone/keystone-2018.1..ebuild | 176 --
 5 files changed, 705 deletions(-)

diff --git a/sys-auth/keystone/Manifest b/sys-auth/keystone/Manifest
index cd8a660d1c9..0e505071b16 100644
--- a/sys-auth/keystone/Manifest
+++ b/sys-auth/keystone/Manifest
@@ -1,5 +1,3 @@
-DIST keystone-12.0.2.tar.gz 1492547 BLAKE2B 
2f7b8b5535cb75dd846a1570fabf95c47e64b162d70c4af3e66d5f379c1a45d383b0ac9fce0a7b48875c210e9c4306476938fe8ddbb04dfc9f75cfc51ce10856
 SHA512 
8468ef9967b95cc75b02c5b9c66ff71033853674c5012aecf37b98c71af72451e8cdbb4070c1a9197c404f97a5948f214adf6911a3ac5d5ee23c75ec3593433b
-DIST keystone-13.0.2.tar.gz 1462728 BLAKE2B 
8bcdbaecf79e2f5e1fbcd840dd27967312320c5f0fe45ed40aa1b339f627cb96ce8186ece9c0b6ab40e66e3699e5be25b0978af056aa86f6da4d5e9b6031285a
 SHA512 
d600ea56acb14a9d34461e599375d6f1b62deb8e8cc33c939e8dec8855396f57e86e4d8334b92ecd00a68f881f3dd4805feca5cdb3de808743893ce07c68
 DIST keystone-14.0.1.tar.gz 1526741 BLAKE2B 
5ae1a6f0e7a7ce737b3a0fdbd2900e8cb1541ec3b1e08228d4abf58d8021a06a6c9db654ef71c22636436f2601bd49d4934f24650e2a44c101c9610ed7b011af
 SHA512 
87065a16ca70dc9115d331f1e0f3669ac9661f5172f9e8afbecef48e7dd9a4726438b4d757fa54bbd6095a5543427dc913f90a765e83ffb30284b1f8dbfbb8e7
 DIST keystone.conf.sample-14.0.1 119794 BLAKE2B 
3f3c43b0972230a57b444ffe3ca41fa94a0886831941c8c259738e6575b74776a6add907fac833ba178769bbecd4bc16fe383b53344c1e3cebf3d4eacdbcb50d
 SHA512 
5513b4e3bed869d6fa56bf6163355de2dcbf859dd8f7e76ffa3a0e7b644fe367bbde75a4e090098faba473e1fb26b061d434771e9e6bb8cb105ca609c161e5c1
 DIST keystone.conf.sample-2018.2. 119794 BLAKE2B 
3f3c43b0972230a57b444ffe3ca41fa94a0886831941c8c259738e6575b74776a6add907fac833ba178769bbecd4bc16fe383b53344c1e3cebf3d4eacdbcb50d
 SHA512 
5513b4e3bed869d6fa56bf6163355de2dcbf859dd8f7e76ffa3a0e7b644fe367bbde75a4e090098faba473e1fb26b061d434771e9e6bb8cb105ca609c161e5c1

diff --git a/sys-auth/keystone/keystone-12.0.2.ebuild 
b/sys-auth/keystone/keystone-12.0.2.ebuild
deleted file mode 100644
index 7948cd53978..000
--- a/sys-auth/keystone/keystone-12.0.2.ebuild
+++ /dev/null
@@ -1,175 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 user
-
-DESCRIPTION="The Openstack authentication, authorization, and service catalog"
-HOMEPAGE="https://launchpad.net/keystone;
-SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="+sqlite ldap memcached mongo mysql postgres test"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
-   !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
-   >=dev-python/webob-1.7.1[${PYTHON_USEDEP}]
-   >=dev-python/pastedeploy-1.5.0[${PYTHON_USEDEP}]
-   dev-python/paste[${PYTHON_USEDEP}]
-   >=dev-python/routes-2.3.1[${PYTHON_USEDEP}]
-   >=dev-python/cryptography-1.6[${PYTHON_USEDEP}]
-   !~dev-python/cryptography-2.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-   sqlite? (
-   >=dev-python/sqlalchemy-1.0.10[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.5[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.6[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.7[sqlite,${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.8[sqlite,${PYTHON_USEDEP}]
-   )
-   mysql? (
-   >=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}]
-   !~dev-python/pymysql-0.7.7[${PYTHON_USEDEP}]
-   >=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.5[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.6[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.7[${PYTHON_USEDEP}]
-   !~dev-python/sqlalchemy-1.1.8[${PYTHON_USEDEP}]
-   )
-   postgres? (
-   >=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}]
-   

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

2019-03-24 Thread Matthew Thode
commit: 7da3cf07037b3da0e857fc1ef8c4431c173a4997
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:59:37 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7da3cf07

dev-python/oslo-context: remove pike/queens

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

 dev-python/oslo-context/Manifest   |  1 -
 dev-python/oslo-context/oslo-context-2.20.0.ebuild | 45 --
 2 files changed, 46 deletions(-)

diff --git a/dev-python/oslo-context/Manifest b/dev-python/oslo-context/Manifest
index ce3c2b4f4cd..ce96eb325c2 100644
--- a/dev-python/oslo-context/Manifest
+++ b/dev-python/oslo-context/Manifest
@@ -1,2 +1 @@
-DIST oslo.context-2.20.0.tar.gz 28203 BLAKE2B 
cbb3cb6f30b1b16011caa6fdec36c19aae571125b88f642bfc52c5a8a63a2b17eb308628d9a5f19b8a0c3bd28fb0db54e5485abd10c90c9495de05263ac25709
 SHA512 
ce7bd92c7e22e02e91bdc86e9b697f746233a41081b4f3ebb9fe30fec8000c69f732f55de0d333b349b8e01e638ddc835fd3cf0d8f7a11aa3454466a1e87ad08
 DIST oslo.context-2.21.0.tar.gz 27605 BLAKE2B 
fa2be8819c3b5c46e12eacae12c665e8168c4d8ac88fe7e8b8c3454093ea14d1a5980d1ecc377eb7294d913e117cf5188571be3bf678f270712e09c5230f2f7e
 SHA512 
af25aebd306d0a3d60032778e6e3ca10b976e758c10e5d02302ebfef6a6183c8f9a102e9b4c2c8400914d71976dff284654bbcec63c15192dcfd2605928596eb

diff --git a/dev-python/oslo-context/oslo-context-2.20.0.ebuild 
b/dev-python/oslo-context/oslo-context-2.20.0.ebuild
deleted file mode 100644
index 5e4b1fba433..000
--- a/dev-python/oslo-context/oslo-context-2.20.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
-
-inherit distutils-r1
-
-DESCRIPTION="Helpers to maintain useful information about a request context"
-HOMEPAGE="https://pypi.org/project/oslo.context/;
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
-   !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
-   >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/oslo.context-${PV}"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-# This time half the doc files are missing; Do you want them?
-python_test() {
-   nosetests tests/ || die "test failed under ${EPYTHON}"
-}



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

2019-03-24 Thread Matthew Thode
commit: af75431f7b2ee6adacd147a0829faeeb43fa83a2
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 25 00:06:09 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af75431f

dev-python/os-win: cleanup

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

 dev-python/os-win/Manifest|  1 -
 dev-python/os-win/os-win-2.2.0.ebuild | 41 ---
 2 files changed, 42 deletions(-)

diff --git a/dev-python/os-win/Manifest b/dev-python/os-win/Manifest
index dfa21848fd7..736bbdbba5c 100644
--- a/dev-python/os-win/Manifest
+++ b/dev-python/os-win/Manifest
@@ -1,2 +1 @@
-DIST os-win-2.2.0.tar.gz 192662 BLAKE2B 
4da623f2f3fff0466156468a09477d29cda391275935dc56be06eaf7562cb153d7d00771206385b3cfada2fe86679e1a80e52e32f539a5c4e62bf9aa10967079
 SHA512 
02bb9b7ddaa7b3807ce66ce32242fe9938f28bde6880cf9ed461072e764e41a34a1238ccdc8b67ebc95a07ac003bb0771b8943602582ede6c8a41440f865060b
 DIST os-win-3.0.1.tar.gz 202691 BLAKE2B 
934f90970ccdb7890379ca6f3545936db65f104414c4de51dd8956345b4e5330a3d6db286b6fc2cbc9f218528751fea56b7836d81cb9da1f271737817b220101
 SHA512 
619b893f4595fda57c2d339b10bf4a7de48c711829f1e2407f981c943b76999d1ee84c15a5b91b03fcd946f16754501cede2081c5ce0ae3ffea0e6f4faaaf23e

diff --git a/dev-python/os-win/os-win-2.2.0.ebuild 
b/dev-python/os-win/os-win-2.2.0.ebuild
deleted file mode 100644
index 8906f8520a4..000
--- a/dev-python/os-win/os-win-2.2.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="Windows / Hyper-V library for OpenStack projects."
-HOMEPAGE="https://github.com/openstack/os-win;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
-   !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
-   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
-   !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}]
-   =dev-python/oslo-concurrency-3.8.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-4.0.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-config-4.3.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-config-4.4.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.22.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.20.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-2.1.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-i18n-3.15.0[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}



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

2019-03-24 Thread Matthew Thode
commit: a5c4cebbc8243cc7e1c91c459bf7a42b360b0730
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 25 00:05:39 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5c4cebb

dev-python/os-vif: cleanup

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

 dev-python/os-vif/Manifest|  1 -
 dev-python/os-vif/os-vif-1.7.0.ebuild | 43 ---
 2 files changed, 44 deletions(-)

diff --git a/dev-python/os-vif/Manifest b/dev-python/os-vif/Manifest
index 62bcd1c531a..6b568b1dbdf 100644
--- a/dev-python/os-vif/Manifest
+++ b/dev-python/os-vif/Manifest
@@ -1,2 +1 @@
-DIST os_vif-1.7.0.tar.gz 55976 BLAKE2B 
8adb4043f872a76c1120774bd0453f162aa1a3877b8495b1ea32d7f2ca03ae7401885ca190b5f35bb11e7559f08a9a24ee6cee41c6603c7bbd2a987e974106a7
 SHA512 
815f7ba169ef4c1235ad70f31ec065179fa021701c69304385c1a95a1125db9afc1be9e6ceddfca44fe6ea1866dfdb303f7ded2914a3757b095118e41bfdd19e
 DIST os_vif-1.9.1.tar.gz 63535 BLAKE2B 
b4c017b129c2540794f85292341a165761d00439d24727fe2f421c96a7e5d6e79e8572a217064e01e62bb137f136fcfd1d51ff089c48026de82d91a8b9a22386
 SHA512 
d7aeec1bd277a91a1f4fbda69e5408f5648ad49ffac17d1ca54148ec30c31bd64639151988355395166747df91cd89cbed1863a2668a5bce89a10d2aea55c288

diff --git a/dev-python/os-vif/os-vif-1.7.0.ebuild 
b/dev-python/os-vif/os-vif-1.7.0.ebuild
deleted file mode 100644
index 4775e0d9203..000
--- a/dev-python/os-vif/os-vif-1.7.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="OpenStack Cinder brick library for managing local volume attaches"
-HOMEPAGE="https://github.com/openstack/os-vif;
-SRC_URI="mirror://pypi/${PN:0:1}/os_vif/os_vif-${PV}.tar.gz"
-S="${WORKDIR}/os_vif-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/netaddr-0.7.13[${PYTHON_USEDEP}]
-   !~dev-python/netaddr-0.7.16[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-4.0.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-config-4.3.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-config-4.4.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.22.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-2.1.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-i18n-3.15.2[${PYTHON_USEDEP}]
-   >=dev-python/oslo-privsep-1.9.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-privsep-1.17.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-versionedobjects-1.17.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   sed -i '/^pbr/d' requirements.txt || die  # pbr should be uncapped in 
stable/ocata
-   distutils-r1_python_prepare_all
-}



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

2019-03-24 Thread Matthew Thode
commit: c6af79ce25cde237c25f86de1395a598b211d2bc
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:55:40 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6af79ce

dev-python/oslo-utils: remove pike/queens

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

 dev-python/oslo-utils/Manifest |  1 -
 dev-python/oslo-utils/oslo-utils-3.35.1.ebuild | 95 --
 2 files changed, 96 deletions(-)

diff --git a/dev-python/oslo-utils/Manifest b/dev-python/oslo-utils/Manifest
index 31eabc4f4c8..6c230787265 100644
--- a/dev-python/oslo-utils/Manifest
+++ b/dev-python/oslo-utils/Manifest
@@ -1,2 +1 @@
-DIST oslo-utils-3.35.1.tar.gz 85615 BLAKE2B 
c2eea32d6844c59425a6e8783c1285dc47f2863401e6739bd7418c23ad1446613f41cbcd2e2d85d260ff8adddb681d9f1b5547ac521c2d9b5e2050324457bf97
 SHA512 
069fd262cfab3f5756b1135552c19c886fdbf72885f12b2ae84c67af1f50306ccc2c5331b1774fc49fb764107ad1c3e94305cd6fb6a25888ee8fa446facd2cbc
 DIST oslo-utils-3.36.4.tar.gz 87872 BLAKE2B 
15f4fe90e5335cdf146ec582a506f2ab2bcae9989feca24caec7c12a4136767e93acb117345ce62013cde64938994eeb0c0809665cd155d5e0aaae7dc6aad879
 SHA512 
d5a81b68cc00c25eeb2e6d39b8fd4a47cb958c32e50471845b14a06cb5f420ac58986106893a27364adba968adc19f864624d69bae316202bdaf2c156458eac1

diff --git a/dev-python/oslo-utils/oslo-utils-3.35.1.ebuild 
b/dev-python/oslo-utils/oslo-utils-3.35.1.ebuild
deleted file mode 100644
index 1c2d39f41d7..000
--- a/dev-python/oslo-utils/oslo-utils-3.35.1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1 vcs-snapshot
-
-MY_PN=${PN/-/.}
-
-DESCRIPTION="Oslo Utility library"
-HOMEPAGE="https://launchpad.net/oslo;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc test"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}]
-   >=dev-python/coverage-4.0.0[${PYTHON_USEDEP}]
-   !~dev-python/coverage-4.4.0[${PYTHON_USEDEP}]
-   >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
-   >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
-   )
-   doc? (
-   >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
-   !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}]
-   >=dev-python/openstackdocstheme-1.18.1[${PYTHON_USEDEP}]
-   >=dev-python/reno-2.5.0[${PYTHON_USEDEP}]
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   virtual/python-funcsigs[${PYTHON_USEDEP}]
-   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/monotonic-0.6[${PYTHON_USEDEP}]
-   >=dev-python/pytz-2013.6[${PYTHON_USEDEP}]
-   >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
-   >=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
-"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && esetup.py build_sphinx
-}
-
-# Note: Tests fail due to requiring installation
-#
-# Installation appears to fail due to the use of namespace packages but root
-# cause was never truly established.
-#
-# Tests fail with:
-# ImportError: No module named 'oslo.utils
-
-#RESTRICT="test"
-
-python_test() {
-   distutils_install_for_testing
-
-   cd "${TEST_DIR}"/lib || die
-
-   rm -rf .testrepository || die "couldn't remove '.testrepository' under 
${EPTYHON}"
-
-   testr init || die "testr init failed under ${EPYTHON}"
-   testr run || die "testr run failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( doc/build/html/. )
-
-   distutils-r1_python_install_all
-}



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

2019-03-24 Thread Matthew Thode
commit: 1c074f94f36ecec0131197b10b736c9ce4a6b5bb
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 25 00:04:38 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:07:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c074f94

dev-python/os-testr: cleanup

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

 dev-python/os-testr/Manifest  |  1 -
 dev-python/os-testr/os-testr-0.8.0.ebuild | 41 ---
 2 files changed, 42 deletions(-)

diff --git a/dev-python/os-testr/Manifest b/dev-python/os-testr/Manifest
index 00cdb773c2a..f1580f3fdad 100644
--- a/dev-python/os-testr/Manifest
+++ b/dev-python/os-testr/Manifest
@@ -1,2 +1 @@
-DIST os-testr-0.8.0.tar.gz 42102 BLAKE2B 
030ee587bc6465e414f09d177abd4f75d869da7e8339e1b396da31165212cec221d156b4cb095b1466b19f8baf2dc01087559b1d6b73fbfbfd41dced3df033c1
 SHA512 
62b5fbb859c1a3b44bc0d57cf4b2cd0a5e6eeff540f5507efd079a73e0f9ee70813e47537b456f1bc600c87da55d05fd23aee0c215b8558cc0b5e71a55950af4
 DIST os-testr-1.0.0.tar.gz 43382 BLAKE2B 
c5a9b22700ce40acff8ceeb796d9fa0b840038cd285d80630b16c3399e8c188d87dc54de653d06a2c0918185e9ffd4695747f59d4d42eb158f9ea18bc361963d
 SHA512 
2189abc76840d935d63635874ebdae7c325b392bc24a52e07e1046b47a17be6fd97ba17dc5593ae7a1e2bff9c5b0dbbfd8ade8a2382dce2223ee4047b3483cec

diff --git a/dev-python/os-testr/os-testr-0.8.0.ebuild 
b/dev-python/os-testr/os-testr-0.8.0.ebuild
deleted file mode 100644
index 2d40ad42d51..000
--- a/dev-python/os-testr/os-testr-0.8.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_{4,5}} )
-
-inherit distutils-r1
-
-DESCRIPTION="A testr wrapper to provide functionality for OpenStack projects"
-HOMEPAGE="https://pypi.org/project/os-testr/ 
https://github.com/openstack/os-testr;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
-   >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
-   >=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
-   >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}]"
-DEPEND="
-   ${CDEPEND}
-   test? ( ${RDEPEND}
-   >=dev-python/coverage-3.6[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}]
-   =dev-python/oslo-sphinx-3.7.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-   )"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}



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

2019-03-24 Thread Matthew Thode
commit: 9f807ca5f60f77c42f0843840406e2f061dfe053
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Mar 24 23:47:44 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Mar 25 00:06:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f807ca5

sys-cluster/cinder: remove pike/queens

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

 sys-cluster/cinder/Manifest  |   5 -
 sys-cluster/cinder/cinder-11.1.1.ebuild  | 209 --
 sys-cluster/cinder/cinder-11.2.0.ebuild  | 209 --
 sys-cluster/cinder/cinder-12.0.5.ebuild  | 217 ---
 sys-cluster/cinder/cinder-2017.2..ebuild | 210 --
 sys-cluster/cinder/cinder-2018.1..ebuild | 217 ---
 6 files changed, 1067 deletions(-)

diff --git a/sys-cluster/cinder/Manifest b/sys-cluster/cinder/Manifest
index 2a8309921ad..f71c070f0d6 100644
--- a/sys-cluster/cinder/Manifest
+++ b/sys-cluster/cinder/Manifest
@@ -1,8 +1,3 @@
-DIST cinder-11.1.1.tar.gz 5808526 BLAKE2B 
1b773e45673c35faff1a327d73608949e088f3635adb6dd6c7e779e708dd8f2270b85086378d48042b86e60ad7ca94754d56c1d0193f1d715112a03cf3163c77
 SHA512 
10ecf0068c57077a24bb0445a0901e07e7ad211cd7fac67ed016b770b477e9ba0e9954de70f165aae69e079f6b2e9416d8292ec701db4c97b987c7dac8f69a43
-DIST cinder-11.2.0.tar.gz 5832600 BLAKE2B 
3d06bef947ffd8b38bb178de79f592b678793bb53ccec23d2b46132d78180d58aa11ea760c9ad5d3923d32452c700aeb6e097d84261e86bdce79d34bff1c2402
 SHA512 
4ef77c0d0423286d1ce2aa1174b65b17999819f719f061811c24f277e41b8463bf4971982c4d9f5e085aac75fcd964353ae26bcf7b395023a0aa37e96414
-DIST cinder-12.0.5.tar.gz 5358388 BLAKE2B 
7ee078eb4cc4c4b16053453f1f3e5bd37c29766f80bedd1b3fe6e9d44387c8215d0fed1f79d92576254bf51b567227193a7175db7d06ef35d7f3fff5d82dd4da
 SHA512 
80788d2b10a4a0bf83e61db8e58f54dd8bbcd9fa06cd4025d37809f310bc7ed148ea9c180f4e6f02cf06f8b388384cbb9cb8a8f29a327acfe8188503550a7097
 DIST cinder-13.0.3.tar.gz 5464871 BLAKE2B 
3d2beebe7503d673ebc8a3f6b07da2a6799d276578823cb1abb518894f88cf97ec051337016b177ddc45614d70b9a5350a49c144011b0d1e41beaf901b4a73da
 SHA512 
2e358f7f0220aa6b6b88dedc8c942abcf5c54c53a690d18d84bee6d63b4f28b75c463f1d37a5e24925431e441f26066dbb0b4d33750429efbe7663d0e69de3a4
 DIST cinder.conf.sample-13.0.3 185527 BLAKE2B 
c53c017c5cacf2fb604840e14adf3b1db36bf8dd2c79d29f1c6b35da843640f97efcfd97d6f68a40a2f928ce864a3e221d7138d7cac977c0d544817e2826ebb2
 SHA512 
1dc850bebd66d90e2950795337a78ea8aea69ead0aeb3e5b7f97c7b12f33a3afc483f3bde2942a34539fbc048fa5b589b3c7d2df53314180f64094569bb81b15
 DIST cinder.conf.sample-2018.2. 185527 BLAKE2B 
c53c017c5cacf2fb604840e14adf3b1db36bf8dd2c79d29f1c6b35da843640f97efcfd97d6f68a40a2f928ce864a3e221d7138d7cac977c0d544817e2826ebb2
 SHA512 
1dc850bebd66d90e2950795337a78ea8aea69ead0aeb3e5b7f97c7b12f33a3afc483f3bde2942a34539fbc048fa5b589b3c7d2df53314180f64094569bb81b15
-DIST pike-cinder.conf.sample 185310 BLAKE2B 
6f6a626537098107d63cd33ef6f8cc63dd5064711fcab3b6a7ebd0bb4170d3cc18e1cc414491859c63ca02d39602f496068823975f1cd5de731402696ade0868
 SHA512 
12c44b7a31888fbf4c70e037a2f5d0b778018e10bd0fc1cb97391bbe2fc6f97bbe4bec0d1504513ee0235ce50decda6883fe64a7d8fd5e329d8ad73e6bb74654
-DIST queens-cinder.conf.sample 179467 BLAKE2B 
00c229a6d9882740460c633db69bf3f5ff3d77a2a8e78f38528f1b5e6e03c2371141ba219c24b8dc82e51c20a5e784af142c1a0192791ff356e5841a9991d713
 SHA512 
346f9ad4ddcfed26dd3b9b34e65c2edaf08a7d649d4af5bd3a5ebf1047c78d6cdc4e4712666e022f56acd3b2a0b323850b40cc4d0008f2c140507342a00b2908

diff --git a/sys-cluster/cinder/cinder-11.1.1.ebuild 
b/sys-cluster/cinder/cinder-11.1.1.ebuild
deleted file mode 100644
index b0f15626d2d..000
--- a/sys-cluster/cinder/cinder-11.1.1.ebuild
+++ /dev/null
@@ -1,209 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 eutils linux-info user
-
-DESCRIPTION="Cinder is the OpenStack Block storage service, a spin out of 
nova-volumes"
-HOMEPAGE="https://launchpad.net/cinder;
-SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/pike/cinder.conf.sample
 -> pike-cinder.conf.sample
-https://tarballs.openstack.org/${PN}/${P}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="+api +scheduler +volume infiniband iscsi lvm mysql +memcached postgres 
rdma sqlite +tcp test +tgt"
-REQUIRED_USE="|| ( mysql postgres sqlite ) iscsi? ( tgt ) infiniband? ( rdma )"
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   app-admin/sudo"
-
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
-   !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
-   >=dev-python/decorator-3.4.0[${PYTHON_USEDEP}]
-   

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

2019-03-24 Thread Matt Turner
commit: 1ddb41a05070cdfe76738cf12b7a4cfd8c7a1256
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Mar 25 00:03:30 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 25 00:04:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ddb41a0

x11-misc/xcompmgr: Version bump to 1.1.8

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

 x11-misc/xcompmgr/Manifest  |  1 +
 x11-misc/xcompmgr/xcompmgr-1.1.8.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/x11-misc/xcompmgr/Manifest b/x11-misc/xcompmgr/Manifest
index fac6eb4170c..b1e5f158c40 100644
--- a/x11-misc/xcompmgr/Manifest
+++ b/x11-misc/xcompmgr/Manifest
@@ -1 +1,2 @@
 DIST xcompmgr-1.1.7.tar.bz2 136667 BLAKE2B 
3231cca0cebc13aade6f008414d77461913d274303289c28b8eb366640905cf9bbb4715d5aa7ad8eb897ac94db099b040e408b2e3867dd2ad46940b3bcfe518f
 SHA512 
f93a6be78169dd41ff08d71409e28746fd62902810a2f6930c0ac44f1415bc7391a8fb885b074fd40afedd7f1c1590aa7c67fc101c3b6488ddaa74495b42149c
+DIST xcompmgr-1.1.8.tar.bz2 138806 BLAKE2B 
85a7cd04c97c3594ab9acf7888aa0024b60027654dc8fa609c8f2fb801b5cd58105aa50c2afe9c322a02657eeea6e57da3f35720ac63c191a81c62fbf9ee4468
 SHA512 
ccf29426ffb0797a53653d1ce152de5eee0cec284811fed4b8e634ea0d948180531e4619d96f47e4f9594432c57322624fe0fdaee2c9200efac427fc0904953d

diff --git a/x11-misc/xcompmgr/xcompmgr-1.1.8.ebuild 
b/x11-misc/xcompmgr/xcompmgr-1.1.8.ebuild
new file mode 100644
index 000..60166725362
--- /dev/null
+++ b/x11-misc/xcompmgr/xcompmgr-1.1.8.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+XORG_STATIC=no
+inherit xorg-3
+
+DESCRIPTION="X Compositing manager"
+HOMEPAGE="https://freedesktop.org/wiki/Software/xapps;
+SRC_URI="https://www.x.org/releases/individual/app/${P}.tar.bz2;
+
+LICENSE="BSD"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+RDEPEND="
+   x11-libs/libXrender
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   x11-libs/libXcomposite
+   x11-libs/libXext
+"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"



[gentoo-commits] repo/gentoo:master commit in: media-libs/raspberrypi-userland/, media-libs/raspberrypi-userland/files/

2019-03-24 Thread Andrey Utkin
commit: 69db8036643a3b20b5b98e89e2518a283258c7de
Author: stefson  yahoo  de>
AuthorDate: Wed Nov  7 19:52:38 2018 +
Commit: Andrey Utkin  gentoo  org>
CommitDate: Sun Mar 24 23:52:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69db8036

media-libs/raspberrypi-userland: : remove upstreamed patch

Closes: https://bugs.gentoo.org/641046
Link: 
https://github.com/raspberrypi/userland/commit/2fe51001dbd421ac35a55af443ac080b50128266
Signed-off-by: Steffen Kuhn  yandex.com>
Signed-off-by: Andrey Utkin  gentoo.org>

 .../files/raspberrypi-userland--gentoo.patch  | 15 ---
 .../raspberrypi-userland/raspberrypi-userland-.ebuild |  2 --
 2 files changed, 17 deletions(-)

diff --git 
a/media-libs/raspberrypi-userland/files/raspberrypi-userland--gentoo.patch 
b/media-libs/raspberrypi-userland/files/raspberrypi-userland--gentoo.patch
deleted file mode 100644
index a5e60554cd1..000
--- 
a/media-libs/raspberrypi-userland/files/raspberrypi-userland--gentoo.patch
+++ /dev/null
@@ -1,15 +0,0 @@
 
raspberrypi-userland-/host_applications/linux/apps/dtoverlay/CMakeLists.txt.old
2017-02-04 19:01:38.944537134 +0100
-+++ 
raspberrypi-userland-/host_applications/linux/apps/dtoverlay/CMakeLists.txt 
   2017-02-04 19:02:09.634401479 +0100
-@@ -22,12 +22,4 @@
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/dtparam DESTINATION bin)
- 
- set(DTOVERLAY_SCRIPTS dtoverlay-pre dtoverlay-post)
--foreach(_script ${DTOVERLAY_SCRIPTS})
--   add_custom_command(
-- TARGET dtoverlay
-- COMMAND ${CMAKE_COMMAND}
-- -E copy ${CMAKE_CURRENT_SOURCE_DIR}/${_script}
-- ${CMAKE_BINARY_DIR}/../../bin/${_script}
--   )
--endforeach()
- install(PROGRAMS ${DTOVERLAY_SCRIPTS} DESTINATION bin)

diff --git a/media-libs/raspberrypi-userland/raspberrypi-userland-.ebuild 
b/media-libs/raspberrypi-userland/raspberrypi-userland-.ebuild
index 99b34886324..6906bbc7039 100644
--- a/media-libs/raspberrypi-userland/raspberrypi-userland-.ebuild
+++ b/media-libs/raspberrypi-userland/raspberrypi-userland-.ebuild
@@ -18,8 +18,6 @@ RDEPEND=""
 
 EGIT_REPO_URI="https://github.com/raspberrypi/userland;
 
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
-
 pkg_setup() {
append-ldflags $(no-as-needed)
 }



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/genkernel/

2019-03-24 Thread Thomas Deutschmann
commit: 27b32c97c5f9bd952f8fdfe2289833e7aaf35513
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Mar 24 23:25:00 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Mar 24 23:25:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27b32c97

sys-kernel/genkernel: set VERSION_ISCSI_ISNS version

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

 sys-kernel/genkernel/genkernel-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-kernel/genkernel/genkernel-.ebuild 
b/sys-kernel/genkernel/genkernel-.ebuild
index 668d7f9d88a..f3b174f3baf 100644
--- a/sys-kernel/genkernel/genkernel-.ebuild
+++ b/sys-kernel/genkernel/genkernel-.ebuild
@@ -101,6 +101,7 @@ src_prepare() {
-e "s:VERSION_MDADM:$VERSION_MDADM:" \
-e "s:VERSION_DMRAID:$VERSION_DMRAID:" \
-e "s:VERSION_FUSE:$VERSION_FUSE:" \
+   -e "s:VERSION_ISCSI_ISNS:$VERSION_ISCSI_ISNS:" \
-e "s:VERSION_ISCSI:$VERSION_ISCSI:" \
-e "s:VERSION_LIBAIO:$VERSION_LIBAIO:" \
-e "s:VERSION_LVM:$VERSION_LVM:" \



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/genkernel/

2019-03-24 Thread Thomas Deutschmann
commit: cb7d0b3cf8f07487ba7549a3e1bb72ff3e056475
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Mar 24 23:14:30 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Mar 24 23:15:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb7d0b3c

sys-kernel/genkernel: bump open-scsi to v2.0.875

...and add open-isns-0.99.

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

 sys-kernel/genkernel/Manifest  | 2 ++
 sys-kernel/genkernel/genkernel-.ebuild | 7 ---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/sys-kernel/genkernel/Manifest b/sys-kernel/genkernel/Manifest
index 6846ece4d4f..b694b42a13f 100644
--- a/sys-kernel/genkernel/Manifest
+++ b/sys-kernel/genkernel/Manifest
@@ -27,5 +27,7 @@ DIST mdadm-3.1.5.tar.bz2 292709 BLAKE2B 
a21fb41c6fd9f332e358339537cffd5207881409
 DIST mdadm-4.0.tar.xz 430780 BLAKE2B 
f08a67452398c864d73c78e2a7258d89c5c81b83dd136d4cd7e31e46b22d75ff67ecf553dc22f55dca418409daded51a399728dfdbd36039e828cad3233774e6
 SHA512 
12fb26e6b9c1912698defa406e5e47a7ca8d68d4a9aa7acdc9b463ee2d4a37fc6ecef6beb5395ff619018c3f6bdb6d8c573060d027707540f645ad2265170e8b
 DIST mdadm-4.1.tar.xz 440756 BLAKE2B 
df0506d937c2aa309d7c68804f66f7dcd51783288594bf746832311c64b8cf82004af4af5f246c5f9753f1de324ff7d49b5ee752d6a00ec03864f7885389706e
 SHA512 
0859c5d3e786345d93ff2c3b291ca8866ba60f1375479e5b4d343124f6824140a8268d42b8ae603b069edba761aa30aaf20d49e9ec54dfcbad34bad3bea0e433
 DIST open-iscsi-2.0-872.tar.gz 900081 BLAKE2B 
6a4911347c55c1c4906350247ae7d92c2aee9627e1ab01cb5d705b02614b6c585ea042fef85a425b8f177645741f8d36e3efb40a57536bb79dbc5cdb6fe7998c
 SHA512 
d26c87772b0b1d13a8bd2eea9db86b3c61af83efbb788116c01ab6a914ff3de634a7b1bff56c1161b28965315543edbfc2735b6c7fbd3f7797471fde63b69cc0
+DIST open-isns-0.99.tar.gz 282831 BLAKE2B 
7140daf08fda894bcbed3e25b122909ad0ed86b4f3db2e42a23b97480dea554194d2a33a3ebdf4e2017a57c2023dd8589f2e2fcfa60470cc3a6a3fbfb0d0ccbc
 SHA512 
90a2297535c5e939f83c761173ce5f5f88e68adc31e41e833b23d07b6dc6959572ae7184db0084b861918199a877b251ebae4b4a7456fdd8c93400dc8457adc9
+DIST open-isns-2.0.875.tar.gz 635121 BLAKE2B 
34a7083087c53ed0e59d293d26efe166b09c5ea18b6022869cc9ff3d2edb2fb8b69e2c1ce6c9011bd20fc590b02dafd6d7c13d8bfa1eae6408c4bace13992e5e
 SHA512 
1709011d7d12d3dd9278a0d775af064d5f7da37357f35d6d5c5b3aa8ec16385c28b201b1261f4581dca3d815015ed8696e1694aa19f3231132f90d1e5b36
 DIST unionfs-fuse-0.24.tar.bz2 30381 BLAKE2B 
c3886d7b0cbd4ac62712d7d94bf9544481200e4354539b29770a88974ea3298b0f594cecfc6f7accff3595004ad1453075b947a2633b5300a3684fedba4995e5
 SHA512 
e0e414f4edbf641ec9d0135a8723e43fc75412359b482f7aedd66fe8245e4df03943c5ecb6f8de4fdbd97f0346033c691e766cc4f4a755f5b43748e1441d3fbd
 DIST unionfs-fuse-2.0.tar.gz 46537 BLAKE2B 
2f5a0da5adb15c408e7b9d0c3658e389a1aea4a9a5f2f3809fc724af43cf2a4b309e4220e46647e3f3fc9b19d48c8d62692e190cf8536182abfe551bfacfcc24
 SHA512 
5b60204632f498931fff7671cc9f40b1800d34cb8c0d0de0773626e2653eb0a36647566c92c1d0cf79543e01b934602ef5603a06508407f352e48ef27a7ee758

diff --git a/sys-kernel/genkernel/genkernel-.ebuild 
b/sys-kernel/genkernel/genkernel-.ebuild
index 71148e7ac41..668d7f9d88a 100644
--- a/sys-kernel/genkernel/genkernel-.ebuild
+++ b/sys-kernel/genkernel/genkernel-.ebuild
@@ -13,7 +13,8 @@ VERSION_DMRAID='1.0.0.rc16-3' # warning, be sure to bump 
patches
 VERSION_LIBAIO='0.3.110' # warning, be sure to bump patches
 VERSION_MDADM='4.1' # warning, be sure to bump patches
 VERSION_FUSE='2.9.9' # warning, be sure to bump patches
-VERSION_ISCSI='2.0-872' # warning, be sure to bump patches
+VERSION_ISCSI='2.0.875' # warning, be sure to bump patches
+VERSION_ISCSI_ISNS='0.99' # warning, be sure to bump patches
 VERSION_LVM='2.02.183' # warning, be sure to bump patches
 VERSION_UNIONFS_FUSE='2.0'
 VERSION_GPG='1.4.23'
@@ -28,8 +29,8 @@ COMMON_URI="${DM_HOME}/dmraid-${VERSION_DMRAID}.tar.bz2
${RH_HOME}/lvm2/LVM2.${VERSION_LVM}.tgz
${RH_HOME}/lvm2/old/LVM2.${VERSION_LVM}.tgz
${BB_HOME}/busybox-${VERSION_BUSYBOX}.tar.bz2
-   
http://www.open-iscsi.org/bits/open-iscsi-${VERSION_ISCSI}.tar.gz
-   mirror://gentoo/open-iscsi-${VERSION_ISCSI}.tar.gz
+   
https://github.com/open-iscsi/open-iscsi/archive/${VERSION_ISCSI}.tar.gz -> 
open-isns-${VERSION_ISCSI}.tar.gz
+   
https://github.com/open-iscsi/open-isns/archive/v${VERSION_ISCSI_ISNS}.tar.gz 
-> open-isns-${VERSION_ISCSI_ISNS}.tar.gz

https://github.com/libfuse/libfuse/releases/download/fuse-${VERSION_FUSE}/fuse-${VERSION_FUSE}.tar.gz

mirror://debian/pool/main/liba/libaio/libaio_${VERSION_LIBAIO}.orig.tar.gz -> 
libaio-${VERSION_LIBAIO}.tar.gz

https://github.com/rpodgorny/unionfs-fuse/archive/v${VERSION_UNIONFS_FUSE}.tar.gz
 -> unionfs-fuse-${VERSION_UNIONFS_FUSE}.tar.gz



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/genkernel/

2019-03-24 Thread Thomas Deutschmann
commit: c0db60e83403d670a6d43d808a9b7d53ace016b6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Mar 24 19:45:50 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Mar 24 23:15:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0db60e8

sys-kernel/genkernel: bump fuse & unionfs-fuse version

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

 sys-kernel/genkernel/Manifest  | 2 ++
 sys-kernel/genkernel/genkernel-.ebuild | 9 -
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/sys-kernel/genkernel/Manifest b/sys-kernel/genkernel/Manifest
index 1c2bd59a8d3..6846ece4d4f 100644
--- a/sys-kernel/genkernel/Manifest
+++ b/sys-kernel/genkernel/Manifest
@@ -7,6 +7,7 @@ DIST busybox-1.27.2.tar.bz2 2216527 BLAKE2B 
77b8fa325b9ba691c0ac944537efdf5d8701
 DIST busybox-1.30.1.tar.bz2 7793781 BLAKE2B 
429f6bd48cb6ede81f956d450cf05b799dce9dbd61593b6dd787f353c2de3734d576ddfec644fa5ab6c61895400c32e3cb28c939b06eaa33eef105c8f8f13d8f
 SHA512 
c18b3d06356d4708b4b0e89d23500d2fe494da9f6aac09c0c19a2e5145ba2bfe8261088eae6562c900996b50c5a9c20459f908069267898c8f86fe3b0b7bd80b
 DIST dmraid-1.0.0.rc16-3.tar.bz2 232743 BLAKE2B 
290c5bb7f1b12ac48627d8afcc346327b2fcce31b1015d5974c956d94f607b297e383158cd8741f03a770cdeb3f42c3e6341ebfcbc2220e122d89c2603eee512
 SHA512 
7c45e5117adc52fc2094b1b2bad4f4c518a46317a2196611966d72085ba3587c4ac8d1080f9d934888c01788f2b2d3d621c6f0d3e2a023c0fb1f9f3fa7fc127e
 DIST fuse-2.8.6.tar.gz 505334 BLAKE2B 
c44533625ead8acc5a16f61064635492c54aa91780018e3895baf18abe3ca00c9ec7f6606183a4f986037201db79697c07d03adf57c5a87e7888b8823d83aa8a
 SHA512 
03cacc45c8ba6700fcdfa9064ef4e10d3ad6fc0e4fc49d41693de2caf03d44513d449b00a7c5d200d055d9481821252509259f5f3d2d6127fa51957a006a90fd
+DIST fuse-2.9.9.tar.gz 1813177 BLAKE2B 
9e9141380bda46eb0bcce325c6fd293fe3844fe884a4952bb38d4b89dc48b728ffcc891038b3a7a861f05acfacce9dd7bb0e11d600609f3ad0ab278ccbe98847
 SHA512 
3d82fafd04f2924299bb09d2bb144935fa004a43fb9a6568e2e1cc5a60fded2efa1711029a0d7f12b3e6e4501f7217f2ee3545646d89da8dece083cb390f23e2
 DIST genkernel-3.4.52.3.tar.xz 282976 BLAKE2B 
69eb6a964c5c20ee32ea6143b576a85090dfb50c011c641ae8415fba1cb99e7f239f4ba7fdc450b7c0eb93a248610c47e751f3993b8fff6e51b9602c37145af9
 SHA512 
a68b0149b9a69f59ab3e8d772f35f12643b9500c0c684d4824ca1f3c669b0ea01989a55643cd5b413f35d6fff284cd5ede7183971e202b3788caeb399259191f
 DIST genkernel-3.4.52.4.tar.xz 284064 BLAKE2B 
bc9c37f4bc7ab6c5eb8b4a0fe964843cf2554806d2dedd22feb2c9eae4935d9c432c8608916dece5b48cdd5dbf30aaa04fac6e279392f63c6854c2fbef956b1a
 SHA512 
2dcdf2acb19c868ea7bfd5a0f9c7c3b179ac0f9f31b74306641dd8a1e8b076f5122e60a96c006e20f634e9e540d51723ef94bf91d8e28217dbb2159ff4d896dc
 DIST genkernel-3.5.1.1.tar.xz 292864 BLAKE2B 
43bc7838e53ac3bbd3b36fb999e36c3a62da6aa5e4d62606aca9988aff135cc3ab0777fb7e60e2da9de807d059b3393cb686aad06f0bec22d6710f5978d05f27
 SHA512 
ff564e00bed2c7c211a0c7e73425169a6d354366737b8a561751557980f866dcd071baee5de3b089221cf6cb3ffd61d26ddd7d2f6f7e18d0c0df19ad94da1678
@@ -27,3 +28,4 @@ DIST mdadm-4.0.tar.xz 430780 BLAKE2B 
f08a67452398c864d73c78e2a7258d89c5c81b83dd1
 DIST mdadm-4.1.tar.xz 440756 BLAKE2B 
df0506d937c2aa309d7c68804f66f7dcd51783288594bf746832311c64b8cf82004af4af5f246c5f9753f1de324ff7d49b5ee752d6a00ec03864f7885389706e
 SHA512 
0859c5d3e786345d93ff2c3b291ca8866ba60f1375479e5b4d343124f6824140a8268d42b8ae603b069edba761aa30aaf20d49e9ec54dfcbad34bad3bea0e433
 DIST open-iscsi-2.0-872.tar.gz 900081 BLAKE2B 
6a4911347c55c1c4906350247ae7d92c2aee9627e1ab01cb5d705b02614b6c585ea042fef85a425b8f177645741f8d36e3efb40a57536bb79dbc5cdb6fe7998c
 SHA512 
d26c87772b0b1d13a8bd2eea9db86b3c61af83efbb788116c01ab6a914ff3de634a7b1bff56c1161b28965315543edbfc2735b6c7fbd3f7797471fde63b69cc0
 DIST unionfs-fuse-0.24.tar.bz2 30381 BLAKE2B 
c3886d7b0cbd4ac62712d7d94bf9544481200e4354539b29770a88974ea3298b0f594cecfc6f7accff3595004ad1453075b947a2633b5300a3684fedba4995e5
 SHA512 
e0e414f4edbf641ec9d0135a8723e43fc75412359b482f7aedd66fe8245e4df03943c5ecb6f8de4fdbd97f0346033c691e766cc4f4a755f5b43748e1441d3fbd
+DIST unionfs-fuse-2.0.tar.gz 46537 BLAKE2B 
2f5a0da5adb15c408e7b9d0c3658e389a1aea4a9a5f2f3809fc724af43cf2a4b309e4220e46647e3f3fc9b19d48c8d62692e190cf8536182abfe551bfacfcc24
 SHA512 
5b60204632f498931fff7671cc9f40b1800d34cb8c0d0de0773626e2653eb0a36647566c92c1d0cf79543e01b934602ef5603a06508407f352e48ef27a7ee758

diff --git a/sys-kernel/genkernel/genkernel-.ebuild 
b/sys-kernel/genkernel/genkernel-.ebuild
index c77fb31bc06..71148e7ac41 100644
--- a/sys-kernel/genkernel/genkernel-.ebuild
+++ b/sys-kernel/genkernel/genkernel-.ebuild
@@ -12,10 +12,10 @@ VERSION_BUSYBOX='1.30.1' # warning, be sure to bump patches
 VERSION_DMRAID='1.0.0.rc16-3' # warning, be sure to bump patches
 VERSION_LIBAIO='0.3.110' # warning, be sure to bump patches
 VERSION_MDADM='4.1' # warning, be sure to bump patches
-VERSION_FUSE='2.8.6' # warning, be sure to bump patches

[gentoo-commits] repo/gentoo:master commit in: sys-kernel/git-sources/

2019-03-24 Thread Mike Pagano
commit: a32695c1d8b05ae7e4e298190f6ad0f95c59
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Mar 24 23:12:31 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Mar 24 23:12:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a32695c1

sys-kernel/git-sources: Linux patch 5.1-rc2

Signed-off-by: Mike Pagano  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 sys-kernel/git-sources/Manifest   |  1 +
 sys-kernel/git-sources/git-sources-5.1_rc2.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index f2baaf2ce78..cf4a57dba95 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -1,2 +1,3 @@
 DIST linux-5.0.tar.xz 105235152 BLAKE2B 
59635c87a4123c90ab8598c9ea5167096aa6bc765e9d8456d00f3da7530e89e925b3925c99f1a6c96ac0ded7df3ac7df52c75672f0a66acc40f563200892e064
 SHA512 
3fbab70c7b03b1a10e9fa14d1e2e1f550faba4f5792b7699ca006951da74ab86e7d7f19c6a67849ab99343186e7d6f2752cd910d7613b93c1eab90abf1b0
 DIST patch-5.1-rc1.patch 38814968 BLAKE2B 
857ecb5a7c0e6514bedd377dd70602083953ada74b5561090d6003c113206609f98461e03522403c9571288e0922bfd2649885d44b49640a0722cf15c3e837b3
 SHA512 
e43656458c3caaebe41b1799d1fd5991c22522c23b25f89c91f747c606e7b52fb363d85dc0d4b8d013e916ccbba6f09f96a894b5613e823b8dccfd1b891fd854
+DIST patch-5.1-rc2.patch 39225075 BLAKE2B 
3b4efa4ac54a76f18ec1cea311c21f9599a5d353d89fced007673633ef137d4dbdaa8b1617614784d53fbe8b44fed26318d7ef51baf2f80467d0801a0e57dd7f
 SHA512 
6872b3513fb6f8e2d6de9d83d1dd7e182e4a60a3e9638e53072b3513c21bdd1ea7f081ce5c28e5d53b5a60859e14de1959de2f24d6c91ef3a2db0318240f7eb8

diff --git a/sys-kernel/git-sources/git-sources-5.1_rc2.ebuild 
b/sys-kernel/git-sources/git-sources-5.1_rc2.ebuild
new file mode 100644
index 000..775e4fb8b97
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-5.1_rc2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="1"
+K_BASE_VER="5.0"
+K_EXP_GENPATCHES_NOUSE="1"
+K_FROM_GIT="yes"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.5"
+
+pkg_postinst() {
+   postinst_sources
+}



[gentoo-commits] proj/genkernel:master commit in: /

2019-03-24 Thread Thomas Deutschmann
commit: a780a8f628cd5be6b42454be0d8b66892b12a364
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Mar 24 23:10:07 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Mar 24 23:10:07 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=a780a8f6

Revert "compile_lvm(): No need to call compile_libaio() when LVM_BINCACHE is 
valid"

This reverts commit 45a2a4276baa5d638530312d1d5f19bae3b1e8ad.

Let's keep that call to allow to trigger a rebuild.

 gen_compile.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gen_compile.sh b/gen_compile.sh
index a968eee..1c29360 100755
--- a/gen_compile.sh
+++ b/gen_compile.sh
@@ -569,12 +569,12 @@ compile_libaio() {
 }
 
 compile_lvm() {
+   compile_libaio
+
if [[ -f "${LVM_BINCACHE}" && "${LVM_BINCACHE}" -nt 
"${LIBAIO_BINCACHE}" ]]
then
print_info 1 "$(getIndent 3)lvm: >> Using cache"
else
-   compile_libaio
-
[ -f "${LVM_SRCTAR}" ] ||
gen_die "Could not find LVM source tarball: 
${LVM_SRCTAR}! Please place it there, or place another version, changing 
/etc/genkernel.conf as necessary!"
cd "${TEMP}"



[gentoo-commits] proj/genkernel:master commit in: maintenance/, /, patches/iscsi/2.0.875/, patches/iscsi/2.0-872/, defaults/

2019-03-24 Thread Thomas Deutschmann
commit: b2b148e90850f0e172995c2012cfd2e9e96c9232
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Mar 24 22:00:54 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Mar 24 23:05:24 2019 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=b2b148e9

Fix iSCSI support

Bump to open-scsi-2.0.875 & open-isns-0.99.

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

 defaults/software.sh   |  5 ++
 gen_compile.sh | 79 ++
 gen_determineargs.sh   |  1 +
 gen_funcs.sh   |  1 +
 maintenance/docmatcher.py  |  2 +-
 .../open-iscsi-2.0.872-omg-calling-configure.patch | 11 ---
 .../open-iscsi-2.0.874-musl-ethtool-compat.patch   | 69 +++
 .../2.0.875/open-iscsi-2.0.874-musl-fixes.patch| 51 ++
 ...eclare-inline-best_match_bufcmp-as-static.patch | 24 +++
 .../open-iscsi-2.0.875-include-sysmacros.patch | 21 ++
 .../open-iscsi-2.0.875-static-iscsistart.patch | 13 
 11 files changed, 250 insertions(+), 27 deletions(-)

diff --git a/defaults/software.sh b/defaults/software.sh
index 1263c9f..f332431 100644
--- a/defaults/software.sh
+++ b/defaults/software.sh
@@ -39,6 +39,11 @@ ISCSI_DIR="${ISCSI_DIR:-open-iscsi-${ISCSI_VER}}"
 ISCSI_SRCTAR="${ISCSI_SRCTAR:-${DISTDIR}/open-iscsi-${ISCSI_VER}.tar.gz}"
 ISCSI_BINCACHE="${ISCSI_BINCACHE:-%%CACHE%%/iscsi-${ISCSI_VER}-%%ARCH%%.bz2}"
 
+ISCSI_ISNS_VER="${ISCSI_ISNS_VER:-VERSION_ISCSI_ISNS}"
+ISCSI_ISNS_DIR="${ISCSI_ISNS_DIR:-open-isns-${ISCSI_ISNS_VER}}"
+ISCSI_ISNS_SRCTAR="${ISCSI_ISNS_SRCTAR:-${DISTDIR}/open-isns-${ISCSI_ISNS_VER}.tar.gz}"
+ISCSI_ISNS_BINCACHE="${ISCSI_ISNS_BINCACHE:-%%CACHE%%/open-isns-${ISCSI_ISNS_VER}-%%ARCH%%.tar.bz2}"
+
 FUSE_VER="${FUSE_VER:-VERSION_FUSE}"
 FUSE_DIR="${FUSE_DIR:-fuse-${FUSE_VER}}"
 FUSE_SRCTAR="${FUSE_SRCTAR:-${DISTDIR}/fuse-${FUSE_VER}.tar.gz}"

diff --git a/gen_compile.sh b/gen_compile.sh
index d7c417e..a968eee 100755
--- a/gen_compile.sh
+++ b/gen_compile.sh
@@ -821,30 +821,33 @@ compile_unionfs_fuse() {
 }
 
 compile_iscsi() {
-   if [ -f "${ISCSI_BINCACHE}" ]
+   compile_iscsi_isns
+
+   if [[ -f "${ISCSI_BINCACHE}" && "${ISCSI_BINCACHE}" -nt 
"${ISCSI_ISNS_BINCACHE}" ]]
then
-   print_info 1 "$(getIndent 3)iSCSI: Using cache"
+   print_info 1 "$(getIndent 3)iscsistart: Using cache"
else
[ ! -f "${ISCSI_SRCTAR}" ] &&
-   gen_die "Could not find iSCSI source tarball: 
${ISCSI_SRCTAR}. Please place it there, or place another version, changing 
/etc/genkernel.conf as necessary!"
+   gen_die "Could not find open-scsi source tarball: 
${ISCSI_SRCTAR}. Please place it there, or place another version, changing 
/etc/genkernel.conf as necessary!"
cd "${TEMP}"
rm -rf "${ISCSI_DIR}"
tar -xpf "${ISCSI_SRCTAR}"
[ ! -d "${ISCSI_DIR}" ] &&
-   gen_die "ISCSI directory ${ISCSI_DIR} invalid"
-   print_info 1 "$(getIndent 3)iSCSI: >> Compiling..."
+   gen_die "open-scsi directory ${ISCSI_DIR} is invalid"
+
+   rm -rf "${TEMP}/iscsi-isns" > /dev/null
+   mkdir -p "${TEMP}/iscsi-isns"
+   /bin/tar -xpf "${ISCSI_ISNS_BINCACHE}" -C "${TEMP}/iscsi-isns" 
||
+   gen_die "Could not extract open-isns binary cache!"
+
cd "${TEMP}/${ISCSI_DIR}"
+   print_info 1 "$(getIndent 3)open-scsi: >> Patching..."
apply_patches iscsi ${ISCSI_VER}
 
-   # Only build userspace
-   print_info 1 "$(getIndent 3)iSCSI: >> Configuring userspace..."
-   cd utils/open-isns || gen_die 'Could not enter open-isns dir'
-   # we currently have a patch that changes configure.ac
-   # once given patch is dropped, drop autoconf too
-   autoconf || gen_die 'Could not tweak open-iscsi configuration'
-   ./configure --without-slp >> ${LOGFILE} 2>&1 || gen_die 'Could 
not configure userspace'
-   cd ../.. || gen_die 'wtf?'
-   MAKE=${UTILS_MAKE} compile_generic "user" ""
+   print_info 1 "$(getIndent 3)open-scsi: >> Compiling..."
+   CFLAGS="-I${TEMP}/iscsi-isns/usr/include" \
+   LDFLAGS="-L${TEMP}/iscsi-isns/usr/lib -lrt -lpthread" \
+   compile_generic "user" utils
 
# if kernel modules exist, copy them to initramfs, otherwise it 
will be compiled into the kernel
mkdir -p 
"${TEMP}/initramfs-iscsi-temp/lib/modules/${KV}/kernel/drivers/scsi/"
@@ -854,6 +857,7 @@ compile_iscsi() {

module=${KERNEL_OUTPUTDIR}/drivers/scsi/${modname}${KEXT}
if [ -e "${module}" ]
   

[gentoo-commits] repo/gentoo:master commit in: kde-misc/plasma-redshift-control/, kde-misc/plasma-redshift-control/files/

2019-03-24 Thread Andreas Sturmlechner
commit: 9538f2dfaa10fa9bc7015380e3bbb5defde3deef
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 24 22:21:00 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 24 23:01:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9538f2df

kde-misc/plasma-redshift-control: EAPI-7 bump, fix with redshift-1.12

Systray icon scrollwheel adjustment only worked in one direction without -P
param.

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

 ...ft-control-1.0.18-fix-custom-icc-profiles.patch | 39 ++
 ...redshift-control-1.0.18-reset-gamma-ramps.patch | 25 ++
 .../plasma-redshift-control-1.0.18-r1.ebuild   | 27 +++
 3 files changed, 91 insertions(+)

diff --git 
a/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-fix-custom-icc-profiles.patch
 
b/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-fix-custom-icc-profiles.patch
new file mode 100644
index 000..28a1cc00cf0
--- /dev/null
+++ 
b/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-fix-custom-icc-profiles.patch
@@ -0,0 +1,39 @@
+From 1e2a920633d7085fc4e48f1163f434525b777c5b Mon Sep 17 00:00:00 2001
+From: John Salatas 
+Date: Wed, 6 Mar 2019 14:25:28 -0800
+Subject: Preserve screen colour doesn't work as expected
+
+Summary:
+using a custom .icc profile, running redshift from a command line works good 
but the applet seems to mess with it, the preserve option doesn't work, either 
in randr mode or vidmode the .icc is ignored even if it is running in daytime.
+
+See also:
+https://github.com/kotelnik/plasma-applet-redshift-control/issues/54
+
+Reviewers: #Plasma, martinkostolny, broulik
+
+Reviewed By: broulik
+
+Subscribers: broulik, plasma-devel
+
+Tags: #plasma
+
+Differential Revision: https://phabricator.kde.org/D17249
+---
+ package/contents/ui/main.qml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/package/contents/ui/main.qml b/package/contents/ui/main.qml
+index 2ea8fd3..268cb33 100644
+--- a/package/contents/ui/main.qml
 b/package/contents/ui/main.qml
+@@ -96,7 +96,7 @@ Item {
+ 
+ function stopRedshift() {
+ print('disabling redshift')
+-redshiftDS.connectedSources.length = 0
++redshiftDS.removeSource(redshiftCommand)
+ redshiftDS.connectedSources.push(redshiftDS.redshiftStopSource)
+ active = false
+ }
+-- 
+cgit v1.1

diff --git 
a/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-reset-gamma-ramps.patch
 
b/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-reset-gamma-ramps.patch
new file mode 100644
index 000..5e2b3682213
--- /dev/null
+++ 
b/kde-misc/plasma-redshift-control/files/plasma-redshift-control-1.0.18-reset-gamma-ramps.patch
@@ -0,0 +1,25 @@
+From a26a425145120b8e7782d0225e146fcef7b0640f Mon Sep 17 00:00:00 2001
+From: grmat 
+Date: Wed, 20 Jun 2018 10:14:40 +0200
+Subject: [PATCH] add -P switch to one-shot redshift call
+
+---
+ package/contents/ui/main.qml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/package/contents/ui/main.qml b/package/contents/ui/main.qml
+index 2ea8fd3..38d7b8a 100644
+--- a/package/contents/ui/main.qml
 b/package/contents/ui/main.qml
+@@ -67,7 +67,7 @@ Item {
+ // - commands
+ property string redshiftCommand: 'redshift' + locationCmdPart + 
modeCmdPart + ' -t ' + dayTemperature + ':' + nightTemperature + 
brightnessAndGamma + (smoothTransitions ? '' : ' -r')
+ property string redshiftOneTimeBrightnessAndGamma: ' -b ' + 
(currentBrightness*0.01).toFixed(2) + ':' + (currentBrightness*0.01).toFixed(2) 
+ ' -g ' + gammaR + ':' + gammaG + ':' + gammaB
+-property string redshiftOneTimeCommand: 'redshift -O ' + 
manualTemperature + redshiftOneTimeBrightnessAndGamma + ' -r'
++property string redshiftOneTimeCommand: 'redshift -PO ' + 
manualTemperature + redshiftOneTimeBrightnessAndGamma + ' -r'
+ property string redshiftPrintCommand: 'LANG=C ' + redshiftCommand + ' -p'
+ 
+ property bool inTray: (plasmoid.parent === null || 
plasmoid.parent.objectName === 'taskItemContainer')
+-- 
+2.17.1
+

diff --git 
a/kde-misc/plasma-redshift-control/plasma-redshift-control-1.0.18-r1.ebuild 
b/kde-misc/plasma-redshift-control/plasma-redshift-control-1.0.18-r1.ebuild
new file mode 100644
index 000..86113c45781
--- /dev/null
+++ b/kde-misc/plasma-redshift-control/plasma-redshift-control-1.0.18-r1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="plasma-applet-redshift-control"
+inherit kde5
+
+DESCRIPTION="Plasma 5 applet for controlling redshift"
+HOMEPAGE="https://store.kde.org/p/998916/;
+SRC_URI="https://github.com/kotelnik/${MY_PN}/archive/v${PV}.tar.gz -> 
${MY_PN}-${PV}.tar.gz"
+
+LICENSE="GPL-2+"

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

2019-03-24 Thread Mike Gilbert
commit: 2fceba22ca27794f7c955b32734baf7d8755
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Mar 24 22:25:15 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Mar 24 22:25:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fceba22

media-gfx/fontforge: skip gdk_init if running a script

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

 media-gfx/fontforge/files/20190317-gdk_init.patch  | 39 ++
 ...0190317.ebuild => fontforge-20190317-r1.ebuild} | 13 ++--
 2 files changed, 41 insertions(+), 11 deletions(-)

diff --git a/media-gfx/fontforge/files/20190317-gdk_init.patch 
b/media-gfx/fontforge/files/20190317-gdk_init.patch
new file mode 100644
index 000..060e6957748
--- /dev/null
+++ b/media-gfx/fontforge/files/20190317-gdk_init.patch
@@ -0,0 +1,39 @@
+From 4577ad7205c600c6c8e809e10d51eb2118cb66b5 Mon Sep 17 00:00:00 2001
+From: Mike Gilbert 
+Date: Sun, 24 Mar 2019 18:12:21 -0400
+Subject: [PATCH] Defer gdk_init() until after CheckIsScript()
+
+This allows fontforge to run without an X server available.
+
+Fixes: https://github.com/fontforge/fontforge/issues/3582
+---
+ fontforgeexe/startui.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/fontforgeexe/startui.c b/fontforgeexe/startui.c
+index 1bb5fd8ca..ae15afbf2 100644
+--- a/fontforgeexe/startui.c
 b/fontforgeexe/startui.c
+@@ -900,9 +900,6 @@ int fontforge_main( int argc, char **argv ) {
+ #if !(GLIB_CHECK_VERSION(2, 35, 0))
+ g_type_init();
+ #endif
+-#ifdef FONTFORGE_CAN_USE_GDK
+-gdk_init(, );
+-#endif
+ 
+ /* Must be done before we cache the current directory */
+ /* Change to HOME dir if specified on the commandline */
+@@ -1093,6 +1090,9 @@ int fontforge_main( int argc, char **argv ) {
+ CheckIsScript(argc,argv); /* Will run the script and exit if it is a 
script */
+   /* If there is no UI, there is always a 
script */
+   /*  and we will never return from the 
above */
++#ifdef FONTFORGE_CAN_USE_GDK
++gdk_init(, );
++#endif
+ if ( load_prefs==NULL ||
+   (strcasecmp(load_prefs,"Always")!=0 &&  /* Already loaded */
+strcasecmp(load_prefs,"Never")!=0 ))
+-- 
+2.21.0
+

diff --git a/media-gfx/fontforge/fontforge-20190317.ebuild 
b/media-gfx/fontforge/fontforge-20190317-r1.ebuild
similarity index 93%
rename from media-gfx/fontforge/fontforge-20190317.ebuild
rename to media-gfx/fontforge/fontforge-20190317-r1.ebuild
index 3e2be07fecd..faf3deb43fb 100644
--- a/media-gfx/fontforge/fontforge-20190317.ebuild
+++ b/media-gfx/fontforge/fontforge-20190317-r1.ebuild
@@ -4,9 +4,8 @@
 EAPI=7
 
 PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
-VIRTUALX_REQUIRED="manual"
 
-inherit python-single-r1 virtualx xdg
+inherit python-single-r1 xdg
 
 DESCRIPTION="postscript font editor and converter"
 HOMEPAGE="http://fontforge.github.io/;
@@ -57,7 +56,6 @@ DEPEND="${RDEPEND}
 BDEPEND="
sys-devel/gettext
virtual/pkgconfig
-   test? ( gtk? ( ${VIRTUALX_DEPEND} ) )
 "
 
 # Needs keywording on many arches.
@@ -68,6 +66,7 @@ BDEPEND="
 
 PATCHES=(
"${FILESDIR}"/20170731-gethex-unaligned.patch
+   "${FILESDIR}"/20190317-gdk_init.patch
 )
 
 pkg_setup() {
@@ -108,14 +107,6 @@ src_compile() {
emake
 }
 
-src_test() {
-   if use gtk; then
-   virtx emake check
-   else
-   emake check
-   fi
-}
-
 src_install() {
default
find "${ED}" -name '*.la' -type f -delete || die



[gentoo-commits] repo/gentoo:master commit in: net-im/gajim/files/, net-im/gajim/

2019-03-24 Thread Amadeusz Piotr Żołnowski
commit: 8b1a498ff7872a284408f58634ccb4a75368935a
Author: Amadeusz Piotr Żołnowski  gentoo  org>
AuthorDate: Sun Mar 24 22:07:20 2019 +
Commit: Amadeusz Piotr Żołnowski  gentoo  org>
CommitDate: Sun Mar 24 22:10:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b1a498f

net-im/gajim: Bump version

Drop x86-fbsd keyword because new deps are missing those keyword.

Bug: https://bugs.gentoo.org/651616
Signed-off-by: Amadeusz Piotr Żołnowski  gentoo.org>

 net-im/gajim/Manifest  |  1 +
 net-im/gajim/files/1.0.3-0001-disable-gspell.patch | 23 ++
 net-im/gajim/gajim-1.0.3.ebuild| 84 ++
 net-im/gajim/metadata.xml  | 12 
 4 files changed, 120 insertions(+)

diff --git a/net-im/gajim/Manifest b/net-im/gajim/Manifest
index 7a27b1740ec..8055cbb9a9d 100644
--- a/net-im/gajim/Manifest
+++ b/net-im/gajim/Manifest
@@ -1,2 +1,3 @@
 DIST gajim-0.16.6.tar.bz2 4564505 BLAKE2B 
0446d826afc782ceba4fe67d6c7173d60264ec1b5a227f0da62285ea1d083143b4895e4472c2df499de419f9a34c59d9afa1ac2348052defb100438782a3df46
 SHA512 
6c8c2a38429468a1e6f02aae730ff947c649960e8cc672457c1e1733ab2dad6534b1e5ac2e1c0c385e331a6ba817c6e67c1a27443632b9fd43e7ab76ad66c935
 DIST gajim-0.16.9.tar.bz2 4469275 BLAKE2B 
451f09cde9d177932429b9ece900e09c58ac43b5f97cd64cf70e75d13f2261ab52ee35e02e8680c83a5d81d7574bca561532dd1327f1109b0cc872956b1a05f7
 SHA512 
d8ddae3826bbcd4458b016b3cf6b0472b41db4b9026b300b058d9cef403195e38423ff950fcbf6fed0cdbbb485a274905a9a5945028c4cbb24d1a38c72bf4cbb
+DIST gajim-1.0.3.tar.bz2 5964743 BLAKE2B 
af4bf2206a962eb68c4df09359fa3a0ccaca1e886d4fad67d9839f5fd4c1fd359c7ee7933d39d8c1ae7dcbde6b72548fef3564a467653064d4d37aa1db234c04
 SHA512 
a6d7f92a22a9dddc8a4b07eda0aae0b6fb4db57c73133ee19937f7e2a2a82c5351051d1f3627c94a44434276ed001b83d375f708f177962125af66cda8579ec8

diff --git a/net-im/gajim/files/1.0.3-0001-disable-gspell.patch 
b/net-im/gajim/files/1.0.3-0001-disable-gspell.patch
new file mode 100644
index 000..fbffa112334
--- /dev/null
+++ b/net-im/gajim/files/1.0.3-0001-disable-gspell.patch
@@ -0,0 +1,23 @@
+--- a/gajim/common/app.py  2018-05-16 05:59:40.278703415 +0300
 b/gajim/common/app.py  2018-05-16 06:00:14.520423471 +0300
+@@ -265,20 +265,6 @@
+ HAVE_IDLE = False
+ 
+ HAVE_SPELL = False
+-try:
+-spell_log = logging.getLogger('gajim.speller')
+-gi.require_version('Gspell', '1')
+-from gi.repository import Gspell
+-langs = Gspell.language_get_available()
+-for lang in langs:
+-spell_log.info('%s (%s) dict available',
+-   lang.get_name(), lang.get_code())
+-if langs:
+-HAVE_SPELL = True
+-else:
+-spell_log.info('No dicts available')
+-except (ImportError, ValueError):
+-pass
+ 
+ gajim_identity = {'type': 'pc', 'category': 'client', 'name': 'Gajim'}
+ gajim_common_features = [nbxmpp.NS_BYTESTREAM, nbxmpp.NS_SI, nbxmpp.NS_FILE,

diff --git a/net-im/gajim/gajim-1.0.3.ebuild b/net-im/gajim/gajim-1.0.3.ebuild
new file mode 100644
index 000..5b8cac2d108
--- /dev/null
+++ b/net-im/gajim/gajim-1.0.3.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2019 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{5,6} )
+PYTHON_REQ_USE="sqlite,xml"
+DISTUTILS_SINGLE_IMPL=1
+
+inherit gnome2-utils distutils-r1 versionator xdg-utils
+
+DESCRIPTION="Jabber client written in PyGTK"
+HOMEPAGE="https://www.gajim.org/;
+SRC_URI="https://www.gajim.org/downloads/$(get_version_component_range 
1-2)/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+#KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~x86"
+IUSE="+crypt geolocation jingle keyring networkmanager remote rst +spell upnp
+   +webp"
+
+COMMON_DEPEND="
+   dev-libs/gobject-introspection[cairo,${PYTHON_USEDEP}]
+   >=x11-libs/gtk+-3.22:3[introspection]"
+DEPEND="${COMMON_DEPEND}
+   app-arch/unzip
+   >=dev-util/intltool-0.40.1
+   virtual/pkgconfig
+   >=sys-devel/gettext-0.17-r1"
+RDEPEND="${COMMON_DEPEND}
+   dev-python/idna[${PYTHON_USEDEP}]
+   dev-python/precis-i18n[${PYTHON_USEDEP}]
+   dev-python/pyasn1[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pycurl[${PYTHON_USEDEP}]
+   dev-python/pygobject[cairo,${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}]
+   >=dev-python/python-nbxmpp-0.6.6[${PYTHON_USEDEP}]
+   x11-libs/libXScrnSaver
+   crypt? (
+   dev-python/pycryptodome[${PYTHON_USEDEP}]
+   >=dev-python/python-gnupg-0.4.0[${PYTHON_USEDEP}] )
+   geolocation? ( app-misc/geoclue[introspection] )
+   jingle? (
+   net-libs/farstream:0.2[introspection]
+   media-libs/gstreamer:1.0[introspection]
+   media-libs/gst-plugins-base:1.0[introspection]
+   media-libs/gst-plugins-ugly:1.0

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Gentoo-App-Pram/

2019-03-24 Thread Patrice Clement
commit: 05202bce9890c8e7e66d26a9af89d9712e5187d7
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Mar 24 21:43:05 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Mar 24 21:45:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05202bce

dev-perl/Gentoo-App-Pram: update DESCRIPTION.

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

 dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.200.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.200.0.ebuild 
b/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.200.0.ebuild
index 1bf375c2c16..d8ddabca226 100644
--- a/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.200.0.ebuild
+++ b/dev-perl/Gentoo-App-Pram/Gentoo-App-Pram-0.200.0.ebuild
@@ -8,7 +8,7 @@ DIST_VERSION=0.20
 
 inherit perl-module
 
-DESCRIPTION="Utility to merge PRs from the Gentoo Github repository"
+DESCRIPTION="Official tool to merge PRs from the Gentoo Github repository"
 HOMEPAGE="https://github.com/monsieurp/Gentoo-App-Pram;
 SLOT="0"
 KEYWORDS="amd64 ~arm x86 ~amd64-fbsd"



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

2019-03-24 Thread Lars Wendler
commit: 8081ea9be17ec027df0fcf16b428b5050284f6a7
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Mar 24 21:39:23 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Mar 24 21:40:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8081ea9b

app-editors/nano: Synced live ebuild.

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

 app-editors/nano/nano-.ebuild | 17 +++--
 1 file changed, 7 insertions(+), 10 deletions(-)

diff --git a/app-editors/nano/nano-.ebuild 
b/app-editors/nano/nano-.ebuild
index f4eec8c7c12..aa130516a9a 100644
--- a/app-editors/nano/nano-.ebuild
+++ b/app-editors/nano/nano-.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 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3 autotools
 else
MY_P="${PN}-${PV/_}"
-   SRC_URI="https://www.nano-editor.org/dist/v${PV:0:3}/${MY_P}.tar.gz;
+   SRC_URI="https://www.nano-editor.org/dist/v${PV:0:1}/${MY_P}.tar.gz;
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"
 fi
 
@@ -27,10 +27,11 @@ LIB_DEPEND=">=sys-libs/ncurses-5.9-r1:0=[unicode?]
!ncurses? ( slang? ( sys-libs/slang[static-libs(+)] ) )"
 RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
 DEPEND="${RDEPEND}
+   static? ( ${LIB_DEPEND} )"
+BDEPEND="
nls? ( sys-devel/gettext )
virtual/pkgconfig
-   static? ( ${LIB_DEPEND} )"
-
+"
 src_prepare() {
default
if [[ ${PV} == "" ]] ; then
@@ -46,7 +47,6 @@ src_configure() {
$(use_enable !minimal color)
$(use_enable !minimal multibuffer)
$(use_enable !minimal nanorc)
-   --disable-wrapping-as-root
$(use_enable magic libmagic)
$(use_enable spell speller)
$(use_enable justify)
@@ -56,16 +56,13 @@ src_configure() {
$(use_enable minimal tiny)
$(usex ncurses --without-slang $(use_with slang))
)
-   case ${CHOST} in
-   *-gnu*|*-uclibc*) myconf+=( "--with-wordbounds" ) ;; #467848
-   esac
econf "${myconf[@]}"
 }
 
 src_install() {
default
# don't use "${ED}" here or things break (#654534)
-   rm -r "${D%/}"/trash || die
+   rm -r "${D}"/trash || die
 
dodoc doc/sample.nanorc
docinto html
@@ -76,7 +73,7 @@ src_install() {
# Enable colorization by default.
sed -i \
-e '/^# include /s:# *::' \
-   "${ED%/}"/etc/nanorc || die
+   "${ED}"/etc/nanorc || die
fi
 
dosym ../../bin/nano /usr/bin/nano



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

2019-03-24 Thread Lars Wendler
commit: d4523ea31e0bc125bb55b0b0876690544ded856c
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Mar 24 21:37:44 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Mar 24 21:40:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4523ea3

app-editors/nano: Bump to version 4.0

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

 app-editors/nano/Manifest|  1 +
 app-editors/nano/nano-4.0.ebuild | 80 
 2 files changed, 81 insertions(+)

diff --git a/app-editors/nano/Manifest b/app-editors/nano/Manifest
index 04d2a164bf6..8c6e71a8b28 100644
--- a/app-editors/nano/Manifest
+++ b/app-editors/nano/Manifest
@@ -1,3 +1,4 @@
 DIST nano-2.9.8.tar.gz 2905951 BLAKE2B 
95b78c43a052be68956f5b9493c418c23a9db40b56f709b17217bce257333b69e78e8f8bec191b21df8aa408ce2d3c7d68bc82cf2f785df9b31929f4f41b4325
 SHA512 
dcc7b074b585135e34339648fc725f54964488813d49fac50cf88c11d7cfcb8514907dbc2631ce7664ab0241717e8c42833e3c037070c80c8e7bee68fc280a2d
 DIST nano-3.1.tar.gz 2923258 BLAKE2B 
d8e8e0da8ed669940a2c5604d476a147cb61f96db03bc0bebafc458f4766561962c94f22f84cf714ece7052670c987272029d3fd6cbda20e5f09460d3bcc0ce1
 SHA512 
86cc1210cbc45ce2e392d6888e6e22a9214afcc24e95657f7bdb4c59476b4bea2e8ebd8b23c06b32f3acfe1da6da689135f25fcf09db34f6b1dfcc838ea5528f
 DIST nano-3.2.tar.gz 2944045 BLAKE2B 
8d29d574ebf543f82608d4df26f551c0b3c77863b2ac8cfd0d3aea45340954abe6221069c9c72beab256c2c8cc4fcd3de27804404d97a98144c69ad26223de09
 SHA512 
33b3bbc5b5044b4003347e87926046fb5a0e83edfd6de858085526b7eaa9ea7ee26a598da00060a6b62edbd0366c7cb06b5a9878f6f0149a9501e4ada80b88f3
+DIST nano-4.0.tar.gz 2997716 BLAKE2B 
b5b7c172119518dc25ad1b77fda4a011225292b36bfeb042ede3191f7b7d576273c9172c9ab32271b4a648d8720c3745496526f0feb871e02d88ae3865cfacd5
 SHA512 
7548a3cf37aaa5f7ed9e951c18b3d058e8f587bcfbae0e707668f51ab9932aa467b8191117a7d1a76f090124cfe3e0e93ce4e1cccd8aa0bf7fd0d282caede5c1

diff --git a/app-editors/nano/nano-4.0.ebuild b/app-editors/nano/nano-4.0.ebuild
new file mode 100644
index 000..aa130516a9a
--- /dev/null
+++ b/app-editors/nano/nano-4.0.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="git://git.sv.gnu.org/nano.git"
+   inherit git-r3 autotools
+else
+   MY_P="${PN}-${PV/_}"
+   SRC_URI="https://www.nano-editor.org/dist/v${PV:0:1}/${MY_P}.tar.gz;
+   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"
+fi
+
+DESCRIPTION="GNU GPL'd Pico clone with more functionality"
+HOMEPAGE="https://www.nano-editor.org/ 
https://wiki.gentoo.org/wiki/Nano/Basics_Guide;
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="debug justify +magic minimal ncurses nls slang +spell static unicode"
+
+LIB_DEPEND=">=sys-libs/ncurses-5.9-r1:0=[unicode?]
+   sys-libs/ncurses:0=[static-libs(+)]
+   magic? ( sys-apps/file[static-libs(+)] )
+   nls? ( virtual/libintl )
+   !ncurses? ( slang? ( sys-libs/slang[static-libs(+)] ) )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
+DEPEND="${RDEPEND}
+   static? ( ${LIB_DEPEND} )"
+BDEPEND="
+   nls? ( sys-devel/gettext )
+   virtual/pkgconfig
+"
+src_prepare() {
+   default
+   if [[ ${PV} == "" ]] ; then
+   eautoreconf
+   fi
+}
+
+src_configure() {
+   use static && append-ldflags -static
+   local myconf=(
+   --bindir="${EPREFIX}"/bin
+   --htmldir=/trash
+   $(use_enable !minimal color)
+   $(use_enable !minimal multibuffer)
+   $(use_enable !minimal nanorc)
+   $(use_enable magic libmagic)
+   $(use_enable spell speller)
+   $(use_enable justify)
+   $(use_enable debug)
+   $(use_enable nls)
+   $(use_enable unicode utf8)
+   $(use_enable minimal tiny)
+   $(usex ncurses --without-slang $(use_with slang))
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   # don't use "${ED}" here or things break (#654534)
+   rm -r "${D}"/trash || die
+
+   dodoc doc/sample.nanorc
+   docinto html
+   dodoc doc/faq.html
+   insinto /etc
+   newins doc/sample.nanorc nanorc
+   if ! use minimal ; then
+   # Enable colorization by default.
+   sed -i \
+   -e '/^# include /s:# *::' \
+   "${ED}"/etc/nanorc || die
+   fi
+
+   dosym ../../bin/nano /usr/bin/nano
+}



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

2019-03-24 Thread Lars Wendler
commit: cd5447f64b849c528a1dbe4ab60323d704c02c4b
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Mar 24 21:40:25 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Mar 24 21:40:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd5447f6

app-editors/nano: Removed old.

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

 app-editors/nano/Manifest|  1 -
 app-editors/nano/nano-3.1.ebuild | 87 
 2 files changed, 88 deletions(-)

diff --git a/app-editors/nano/Manifest b/app-editors/nano/Manifest
index 8c6e71a8b28..a5fc11c57fc 100644
--- a/app-editors/nano/Manifest
+++ b/app-editors/nano/Manifest
@@ -1,4 +1,3 @@
 DIST nano-2.9.8.tar.gz 2905951 BLAKE2B 
95b78c43a052be68956f5b9493c418c23a9db40b56f709b17217bce257333b69e78e8f8bec191b21df8aa408ce2d3c7d68bc82cf2f785df9b31929f4f41b4325
 SHA512 
dcc7b074b585135e34339648fc725f54964488813d49fac50cf88c11d7cfcb8514907dbc2631ce7664ab0241717e8c42833e3c037070c80c8e7bee68fc280a2d
-DIST nano-3.1.tar.gz 2923258 BLAKE2B 
d8e8e0da8ed669940a2c5604d476a147cb61f96db03bc0bebafc458f4766561962c94f22f84cf714ece7052670c987272029d3fd6cbda20e5f09460d3bcc0ce1
 SHA512 
86cc1210cbc45ce2e392d6888e6e22a9214afcc24e95657f7bdb4c59476b4bea2e8ebd8b23c06b32f3acfe1da6da689135f25fcf09db34f6b1dfcc838ea5528f
 DIST nano-3.2.tar.gz 2944045 BLAKE2B 
8d29d574ebf543f82608d4df26f551c0b3c77863b2ac8cfd0d3aea45340954abe6221069c9c72beab256c2c8cc4fcd3de27804404d97a98144c69ad26223de09
 SHA512 
33b3bbc5b5044b4003347e87926046fb5a0e83edfd6de858085526b7eaa9ea7ee26a598da00060a6b62edbd0366c7cb06b5a9878f6f0149a9501e4ada80b88f3
 DIST nano-4.0.tar.gz 2997716 BLAKE2B 
b5b7c172119518dc25ad1b77fda4a011225292b36bfeb042ede3191f7b7d576273c9172c9ab32271b4a648d8720c3745496526f0feb871e02d88ae3865cfacd5
 SHA512 
7548a3cf37aaa5f7ed9e951c18b3d058e8f587bcfbae0e707668f51ab9932aa467b8191117a7d1a76f090124cfe3e0e93ce4e1cccd8aa0bf7fd0d282caede5c1

diff --git a/app-editors/nano/nano-3.1.ebuild b/app-editors/nano/nano-3.1.ebuild
deleted file mode 100644
index a9712a1c464..000
--- a/app-editors/nano/nano-3.1.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="git://git.sv.gnu.org/nano.git"
-   inherit git-r3 autotools
-else
-   MY_P="${PN}-${PV/_}"
-   SRC_URI="https://www.nano-editor.org/dist/v${PV:0:1}/${MY_P}.tar.gz;
-   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"
-fi
-
-DESCRIPTION="GNU GPL'd Pico clone with more functionality"
-HOMEPAGE="https://www.nano-editor.org/ 
https://wiki.gentoo.org/wiki/Nano/Basics_Guide;
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="debug justify +magic minimal ncurses nls slang +spell static unicode"
-
-LIB_DEPEND=">=sys-libs/ncurses-5.9-r1:0=[unicode?]
-   sys-libs/ncurses:0=[static-libs(+)]
-   magic? ( sys-apps/file[static-libs(+)] )
-   nls? ( virtual/libintl )
-   !ncurses? ( slang? ( sys-libs/slang[static-libs(+)] ) )"
-RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
-DEPEND="${RDEPEND}
-   nls? ( sys-devel/gettext )
-   virtual/pkgconfig
-   static? ( ${LIB_DEPEND} )"
-
-PATCHES=(
-   "${FILESDIR}/${P}-enable_tiny_build_fix.patch"
-)
-
-src_prepare() {
-   default
-   if [[ ${PV} == "" ]] ; then
-   eautoreconf
-   fi
-}
-
-src_configure() {
-   use static && append-ldflags -static
-   local myconf=(
-   --bindir="${EPREFIX}"/bin
-   --htmldir=/trash
-   $(use_enable !minimal color)
-   $(use_enable !minimal multibuffer)
-   $(use_enable !minimal nanorc)
-   --disable-wrapping-as-root
-   $(use_enable magic libmagic)
-   $(use_enable spell speller)
-   $(use_enable justify)
-   $(use_enable debug)
-   $(use_enable nls)
-   $(use_enable unicode utf8)
-   $(use_enable minimal tiny)
-   $(usex ncurses --without-slang $(use_with slang))
-   )
-   case ${CHOST} in
-   *-gnu*|*-uclibc*) myconf+=( "--with-wordbounds" ) ;; #467848
-   esac
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   # don't use "${ED}" here or things break (#654534)
-   rm -r "${D%/}"/trash || die
-
-   dodoc doc/sample.nanorc
-   docinto html
-   dodoc doc/faq.html
-   insinto /etc
-   newins doc/sample.nanorc nanorc
-   if ! use minimal ; then
-   # Enable colorization by default.
-   sed -i \
-   -e '/^# include /s:# *::' \
-

[gentoo-commits] repo/gentoo:master commit in: kde-misc/plasma-applet-network-monitor/files/, ...

2019-03-24 Thread Andreas Sturmlechner
commit: a4b208f45776da8f9eb5ef2975c174813a273403
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 24 21:25:50 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 24 21:33:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4b208f4

kde-misc/plasma-applet-network-monitor: EAPI-7 bump, fix HOMEPAGE

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

 ...etwork-monitor-1.7.3-crashfix-startuptime.patch | 63 ++
 ...a-applet-network-monitor-1.7.3-ddwrt-icon.patch | 22 
 .../plasma-applet-network-monitor-1.7.3-r1.ebuild  | 25 +
 3 files changed, 110 insertions(+)

diff --git 
a/kde-misc/plasma-applet-network-monitor/files/plasma-applet-network-monitor-1.7.3-crashfix-startuptime.patch
 
b/kde-misc/plasma-applet-network-monitor/files/plasma-applet-network-monitor-1.7.3-crashfix-startuptime.patch
new file mode 100644
index 000..c86932757a3
--- /dev/null
+++ 
b/kde-misc/plasma-applet-network-monitor/files/plasma-applet-network-monitor-1.7.3-crashfix-startuptime.patch
@@ -0,0 +1,63 @@
+From 7aa094a156914aac5d1ac85967f9063bc6faa61e Mon Sep 17 00:00:00 2001
+From: Michail Vourlakos 
+Date: Tue, 7 Feb 2017 22:03:29 +0200
+Subject: [PATCH] fix crash and imrove startup time
+
+--fix crash because the repeater can not catch up
+with the model changes during startup
+--this also improves a lot the start up loading as
+the visuals are painted only when the component
+has completed its initialization phase
+---
+ package/contents/ui/main.qml | 17 +
+ 1 file changed, 13 insertions(+), 4 deletions(-)
+
+diff --git a/package/contents/ui/main.qml b/package/contents/ui/main.qml
+index d781266..4ba4b5a 100644
+--- a/package/contents/ui/main.qml
 b/package/contents/ui/main.qml
+@@ -24,6 +24,7 @@ Item {
+ id: main
+ 
+ // general settings
++property bool inStart: true
+ property bool showLo: plasmoid.configuration.showLo
+ property bool showDdWrt: plasmoid.configuration.showDdWrt
+ property double updateInterval: plasmoid.configuration.updateInterval * 
1000
+@@ -155,7 +156,8 @@ Item {
+ }
+ 
+ Component.onCompleted: {
+-reloadComponent()
++reloadComponent();
++inStart = false;
+ }
+ 
+ function reloadComponent() {
+@@ -232,8 +234,15 @@ Item {
+ setItemSize()
+ }
+ 
+-onShowLoChanged: devicesChanged()
+-onShowDdWrtChanged: devicesChanged()
++onShowLoChanged: {
++if (!inStart)
++devicesChanged();
++}
++
++onShowDdWrtChanged: {
++if (!inStart)
++devicesChanged();
++}
+ 
+ GridLayout {
+ columns: gridColumns
+@@ -247,7 +256,7 @@ Item {
+ Layout.preferredHeight: height
+ 
+ Repeater {
+-model: networkDevicesModel
++model: inStart ? 0 : networkDevicesModel
+ delegate: ActiveConnection {
+ Layout.preferredWidth: itemWidth
+ Layout.preferredHeight: itemHeight

diff --git 
a/kde-misc/plasma-applet-network-monitor/files/plasma-applet-network-monitor-1.7.3-ddwrt-icon.patch
 
b/kde-misc/plasma-applet-network-monitor/files/plasma-applet-network-monitor-1.7.3-ddwrt-icon.patch
new file mode 100644
index 000..094900aff4b
--- /dev/null
+++ 
b/kde-misc/plasma-applet-network-monitor/files/plasma-applet-network-monitor-1.7.3-ddwrt-icon.patch
@@ -0,0 +1,22 @@
+From 70481c09ac1434ea1e72d89faeb5d9194463de4e Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Tomasz=20Przyby=C5=82?= 
+Date: Mon, 18 Apr 2016 20:55:22 +0200
+Subject: [PATCH] fix dd-wrt icon visible against qt5.6 changes
+
+---
+ package/contents/config/config.qml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/package/contents/config/config.qml 
b/package/contents/config/config.qml
+index 5ebb5e6..b9e286a 100644
+--- a/package/contents/config/config.qml
 b/package/contents/config/config.qml
+@@ -19,7 +19,7 @@ ConfigModel {
+ }
+ ConfigCategory {
+  name: i18n('DD-WRT')
+- icon: Qt.resolvedUrl('../images/dd-wrt.png')
++ icon: Qt.resolvedUrl('../images/dd-wrt.png').replace('file://', '')
+  source: 'config/ConfigDDWRT.qml'
+ }
+ }

diff --git 
a/kde-misc/plasma-applet-network-monitor/plasma-applet-network-monitor-1.7.3-r1.ebuild
 
b/kde-misc/plasma-applet-network-monitor/plasma-applet-network-monitor-1.7.3-r1.ebuild
new file mode 100644
index 000..8c2d1ef1e5f
--- /dev/null
+++ 
b/kde-misc/plasma-applet-network-monitor/plasma-applet-network-monitor-1.7.3-r1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kde5
+
+DESCRIPTION="Plasma 5 applet for monitoring active network connections"
+HOMEPAGE="https://store.kde.org/p/998914/

[gentoo-commits] repo/gentoo:master commit in: kde-misc/plasma-applet-network-monitor/

2019-03-24 Thread Andreas Sturmlechner
commit: ed505a2e68fd61938becd79ec4a94932352bd406
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 24 21:28:00 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Mar 24 21:33:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed505a2e

kde-misc/plasma-applet-network-monitor: Drop 1.7.3 (r0)

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

 .../plasma-applet-network-monitor-1.7.3.ebuild | 27 --
 1 file changed, 27 deletions(-)

diff --git 
a/kde-misc/plasma-applet-network-monitor/plasma-applet-network-monitor-1.7.3.ebuild
 
b/kde-misc/plasma-applet-network-monitor/plasma-applet-network-monitor-1.7.3.ebuild
deleted file mode 100644
index 45af2a060ba..000
--- 
a/kde-misc/plasma-applet-network-monitor/plasma-applet-network-monitor-1.7.3.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit kde5
-
-DESCRIPTION="Plasma 5 applet for monitoring active network connections"
-HOMEPAGE="https://store.kde.org/content/show.php/Network+Monitor?content=169377
-https://github.com/kotelnik/plasma-applet-network-monitor;
-
-if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   EGIT_REPO_URI="https://github.com/kotelnik/${PN}.git;
-else
-   SRC_URI="https://github.com/kotelnik/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-fi
-
-LICENSE="GPL-2+"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-   $(add_frameworks_dep plasma)
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( README.md )



[gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/

2019-03-24 Thread Andreas K. Hüttel
commit: af53cec2d995432f8e75a37aa2b7636d00965e59
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Mar 24 21:06:10 2019 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Mar 24 21:06:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af53cec2

sys-libs/glibc: New unkeyworded 2.29 revision

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 sys-libs/glibc/Manifest |1 +
 sys-libs/glibc/glibc-2.29-r1.ebuild | 1417 +++
 2 files changed, 1418 insertions(+)

diff --git a/sys-libs/glibc/Manifest b/sys-libs/glibc/Manifest
index a0065910d5b..d9415ec9ae8 100644
--- a/sys-libs/glibc/Manifest
+++ b/sys-libs/glibc/Manifest
@@ -19,5 +19,6 @@ DIST glibc-2.27.tar.xz 15395316 BLAKE2B 
ea206d304c8c9aa86d69db981a14bea008602cea
 DIST glibc-2.28-patches-8.tar.xz 97384 BLAKE2B 
036ab39103aa30be61fcbb46a7103cf83c1dd490eeff526444d4701b92e06a428133de2d005d65a296f14f28145f143a2386f8b17df721174a0a0b5303e99931
 SHA512 
29695212d8ca9c4b6d4787f4919b75cb0828ddecce65d65683b746ed23acb50e4e18419a13bb6ee4a234f44f63b38a2eebf1f1ce3d350435c2bf21d6076a97a6
 DIST glibc-2.28.tar.xz 16484344 BLAKE2B 
9aa8cbd5a145c2a6fde3a60b3d0a14b12b46ed79333ad1ca3e73464adcfe700277a17a9e7fd0ca36e355a0c5b0b27decfa091da320ba802741ad75cc955bbcc8
 SHA512 
521f820953ff07c69ece4c2186f59fc061a7f9747932cd70ef2995c2b2deee76eeb6de700d85071cdca5949179aa8ccee75eda7feca1394121ec7b821ad0a3f3
 DIST glibc-2.29-patches-1.tar.xz 17768 BLAKE2B 
d835c62552ff8650c81156cfff6962fbb3a31c1b9498b0e9fd0a2f0847c99d6127c1662d3fe46a77d5bce8f4a4c850047b99c4567c74bef96b410bbd53d3b65a
 SHA512 
9231e1067298e5c044ed8f6eaff1b117ebaa3eeb05adecb85ed31e927ec6805e7109b6d137b31def4d07f389fcdb5102c9ef705772f4d2ccb2eee8a73f6e3ce3
+DIST glibc-2.29-patches-2.tar.xz 35176 BLAKE2B 
a98d309686068dac5ae7eceac102610f9058e620f62661d9cd7fdbdb31608844cb254e15311ff2ac85be97bdf3d953fde625e3b088e4833c0356f6f4472f52d7
 SHA512 
69bbd090886942595cf47e2bdf01fc7ed8c0b8f2b7a4f8a6749b74a392a12d9cc601212cce09db434841f3740ff1a81642b8019afbdbfa8903ae4ebc5a71c801
 DIST glibc-2.29.tar.xz 16515488 BLAKE2B 
b754e6825176538a2b8ca03fce014f0d87d333dc4d038bf0cda5ee8a2f484cd3ce93ad78ec126737e093ab64b55ceedf04cd08aecb4f8041daaa329e99717afa
 SHA512 
146bc0769fe853d9edbf93cea7f74c5b3d84d69cb7614c62588e7acdecd1ec789a9d8949f3e8b99f8f36f2ccac740a003bed94f32b07817baf780b06cfeb6ed0
 DIST glibc--patches-11.tar.xz 17804 BLAKE2B 
cb4ef9fbaf0da3e2307c468d2a6731ff2475f6ebc490f0ca43d375b59aa669bec1ad0580775306adb95e249e9641bed910310185e5dced66a491c1491b99a747
 SHA512 
d2fced779807c7f492c17958cf4f95273d1bdcfe062bd71546f2360f3d4742a696ec8d04d984ec560c0fcccea332446834ae2c9d28cfd9009ffd091c1084edc9

diff --git a/sys-libs/glibc/glibc-2.29-r1.ebuild 
b/sys-libs/glibc/glibc-2.29-r1.ebuild
new file mode 100644
index 000..eba80bd41ff
--- /dev/null
+++ b/sys-libs/glibc/glibc-2.29-r1.ebuild
@@ -0,0 +1,1417 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5,6,7} )
+
+inherit python-any-r1 prefix eutils eapi7-ver toolchain-funcs flag-o-matic 
gnuconfig \
+   multilib systemd multiprocessing
+
+DESCRIPTION="GNU libc C library"
+HOMEPAGE="https://www.gnu.org/software/libc/;
+LICENSE="LGPL-2.1+ BSD HPND ISC inner-net rc PCRE"
+RESTRICT="strip" # Strip ourself #46186
+SLOT="2.2"
+
+EMULTILIB_PKG="true"
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://sourceware.org/git/glibc.git;
+   inherit git-r3
+else
+   #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc 
~ppc64 ~s390 ~sh ~sparc ~x86"
+   KEYWORDS=""
+   SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
+fi
+
+RELEASE_VER=${PV}
+
+GCC_BOOTSTRAP_VER=20180511
+
+# Gentoo patchset
+PATCH_VER=2
+
+SRC_URI+=" 
https://dev.gentoo.org/~dilfridge/distfiles/${P}-patches-${PATCH_VER}.tar.xz;
+SRC_URI+=" multilib? ( 
https://dev.gentoo.org/~dilfridge/distfiles/gcc-multilib-bootstrap-${GCC_BOOTSTRAP_VER}.tar.xz
 )"
+
+IUSE="audit caps cet compile-locales doc gd headers-only +multiarch multilib 
nscd profile selinux +ssp suid systemtap test vanilla"
+
+# Minimum kernel version that glibc requires
+MIN_KERN_VER="3.2.0"
+
+# Here's how the cross-compile logic breaks down ...
+#  CTARGET - machine that will target the binaries
+#  CHOST   - machine that will host the binaries
+#  CBUILD  - machine that will build the binaries
+# If CTARGET != CHOST, it means you want a libc for cross-compiling.
+# If CHOST != CBUILD, it means you want to cross-compile the libc.
+#  CBUILD = CHOST = CTARGET- native build/install
+#  CBUILD != (CHOST = CTARGET) - cross-compile a native build
+#  (CBUILD = CHOST) != CTARGET - libc for cross-compiler
+#  CBUILD != CHOST != CTARGET  - cross-compile a libc for a cross-compiler
+# For install paths:
+#  CHOST = CTARGET  - install into /
+#  CHOST != CTARGET - install into /usr/CTARGET/
+#
+export 

[gentoo-commits] repo/user/ssnb:master commit in: app-office/freeoffice/files/, app-office/freeoffice/

2019-03-24 Thread Samuel Bernardo
commit: ef45d4087f24b9fb375647cf87af5a61c98da6ec
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sun Mar 24 20:46:46 2019 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sun Mar 24 20:46:46 2019 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=ef45d408

Add freeoffice

Signed-off-by: Samuel Bernardo  gmail.com>

 app-office/freeoffice/Manifest | 10 +++
 app-office/freeoffice/files/freeoffice-planmaker   |  3 +
 .../freeoffice/files/freeoffice-planmaker.desktop  | 79 ++
 .../freeoffice/files/freeoffice-presentations  |  3 +
 .../files/freeoffice-presentations.desktop | 78 ++
 app-office/freeoffice/files/freeoffice-textmaker   |  3 +
 .../freeoffice/files/freeoffice-textmaker.desktop  | 78 ++
 app-office/freeoffice/freeoffice-944.ebuild| 93 ++
 app-office/freeoffice/metadata.xml |  9 +++
 9 files changed, 356 insertions(+)

diff --git a/app-office/freeoffice/Manifest b/app-office/freeoffice/Manifest
new file mode 100644
index 000..b88a07f
--- /dev/null
+++ b/app-office/freeoffice/Manifest
@@ -0,0 +1,10 @@
+AUX freeoffice-planmaker 74 BLAKE2B 
496bdff8f76e03380f6a3ab3ab952afb9c274403875c77f11002a4762fecda5ba1d36d2eedaff48d621cda88347eb45298120157512565a3cd034d2dec708a23
 SHA512 
846f3a33c2becd35ce0b0a37967f051e4a07a80fab7704e722fed9ab73b08d3604beed54056c36dc8b3a76fee530d84d86b64a900a6e8532d5da1ada4ce3b71a
+AUX freeoffice-planmaker.desktop 3233 BLAKE2B 
4c0928854039d7af115de539bb9ef0ee64e505a2446da613d49158b34c62159d437a79563ddbc19f3a15d335c9c2677d462fa91b36ddc6d206f0bda79fb141ff
 SHA512 
59a999f534899e19807f87b8fa2e5a5ae14729748bbf59f43c93bda3925e6f8be1717a766cb1cc893c195478d27189fd6c00373acb9821684d28809e2b32a434
+AUX freeoffice-presentations 92 BLAKE2B 
1edf80dc1672081734af3290a24ccd593816e927cf89bcdd2e83965ebdf442027a221c40ec448cd182fb6f698106cbb174935ffa8d3c4bba41d49be56a296f83
 SHA512 
c67e74e1b429fc3dc64c36a8ba306e73506a7d949c88912a2f69abb801b3d9b4638f3659ddffc1745f494a366c888bd58bd8551f740b8d31f27de3b42f727665
+AUX freeoffice-presentations.desktop 3097 BLAKE2B 
add1b66802e0bf435a32fb321973a38ad047f6ce189ad9530a4801df7ae5be76df6203377544381173b3f44f0c6ef161e8c30cd6e766a3696f788c740cabb60d
 SHA512 
5681df4a13c1b7f77bf36252e6d3f4be37cec78994dd55919540cdecb3aa342f2e27c5e41e9270a3398173b302c3a8a6daae15d4466684c6c3fbf0cdfc82cea1
+AUX freeoffice-textmaker 74 BLAKE2B 
b8ce43cba0d6c8ed4a04969ac5f0253294c3d6dc5ec11e91811bcce4ae01b682c55b4081a337500e494ee2d9996b43e2445d31c5f01e7924355b623bb43347df
 SHA512 
bd14defe309020159908e755b8f68dca748948a579e91ab847a067476ffe7c03fa8b56fd5911bdb091d09842dcdc161b84c73cc770766c152ab8f5d9be8dc40c
+AUX freeoffice-textmaker.desktop 3448 BLAKE2B 
ab9a83afc05d7db5560a9d4b497c54b3566cac1e6ca3fd73c76ea3bcdf198afb943ab2cfd5aeca1cc0459b22cba461abfc50306bc9f4ec0a54ca509e0386d225
 SHA512 
9ce358ffd51c78cd7ab4a3d0c64b39ca847b9cbde0704a02442b6d8a0ca12b13edbbe1af2c011ac72a9d544080be00f6a6a59c025dd60aa05fc570efec9c2a2f
+DIST softmaker-freeoffice-944-amd64.tgz 127452424 BLAKE2B 
8e97490753065d66ea556983d5547d0615fe09f50d0c2f371558166e36b16b0f6da44145328ab622c761f2347359481768203af7e9ff189bc615854569c271e0
 SHA512 
cd2b22248bec4adb4076aa7964f1100eac7a6c4e0928163098f27976ded48838702247ddac23e91a073cf7c1b864254c5527d7979c6c19b6ae2f1d76c4dfbdb0
+DIST softmaker-freeoffice-944-i386.tgz 124416076 BLAKE2B 
22adccdef5815c031a08c76e8150301decb7230d41340d9322e7e8e83ac6a24f867cdf177640b20583e5aee467ae795f1974a11da746d0996570d8e953fb5a6a
 SHA512 
1181b62e583c8b199671b6b5ebea9edf078eb27867ee25a505f4652b8b1327fe41b11364805881b9e082a2c51c68157953ef21843499a68afa3ab9f075e7e7b5
+EBUILD freeoffice-944.ebuild 2202 BLAKE2B 
e1d308f2ac5535b97eb2d594268fb85b78e3318481048f7c17dccdd314445956179fccb98d71afd463d57b9b0629031a92c0eb71b1b720d58bfa9be09c79
 SHA512 
78fd7ae5ad5b7e842119e991fca5023fc5066a44e000af2b0d02699e30df7ec83cddc7cd1b686347f1ee24b5f595906f3210a74ca7b47a01f7c17b5f2a528e16
+MISC metadata.xml 404 BLAKE2B 
a6336fd975420830b7dcc5a7053b3b6316b94913061eee5812a03b946e6b53c9ad97ee14fedf2433fa618fd4cb96d4cb790c998e249a724800b870b6bedc1f81
 SHA512 
85926cf56e57b613889fc827bc31b60efe03d40ae2d349e3848bd5bba69722c7e1c2c9336f11ec16fa90325d9d7af0521877a27de89cfd3f306ce2a86e3a649f

diff --git a/app-office/freeoffice/files/freeoffice-planmaker 
b/app-office/freeoffice/files/freeoffice-planmaker
new file mode 100755
index 000..cd39dd5
--- /dev/null
+++ b/app-office/freeoffice/files/freeoffice-planmaker
@@ -0,0 +1,3 @@
+#!/bin/sh
+# A script to run Planmaker.
+/usr/lib/freeoffice/planmaker "$@"

diff --git a/app-office/freeoffice/files/freeoffice-planmaker.desktop 
b/app-office/freeoffice/files/freeoffice-planmaker.desktop
new file mode 100644
index 000..726ae69
--- /dev/null
+++ b/app-office/freeoffice/files/freeoffice-planmaker.desktop
@@ -0,0 +1,79 @@
+[Desktop Entry]
+Version=1.0
+Encoding=UTF-8
+Type=Application

[gentoo-commits] repo/proj/prefix:master commit in: dev-lang/python/

2019-03-24 Thread Fabian Groffen
commit: 0c456196ac923b86e82d3a6a76cff689e3f83257
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Mar 24 20:44:08 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Mar 24 20:44:08 2019 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=0c456196

dev-lang/python: fix compilation when not upgrading on Darwin

python-2.7.16 changed to build in-tree, which on case-insensitive
filesystems causes a clash, resulting in a build-failure.

restore the out-of-tree building again so we can bootstrap on Darwin
(failure observed with latesttree on powerpc-apple-darwin9/20190323)

Package-Manager: Portage-2.3.62-prefix, Repoman-2.3.12
Signed-off-by: Fabian Groffen  gentoo.org>

 dev-lang/python/python-2.7.16.ebuild | 14 --
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/dev-lang/python/python-2.7.16.ebuild 
b/dev-lang/python/python-2.7.16.ebuild
index 6d65eb7c60..0fef25c421 100644
--- a/dev-lang/python/python-2.7.16.ebuild
+++ b/dev-lang/python/python-2.7.16.ebuild
@@ -300,6 +300,12 @@ src_configure() {
--without-ensurepip
)
 
+   # we need to build in a separate dir to avoid problems due to
+   # case-insensitivity on Darwin
+   BUILD_DIR="${WORKDIR}/${CHOST}"
+   mkdir -p "${BUILD_DIR}" || die
+   cd "${BUILD_DIR}" || die
+
OPT= econf "${myeconfargs[@]}"
 
if use threads && grep -q "#define POSIX_SEMAPHORES_NOT_ENABLED 1" 
pyconfig.h; then
@@ -313,6 +319,7 @@ src_compile() {
# Avoid invoking pgen for cross-compiles.
touch Include/graminit.h Python/graminit.c
 
+   cd "${BUILD_DIR}" || die
emake
 
# Work around bug 329499. See also bug 413751 and 457194.
@@ -330,6 +337,8 @@ src_test() {
return
fi
 
+   cd "${BUILD_DIR}" || die
+
# Skip failing tests.
local skipped_tests="distutils gdb"
 
@@ -370,6 +379,7 @@ src_test() {
 src_install() {
local libdir=${ED}/usr/$(get_libdir)/python${SLOT}
 
+   cd "${BUILD_DIR}" || die
[[ ${CHOST} == *-mint* ]] && keepdir /usr/lib/python${SLOT}/lib-dynload/
if use aqua ; then
local fwdir="${EPREFIX}"/usr/$(get_libdir)/Python.framework
@@ -388,7 +398,7 @@ src_install() {
rmdir "${ED}"/Applications/Python* || die
rmdir "${ED}"/Applications || die
 
-   # avoid framework incompatability, degrade to a normal UNIX lib
+   # avoid framework incompatibility, degrade to a normal UNIX lib
mkdir -p "${ED}"/usr/$(get_libdir)
cp "${D}${fwdir}"/Versions/${SLOT}/Python \
"${ED}"/usr/$(get_libdir)/libpython${SLOT}.dylib || die
@@ -536,7 +546,7 @@ EOF
# http://bugs.python.org/issue1759169
[[ ${CHOST} == *-solaris* ]] && sed -i -e \
's:^\(^#define 
\(_POSIX_C_SOURCE\|_XOPEN_SOURCE\|_XOPEN_SOURCE_EXTENDED\).*$\):/* \1 */:' \
-"${ED}"/usr/include/python${SLOT}/pyconfig.h
+   "${ED}"/usr/include/python${SLOT}/pyconfig.h
 
use berkdb || rm -r "${libdir}/"{bsddb,dbhash.py*,test/test_bsddb*} || 
die
use sqlite || rm -r "${libdir}/"{sqlite3,test/test_sqlite*} || die



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

2019-03-24 Thread Aaron Bauman
commit: 52e83bcaae43348e30e4365b2b43895e9d276b6e
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Mar 24 20:32:10 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Mar 24 20:32:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52e83bca

app-emulation/xen: drop vulnerable wrt bug #678338

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

 app-emulation/xen/Manifest |   2 -
 app-emulation/xen/xen-4.10.3-r1.ebuild | 171 -
 2 files changed, 173 deletions(-)

diff --git a/app-emulation/xen/Manifest b/app-emulation/xen/Manifest
index dda039512ee..d5d154fa7ac 100644
--- a/app-emulation/xen/Manifest
+++ b/app-emulation/xen/Manifest
@@ -1,7 +1,5 @@
 DIST xen-4.10.2-upstream-patches-2.tar.xz 37800 BLAKE2B 
ecf4c1a97a1d76eef925e79fd25a654695a954f81bf8a5884cd4b1007714c888d6d7e19839556c457cf49a2f20ee88d5689a0287ffd7b16487dac676b3386daf
 SHA512 
e9212efd65827286b729b08eded4bd6deda4a9f0b72af26bf0d106a1111b56e51154d3e2a2ee4b38fcf4e8a81f30ffe2a6b711b9261e50e5954447d30e60
 DIST xen-4.10.2.tar.gz 24697204 BLAKE2B 
b331d3ad8d7842446f7d2da5dd31560f636aa1408dd3cc8798dff35b868ef5a609d17e97ef4355e1e5aa825a5abc74103796f9a8015037f0a564ffcebd825722
 SHA512 
2e301b4d6eb106fcb52203bc1208c8fd1fc7bb5d795166c0f86e4085227050301f7daa6f21db440c47bc2ca2c7f87d9b96753cfdf3fa724e0416b5679b84c163
-DIST xen-4.10.3-upstream-patches-1.tar.xz 24064 BLAKE2B 
ec9339d00afd4057738a78165a82dbebbab73eb561984a049daff84dfb115c0550e67796bfa775d5e5a3a4576c4ea7db408d491fe745a68c412f93a04719c58d
 SHA512 
b3761acdb7a581d172e1e2b1e09406c4748eda3e25c81c19bb53b38e005d27e10ac64109870b47ce72372dc7b7c63ec3eca6156389c174f28ab4ad1c2b9e5634
-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-rc5.tar.gz 26514850 BLAKE2B 
41985dc33175bee8bddc4da0ec3b4da9f8cf3ebe580406011db47a27a8740566c1ace6e906d3385f73fee9b6cd572b0f3292381ac72a696fc15d020eb982ad02
 SHA512 
3d7fb254503c412a3c37782f7c75d093a1d43553dc110338d8dc00df0c6be4c8825cebf7f0519731e49263cef38d07ef48c18f073926d7eaf30abe64b13c52cb

diff --git a/app-emulation/xen/xen-4.10.3-r1.ebuild 
b/app-emulation/xen/xen-4.10.3-r1.ebuild
deleted file mode 100644
index c776b7262c6..000
--- a/app-emulation/xen/xen-4.10.3-r1.ebuild
+++ /dev/null
@@ -1,171 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit flag-o-matic mount-boot multilib python-any-r1 toolchain-funcs
-
-MY_PV=${PV/_/-}
-MY_P=${PN}-${MY_PV}
-
-if [[ $PV == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="git://xenbits.xen.org/xen.git"
-   SRC_URI=""
-else
-   KEYWORDS="amd64 ~arm -x86"
-   UPSTREAM_VER=1
-   SECURITY_VER=
-   GENTOO_VER=
-
-   [[ -n ${UPSTREAM_VER} ]] && \
-   
UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz
-   
https://github.com/hydrapolic/gentoo-dist/raw/master/xen/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz;
-   [[ -n ${SECURITY_VER} ]] && \
-   
SECURITY_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-security-patches-${SECURITY_VER}.tar.xz;
-   [[ -n ${GENTOO_VER} ]] && \
-   
GENTOO_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-gentoo-patches-${GENTOO_VER}.tar.xz;
-   
SRC_URI="https://downloads.xenproject.org/release/xen/${MY_PV}/${MY_P}.tar.gz
-   ${UPSTREAM_PATCHSET_URI}
-   ${SECURITY_PATCHSET_URI}
-   ${GENTOO_PATCHSET_URI}"
-fi
-
-DESCRIPTION="The Xen virtual machine monitor"
-HOMEPAGE="https://www.xenproject.org;
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="custom-cflags debug efi flask"
-
-DEPEND="${PYTHON_DEPS}
-   efi? ( >=sys-devel/binutils-2.22[multitarget] )
-   !efi? ( >=sys-devel/binutils-2.22 )"
-RDEPEND=""
-PDEPEND="~app-emulation/xen-tools-${PV}"
-
-# no tests are available for the hypervisor
-# prevent the silliness of /usr/lib/debug/usr/lib/debug files
-# prevent stripping of the debug info from the 

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

2019-03-24 Thread Sergei Trofimovich
commit: 8c8a8dc3713efafb21790360bad3cfc8f658f04e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:17:06 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:17:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c8a8dc3

sys-power/upower: stable 0.99.9-r1 for ppc64, bug #681620

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-power/upower/upower-0.99.9-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-power/upower/upower-0.99.9-r1.ebuild 
b/sys-power/upower/upower-0.99.9-r1.ebuild
index 7c00fc21dcc..db8c09933b6 100644
--- a/sys-power/upower/upower-0.99.9-r1.ebuild
+++ b/sys-power/upower/upower-0.99.9-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://gitlab.freedesktop.org/upower/upower/uploads/${COMMIT}/${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0/3" # based on SONAME of libupower-glib.so
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ia64 ~mips ppc ~ppc64 ~sparc ~x86 
~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ia64 ~mips ppc ppc64 ~sparc ~x86 ~x86-fbsd"
 
 # gtk-doc files are not available as prebuilt in the tarball
 IUSE="doc +introspection ios kernel_FreeBSD kernel_linux selinux"



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

2019-03-24 Thread Sergei Trofimovich
commit: d9d3517f7717faf9fd463e6b862ac8b1dd097a66
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:27 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9d3517f

dev-lang/php: stable 7.2.16 for ppc64, bug #681074

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/php/php-7.2.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/php/php-7.2.16.ebuild b/dev-lang/php/php-7.2.16.ebuild
index 0eb99a1e52d..541a3dc998c 100644
--- a/dev-lang/php/php-7.2.16.ebuild
+++ b/dev-lang/php/php-7.2.16.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-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"
+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"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2 phpdbg"



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

2019-03-24 Thread Sergei Trofimovich
commit: 082ec81bdd1fa31bd14a2c67a30aed9d651f8772
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:17:01 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:17:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=082ec81b

net-libs/liboauth: stable 1.0.3-r1 for ppc64, bug #681610

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild 
b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
index 1530cdd03a8..d0fdc21d69e 100644
--- a/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
+++ b/net-libs/liboauth/liboauth-1.0.3-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( GPL-2 MIT )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ~ppc64 ~sparc ~x86 
~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 ~sparc ~x86 
~x64-macos"
 IUSE="bindist curl doc libressl +nss"
 
 REQUIRED_USE="bindist? ( nss )"



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

2019-03-24 Thread Sergei Trofimovich
commit: 72478e1e0243102c8a33823fe559008491afa995
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:36 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72478e1e

dev-libs/nettle: stable 3.4.1 for ppc64, bug #681096

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-libs/nettle/nettle-3.4.1.ebuild 
b/dev-libs/nettle/nettle-3.4.1.ebuild
index 67929d9138f..8635e95e740 100644
--- a/dev-libs/nettle/nettle-3.4.1.ebuild
+++ b/dev-libs/nettle/nettle-3.4.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/6.2" # subslot = libnettle soname version, .2 as broke ABI bug#601512 
then fixed
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
~x86 ~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 ~mips ppc ppc64 ~s390 ~sh sparc 
~x86 ~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="doc +gmp neon static-libs test cpu_flags_x86_aes"
 
 DEPEND="gmp? ( >=dev-libs/gmp-6.0:0=[${MULTILIB_USEDEP}] )"



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

2019-03-24 Thread Sergei Trofimovich
commit: 23bb3744248f22fe034181e653265a1f1adc7905
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:52 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23bb3744

media-libs/aalib: stable 1.4_rc5-r8 for ppc64, bug #681464

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/aalib/aalib-1.4_rc5-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/aalib/aalib-1.4_rc5-r8.ebuild 
b/media-libs/aalib/aalib-1.4_rc5-r8.ebuild
index 1606e0711b4..3cc9206a854 100644
--- a/media-libs/aalib/aalib-1.4_rc5-r8.ebuild
+++ b/media-libs/aalib/aalib-1.4_rc5-r8.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/aa-project/${MY_P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-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 ~x64-solaris"
 IUSE="X slang gpm static-libs"
 
 RDEPEND="



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

2019-03-24 Thread Sergei Trofimovich
commit: 2ebe0509c85407cde0e66cbf8e0197d97d79a884
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:58 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ebe0509

media-video/projectx: stable 0.91.0.10-r1 for ppc64, bug #681500

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-video/projectx/projectx-0.91.0.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/projectx/projectx-0.91.0.10-r1.ebuild 
b/media-video/projectx/projectx-0.91.0.10-r1.ebuild
index 28b9987cb4d..6553ab7214d 100644
--- a/media-video/projectx/projectx-0.91.0.10-r1.ebuild
+++ b/media-video/projectx/projectx-0.91.0.10-r1.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://dev.gentoo.org/~billie/distfiles/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ppc64 ~x86"
 IUSE="X cpu_flags_x86_mmx cpu_flags_x86_sse"
 
 COMMON_DEP="dev-java/commons-net:0



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

2019-03-24 Thread Sergei Trofimovich
commit: 54856728614e3ada1e45482c9f4d473c84765725
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:45 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54856728

media-libs/sbc: stable 1.4 for ppc64, bug #681406

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/media-libs/sbc/sbc-1.4.ebuild b/media-libs/sbc/sbc-1.4.ebuild
index df80b5d14de..c040dbaee7d 100644
--- a/media-libs/sbc/sbc-1.4.ebuild
+++ b/media-libs/sbc/sbc-1.4.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ppc ppc64 sparc ~x86"
 IUSE="static-libs"
 
 # --enable-tester is building src/sbctester but the tarball is missing required



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

2019-03-24 Thread Sergei Trofimovich
commit: 75e236856afe2119a09c86c8e3c5ddff27cc781a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:15:47 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:15:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75e23685

dev-db/postgresql: stable 11.2 for ppc64, bug #680840

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-db/postgresql/postgresql-11.2.ebuild 
b/dev-db/postgresql/postgresql-11.2.ebuild
index 3e119a71953..a043a9826a8 100644
--- a/dev-db/postgresql/postgresql-11.2.ebuild
+++ b/dev-db/postgresql/postgresql-11.2.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-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=$(get_major_version)
 



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

2019-03-24 Thread Sergei Trofimovich
commit: f6a79780ef4432c5958a3b47b4d04c7edee27dc4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:31 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6a79780

app-crypt/ccid: stable 1.4.30 for ppc64, bug #681086

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/app-crypt/ccid/ccid-1.4.30.ebuild 
b/app-crypt/ccid/ccid-1.4.30.ebuild
index 2ced9efada9..22e6665140f 100644
--- a/app-crypt/ccid/ccid-1.4.30.ebuild
+++ b/app-crypt/ccid/ccid-1.4.30.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://ccid.apdu.fr/files/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc ~x86"
 IUSE="twinserial kobil-midentity +usb"
 
 RDEPEND=">=sys-apps/pcsc-lite-1.8.3



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

2019-03-24 Thread Sergei Trofimovich
commit: d1986f4d2af4838d1efc752a270af2050bc658d7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:15:14 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:15:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1986f4d

www-servers/apache: stable 2.4.38-r1 for ppc64, bug #676064

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 www-servers/apache/apache-2.4.38-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/apache/apache-2.4.38-r1.ebuild 
b/www-servers/apache/apache-2.4.38-r1.ebuild
index a1bac133b19..eb9068bab91 100644
--- a/www-servers/apache/apache-2.4.38-r1.ebuild
+++ b/www-servers/apache/apache-2.4.38-r1.ebuild
@@ -130,7 +130,7 @@ HOMEPAGE="https://httpd.apache.org/;
 # some helper scripts are Apache-1.1, thus both are here
 LICENSE="Apache-2.0 Apache-1.1"
 SLOT="2"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
~x86 ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
~x86 ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris 
~x64-solaris"
 
 # Enable http2 by default (bug #563452)
 # FIXME: Move to apache-2.eclass once this has reached stable.



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

2019-03-24 Thread Sergei Trofimovich
commit: 39c314602f6aa14c19613ef5d8618da9ee500c10
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:07 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39c31460

dev-db/postgresql: stable 9.6.12 for ppc64, bug #680840

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-db/postgresql/postgresql-9.6.12.ebuild 
b/dev-db/postgresql/postgresql-9.6.12.ebuild
index 115660b086e..629073c4d0d 100644
--- a/dev-db/postgresql/postgresql-9.6.12.ebuild
+++ b/dev-db/postgresql/postgresql-9.6.12.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-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="$(get_version_component_range 1-2)"
 



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

2019-03-24 Thread Sergei Trofimovich
commit: 555f2d52f3219823af93eb39ccdefb2375695963
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:15:33 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:15:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=555f2d52

media-libs/libexif: stable 0.6.21-r3 for ppc64, bug #679418

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-libs/libexif/libexif-0.6.21-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libexif/libexif-0.6.21-r3.ebuild 
b/media-libs/libexif/libexif-0.6.21-r3.ebuild
index 529aa3b5af2..d2bb57d682a 100644
--- a/media-libs/libexif/libexif-0.6.21-r3.ebuild
+++ b/media-libs/libexif/libexif-0.6.21-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~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 ~x64-solaris ~x86-solaris"
 IUSE="doc nls static-libs"
 
 RDEPEND="nls? ( virtual/libintl )"



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

2019-03-24 Thread Sergei Trofimovich
commit: 3839aa6e794729a9dd2311553b93b2a938acdaff
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:34 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3839aa6e

dev-libs/libp11: stable 0.4.9 for ppc64, bug #681094

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-libs/libp11/libp11-0.4.9.ebuild 
b/dev-libs/libp11/libp11-0.4.9.ebuild
index 74fbd1e48d1..4ddb8d14aea 100644
--- a/dev-libs/libp11/libp11-0.4.9.ebuild
+++ b/dev-libs/libp11/libp11-0.4.9.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ~ppc64 ~s390 ~sh sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 ~s390 ~sh sparc ~x86"
 IUSE="libressl bindist doc static-libs"
 
 RDEPEND="



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

2019-03-24 Thread Sergei Trofimovich
commit: ae47fa75865d2f52d7b036464e23a0a1afa54740
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:40 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae47fa75

net-libs/gnutls: stable 3.6.6 for ppc64, bug #681102

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/net-libs/gnutls/gnutls-3.6.6.ebuild 
b/net-libs/gnutls/gnutls-3.6.6.ebuild
index 730ced5e8c0..8acf8e480bc 100644
--- a/net-libs/gnutls/gnutls-3.6.6.ebuild
+++ b/net-libs/gnutls/gnutls-3.6.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnupg/gnutls/v$(ver_cut 1-2)/${P}.tar.xz"
 
 LICENSE="GPL-3 LGPL-2.1"
 SLOT="0/30" # libgnutls.so number
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="+cxx dane doc examples guile +idn nls +openssl pkcs11 seccomp sslv2 
sslv3 static-libs test test-full +tls-heartbeat tools valgrind"
 
 REQUIRED_USE="



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

2019-03-24 Thread Sergei Trofimovich
commit: 9a5f418046b9288da8f28b4bdadb7ae105d02c74
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:42 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a5f4180

media-libs/opus: stable 1.3 for ppc64, bug #681402

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/media-libs/opus/opus-1.3.ebuild b/media-libs/opus/opus-1.3.ebuild
index a2faea28495..744d63618c8 100644
--- a/media-libs/opus/opus-1.3.ebuild
+++ b/media-libs/opus/opus-1.3.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://archive.mozilla.org/pub/opus/${MY_P}.tar.gz;
if [[ "${PV}" != *_alpha* ]] && [[ "${PV}" != *_beta* ]] ; then
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 
sparc ~x86 ~amd64-fbsd"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 
sparc ~x86 ~amd64-fbsd"
fi
 fi
 



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

2019-03-24 Thread Sergei Trofimovich
commit: d94baae4f555f3fa7b41692fbda9c422e0cd96c4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:15:41 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:15:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d94baae4

dev-db/postgresql: stable 10.7 for ppc64, bug #680840

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-db/postgresql/postgresql-10.7.ebuild 
b/dev-db/postgresql/postgresql-10.7.ebuild
index 509cc5717a0..dcf8e1c150b 100644
--- a/dev-db/postgresql/postgresql-10.7.ebuild
+++ b/dev-db/postgresql/postgresql-10.7.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT=$(get_major_version)
 



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

2019-03-24 Thread Sergei Trofimovich
commit: d21c56eb8cf6e379673c96fdebb0d84ad3cafe6a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:48 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d21c56eb

media-sound/mac: stable 4.11.4.5.7-r1 for ppc64, bug #681430

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-sound/mac/mac-4.11.4.5.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/mac/mac-4.11.4.5.7-r1.ebuild 
b/media-sound/mac/mac-4.11.4.5.7-r1.ebuild
index 9c99be5ea4e..ed8e77da05a 100644
--- a/media-sound/mac/mac-4.11.4.5.7-r1.ebuild
+++ b/media-sound/mac/mac-4.11.4.5.7-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://www.deb-multimedia.org/pool/main/m/monkeys-audio/${MY_P}.orig.ta
 
 LICENSE="mac"
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ~ppc64 ~x86"
+KEYWORDS="~alpha amd64 ppc ppc64 ~x86"
 IUSE="cpu_flags_x86_mmx static-libs"
 
 RDEPEND=""



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

2019-03-24 Thread Sergei Trofimovich
commit: 6cff67a410ed14618c39751b7de7bbf6159d70d2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:15:52 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:15:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cff67a4

dev-db/postgresql: stable 9.4.21 for ppc64, bug #680840

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-db/postgresql/postgresql-9.4.21.ebuild 
b/dev-db/postgresql/postgresql-9.4.21.ebuild
index bc58f5220a7..feab25dc821 100644
--- a/dev-db/postgresql/postgresql-9.4.21.ebuild
+++ b/dev-db/postgresql/postgresql-9.4.21.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc ~x86 
~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~x86 
~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



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

2019-03-24 Thread Sergei Trofimovich
commit: 982810fa52b5720a5424667b18f95fc6288782a1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:55 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=982810fa

media-video/mjpegtools: stable 2.1.0-r4 for ppc64, bug #681492

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 media-video/mjpegtools/mjpegtools-2.1.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/mjpegtools/mjpegtools-2.1.0-r4.ebuild 
b/media-video/mjpegtools/mjpegtools-2.1.0-r4.ebuild
index 518870e1ef8..71891b05e43 100644
--- a/media-video/mjpegtools/mjpegtools-2.1.0-r4.ebuild
+++ b/media-video/mjpegtools/mjpegtools-2.1.0-r4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/mjpeg/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="1"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-fbsd"
 IUSE="cpu_flags_x86_mmx dv gtk png quicktime sdl sdlgfx static-libs"
 REQUIRED_USE="sdlgfx? ( sdl )"
 



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

2019-03-24 Thread Sergei Trofimovich
commit: bb4b17d3e54068c35706fc6623e94d7b20ad1b9d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:20 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb4b17d3

dev-lang/php: stable 7.1.27 for ppc64, bug #681074

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-lang/php/php-7.1.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/php/php-7.1.27.ebuild b/dev-lang/php/php-7.1.27.ebuild
index 105ec67329d..4bafb762505 100644
--- a/dev-lang/php/php-7.1.27.ebuild
+++ b/dev-lang/php/php-7.1.27.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-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"
+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"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2 phpdbg"



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

2019-03-24 Thread Sergei Trofimovich
commit: d002093c71a4b469349a4aaea7bd7fbe00c73bd1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Mar 24 20:16:02 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar 24 20:16:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d002093c

dev-db/postgresql: stable 9.5.16 for ppc64, bug #680840

Package-Manager: Portage-2.3.62, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/dev-db/postgresql/postgresql-9.5.16.ebuild 
b/dev-db/postgresql/postgresql-9.5.16.ebuild
index a4e445ed8ec..ba52600560a 100644
--- a/dev-db/postgresql/postgresql-9.5.16.ebuild
+++ b/dev-db/postgresql/postgresql-9.5.16.ebuild
@@ -11,7 +11,7 @@ PLOCALES="af cs de en es fa fr hr hu it ko nb pl pt_BR ro ru 
sk sl sv tr zh_CN
 inherit flag-o-matic l10n linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



  1   2   3   >