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

2019-04-01 Thread Zac Medico
commit: 5945e7c86317ee78064b05685ec18b122edf9d8b
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Apr  2 05:54:17 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr  2 05:58:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5945e7c8

app-text/calibre: add dev-python/sip to DEPEND

Reported-by: Arthur Zamarin  gmail.com>
Closes: https://bugs.gentoo.org/682152
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 app-text/calibre/calibre-3.26.1.ebuild | 3 ++-
 app-text/calibre/calibre-3.40.1.ebuild | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-text/calibre/calibre-3.26.1.ebuild 
b/app-text/calibre/calibre-3.26.1.ebuild
index f761e9c5d83..c9008b5e802 100644
--- a/app-text/calibre/calibre-3.26.1.ebuild
+++ b/app-text/calibre/calibre-3.26.1.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
@@ -93,6 +93,7 @@ RDEPEND="${COMMON_DEPEND}
udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) )"
 DEPEND="${COMMON_DEPEND}
>=dev-python/setuptools-23.1.0[${PYTHON_USEDEP}]
+   dev-python/sip[${PYTHON_USEDEP}]
>=virtual/podofo-build-0.9.4
virtual/pkgconfig"
 

diff --git a/app-text/calibre/calibre-3.40.1.ebuild 
b/app-text/calibre/calibre-3.40.1.ebuild
index a35d78bdf20..cd10ca04cdc 100644
--- a/app-text/calibre/calibre-3.40.1.ebuild
+++ b/app-text/calibre/calibre-3.40.1.ebuild
@@ -95,6 +95,7 @@ RDEPEND="${COMMON_DEPEND}
udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) )"
 DEPEND="${COMMON_DEPEND}
>=dev-python/setuptools-23.1.0[${PYTHON_USEDEP}]
+   dev-python/sip[${PYTHON_USEDEP}]
>=virtual/podofo-build-0.9.6_pre20171027
virtual/pkgconfig"
 



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

2019-04-01 Thread Robin H. Johnson
commit: 1ded2ac69bd0fcf0edca8a4ee073e6a41dc9bbe4
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue Apr  2 05:48:56 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Apr  2 05:50:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ded2ac6

net-mail/notmuch: manpages need USE=doc & mock

Manpages are not built without USE=doc, which needs unittest.mock.

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

 net-mail/notmuch/notmuch-0.28.3.ebuild | 33 -
 1 file changed, 24 insertions(+), 9 deletions(-)

diff --git a/net-mail/notmuch/notmuch-0.28.3.ebuild 
b/net-mail/notmuch/notmuch-0.28.3.ebuild
index 445fa176ab4..9a03251ba48 100644
--- a/net-mail/notmuch/notmuch-0.28.3.ebuild
+++ b/net-mail/notmuch/notmuch-0.28.3.ebuild
@@ -41,19 +41,32 @@ CDEPEND="
"
 DEPEND="${CDEPEND}
virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-   test? ( app-misc/dtach || ( >=app-editors/emacs-23[libxml2]
-   >=app-editors/emacs-vcs-23[libxml2] ) sys-devel/gdb
-   crypt? ( app-crypt/gnupg dev-libs/openssl ) )
+   doc? (
+   app-doc/doxygen
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+   test? (
+   app-misc/dtach
+   || ( >=app-editors/emacs-23[libxml2] 
>=app-editors/emacs-vcs-23[libxml2] )
+   sys-devel/gdb
+   crypt? ( app-crypt/gnupg dev-libs/openssl )
+   )
valgrind? ( dev-util/valgrind )
"
 RDEPEND="${CDEPEND}
crypt? ( app-crypt/gnupg )
nmbug? ( dev-vcs/git )
-   mutt? ( dev-perl/File-Which dev-perl/Mail-Box dev-perl/MailTools
-   dev-perl/String-ShellQuote dev-perl/Term-ReadLine-Gnu
-   virtual/perl-Digest-SHA virtual/perl-File-Path 
virtual/perl-Getopt-Long
-   virtual/perl-Pod-Parser )
+   mutt? (
+   dev-perl/File-Which
+   dev-perl/Mail-Box
+   dev-perl/MailTools
+   dev-perl/String-ShellQuote
+   dev-perl/Term-ReadLine-Gnu
+   virtual/perl-Digest-SHA
+   virtual/perl-File-Path
+   virtual/perl-Getopt-Long
+   virtual/perl-Pod-Parser
+   )
"
 
 DOCS=( AUTHORS NEWS README )
@@ -169,7 +182,9 @@ src_test() {
 src_install() {
default
 
-   doman doc/_build/man/man?/*.?
+   if use doc; then
+   doman doc/_build/man/man?/*.?
+   fi
 
if use emacs; then
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die



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

2019-04-01 Thread Zac Medico
commit: 5e173cba2f40d455b6eb9c149d6b757225aa7da8
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Apr  2 05:47:15 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Apr  2 05:49:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e173cba

app-text/calibre: remove old version 3.38.1

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

 app-text/calibre/Manifest  |   1 -
 app-text/calibre/calibre-3.38.1.ebuild | 288 -
 2 files changed, 289 deletions(-)

diff --git a/app-text/calibre/Manifest b/app-text/calibre/Manifest
index 5aefe22aa68..f56696dab31 100644
--- a/app-text/calibre/Manifest
+++ b/app-text/calibre/Manifest
@@ -1,3 +1,2 @@
 DIST calibre-3.26.1.tar.xz 39109660 BLAKE2B 
0e98c273b8a5dfafea7a7027de3f83ad25ab835edadedf78b7e9bc356bcac8937d915944f2ab6503b414c49b4e792e090e7bd2433a4e86373bf115720ed78b0a
 SHA512 
893e36b101defaca29281b4bd072aafc1c4cb20a9cd3ee06a0b68fbe6b39cab34952799939ac4f54c77148c87861c5ab4ddff84f5ec8c2274ae7fa6424259ff5
-DIST calibre-3.38.1.tar.xz 38193788 BLAKE2B 
a42a8c3a628246def1f27488db729fc5a859bbadea344d04aec7d2ddc347bc97706d623ba522ad960bf239debe62eee126367417067e4a7c1d427af50584fd37
 SHA512 
4ce1453ff50894adafd027e9bad7cbd557b9b13d5939e53b8476083bb221f1c84cabc465c46f7b6361bcef60ed8da2d96dbfe9670ebf372e4864195e4748ee18
 DIST calibre-3.40.1.tar.xz 38365300 BLAKE2B 
5b1b8624d81d8a60d954b3871e46ae5dad8a49a7efb6e986cfef133da6da249fa8b36d1eed3840322ddec9c8144772c1e9504e114d27774096a9939f2a58a326
 SHA512 
1333c24e384ccae79d264055e1e84b8a13919e68d9290a277e07bb7f3b4579d15090859b50945672c155a438a2bf9e5f088f094bc30781af7c5d0d9ccd7226f4

diff --git a/app-text/calibre/calibre-3.38.1.ebuild 
b/app-text/calibre/calibre-3.38.1.ebuild
deleted file mode 100644
index e2e78649911..000
--- a/app-text/calibre/calibre-3.38.1.ebuild
+++ /dev/null
@@ -1,288 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="sqlite,ssl"
-
-inherit eutils bash-completion-r1 gnome2-utils multilib toolchain-funcs 
python-single-r1 xdg-utils
-
-DESCRIPTION="Ebook management application"
-HOMEPAGE="https://calibre-ebook.com/;
-SRC_URI="https://download.calibre-ebook.com/${PV}/${P}.tar.xz;
-
-LICENSE="
-   GPL-3+
-   GPL-3
-   GPL-2+
-   GPL-2
-   GPL-1+
-   LGPL-3+
-   LGPL-2.1+
-   LGPL-2.1
-   BSD
-   MIT
-   Old-MIT
-   Apache-2.0
-   public-domain
-   || ( Artistic GPL-1+ )
-   CC-BY-3.0
-   OFL-1.1
-   PSF-2
-"
-KEYWORDS="~amd64 ~arm ~x86"
-SLOT="0"
-IUSE="ios +udisks"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="${PYTHON_DEPS}
-   >=app-text/podofo-0.9.6_pre20171027:=
-   >=app-text/poppler-0.26.5[qt5]
-   >=dev-libs/chmlib-0.40:=
-   dev-libs/glib:2=
-   >=dev-libs/icu-57.1:=
-   dev-libs/libinput:=
-   >=dev-python/apsw-3.13.0[${PYTHON_USEDEP}]
-   >=dev-python/beautifulsoup-3.0.5:python-2[${PYTHON_USEDEP}]
-   >=dev-python/chardet-3.0.3[${PYTHON_USEDEP}]
-   >=dev-python/cssselect-0.7.1[${PYTHON_USEDEP}]
-   >=dev-python/css-parser-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/dbus-python-1.2.4[${PYTHON_USEDEP}]
-   >=dev-libs/dbus-glib-0.106
-   >=sys-apps/dbus-1.10.8
-   >=dev-python/html5-parser-0.4.3[${PYTHON_USEDEP}]
-   >=dev-python/lxml-3.8.0[${PYTHON_USEDEP}]
-   >=dev-python/mechanize-0.3.5[${PYTHON_USEDEP}]
-   >=dev-python/msgpack-0.5.6[${PYTHON_USEDEP}]
-   >=dev-python/netifaces-0.10.5[${PYTHON_USEDEP}]
-   >=dev-python/pillow-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/psutil-4.3.0[${PYTHON_USEDEP}]
-   >=dev-python/pygments-2.1.3[${PYTHON_USEDEP}]
-   >=dev-python/python-dateutil-2.5.3[${PYTHON_USEDEP}]
-   
>=dev-python/PyQt5-5.8[gui,svg,webkit,widgets,network,printsupport,${PYTHON_USEDEP}]
-   dev-python/regex[${PYTHON_USEDEP}]
-   dev-qt/qtcore:5=
-   dev-qt/qtdbus:5=
-   dev-qt/qtgui:5=
-   dev-qt/qtwidgets:5=
-   dev-util/desktop-file-utils
-   dev-util/gtk-update-icon-cache
-   media-fonts/liberation-fonts
-   media-libs/fontconfig:=
-   >=media-libs/freetype-2:=
-   >=media-libs/libmtp-1.1.11:=
-   >=media-libs/libwmf-0.2.8
-   >=media-gfx/optipng-0.7.6
-   >=sys-libs/zlib-1.2.11:=
-   virtual/libusb:1=
-   virtual/python-dnspython[${PYTHON_USEDEP}]
-   x11-libs/libxkbcommon:=
-   x11-libs/libX11:=
-   x11-libs/libXext:=
-   x11-libs/libXrender:=
-   x11-misc/shared-mime-info
-   >=x11-misc/xdg-utils-1.0.2-r2
-   ios? (
-   >=app-pda/usbmuxd-1.0.8
-   >=app-pda/libimobiledevice-1.2.0
-   )
-   udisks? ( virtual/libudev )"
-RDEPEND="${COMMON_DEPEND}
-   udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) )"
-DEPEND="${COMMON_DEPEND}
-   

[gentoo-commits] repo/gentoo:master commit in: dev-java/bnd-junit/

2019-04-01 Thread Patrice Clement
commit: 5f6bd4f617c13b4e61f6fa4d0ef5b71e28cc1b6a
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Apr  1 22:24:47 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Apr  2 05:29:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f6bd4f6

dev-java/bnd-junit: EAPI 6 bump.

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

 dev-java/bnd-junit/bnd-junit-2.1.0-r1.ebuild | 48 
 1 file changed, 48 insertions(+)

diff --git a/dev-java/bnd-junit/bnd-junit-2.1.0-r1.ebuild 
b/dev-java/bnd-junit/bnd-junit-2.1.0-r1.ebuild
new file mode 100644
index 000..a67694d9548
--- /dev/null
+++ b/dev-java/bnd-junit/bnd-junit-2.1.0-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+JAVA_PKG_IUSE="test"
+
+inherit java-pkg-2 java-ant-2
+
+DESCRIPTION="Junit plugin for bndlib, a swiss army knife for OSGi"
+HOMEPAGE="http://www.aqute.biz/Bnd/Bnd;
+SRC_URI="https://github.com/bndtools/bnd/archive/${PV}.REL.tar.gz -> 
bndlib-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+CDEPEND="
+   dev-java/osgi-core-api:0
+   dev-java/bndlib:0"
+
+DEPEND="
+   ${CDEPEND}
+   >=virtual/jdk-1.5
+   test? ( dev-java/junit:4 )"
+
+RDEPEND="
+   ${CDEPEND}
+   >=virtual/jre-1.5"
+
+S="${WORKDIR}/bnd-${PV}.REL/biz.aQute.junit"
+
+EANT_BUILD_TARGET="build"
+JAVA_ANT_REWRITE_CLASSPATH="true"
+EANT_GENTOO_CLASSPATH="bndlib,junit-4,osgi-core-api"
+
+# Tests appear broken and cause a circular dependency.
+RESTRICT="test"
+
+src_prepare() {
+   default
+   java-pkg_clean
+   cp ../cnf/build.xml . || die
+}
+
+src_install() {
+   java-pkg_newjar generated/biz.aQute.junit.jar
+}



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

2019-04-01 Thread Hans de Graaff
commit: 3ea531b84134dc1bb755fb39c9b35ada58ad574f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr  2 04:23:38 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  2 04:23:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ea531b8

dev-ruby/yard: add 0.9.19

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

 dev-ruby/yard/Manifest   |  1 +
 dev-ruby/yard/yard-0.9.19.ebuild | 51 
 2 files changed, 52 insertions(+)

diff --git a/dev-ruby/yard/Manifest b/dev-ruby/yard/Manifest
index f6cce5bc1e2..24a905d5e3e 100644
--- a/dev-ruby/yard/Manifest
+++ b/dev-ruby/yard/Manifest
@@ -1,2 +1,3 @@
 DIST yard-0.9.11-git.tgz 916355 BLAKE2B 
e9f27fe129cf93c51dbf83f4a7d5745d385252ba63c90f85223f2e9436c22a55aaba296f263072069d39e4beaca3e0830775a8be121c64cdc2a15afd3539a73f
 SHA512 
375a4878e61888cf73aaa06e9300195ae48b9898d8cd639fa796a067e5fa0b89d6ef62d327a388ee83953e80177515f4d8c070042188e3a1e597f48b82b3a72e
 DIST yard-0.9.18-git.tgz 919755 BLAKE2B 
ff0f53234880f1cd2d6ba312542ac560aa7a8cb1864a1bc123f855f2183bc1b5d55316e041e33d57aac18c4784575a1e196fe2113de6280d91a0bb69ade236f5
 SHA512 
754b2344c630642e191c037ec136976dd812c83051803cf10c4c810d267d405ba609dd5d194fafe4b55c0b123573aeae0139e3994cfacc94560a6ffddd5c6c4f
+DIST yard-0.9.19-git.tgz 920950 BLAKE2B 
1f6e6dcde4bb364620256fb48d06d94631f1f1b1e914a187cbce72906731ab7319f818655f20fd4b4d1e43a0864004d2b8e20026feb87189c7261483d1d111d1
 SHA512 
1656e3b8382a04d48efab7b8f1fd8949691da382cc7d1b7ee3838d6ae3d5372b1668b7e454d6fd3394cb8b152ea4a3c048fadc4c05c0271acb80a052d9f8bd3f

diff --git a/dev-ruby/yard/yard-0.9.19.ebuild b/dev-ruby/yard/yard-0.9.19.ebuild
new file mode 100644
index 000..b026567bee5
--- /dev/null
+++ b/dev-ruby/yard/yard-0.9.19.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC="yard"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_DOCDIR="doc docs"
+
+RUBY_FAKEGEM_EXTRAINSTALL="templates"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Documentation generation tool for the Ruby programming language"
+HOMEPAGE="https://yardoc.org/;
+
+# The gem lakes the gemspec file needed to pass tests.
+SRC_URI="https://github.com/lsegal/yard/archive/v${PV}.tar.gz -> ${P}-git.tgz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+ruby_add_bdepend "doc? ( || ( dev-ruby/maruku dev-ruby/rdiscount 
dev-ruby/bluecloth dev-ruby/kramdown ) )"
+
+ruby_add_bdepend "test? ( >=dev-ruby/ruby-gettext-2.3.8 dev-ruby/rack )"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/ s:^:#:' spec/spec_helper.rb || die
+
+   sed -i -e '/samus/I s:^:#:' Rakefile || die
+
+   # Avoid specs that make assumptions on load ordering that are not
+   # true for us. This may be related to how we install in Gentoo. This
+   # also drops a test requirement on dev-ruby/rack.
+   rm -f spec/cli/server_spec.rb || die
+
+   # Avoid specs that only work with bundler
+   sed -i -e '/#initialize/,/^  end/ s:^:#:' spec/cli/yri_spec.rb || die
+
+   # Avoid redcarpet-specific spec that is not optional
+   sed -i -e '/autolinks URLs/askip "make redcarpet optional"' 
spec/templates/helpers/html_helper_spec.rb || die
+
+   # Avoid asciidoc-specific spec that is not optional
+   sed -i -e '/\(AsciiDoc specific\|AsciiDoc header\)/askip "skipping 
asciidoc test"' spec/templates/helpers/html_helper_spec.rb || die
+}



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

2019-04-01 Thread Hans de Graaff
commit: b9d2dbe7a41f65f54f48c0d994704272e942c91d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr  2 04:14:48 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  2 04:23:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9d2dbe7

dev-ruby/yard: cleanup

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

 dev-ruby/yard/Manifest   |  3 ---
 dev-ruby/yard/yard-0.9.14.ebuild | 46 
 dev-ruby/yard/yard-0.9.15.ebuild | 46 
 dev-ruby/yard/yard-0.9.16.ebuild | 46 
 4 files changed, 141 deletions(-)

diff --git a/dev-ruby/yard/Manifest b/dev-ruby/yard/Manifest
index e533744ce15..f6cce5bc1e2 100644
--- a/dev-ruby/yard/Manifest
+++ b/dev-ruby/yard/Manifest
@@ -1,5 +1,2 @@
 DIST yard-0.9.11-git.tgz 916355 BLAKE2B 
e9f27fe129cf93c51dbf83f4a7d5745d385252ba63c90f85223f2e9436c22a55aaba296f263072069d39e4beaca3e0830775a8be121c64cdc2a15afd3539a73f
 SHA512 
375a4878e61888cf73aaa06e9300195ae48b9898d8cd639fa796a067e5fa0b89d6ef62d327a388ee83953e80177515f4d8c070042188e3a1e597f48b82b3a72e
-DIST yard-0.9.14-git.tgz 917830 BLAKE2B 
dd0d1d6dbc5aa9b549bd4c110f1abd57edc76b85e7c936bca8f7d35761d705ba86cd169c3c2b2141095dda68a8ab350b46bcbeb978d655addff78b110fbd2b71
 SHA512 
7974d431b2c1ef4830f225fd2012592405e7fb63546aeb52b74f4ad8b498926be979f3010bd315877bb4f738f6aa6c31f54b71832b461ebd3fa54fe1a1fccf5f
-DIST yard-0.9.15-git.tgz 918280 BLAKE2B 
f7ae54298cfb8d19e006ad5e18525c3e73e423894e37c3af1fbf555227c4f66bbbcdae781addf7ad30ac900d2af7458550558fe75d876d9fa4c0cd5a2a1a3668
 SHA512 
45e3a6e170c06c0f7e7ff508d33e87ed9922be3e8fca19d272553b84e678fa209c44460665b86e508145b147dbbc6d4664b95694dbcf91c421988b233e63dd40
-DIST yard-0.9.16-git.tgz 918424 BLAKE2B 
41213a87b108bbacf3d700ffbce67806619ff417b8c883b8f7c33bb1eda1e1d97176226a801d8fb8a888a4ed4e2bcb45c46a65b236bc39c9100bcc6200c5778d
 SHA512 
0027fccf87ec86a8ad5d62ec02b10a9c50be82212a7ad0f9f79d41627a2b88cb886fdc832e0df5c28cf737ad9f308670bd98b4dbb8ddc21aeba76b5c6928ecf1
 DIST yard-0.9.18-git.tgz 919755 BLAKE2B 
ff0f53234880f1cd2d6ba312542ac560aa7a8cb1864a1bc123f855f2183bc1b5d55316e041e33d57aac18c4784575a1e196fe2113de6280d91a0bb69ade236f5
 SHA512 
754b2344c630642e191c037ec136976dd812c83051803cf10c4c810d267d405ba609dd5d194fafe4b55c0b123573aeae0139e3994cfacc94560a6ffddd5c6c4f

diff --git a/dev-ruby/yard/yard-0.9.14.ebuild b/dev-ruby/yard/yard-0.9.14.ebuild
deleted file mode 100644
index 4270103786c..000
--- a/dev-ruby/yard/yard-0.9.14.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# 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_TASK_DOC="yard"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_DOCDIR="doc docs"
-
-RUBY_FAKEGEM_EXTRAINSTALL="templates"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Documentation generation tool for the Ruby programming language"
-HOMEPAGE="https://yardoc.org/;
-
-# The gem lakes the gemspec file needed to pass tests.
-SRC_URI="https://github.com/lsegal/yard/archive/v${PV}.tar.gz -> ${P}-git.tgz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-ruby_add_bdepend "doc? ( || ( dev-ruby/maruku dev-ruby/rdiscount 
dev-ruby/bluecloth dev-ruby/kramdown ) )"
-
-ruby_add_bdepend "test? ( >=dev-ruby/ruby-gettext-2.3.8 dev-ruby/rack )"
-
-all_ruby_prepare() {
-   sed -i -e '/[Bb]undler/ s:^:#:' spec/spec_helper.rb || die
-
-   # Avoid specs that make assumptions on load ordering that are not
-   # true for us. This may be related to how we install in Gentoo. This
-   # also drops a test requirement on dev-ruby/rack.
-   rm -f spec/cli/server_spec.rb || die
-
-   # Avoid specs that only work with bundler
-   sed -i -e '/#initialize/,/^  end/ s:^:#:' spec/cli/yri_spec.rb || die
-
-   # Avoid redcarpet-specific spec that is not optional
-   sed -i -e '/autolinks URLs/askip "make redcarpet optional"' 
spec/templates/helpers/html_helper_spec.rb || die
-}

diff --git a/dev-ruby/yard/yard-0.9.15.ebuild b/dev-ruby/yard/yard-0.9.15.ebuild
deleted file mode 100644
index 4270103786c..000
--- a/dev-ruby/yard/yard-0.9.15.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# 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_TASK_DOC="yard"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_DOCDIR="doc docs"
-
-RUBY_FAKEGEM_EXTRAINSTALL="templates"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Documentation generation tool for the Ruby programming language"

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

2019-04-01 Thread Erik Mackdanz
commit: ce76e4d27be1c2f95fdd90e1701da16ff6fd841b
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Tue Apr  2 04:14:51 2019 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Tue Apr  2 04:14:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce76e4d2

app-emulation/lxd: Bump to 3.11

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

 app-emulation/lxd/Manifest|   1 +
 app-emulation/lxd/lxd-3.11.ebuild | 241 ++
 2 files changed, 242 insertions(+)

diff --git a/app-emulation/lxd/Manifest b/app-emulation/lxd/Manifest
index f2ee48a0546..d48b9ba3565 100644
--- a/app-emulation/lxd/Manifest
+++ b/app-emulation/lxd/Manifest
@@ -1 +1,2 @@
 DIST lxd-3.10.tar.gz 27057432 BLAKE2B 
b5a5c3cd4f1045419c806510aab21c3bcde8c8687ede808b1b832e2a0caba0ff3af5d79367141b29e84c0bd3bcf6958d917bc813700220e238cd21933963009b
 SHA512 
25ed7675af7b6861d754607b19485e329ae344befac06fe33f326e34030755359bea6f574c414849b85f034533fd5dccb95a326ae0ad9e44b8ea366f7ee44d04
+DIST lxd-3.11.tar.gz 27281796 BLAKE2B 
640944cd929b69b7c6f935b7e3587e05b77ec71da8f20b988b831b837f86706b3cb3a81676f4ae456bf06594ea74e9ab44b87d22ddaa78209d4a0f6cbbba3483
 SHA512 
182a2fd6b69c8228760c26498d77f46c6bdda899018e1ab4470f2382202250582c66fc11f4c2d8d86598f19e3a62a1027dfe190342611c4a819a27ce6e39e78e

diff --git a/app-emulation/lxd/lxd-3.11.ebuild 
b/app-emulation/lxd/lxd-3.11.ebuild
new file mode 100644
index 000..988a505aa24
--- /dev/null
+++ b/app-emulation/lxd/lxd-3.11.ebuild
@@ -0,0 +1,241 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Fast, dense and secure container management"
+HOMEPAGE="https://linuxcontainers.org/lxd/introduction/;
+
+LICENSE="Apache-2.0 BSD BSD-2 LGPL-3 MIT MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="+daemon +ipv6 +dnsmasq nls test tools"
+
+inherit autotools bash-completion-r1 linux-info systemd user
+
+SRC_URI="https://linuxcontainers.org/downloads/${PN}/${P}.tar.gz;
+
+DEPEND="
+   dev-lang/tcl
+   >=dev-lang/go-1.9.4
+   dev-libs/libuv
+   dev-libs/protobuf
+   nls? ( sys-devel/gettext )
+   test? (
+   app-misc/jq
+   net-misc/curl
+   sys-devel/gettext
+   )
+"
+
+RDEPEND="
+   daemon? (
+   app-arch/xz-utils
+   >=app-emulation/lxc-2.0.7[seccomp]
+   dev-libs/libuv
+   dev-libs/lzo
+   dev-util/xdelta:3
+   dnsmasq? (
+   net-dns/dnsmasq[dhcp,ipv6?]
+   )
+   net-firewall/ebtables
+   net-firewall/iptables[ipv6?]
+   net-libs/libnfnetlink
+   net-libs/libnsl:0=
+   net-misc/rsync[xattr]
+   sys-apps/iproute2[ipv6?]
+   sys-fs/fuse
+   sys-fs/lxcfs
+   sys-fs/squashfs-tools
+   virtual/acl
+   )
+"
+
+CONFIG_CHECK="
+   ~BRIDGE
+   ~DUMMY
+   ~IP6_NF_NAT
+   ~IP6_NF_TARGET_MASQUERADE
+   ~IPV6
+   ~IP_NF_NAT
+   ~IP_NF_TARGET_MASQUERADE
+   ~MACVLAN
+   ~NETFILTER_XT_MATCH_COMMENT
+   ~NET_IPGRE
+   ~NET_IPGRE_DEMUX
+   ~NET_IPIP
+   ~NF_NAT_MASQUERADE_IPV4
+   ~NF_NAT_MASQUERADE_IPV6
+   ~VXLAN
+"
+
+ERROR_BRIDGE="BRIDGE: needed for network commands"
+ERROR_DUMMY="DUMMY: needed for network commands"
+ERROR_IP6_NF_NAT="IP6_NF_NAT: needed for network commands"
+ERROR_IP6_NF_TARGET_MASQUERADE="IP6_NF_TARGET_MASQUERADE: needed for network 
commands"
+ERROR_IPV6="IPV6: needed for network commands"
+ERROR_IP_NF_NAT="IP_NF_NAT: needed for network commands"
+ERROR_IP_NF_TARGET_MASQUERADE="IP_NF_TARGET_MASQUERADE: needed for network 
commands"
+ERROR_MACVLAN="MACVLAN: needed for network commands"
+ERROR_NETFILTER_XT_MATCH_COMMENT="NETFILTER_XT_MATCH_COMMENT: needed for 
network commands"
+ERROR_NET_IPGRE="NET_IPGRE: needed for network commands"
+ERROR_NET_IPGRE_DEMUX="NET_IPGRE_DEMUX: needed for network commands"
+ERROR_NET_IPIP="NET_IPIP: needed for network commands"
+ERROR_NF_NAT_MASQUERADE_IPV4="NF_NAT_MASQUERADE_IPV4: needed for network 
commands"
+ERROR_NF_NAT_MASQUERADE_IPV6="NF_NAT_MASQUERADE_IPV6: needed for network 
commands"
+ERROR_VXLAN="VXLAN: needed for network commands"
+
+EGO_PN="github.com/lxc/lxd"
+
+src_prepare() {
+   eapply_user
+   eapply "${FILESDIR}/de-translation-newline-1.patch"
+   eapply "${FILESDIR}/ptbr-translation-newline.patch"
+
+   cd "${S}/dist/dqlite" || die "Can't cd to dqlite dir"
+   eautoreconf
+}
+
+src_configure() {
+   export GOPATH="${S}/dist"
+   cd "${GOPATH}/sqlite" || die "Can't cd to sqlite dir"
+   econf --enable-replication --disable-amalgamation --disable-tcl 
--libdir="${EPREFIX}/usr/lib/lxd"
+
+   cd "${GOPATH}/dqlite" || die "Can't cd to dqlite dir"
+   

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

2019-04-01 Thread Hans de Graaff
commit: f91fb9bce6d8a07d5010fb73a86d7c552f6594b7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr  2 04:10:42 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  2 04:11:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f91fb9bc

net-analyzer/sslscan: add 1.11.13

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

 net-analyzer/sslscan/Manifest   |  2 ++
 net-analyzer/sslscan/sslscan-1.11.13.ebuild | 52 +
 2 files changed, 54 insertions(+)

diff --git a/net-analyzer/sslscan/Manifest b/net-analyzer/sslscan/Manifest
index 8ab43c4aa42..c5b1d03ba0d 100644
--- a/net-analyzer/sslscan/Manifest
+++ b/net-analyzer/sslscan/Manifest
@@ -2,3 +2,5 @@ DIST sslscan-1.11.11-rbsec-openssl.tar.gz 5523256 BLAKE2B 
d8f5aa8bf748310fe1186e
 DIST sslscan-1.11.11-rbsec.tar.gz 53432 BLAKE2B 
08be7c5a4126e8dee85adb48bd5d55f5e7931820462a18fe904439edc8fc690d60379c53c436d4953f9fbbb94c4e47eebd3fd48867b00d5819ba651569c99b7b
 SHA512 
9492f1460b45212f80a19364c284ef2a11ad0c343bb324447ec519685d52805104d95a7817fda4d43af98ce2be2edede889e6ae83eab37d75be0ab46dca29d72
 DIST sslscan-1.11.12-rbsec-openssl.tar.gz 5523256 BLAKE2B 
d8f5aa8bf748310fe1186ec9ab74ecc33425d6fa3db709d94516780d4efadbdd9cf6358798796704dfeb4032ec615298f3b67c8150e314f1e79a4d826c2589b7
 SHA512 
9bfdac0b6dcbb9e932ef41db9753f7298cf38ddc18731386968289114fd5ed10d81e95523d557b42b431377638d2f62fb710189e7d944ba89979fe5e3437fd3f
 DIST sslscan-1.11.12-rbsec.tar.gz 56346 BLAKE2B 
0079a4be50c037c02bc716341315e0a2164742f270a54fa616ba223b5ecc56bdfa9cec3bc495cd57d4d20cdb4331c622bb78b705f2516fcff228306bb1e5c6ff
 SHA512 
e667cc50f0ec71343b73ca11871a1a53aa9f255c671f16b7c5f33093125a1e60d6e7945e7bd7296f4a71aa6837c823dc939e18982f3e3f831acc061ead9e7ebb
+DIST sslscan-1.11.13-rbsec-openssl.tar.gz 5523256 BLAKE2B 
d8f5aa8bf748310fe1186ec9ab74ecc33425d6fa3db709d94516780d4efadbdd9cf6358798796704dfeb4032ec615298f3b67c8150e314f1e79a4d826c2589b7
 SHA512 
9bfdac0b6dcbb9e932ef41db9753f7298cf38ddc18731386968289114fd5ed10d81e95523d557b42b431377638d2f62fb710189e7d944ba89979fe5e3437fd3f
+DIST sslscan-1.11.13-rbsec.tar.gz 57006 BLAKE2B 
ea5e2754f5a8218ee1f3aba26e7efe2394fa87b79137955705edc4600d67139f2641ac7b4e7a92f7273878f5b150e3e1b159114c833dc180049688563cf5095b
 SHA512 
51477e5b29a2fc87e2d6c8d76430eeb2a6feb388d47392938b9e2c572acc5926534a19dc249080a066256a1a6cbfe08b162e9f3839386c86116352e5eb57c544

diff --git a/net-analyzer/sslscan/sslscan-1.11.13.ebuild 
b/net-analyzer/sslscan/sslscan-1.11.13.ebuild
new file mode 100644
index 000..0a071a7e55a
--- /dev/null
+++ b/net-analyzer/sslscan/sslscan-1.11.13.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# Upstream now builds against the openssl 1.0.x fork by PeterMosmans
+MOSMANS_OPENSSL_COMMIT=c9ba19c8b7fd131137373dbd1fccd6a8bb0628be
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Fast SSL configuration scanner"
+HOMEPAGE="https://github.com/rbsec/sslscan;
+MY_FORK="rbsec"
+SRC_URI="https://github.com/${MY_FORK}/${PN}/archive/${PV}-${MY_FORK}.tar.gz 
-> ${P}-${MY_FORK}.tar.gz
+   static? ( 
https://github.com/PeterMosmans/openssl/archive/${MOSMANS_OPENSSL_COMMIT}.tar.gz
 -> ${P}-${MY_FORK}-openssl.tar.gz )"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl +static"
+
+DEPEND="libressl? ( dev-libs/libressl )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${P}-${MY_FORK}"
+
+src_prepare() {
+   if use static; then
+   ln -s ../openssl-${MOSMANS_OPENSSL_COMMIT} openssl || die
+   touch .openssl_is_fresh || die
+
+   sed -i -e '/openssl\/.git/,/fi/d' \
+   -e '/openssl test/d' Makefile || die
+
+   fi
+
+   default
+}
+
+src_compile() {
+   if use static; then
+   emake static
+   else
+   emake
+   fi
+}
+
+src_install() {
+   DESTDIR="${D}" emake install
+
+   dodoc Changelog README.md
+}



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

2019-04-01 Thread Hans de Graaff
commit: 1b7b9942132bd29fe1ef9d27ee4ce0147a2ae6ce
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr  2 04:05:11 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  2 04:11:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b7b9942

www-apache/passenger: amd64 stable

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

 www-apache/passenger/passenger-6.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apache/passenger/passenger-6.0.2.ebuild 
b/www-apache/passenger/passenger-6.0.2.ebuild
index 46236b81998..2656d97c0d1 100644
--- a/www-apache/passenger/passenger-6.0.2.ebuild
+++ b/www-apache/passenger/passenger-6.0.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://s3.amazonaws.com/phusion-passenger/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="apache2 debug"
 
 ruby_add_bdepend "dev-ruby/rake"



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

2019-04-01 Thread Hans de Graaff
commit: abcd49f2134c798e61ad2d55f870145bc530a53a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Apr  2 04:03:00 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  2 04:11:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abcd49f2

dev-ruby/nokogiri: amd64 stable

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

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

diff --git a/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild 
b/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild
index 610f35ce19b..92e808d009e 100644
--- a/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild
+++ b/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://www.nokogiri.org/;
 LICENSE="MIT"
 SRC_URI="https://github.com/sparklemotion/nokogiri/archive/v${PV}.tar.gz -> 
${P}-git.tgz"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc x86 
~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 ~ppc ~ppc64 ~s390 sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



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

2019-04-01 Thread Erik Mackdanz
commit: 0f7513a1e115aa3c41dbe4bcc6fa82d647c96e77
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Tue Apr  2 04:04:35 2019 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Tue Apr  2 04:04:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f7513a1

sys-fs/lxcfs: Remove old

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

 sys-fs/lxcfs/Manifest   |  1 -
 sys-fs/lxcfs/lxcfs-3.0.2.ebuild | 72 -
 2 files changed, 73 deletions(-)

diff --git a/sys-fs/lxcfs/Manifest b/sys-fs/lxcfs/Manifest
index 44224535405..19f83ee280e 100644
--- a/sys-fs/lxcfs/Manifest
+++ b/sys-fs/lxcfs/Manifest
@@ -1,2 +1 @@
-DIST lxcfs-3.0.2.tar.gz 49809 BLAKE2B 
dc73149b92ac040c56de5f4c11aafdf6e744ffd2b17e22ee9c784663ff102dedd74453581a77027037955238e081c596377c28b6066012fa32ee575e6a4c57fa
 SHA512 
2065bbd68fd2974fe28c861b1e77c62a501da85e1bfc19eeafa49fd88c66e8e75ae007781c8bd05caf43fb3b80ad12c81c0f0f03d27ab1131e0cfe6d48443218
 DIST lxcfs-3.0.3.tar.gz 49824 BLAKE2B 
02e3a0a6f4fd515924c5f038f00d664ef347c9b685e6561334b460e0ce0ce5580aca67f33df56b44b9cdafa4953f4f92843662f3516e1c923f9242388b17dbc6
 SHA512 
d994e1dd85f499eba2847d33870281a4bcaf4466e2c8f7acb065f4f3d5688b93b775c486bc6db571e64d09a3567710b0c816e12555ffb3e3e50f81bc7f5f6be6

diff --git a/sys-fs/lxcfs/lxcfs-3.0.2.ebuild b/sys-fs/lxcfs/lxcfs-3.0.2.ebuild
deleted file mode 100644
index f9c354a881a..000
--- a/sys-fs/lxcfs/lxcfs-3.0.2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd vcs-snapshot
-DESCRIPTION="FUSE filesystem for LXC"
-HOMEPAGE="https://linuxcontainers.org/lxcfs/introduction/;
-LICENSE="Apache-2.0"
-SLOT="0"
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://github.com/lxc/lxcfs.git;
-   EGIT_BRANCH="master"
-   inherit git-r3
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="https://github.com/lxc/lxcfs/archive/${P}.tar.gz;
-   KEYWORDS="amd64"
-fi
-
-# Omit all dbus.  Upstream appears to require it because systemd, but
-# lxcfs makes no direct use of dbus.
-RDEPEND="
-   dev-libs/glib:2
-   sys-fs/fuse:0
-"
-DEPEND="
-   sys-apps/help2man
-   ${RDEPEND}
-"
-PATCHES="${FILESDIR}/${PN}-fusermount-path.patch"
-
-src_prepare() {
-   default
-   ./bootstrap.sh || die "Failed to bootstrap configure files"
-}
-
-src_configure() {
-   # Without the localstatedir the filesystem isn't mounted correctly
-   econf --localstatedir=/var
-}
-
-# Test suite fails for me
-# src_test() {
-#  emake tests
-#  tests/main.sh || die "Tests failed"
-# }
-
-src_install() {
-   default
-   keepdir /var/lib/lxcfs
-   newinitd "${FILESDIR}"/${PN}.initd lxcfs
-   systemd_dounit config/init/systemd/lxcfs.service
-}
-
-pkg_preinst() {
-   # In an upgrade situation merging /var/lib/lxcfs (an empty dir)
-   # fails because that is a live mountpoint when the service is
-   # running.  It's unnecessary anyway so skip the action.
-   [[ -d ${ROOT}/var/lib/lxcfs ]] && rm -rf ${D}/var
-}
-
-pkg_postinst() {
-   einfo
-   einfo "Starting with version 3.0.0 the cgfs PAM module has moved, and"
-   einfo "will eventually be available in app-emulation/lxc.  See:"
-   einfo 
"https://brauner.github.io/2018/02/28/lxc-includes-cgroup-pam-module.html;
-   einfo "for more information."
-   einfo
-}



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

2019-04-01 Thread Erik Mackdanz
commit: 2356986d2eeb4a7d726d22fc1829ec6b329d55ba
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Tue Apr  2 04:03:12 2019 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Tue Apr  2 04:03:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2356986d

sys-fs/lxcfs: Stabilize 3.0.3

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

 sys-fs/lxcfs/lxcfs-3.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/lxcfs/lxcfs-3.0.3.ebuild b/sys-fs/lxcfs/lxcfs-3.0.3.ebuild
index 4d89fb38cc5..f9c354a881a 100644
--- a/sys-fs/lxcfs/lxcfs-3.0.3.ebuild
+++ b/sys-fs/lxcfs/lxcfs-3.0.3.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == "" ]] ; then
KEYWORDS=""
 else
SRC_URI="https://github.com/lxc/lxcfs/archive/${P}.tar.gz;
-   KEYWORDS="~amd64"
+   KEYWORDS="amd64"
 fi
 
 # Omit all dbus.  Upstream appears to require it because systemd, but



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

2019-04-01 Thread Erik Mackdanz
commit: 0b96e191ff8364e293d3bb7207843c45a7f868d4
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Tue Apr  2 04:00:06 2019 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Tue Apr  2 04:00:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b96e191

app-emulation/lxd: Remove old

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

 app-emulation/lxd/Manifest   |   3 -
 app-emulation/lxd/lxd-3.7.ebuild | 238 --
 app-emulation/lxd/lxd-3.8.ebuild | 241 ---
 app-emulation/lxd/lxd-3.9.ebuild | 241 ---
 4 files changed, 723 deletions(-)

diff --git a/app-emulation/lxd/Manifest b/app-emulation/lxd/Manifest
index 65e12c849b0..f2ee48a0546 100644
--- a/app-emulation/lxd/Manifest
+++ b/app-emulation/lxd/Manifest
@@ -1,4 +1 @@
 DIST lxd-3.10.tar.gz 27057432 BLAKE2B 
b5a5c3cd4f1045419c806510aab21c3bcde8c8687ede808b1b832e2a0caba0ff3af5d79367141b29e84c0bd3bcf6958d917bc813700220e238cd21933963009b
 SHA512 
25ed7675af7b6861d754607b19485e329ae344befac06fe33f326e34030755359bea6f574c414849b85f034533fd5dccb95a326ae0ad9e44b8ea366f7ee44d04
-DIST lxd-3.7.tar.gz 26321652 BLAKE2B 
ce7faab689ffe3950aa6f57a0fd2601f231ad26fc7fb09f02300f9c2226deda0876183fe2a4a14cc982c3c2a829acc1785e5e6e030f4dbeaf03a8fbba83e4cfc
 SHA512 
a485c26ea04e6686a9fdac2219535e866f1906ff9a8e25fcd954d061a4cfc1585c4fa81b00247c34f571dbfb7f382be3e7208e3da72a4e281b714715a4f145fb
-DIST lxd-3.8.tar.gz 26914475 BLAKE2B 
9cf7ee1b5d57a3588d3ccecd47b22ef28da0faa684de03c7273949be1902f77ff7c49f4e7e5c942f7266e4e462ee009b1e70d25362610050cc41d81029d42d7b
 SHA512 
20085f05c59287fc8f350d8ef314c19fd7361f8394812e4a0466f76d9df6957348fc954d952f70e50e7227d593a9db9af994e15f69fd76e6ca4812174bfa907c
-DIST lxd-3.9.tar.gz 27031818 BLAKE2B 
7956aa9d0cf773fbdae64e8770ebee474d0b1e20aa1399d96eb317efb8a8e1cc1673bf345cea7a7cf99746905b9e16c6b2b507e571931a0cab37ff7ff5df67fd
 SHA512 
8d61912adeb33d06e4065aab7eaf80ab7b6e9cbc2b20dcca1cc5c74b999838aec32e805af3a6ae1262948514a619f4332ec44912ca720fa1b0e8b962165c117a

diff --git a/app-emulation/lxd/lxd-3.7.ebuild b/app-emulation/lxd/lxd-3.7.ebuild
deleted file mode 100644
index 7f3ceabdddf..000
--- a/app-emulation/lxd/lxd-3.7.ebuild
+++ /dev/null
@@ -1,238 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Fast, dense and secure container management"
-HOMEPAGE="https://linuxcontainers.org/lxd/introduction/;
-
-LICENSE="Apache-2.0 BSD BSD-2 LGPL-3 MIT MPL-2.0"
-SLOT="0"
-KEYWORDS="amd64"
-
-IUSE="+daemon +ipv6 +dnsmasq nls test tools"
-
-inherit autotools bash-completion-r1 linux-info systemd user
-
-SRC_URI="https://linuxcontainers.org/downloads/${PN}/${P}.tar.gz;
-
-DEPEND="
-   dev-lang/tcl
-   >=dev-lang/go-1.9.4
-   dev-libs/libuv
-   dev-libs/protobuf
-   nls? ( sys-devel/gettext )
-   test? (
-   app-misc/jq
-   net-misc/curl
-   sys-devel/gettext
-   )
-"
-
-RDEPEND="
-   daemon? (
-   app-arch/xz-utils
-   >=app-emulation/lxc-2.0.7[seccomp]
-   dev-libs/libuv
-   dev-libs/lzo
-   dev-util/xdelta:3
-   dnsmasq? (
-   net-dns/dnsmasq[dhcp,ipv6?]
-   )
-   net-firewall/ebtables
-   net-firewall/iptables[ipv6?]
-   net-libs/libnfnetlink
-   net-misc/rsync[xattr]
-   sys-apps/iproute2[ipv6?]
-   sys-fs/fuse
-   sys-fs/lxcfs
-   sys-fs/squashfs-tools
-   virtual/acl
-   )
-"
-
-CONFIG_CHECK="
-   ~BRIDGE
-   ~DUMMY
-   ~IP6_NF_NAT
-   ~IP6_NF_TARGET_MASQUERADE
-   ~IPV6
-   ~IP_NF_NAT
-   ~IP_NF_TARGET_MASQUERADE
-   ~MACVLAN
-   ~NETFILTER_XT_MATCH_COMMENT
-   ~NET_IPGRE
-   ~NET_IPGRE_DEMUX
-   ~NET_IPIP
-   ~NF_NAT_MASQUERADE_IPV4
-   ~NF_NAT_MASQUERADE_IPV6
-   ~VXLAN
-"
-
-ERROR_BRIDGE="BRIDGE: needed for network commands"
-ERROR_DUMMY="DUMMY: needed for network commands"
-ERROR_IP6_NF_NAT="IP6_NF_NAT: needed for network commands"
-ERROR_IP6_NF_TARGET_MASQUERADE="IP6_NF_TARGET_MASQUERADE: needed for network 
commands"
-ERROR_IPV6="IPV6: needed for network commands"
-ERROR_IP_NF_NAT="IP_NF_NAT: needed for network commands"
-ERROR_IP_NF_TARGET_MASQUERADE="IP_NF_TARGET_MASQUERADE: needed for network 
commands"
-ERROR_MACVLAN="MACVLAN: needed for network commands"
-ERROR_NETFILTER_XT_MATCH_COMMENT="NETFILTER_XT_MATCH_COMMENT: needed for 
network commands"
-ERROR_NET_IPGRE="NET_IPGRE: needed for network commands"
-ERROR_NET_IPGRE_DEMUX="NET_IPGRE_DEMUX: needed for network commands"
-ERROR_NET_IPIP="NET_IPIP: needed for network commands"
-ERROR_NF_NAT_MASQUERADE_IPV4="NF_NAT_MASQUERADE_IPV4: needed for network 
commands"

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

2019-04-01 Thread Erik Mackdanz
commit: 93a62a2f798d10dd5f4101836bc9e7b689867270
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Tue Apr  2 03:55:44 2019 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Tue Apr  2 03:57:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a62a2f

app-emulation/lxd: Stabilize through 3.10

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

 app-emulation/lxd/lxd-3.10.ebuild | 2 +-
 app-emulation/lxd/lxd-3.9.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/lxd/lxd-3.10.ebuild 
b/app-emulation/lxd/lxd-3.10.ebuild
index 988a505aa24..a330cfbac4e 100644
--- a/app-emulation/lxd/lxd-3.10.ebuild
+++ b/app-emulation/lxd/lxd-3.10.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://linuxcontainers.org/lxd/introduction/;
 
 LICENSE="Apache-2.0 BSD BSD-2 LGPL-3 MIT MPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 IUSE="+daemon +ipv6 +dnsmasq nls test tools"
 

diff --git a/app-emulation/lxd/lxd-3.9.ebuild b/app-emulation/lxd/lxd-3.9.ebuild
index 418cd000141..886ba7e161b 100644
--- a/app-emulation/lxd/lxd-3.9.ebuild
+++ b/app-emulation/lxd/lxd-3.9.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://linuxcontainers.org/lxd/introduction/;
 
 LICENSE="Apache-2.0 BSD BSD-2 LGPL-3 MIT MPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 IUSE="+daemon +ipv6 +dnsmasq nls test tools"
 



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

2019-04-01 Thread Hans de Graaff
commit: 657e9db45d43c14c9f3e52fd0109afac64aa29e5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr  1 17:17:08 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  2 03:56:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=657e9db4

www-apache/passenger: cleanup

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

 www-apache/passenger/Manifest   |   1 -
 www-apache/passenger/passenger-6.0.1.ebuild | 127 
 2 files changed, 128 deletions(-)

diff --git a/www-apache/passenger/Manifest b/www-apache/passenger/Manifest
index 1daf04c7d44..e6e6c10572b 100644
--- a/www-apache/passenger/Manifest
+++ b/www-apache/passenger/Manifest
@@ -1,3 +1,2 @@
 DIST passenger-5.3.7.tar.gz 7195477 BLAKE2B 
43a2384574316f6c8472f326389e8c1feed769e78d66c20e63f6d2679b1ac1b20a9122612c98e3006520e6f24c5883addd93ef11e8f0385759ee0c9e9299b7ad
 SHA512 
bbef4881e0e0c698b29b10ff8a7afbc001c31d14fb80ffa27ed6867a92ad23712319733e6162be1f7720ebda421630af2f258f8167fa73c7b5ea594bc8247158
-DIST passenger-6.0.1.tar.gz 7203144 BLAKE2B 
1c59a4e7c6e82fc57f507653d8648cc8c21fae6ce8fb008b0839b60e6a076227f139300d7521eaff281ce2f935f20a730b3b34cb2cf3527a807f38e78219277d
 SHA512 
d2fdd27367a2adc8e5486038c7bb9a504c13bc675ba9640123c1a091e6a891238c90c54a75938cd119d74f40c8d0b28257704c83ebefa024057c744ea845997d
 DIST passenger-6.0.2.tar.gz 7204982 BLAKE2B 
056f85f88e49ca7dcfe37d1d1003beaa5325259a130b44aa60a319d36987c901b0a8a188998d38b68f3d396a71df0db8b8fc9562e58327b61a712dc39fb7ce1e
 SHA512 
05a1c598588ad96864ef81ff8bc45535b3cb35c0f4840f16b93d39c0ece94378e806d967190a3d69b28b37d463624955bb45970459cf8febb258d8fd135e97f2

diff --git a/www-apache/passenger/passenger-6.0.1.ebuild 
b/www-apache/passenger/passenger-6.0.1.ebuild
deleted file mode 100644
index e9d13ce882e..000
--- a/www-apache/passenger/passenger-6.0.1.ebuild
+++ /dev/null
@@ -1,127 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-inherit apache-module flag-o-matic multilib ruby-ng toolchain-funcs
-
-DESCRIPTION="Passenger makes deployment of Ruby on Rails applications a breeze"
-HOMEPAGE="https://www.phusionpassenger.com/;
-SRC_URI="https://s3.amazonaws.com/phusion-passenger/releases/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="apache2 debug"
-
-ruby_add_bdepend "dev-ruby/rake"
-
-ruby_add_rdepend "
-   >=dev-ruby/rack-1.0.0:*
-   >=dev-ruby/rake-0.8.1"
-
-# libev is bundled but with adapations that do not seem to be accepted
-# upstream, so we must use the bundled version :-(
-CDEPEND="
-   >=dev-libs/libuv-1.8.0
-   net-misc/curl[ssl]
-   apache2? ( www-servers/apache[apache2_modules_unixd(+)] )"
-
-RDEPEND="${RDEPEND} ${CDEPEND}"
-DEPEND="${DEPEND} ${CDEPEND}"
-
-APACHE2_MOD_CONF="30_mod_${PN}-5.0.0 30_mod_${PN}"
-APACHE2_MOD_DEFINE="PASSENGER"
-
-want_apache2
-
-pkg_setup() {
-   use debug && append-flags -DPASSENGER_DEBUG
-   depend.apache_pkg_setup
-}
-
-all_ruby_prepare() {
-   eapply "${FILESDIR}"/${PN}-5.1.11-gentoo.patch
-   eapply "${FILESDIR}"/${PN}-5.1.1-isnan.patch
-
-   # Change these with sed instead of a patch so that we can easily use
-   # the toolchain-funcs methods.
-   sed -i -e "/^CC/ s/=.*$/= '$(tc-getCC)'/" \
-   -e "/^CXX\s/ s/=.*$/= '$(tc-getCXX)'/" \
-   -e 's/PlatformInfo.debugging_cflags//' build/basics.rb || die
-
-   # Avoid fixed debugging CFLAGs.
-   sed -e '/debugging_cflags/areturn ""' -i 
src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb || die
-
-   # Use sed here so that we can dynamically set the documentation 
directory.
-   sed -i -e "s:/usr/share/doc/passenger:/usr/share/doc/${P}:" \
-   -e 
"s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" \
-   src/ruby_supportlib/phusion_passenger.rb || die
-   sed -i -e 
"s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" 
src/cxx_supportlib/ResourceLocator.h || die
-
-   # Don't install a tool that won't work in our setup.
-   sed -i -e '/passenger-install-apache2-module/d' 
src/ruby_supportlib/phusion_passenger/packaging.rb || die
-   rm -f bin/passenger-install-apache2-module || die "Unable to remove 
unneeded install script."
-
-   # Make sure we use the system-provided version where possible
-   rm -rf src/cxx_supportlib/vendor-copy/libuv || die "Unable to remove 
vendored code."
-
-   # Avoid building documentation to avoid a dependency on mizuho.
-   #sed -i -e 's/, :doc//' build/packaging.rb || die
-   touch doc/*.html || die
-
-   # Fix hard-coded use of AR
-   sed -i -e "s/ar cru/"$(tc-getAR)" cru/" build/support/cplusplus.rb || 
die
-
-   # Make sure apache support is not attempted with -apache2
-   

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

2019-04-01 Thread Hans de Graaff
commit: 19425302389672a3fa4e6005682c03661e62ddeb
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr  1 18:30:40 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Apr  2 03:56:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19425302

dev-lang/ruby: add 2.4.6

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

 dev-lang/ruby/Manifest  |   1 +
 dev-lang/ruby/ruby-2.4.6.ebuild | 230 
 2 files changed, 231 insertions(+)

diff --git a/dev-lang/ruby/Manifest b/dev-lang/ruby/Manifest
index ce172fbbc73..646e786b2d0 100644
--- a/dev-lang/ruby/Manifest
+++ b/dev-lang/ruby/Manifest
@@ -1,5 +1,6 @@
 DIST ruby-2.3.8.tar.xz 11465792 BLAKE2B 
b9c8ef5c943872e3d1426c30cbd720acc66d17cc7bc926f3294e68f17fbc78edef42f6496295800c3d4efd3ae441730723bfcfbce46239359930622697d9
 SHA512 
06373050e6c1af9cb6a5863aef878b21c8a45fd0e68414e3d546cb73ec3028207d3acc0a9326428f172b9347a30bbe69a16f9dc0bdb739161d677adb2d888095
 DIST ruby-2.4.5.tar.xz 10064712 BLAKE2B 
0846125e617b43ea302b4c5309b20503577937865d445a6fee766323a188aa552d3a13740c3d38c7be812b19bffb2474021cb7b368cc144d51ea771552f62769
 SHA512 
658f676c623109f4c7499615e191c98c3dd72cfcaeeaf121337d0b8a33c5243145edd50ec5e2775f988e3cd19788984f105fa165e3049779066566f67172c1b4
+DIST ruby-2.4.6.tar.xz 10005544 BLAKE2B 
2af984d96dad4d7ef4d467b317bd4bb54b0614d96619377bc46f7588cd1c72bee47202b61d6ec54f00113fd25672d2831221dbf0a4491aa271541a34c634ee84
 SHA512 
eafb2257747f99e2ed262af142e71175b70f7cceaa4d1253b92c8337f075a9a58a2d93b029d75e11a9b124f112a8f0983273b2b30afc147b5cf71a8dbb5fa0ba
 DIST ruby-2.5.3.tar.xz 11453336 BLAKE2B 
66c59448a23c22796b43f04a1f84359386b7bee7163da4255426ea75b1c7af0a7a7142991b870a75a72ded56ac49f47c51bc162ebf2be2af0d1b1608b60c02df
 SHA512 
6dcae0e8d0bacdb2cbde636e2030596308b5af53f2eb85d3adccb67b02e6f8f9751e8117d12f8484829fdd9d995f6e327f701d9b433bcf94f1f59d13a1fd7518
 DIST ruby-2.5.5.tar.xz 11459832 BLAKE2B 
ced1105a87e7df8f82a65ca8d1d329d5a9d110d2f3f88b27a79262c4ac1484dda16d8646c0c03f18c1bb25f8b154075eb03a0614355ec62f677c2fa56ab3c956
 SHA512 
06b1d58536ebfacb7b56c1e6ed4b8ab816fadc4f48c845a452554cd262e7908199a30e5793f3cbaec2db56a8803aa5c6089abf7bf06c8fc47867e97870b7dfec
 DIST ruby-2.6.0.tar.xz 11918536 BLAKE2B 
f51fe57c1ff83d99c834f29d1bcc8e847f7a4cd3a10e202391327373d9d803fcc356d210cc07b9038915039a7462c0263fa7567b63366d1ab6273b9a82e651d1
 SHA512 
c56eaf85ef7b79deb34ee4590b143c07f4fc83eb79775290761aee5a7c63374659613538a41f25706ed6e19e49d5c67a1014c24d17f29948294c7abd0b0fcea8

diff --git a/dev-lang/ruby/ruby-2.4.6.ebuild b/dev-lang/ruby/ruby-2.4.6.ebuild
new file mode 100644
index 000..04e38de79d9
--- /dev/null
+++ b/dev-lang/ruby/ruby-2.4.6.ebuild
@@ -0,0 +1,230 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools flag-o-matic multilib
+
+MY_P="${PN}-$(ver_cut 1-3)"
+S=${WORKDIR}/${MY_P}
+
+SLOT=$(ver_cut 1-2)
+MY_SUFFIX=$(ver_rs 1 '' ${SLOT})
+RUBYVERSION=${SLOT}.0
+
+DESCRIPTION="An object-oriented scripting language"
+HOMEPAGE="https://www.ruby-lang.org/;
+SRC_URI="mirror://ruby/${SLOT}/${MY_P}.tar.xz"
+
+LICENSE="|| ( Ruby-BSD BSD-2 )"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="berkdb debug doc examples gdbm ipv6 jemalloc libressl +rdoc rubytests 
socks5 +ssl static-libs tk xemacs"
+
+RDEPEND="
+   berkdb? ( sys-libs/db:= )
+   gdbm? ( sys-libs/gdbm:= )
+   jemalloc? ( dev-libs/jemalloc )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl )
+   )
+   socks5? ( >=net-proxy/dante-1.1.13 )
+   tk? (
+   dev-lang/tcl:0=[threads]
+   dev-lang/tk:0=[threads]
+   )
+   dev-libs/libyaml
+   virtual/libffi:=
+   sys-libs/readline:0=
+   sys-libs/zlib
+   >=app-eselect/eselect-ruby-20161226
+   !

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

2019-04-01 Thread Thomas Deutschmann
commit: b9c7029fe1fc5aedf934854577ec5ff40c242b11
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:30:46 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:30:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9c7029f

media-libs/sbc: x86 stable (bug #681406)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  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 c73a43cef90..5540703abc4 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: media-libs/opus/

2019-04-01 Thread Thomas Deutschmann
commit: dee712b5d49c7dda1455a857da16d19f67a3ce63
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:24:08 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:24:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dee712b5

media-libs/opus: x86 stable (bug #681402)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  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 dba607955b6..3e052eeae51 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: app-editors/nano/

2019-04-01 Thread Thomas Deutschmann
commit: 6a52cb5bd62b064b825ff08967b2cdab77db769b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:22:15 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:22:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a52cb5b

app-editors/nano: x86 stable (bug #681686)

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

 app-editors/nano/nano-3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/nano/nano-3.2.ebuild b/app-editors/nano/nano-3.2.ebuild
index d4e9fc3f76c..1e3b8fded42 100644
--- a/app-editors/nano/nano-3.2.ebuild
+++ b/app-editors/nano/nano-3.2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
 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"
+   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"



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

2019-04-01 Thread Thomas Deutschmann
commit: 28ce44ec735795ad5fd432ae3defdcd6101a28dc
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:23:38 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:23:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28ce44ec

mail-filter/opendkim: x86 stable (bug #629914)

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

 mail-filter/opendkim/opendkim-2.10.3-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/opendkim/opendkim-2.10.3-r8.ebuild 
b/mail-filter/opendkim/opendkim-2.10.3-r8.ebuild
index 153e6a57764..9d1d90805c8 100644
--- a/mail-filter/opendkim/opendkim-2.10.3-r8.ebuild
+++ b/mail-filter/opendkim/opendkim-2.10.3-r8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/opendkim/${P}.tar.gz"
 # The GPL-2 is for the init script, bug 425960.
 LICENSE="BSD GPL-2 Sendmail-Open-Source"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="+berkdb gnutls ldap libressl lmdb lua memcached opendbx poll sasl 
selinux +ssl static-libs unbound"
 
 DEPEND="|| ( mail-filter/libmilter mail-mta/sendmail )



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

2019-04-01 Thread Thomas Deutschmann
commit: a7eebbbaed751b4710c04107c67d98c13781982a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:29:17 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:29:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7eebbba

net-misc/putty: x86 stable (bug #675524)

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

 net-misc/putty/putty-0.71-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/putty/putty-0.71-r2.ebuild 
b/net-misc/putty/putty-0.71-r2.ebuild
index 3cb7948531d..c5e3f533e6f 100644
--- a/net-misc/putty/putty-0.71-r2.ebuild
+++ b/net-misc/putty/putty-0.71-r2.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://www.chiark.greenend.org.uk/~sgtatham/putty/;
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="doc +gtk gtk2 ipv6 gssapi"
 SRC_URI="
https://dev.gentoo.org/~jer/${PN}-icons.tar.bz2



[gentoo-commits] repo/gentoo:master commit in: sys-apps/osinfo-db-tools/

2019-04-01 Thread Thomas Deutschmann
commit: 6b08156c0fa1e918699e65334c9619f6b09d9fb7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:24:46 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:24:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b08156c

sys-apps/osinfo-db-tools: x86 stable (bug #682096)

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

 sys-apps/osinfo-db-tools/osinfo-db-tools-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/osinfo-db-tools/osinfo-db-tools-1.3.0.ebuild 
b/sys-apps/osinfo-db-tools/osinfo-db-tools-1.3.0.ebuild
index f778ca05df0..9a6db3d47ee 100644
--- a/sys-apps/osinfo-db-tools/osinfo-db-tools-1.3.0.ebuild
+++ b/sys-apps/osinfo-db-tools/osinfo-db-tools-1.3.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.gz;
 LICENSE="GPL-2+"
 SLOT="0"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 # Blocker on old libosinfo as osinfo-db-validate was part of it before
 RDEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: 3cdf564e1d71b5e1efbbc4e802cbb3f27b60eac6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:23:08 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:23:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cdf564e

dev-ruby/nokogiri: x86 stable (bug #682052)

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

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

diff --git a/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild 
b/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild
index d4b8da2a476..610f35ce19b 100644
--- a/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild
+++ b/dev-ruby/nokogiri/nokogiri-1.8.4.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://www.nokogiri.org/;
 LICENSE="MIT"
 SRC_URI="https://github.com/sparklemotion/nokogiri/archive/v${PV}.tar.gz -> 
${P}-git.tgz"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc ~x86 
~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 ~ppc ~ppc64 ~s390 sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmmoonclock/

2019-04-01 Thread Thomas Deutschmann
commit: 03e9d2fc2353d1053eb826e922397225c6d9f2d9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:34:14 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:34:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03e9d2fc

x11-plugins/wmmoonclock: x86 stable (bug #681122)

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

 x11-plugins/wmmoonclock/wmmoonclock-1.29.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmmoonclock/wmmoonclock-1.29.ebuild 
b/x11-plugins/wmmoonclock/wmmoonclock-1.29.ebuild
index 3eae322ded2..6fdf31a1841 100644
--- a/x11-plugins/wmmoonclock/wmmoonclock-1.29.ebuild
+++ b/x11-plugins/wmmoonclock/wmmoonclock-1.29.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="https://www.dockapps.net/download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~mips ~ppc ~sparc x86"
 IUSE=""
 
 RDEPEND="x11-libs/libX11



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

2019-04-01 Thread Thomas Deutschmann
commit: 63a3385f7126974ed34452f0db08d846dc5f0a4d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:30:16 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:30:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63a3385f

sys-fs/quota: x86 stable (bug #682058)

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

 sys-fs/quota/quota-4.04-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/quota/quota-4.04-r2.ebuild 
b/sys-fs/quota/quota-4.04-r2.ebuild
index 9fdf31ad1ae..77cc15112c0 100644
--- a/sys-fs/quota/quota-4.04-r2.ebuild
+++ b/sys-fs/quota/quota-4.04-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/linuxquota/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86"
 IUSE="ldap netlink nls rpc tcpd"
 
 RDEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: d1776a0ee02f70b4f271cb25c2abda67bbac76be
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:25:26 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:25:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1776a0e

sys-libs/libosinfo: x86 stable (bug #682096)

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

 sys-libs/libosinfo/libosinfo-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libosinfo/libosinfo-1.3.0.ebuild 
b/sys-libs/libosinfo/libosinfo-1.3.0.ebuild
index bc12c54e3ab..f954b5610c2 100644
--- a/sys-libs/libosinfo/libosinfo-1.3.0.ebuild
+++ b/sys-libs/libosinfo/libosinfo-1.3.0.ebuild
@@ -16,7 +16,7 @@ SLOT="0"
 IUSE="+introspection +vala test"
 REQUIRED_USE="vala? ( introspection )"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 # Unsure about osinfo-db-tools rdep, but at least fedora does it too
 RDEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: d730b39c3489aa544caec32ef196465809f36b27
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:32:40 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:32:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d730b39c

dev-lang/vala: x86 stable (bug #682072)

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

 dev-lang/vala/vala-0.36.18.ebuild | 2 +-
 dev-lang/vala/vala-0.40.14.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/vala/vala-0.36.18.ebuild 
b/dev-lang/vala/vala-0.36.18.ebuild
index 494a5cd76af..7b2fc2cadc4 100644
--- a/dev-lang/vala/vala-0.36.18.ebuild
+++ b/dev-lang/vala/vala-0.36.18.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 LICENSE="LGPL-2.1"
 SLOT="0.36"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="test"
 
 RDEPEND="

diff --git a/dev-lang/vala/vala-0.40.14.ebuild 
b/dev-lang/vala/vala-0.40.14.ebuild
index 44c8f8cf91a..7f9c5a03a6e 100644
--- a/dev-lang/vala/vala-0.40.14.ebuild
+++ b/dev-lang/vala/vala-0.40.14.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 LICENSE="LGPL-2.1"
 SLOT="0.40"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="test valadoc"
 
 RDEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: ea055cae96555c783ba520b2fc9e94e105db992f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:26:19 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:26:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea055cae

dev-db/phpmyadmin: x86 stable (bug #672938)

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

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

diff --git a/dev-db/phpmyadmin/phpmyadmin-4.8.5.ebuild 
b/dev-db/phpmyadmin/phpmyadmin-4.8.5.ebuild
index 597cd6f1090..53de5e6464a 100644
--- a/dev-db/phpmyadmin/phpmyadmin-4.8.5.ebuild
+++ b/dev-db/phpmyadmin/phpmyadmin-4.8.5.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://www.phpmyadmin.net/;
 SRC_URI="https://files.phpmyadmin.net/${MY_PN}/${MY_PV}/${MY_P}.tar.xz;
 
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="setup"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-ftp/proftpd/

2019-04-01 Thread Thomas Deutschmann
commit: c9d1895b314ee76d6e9f2ae43904c4bb333dd5ee
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:27:28 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:27:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9d1895b

net-ftp/proftpd: x86 stable (bug #682050)

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

 net-ftp/proftpd/proftpd-1.3.6-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/proftpd/proftpd-1.3.6-r3.ebuild 
b/net-ftp/proftpd/proftpd-1.3.6-r3.ebuild
index c1babbb4fdd..c17eab516d1 100644
--- a/net-ftp/proftpd/proftpd-1.3.6-r3.ebuild
+++ b/net-ftp/proftpd/proftpd-1.3.6-r3.ebuild
@@ -26,7 +26,7 @@ SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~x86-fbsd"
 IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse doc dso 
dynmasq exec ifsession ifversion ident ipv6
kerberos ldap libressl log_forensic memcache msg mysql ncurses nls pam 
+pcre postgres qos radius
ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota 
sqlite ssl tcpd test unique_id vroot xinetd"



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

2019-04-01 Thread Thomas Deutschmann
commit: 4519408cb0e2a2e72e1e0d4a553806a4f16e99e9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:33:16 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:33:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4519408c

dev-util/anjuta: x86 stable (bug #682072)

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

 dev-util/anjuta/anjuta-3.28.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/anjuta/anjuta-3.28.0-r1.ebuild 
b/dev-util/anjuta/anjuta-3.28.0-r1.ebuild
index dfbb2816fbc..b29f887305c 100644
--- a/dev-util/anjuta/anjuta-3.28.0-r1.ebuild
+++ b/dev-util/anjuta/anjuta-3.28.0-r1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Anjuta;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~sparc x86 ~x86-fbsd"
 
 IUSE="debug devhelp glade +introspection packagekit subversion terminal test 
vala"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmcpuload/

2019-04-01 Thread Thomas Deutschmann
commit: 6a5a48fa661a064807cd7b61ace4ec882f8a5d7e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:33:56 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:33:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a5a48fa

x11-plugins/wmcpuload: x86 stable (bug #681120)

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

 x11-plugins/wmcpuload/wmcpuload-1.1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmcpuload/wmcpuload-1.1.1.ebuild 
b/x11-plugins/wmcpuload/wmcpuload-1.1.1.ebuild
index 471d5f5d771..e42d7a424a2 100644
--- a/x11-plugins/wmcpuload/wmcpuload-1.1.1.ebuild
+++ b/x11-plugins/wmcpuload/wmcpuload-1.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="https://www.dockapps.net/download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND="x11-libs/libX11



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

2019-04-01 Thread Thomas Deutschmann
commit: cdfd667d19b0fda964c955920ee515c7c038b953
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:26:47 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:26:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdfd667d

mail-filter/procmail: x86 stable (bug #638108)

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

 mail-filter/procmail/procmail-3.22-r14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/procmail/procmail-3.22-r14.ebuild 
b/mail-filter/procmail/procmail-3.22-r14.ebuild
index d99a4ffde72..e8f32dce324 100644
--- a/mail-filter/procmail/procmail-3.22-r14.ebuild
+++ b/mail-filter/procmail/procmail-3.22-r14.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.procmail.org/${P}.tar.gz;
 
 LICENSE="|| ( Artistic GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
 IUSE="mbox selinux"
 
 DEPEND="virtual/mta"



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmcdplay/

2019-04-01 Thread Thomas Deutschmann
commit: 43bcab085376ed68321e58fa39c0747bac951b08
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:33:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:33:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43bcab08

x11-plugins/wmcdplay: x86 stable (bug #681118)

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

 x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild 
b/x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild
index e9eed5cb7b7..4751907aadb 100644
--- a/x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild
+++ b/x11-plugins/wmcdplay/wmcdplay-1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ SRC_URI="https://www.dockapps.net/download/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 
 RDEPEND="x11-libs/libX11
x11-libs/libXext



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

2019-04-01 Thread Thomas Deutschmann
commit: f941f6a96a275345ce4c92ce6a6b2f861a5d4376
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:31:27 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:31:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f941f6a9

sys-power/upower: x86 stable (bug #681620)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  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 cf6f753ed5e..8ffe85c2cd2 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: x11-plugins/wmpinboard/

2019-04-01 Thread Thomas Deutschmann
commit: 8ff62c1aefa1835faf040ea03e287a659193201c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:34:33 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:34:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ff62c1a

x11-plugins/wmpinboard: x86 stable (bug #681124)

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

 x11-plugins/wmpinboard/wmpinboard-1.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/wmpinboard/wmpinboard-1.0.1.ebuild 
b/x11-plugins/wmpinboard/wmpinboard-1.0.1.ebuild
index 9e6f56ea7cb..7e3dc396cfb 100644
--- a/x11-plugins/wmpinboard/wmpinboard-1.0.1.ebuild
+++ b/x11-plugins/wmpinboard/wmpinboard-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/bbidulock/${PN}/releases/download/${PV}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc x86"
 IUSE=""
 
 RDEPEND="x11-libs/libX11



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmweather/

2019-04-01 Thread Thomas Deutschmann
commit: 3d7d196366760fa64c08b67b823e57e6c9fc222b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:34:56 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:34:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d7d1963

x11-plugins/wmweather: x86 stable (bug #681126)

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

 x11-plugins/wmweather/wmweather-2.4.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/wmweather/wmweather-2.4.7.ebuild 
b/x11-plugins/wmweather/wmweather-2.4.7.ebuild
index dbf1f43979a..f30f0310edb 100644
--- a/x11-plugins/wmweather/wmweather-2.4.7.ebuild
+++ b/x11-plugins/wmweather/wmweather-2.4.7.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="mirror://debian/pool/main/w/${PN}/${PN}_${PV}.orig.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND="x11-libs/libX11



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

2019-04-01 Thread Thomas Deutschmann
commit: 65c6dbf42dd9d63d7c7cd66ed1287950fd670c19
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:35:26 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:35:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65c6dbf4

dev-libs/xmlsec: x86 stable (bug #681098)

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

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

diff --git a/dev-libs/xmlsec/xmlsec-1.2.27-r1.ebuild 
b/dev-libs/xmlsec/xmlsec-1.2.27-r1.ebuild
index 004152c336a..e538a9b24f5 100644
--- a/dev-libs/xmlsec/xmlsec-1.2.27-r1.ebuild
+++ b/dev-libs/xmlsec/xmlsec-1.2.27-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.aleksey.com/xmlsec/download/${PN}1-${PV}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86"
 IUSE="doc gcrypt gnutls libressl nss +openssl static-libs test"
 REQUIRED_USE="|| ( gcrypt gnutls nss openssl )
gnutls? ( gcrypt )"



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

2019-04-01 Thread Thomas Deutschmann
commit: c1a7cefa4847bed52dc2e3d1e6764a0123963748
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:31:58 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:31:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1a7cefa

dev-libs/vala-common: x86 stable (bug #682072)

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

 dev-libs/vala-common/vala-common-0.40.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/vala-common/vala-common-0.40.14.ebuild 
b/dev-libs/vala-common/vala-common-0.40.14.ebuild
index 3aed575238b..e1d98116011 100644
--- a/dev-libs/vala-common/vala-common-0.40.14.ebuild
+++ b/dev-libs/vala-common/vala-common-0.40.14.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 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 ~x64-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 ~x64-macos ~x64-solaris"
 IUSE=""
 
 # Previously ${PN} was part of dev-lang/vala



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

2019-04-01 Thread Thomas Deutschmann
commit: 26a069f60428595ce35daab73a56b789c9faca84
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:25:47 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:25:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26a069f6

www-apache/passenger: x86 stable (bug #682234)

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

 www-apache/passenger/passenger-6.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apache/passenger/passenger-6.0.2.ebuild 
b/www-apache/passenger/passenger-6.0.2.ebuild
index e9d13ce882e..46236b81998 100644
--- a/www-apache/passenger/passenger-6.0.2.ebuild
+++ b/www-apache/passenger/passenger-6.0.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://s3.amazonaws.com/phusion-passenger/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="apache2 debug"
 
 ruby_add_bdepend "dev-ruby/rake"



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

2019-04-01 Thread Thomas Deutschmann
commit: 4828778abdf72eea8b6d0af8d0ef94ad6ed70880
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:28:48 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:28:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4828778a

media-sound/pulseaudio: x86 stable (bug #682174)

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

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

diff --git a/media-sound/pulseaudio/pulseaudio-12.2-r1.ebuild 
b/media-sound/pulseaudio/pulseaudio-12.2-r1.ebuild
index daf9be7e703..0eb86b27b74 100644
--- a/media-sound/pulseaudio/pulseaudio-12.2-r1.ebuild
+++ b/media-sound/pulseaudio/pulseaudio-12.2-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://freedesktop.org/software/pulseaudio/releases/${P}.tar.xz;
 LICENSE="!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 )"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
 
 # +alsa-plugin as discussed in bug #519530
 IUSE="+alsa +alsa-plugin +asyncns bluetooth +caps dbus doc equalizer elogind 
gconf



[gentoo-commits] repo/gentoo:master commit in: x11-themes/QGnomePlatform/

2019-04-01 Thread Thomas Deutschmann
commit: 981f352cf2dc4a6eb1fb4e3e9827c4d0ca1cd4d3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Apr  2 01:29:31 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Apr  2 01:29:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=981f352c

x11-themes/QGnomePlatform: x86 stable (bug #681624)

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

 x11-themes/QGnomePlatform/QGnomePlatform-0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-themes/QGnomePlatform/QGnomePlatform-0.5.ebuild 
b/x11-themes/QGnomePlatform/QGnomePlatform-0.5.ebuild
index 20d98290226..7f590bd77d0 100644
--- a/x11-themes/QGnomePlatform/QGnomePlatform-0.5.ebuild
+++ b/x11-themes/QGnomePlatform/QGnomePlatform-0.5.ebuild
@@ -8,7 +8,7 @@ DESCRIPTION="A Qt Platform Theme aimed to accommodate GNOME 
settings"
 HOMEPAGE="https://github.com/FedoraQt/QGnomePlatform;
 SRC_URI="https://github.com/FedoraQt/QGnomePlatform/archive/${PV}/${P}.tar.gz;
 
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 LICENSE="LGPL-2.1"
 SLOT="0"
 IUSE=""



[gentoo-commits] proj/sci:master commit in: sci-libs/itk/

2019-04-01 Thread Horea Christian
commit: b78267d25570586f0a6dfd7d8d948c974c4e2846
Author: Horea Christian  yandex  com>
AuthorDate: Tue Apr  2 01:20:09 2019 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue Apr  2 01:20:09 2019 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b78267d2

sci-libs/itk: version bump 5.0_rc1

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Horea Christian  yandex.com>

 sci-libs/itk/itk-5.0_rc1.ebuild | 150 
 1 file changed, 150 insertions(+)

diff --git a/sci-libs/itk/itk-5.0_rc1.ebuild b/sci-libs/itk/itk-5.0_rc1.ebuild
new file mode 100644
index 0..f6433e551
--- /dev/null
+++ b/sci-libs/itk/itk-5.0_rc1.ebuild
@@ -0,0 +1,150 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit eutils toolchain-funcs cmake-utils python-single-r1
+
+MY_PV="5.0rc01"
+
+DESCRIPTION="NLM Insight Segmentation and Registration Toolkit"
+HOMEPAGE="http://www.itk.org;
+SRC_URI="
+   
https://github.com/InsightSoftwareConsortium/ITK/archive/v${MY_PV}.tar.gz
+   test? ( 
https://github.com/InsightSoftwareConsortium/ITK/releases/download/v5.0rc01/InsightData-${MY_PV}.tar.gz
 )
+   "
+RESTRICT="primaryuri"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug doc examples fftw python review test vtkglue"
+
+RDEPEND="
+   dev-libs/double-conversion:0=
+   media-libs/openjpeg:2
+   media-libs/libpng:0=
+   media-libs/tiff:0=
+   sci-libs/dcmtk:0=
+   sci-libs/hdf5:0=[cxx]
+   sys-libs/zlib:0=
+   virtual/jpeg:0=
+   fftw? ( sci-libs/fftw:3.0= )
+   vtkglue? ( sci-libs/vtk:0=[python?] )
+"
+DEPEND="${RDEPEND}
+   python? (
+   ${PYTHON_DEPS}
+   >=dev-lang/swig-2.0:0
+   >=dev-cpp/gccxml-0.9.0_pre20120309
+   )
+   doc? ( app-doc/doxygen )
+"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+S="${WORKDIR}/ITK-${MY_PV}"
+
+pkg_pretend() {
+   if [[ -z ${ITK_COMPUTER_MEMORY_SIZE} ]]; then
+   elog "To tune ITK to make the best use of working memory you 
can set"
+   elog "ITK_COMPUTER_MEMORY_SIZE=XX"
+   elog "in make.conf, default is 1 (unit is GB)"
+   fi
+   if use python && [[ -z ${ITK_WRAP_DIMS} ]]; then
+   elog "For Python language bindings, you can define the 
dimensions"
+   elog "you want to create bindings for by setting"
+   elog "ITK_WRAP_DIMS=X;Y;Z..."
+   elog "in make.conf, default is 2;3 for 2D and 3D data"
+   fi
+}
+
+src_prepare() {
+   sed -i -e "s/find_package(OpenJPEG 2.0.0/find_package(OpenJPEG/g"\
+   Modules/ThirdParty/GDCM/src/gdcm/CMakeLists.txt
+   default
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=ON
+   -DITK_USE_SYSTEM_DCMTK=ON
+   -DGDCM_USE_SYSTEM_OPENJPEG=ON
+   -DITK_USE_SYSTEM_DOUBLECONVERSION=ON
+   -DITK_USE_SYSTEM_CASTXML=ON
+   -DITK_USE_SYSTEM_HDF5=ON
+   -DITK_USE_SYSTEM_JPEG=ON
+   -DITK_USE_SYSTEM_PNG=ON
+   -DITK_USE_SYSTEM_SWIG=ON
+   -DITK_USE_SYSTEM_TIFF=ON
+   -DITK_USE_SYSTEM_ZLIB=ON
+   -DITK_USE_KWSTYLE=OFF
+   -DITK_BUILD_DEFAULT_MODULES=ON
+   -DITK_COMPUTER_MEMORY_SIZE="${ITK_COMPUTER_MEMORY_SIZE:-1}"
+   -DWRAP_ITK_JAVA=OFF
+   -DWRAP_ITK_TCL=OFF
+   
-Ddouble-conversion_INCLUDE_DIRS="${EPREFIX}/usr/include/double-conversion"
+   
-DExternalData_OBJECT_STORES="${WORKDIR}/InsightToolkit-${MY_PV}/.ExternalData"
+   -DBUILD_TESTING="$(usex test ON OFF)"
+   -DBUILD_EXAMPLES="$(usex examples ON OFF)"
+   -DITK_USE_REVIEW="$(usex review ON OFF)"
+   -DITK_INSTALL_LIBRARY_DIR=$(get_libdir)
+   )
+   if use fftw; then
+   mycmakeargs+=(
+   -DUSE_FFTWD=ON
+   -DUSE_FFTWF=ON
+   -DUSE_SYSTEM_FFTW=ON
+   -DITK_WRAP_double=ON
+   -DITK_WRAP_vector_double=ON
+   -DITK_WRAP_covariant_vector_double=ON
+   -DITK_WRAP_complex_double=ON
+   )
+   fi
+   if use vtkglue; then
+   mycmakeargs+=(
+   -DModule_ITKVtkGlue=ON
+   )
+   fi
+   if use python; then
+   mycmakeargs+=(
+   -DITK_WRAP_PYTHON=ON
+   -DITK_WRAP_DIMS="${ITK_WRAP_DIMS:-2;3}"
+   )
+   else
+   mycmakeargs+=(
+   -DITK_WRAP_PYTHON=OFF
+   )
+   fi
+   cmake-utils_src_configure
+}
+
+src_install() {
+   

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

2019-04-01 Thread Jeroen Roovers
commit: df515ffd776e0e543f5a2388c13d0a607966a5e1
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Apr  1 22:51:16 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Apr  1 22:51:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df515ffd

net-misc/youtube-dl: Version 2019.04.01

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

 net-misc/youtube-dl/Manifest |  1 +
 net-misc/youtube-dl/youtube-dl-2019.04.01.ebuild | 68 
 2 files changed, 69 insertions(+)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index fd06614573c..f937539826e 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -1 +1,2 @@
 DIST youtube-dl-2019.03.18.tar.gz 3122206 BLAKE2B 
8a94cf92ebce960fe9b074d5cc23047fbf326fe4511c55f0a1c4843386e4e3c65da4f89a2401243dbaf73882f68aadc768e653e8ed9e5c91244172c24e55d8bb
 SHA512 
0a683631da7d67aa2f23eb6326664e483b71ef776b3ff63c732bdef54f58c7f615733023f8c4b948078f59d136414bd059bdc753d89aec630126bbe826db58ce
+DIST youtube-dl-2019.04.01.tar.gz 3129663 BLAKE2B 
0ab60ad7acad323cfc2f62a5066e4c58405302813abf21ff020a94ca23a72995930e76cad9f91cea28db6014a42a7ed8c9380db8dfe8dde846c8d951997c2bc7
 SHA512 
656fb3bc88648db72a88657d0b6fa104bb463ee8f5eb1cdc969c5869c83ab83cf192883912e091e98abd308151a6e0ba12ad0c9b356988744041850bc6b31cef

diff --git a/net-misc/youtube-dl/youtube-dl-2019.04.01.ebuild 
b/net-misc/youtube-dl/youtube-dl-2019.04.01.ebuild
new file mode 100644
index 000..8249fc9c0e1
--- /dev/null
+++ b/net-misc/youtube-dl/youtube-dl-2019.04.01.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6,3_7})
+inherit bash-completion-r1 distutils-r1 readme.gentoo-r1
+
+DESCRIPTION="Download videos from YouTube.com (and more sites...)"
+HOMEPAGE="https://rg3.github.com/youtube-dl/;
+SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz;
+LICENSE="public-domain"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+RESTRICT="test"
+SLOT="0"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+RDEPEND="
+   ${DEPEND}
+   || (
+   dev-python/pycryptodome[${PYTHON_USEDEP}]
+   dev-python/pycrypto[${PYTHON_USEDEP}]
+   )
+"
+S="${WORKDIR}/${PN}"
+
+src_compile() {
+   distutils-r1_src_compile
+}
+
+python_install_all() {
+   dodoc README.txt
+   doman ${PN}.1
+
+   newbashcomp ${PN}.bash-completion ${PN}
+
+   insinto /usr/share/zsh/site-functions
+   newins ${PN}.zsh _${PN}
+
+   insinto /usr/share/fish/vendor_completions.d
+   doins ${PN}.fish
+
+   distutils-r1_python_install_all
+
+   rm -r "${ED}"/usr/etc || die
+   rm -r "${ED}"/usr/share/doc/youtube_dl || die
+}
+
+pkg_postinst() {
+   elog "${PN}(1) / https://bugs.gentoo.org/355661 /"
+   elog "https://github.com/rg3/${PN}/blob/master/README.md#faq :"
+   elog
+   elog "${PN} works fine on its own on most sites. However, if you want"
+   elog "to convert video/audio, you'll need avconf (media-video/libav) or"
+   elog "ffmpeg (media-video/ffmpeg). On some sites - most notably YouTube 
-"
+   elog "videos can be retrieved in a higher quality format without sound."
+   elog "${PN} will detect whether avconv/ffmpeg is present and"
+   elog "automatically pick the best option."
+   elog
+   elog "Videos or video formats streamed via RTMP protocol can only be"
+   elog "downloaded when rtmpdump (media-video/rtmpdump) is installed."
+   elog "Downloading MMS and RTSP videos requires either mplayer"
+   elog "(media-video/mplayer) or mpv (media-video/mpv) to be installed."
+   elog
+   elog "If you want ${PN} to embed thumbnails from the metadata into the"
+   elog "resulting MP4 files, consider installing 
media-video/atomicparsley"
+}



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

2019-04-01 Thread Sergei Trofimovich
commit: 0c91f38307b957f591c8467f25b2dfa292d79ee9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Apr  1 20:15:08 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr  1 22:43:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c91f383

dev-lang/vala: stable 0.40.14 for sparc, bug #682072

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

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

diff --git a/dev-lang/vala/vala-0.40.14.ebuild 
b/dev-lang/vala/vala-0.40.14.ebuild
index de919cffbc2..44c8f8cf91a 100644
--- a/dev-lang/vala/vala-0.40.14.ebuild
+++ b/dev-lang/vala/vala-0.40.14.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 LICENSE="LGPL-2.1"
 SLOT="0.40"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="test valadoc"
 
 RDEPEND="



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

2019-04-01 Thread Sergei Trofimovich
commit: 6d70f901b0369c58de4542823d31a5f126498023
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Apr  1 20:14:06 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr  1 22:43:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d70f901

dev-libs/vala-common: stable 0.40.14 for sparc, bug #682072

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

 dev-libs/vala-common/vala-common-0.40.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/vala-common/vala-common-0.40.14.ebuild 
b/dev-libs/vala-common/vala-common-0.40.14.ebuild
index f9ac96706cc..3aed575238b 100644
--- a/dev-libs/vala-common/vala-common-0.40.14.ebuild
+++ b/dev-libs/vala-common/vala-common-0.40.14.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 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 ~x64-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 ~x64-macos 
~x64-solaris"
 IUSE=""
 
 # Previously ${PN} was part of dev-lang/vala



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

2019-04-01 Thread Sergei Trofimovich
commit: 16e9e1c12d8a70d65309b2a9e5ddab75c90f7e2e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Apr  1 20:13:11 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr  1 22:43:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16e9e1c1

mail-filter/maildrop: stable 3.0.0 for sparc, bug #679108

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

 mail-filter/maildrop/maildrop-3.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/maildrop/maildrop-3.0.0.ebuild 
b/mail-filter/maildrop/maildrop-3.0.0.ebuild
index abc960afb01..235198c8ec8 100644
--- a/mail-filter/maildrop/maildrop-3.0.0.ebuild
+++ b/mail-filter/maildrop/maildrop-3.0.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://www.courier-mta.org/maildrop/;
 
 LICENSE="GPL-3"
 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="berkdb debug dovecot fam gdbm ldap mysql postgres static-libs authlib 
+tools trashquota"
 
 CDEPEND="!mail-mta/courier



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

2019-04-01 Thread Sergei Trofimovich
commit: 9e2b4419101f3d3cd2b3dec40db132a6bf71b527
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Apr  1 20:17:12 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr  1 22:43:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e2b4419

sys-fs/quota: stable 4.04-r2 for sparc, bug #682058

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

 sys-fs/quota/quota-4.04-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/quota/quota-4.04-r2.ebuild 
b/sys-fs/quota/quota-4.04-r2.ebuild
index 083be06559b..9fdf31ad1ae 100644
--- a/sys-fs/quota/quota-4.04-r2.ebuild
+++ b/sys-fs/quota/quota-4.04-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/linuxquota/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86"
 IUSE="ldap netlink nls rpc tcpd"
 
 RDEPEND="



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

2019-04-01 Thread Sergei Trofimovich
commit: 48b41663e86fba7a19dab2421d01ebc76a45345a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Apr  1 20:16:11 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Apr  1 22:43:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48b41663

dev-lang/vala: stable 0.36.18 for sparc, bug #682072

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

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

diff --git a/dev-lang/vala/vala-0.36.18.ebuild 
b/dev-lang/vala/vala-0.36.18.ebuild
index fa52c9c216e..494a5cd76af 100644
--- a/dev-lang/vala/vala-0.36.18.ebuild
+++ b/dev-lang/vala/vala-0.36.18.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala;
 
 LICENSE="LGPL-2.1"
 SLOT="0.36"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: mail-filter/postfwd/files/, mail-filter/postfwd/

2019-04-01 Thread Marc Schiffbauer
commit: 9cbf9208b57473f897dcf82dffdd22144e35d8d1
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Mar 28 08:51:21 2019 +
Commit: Marc Schiffbauer  gentoo  org>
CommitDate: Mon Apr  1 22:05:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cbf9208

mail-filter/postfwd: improve ebuild

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Marc Schiffbauer  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/11521

 mail-filter/postfwd/files/postfwd.init.3-r1 | 11 
 mail-filter/postfwd/postfwd-2.00-r1.ebuild  | 87 +
 2 files changed, 98 insertions(+)

diff --git a/mail-filter/postfwd/files/postfwd.init.3-r1 
b/mail-filter/postfwd/files/postfwd.init.3-r1
new file mode 100644
index 000..496fea75720
--- /dev/null
+++ b/mail-filter/postfwd/files/postfwd.init.3-r1
@@ -0,0 +1,11 @@
+#!/sbin/openrc-run
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+command="/usr/sbin/postfwd3"
+command_args="--nodaemon --file ${POSTFWD_CONFIG} 
--interface=${POSTFWD_LISTEN} \
+   --port=${POSTFWD_PORT} ${POSTFWD_OPTS}"
+command_background=true
+command_user="${POSTFWD_USER}:${POSTFWD_GROUP}"
+pidfile="/run/${RC_SVCNAME}.pid"
+required_files="${POSTFWD_CONFIG}"

diff --git a/mail-filter/postfwd/postfwd-2.00-r1.ebuild 
b/mail-filter/postfwd/postfwd-2.00-r1.ebuild
new file mode 100644
index 000..df52b4a6f05
--- /dev/null
+++ b/mail-filter/postfwd/postfwd-2.00-r1.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd user
+
+DESCRIPTION="Versatile Postfix policy server with a flexible ruleset based 
configuration"
+HOMEPAGE="https://www.postfwd.org/;
+SRC_URI="https://www.postfwd.org/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND=""
+RDEPEND=">=dev-lang/perl-5.16.3
+   dev-perl/Net-CIDR-Lite
+   dev-perl/Net-DNS
+   dev-perl/Net-Server
+   dev-perl/NetAddr-IP
+   virtual/perl-Digest-MD5
+   virtual/perl-Storable
+   virtual/perl-Sys-Syslog
+   virtual/perl-Time-HiRes
+"
+
+S=${WORKDIR}/${PN}
+
+pkg_setup() {
+   enewgroup postfwd
+   enewuser postfwd -1 -1 -1 postfwd
+}
+
+src_install() {
+   local BIN="postfwd3"
+   # program
+   dosbin sbin/${BIN}
+
+   # man pages and documentation
+   doman man/man8/${BIN}.8
+   dodoc doc/{${BIN}.CHANGELOG,${BIN}.txt}
+
+   # example configuration
+   dodoc etc/${PN}.cf.sample
+
+   # plugins and tools
+   dodoc -r plugins tools
+
+   # start scripts script and respective configuration file
+   newinitd "${FILESDIR}"/${PN}.init.3-r1 ${PN}
+   newconfd "${FILESDIR}"/${PN}.conf.3 ${PN}
+   systemd_newunit "${FILESDIR}"/${PN}.service.3 ${PN}.service
+}
+
+pkg_postinst() {
+   einfo
+   einfo "${PN} has no default configuration for safety reasons. Every"
+   einfo "mail system is different, so you should craft a set of rules"
+   einfo "that is suitable for your environment and save it to:"
+   einfo "   ${EROOT}/etc/postfwd.cf"
+   einfo "You can find a sample configuration in:"
+   einfo "   ${EROOT}/usr/share/doc/${PF}"
+   einfo
+   einfo "If you want ${PN} to start on system boot, you have to add it 
your"
+   einfo "default run level if using OpenRC:"
+   einfo "   # rc-update add postfwd default"
+   einfo "Also remember to edit ${EROOT}/etc/conf.d/${PN} to your liking."
+   einfo
+   einfo "Or - if you are using systemd - enable the service:"
+   einfo "   # systemctl enable postfwd"
+   einfo
+   einfo "A plugins sample folder has been placed under:"
+   einfo
+   einfo "   ${EROOT}/usr/share/doc/${PF}/plugins"
+   einfo
+   einfo "You can find additional tools for testing ${PN} in:"
+   einfo "   ${EROOT}/usr/share/doc/${PF}/tools"
+
+   ewarn
+   ewarn "Please read the documentation carefully and properly test new"
+   ewarn "rulesets before putting them into production use. Otherwise you"
+   ewarn "risk accidental mail loss or worse."
+   ewarn
+   ewarn "Visit https://www.postfwd.org/ for more information."
+   ewarn
+}



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

2019-04-01 Thread Andreas Sturmlechner
commit: 29a3948ef6f55a500b4549a276fe5ca7c28f1173
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  1 21:36:41 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 21:45:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a3948e

sys-auth/elogind: Drop 239.3

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

 sys-auth/elogind/Manifest |   1 -
 sys-auth/elogind/elogind-239.3.ebuild | 129 --
 2 files changed, 130 deletions(-)

diff --git a/sys-auth/elogind/Manifest b/sys-auth/elogind/Manifest
index 664ce742a19..1d87a8ac2d7 100644
--- a/sys-auth/elogind/Manifest
+++ b/sys-auth/elogind/Manifest
@@ -1,3 +1,2 @@
-DIST elogind-239.3.tar.gz 1171080 BLAKE2B 
95d158a861641415f2c6ea3648bafd32ee3da80b0258e33fb7b88cf834f42c4d76b634af055f81dfba7c6477423edf73ad7c0d79e5e3608938e90a713bdff00e
 SHA512 
61399f82d6a93d77e0984dc67b9c7ebdda27ba2254810be9725a09f91fde41c66adb53a5fe7989f53d6b156b70f147471c89fa64a432bccc482e8057a0cddf84
 DIST elogind-239.4.tar.gz 1183999 BLAKE2B 
3a0aa216ee565ae8f3311b16af9752a99519254ac8737de2a44821e95d05b3e2d8b82af3d397367e8804d7bc45cb942859516f195848ba0317aa73891d77903b
 SHA512 
84e9765d7c3039478b06a683870b37ec718724f1185b56c1b74885133283ad1678f3ca8a73510cb4b0777d099c54f59e927caaae7ae988abda803150b84cf8fc
 DIST elogind-241.2.tar.gz 1399508 BLAKE2B 
4f4104785c629b1d7378439ab03e2bead800bbe2403120b9337e747aee5b5d0486cc893b49ddc972c833b2201c7eeef3b60e34b4f5c9cf1d6a89e9a487888a8a
 SHA512 
7f4a822682856547d430f893bb55a9bf5fc2680aff1b31bb3f120f92ccb1d69b848cbba7f59edd3376d083b641d570bf9c56e62a789090e76e4b37dfb375995a

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

[gentoo-commits] repo/gentoo:master commit in: dev-java/mina-core/

2019-04-01 Thread Patrice Clement
commit: 73e7fadd5a57c88d82f88725d54362c158059a5b
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Apr  1 21:30:13 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Apr  1 21:30:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73e7fadd

dev-java/mina-core: stable for amd64+x86.

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

 dev-java/mina-core/mina-core-2.0.7-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-java/mina-core/mina-core-2.0.7-r1.ebuild 
b/dev-java/mina-core/mina-core-2.0.7-r1.ebuild
index abe95666b3f..fc2489c9a9d 100644
--- a/dev-java/mina-core/mina-core-2.0.7-r1.ebuild
+++ b/dev-java/mina-core/mina-core-2.0.7-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ MY_P="apache-mina-${PV}"
 DESCRIPTION="Apache MINA Project"
 HOMEPAGE="https://mina.apache.org/;
 SRC_URI="mirror://apache/mina/mina/${PV}/${MY_P}-src.tar.bz2 -> ${P}.tar.bz2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 LICENSE="Apache-2.0"
 SLOT="0"
 



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

2019-04-01 Thread Patrice Clement
commit: 64468f5903538cf7af5db7cdd97028dd9acf9655
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Apr  1 20:24:38 2019 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Apr  1 21:27:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64468f59

net-irc/irssistats: clean up old.

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

 net-irc/irssistats/irssistats-0.75.ebuild | 30 --
 1 file changed, 30 deletions(-)

diff --git a/net-irc/irssistats/irssistats-0.75.ebuild 
b/net-irc/irssistats/irssistats-0.75.ebuild
deleted file mode 100644
index 0491ea7ebbd..000
--- a/net-irc/irssistats/irssistats-0.75.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit toolchain-funcs
-
-DESCRIPTION="Generates HTML IRC stats based on irssi logs"
-HOMEPAGE="http://royale.zerezo.com/irssistats/;
-SRC_URI="http://royale.zerezo.com/irssistats/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-
-src_compile() {
-   $(tc-getCC) -o irssistats ${CFLAGS} ${LDFLAGS} irssistats.c || die 
"compile failed"
-}
-
-src_install() {
-   emake \
-   PRE="${D}"/usr \
-   DOC="${D}"/usr/share/doc/${PF} \
-   install \
-   || die "make install failed"
-}



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

2019-04-01 Thread William Hubbs
commit: 2bc734b57f315915314865817598b717633e7785
Author: William Hubbs  sony  com>
AuthorDate: Mon Apr  1 21:22:03 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Apr  1 21:23:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bc734b5

net-analyzer/opsgenie-lamp: Command line client for the opsgenie service

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

 net-analyzer/opsgenie-lamp/Manifest|  2 +
 net-analyzer/opsgenie-lamp/metadata.xml|  8 
 .../opsgenie-lamp-2.5.1_p20181102.ebuild   | 48 ++
 3 files changed, 58 insertions(+)

diff --git a/net-analyzer/opsgenie-lamp/Manifest 
b/net-analyzer/opsgenie-lamp/Manifest
new file mode 100644
index 000..b0214baa109
--- /dev/null
+++ b/net-analyzer/opsgenie-lamp/Manifest
@@ -0,0 +1,2 @@
+DIST opsgenie-lamp-2.5.1_p20181102-vendor.tar.gz 204755 BLAKE2B 
65c92b5bbbdec8b4bdccad884435273a6aec51c472437de92613dcda76c3a6cff1b84dfe5028713a353b861ff868cb8377e97c9322423b7a887a121a92c9515f
 SHA512 
08f86e1520f2ca6d5208994c5836d511bea13d9e8ccf707a121956e23ff1c6f411d730ab6445ac30158e90d76efcdbbf65a19cef39641493c76b836980b6792a
+DIST opsgenie-lamp-2.5.1_p20181102.tar.gz 19259 BLAKE2B 
1a4f54b817b0210654f42e4ea1eb9dc29e0416ab37a90ca00ba86788cdcde6a8a7330bd095c238268b7e00525da33a67c4fa0aa68602442887dc81091f802fd2
 SHA512 
9a2c5d23b530a5c2df99f1b63afcb47d8fb3cdf9a45142f82d52df5c9dd570bad444735d851af3fe03306179076e78ece3be9b1a6b63da04740d0a02752db67a

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

diff --git a/net-analyzer/opsgenie-lamp/opsgenie-lamp-2.5.1_p20181102.ebuild 
b/net-analyzer/opsgenie-lamp/opsgenie-lamp-2.5.1_p20181102.ebuild
new file mode 100644
index 000..8aba54f81df
--- /dev/null
+++ b/net-analyzer/opsgenie-lamp/opsgenie-lamp-2.5.1_p20181102.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit vcs-snapshot
+
+DESCRIPTION="command line client for the opsgenie service"
+HOMEPAGE="https://docs.opsgenie.com/docs/lamp-command-line-interface-for-opsgenie;
+HASH=062016b
+SRC_URI="https://github.com/opsgenie/${PN}/archive/${HASH}.tar.gz -> 
${P}.tar.gz
+   https://dev.gentoo.org/~williamh/dist/${P}-vendor.tar.gz;
+
+# I followed the following steps to create the vendor tarball:
+#
+# git clone https://github.com/opsgenie/opsgenie-lamp
+# cd opsgenie-lamp
+# go mod init # creates go.mod and go.sum
+# go mod vendor # updates go.mod/sum and adds vendor directory
+# mv -i go.mod go.sum vendor
+# tar cf ${P}.tar vendor
+# gzip ${P}.tar
+#
+# Upstream doesn't tag releases, but the most recent version number is
+# in the  sources, see the lampVersion variable.
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="dev-lang/go:="
+
+RESTRICT="strip"
+
+src_prepare() {
+   mv ../${P}-vendor vendor || die "mv failed"
+   mv vendor/go.mod vendor/go.sum . || die "mv failed"
+   default
+}
+
+src_compile() {
+   GOCACHE="${T}"/go-cache go build -mod vendor || die "build failed"
+}
+
+src_install() {
+   newbin ${PN} lamp
+dodoc conf/lamp.conf
+   einstalldocs
+}



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

2019-04-01 Thread Thomas Deutschmann
commit: 892df27b8b788df985876ab4335263abb7d5e8e0
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 21:01:51 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 21:02:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=892df27b

app-misc/graphlcd-base: fix media-gfx/imagemagick dependency

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

 app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild 
b/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild
index 1273e920f09..d2bc11532e9 100644
--- a/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild
+++ b/app-misc/graphlcd-base/graphlcd-base-1.0.1.ebuild
@@ -20,7 +20,7 @@ RDEPEND="
fontconfig? ( media-libs/fontconfig:1.0= )
g15? ( app-misc/g15daemon )
graphicsmagick? ( media-gfx/graphicsmagick:0/1.3 )
-   imagemagick? ( media-gfx/imagemagick:0/6.9.10.28 )
+   imagemagick? ( 

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

2019-04-01 Thread Andreas Sturmlechner
commit: 105a994e4334bb8ed9c0fb43e53820e802a96337
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  1 20:35:14 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=105a994e

dev-util/kdevelop: Drop 5.2.4

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

 dev-util/kdevelop/Manifest  |   1 -
 dev-util/kdevelop/kdevelop-5.2.4.ebuild | 130 
 2 files changed, 131 deletions(-)

diff --git a/dev-util/kdevelop/Manifest b/dev-util/kdevelop/Manifest
index 83a50735e35..68d95547ec6 100644
--- a/dev-util/kdevelop/Manifest
+++ b/dev-util/kdevelop/Manifest
@@ -1,2 +1 @@
-DIST kdevelop-5.2.4.tar.xz 6647172 BLAKE2B 
c3dc301cf16bdef95000aa6cb3ebe615054f49ad29bc67870c31d329cf7bd4df81dad330eb26dd28c19627b2040f62522d755afa4450bb125872350d1f8039e1
 SHA512 
1c64b4f56452e8c926c5bcea5a9d8368fa62926d1ec507d289d8cb47275d478898d56fdf083fc24e291aaf4738cc5b7ddfd239e6993848e862bc4d83e270558b
 DIST kdevelop-5.3.2.tar.xz 6851944 BLAKE2B 
b918cd0cb9b915227a442641a110db27387fd2e946c0411e40206a4a68990a9268a6c47c7f1da8a8f8a5c2690a1577c75f353d69ddfeed419e2c561aac4a
 SHA512 
f0a8354a596a13dab0c5560d8308097918f5540b02d9a66a63155af00aa024aae9c01b455290ecafe705784a9c25afd24f7d936d1f817af1fb5b52d96e6dc596

diff --git a/dev-util/kdevelop/kdevelop-5.2.4.ebuild 
b/dev-util/kdevelop/kdevelop-5.2.4.ebuild
deleted file mode 100644
index f1dff60ee6b..000
--- a/dev-util/kdevelop/kdevelop-5.2.4.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_BRANCH="5.2"
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="true"
-VIRTUALDBUS_TEST="true"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Integrated Development Environment, supporting KF5/Qt, C/C++ and 
much more"
-LICENSE="GPL-2 LGPL-2"
-IUSE="cvs +gdbui hex +plasma +qmake reviewboard subversion webkit"
-[[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="amd64 x86"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kbookmarks)
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kcodecs)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kdeclarative)
-   $(add_frameworks_dep kguiaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemmodels)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep ktexteditor)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep sonnet)
-   $(add_frameworks_dep threadweaver)
-   $(add_kdeapps_dep libkomparediff2)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtdeclarative 'widgets')
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qthelp)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qttest)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   dev-libs/grantlee:5
-   >=sys-devel/clang-3.8.0:=
-   x11-misc/shared-mime-info
-   gdbui? ( $(add_plasma_dep libksysguard) )
-   hex? ( app-editors/okteta:5 )
-   plasma? (
-   $(add_frameworks_dep krunner)
-   $(add_frameworks_dep plasma)
-   )
-   qmake? ( dev-util/kdevelop-pg-qt:5 )
-   reviewboard? ( $(add_frameworks_dep purpose) )
-   subversion? (
-   dev-libs/apr:1
-   dev-libs/apr-util:1
-   dev-vcs/subversion
-   )
-   webkit? ( $(add_qt_dep qtwebkit) )
-   !webkit? ( $(add_qt_dep qtwebengine 'widgets') )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-libs/boost
-   $(add_qt_dep qtconcurrent)
-"
-RDEPEND="${COMMON_DEPEND}
-   $(add_kdeapps_dep kapptemplate)
-   $(add_kdeapps_dep kio-extras)
-   dev-util/ninja
-   >=sys-devel/gdb-7.0[python]
-   cvs? ( dev-vcs/cvs )
-   reviewboard? ( $(add_kdeapps_dep ktp-accounts-kcm) )
-   !dev-util/kdevelop:4
-   !dev-util/kdevelop-clang
-   !dev-util/kdevelop-cppcheck
-   !dev-util/kdevelop-qmake
-   !dev-util/kdevelop-qmljs
-   !dev-util/kdevplatform
-"
-
-RESTRICT+=" test"
-# see bug 366471
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_cvs=$(usex cvs)
-   $(cmake-utils_use_find_package gdbui 

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

2019-04-01 Thread Andreas Sturmlechner
commit: 62858f9e87b16629cad1b048482d03cf643a4805
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 17 16:34:40 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62858f9e

kde5.eclass: Drop obsolete KDEBASE=kdevelop source dir switch

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

 eclass/kde5.eclass | 8 
 1 file changed, 8 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 346aad5d785..9c00bd19d59 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -270,14 +270,6 @@ if [[ -n ${KMNAME} && ${KMNAME} != ${PN} && 
${KDE_BUILD_TYPE} = release ]]; then
S=${WORKDIR}/${KMNAME}-${PV}
 fi
 
-if [[ -n ${KDEBASE} && ${KDEBASE} = kdevelop && ${KDE_BUILD_TYPE} = release 
]]; then
-   if [[ -n ${KMNAME} ]]; then
-   S=${WORKDIR}/${KMNAME}-${PV}
-   else
-   S=${WORKDIR}/${P}
-   fi
-fi
-
 _kde_is_unreleased() {
local pair
for pair in "${KDE_UNRELEASED[@]}" ; do



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

2019-04-01 Thread Andreas Sturmlechner
commit: 363f1ff00155fed8bdfef31b003417cf4da7054e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 17 15:31:44 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=363f1ff0

kde5.eclass: Drop obsolete KMNAME=kdepim HOMEPAGE switch

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

 eclass/kde5.eclass | 2 --
 1 file changed, 2 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index d7b5eb7f15e..68bd5968cba 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -161,8 +161,6 @@ KDE_UNRELEASED=( )
 
 if [[ ${KDEBASE} = kdevelop ]]; then
HOMEPAGE="https://www.kdevelop.org/;
-elif [[ ${KMNAME} = kdepim ]]; then
-   HOMEPAGE="https://kde.org/applications/office/kontact/;
 else
HOMEPAGE="https://kde.org/;
 fi



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

2019-04-01 Thread Andreas Sturmlechner
commit: a1c459406fafbb7a238fe5d9a96c13bedbae12ab
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 17 15:29:22 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1c45940

kde5.eclass: Drop obsolete kdevelop-pg-qt SRC_URI switch

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

 eclass/kde5.eclass | 12 ++--
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index be98ca0d6ae..f5b2178ba53 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -344,22 +344,14 @@ _calculate_src_uri() {
esac
 
if [[ -z ${SRC_URI} && -n ${KDEBASE} ]] ; then
-   local _kdebase
-   case ${PN} in
-   kdevelop-pg-qt)
-   _kdebase=${PN} ;;
-   *)
-   _kdebase=${KDEBASE} ;;
-   esac
case ${PV} in
*.*.[6-9]? )
-   
SRC_URI="mirror://kde/unstable/${_kdebase}/${PV}/src/${_kmname}-${PV}.tar.xz"
+   
SRC_URI="mirror://kde/unstable/${KDEBASE}/${PV}/src/${_kmname}-${PV}.tar.xz"
RESTRICT+=" mirror"
;;
*)
-   
SRC_URI="mirror://kde/stable/${_kdebase}/${PV}/src/${_kmname}-${PV}.tar.xz" ;;
+   
SRC_URI="mirror://kde/stable/${KDEBASE}/${PV}/src/${_kmname}-${PV}.tar.xz" ;;
esac
-   unset _kdebase
fi
 
if _kde_is_unreleased ; then



[gentoo-commits] repo/gentoo:master commit in: dev-util/kdevelop-pg-qt/

2019-04-01 Thread Andreas Sturmlechner
commit: 994bdb4b6c61bd7f8e46406ebbcf1712699727e2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  1 20:34:33 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=994bdb4b

dev-util/kdevelop-pg-qt: Drop 2.1.0 (r0)

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

 .../kdevelop-pg-qt/kdevelop-pg-qt-2.1.0.ebuild | 22 --
 1 file changed, 22 deletions(-)

diff --git a/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-2.1.0.ebuild 
b/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-2.1.0.ebuild
deleted file mode 100644
index ee86aa1a418..000
--- a/dev-util/kdevelop-pg-qt/kdevelop-pg-qt-2.1.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDEBASE="kdevelop"
-KDE_TEST="forceoptional"
-inherit kde5
-
-DESCRIPTION="LL(1) parser generator used mainly by KDevelop language plugins"
-SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-LICENSE="LGPL-2+ LGPL-2.1+"
-IUSE=""
-[[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="amd64 x86"
-
-DEPEND="
-   sys-devel/bison
-   sys-devel/flex
-"
-RDEPEND="
-   !dev-util/kdevelop-pg-qt:4
-"



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

2019-04-01 Thread Andreas Sturmlechner
commit: 6118d632cf7185d801f503b665a6cd4905756b52
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 17 16:03:55 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6118d632

kde5.eclass: Drop obsolete KDEBASE=kdevelop HOMEPAGE switch

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

 eclass/kde5.eclass | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 68bd5968cba..be98ca0d6ae 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -159,12 +159,7 @@ fi
 # a proper error message via pkg_nofetch.
 KDE_UNRELEASED=( )
 
-if [[ ${KDEBASE} = kdevelop ]]; then
-   HOMEPAGE="https://www.kdevelop.org/;
-else
-   HOMEPAGE="https://kde.org/;
-fi
-
+HOMEPAGE="https://kde.org/;
 LICENSE="GPL-2"
 
 SLOT=5



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

2019-04-01 Thread Andreas Sturmlechner
commit: c72f9feb4e5370020ecd29314d6efaa5df097124
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 17 16:23:59 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c72f9feb

kde5.eclass: Drop KDEBASE=kdevelop from SRC_URI assembly

Only 3 packages are using it at this point.

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

 eclass/kde5.eclass | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index f5b2178ba53..346aad5d785 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -343,14 +343,14 @@ _calculate_src_uri() {
;;
esac
 
-   if [[ -z ${SRC_URI} && -n ${KDEBASE} ]] ; then
+   if [[ ${PN} = kdevelop* ]]; then
case ${PV} in
*.*.[6-9]? )
-   
SRC_URI="mirror://kde/unstable/${KDEBASE}/${PV}/src/${_kmname}-${PV}.tar.xz"
+   
SRC_URI="mirror://kde/unstable/kdevelop/${PV}/src/${_kmname}-${PV}.tar.xz"
RESTRICT+=" mirror"
;;
*)
-   
SRC_URI="mirror://kde/stable/${KDEBASE}/${PV}/src/${_kmname}-${PV}.tar.xz" ;;
+   
SRC_URI="mirror://kde/stable/kdevelop/${PV}/src/${_kmname}-${PV}.tar.xz" ;;
esac
fi
 



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

2019-04-01 Thread Andreas Sturmlechner
commit: aa0b5ad92cb327dd5fe5dae5cd7fd63cbd0df866
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  1 20:05:04 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0b5ad9

app-editors/tea: Drop 44.1.1

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

 app-editors/tea/Manifest  |  1 -
 app-editors/tea/tea-44.1.1.ebuild | 65 ---
 2 files changed, 66 deletions(-)

diff --git a/app-editors/tea/Manifest b/app-editors/tea/Manifest
index 16837ba57a8..f99875f7c8f 100644
--- a/app-editors/tea/Manifest
+++ b/app-editors/tea/Manifest
@@ -1,2 +1 @@
-DIST tea-44.1.1.tar.bz2 425326 BLAKE2B 
e674456c428bbecd5afb256280bccb61b6385492153955625c158dcfebba0ed31caebdcc06bc1f809517badddef3d97245a4bc873bcc0593957647becdebf62b
 SHA512 
fc7bf6f76ac3a48767a39ff5bcada4c7dae40950bfd9aca4021b3581e1b702c73f2608b070306dd528932d5eaa73bf01632a4376bbb71deaf1189a0f790c05a9
 DIST tea-47.0.0.tar.bz2 437273 BLAKE2B 
8ed36526dedc6df4af74ef0e400c2ee2e19bb533cf2a4fa51df83f21ad78abb0e8e90bce3469e2e8db5f780ba8a900aedf2737c736945431b836ba0a76574b26
 SHA512 
7136d59383bf43c6a024a31aa29860a3e89893ff091a42f44f9e7088fb318920ab886cd1fdabc8ff6e3c30f8eb3d46d707228d2d45fb085ed7c822a4ffd89d13

diff --git a/app-editors/tea/tea-44.1.1.ebuild 
b/app-editors/tea/tea-44.1.1.ebuild
deleted file mode 100644
index e2cc47fd239..000
--- a/app-editors/tea/tea-44.1.1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils qmake-utils xdg-utils
-
-DESCRIPTION="Small, lightweight Qt text editor"
-HOMEPAGE="https://tea.ourproject.org/;
-SRC_URI="https://tea.ourproject.org/dloads/${P}.tar.bz2;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x86-fbsd"
-IUSE="aspell djvu hunspell pdf +qml"
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qtwidgets:5
-   sys-libs/zlib
-   aspell? ( app-text/aspell )
-   djvu? ( app-text/djvu )
-   hunspell? ( app-text/hunspell:= )
-   pdf? ( app-text/poppler[qt5] )
-   qml? ( dev-qt/qtdeclarative:5 )
-"
-DEPEND="${RDEPEND}
-   hunspell? ( virtual/pkgconfig )
-"
-
-DOCS=( AUTHORS ChangeLog NEWS NEWS-RU TODO )
-
-src_configure() {
-   eqmake5 src.pro \
-   PREFIX="/usr" \
-   $(use aspell || echo CONFIG+=noaspell) \
-   $(use djvu && echo CONFIG+=usedjvu) \
-   $(use hunspell || echo CONFIG+=nohunspell) \
-   $(use pdf && echo CONFIG+=usepoppler) \
-   $(use qml || echo CONFIG+=noqml)
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-   einstalldocs
-
-   docinto html
-   dodoc manuals/*.html
-
-   insinto /usr/share/qt5/translations
-   doins translations/${PN}_*.qm
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-}



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

2019-04-01 Thread Andreas Sturmlechner
commit: 5045bcb6b0798858d5664320474b260bb05485ca
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  1 20:04:26 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5045bcb6

app-emulation/q4wine: Drop 1.3.6-r1

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

 app-emulation/q4wine/Manifest   |  1 -
 app-emulation/q4wine/q4wine-1.3.6-r1.ebuild | 66 -
 2 files changed, 67 deletions(-)

diff --git a/app-emulation/q4wine/Manifest b/app-emulation/q4wine/Manifest
index 1fab7409ce9..6948f016b20 100644
--- a/app-emulation/q4wine/Manifest
+++ b/app-emulation/q4wine/Manifest
@@ -1,2 +1 @@
 DIST q4wine-1.3.11.tar.bz2 2868845 BLAKE2B 
98893b1f65bcb8b8f301d7046a650658a9537849818fddf4803471a626f24d8c812867daec1f167b1fa5cdce9f9c0c50323d715ea06c51f3d52f85904257d2b0
 SHA512 
95ac66632bc46b10659e1d0e5f3c68b73934a85ddcc6582abd367d28f9949ad0ca732a5596db800bbc76b40ae7cf05fd95febf6d8b44db20cf710c2c1e23288f
-DIST q4wine-1.3.6.tar.bz2 2867547 BLAKE2B 
b35a638e514108e4ee4be34b446a7d2d5ba00415d8f54cfee293988707b637d41945d3197a2132147e09d5a05153fd47a55701dcba358f3a2b3a2e6037f78aaa
 SHA512 
1ff0ea2a4523fc5582ec67f5e305622653c4e387ac5f2cecde52289117ef879a60261fdbf9ddf421812765539124d4c5b6b37ff401530d3e061723a3c35d57f8

diff --git a/app-emulation/q4wine/q4wine-1.3.6-r1.ebuild 
b/app-emulation/q4wine/q4wine-1.3.6-r1.ebuild
deleted file mode 100644
index f5672e386af..000
--- a/app-emulation/q4wine/q4wine-1.3.6-r1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils gnome2-utils xdg-utils
-
-# Upstream names the package PV-rX. We change that to
-# PV_pX so we can use portage revisions.
-MY_P=${PN}-${PV/_p/-r}
-
-DESCRIPTION="Qt GUI configuration tool for Wine"
-HOMEPAGE="https://q4wine.brezblock.org.ua/;
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+dbus debug +ico +iso +wineappdb"
-
-CDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtsingleapplication[qt5(+),X]
-   dev-qt/qtsql:5[sqlite]
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
-   dbus? ( dev-qt/qtdbus:5 )
-   ico? ( >=media-gfx/icoutils-0.26.0 )
-"
-DEPEND="${CDEPEND}
-   dev-qt/linguist-tools:5
-"
-RDEPEND="${CDEPEND}
-   app-admin/sudo
-   >=sys-apps/which-2.19
-   iso? ( sys-fs/fuseiso )
-"
-
-S=${WORKDIR}/${MY_P}
-
-DOCS=( AUTHORS ChangeLog README )
-
-src_configure() {
-   local mycmakeargs=(
-   -DDEBUG=$(usex debug ON OFF)
-   -DWITH_ICOUTILS=$(usex ico ON OFF)
-   -DWITH_SYSTEM_SINGLEAPP=ON
-   -DWITH_WINEAPPDB=$(usex wineappdb ON OFF)
-   -DUSE_BZIP2=OFF
-   -DUSE_GZIP=OFF
-   -DWITH_DBUS=$(usex dbus ON OFF)
-   )
-   cmake-utils_src_configure
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-}



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

2019-04-01 Thread Andreas Sturmlechner
commit: de4190feda960c6a4c49a72ee2a787aa75f17edd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  1 20:33:19 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de4190fe

dev-util/kdevelop-php: Drop 5.2.4-r1

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

 dev-util/kdevelop-php/Manifest |  1 -
 .../files/kdevelop-php-5.2.4-tests-optional.patch  | 76 --
 dev-util/kdevelop-php/kdevelop-php-5.2.4-r1.ebuild | 55 
 3 files changed, 132 deletions(-)

diff --git a/dev-util/kdevelop-php/Manifest b/dev-util/kdevelop-php/Manifest
index 7f7618f614d..d87e2026b8a 100644
--- a/dev-util/kdevelop-php/Manifest
+++ b/dev-util/kdevelop-php/Manifest
@@ -1,2 +1 @@
-DIST kdev-php-5.2.4.tar.xz 685356 BLAKE2B 
d9c9feb1099b5d6b0d57651f2588ad51016e159bde78a7104c3f9b429e75c9ef596329173e27f5010e39388575e23b920af2b7fec72b0801c21370f235f20acf
 SHA512 
3729cf0ea4ade85349778dd05ef9835a6993309aed05c7d7ef7d91c90ddaf09d1c5fad495753aa32f6a93b339dfbd14be9cb4b06b04a10d9d065aa8cfa1fa3cd
 DIST kdev-php-5.3.2.tar.xz 1008036 BLAKE2B 
33940afeeb7b8594f0dbf56e444ba05f9665c7e4c9bc1d55c9d6a5b85bd2e03a04db1b8f27d968d627e26cfa573a3da519bb1d0eb592dc784296c9db7ea1fad8
 SHA512 
d8649bca173eccc1aa6568715e5976beb762ad7a377adbdab8f55aad76176ca5c8d16477ec70fa231b5699105d2a827c2ffda1c4835419c670c561b605b4

diff --git 
a/dev-util/kdevelop-php/files/kdevelop-php-5.2.4-tests-optional.patch 
b/dev-util/kdevelop-php/files/kdevelop-php-5.2.4-tests-optional.patch
deleted file mode 100644
index 853952f11ac..000
--- a/dev-util/kdevelop-php/files/kdevelop-php-5.2.4-tests-optional.patch
+++ /dev/null
@@ -1,76 +0,0 @@
-From eb3a484c072f7cc5a319d919d54e6d843cd8c79f Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 7 Oct 2018 12:05:45 +0200
-Subject: [PATCH 1/2] Make Qt5Test optional
-
-Test Plan: Builds fine w/o Qt5Test present.
-
-Subscribers: kdevelop-devel
-
-Tags: #kdevelop
-
-Differential Revision: https://phabricator.kde.org/D16012

- CMakeLists.txt | 5 -
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c09ca29..c1e25d6 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -21,7 +21,10 @@ include(GenerateExportHeader)
- include(FeatureSummary)
- 
- set(QT_MIN_VERSION "5.5.0")
--find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED Core Widgets Test)
-+find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED Core Widgets)
-+if(BUILD_TESTING)
-+  find_package(Qt5Test ${QT_MIN_VERSION} CONFIG REQUIRED)
-+endif()
- set(KF5_DEP_VERSION "5.15.0")
- find_package(KF5 ${KF5_DEP_VERSION} REQUIRED COMPONENTS Archive ThreadWeaver 
TextEditor I18n ItemModels KCMUtils)
- find_package(KDevPlatform ${KDEVPLATFORM_VERSION} REQUIRED)
--- 
-2.19.1
-
-
-From 600c167d742da9f22f6d72f6b5d8c3919de2580b Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Wed, 10 Oct 2018 01:35:19 +0200
-Subject: [PATCH 2/2] Drop unused KF5Archive
-

- CMakeLists.txt  | 2 +-
- completion/tests/CMakeLists.txt | 4 
- 2 files changed, 1 insertion(+), 5 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c1e25d6..5f1070a 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -26,7 +26,7 @@ if(BUILD_TESTING)
-   find_package(Qt5Test ${QT_MIN_VERSION} CONFIG REQUIRED)
- endif()
- set(KF5_DEP_VERSION "5.15.0")
--find_package(KF5 ${KF5_DEP_VERSION} REQUIRED COMPONENTS Archive ThreadWeaver 
TextEditor I18n ItemModels KCMUtils)
-+find_package(KF5 ${KF5_DEP_VERSION} REQUIRED COMPONENTS ThreadWeaver 
TextEditor I18n ItemModels KCMUtils)
- find_package(KDevPlatform ${KDEVPLATFORM_VERSION} REQUIRED)
- find_package(KDevelop-PG-Qt REQUIRED)
- 
-diff --git a/completion/tests/CMakeLists.txt b/completion/tests/CMakeLists.txt
-index dbe37c1..214cc05 100644
 a/completion/tests/CMakeLists.txt
-+++ b/completion/tests/CMakeLists.txt
-@@ -23,9 +23,5 @@ ecm_add_test(
- Qt5::Test
- KDev::Tests
- KDev::Language
--
--# TODO: KF5: KDevice is forcing us to have this dependency. I'm sure
--# we can work-around it :)
--KF5::Archive
- )
- 
--- 
-2.19.1
-

diff --git a/dev-util/kdevelop-php/kdevelop-php-5.2.4-r1.ebuild 
b/dev-util/kdevelop-php/kdevelop-php-5.2.4-r1.ebuild
deleted file mode 100644
index ff68ee5e3fd..000
--- a/dev-util/kdevelop-php/kdevelop-php-5.2.4-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_BRANCH="5.2"
-KDEBASE="kdevelop"
-KDE_DOC_DIR="docs"
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="true"
-KMNAME="kdev-php"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="PHP plugin for KDevelop"
-LICENSE="GPL-2 LGPL-2"
-IUSE=""
-[[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="amd64 x86"
-

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

2019-04-01 Thread Andreas Sturmlechner
commit: 660852de70841fc8b803cf9408193e8c3ca9939b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  1 20:33:53 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=660852de

dev-util/kdevelop-python: Drop 5.2.4

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

 dev-util/kdevelop-python/Manifest  |  1 -
 .../kdevelop-python/kdevelop-python-5.2.4.ebuild   | 53 --
 2 files changed, 54 deletions(-)

diff --git a/dev-util/kdevelop-python/Manifest 
b/dev-util/kdevelop-python/Manifest
index 6aee9fed6a1..040611e880e 100644
--- a/dev-util/kdevelop-python/Manifest
+++ b/dev-util/kdevelop-python/Manifest
@@ -1,2 +1 @@
-DIST kdev-python-5.2.4.tar.xz 1073172 BLAKE2B 
774ef9853d9304073c5c8ff0657774a546c361d316116c1b09f21dad5f65cc8566948f42d179d5e612b64874ea14087e26794fdc3f3c7a9910569592c064973b
 SHA512 
abf86aeeffba496a51cc6969bb0dd75509b3385332914f8135e3b1ec5e4da592af5a7d07fd98ad231d8c09109c2396037727e3db0a7ce14bd427f87d558fa3b8
 DIST kdev-python-5.3.2.tar.xz 1074980 BLAKE2B 
de19a603d9c0fbf870b271b16d98b676ad9246edbc62f926c63ec66f51806c52fdec0284b016b291599b80d68faeb7eef80f4b5efc7e8f12f6362948b1df05c2
 SHA512 
95d8e0e94bfad70fabad75e362f5483db897ba56980251a76af48df863c7277746704c826692a6cec854e60c97f3ea9791b1e162b7ea2f357d469715d0a74672

diff --git a/dev-util/kdevelop-python/kdevelop-python-5.2.4.ebuild 
b/dev-util/kdevelop-python/kdevelop-python-5.2.4.ebuild
deleted file mode 100644
index f760c0a4717..000
--- a/dev-util/kdevelop-python/kdevelop-python-5.2.4.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_BRANCH="5.2"
-KDE_TEST="forceoptional"
-KDEBASE="kdevelop"
-KMNAME="kdev-python"
-PYTHON_COMPAT=( python3_{4,5,6} )
-inherit kde5 python-single-r1
-
-DESCRIPTION="Python plugin for KDevelop"
-IUSE=""
-[[ ${KDE_BUILD_TYPE} = release ]] && KEYWORDS="amd64 x86"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemmodels)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep ktexteditor)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep threadweaver)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-   dev-util/kdevelop:5
-"
-RDEPEND="${DEPEND}
-   dev-python/pycodestyle[${PYTHON_USEDEP}]
-"
-
-RESTRICT+=" test"
-
-pkg_setup() {
-   python-single-r1_pkg_setup
-   kde5_pkg_setup
-}
-
-src_compile() {
-   pushd "${WORKDIR}"/${P}_build > /dev/null || die
-   emake parser
-   popd > /dev/null || die
-
-   kde5_src_compile
-}



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

2019-04-01 Thread Andreas Sturmlechner
commit: cb6fd9b71c5d9d9ca8eac02968ebba6e542341d3
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Mar 17 16:51:40 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb6fd9b7

kde5-functions.eclass: Drop obsolete kdevelop detection/KDEBASE var

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

 eclass/kde5-functions.eclass | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index 0e9d7c2f2f4..613589f025e 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -75,17 +75,6 @@ esac
 # Minimum version of active GCC to require. This is checked in kde5.eclass in
 # kde5_pkg_pretend and kde5_pkg_setup.
 
-# @ECLASS-VARIABLE: KDEBASE
-# @DEFAULT_UNSET
-# @DESCRIPTION:
-# This gets set to a non-zero value when a package is considered a
-# kdevelop ebuild.
-if [[ ${KMNAME-${PN}} = kdevelop ]]; then
-   KDEBASE=kdevelop
-fi
-
-debug-print "${ECLASS}: ${KDEBASE} ebuild recognized"
-
 # @FUNCTION: _check_gcc_version
 # @INTERNAL
 # @DESCRIPTION:



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

2019-04-01 Thread Andreas Sturmlechner
commit: 0d9f1ff26709e2132202421b73f413c28d92
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  1 20:36:16 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 20:44:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d9f1ff2

app-editors/focuswriter: Drop 1.6.16

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

 app-editors/focuswriter/Manifest  |  1 -
 app-editors/focuswriter/focuswriter-1.6.16.ebuild | 54 ---
 2 files changed, 55 deletions(-)

diff --git a/app-editors/focuswriter/Manifest b/app-editors/focuswriter/Manifest
index 8559f492917..8366af74b49 100644
--- a/app-editors/focuswriter/Manifest
+++ b/app-editors/focuswriter/Manifest
@@ -1,3 +1,2 @@
-DIST focuswriter-1.6.16-src.tar.bz2 10301446 BLAKE2B 
ade186dffe87b4256c85b876b7121fa144f264d358479ef46c34579f96ea15fdd55da2c036d35119fe1eee3498d64ad1ac72737fa2e9f45aa13535dec599b168
 SHA512 
aefffcde693f4e7627f11cc37d763936f85dd749293daf910934da99e858471399618243c20ff88cd4993cffcb4b3270cb38bd97834519484c463b1b1b7e5f0d
 DIST focuswriter-1.7.1-src.tar.bz2 10306009 BLAKE2B 
8b76c4c85c304e4014ef91d1e0829b2e2fe06d4d064af1fe1f0e7b3ca1d7a8a0a776322bba574e3b64f4f57e6cdefb8c1c000c7aa17ad0e4fdddea41e2b3aa2f
 SHA512 
a7d45978670305c1a1f1d737ba7620f6ec38c76ce3aefdac2b008d3d208686013d300436d8fa210c99fe3048a7f377b0e1ab8b9f92b2ed7f58d57354ea683522
 DIST focuswriter-1.7.2-src.tar.bz2 10310759 BLAKE2B 
92f0cd0ec2bb29c41f2c98e52dcb2187a70bc1c0641aed521b3d577302937cf6560f3adf422372019c8726ca29a9978b5b4d9e56e4c0c26a65fdc5d6aa0b7767
 SHA512 
195ddf6579aa00af120644ef1ddc88a6aaf0a6003feefb7b3dd3ca72c4bb17440553a171ad469f2d25d90416fc0e1a03f1b9d43e3b5790dac180f18b4ed657bf

diff --git a/app-editors/focuswriter/focuswriter-1.6.16.ebuild 
b/app-editors/focuswriter/focuswriter-1.6.16.ebuild
deleted file mode 100644
index e76a7123b90..000
--- a/app-editors/focuswriter/focuswriter-1.6.16.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils qmake-utils xdg-utils
-
-DESCRIPTION="A fullscreen and distraction-free word processor"
-HOMEPAGE="https://gottcode.org/focuswriter/;
-SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2;
-
-LICENSE="LGPL-3 GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   app-text/hunspell:=
-   >=dev-qt/qtcore-5.11:5
-   >=dev-qt/qtgui-5.11:5
-   >=dev-qt/qtmultimedia-5.11:5
-   >=dev-qt/qtprintsupport-5.11:5
-   dev-qt/qtsingleapplication[qt5(+),X]
-   >=dev-qt/qtwidgets-5.11:5
-   sys-libs/zlib
-"
-DEPEND="${RDEPEND}
-   dev-qt/linguist-tools:5
-   dev-qt/qtconcurrent:5
-   virtual/pkgconfig
-"
-
-DOCS=( ChangeLog CREDITS README )
-
-PATCHES=( "${FILESDIR}/${PN}-1.6.0-unbundle-qtsingleapplication.patch" )
-
-src_configure() {
-   eqmake5 PREFIX="${EPREFIX}/usr"
-}
-
-src_install() {
-   emake INSTALL_ROOT="${D}" install
-   einstalldocs
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-}



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

2019-04-01 Thread Thomas Deutschmann
commit: fb04081dc70f2275f77b32727621f0249d4f836f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 20:34:13 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 20:37:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb04081d

media-gfx/imagemagick: bump to v6.9.10-36 & v7.0.8-36

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

 media-gfx/imagemagick/Manifest |   2 +
 media-gfx/imagemagick/imagemagick-6.9.10.36.ebuild | 248 
 media-gfx/imagemagick/imagemagick-7.0.8.36.ebuild  | 256 +
 3 files changed, 506 insertions(+)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index 514b7ddcfb4..d1c0252096b 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -1,6 +1,8 @@
 DIST ImageMagick-6.9.10-28.tar.xz 8937428 BLAKE2B 
240e39d6ffa702227abb645fdd2bfc7dab6fbe39727fdd77d84eb43e3788014a8df7369e024063b25000e7e0d0cd17ac2931f5eeeb3ac8049a3013ab5d10108d
 SHA512 
300632f540ec533ec981d8173135b33422b9d53d4d5fa5d619463030749d3822a74dee14ab0e076187dff6b589857fa72cb5a28418b81348f9ed493a3c8d3a5e
 DIST ImageMagick-6.9.10-30.tar.xz 8948384 BLAKE2B 
6f372f1c29e8e3939d95a1d3dadefa2f1911cbf19a929e39ddffdb3d7caa31330ee8ad277a147a54012815b76e1e205141d6b329689d3adf7aa0690f84496d58
 SHA512 
00d5e11569f4ba59a9c4aa4fae44d87f1ca3e0efe3df5a870c1e5ffc000e75c55cdd2fc0ba760d1401e28903b6a809e678e90c900421893fcd06e5078dfdbfeb
 DIST ImageMagick-6.9.10-33.tar.xz 8935040 BLAKE2B 
042410c49229d218b1ae36db96317da12b578581dbe2689749fe6331d1dfa1683d6182dda502429365af8bb86407195cc5107c5a0b454391c38a387bde967de3
 SHA512 
bdcc23de644ccf8150969849b6cec36f2c987b46588cd8717ae73ffe14aba2d262e4449e9f3a3bd6a9444e7a724f89c7f9a13dcb5ca11459ef97e07f25f1c014
+DIST ImageMagick-6.9.10-36.tar.xz 8938664 BLAKE2B 
0791f4234eace5e338d0016c74cd69b7eab07cc2829b0e2ae69e53af6f02bd0ff17b9cf15b81af061fc5b7f1d23faa9f6c54bbd1829198ab64464d76838e9161
 SHA512 
0c85648d39b741d693acb4d98a28e67a271447c0406a064852806b693c777a2069c5b39120a39d1fc0a73533a8edc4a13f6be7643b3b9f6a287884ca3265d834
 DIST ImageMagick-7.0.8-28.tar.xz 9432232 BLAKE2B 
0754f0d0a2327dbeb76da12f8686a7a3b19fe18b1ef07eb7ddb4367eb3b0d9b61c35b6ccf869b78b32a9bb77f1dbfc02ba33bbf6d2b266310a3ee9c6dc15d1ce
 SHA512 
4014beb2f743e46d725b3f22985f87f42adffbe23152fb19bc0d55647260e4a15f560c2ba68c7db5ce9c931665220ba5ccd01abce8d38a5d57724f35de8904cd
 DIST ImageMagick-7.0.8-30.tar.xz 9439136 BLAKE2B 
f8396d4301b002bf5409a27e5918e75422a0c4b0986f6fad80af0b490567c126ce3e80a2496fa247e6f5a8dc16fd9164e3e8c69be689bdbec0666dbc3ea860ef
 SHA512 
eb0c8fe7c4b55409240f7df3f75d6fc803952184c6c511b7e57198073a5ab60b6c1e6ae399c8c3e636b7e2a41784de86aa47e0f3019c2d3bbc81edeb552dfebb
 DIST ImageMagick-7.0.8-33.tar.xz 9447692 BLAKE2B 
1773fd0e9d51bd296548a6fc8170d818d7950a37b56554a8d5159e3beaee2b412d29243827172f94d2c244e851a6683a3393c3b36212764c56f4ad0acb17e4d2
 SHA512 
7dab0e9c3c7e72944c7ccfefbe67249fd513b6c122c7061de3c12a9dbc5deb18531f3cfc79f5286494c6fb54b6cefcc6643d56a171406f6a70ab12e9d644170a
+DIST ImageMagick-7.0.8-36.tar.xz 9445340 BLAKE2B 
146c2c19dd4b61f2bc7080063bfc04766ecb6fdc54028319a41d2ac4de0c6786d60f434f11cdcf8886b9d2c968ade5119f3ca68a8693273ab38d81c86052484d
 SHA512 
d32ccdfac7d410c6d83009d9d97d1a4e0195d5618fc95530424f43c86f369541d36b3fa53eee7f8872a84bb8e5164387aa731d452c2d9e0c8f872406c4044fb8

diff --git a/media-gfx/imagemagick/imagemagick-6.9.10.36.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.10.36.ebuild
new file mode 100644
index 000..b09291336cc
--- /dev/null
+++ b/media-gfx/imagemagick/imagemagick-6.9.10.36.ebuild
@@ -0,0 +1,248 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit eapi7-ver eutils flag-o-matic libtool perl-functions toolchain-funcs 
multilib
+
+MY_PV="$(ver_rs 3 '-')"
+MY_P="ImageMagick-${MY_PV}"
+
+DESCRIPTION="A collection of tools and libraries for many image formats"
+HOMEPAGE="https://www.imagemagick.org/;
+SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
+
+LICENSE="imagemagick"
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~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 ~x64-solaris ~x86-solaris"
+IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
+
+RESTRICT="perl? ( userpriv )"
+
+RDEPEND="
+   dev-libs/libltdl:0
+   bzip2? ( app-arch/bzip2 )
+   corefonts? ( media-fonts/corefonts )
+   djvu? ( app-text/djvu )
+   fftw? ( sci-libs/fftw:3.0 )
+   fontconfig? ( media-libs/fontconfig )
+   fpx? ( >=media-libs/libfpx-1.3.0-r1 )
+   graphviz? ( media-gfx/graphviz )
+   heif? ( 

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

2019-04-01 Thread Thomas Deutschmann
commit: 0a81608ebc224a3ad2c8f458aa324ebadeb719ea
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 20:36:14 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 20:37:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a81608e

media-gfx/imagemagick: move stable keywords

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

 media-gfx/imagemagick/imagemagick-6.9.10.36.ebuild | 2 +-
 media-gfx/imagemagick/imagemagick-7.0.8.36.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/imagemagick/imagemagick-6.9.10.36.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.10.36.ebuild
index b09291336cc..b6bca9ea8b2 100644
--- a/media-gfx/imagemagick/imagemagick-6.9.10.36.ebuild
+++ b/media-gfx/imagemagick/imagemagick-6.9.10.36.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
 
 LICENSE="imagemagick"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~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 ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm 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 ~x64-solaris ~x86-solaris"
 IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
 
 RESTRICT="perl? ( userpriv )"

diff --git a/media-gfx/imagemagick/imagemagick-7.0.8.36.ebuild 
b/media-gfx/imagemagick/imagemagick-7.0.8.36.ebuild
index 69c412db11b..3b3fc7c8d30 100644
--- a/media-gfx/imagemagick/imagemagick-7.0.8.36.ebuild
+++ b/media-gfx/imagemagick/imagemagick-7.0.8.36.ebuild
@@ -13,7 +13,7 @@ else
MY_PV="$(ver_rs 3 '-')"
MY_P="ImageMagick-${MY_PV}"
SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
-   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 ~x64-solaris ~x86-solaris"
+   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 ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="A collection of tools and libraries for many image formats"



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

2019-04-01 Thread Thomas Deutschmann
commit: e7a8a9feea17d849367854534a25ce2f8c1f5d33
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 20:37:19 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 20:37:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7a8a9fe

media-gfx/imagemagick: security cleanup

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

 media-gfx/imagemagick/Manifest |   6 -
 media-gfx/imagemagick/imagemagick-6.9.10.28.ebuild | 248 
 media-gfx/imagemagick/imagemagick-6.9.10.30.ebuild | 248 
 media-gfx/imagemagick/imagemagick-6.9.10.33.ebuild | 248 
 media-gfx/imagemagick/imagemagick-7.0.8.28.ebuild  | 256 -
 media-gfx/imagemagick/imagemagick-7.0.8.30.ebuild  | 256 -
 media-gfx/imagemagick/imagemagick-7.0.8.33.ebuild  | 256 -
 7 files changed, 1518 deletions(-)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index d1c0252096b..1fb9c90fa54 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -1,8 +1,2 @@
-DIST ImageMagick-6.9.10-28.tar.xz 8937428 BLAKE2B 
240e39d6ffa702227abb645fdd2bfc7dab6fbe39727fdd77d84eb43e3788014a8df7369e024063b25000e7e0d0cd17ac2931f5eeeb3ac8049a3013ab5d10108d
 SHA512 
300632f540ec533ec981d8173135b33422b9d53d4d5fa5d619463030749d3822a74dee14ab0e076187dff6b589857fa72cb5a28418b81348f9ed493a3c8d3a5e
-DIST ImageMagick-6.9.10-30.tar.xz 8948384 BLAKE2B 
6f372f1c29e8e3939d95a1d3dadefa2f1911cbf19a929e39ddffdb3d7caa31330ee8ad277a147a54012815b76e1e205141d6b329689d3adf7aa0690f84496d58
 SHA512 
00d5e11569f4ba59a9c4aa4fae44d87f1ca3e0efe3df5a870c1e5ffc000e75c55cdd2fc0ba760d1401e28903b6a809e678e90c900421893fcd06e5078dfdbfeb
-DIST ImageMagick-6.9.10-33.tar.xz 8935040 BLAKE2B 
042410c49229d218b1ae36db96317da12b578581dbe2689749fe6331d1dfa1683d6182dda502429365af8bb86407195cc5107c5a0b454391c38a387bde967de3
 SHA512 
bdcc23de644ccf8150969849b6cec36f2c987b46588cd8717ae73ffe14aba2d262e4449e9f3a3bd6a9444e7a724f89c7f9a13dcb5ca11459ef97e07f25f1c014
 DIST ImageMagick-6.9.10-36.tar.xz 8938664 BLAKE2B 
0791f4234eace5e338d0016c74cd69b7eab07cc2829b0e2ae69e53af6f02bd0ff17b9cf15b81af061fc5b7f1d23faa9f6c54bbd1829198ab64464d76838e9161
 SHA512 
0c85648d39b741d693acb4d98a28e67a271447c0406a064852806b693c777a2069c5b39120a39d1fc0a73533a8edc4a13f6be7643b3b9f6a287884ca3265d834
-DIST ImageMagick-7.0.8-28.tar.xz 9432232 BLAKE2B 
0754f0d0a2327dbeb76da12f8686a7a3b19fe18b1ef07eb7ddb4367eb3b0d9b61c35b6ccf869b78b32a9bb77f1dbfc02ba33bbf6d2b266310a3ee9c6dc15d1ce
 SHA512 
4014beb2f743e46d725b3f22985f87f42adffbe23152fb19bc0d55647260e4a15f560c2ba68c7db5ce9c931665220ba5ccd01abce8d38a5d57724f35de8904cd
-DIST ImageMagick-7.0.8-30.tar.xz 9439136 BLAKE2B 
f8396d4301b002bf5409a27e5918e75422a0c4b0986f6fad80af0b490567c126ce3e80a2496fa247e6f5a8dc16fd9164e3e8c69be689bdbec0666dbc3ea860ef
 SHA512 
eb0c8fe7c4b55409240f7df3f75d6fc803952184c6c511b7e57198073a5ab60b6c1e6ae399c8c3e636b7e2a41784de86aa47e0f3019c2d3bbc81edeb552dfebb
-DIST ImageMagick-7.0.8-33.tar.xz 9447692 BLAKE2B 
1773fd0e9d51bd296548a6fc8170d818d7950a37b56554a8d5159e3beaee2b412d29243827172f94d2c244e851a6683a3393c3b36212764c56f4ad0acb17e4d2
 SHA512 
7dab0e9c3c7e72944c7ccfefbe67249fd513b6c122c7061de3c12a9dbc5deb18531f3cfc79f5286494c6fb54b6cefcc6643d56a171406f6a70ab12e9d644170a
 DIST ImageMagick-7.0.8-36.tar.xz 9445340 BLAKE2B 
146c2c19dd4b61f2bc7080063bfc04766ecb6fdc54028319a41d2ac4de0c6786d60f434f11cdcf8886b9d2c968ade5119f3ca68a8693273ab38d81c86052484d
 SHA512 
d32ccdfac7d410c6d83009d9d97d1a4e0195d5618fc95530424f43c86f369541d36b3fa53eee7f8872a84bb8e5164387aa731d452c2d9e0c8f872406c4044fb8

diff --git a/media-gfx/imagemagick/imagemagick-6.9.10.28.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.10.28.ebuild
deleted file mode 100644
index b6bca9ea8b2..000
--- a/media-gfx/imagemagick/imagemagick-6.9.10.28.ebuild
+++ /dev/null
@@ -1,248 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit eapi7-ver eutils flag-o-matic libtool perl-functions toolchain-funcs 
multilib
-
-MY_PV="$(ver_rs 3 '-')"
-MY_P="ImageMagick-${MY_PV}"
-
-DESCRIPTION="A collection of tools and libraries for many image formats"
-HOMEPAGE="https://www.imagemagick.org/;
-SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
-
-LICENSE="imagemagick"
-SLOT="0/${PV}"
-KEYWORDS="alpha amd64 arm 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 ~x64-solaris ~x86-solaris"
-IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri heif jbig 
jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 
q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
-
-RESTRICT="perl? ( userpriv )"
-
-RDEPEND="
-   dev-libs/libltdl:0
-  

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

2019-04-01 Thread Robin H. Johnson
commit: 53a02f675dad2ec39eea52e2130a11b42977eab8
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Apr  1 20:35:31 2019 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Apr  1 20:35:31 2019 +
URL:https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=53a02f67

create-dev-keyrings: try keys.gentoo.org as well

Try the new keys.gentoo.org rotation, prior to the general SKS rotation,
mostly because it's local and MUCH faster than the SKS network.

keys.g.o does NOT sync with SKS at this time, and does not yet offer
HKPS.

Signed-off-by: Robin H. Johnson  gentoo.org>

 create-dev-keyrings.bash | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/create-dev-keyrings.bash b/create-dev-keyrings.bash
index 309be45..8e581b4 100755
--- a/create-dev-keyrings.bash
+++ b/create-dev-keyrings.bash
@@ -28,8 +28,12 @@ grab_keys() {
local missing=()
local remaining=( "${@}" )
 
+   # this needs to move to HKPS as well, but that part is not yet deployed.
+   KS1=hkp://keys.gentoo.org/
+   KS2=hkps://hkps.pool.sks-keyservers.net/
while :; do
-   timeout 20m gpg -q --recv-keys "${remaining[@]}" || :
+   timeout 5m  gpg --keyserver $KS1 -q --recv-keys 
"${remaining[@]}" || :
+   timeout 20m gpg --keyserver $KS2 -q --recv-keys 
"${remaining[@]}" || :
missing=()
for key in "${remaining[@]}"; do
gpg --list-public "${key}" &>/dev/null || missing+=( 
"${key}" )



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

2019-04-01 Thread Michael Orlitzky
commit: 156c568c2ef56f234db8b9ce5af1bf1f6ecd1a42
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Mon Apr  1 20:20:28 2019 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Mon Apr  1 20:20:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=156c568c

net-misc/hath: remove old "unused" ebuilds.

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

 net-misc/hath/Manifest  |  2 --
 net-misc/hath/hath-0.3.0.ebuild | 35 ---
 net-misc/hath/hath-0.4.2.ebuild | 35 ---
 3 files changed, 72 deletions(-)

diff --git a/net-misc/hath/Manifest b/net-misc/hath/Manifest
index 01c19b4c390..c3ea3a427f3 100644
--- a/net-misc/hath/Manifest
+++ b/net-misc/hath/Manifest
@@ -1,3 +1 @@
-DIST hath-0.3.0.tar.gz 27747 BLAKE2B 
2563ec0d8ae308f5262c401575722468a10eb9fbd309adbd9294b44203c8dc1b2f872b43a839b72590681f2c85cd2b04589509ab18a6c0df9f4aa99cd7ae993a
 SHA512 
424c1f95301160fe17d5358082a52ede90ceac14bf2a57d9e481bfb8c727c8314e47c0e871f4049c051d6f7112aee2c71ca256904fd9203cec9fce0bafcfe740
-DIST hath-0.4.2.tar.gz 30482 BLAKE2B 
d65b45c8be85f231fbdbb398c4d4225a0c79ae6a46334fa3dc8de840c95129a1d0a235202b7696abf2f672f7d7bba9c6787063a4bd9d3b8dcf2292d0f31c4baf
 SHA512 
54770dcd211a288f2a8ed02ec709d2bf535b912a776ca9dd8acfe01beccf6ce0a68c7e18a1117c656be989084ebde1dc6506c17e5e3c930be2a45178654b0627
 DIST hath-0.5.0.tar.gz 31258 BLAKE2B 
496832d35cf88ccda3a8ce394a1b4b17f673d1873c44d6ee112881e1da0431a069feb3612a3d1c00b14005690f4a71898d3755635b4bc444f23fbe23fe6f95b5
 SHA512 
877b95f3b608315f2dd393097747918f20499ae9ffaf69d26f7113639458cb30425a63ecb358cb2cab7f543c658aa7297f3f54b0f500dffe3bda3c9e63647a99

diff --git a/net-misc/hath/hath-0.3.0.ebuild b/net-misc/hath/hath-0.3.0.ebuild
deleted file mode 100644
index 4142638aaf6..000
--- a/net-misc/hath/hath-0.3.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=5
-
-# ebuild generated by hackport 0.4.3
-
-CABAL_FEATURES="bin test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="Hath manipulates network blocks in CIDR notation"
-HOMEPAGE="http://hackage.haskell.org/package/hath;
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/cmdargs-0.10
-   >=dev-haskell/missingh-1.2
-   >=dev-haskell/split-0.2
-   >=dev-haskell/tasty-0.8
-   >=dev-haskell/tasty-hunit-0.8
-   >=dev-haskell/tasty-quickcheck-0.8.1
-   >=dev-lang/ghc-7.6.1"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.16.0
-   test? ( dev-util/shelltestrunner )
-"
-
-src_install() {
-   cabal_src_install
-   doman "${S}/doc/man1/${PN}.1"
-}

diff --git a/net-misc/hath/hath-0.4.2.ebuild b/net-misc/hath/hath-0.4.2.ebuild
deleted file mode 100644
index 7756a367223..000
--- a/net-misc/hath/hath-0.4.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# ebuild generated by hackport 0.5.2.
-
-CABAL_FEATURES="test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="Hath manipulates network blocks in CIDR notation"
-HOMEPAGE="http://michael.orlitzky.com/code/hath.xhtml;
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/cmdargs-0.10:=
-   >=dev-haskell/split-0.2:=
-   >=dev-haskell/tasty-0.8:=
-   >=dev-haskell/tasty-hunit-0.8:=
-   >=dev-haskell/tasty-quickcheck-0.8.1:=
-   >=dev-lang/ghc-8.0.1:=
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.24.0.0
-   test? ( dev-util/shelltestrunner )
-"
-
-src_install() {
-   cabal_src_install
-   doman "${S}/doc/man1/${PN}.1"
-}



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

2019-04-01 Thread Pacho Ramos
commit: bb3d484047993b5499f90d77e0274b63ada27e5b
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr  1 20:14:20 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr  1 20:14:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb3d4840

net-libs/liboauth: amd64 stable, bug #681610

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Pacho Ramos  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 c42869113d9..2237745f981 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-python/pillow/

2019-04-01 Thread Thomas Deutschmann
commit: d5fe036fae55c1ac93260a1c8c13bb2688c01526
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:49:37 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5fe036f

dev-python/pillow: x86 stable (bug #679956)

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

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

diff --git a/dev-python/pillow/pillow-5.4.1.ebuild 
b/dev-python/pillow/pillow-5.4.1.ebuild
index 3131038e070..0f964b03c55 100644
--- a/dev-python/pillow/pillow-5.4.1.ebuild
+++ b/dev-python/pillow/pillow-5.4.1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/python-pillow/Pillow/archive/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 x86 ~amd64-linux 
~x86-linux"
 IUSE="doc examples imagequant jpeg jpeg2k lcms test tiff tk truetype webp zlib"
 
 REQUIRED_USE="test? ( jpeg tiff )"



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

2019-04-01 Thread Thomas Deutschmann
commit: 7d5d6235d54645b0c01538e363618320d63b5136
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:46:53 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d5d6235

media-libs/libmatroska: x86 stable (bug #681476)

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

 media-libs/libmatroska/libmatroska-1.4.9.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libmatroska/libmatroska-1.4.9.ebuild 
b/media-libs/libmatroska/libmatroska-1.4.9.ebuild
index 67c7f07a0a9..cfc51330999 100644
--- a/media-libs/libmatroska/libmatroska-1.4.9.ebuild
+++ b/media-libs/libmatroska/libmatroska-1.4.9.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
@@ -11,7 +11,7 @@ SRC_URI="https://dl.matroska.org/downloads/${PN}/${P}.tar.xz;
 
 LICENSE="LGPL-2.1"
 SLOT="0/6" # subslot = soname major version
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~x86-linux"
 IUSE=""
 
 RDEPEND=">=dev-libs/libebml-1.3.6:="



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

2019-04-01 Thread Thomas Deutschmann
commit: cfcbd35edae828f667047694f70a6f02d26bfbc7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:46:18 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfcbd35e

dev-libs/libedit: x86 stable (bug #677216)

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

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

diff --git a/dev-libs/libedit/libedit-20170329.3.1.ebuild 
b/dev-libs/libedit/libedit-20170329.3.1.ebuild
index f6490a2a7f2..45c8e3c9509 100644
--- a/dev-libs/libedit/libedit-20170329.3.1.ebuild
+++ b/dev-libs/libedit/libedit-20170329.3.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://thrysoee.dk/editline/${MY_P}.tar.gz;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 m68k ~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 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 IUSE="static-libs"
 
 DEPEND=">=sys-libs/ncurses-5.9-r3[static-libs?,${MULTILIB_USEDEP}]



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

2019-04-01 Thread Thomas Deutschmann
commit: a6bf414b5367f9da223bcfd7c081b3e44fd51420
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:47:33 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6bf414b

net-libs/liboauth: x86 stable (bug #681610)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  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 b1b5f7ffcee..c42869113d9 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: media-libs/harfbuzz/

2019-04-01 Thread Thomas Deutschmann
commit: e65eab12bd096e908fc74a9f538819e1b348ec16
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:45:46 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e65eab12

media-libs/harfbuzz: x86 stable (bug #680646)

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

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

diff --git a/media-libs/harfbuzz/harfbuzz-2.3.1.ebuild 
b/media-libs/harfbuzz/harfbuzz-2.3.1.ebuild
index c2dcd71cdb5..15738dacd3a 100644
--- a/media-libs/harfbuzz/harfbuzz-2.3.1.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-2.3.1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} =  ]] ; then
inherit git-r3 autotools
 else

SRC_URI="https://www.freedesktop.org/software/${PN}/release/${P}.tar.bz2;
-   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"
 fi
 
 LICENSE="Old-MIT ISC icu"



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

2019-04-01 Thread Thomas Deutschmann
commit: 100eb8ef48d9a1e8ab7e97882dc49f06f5486053
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:50:40 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=100eb8ef

media-gfx/libimagequant: x86 stable (bug #679956)

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

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

diff --git a/media-gfx/libimagequant/libimagequant-2.12.2.ebuild 
b/media-gfx/libimagequant/libimagequant-2.12.2.ebuild
index 9bb6ee7ea6d..e17635af650 100644
--- a/media-gfx/libimagequant/libimagequant-2.12.2.ebuild
+++ b/media-gfx/libimagequant/libimagequant-2.12.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/ImageOptim/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-3"
 SLOT="0/0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="cpu_flags_x86_sse2 debug openmp static-libs"
 
 DEPEND=""



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

2019-04-01 Thread Thomas Deutschmann
commit: 5eb1647fe27c7087d3278328dc29e5f155b8c0ad
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:53:37 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb1647f

dev-python/PyContracts: x86 stable (bug #676306)

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

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

diff --git a/dev-python/PyContracts/PyContracts-1.8.0.ebuild 
b/dev-python/PyContracts/PyContracts-1.8.0.ebuild
index 59f2f27c871..2aa6ec67e80 100644
--- a/dev-python/PyContracts/PyContracts-1.8.0.ebuild
+++ b/dev-python/PyContracts/PyContracts-1.8.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="LGPL-2"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 m68k ~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 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: 74c673549dc4a0d6e27a48210326947db360de29
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:54:27 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74c67354

app-emulation/q4wine: x86 stable (bug #681026)

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

 app-emulation/q4wine/q4wine-1.3.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/q4wine/q4wine-1.3.11.ebuild 
b/app-emulation/q4wine/q4wine-1.3.11.ebuild
index ded8c26b848..d7e68124ce8 100644
--- a/app-emulation/q4wine/q4wine-1.3.11.ebuild
+++ b/app-emulation/q4wine/q4wine-1.3.11.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 IUSE="+dbus debug +ico +iso +wineappdb"
 



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

2019-04-01 Thread Thomas Deutschmann
commit: dcb31717c7637214f25e46ccd3c1cd36bd8e1bf2
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:52:52 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb31717

media-video/projectx: x86 stable (bug #681500)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  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 6553ab7214d..4b8c94a37d7 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: sci-visualization/gnuplot/

2019-04-01 Thread Thomas Deutschmann
commit: 86678eadda98589853907e9a85d36e3691588251
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:45:00 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86678ead

sci-visualization/gnuplot: x86 stable (bug #677424)

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

 sci-visualization/gnuplot/gnuplot-5.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild 
b/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild
index f23362f1210..94c8aa5da5d 100644
--- a/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild
+++ b/sci-visualization/gnuplot/gnuplot-5.2.5.ebuild
@@ -17,7 +17,7 @@ if [[ -z ${PV%%*} ]]; then
 else
MY_P="${P/_/.}"
SRC_URI="mirror://sourceforge/gnuplot/${MY_P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 ~sparc x86 
~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="gnuplot bitmap? ( free-noncomm )"



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

2019-04-01 Thread Thomas Deutschmann
commit: 885bcbcdacf75971eb6a112015acb11b66c0725a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:43:42 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=885bcbcd

app-editors/focuswriter: x86 stable (bug #681028)

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

 app-editors/focuswriter/focuswriter-1.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/focuswriter/focuswriter-1.7.1.ebuild 
b/app-editors/focuswriter/focuswriter-1.7.1.ebuild
index 2467364ecc9..1a03c4dc455 100644
--- a/app-editors/focuswriter/focuswriter-1.7.1.ebuild
+++ b/app-editors/focuswriter/focuswriter-1.7.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2;
 
 LICENSE="GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 BDEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: 3cb44a703241ea6ec1b31495edb6d946737fa8be
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:50:14 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cb44a70

dev-python/olefile: x86 stable (bug #679956)

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

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

diff --git a/dev-python/olefile/olefile-0.46.ebuild 
b/dev-python/olefile/olefile-0.46.ebuild
index 89ae6eb3a36..15761cf7af3 100644
--- a/dev-python/olefile/olefile-0.46.ebuild
+++ b/dev-python/olefile/olefile-0.46.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/decalage2/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="doc"
 
 RDEPEND=""



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

2019-04-01 Thread Thomas Deutschmann
commit: b0ec8e454339d8faba080cca141c4a6cee92db0b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:42:56 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0ec8e45

sys-fs/exfat-utils: x86 stable (bug #681536)

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

 sys-fs/exfat-utils/exfat-utils-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/exfat-utils/exfat-utils-1.3.0.ebuild 
b/sys-fs/exfat-utils/exfat-utils-1.3.0.ebuild
index 28ed15d5f79..5d6f23fb66d 100644
--- a/sys-fs/exfat-utils/exfat-utils-1.3.0.ebuild
+++ b/sys-fs/exfat-utils/exfat-utils-1.3.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/relan/exfat/releases/download/v${PV}/${P}.tar.gz;
 # COPYING is GPL-2 but ChangeLog says "Relicensed the project from GPLv3+ to 
GPLv2+"
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~x86-linux"
 
 src_install() {
default



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

2019-04-01 Thread Thomas Deutschmann
commit: beff1c16667543ab12ed02df254d84535718771b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:55:05 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:58:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beff1c16

sys-fs/squashfs-tools: x86 stable (bug #677412)

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

 sys-fs/squashfs-tools/squashfs-tools-4.3_p7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.3_p7.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.3_p7.ebuild
index c4d2013f74e..be500fe6c33 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.3_p7.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.3_p7.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
~sparc x86"
 IUSE="debug lz4 lzma lzo static xattr +xz"
 
 LIB_DEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: 362ba02090cb5fce5db960dc8313b3a49ec29c10
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:44:08 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=362ba020

media-video/gaupol: x86 stable (bug #681486)

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

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

diff --git a/media-video/gaupol/gaupol-1.5.ebuild 
b/media-video/gaupol/gaupol-1.5.ebuild
index eee42ccc6b2..06098269cd4 100644
--- a/media-video/gaupol/gaupol-1.5.ebuild
+++ b/media-video/gaupol/gaupol-1.5.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/otsaloma/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 IUSE="spell test"
 
 RDEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: e1b6719cb009ff196444fd309f476a28047a78bd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:55:46 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:58:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1b6719c

app-crypt/xca: x86 stable (bug #681090)

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

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

diff --git a/app-crypt/xca/xca-2.1.2.ebuild b/app-crypt/xca/xca-2.1.2.ebuild
index a7c82476eb4..ed4c28eb1c0 100644
--- a/app-crypt/xca/xca-2.1.2.ebuild
+++ b/app-crypt/xca/xca-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/chris2511/${PN}/releases/download/RELEASE.${PV}/${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="bindist doc libressl"
 
 RDEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: 3182a3ac3a6295d3d4258d3ab217365b87431531
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:51:56 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3182a3ac

dev-db/postgresql: x86 stable (bug #680840)

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

 dev-db/postgresql/postgresql-10.7.ebuild   | 2 +-
 dev-db/postgresql/postgresql-11.2.ebuild   | 2 +-
 dev-db/postgresql/postgresql-9.4.21.ebuild | 2 +-
 dev-db/postgresql/postgresql-9.5.16.ebuild | 2 +-
 dev-db/postgresql/postgresql-9.6.12.ebuild | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-db/postgresql/postgresql-10.7.ebuild 
b/dev-db/postgresql/postgresql-10.7.ebuild
index dc96496a3fd..3de2ce4b934 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)
 

diff --git a/dev-db/postgresql/postgresql-11.2.ebuild 
b/dev-db/postgresql/postgresql-11.2.ebuild
index 1285decd31b..4cf5ae06081 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)
 

diff --git a/dev-db/postgresql/postgresql-9.4.21.ebuild 
b/dev-db/postgresql/postgresql-9.4.21.ebuild
index 56536f49a8c..25eabf42f59 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)"
 

diff --git a/dev-db/postgresql/postgresql-9.5.16.ebuild 
b/dev-db/postgresql/postgresql-9.5.16.ebuild
index 23ed7a8db3c..732daa80977 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)"
 

diff --git a/dev-db/postgresql/postgresql-9.6.12.ebuild 
b/dev-db/postgresql/postgresql-9.6.12.ebuild
index a83275d8ffe..58e68a5ad15 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: dev-python/pygresql/

2019-04-01 Thread Thomas Deutschmann
commit: 0910b11500a9a5f0e7834de2bf6737faf3800c93
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:54:07 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0910b115

dev-python/pygresql: x86 stable (bug #680804)

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

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

diff --git a/dev-python/pygresql/pygresql-5.0.6.ebuild 
b/dev-python/pygresql/pygresql-5.0.6.ebuild
index 4acb9dcddee..1d804e29d01 100644
--- a/dev-python/pygresql/pygresql-5.0.6.ebuild
+++ b/dev-python/pygresql/pygresql-5.0.6.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/P/PyGreSQL/${MY_P}.tar.gz"
 
 LICENSE="POSTGRESQL"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ia64 ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ia64 ppc ~sparc x86"
 IUSE=""
 
 DEPEND="${POSTGRES_DEP}"



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

2019-04-01 Thread Thomas Deutschmann
commit: c0fcc0ae22849892a3181bb3d76f0f90451de0e6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:56:50 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:58:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0fcc0ae

app-arch/xz-utils: x86 stable (bug #679170)

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

 app-arch/xz-utils/xz-utils-5.2.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/xz-utils/xz-utils-5.2.4-r2.ebuild 
b/app-arch/xz-utils/xz-utils-5.2.4-r2.ebuild
index 7948858836a..bce13a94376 100644
--- a/app-arch/xz-utils/xz-utils-5.2.4-r2.ebuild
+++ b/app-arch/xz-utils/xz-utils-5.2.4-r2.ebuild
@@ -17,7 +17,7 @@ else
MY_P="${PN/-utils}-${PV/_}"
SRC_URI="https://tukaani.org/xz/${MY_P}.tar.gz;
[[ "${PV}" == *_alpha* ]] || [[ "${PV}" == *_beta* ]] || \
-   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"
+   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"
S="${WORKDIR}/${MY_P}"
EXTRA_DEPEND=
 fi



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

2019-04-01 Thread Thomas Deutschmann
commit: 2c6acbb895f5ce1ea3334043872142bfe7d62826
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:56:20 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:58:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c6acbb8

media-gfx/xloadimage: x86 stable (bug #679450)

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

 media-gfx/xloadimage/xloadimage-4.1-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/xloadimage/xloadimage-4.1-r12.ebuild 
b/media-gfx/xloadimage/xloadimage-4.1-r12.ebuild
index d2619767a77..f02fa7f780e 100644
--- a/media-gfx/xloadimage/xloadimage-4.1-r12.ebuild
+++ b/media-gfx/xloadimage/xloadimage-4.1-r12.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.x.org/R5contrib/${P/-/.}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="tiff jpeg png"
 
 RDEPEND="x11-libs/libX11



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

2019-04-01 Thread Thomas Deutschmann
commit: 89cc8f8385f6253206eab813d42b8e8e45d982cd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:47:55 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89cc8f83

media-sound/mac: x86 stable (bug #681430)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  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 ed8e77da05a..3391de9d788 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: sys-fs/fuse-exfat/

2019-04-01 Thread Thomas Deutschmann
commit: 5ecba72e524862664479e64cff4429874ad61616
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:43:24 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ecba72e

sys-fs/fuse-exfat: x86 stable (bug #681536)

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

 sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild 
b/sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild
index 9b71ea2f581..8af0429633c 100644
--- a/sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild
+++ b/sys-fs/fuse-exfat/fuse-exfat-1.3.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/relan/exfat/releases/download/v${PV}/${P}.tar.gz;
 # COPYING is GPL-2 but ChangeLog says "Relicensed the project from GPLv3+ to 
GPLv2+"
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~x86-linux"
 
 RDEPEND="sys-fs/fuse:0"
 DEPEND="${RDEPEND}"



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

2019-04-01 Thread Thomas Deutschmann
commit: 436241313d3c51bc995721846c39c1c296f272ca
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:55:22 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:58:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43624131

app-editors/tea: x86 stable (bug #681024)

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

 app-editors/tea/tea-47.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/tea/tea-47.0.0.ebuild 
b/app-editors/tea/tea-47.0.0.ebuild
index e8ca3910ef6..312522fb992 100644
--- a/app-editors/tea/tea-47.0.0.ebuild
+++ b/app-editors/tea/tea-47.0.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://tea.ourproject.org/dloads/${P}.tar.bz2;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="aspell djvu hunspell pdf +qml"
 
 BDEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: c3a13b722f80857e16174fba95d69c7671de1276
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:52:31 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3a13b72

net-dialup/ppp: x86 stable (bug #681780)

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

 net-dialup/ppp/ppp-2.4.7-r7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dialup/ppp/ppp-2.4.7-r7.ebuild 
b/net-dialup/ppp/ppp-2.4.7-r7.ebuild
index 99c30d28e08..9d36cbba47f 100644
--- a/net-dialup/ppp/ppp-2.4.7-r7.ebuild
+++ b/net-dialup/ppp/ppp-2.4.7-r7.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://download.samba.org/pub/ppp/${P}.tar.gz
 
 LICENSE="BSD GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
 IUSE="activefilter atm dhcp eap-tls gtk ipv6 libressl pam radius"
 
 DEPEND="



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

2019-04-01 Thread Thomas Deutschmann
commit: 7cd4b29225a7008967baf81a6731bfe8704ca939
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Apr  1 19:48:35 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Apr  1 19:57:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cd4b292

media-video/mjpegtools: x86 stable (bug #681492)

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  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 71891b05e43..0b1c14cf658 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: net-misc/modemmanager/

2019-04-01 Thread Pacho Ramos
commit: 6618b8ca27a2000a2adb4beaf5a95d2341c8a908
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Apr  1 19:42:33 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Apr  1 19:42:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6618b8ca

net-misc/modemmanager: amd64 stable, bug #682172

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

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

diff --git a/net-misc/modemmanager/modemmanager-1.8.2-r1.ebuild 
b/net-misc/modemmanager/modemmanager-1.8.2-r1.ebuild
index a150c62736d..fbda9f3f944 100644
--- a/net-misc/modemmanager/modemmanager-1.8.2-r1.ebuild
+++ b/net-misc/modemmanager/modemmanager-1.8.2-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://www.freedesktop.org/software/ModemManager/ModemManager-${PV}.ta
 
 LICENSE="GPL-2+"
 SLOT="0/1" # subslot = dbus interface version, i.e. N in 
org.freedesktop.ModemManager${N}
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 
 IUSE="elogind +introspection mbim policykit +qmi systemd +udev vala"
 REQUIRED_USE="



[gentoo-commits] proj/kde:master commit in: dev-util/kdevelop-php/

2019-04-01 Thread Andreas Sturmlechner
commit: 60a672aea76b6c2396652a134f1a52b0c0f0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr  1 19:19:22 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr  1 19:38:07 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=60a672ae

dev-util/kdevelop-php: Restrict tests for good

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

 dev-util/kdevelop-php/kdevelop-php-5.3..ebuild | 5 -
 dev-util/kdevelop-php/kdevelop-php-.ebuild | 5 -
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/dev-util/kdevelop-php/kdevelop-php-5.3..ebuild 
b/dev-util/kdevelop-php/kdevelop-php-5.3..ebuild
index 758458b104..25865093c1 100644
--- a/dev-util/kdevelop-php/kdevelop-php-5.3..ebuild
+++ b/dev-util/kdevelop-php/kdevelop-php-5.3..ebuild
@@ -39,8 +39,11 @@ RDEPEND="${DEPEND}
!dev-util/kdevelop-php-docs
 "
 
+# remaining tests fail for some, bug 668530
+RESTRICT+=" test"
+
 src_test() {
-   # tests hang
+   # tests hang, bug 667922
local myctestargs=(
-E "(completionbenchmark|duchain_multiplefiles)"
)

diff --git a/dev-util/kdevelop-php/kdevelop-php-.ebuild 
b/dev-util/kdevelop-php/kdevelop-php-.ebuild
index 758458b104..25865093c1 100644
--- a/dev-util/kdevelop-php/kdevelop-php-.ebuild
+++ b/dev-util/kdevelop-php/kdevelop-php-.ebuild
@@ -39,8 +39,11 @@ RDEPEND="${DEPEND}
!dev-util/kdevelop-php-docs
 "
 
+# remaining tests fail for some, bug 668530
+RESTRICT+=" test"
+
 src_test() {
-   # tests hang
+   # tests hang, bug 667922
local myctestargs=(
-E "(completionbenchmark|duchain_multiplefiles)"
)



  1   2   3   >