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

2019-08-06 Thread Michał Górny
commit: f45d8a1247f8e6095617e7dd8229a5d182d45b09
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug  7 05:08:37 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug  7 05:43:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f45d8a12

dev-util/sysdig: Bump to 0.26.2

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

 dev-util/sysdig/Manifest |  1 +
 dev-util/sysdig/sysdig-0.26.2.ebuild | 88 
 2 files changed, 89 insertions(+)

diff --git a/dev-util/sysdig/Manifest b/dev-util/sysdig/Manifest
index 8cff04f0f08..641e78cc9f0 100644
--- a/dev-util/sysdig/Manifest
+++ b/dev-util/sysdig/Manifest
@@ -1 +1,2 @@
 DIST sysdig-0.26.1.tar.gz 892441 BLAKE2B 
38302458c54a10719fadaf5e5bb6d29931a262550eaf44350543e99cd33e6a90889d81f49096d2f57fcc903bc9245a1f782b438a48613f9fc9f90273c46f0f39
 SHA512 
817573dd2945e20094c548a481205d7ae700e8242a12c75bcab41c52330fb6f508214d71f3d3ba4ecc86576e555c8c2a0c155921d61d29a5861bbf982600f6fb
+DIST sysdig-0.26.2.tar.gz 907496 BLAKE2B 
ce489d7c1a54aa2930599aa7141b1a3d4815c0395b4a444dea565334a1b39a36d339eb2bc9d0c2b3924e8c54f9c3adec6b31278017cfee955fe9ed9d3c29977f
 SHA512 
1a2476060f43559ec89663377361d1fcaace7fe3aa3b472629dca78557e6d5868d8f5cfce3411c46804b501d6a56dcb074f6becf3d8e756b7f7fd943087cd3ae

diff --git a/dev-util/sysdig/sysdig-0.26.2.ebuild 
b/dev-util/sysdig/sysdig-0.26.2.ebuild
new file mode 100644
index 000..2d4c0de2f51
--- /dev/null
+++ b/dev-util/sysdig/sysdig-0.26.2.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MODULES_OPTIONAL_USE=modules
+inherit linux-mod bash-completion-r1 cmake-utils
+
+DESCRIPTION="A system exploration and troubleshooting tool"
+HOMEPAGE="https://www.sysdig.org/;
+SRC_URI="https://github.com/draios/sysdig/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0
+   modules? ( || ( MIT GPL-2 ) )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl +modules"
+
+RDEPEND="
+   app-misc/jq:0=
+   dev-cpp/tbb:0=
+   dev-lang/luajit:2=
+   >=dev-libs/jsoncpp-0.6_pre:0=
+   dev-libs/libb64:0=
+   dev-libs/protobuf:0=
+   net-dns/c-ares:0=
+   net-libs/grpc:0=
+   sys-libs/ncurses:0=
+   sys-libs/zlib:0=
+   libressl? ( dev-libs/libressl:0= )
+   !libressl? ( dev-libs/openssl:0= )
+   net-misc/curl:0="
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   virtual/os-headers"
+
+# needed for the kernel module
+CONFIG_CHECK="HAVE_SYSCALL_TRACEPOINTS ~TRACEPOINTS"
+
+pkg_pretend() {
+   linux-mod_pkg_setup
+}
+
+pkg_setup() {
+   linux-mod_pkg_setup
+}
+
+src_prepare() {
+   sed -i -e 's:-ggdb::' CMakeLists.txt || die
+
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   # we will use linux-mod for that
+   -DBUILD_DRIVER=OFF
+   # libscap examples are not installed or really useful
+   -DBUILD_LIBSCAP_EXAMPLES=OFF
+
+   # unbundle the deps
+   -DUSE_BUNDLED_DEPS=OFF
+   )
+
+   cmake-utils_src_configure
+
+   # setup linux-mod ugliness
+   MODULE_NAMES="sysdig-probe(extra:${BUILD_DIR}/driver/src:)"
+   BUILD_PARAMS='KERNELDIR="${KERNEL_DIR}"'
+   BUILD_TARGETS="all"
+}
+
+src_compile() {
+   cmake-utils_src_compile
+   linux-mod_src_compile
+}
+
+src_install() {
+   cmake-utils_src_install
+   linux-mod_src_install
+
+   # remove sources
+   rm -r "${ED}"/usr/src || die
+
+   # move bashcomp to the proper location
+   dobashcomp "${ED}"/usr/etc/bash_completion.d/sysdig || die
+   rm -r "${ED}"/usr/etc || die
+}



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

2019-08-06 Thread Hans de Graaff
commit: b78f4ea65d17ddf171c4624c1036c445866a8712
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Aug  7 05:02:16 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Aug  7 05:10:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b78f4ea6

dev-ruby/rouge: cleanup

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

 dev-ruby/rouge/Manifest   |  3 ---
 dev-ruby/rouge/rouge-3.1.1.ebuild | 27 ---
 dev-ruby/rouge/rouge-3.3.0.ebuild | 27 ---
 dev-ruby/rouge/rouge-3.5.1.ebuild | 30 --
 4 files changed, 87 deletions(-)

diff --git a/dev-ruby/rouge/Manifest b/dev-ruby/rouge/Manifest
index 3cfe4a5bffe..7054861d49c 100644
--- a/dev-ruby/rouge/Manifest
+++ b/dev-ruby/rouge/Manifest
@@ -1,6 +1,3 @@
 DIST rouge-1.11.1.tar.gz 491281 BLAKE2B 
dbdc4c874f1f8fb03fc8f5c368539ea218fb4f7de36e73718bef5f657509990a634a3520d0c689db85de5f7bda6f7ae79103b2e8a1e44f6314c2253491fbd8cc
 SHA512 
0419c4c1ca4fa4acc250349d9fd72164c7f293facc31588e5cffb533f3d321787cd3cc50acd7bfd13037d1ba77ee2f91ec37ddaeeb80180f6958f05d52181f56
-DIST rouge-3.1.1.gem 282624 BLAKE2B 
07074cda2634330fe26bedc370c85967f892fa239160f594ef57cb2d577812b025eda066e703b165ff72b491f718b0046afeeae7a9377ccef0315939193d1485
 SHA512 
3132dd891e66bbf557953bb7d0ab95be6d6978b75b37ba1ba50f2471aee1666d4228c253dbedd4a12fab6b584bba85d2327d6437788f0a9001248d9a4be1bf7c
-DIST rouge-3.3.0.gem 331776 BLAKE2B 
c258479642d0f89f7aa0ec6366525b43e899056cdc374b2cdaef4949968eff664ba6dd9ff07f33cf9606ba1f759288e665104bfe3b5bca3446f35ec56cb506b6
 SHA512 
b4d043d1df7c286f7a81c85c770144da3acab946c3c53570f3d530dba9414023641c52a8ee338abddfd178e2037e7390e61f344fa4d88a690e184f180a4da35c
-DIST rouge-3.5.1.tar.gz 722730 BLAKE2B 
6244eb7cb74354325a4e992464ab25222f2fbe20acac1baee1a9049b5b4c4056160a0a5b7bc71a893439e974a4e58d260e8207d8a7c2f37d649e1c43d2a4ad5b
 SHA512 
e8f6e8dabae41ca374217b3dcb3a1de6b3a46752b4af122a9731083de2e18e04b2f2a173dfa35b845d76c70530457c276b4da2098ed07d451bd2e86c12e17e18
 DIST rouge-3.6.0.tar.gz 727487 BLAKE2B 
d5430e0dec82244c8c5fc0df3de318556f3b6c24579b34a724f20953765ab9fabfd79c5aeab3ff9d16f5f4c7db531b0b9d511938b8836207f4a64050a4bff112
 SHA512 
b5ec4d6325a752033d8c1e1bbe1618840bf2b5c556391ae8d978971a520f83a49d7244f0386193c947689d84d61d98137b8d8a06ed83e3c1d6769923a1c6c1c1
 DIST rouge-3.7.0.tar.gz 761581 BLAKE2B 
681b8447a0f56e774f155ca735fa57b18a58f7ba3a55f995c3b42927392c91891facee557ed85a9faae86a9fa3301aedca995cff9a9b3d729c1be8e0cbdb8b97
 SHA512 
9360a4e0d564435da1481503222794e4b5649b4ece1b410d079c69f10e89e20bdf08c9d04663919cfbb7ce7b7cf0688604649c42c2442750bb1301d68e78248f

diff --git a/dev-ruby/rouge/rouge-3.1.1.ebuild 
b/dev-ruby/rouge/rouge-3.1.1.ebuild
deleted file mode 100644
index 32aa6979c55..000
--- a/dev-ruby/rouge/rouge-3.1.1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_TASK_TEST="spec"
-RUBY_FAKEGEM_RECIPE_DOC="yard"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Yet-another-markdown-parser using a strict syntax definition in 
pure Ruby"
-HOMEPAGE="https://github.com/jneen/rouge;
-#SRC_URI="https://github.com/jneen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-
-SLOT="2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE=""
-
-ruby_add_bdepend "doc? ( dev-ruby/redcarpet )"
-ruby_add_rdepend "dev-ruby/redcarpet
-   !!https://github.com/jneen/rouge;
-#SRC_URI="https://github.com/jneen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-
-SLOT="2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE=""
-
-ruby_add_bdepend "doc? ( dev-ruby/redcarpet )"
-ruby_add_rdepend "dev-ruby/redcarpet
-   !!https://github.com/jneen/rouge;
-SRC_URI="https://github.com/jneen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-
-SLOT="2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE=""
-
-ruby_add_bdepend "doc? ( dev-ruby/redcarpet )"
-ruby_add_rdepend "dev-ruby/redcarpet
-   !!

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

2019-08-06 Thread Hans de Graaff
commit: c8d9b8678c7ad098b080a279a401ae6f348c8904
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Aug  7 05:08:41 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Aug  7 05:10:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8d9b867

dev-ruby/rouge: add 3.8.0

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

 dev-ruby/rouge/Manifest   |  1 +
 dev-ruby/rouge/rouge-3.8.0.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/rouge/Manifest b/dev-ruby/rouge/Manifest
index 7054861d49c..8183674741d 100644
--- a/dev-ruby/rouge/Manifest
+++ b/dev-ruby/rouge/Manifest
@@ -1,3 +1,4 @@
 DIST rouge-1.11.1.tar.gz 491281 BLAKE2B 
dbdc4c874f1f8fb03fc8f5c368539ea218fb4f7de36e73718bef5f657509990a634a3520d0c689db85de5f7bda6f7ae79103b2e8a1e44f6314c2253491fbd8cc
 SHA512 
0419c4c1ca4fa4acc250349d9fd72164c7f293facc31588e5cffb533f3d321787cd3cc50acd7bfd13037d1ba77ee2f91ec37ddaeeb80180f6958f05d52181f56
 DIST rouge-3.6.0.tar.gz 727487 BLAKE2B 
d5430e0dec82244c8c5fc0df3de318556f3b6c24579b34a724f20953765ab9fabfd79c5aeab3ff9d16f5f4c7db531b0b9d511938b8836207f4a64050a4bff112
 SHA512 
b5ec4d6325a752033d8c1e1bbe1618840bf2b5c556391ae8d978971a520f83a49d7244f0386193c947689d84d61d98137b8d8a06ed83e3c1d6769923a1c6c1c1
 DIST rouge-3.7.0.tar.gz 761581 BLAKE2B 
681b8447a0f56e774f155ca735fa57b18a58f7ba3a55f995c3b42927392c91891facee557ed85a9faae86a9fa3301aedca995cff9a9b3d729c1be8e0cbdb8b97
 SHA512 
9360a4e0d564435da1481503222794e4b5649b4ece1b410d079c69f10e89e20bdf08c9d04663919cfbb7ce7b7cf0688604649c42c2442750bb1301d68e78248f
+DIST rouge-3.8.0.tar.gz 755720 BLAKE2B 
aca1ccbd601ee080958ccf09ab8932dc556065945f4cc2ee9b9bf5531ff41cec676005b0c7540aa058b3346c5eabac4351dd6a291ff148c9b5dfc682f7579336
 SHA512 
16a1cf9e9eae466c55f236f10d10bf0f5f4d523f6a680c1130b02115384691c1e2fbb14b59a6be1b9df77cc67fdb0ffe026cff6d0150230afe53f26b4c254dde

diff --git a/dev-ruby/rouge/rouge-3.8.0.ebuild 
b/dev-ruby/rouge/rouge-3.8.0.ebuild
new file mode 100644
index 000..6bb5004eb3f
--- /dev/null
+++ b/dev-ruby/rouge/rouge-3.8.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_TEST="spec"
+RUBY_FAKEGEM_RECIPE_DOC="yard"
+
+RUBY_FAKEGEM_GEMSPEC="rouge.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Yet-another-markdown-parser using a strict syntax definition in 
pure Ruby"
+HOMEPAGE="https://github.com/jneen/rouge;
+SRC_URI="https://github.com/jneen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+
+SLOT="2"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+ruby_add_bdepend "doc? ( dev-ruby/redcarpet )"
+ruby_add_rdepend "dev-ruby/redcarpet
+   !!

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

2019-08-06 Thread Hans de Graaff
commit: 3562002ce9fcd65e7afad550931a1ef4930e14f8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Aug  7 04:49:51 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Aug  7 05:10:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3562002c

dev-ruby/google-protobuf: add 3.9.1

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

 dev-ruby/google-protobuf/Manifest  |  1 +
 .../google-protobuf/google-protobuf-3.9.1.ebuild   | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-ruby/google-protobuf/Manifest 
b/dev-ruby/google-protobuf/Manifest
index 86a73052d6c..c8d9672bc79 100644
--- a/dev-ruby/google-protobuf/Manifest
+++ b/dev-ruby/google-protobuf/Manifest
@@ -1,3 +1,4 @@
 DIST google-protobuf-3.6.1-ruby.tar.gz 4485582 BLAKE2B 
546c49759df784018459809b9db692c5c94aef5d717183af5cd9edd96b4c658e759f23950cdcd5dddceaaad06ea1de2a2357b9fa8c496ed5d538fc5920174da0
 SHA512 
1bc175d24b49de1b1e41eaf39598194e583afffb924c86c8d2e569d935af21874be76b2cbd4d9655a1d38bac3d4cd811de88bc2c72d81bad79115e69e5b0d839
 DIST google-protobuf-3.8.0-ruby.tar.gz 4934577 BLAKE2B 
4b86ab216e8a8b2c99c3620da9417c0562498e9d4dbf4957db186f51c62b0ed73b1322635a076b2d4054e015bdf6c8c50cc7fd0cb78d24a93b29d2a5b48f66fe
 SHA512 
ba27c64e5193cd4a144bf0c9dc0d195fbbe6e580aaca01960362f0f185074588ca40046d3bcea76e1deae7508b722f6c5be484ea957122ae8e98229c7c3a4ad2
 DIST google-protobuf-3.9.0-ruby.tar.gz 4945061 BLAKE2B 
11df30465d19b5c057d8c2a18bb944f1abc725056e957fa0ec08803b8d73271daf950852e27273ff4596c88471297608d1ee571a48e615e2c411f79a2d6b5eed
 SHA512 
eebfea7758b924939edaf44d0f51e341f4778dcf943c9e399da57cb5f52e875bda1e37e40841798232dea52082b5d59c20de69a15ddeaf00220c432f05ca0e6e
+DIST google-protobuf-3.9.1-ruby.tar.gz 4947402 BLAKE2B 
c1e366438ca619044d84d7a75453c35b48d5f64867b7aaec78c04966d4e62223a8909a28be850156ce3d47f0e7f42e80a231ec5d814d2820e1edfa963d89e177
 SHA512 
9accb56c1aadef83bf27280e15a99809a3561cbd4b39d6605dec730cc112bf4fd2e9f1ac39127b32a1b87253e712be4b4f12afe4061a8f7be76266b3f4bca314

diff --git a/dev-ruby/google-protobuf/google-protobuf-3.9.1.ebuild 
b/dev-ruby/google-protobuf/google-protobuf-3.9.1.ebuild
new file mode 100644
index 000..749ced3b808
--- /dev/null
+++ b/dev-ruby/google-protobuf/google-protobuf-3.9.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Protocol Buffers are Google's data interchange format"
+HOMEPAGE="https://developers.google.com/protocol-buffers;
+SRC_URI="https://github.com/protocolbuffers/protobuf/archive/v${PV}.tar.gz -> 
${P}-ruby.tar.gz"
+RUBY_S="protobuf-${PV}/ruby"
+
+LICENSE="BSD"
+SLOT="3"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND+=" test? ( >=dev-libs/protobuf-3.7.0 )"
+
+each_ruby_prepare() {
+   sed -i -e 's:../src/protoc:protoc: ; /^task :build/ s/:compile,//' 
Rakefile || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/google/protobuf_c extconf.rb
+}
+
+each_ruby_compile() {
+   emake -Cext/google/protobuf_c V=1
+   cp ext/google/protobuf_c/protobuf_c.so lib/google/ || die
+}



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

2019-08-06 Thread Hans de Graaff
commit: 9cf3ac0cd5c1f7391a368b5a832a95fc1d6e3573
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Aug  7 04:59:33 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Aug  7 05:10:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf3ac0c

dev-ruby/rexical: add 1.0.7

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

 dev-ruby/rexical/Manifest |  1 +
 dev-ruby/rexical/rexical-1.0.7.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/dev-ruby/rexical/Manifest b/dev-ruby/rexical/Manifest
index abb38e91813..232ad795b1d 100644
--- a/dev-ruby/rexical/Manifest
+++ b/dev-ruby/rexical/Manifest
@@ -1 +1,2 @@
 DIST rexical-1.0.5.gem 20480 BLAKE2B 
6ed81f9247410aa68cec1ad02a49774da839679fa3f535691f79da42144fbcda4b0f0dac74c7c02bb08d262b66bd543a8bde05ac5871454b96a7582c228e5fff
 SHA512 
6cf5eac36953203a2de66eccbbc8679a4d695c3f0540ab8adf7a3db37eb4e94889c64c3ce4e4e88ea52738a6733680be2105e0604d01a2e07bae10939deb03c1
+DIST rexical-1.0.7.gem 22016 BLAKE2B 
aaadf4131fbc4958a6a17be02b970070e511dcb031fd6432fb62fb841eff36b4d5c41d8f8f295aed4ac376c49e736e5d795166f71957578c6cbe14fd6cea26be
 SHA512 
f71c86bd9764e65ebe0c66acd5446b5da7a1b38aae9d33367d70bfa253eb53c178634ce90c883c5459622219670d4d32f375b216c3023a3109329d6930dec1fc

diff --git a/dev-ruby/rexical/rexical-1.0.7.ebuild 
b/dev-ruby/rexical/rexical-1.0.7.ebuild
new file mode 100644
index 000..20780aa4eac
--- /dev/null
+++ b/dev-ruby/rexical/rexical-1.0.7.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc  DOCUMENTATION.en.rdoc  
DOCUMENTATION.ja.rdoc  README.ja  README.rdoc"
+
+inherit ruby-fakegem eutils
+
+DESCRIPTION="Rexical is a lexical scanner generator"
+HOMEPAGE="https://github.com/tenderlove/rexical/tree/master;
+LICENSE="LGPL-2" # plus exception
+
+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"
+SLOT="0"
+IUSE=""
+
+# File collision, bug 459116
+RDEPEND+=" !!app-admin/rex"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/hoe
+   dev-ruby/minitest
+   )"
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc sample/* || die
+}



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

2019-08-06 Thread Dennis Lamm
commit: 165b3c9ba75e2ba3390a33466654431358567af0
Author: Dennis Lamm  gentoo  org>
AuthorDate: Wed Aug  7 05:06:37 2019 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Wed Aug  7 05:07:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=165b3c9b

sys-apps/firejail-lts: [QA] fix compressed man pages

Signed-off-by: Dennis Lamm  gentoo.org>
Package-Manager: Portage-2.3.69, Repoman-2.3.16

 .../firejail-lts-fix-compressed-manpages.patch | 17 
 .../firejail-lts/firejail-lts-0.9.56.2-r1.ebuild   | 49 ++
 2 files changed, 66 insertions(+)

diff --git 
a/sys-apps/firejail-lts/files/firejail-lts-fix-compressed-manpages.patch 
b/sys-apps/firejail-lts/files/firejail-lts-fix-compressed-manpages.patch
new file mode 100644
index 000..313c1c2a9dd
--- /dev/null
+++ b/sys-apps/firejail-lts/files/firejail-lts-fix-compressed-manpages.patch
@@ -0,0 +1,17 @@
+diff --git a/Makefile.in b/Makefile.in
+index 9dafb56..4117468 100644
+--- a/Makefile.in
 b/Makefile.in
+@@ -127,10 +127,9 @@ endif
+   install -m 0755 -d $(DESTDIR)/$(mandir)/man5
+   for man in $(MANPAGES); do \
+   rm -f $$man.gz; \
+-  gzip -9n $$man; \
+   case "$$man" in \
+-  *.1) install -c -m 0644 $$man.gz 
$(DESTDIR)/$(mandir)/man1/; ;; \
+-  *.5) install -c -m 0644 $$man.gz 
$(DESTDIR)/$(mandir)/man5/; ;; \
++  *.1) install -c -m 0644 $$man 
$(DESTDIR)/$(mandir)/man1/; ;; \
++  *.5) install -c -m 0644 $$man 
$(DESTDIR)/$(mandir)/man5/; ;; \
+   esac; \
+   done
+   rm -f $(MANPAGES) $(MANPAGES:%=%.gz)

diff --git a/sys-apps/firejail-lts/firejail-lts-0.9.56.2-r1.ebuild 
b/sys-apps/firejail-lts/firejail-lts-0.9.56.2-r1.ebuild
new file mode 100644
index 000..831a680daa5
--- /dev/null
+++ b/sys-apps/firejail-lts/firejail-lts-0.9.56.2-r1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Security sandbox for any type of processes; LTS version"
+HOMEPAGE="https://firejail.wordpress.com/;
+
+MY_PN=firejail
+
+SRC_URI="https://github.com/netblue30/${MY_PN}/archive/${PV}-LTS.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="apparmor +globalcfg +network +seccomp +suid +userns test +whitelist"
+
+DEPEND="!sys-apps/firejail
+   apparmor? ( sys-libs/libapparmor )
+   test? ( dev-tcltk/expect )"
+
+RDEPEND="apparmor? ( sys-libs/libapparmor )"
+
+PATCHES=( "${FILESDIR}/${PN}-fix-compressed-manpages.patch" )
+
+S="${WORKDIR}/${MY_PN}-${PV}-LTS"
+
+src_prepare() {
+   default
+
+   find -type f -name Makefile.in | xargs sed --in-place --regexp-extended 
\
+   --expression='/^\tinstall .*COPYING /d' \
+   --expression='/CFLAGS/s: (-O2|-ggdb) : :g' || die
+
+   sed --in-place --regexp-extended '/CFLAGS/s: (-O2|-ggdb) : :g' 
./src/common.mk.in || die
+}
+
+src_configure() {
+   econf \
+   --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+   $(use_enable apparmor) \
+   $(use_enable globalcfg) \
+   $(use_enable network) \
+   $(use_enable seccomp) \
+   $(use_enable suid) \
+   $(use_enable userns) \
+   $(use_enable whitelist)
+
+}



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

2019-08-06 Thread Jeroen Roovers
commit: c937ed6d755e0989c8c42f0f5fda33a756821173
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Aug  7 04:59:38 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Aug  7 05:01:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c937ed6d

net-analyzer/scapy: Version 2.4.3

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

 net-analyzer/scapy/Manifest   |  1 +
 net-analyzer/scapy/scapy-2.4.3.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/net-analyzer/scapy/Manifest b/net-analyzer/scapy/Manifest
index 925fa7641d3..d77ce61a54e 100644
--- a/net-analyzer/scapy/Manifest
+++ b/net-analyzer/scapy/Manifest
@@ -1,4 +1,5 @@
 DIST scapy-2.3.2.tar.gz 1166056 BLAKE2B 
bce5f37bd833dc457089cdfebd2dc019c4f7bed636935b4a6b51a2cf7355f5761fadaa304e93c276daa2200c48ab0e1c0a08bd278e30dfea1faa01321a0b957e
 SHA512 
6b15e102708d1bd0ca0c910e2d82416cd172634409f93c506542a7dc6b69ddc9c9afef6ec07929f70cc0f8f4c455cdc84d9b35bc2c5b72f79dd7e6785306dc7a
 DIST scapy-2.4.2.tar.gz 3330071 BLAKE2B 
a40074594cd561b33d04364fba743fa5fe741b06b2ad8f8f9ebe9dfb0b9a3bc4f641cd16d99a4ba070fc0763d7cfeb8d3ecd056f162d509070cdd57d55d6ad9c
 SHA512 
980f708a849ae26edca3eb6618a41668818c5883bca699f347f47a8964b3ee44a6ceefe4a12cb7d5fe6c13f5cbe2b7547938e53139f4ec9e6ef384e30c9bb6db
+DIST scapy-2.4.3.tar.gz 2969754 BLAKE2B 
83ab6500dbc0424b728253661f03391d450f77b19c0059b8a605a19f48b4ddd7344743310a5cb7c741fcf750876ba125daf883d04714981ff81ef4db97519ae0
 SHA512 
579e3f326f90e10b2839aee805949e14ecab9431f360ef75e60080a971653e1f48a240d812b8ace77754b01b07a2ddb8533d1e6b18ee8804280bf9b2c237cede
 DIST scapy-2.4.3_rc3.tar.gz 2947420 BLAKE2B 
43c9ffebfd87c6918c15dd403a58e85cb44f38c540fd28117a5586b2ad1f341ad793a5f6b2e5c1a8204e9c682c1ef6da3c20a313c0ba7f4ff3617ec674f5bb2d
 SHA512 
ef0c6ef97868a3489eaa30acbd7eb203a61f311e50ecd9ec375fb05ae78ba5f33f854928440aa84dbd35e4178469c93a4f6073a33082572b133df93ee18000bd
 DIST scapy-2.4.3_rc4.tar.gz 2968572 BLAKE2B 
31106a29541eec87e57614451edc792bf6d71c8fda3a31706ca0f5820b3e9d4c84ad1fab60fba8b4ee174ca887c9e5b060debee391a85387f1f5ff0077789089
 SHA512 
16cd9ececc56517941a1fb680574eac2823f1d72ba8eac861d3da991bcd74ba8a864da2a7336df6b825fadd68a21dc8a2c10fbc93c5cc646c9aef1b38f0fbb75

diff --git a/net-analyzer/scapy/scapy-2.4.3.ebuild 
b/net-analyzer/scapy/scapy-2.4.3.ebuild
new file mode 100644
index 000..ccaf35b48e6
--- /dev/null
+++ b/net-analyzer/scapy/scapy-2.4.3.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6,7} )
+inherit distutils-r1 readme.gentoo-r1
+
+DESCRIPTION="A Python interactive packet manipulation program for mastering 
the network"
+HOMEPAGE="https://scapy.net/ https://github.com/secdev/scapy;
+SRC_URI="https://github.com/secdev/${PN}/archive/v${PV/_/}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RDEPEND="
+   net-analyzer/tcpdump
+"
+S=${WORKDIR}/${P/_/}
+DOC_CONTENTS="
+Scapy has optional support for the following packages:
+
+   dev-python/cryptography
+   dev-python/gnuplot-py
+   dev-python/ipython
+   dev-python/pyx
+   media-gfx/graphviz
+   net-analyzer/tcpreplay
+   virtual/imagemagick-tools
+
+   See also ""${EPREFIX}/usr/share/doc/${PF}/installation.rst""
+"
+
+src_prepare() {
+   echo ${PV/_/} > ${PN}/VERSION
+   distutils-r1_src_prepare
+}
+
+src_install() {
+   distutils-r1_src_install
+   dodoc -r doc/${PN}/*
+   DISABLE_AUTOFORMATTING=plz readme.gentoo_create_doc
+}



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

2019-08-06 Thread Jeroen Roovers
commit: 37faf10ced4fbce857ba1cdb259986e71a4c56b2
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Aug  7 05:00:57 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Aug  7 05:01:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37faf10c

net-analyzer/scapy: Old

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

 net-analyzer/scapy/Manifest   |  2 --
 net-analyzer/scapy/scapy-2.4.3_rc3.ebuild | 42 ---
 net-analyzer/scapy/scapy-2.4.3_rc4.ebuild | 42 ---
 3 files changed, 86 deletions(-)

diff --git a/net-analyzer/scapy/Manifest b/net-analyzer/scapy/Manifest
index d77ce61a54e..5abcf8942c4 100644
--- a/net-analyzer/scapy/Manifest
+++ b/net-analyzer/scapy/Manifest
@@ -1,5 +1,3 @@
 DIST scapy-2.3.2.tar.gz 1166056 BLAKE2B 
bce5f37bd833dc457089cdfebd2dc019c4f7bed636935b4a6b51a2cf7355f5761fadaa304e93c276daa2200c48ab0e1c0a08bd278e30dfea1faa01321a0b957e
 SHA512 
6b15e102708d1bd0ca0c910e2d82416cd172634409f93c506542a7dc6b69ddc9c9afef6ec07929f70cc0f8f4c455cdc84d9b35bc2c5b72f79dd7e6785306dc7a
 DIST scapy-2.4.2.tar.gz 3330071 BLAKE2B 
a40074594cd561b33d04364fba743fa5fe741b06b2ad8f8f9ebe9dfb0b9a3bc4f641cd16d99a4ba070fc0763d7cfeb8d3ecd056f162d509070cdd57d55d6ad9c
 SHA512 
980f708a849ae26edca3eb6618a41668818c5883bca699f347f47a8964b3ee44a6ceefe4a12cb7d5fe6c13f5cbe2b7547938e53139f4ec9e6ef384e30c9bb6db
 DIST scapy-2.4.3.tar.gz 2969754 BLAKE2B 
83ab6500dbc0424b728253661f03391d450f77b19c0059b8a605a19f48b4ddd7344743310a5cb7c741fcf750876ba125daf883d04714981ff81ef4db97519ae0
 SHA512 
579e3f326f90e10b2839aee805949e14ecab9431f360ef75e60080a971653e1f48a240d812b8ace77754b01b07a2ddb8533d1e6b18ee8804280bf9b2c237cede
-DIST scapy-2.4.3_rc3.tar.gz 2947420 BLAKE2B 
43c9ffebfd87c6918c15dd403a58e85cb44f38c540fd28117a5586b2ad1f341ad793a5f6b2e5c1a8204e9c682c1ef6da3c20a313c0ba7f4ff3617ec674f5bb2d
 SHA512 
ef0c6ef97868a3489eaa30acbd7eb203a61f311e50ecd9ec375fb05ae78ba5f33f854928440aa84dbd35e4178469c93a4f6073a33082572b133df93ee18000bd
-DIST scapy-2.4.3_rc4.tar.gz 2968572 BLAKE2B 
31106a29541eec87e57614451edc792bf6d71c8fda3a31706ca0f5820b3e9d4c84ad1fab60fba8b4ee174ca887c9e5b060debee391a85387f1f5ff0077789089
 SHA512 
16cd9ececc56517941a1fb680574eac2823f1d72ba8eac861d3da991bcd74ba8a864da2a7336df6b825fadd68a21dc8a2c10fbc93c5cc646c9aef1b38f0fbb75

diff --git a/net-analyzer/scapy/scapy-2.4.3_rc3.ebuild 
b/net-analyzer/scapy/scapy-2.4.3_rc3.ebuild
deleted file mode 100644
index 25877178edf..000
--- a/net-analyzer/scapy/scapy-2.4.3_rc3.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
-inherit distutils-r1 readme.gentoo-r1
-
-DESCRIPTION="A Python interactive packet manipulation program for mastering 
the network"
-HOMEPAGE="https://scapy.net/ https://github.com/secdev/scapy;
-SRC_URI="https://github.com/secdev/${PN}/archive/v${PV/_/}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RDEPEND="
-   net-analyzer/tcpdump
-"
-S=${WORKDIR}/${P/_/}
-DOC_CONTENTS="
-Scapy has optional support for the following packages:
-
-   dev-python/cryptography
-   dev-python/gnuplot-py
-   dev-python/ipython
-   dev-python/pyx
-   media-gfx/graphviz
-   net-analyzer/tcpreplay
-   virtual/imagemagick-tools
-
-   See also ""${EPREFIX}/usr/share/doc/${PF}/installation.rst""
-"
-
-src_prepare() {
-   echo ${PV/_/} > ${PN}/VERSION
-   distutils-r1_src_prepare
-}
-
-src_install() {
-   distutils-r1_src_install
-   dodoc -r doc/${PN}/*
-   DISABLE_AUTOFORMATTING=plz readme.gentoo_create_doc
-}

diff --git a/net-analyzer/scapy/scapy-2.4.3_rc4.ebuild 
b/net-analyzer/scapy/scapy-2.4.3_rc4.ebuild
deleted file mode 100644
index ccaf35b48e6..000
--- a/net-analyzer/scapy/scapy-2.4.3_rc4.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{5,6,7} )
-inherit distutils-r1 readme.gentoo-r1
-
-DESCRIPTION="A Python interactive packet manipulation program for mastering 
the network"
-HOMEPAGE="https://scapy.net/ https://github.com/secdev/scapy;
-SRC_URI="https://github.com/secdev/${PN}/archive/v${PV/_/}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RDEPEND="
-   net-analyzer/tcpdump
-"
-S=${WORKDIR}/${P/_/}
-DOC_CONTENTS="
-Scapy has optional support for the following packages:
-
-   dev-python/cryptography
-   dev-python/gnuplot-py
-   dev-python/ipython
-   dev-python/pyx
-   media-gfx/graphviz
-   net-analyzer/tcpreplay
-   virtual/imagemagick-tools
-
-   See also ""${EPREFIX}/usr/share/doc/${PF}/installation.rst""
-"
-
-src_prepare() {
-   echo ${PV/_/} > ${PN}/VERSION
-   

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

2019-08-06 Thread Dennis Lamm
commit: 2aa6df74f87a2e7a4870fcf19695db6b2390b061
Author: Dennis Lamm  gentoo  org>
AuthorDate: Wed Aug  7 04:57:58 2019 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Wed Aug  7 04:58:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa6df74

sys-apps/firejail: remove old

Signed-off-by: Dennis Lamm  gentoo.org>
Package-Manager: Portage-2.3.69, Repoman-2.3.16

 sys-apps/firejail/Manifest   |  1 -
 sys-apps/firejail/files/0.9.56-contrib-fix.patch | 36 -
 sys-apps/firejail/firejail-0.9.56-r1.ebuild  | 47 --
 sys-apps/firejail/firejail-0.9.56.ebuild | 48 --
 sys-apps/firejail/firejail-0.9.60.ebuild | 51 
 5 files changed, 183 deletions(-)

diff --git a/sys-apps/firejail/Manifest b/sys-apps/firejail/Manifest
index 4aa1ae5d5fa..69947b7d043 100644
--- a/sys-apps/firejail/Manifest
+++ b/sys-apps/firejail/Manifest
@@ -1,3 +1,2 @@
 DIST firejail-0.9.50.tar.xz 279488 BLAKE2B 
96d8e9161f0631ebfa400fd79c1d8d139d014da46cc2bf7fd3683f75ef7dced6a435e09e1733b675bc549662d50fddca9bd8811872a5ed186d731bb3c16903ea
 SHA512 
766fe8a0c65ddc717759f0ea54a4fe72213f43ecf241c385e484eb7e47bebd5896976998c76e6a5ef9c153d4007c2a01e9d942cc9f352c4b085fb02fe708a87d
-DIST firejail-0.9.56.tar.xz 327336 BLAKE2B 
4fe2276c3007e995ca2113ef870918287e1178ff0effdcd5d635fce6d170b6c3df2f75b45315fed1e58e1c993324b84091f7e6912493608233f96661c85ce7e2
 SHA512 
f9685be0cbfdf45f8f895041c63e005da483d9b09482ebda2776633ae0b048cd355b57bf4431348295507059633dfda45b0c8b2c1f4a83ad02ff661d32448d24
 DIST firejail-0.9.60.tar.gz 1067102 BLAKE2B 
c5fd9a9c60fe17fc7ae24946ae5ea2f666d1dd20d982c540783dd2e56d30859a24258c4f3426e2bafaff3530557f5865bc73af9573e399039e8d5b097e5cddee
 SHA512 
cb3eeff2f77801b4593a719a6b63da09cdc6c7f96f8ea8ea1aaa7e8538b080421a284441c6e43ce036fdf8510e08a73816c58d22f0af048344b8752f4a02759a

diff --git a/sys-apps/firejail/files/0.9.56-contrib-fix.patch 
b/sys-apps/firejail/files/0.9.56-contrib-fix.patch
deleted file mode 100644
index 7192bba3480..000
--- a/sys-apps/firejail/files/0.9.56-contrib-fix.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff -Naur firejail-0.9.48/contrib/fix_private-bin.py 
firejail-0.9.48.new/contrib/fix_private-bin.py
 firejail-0.9.48/contrib/fix_private-bin.py 2017-05-24 23:01:32.0 
+0100
-+++ firejail-0.9.48.new/contrib/fix_private-bin.py 2017-08-27 
23:19:52.868481040 +0100
-@@ -1,4 +1,4 @@
--#!/usr/bin/python3
-+#!/usr/bin/env python3
- 
- __author__ = "KOLANICH"
- __copyright__ = """This is free and unencumbered software released into the 
public domain.
-diff -Naur firejail-0.9.48/contrib/fjclip.py 
firejail-0.9.48.new/contrib/fjclip.py
 firejail-0.9.48/contrib/fjclip.py  2017-05-24 23:01:32.0 +0100
-+++ firejail-0.9.48.new/contrib/fjclip.py  2017-08-27 23:19:58.476562539 
+0100
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/env python2
- 
- import re
- import sys
-diff -Naur firejail-0.9.48/contrib/fjdisplay.py 
firejail-0.9.48.new/contrib/fjdisplay.py
 firejail-0.9.48/contrib/fjdisplay.py   2017-05-24 23:01:32.0 
+0100
-+++ firejail-0.9.48.new/contrib/fjdisplay.py   2017-08-27 23:20:01.932612762 
+0100
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/env python2
- 
- import re
- import sys
-diff -Naur firejail-0.9.48/contrib/fjresize.py 
firejail-0.9.48.new/contrib/fjresize.py
 firejail-0.9.48/contrib/fjresize.py2017-05-24 23:01:32.0 
+0100
-+++ firejail-0.9.48.new/contrib/fjresize.py2017-08-27 23:20:06.932685422 
+0100
-@@ -1,4 +1,4 @@
--#!/usr/bin/env python
-+#!/usr/bin/env python2
- 
- import sys
- import fjdisplay

diff --git a/sys-apps/firejail/firejail-0.9.56-r1.ebuild 
b/sys-apps/firejail/firejail-0.9.56-r1.ebuild
deleted file mode 100644
index 6da35dbc147..000
--- a/sys-apps/firejail/firejail-0.9.56-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils
-
-DESCRIPTION="Security sandbox for any type of processes"
-HOMEPAGE="https://firejail.wordpress.com/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="apparmor +chroot contrib +file-transfer +network
-   +seccomp suid +userns x11"
-
-DEPEND="!sys-apps/firejail-lts
-   apparmor? ( sys-libs/libapparmor )"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PV}-contrib-fix.patch" )
-
-RESTRICT=test
-
-src_prepare() {
-   default
-   find -name Makefile.in -exec sed -i -r \
-   -e '/^\tinstall .*COPYING /d' \
-   -e '/CFLAGS/s: (-O2|-ggdb) : :g' \
-   -e '1iCC=@CC@' {} + || die
-}
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable apparmor)
-   $(use_enable chroot)
-   $(use_enable contrib contrib-install)
-   

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

2019-08-06 Thread Jeroen Roovers
commit: d3e74c8c4ad797a1ee54d90213a3f872783f0e8e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Aug  7 04:47:36 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Aug  7 04:48:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e74c8c

www-client/opera-developer: Version 64.0.3401.0

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

 www-client/opera-developer/Manifest|   1 +
 .../opera-developer-64.0.3401.0.ebuild | 115 +
 2 files changed, 116 insertions(+)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index aff02ffc7ac..c19338cafb2 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,2 +1,3 @@
 DIST opera-developer_64.0.3380.0_amd64.deb 65949000 BLAKE2B 
41d0f602d3ca6c73de37912d9262c306e8b88a8466c98428762f5840b8d86aac2042bfd398703bf6a10fdb1731fdd731124066afb133736845fe6245b987b327
 SHA512 
bf1c2082029212cbeae43b9cf7196ea8efef50905e303e6bf1f51a1971ff8956bf2c5458b130e7e16a3f1c86d6ccfb5423bd4c37d2020426f325948f9462d1b9
 DIST opera-developer_64.0.3396.0_amd64.deb 65547890 BLAKE2B 
c61d9bd91416b7af05005fdf578441c35812c0bbaee77034e8ee14b9d5fdd2075f69af741c422feff7925f7aa5b4d454b5c73e231f75776c76b72a53b0d4
 SHA512 
37ecaf1d29f39433654116357256053056301b11339ccdfb1618bdc68f5d47678027547437b784df144cfcb52f687bc441ad74a9c8cc219901baf4c302523978
+DIST opera-developer_64.0.3401.0_amd64.deb 65538220 BLAKE2B 
36ebc9a86edfac9ec05783ed6f7d99b9f38a14b29d922a8091975f846efe85d02f3c19c0f782f21ae17715bd27ac924035f807a93a5fa4010ff7f31ef03163b5
 SHA512 
544ab99744a29dd9b2c7ade1f4aba9e5dae92f63f9e5217e4e4608ac4662b9c2cb3cd2f6ddf4ef097c27c76d01dd1178370b0a14d264681e17aa4f938623735b

diff --git a/www-client/opera-developer/opera-developer-64.0.3401.0.ebuild 
b/www-client/opera-developer/opera-developer-64.0.3401.0.ebuild
new file mode 100644
index 000..132f88d2236
--- /dev/null
+++ b/www-client/opera-developer/opera-developer-64.0.3401.0.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+CHROMIUM_LANGS="
+   be bg bn ca cs da de el en-GB es es-419 fi fil fr fr-CA hi hr hu id it
+   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
+   zh-CN zh-TW
+"
+inherit chromium-2 multilib unpacker xdg-utils
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="https://www.opera.com/;
+LICENSE="OPERA-2014"
+SLOT="0"
+SRC_URI_BASE="
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
+"
+SRC_URI="amd64? ("
+for uri in ${SRC_URI_BASE}; do
+SRC_URI+="
+   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
+"
+done
+SRC_URI+=")"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/libnotify
+   x11-libs/pango[X]
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+pkg_setup() {
+   OPERA_HOME="usr/$(get_libdir)/${PN}"
+}
+
+src_prepare() {
+   default
+
+   case ${ARCH} in
+   amd64)
+   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
+   rm -r usr/lib || die
+   ;;
+   x86)
+   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
+   ;;
+   esac
+
+   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
+   gunzip usr/share/doc/${PF}/changelog.gz || die
+
+   rm usr/bin/${PN} || die
+
+   pushd "${OPERA_HOME}/localization" > /dev/null || die
+   chromium_remove_language_paks
+   popd > /dev/null || die
+
+   sed -i \
+   -e 's|^TargetEnvironment|X-&|g' \
+   usr/share/applications/${PN}.desktop || die
+}
+
+src_install() {
+   mv * "${D}" || die
+   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
+   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   

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

2019-08-06 Thread Jeroen Roovers
commit: 2e1e1be563c71caa335efb747b4c41ab582a7618
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Aug  7 04:48:17 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Aug  7 04:48:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e1e1be5

www-client/opera-developer: Old

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

 www-client/opera-developer/Manifest|   1 -
 .../opera-developer-64.0.3380.0.ebuild | 115 -
 2 files changed, 116 deletions(-)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index c19338cafb2..58c4118d107 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,3 +1,2 @@
-DIST opera-developer_64.0.3380.0_amd64.deb 65949000 BLAKE2B 
41d0f602d3ca6c73de37912d9262c306e8b88a8466c98428762f5840b8d86aac2042bfd398703bf6a10fdb1731fdd731124066afb133736845fe6245b987b327
 SHA512 
bf1c2082029212cbeae43b9cf7196ea8efef50905e303e6bf1f51a1971ff8956bf2c5458b130e7e16a3f1c86d6ccfb5423bd4c37d2020426f325948f9462d1b9
 DIST opera-developer_64.0.3396.0_amd64.deb 65547890 BLAKE2B 
c61d9bd91416b7af05005fdf578441c35812c0bbaee77034e8ee14b9d5fdd2075f69af741c422feff7925f7aa5b4d454b5c73e231f75776c76b72a53b0d4
 SHA512 
37ecaf1d29f39433654116357256053056301b11339ccdfb1618bdc68f5d47678027547437b784df144cfcb52f687bc441ad74a9c8cc219901baf4c302523978
 DIST opera-developer_64.0.3401.0_amd64.deb 65538220 BLAKE2B 
36ebc9a86edfac9ec05783ed6f7d99b9f38a14b29d922a8091975f846efe85d02f3c19c0f782f21ae17715bd27ac924035f807a93a5fa4010ff7f31ef03163b5
 SHA512 
544ab99744a29dd9b2c7ade1f4aba9e5dae92f63f9e5217e4e4608ac4662b9c2cb3cd2f6ddf4ef097c27c76d01dd1178370b0a14d264681e17aa4f938623735b

diff --git a/www-client/opera-developer/opera-developer-64.0.3380.0.ebuild 
b/www-client/opera-developer/opera-developer-64.0.3380.0.ebuild
deleted file mode 100644
index 132f88d2236..000
--- a/www-client/opera-developer/opera-developer-64.0.3380.0.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB es es-419 fi fil fr fr-CA hi hr hu id it
-   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
-   zh-CN zh-TW
-"
-inherit chromium-2 multilib unpacker xdg-utils
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="https://www.opera.com/;
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="
-   https://download1.operacdn.com/pub/
-   https://download2.operacdn.com/pub/
-   https://download3.operacdn.com/pub/
-   https://download4.operacdn.com/pub/
-"
-SRC_URI="amd64? ("
-for uri in ${SRC_URI_BASE}; do
-SRC_URI+="
-   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
-"
-done
-SRC_URI+=")"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-pkg_setup() {
-   OPERA_HOME="usr/$(get_libdir)/${PN}"
-}
-
-src_prepare() {
-   default
-
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   x86)
-   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
-   ;;
-   esac
-
-   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
-   gunzip usr/share/doc/${PF}/changelog.gz || die
-
-   rm usr/bin/${PN} || die
-
-   pushd "${OPERA_HOME}/localization" > /dev/null || die
-   chromium_remove_language_paks
-   popd > /dev/null || die
-
-   sed -i \
-   -e 's|^TargetEnvironment|X-&|g' \
-   usr/share/applications/${PN}.desktop || die
-}
-
-src_install() {
-   mv * "${D}" || die
-   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
-   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-   xdg_mimeinfo_database_update
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-   

[gentoo-commits] repo/gentoo:master commit in: app-arch/upx/, app-arch/upx-bin/, app-arch/upx-ucl/, profiles/updates/, ...

2019-08-06 Thread Joonas Niilola
commit: dfd75bb94194a6e260391fef86df20f35307d57e
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Tue Aug  6 18:07:58 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Aug  7 03:07:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfd75bb9

Rename app-arch/upx-ucl to app-arch/upx

Renaming package to more common name. Fixed all (R)DEPENDS in tree.
This PR is part of https://github.com/gentoo/gentoo/pull/12087

Signed-off-by: Azamat H. Hackimov  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12624
Signed-off-by: Joonas Niilola  gentoo.org>

 app-arch/upx-bin/upx-bin-3.91.ebuild  | 2 +-
 app-arch/{upx-ucl => upx}/Manifest| 0
 app-arch/{upx-ucl => upx}/metadata.xml| 0
 app-arch/{upx-ucl/upx-ucl-3.91.ebuild => upx/upx-3.91.ebuild} | 1 -
 media-video/tsmuxer/tsmuxer-2.6.11-r1.ebuild  | 2 +-
 profiles/updates/3Q-2019  | 1 +
 6 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-arch/upx-bin/upx-bin-3.91.ebuild 
b/app-arch/upx-bin/upx-bin-3.91.ebuild
index d0bd63bbbf4..c794d098daa 100644
--- a/app-arch/upx-bin/upx-bin-3.91.ebuild
+++ b/app-arch/upx-bin/upx-bin-3.91.ebuild
@@ -19,7 +19,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
 RESTRICT="strip"
 
-RDEPEND="!app-arch/upx-ucl"
+RDEPEND="!app-arch/upx"
 
 S="${WORKDIR}"
 

diff --git a/app-arch/upx-ucl/Manifest b/app-arch/upx/Manifest
similarity index 100%
rename from app-arch/upx-ucl/Manifest
rename to app-arch/upx/Manifest

diff --git a/app-arch/upx-ucl/metadata.xml b/app-arch/upx/metadata.xml
similarity index 100%
rename from app-arch/upx-ucl/metadata.xml
rename to app-arch/upx/metadata.xml

diff --git a/app-arch/upx-ucl/upx-ucl-3.91.ebuild b/app-arch/upx/upx-3.91.ebuild
similarity index 98%
rename from app-arch/upx-ucl/upx-ucl-3.91.ebuild
rename to app-arch/upx/upx-3.91.ebuild
index 6950dc176bd..f9921d66e9a 100644
--- a/app-arch/upx-ucl/upx-ucl-3.91.ebuild
+++ b/app-arch/upx/upx-3.91.ebuild
@@ -19,7 +19,6 @@ KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
 IUSE="lzma zlib"
 
 RDEPEND=">=dev-libs/ucl-1.02
-   !app-arch/upx
!app-arch/upx-bin"
 DEPEND="${RDEPEND}
dev-lang/perl"

diff --git a/media-video/tsmuxer/tsmuxer-2.6.11-r1.ebuild 
b/media-video/tsmuxer/tsmuxer-2.6.11-r1.ebuild
index 8f2338996d7..f9c3f8f54b7 100644
--- a/media-video/tsmuxer/tsmuxer-2.6.11-r1.ebuild
+++ b/media-video/tsmuxer/tsmuxer-2.6.11-r1.ebuild
@@ -15,7 +15,7 @@ IUSE=""
 QA_FLAGS_IGNORED="opt/${PN}/bin/tsMuxeR opt/${PN}/bin/tsMuxerGUI"
 
 DEPEND="|| (
-   >=app-arch/upx-ucl-3.01[lzma]
+   >=app-arch/upx-3.01[lzma]
>=app-arch/upx-bin-3.01
 )"
 RDEPEND="

diff --git a/profiles/updates/3Q-2019 b/profiles/updates/3Q-2019
index 0996932df09..ae1058e25a1 100644
--- a/profiles/updates/3Q-2019
+++ b/profiles/updates/3Q-2019
@@ -2,3 +2,4 @@ move dev-python/CoverageTestRunner 
dev-python/coverage-test-runner
 move media-plugins/kipi-plugins kde-apps/kipi-plugins
 move kde-misc/yakuake kde-apps/yakuake
 move kde-apps/kjots app-text/kjots
+move app-arch/upx-ucl app-arch/upx



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

2019-08-06 Thread Zac Medico
commit: 752e72dc3d2f6450d2c5583355bde4782e0cd139
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Aug  7 02:07:36 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Aug  7 02:08:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=752e72dc

app-emulation/skopeo: Bump to version 0.1.39

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

 app-emulation/skopeo/Manifest |  1 +
 app-emulation/skopeo/skopeo-0.1.39.ebuild | 55 +++
 2 files changed, 56 insertions(+)

diff --git a/app-emulation/skopeo/Manifest b/app-emulation/skopeo/Manifest
index e7852105860..c49672d8a48 100644
--- a/app-emulation/skopeo/Manifest
+++ b/app-emulation/skopeo/Manifest
@@ -1,2 +1,3 @@
 DIST skopeo-0.1.37.tar.gz 2766509 BLAKE2B 
59e3f4cf37694b4ae59fe4eca6afd8abe4f7ab1aec3c0cee409be6f0f648fd2929092ee9b5a2b167c5041202dac908cd39f693d8ae8eebf621be47f302bd885c
 SHA512 
e2de3c65f864572fe74ca55ee107703a49855f0da71c440784b06d13ed724456cf7bf30e18a5cb15cf2e136edc688b56321cf7838a2cc66f39c4ea9d9686441e
 DIST skopeo-0.1.38.tar.gz 2947365 BLAKE2B 
1d2d6ea2ed677f2b068ecca9b8dcee9d31280acb3f7acd8e0a59321d178244b506f4124eba8dd0519a3f5b307a6001d05a093cdf93189eccb55cf7c9cc41895b
 SHA512 
83e53eb7632761eb444d4f824b6fee7a2e265e386fd1ba58e2d3194750f794a0e1cdc94a76222d12f589f851c459b165756661a76c09cc9c7dd9b2d6fff2b39f
+DIST skopeo-0.1.39.tar.gz 3850036 BLAKE2B 
e635be475f22cc25ab98e446424f4a6b0babe34f827a73f9c9c1533db782490e9af94e759ac78fbeeec1c0e1fa42eef9d09fb4e7ff1f4df654f65fe4c1a9f7b0
 SHA512 
c4aadc40f9d637c628cd96c204b3e9bc3a928c145521bed2e5046508fc936ff99442dda8b4a4cdd85c4d04e64a9ccee5ea8d563c6ebf4e6020d50d96b921716c

diff --git a/app-emulation/skopeo/skopeo-0.1.39.ebuild 
b/app-emulation/skopeo/skopeo-0.1.39.ebuild
new file mode 100644
index 000..49a0b85e587
--- /dev/null
+++ b/app-emulation/skopeo/skopeo-0.1.39.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+EGO_PN=github.com/containers/skopeo
+COMMIT=1cf1e06
+inherit golang-vcs-snapshot bash-completion-r1
+
+DESCRIPTION="Command line utility foroperations on container images and image 
repositories"
+HOMEPAGE="https://github.com/containers/skopeo;
+SRC_URI="https://github.com/containers/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+COMMON_DEPEND=">=app-crypt/gpgme-1.5.5:=
+   >=dev-libs/libassuan-2.4.3:=
+   dev-libs/libgpg-error:=
+   >=sys-fs/btrfs-progs-4.0.1
+   >=sys-fs/lvm2-2.02.145:="
+DEPEND="${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+RESTRICT="test"
+
+src_compile() {
+   local BUILDTAGS="containers_image_ostree_stub"
+   set -- env -u GOCACHE -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" \
+   go build -ldflags "-X main.gitCommit=${COMMIT}" \
+   -gcflags "${GOGCFLAGS}" -tags "${BUILDTAGS}" \
+   -o skopeo ./cmd/skopeo
+   echo "$@"
+   "$@" || die
+   cd docs || die
+   for f in *.1.md; do
+   go-md2man -in ${f} -out ${f%%.md} || die
+   done
+}
+
+src_install() {
+   dobin skopeo
+   doman docs/*.1
+   dobashcomp completions/bash/skopeo
+   insinto /etc/containers
+   newins default-policy.json policy.json
+   insinto /etc/containers/registries.d
+   doins default.yaml
+   keepdir /var/lib/atomic/sigstore
+   einstalldocs
+}



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

2019-08-06 Thread Mike Pagano
commit: c4bc8b2b7dfeaf5f70b5c55c65b371f21ec24bd1
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Aug  7 00:02:49 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Aug  7 00:03:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4bc8b2b

sys-kernel/gentoo-sources: Linux patch 5.2.7

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-5.2.7.ebuild | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index e749b7bc3ef..00afdd31cea 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -52,6 +52,9 @@ DIST genpatches-5.2-6.extras.tar.xz 1724 BLAKE2B 
1512792ee07dd6e623d19650024254f
 DIST genpatches-5.2-7.base.tar.xz 276376 BLAKE2B 
f6f47455bf86c063e6c137097c048b1edd251fd35b21a38fd2f90ebd79fee030dd1648a2652f69917d9ab981e9354976ad470ac62d84b055dbf8b4a0b7e5fbc4
 SHA512 
c5ad578977319c79bb2941ec7a6fa675c077b108078a309ddbfe3a8aec62168279e54472ff518e50a3f5bdc2315123e11594f7b39cc47c81367db26dd44494b1
 DIST genpatches-5.2-7.experimental.tar.xz 5396 BLAKE2B 
5e1582e81aa8548fd0ffc822a81981b771e28adde714e544a121a60e47c731c2643e9190bd2e8221b3a79c425898aeb67b2dde1d93be97d48e0f6f4faac40614
 SHA512 
cf21535d0f4b8e6cc2df0df1a9203ca154ecbbc15961a2441f492d97b24b3828a9fa83491ffa98486f8ea7fe886d0ec3cf523bfcec809c1f8117af5c4b802a76
 DIST genpatches-5.2-7.extras.tar.xz 1724 BLAKE2B 
c863a9158f15a82fd68a662a414bb1f369cd891f79966796671d90ff72d6b3754b873d994c073a4f4a62cf2aad880e6ffecd8cca198c98b35d8867af969d
 SHA512 
8cce095202ea9709b398fe13d70f9cdd3abe5f32190e0890c9a14a4c19d57116d4599d754e05b7964d16902e9c66992c43b9ef81918ac691c8d4c0790f1cb541
+DIST genpatches-5.2-8.base.tar.xz 315228 BLAKE2B 
6d5b95ef08e7167d11ae7981fc8ad57e669ddaad6643e7d8ac89199da803116cafdc4e8aae2cd62eda616bb39577850c0769f3e586f959485e0fd66931a6833a
 SHA512 
51201c550994f37fbd987dfae7bf52d97f8636de4c3abc5e7a44d95b20f43ee22ea443172a89d02d7770877e0b2f2404f9b46146486a1abdab005409447151b8
+DIST genpatches-5.2-8.experimental.tar.xz 5388 BLAKE2B 
eebfc7db20593cdd6ddbbf856dba7d4fadb5081ea5d840a212ce42267f77014bf830dc7782afeeb8646d645539d126b54c67194eaef65f5b6c660e8e8dcd9501
 SHA512 
564a0f4a717118b5610946cc181d873866acfd27e7eeaf704e6174b816c0a07febf30d993ed7a2e98c1e82c2931b8319d21cde51ebc7272546e812221c9e
+DIST genpatches-5.2-8.extras.tar.xz 1724 BLAKE2B 
c9ca279ad88dde2540d7218a782647996432b4338e4069ee20d85fe4a0c49b913a85e977a6fb337b5c12d42531f9cd3545666b9b052bb1c1f5dac055e2cd0969
 SHA512 
e492612dcc12a25744746dff2667311ce554c189787beccd4cf415f0837eda158dedef222d3a098309123caf15ce5f1d6c32f377aae9dbab115164c7a3008edd
 DIST linux-4.14.tar.xz 100770500 BLAKE2B 
85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a
 SHA512 
77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8
 DIST linux-4.19.tar.xz 103117552 BLAKE2B 
1dbf16cf410867412d17568fe42bc1e90c034183b654d270b650621ff7664a321950943d0639205bc1ee7ef6210be170c1f2c785a042ed8a4ec5e3a486d890e0
 SHA512 
ab67cc746b375a8b135e8b23e35e1d6787930d19b3c26b2679787d62951cbdbc3bb66f8ededeb9b890e5008b2459397f9018f1a6772fdef67780b06a4cb9f6f4
 DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb
 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.2.7.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.2.7.ebuild
new file mode 100644
index 000..7b8171678c2
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.2.7.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="8"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2019-08-06 Thread Mike Pagano
commit: 4e9dfeee3808edaa002351adcadfdf1c3b7d5a4c
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Aug  6 23:54:24 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 23:54:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e9dfeee

sys-kernel/gentoo-sources: Linux patch 4.19.65

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.19.65.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index a78a83f2e51..e749b7bc3ef 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -19,6 +19,9 @@ DIST genpatches-4.19-63.extras.tar.xz 17484 BLAKE2B 
d76361562c679a44863b7d9a815e
 DIST genpatches-4.19-64.base.tar.xz 1741080 BLAKE2B 
9aa6af83c0de0f6884575c5e495dc3234ad0cc9e26bb4f83a2f07375d50da437fae3805d16c6b9a60413ba91121ba3ee905c506949a062f9859711f65d2217cf
 SHA512 
cc58b8a90aa04d1d687601adbd131a01a507ef2d9b576ef7ebff45427c191035c99486f8a500db751a7825bcfc2b666b50093d2b89371593408f4ce786cacc5d
 DIST genpatches-4.19-64.experimental.tar.xz 5808 BLAKE2B 
26874657d9f6bcaa8165d5cdda72267e5a8fca66ee4e63b3f53571b546af1acf5638e3bc9b874499f624ad34b22e0560be502b11800efa9bf9862272d0ebbbeb
 SHA512 
67137af993de41e924863b779a1d1c5438d945f6b3a4ba9d970f3d99122e4dd935bedbeaa58f49d2ede60fc6256292b56fe36ffc2f6bb6e12338090cc0c5a052
 DIST genpatches-4.19-64.extras.tar.xz 17484 BLAKE2B 
0d4e275ba9345d765a8352357d63ca63016e5e43e68b6953baf4069eb92748254771e50decb466621731d19a3e51c75db096d3c0f0cbea8b0f4f9dc3c6bd18a6
 SHA512 
b41961271139b98a28f0066df27cfcc3479989ec32dba5a3bb6db3291c9461f0a5648985ff2d943dcebfc528ecd6ec8b0560577a9509c71271f126079b1a0c0c
+DIST genpatches-4.19-65.base.tar.xz 1759932 BLAKE2B 
bede150fcf424733057be23d3002c8eeb985c24a2b4502e22d690286af42574cfa356f8cc2d48e7f357968c10c35b916f1ee808e3449d60860d4f53a003b5570
 SHA512 
a331788c0d07b404049ad383a377d42346cdf14ca5b59086a438b4c56a2e1dbde24a3caf2369f145c5f8a337774299f0a0bee5f5af4d8de292431386cf4b744e
+DIST genpatches-4.19-65.experimental.tar.xz 5804 BLAKE2B 
983e47784e8aa205896467e6fcfa373d61694c69231b1702ae5e2e0cf0e6c14c45981f16884ff34838d8ed30fb03afd46112576ca369ffeb31abfca100095c1b
 SHA512 
cc2d4e6a5ff1a03f65adc4e6b08302743089f975b571369cd8f9e35287f12f9bb86fa2d079b17e003a378560ccb362577893ab11ea42100f84f5ae1303edf679
+DIST genpatches-4.19-65.extras.tar.xz 17484 BLAKE2B 
aec600b5ff38fe28fc56ea000c575af390e902dfb77c819d3e74c67cc45d1373a0e8a82f76465acbeb8fad8eb9761ce1a5fd4e97fef1c465966c4881488f29b9
 SHA512 
e4abcd587ae9376366513e3bd09b0b21752680e7d075b03ac20673ccdb1751fabcf8f2dab638c7e37a02b6b4508bbec10076791e87ac72f783b696664775
 DIST genpatches-4.4-185.base.tar.xz 2920876 BLAKE2B 
7dffd426998699bd64aeea62f0c1bae1c41d39c894182ff667e257d5dbce84a175185f68044f324aca6b0d921933c4270fe5f304e491405182aee0371a5026dc
 SHA512 
7e6d92800e79049851cf9230b323e50fd370f293372f850e6fc7fde850bfd166161dadc98575f6abdb4a06c733b31b68476645a0a6cbcf2321c4a28dde99bd63
 DIST genpatches-4.4-185.experimental.tar.xz 83300 BLAKE2B 
2942b87434124f9de90e69c34f5dd67ecfc84fd4b2362e0a9f180d4af77f70ab3a0f35d513eacc7b1080f611b2082feb36637b8bc38870e09f225fee42625a34
 SHA512 
4e5890679d5a89864d2dfd00c963259a08476b80f57728bfd4060c9057eec6173e5582fccc43cd3213e643f7fef88cb4a59a22ec7bac41652df2121aba6646d8
 DIST genpatches-4.4-185.extras.tar.xz 16464 BLAKE2B 
54b3a1a6ee38b7cffc363b576acf97f3d229b745241758bcb568d18c1b7b5a7640fdd6d30cb951efef72bd7a1bf9a39c834199aaeef2b52ad459a2f6c64e
 SHA512 
e254d39a766212d9b7bcd90945f623ecdfa97ab861d6be728e4afd4d4407fbefca66f1fb129f6af16844ad4fe82539118188f4248f8c1f3ab2b8a89d8fa8a3e3

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.65.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.65.ebuild
new file mode 100644
index 000..9af96e59d2c
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.65.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="65"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2019-08-06 Thread Mike Pagano
commit: 83166117604e0017b25ecca17bf188814ab2792e
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Aug  6 23:52:15 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 23:52:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83166117

sys-kernel/gentoo-sources: Linux patch 4.14.137

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.14.137.ebuild  | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 9f93d29c96a..a78a83f2e51 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -7,6 +7,9 @@ DIST genpatches-4.14-144.extras.tar.xz 17492 BLAKE2B 
be4b6a7052029cdc8813ba7270e
 DIST genpatches-4.14-145.base.tar.xz 3119040 BLAKE2B 
6ee6b04473c7bcf84da912113b9bb4f8d507f21ee006e99dc6725a6ab57687be1592e6b921b65edce748ffef4c38b46bbfd797386ba07406eefcca5a318da117
 SHA512 
0b2a0323035a915fe0fad9b208e224e7d35677634cf558bb99df66d6deff84f698570f4dbba829225737fa2aef36ef86d2baea9e17aca10b86fe7f383ac11af8
 DIST genpatches-4.14-145.experimental.tar.xz 5224 BLAKE2B 
c8f7c8f8209579bea2657669023503ef03a150639dbdb61938f29e102602fd5b750e02490396086b2b58dc9075a472bffc32e58f8c645bb9ffe43e6d2adae4f3
 SHA512 
6bc497c39bf1be7bf835e33cc6bfceeb35ebb18260273d1aa8d5a064016dec1d8b3c34f0948215c4b5e7dbbc0d30b4fe1ce0cb39edd4ad2f2d0619feb7f4634b
 DIST genpatches-4.14-145.extras.tar.xz 17500 BLAKE2B 
013a7e058f905dab223cc2756352eb84eeaaefd37c4707fba51b0fc9ff0a68710811a1b901566b783a886706ab27209afc0e73f5baaba1b310b1e614ceacfc39
 SHA512 
97b872305a816daa88906d31189d1d7d1ca1508215b71142887ecdbb82e75b022fbc74b5665617e6bb71992a5544f4f5479220664e0477d03ca12328709bddda
+DIST genpatches-4.14-146.base.tar.xz 3132860 BLAKE2B 
0d944990fa54c883bd3f5ea352151b79f1c7c268ea70c5fc0bc2e6e7d80d09aa7ca4801c34b5a2a5b0cbe7a9328b5c805952cfb734bb950d98f7b421f60fae59
 SHA512 
20653cac133e1598c57b2f0374ffde046feeae7c1e87ba72f48e73245c5250738db486ae7eae3a22c5fd7ed6963e35410a94bb184f502d7226038a047b8e3ea3
+DIST genpatches-4.14-146.experimental.tar.xz 5216 BLAKE2B 
c9325f3cafa25d6207fb2c16b18828230330dd11a12b25b2172e111fb8fb77a63e1d6fbb09b1c263fde14f154b412de1cbc90652126dc9ab586e26899390c5a5
 SHA512 
4493f3f70c8862cf3c4a155e8c01d3cf5020fc5892e374f5704331042da1ddff115880c009b1a4dd3c32272d15851ccc00db04cbc28491b0f2ef1f0c3dade8a1
+DIST genpatches-4.14-146.extras.tar.xz 17492 BLAKE2B 
5b59d6de55b9b36194c399460e9787a79daaa397f88d49d7266545164c3b3b17cb2b9d15907ec8e0a40055f460886fff998d6d58697b15124fb914550e4b7827
 SHA512 
49d62286e324ce563fa5051912e050af060dde1501049fc3ae1b98f0bef3416b4312f779ed521ff926121a5bf800ee748e116380d55c45624eb0b6ca0ecbc7b0
 DIST genpatches-4.19-57.base.tar.xz 1555700 BLAKE2B 
e1d6d04de6b22dadf737a927883580aff444d18e2b16010ea5b0cc64a7c14f66615f6bbe117edc3b4a09df93e70b2b4bfb2183509bc539922da82de3c59fe508
 SHA512 
598f7f85cdd5f63e9cdadc2e33ac556e71a0711bfbc518b7f1b0f77f76c65a68c4844a160fe7092f7c2ac3b123c0aeaa147064007fae03ff97b3e1b16ee4a01d
 DIST genpatches-4.19-57.experimental.tar.xz 5808 BLAKE2B 
44f72723d72260c39200227610fc4c952bac4e2d767020ad69f8f58bc68e154a30772e612c799aef4f0ca52906cb02a326275dd3d3286c6f0bf846fd3303e2b2
 SHA512 
94a00f9b6c72486f869245176e311a6fffd6d6b4a0a3b533b19b25d4571f8c149d0ed34a90357cd43135596f9901b25af7bc8cec9f8bb78748a12082a48f79bb
 DIST genpatches-4.19-57.extras.tar.xz 17476 BLAKE2B 
6ba89592e66f964600d509d1ed4e01c5e59dbb00df75cc7fbde3d3aa6505e50722c4d4b565df03a595dd4fc55d89ce133421fb7e29816c751559929198d3842d
 SHA512 
5e67c9f60306c915a1645b522039c4f4436073babaaae8029beb53104f407f242d8f6bf539b4c54e2ce9494fb271e5bfa33da1e3992ae6e1ecb2627aaf216cb3

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.137.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.137.ebuild
new file mode 100644
index 000..87fe56a66de
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.137.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="146"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



[gentoo-commits] proj/linux-patches: New tag: 5.2-8

2019-08-06 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 23:45:58 2019 +

New tag: 5.2-8




[gentoo-commits] proj/linux-patches: New tag: 4.19-65

2019-08-06 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 23:37:32 2019 +

New tag: 4.19-65




[gentoo-commits] proj/linux-patches: New tag: 4.14-146

2019-08-06 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 23:19:32 2019 +

New tag: 4.14-146




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

2019-08-06 Thread Mike Pagano
commit: e71fb1ee062efe8c98246219eb6fd69f938af863
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Aug  6 23:10:17 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 23:10:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e71fb1ee

sys-kernel/gentoo-sources: Linux patch 4.9.188

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.9.188.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index cffa0f6c608..9f93d29c96a 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -37,6 +37,9 @@ DIST genpatches-4.9-191.extras.tar.xz 17364 BLAKE2B 
23a8e337ea6f21eb1b8ba7c8c3e3
 DIST genpatches-4.9-192.base.tar.xz 3286612 BLAKE2B 
94dbb3dcafe4f12511cf090d67e3087dcc2cca0c9d4aba8e2105fe4f5a5a92960fea1219b6252734a0b5a6c6fbc15b645eb047c122236438260daf95b22c5396
 SHA512 
2075538053fd2c2434a5b083ecf87eb0d8d36597f2cb3568c892adcf92d29447d45937ecaa807ee62ef733c8ea84185ad2cc25ff3530764184b78513bba34451
 DIST genpatches-4.9-192.experimental.tar.xz 106372 BLAKE2B 
ec0012dba4ddd749c345ee1268d14af8ce3b337ff79061c9b07be571ca67034696093f5f245ecf975b529118749b5d24a5c7ca688ca57725aac345232277
 SHA512 
9d9bb51359ce3815b216d5d329844bf99c6367296c6e96503fb67e3608d330b9acde6aa1098a2c362ca1de165e9e01893e226ac37e228d68a807b0846a777cae
 DIST genpatches-4.9-192.extras.tar.xz 17356 BLAKE2B 
16d56adc7776086b2882cdc6d57d1dd7f807bce762d1d4e3ea6e9834e580971c2376c1bc888e83b24d78a2aecd7e509538cdeee07e6f8e37161acce6fc6884ae
 SHA512 
a214a7961ad77956d52d28439bb67f03fa41be4c0e1946ee2f78a0b24b91da5a3f02e467e33d9e7463af3caff0008d6c770617545b121012e95cbbca15b5c5df
+DIST genpatches-4.9-193.base.tar.xz 3295392 BLAKE2B 
35e47e523f5ec0db9344398a449286af7610045ad0cbe76962f07dca55eca3a6349b68cd5d7f51425d8d11813774fdec423639082b64bba3aa029e68cf87d5c8
 SHA512 
19c397c63bfc72fb470638a2c64b3d0b29181906f6b06a077b7eb37b536789f32dee7ffeadda0f91d8c9eafcdce4e0ad1fffaad7f9832ca457700ef13f0cadca
+DIST genpatches-4.9-193.experimental.tar.xz 106384 BLAKE2B 
a2a0b492c93af5f29c776e9b259ad16dd81b164049851c42f99919a41dfca087d15b5796f9874ebec4b385a323ab83629d74a29b88e59458e78eea315d733d40
 SHA512 
d7a22eafc5a3077858f10fb2724b2bdc749247590e63e0e21909ff281550dc20f3b6cfe78dcfbe9407e40fa1cd58fed0b05a63d8f0d59dcaf6b3214945fc82f5
+DIST genpatches-4.9-193.extras.tar.xz 17352 BLAKE2B 
9189100ee8e67b6f1f3bc362d6b760994dec7ab80547acf465d988625e8239777f8f59317016c14a87190ca9f2141a4507892552ec291866a04d81ec13f5892e
 SHA512 
289aad0410ec7b130bc647a076afbf6062e4fa6c981f1a88fd84818e69bad7aa82228221d4f76157e479209e114f00f503e8bf2b8b29ec33b38a20bccd680ad7
 DIST genpatches-5.2-6.base.tar.xz 265524 BLAKE2B 
dce32f49af02d34432c43063e197b8fdc9d2436ff9ef947f6a5c807a719d63777a2c394b7582cd74e4a9cac12d7e993c2753fa42a698f6a11cd13be39f0eef04
 SHA512 
2dae1e73eb28020886af2921bc8f34519a92b1e6d7cdee9517e38078cdcb84afda08eeda7154e4513c35d83def74170c89c0ed76b116d6b3eb3d8749ea7a461a
 DIST genpatches-5.2-6.experimental.tar.xz 5388 BLAKE2B 
6f95c1d6213b8975ba7bf63a90299426c96d85b6ba3b5d87804fc5561aad0f91c2623a825c73fffab2426a70ebedb53f292c4fc6645ba05af0d4673074023985
 SHA512 
c728b030fc9b204d7d4e4d2c7ff19661095b62a16e0d2e3d8ccbc281e23b514ff32d21313e92ddf8e681ee5526982227711d606b7f730831e50dfce807217738
 DIST genpatches-5.2-6.extras.tar.xz 1724 BLAKE2B 
1512792ee07dd6e623d19650024254fe5bd93726b2198fe99f8fa3d8b27c4dc465114ed75d0c0f4bbe082a70fe8bf0af47735d065f6ba4d24d4884a023866368
 SHA512 
a6995ab3b3b49603601580628af0d15b80272a7f817368e99d37884b1d175bafd3f59e20b6cafd83baa7d6823618fb82b31c6119d6710d4819e88760223e7987

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.188.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.188.ebuild
new file mode 100644
index 000..e7b5ed2c163
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.188.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="193"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2019-08-06 Thread Mike Pagano
commit: f17b155ffc729b6aeed91a0f8ee6d4ad6c5b04cc
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Aug  6 23:07:15 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 23:07:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f17b155f

sys-kernel/gentoo-sources: Linux patch 4.4.188

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.4.188.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index bf273303ed9..cffa0f6c608 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -25,6 +25,9 @@ DIST genpatches-4.4-187.extras.tar.xz 16464 BLAKE2B 
a36ba91b47bed7dd45282879e71a
 DIST genpatches-4.4-188.base.tar.xz 2990832 BLAKE2B 
4d97eeedd013ce1bd2d61376d4e0d66d0a8b1f0d559540cbb9605b0baa449cab96d81bff082027998858b2dab107e9e0d5a9bbf7b1a0ffb48c9d60ffeaa21dfd
 SHA512 
1cf4a755020902cf97ddd3a2ad4486d76fc0a2983fc051b8671cf7c0c7c6048e51161a41283b8e8265bf44d6466472df0378dc2bb32fb9d90205111844cc2a7e
 DIST genpatches-4.4-188.experimental.tar.xz 83308 BLAKE2B 
e9cdec4fe7df2c439440c13c25166113799a18605bd6d92104f591325775fb5ef15b8de1041f5b99da08cd36b71d957adc8d8790ec9501eedf0b2de7fc79a657
 SHA512 
5c6ec202517aca852b6ceea922ee9f309fddc2dffd387547466b5d0b3d0f7d1e1d6238d2b0bd4c0bada890dad33038f54e4f71e07cae16d55fdbcc85f9e2
 DIST genpatches-4.4-188.extras.tar.xz 16472 BLAKE2B 
e34f19303444bffa23718b709a49aafb40248af3419a0d76030aa19b63096fcb0ef3f352220ed2628c0eb3f0ea40326d55a634bd4d59c189c60c4d03c2b6de1f
 SHA512 
751bdef648ab5b00b6735fd98624b1f1d01ed52fee1bedcd878985eddfeacd58e6df4654900ac49c58aece9e95c2b34a7847924d79a00150446667eef3d86241
+DIST genpatches-4.4-189.base.tar.xz 2995088 BLAKE2B 
8eabe989442a88fc1164d8cf48c92032ba8214b04f2f1f1966c9169932296b384560a1b93e6ee3e8c22f47e7ca003b7413d7b7600e61f4760d84e305b72d710f
 SHA512 
94aa314108f020093c5aa47c31ec76462f66fbe643650349005530f5f5f889f9584c4ef56fd0594fec8bc92b52241fe4339168844861094d1319c1171eb422f7
+DIST genpatches-4.4-189.experimental.tar.xz 83308 BLAKE2B 
b5802779aa1b33bfa7676adcf67dae01e85b7730a59699bde3b7c94c07e7b7b2004c0c0dea53b58eb53b3e0b429ba797591febc82d5bc4c8d91fa07d7437929f
 SHA512 
175ffef8b0126466d040ee244704c6d71e02da1e4b9222facbe92a5b3938fbb8b22b95d25b6fd32719cb6111efc4e7f0cfaa4a7d0deb66d8315fd20a2a31e31d
+DIST genpatches-4.4-189.extras.tar.xz 16464 BLAKE2B 
52cc5056622961ff922a18eec20853af100b7570f84c75f919ec98e1e95941ca471732f78fd696e6c27e7c350b3ddb077abd0c25f163c73944a518f4145f45fe
 SHA512 
4e33aedf56861f242117aeaa733bef4ddfe5b786f81cff12a0c4c49cca090a99031c263819c729750d319c24a21b496d883456061600a93d105ca3a725edb98c
 DIST genpatches-4.9-189.base.tar.xz 3186152 BLAKE2B 
888bed66a88257d6383cffaea48c3f46b4ab563773d68c16e28b1e1f786f59439251b1f7d638fa74abacabc56a9955102639b69e129a4af5ee5c91e9bc58da8a
 SHA512 
726d1d54a0e2a98e94043185e1051be2b76f94874c191bda742b98519110dd0bbf0821325b21f6af1f0ea1be5aac21409f82a560fc84a309736268d3e5c96977
 DIST genpatches-4.9-189.experimental.tar.xz 106380 BLAKE2B 
6d426845614e1fbb33773643711ff9fab2e73a02358d55438926a7bd05f4b7ce8046c115a0c5dc295ce6db18a6eda5b3ff71d0b413408073dfeb427797f070b0
 SHA512 
6b70e2fa5bf3a313261fcaf4a3037b713015dfb5ba7ad969e6e08a47f41f19df10ed3fd9f791daaf4fe15d0808ed2059c807dcbf1b12d0919fb254c8dab987be
 DIST genpatches-4.9-189.extras.tar.xz 17360 BLAKE2B 
c84fb1fecabed0d6c8c9e2e387e6cfab58d015e260927e6e9403a6c4088c2774c1e4f7e8b78d319e7147be1056dc273f2ed59905e1d3fed0064a1addc5113402
 SHA512 
7357730f4176ae49c5e221d1fdaae6529d0a48cd9046dd1954a0e18fc6c583ea3126a7aa7d15936caf19d45edae5baf6a87ffb4b68ebf5b58c6ffd94bd69a810

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.188.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.188.ebuild
new file mode 100644
index 000..50a91b92bef
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.188.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="189"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



[gentoo-commits] proj/kde:master commit in: kde-frameworks/kiconthemes/, kde-frameworks/kcompletion/, kde-frameworks/sonnet/, ...

2019-08-06 Thread Andreas Sturmlechner
commit: ff9d81c09bd392ffea22caf07162ee2d5899d14e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 22:27:19 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 22:27:19 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ff9d81c0

kde-frameworks: Add KDE_DESIGNERPLUGIN for ECMAddQtDesignerPlugin use

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

 kde-frameworks/kcompletion/kcompletion-.ebuild   | 1 +
 kde-frameworks/kcompletion/metadata.xml  | 3 +++
 kde-frameworks/kconfigwidgets/kconfigwidgets-.ebuild | 1 +
 kde-frameworks/kconfigwidgets/metadata.xml   | 1 +
 kde-frameworks/kiconthemes/kiconthemes-.ebuild   | 1 +
 kde-frameworks/kiconthemes/metadata.xml  | 3 +++
 kde-frameworks/kio/kio-.ebuild   | 1 +
 kde-frameworks/kio/metadata.xml  | 1 +
 kde-frameworks/kitemviews/kitemviews-.ebuild | 1 +
 kde-frameworks/kitemviews/metadata.xml   | 3 +++
 kde-frameworks/kplotting/kplotting-.ebuild   | 1 +
 kde-frameworks/kplotting/metadata.xml| 3 +++
 kde-frameworks/ktextwidgets/ktextwidgets-.ebuild | 1 +
 kde-frameworks/ktextwidgets/metadata.xml | 1 +
 kde-frameworks/kwidgetsaddons/kwidgetsaddons-.ebuild | 1 +
 kde-frameworks/kwidgetsaddons/metadata.xml   | 3 +++
 kde-frameworks/kxmlgui/kxmlgui-.ebuild   | 1 +
 kde-frameworks/kxmlgui/metadata.xml  | 1 +
 kde-frameworks/sonnet/metadata.xml   | 1 +
 kde-frameworks/sonnet/sonnet-.ebuild | 1 +
 20 files changed, 30 insertions(+)

diff --git a/kde-frameworks/kcompletion/kcompletion-.ebuild 
b/kde-frameworks/kcompletion/kcompletion-.ebuild
index 697bfe8d1f..84408aea3b 100644
--- a/kde-frameworks/kcompletion/kcompletion-.ebuild
+++ b/kde-frameworks/kcompletion/kcompletion-.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+KDE_DESIGNERPLUGIN="true"
 VIRTUALX_REQUIRED="test"
 inherit kde5
 

diff --git a/kde-frameworks/kcompletion/metadata.xml 
b/kde-frameworks/kcompletion/metadata.xml
index 2fdbf33d96..a50ada50ef 100644
--- a/kde-frameworks/kcompletion/metadata.xml
+++ b/kde-frameworks/kcompletion/metadata.xml
@@ -5,4 +5,7 @@
k...@gentoo.org
Gentoo KDE Project

+   
+   Build plugins for 
dev-qt/designer
+   
 

diff --git a/kde-frameworks/kconfigwidgets/kconfigwidgets-.ebuild 
b/kde-frameworks/kconfigwidgets/kconfigwidgets-.ebuild
index d77da6ffdc..c71db6236b 100644
--- a/kde-frameworks/kconfigwidgets/kconfigwidgets-.ebuild
+++ b/kde-frameworks/kconfigwidgets/kconfigwidgets-.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+KDE_DESIGNERPLUGIN="true"
 VIRTUALX_REQUIRED="test"
 inherit kde5
 

diff --git a/kde-frameworks/kconfigwidgets/metadata.xml 
b/kde-frameworks/kconfigwidgets/metadata.xml
index ac7f14a78a..82a5f5e018 100644
--- a/kde-frameworks/kconfigwidgets/metadata.xml
+++ b/kde-frameworks/kconfigwidgets/metadata.xml
@@ -6,6 +6,7 @@
Gentoo KDE Project


+   Build plugins for 
dev-qt/designer
Build and install man pages

 

diff --git a/kde-frameworks/kiconthemes/kiconthemes-.ebuild 
b/kde-frameworks/kiconthemes/kiconthemes-.ebuild
index 903cf5b8dc..1c50a64a73 100644
--- a/kde-frameworks/kiconthemes/kiconthemes-.ebuild
+++ b/kde-frameworks/kiconthemes/kiconthemes-.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+KDE_DESIGNERPLUGIN="true"
 VIRTUALX_REQUIRED="test"
 inherit kde5
 

diff --git a/kde-frameworks/kiconthemes/metadata.xml 
b/kde-frameworks/kiconthemes/metadata.xml
index 2fdbf33d96..a50ada50ef 100644
--- a/kde-frameworks/kiconthemes/metadata.xml
+++ b/kde-frameworks/kiconthemes/metadata.xml
@@ -5,4 +5,7 @@
k...@gentoo.org
Gentoo KDE Project

+   
+   Build plugins for 
dev-qt/designer
+   
 

diff --git a/kde-frameworks/kio/kio-.ebuild 
b/kde-frameworks/kio/kio-.ebuild
index 75ede5aa4a..8e39de8e3f 100644
--- a/kde-frameworks/kio/kio-.ebuild
+++ b/kde-frameworks/kio/kio-.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+KDE_DESIGNERPLUGIN="true"
 KDE_TEST="forceoptional"
 VIRTUALX_REQUIRED="test"
 inherit kde5

diff --git a/kde-frameworks/kio/metadata.xml b/kde-frameworks/kio/metadata.xml
index 20eec04366..a421f06e8a 100644
--- a/kde-frameworks/kio/metadata.xml
+++ b/kde-frameworks/kio/metadata.xml
@@ -6,6 +6,7 @@
Gentoo KDE Project


+   Build plugins for 
dev-qt/designer
Enable permanent storage of passwords for 
kpasswdserver with kde-frameworks/kwallet

 

diff --git a/kde-frameworks/kitemviews/kitemviews-.ebuild 
b/kde-frameworks/kitemviews/kitemviews-.ebuild
index 

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

2019-08-06 Thread Andreas Sturmlechner
commit: 604c9a3848d1b9eb43ffa4fb28f9f208299ba994
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 23:02:09 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 23:02:09 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=604c9a38

profiles: Drop obsolete kdevelop-5.3.80 package.mask

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

 profiles/package.mask/kdevelop-5.3.80 | 6 --
 1 file changed, 6 deletions(-)

diff --git a/profiles/package.mask/kdevelop-5.3.80 
b/profiles/package.mask/kdevelop-5.3.80
deleted file mode 100644
index 6cd92f1f97..00
--- a/profiles/package.mask/kdevelop-5.3.80
+++ /dev/null
@@ -1,6 +0,0 @@
-# Andreas Sturmlechner  (22 Jul 2019)
-# KDevelop 5.4 beta1 mask
-# Unstable release
-~dev-util/kdevelop-5.3.80
-~dev-util/kdevelop-php-5.3.80
-~dev-util/kdevelop-python-5.3.80



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

2019-08-06 Thread Andreas Sturmlechner
commit: 90264a0c378dc7497df407cf4c40db0217538225
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 21:46:06 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 21:47:33 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=90264a0c

dev-util/kdevelop*: Drop 5.3.80, 5.4.0 bumped in Gentoo ebuild repo

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

 dev-util/kdevelop-php/kdevelop-php-5.3.80.ebuild   |  52 
 .../kdevelop-python/kdevelop-python-5.3.80.ebuild  |  47 
 dev-util/kdevelop/kdevelop-5.3.80.ebuild   | 134 -
 3 files changed, 233 deletions(-)

diff --git a/dev-util/kdevelop-php/kdevelop-php-5.3.80.ebuild 
b/dev-util/kdevelop-php/kdevelop-php-5.3.80.ebuild
deleted file mode 100644
index 736a5e6971..00
--- a/dev-util/kdevelop-php/kdevelop-php-5.3.80.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_DOC_DIR="docs"
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="true"
-KMNAME="kdev-php"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="PHP plugin for KDevelop"
-HOMEPAGE="https://www.kdevelop.org/;
-LICENSE="GPL-2 LGPL-2"
-IUSE=""
-
-BDEPEND="
-   test? ( dev-util/kdevelop:5[test] )
-"
-DEPEND="
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(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-pg-qt:5
-   dev-util/kdevelop:5=
-"
-RDEPEND="${DEPEND}"
-
-# remaining tests fail for some, bug 668530
-RESTRICT+=" test"
-
-src_test() {
-   # tests hang, bug 667922
-   local myctestargs=(
-   -E "(completionbenchmark|duchain_multiplefiles)"
-   )
-   kde5_src_test
-}

diff --git a/dev-util/kdevelop-python/kdevelop-python-5.3.80.ebuild 
b/dev-util/kdevelop-python/kdevelop-python-5.3.80.ebuild
deleted file mode 100644
index 4329abd3e9..00
--- a/dev-util/kdevelop-python/kdevelop-python-5.3.80.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_TEST="forceoptional"
-KMNAME="kdev-python"
-PYTHON_COMPAT=( python3_{5,6,7} )
-inherit kde5 python-single-r1
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Python plugin for KDevelop"
-HOMEPAGE="https://www.kdevelop.org/;
-IUSE=""
-
-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
-}

diff --git a/dev-util/kdevelop/kdevelop-5.3.80.ebuild 
b/dev-util/kdevelop/kdevelop-5.3.80.ebuild
deleted file mode 100644
index 430d33b22e..00
--- a/dev-util/kdevelop/kdevelop-5.3.80.ebuild
+++ /dev/null
@@ -1,134 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="true"
-VIRTUALDBUS_TEST="true"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Integrated Development Environment, supporting KF5/Qt, C/C++ and 
much more"
-HOMEPAGE="https://www.kdevelop.org/;
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="5/54" # look at KDEVELOP_SOVERSION inside CMakeLists.txt
-IUSE="+gdbui hex +plasma +qmake reviewboard subversion webkit"
-
-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 

[gentoo-commits] proj/kde:master commit in: kde-plasma/kwin/, kde-plasma/kwin/files/

2019-08-06 Thread Andreas Sturmlechner
commit: 4689fa76c4f2a1ce41df0b82c9345be09acdb065
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 20:43:30 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 20:43:30 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4689fa76

kde-plasma/kwin: Rebase gstreamer-optional.patch on git master

Broken by upstream commit 52eba31ea23d73731600851838f61118a3fd9f9e

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

 .../files/kwin-5.16.80-gstreamer-optional.patch| 25 ++
 kde-plasma/kwin/kwin-.ebuild   |  2 +-
 2 files changed, 26 insertions(+), 1 deletion(-)

diff --git a/kde-plasma/kwin/files/kwin-5.16.80-gstreamer-optional.patch 
b/kde-plasma/kwin/files/kwin-5.16.80-gstreamer-optional.patch
new file mode 100644
index 00..08a472ad55
--- /dev/null
+++ b/kde-plasma/kwin/files/kwin-5.16.80-gstreamer-optional.patch
@@ -0,0 +1,25 @@
+From b5b277996322b0a37ed8a9443724183b82800e81 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Tue, 6 Aug 2019 22:36:44 +0200
+Subject: [PATCH] Disable the effect video button if gstreamer is missing
+
+---
+ kcmkwin/kwineffects/package/contents/ui/Effect.qml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/kcmkwin/kwineffects/package/contents/ui/Effect.qml 
b/kcmkwin/kwineffects/package/contents/ui/Effect.qml
+index 71dbc5935..86ddf40b3 100644
+--- a/kcmkwin/kwineffects/package/contents/ui/Effect.qml
 b/kcmkwin/kwineffects/package/contents/ui/Effect.qml
+@@ -112,7 +112,7 @@ Kirigami.SwipeListItem {
+ }
+ actions: [
+ Kirigami.Action {
+-visible: model.VideoRole.toString() !== ""
++visible: false
+ icon.name: "videoclip-amarok"
+ tooltip: i18nc("@info:tooltip", "Show/Hide Video")
+ onTriggered: videoItem.showHide()
+-- 
+2.22.0
+

diff --git a/kde-plasma/kwin/kwin-.ebuild b/kde-plasma/kwin/kwin-.ebuild
index f0b90c2bba..cf1130f7cc 100644
--- a/kde-plasma/kwin/kwin-.ebuild
+++ b/kde-plasma/kwin/kwin-.ebuild
@@ -89,7 +89,7 @@ RESTRICT+=" test"
 
 src_prepare() {
kde5_src_prepare
-   use multimedia || eapply 
"${FILESDIR}/${PN}-5.15.80-gstreamer-optional.patch"
+   use multimedia || eapply 
"${FILESDIR}/${PN}-5.16.80-gstreamer-optional.patch"
 
# Access violations, bug #640432
sed -e "s/^ecm_find_qmlmodule.*QtMultimedia/#&/" \



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

2019-08-06 Thread Andreas Sturmlechner
commit: a29793b4443c7877ae6bb78ed406a957027d4422
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 22:19:18 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 22:20:55 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a29793b4

kde5.eclass: Add KDE_DESIGNERPLUGIN handling for kde-frameworks/

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

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

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 1cb707be92..de87173824 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -211,7 +211,11 @@ case ${KDE_DESIGNERPLUGIN} in
false)  ;;
*)
IUSE+=" designer"
-   BDEPEND+=" designer? ( $(add_frameworks_dep kdesignerplugin) )"
+   if [[ ${CATEGORY} = kde-frameworks ]]; then
+   BDEPEND+=" designer? ( $(add_qt_dep designer) )"
+   else
+   BDEPEND+=" designer? ( $(add_frameworks_dep 
kdesignerplugin) )"
+   fi
 esac
 
 case ${KDE_EXAMPLES} in
@@ -602,8 +606,12 @@ kde5_src_configure() {
cmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=ON )
fi
 
-   if in_iuse designer && ! use designer && [[ ${KDE_DESIGNERPLUGIN} != 
false ]] ; then
-   cmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_KF5DesignerPlugin=ON )
+   if in_iuse designer && [[ ${KDE_DESIGNERPLUGIN} != false ]] ; then
+   if [[ ${CATEGORY} = kde-frameworks ]]; then
+   cmakeargs+=( -DBUILD_DESIGNERPLUGIN=$(usex designer) )
+   else
+   cmakeargs+=( $(cmake-utils_use_find_package designer 
KF5DesignerPlugin) )
+   fi
fi
 
if [[ ${KDE_QTHELP} != false ]]; then



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

2019-08-06 Thread Andreas Sturmlechner
commit: 3f649da734aeba19f356d1eddb78f07da1956212
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 20:53:36 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 21:47:34 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=3f649da7

kde-frameworks/kdesignerplugin: Drop USE designer

Upstream commit cc27fa4fa59badca27d55baf17f73dcef2b8ddfe

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

 .../kdesignerplugin/kdesignerplugin-.ebuild| 32 +-
 1 file changed, 1 insertion(+), 31 deletions(-)

diff --git a/kde-frameworks/kdesignerplugin/kdesignerplugin-.ebuild 
b/kde-frameworks/kdesignerplugin/kdesignerplugin-.ebuild
index 4b2e34f0ec..16d62206b2 100644
--- a/kde-frameworks/kdesignerplugin/kdesignerplugin-.ebuild
+++ b/kde-frameworks/kdesignerplugin/kdesignerplugin-.ebuild
@@ -11,7 +11,7 @@ inherit kde5
 DESCRIPTION="Framework providing plugins to use KDE frameworks widgets in 
QtDesigner"
 LICENSE="LGPL-2.1+"
 KEYWORDS=""
-IUSE="designer nls"
+IUSE="nls"
 
 BDEPEND="
nls? ( $(add_qt_dep linguist-tools) )
@@ -19,35 +19,5 @@ BDEPEND="
 DEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kcoreaddons)
-   designer? (
-   $(add_qt_dep designer)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep kplotting)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep sonnet)
-   )
 "
 RDEPEND="${DEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package designer KF5Completion)
-   $(cmake-utils_use_find_package designer KF5ConfigWidgets)
-   $(cmake-utils_use_find_package designer KF5IconThemes)
-   $(cmake-utils_use_find_package designer KF5ItemViews)
-   $(cmake-utils_use_find_package designer KF5KIO)
-   $(cmake-utils_use_find_package designer KF5Plotting)
-   $(cmake-utils_use_find_package designer KF5Sonnet)
-   $(cmake-utils_use_find_package designer KF5TextWidgets)
-   $(cmake-utils_use_find_package designer KF5WidgetsAddons)
-   $(cmake-utils_use_find_package designer KF5XmlGui)
-   )
-
-   kde5_src_configure
-}



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

2019-08-06 Thread Aaron Bauman
commit: 91ef41e65393194cdfa11bac1176b58e10cc0e83
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Aug  6 22:52:07 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Aug  6 22:52:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91ef41e6

profiles: mark arm64 profiles stable

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

 profiles/profiles.desc | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/profiles/profiles.desc b/profiles/profiles.desc
index 5ef9c2c0901..afafbf39dea 100644
--- a/profiles/profiles.desc
+++ b/profiles/profiles.desc
@@ -87,15 +87,15 @@ arm default/linux/arm/17.0/armv7a/developer 
dev
 
 # ARM64 Profiles
 # @MAINTAINER: ar...@gentoo.org
-arm64   default/linux/arm64/17.0dev
-arm64   default/linux/arm64/17.0/desktopdev
-arm64   default/linux/arm64/17.0/desktop/gnome  dev
-arm64   default/linux/arm64/17.0/desktop/gnome/systemd  dev
-arm64   default/linux/arm64/17.0/desktop/plasma dev
-arm64   default/linux/arm64/17.0/desktop/plasma/systemd dev
-arm64   default/linux/arm64/17.0/desktop/systemddev
-arm64   default/linux/arm64/17.0/developer  dev
-arm64   default/linux/arm64/17.0/systemddev
+arm64   default/linux/arm64/17.0stable
+arm64   default/linux/arm64/17.0/desktopstable
+arm64   default/linux/arm64/17.0/desktop/gnome  stable
+arm64   default/linux/arm64/17.0/desktop/gnome/systemd  stable
+arm64   default/linux/arm64/17.0/desktop/plasma stable
+arm64   default/linux/arm64/17.0/desktop/plasma/systemd stable
+arm64   default/linux/arm64/17.0/desktop/systemdstable
+arm64   default/linux/arm64/17.0/developer  stable
+arm64   default/linux/arm64/17.0/systemdstable
 
 # ARM64 Profiles (big-endian)
 # @MAINTAINER: st...@gentoo.org, sly...@gentoo.org



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

2019-08-06 Thread Aaron Bauman
commit: 0bf36bbdff359895f18e47a8df756b206065592d
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Aug  6 22:51:01 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Aug  6 22:51:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bf36bbd

dev-libs/appstream: arm64 stable (bug #691610)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.71, Repoman-2.3.17
RepoMan-Options: --include-arches="arm64"

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

diff --git a/dev-libs/appstream/appstream-0.12.7.ebuild 
b/dev-libs/appstream/appstream-0.12.7.ebuild
index cbbde57065d..c8b8c7de8ce 100644
--- a/dev-libs/appstream/appstream-0.12.7.ebuild
+++ b/dev-libs/appstream/appstream-0.12.7.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} = ** ]]; then
 else
MY_PN="AppStream"

SRC_URI="https://www.freedesktop.org/software/appstream/releases/${MY_PN}-${PV}.tar.xz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="~amd64 ~arm arm64 ~x86"
S="${WORKDIR}/${MY_PN}-${PV}"
 fi
 



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

2019-08-06 Thread Patrick McLean
commit: 2627cd9a936c7067cd10a8f454fce0e5ecbd22c1
Author: Patrick McLean  sony  com>
AuthorDate: Tue Aug  6 22:29:08 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Aug  6 22:29:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2627cd9a

sys-kernel/vanilla-sources: Version bump to 4.9.188

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

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.9.187.ebuild => vanilla-sources-4.9.188.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 6928229351c..a66e2051144 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -9,6 +9,6 @@ DIST patch-3.16.71.xz 2457328 BLAKE2B 
bd9fe320dfebcc541c4bf24900a18bac764aa80e5a
 DIST patch-4.14.136.xz 2784404 BLAKE2B 
12847a5e9a9537ac0375fab9a06581b7500725fe7f9c7181c2a8547368fb06faeb003776d620b01995bb268ec847fdab0c08520e9ce38cfa134ae8b3b2b628e7
 SHA512 
fed7f68be9c5528e6b28accca16ccd89c7583503136ae09a10865b75122ce10871bd0b7c0c99d7ef3f5eaa1d8fc76747c7843a637e02d7586a4399c600e59178
 DIST patch-4.19.65.xz 1647692 BLAKE2B 
3406a1a22a31048a8b27690e1f23ae4b7a2083022d30bc4d159b15d8d8da88fb4fd62ad918717cbea0f41e3ef3a9e6301d2bd99cf4c17b16405e2713a5942f45
 SHA512 
ed06caa6cca70ce154c89c82069273a6248a34881093fef699540a1e14dae2601d9dfd56037254cb04998911a336e73a1bcfb001c16e53d5c12266e200c4a4d3
 DIST patch-4.4.187.xz 2662168 BLAKE2B 
b3abbd601a9b59a2390be4890d1da6218febcf53522bf0750dcb3388d72ea82ea727f62a6353a479c7e41b40db936576861cc1d61774c88194ba4b3681a87c1a
 SHA512 
d628f09aac74a2fc1f9b8cbb18e8017637983470c2f8da6d69ef7e1a1fe262296745ed041a72c3deedc326308c143fa90cff48b395221ab5d53b306da49e9457
-DIST patch-4.9.187.xz 2908164 BLAKE2B 
8e09ff42ab0ae0543db22eb1bd089dfd6779f1acf9701c5f35bd940a5f41a3a2518b87c57d00b072bd0a20f4aae11d605898a82c042f44a7aa52757954986db5
 SHA512 
59f2fe415b749cd683898b0c309ab878a734ecd354c91bd5d0f4639fefa117594babe8242209d6bfa46c66ee10d01163965ceda1e9ee2f503a5a3637eec4ccea
+DIST patch-4.9.188.xz 2914848 BLAKE2B 
769b0ca63694a6ddbb5871539f3323c0f51c280d584a6d9b72ac1d95503643c5a39db1d0c5b46af4293d38ca2fe9277359952a261f8f1a05fba0b0f7a7ec3fd8
 SHA512 
fc0a6a87c9ff2a436b0893203ba7749c4c8d1e773ce442ba410044a060cc9737dd965aacca7c3943fd5eb9dd1d51300a121d485a6ccddfee5de173d571eef9d7
 DIST patch-5.1.21.xz 651764 BLAKE2B 
cf928fa0453a3460af3a2889596e49383f975d22c9e891be0096c5d37cde2bdf6391301855504f8c2522d3c8a8433f865f80c6937992be67e9bbe296afae8901
 SHA512 
124bded280ada37ab8af76c11aeb688fcc37f335e2318c5a28ab6bec351e516614540cea0bfa93dfec66c1a74500e39a031deaaf67047b1eca5cbc2cde5f7165
 DIST patch-5.2.7.xz 307576 BLAKE2B 
47ba1350f4e6ee5bd861cabd90ed1e9c7dfb8d2525c9cacf19cf5a58d2791876d43655029618a15f17686ac1b41a5dac5fbdbd7f08746afd439c3f99f03ad446
 SHA512 
e9f1b42ab0f39e170237b0ef4244cf866f1e0901bfc826c71d67647175aad895efe24a633555ebcd46809ecc124396d6be3d862483156044273ab3a0ca0c84b8

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.9.187.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.9.188.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.9.187.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.9.188.ebuild



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

2019-08-06 Thread Patrick McLean
commit: 0d003b16b0319009d750058e62646e11da92838e
Author: Patrick McLean  sony  com>
AuthorDate: Tue Aug  6 22:30:14 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Aug  6 22:30:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d003b16

sys-kernel/vanilla-sources: Version bump to 4.4.188

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

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.4.187.ebuild => vanilla-sources-4.4.188.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 4cfcf855765..7c27d606f7e 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -8,7 +8,7 @@ DIST linux-5.2.tar.xz 107029708 BLAKE2B 
f0cf6e3a15a4bd019edbfa33cb4556d0672e807f
 DIST patch-3.16.71.xz 2457328 BLAKE2B 
bd9fe320dfebcc541c4bf24900a18bac764aa80e5a1acf425a4858e039584882b4a490b2c74ebf7e9bdd0c0dcb378f953d07caefbf922c3dd47d9a6e724c19f4
 SHA512 
6d53a45432b90e5c449ae299667252a6152bc554ea6a9e140de2545f2511915f1597401d31e9c98482e9e240ffe7babb6ba6b6933f981e1396a46f66a799c336
 DIST patch-4.14.137.xz 2794256 BLAKE2B 
2a52122e5db436f5cfea90259741ea16e0682b585a2c62583342bb885acec088e38530288921c625942e0f91effd48e9fc2c77f6b158576f652f761c51ed9e7a
 SHA512 
dad71db6a842af2e3dddfe159520872de74083d77aebf5c89979cce0d8460d373369a4a6ac1cdc909401be33a0ee32a47c44006856a2aebf52cc1c735316c2bb
 DIST patch-4.19.65.xz 1647692 BLAKE2B 
3406a1a22a31048a8b27690e1f23ae4b7a2083022d30bc4d159b15d8d8da88fb4fd62ad918717cbea0f41e3ef3a9e6301d2bd99cf4c17b16405e2713a5942f45
 SHA512 
ed06caa6cca70ce154c89c82069273a6248a34881093fef699540a1e14dae2601d9dfd56037254cb04998911a336e73a1bcfb001c16e53d5c12266e200c4a4d3
-DIST patch-4.4.187.xz 2662168 BLAKE2B 
b3abbd601a9b59a2390be4890d1da6218febcf53522bf0750dcb3388d72ea82ea727f62a6353a479c7e41b40db936576861cc1d61774c88194ba4b3681a87c1a
 SHA512 
d628f09aac74a2fc1f9b8cbb18e8017637983470c2f8da6d69ef7e1a1fe262296745ed041a72c3deedc326308c143fa90cff48b395221ab5d53b306da49e9457
+DIST patch-4.4.188.xz 2665428 BLAKE2B 
3a316043355e84ed680579fa1f62db1ba895188c69150c9e594dea9f3fede131524b3338826b9099e9cf4b7f0324bd1baa20d63f99352c974bc60cb16d2d9622
 SHA512 
c4e531f9996811982ec459336426d1fa3493adf304cfc06c34afb0dde351ae9d18ebc03b36cb689913d5a668fee0db3a133f7135cecce497fbca82da38e5913a
 DIST patch-4.9.188.xz 2914848 BLAKE2B 
769b0ca63694a6ddbb5871539f3323c0f51c280d584a6d9b72ac1d95503643c5a39db1d0c5b46af4293d38ca2fe9277359952a261f8f1a05fba0b0f7a7ec3fd8
 SHA512 
fc0a6a87c9ff2a436b0893203ba7749c4c8d1e773ce442ba410044a060cc9737dd965aacca7c3943fd5eb9dd1d51300a121d485a6ccddfee5de173d571eef9d7
 DIST patch-5.1.21.xz 651764 BLAKE2B 
cf928fa0453a3460af3a2889596e49383f975d22c9e891be0096c5d37cde2bdf6391301855504f8c2522d3c8a8433f865f80c6937992be67e9bbe296afae8901
 SHA512 
124bded280ada37ab8af76c11aeb688fcc37f335e2318c5a28ab6bec351e516614540cea0bfa93dfec66c1a74500e39a031deaaf67047b1eca5cbc2cde5f7165
 DIST patch-5.2.7.xz 307576 BLAKE2B 
47ba1350f4e6ee5bd861cabd90ed1e9c7dfb8d2525c9cacf19cf5a58d2791876d43655029618a15f17686ac1b41a5dac5fbdbd7f08746afd439c3f99f03ad446
 SHA512 
e9f1b42ab0f39e170237b0ef4244cf866f1e0901bfc826c71d67647175aad895efe24a633555ebcd46809ecc124396d6be3d862483156044273ab3a0ca0c84b8

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.187.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.4.188.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.4.187.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.4.188.ebuild



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

2019-08-06 Thread Patrick McLean
commit: 0f5a11cd16252271ded3075aff3ca93786879384
Author: Patrick McLean  sony  com>
AuthorDate: Tue Aug  6 22:28:06 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Aug  6 22:28:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f5a11cd

sys-kernel/vanilla-sources: Version bump to 5.2.7

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

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-5.2.6.ebuild => vanilla-sources-5.2.7.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index a1e1c83db2d..aed00251524 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -11,4 +11,4 @@ DIST patch-4.19.64.xz 1631912 BLAKE2B 
512055d0f5a89c239700224697b84a992a204c3b2c
 DIST patch-4.4.187.xz 2662168 BLAKE2B 
b3abbd601a9b59a2390be4890d1da6218febcf53522bf0750dcb3388d72ea82ea727f62a6353a479c7e41b40db936576861cc1d61774c88194ba4b3681a87c1a
 SHA512 
d628f09aac74a2fc1f9b8cbb18e8017637983470c2f8da6d69ef7e1a1fe262296745ed041a72c3deedc326308c143fa90cff48b395221ab5d53b306da49e9457
 DIST patch-4.9.187.xz 2908164 BLAKE2B 
8e09ff42ab0ae0543db22eb1bd089dfd6779f1acf9701c5f35bd940a5f41a3a2518b87c57d00b072bd0a20f4aae11d605898a82c042f44a7aa52757954986db5
 SHA512 
59f2fe415b749cd683898b0c309ab878a734ecd354c91bd5d0f4639fefa117594babe8242209d6bfa46c66ee10d01163965ceda1e9ee2f503a5a3637eec4ccea
 DIST patch-5.1.21.xz 651764 BLAKE2B 
cf928fa0453a3460af3a2889596e49383f975d22c9e891be0096c5d37cde2bdf6391301855504f8c2522d3c8a8433f865f80c6937992be67e9bbe296afae8901
 SHA512 
124bded280ada37ab8af76c11aeb688fcc37f335e2318c5a28ab6bec351e516614540cea0bfa93dfec66c1a74500e39a031deaaf67047b1eca5cbc2cde5f7165
-DIST patch-5.2.6.xz 269880 BLAKE2B 
51c883361a7d0bd29a399ea26f387702eec1229cb6e39d507674c39817441f4b40646c13e161077b4be9fc1d5ef0de6e839011276e11178bc199c5cd21e94a7e
 SHA512 
d3da691d721a0edf4f539ad991664234d4454b011b649534f28db2fcad489268eced46ebe697b2a350336ced8e0de6cd8ceed5e43361e3b0d4cc794caf3c62e4
+DIST patch-5.2.7.xz 307576 BLAKE2B 
47ba1350f4e6ee5bd861cabd90ed1e9c7dfb8d2525c9cacf19cf5a58d2791876d43655029618a15f17686ac1b41a5dac5fbdbd7f08746afd439c3f99f03ad446
 SHA512 
e9f1b42ab0f39e170237b0ef4244cf866f1e0901bfc826c71d67647175aad895efe24a633555ebcd46809ecc124396d6be3d862483156044273ab3a0ca0c84b8

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.2.6.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-5.2.7.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-5.2.6.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-5.2.7.ebuild



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

2019-08-06 Thread Patrick McLean
commit: 8ac94498741d363ffc5f7d59cdd04ffdcd1b1c3b
Author: Patrick McLean  sony  com>
AuthorDate: Tue Aug  6 22:28:40 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Aug  6 22:28:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ac94498

sys-kernel/vanilla-sources: Version bump to 4.19.65

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

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.19.64.ebuild => vanilla-sources-4.19.65.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index aed00251524..6928229351c 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -7,7 +7,7 @@ DIST linux-5.1.tar.xz 106244476 BLAKE2B 
ae3c63ced819737e34f8ec3a78138f87704a2f29
 DIST linux-5.2.tar.xz 107029708 BLAKE2B 
f0cf6e3a15a4bd019edbfa33cb4556d0672e807f7d139eff3ab053d0ad7649198b229475955a1f51eb90d0e9f8268cafb782f6312793fdf38472f3c6d7c2d7ee
 SHA512 
5a28f8a34c4e0470617f5638b7112e6252109b78f23b1eed484a228530970c7ef5c130d6e5a09cf25ea2f6a0329602dcc1ec66ce893182e15b27d99bd228789c
 DIST patch-3.16.71.xz 2457328 BLAKE2B 
bd9fe320dfebcc541c4bf24900a18bac764aa80e5a1acf425a4858e039584882b4a490b2c74ebf7e9bdd0c0dcb378f953d07caefbf922c3dd47d9a6e724c19f4
 SHA512 
6d53a45432b90e5c449ae299667252a6152bc554ea6a9e140de2545f2511915f1597401d31e9c98482e9e240ffe7babb6ba6b6933f981e1396a46f66a799c336
 DIST patch-4.14.136.xz 2784404 BLAKE2B 
12847a5e9a9537ac0375fab9a06581b7500725fe7f9c7181c2a8547368fb06faeb003776d620b01995bb268ec847fdab0c08520e9ce38cfa134ae8b3b2b628e7
 SHA512 
fed7f68be9c5528e6b28accca16ccd89c7583503136ae09a10865b75122ce10871bd0b7c0c99d7ef3f5eaa1d8fc76747c7843a637e02d7586a4399c600e59178
-DIST patch-4.19.64.xz 1631912 BLAKE2B 
512055d0f5a89c239700224697b84a992a204c3b2cf4641d9ab87d37f3349dc8f5075bc7331066d9fa305cb16963d27a1a13af38fc78b55713535eaf49eebd05
 SHA512 
d16a37f6a012782a44c6b54bec02f5b07c7d2a84f51a9b540567b6b6537745e5baa8351c40653468ba9f6527b7b98cc7c350c16b12d8b2c67743546000abe8d4
+DIST patch-4.19.65.xz 1647692 BLAKE2B 
3406a1a22a31048a8b27690e1f23ae4b7a2083022d30bc4d159b15d8d8da88fb4fd62ad918717cbea0f41e3ef3a9e6301d2bd99cf4c17b16405e2713a5942f45
 SHA512 
ed06caa6cca70ce154c89c82069273a6248a34881093fef699540a1e14dae2601d9dfd56037254cb04998911a336e73a1bcfb001c16e53d5c12266e200c4a4d3
 DIST patch-4.4.187.xz 2662168 BLAKE2B 
b3abbd601a9b59a2390be4890d1da6218febcf53522bf0750dcb3388d72ea82ea727f62a6353a479c7e41b40db936576861cc1d61774c88194ba4b3681a87c1a
 SHA512 
d628f09aac74a2fc1f9b8cbb18e8017637983470c2f8da6d69ef7e1a1fe262296745ed041a72c3deedc326308c143fa90cff48b395221ab5d53b306da49e9457
 DIST patch-4.9.187.xz 2908164 BLAKE2B 
8e09ff42ab0ae0543db22eb1bd089dfd6779f1acf9701c5f35bd940a5f41a3a2518b87c57d00b072bd0a20f4aae11d605898a82c042f44a7aa52757954986db5
 SHA512 
59f2fe415b749cd683898b0c309ab878a734ecd354c91bd5d0f4639fefa117594babe8242209d6bfa46c66ee10d01163965ceda1e9ee2f503a5a3637eec4ccea
 DIST patch-5.1.21.xz 651764 BLAKE2B 
cf928fa0453a3460af3a2889596e49383f975d22c9e891be0096c5d37cde2bdf6391301855504f8c2522d3c8a8433f865f80c6937992be67e9bbe296afae8901
 SHA512 
124bded280ada37ab8af76c11aeb688fcc37f335e2318c5a28ab6bec351e516614540cea0bfa93dfec66c1a74500e39a031deaaf67047b1eca5cbc2cde5f7165

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.19.64.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.19.65.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.19.64.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.19.65.ebuild



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

2019-08-06 Thread Patrick McLean
commit: cbfc6310113b5e0d452d06ece8de2c9273634489
Author: Patrick McLean  sony  com>
AuthorDate: Tue Aug  6 22:29:39 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Aug  6 22:29:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbfc6310

sys-kernel/vanilla-sources: Version bump to 4.14.137

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

 sys-kernel/vanilla-sources/Manifest | 2 +-
 ...{vanilla-sources-4.14.136.ebuild => vanilla-sources-4.14.137.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index a66e2051144..4cfcf855765 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -6,7 +6,7 @@ DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c
 DIST linux-5.1.tar.xz 106244476 BLAKE2B 
ae3c63ced819737e34f8ec3a78138f87704a2f2956454411e3a4830ec8c0aaf2c288af6ca080f1892540e50f4a422482360010be8641afdeeeaf7231e7d8da97
 SHA512 
ae96f347badc95f1f3acf506c52b6cc23c0bd09ce8f4ce6705d4b4058b62593059bba1bc603c8d8b00a2f19131e7e56c31ac62b45883a346fa61d655e178f236
 DIST linux-5.2.tar.xz 107029708 BLAKE2B 
f0cf6e3a15a4bd019edbfa33cb4556d0672e807f7d139eff3ab053d0ad7649198b229475955a1f51eb90d0e9f8268cafb782f6312793fdf38472f3c6d7c2d7ee
 SHA512 
5a28f8a34c4e0470617f5638b7112e6252109b78f23b1eed484a228530970c7ef5c130d6e5a09cf25ea2f6a0329602dcc1ec66ce893182e15b27d99bd228789c
 DIST patch-3.16.71.xz 2457328 BLAKE2B 
bd9fe320dfebcc541c4bf24900a18bac764aa80e5a1acf425a4858e039584882b4a490b2c74ebf7e9bdd0c0dcb378f953d07caefbf922c3dd47d9a6e724c19f4
 SHA512 
6d53a45432b90e5c449ae299667252a6152bc554ea6a9e140de2545f2511915f1597401d31e9c98482e9e240ffe7babb6ba6b6933f981e1396a46f66a799c336
-DIST patch-4.14.136.xz 2784404 BLAKE2B 
12847a5e9a9537ac0375fab9a06581b7500725fe7f9c7181c2a8547368fb06faeb003776d620b01995bb268ec847fdab0c08520e9ce38cfa134ae8b3b2b628e7
 SHA512 
fed7f68be9c5528e6b28accca16ccd89c7583503136ae09a10865b75122ce10871bd0b7c0c99d7ef3f5eaa1d8fc76747c7843a637e02d7586a4399c600e59178
+DIST patch-4.14.137.xz 2794256 BLAKE2B 
2a52122e5db436f5cfea90259741ea16e0682b585a2c62583342bb885acec088e38530288921c625942e0f91effd48e9fc2c77f6b158576f652f761c51ed9e7a
 SHA512 
dad71db6a842af2e3dddfe159520872de74083d77aebf5c89979cce0d8460d373369a4a6ac1cdc909401be33a0ee32a47c44006856a2aebf52cc1c735316c2bb
 DIST patch-4.19.65.xz 1647692 BLAKE2B 
3406a1a22a31048a8b27690e1f23ae4b7a2083022d30bc4d159b15d8d8da88fb4fd62ad918717cbea0f41e3ef3a9e6301d2bd99cf4c17b16405e2713a5942f45
 SHA512 
ed06caa6cca70ce154c89c82069273a6248a34881093fef699540a1e14dae2601d9dfd56037254cb04998911a336e73a1bcfb001c16e53d5c12266e200c4a4d3
 DIST patch-4.4.187.xz 2662168 BLAKE2B 
b3abbd601a9b59a2390be4890d1da6218febcf53522bf0750dcb3388d72ea82ea727f62a6353a479c7e41b40db936576861cc1d61774c88194ba4b3681a87c1a
 SHA512 
d628f09aac74a2fc1f9b8cbb18e8017637983470c2f8da6d69ef7e1a1fe262296745ed041a72c3deedc326308c143fa90cff48b395221ab5d53b306da49e9457
 DIST patch-4.9.188.xz 2914848 BLAKE2B 
769b0ca63694a6ddbb5871539f3323c0f51c280d584a6d9b72ac1d95503643c5a39db1d0c5b46af4293d38ca2fe9277359952a261f8f1a05fba0b0f7a7ec3fd8
 SHA512 
fc0a6a87c9ff2a436b0893203ba7749c4c8d1e773ce442ba410044a060cc9737dd965aacca7c3943fd5eb9dd1d51300a121d485a6ccddfee5de173d571eef9d7

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.14.136.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.14.137.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.14.136.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.14.137.ebuild



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

2019-08-06 Thread Aaron Bauman
commit: b363326c132c3da3f5d20a6205dbc71da5c3706c
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Aug  6 22:26:56 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Aug  6 22:26:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b363326c

media-libs/libbluray: arm64 stable (bug #688706)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.71, Repoman-2.3.17
RepoMan-Options: --include-arches="arm64"

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

diff --git a/media-libs/libbluray/libbluray-1.1.2.ebuild 
b/media-libs/libbluray/libbluray-1.1.2.ebuild
index d6504f9ac9d..063a4718742 100644
--- a/media-libs/libbluray/libbluray-1.1.2.ebuild
+++ b/media-libs/libbluray/libbluray-1.1.2.ebuild
@@ -7,7 +7,7 @@ if [[ "${PV#}" != "${PV}" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://code.videolan.org/videolan/libbluray.git;
 else
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd"
+   KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd"

SRC_URI="https://downloads.videolan.org/pub/videolan/libbluray/${PV}/${P}.tar.bz2;
 fi
 



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

2019-08-06 Thread Aaron Bauman
commit: ff999410f9708c10dc5609c762efd93f64ea4ab3
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Aug  6 22:02:15 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Aug  6 22:02:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff999410

dev-lang/php: arm64 stable (bug #691564)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.71, Repoman-2.3.17
RepoMan-Options: --include-arches="arm64"

 dev-lang/php/php-7.1.31.ebuild | 2 +-
 dev-lang/php/php-7.2.21.ebuild | 2 +-
 dev-lang/php/php-7.3.8.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-lang/php/php-7.1.31.ebuild b/dev-lang/php/php-7.1.31.ebuild
index 938d10c7b54..e95712354eb 100644
--- a/dev-lang/php/php-7.1.31.ebuild
+++ b/dev-lang/php/php-7.1.31.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2 phpdbg"

diff --git a/dev-lang/php/php-7.2.21.ebuild b/dev-lang/php/php-7.2.21.ebuild
index 3163c80e3d4..539a436458b 100644
--- a/dev-lang/php/php-7.2.21.ebuild
+++ b/dev-lang/php/php-7.2.21.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2 phpdbg"

diff --git a/dev-lang/php/php-7.3.8.ebuild b/dev-lang/php/php-7.3.8.ebuild
index eb9e3727c51..a7fcb9fd8e8 100644
--- a/dev-lang/php/php-7.3.8.ebuild
+++ b/dev-lang/php/php-7.3.8.ebuild
@@ -19,7 +19,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 



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

2019-08-06 Thread Andreas Sturmlechner
commit: ec080cdb3dd962fbedcfead84cba52a487f01b59
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 21:28:48 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 21:43:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec080cdb

dev-util/kdevelop-python: 5.4.0 version bump

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

 dev-util/kdevelop-python/Manifest  |  1 +
 .../kdevelop-python/kdevelop-python-5.4.0.ebuild   | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/dev-util/kdevelop-python/Manifest 
b/dev-util/kdevelop-python/Manifest
index 250d2564cab..1a8df4f8b03 100644
--- a/dev-util/kdevelop-python/Manifest
+++ b/dev-util/kdevelop-python/Manifest
@@ -1,2 +1,3 @@
 DIST kdev-python-5.3.2.tar.xz 1074980 BLAKE2B 
de19a603d9c0fbf870b271b16d98b676ad9246edbc62f926c63ec66f51806c52fdec0284b016b291599b80d68faeb7eef80f4b5efc7e8f12f6362948b1df05c2
 SHA512 
95d8e0e94bfad70fabad75e362f5483db897ba56980251a76af48df863c7277746704c826692a6cec854e60c97f3ea9791b1e162b7ea2f357d469715d0a74672
 DIST kdev-python-5.3.3.tar.xz 1082448 BLAKE2B 
000d0e54c5e2b5eb41c6be0f82d7b6ef476bed3175f367db11fdcebf2f7063b322ac0901059a2e17391904f2ac5cffdcb48d3015665d697e89aa6e0be1ae550e
 SHA512 
4d388b20588b4032efd677e9f152be53739a4c5c5bb3fcf37b5289da418c47281b6a545ae5825f9674b90333e69f2949e6e9b4d6704010cbb878d2ce8b3ee384
+DIST kdev-python-5.4.0.tar.xz 1074108 BLAKE2B 
73fdd45fb77e920bc115f7cc86a658dfbe9a0512227ab175957b070668f69d80991c7dce6f94860599b858f4890bd5992c0e397466b0407439ccee1b4d730af4
 SHA512 
65898596f14b8f23f05cca3b327e3cfab754ae77de2c4fa985ab8aa1816641d14adaa5db83f135ec020a9c952e4d286071a7997e7a96a04a09cd3c7fdc344361

diff --git a/dev-util/kdevelop-python/kdevelop-python-5.4.0.ebuild 
b/dev-util/kdevelop-python/kdevelop-python-5.4.0.ebuild
new file mode 100644
index 000..4329abd3e93
--- /dev/null
+++ b/dev-util/kdevelop-python/kdevelop-python-5.4.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KDE_TEST="forceoptional"
+KMNAME="kdev-python"
+PYTHON_COMPAT=( python3_{5,6,7} )
+inherit kde5 python-single-r1
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Python plugin for KDevelop"
+HOMEPAGE="https://www.kdevelop.org/;
+IUSE=""
+
+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
+}



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

2019-08-06 Thread Andreas Sturmlechner
commit: a91b5423035ade5219d458846f58e7180e163f02
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 21:29:01 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 21:43:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a91b5423

dev-util/kdevelop-php: 5.4.0 version bump

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

 dev-util/kdevelop-php/Manifest  |  1 +
 dev-util/kdevelop-php/kdevelop-php-5.4.0.ebuild | 52 +
 2 files changed, 53 insertions(+)

diff --git a/dev-util/kdevelop-php/Manifest b/dev-util/kdevelop-php/Manifest
index 6aaad908ec1..35d68cdac39 100644
--- a/dev-util/kdevelop-php/Manifest
+++ b/dev-util/kdevelop-php/Manifest
@@ -1,2 +1,3 @@
 DIST kdev-php-5.3.2.tar.xz 1008036 BLAKE2B 
33940afeeb7b8594f0dbf56e444ba05f9665c7e4c9bc1d55c9d6a5b85bd2e03a04db1b8f27d968d627e26cfa573a3da519bb1d0eb592dc784296c9db7ea1fad8
 SHA512 
d8649bca173eccc1aa6568715e5976beb762ad7a377adbdab8f55aad76176ca5c8d16477ec70fa231b5699105d2a827c2ffda1c4835419c670c561b605b4
 DIST kdev-php-5.3.3.tar.xz 1043652 BLAKE2B 
d181984e0c8c6b77502529dace0cb2b13afa417e98149a7caaf379fc5c27e64f7928c4232489a0e4b21af6500636a71b7217a56e500c367a579585dca6c447a9
 SHA512 
8a478e6170ed63ccd82822a5281abb63f70d959ae945b730d2d707efd104b0a3475a66ddb637f134d1eed90173342c1ecf42e7b15947b96c141e6228ef96a009
+DIST kdev-php-5.4.0.tar.xz 1038580 BLAKE2B 
5be3253a970a46504089944b52102204784269cc33d05bbfeed9ad05d413fd4ca6b1c10e23f0e9942a28218ff9d65f84a54e4ae1f49a8e284c46435efe12abc1
 SHA512 
6c6814720b0f2ea3e8532ecc2f53e5fd1db093bd1cf92a2c48e81535d1323e1f211da446d55992a867511ff6d3baa21b5e20fab4971ed96df2a76385f54b0b34

diff --git a/dev-util/kdevelop-php/kdevelop-php-5.4.0.ebuild 
b/dev-util/kdevelop-php/kdevelop-php-5.4.0.ebuild
new file mode 100644
index 000..736a5e6971a
--- /dev/null
+++ b/dev-util/kdevelop-php/kdevelop-php-5.4.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KDE_DOC_DIR="docs"
+KDE_HANDBOOK="forceoptional"
+KDE_TEST="true"
+KMNAME="kdev-php"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="PHP plugin for KDevelop"
+HOMEPAGE="https://www.kdevelop.org/;
+LICENSE="GPL-2 LGPL-2"
+IUSE=""
+
+BDEPEND="
+   test? ( dev-util/kdevelop:5[test] )
+"
+DEPEND="
+   $(add_frameworks_dep kcmutils)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(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-pg-qt:5
+   dev-util/kdevelop:5=
+"
+RDEPEND="${DEPEND}"
+
+# remaining tests fail for some, bug 668530
+RESTRICT+=" test"
+
+src_test() {
+   # tests hang, bug 667922
+   local myctestargs=(
+   -E "(completionbenchmark|duchain_multiplefiles)"
+   )
+   kde5_src_test
+}



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

2019-08-06 Thread Andreas Sturmlechner
commit: 3895b2fd6e134555e34cf343e0e954fa128d2dea
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 21:28:27 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 21:43:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3895b2fd

dev-util/kdevelop: 5.4.0 version bump

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

 dev-util/kdevelop/Manifest  |   1 +
 dev-util/kdevelop/kdevelop-5.4.0.ebuild | 134 
 2 files changed, 135 insertions(+)

diff --git a/dev-util/kdevelop/Manifest b/dev-util/kdevelop/Manifest
index f260622f8e0..4efe068d372 100644
--- a/dev-util/kdevelop/Manifest
+++ b/dev-util/kdevelop/Manifest
@@ -1,2 +1,3 @@
 DIST kdevelop-5.3.2.tar.xz 6851944 BLAKE2B 
b918cd0cb9b915227a442641a110db27387fd2e946c0411e40206a4a68990a9268a6c47c7f1da8a8f8a5c2690a1577c75f353d69ddfeed419e2c561aac4a
 SHA512 
f0a8354a596a13dab0c5560d8308097918f5540b02d9a66a63155af00aa024aae9c01b455290ecafe705784a9c25afd24f7d936d1f817af1fb5b52d96e6dc596
 DIST kdevelop-5.3.3.tar.xz 6977420 BLAKE2B 
8e2b7473551dc4ee9b9b06e8777e7f98869870ed7ee797b0e3a7c27f68d75b7af0f030dc9b0302a44ff246f69ec9125994cd72e6020e2778ac55f6d593fb
 SHA512 
a089763045f02ef3167fab1f663503cc7a6e29cd8a42d3caa8b3a71fc1b2150162504bf4404ea070f73b3786a7389b6ee5af9ff922515445b57a0041b07e7d5d
+DIST kdevelop-5.4.0.tar.xz 7003004 BLAKE2B 
81858bc8cc746541413301bb58befa1f854441026306c387bf6345dbbd3f343c527c5a3b35f8b8dd633674c6dde874b9492be069028bda373a64a8c41842dded
 SHA512 
a05a702bd6d6d96fca0bbc729a98d6284598c6009663bbd93e448fbaf883d2631f9fd68d2e9b3d90432319e25c03f5115c866362ecaa2f951457ec34f41fb16f

diff --git a/dev-util/kdevelop/kdevelop-5.4.0.ebuild 
b/dev-util/kdevelop/kdevelop-5.4.0.ebuild
new file mode 100644
index 000..430d33b22e4
--- /dev/null
+++ b/dev-util/kdevelop/kdevelop-5.4.0.ebuild
@@ -0,0 +1,134 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KDE_HANDBOOK="forceoptional"
+KDE_TEST="true"
+VIRTUALDBUS_TEST="true"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Integrated Development Environment, supporting KF5/Qt, C/C++ and 
much more"
+HOMEPAGE="https://www.kdevelop.org/;
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="5/54" # look at KDEVELOP_SOVERSION inside CMakeLists.txt
+IUSE="+gdbui hex +plasma +qmake reviewboard subversion webkit"
+
+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:=
+   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? ( >=dev-qt/qtwebkit-5.212.0_pre20180120:5 )
+   !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)
+   $(add_qt_dep qtquickcontrols)
+   $(add_qt_dep qtquickcontrols2)
+   dev-util/ninja
+   

[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kpackage/, kde-frameworks/kpackage/files/

2019-08-06 Thread Andreas Sturmlechner
commit: 9a835c952dc74274bc842690d3437d0af7abb1d1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 21:32:19 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 21:43:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a835c95

kde-frameworks/kpackage: Fix build error caused by missing header

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

 .../kpackage-5.60.0-qt-5.12.4-missing-header.patch | 39 ++
 kde-frameworks/kpackage/kpackage-5.60.0.ebuild |  2 ++
 2 files changed, 41 insertions(+)

diff --git 
a/kde-frameworks/kpackage/files/kpackage-5.60.0-qt-5.12.4-missing-header.patch 
b/kde-frameworks/kpackage/files/kpackage-5.60.0-qt-5.12.4-missing-header.patch
new file mode 100644
index 000..793d387cf1d
--- /dev/null
+++ 
b/kde-frameworks/kpackage/files/kpackage-5.60.0-qt-5.12.4-missing-header.patch
@@ -0,0 +1,39 @@
+From 886f7f4004e55f4eb3d61c15ec10d64878fc1dbd Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= 
+Date: Fri, 12 Jul 2019 12:19:25 +0200
+Subject: Fix build due to missing QVector include
+
+Summary:
+I get 'implicit instantiation of undefined template 'QVector'
+when building against Qt 5.12.4 without this change.
+
+Test Plan: Builds against Qt 5.12.4
+
+Reviewers: dfaure, davidedmundson
+
+Reviewed By: davidedmundson
+
+Subscribers: kde-frameworks-devel
+
+Tags: #frameworks
+
+Differential Revision: https://phabricator.kde.org/D22414
+---
+ src/kpackage/private/versionparser.cpp | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/kpackage/private/versionparser.cpp 
b/src/kpackage/private/versionparser.cpp
+index 71dcd08..2411d2a 100644
+--- a/src/kpackage/private/versionparser.cpp
 b/src/kpackage/private/versionparser.cpp
+@@ -21,6 +21,8 @@
+ 
+ #include "package.h"
+ 
++#include 
++
+ 
+ namespace KPackage
+ {
+-- 
+cgit v1.1

diff --git a/kde-frameworks/kpackage/kpackage-5.60.0.ebuild 
b/kde-frameworks/kpackage/kpackage-5.60.0.ebuild
index 9845939285d..0da3b829e88 100644
--- a/kde-frameworks/kpackage/kpackage-5.60.0.ebuild
+++ b/kde-frameworks/kpackage/kpackage-5.60.0.ebuild
@@ -20,6 +20,8 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
+PATCHES=( "${FILESDIR}/${P}-qt-5.12.4-missing-header.patch" )
+
 src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package man KF5DocTools)



[gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/

2019-08-06 Thread Lars Wendler
commit: 81bc81d28357c3375786d936d3404e9bb210c468
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Aug  6 21:31:56 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Aug  6 21:32:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81bc81d2

games-strategy/warzone2100: Added missing app-text/asciidoc to DEPEND

Bug: https://bugs.gentoo.org/691202
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Lars Wendler  gentoo.org>

 games-strategy/warzone2100/warzone2100-3.3.0_beta1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/games-strategy/warzone2100/warzone2100-3.3.0_beta1.ebuild 
b/games-strategy/warzone2100/warzone2100-3.3.0_beta1.ebuild
index fddc0901378..d8ab1ae7bb7 100644
--- a/games-strategy/warzone2100/warzone2100-3.3.0_beta1.ebuild
+++ b/games-strategy/warzone2100/warzone2100-3.3.0_beta1.ebuild
@@ -48,6 +48,7 @@ CDEPEND="
 "
 DEPEND="
${CDEPEND}
+   app-text/asciidoc
dev-libs/fribidi
media-libs/fontconfig
 "



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

2019-08-06 Thread Jeroen Roovers
commit: 387003d158393ef2f3b678f99e1b1e57bd846339
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug  6 20:24:38 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug  6 20:24:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=387003d1

net-analyzer/fragroute: Set sub-SLOT dependency on dev-libs/libevent

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

 net-analyzer/fragroute/fragroute-1.2.6-r2.ebuild | 47 
 1 file changed, 47 insertions(+)

diff --git a/net-analyzer/fragroute/fragroute-1.2.6-r2.ebuild 
b/net-analyzer/fragroute/fragroute-1.2.6-r2.ebuild
new file mode 100644
index 000..1043d0fd987
--- /dev/null
+++ b/net-analyzer/fragroute/fragroute-1.2.6-r2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="${P}-ipv6"
+
+inherit autotools
+
+DESCRIPTION="Testing of network intrusion detection systems, firewalls and 
TCP/IP stacks"
+HOMEPAGE="https://github.com/stsi/fragroute-ipv6;
+SRC_URI="https://fragroute-ipv6.googlecode.com/files/${MY_P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+RDEPEND="
+   dev-libs/libevent:=
+   net-libs/libpcap
+   >=dev-libs/libdnet-1.12[ipv6]
+"
+DEPEND="
+   ${RDEPEND}
+   virtual/awk
+"
+DOCS=( INSTALL README TODO )
+PATCHES=(
+   "${FILESDIR}"/${P}-pcap_open.patch
+)
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   # Remove broken and old files, autotools will regen needed files
+   rm *.m4 acconfig.h missing Makefile.in || die
+   # Add missing includes
+   sed -i -e "/#define IPUTIL_H/a#include \n#include " 
iputil.h || die
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --with-libdnet="${EPREFIX}"/usr \
+   --with-libevent="${EPREFIX}"/usr \
+   --with-libpcap="${EPREFIX}"/usr
+}



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

2019-08-06 Thread Jeroen Roovers
commit: 4a5a9b29d67e0cbaed0aae501767abd6d61f2d60
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Aug  6 20:16:49 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Aug  6 20:17:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a5a9b29

net-analyzer/scanssh: Set sub-SLOT dependency on dev-libs/libevent

Package-Manager: Portage-2.3.71, Repoman-2.3.17
Fixes: https://bugs.gentoo.org/show_bug.cgi?id=691574
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/scanssh/scanssh-2.1-r1.ebuild | 38 ++
 1 file changed, 38 insertions(+)

diff --git a/net-analyzer/scanssh/scanssh-2.1-r1.ebuild 
b/net-analyzer/scanssh/scanssh-2.1-r1.ebuild
new file mode 100644
index 000..0aa7c1f944a
--- /dev/null
+++ b/net-analyzer/scanssh/scanssh-2.1-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="network scanner that gathers info on SSH protocols and versions"
+HOMEPAGE="https://monkey.org/~provos/scanssh/;
+SRC_URI="https://monkey.org/~provos/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+
+DEPEND="
+   dev-libs/libdnet
+   dev-libs/libevent:=
+   net-libs/libpcap
+"
+RDEPEND="
+   ${DEPEND}
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.0-fix-warnings.diff
+)
+
+src_prepare() {
+   default
+   touch configure
+}
+
+src_compile() {
+   emake CFLAGS="${CFLAGS}"
+}
+
+src_install() {
+   dobin scanssh
+   doman scanssh.1
+}



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

2019-08-06 Thread Andreas Sturmlechner
commit: 0de6b7c5fddc5aeb04362b95ad9379ce11ff3200
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 18:37:23 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 20:10:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0de6b7c5

media-gfx/krita: Drop 4.2.4

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

 media-gfx/krita/Manifest   |   1 -
 media-gfx/krita/krita-4.2.4.ebuild | 117 -
 2 files changed, 118 deletions(-)

diff --git a/media-gfx/krita/Manifest b/media-gfx/krita/Manifest
index 13ab2b3704c..406296aa399 100644
--- a/media-gfx/krita/Manifest
+++ b/media-gfx/krita/Manifest
@@ -1,3 +1,2 @@
 DIST krita-4.1.8.tar.gz 244065767 BLAKE2B 
ba2cbb6d1575cec189e8f10461b720a081f185e1e078fc1e8194c9e6d455dade45f35f1ae5a891717918b3c03863a2a7f3f819753a106ede5695003cfa260157
 SHA512 
d02715bffbd6abd29ca69598fdb1e6a652fd4f1944092ff12016a57ff2ee3bab209c93e065905ec9bfea395e50f833915bb924b97a2c119d101057cba6c9
-DIST krita-4.2.4.tar.gz 246227960 BLAKE2B 
94513a835526ee79c0747ed8c6004666b549d7070c02ad82800555282f319e5aa4dc1f35dafc6b4179284b244c8c80367b453548f5c8cd585154259a051a
 SHA512 
c778653f8e72724d16322405fffdff5b82418c5a19021ccbada6a15389afd58f9d9017bc562eb5d91b0d4e10587bca1e616fc7ecc9ec7dbf82fae5247b81ea5e
 DIST krita-4.2.5.tar.xz 170060232 BLAKE2B 
fba124653edad23826fd6d4d932cb1ea4c63450d460bebf2b2e2d9167e437331a31d76b19d57d9f15f603195c0eea367463ea6d9e610e74d0844bb80d21f0741
 SHA512 
5134c0a889cb039c5253759965acfba5cef0c431e8230236c1288e0253628feba52a493eaa42c93adb1716014c17818232294c1c90ade760ad89940833599d9e

diff --git a/media-gfx/krita/krita-4.2.4.ebuild 
b/media-gfx/krita/krita-4.2.4.ebuild
deleted file mode 100644
index 62966b4d812..000
--- a/media-gfx/krita/krita-4.2.4.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_TEST="forceoptional"
-VIRTUALX_REQUIRED="test"
-PYTHON_COMPAT=( python3_{5,6,7} )
-inherit kde5 python-single-r1
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Free digital painting application. Digital Painting, Creative 
Freedom!"
-HOMEPAGE="https://kde.org/applications/graphics/krita/ https://krita.org/;
-LICENSE="GPL-3"
-IUSE="color-management fftw gif +gsl heif +jpeg openexr pdf qtmedia +raw tiff 
vc"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-BDEPEND="
-   dev-cpp/eigen:3
-   dev-lang/perl
-   sys-devel/gettext
-"
-COMMON_DEPEND="${PYTHON_DEPS}
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kguiaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kitemmodels)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtconcurrent)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui '-gles2' '' '5=')
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtx11extras)
-   $(add_qt_dep qtxml)
-   dev-libs/boost:=
-   dev-libs/quazip
-   dev-python/PyQt5[${PYTHON_USEDEP}]
-   dev-python/sip[${PYTHON_USEDEP}]
-   media-gfx/exiv2:=
-   media-libs/lcms
-   media-libs/libpng:0=
-   sys-libs/zlib
-   virtual/opengl
-   x11-libs/libX11
-   x11-libs/libxcb
-   x11-libs/libXi
-   color-management? ( media-libs/opencolorio )
-   fftw? ( sci-libs/fftw:3.0= )
-   gif? ( media-libs/giflib )
-   gsl? ( sci-libs/gsl:= )
-   jpeg? ( virtual/jpeg:0 )
-   heif? ( media-libs/libheif:= )
-   openexr? (
-   media-libs/ilmbase:=
-   media-libs/openexr
-   )
-   pdf? ( app-text/poppler[qt5] )
-   qtmedia? ( $(add_qt_dep qtmultimedia) )
-   raw? ( media-libs/libraw:= )
-   tiff? ( media-libs/tiff:0 )
-"
-DEPEND="${COMMON_DEPEND}
-   vc? ( >=dev-libs/vc-1.1.0 )
-"
-RDEPEND="${COMMON_DEPEND}
-   !app-office/calligra:4[calligra_features_krita]
-   !app-office/calligra-l10n:4[calligra_features_krita(+)]
-"
-
-# bug 630508
-RESTRICT+=" test"
-
-PATCHES=( "${FILESDIR}"/${P}-tests-optional.patch )
-
-pkg_setup() {
-   python-single-r1_pkg_setup
-   kde5_pkg_setup
-}
-
-src_configure() {
-   # Prevent sandbox violation from FindPyQt5.py module
-   # See Gentoo-bug 655918
-   addpredict /dev/dri
-
-   local mycmakeargs=(
-   

[gentoo-commits] repo/gentoo:master commit in: kde-apps/kate/, kde-apps/kate/files/

2019-08-06 Thread Andreas Sturmlechner
commit: d4d0c4474bd72d57f1f9584febb25cdb189b4c4c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 19:01:42 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 20:10:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4d0c447

kde-apps/kate: Fix build error caused by missing header (Qt 5.12.4?)

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

 .../kate-19.04.3-qt-5.12.4-missing-header.patch| 23 ++
 kde-apps/kate/kate-19.04.3.ebuild  |  2 ++
 2 files changed, 25 insertions(+)

diff --git a/kde-apps/kate/files/kate-19.04.3-qt-5.12.4-missing-header.patch 
b/kde-apps/kate/files/kate-19.04.3-qt-5.12.4-missing-header.patch
new file mode 100644
index 000..3fd4147bd0f
--- /dev/null
+++ b/kde-apps/kate/files/kate-19.04.3-qt-5.12.4-missing-header.patch
@@ -0,0 +1,23 @@
+From fce700be7740704929c8bd64549ddf80774e4bda Mon Sep 17 00:00:00 2001
+From: Christoph Cullmann 
+Date: Thu, 18 Jul 2019 22:10:05 +0200
+Subject: add missing header
+
+---
+ kate/katemdi.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/kate/katemdi.cpp b/kate/katemdi.cpp
+index 495d1a5..8173ebe 100644
+--- a/kate/katemdi.cpp
 b/kate/katemdi.cpp
+@@ -43,6 +43,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ namespace KateMDI
+ {
+-- 
+cgit v1.1

diff --git a/kde-apps/kate/kate-19.04.3.ebuild 
b/kde-apps/kate/kate-19.04.3.ebuild
index ed64d1dc24a..b47fc1d5b38 100644
--- a/kde-apps/kate/kate-19.04.3.ebuild
+++ b/kde-apps/kate/kate-19.04.3.ebuild
@@ -53,6 +53,8 @@ RDEPEND="${DEPEND}
!kde-misc/ktexteditorpreviewplugin
 "
 
+PATCHES=( "${FILESDIR}/${P}-qt-5.12.4-missing-header.patch" )
+
 src_prepare() {
kde5_src_prepare
# test hangs



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

2019-08-06 Thread Andreas Sturmlechner
commit: 8012c467e1936b5fca474a49be7bed4a3e16c8ec
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 20:08:26 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 20:10:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8012c467

net-libs/libssh: Install docs only if native abi

Thanks-to: John R. Graham  gentoo.org>
Closes: https://bugs.gentoo.org/691576
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 net-libs/libssh/libssh-0.9.0.ebuild | 2 +-
 net-libs/libssh/libssh-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libssh/libssh-0.9.0.ebuild 
b/net-libs/libssh/libssh-0.9.0.ebuild
index 2d08ceb11b3..0d89cd0cb79 100644
--- a/net-libs/libssh/libssh-0.9.0.ebuild
+++ b/net-libs/libssh/libssh-0.9.0.ebuild
@@ -97,7 +97,7 @@ multilib_src_compile() {
 
 multilib_src_install() {
cmake-utils_src_install
-   use doc && HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )
+   multilib_is_native_abi && use doc && HTML_DOCS=( 
"${BUILD_DIR}"/doc/html/. )
 
# compatibility symlink until all consumers have been updated
# to no longer use libssh_threads.so

diff --git a/net-libs/libssh/libssh-.ebuild 
b/net-libs/libssh/libssh-.ebuild
index 19777b48ff3..c6953a5d267 100644
--- a/net-libs/libssh/libssh-.ebuild
+++ b/net-libs/libssh/libssh-.ebuild
@@ -94,7 +94,7 @@ multilib_src_compile() {
 
 multilib_src_install() {
cmake-utils_src_install
-   use doc && HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )
+   multilib_is_native_abi && use doc && HTML_DOCS=( 
"${BUILD_DIR}"/doc/html/. )
 
# compatibility symlink until all consumers have been updated
# to no longer use libssh_threads.so



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

2019-08-06 Thread Andreas Sturmlechner
commit: 282257d92c814523fb7cade788110d0556091cff
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 19:03:26 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 20:10:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=282257d9

app-editors/okteta: Drop 0.26.1

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

 app-editors/okteta/Manifest |  1 -
 app-editors/okteta/okteta-0.26.1.ebuild | 66 -
 2 files changed, 67 deletions(-)

diff --git a/app-editors/okteta/Manifest b/app-editors/okteta/Manifest
index 67748879f58..780bd127dd3 100644
--- a/app-editors/okteta/Manifest
+++ b/app-editors/okteta/Manifest
@@ -1,2 +1 @@
-DIST okteta-0.26.1.tar.xz 970532 BLAKE2B 
c04e0c4a2665f91cde26ee28b95f768f3074a08c8fd30920c75f3ce52fdfa717e3e6cea9acf87c3c5d53c830e5badb51faa2abcebd5b55839ea4ee52874a6d4c
 SHA512 
fa4e841c77ae255e9936b29e30fa0bc1f65594898820652ac8ba78497658ec5ef78cadf8b4d33cab09b2ee8da1d75b84377be28680b2d91c5af2dcdfe5da95e3
 DIST okteta-0.26.2.tar.xz 976264 BLAKE2B 
6bd0708ecab61097130ad3b96d44c4a58a7711f6d9ecc9c70d3db792728489f395e691b0157f0cf8ffc0e07b1796ce6fde9f689108c3236412ad37c4e87a210a
 SHA512 
9d79cfecf80a7bfd4eb42ac8ee93d83140064601c16be0bed38481f7f0ea8ed2fa0aedfd16be3547f2bbd65ab483281e0ecdc0e59799040d67ecf1b4cda39246

diff --git a/app-editors/okteta/okteta-0.26.1.ebuild 
b/app-editors/okteta/okteta-0.26.1.ebuild
deleted file mode 100644
index 4a9e25c1f16..000
--- a/app-editors/okteta/okteta-0.26.1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="true"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="amd64 x86"
-fi
-
-DESCRIPTION="Hex editor by KDE"
-HOMEPAGE="https://www.kde.org/applications/utilities/okteta
-https://utils.kde.org/projects/okteta/;
-IUSE="crypt designer"
-
-DEPEND="
-   $(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 kdbusaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtscript 'scripttools')
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   crypt? ( app-crypt/qca:2[qt5(+)] )
-   designer? ( $(add_qt_dep designer) )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DOMIT_EXAMPLES=ON
-   $(cmake-utils_use_find_package crypt Qca-qt5)
-   -DBUILD_DESIGNERPLUGIN=$(usex designer)
-   )
-
-   kde5_src_configure
-}
-
-src_test() {
-   local myctestargs=( -j1 )
-
-   kde5_src_test
-}



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

2019-08-06 Thread Andreas Sturmlechner
commit: 8a22e0e607abe44ca34427e918e3b69b0026fd08
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 18:39:46 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 20:10:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a22e0e6

dev-util/cmake: Drop 3.14.3, 3.15.0

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

 dev-util/cmake/Manifest|   2 -
 dev-util/cmake/cmake-3.14.3.ebuild | 226 -
 dev-util/cmake/cmake-3.15.0.ebuild | 226 -
 3 files changed, 454 deletions(-)

diff --git a/dev-util/cmake/Manifest b/dev-util/cmake/Manifest
index a776d748f3c..d20d31b970f 100644
--- a/dev-util/cmake/Manifest
+++ b/dev-util/cmake/Manifest
@@ -1,5 +1,3 @@
 DIST cmake-3.13.5.tar.gz 8618821 BLAKE2B 
765678bc92821207c53bfb4ac995a791b938f20236c3a6fda873b8edd11cd1401b4f4c05f170b8f600f38bde5f1227c715499eee072a8de3bb29d4f5cd230226
 SHA512 
99e3a8f5bc147dd90b9cab11f06892d87f289aa1354ad323711fe96ebc9c32b1e887e8f9d3575a37831c4d2153a070ff9115c5e27a185d54170bad9dbbaabc26
-DIST cmake-3.14.3.tar.gz 8851085 BLAKE2B 
92da2c563f7ddc3b12457f63eead850eb99b123298632b5a9e8f80f3e32db20e2b25bc60778855400261d13d4ef42600162248f4a92907a0c581e202fc6620eb
 SHA512 
e257a96334f21f2b2f17e8d43aa32c2b069d13194604393c5ac9d3da193000d5328181c6cf861696186d022aba57679ee2d08073d8a7112727746b2b145a47e2
 DIST cmake-3.14.6.tar.gz 8861359 BLAKE2B 
257a9a89fe880f8945f47a4bb1980e66f0f28ee5cebeb161012860ae8578487e50c60060ad5144ec6f5b7ea860112edd01909ebceec24b8370e3769ff2a79e99
 SHA512 
8cf3afadec3fe931d9f954e3148a398939cd16c1fbcb4c5303ac635e2b5029960867f317fd13a46fceebe46e7328689e847f03d7d7c74bb31e23c9cc55838f56
-DIST cmake-3.15.0.tar.gz 9266870 BLAKE2B 
e0ab6950d96a95c972e04dcdcecbf999262ddbd753784bec81954a85730279ef0298bdd7079d2d1095a14de7be5349749b1c5d54e022c6443e041e7e75cb0bab
 SHA512 
f7286513a215a9b9094c1f630761995dbc7f4e33c38bc5585ddc89d9b4742630962921aff59570e0de39887e0cc66df6eebc83ab478796876364d2de5d2c0d6f
 DIST cmake-3.15.1.tar.gz 9268592 BLAKE2B 
3b0dbca9203b1029922d06df9abc3bbfa6f7b8320e43b11b468cd7e129171e2bb1b645fc07bf2d46c9b3c08642f1a11741240d0029f96ac3b2d7a8bb44d398da
 SHA512 
6900a84c7764034331fb6f00801841a7a3e667ac39813c35ceb3db983b33a5bf6addbbc8539c39a0c0be9e10204c79d6236886a9d50ce901a56275b53619ec73

diff --git a/dev-util/cmake/cmake-3.14.3.ebuild 
b/dev-util/cmake/cmake-3.14.3.ebuild
deleted file mode 100644
index 01f4a37c833..000
--- a/dev-util/cmake/cmake-3.14.3.ebuild
+++ /dev/null
@@ -1,226 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_MAKEFILE_GENERATOR="emake"
-CMAKE_REMOVE_MODULES="no"
-inherit bash-completion-r1 elisp-common flag-o-matic toolchain-funcs virtualx 
xdg cmake-utils
-
-MY_P="${P/_/-}"
-
-DESCRIPTION="Cross platform Make"
-HOMEPAGE="https://cmake.org/;
-SRC_URI="https://cmake.org/files/v$(ver_cut 1-2)/${MY_P}.tar.gz"
-
-LICENSE="CMake"
-SLOT="0"
-[[ "${PV}" = *_rc* ]] || \
-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 ~x64-solaris ~x86-solaris"
-IUSE="doc emacs system-jsoncpp ncurses qt5 test"
-
-RDEPEND="
-   app-crypt/rhash
-   >=app-arch/libarchive-3.0.0:=
-   >=dev-libs/expat-2.0.1
-   >=dev-libs/libuv-1.10.0:=
-   >=net-misc/curl-7.21.5[ssl]
-   sys-libs/zlib
-   virtual/pkgconfig
-   emacs? ( virtual/emacs )
-   ncurses? ( sys-libs/ncurses:0= )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   )
-   system-jsoncpp? ( >=dev-libs/jsoncpp-0.6.0_rc2:0= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   doc? (
-   dev-python/requests
-   dev-python/sphinx
-   )
-"
-
-S="${WORKDIR}/${MY_P}"
-
-SITEFILE="50${PN}-gentoo.el"
-
-PATCHES=(
-   # prefix
-   "${FILESDIR}"/${PN}-3.4.0_rc1-darwin-bundle.patch
-   "${FILESDIR}"/${PN}-3.14.0_rc3-prefix-dirs.patch
-   # Next patch requires new work from prefix people
-   #"${FILESDIR}"/${PN}-3.1.0-darwin-isysroot.patch
-
-   # handle gentoo packaging in find modules
-   "${FILESDIR}"/${PN}-3.14.0_rc1-FindBLAS.patch
-   "${FILESDIR}"/${PN}-3.14.0_rc1-FindLAPACK.patch
-   "${FILESDIR}"/${PN}-3.5.2-FindQt4.patch
-
-   # respect python eclasses
-   "${FILESDIR}"/${PN}-2.8.10.2-FindPythonLibs.patch
-   "${FILESDIR}"/${PN}-3.9.0_rc2-FindPythonInterp.patch
-
-   # upstream fixes (can usually be removed with a version bump)
-)
-
-cmake_src_bootstrap() {
-   # Cleanup args to extract only JOBS.
-   # Because bootstrap does not know anything else.
-   grep -Eo '(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' <<< 
"${MAKEOPTS}" > /dev/null
-   if [[ $? -eq 0 ]] ; then
-  

[gentoo-commits] proj/kde:master commit in: kde-apps/pim-data-exporter/

2019-08-06 Thread Andreas Sturmlechner
commit: ef23bc9f18fca7e2faaf99bd93481bf7443f8ca9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 20:05:06 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 20:05:06 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ef23bc9f

kde-apps/pim-data-exporter: Re-enable selectiontypetreewidgettest

19.07.90 built and ran tests sucessfully.

Closes: https://bugs.gentoo.org/665690
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-apps/pim-data-exporter/pim-data-exporter-19.07.90.ebuild | 9 -
 .../pim-data-exporter/pim-data-exporter-19.08.49..ebuild | 9 -
 kde-apps/pim-data-exporter/pim-data-exporter-.ebuild | 9 -
 3 files changed, 27 deletions(-)

diff --git a/kde-apps/pim-data-exporter/pim-data-exporter-19.07.90.ebuild 
b/kde-apps/pim-data-exporter/pim-data-exporter-19.07.90.ebuild
index 44bf6d4dd0..31bd42b5b2 100644
--- a/kde-apps/pim-data-exporter/pim-data-exporter-19.07.90.ebuild
+++ b/kde-apps/pim-data-exporter/pim-data-exporter-19.07.90.ebuild
@@ -43,12 +43,3 @@ RDEPEND="${DEPEND}
!kde-apps/kdepim-l10n
!kde-apps/kmail:4
 "
-
-src_test() {
-   # selectiontypetreewidgettest is broken, bug #665690
-   local myctestargs=(
-   -E "(selectiontypetreewidgettest)"
-   )
-
-   kde5_src_test
-}

diff --git a/kde-apps/pim-data-exporter/pim-data-exporter-19.08.49..ebuild 
b/kde-apps/pim-data-exporter/pim-data-exporter-19.08.49..ebuild
index c229f8e35b..e43de004b0 100644
--- a/kde-apps/pim-data-exporter/pim-data-exporter-19.08.49..ebuild
+++ b/kde-apps/pim-data-exporter/pim-data-exporter-19.08.49..ebuild
@@ -43,12 +43,3 @@ RDEPEND="${DEPEND}
!kde-apps/kdepim-l10n
!kde-apps/kmail:4
 "
-
-src_test() {
-   # selectiontypetreewidgettest is broken, bug #665690
-   local myctestargs=(
-   -E "(selectiontypetreewidgettest)"
-   )
-
-   kde5_src_test
-}

diff --git a/kde-apps/pim-data-exporter/pim-data-exporter-.ebuild 
b/kde-apps/pim-data-exporter/pim-data-exporter-.ebuild
index c229f8e35b..e43de004b0 100644
--- a/kde-apps/pim-data-exporter/pim-data-exporter-.ebuild
+++ b/kde-apps/pim-data-exporter/pim-data-exporter-.ebuild
@@ -43,12 +43,3 @@ RDEPEND="${DEPEND}
!kde-apps/kdepim-l10n
!kde-apps/kmail:4
 "
-
-src_test() {
-   # selectiontypetreewidgettest is broken, bug #665690
-   local myctestargs=(
-   -E "(selectiontypetreewidgettest)"
-   )
-
-   kde5_src_test
-}



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

2019-08-06 Thread Andreas Sturmlechner
commit: f4f213abba68630f43bf64f43dcea2d42e9a1fd7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Aug  6 19:38:12 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Aug  6 19:38:12 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f4f213ab

kde-apps/kate: Disable tests in src_test not src_prepare

New contender: sessions_action_test

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

 kde-apps/kate/kate-19.07.90.ebuild  | 12 ++--
 kde-apps/kate/kate-19.08.49..ebuild | 12 ++--
 kde-apps/kate/kate-.ebuild  | 12 ++--
 3 files changed, 30 insertions(+), 6 deletions(-)

diff --git a/kde-apps/kate/kate-19.07.90.ebuild 
b/kde-apps/kate/kate-19.07.90.ebuild
index df50ca9262..124c40f82b 100644
--- a/kde-apps/kate/kate-19.07.90.ebuild
+++ b/kde-apps/kate/kate-19.07.90.ebuild
@@ -55,8 +55,7 @@ RDEPEND="${DEPEND}
 
 src_prepare() {
kde5_src_prepare
-   # test hangs
-   sed -e "/session_manager_test/d" -i kate/autotests/CMakeLists.txt || die
+
# delete colliding kwrite translations
if [[ ${KDE_BUILD_TYPE} = release ]]; then
find po -type f -name "*po" -and -name "kwrite*" -delete || die
@@ -73,6 +72,15 @@ src_configure() {
kde5_src_configure
 }
 
+src_test() {
+   # tests hang
+   local myctestargs=(
+   -E "(session_manager_test|sessions_action_test)"
+   )
+
+   kde5_src_test
+}
+
 pkg_postinst() {
kde5_pkg_postinst
 

diff --git a/kde-apps/kate/kate-19.08.49..ebuild 
b/kde-apps/kate/kate-19.08.49..ebuild
index 440a03a378..1e6a9e0f89 100644
--- a/kde-apps/kate/kate-19.08.49..ebuild
+++ b/kde-apps/kate/kate-19.08.49..ebuild
@@ -55,8 +55,7 @@ RDEPEND="${DEPEND}
 
 src_prepare() {
kde5_src_prepare
-   # test hangs
-   sed -e "/session_manager_test/d" -i kate/autotests/CMakeLists.txt || die
+
# delete colliding kwrite translations
if [[ ${KDE_BUILD_TYPE} = release ]]; then
find po -type f -name "*po" -and -name "kwrite*" -delete || die
@@ -73,6 +72,15 @@ src_configure() {
kde5_src_configure
 }
 
+src_test() {
+   # tests hang
+   local myctestargs=(
+   -E "(session_manager_test|sessions_action_test)"
+   )
+
+   kde5_src_test
+}
+
 pkg_postinst() {
kde5_pkg_postinst
 

diff --git a/kde-apps/kate/kate-.ebuild b/kde-apps/kate/kate-.ebuild
index 440a03a378..1e6a9e0f89 100644
--- a/kde-apps/kate/kate-.ebuild
+++ b/kde-apps/kate/kate-.ebuild
@@ -55,8 +55,7 @@ RDEPEND="${DEPEND}
 
 src_prepare() {
kde5_src_prepare
-   # test hangs
-   sed -e "/session_manager_test/d" -i kate/autotests/CMakeLists.txt || die
+
# delete colliding kwrite translations
if [[ ${KDE_BUILD_TYPE} = release ]]; then
find po -type f -name "*po" -and -name "kwrite*" -delete || die
@@ -73,6 +72,15 @@ src_configure() {
kde5_src_configure
 }
 
+src_test() {
+   # tests hang
+   local myctestargs=(
+   -E "(session_manager_test|sessions_action_test)"
+   )
+
+   kde5_src_test
+}
+
 pkg_postinst() {
kde5_pkg_postinst
 



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

2019-08-06 Thread Ben Kohler
commit: 3bce0d9d8e206f1c3fba0e2ec8007214aec3
Author: Ben Kohler  gentoo  org>
AuthorDate: Tue Aug  6 19:46:52 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Tue Aug  6 19:47:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bce0d9d

net-wireless/iwd: restore keywords on 0.19

Bump for required ell-0.21 is done so keywords can come back

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

 net-wireless/iwd/iwd-0.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/iwd/iwd-0.19.ebuild b/net-wireless/iwd/iwd-0.19.ebuild
index 85fe923d3ed..bed12522f62 100644
--- a/net-wireless/iwd/iwd-0.19.ebuild
+++ b/net-wireless/iwd/iwd-0.19.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else
SRC_URI="https://www.kernel.org/pub/linux/network/wireless/${P}.tar.xz;
-#  KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~sparc ~x86"
 fi
 
 DESCRIPTION="Wireless daemon for linux"



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

2019-08-06 Thread Ben Kohler
commit: dad5fe6b3553119316f7b27e32d8d288f0ceb8e3
Author: Ben Kohler  gentoo  org>
AuthorDate: Tue Aug  6 19:34:16 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Tue Aug  6 19:47:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dad5fe6b

dev-libs/ell: bump to 0.21 & add myself as maintainer

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

 dev-libs/ell/Manifest|  1 +
 dev-libs/ell/ell-0.21.ebuild | 46 
 dev-libs/ell/metadata.xml|  4 
 3 files changed, 51 insertions(+)

diff --git a/dev-libs/ell/Manifest b/dev-libs/ell/Manifest
index 54d4f86d5e4..b3c1145f24f 100644
--- a/dev-libs/ell/Manifest
+++ b/dev-libs/ell/Manifest
@@ -1,4 +1,5 @@
 DIST ell-0.18.tar.xz 439368 BLAKE2B 
9e65ed73119f322fea711d21e46ce9ad7d4060e50d8850451939a66bc82dcc1731ddff56458f4cd60c1b6b82b5023bb96adaf3992d3ec982ed845283c8dd
 SHA512 
cc62d01ffaa11a491d1a3ab2898da001f0a418b968350c2bdba2f381df931e53c4281cc4287937264eee72da263844886816af9baea96d7f65309b3e47e42d31
 DIST ell-0.19.tar.xz 439472 BLAKE2B 
9d29f49ce401c686b2e2262310bb00552d703455dbe9190acbb479e8fa2be7a03e732250ed63c9721f6079a46841a7bbb954fd0943edf520893eccb1a4fb9b6f
 SHA512 
f7a22d0c385d45661b7c630d39f31b67321d20635c938ef5ad3ddce7194501652381a6bfc39a1b9a404a59108977216e24e2c32f6f30fc00972a0ebca909fcab
 DIST ell-0.20.tar.xz 443196 BLAKE2B 
35daff12e43a27b44b60ff0fd0f10c8d6b8ba122a5825ff705394b2bfb401a90174133f63e6673690461ce2d56595186593fc65783dff2f795b83a461c3aa4b5
 SHA512 
91200ac000dc44ae593618c21012174af2614be0e7b33bd979aefb248e42d7bb0282f0a7ba256514dfb7657231b5fec29969c874417923f413d34c38500d4d97
+DIST ell-0.21.tar.xz 448612 BLAKE2B 
a20e177bb2ef7620c79cecdb84e47db662d97904189c885c90232a21ca40125bee14218fe2f1f06df74b424ccdc88dcd89da12bc9bf3e86c453b9903ae93013d
 SHA512 
7bb96194e03d0067b22745899eec3f7166dce69aeed2ece1cd362178c1b7f94d464a894417d8329554f5b707133280e6cadfbd4e3ee34a5652f396d719e6fd17
 DIST ell-0.9.tar.xz 396968 BLAKE2B 
566735cedd3525c4fd3fec9cec0e9b089dd60c6b79416a9c254c771729b6db9137af050f4c7f9c4c6dfa1ce33b8c7d41b877c9e3caa582c6ab9be716bd986a8b
 SHA512 
e1208066012b9ff927baae271f94116376ccd2577d7f6510cc1444eee912988aa1c25e8e8c9195cccfa39ed48fc8c2f07bd7a414719e6ce76ee1e5bd2a64b8c3

diff --git a/dev-libs/ell/ell-0.21.ebuild b/dev-libs/ell/ell-0.21.ebuild
new file mode 100644
index 000..cafd42ed2ce
--- /dev/null
+++ b/dev-libs/ell/ell-0.21.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic multilib-minimal
+
+DESCRIPTION="Embedded Linux Library provides core, low-level functionality for 
system daemons"
+HOMEPAGE="https://01.org/ell;
+if [[ "${PV}" == * ]] ; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://git.kernel.org/pub/scm/libs/ell/ell.git;
+else
+   
SRC_URI="https://mirrors.edge.kernel.org/pub/linux/libs/${PN}/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+fi
+LICENSE="LGPL-2.1"
+SLOT="0"
+
+IUSE="glib pie"
+
+RDEPEND="
+   glib? ( dev-libs/glib:2[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   default
+   [[ "${PV}" == * ]] && eautoreconf
+}
+
+multilib_src_configure() {
+   append-cflags "-fsigned-char" #662694
+   local myeconfargs=(
+   $(use_enable glib)
+   $(use_enable pie)
+   )
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+   local DOCS=( ChangeLog README )
+   einstalldocs
+
+   find "${ED}" -name "*.la" -delete || die
+}

diff --git a/dev-libs/ell/metadata.xml b/dev-libs/ell/metadata.xml
index 01db0cd57ae..653c017de8b 100644
--- a/dev-libs/ell/metadata.xml
+++ b/dev-libs/ell/metadata.xml
@@ -5,6 +5,10 @@
 polynomia...@gentoo.org
 Lars Wendler
   
+  
+bkoh...@gentoo.org
+Ben Kohler
+  
   
 Enable dev-libs/glib support
   



[gentoo-commits] proj/linux-patches: New tag: 4.9-193

2019-08-06 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 19:38:53 2019 +

New tag: 4.9-193




[gentoo-commits] proj/linux-patches: New tag: 4.4-189

2019-08-06 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 19:31:54 2019 +

New tag: 4.4-189




[gentoo-commits] proj/linux-patches:4.19 commit in: /

2019-08-06 Thread Mike Pagano
commit: 2e2555bafe4b4554306671d02ecf755f1702c612
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Aug  6 19:18:49 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 19:18:49 2019 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=2e2555ba

Linux patch 4.19.65

Signed-off-by: Mike Pagano  gentoo.org>

 _README  |4 +
 1064_linux-4.19.65.patch | 2660 ++
 2 files changed, 2664 insertions(+)

diff --git a/_README b/_README
index 391cca5..2679f40 100644
--- a/_README
+++ b/_README
@@ -299,6 +299,10 @@ Patch:  1063_linux-4.19.64.patch
 From:   https://www.kernel.org
 Desc:   Linux 4.19.64
 
+Patch:  1064_linux-4.19.65.patch
+From:   https://www.kernel.org
+Desc:   Linux 4.19.65
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1064_linux-4.19.65.patch b/1064_linux-4.19.65.patch
new file mode 100644
index 000..fac8063
--- /dev/null
+++ b/1064_linux-4.19.65.patch
@@ -0,0 +1,2660 @@
+diff --git a/Documentation/admin-guide/hw-vuln/spectre.rst 
b/Documentation/admin-guide/hw-vuln/spectre.rst
+index 25f3b2532198..e05e581af5cf 100644
+--- a/Documentation/admin-guide/hw-vuln/spectre.rst
 b/Documentation/admin-guide/hw-vuln/spectre.rst
+@@ -41,10 +41,11 @@ Related CVEs
+ 
+ The following CVE entries describe Spectre variants:
+ 
+-   =   ===  =
++   =   ===  ==
+CVE-2017-5753   Bounds check bypass  Spectre variant 1
+CVE-2017-5715   Branch target injection  Spectre variant 2
+-   =   ===  =
++   CVE-2019-1125   Spectre v1 swapgsSpectre variant 1 (swapgs)
++   =   ===  ==
+ 
+ Problem
+ ---
+@@ -78,6 +79,13 @@ There are some extensions of Spectre variant 1 attacks for 
reading data
+ over the network, see :ref:`[12] `. However such attacks
+ are difficult, low bandwidth, fragile, and are considered low risk.
+ 
++Note that, despite "Bounds Check Bypass" name, Spectre variant 1 is not
++only about user-controlled array bounds checks.  It can affect any
++conditional checks.  The kernel entry code interrupt, exception, and NMI
++handlers all have conditional swapgs checks.  Those may be problematic
++in the context of Spectre v1, as kernel code can speculatively run with
++a user GS.
++
+ Spectre variant 2 (Branch Target Injection)
+ ---
+ 
+@@ -132,6 +140,9 @@ not cover all possible attack vectors.
+ 1. A user process attacking the kernel
+ ^^
+ 
++Spectre variant 1
++~
++
+The attacker passes a parameter to the kernel via a register or
+via a known address in memory during a syscall. Such parameter may
+be used later by the kernel as an index to an array or to derive
+@@ -144,7 +155,40 @@ not cover all possible attack vectors.
+potentially be influenced for Spectre attacks, new "nospec" accessor
+macros are used to prevent speculative loading of data.
+ 
+-   Spectre variant 2 attacker can :ref:`poison ` the branch
++Spectre variant 1 (swapgs)
++~~
++
++   An attacker can train the branch predictor to speculatively skip the
++   swapgs path for an interrupt or exception.  If they initialize
++   the GS register to a user-space value, if the swapgs is speculatively
++   skipped, subsequent GS-related percpu accesses in the speculation
++   window will be done with the attacker-controlled GS value.  This
++   could cause privileged memory to be accessed and leaked.
++
++   For example:
++
++   ::
++
++ if (coming from user space)
++ swapgs
++ mov %gs:, %reg
++ mov (%reg), %reg1
++
++   When coming from user space, the CPU can speculatively skip the
++   swapgs, and then do a speculative percpu load using the user GS
++   value.  So the user can speculatively force a read of any kernel
++   value.  If a gadget exists which uses the percpu value as an address
++   in another load/store, then the contents of the kernel value may
++   become visible via an L1 side channel attack.
++
++   A similar attack exists when coming from kernel space.  The CPU can
++   speculatively do the swapgs, causing the user GS to get used for the
++   rest of the speculative window.
++
++Spectre variant 2
++~
++
++   A spectre variant 2 attacker can :ref:`poison ` the branch
+target buffer (BTB) before issuing syscall to launch an attack.
+After entering the kernel, the kernel could use the poisoned branch
+target buffer on indirect jump and jump to gadget code in speculative
+@@ -280,11 +324,18 @@ The sysfs file showing Spectre variant 1 mitigation 
status is:
+ 
+ The possible values 

[gentoo-commits] proj/linux-patches:4.14 commit in: /

2019-08-06 Thread Mike Pagano
commit: fe4aac868a47b5347910ccbd86cc481a0683b05e
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Aug  6 19:16:44 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 19:16:44 2019 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=fe4aac86

Linuxpatch 4.14.137

Signed-off-by: Mike Pagano  gentoo.org>

 _README   |4 +
 1136_linux-4.14.137.patch | 1988 +
 2 files changed, 1992 insertions(+)

diff --git a/_README b/_README
index 45bebaa..5aa7458 100644
--- a/_README
+++ b/_README
@@ -587,6 +587,10 @@ Patch:  1135_linux-4.14.136.patch
 From:   https://www.kernel.org
 Desc:   Linux 4.14.136
 
+Patch:  1136_linux-4.14.137.patch
+From:   https://www.kernel.org
+Desc:   Linux 4.14.137
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1136_linux-4.14.137.patch b/1136_linux-4.14.137.patch
new file mode 100644
index 000..eea0bc4
--- /dev/null
+++ b/1136_linux-4.14.137.patch
@@ -0,0 +1,1988 @@
+diff --git a/Documentation/admin-guide/hw-vuln/spectre.rst 
b/Documentation/admin-guide/hw-vuln/spectre.rst
+index 25f3b2532198..e05e581af5cf 100644
+--- a/Documentation/admin-guide/hw-vuln/spectre.rst
 b/Documentation/admin-guide/hw-vuln/spectre.rst
+@@ -41,10 +41,11 @@ Related CVEs
+ 
+ The following CVE entries describe Spectre variants:
+ 
+-   =   ===  =
++   =   ===  ==
+CVE-2017-5753   Bounds check bypass  Spectre variant 1
+CVE-2017-5715   Branch target injection  Spectre variant 2
+-   =   ===  =
++   CVE-2019-1125   Spectre v1 swapgsSpectre variant 1 (swapgs)
++   =   ===  ==
+ 
+ Problem
+ ---
+@@ -78,6 +79,13 @@ There are some extensions of Spectre variant 1 attacks for 
reading data
+ over the network, see :ref:`[12] `. However such attacks
+ are difficult, low bandwidth, fragile, and are considered low risk.
+ 
++Note that, despite "Bounds Check Bypass" name, Spectre variant 1 is not
++only about user-controlled array bounds checks.  It can affect any
++conditional checks.  The kernel entry code interrupt, exception, and NMI
++handlers all have conditional swapgs checks.  Those may be problematic
++in the context of Spectre v1, as kernel code can speculatively run with
++a user GS.
++
+ Spectre variant 2 (Branch Target Injection)
+ ---
+ 
+@@ -132,6 +140,9 @@ not cover all possible attack vectors.
+ 1. A user process attacking the kernel
+ ^^
+ 
++Spectre variant 1
++~
++
+The attacker passes a parameter to the kernel via a register or
+via a known address in memory during a syscall. Such parameter may
+be used later by the kernel as an index to an array or to derive
+@@ -144,7 +155,40 @@ not cover all possible attack vectors.
+potentially be influenced for Spectre attacks, new "nospec" accessor
+macros are used to prevent speculative loading of data.
+ 
+-   Spectre variant 2 attacker can :ref:`poison ` the branch
++Spectre variant 1 (swapgs)
++~~
++
++   An attacker can train the branch predictor to speculatively skip the
++   swapgs path for an interrupt or exception.  If they initialize
++   the GS register to a user-space value, if the swapgs is speculatively
++   skipped, subsequent GS-related percpu accesses in the speculation
++   window will be done with the attacker-controlled GS value.  This
++   could cause privileged memory to be accessed and leaked.
++
++   For example:
++
++   ::
++
++ if (coming from user space)
++ swapgs
++ mov %gs:, %reg
++ mov (%reg), %reg1
++
++   When coming from user space, the CPU can speculatively skip the
++   swapgs, and then do a speculative percpu load using the user GS
++   value.  So the user can speculatively force a read of any kernel
++   value.  If a gadget exists which uses the percpu value as an address
++   in another load/store, then the contents of the kernel value may
++   become visible via an L1 side channel attack.
++
++   A similar attack exists when coming from kernel space.  The CPU can
++   speculatively do the swapgs, causing the user GS to get used for the
++   rest of the speculative window.
++
++Spectre variant 2
++~
++
++   A spectre variant 2 attacker can :ref:`poison ` the branch
+target buffer (BTB) before issuing syscall to launch an attack.
+After entering the kernel, the kernel could use the poisoned branch
+target buffer on indirect jump and jump to gadget code in speculative
+@@ -280,11 +324,18 @@ The sysfs file showing Spectre variant 1 mitigation 
status is:
+ 
+ The possible 

[gentoo-commits] proj/linux-patches:4.9 commit in: /

2019-08-06 Thread Mike Pagano
commit: f304182d52f7091718f845a500bb9ac45fca90d1
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Aug  6 19:15:56 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 19:15:56 2019 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=f304182d

Linux patch 4.9.188

Signed-off-by: Mike Pagano  gentoo.org>

 _README  |4 +
 1187_linux-4.9.188.patch | 1207 ++
 2 files changed, 1211 insertions(+)

diff --git a/_README b/_README
index ddc9ef6..6e9f4e5 100644
--- a/_README
+++ b/_README
@@ -791,6 +791,10 @@ Patch:  1186_linux-4.9.187.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.9.187
 
+Patch:  1187_linux-4.9.188.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.9.188
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1187_linux-4.9.188.patch b/1187_linux-4.9.188.patch
new file mode 100644
index 000..fe6b76b
--- /dev/null
+++ b/1187_linux-4.9.188.patch
@@ -0,0 +1,1207 @@
+diff --git a/Makefile b/Makefile
+index 65ed5dc69ec9..b6b54e6f67e8 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 9
+-SUBLEVEL = 187
++SUBLEVEL = 188
+ EXTRAVERSION =
+ NAME = Roaring Lionus
+ 
+@@ -400,6 +400,7 @@ KBUILD_AFLAGS_MODULE  := -DMODULE
+ KBUILD_CFLAGS_MODULE  := -DMODULE
+ KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds
+ GCC_PLUGINS_CFLAGS :=
++CLANG_FLAGS :=
+ 
+ # Read KERNELRELEASE from include/config/kernel.release (if it exists)
+ KERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
+@@ -506,7 +507,7 @@ endif
+ 
+ ifeq ($(cc-name),clang)
+ ifneq ($(CROSS_COMPILE),)
+-CLANG_FLAGS   := --target=$(notdir $(CROSS_COMPILE:%-=%))
++CLANG_FLAGS   += --target=$(notdir $(CROSS_COMPILE:%-=%))
+ GCC_TOOLCHAIN_DIR := $(dir $(shell which $(CROSS_COMPILE)elfedit))
+ CLANG_FLAGS   += --prefix=$(GCC_TOOLCHAIN_DIR)
+ GCC_TOOLCHAIN := $(realpath $(GCC_TOOLCHAIN_DIR)/..)
+diff --git a/arch/arm/boot/dts/rk3288-veyron-mickey.dts 
b/arch/arm/boot/dts/rk3288-veyron-mickey.dts
+index f36f6f459225..365382ab9ebd 100644
+--- a/arch/arm/boot/dts/rk3288-veyron-mickey.dts
 b/arch/arm/boot/dts/rk3288-veyron-mickey.dts
+@@ -161,10 +161,6 @@
+   };
+ };
+ 
+- {
+-  /delete-property/mmc-hs200-1_8v;
+-};
+-
+  {
+   status = "disabled";
+ };
+diff --git a/arch/arm/boot/dts/rk3288-veyron-minnie.dts 
b/arch/arm/boot/dts/rk3288-veyron-minnie.dts
+index f72d616d1bf8..9647d9b6b299 100644
+--- a/arch/arm/boot/dts/rk3288-veyron-minnie.dts
 b/arch/arm/boot/dts/rk3288-veyron-minnie.dts
+@@ -125,10 +125,6 @@
+   power-supply = <_regulator>;
+ };
+ 
+- {
+-  /delete-property/mmc-hs200-1_8v;
+-};
+-
+ _keys {
+   pinctrl-0 = <_key_l _lid_int_l _down_l _up_l>;
+ 
+diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arch/arm/boot/dts/rk3288.dtsi
+index 17ec2e2d7a60..30f1384f619b 100644
+--- a/arch/arm/boot/dts/rk3288.dtsi
 b/arch/arm/boot/dts/rk3288.dtsi
+@@ -210,6 +210,7 @@
+,
+;
+   clock-frequency = <2400>;
++  arm,no-tick-in-suspend;
+   };
+ 
+   timer: timer@ff81 {
+diff --git a/arch/arm/mach-rpc/dma.c b/arch/arm/mach-rpc/dma.c
+index 6d3517dc4772..82aac38fa2cf 100644
+--- a/arch/arm/mach-rpc/dma.c
 b/arch/arm/mach-rpc/dma.c
+@@ -131,7 +131,7 @@ static irqreturn_t iomd_dma_handle(int irq, void *dev_id)
+   } while (1);
+ 
+   idma->state = ~DMA_ST_AB;
+-  disable_irq(irq);
++  disable_irq_nosync(irq);
+ 
+   return IRQ_HANDLED;
+ }
+@@ -174,6 +174,9 @@ static void iomd_enable_dma(unsigned int chan, dma_t *dma)
+   DMA_FROM_DEVICE : DMA_TO_DEVICE);
+   }
+ 
++  idma->dma_addr = idma->dma.sg->dma_address;
++  idma->dma_len = idma->dma.sg->length;
++
+   iomd_writeb(DMA_CR_C, dma_base + CR);
+   idma->state = DMA_ST_AB;
+   }
+diff --git a/arch/mips/lantiq/irq.c b/arch/mips/lantiq/irq.c
+index 8ac0e5994ed2..7c6f75c2aa4d 100644
+--- a/arch/mips/lantiq/irq.c
 b/arch/mips/lantiq/irq.c
+@@ -160,8 +160,9 @@ static int ltq_eiu_settype(struct irq_data *d, unsigned 
int type)
+   if (edge)
+   irq_set_handler(d->hwirq, handle_edge_irq);
+ 
+-  ltq_eiu_w32(ltq_eiu_r32(LTQ_EIU_EXIN_C) |
+-  (val << (i * 4)), LTQ_EIU_EXIN_C);
++  ltq_eiu_w32((ltq_eiu_r32(LTQ_EIU_EXIN_C) &
++  (~(7 << (i * 4 | (val << (i * 4)),
++  LTQ_EIU_EXIN_C);
+   }
+   }
+ 
+diff --git a/arch/x86/boot/compressed/misc.c b/arch/x86/boot/compressed/misc.c
+index d86e68d3c794..1912b2671f10 100644
+--- a/arch/x86/boot/compressed/misc.c
 

[gentoo-commits] proj/linux-patches:4.4 commit in: /

2019-08-06 Thread Mike Pagano
commit: bca635d0a8207f9f305273c128a58ffba0d31919
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Aug  6 19:14:44 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Aug  6 19:14:44 2019 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=bca635d0

Linux patch 4.4.188

Signed-off-by: Mike Pagano  gentoo.org>

 _README  |   4 +
 1187_linux-4.4.188.patch | 543 +++
 2 files changed, 547 insertions(+)

diff --git a/_README b/_README
index 42b6502..a8c41eb 100644
--- a/_README
+++ b/_README
@@ -791,6 +791,10 @@ Patch:  1186_linux-4.4.187.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.4.187
 
+Patch:  1187_linux-4.4.188.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.4.188
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1187_linux-4.4.188.patch b/1187_linux-4.4.188.patch
new file mode 100644
index 000..fce2f64
--- /dev/null
+++ b/1187_linux-4.4.188.patch
@@ -0,0 +1,543 @@
+diff --git a/Makefile b/Makefile
+index fdfe65eefa36..87d663191986 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 4
+-SUBLEVEL = 187
++SUBLEVEL = 188
+ EXTRAVERSION =
+ NAME = Blurry Fish Butt
+ 
+diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arch/arm/boot/dts/rk3288.dtsi
+index 04ea209f1737..98abb053b7da 100644
+--- a/arch/arm/boot/dts/rk3288.dtsi
 b/arch/arm/boot/dts/rk3288.dtsi
+@@ -205,6 +205,7 @@
+,
+;
+   clock-frequency = <2400>;
++  arm,no-tick-in-suspend;
+   };
+ 
+   timer: timer@ff81 {
+diff --git a/arch/arm/mach-rpc/dma.c b/arch/arm/mach-rpc/dma.c
+index 6d3517dc4772..82aac38fa2cf 100644
+--- a/arch/arm/mach-rpc/dma.c
 b/arch/arm/mach-rpc/dma.c
+@@ -131,7 +131,7 @@ static irqreturn_t iomd_dma_handle(int irq, void *dev_id)
+   } while (1);
+ 
+   idma->state = ~DMA_ST_AB;
+-  disable_irq(irq);
++  disable_irq_nosync(irq);
+ 
+   return IRQ_HANDLED;
+ }
+@@ -174,6 +174,9 @@ static void iomd_enable_dma(unsigned int chan, dma_t *dma)
+   DMA_FROM_DEVICE : DMA_TO_DEVICE);
+   }
+ 
++  idma->dma_addr = idma->dma.sg->dma_address;
++  idma->dma_len = idma->dma.sg->length;
++
+   iomd_writeb(DMA_CR_C, dma_base + CR);
+   idma->state = DMA_ST_AB;
+   }
+diff --git a/arch/mips/lantiq/irq.c b/arch/mips/lantiq/irq.c
+index 2e7f60c9fc5d..a7057a06c096 100644
+--- a/arch/mips/lantiq/irq.c
 b/arch/mips/lantiq/irq.c
+@@ -160,8 +160,9 @@ static int ltq_eiu_settype(struct irq_data *d, unsigned 
int type)
+   if (edge)
+   irq_set_handler(d->hwirq, handle_edge_irq);
+ 
+-  ltq_eiu_w32(ltq_eiu_r32(LTQ_EIU_EXIN_C) |
+-  (val << (i * 4)), LTQ_EIU_EXIN_C);
++  ltq_eiu_w32((ltq_eiu_r32(LTQ_EIU_EXIN_C) &
++  (~(7 << (i * 4 | (val << (i * 4)),
++  LTQ_EIU_EXIN_C);
+   }
+   }
+ 
+diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h
+index fd810a57ab1b..3328a37ddc75 100644
+--- a/arch/x86/include/asm/apic.h
 b/arch/x86/include/asm/apic.h
+@@ -44,7 +44,7 @@ static inline void generic_apic_probe(void)
+ 
+ #ifdef CONFIG_X86_LOCAL_APIC
+ 
+-extern unsigned int apic_verbosity;
++extern int apic_verbosity;
+ extern int local_apic_timer_c2_ok;
+ 
+ extern int disable_apic;
+diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h
+index 2cb49ac1b2b2..39f202462029 100644
+--- a/arch/x86/include/asm/kvm_host.h
 b/arch/x86/include/asm/kvm_host.h
+@@ -1184,25 +1184,29 @@ enum {
+ #define kvm_arch_vcpu_memslots_id(vcpu) ((vcpu)->arch.hflags & HF_SMM_MASK ? 
1 : 0)
+ #define kvm_memslots_for_spte_role(kvm, role) __kvm_memslots(kvm, (role).smm)
+ 
++asmlinkage void __noreturn kvm_spurious_fault(void);
++
+ /*
+  * Hardware virtualization extension instructions may fault if a
+  * reboot turns off virtualization while processes are running.
+- * Trap the fault and ignore the instruction if that happens.
++ * Usually after catching the fault we just panic; during reboot
++ * instead the instruction is ignored.
+  */
+-asmlinkage void kvm_spurious_fault(void);
+-
+-#define kvm_handle_fault_on_reboot(insn, cleanup_insn)\
+-  "666: " insn "\n\t" \
+-  "668: \n\t"   \
+-  ".pushsection .fixup, \"ax\" \n" \
+-  "667: \n\t" \
+-  cleanup_insn "\n\t"   \
+-  "cmpb $0, kvm_rebooting \n\t" \
+-  "jne 668b \n\t"   \
+-  __ASM_SIZE(push) " $666b \n\t"\
+-  "jmp kvm_spurious_fault \n\t" \
+-  ".popsection 

[gentoo-commits] repo/gentoo:master commit in: net-p2p/gtk-gnutella/

2019-08-06 Thread Hans de Graaff
commit: 817f029daf68560f5971d5c2ee0f0ddb6ada8ed7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Aug  6 18:48:27 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Aug  6 18:48:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=817f029d

net-p2p/gtk-gnutella: cleanup

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

 net-p2p/gtk-gnutella/Manifest   |  1 -
 net-p2p/gtk-gnutella/gtk-gnutella-1.1.13.ebuild | 90 -
 2 files changed, 91 deletions(-)

diff --git a/net-p2p/gtk-gnutella/Manifest b/net-p2p/gtk-gnutella/Manifest
index 7cdeaf267a3..ac3d5f71910 100644
--- a/net-p2p/gtk-gnutella/Manifest
+++ b/net-p2p/gtk-gnutella/Manifest
@@ -1,3 +1,2 @@
-DIST gtk-gnutella-1.1.13.tar.xz 19207704 BLAKE2B 
4a11fd3f8bd7554e78a75b51b818e2e863edc328d07d0da4fce07e9a6eca7307dd66082dc70caf96e9e85d1d68ee1ef253a47ffb58cc9f33358a5d71b10782cb
 SHA512 
14ff19a3f0bf55101570b4268cdd422defd2ccd112d80e9bafe2f6eb019b94c3c72763e67e2853d4446e68943355093c1279c6d67c101ca6d9b7f05ddd9ac7e0
 DIST gtk-gnutella-1.1.14.tar.xz 19372716 BLAKE2B 
b9caf1eaa79ca9c9e4d6a036f438eabbbab59a2d94a5227aee17ef9e9551af8185c3049247ee2e53ed913cbb46fafc6841d84346928490b380e16ccf5d27cc4e
 SHA512 
cf8d76a5d531ad26e6155aedc2099f86ff91f96c4587bd6910e844fb6d19d35b48e3d1c4df45b7c68b34f4afcf2ce507943d73a33d923a97f6c43dd9c9ce10c9
 DIST gtk-gnutella-1.1.15.tar.xz 19606508 BLAKE2B 
3c699f2c5e8b6962265c9fc9bc6720d740c447afb33bef8968e8c8f1f7ec8b88ec3381419cdcee8e2ec8f4e10be2c6e5707d5f89365f347a33990fffd0f18395
 SHA512 
6b2bee08fba463b66890c8c5d7f7815a8cc4106824e598bed8cffe4601b1e591fc14903ce8d587815257f795c854d459b3a4fa7cc90de2fbc109daef025e5968

diff --git a/net-p2p/gtk-gnutella/gtk-gnutella-1.1.13.ebuild 
b/net-p2p/gtk-gnutella/gtk-gnutella-1.1.13.ebuild
deleted file mode 100644
index 0d716e9f88d..000
--- a/net-p2p/gtk-gnutella/gtk-gnutella-1.1.13.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils
-
-IUSE="nls dbus ssl +gtk"
-
-DESCRIPTION="A GTK+ Gnutella client"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-HOMEPAGE="http://gtk-gnutella.sourceforge.net/;
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc ~ppc64 x86 ~x86-fbsd"
-
-RDEPEND="
-   sys-libs/binutils-libs:=
-   dev-libs/glib:2
-   sys-libs/zlib
-   gtk? ( >=x11-libs/gtk+-2.2.1:2 )
-   dbus? ( >=sys-apps/dbus-0.35.2 )
-   ssl? ( >=net-libs/gnutls-2.2.5 )
-   nls? ( >=sys-devel/gettext-0.11.5 )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   eapply "${FILESDIR}/${PN}-1.1.14-statx.patch"
-
-   strip-linguas -i po
-
-   echo "# Gentoo-selected LINGUAS" > po/LINGUAS
-   for ling in ${LINGUAS}; do
-   echo $ling >> po/LINGUAS
-   done
-
-   default
-}
-
-src_configure() {
-   # There is no option to turn off optimization through the build.sh
-   # script.
-   sed -i -e "s/Configure -Oder/Configure -Oder -Doptimize=none/" build.sh 
|| die
-
-   # The build script does not support the equivalent --enable
-   # options so we must construct the configuration by hand.
-
-   local myconf
-
-   if ! use nls; then
-   myconf="${myconf} --disable-nls"
-   fi
-
-   if ! use dbus; then
-   myconf="${myconf} --disable-dbus"
-   fi
-
-   if ! use ssl; then
-   myconf="${myconf} --disable-gnutls"
-   fi
-
-   if use gtk; then
-   myconf="${myconf} --gtk2"
-   else
-   myconf="${myconf} --topless"
-   fi
-
-   ./build.sh \
-   --configure-only \
-   --prefix="/usr" \
-   --cc=$(tc-getCC) \
-   ${myconf}
-}
-
-src_compile() {
-   # Build system is not parallel-safe, bug 500760
-   emake -j1
-}
-
-src_install() {
-   dodir /usr/bin
-   emake INSTALL_PREFIX="${D}" install || die "Install failed"
-   dodoc AUTHORS ChangeLog README TODO
-
-   # Touch the symbols file into the future to avoid warnings from
-   # gtk-gnutella later on, since we will most likely strip the binary.
-   touch --date="next minute" "${D}/usr/lib/gtk-gnutella/gtk-gnutella.nm" 
|| die
-}



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

2019-08-06 Thread Hans de Graaff
commit: 3d445ba7555ce494de68833d5f56ffaf9cf8459e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Aug  6 18:56:01 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Aug  6 18:56:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d445ba7

dev-ruby/haml: add 5.1.2

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

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

diff --git a/dev-ruby/haml/Manifest b/dev-ruby/haml/Manifest
index d962d0fbc5d..e4d688b8957 100644
--- a/dev-ruby/haml/Manifest
+++ b/dev-ruby/haml/Manifest
@@ -2,3 +2,4 @@ DIST haml-4.0.7.gem 121856 BLAKE2B 
e2598df73b9bf7337c06f60b30fcf7925fa5948f46430
 DIST haml-5.0.4.tar.gz 124580 BLAKE2B 
c22e464be26f65bd94b202b21604bb9fe3d740865832c9299d93606293794316a5262504e15583fdc2628a3015ea58f9924a9b3aab2f46340b305ad5af7968ac
 SHA512 
125ae514f800b2dd58f7f339ef3bf8c15114c5738813d911985182d4e4b1e8551c92a89149427aa8bf3326f45c8f71f4f13f37ecb7e2bee5cb75163538f6a3a8
 DIST haml-5.1.0.tar.gz 125693 BLAKE2B 
0a2e9044e7468a93b5fa62adc77131a67e79fe3701f86ba9dc341a5e33a52701bad09115137c7decfac92bd7e1aa92bbe6bd0a063ef5917c9c6cf4d072a9278a
 SHA512 
97ed4eef3f1b0748c8d7c717dffc466db9da92c862bc90f9db05043facdbe58e605f83193a0d94b8bbcf2863ca0ab95de0a31ec266ee2907aacb94346fddd875
 DIST haml-5.1.1.tar.gz 125902 BLAKE2B 
b8564dca6a381038dae1b737b6f4a51089b96f618d684f43db6947bc738e06b073aa17241b406ed06fea48fda9c7ec759149829a5727f8da3df21da3cce22318
 SHA512 
fdc01762280cbece243d1ac1a3c8b6b484e3b01fcb2ff80df591d172ec6aed7240736095aa5a09149049ebb54cf24af32706772a6090c3171c84ccb069d12826
+DIST haml-5.1.2.tar.gz 126059 BLAKE2B 
5d805f29c28d0f6355f7b79e5724ec1639a808cfae75c26633edddcc82d964a48dbc1654b780fb706529ca22abcaba953a1af6f483386c336035c079a719e585
 SHA512 
405976de297bfdbd6f010442d940205c404f057a54cd7162feb400b1831af3e4e60fd05a637a2f480204428512ca7dd66c02aca22b0006d6d515c06968eb08a3

diff --git a/dev-ruby/haml/haml-5.1.2.ebuild b/dev-ruby/haml/haml-5.1.2.ebuild
new file mode 100644
index 000..2fa390744d6
--- /dev/null
+++ b/dev-ruby/haml/haml-5.1.2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_TEST="MT_NO_PLUGINS=true test"
+RUBY_FAKEGEM_TASK_DOC="-Ilib doc"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md FAQ.md README.md REFERENCE.md"
+RUBY_FAKEGEM_DOCDIR="doc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A ruby web page templating engine"
+HOMEPAGE="http://haml.info/;
+SRC_URI="https://github.com/haml/haml/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="5"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+
+IUSE="doc test"
+
+RDEPEND="${RDEPEND} !!=dev-ruby/temple-0.8.0 dev-ruby/tilt:*"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/minitest:5
+   dev-ruby/nokogiri
+   dev-ruby/railties:5.2
+   dev-ruby/activemodel:5.2
+   dev-ruby/actionpack:5.2
+   )
+   doc? (
+   dev-ruby/yard
+   >=dev-ruby/maruku-0.7.2-r1
+   )"
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} 
|| die
+
+   sed -i -e '/bundler/I s:^:#:' \
+   -e 's/gem "minitest"/gem "minitest", "~>5.0"/'\
+   -e '1igem "actionpack", "~>5.2"'\
+   -e '1igem "activesupport", "~>5.2"; gem "activemodel", "~>5.2"'\
+   -e '1igem "railties", "~>5.2"'\
+   test/test_helper.rb || die
+   # Remove test that fails when RedCloth is available
+   sed -i -e "/should raise error when a Tilt filters dependencies are 
unavailable for extension/,/^  end/ s/^/#/"\
+   test/filters_test.rb || die
+}



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

2019-08-06 Thread Michał Górny
commit: 5206b5769e68c8aecae41a54d77520205f928a36
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Aug  6 16:31:59 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug  6 18:25:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5206b576

app-misc/radeontop: update e-mail address

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michał Górny  gentoo.org>

 app-misc/radeontop/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/radeontop/metadata.xml b/app-misc/radeontop/metadata.xml
index 4229aa40eac..b7acaa774ca 100644
--- a/app-misc/radeontop/metadata.xml
+++ b/app-misc/radeontop/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   bu9zi...@gmail.com
+   m.mairkeimber...@gmail.com
Michael Mair-Keimberger





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

2019-08-06 Thread Michał Górny
commit: a6b8c3c56a28b40fce5bd66de89425501c8ec495
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Aug  6 16:33:24 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug  6 18:25:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6b8c3c5

net-misc/ncp: update e-mail address

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12622
Signed-off-by: Michał Górny  gentoo.org>

 net-misc/ncp/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/ncp/metadata.xml b/net-misc/ncp/metadata.xml
index da384e181f0..cbd3e630248 100644
--- a/net-misc/ncp/metadata.xml
+++ b/net-misc/ncp/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   bu9zi...@gmail.com
+   m.mairkeimber...@gmail.com
Michael Mair-Keimberger





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

2019-08-06 Thread Michał Górny
commit: 4a4492392c9265cf893910297a761cd28101a577
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Aug  6 16:32:24 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug  6 18:25:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a449239

net-analyzer/authforce: update e-mail address

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michał Górny  gentoo.org>

 net-analyzer/authforce/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/authforce/metadata.xml 
b/net-analyzer/authforce/metadata.xml
index a565dfe5457..2d4f0f870b4 100644
--- a/net-analyzer/authforce/metadata.xml
+++ b/net-analyzer/authforce/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   bu9zi...@gmail.com
+   m.mairkeimber...@gmail.com
Michael Mair-Keimberger





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

2019-08-06 Thread Michał Górny
commit: 83ed479e0c2c47a125b6c1ba30268e845deb0073
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue Aug  6 16:32:52 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug  6 18:25:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83ed479e

net-analyzer/chaosreader: update e-mail address

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michał Górny  gentoo.org>

 net-analyzer/chaosreader/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/chaosreader/metadata.xml 
b/net-analyzer/chaosreader/metadata.xml
index 4cd76b15bbe..f74b571ce67 100644
--- a/net-analyzer/chaosreader/metadata.xml
+++ b/net-analyzer/chaosreader/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   bu9zi...@gmail.com
+   m.mairkeimber...@gmail.com
Michael Mair-Keimberger





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

2019-08-06 Thread Matt Turner
commit: 82fc7e3430550649b962cc4bef790a138d17de20
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Aug  6 17:49:12 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Aug  6 17:50:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82fc7e34

app-crypt/jitterentropy-2.1.2: added ~mips, bug 691526

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

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

diff --git a/app-crypt/jitterentropy/jitterentropy-2.1.2.ebuild 
b/app-crypt/jitterentropy/jitterentropy-2.1.2.ebuild
index c9568cf0829..fb7b73f3354 100644
--- a/app-crypt/jitterentropy/jitterentropy-2.1.2.ebuild
+++ b/app-crypt/jitterentropy/jitterentropy-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/smuellerDD/jitterentropy-library/archive/v${PV}.tar.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~arm64 ~mips ~ppc ~ppc64 ~riscv"
 IUSE="static-libs"
 
 S="${WORKDIR}/${PN}-library-${PV}"



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

2019-08-06 Thread Matt Turner
commit: 75f83880ab7212e02f3e95652c02eaebb11a751e
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Aug  6 17:46:02 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Aug  6 17:50:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75f83880

app-admin/mcelog: Drop old versions

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

 app-admin/mcelog/Manifest  |  1 -
 app-admin/mcelog/mcelog-161.ebuild | 58 --
 2 files changed, 59 deletions(-)

diff --git a/app-admin/mcelog/Manifest b/app-admin/mcelog/Manifest
index 5fa992c21e1..fa95c2af915 100644
--- a/app-admin/mcelog/Manifest
+++ b/app-admin/mcelog/Manifest
@@ -1,2 +1 @@
-DIST mcelog-161.tar.gz 308227 BLAKE2B 
cd208cce2685b779a2cac6d347b890d5bff5f07d2e7165c1d078f914aefcc26bef2ab968ec6baac4410134d8188dd73e4f3d77f13603307f8c6b592554146497
 SHA512 
af38fcc1cc9621d6cfbda2b9acc7698cddbe631690bf394398978bdafd0d98075539012827ca876cef3f64cc56a00d31d0bd0f4fe2ea9171eb41bf0163e35f0e
 DIST mcelog-162.tar.gz 308347 BLAKE2B 
bd438e85ea793c6c5ce4d561f0400e91b101a010cce7f937751a11a0a974fec49db7e9d768fc50db68a91c973c90c8ab1b4ffa80964cb6fde860b9f2ac217435
 SHA512 
d61a0b7ad3974098963edde1e9e9acdf4dbd1a025577b7044bafc17302abd19080c8145a2700c691400af0768ff4b6833d47697e1478c5bef8831f7f8b61ae48

diff --git a/app-admin/mcelog/mcelog-161.ebuild 
b/app-admin/mcelog/mcelog-161.ebuild
deleted file mode 100644
index 37a8e88bf73..000
--- a/app-admin/mcelog/mcelog-161.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit linux-info systemd toolchain-funcs
-
-DESCRIPTION="A tool to log and decode Machine Check Exceptions"
-HOMEPAGE="http://mcelog.org/;
-SRC_URI="https://github.com/andikleen/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="selinux"
-
-RDEPEND="selinux? ( sec-policy/selinux-mcelog )"
-
-# TODO: add mce-inject to the tree to support test phase
-RESTRICT="test"
-
-pkg_pretend() {
-   if [[ ${MERGE_TYPE} != buildonly ]]; then
-   local CONFIG_CHECK="~X86_MCE"
-   kernel_is -ge 4 12 && CONFIG_CHECK+=" ~X86_MCELOG_LEGACY"
-   check_extra_config
-   fi
-}
-
-src_prepare() {
-   eapply "${FILESDIR}"/${PN}-0.8_pre1-timestamp-${PN}.patch \
-   "${FILESDIR}"/${PN}-129-debugflags.patch
-   eapply_user
-   tc-export CC
-}
-
-src_install() {
-   default
-
-   insinto /etc/cron.daily
-   newins ${PN}.cron ${PN}
-
-   insinto /etc/logrotate.d/
-   newins ${PN}.logrotate ${PN}
-
-   newinitd "${FILESDIR}"/${PN}.init-r1 ${PN}
-   systemd_dounit "${FILESDIR}"/${PN}.service
-
-   dodoc *.pdf
-}
-
-pkg_postinst() {
-   einfo "The default configuration set is now installed in /etc/${PN}"
-   einfo "you might want to edit those files."
-   einfo
-   einfo "A sample cronjob is installed into /etc/cron.daily"
-   einfo "without executable bit (system service is the preferred method 
now)"
-}



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

2019-08-06 Thread Matt Turner
commit: 2656c190e52adc414c8b6dd0d600dfef205e8073
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Aug  6 17:49:59 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Aug  6 17:50:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2656c190

profiles/arch/mips/package.use.mask: sys-apps/rng-tools -jitterentropy

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

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

diff --git a/profiles/arch/mips/package.use.mask 
b/profiles/arch/mips/package.use.mask
index e3984601c31..92a2e3c4b2f 100644
--- a/profiles/arch/mips/package.use.mask
+++ b/profiles/arch/mips/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Matt Turner  (2019-08-06)
+# Dependency app-crypt/jitterentropy is keyworded for mips
+sys-apps/rng-tools -jitterentropy
+
 # Michał Górny  (2018-01-23)
 # USE=collab requires unkeyworded net-libs/loudmouth & dev-cpp/asio.
 # USE=grammar requires dev-libs/link-grammar.



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

2019-08-06 Thread Matt Turner
commit: ca5afd8b514e092073650e86ccdf20d8f26e89b9
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Aug  6 17:50:23 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Aug  6 17:50:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca5afd8b

sys-apps/rng-tools-6.7-r1: added ~mips

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

 sys-apps/rng-tools/rng-tools-6.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/rng-tools/rng-tools-6.7-r1.ebuild 
b/sys-apps/rng-tools/rng-tools-6.7-r1.ebuild
index 5dae56a3f5b..6494d945d18 100644
--- a/sys-apps/rng-tools/rng-tools-6.7-r1.ebuild
+++ b/sys-apps/rng-tools/rng-tools-6.7-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/nhorman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~riscv ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~riscv ~x86"
 IUSE="jitterentropy nistbeacon pkcs11 selinux"
 
 DEPEND="dev-libs/libgcrypt:0



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

2019-08-06 Thread Matt Turner
commit: 3f75de7b92b35ae77b53f98d63a87c64e8ad2afa
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Aug  6 17:45:52 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Aug  6 17:50:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f75de7b

app-admin/mcelog: Stabilize

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

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

diff --git a/app-admin/mcelog/mcelog-162.ebuild 
b/app-admin/mcelog/mcelog-162.ebuild
index 557b542b3a9..31375397179 100644
--- a/app-admin/mcelog/mcelog-162.ebuild
+++ b/app-admin/mcelog/mcelog-162.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/andikleen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="selinux"
 
 RDEPEND="selinux? ( sec-policy/selinux-mcelog )"



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

2019-08-06 Thread Anthony G. Basile
commit: 4da50aff18ff0dbf2c8ae713076165bcf255d0a1
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Aug  6 17:46:52 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Aug  6 17:47:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4da50aff

dev-libs/libressl: version bump to 3.0.0

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

 dev-libs/libressl/Manifest  |  1 +
 dev-libs/libressl/libressl-3.0.0.ebuild | 62 +
 2 files changed, 63 insertions(+)

diff --git a/dev-libs/libressl/Manifest b/dev-libs/libressl/Manifest
index 6e2d9e25a20..733e24a4f32 100644
--- a/dev-libs/libressl/Manifest
+++ b/dev-libs/libressl/Manifest
@@ -2,3 +2,4 @@ DIST libressl-2.6.5.tar.gz 3225481 BLAKE2B 
fcdf0d8b4b68fdb6c17299f4b9897c84f51ec
 DIST libressl-2.8.3.tar.gz 3366196 BLAKE2B 
e32c097b31998d68a31266fbbf3624d5ab8ca716f8c53e423bcf09b3a8ab3542c92a99e259ded7b86f99b45cc199cd44791520a609f18c35d150365de5768eec
 SHA512 
3967e08b3dc2277bf77057ea1f11148df7f96a2203cd21cf841902f2a1ec11320384a001d01fa58154d35612f7981bf89d5b1a60a2387713d5657677f76cc682
 DIST libressl-2.9.1.tar.gz 3607116 BLAKE2B 
a4542d7fc97bfd213162fe908e28b27d52329e2b6a5d77e0cb67d1a6732c500ca772d0c5735c9fcd036c477e6ede330305b4675bfcff9f72fd7886a781f30015
 SHA512 
7051911e566bb093c48a70da72c9981b870e3bf49a167ba6c934eece873084cc41221fbe3cd0c8baba268d0484070df7164e4b937854e716337540a87c214354
 DIST libressl-2.9.2.tar.gz 3607549 BLAKE2B 
496e993e4f1c85167e0344afab61259d4e3f094a7e5dfac85878191070e2c196753162532efb921fab582481aeda3705fca9a2b48921cba82465192f2c1eef95
 SHA512 
b43e73e47c1f14da3c702ab42f29f1d67645a4fa425441337bd6c125b481ef78a40fd13e6b34dadb2af337e1c0c190cfb616186d4db9c9a743a37e594b9b8033
+DIST libressl-3.0.0.tar.gz 3620475 BLAKE2B 
c1dc1709e60cfbfa9907c206340262b78e1bfb991d3956dfc0a5d8d80f80b61df41059e645f9f096185724470e8466a5b7a444a575f5f09d5a0f9eb35ff3ae7e
 SHA512 
460fa390012218262b7c148a28e6ddfc0dc3d669c4bdd37b68bfa6f50a0cb2fb81a277fb46ae0ac22673aae5b5cc4476fe96e56471a6812176bf76e9c5e10838

diff --git a/dev-libs/libressl/libressl-3.0.0.ebuild 
b/dev-libs/libressl/libressl-3.0.0.ebuild
new file mode 100644
index 000..65dfe075bbc
--- /dev/null
+++ b/dev-libs/libressl/libressl-3.0.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib-minimal libtool
+
+DESCRIPTION="Free version of the SSL/TLS protocol forked from OpenSSL"
+HOMEPAGE="https://www.libressl.org/;
+SRC_URI="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${P}.tar.gz;
+
+LICENSE="ISC openssl"
+# Reflects ABI of libcrypto.so and libssl.so.  Since these can differ,
+# we'll try to use the max of either.  However, if either change between
+# versions, we have to change the subslot to trigger rebuild of consumers.
+SLOT="0/47"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE="+asm static-libs test"
+REQUIRED_USE="test? ( static-libs )"
+
+RDEPEND="!dev-libs/openssl:0"
+DEPEND="${RDEPEND}"
+PDEPEND="app-misc/ca-certificates"
+
+src_prepare() {
+   touch crypto/Makefile.in
+
+   sed -i \
+   -e '/^[ \t]*CFLAGS=/s#-g ##' \
+   -e '/^[ \t]*CFLAGS=/s#-g"#"#' \
+   -e '/^[ \t]*CFLAGS=/s#-O2 ##' \
+   -e '/^[ \t]*CFLAGS=/s#-O2"#"#' \
+   -e '/^[ \t]*USER_CFLAGS=/s#-O2 ##' \
+   -e '/^[ \t]*USER_CFLAGS=/s#-O2"#"#' \
+   configure || die "fixing CFLAGS failed"
+
+   if ! use test ; then
+   sed -i \
+   -e '/^[ \t]*SUBDIRS =/s#tests##' \
+   Makefile.in || die "Removing tests failed"
+   fi
+
+   eapply "${FILESDIR}"/${PN}-2.8.3-solaris10.patch
+   eapply_user
+
+   elibtoolize  # for Solaris
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable asm) \
+   $(use_enable static-libs static)
+}
+
+multilib_src_test() {
+   emake check
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   find "${D}" -name '*.la' -exec rm -f {} + || die
+}



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

2019-08-06 Thread Matt Turner
commit: 98a467e3b8d100476163345a07594d1f9720a4a3
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Aug  6 17:39:45 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Aug  6 17:39:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98a467e3

media-gfx/xdot: Stabilize

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

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

diff --git a/media-gfx/xdot/xdot-1.1.ebuild b/media-gfx/xdot/xdot-1.1.ebuild
index 8842ac3a99a..b184e548ad6 100644
--- a/media-gfx/xdot/xdot-1.1.ebuild
+++ b/media-gfx/xdot/xdot-1.1.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
SRC_URI=""
 else
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 x86"
MY_P="${MY_PN}-${PV}"
S="${WORKDIR}/${MY_P}"
SRC_URI="https://github.com/jrfonseca/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"



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

2019-08-06 Thread Matt Turner
commit: 5904e82140b6832c146113c233180f75f71ddf82
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Aug  6 17:39:01 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Aug  6 17:39:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5904e821

media-gfx/xdot: Drop old versions

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

 media-gfx/xdot/Manifest|  1 -
 media-gfx/xdot/xdot-1.0.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/media-gfx/xdot/Manifest b/media-gfx/xdot/Manifest
index 6cc95a1419a..21627c23715 100644
--- a/media-gfx/xdot/Manifest
+++ b/media-gfx/xdot/Manifest
@@ -1,2 +1 @@
-DIST xdot-1.0.tar.gz 131868 BLAKE2B 
433d81913d19ae341c7168d9e22a2c8a54f49b0ad6b0da744cc3152766b333252b9ad7ba3831bdb17fc29a2408f8bdf3d929a438e89a78945f8edd7a8cd123b9
 SHA512 
52330380973ee122ac5d93f1be5b8f21b5719f537c93dd6f356a116207e366d16cf3cefcb9ec59b21b7170dc94e1f413307c3980e9ba2eaef5ce45340b50b311
 DIST xdot-1.1.tar.gz 134215 BLAKE2B 
e241a4fb1ec69a8613f7813dc159761e6bffb82ea9f58876287d01946f4c93e66e5eef66e6844abb7738979412c2c7d2d26f76bc0563ad0c3c8550d9e8023b47
 SHA512 
d67c45c8c071013551f79d671a21ce546b680fac5997ba9631a882ffa3c44c15a69949643ed5e8211417006152575a1d99450ccfb6062427521d1e2bc0814f55

diff --git a/media-gfx/xdot/xdot-1.0.ebuild b/media-gfx/xdot/xdot-1.0.ebuild
deleted file mode 100644
index ae5b3769694..000
--- a/media-gfx/xdot/xdot-1.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_5 python3_6 )
-
-inherit distutils-r1
-
-MY_PN=xdot.py
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Interactive viewer for Graphviz dot files"
-HOMEPAGE="https://github.com/jrfonseca/xdot.py;
-SRC_URI="https://github.com/jrfonseca/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   media-gfx/graphviz
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   eapply_user
-
-   # Don't require graphviz python(2) supprt, which xdot doesn't use. This 
allows xdot to support python3.
-   # For more info, see https://bugs.gentoo.org/643126
-   sed -i "/install_requires=\['graphviz'\],/d" setup.py || die
-}



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

2019-08-06 Thread Pacho Ramos
commit: 88095ceae7c44e2739e862df27fd2193b39ddd2a
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Aug  6 16:47:03 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Aug  6 16:47:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88095cea

Revert "app-i18n/libskk: Drop old"

This reverts commit 817343f2589492047c20295571c1933615d349f8.

Signed-off-by: Pacho Ramos  gentoo.org>

 app-i18n/libskk/Manifest|  1 +
 app-i18n/libskk/libskk-1.0.1.ebuild | 48 +
 2 files changed, 49 insertions(+)

diff --git a/app-i18n/libskk/Manifest b/app-i18n/libskk/Manifest
index ab428f2bac6..557f4b43502 100644
--- a/app-i18n/libskk/Manifest
+++ b/app-i18n/libskk/Manifest
@@ -1 +1,2 @@
+DIST libskk-1.0.1.tar.gz 860453 BLAKE2B 
95f386e34f479548c7b4a37c3d70d16e27fd238a83e09c9dfc539ec9c3cc1466bea6a1d694e9b1027d66955053b2af1719a96ea4b5a37f61fda82118250576cf
 SHA512 
17dc7c0361083c08c29267b4fe2d066b079e5156728f461717044f99579ec2674b56c960d2be5a42a2dffb693106d2d3d78ec8cb833e8f189d48e421a25d91b0
 DIST libskk-1.0.2.tar.gz 867572 BLAKE2B 
32f599e83bf7ced796d2f37f6f4bf5e45f47c90e144784b7b3e082866cc619a26e3aca4f16051685baa4d8ac54b0462930193f978bc1e8220b378679269c5833
 SHA512 
f8fff94b216c18f66bf1004ee068f8d737177f1b70ac36d054d9a68ce02ba9b8d1b7b4127d9a330f64054b2fe06f352070c750a3562d4be36fecf20cb854e6c0

diff --git a/app-i18n/libskk/libskk-1.0.1.ebuild 
b/app-i18n/libskk/libskk-1.0.1.ebuild
new file mode 100644
index 000..9dfbf773269
--- /dev/null
+++ b/app-i18n/libskk/libskk-1.0.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit ltprune vala virtualx
+
+DESCRIPTION="GObject-based library to deal with Japanese kana-to-kanji 
conversion method"
+HOMEPAGE="https://github.com/ueno/libskk;
+SRC_URI="https://bitbucket.org/${PN}/${PN}/downloads/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="+introspection nls static-libs"
+
+RDEPEND="dev-libs/glib:2
+   dev-libs/json-glib
+   dev-libs/libgee:0
+   introspection? ( dev-libs/gobject-introspection )
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   $(vala_depend)
+   dev-util/intltool
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+src_prepare() {
+   vala_src_prepare
+   default
+}
+
+src_configure() {
+   econf \
+   $(use_enable introspection) \
+   $(use_enable nls) \
+   $(use_enable static-libs static)
+}
+
+src_test() {
+   export GSETTINGS_BACKEND="memory"
+   virtx emake check
+}
+
+src_install() {
+   default
+   prune_libtool_files
+}



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

2019-08-06 Thread Ben Kohler
commit: 08835e4b296a36e300d4f6c8ada45bfe72ec9f59
Author: Ben Kohler  gentoo  org>
AuthorDate: Tue Aug  6 15:53:31 2019 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Tue Aug  6 15:53:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08835e4b

net-wireless/unifi: bump to 5.10.27

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

 net-wireless/unifi/Manifest |  1 +
 net-wireless/unifi/unifi-5.10.27.ebuild | 74 +
 2 files changed, 75 insertions(+)

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index cc99b00ba47..623209f5714 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -1,5 +1,6 @@
 DIST unifi-5.10.25.zip 91781146 BLAKE2B 
3a4166f3d96c1fe0e7a9afd7e85266e6dacaa4bad44af1cfd72cd22f8a2f5fae4ca4534c5ae09ca50ddc216e067e5e5598e0cc3ea1bcb96802b7379dca03426b
 SHA512 
2a88c8640b10c2b596c40c3e4594062f9828db3e2be5dd159dcf7275b3796c7ef8714c60c27de980672fb1ccc88e9fa7640fc74e61e6d994e3fb1214d0e0bd48
 DIST unifi-5.10.26.zip 91777116 BLAKE2B 
a07f296aa55204d0c1be055f0c54901824eaf2341548ae3a4de95faa496f5e38e19cd62974da09abfad5756889506db4dda1aa8803e0f87036ebfb3205c47c10
 SHA512 
3722c83b810e3ddce6c82d8b8119717b00213d5052baf66288299311fe6f7e8c5a5c5dbdae871a166bcfeb1e70c69f2ed4f34dea702d50e69d1a1a8eacea4594
+DIST unifi-5.10.27.zip 91782447 BLAKE2B 
810170b44dc6ade4e9b3805302f3f17fde104e04f581aacba895dbb41f1c2450a764aeb62841cc93df5d8a0bdcaebe9ab12a9644cacf7ae4261b9a09301cf652
 SHA512 
f425596e1d8f0ee82d1bb84c1a5f0900d5cbcbbc579b6a9769bd10c7f66e61423c14dcf08028525b12495e144ee2d9452a3e4a5d6bc3331f14f087c27effc5eb
 DIST unifi-5.11.29.zip 111460891 BLAKE2B 
5740b760570d8bc94c54c679e846cefcaff6e36a5c07921e997df0bfc8b994803c35c3d486d2130cae21c8731156728e2a95cc62e033bf4c28ef485347ba1a35
 SHA512 
73ddf723e9e6de8dc95c33a54eaa82bcc11304488fe2e6dfadb2eaf906f34997b7815def8ec765f460fab6a77a311aaf617aba27bbee5636205ca45c3d4bd486
 DIST unifi-5.11.34.zip 112196079 BLAKE2B 
2d1d691f54edd7ef744f55696cac90f471e5fc6d8c3aeda1ebf54f53c985a81c3e959e6db8942fce70dcecff70aa799948cffb34a50391552501bb9738bd45f6
 SHA512 
66768c79db741bbab6de608f7c30dd0db43807d85e3babc0fe921d1e7533548ee4f07dd033309b422ba1c24fa22186d503f6e8ac5785301aac0507e5bfbf
 DIST unifi-5.6.42.zip 63581448 BLAKE2B 
dc12149acc56587043b9f6c45a43327a9a067dda86127c60ad62a4681a0c8ba873435b60183989332f561fb52f71c7207480766ec23d9c0e892cc20c521a9819
 SHA512 
467c0ad284a84795537484f371867d851e67c7e396215d539a9705f17f374b50db4051121a6634d1944474a2474bdd75fca860ab00b48634a5d3e8749a122989

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



[gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/

2019-08-06 Thread Agostino Sarubbo
commit: c2a10094863879184992fa5a8c0c400e4bc8dcb0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug  6 15:23:57 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug  6 15:23:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2a10094

app-doc/doxygen: alpha stable wrt bug #691282

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="alpha"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-doc/doxygen/doxygen-1.8.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-doc/doxygen/doxygen-1.8.15.ebuild 
b/app-doc/doxygen/doxygen-1.8.15.ebuild
index bef6ce56b50..7564d101776 100644
--- a/app-doc/doxygen/doxygen-1.8.15.ebuild
+++ b/app-doc/doxygen/doxygen-1.8.15.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} = ** ]]; then
SRC_URI=""
 else
SRC_URI="http://doxygen.nl/files/${P}.src.tar.gz;
-   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
 
 DESCRIPTION="Documentation system for most programming languages"



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

2019-08-06 Thread Agostino Sarubbo
commit: 9b280db7be20b966b8d0685261a79084db095b34
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug  6 15:24:00 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug  6 15:24:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b280db7

net-libs/libmicrohttpd: alpha stable wrt bug #691366

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="alpha"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.65.ebuild 
b/net-libs/libmicrohttpd/libmicrohttpd-0.9.65.ebuild
index 514e7ea0a9f..57c0c3aef47 100644
--- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.65.ebuild
+++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.65.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/12"
-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="+epoll messages ssl static-libs test"
 
 RDEPEND="ssl? (



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

2019-08-06 Thread Agostino Sarubbo
commit: 225d74eba6b54f2dd962e664c4df71a66d326368
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug  6 15:24:04 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug  6 15:24:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=225d74eb

app-admin/sudo: alpha stable wrt bug #691410

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="alpha"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-admin/sudo/sudo-1.8.27-r1.ebuild 
b/app-admin/sudo/sudo-1.8.27-r1.ebuild
index 0029c975e4a..022bbb3d142 100644
--- a/app-admin/sudo/sudo-1.8.27-r1.ebuild
+++ b/app-admin/sudo/sudo-1.8.27-r1.ebuild
@@ -23,7 +23,7 @@ if [[ ${PV} != "" ]] ; then
SRC_URI="https://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz
ftp://ftp.sudo.ws/pub/sudo/${uri_prefix}${MY_P}.tar.gz;
if [[ ${PV} != *_beta* ]] && [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc 
ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~sparc-solaris"
+   KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc 
ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~sparc-solaris"
fi
 fi
 



[gentoo-commits] repo/gentoo:master commit in: acct-user/mysql/

2019-08-06 Thread Brian Evans
commit: 96d4aa672c0f0f6431d490be31cba63c2a00ef3a
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Aug  6 14:51:56 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Aug  6 14:51:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96d4aa67

acct-user/mysql: Mark stable for virtual ebuild

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

 acct-user/mysql/mysql-0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/acct-user/mysql/mysql-0.ebuild b/acct-user/mysql/mysql-0.ebuild
index 1f57c7899a2..3062dd5c5fa 100644
--- a/acct-user/mysql/mysql-0.ebuild
+++ b/acct-user/mysql/mysql-0.ebuild
@@ -9,4 +9,5 @@ DESCRIPTION="MySQL program user"
 ACCT_USER_ID=60
 ACCT_USER_GROUPS=( mysql )
 acct-user_add_deps
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"



[gentoo-commits] repo/gentoo:master commit in: acct-group/mysql/

2019-08-06 Thread Brian Evans
commit: 01f381fe73c0053d549209b929f3de0f6cdd237f
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Aug  6 14:50:42 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Aug  6 14:50:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01f381fe

acct-group/mysql: Mark stable on all arches for virtual ebuild

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

 acct-group/mysql/mysql-0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/acct-group/mysql/mysql-0.ebuild b/acct-group/mysql/mysql-0.ebuild
index 3ade1e2896a..5d035f87795 100644
--- a/acct-group/mysql/mysql-0.ebuild
+++ b/acct-group/mysql/mysql-0.ebuild
@@ -7,4 +7,5 @@ inherit acct-group
 
 DESCRIPTION="MySQL program group"
 ACCT_GROUP_ID=60
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"



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

2019-08-06 Thread Keri Harris
commit: 79b655849e44f372c78bdc842ac319603026d899
Author: Keri Harris  gentoo  org>
AuthorDate: Tue Aug  6 14:44:34 2019 +
Commit: Keri Harris  gentoo  org>
CommitDate: Tue Aug  6 14:44:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79b65584

dev-lang/swi-prolog: stable on amd64. Bug #691572

Signed-off-by: Keri Harris  gentoo.org>
Package-Manager: Portage-2.3.69, Repoman-2.3.11

 dev-lang/swi-prolog/swi-prolog-8.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/swi-prolog/swi-prolog-8.0.3.ebuild 
b/dev-lang/swi-prolog/swi-prolog-8.0.3.ebuild
index e290240e32c..58464997dab 100644
--- a/dev-lang/swi-prolog/swi-prolog-8.0.3.ebuild
+++ b/dev-lang/swi-prolog/swi-prolog-8.0.3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://www.swi-prolog.org/download/stable/src/swipl-${PV}.tar.gz;
 
 LICENSE="BSD-2"
 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="archive berkdb debug doc +gmp java +libedit libressl minimal odbc pcre 
qt5 readline ssl test uuid X yaml"
 
 RDEPEND="sys-libs/ncurses:=



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

2019-08-06 Thread Pacho Ramos
commit: fdd9153d659cd6014a18dbd3d53a5e455f34535c
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Aug  6 14:05:16 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Aug  6 14:05:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdd9153d

media-sound/picard: Version bump, qtgui[accessibility] not needed

Closes: https://bugs.gentoo.org/534298
Closes: https://bugs.gentoo.org/684648
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Pacho Ramos  gentoo.org>

 media-sound/picard/Manifest|  1 +
 media-sound/picard/picard-2.1.3.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/media-sound/picard/Manifest b/media-sound/picard/Manifest
index f8e589f5438..fde1c1fa428 100644
--- a/media-sound/picard/Manifest
+++ b/media-sound/picard/Manifest
@@ -1 +1,2 @@
 DIST picard-2.0.4.tar.gz 2759058 BLAKE2B 
e8a2a5aed7b8c99e31c1765906481432d310fd41fa01a611c7d82b182468cf4bfeb5a5aaab74c96c0971f21af3ba690537212c29c75433296cab6a1a409edf6d
 SHA512 
cdc5f1ddeb84705fc792fb77a6d0ba06a5baf812799054ac0fd4959dfe788009f25b6f89ad0c28720f1c7c85af61534ca4f1e9e8efd6ec3cc78578d0f0b3ab32
+DIST picard-2.1.3.tar.gz 2995390 BLAKE2B 
dcb81cad62aba7915aeff321775452cef70819194a76530eb96a0a7b0009f7185d7652f77d07bb795b24939a3feb56b73a59d7377574b2c8f09f406ca7a88d81
 SHA512 
f082216a1a669ba689725c93859116e8a56991861219adb0e7c6ed4e5d621055268652820688de762f55b8672f19ff01afe5ac1ab7f79a640ea381272de9516f

diff --git a/media-sound/picard/picard-2.1.3.ebuild 
b/media-sound/picard/picard-2.1.3.ebuild
new file mode 100644
index 000..4b01165a046
--- /dev/null
+++ b/media-sound/picard/picard-2.1.3.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,6,7} )
+DISTUTILS_SINGLE_IMPL=1
+DISABLE_AUTOFORMATTING=true
+inherit distutils-r1 gnome2-utils readme.gentoo-r1 xdg
+
+DESCRIPTION="Cross-platform music tagger"
+HOMEPAGE="https://picard.musicbrainz.org;
+SRC_URI="https://musicbrainz.osuosl.org/pub/musicbrainz/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="nls"
+
+RDEPEND="
+   dev-python/PyQt5[declarative,gui,network,widgets,${PYTHON_USEDEP}]
+   dev-qt/qtgui:5
+   >=media-libs/mutagen-1.38"
+DEPEND="
+   nls? ( dev-qt/linguist-tools:5 )
+"
+
+RESTRICT="test" # doesn't work with ebuilds
+
+S="${WORKDIR}/${PN}-release-${PV}"
+
+python_compile() {
+   local build_args=(
+   --disable-autoupdate
+   )
+   if ! use nls; then
+   build_args+=( --disable-locales )
+   fi
+   distutils-r1_python_compile ${build_args[@]}
+}
+
+python_install() {
+   local install_args=(
+   --disable-autoupdate
+   --skip-build
+   )
+   if ! use nls; then
+   install_args+=( --disable-locales )
+   fi
+   distutils-r1_python_install ${install_args[@]}
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   local DOC_CONTENTS="Install optional package 
media-libs/chromaprint[tools] to enable
+calculation and lookup of AcoustID fingerprints.
+
+Install optional package dev-python/python-discid to enable
+calculation and lookup of compact disc identifiers (disc IDs).
+
+If you are upgrading Picard and it does not start, try removing
+Picard's settings:
+   rm ~/.config/MusicBrainz/Picard.conf"
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   readme.gentoo_print_elog
+   xdg_pkg_postinst
+}



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

2019-08-06 Thread Michael Palimaka
commit: 41f9f7e71d374c83187c993ddd7b49dc316bd908
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 13:11:21 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 13:11:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41f9f7e7

net-misc/knemo: patch out unused dependency

Closes: https://bugs.gentoo.org/691258
Package-Manager: Portage-2.3.69, Repoman-2.3.17
Signed-off-by: Michael Palimaka  gentoo.org>

 net-misc/knemo/knemo-0.8.0_pre20161211.ebuild | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/net-misc/knemo/knemo-0.8.0_pre20161211.ebuild 
b/net-misc/knemo/knemo-0.8.0_pre20161211.ebuild
index 81f12a35fb5..8a4fad3d24c 100644
--- a/net-misc/knemo/knemo-0.8.0_pre20161211.ebuild
+++ b/net-misc/knemo/knemo-0.8.0_pre20161211.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
@@ -48,6 +48,13 @@ RDEPEND="${DEPEND}
 
 DOCS=( AUTHORS ChangeLog README )
 
+src_prepare() {
+   kde5_src_prepare
+
+   # unused dependency
+   sed -e "/KCMUtils/d" -i CMakeLists.txt -i src/kcm/CMakeLists.txt || die
+}
+
 src_configure() {
local mycmakeargs=(
-DNO_WIRELESS_SUPPORT=$(usex !wifi)



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

2019-08-06 Thread Michael Palimaka
commit: 9eab3feb6a72ee59be2f046bec71ca9035c85fcb
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 13:04:03 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 13:04:09 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9eab3feb

kde-apps/kaccounts-integration: add net-libs/libaccounts-glib subslot operator

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

 kde-apps/kaccounts-integration/kaccounts-integration-19.07.90.ebuild| 2 +-
 .../kaccounts-integration/kaccounts-integration-19.08.49..ebuild| 2 +-
 kde-apps/kaccounts-integration/kaccounts-integration-.ebuild| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/kde-apps/kaccounts-integration/kaccounts-integration-19.07.90.ebuild 
b/kde-apps/kaccounts-integration/kaccounts-integration-19.07.90.ebuild
index 3e554d7f97..616d18489b 100644
--- a/kde-apps/kaccounts-integration/kaccounts-integration-19.07.90.ebuild
+++ b/kde-apps/kaccounts-integration/kaccounts-integration-19.07.90.ebuild
@@ -29,7 +29,7 @@ COMMON_DEPEND="
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
net-libs/accounts-qt
-   >=net-libs/libaccounts-glib-1.21
+   >=net-libs/libaccounts-glib-1.21:=
net-libs/signond
 "
 DEPEND="${COMMON_DEPEND}

diff --git 
a/kde-apps/kaccounts-integration/kaccounts-integration-19.08.49..ebuild 
b/kde-apps/kaccounts-integration/kaccounts-integration-19.08.49..ebuild
index ce47804747..fb47b876f8 100644
--- a/kde-apps/kaccounts-integration/kaccounts-integration-19.08.49..ebuild
+++ b/kde-apps/kaccounts-integration/kaccounts-integration-19.08.49..ebuild
@@ -29,7 +29,7 @@ COMMON_DEPEND="
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
net-libs/accounts-qt
-   >=net-libs/libaccounts-glib-1.21
+   >=net-libs/libaccounts-glib-1.21:=
net-libs/signond
 "
 DEPEND="${COMMON_DEPEND}

diff --git a/kde-apps/kaccounts-integration/kaccounts-integration-.ebuild 
b/kde-apps/kaccounts-integration/kaccounts-integration-.ebuild
index ce47804747..fb47b876f8 100644
--- a/kde-apps/kaccounts-integration/kaccounts-integration-.ebuild
+++ b/kde-apps/kaccounts-integration/kaccounts-integration-.ebuild
@@ -29,7 +29,7 @@ COMMON_DEPEND="
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
net-libs/accounts-qt
-   >=net-libs/libaccounts-glib-1.21
+   >=net-libs/libaccounts-glib-1.21:=
net-libs/signond
 "
 DEPEND="${COMMON_DEPEND}



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

2019-08-06 Thread Michael Palimaka
commit: 8f125edbfcc0b837ae24030d0c29c201167b2443
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 12:59:33 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 13:03:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f125edb

net-libs/libaccounts-glib: add subslot

Bug: https://bugs.gentoo.org/691542
Package-Manager: Portage-2.3.69, Repoman-2.3.17
Signed-off-by: Michael Palimaka  gentoo.org>

 .../{libaccounts-glib-1.24.ebuild => libaccounts-glib-1.24-r1.ebuild}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild 
b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
similarity index 99%
rename from net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild
rename to net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
index 65cf22ba172..b1f40ae0f6a 100644
--- a/net-libs/libaccounts-glib/libaccounts-glib-1.24.ebuild
+++ b/net-libs/libaccounts-glib/libaccounts-glib-1.24-r1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://01.org/gsso/;
 
SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/VERSION_${PV}/${PN}-VERSION_${PV}.tar.gz
 -> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
-SLOT="0"
+SLOT="0/1"
 KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE="doc"
 



[gentoo-commits] repo/gentoo:master commit in: net-libs/telepathy-accounts-signon/

2019-08-06 Thread Michael Palimaka
commit: 67e1b970bb2d3fe62cc3efbbb197178507abd391
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 13:02:36 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 13:03:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67e1b970

net-libs/telepathy-accounts-signon: add net-libs/libaccounts-glib subslot 
operator

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

 net-libs/telepathy-accounts-signon/telepathy-accounts-signon-1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-libs/telepathy-accounts-signon/telepathy-accounts-signon-1.0.ebuild 
b/net-libs/telepathy-accounts-signon/telepathy-accounts-signon-1.0.ebuild
index c88d4e74b32..32a2b0497a2 100644
--- a/net-libs/telepathy-accounts-signon/telepathy-accounts-signon-1.0.ebuild
+++ b/net-libs/telepathy-accounts-signon/telepathy-accounts-signon-1.0.ebuild
@@ -17,7 +17,7 @@ IUSE=""
 DEPEND="
dev-libs/glib:2
net-im/telepathy-mission-control
-   net-libs/libaccounts-glib
+   net-libs/libaccounts-glib:=
=net-libs/libsignon-glib-1*
net-libs/telepathy-glib
 "



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

2019-08-06 Thread Michael Palimaka
commit: 51691790225f9dcd14b76d60bef681eb600dc6ca
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 13:00:50 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 13:03:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51691790

kde-apps/kaccounts-integration: add net-libs/libaccounts-glib subslot operator

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

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

diff --git 
a/kde-apps/kaccounts-integration/kaccounts-integration-19.04.3.ebuild 
b/kde-apps/kaccounts-integration/kaccounts-integration-19.04.3.ebuild
index 108bce4f507..5d256445c11 100644
--- a/kde-apps/kaccounts-integration/kaccounts-integration-19.04.3.ebuild
+++ b/kde-apps/kaccounts-integration/kaccounts-integration-19.04.3.ebuild
@@ -29,7 +29,7 @@ COMMON_DEPEND="
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
net-libs/accounts-qt
-   >=net-libs/libaccounts-glib-1.21
+   >=net-libs/libaccounts-glib-1.21:=
net-libs/signond
 "
 DEPEND="${COMMON_DEPEND}



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

2019-08-06 Thread Michael Palimaka
commit: 2c89fd02b3dbc86b46a557e7e7ed9b400b9691d5
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 13:01:33 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 13:03:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c89fd02

net-libs/accounts-qt: add net-libs/libaccounts-glib subslot operator

Closes: https://bugs.gentoo.org/691542
Package-Manager: Portage-2.3.69, Repoman-2.3.17
Signed-off-by: Michael Palimaka  gentoo.org>

 net-libs/accounts-qt/accounts-qt-1.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/accounts-qt/accounts-qt-1.15.ebuild 
b/net-libs/accounts-qt/accounts-qt-1.15.ebuild
index 19455ba7329..042c2bffddf 100644
--- a/net-libs/accounts-qt/accounts-qt-1.15.ebuild
+++ b/net-libs/accounts-qt/accounts-qt-1.15.ebuild
@@ -18,7 +18,7 @@ IUSE="doc test"
 RESTRICT="test"
 
 RDEPEND="
-   >=net-libs/libaccounts-glib-1.23
+   >=net-libs/libaccounts-glib-1.23:=
dev-libs/glib:2
dev-qt/qtcore:5
dev-qt/qtxml:5



[gentoo-commits] repo/gentoo:master commit in: net-libs/telepathy-accounts-signon/

2019-08-06 Thread Michael Palimaka
commit: 294d7850b2deaca1dcebe41c2cd415d43f393c41
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 13:02:13 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 13:03:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=294d7850

net-libs/telepathy-accounts-signon:

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

 net-libs/telepathy-accounts-signon/telepathy-accounts-signon-2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-libs/telepathy-accounts-signon/telepathy-accounts-signon-2.0.ebuild 
b/net-libs/telepathy-accounts-signon/telepathy-accounts-signon-2.0.ebuild
index 42ad5247f3d..792e67b9101 100644
--- a/net-libs/telepathy-accounts-signon/telepathy-accounts-signon-2.0.ebuild
+++ b/net-libs/telepathy-accounts-signon/telepathy-accounts-signon-2.0.ebuild
@@ -18,7 +18,7 @@ BDEPEND=">=dev-util/meson-0.49.2"
 DEPEND="
dev-libs/glib:2
net-im/telepathy-mission-control
-   net-libs/libaccounts-glib
+   net-libs/libaccounts-glib:=
>=net-libs/libsignon-glib-2.0
net-libs/telepathy-glib
 "



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

2019-08-06 Thread Brian Evans
commit: 2956fc38dd00e39553ca5d10d039e212ffddeaaf
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Aug  6 12:57:40 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Aug  6 12:57:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2956fc38

dev-lang/php: Make flatfile USE default on

Due to the profiles having berkdb and/or gdbm enabled by default,
tests often fail for the dbm extension of php.

Because of said profile defaults, enabling flatfile adds little cost
and just supports an additional backend for dbm

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

 dev-lang/php/php-7.2.21.ebuild | 2 +-
 dev-lang/php/php-7.3.8.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/php/php-7.2.21.ebuild b/dev-lang/php/php-7.2.21.ebuild
index 2d85e9d999e..3163c80e3d4 100644
--- a/dev-lang/php/php-7.2.21.ebuild
+++ b/dev-lang/php/php-7.2.21.ebuild
@@ -31,7 +31,7 @@ IUSE="${IUSE}
 IUSE="${IUSE} acl argon2 bcmath berkdb bzip2 calendar cdb cjk
coverage +ctype curl debug
enchant exif +fileinfo +filter firebird
-   flatfile ftp gd gdbm gmp +hash +iconv imap inifile
+   +flatfile ftp gd gdbm gmp +hash +iconv imap inifile
intl iodbc ipv6 +json kerberos ldap ldap-sasl libedit libressl lmdb
mhash mssql mysql mysqli nls
oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm

diff --git a/dev-lang/php/php-7.3.8.ebuild b/dev-lang/php/php-7.3.8.ebuild
index 1e66c720846..eb9e3727c51 100644
--- a/dev-lang/php/php-7.3.8.ebuild
+++ b/dev-lang/php/php-7.3.8.ebuild
@@ -34,7 +34,7 @@ IUSE="${IUSE}
 IUSE="${IUSE} acl argon2 bcmath berkdb bzip2 calendar cdb cjk
coverage +ctype curl debug
enchant exif +fileinfo +filter firebird
-   flatfile ftp gd gdbm gmp +hash +iconv imap inifile
+   +flatfile ftp gd gdbm gmp +hash +iconv imap inifile
intl iodbc ipv6 +json kerberos ldap ldap-sasl libedit libressl lmdb
mhash mssql mysql mysqli nls
oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm



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

2019-08-06 Thread Pacho Ramos
commit: 817343f2589492047c20295571c1933615d349f8
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Aug  6 12:37:31 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Aug  6 12:37:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=817343f2

app-i18n/libskk: Drop old

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

 app-i18n/libskk/Manifest|  1 -
 app-i18n/libskk/libskk-1.0.1.ebuild | 48 -
 2 files changed, 49 deletions(-)

diff --git a/app-i18n/libskk/Manifest b/app-i18n/libskk/Manifest
index 557f4b43502..ab428f2bac6 100644
--- a/app-i18n/libskk/Manifest
+++ b/app-i18n/libskk/Manifest
@@ -1,2 +1 @@
-DIST libskk-1.0.1.tar.gz 860453 BLAKE2B 
95f386e34f479548c7b4a37c3d70d16e27fd238a83e09c9dfc539ec9c3cc1466bea6a1d694e9b1027d66955053b2af1719a96ea4b5a37f61fda82118250576cf
 SHA512 
17dc7c0361083c08c29267b4fe2d066b079e5156728f461717044f99579ec2674b56c960d2be5a42a2dffb693106d2d3d78ec8cb833e8f189d48e421a25d91b0
 DIST libskk-1.0.2.tar.gz 867572 BLAKE2B 
32f599e83bf7ced796d2f37f6f4bf5e45f47c90e144784b7b3e082866cc619a26e3aca4f16051685baa4d8ac54b0462930193f978bc1e8220b378679269c5833
 SHA512 
f8fff94b216c18f66bf1004ee068f8d737177f1b70ac36d054d9a68ce02ba9b8d1b7b4127d9a330f64054b2fe06f352070c750a3562d4be36fecf20cb854e6c0

diff --git a/app-i18n/libskk/libskk-1.0.1.ebuild 
b/app-i18n/libskk/libskk-1.0.1.ebuild
deleted file mode 100644
index 9dfbf773269..000
--- a/app-i18n/libskk/libskk-1.0.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit ltprune vala virtualx
-
-DESCRIPTION="GObject-based library to deal with Japanese kana-to-kanji 
conversion method"
-HOMEPAGE="https://github.com/ueno/libskk;
-SRC_URI="https://bitbucket.org/${PN}/${PN}/downloads/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+introspection nls static-libs"
-
-RDEPEND="dev-libs/glib:2
-   dev-libs/json-glib
-   dev-libs/libgee:0
-   introspection? ( dev-libs/gobject-introspection )
-   nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
-   $(vala_depend)
-   dev-util/intltool
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-src_prepare() {
-   vala_src_prepare
-   default
-}
-
-src_configure() {
-   econf \
-   $(use_enable introspection) \
-   $(use_enable nls) \
-   $(use_enable static-libs static)
-}
-
-src_test() {
-   export GSETTINGS_BACKEND="memory"
-   virtx emake check
-}
-
-src_install() {
-   default
-   prune_libtool_files
-}



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

2019-08-06 Thread Michał Górny
commit: cd4df59d5b81a8ad08022b15798f6a3d3d93c628
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Aug  6 12:05:07 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Aug  6 12:05:11 2019 +
URL:https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=cd4df59d

Update pkgcheck2html for lxml switch

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

 pkgcheck2html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkgcheck2html b/pkgcheck2html
index 1cacc58..934abd4 16
--- a/pkgcheck2html
+++ b/pkgcheck2html
@@ -1 +1 @@
-Subproject commit 1cacc58da2c66a0dd44cfa7985fc5c7147f6df1b
+Subproject commit 934abd4b9add0451cef810871c850381910cc324



[gentoo-commits] repo/gentoo:master commit in: net-dns/pdns/

2019-08-06 Thread Sven Wegener
commit: 90b5f0aae66c4441c60b8e7d0877a9058546e6c9
Author: Sven Wegener  gentoo  org>
AuthorDate: Tue Aug  6 11:58:26 2019 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Tue Aug  6 11:59:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90b5f0aa

net-dns/pdns: Stable on amd64/x86, security bug #691086

Bug: https://bugs.gentoo.org/691086
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Sven Wegener  gentoo.org>

 net-dns/pdns/pdns-4.1.11-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/pdns/pdns-4.1.11-r1.ebuild 
b/net-dns/pdns/pdns-4.1.11-r1.ebuild
index 0078fa5323c..f267a0663b8 100644
--- a/net-dns/pdns/pdns-4.1.11-r1.ebuild
+++ b/net-dns/pdns/pdns-4.1.11-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 # other possible flags:
 # db2: we lack the dep



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

2019-08-06 Thread Agostino Sarubbo
commit: 7b406643b9c9da6411d29f628cfe046a383c22e6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug  6 11:43:57 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug  6 11:43:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b406643

net-libs/libmicrohttpd: ia64 stable wrt bug #691366

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.65.ebuild 
b/net-libs/libmicrohttpd/libmicrohttpd-0.9.65.ebuild
index 01d32ca447f..514e7ea0a9f 100644
--- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.65.ebuild
+++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.65.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/12"
-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="+epoll messages ssl static-libs test"
 
 RDEPEND="ssl? (



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

2019-08-06 Thread Agostino Sarubbo
commit: a7b22834b3f8cac386ce46b1da433a77bcabe358
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug  6 11:43:53 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug  6 11:43:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7b22834

media-libs/tiff: ia64 stable wrt bug #690732

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/tiff/tiff-4.0.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/tiff/tiff-4.0.10-r1.ebuild 
b/media-libs/tiff/tiff-4.0.10-r1.ebuild
index fd8cdab2c2e..2842d169256 100644
--- a/media-libs/tiff/tiff-4.0.10-r1.ebuild
+++ b/media-libs/tiff/tiff-4.0.10-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://download.osgeo.org/libtiff/${P}.tar.gz;
 
 LICENSE="libtiff"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="+cxx jbig jpeg lzma static-libs test webp zlib zstd"
 
 RDEPEND="



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

2019-08-06 Thread Agostino Sarubbo
commit: 70f10d6f49826f3962d782267ef49e7747f70ea0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Aug  6 11:44:01 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Aug  6 11:44:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70f10d6f

app-admin/sudo: ia64 stable wrt bug #691410

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-admin/sudo/sudo-1.8.27-r1.ebuild 
b/app-admin/sudo/sudo-1.8.27-r1.ebuild
index 83edee20dba..0029c975e4a 100644
--- a/app-admin/sudo/sudo-1.8.27-r1.ebuild
+++ b/app-admin/sudo/sudo-1.8.27-r1.ebuild
@@ -23,7 +23,7 @@ if [[ ${PV} != "" ]] ; then
SRC_URI="https://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz
ftp://ftp.sudo.ws/pub/sudo/${uri_prefix}${MY_P}.tar.gz;
if [[ ${PV} != *_beta* ]] && [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc 
ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~sparc-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc 
ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~sparc-solaris"
fi
 fi
 



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

2019-08-06 Thread Michael Palimaka
commit: c91408219de63952e1afdc3465ce79c0a95e771c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 11:24:41 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 11:26:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9140821

sys-apps/apparmor-utils: version bump 2.13.3

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

 sys-apps/apparmor-utils/Manifest   |  1 +
 .../apparmor-utils/apparmor-utils-2.13.3.ebuild| 85 ++
 2 files changed, 86 insertions(+)

diff --git a/sys-apps/apparmor-utils/Manifest b/sys-apps/apparmor-utils/Manifest
index e47ad80f147..bf09f795a1e 100644
--- a/sys-apps/apparmor-utils/Manifest
+++ b/sys-apps/apparmor-utils/Manifest
@@ -1,2 +1,3 @@
 DIST apparmor-2.13.1.tar.gz 7367615 BLAKE2B 
34a5f42b32bd4790f1075b76dfa17dd5b5cedfde7074eb0c57a3982a47e7b4dd2570bc056a4f4a8064c6a126a4727829cf5dcc04a4912f009338206faa887017
 SHA512 
e4b9788ecc0b59285f17d5e87669f507bf849c15d0ac3833e8d1d6aa2ece7add15814c75f257cea9d71a709c1af4990d8b76773e59fd42dbf5cfa2de0f9495a7
 DIST apparmor-2.13.2.tar.gz 7369240 BLAKE2B 
1e2a559375c02c7ab8e79cc2e9275a9f271490ef003a8da3e544bfdd80b47ddef7a7da0bf73b41e6fe9bff219a6e4fda7d04e6df71bb127530828160704cb7fe
 SHA512 
2e5f84ced12c9de1a862e1a3258e8424f1f0d3c986947aec9d88a9258729a584953d00591c8902aa41e664acf9a639dab96d025c3a1ed3f91f0edce8d028b58f
+DIST apparmor-2.13.3.tar.gz 7384974 BLAKE2B 
fd519f7b845db3203c8f47ff5abc7d9f20a7947fe86799b6fffcfaabaf5130fe0aa6589314f201c1df59cfd0fb22b80a12d364e9ca1279b14ba89ec469e3b346
 SHA512 
137b2bf026ec655b662e9c264d7d48d878db474a3f1cc5a38bfd7df2f85b682bddb77b091ab5595178231a0a262c9ae9cdd61409461cd889bdee156906ef1141

diff --git a/sys-apps/apparmor-utils/apparmor-utils-2.13.3.ebuild 
b/sys-apps/apparmor-utils/apparmor-utils-2.13.3.ebuild
new file mode 100644
index 000..4ce56c968e5
--- /dev/null
+++ b/sys-apps/apparmor-utils/apparmor-utils-2.13.3.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{5,6} )
+inherit eapi7-ver perl-module python-r1 toolchain-funcs
+
+MY_PV="$(ver_cut 1-2)"
+
+DESCRIPTION="Additional userspace utils to assist with AppArmor profile 
management"
+HOMEPAGE="https://gitlab.com/apparmor/apparmor/wikis/home;
+SRC_URI="https://launchpad.net/apparmor/${MY_PV}/${PV}/+download/apparmor-${PV}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RESTRICT="test"
+
+COMMON_DEPEND="
+   dev-lang/perl
+   ~sys-libs/libapparmor-${PV}
+   ${PYTHON_DEPS}"
+DEPEND="${COMMON_DEPEND}
+   sys-devel/gettext
+"
+RDEPEND="${COMMON_DEPEND}
+   ~sys-libs/libapparmor-${PV}[perl,python]
+   ~sys-apps/apparmor-${PV}
+   dev-perl/Locale-gettext
+   dev-perl/RPC-XML
+   dev-perl/TermReadKey
+   virtual/perl-Data-Dumper
+   virtual/perl-Getopt-Long"
+
+S=${WORKDIR}/apparmor-${PV}
+
+src_prepare() {
+   default
+
+   sed -i binutils/Makefile \
+   -e 's/Bstatic/Bdynamic/g' || die
+
+   sed -i utils/aa-remove-unknown \
+   -e 
's#^\(APPARMOR_FUNCTIONS=\).*#\1/usr/libexec/rc.apparmor.functions#' || die
+}
+
+src_compile() {
+   python_setup
+
+   pushd utils > /dev/null || die
+   # launches non-make subprocesses causing "make jobserver unavailable"
+   # error messages to appear in generated code
+   emake -j1
+   popd > /dev/null || die
+
+   pushd binutils > /dev/null || die
+   export EXTRA_CFLAGS="${CFLAGS}"
+   emake CC="$(tc-getCC)" USE_SYSTEM=1
+   popd > /dev/null || die
+}
+
+src_install() {
+   pushd utils > /dev/null || die
+   perl_set_version
+   emake DESTDIR="${D}" PERLDIR="${D}/${VENDOR_LIB}/Immunix" \
+   VIM_INSTALL_PATH="${D}/usr/share/vim/vimfiles/syntax" install
+
+   install_python() {
+   "${PYTHON}" "${S}"/utils/python-tools-setup.py install 
--prefix=/usr \
+   --root="${D}" --version="${PV}"
+   }
+
+   python_foreach_impl install_python
+   python_replicate_script "${D}"/usr/bin/aa-easyprof 
"${D}"/usr/sbin/apparmor_status \
+   
"${D}"/usr/sbin/aa-{audit,autodep,cleanprof,complain,disable,enforce,genprof,logprof,mergeprof,status,unconfined}
+   popd > /dev/null || die
+
+   pushd binutils > /dev/null || die
+   emake install DESTDIR="${D}" USE_SYSTEM=1
+   popd > /dev/null || die
+}



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

2019-08-06 Thread Michael Palimaka
commit: 9fa420501229777a62682cbb2907dba17b24886e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 11:26:28 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 11:26:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fa42050

media-gfx/evoluspencil: remove 2.0.5

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

 media-gfx/evoluspencil/Manifest  |  1 -
 media-gfx/evoluspencil/evoluspencil-2.0.5.ebuild | 44 
 media-gfx/evoluspencil/files/launcher|  9 -
 3 files changed, 54 deletions(-)

diff --git a/media-gfx/evoluspencil/Manifest b/media-gfx/evoluspencil/Manifest
index 4e7c5ecc9e5..b8ac0a8490b 100644
--- a/media-gfx/evoluspencil/Manifest
+++ b/media-gfx/evoluspencil/Manifest
@@ -1,2 +1 @@
 DIST evoluspencil-3.0.4-49.rpm 55779457 BLAKE2B 
7f74bf4d0ac4dcd6ef2e37d56e6b06eda72a34e6c4bc0e2fbb5b55727bb3ba0ecfe183e64ad5f6abe77d258dca2bfc7acca0d08c934a7700699690ff8d39e335
 SHA512 
72a17841d214523223d6f35ca8ba69076070baf83248ceb5747a23865ec955f8aafbb799eb01b3a3c99226a7bc1653e55be6f7292941b1a859598e016673f2ec
-DIST pencil-2.0.5.tar.gz 4810418 BLAKE2B 
438bc868aa7e83434de4e5e7b196dce5e607b49590b4216e345c9df4999327ee75b9761a08de9bab47cb0d1e92a363af3b14985748cbbf203d8ff3f0246b97a2
 SHA512 
cb9ab75f69ca886c7b0579dd293e4c4b4279eac21f4301ad0299e55b27d998d59f7b9444916d306939e6c7f4603a8267aecd3dc0ab3efc41175659886e399b0d

diff --git a/media-gfx/evoluspencil/evoluspencil-2.0.5.ebuild 
b/media-gfx/evoluspencil/evoluspencil-2.0.5.ebuild
deleted file mode 100644
index 9fd30e8fefa..000
--- a/media-gfx/evoluspencil/evoluspencil-2.0.5.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-MY_P="pencil-${PV}"
-
-inherit fdo-mime
-
-DESCRIPTION="A simple GUI prototyping tool to create mockups"
-HOMEPAGE="http://pencil.evolus.vn/;
-SRC_URI="https://dev.gentoo.org/~kensington/distfiles/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="|| ( www-client/firefox www-client/firefox-bin )"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   # avoid file collisions with media-gfx/pencil
-   mv usr/bin/{pencil,${PN}} || die
-   mv usr/share/{pencil,${PN}} || die
-   mv usr/share/applications/{pencil,${PN}}.desktop || die
-
-   sed -e "s/pencil/${PN}/" -i usr/bin/${PN} \
-   -i usr/share/applications/${PN}.desktop || die
-}
-
-src_install() {
-   insinto /
-   doins -r usr
-   newbin "${FILESDIR}"/launcher ${PN}
-}
-
-pkg_postinst() {
-   fdo-mime_desktop_database_update
-}
-
-pkg_postrm() {
-   fdo-mime_desktop_database_update
-}

diff --git a/media-gfx/evoluspencil/files/launcher 
b/media-gfx/evoluspencil/files/launcher
deleted file mode 100644
index 4ac04e8c8c8..000
--- a/media-gfx/evoluspencil/files/launcher
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-if [ -x /usr/bin/firefox ] ; then
-/usr/bin/firefox --app "/usr/share/evoluspencil/application.ini"
-elif [ -x /usr/bin/firefox-bin ] ; then
-/usr/bin/firefox-bin --app "/usr/share/evoluspencil/application.ini"
-else
-echo Could not execute required /usr/bin/firefox or 
/usr/bin/firefox-bin
-fi



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

2019-08-06 Thread Michael Palimaka
commit: 18e3c4bde4be5f8e29660ec25aee3f17d5bc0926
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 11:25:31 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 11:26:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18e3c4bd

app-text/ansifilter: remove 2.13

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

 app-text/ansifilter/Manifest   |  1 -
 app-text/ansifilter/ansifilter-2.13.ebuild | 57 --
 2 files changed, 58 deletions(-)

diff --git a/app-text/ansifilter/Manifest b/app-text/ansifilter/Manifest
index 716b00cc911..7ce54604f3c 100644
--- a/app-text/ansifilter/Manifest
+++ b/app-text/ansifilter/Manifest
@@ -1,2 +1 @@
-DIST ansifilter-2.13.tar.bz2 439681 BLAKE2B 
4f23bfd05647046f9cb739f9ce0820b5b3ccad397a80558ecd5ca584c695dc4f942c1db3edd2f1b2d5a78b2c1e1b043677b1be3486ff7237090c27072e15f0fb
 SHA512 
0d74607d2155f1cd0f66cf6470d1d83889d27c62475e366518a78b310c9681307e2fe662fea67078f95e6b9ce28e6f15656ab1ffc9e9e825d680808c673b7bfe
 DIST ansifilter-2.14.tar.bz2 441884 BLAKE2B 
90b3b0330866da11c00b105aa79164178aebecf39131f5c8d8e373091f53d2d8bbced54472c975a61857d594a9fa92ce08d018523f471fde445d4548d48b949b
 SHA512 
a0b7f12ea5b9ef9b5845a03484a2e238a9f60e0e49f8eddca8bf24b47faba48aa0b55f922678b3bf1b3f08857bbe9a8285b3f318f2adec84673bc502e21b6802

diff --git a/app-text/ansifilter/ansifilter-2.13.ebuild 
b/app-text/ansifilter/ansifilter-2.13.ebuild
deleted file mode 100644
index 89eb5868d89..000
--- a/app-text/ansifilter/ansifilter-2.13.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs qmake-utils
-
-DESCRIPTION="Handles text files containing ANSI terminal escape codes"
-HOMEPAGE="http://www.andre-simon.de/;
-SRC_URI="http://www.andre-simon.de/zip/${P}.tar.bz2;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-IUSE="qt5"
-
-RDEPEND="
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   )"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   default
-
-   # bug 431452
-   rm src/qt-gui/moc_mydialog.cpp || die
-}
-
-src_configure() {
-   if use qt5 ; then
-   pushd src/qt-gui > /dev/null || die
-   eqmake5
-   popd > /dev/null || die
-   fi
-}
-
-src_compile() {
-   emake -f makefile CC="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} -DNDEBUG 
-std=c++11"
-
-   if use qt5 ; then
-   pushd src/qt-gui > /dev/null || die
-   emake
-   popd > /dev/null || die
-   fi
-}
-
-src_install() {
-   dobin src/${PN}
-   use qt5 && dobin src/qt-gui/${PN}-gui
-
-   gunzip man/${PN}.1.gz
-   doman man/${PN}.1
-   einstalldocs
-}



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

2019-08-06 Thread Michael Palimaka
commit: 4eb89f0a9db62ef78cbdd2081ff54863a52eb54d
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 11:25:56 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 11:26:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eb89f0a

dev-util/howdoi: remove 1.1.14

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

 dev-util/howdoi/Manifest |  1 -
 dev-util/howdoi/howdoi-1.1.14.ebuild | 24 
 2 files changed, 25 deletions(-)

diff --git a/dev-util/howdoi/Manifest b/dev-util/howdoi/Manifest
index bd2a98fba53..92e3998380e 100644
--- a/dev-util/howdoi/Manifest
+++ b/dev-util/howdoi/Manifest
@@ -1,2 +1 @@
-DIST howdoi-1.1.14.tar.gz 8421 BLAKE2B 
40689f3ca1ce487fd5278406115b70e51d82ce2ff2f8b1e60c02fad6f92adfcb532c3ce73c4126027a0812e21b599bf5f9d20e8d3c23d6dc4e541a877e1ba52d
 SHA512 
348125e666d42b657ee493a405207238aab12cb4815da52de2bc3d0635a85476e942ed73b6eb75e7ac51e744f01ebe987dd45ecc69b1774f264a6bd9c4a2826e
 DIST howdoi-1.2.1.tar.gz 13112 BLAKE2B 
33492547fab53085aebff295202e8ad88d41850503155b944f38382137d6ec8fbcd4f6050583b16c01c3701683ccf18c6929c525b5d8f34bf6f2ed9410668f36
 SHA512 
83af30118087105392ddb95b05d9e7442f5ee5df981faa9143770dedb8927c164a4f30f37ccd219a826340f0f8cd81fc5eb9a3b12e5d3956786294699b6e2f9b

diff --git a/dev-util/howdoi/howdoi-1.1.14.ebuild 
b/dev-util/howdoi/howdoi-1.1.14.ebuild
deleted file mode 100644
index c24bb930931..000
--- a/dev-util/howdoi/howdoi-1.1.14.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-inherit distutils-r1
-
-DESCRIPTION="A code search tool"
-HOMEPAGE="https://pypi.org/project/howdoi/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="
-   dev-python/pygments[${PYTHON_USEDEP}]
-   >=dev-python/pyquery-1.4.0[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/requests-cache[${PYTHON_USEDEP}]
-"



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

2019-08-06 Thread Michael Palimaka
commit: 98e985fe0a04523ecb91880f5bb0047ca5e13084
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Aug  6 11:23:04 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Aug  6 11:26:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e985fe

dev-games/tiled: remove 1.2.3

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

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

diff --git a/dev-games/tiled/Manifest b/dev-games/tiled/Manifest
index 3a9abedf1db..90bd0c686c2 100644
--- a/dev-games/tiled/Manifest
+++ b/dev-games/tiled/Manifest
@@ -1,2 +1 @@
-DIST tiled-1.2.3.tar.gz 16848125 BLAKE2B 
cc2ab2a2ab14a575da1f47a415e1c544de9a80417ea5a081684893bad253fc742f89f5e17739bfe0617f859f6921ab214c2e8bdefe321545008b277684e654b1
 SHA512 
0c9e818872b1e8de67ff8d943dc47abb63667bc45917b29dca959b0a32594be4ffb156469375c0f5c4a4fa71ee85b05c018c58a2f581a860405cbb12c9c0aac5
 DIST tiled-1.2.4.tar.gz 16875074 BLAKE2B 
19d9e000949a889af90f48c31862aab8d00cbd968d518bc48e58775763ff2b293d5e82f10b8ec45dda936bf81b177f88aa4962900c7b70b01ce514fabf717c46
 SHA512 
a16fcb3fcceb11397cc981f10a558215264cf2c340639fbc001d384cfd9bc138c05ed40894a03d103af8a7d629c0be9fa6d5a4058fd9c563806920efef8e2cb7

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



  1   2   >