[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/why3-for-spark/, sci-mathematics/why3-for-spark/files/

2018-07-12 Thread Alfredo Tupone
commit: a30437c0c5fb08780562baccb5ff3eeb511bb6ad
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Jul 13 06:49:22 2018 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Jul 13 06:49:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a30437c0

sci-mathematics/why3-for-spark: Version bump to 2018

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sci-mathematics/why3-for-spark/Manifest|  1 +
 .../files/why3-for-spark-2018-gentoo.patch | 25 
 .../why3-for-spark/why3-for-spark-2018.ebuild  | 75 ++
 3 files changed, 101 insertions(+)

diff --git a/sci-mathematics/why3-for-spark/Manifest 
b/sci-mathematics/why3-for-spark/Manifest
index dfdecc5d624..e6505ed60c7 100644
--- a/sci-mathematics/why3-for-spark/Manifest
+++ b/sci-mathematics/why3-for-spark/Manifest
@@ -1 +1,2 @@
 DIST why3-for-spark-gpl-2017-src.tar.gz 9248235 BLAKE2B 
d9eb7201dfd5962c88ac8995e3cd800bf318f575a5e6ff7d0219941c0f0c9052e6b2c95c7c16fcd81b90cac647d503041bf16560bd44b58e7e0ced1ef2314bd2
 SHA512 
8f02f6c1744cd7c565117732935791b1ae7996a94314c40a66d125eae8a81f2257314246c94fd29d3cd16abcff6a50a152a1191a4aae39a2c8a8d7c3b9e1
+DIST why3-for-spark-gpl-2018-src.tar.gz 7682767 BLAKE2B 
0b0272ca4d5519ca402990b234d0847378bcd2a0949fea78ea10e355233a16aebe79b938cdf8e4daadabb909171cab83b9d6ccacf9f2dc1c0b57bb6da6fd1fe0
 SHA512 
fc798acf343484fd8e70f470a318753c9a0e9967ff579f20ec185bf3c2a75e7a4a556388fc86a378610ce4a467f3e722c6f610da34d4c33bc3d6b10551731f07

diff --git 
a/sci-mathematics/why3-for-spark/files/why3-for-spark-2018-gentoo.patch 
b/sci-mathematics/why3-for-spark/files/why3-for-spark-2018-gentoo.patch
new file mode 100644
index 000..9d7165cbed7
--- /dev/null
+++ b/sci-mathematics/why3-for-spark/files/why3-for-spark-2018-gentoo.patch
@@ -0,0 +1,25 @@
+--- why3-for-spark-gpl-2017-src/src/gnat/gnat_config.ml.old2017-10-18 
09:07:03.118919785 +0200
 why3-for-spark-gpl-2017-src/src/gnat/gnat_config.ml2017-10-18 
09:07:45.198216939 +0200
+@@ -12,10 +12,7 @@
+   | Limit_Check of Gnat_expl.check
+   | Limit_Line of Gnat_loc.loc
+ 
+-let spark_prefix =
+-  (Filename.dirname
+-  (Filename.dirname (Filename.dirname
+-  (Filename.dirname Sys.executable_name
++let spark_prefix = "/usr"
+ 
+ let rec file_concat l =
+   match l with
+--- why3-for-spark-gpl-2017-src/src/coq-tactic/why3tac.ml4.old 2017-10-26 
22:25:55.289094778 +0200
 why3-for-spark-gpl-2017-src/src/coq-tactic/why3tac.ml4 2017-10-26 
22:26:10.719807270 +0200
+@@ -1352,7 +1352,7 @@
+ let limit =
+ { Call_provers.empty_limit with Call_provers.limit_time = timelimit } in
+ let call = Driver.prove_task ~command ~limit drv !task in
+-wait_on_call call
++wait_on_call (ServerCall call)
+   with
+ | NotFO ->
+ if debug then Printexc.print_backtrace stderr; flush stderr;

diff --git a/sci-mathematics/why3-for-spark/why3-for-spark-2018.ebuild 
b/sci-mathematics/why3-for-spark/why3-for-spark-2018.ebuild
new file mode 100644
index 000..e766cce4ade
--- /dev/null
+++ b/sci-mathematics/why3-for-spark/why3-for-spark-2018.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+MYP=${PN}-gpl-${PV}-src
+
+DESCRIPTION="Platform for deductive program verification"
+HOMEPAGE="http://why3.lri.fr/";
+SRC_URI="http://mirrors.cdn.adacore.com/art/5b0819dec7a447df26c27a43
+   -> ${MYP}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="coq doc emacs gtk html hypothesis-selection +ocamlopt profiling zarith 
zip"
+RESTRICT=strip
+
+DEPEND=">=dev-lang/ocaml-4.02.3[ocamlopt?]
+   dev-ml/menhir
+   coq? ( sci-mathematics/coq )
+   doc? ( dev-tex/rubber )
+   gtk? ( dev-ml/lablgtk[sourceview] )
+   emacs? ( app-editors/emacs:* )
+   html? ( dev-tex/hevea )
+   hypothesis-selection? ( dev-ml/ocamlgraph )
+   zarith? ( dev-ml/zarith )
+   zip? ( >=dev-ml/camlzip-1.07 )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"/${MYP}
+
+PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+
+REQUIRED_USE="html? ( doc )"
+
+src_configure() {
+   econf \
+   --disable-pvs-libs \
+   --disable-isabelle-libs \
+   $(use_enable coq coq-libs) \
+   $(use_enable coq coq-tactic) \
+   $(use_enable doc) \
+   $(use_enable emacs emacs-compilation) \
+   $(use_enable gtk ide) \
+   $(use_enable html html-doc) \
+   $(use_enable hypothesis-selection) \
+   $(use_enable ocamlopt native-code) \
+   $(use_enable profiling) \
+   $(use_enable zarith) \
+   $(use_enable zip)
+}
+
+src_compile() {
+   emake -j1
+   if use ocamlopt; then
+   emake byte
+   fi
+   use doc && emake doc
+}
+
+src_install() {
+   emake DESTDIR="${D}" -j1 install

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

2018-07-12 Thread Hans de Graaff
commit: 72b615a85a1cf5c8f384d1a0957de0ad42d3afd3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 13 06:11:57 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 13 06:12:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72b615a8

dev-ruby/parser: remove broken version

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/parser/Manifest  |  1 -
 dev-ruby/parser/parser-2.5.1.1.ebuild | 32 
 2 files changed, 33 deletions(-)

diff --git a/dev-ruby/parser/Manifest b/dev-ruby/parser/Manifest
index 70434396e95..c68a87e1248 100644
--- a/dev-ruby/parser/Manifest
+++ b/dev-ruby/parser/Manifest
@@ -1,4 +1,3 @@
 DIST parser-2.4.0.2.gem 591360 BLAKE2B 
77a832e444e70853fe2aab27c0dfc99536aeafac78e3b4f36d3b1863d5498b656ccf62c55481e9fed763828bd4212b1688f06d77c01cb216653a925081f45cf2
 SHA512 
6ad62084437556bfa3bdb862bb031646e25ec733ab0e34432580351562a72a71507e454da9fd4f53e590163ea9d666c8076ecb7c92a7f5bf5579ca46cbb28a55
 DIST parser-2.5.1.0.gem 652800 BLAKE2B 
56411c34da273d8d02d05eb0dee470cf9afd3ed563d02fc8614cc93cb62f0a1e12cfcd02da95b9ed93acfc69a75ebef2b2b25cd885a69ecac31e3c2b4b37bee5
 SHA512 
252a20b1b578c4c4b0704001aa7b38ef94e5cc24f3eff34d3afcd661e4f5ce2aa25d2113e42a7d0c8e22583451d3e8067429782be12789cb9465262d7bd1839e
-DIST parser-2.5.1.1.gem 654336 BLAKE2B 
2b61457947e4eb76f77b4a0ba1a7960246a4beef6022595de20754cebed74fa684f2cb8c2ba18184324dc7ea58080e85123ed0b88105be8401db13fd8c395f24
 SHA512 
481a073cc67786c06c7c71ecc51b30ed151e428b9c78dc7991acc6aae6cf70ee0330cb334270f1e3a75128d2a341c8d1c4bec7bf85ee70ce643b4fdb649ec7b2
 DIST parser-2.5.1.2.gem 654336 BLAKE2B 
bc6960730337d39d60fc63d6da15023c31986230260358bb64b172d06978ec7fd7cd031e1c9db3cf8a04c96c87b034d8043351c3ee4875402ff8fbac7bcc217c
 SHA512 
d7c06cdf77c2efcedd656dc541ca5f4cd80e3c7c16977a87ce29d51515f4d724ec6bdc3367527d14d93b8339e64103b3cb757dbc2f8731b8941aa6ee4ff838d8

diff --git a/dev-ruby/parser/parser-2.5.1.1.ebuild 
b/dev-ruby/parser/parser-2.5.1.1.ebuild
deleted file mode 100644
index 57a04d4498e..000
--- a/dev-ruby/parser/parser-2.5.1.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
-
-RUBY_FAKEGEM_RECIPE_DOC="yard"
-RUBY_FAKEGEM_TASK_TEST="test"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-RUBY_FAKEGEM_VERSION="${PV/_pre/.pre.}"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A production-ready Ruby parser written in pure Ruby"
-HOMEPAGE="https://github.com/whitequark/parser";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_bdepend "test? (
-   dev-ruby/minitest:5
-   dev-ruby/racc
-   dev-ruby/cliver )"
-ruby_add_rdepend "=dev-ruby/ast-2.4*"
-
-all_ruby_prepare() {
-   sed -i -e "/[Bb]undler/d" Rakefile || die
-   sed -i -e '/simplecov/ s:^:#:' test/helper.rb || die
-}



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

2018-07-12 Thread Hans de Graaff
commit: b80cf8afb1813d1ce1a47a4f950d9adc03409b87
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 13 06:11:32 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 13 06:12:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b80cf8af

dev-ruby/parser: add 2.5.1.2

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/parser/Manifest  |  1 +
 dev-ruby/parser/parser-2.5.1.2.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-ruby/parser/Manifest b/dev-ruby/parser/Manifest
index 3184d0ecd7c..70434396e95 100644
--- a/dev-ruby/parser/Manifest
+++ b/dev-ruby/parser/Manifest
@@ -1,3 +1,4 @@
 DIST parser-2.4.0.2.gem 591360 BLAKE2B 
77a832e444e70853fe2aab27c0dfc99536aeafac78e3b4f36d3b1863d5498b656ccf62c55481e9fed763828bd4212b1688f06d77c01cb216653a925081f45cf2
 SHA512 
6ad62084437556bfa3bdb862bb031646e25ec733ab0e34432580351562a72a71507e454da9fd4f53e590163ea9d666c8076ecb7c92a7f5bf5579ca46cbb28a55
 DIST parser-2.5.1.0.gem 652800 BLAKE2B 
56411c34da273d8d02d05eb0dee470cf9afd3ed563d02fc8614cc93cb62f0a1e12cfcd02da95b9ed93acfc69a75ebef2b2b25cd885a69ecac31e3c2b4b37bee5
 SHA512 
252a20b1b578c4c4b0704001aa7b38ef94e5cc24f3eff34d3afcd661e4f5ce2aa25d2113e42a7d0c8e22583451d3e8067429782be12789cb9465262d7bd1839e
 DIST parser-2.5.1.1.gem 654336 BLAKE2B 
2b61457947e4eb76f77b4a0ba1a7960246a4beef6022595de20754cebed74fa684f2cb8c2ba18184324dc7ea58080e85123ed0b88105be8401db13fd8c395f24
 SHA512 
481a073cc67786c06c7c71ecc51b30ed151e428b9c78dc7991acc6aae6cf70ee0330cb334270f1e3a75128d2a341c8d1c4bec7bf85ee70ce643b4fdb649ec7b2
+DIST parser-2.5.1.2.gem 654336 BLAKE2B 
bc6960730337d39d60fc63d6da15023c31986230260358bb64b172d06978ec7fd7cd031e1c9db3cf8a04c96c87b034d8043351c3ee4875402ff8fbac7bcc217c
 SHA512 
d7c06cdf77c2efcedd656dc541ca5f4cd80e3c7c16977a87ce29d51515f4d724ec6bdc3367527d14d93b8339e64103b3cb757dbc2f8731b8941aa6ee4ff838d8

diff --git a/dev-ruby/parser/parser-2.5.1.2.ebuild 
b/dev-ruby/parser/parser-2.5.1.2.ebuild
new file mode 100644
index 000..57a04d4498e
--- /dev/null
+++ b/dev-ruby/parser/parser-2.5.1.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_DOC="yard"
+RUBY_FAKEGEM_TASK_TEST="test"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_VERSION="${PV/_pre/.pre.}"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A production-ready Ruby parser written in pure Ruby"
+HOMEPAGE="https://github.com/whitequark/parser";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/minitest:5
+   dev-ruby/racc
+   dev-ruby/cliver )"
+ruby_add_rdepend "=dev-ruby/ast-2.4*"
+
+all_ruby_prepare() {
+   sed -i -e "/[Bb]undler/d" Rakefile || die
+   sed -i -e '/simplecov/ s:^:#:' test/helper.rb || die
+}



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

2018-07-12 Thread Sergei Trofimovich
commit: 7071222f9d52c02eeb6955efca0c480b7f49460f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Jul 13 05:28:51 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jul 13 06:06:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7071222f

net-misc/curl: stable 7.61.0 for hppa

Bug: https://bugs.gentoo.org/660894
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="hppa"

 net-misc/curl/curl-7.61.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/curl/curl-7.61.0.ebuild b/net-misc/curl/curl-7.61.0.ebuild
index 125a641bc0d..bdb16f44ced 100644
--- a/net-misc/curl/curl-7.61.0.ebuild
+++ b/net-misc/curl/curl-7.61.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://curl.haxx.se/download/${P}.tar.bz2";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="adns brotli http2 idn ipv6 kerberos ldap metalink rtmp samba ssh ssl 
static-libs test threads"
 IUSE+=" curl_ssl_axtls curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls 
curl_ssl_nss +curl_ssl_openssl curl_ssl_winssl"
 IUSE+=" elibc_Winnt"



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

2018-07-12 Thread Hans de Graaff
commit: fc4424293980a5c26beae7d7681c3797a094eeaf
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 13 06:00:30 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 13 06:00:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc442429

dev-ruby/autoprefixer-rails: add 8.6.5

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/autoprefixer-rails/Manifest   |  1 +
 .../autoprefixer-rails-8.6.5.ebuild| 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-ruby/autoprefixer-rails/Manifest 
b/dev-ruby/autoprefixer-rails/Manifest
index 894ff753616..ce1cb243858 100644
--- a/dev-ruby/autoprefixer-rails/Manifest
+++ b/dev-ruby/autoprefixer-rails/Manifest
@@ -2,3 +2,4 @@ DIST autoprefixer-rails-7.2.6.gem 196608 BLAKE2B 
0f9224fbf765877b1b7414c68fc39a6
 DIST autoprefixer-rails-8.6.0.gem 203264 BLAKE2B 
23ca172f6c862cb43fa3609ffe1fe02f9d70cd5fdaaa4eece8882aa812327f5a4b8b4b039e898a1800589447463f35832afbceae8c3d59b84c0acf64c897d97d
 SHA512 
7bc5d6991f309aa0f0c6487d5a51fdc30b6ce852f4a3345cc82cdd2b1a6afb19a266cba5c46829cb1defbcc0d88af6b638b8114ab303316bbc844ea75b0181a5
 DIST autoprefixer-rails-8.6.3.gem 208384 BLAKE2B 
a373a18b43fefafd5e29b9da78b7ec2b276738729b748244d34684429b5081c34516512794234526af7f952218973f20ef6245772436c4cfc4fd511dedd80e92
 SHA512 
db7bd3737d5356adcd91edfd35623459ba67541ffb615eeb85155de9ec7b2c7bdf69518b9258dbf97a1a8a82a22a27da5eda2e445cbdf305a726f31dbf296f0d
 DIST autoprefixer-rails-8.6.4.gem 208896 BLAKE2B 
4a4edba06d55a3de33d625d382ad98d7a36b040ec3c2a02274ca50d1e18c68217a81dbf18c61f80310b1f225680971a746e0ac9018eadd4314da1d648da7
 SHA512 
e71cd9889932e881154737287dca21000b929b8dec56e51fd8a9b97705f0ce83969515aa36e40b78ab4629f404caf78125cd066c7fea19fd63339c2c9b873576
+DIST autoprefixer-rails-8.6.5.gem 208896 BLAKE2B 
50e8b8ef3fec9a0bb8d68afa8950989dbf84b58b79b8822e83bf22873c5172c2c514643c31dca88cfec49bd585563eb9b201c621d3ab6707ed0d49c6cd4c8fc8
 SHA512 
fddabc4d745ad1b4282622a52ab4e36c377eccec85c4e80b3e8d633ffcc2d1613f4fee9e9f2356c85d251e44b0010418029bb278894987119689435ac885e982

diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.6.5.ebuild 
b/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.6.5.ebuild
new file mode 100644
index 000..f623a7c290e
--- /dev/null
+++ b/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.6.5.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_EXTRAINSTALL="vendor"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Add vendor prefixes to CSS rules using values from the Can I Use 
website"
+HOMEPAGE="https://github.com/ai/autoprefixer-rails";
+LICENSE="MIT"
+
+KEYWORDS="~amd64"
+SLOT="8"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/execjs:*"
+
+ruby_add_bdepend "test? (
+   dev-ruby/rails
+   dev-ruby/rake
+   dev-ruby/rspec-rails
+)"
+
+all_ruby_prepare() {
+   sed -i -e "/bundler/d" -e "/BUNDLE/d" spec/app/config/boot.rb || die
+   sed -i -e "/Bundler/,+3d" spec/app/config/application.rb || die
+   rm spec/rails_spec.rb spec/compass_spec.rb || die
+}



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

2018-07-12 Thread Hans de Graaff
commit: f74d48d8a08c3b58a81dbfce8de9f330a5d77d86
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 13 05:58:17 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 13 05:58:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f74d48d8

dev-ruby/autoprefixer-rails: cleanup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/autoprefixer-rails/Manifest   |  2 --
 .../autoprefixer-rails-8.4.1.ebuild| 36 --
 .../autoprefixer-rails-8.5.0.ebuild| 36 --
 3 files changed, 74 deletions(-)

diff --git a/dev-ruby/autoprefixer-rails/Manifest 
b/dev-ruby/autoprefixer-rails/Manifest
index a58c2527b12..894ff753616 100644
--- a/dev-ruby/autoprefixer-rails/Manifest
+++ b/dev-ruby/autoprefixer-rails/Manifest
@@ -1,6 +1,4 @@
 DIST autoprefixer-rails-7.2.6.gem 196608 BLAKE2B 
0f9224fbf765877b1b7414c68fc39a6587514d27fb5290e1a623db8dcdcbf6f668b66ddd0133906a97e63e877b8201168a45520a9919dc756021d5a7cffc0d38
 SHA512 
37b3f245291711f92ab9e264491637e753afb95e52f9fd4e2bda6655cd781b2d031934f3379cabdd5589bdf57b780d0727f2fff1cdf7887ca4cc323d23023396
-DIST autoprefixer-rails-8.4.1.gem 200704 BLAKE2B 
b95f1567fba64f51f35d7a8bb57ca470347ebbae5067244ab50f402f2c596e142b7bd1e90931af4b78a9d3477adbc7b3fbb16ea76d12409f9460b6a6ac58dbf5
 SHA512 
0e57adf4a52997317d7faacaf409290b441a3806cbebc351c876f08046fca397919f2e1b8a63f58149c2667a48787cb56039cf993803892897f5e74fbc53c840
-DIST autoprefixer-rails-8.5.0.gem 202240 BLAKE2B 
881c958c88485e92144d2cd0342b6587b2ec6a96f5a7e6e78c271e07c6071a7544b3acc0d0491fb16094fcedd057878ce9e384599e8301a1b60029e0629e5325
 SHA512 
19e6737b4d38bac5915bc657de76b4bf2ac593ba754aa6f7f18b3e6e183d21a1a59e0383b071b4767713053258ed2e4214c047199f72cdb92ebb011ba8951092
 DIST autoprefixer-rails-8.6.0.gem 203264 BLAKE2B 
23ca172f6c862cb43fa3609ffe1fe02f9d70cd5fdaaa4eece8882aa812327f5a4b8b4b039e898a1800589447463f35832afbceae8c3d59b84c0acf64c897d97d
 SHA512 
7bc5d6991f309aa0f0c6487d5a51fdc30b6ce852f4a3345cc82cdd2b1a6afb19a266cba5c46829cb1defbcc0d88af6b638b8114ab303316bbc844ea75b0181a5
 DIST autoprefixer-rails-8.6.3.gem 208384 BLAKE2B 
a373a18b43fefafd5e29b9da78b7ec2b276738729b748244d34684429b5081c34516512794234526af7f952218973f20ef6245772436c4cfc4fd511dedd80e92
 SHA512 
db7bd3737d5356adcd91edfd35623459ba67541ffb615eeb85155de9ec7b2c7bdf69518b9258dbf97a1a8a82a22a27da5eda2e445cbdf305a726f31dbf296f0d
 DIST autoprefixer-rails-8.6.4.gem 208896 BLAKE2B 
4a4edba06d55a3de33d625d382ad98d7a36b040ec3c2a02274ca50d1e18c68217a81dbf18c61f80310b1f225680971a746e0ac9018eadd4314da1d648da7
 SHA512 
e71cd9889932e881154737287dca21000b929b8dec56e51fd8a9b97705f0ce83969515aa36e40b78ab4629f404caf78125cd066c7fea19fd63339c2c9b873576

diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.4.1.ebuild 
b/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.4.1.ebuild
deleted file mode 100644
index f623a7c290e..000
--- a/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.4.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_EXTRAINSTALL="vendor"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Add vendor prefixes to CSS rules using values from the Can I Use 
website"
-HOMEPAGE="https://github.com/ai/autoprefixer-rails";
-LICENSE="MIT"
-
-KEYWORDS="~amd64"
-SLOT="8"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/execjs:*"
-
-ruby_add_bdepend "test? (
-   dev-ruby/rails
-   dev-ruby/rake
-   dev-ruby/rspec-rails
-)"
-
-all_ruby_prepare() {
-   sed -i -e "/bundler/d" -e "/BUNDLE/d" spec/app/config/boot.rb || die
-   sed -i -e "/Bundler/,+3d" spec/app/config/application.rb || die
-   rm spec/rails_spec.rb spec/compass_spec.rb || die
-}

diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.5.0.ebuild 
b/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.5.0.ebuild
deleted file mode 100644
index f623a7c290e..000
--- a/dev-ruby/autoprefixer-rails/autoprefixer-rails-8.5.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_EXTRAINSTALL="vendor"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Add vendor prefixes to CSS rules using values from the Can I Use 
website"
-HOMEPAGE="https://github.com/ai/autoprefixer-rails";
-LICENSE="MIT"
-
-KEYWORDS="~amd64"
-SLOT="8"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/execjs:*"
-
-ruby_add_bdepend "test? (
-   dev-ruby/rails
-   dev-ruby/rake
-   dev-ruby/rspec-rails
-)"
-
-all_ruby_prepare() {
-   sed -i -e "/bundler/d" -e "/BUNDLE/d" spec/app/config/boot

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

2018-07-12 Thread Hans de Graaff
commit: 4ff4a5bd30d40bc0dcd8f311d9e6170ed1ca18b0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 13 05:57:16 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 13 05:57:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff4a5bd

dev-ruby/activeldap: add 5.2.2

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/activeldap/Manifest|  1 +
 dev-ruby/activeldap/activeldap-5.2.2.ebuild | 40 +
 2 files changed, 41 insertions(+)

diff --git a/dev-ruby/activeldap/Manifest b/dev-ruby/activeldap/Manifest
index badb35a379d..36abb5b6c17 100644
--- a/dev-ruby/activeldap/Manifest
+++ b/dev-ruby/activeldap/Manifest
@@ -2,3 +2,4 @@ DIST activeldap-4.0.6.gem 225280 BLAKE2B 
0f03ef95f3d0600d2661eab048c8dda3fbabe51
 DIST activeldap-5.1.1.gem 224768 BLAKE2B 
cbb54a3e442592ffcd46b99dc92301955e0ec2e6930c7dff0159ddc41166311f9f7b06a0d878dff4180962d6811690fc55e6eef9693048d485672dc83560b63f
 SHA512 
13ae4f05717a9de80f56e19033e694ae1291cf4486dc4c69055892fb2c43469b0dba968949bd668a89d035126d8bde144ad410313dce0d6de80a4ddff884a745
 DIST activeldap-5.2.0.gem 224768 BLAKE2B 
ae0aa9b2f33121bef3974fdcda5dc06278072241165b5c049fe23bcda8572603dd7695e8839892075ab928e3653c8dd8b6ec87fa17e8c5f9ddb0422b13821676
 SHA512 
72796a48cb067d61c4f278a3d74f81ebc2c0b1ef648cc02bdf9db0bf9b04a93a924dca3f6134b44c7a9cded7a292984099bd544796b94fb435e21b09d7fc48b3
 DIST activeldap-5.2.1.gem 224768 BLAKE2B 
270936f4d8183b6d143f58a662c152a66c0778789c8c7b3e604f2f3aacbdefe0634ed636c35a8cd4fda7cf5b15b5f1fa133e4a6432cf342f42a1e9089daf4a2b
 SHA512 
025f30c545c3f9fd69220557a18f597a4298b06ad5ea67a5f335107aec27a5d5225e7e808b036d245287a642824ba74f583451adfaa585ac2f4f323d737319b9
+DIST activeldap-5.2.2.gem 225280 BLAKE2B 
a31f77f1e93e5130f6d1a026ea804fca192273ac66c7f04218a5465c79f25934d7a289bcd66e5e7910ef679f9e043f4c22c14607b2f44bc93039e90f3082e798
 SHA512 
303f26289848b0580a827aa3ea8446ff38dc0604eac7d976f48c7c751c7fe31f918af17a5d530943711dfbf2808e9712ab71ff5cc8c657f78ba60d1c6e3d6072

diff --git a/dev-ruby/activeldap/activeldap-5.2.2.ebuild 
b/dev-ruby/activeldap/activeldap-5.2.2.ebuild
new file mode 100644
index 000..6f2251813e6
--- /dev/null
+++ b/dev-ruby/activeldap/activeldap-5.2.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.textile TODO doc/text/*"
+RUBY_FAKEGEM_EXTRAINSTALL="po"
+
+inherit ruby-fakegem
+
+MY_P="${P/ruby-/}"
+DESCRIPTION="ActiveLDAP provides an activerecord inspired object oriented 
interface to LDAP"
+HOMEPAGE="https://github.com/activeldap/activeldap";
+
+LICENSE="GPL-2"
+SLOT="5"
+KEYWORDS="~amd64"
+IUSE=""
+
+# Most tests require a live LDAP server to run.
+RESTRICT="test"
+
+ruby_add_rdepend "
+   >dev-ruby/activemodel-4.0.0:*
+   dev-ruby/builder
+   dev-ruby/locale
+   dev-ruby/ruby-gettext
+   dev-ruby/gettext_i18n_rails
+   || ( dev-ruby/ruby-net-ldap >=dev-ruby/ruby-ldap-0.8.2 )"
+
+all_ruby_install() {
+   all_fakegem_install
+
+   dodoc doc/text/*
+
+   insinto /usr/share/doc/${PF}
+   doins -r examples
+}



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

2018-07-12 Thread Hans de Graaff
commit: ff41d1dbd66ba50481949659c1c6207b32cdb3f0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul 13 05:53:24 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul 13 05:53:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff41d1db

dev-ruby/gettext_i18n_rails: add ruby25, use rails 5.2 for testing

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.8.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.8.0.ebuild 
b/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.8.0.ebuild
index e61be7fd3b8..b547a2dd3c3 100644
--- a/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.8.0.ebuild
+++ b/dev-ruby/gettext_i18n_rails/gettext_i18n_rails-1.8.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="Readme.md"
@@ -21,7 +21,7 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE=""
 
-ruby_add_bdepend "test? ( dev-ruby/rails:4.2 dev-ruby/activerecord:4.2[sqlite] 
dev-ruby/temple )"
+ruby_add_bdepend "test? ( dev-ruby/rails:5.2 dev-ruby/activerecord:5.2[sqlite] 
dev-ruby/temple )"
 ruby_add_rdepend ">=dev-ruby/fast_gettext-0.9.0"
 
 all_ruby_prepare() {
@@ -31,5 +31,5 @@ all_ruby_prepare() {
rm spec/gettext_i18n_rails/slim_parser_spec.rb 
spec/gettext_i18n_rails/haml_parser_spec.rb || die
 
# Test against Rails 4.2.0
-   sed -e '1igem "rails", "~>4.2.0"' -i spec/spec_helper.rb || die
+   sed -e '1igem "rails", "~>5.2.0"' -i spec/spec_helper.rb || die
 }



[gentoo-commits] proj/musl:master commit in: sys-apps/isapnptools/files/, sys-apps/isapnptools/

2018-07-12 Thread Anthony G. Basile
commit: fe6bb857fcc50e5851efb3191dbda23735116e5d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Jul 13 05:33:54 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jul 13 05:33:54 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=fe6bb857

sys-apps/isapnptools: initial commit

 sys-apps/isapnptools/Manifest  |  1 +
 sys-apps/isapnptools/files/isapnp.rc   | 25 +
 .../files/isapnptools-1.27-include.patch   | 10 +++
 .../isapnptools/files/isapnptools-1.27-musl.patch  | 32 ++
 sys-apps/isapnptools/isapnptools-1.27.ebuild   | 31 +
 sys-apps/isapnptools/metadata.xml  |  8 ++
 6 files changed, 107 insertions(+)

diff --git a/sys-apps/isapnptools/Manifest b/sys-apps/isapnptools/Manifest
new file mode 100644
index 000..48c1326
--- /dev/null
+++ b/sys-apps/isapnptools/Manifest
@@ -0,0 +1 @@
+DIST isapnptools-1.27.tgz 499639 BLAKE2B 
9da8968abeaf1fe2f39e3003cad32aecb546016d72489a9b4c84b8427acee7a54c2580d6536e2c39aa06a44cf363705af06968b71100c51663e928ffdbfa7353
 SHA512 
ccd1c8f7b66ba7f26d50fcfa64d0397dd1a09866c7c74226acbcb4e08be77717aaa4dde7eabcad5bac4e5f92774c40bca48dbf97069c62cc71355b768eca4d34

diff --git a/sys-apps/isapnptools/files/isapnp.rc 
b/sys-apps/isapnptools/files/isapnp.rc
new file mode 100644
index 000..07dd2f3
--- /dev/null
+++ b/sys-apps/isapnptools/files/isapnp.rc
@@ -0,0 +1,25 @@
+#!/sbin/openrc-run
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+check_config() {
+   if [ ! -e /etc/isapnp.conf ] ; then
+   eerror "You need an /etc/isapnp.conf file first"
+   eerror "Theres a sample in docs/isapnptools/txt"
+   return 1
+   fi
+   if [ ! -x /sbin/isapnp ] ; then
+   eerror "You're missing /sbin/isapnp; emerge 
sys-apps/isapnptools"
+   return 1
+   fi
+
+   return 0
+}
+
+start() {
+   check_config || return 1
+
+   ebegin "Configuring ISA PnP devices"
+   /sbin/isapnp /etc/isapnp.conf
+   eend $?
+}

diff --git a/sys-apps/isapnptools/files/isapnptools-1.27-include.patch 
b/sys-apps/isapnptools/files/isapnptools-1.27-include.patch
new file mode 100644
index 000..016490e
--- /dev/null
+++ b/sys-apps/isapnptools/files/isapnptools-1.27-include.patch
@@ -0,0 +1,10 @@
+--- a/src/callbacks.c
 b/src/callbacks.c
+@@ -51,6 +51,7 @@
+ #include 
+ #include 
+ #include 
++#include  /* exit() */
+ 
+ //
+ 

diff --git a/sys-apps/isapnptools/files/isapnptools-1.27-musl.patch 
b/sys-apps/isapnptools/files/isapnptools-1.27-musl.patch
new file mode 100644
index 000..d83842b
--- /dev/null
+++ b/sys-apps/isapnptools/files/isapnptools-1.27-musl.patch
@@ -0,0 +1,32 @@
+diff -Naur isapnptools-1.27.orig/include/isapnp/iopl.h 
isapnptools-1.27/include/isapnp/iopl.h
+--- isapnptools-1.27.orig/include/isapnp/iopl.h2001-05-15 
20:37:05.0 +
 isapnptools-1.27/include/isapnp/iopl.h 2018-07-13 05:26:36.497375033 
+
+@@ -52,15 +52,7 @@
+ #include 
+ #else
+ #ifndef _OS2_
+-#  if defined __GLIBC__ && __GLIBC__ >= 2
+-#include 
+-#  else
+-#ifdef _AXP_
+-#   include 
+-#else
+-#   include 
+-#endif
+-#  endif /* __GLIBC__ */
++#include 
+ #else
+ #include 
+ #endif /* _OS2_ */
+diff -Naur isapnptools-1.27.orig/src/pnp-select.c 
isapnptools-1.27/src/pnp-select.c
+--- isapnptools-1.27.orig/src/pnp-select.c 2001-05-15 20:37:04.0 
+
 isapnptools-1.27/src/pnp-select.c  2018-07-13 05:27:00.145229137 +
+@@ -6,6 +6,8 @@
+Foundation.
+ */
+ 
++#include 
++
+ #ifdef HAVE_CONFIG_H
+ #include 
+ #endif

diff --git a/sys-apps/isapnptools/isapnptools-1.27.ebuild 
b/sys-apps/isapnptools/isapnptools-1.27.ebuild
new file mode 100644
index 000..60546b2
--- /dev/null
+++ b/sys-apps/isapnptools/isapnptools-1.27.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Tools for configuring ISA PnP devices"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage";
+SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/hardware/${P}.tgz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="-* amd64 x86"
+IUSE=""
+
+PATCHES=(
+   "${FILESDIR}"/${P}-include.patch
+   "${FILESDIR}"/${P}-musl.patch
+)
+
+src_install() {
+   default
+
+   dodir /sbin
+   mv "${ED%/}"/{usr/sbin/isapnp,sbin/} || die
+
+   docinto txt
+   dodoc doc/{README*,*.txt} test/*.txt
+   dodoc etc/isapnp.*
+
+   newinitd "${FILESDIR}"/isapnp.rc isapnp
+}

diff --git a/sys-apps/isapnptools/metadata.xml 
b/sys-apps/isapnptools/metadata.xml
new file mode 100644
index 000..56c1244
--- /dev/null
+++ b/sys-apps/isapnptools/metadata.xml
@@ -0,0 +

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

2018-07-12 Thread Jory Pratt
commit: 3b7713187a844e3a010a693aa293b1c7f59b9fbd
Author: Jory A. Pratt  gentoo  org>
AuthorDate: Fri Jul 13 03:56:30 2018 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Fri Jul 13 03:56:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b771318

www-client/firefox: fix x86 builds, bug #659820

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 www-client/firefox/firefox-61.0-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-client/firefox/firefox-61.0-r1.ebuild 
b/www-client/firefox/firefox-61.0-r1.ebuild
index fc312e57d18..1d65fc4e1f8 100644
--- a/www-client/firefox/firefox-61.0-r1.ebuild
+++ b/www-client/firefox/firefox-61.0-r1.ebuild
@@ -224,6 +224,7 @@ src_configure() {
# Default mozilla_five_home, system-hunspell no longer valid option
sed '/with-default-mozilla-five-home=/d' -i "${S}"/.mozconfig
sed '/enable-system-hunspell/d' -i "${S}"/.mozconfig
+   sed '/disable-stylo/d' -i "${S}"/.mozconfig
 
# Finalize and report settings
mozconfig_final



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

2018-07-12 Thread Ben Kohler
commit: b67cc4819a89a73e0f846e011359e76b5de45cad
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Jul 13 00:24:56 2018 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Jul 13 00:25:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b67cc481

net-wireless/unifi: bump to 5.8.25

Package-Manager: Portage-2.3.42, Repoman-2.3.9

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

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index dc5b4b9e7f2..749db6411df 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -1,4 +1,5 @@
 DIST unifi-5.6.39.zip 63559153 BLAKE2B 
377c9cbcb49f3f7fe687c7877ca37b4cf4c62076da1a05ce64599be86b8503b910e941bdaa93b9bf77ed259e46ed5355befb695c0cff41157fe1e43a10643216
 SHA512 
456407a0fe140ef35718591777fcc1084ca9ee4f70c97deb554318390aa3e530c5dfbbbe57b659f83d52ca44be8ebd57071cfad2bf7f0f180fa5f2fa9100a1d9
 DIST unifi-5.8.24.zip 80086706 BLAKE2B 
00530b5e141e9444120efeb6ea5b3106781fb5b15a1ade44b71675a726ae7245221af694b36a922a4d047f78567a7bd9e1354d6dde442dfccd58a49f87079403
 SHA512 
cf7145d779893c1c9709eef7364154503dd1232f88cce38facc748426d19c5422decbd5e3a80d857a2d82969258045944b491c7b228467d8e4a7c29a0ec1
+DIST unifi-5.8.25.zip 80091828 BLAKE2B 
f675ff304c2e7a87da7ed02bd4873015a1155949e6b3b2b4561db06565197e1660512cbea118a50bd975de7d6268a090fad6742e3a82bb4fdf20f19f39099ae2
 SHA512 
4572ebe55971d14ca76f39cf298eedf879c4ad597ac87e4fe13167f8219b8f822f3478002ccda7ca1d72daba05efa52932e6d163c1e2b5ac5d289020e351044f
 DIST unifi-5.9.12.zip 103000745 BLAKE2B 
30613f8ee9bf832f5303d02cc2719cb91358a558afe4f998541b890be6c152a62171ad1711e78fd0f2e011161d03cdb9afa9c8dffc3b553b9c7b637f61f12b10
 SHA512 
0f8c549dfc390d71e3f8a58c05647b3cd062a55de248128267dda3c079f744a810a0138016616d5be6b2e05ecd34149172efd369c1cf4c1e24735ba982c266cb
 DIST unifi-5.9.4.zip 102808708 BLAKE2B 
3b1479bd65837667f2abff594426ecc3491475d1cf6d842d07cdc8868cabf59facc857263fcfb1ef30fdb8dbb4c0a037b7e04736b8debf0f4f795494fc62ee26
 SHA512 
01e2d8c2d48a552e3b5d03cb97b0241e0561a4c88e52f13ec2d2a8a8b7d75ba7d9eb7878e37876efe5581e439afaac359ae6e3e7b2bb3d0719ebdbb10b06778c

diff --git a/net-wireless/unifi/unifi-5.8.25.ebuild 
b/net-wireless/unifi/unifi-5.8.25.ebuild
new file mode 100644
index 000..5e504bcbf6c
--- /dev/null
+++ b/net-wireless/unifi/unifi-5.8.25.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2018 Gentoo Foundation
+# 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="-34502471b9"
+
+inherit systemd user
+
+DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
+HOMEPAGE="https://www.ubnt.com";
+SRC_URI="https://dl.ubnt.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> 
${P}.zip"
+
+KEYWORDS="~amd64 ~x86"
+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.8"
+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: media-libs/rubberband/

2018-07-12 Thread Lars Wendler
commit: 58dd7bd53ea47fe541926436dc4d8c1bc957bd46
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jul 13 00:02:47 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jul 13 00:02:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58dd7bd5

media-libs/rubberband: Fixed src_prepare

Closes: https://bugs.gentoo.org/661038
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-libs/rubberband/rubberband-1.8.1-r2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/rubberband/rubberband-1.8.1-r2.ebuild 
b/media-libs/rubberband/rubberband-1.8.1-r2.ebuild
index a2ccff636e6..754ed4704a4 100644
--- a/media-libs/rubberband/rubberband-1.8.1-r2.ebuild
+++ b/media-libs/rubberband/rubberband-1.8.1-r2.ebuild
@@ -22,6 +22,7 @@ DEPEND="${RDEPEND}
virtual/pkgconfig"
 
 src_prepare() {
+   default
if ! use static-libs ; then
sed -e '/^all:/s/$(STATIC_TARGET)//' \
-e '/^\tcp $(STATIC_TARGET)/d' \



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

2018-07-12 Thread Patrice Clement
commit: 28732cbb422a7cfcb56d0ec9ef14a16bf570ac3f
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Jul 11 08:25:17 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jul 12 23:04:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28732cbb

dev-python/bitarray: version bump.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/bitarray/Manifest  |  1 +
 dev-python/bitarray/bitarray-0.8.3.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-python/bitarray/Manifest b/dev-python/bitarray/Manifest
index 6a90b43f53e..b35a7789de3 100644
--- a/dev-python/bitarray/Manifest
+++ b/dev-python/bitarray/Manifest
@@ -1 +1,2 @@
 DIST bitarray-0.8.1.tar.gz 46877 BLAKE2B 
eb6b78706b336c73cb9895bfa2645fdc2d8a2525b23610bd37dc959a0aa2bad0c5d746ee31c53ca73a0248f989e69e23ef173dbe9dc0848453e6a8a5b14b3704
 SHA512 
10f4872243b92cd5a1a77e1e2aca80135d31904e17cb3de4eb2c3f2c4d3f00ad0573b6bc4b9c9379594e2912cb0e5d5870fb4e59eb298e269ecb3778fbae7d1f
+DIST bitarray-0.8.3.tar.gz 36292 BLAKE2B 
a9e55e5f8e8257759ae8b6fb5e817c76ab9da6cd73699d492e111a9237e08718b4de22f20d97d1f633075228c503697e6faf032cceee01aaaeb4ef041fe39a4c
 SHA512 
67e634fba3672faf986117534e9260566b7596c7fddc67d7195fce4c9cc13bf491f94b6d25005143aee1cbbfbce168be0c7a833bc1f293cdbb30149b29855372

diff --git a/dev-python/bitarray/bitarray-0.8.3.ebuild 
b/dev-python/bitarray/bitarray-0.8.3.ebuild
new file mode 100644
index 000..aed9d2d8e35
--- /dev/null
+++ b/dev-python/bitarray/bitarray-0.8.3.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="efficient arrays of booleans -- C extension"
+HOMEPAGE="https://github.com/ilanschnell/bitarray 
https://pypi.org/project/bitarray/";
+SRC_URI="mirror://pypi/b/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="PSF-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+python_test() {
+   "${PYTHON}" ${PN}/test_${PN}.py || die "Tests fail with ${EPYTHON}"
+}



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

2018-07-12 Thread Patrice Clement
commit: 57e4240f8b2e16afa382955cd7bc021779ecb596
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jul 12 17:31:20 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jul 12 23:04:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e4240f

dev-python/BitVector: add amd64-fbsd keyword.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/BitVector/BitVector-3.4.8.ebuild 
b/dev-python/BitVector/BitVector-3.4.8.ebuild
index 4286029d351..8952469258c 100644
--- a/dev-python/BitVector/BitVector-3.4.8.ebuild
+++ b/dev-python/BitVector/BitVector-3.4.8.ebuild
@@ -14,7 +14,7 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND=""
 LICENSE="PSF-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~x86 ~amd64-fbsd"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 



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

2018-07-12 Thread Patrice Clement
commit: 3bc7df40dfde35b24f61409d40dddfc88383bd94
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jul 12 17:29:51 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jul 12 23:04:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bc7df40

dev-python/BitVector: version bump.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/BitVector/BitVector-3.4.8.ebuild | 23 +++
 dev-python/BitVector/Manifest   |  1 +
 2 files changed, 24 insertions(+)

diff --git a/dev-python/BitVector/BitVector-3.4.8.ebuild 
b/dev-python/BitVector/BitVector-3.4.8.ebuild
new file mode 100644
index 000..4286029d351
--- /dev/null
+++ b/dev-python/BitVector/BitVector-3.4.8.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="A pure-Python memory-efficient packed representation for bit 
arrays"
+HOMEPAGE="https://engineering.purdue.edu/kak/dist/ 
https://pypi.org/project/BitVector/";
+SRC_URI="https://engineering.purdue.edu/kak/dist/${P}.tar.gz";
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND=""
+LICENSE="PSF-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_test() {
+   "${PYTHON}" TestBitVector/Test.py || die "Tests fail with ${EPYTHON}"
+}

diff --git a/dev-python/BitVector/Manifest b/dev-python/BitVector/Manifest
index b29707f26c9..895f1b3f6f2 100644
--- a/dev-python/BitVector/Manifest
+++ b/dev-python/BitVector/Manifest
@@ -1,3 +1,4 @@
 DIST BitVector-3.4.4.tar.gz 121822 BLAKE2B 
1261a7b86130b15eeb3b9ab3565787e673ecb1ee908666eb7784d1da3052bd69b9878a7eeb50df49bfa0ff76b8f2f9d777517c254a320feca187161cf1820701
 SHA512 
b2310ef712c97538e29d008688efdc10269030bfdf7656733093dd4580ff4dfa171f6d58683c3a6336e909a020ba5100474e18997c1b2a0873a0da2e622ba9ff
 DIST BitVector-3.4.6.tar.gz 125137 BLAKE2B 
877d2d855ce9eb9f1126df981c92dd8a7a475b15cbccc371ef4649692ac8b449a009d37ffd9c1fc70cd6147faf7758a18c6d83149a22786278f07eb3106a2de0
 SHA512 
56994692b7cd62f5790a1629d6a653f66f147e674dbc1a5f256dac4462c3eedf6363551165de940e4823d78462f63a44dce03ccd28073db1d93f2e2af436d0ab
 DIST BitVector-3.4.7.tar.gz 125013 BLAKE2B 
8bd058c485d630755c0c06d4fee0e23c00a32a341d86f92aa22a48aaedf6ececb10bdae22e60a5bdb83f54c013fde8a914266deb64948ded0b2b95f5a4e4168c
 SHA512 
5f9c9d13de6bec4b982a98564561b250152ba0ebdc119c75ddaf3822451dabe417d023fa529fd0ab8f583f86209369937b803d3ed0809ebeb312886504d96dfe
+DIST BitVector-3.4.8.tar.gz 126947 BLAKE2B 
5033564af4b69b1191ff8317523067b739839e83ed6d9c2c7e3f0910f67635d9d6e8712fabd722971a4652afb6466ae08c7aebe711711e4503a08284f11eb28c
 SHA512 
22d76c33d407b7ff2b0493ed4949189d7fc9ea8fd7497610014ede5f27756b5f91678a5f2da5db5e04f9e85e98378001d0edb5a8c2e3053083d18e547799f3f1



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

2018-07-12 Thread Patrice Clement
commit: 9b076f50ab8dc6a46ce3ee8d8d802daac105b328
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Jul 11 08:27:06 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jul 12 23:04:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b076f50

dev-python/bitarray: add amd64-fbsd keyword.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

diff --git a/dev-python/bitarray/bitarray-0.8.3.ebuild 
b/dev-python/bitarray/bitarray-0.8.3.ebuild
index aed9d2d8e35..f20885fce72 100644
--- a/dev-python/bitarray/bitarray-0.8.3.ebuild
+++ b/dev-python/bitarray/bitarray-0.8.3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/b/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="PSF-2"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~amd64-fbsd"
 
 python_test() {
"${PYTHON}" ${PN}/test_${PN}.py || die "Tests fail with ${EPYTHON}"



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

2018-07-12 Thread Patrice Clement
commit: 24b9e426940e1e2906bef7983f9e275dbab1ec7b
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jul 12 22:58:59 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jul 12 23:04:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24b9e426

dev-python/autopep8: version bump.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/autopep8/Manifest  |  1 +
 dev-python/autopep8/autopep8-1.3.5.ebuild | 44 +++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/autopep8/Manifest b/dev-python/autopep8/Manifest
index 704e2cea054..b229fcaa535 100644
--- a/dev-python/autopep8/Manifest
+++ b/dev-python/autopep8/Manifest
@@ -1,2 +1,3 @@
 DIST autopep8-1.3.2.tar.gz 107915 BLAKE2B 
3148f12616babc26415fc138d5d9e2d2a83cc735449cea54870662dabdfebfd298d96ca716ee62c9143049a2abf05e6a597b0ec6bab90c557dae63999794ea25
 SHA512 
cb9a5e297ce705722d5e65472dbe749e57fa12fe8dee0d4c3dc20d9e885e0d885339627667110318c89c6bf7e337203a7831c0e2217e5a5d7951edcb98d3df4f
 DIST autopep8-1.3.3.tar.gz 108639 BLAKE2B 
d2e6f6f334dfeb5e8ae33f4460c9344ec6b1e234e7f714c7602fae72f1ca5608e12145c40a39b14d28e1d79b0dd91855493d87947407428ba4c1d87834156626
 SHA512 
e327d58311f74c8bb9f18b99f8d866c071166e94f43912b35eedc6062267d4cdb5842bde7c54426c751b1bb76103ec11eb8daa682772a1f71c50962811dbc694
+DIST autopep8-1.3.5.tar.gz 109415 BLAKE2B 
e30a9719dcb2ce5463adc967ea76daa1c919c4b26e879ad69416e06bdff873e288b43a86f2cd797e67428c969e60dfb1f63508bbd8eec8f818f2abd4f68409e9
 SHA512 
3f7b441ede0efe01b3123e9349eeddc1eb62e6198c79e95e7eee532a3c9eca0cedfd4fdb50a872da9be93ad79db68fb13972eb984539f9ca4ebc37b05411cf70

diff --git a/dev-python/autopep8/autopep8-1.3.5.ebuild 
b/dev-python/autopep8/autopep8-1.3.5.ebuild
new file mode 100644
index 000..9dbeed09290
--- /dev/null
+++ b/dev-python/autopep8/autopep8-1.3.5.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy{,3} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Automatically formats Python code to conform to the PEP 8 style 
guide"
+HOMEPAGE="https://github.com/hhatto/autopep8 
https://pypi.org/project/autopep8/";
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/hhatto/${PN}.git";
+   inherit git-r3
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/pep8-1.5.7[${PYTHON_USEDEP}]
+   >=dev-python/pycodestyle-2.3[${PYTHON_USEDEP}]"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   >=dev-python/pydiff-0.1.2[${PYTHON_USEDEP}]
+   )"
+
+python_prepare_all() {
+   # Prevent UnicodeDecodeError with LANG=C
+   sed -e "/é/d" -i MANIFEST.in || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   esetup.py test
+}



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

2018-07-12 Thread Anthony G. Basile
commit: 3d8e9f8640645880d6ef5d8d1fbbfe02291fbaba
Author: Quentin Retornaz  retornaz  com>
AuthorDate: Wed Jun 20 14:49:40 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jul 12 22:31:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d8e9f86

net-dns/getdns: fix typo in ebuild src_configure

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-dns/getdns/getdns-1.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/getdns/getdns-1.4.2.ebuild 
b/net-dns/getdns/getdns-1.4.2.ebuild
index c0978a76f06..de86ca0dce7 100644
--- a/net-dns/getdns/getdns-1.4.2.ebuild
+++ b/net-dns/getdns/getdns-1.4.2.ebuild
@@ -43,7 +43,7 @@ src_configure() {
$(use_with libevent) \
$(use_with libev) \
$(use_with libuv) \
-   $(use_with threads libpthread)
+   $(use_with threads libpthread) \
$(use_enable static-libs static)
 }
 



[gentoo-commits] repo/gentoo:master commit in: net-dns/getdns/, net-dns/getdns/files/

2018-07-12 Thread Anthony G. Basile
commit: cecd6be7b3c948d81dd4c97cfba092acfbd0a366
Author: Quentin Retornaz  retornaz  com>
AuthorDate: Wed Jun 20 15:00:34 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jul 12 22:31:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cecd6be7

net-dns/getdns: fix upstream systemd unit to match ebuild configuration #656988

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-dns/getdns/files/getdns-1.4.2-stubby.service.patch   | 16 
 .../{getdns-1.4.2.ebuild => getdns-1.4.2-r1.ebuild}  |  2 ++
 2 files changed, 18 insertions(+)

diff --git a/net-dns/getdns/files/getdns-1.4.2-stubby.service.patch 
b/net-dns/getdns/files/getdns-1.4.2-stubby.service.patch
new file mode 100644
index 000..2bb7546fcfa
--- /dev/null
+++ b/net-dns/getdns/files/getdns-1.4.2-stubby.service.patch
@@ -0,0 +1,16 @@
+diff -ur a/stubby/systemd/stubby.service b/stubby/systemd/stubby.service
+--- a/stubby/systemd/stubby.service2018-05-11 13:25:22.0 +0200
 b/stubby/systemd/stubby.service2018-06-20 15:40:23.650164668 +0200
+@@ -3,9 +3,11 @@
+ 
+ [Service]
+ User=stubby
+-DynamicUser=yes
++DynamicUser=no
+ CacheDirectory=stubby
+ WorkingDirectory=/var/cache/stubby
++ExecStartPre=/bin/mkdir -p /var/cache/stubby
++ExecStartPre=/bin/chown stubby:stubby /var/cache/stubby
+ ExecStart=/usr/bin/stubby
+ AmbientCapabilities=CAP_NET_BIND_SERVICE
+ CapabilityBoundingSet=CAP_NET_BIND_SERVICE

diff --git a/net-dns/getdns/getdns-1.4.2.ebuild 
b/net-dns/getdns/getdns-1.4.2-r1.ebuild
similarity index 96%
rename from net-dns/getdns/getdns-1.4.2.ebuild
rename to net-dns/getdns/getdns-1.4.2-r1.ebuild
index de86ca0dce7..28d7a6c9c3c 100644
--- a/net-dns/getdns/getdns-1.4.2.ebuild
+++ b/net-dns/getdns/getdns-1.4.2-r1.ebuild
@@ -30,6 +30,8 @@ RDEPEND="
stubby? ( sys-libs/libcap:= )
 "
 
+PATCHES=( "${FILESDIR}/${PN}-1.4.2-stubby.service.patch" )
+
 src_configure() {
econf \
--runstatedir=/var/run \



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

2018-07-12 Thread Michał Górny
commit: 9e75380f3945567172af1e2487ce4d1d1aeae81f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 22:06:43 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 22:25:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e75380f

dev-python/pygments: Backport python3.7 generator fix

 .../pygments/files/pygments-2.2.0-pep479.patch | 46 ++
 dev-python/pygments/pygments-2.2.0.ebuild  |  5 +++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/pygments/files/pygments-2.2.0-pep479.patch 
b/dev-python/pygments/files/pygments-2.2.0-pep479.patch
new file mode 100644
index 000..28d40e9566a
--- /dev/null
+++ b/dev-python/pygments/files/pygments-2.2.0-pep479.patch
@@ -0,0 +1,46 @@
+# HG changeset patch
+# User Miro Hrončok 
+# Date 1530720528 -7200
+# Branch py37
+# Node ID 933b5f6afe35e6d554f46085a4e62dc5bf413c87
+# Parent  7941677dc77d4f2bf0bbd6140ade85a9454b8b80
+PEP 479: Raising StopIteration from a generator is now an error
+
+So we return instead. Fix needed for Python 3.7.
+
+Fixes https://bitbucket.org/birkenfeld/pygments-main/issues/1457
+
+diff --git a/pygments/lexers/lisp.py b/pygments/lexers/lisp.py
+--- a/pygments/lexers/lisp.py
 b/pygments/lexers/lisp.py
+@@ -2327,13 +2327,13 @@
+ token = Name.Function if token == Literal else token
+ yield index, token, value
+ 
+-raise StopIteration
++return
+ 
+ def _process_signature(self, tokens):
+ for index, token, value in tokens:
+ if token == Literal and value == '}':
+ yield index, Punctuation, value
+-raise StopIteration
++return
+ elif token in (Literal, Name.Function):
+ token = Name.Variable if value.istitle() else Keyword.Type
+ yield index, token, value
+diff --git a/pygments/lexers/sql.py b/pygments/lexers/sql.py
+--- a/pygments/lexers/sql.py
 b/pygments/lexers/sql.py
+@@ -347,7 +347,10 @@
+ # Emit the output lines
+ out_token = Generic.Output
+ while 1:
+-line = next(lines)
++try:
++line = next(lines)
++except StopIteration:
++return
+ mprompt = re_prompt.match(line)
+ if mprompt is not None:
+ # push the line back to have it processed by the prompt

diff --git a/dev-python/pygments/pygments-2.2.0.ebuild 
b/dev-python/pygments/pygments-2.2.0.ebuild
index 07dcfb61841..d9da923f8cd 100644
--- a/dev-python/pygments/pygments-2.2.0.ebuild
+++ b/dev-python/pygments/pygments-2.2.0.ebuild
@@ -32,6 +32,11 @@ DEPEND="${RDEPEND}
 
 S="${WORKDIR}/${MY_P}"
 
+PATCHES=(
+   # fix generators for python3.7+
+   "${FILESDIR}"/pygments-2.2.0-pep479.patch
+)
+
 python_compile_all() {
use doc && emake -C doc html
 }



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

2018-07-12 Thread Louis Sautier
commit: 5ad41de8dcd9f047f4c215041cc1953906263c2d
Author: Louis Sautier  gentoo  org>
AuthorDate: Thu Jul 12 22:18:37 2018 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Thu Jul 12 22:18:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ad41de8

dev-python/denonavr: remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/denonavr/Manifest  |  1 -
 dev-python/denonavr/denonavr-0.7.2.ebuild | 33 ---
 2 files changed, 34 deletions(-)

diff --git a/dev-python/denonavr/Manifest b/dev-python/denonavr/Manifest
index bc11722e0bc..127b1050ae0 100644
--- a/dev-python/denonavr/Manifest
+++ b/dev-python/denonavr/Manifest
@@ -1,3 +1,2 @@
-DIST denonavr-0.7.2.tar.gz 61673 BLAKE2B 
98de89e385f51d6a13e1b365074a8bed7303fb4e666c608f547f9f515924539d6f54349483f4a78ed8968295cb1c3196e8713c05f1e10aca7ad290f6114bb29c
 SHA512 
941f8133e19c41df9525f4a9c705ce4dc7a35eef493fa465df52a50fb752f6d23818c7046b7e8281af58b285f65b983bead1c77f49c61fd47743984a4a3f6a4a
 DIST denonavr-0.7.3.tar.gz 61735 BLAKE2B 
5a6a8fab2f416cb34ac3078cc65fa92342de81a21f1710f6460fb00c1d255d7a5e208d3d9f9904c063004456e6e3447a08c677b95fc216bab1153060bafa8dd2
 SHA512 
51d559bf0db1ca9fcd6239046d2c2a149ac22e99aec331f10c7c6d59b2c9290aa66477093f4e707caf24f9ff78572659c3ffe2c9d508a28b344a1838e8cdee5d
 DIST denonavr-0.7.4.tar.gz 61901 BLAKE2B 
70e4ba2b261d2007f80e52c43bf3fca4b41d2e53067e82aa46010334450b2a81723045f377956340d7b7d4388e829b8648a267a89c7ba69fd1ce28ca1f42ca10
 SHA512 
7ac9a25ecb46f0556acf48c1427154d3282a59185640aa85f2ae5d638d4b7fffea5b53a1964c621751e42d1d45fd6a6d5c273e1c850e2e473159bd099394e24e

diff --git a/dev-python/denonavr/denonavr-0.7.2.ebuild 
b/dev-python/denonavr/denonavr-0.7.2.ebuild
deleted file mode 100644
index 72d511138a4..000
--- a/dev-python/denonavr/denonavr-0.7.2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{3_4,3_5,3_6} )
-PYTHON_REQ_USE="xml(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Automation Library for Denon AVR receivers"
-HOMEPAGE="https://github.com/scarface-4711/denonavr";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/requests-mock[${PYTHON_USEDEP}]
-   dev-python/testtools[${PYTHON_USEDEP}]
-   ${RDEPEND}
-   )
-"
-
-python_test() {
-   py.test ||  die "tests failed with ${EPYTHON}"
-}



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

2018-07-12 Thread Louis Sautier
commit: 39a916f3bd554d5827e7c2fedac25b72d0941d91
Author: Louis Sautier  gentoo  org>
AuthorDate: Thu Jul 12 22:17:58 2018 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Thu Jul 12 22:17:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39a916f3

dev-python/denonavr: bump to 0.7.4

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/denonavr/Manifest  |  1 +
 dev-python/denonavr/denonavr-0.7.4.ebuild | 33 +++
 2 files changed, 34 insertions(+)

diff --git a/dev-python/denonavr/Manifest b/dev-python/denonavr/Manifest
index af72c42e2da..bc11722e0bc 100644
--- a/dev-python/denonavr/Manifest
+++ b/dev-python/denonavr/Manifest
@@ -1,2 +1,3 @@
 DIST denonavr-0.7.2.tar.gz 61673 BLAKE2B 
98de89e385f51d6a13e1b365074a8bed7303fb4e666c608f547f9f515924539d6f54349483f4a78ed8968295cb1c3196e8713c05f1e10aca7ad290f6114bb29c
 SHA512 
941f8133e19c41df9525f4a9c705ce4dc7a35eef493fa465df52a50fb752f6d23818c7046b7e8281af58b285f65b983bead1c77f49c61fd47743984a4a3f6a4a
 DIST denonavr-0.7.3.tar.gz 61735 BLAKE2B 
5a6a8fab2f416cb34ac3078cc65fa92342de81a21f1710f6460fb00c1d255d7a5e208d3d9f9904c063004456e6e3447a08c677b95fc216bab1153060bafa8dd2
 SHA512 
51d559bf0db1ca9fcd6239046d2c2a149ac22e99aec331f10c7c6d59b2c9290aa66477093f4e707caf24f9ff78572659c3ffe2c9d508a28b344a1838e8cdee5d
+DIST denonavr-0.7.4.tar.gz 61901 BLAKE2B 
70e4ba2b261d2007f80e52c43bf3fca4b41d2e53067e82aa46010334450b2a81723045f377956340d7b7d4388e829b8648a267a89c7ba69fd1ce28ca1f42ca10
 SHA512 
7ac9a25ecb46f0556acf48c1427154d3282a59185640aa85f2ae5d638d4b7fffea5b53a1964c621751e42d1d45fd6a6d5c273e1c850e2e473159bd099394e24e

diff --git a/dev-python/denonavr/denonavr-0.7.4.ebuild 
b/dev-python/denonavr/denonavr-0.7.4.ebuild
new file mode 100644
index 000..4a3aab11963
--- /dev/null
+++ b/dev-python/denonavr/denonavr-0.7.4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Automation Library for Denon AVR receivers"
+HOMEPAGE="https://github.com/scarface-4711/denonavr";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/requests-mock[${PYTHON_USEDEP}]
+   dev-python/testtools[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   py.test || die "tests failed with ${EPYTHON}"
+}



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

2018-07-12 Thread Louis Sautier
commit: 9fa6fa71b451d7088b7e95638b30175b21b085b9
Author: Louis Sautier  gentoo  org>
AuthorDate: Thu Jul 12 22:04:41 2018 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Thu Jul 12 22:04:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fa6fa71

media-video/gaupol: bump to 1.4.1, remove pytest-runner dep

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-video/gaupol/Manifest|  1 +
 media-video/gaupol/gaupol-1.4.1.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/media-video/gaupol/Manifest b/media-video/gaupol/Manifest
index 8b60f1a0111..f8e815d2857 100644
--- a/media-video/gaupol/Manifest
+++ b/media-video/gaupol/Manifest
@@ -1,2 +1,3 @@
 DIST gaupol-0.91.tar.gz 518493 BLAKE2B 
76a01579c12084e5b7b25f9582126c33070a1df1ce230adfdea66d698830888065c8ea160da70e39550f02dc28f61d8c529aa50c2e75768ed7a2ff3e6165919f
 SHA512 
92459ec0a7d77c8e4a34f44489ae8fc01feeb2d34f6fd152c8bfeaf72b8235c680155698c55e7f9d46ce82bee8274b14313b6a43167f65f784511e583d4858fb
+DIST gaupol-1.4.1.tar.gz 524816 BLAKE2B 
677f1ee0e3b523f97d4b0f6491547d07a658c41c3c2c0f76732589592b542176761df28e13735af58371594043ef234f7987988deacd4d8f73554a87f555d001
 SHA512 
464e71390ba13f1da11bd40ecb4683d146acb6e547204231a2e78c24719b4ad9ba188210d1bf2108924bcfa0df89c0296f428cba693d3b6d4366e98950cb072a
 DIST gaupol-1.4.tar.gz 524369 BLAKE2B 
6f27ce3328339fc2f6248bb58d80965a5a26fed220ddf9c989a5029b4322ea790f768cb9e0472bb2c5eae4e4da3abd4b0f808e785273ff9fb787ff5b7df5d137
 SHA512 
da9256dd8dafeaff012226a8ff09807c7cb7609c293bde7d90b05b4f75c47751e65181f1bf47dff1c8e979f48186996253141ff18e849786bf2cff5ed148

diff --git a/media-video/gaupol/gaupol-1.4.1.ebuild 
b/media-video/gaupol/gaupol-1.4.1.ebuild
new file mode 100644
index 000..25d3dea5fb4
--- /dev/null
+++ b/media-video/gaupol/gaupol-1.4.1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1 gnome2-utils virtualx xdg-utils
+
+DESCRIPTION="A subtitle editor for text-based subtitles"
+HOMEPAGE="https://otsaloma.io/gaupol/";
+SRC_URI="https://github.com/otsaloma/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="spell test"
+
+RDEPEND="
+   app-text/iso-codes
+   dev-python/chardet[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
+   spell? (
+   app-text/gtkspell:3
+   >=dev-python/pyenchant-1.4[${PYTHON_USEDEP}]
+   )
+"
+DEPEND="
+   sys-devel/gettext
+   test? (
+   ${RDEPEND}
+   dev-python/pyenchant[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )
+"
+
+DOCS=( AUTHORS.md NEWS.md TODO.md README.md README.aeidon.md )
+
+python_test() {
+   virtx py.test
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+   if [[ -z ${REPLACING_VERSIONS} ]]; then
+   elog "Previewing support needs MPV, MPlayer or VLC."
+
+   if use spell; then
+   elog "Additionally, spell-checking requires a 
dictionary, any of"
+   elog "Aspell/Pspell, Ispell, MySpell, Uspell, Hspell or 
AppleSpell."
+   fi
+   fi
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+}



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

2018-07-12 Thread Louis Sautier
commit: 3d21c7562d891b972a09baba15a79d8aa89acced
Author: Louis Sautier  gentoo  org>
AuthorDate: Thu Jul 12 22:06:05 2018 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Thu Jul 12 22:06:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d21c756

media-video/gaupol: remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-video/gaupol/Manifest   |  1 -
 media-video/gaupol/gaupol-0.91.ebuild | 62 ---
 2 files changed, 63 deletions(-)

diff --git a/media-video/gaupol/Manifest b/media-video/gaupol/Manifest
index f8e815d2857..eca179af48a 100644
--- a/media-video/gaupol/Manifest
+++ b/media-video/gaupol/Manifest
@@ -1,3 +1,2 @@
-DIST gaupol-0.91.tar.gz 518493 BLAKE2B 
76a01579c12084e5b7b25f9582126c33070a1df1ce230adfdea66d698830888065c8ea160da70e39550f02dc28f61d8c529aa50c2e75768ed7a2ff3e6165919f
 SHA512 
92459ec0a7d77c8e4a34f44489ae8fc01feeb2d34f6fd152c8bfeaf72b8235c680155698c55e7f9d46ce82bee8274b14313b6a43167f65f784511e583d4858fb
 DIST gaupol-1.4.1.tar.gz 524816 BLAKE2B 
677f1ee0e3b523f97d4b0f6491547d07a658c41c3c2c0f76732589592b542176761df28e13735af58371594043ef234f7987988deacd4d8f73554a87f555d001
 SHA512 
464e71390ba13f1da11bd40ecb4683d146acb6e547204231a2e78c24719b4ad9ba188210d1bf2108924bcfa0df89c0296f428cba693d3b6d4366e98950cb072a
 DIST gaupol-1.4.tar.gz 524369 BLAKE2B 
6f27ce3328339fc2f6248bb58d80965a5a26fed220ddf9c989a5029b4322ea790f768cb9e0472bb2c5eae4e4da3abd4b0f808e785273ff9fb787ff5b7df5d137
 SHA512 
da9256dd8dafeaff012226a8ff09807c7cb7609c293bde7d90b05b4f75c47751e65181f1bf47dff1c8e979f48186996253141ff18e849786bf2cff5ed148

diff --git a/media-video/gaupol/gaupol-0.91.ebuild 
b/media-video/gaupol/gaupol-0.91.ebuild
deleted file mode 100644
index 0c1fd6b43f7..000
--- a/media-video/gaupol/gaupol-0.91.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_4,3_5} )
-
-inherit distutils-r1 gnome2-utils virtualx xdg-utils
-
-DESCRIPTION="A subtitle editor for text-based subtitles"
-HOMEPAGE="https://otsaloma.io/gaupol/";
-SRC_URI="https://github.com/otsaloma/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="spell test"
-
-RDEPEND="
-   app-text/iso-codes
-   dev-python/chardet[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection]
-   spell? (
-   >=dev-python/pyenchant-1.4[${PYTHON_USEDEP}]
-   app-text/gtkspell:3
-   )"
-
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-runner[${PYTHON_USEDEP}]
-   )
-"
-
-DOCS=( AUTHORS.md NEWS.md TODO.md README.md README.aeidon.md )
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-   gnome2_icon_cache_update
-   if [[ -z "${REPLACING_VERSIONS}" ]]; then
-   elog "Previewing support needs MPV, MPlayer or VLC."
-
-   if use spell; then
-   elog "Additionally, spell-checking requires a 
dictionary, any of"
-   elog "Aspell/Pspell, Ispell, MySpell, Uspell, Hspell or 
AppleSpell."
-   fi
-   fi
-}
-
-python_test() {
-   virtx py.test
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_mimeinfo_database_update
-   gnome2_icon_cache_update
-}



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

2018-07-12 Thread Louis Sautier
commit: a399827761cd5dbeaf1edb8377cfcc3bd4963ced
Author: Louis Sautier  gentoo  org>
AuthorDate: Thu Jul 12 21:53:57 2018 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Thu Jul 12 21:58:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3998277

net-misc/gns3-server: fix typing compatibility

Required after 9bc4443779d8247af9312ac39039c1bde3af6d97

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 net-misc/gns3-server/files/gns3-server-2.1.3-typing.patch| 9 +
 .../{gns3-server-2.1.3-r2.ebuild => gns3-server-2.1.3-r3.ebuild} | 3 +++
 2 files changed, 12 insertions(+)

diff --git a/net-misc/gns3-server/files/gns3-server-2.1.3-typing.patch 
b/net-misc/gns3-server/files/gns3-server-2.1.3-typing.patch
new file mode 100644
index 000..99b32df27ad
--- /dev/null
+++ b/net-misc/gns3-server/files/gns3-server-2.1.3-typing.patch
@@ -0,0 +1,9 @@
+--- a/requirements.txt
 b/requirements.txt
+@@ -6,5 +6,5 @@
+ raven>=5.23.0
+ psutil>=3.0.0
+ zipstream>=1.1.4
+-typing>=3.5.3.0 # Otherwise yarl fails with python 3.4
++typing>=3.5.3.0;python_version<"3.5" # Otherwise yarl fails with python 3.4
+ prompt-toolkit

diff --git a/net-misc/gns3-server/gns3-server-2.1.3-r2.ebuild 
b/net-misc/gns3-server/gns3-server-2.1.3-r3.ebuild
similarity index 95%
rename from net-misc/gns3-server/gns3-server-2.1.3-r2.ebuild
rename to net-misc/gns3-server/gns3-server-2.1.3-r3.ebuild
index 62ed4a33ebd..282ff6a3840 100644
--- a/net-misc/gns3-server/gns3-server-2.1.3-r2.ebuild
+++ b/net-misc/gns3-server/gns3-server-2.1.3-r3.ebuild
@@ -35,6 +35,9 @@ RDEPEND=">=app-emulation/dynamips-0.2.12
>=dev-python/yarl-0.11[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 
+# https://github.com/GNS3/gns3-server/pull/1368
+PATCHES=( "${FILESDIR}/${P}-typing.patch" )
+
 src_prepare() {
default
 



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

2018-07-12 Thread Louis Sautier
commit: b59dce2767680308024dd974b1a068bac7c8849d
Author: Louis Sautier  gentoo  org>
AuthorDate: Thu Jul 12 21:56:32 2018 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Thu Jul 12 21:58:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b59dce27

net-misc/gns3-server: add upstream info to metadata.xml

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 net-misc/gns3-server/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-misc/gns3-server/metadata.xml 
b/net-misc/gns3-server/metadata.xml
index 7012b6c468a..1ff1650e884 100644
--- a/net-misc/gns3-server/metadata.xml
+++ b/net-misc/gns3-server/metadata.xml
@@ -4,5 +4,7 @@
 

gns-3
+   GNS3/gns3-server
+   https://github.com/GNS3/gns3-server/issues

 



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

2018-07-12 Thread Michał Górny
commit: 10ab70cfc107dddbdbc4dae4a40de7df5788a708
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 21:49:53 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 21:54:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10ab70cf

dev-python/testtools: Backport py3.7 test fix

 .../testtools/files/testtools-2.3.0-py37.patch | 44 ++
 dev-python/testtools/testtools-2.3.0.ebuild|  6 ++-
 2 files changed, 49 insertions(+), 1 deletion(-)

diff --git a/dev-python/testtools/files/testtools-2.3.0-py37.patch 
b/dev-python/testtools/files/testtools-2.3.0-py37.patch
new file mode 100644
index 000..0f2da043ffe
--- /dev/null
+++ b/dev-python/testtools/files/testtools-2.3.0-py37.patch
@@ -0,0 +1,44 @@
+https://github.com/testing-cabal/testtools/commit/29004731f9c480b7c44a9c2605513d50d372898f.patch
+
+From 29004731f9c480b7c44a9c2605513d50d372898f Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= 
+Date: Thu, 17 May 2018 17:52:26 +0200
+Subject: [PATCH] Fix the tests on Python 3.7
+
+Exception's repr got changed not to include trailing comma
+
+Fixes https://github.com/testing-cabal/testtools/issues/270
+---
+ .travis.yml|  1 +
+ testtools/tests/matchers/test_exception.py | 11 +--
+ 2 files changed, 10 insertions(+), 2 deletions(-)
+
+diff --git a/testtools/tests/matchers/test_exception.py 
b/testtools/tests/matchers/test_exception.py
+index 6cd80af1..acd39252 100644
+--- a/testtools/tests/matchers/test_exception.py
 b/testtools/tests/matchers/test_exception.py
+@@ -32,15 +32,22 @@ class TestMatchesExceptionInstanceInterface(TestCase, 
TestMatchersInterface):
+ matches_matches = [error_foo]
+ matches_mismatches = [error_bar, error_base_foo]
+ 
++if sys.version_info >= (3, 7):
++# exception's repr has changed
++_e = ''
++else:
++_e = ','
++
+ str_examples = [
+-("MatchesException(Exception('foo',))",
++("MatchesException(Exception('foo'%s))" % _e,
+  MatchesException(Exception('foo')))
+ ]
+ describe_examples = [
+ ("%r is not a %r" % (Exception, ValueError),
+  error_base_foo,
+  MatchesException(ValueError("foo"))),
+-("ValueError('bar',) has different arguments to ValueError('foo',).",
++("ValueError('bar'%s) has different arguments to ValueError('foo'%s)."
++ % (_e, _e),
+  error_bar,
+  MatchesException(ValueError("foo"))),
+ ]

diff --git a/dev-python/testtools/testtools-2.3.0.ebuild 
b/dev-python/testtools/testtools-2.3.0.ebuild
index 0ec501a3f0e..e37da41b3e7 100644
--- a/dev-python/testtools/testtools-2.3.0.ebuild
+++ b/dev-python/testtools/testtools-2.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -38,6 +38,10 @@ DEPEND="
 RDEPEND="${CDEPEND}"
 PDEPEND=">=dev-python/fixtures-1.3.0[${PYTHON_USEDEP}]"
 
+PATCHES=(
+   "${FILESDIR}"/testtools-2.3.0-py37.patch
+)
+
 python_compile_all() {
use doc && emake -C doc html
 }



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

2018-07-12 Thread Michał Górny
commit: 911d8cdd21e49eb5299961fe175428f7fd31c263
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 21:50:25 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 21:54:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=911d8cdd

dev-python/testtools: Remove unused patches

 .../files/testtools-1.8.0-twisted-backport.patch   | 74 --
 .../files/testtools-1.8.0-twisted-backport1.patch  | 33 --
 .../files/testtools-1.8.0-twisted-backport2.patch  | 57 -
 3 files changed, 164 deletions(-)

diff --git a/dev-python/testtools/files/testtools-1.8.0-twisted-backport.patch 
b/dev-python/testtools/files/testtools-1.8.0-twisted-backport.patch
deleted file mode 100644
index fd65b4cd6f5..000
--- a/dev-python/testtools/files/testtools-1.8.0-twisted-backport.patch
+++ /dev/null
@@ -1,74 +0,0 @@
-From 25f4800d62f339f81b09c894275a3af4b284fb62 Mon Sep 17 00:00:00 2001
-From: Colin Watson 
-Date: Wed, 19 Aug 2015 03:06:09 +0100
-Subject: [PATCH] Port twisted.deferredruntest to Twisted >= 15.1.0
-
-Twisted 15.1.0 removes the compatibility import of _LogObserver in
-twisted.trial.unittest.  This is unfortunate for us, but it's what we
-get for using an internal interface.  It at least still exists in
-twisted.trial._synctest, so we can get it from there.
-
-Twisted 15.2.0 adds the new twisted.logger framework, which requires a
-slight adjustment to run_with_log_observers.  There's no longer a
-supported interface to get hold of all log observers, but since we're
-already using an internal interface (see above), what's one more?
-
-This passes "make check" with the current release, Twisted 15.3.0.

- testtools/deferredruntest.py | 27 +++
- 1 file changed, 23 insertions(+), 4 deletions(-)
-
-diff --git a/testtools/deferredruntest.py b/testtools/deferredruntest.py
-index c33e14a..04cdb0f 100644
 a/testtools/deferredruntest.py
-+++ b/testtools/deferredruntest.py
-@@ -27,8 +27,15 @@
- )
- 
- from twisted.internet import defer
-+try:
-+from twisted.logger import globalLogPublisher
-+except ImportError:
-+globalLogPublisher = None
- from twisted.python import log
--from twisted.trial.unittest import _LogObserver
-+try:
-+from twisted.trial.unittest import _LogObserver
-+except ImportError:
-+from twisted.trial._synctest import _LogObserver
- 
- 
- class _DeferredRunTest(RunTest):
-@@ -53,9 +60,21 @@ def _run_user(self, function, *args):
- 
- def run_with_log_observers(observers, function, *args, **kwargs):
- """Run 'function' with the given Twisted log observers."""
--real_observers = list(log.theLogPublisher.observers)
-+if globalLogPublisher is not None:
-+# Twisted >= 15.2.0, with the new twisted.logger framework.
-+# log.theLogPublisher.observers will only contain legacy observers;
-+# we need to look at globalLogPublisher._observers, which contains
-+# both legacy and modern observers, and add and remove them via
-+# globalLogPublisher.  However, we must still add and remove the
-+# observers we want to run with via log.theLogPublisher, because
-+# _LogObserver may consider old keys and require them to be mapped.
-+publisher = globalLogPublisher
-+real_observers = list(publisher._observers)
-+else:
-+publisher = log.theLogPublisher
-+real_observers = list(publisher.observers)
- for observer in real_observers:
--log.theLogPublisher.removeObserver(observer)
-+publisher.removeObserver(observer)
- for observer in observers:
- log.theLogPublisher.addObserver(observer)
- try:
-@@ -64,7 +83,7 @@ def run_with_log_observers(observers, function, *args, 
**kwargs):
- for observer in observers:
- log.theLogPublisher.removeObserver(observer)
- for observer in real_observers:
--log.theLogPublisher.addObserver(observer)
-+publisher.addObserver(observer)
- 
- 
- # Observer of the Twisted log that we install during tests.

diff --git a/dev-python/testtools/files/testtools-1.8.0-twisted-backport1.patch 
b/dev-python/testtools/files/testtools-1.8.0-twisted-backport1.patch
deleted file mode 100644
index c1eb11b1f5a..000
--- a/dev-python/testtools/files/testtools-1.8.0-twisted-backport1.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 6d821b5770b01f5ec98c3b8db734fffeebf12b62 Mon Sep 17 00:00:00 2001
-From: Colin Watson 
-Date: Mon, 24 Aug 2015 13:21:57 +0100
-Subject: [PATCH] Test with Twisted 13.0.0/15.2.0.
-

- .travis.yml | 6 +-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/.travis.yml b/.travis.yml
-index 41036f8..a706b27 100644
 a/.travis.yml
-+++ b/.travis.yml
-@@ -7,6 +7,10 @@ python:
-   - "3.4"
-   - "pypy"
- 
-+env:
-+  - TWISTED="==13.0.0"
-+  - TWISTED="==15.2.0"
-+
- # We have to pin Jinja2 < 2.7  for Python 3.2 because 2.7 drops/breaks 
support:
- # http

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

2018-07-12 Thread Nick Sarnie
commit: 70cfa1a8a7c34ac4df3ab99a49fb3036908b0a44
Author: Nick Sarnie  gentoo  org>
AuthorDate: Thu Jul 12 21:46:37 2018 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Thu Jul 12 21:46:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70cfa1a8

dev-util/spirv-tools: Require new spirv-headers

Fixes: https://bugs.gentoo.org/661014
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-util/spirv-tools/spirv-tools-2018.4.ebuild | 2 +-
 dev-util/spirv-tools/spirv-tools-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/spirv-tools/spirv-tools-2018.4.ebuild 
b/dev-util/spirv-tools/spirv-tools-2018.4.ebuild
index 9b76b868f23..95d38ce604d 100644
--- a/dev-util/spirv-tools/spirv-tools-2018.4.ebuild
+++ b/dev-util/spirv-tools/spirv-tools-2018.4.ebuild
@@ -17,7 +17,7 @@ KEYWORDS="~amd64 ~x86"
 RESTRICT="test"
 
 RDEPEND=""
-DEPEND="dev-util/spirv-headers"
+DEPEND=">=dev-util/spirv-headers-1.3.1_pre20180710"
 EGIT_COMMIT="f508896d6487d09f5c9a2a3835595446fec0791a"
 S="${WORKDIR}/SPIRV-Tools-${PV}"
 

diff --git a/dev-util/spirv-tools/spirv-tools-.ebuild 
b/dev-util/spirv-tools/spirv-tools-.ebuild
index 31b356a6c96..029556876e6 100644
--- a/dev-util/spirv-tools/spirv-tools-.ebuild
+++ b/dev-util/spirv-tools/spirv-tools-.ebuild
@@ -17,7 +17,7 @@ SLOT="0"
 RESTRICT="test"
 
 RDEPEND=""
-DEPEND="dev-util/spirv-headers"
+DEPEND=">=dev-util/spirv-headers-1.3.1_pre20180710"
 
 multilib_src_configure() {
local mycmakeargs=(



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

2018-07-12 Thread Michał Górny
commit: 897ffedac974645fb3826a3346445ea07c1ff818
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 21:37:37 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 21:41:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=897ffeda

dev-python/testscenarios: Use pytest to work-around broken code

The code used for loading tests does not work anymore with Python 3.5's
unittest implementation.  Use pytest to run tests instead.

 dev-python/testscenarios/testscenarios-0.5.0.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-python/testscenarios/testscenarios-0.5.0.ebuild 
b/dev-python/testscenarios/testscenarios-0.5.0.ebuild
index 6955aee18da..81df8618cce 100644
--- a/dev-python/testscenarios/testscenarios-0.5.0.ebuild
+++ b/dev-python/testscenarios/testscenarios-0.5.0.ebuild
@@ -14,14 +14,17 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux ~amd64-fbsd"
+IUSE="test"
 
 RDEPEND="
dev-python/testtools[${PYTHON_USEDEP}]"
 
+# using pytest for tests since unittest loader fails with py3.5+
 DEPEND="
${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/pbr-0.11[${PYTHON_USEDEP}]"
+   >=dev-python/pbr-0.11[${PYTHON_USEDEP}]
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
 
 python_prepare_all() {
# Remove a faulty file from tests, missing a required attribute
@@ -30,5 +33,5 @@ python_prepare_all() {
 }
 
 python_test() {
-   "${PYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
+   pytest -vv || die "Tests fail with ${EPYTHON}"
 }



[gentoo-commits] repo/user/ssnb:master commit in: x11-misc/x11vnc/, x11-misc/x11vnc/files/

2018-07-12 Thread Samuel Bernardo
commit: 5e342f86e7159135a11ce4602388859eac240ff8
Author: Samuel Bernardo  gmail  com>
AuthorDate: Thu Jul 12 21:16:31 2018 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Thu Jul 12 21:16:31 2018 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=5e342f86

add x11vnc 0.9.15

 x11-misc/x11vnc/Manifest |  5 +++
 x11-misc/x11vnc/files/x11vnc.conf.d  | 37 +++
 x11-misc/x11vnc/files/x11vnc.init.d  | 70 
 x11-misc/x11vnc/metadata.xml | 21 +++
 x11-misc/x11vnc/x11vnc-0.9.15.ebuild | 55 
 5 files changed, 188 insertions(+)

diff --git a/x11-misc/x11vnc/Manifest b/x11-misc/x11vnc/Manifest
new file mode 100644
index 000..2e523b3
--- /dev/null
+++ b/x11-misc/x11vnc/Manifest
@@ -0,0 +1,5 @@
+AUX x11vnc.conf.d 1435 BLAKE2B 
8403d61a4941c56127e869d6ac90d4f85237af9af786f864d32afbedf3e736528b74c8c83fcf3491794b9e62db6ef2a354dccd61f368c8e9251f915e2bd683f8
 SHA512 
dedc94fab89a06ca6025b99c2c944cabe77640487c8fc761a6420e5be7062ee4c1c383f3846c17bed434ad4f3ec3b994badb493919acb99da3f61caa40c60246
+AUX x11vnc.init.d 1728 BLAKE2B 
45680af6aad530a9b36f29adc61c1f90ad272bd7201c30f29b3d6c5b980012ddb299c878ae1bb20734496c4f2b8b1e1c507cadee875305167e3f298993947a9e
 SHA512 
8de7966b79b5acc83c8cebc3c2ef0819196f5a33eabad619991d04c7c059a68afbf44d0ece6b0db33cea1f525402a601b25db220733f0ff69c0fff48d3c50ac2
+DIST x11vnc-0.9.15.tar.gz 1701821 BLAKE2B 
b53de9b86c8f9da27388898fe70b6b331a5f00348391f1ccd3c21097a66e967b862ec665f8c9ef9023770a795bb079545012f1f5747fc6d39fda339fcbee9404
 SHA512 
d5db90f87ba4b9801e8f6bb2c0821657c6388ce2c64e1565aeeabe41edf63b56ad72dc7be4cf874b817dacd7de5988eddd466df5b9396c13d69340ac90a1ca4d
+EBUILD x11vnc-0.9.15.ebuild 1350 BLAKE2B 
b3cbcb6745630909c620e3cdba5c66416edaa315a893011d02e5bc172d32fc04dded097d0188deffbc143b5f7e1f2b9563375b68cf06980c7a59938203987208
 SHA512 
9a4b5da0698ea0420ce5f61ec3173cb95551018f0f322e655fe02615f349662638acf746983255cb62e58015707358a9c1dde4acc499f25df42856f78aa830b8
+MISC metadata.xml 694 BLAKE2B 
c81a1713da2084ad68df6c91b75cba02df7c39950b331916362ffc8dd67b6b72dbf40248c3a906d1f582a8ed5034c4cbebcab7bc4b9db69508a753f44df07102
 SHA512 
842b0faca49ae6810c42d117ca3f79fc693acfb8a965d3fd2a8c890f475350c29175303f1b56b0c64468dae20e692d2430fc790e7b88165c0f30d65e1bdcb606

diff --git a/x11-misc/x11vnc/files/x11vnc.conf.d 
b/x11-misc/x11vnc/files/x11vnc.conf.d
new file mode 100644
index 000..7df3a13
--- /dev/null
+++ b/x11-misc/x11vnc/files/x11vnc.conf.d
@@ -0,0 +1,37 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+# Configuration for running x11vnc as a service. This allows VNC 
+# connections prior to logging in to the X display manager.
+
+# Password file location of the password file for VNC Connections
+#   Prior to first run, you must configure a password, to do so please
+#   run `x11vnc -storepasswd /etc/x11vnc.pass`. Replace /etc/x11vnc.pass 
+#   ith the location you have specified below
+#X11VNC_RFBAUTH="/etc/x11vnc.pass"
+
+# Port to listen on for incoming connections
+#X11VNC_RFBPORT="5900"
+
+# Automatically probe for a free port to listen on for incoming connections
+# starting from the port number specified
+#   Setting this will diable X11VNC_RFBPORT above
+#   See `man x11vnc`, option `-autoport` for more information
+#X11VNC_AUTOPORT=""
+
+# X Display to attach to
+#   This should match the display your DM is running on
+#X11VNC_DISPLAY=":0"
+
+# Location of the x11vnc logfile
+#X11VNC_LOG="/var/log/x11vnc"
+
+# Miscelaneous options to pass to x11vnc.
+#   Do not set options that are configurable above.
+#   Check `x11vnc -help` or `man x11vnc` for more options.
+#   * Modern composting DMs/WMs will require "-noxdamage"
+#   * If you experience crashes on logging in, try "-noxfixes"
+#   * Other suggested options include "-noxrecord" and "-ncache ##"
+# Refer to the x11vnc man page for further explanations.
+#X11VNC_OPTS=""
+

diff --git a/x11-misc/x11vnc/files/x11vnc.init.d 
b/x11-misc/x11vnc/files/x11vnc.init.d
new file mode 100644
index 000..b6b16da
--- /dev/null
+++ b/x11-misc/x11vnc/files/x11vnc.init.d
@@ -0,0 +1,70 @@
+#!/sbin/openrc-run
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+description="The x11vnc daemon init script"
+
+depend() {
+   need net
+   need xdm
+}
+
+checkconfig() {
+
+   # Set Defaults
+   X11VNC_RFBAUTH=${X11VNC_RFBAUTH:-/etc/x11vnc.pass}
+   X11VNC_RFBPORT=${X11VNC_RFBPORT:-5900}
+   X11VNC_DISPLAY=${X11VNC_DISPLAY:-:0}
+   X11VNC_LOG=${X11VNC_LOG:-/var/log/x11vnc}
+   
+   X11VNC_AUTH="/var/run/x11vnc-${X11VNC_DISPLAY}" 
+
+   if [ -n "${X11VNC_AUTOPORT}" ]; then
+   X11VNC_PORT=""
+   fi
+
+   if [ ! -f "${X11VNC_RFBAUTH}" -o ! -s "${X11VNC_RFBAUTH}" ]; then
+   eerror "VNC Password not set, plea

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

2018-07-12 Thread Sergei Trofimovich
commit: 132b8f8e56376aeb89abc9db6936a25f6fee79c3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jul 12 20:20:31 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 12 21:16:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=132b8f8e

dev-util/cucumber-core: keyworded >=3.0.0 for sparc

Bug: https://bugs.gentoo.org/634924
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 dev-util/cucumber-core/cucumber-core-3.0.0.ebuild| 2 +-
 dev-util/cucumber-core/cucumber-core-3.1.0-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/cucumber-core/cucumber-core-3.0.0.ebuild 
b/dev-util/cucumber-core/cucumber-core-3.0.0.ebuild
index d80226e8b39..078c3dd6b01 100644
--- a/dev-util/cucumber-core/cucumber-core-3.0.0.ebuild
+++ b/dev-util/cucumber-core/cucumber-core-3.0.0.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Executable feature scenarios"
 HOMEPAGE="https://github.com/aslakhellesoy/cucumber/wikis";
 LICENSE="Ruby"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="3.0"
 IUSE="test"
 

diff --git a/dev-util/cucumber-core/cucumber-core-3.1.0-r1.ebuild 
b/dev-util/cucumber-core/cucumber-core-3.1.0-r1.ebuild
index ff11b505a80..f3c9451e8d5 100644
--- a/dev-util/cucumber-core/cucumber-core-3.1.0-r1.ebuild
+++ b/dev-util/cucumber-core/cucumber-core-3.1.0-r1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/cucumber/cucumber-ruby-core/archive/v${PV}.tar.gz ->
 RUBY_S="cucumber-ruby-core-${PV}"
 LICENSE="Ruby"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="3.1"
 IUSE="test"
 



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

2018-07-12 Thread Sergei Trofimovich
commit: 5f5ecafcb5159cba9e9189523c6e88b27aaa3951
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jul 12 20:25:23 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 12 21:16:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f5ecafc

dev-util/cucumber-tag_expressions: keyworded >=1.0.1 for sparc

Bug: https://bugs.gentoo.org/634924
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.0.1.ebuild | 2 +-
 dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.0.ebuild | 2 +-
 dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.0.1.ebuild 
b/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.0.1.ebuild
index d4242a208b3..124d0a51dd9 100644
--- a/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.0.1.ebuild
+++ b/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.0.1.ebuild
@@ -14,5 +14,5 @@ DESCRIPTION="Cucumber tag expressions for ruby"
 HOMEPAGE="https://docs.cucumber.io/tag-expressions/";
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="1"

diff --git 
a/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.0.ebuild 
b/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.0.ebuild
index d4242a208b3..124d0a51dd9 100644
--- a/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.0.ebuild
+++ b/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.0.ebuild
@@ -14,5 +14,5 @@ DESCRIPTION="Cucumber tag expressions for ruby"
 HOMEPAGE="https://docs.cucumber.io/tag-expressions/";
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="1"

diff --git 
a/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild 
b/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild
index 1b80ebb5bd7..8f80157a5c9 100644
--- a/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild
+++ b/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild
@@ -14,5 +14,5 @@ DESCRIPTION="Cucumber tag expressions for ruby"
 HOMEPAGE="https://docs.cucumber.io/tag-expressions/";
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="1"



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

2018-07-12 Thread Sergei Trofimovich
commit: 2878d63a5c3f4dc025a51d8c97350cb21fe50342
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jul 12 20:24:50 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 12 21:16:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2878d63a

dev-ruby/backports: keyworded 3.8.0 for sparc

Bug: https://bugs.gentoo.org/634924
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-ruby/backports/backports-3.8.0.ebuild 
b/dev-ruby/backports/backports-3.8.0.ebuild
index bbd00ec13ab..5d7bf558e3b 100644
--- a/dev-ruby/backports/backports-3.8.0.ebuild
+++ b/dev-ruby/backports/backports-3.8.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/marcandre/backports";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 IUSE=""
 
 all_ruby_prepare() {



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

2018-07-12 Thread Sergei Trofimovich
commit: 41d34656777587f6f2e8138881436c7e57a004cc
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jul 12 20:22:16 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 12 21:16:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41d34656

dev-util/cucumber: keyworded >=3.0.2 for sparc

Bug: https://bugs.gentoo.org/634924
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 dev-util/cucumber/cucumber-3.0.2.ebuild| 2 +-
 dev-util/cucumber/cucumber-3.1.0-r1.ebuild | 2 +-
 dev-util/cucumber/cucumber-3.1.0.ebuild| 2 +-
 dev-util/cucumber/cucumber-3.1.1.ebuild| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-util/cucumber/cucumber-3.0.2.ebuild 
b/dev-util/cucumber/cucumber-3.0.2.ebuild
index b23852921af..4c7db705b89 100644
--- a/dev-util/cucumber/cucumber-3.0.2.ebuild
+++ b/dev-util/cucumber/cucumber-3.0.2.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P}
 RUBY_S="cucumber-ruby-${PV}"
 LICENSE="Ruby"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="0"
 IUSE="examples test"
 

diff --git a/dev-util/cucumber/cucumber-3.1.0-r1.ebuild 
b/dev-util/cucumber/cucumber-3.1.0-r1.ebuild
index efb1a9e5bd5..6b671bfcda1 100644
--- a/dev-util/cucumber/cucumber-3.1.0-r1.ebuild
+++ b/dev-util/cucumber/cucumber-3.1.0-r1.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P}
 RUBY_S="cucumber-ruby-${PV}"
 LICENSE="Ruby"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="0"
 IUSE="examples test"
 

diff --git a/dev-util/cucumber/cucumber-3.1.0.ebuild 
b/dev-util/cucumber/cucumber-3.1.0.ebuild
index 23e5ff16e71..181b5b11650 100644
--- a/dev-util/cucumber/cucumber-3.1.0.ebuild
+++ b/dev-util/cucumber/cucumber-3.1.0.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P}
 RUBY_S="cucumber-ruby-${PV}"
 LICENSE="Ruby"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="0"
 IUSE="examples test"
 

diff --git a/dev-util/cucumber/cucumber-3.1.1.ebuild 
b/dev-util/cucumber/cucumber-3.1.1.ebuild
index 982b9518dfd..4235b44e837 100644
--- a/dev-util/cucumber/cucumber-3.1.1.ebuild
+++ b/dev-util/cucumber/cucumber-3.1.1.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P}
 RUBY_S="cucumber-ruby-${PV}"
 LICENSE="Ruby"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="0"
 IUSE="examples test"
 



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

2018-07-12 Thread Sergei Trofimovich
commit: 7dd6e9246a07e2964249696b06c7a8f6f3e16d0a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jul 12 20:18:15 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 12 21:16:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dd6e924

sys-apps/coreutils: stable 8.29-r1 for hppa

Bug: https://bugs.gentoo.org/660786
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="hppa"

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

diff --git a/sys-apps/coreutils/coreutils-8.29-r1.ebuild 
b/sys-apps/coreutils/coreutils-8.29-r1.ebuild
index 0eb78f2cdac..945e3337521 100644
--- a/sys-apps/coreutils/coreutils-8.29-r1.ebuild
+++ b/sys-apps/coreutils/coreutils-8.29-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~arm-linux ~x86-linux"
 IUSE="acl caps gmp hostname kill multicall nls selinux +split-usr static test 
userland_BSD vanilla xattr"
 
 LIB_DEPEND="acl? ( sys-apps/acl[static-libs] )



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

2018-07-12 Thread Sergei Trofimovich
commit: 2010331926d98698e2e1bf0b8c29b6f9310686c7
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jul 12 20:19:41 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 12 21:16:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20103319

net-misc/curl: stable 7.61.0 for sparc

Bug: https://bugs.gentoo.org/660894
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 net-misc/curl/curl-7.61.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/curl/curl-7.61.0.ebuild b/net-misc/curl/curl-7.61.0.ebuild
index a6ecd7baf31..125a641bc0d 100644
--- a/net-misc/curl/curl-7.61.0.ebuild
+++ b/net-misc/curl/curl-7.61.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://curl.haxx.se/download/${P}.tar.bz2";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="adns brotli http2 idn ipv6 kerberos ldap metalink rtmp samba ssh ssl 
static-libs test threads"
 IUSE+=" curl_ssl_axtls curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls 
curl_ssl_nss +curl_ssl_openssl curl_ssl_winssl"
 IUSE+=" elibc_Winnt"



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

2018-07-12 Thread Sergei Trofimovich
commit: 3d8490c36812f468c119a09c46336259b6d1c78e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Jul 12 20:27:05 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 12 21:16:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d8490c3

dev-util/cucumber-expressions: keyworded >=4.0.4 for sparc

Bug: https://bugs.gentoo.org/634924
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="sparc"

 dev-util/cucumber-expressions/cucumber-expressions-4.0.4.ebuild  | 2 +-
 dev-util/cucumber-expressions/cucumber-expressions-5.0.18.ebuild | 2 +-
 dev-util/cucumber-expressions/cucumber-expressions-6.0.0.ebuild  | 2 +-
 dev-util/cucumber-expressions/cucumber-expressions-6.0.1.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-util/cucumber-expressions/cucumber-expressions-4.0.4.ebuild 
b/dev-util/cucumber-expressions/cucumber-expressions-4.0.4.ebuild
index 7890f7bd198..c7f9c901c4f 100644
--- a/dev-util/cucumber-expressions/cucumber-expressions-4.0.4.ebuild
+++ b/dev-util/cucumber-expressions/cucumber-expressions-4.0.4.ebuild
@@ -14,5 +14,5 @@ DESCRIPTION="a simpler alternative to Regular Expressions"
 HOMEPAGE="https://github.com/cucumber/cucumber-expressions-ruby#readme";
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="4.0"

diff --git a/dev-util/cucumber-expressions/cucumber-expressions-5.0.18.ebuild 
b/dev-util/cucumber-expressions/cucumber-expressions-5.0.18.ebuild
index 20efb11a7f9..cc906e2cd48 100644
--- a/dev-util/cucumber-expressions/cucumber-expressions-5.0.18.ebuild
+++ b/dev-util/cucumber-expressions/cucumber-expressions-5.0.18.ebuild
@@ -14,5 +14,5 @@ DESCRIPTION="a simpler alternative to Regular Expressions"
 HOMEPAGE="https://github.com/cucumber/cucumber-expressions-ruby#readme";
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="5.0"

diff --git a/dev-util/cucumber-expressions/cucumber-expressions-6.0.0.ebuild 
b/dev-util/cucumber-expressions/cucumber-expressions-6.0.0.ebuild
index 06b14165109..d7125ec4950 100644
--- a/dev-util/cucumber-expressions/cucumber-expressions-6.0.0.ebuild
+++ b/dev-util/cucumber-expressions/cucumber-expressions-6.0.0.ebuild
@@ -14,5 +14,5 @@ DESCRIPTION="a simpler alternative to Regular Expressions"
 HOMEPAGE="https://github.com/cucumber/cucumber-expressions-ruby#readme";
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="6.0"

diff --git a/dev-util/cucumber-expressions/cucumber-expressions-6.0.1.ebuild 
b/dev-util/cucumber-expressions/cucumber-expressions-6.0.1.ebuild
index 06b14165109..d7125ec4950 100644
--- a/dev-util/cucumber-expressions/cucumber-expressions-6.0.1.ebuild
+++ b/dev-util/cucumber-expressions/cucumber-expressions-6.0.1.ebuild
@@ -14,5 +14,5 @@ DESCRIPTION="a simpler alternative to Regular Expressions"
 HOMEPAGE="https://github.com/cucumber/cucumber-expressions-ruby#readme";
 LICENSE="MIT"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 SLOT="6.0"



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

2018-07-12 Thread Dirkjan Ochtman
commit: ba05f1f31593c9ea751bde01a9380c5f516ef0e7
Author: Dirkjan Ochtman  gentoo  org>
AuthorDate: Thu Jul 12 20:58:22 2018 +
Commit: Dirkjan Ochtman  gentoo  org>
CommitDate: Thu Jul 12 20:58:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba05f1f3

virtual/rust: bump to 1.27.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 virtual/rust/rust-1.27.1.ebuild | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/virtual/rust/rust-1.27.1.ebuild b/virtual/rust/rust-1.27.1.ebuild
new file mode 100644
index 000..fa78c78a3e7
--- /dev/null
+++ b/virtual/rust/rust-1.27.1.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Virtual for Rust language compiler"
+HOMEPAGE=""
+SRC_URI=""
+
+LICENSE=""
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+BDEPEND=""
+RDEPEND="|| ( =dev-lang/rust-${PV}* =dev-lang/rust-bin-${PV}* )"



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

2018-07-12 Thread Andreas Sturmlechner
commit: 8197273efa95672b9e41d3272e770063a99d08fd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jul 12 19:37:33 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jul 12 19:37:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8197273e

kde-apps/kamoso: Re-manifest

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 kde-apps/kamoso/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kamoso/Manifest b/kde-apps/kamoso/Manifest
index 428c0215f10..4231bdf208d 100644
--- a/kde-apps/kamoso/Manifest
+++ b/kde-apps/kamoso/Manifest
@@ -1 +1 @@
-DIST kamoso-18.04.3.tar.xz 185180 BLAKE2B 
fe9cb465ceec5d84e4d46c69a8588a4d4ac7070d5b97616061eec98bc748a73d04e60416b95d39d5e9785be2c747b5b3539b9bf1bf8e22814101a53e137c69d2
 SHA512 
2b6ac71c9e661aa6f6c4dde183f660f0028440ebacfa144f17550f95c1250c8e73cf0e2c5397fc0ed44f829201d84ef22049fba0bd00c2a36d2875cbcc560e9f
+DIST kamoso-18.04.3.tar.xz 185160 BLAKE2B 
e1fcf8299f8839815208c6d12bb5099c29204db48a66932c6ffdb37c3ce8f22da6c3fc8d5b5722f76d6ed38dbc2f64d80d367da318a8645418f9d53d5ed887c3
 SHA512 
f6f513b4da9d882104f8c8d8ba4f0aa484fa5430be2cab7fa57a8abca4befd5f4f704b46e83b44ae3cba161e309aa0b36e82361cdd0a197fe0d2c6e51101eab3



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

2018-07-12 Thread Andreas Sturmlechner
commit: 051aecce5240aa0864a46d2bb34795f197291a37
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jul 12 19:36:48 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jul 12 19:37:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=051aecce

kde-apps/akonadi: Re-manifest

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 kde-apps/akonadi/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/akonadi/Manifest b/kde-apps/akonadi/Manifest
index 00e5f94e82b..25ce6871736 100644
--- a/kde-apps/akonadi/Manifest
+++ b/kde-apps/akonadi/Manifest
@@ -1,2 +1,2 @@
 DIST akonadi-17.12.3.tar.xz 1521576 BLAKE2B 
d4809ccac14a18d922f04bf772892aaf7f43209b030880ec72d7ded662a1dd03bd768d71a30c1655a1634ad7b20f3c24c176d4da9a5beb1e9c543c256dbb4b97
 SHA512 
410b72dfa6eb3272bb8b959f7e0ba5951faef598e7c73696844bb6e33d4f5edb0bed4dc5ccea68111a7eef3c9f7a776acf8823c9a138b6af28d819ce8077595f
-DIST akonadi-18.04.3.tar.xz 1526312 BLAKE2B 
ebe174465a242d9c56e2184742aec6d0e81861c08e5787756c70b05d23746f53e177c747bcf5909cd31511fc8ca03b6a7ef7a332849a24274ef50b8f30fdfb52
 SHA512 
4d502d95c12164f3a927b7c00a19e345850e81a19ab1c40c6287a5a0328cb8f99ee512c850aa0c0149f9e91f6aa77580eefd3e502b24721e51c1ce58665c966f
+DIST akonadi-18.04.3.tar.xz 1526416 BLAKE2B 
094195355ee2906e85211bedbeb99eb4064b41a37c43d231ddec4e7295182d73fb5da6142fb123484108de0eddd79fb66c2439326cf0e1c0ea52be7a5c6d6173
 SHA512 
dc4111d2198c5ac8a11613c60e4cc330b1d337179c917354a059c3f843b218e5c465bb44ae924a9db712f985d0d044625a56634481faa474a0e92888d098e49c



[gentoo-commits] repo/gentoo:master commit in: media-plugins/calf/

2018-07-12 Thread Matt Thode
commit: 98e9390e5be9f74e9e07ee0054c6167e3e5d973f
Author: nado  troglodyte  be>
AuthorDate: Tue Jul 10 14:25:27 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul 12 18:59:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e9390e

media-plugins/calf: set $EPREFIX where needed in econf call

Closes: https://bugs.gentoo.org/660442
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Signed-off-by: Matthew Thode  gentoo.org>

 media-plugins/calf/{calf-.ebuild => calf-0.90.0-r1.ebuild} | 5 +++--
 media-plugins/calf/calf-.ebuild| 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/media-plugins/calf/calf-.ebuild 
b/media-plugins/calf/calf-0.90.0-r1.ebuild
similarity index 88%
copy from media-plugins/calf/calf-.ebuild
copy to media-plugins/calf/calf-0.90.0-r1.ebuild
index 2187ab626fd..a065b446eb2 100644
--- a/media-plugins/calf/calf-.ebuild
+++ b/media-plugins/calf/calf-0.90.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -45,9 +45,10 @@ src_configure() {
#$(use_with gtk gui)
#$(use_with jack)
econf \
+   --prefix="${EPREFIX}"/usr \
$(use_with lash) \
$(use_with lv2 lv2) \
-   $(usex lv2 "--with-lv2-dir=/usr/$(get_libdir)/lv2" "") \
+   $(usex lv2 "--with-lv2-dir=${EPREFIX}/usr/$(get_libdir)/lv2" 
"") \
$(use_enable static-libs static) \
$(use_enable cpu_flags_x86_sse sse) \
$(use_enable experimental)

diff --git a/media-plugins/calf/calf-.ebuild 
b/media-plugins/calf/calf-.ebuild
index 2187ab626fd..a065b446eb2 100644
--- a/media-plugins/calf/calf-.ebuild
+++ b/media-plugins/calf/calf-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -45,9 +45,10 @@ src_configure() {
#$(use_with gtk gui)
#$(use_with jack)
econf \
+   --prefix="${EPREFIX}"/usr \
$(use_with lash) \
$(use_with lv2 lv2) \
-   $(usex lv2 "--with-lv2-dir=/usr/$(get_libdir)/lv2" "") \
+   $(usex lv2 "--with-lv2-dir=${EPREFIX}/usr/$(get_libdir)/lv2" 
"") \
$(use_enable static-libs static) \
$(use_enable cpu_flags_x86_sse sse) \
$(use_enable experimental)



[gentoo-commits] repo/gentoo:master commit in: profiles/, media-sound/pulseeffects/

2018-07-12 Thread Matt Thode
commit: 855a1932fef7bad7f2bc0ecdfaaded3875b7e8fc
Author: nado  troglodyte  be>
AuthorDate: Tue Jul 10 17:07:02 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul 12 18:59:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=855a1932

media-sound/pulseeffects: update  version and add 4.1.3 as masked

They will be masked until glib* needed versions hit the tree (they are
found in gnome overlay for now)

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

 media-sound/pulseeffects/Manifest  |  1 +
 media-sound/pulseeffects/metadata.xml  |  6 +
 ...fects-.ebuild => pulseeffects-4.1.3.ebuild} | 30 ++---
 media-sound/pulseeffects/pulseeffects-.ebuild  | 31 +++---
 profiles/package.mask  |  5 
 5 files changed, 41 insertions(+), 32 deletions(-)

diff --git a/media-sound/pulseeffects/Manifest 
b/media-sound/pulseeffects/Manifest
index 19aa17c96e3..cab731df187 100644
--- a/media-sound/pulseeffects/Manifest
+++ b/media-sound/pulseeffects/Manifest
@@ -1,2 +1,3 @@
 DIST pulseeffects-3.1.6.tar.gz 614441 BLAKE2B 
bb7461532785cd0ab79d0f506b5b9bcfc006779776e25870ce92b4af4e7cb0f7b3bcfe9c58180e52bdb9b9be20a14644ed8622fd3cc578dd3bdf9ff173c091b6
 SHA512 
efd9871c57f4b7152e4528927c7371e225980a09acacf4fcf939c468c7cb01b94b1bbb3c94cbd8879a6b41c7c4794ed5f45035a2b185b0a09b31515c964d4722
 DIST pulseeffects-3.2.3.tar.gz 648968 BLAKE2B 
aef2aaacacc41020c5f14582c91b53ba84f3e56d7cf4a13a955769ff80796ae21cbc0ecad9b2c3e24985a6a6daf86888c3a8c6e2387b917860336e73fa8c0d6b
 SHA512 
802068c867b9708e7503e0beb65fb5aaf9ff4916b98048634a443f701864db00e5401de42ff58ed3e5fe9430af6caae74efe8f0b1b0e3e2c9d48dcb7c7e6a400
+DIST pulseeffects-4.1.3.tar.gz 721527 BLAKE2B 
616e341375aa71a209e8d5e3043b3013da037609ddbec595eec1f655c9a725e17f1c9359535aa4c6bf441af2e7943bef435340ecccbbd92c5022230697609a40
 SHA512 
416111e77a09adad9af501d4ef24482969277ac52da5d1df730995ab650e6eca46b96ec6277bada8ee8ed5bb14a09592e566d419ea19f6a87840cecdf1a79bdd

diff --git a/media-sound/pulseeffects/metadata.xml 
b/media-sound/pulseeffects/metadata.xml
index c9003b7aa9b..4f7f3990a2b 100644
--- a/media-sound/pulseeffects/metadata.xml
+++ b/media-sound/pulseeffects/metadata.xml
@@ -10,6 +10,12 @@
Jorge Pizarro Callejas
Jorgicio Gentoo Overlay

+   
+   Enable use of media-libs/libbs2b
+   Enable use of media-plugins/calf for adding 
various FX
+   Enable use of media-plugins/mda-lv2 for 
the loudness FX
+   Enable usse of media-libs/rubberband 
for the pitch shifting FX
+   

Audio effects for Pulseaudio applications


diff --git a/media-sound/pulseeffects/pulseeffects-.ebuild 
b/media-sound/pulseeffects/pulseeffects-4.1.3.ebuild
similarity index 64%
copy from media-sound/pulseeffects/pulseeffects-.ebuild
copy to media-sound/pulseeffects/pulseeffects-4.1.3.ebuild
index 94b01c50ed0..edfa01b18d1 100644
--- a/media-sound/pulseeffects/pulseeffects-.ebuild
+++ b/media-sound/pulseeffects/pulseeffects-4.1.3.ebuild
@@ -3,9 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python3_{4,5,6} )
-
-inherit gnome2-utils meson python-r1
+inherit gnome2-utils meson
 
 DESCRIPTION="Limiter, compressor, reverberation, equalizer auto volume effects 
for Pulseaudio"
 HOMEPAGE="https://github.com/wwmm/pulseeffects";
@@ -21,31 +19,29 @@ fi
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE=""
+IUSE="bs2b calf mda-lv2 rubberband"
 
 DEPEND="
-   ${PYTHON_DEPS}
-   python_targets_python3_4? ( dev-python/configparser )
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   >=dev-python/gst-python-1.12.0:1.0[${PYTHON_USEDEP}]
+   >=dev-libs/boost-1.41
+   >=dev-cpp/glibmm-2.56.0
+   >=dev-cpp/gtkmm-3.20:3.0
+   >=dev-libs/glib-2.56:2
+   >=dev-libs/libsigc++-2.10:2
>=x11-libs/gtk+-3.18:3
-   dev-python/numpy[${PYTHON_USEDEP}]
-   >=sci-libs/scipy-0.18[${PYTHON_USEDEP}]
>=media-libs/lilv-0.24.2-r1
-   >=media-plugins/calf-0.90.0[lv2]
>=media-libs/gstreamer-1.12.0:1.0
>=media-libs/gst-plugins-good-1.12.0:1.0
>=media-libs/gst-plugins-bad-1.12.0:1.0
-   >=media-plugins/gst-plugins-bs2b-1.12.0:1.0
+   bs2b? ( >=media-plugins/gst-plugins-bs2b-1.12.0:1.0 )
>=media-plugins/gst-plugins-ladspa-1.12.0:1.0
>=media-plugins/gst-plugins-lv2-1.12.0:1.0
>=media-plugins/gst-plugins-pulse-1.12.0:1.0
-   media-libs/rubberband
+   calf? ( >=media-plugins/calf-0.90.0[lv2] )
+   mda-lv2? ( media-plugins/mda-lv2 )
+   rubberband? ( media-libs/rubberband )
 "
 RDEPEND="${DEPEND}
-   media-sound/pulseaudio[equalizer]
+   media-sound/pulseaudio
 "
 
 pkg_preinst(){
@@ -55,9 +51,11 @@ pkg_preinst(){
 pkg_postinst(){

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

2018-07-12 Thread Matt Thode
commit: 6d0bfbcf4988e474a5c31ea2485501e66f95680b
Author: nado  troglodyte  be>
AuthorDate: Wed Jul 11 07:50:17 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul 12 18:59:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d0bfbcf

media-libs/lilv: add env file to ease prefix support

LV2_PATH is checked by lilv tools to find lv2 plugins
It is necessary to specify its path in prefix installs

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

 media-libs/lilv/lilv-0.24.2-r3.ebuild | 60 +++
 1 file changed, 60 insertions(+)

diff --git a/media-libs/lilv/lilv-0.24.2-r3.ebuild 
b/media-libs/lilv/lilv-0.24.2-r3.ebuild
new file mode 100644
index 000..9b5c50d8fcf
--- /dev/null
+++ b/media-libs/lilv/lilv-0.24.2-r3.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_REQ_USE='threads(+)'
+
+inherit python-any-r1 waf-utils bash-completion-r1 multilib-build 
multilib-minimal
+
+DESCRIPTION="Library to make the use of LV2 plugins as simple as possible for 
applications"
+HOMEPAGE="http://drobilla.net/software/lilv/";
+SRC_URI="http://download.drobilla.net/${P}.tar.bz2";
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~x86"
+IUSE="doc +dyn-manifest static-libs test"
+
+RDEPEND=">=media-libs/lv2-1.14.0-r1[${MULTILIB_USEDEP}]
+   >=media-libs/sratom-0.6.0-r1[${MULTILIB_USEDEP}]
+   >=dev-libs/serd-0.28.0-r1[${MULTILIB_USEDEP}]
+   >=dev-libs/sord-0.16.0-r1[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
+   doc? ( app-doc/doxygen )
+   virtual/pkgconfig[${MULTILIB_USEDEP}]"
+
+DOCS=( "AUTHORS" "NEWS" "README" )
+
+src_prepare() {
+   eapply "${FILESDIR}/includedir.patch"
+   sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
+   default
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   waf-utils_src_configure \
+   --docdir="${EPREFIX}"/usr/share/doc/${PF} \
+   --no-bash-completion \
+   $(multilib_native_usex doc --docs "") \
+   $(usex test --test "") \
+   $(usex static-libs --static "") \
+   $(usex dyn-manifest --dyn-manifest "")
+}
+
+multilib_src_test() {
+   ./waf test || die
+}
+
+multilib_src_install() {
+   waf-utils_src_install
+}
+
+multilib_src_install_all() {
+   newbashcomp utils/lilv.bash_completion ${PN}
+   dodir /etc/env.d
+   echo "LV2_PATH=${EPREFIX}/usr/$(get_libdir)/lv2" > 
"${ED}/etc/env.d/60lv2"
+}



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

2018-07-12 Thread Matt Thode
commit: 7c6ee748e42214ab4f44a886227d334d2c3d5610
Author: nado  troglodyte  be>
AuthorDate: Wed Jul 11 08:19:15 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul 12 18:59:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c6ee748

media-libs/rubberband: fix prefix support and switch to eapi 7

Closes: https://bugs.gentoo.org/660592
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Signed-off-by: Matthew Thode  gentoo.org>

 media-libs/rubberband/rubberband-1.8.1-r2.ebuild | 46 
 1 file changed, 46 insertions(+)

diff --git a/media-libs/rubberband/rubberband-1.8.1-r2.ebuild 
b/media-libs/rubberband/rubberband-1.8.1-r2.ebuild
new file mode 100644
index 000..a2ccff636e6
--- /dev/null
+++ b/media-libs/rubberband/rubberband-1.8.1-r2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit multilib multilib-minimal
+
+DESCRIPTION="An audio time-stretching and pitch-shifting library and utility 
program"
+HOMEPAGE="https://www.breakfastquay.com/rubberband/";
+SRC_URI="https://code.breakfastquay.com/attachments/download/34/${P}.tar.bz2";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="static-libs"
+
+RDEPEND="media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}]
+   media-libs/libsamplerate[${MULTILIB_USEDEP}]
+   media-libs/libsndfile
+   media-libs/ladspa-sdk
+   sci-libs/fftw:3.0[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   if ! use static-libs ; then
+   sed -e '/^all:/s/$(STATIC_TARGET)//' \
+   -e '/^\tcp $(STATIC_TARGET)/d' \
+   -i Makefile.in || die
+   fi
+   multilib_copy_sources
+}
+
+multilib_src_install() {
+   emake INSTALL_BINDIR="${ED}/usr/bin" \
+   INSTALL_INCDIR="${ED}/usr/include/rubberband" \
+   INSTALL_LIBDIR="${ED}/usr/$(get_libdir)" \
+   INSTALL_VAMPDIR="${ED}/usr/$(get_libdir)/vamp" \
+   INSTALL_LADSPADIR="${ED}/usr/$(get_libdir)/ladspa" \
+   INSTALL_LRDFDIR="${ED}/usr/share/ladspa/rdf" \
+   INSTALL_PKGDIR="${ED}/usr/$(get_libdir)/pkgconfig" \
+   install
+}
+
+multilib_src_install_all() {
+   dodoc CHANGELOG README.txt
+}



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/language-docker/

2018-07-12 Thread Manuel Rüger
commit: 51b2260ff5857a5a0519371afd4aaecca93f4f58
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 12 18:57:23 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 12 18:57:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51b2260f

dev-haskell/language-docker: Version bump to 6.0.3

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-haskell/language-docker/Manifest   |  1 +
 .../language-docker/language-docker-6.0.3.ebuild   | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/dev-haskell/language-docker/Manifest 
b/dev-haskell/language-docker/Manifest
index 09cb5078c2f..89cced20089 100644
--- a/dev-haskell/language-docker/Manifest
+++ b/dev-haskell/language-docker/Manifest
@@ -1,2 +1,3 @@
 DIST language-docker-2.0.1.tar.gz 31658 BLAKE2B 
d2f4ed51db1f6367ccb53aafc25e7473d4b7b1cf1b0d4f4e0692ca5db4b2f245ade1b80b37f9989c0a50be6b76996107c1b8e06024981e68ed1c9d96fb2f209d
 SHA512 
f716f99dc23bf9e0de68e658330ee90befb3724a53ae97604c9a8369535db679dd9a5851c2961996619f4a3cf3ea462df487063a3e08afff7cd0c47538fc624a
 DIST language-docker-6.0.1.tar.gz 33814 BLAKE2B 
eea7d16895774435ed4b6dee3df48acaf032a289b70d9ac00efa057cb3d947c6de64df5b8e60cb4ae4f876e26091d40df78469dcbb2e3e9d54969aa7280c3ef7
 SHA512 
a50675309b177d2e2ba305046ba60cb0f9a071cc27c1483d9d244ab89c747be5a7ba022579cca94689e623210e2f518df0e59c05ffca3a386a18e981f4971cf8
+DIST language-docker-6.0.3.tar.gz 34438 BLAKE2B 
1d324b1519583c4feec1d9dd132c977e3fed1d6dd2d8fef7e4a9dc15dc1a294294eaa0831cb97bbb2d22d0bf178195ba0e834e262d1ed3fcd4d9b118a3b474db
 SHA512 
912f24db37cc2f2feac74fe89205e4538d4bae6426cf626cd090a7d38e451331db43f69e87c58b9f168145a4b0f5d90b203fac2c5165c834729099d6b47bc242

diff --git a/dev-haskell/language-docker/language-docker-6.0.3.ebuild 
b/dev-haskell/language-docker/language-docker-6.0.3.ebuild
new file mode 100644
index 000..2692f026147
--- /dev/null
+++ b/dev-haskell/language-docker/language-docker-6.0.3.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# ebuild generated by hackport 0.5.5
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Dockerfile parser, pretty-printer and embedded DSL"
+HOMEPAGE="https://github.com/hadolint/language-docker#readme";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-haskell/free:=[profile?]
+   >=dev-haskell/megaparsec-6.4:=[profile?]
+   dev-haskell/mtl:=[profile?]
+   dev-haskell/prettyprinter:=[profile?]
+   >=dev-haskell/split-0.2:=[profile?]
+   dev-haskell/text:=[profile?]
+   dev-haskell/th-lift:=[profile?]
+   >=dev-lang/ghc-7.10.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.22.2.0
+   test? ( dev-haskell/glob
+   dev-haskell/hspec
+   >=dev-haskell/hunit-1.2
+   dev-haskell/quickcheck )
+"



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

2018-07-12 Thread Michał Górny
commit: 7f0bc5352d15fbfb40016af997a8d200ea8d6f05
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 15:18:10 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 18:49:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f0bc535

dev-python/sphinx: Remove unnecessary pytest-cov dep

 dev-python/sphinx/sphinx-1.7.5-r1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/sphinx/sphinx-1.7.5-r1.ebuild 
b/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
index b3a122f0e25..1b87b472641 100644
--- a/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
+++ b/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
@@ -50,7 +50,6 @@ DEPEND="${RDEPEND}
dev-python/html5lib[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/simplejson[${PYTHON_USEDEP}]
>=dev-python/sqlalchemy-0.9[${PYTHON_USEDEP}]
>=dev-python/whoosh-2.0[${PYTHON_USEDEP}]



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

2018-07-12 Thread Michał Górny
commit: 27c6357e8da239117e053c45e378f93025742bc3
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 15:33:49 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 18:49:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27c6357e

dev-python/sphinx: Disable test_theme_api due to fragility

Disable test_theme_api as it fails whenever additional Sphinx themes
are installed.

 dev-python/sphinx/sphinx-1.7.5-r1.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-python/sphinx/sphinx-1.7.5-r1.ebuild 
b/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
index 1b87b472641..fc0dcb5a942 100644
--- a/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
+++ b/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
@@ -64,6 +64,9 @@ python_prepare_all() {
rm tests/test_websupport.py || die "Failed to remove web tests"
rm tests/test_build_linkcheck.py || die "Failed to remove web tests"
 
+   # fails when additional sphinx themes are installed
+   sed -i -e 's:test_theme_api:_&:' tests/test_theming.py || die
+
distutils-r1_python_prepare_all
 }
 



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

2018-07-12 Thread Michał Górny
commit: aa6fd714174d4291c3704bcf0e1f944560176348
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 18:36:45 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 18:49:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa6fd714

dev-python/sphinx: Make python_test() simpler

 dev-python/sphinx/sphinx-1.7.5-r1.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-python/sphinx/sphinx-1.7.5-r1.ebuild 
b/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
index b39431a75c0..86a61f664a7 100644
--- a/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
+++ b/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
@@ -93,7 +93,5 @@ python_compile_all() {
 python_test() {
mkdir -p "${BUILD_DIR}/sphinx_tempdir" || die
local -x SPHINX_TEST_TEMPDIR="${BUILD_DIR}/sphinx_tempdir"
-   cp -r -l tests "${BUILD_DIR}"/ || die "Failed to copy tests"
-   cp Makefile "${BUILD_DIR}"/ || die "Failed to copy Makefile"
-   emake test
+   py.test -vv || die "Tests fail with ${EPYTHON}"
 }



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

2018-07-12 Thread Michał Górny
commit: e8061747c0d415d3bd314566c3a78a8f9dd22050
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 16:02:40 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 18:49:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8061747

dev-python/sphinx: Disable test_latex_remote_images due to network

 dev-python/sphinx/sphinx-1.7.5-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/sphinx/sphinx-1.7.5-r1.ebuild 
b/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
index fc0dcb5a942..b39431a75c0 100644
--- a/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
+++ b/dev-python/sphinx/sphinx-1.7.5-r1.ebuild
@@ -63,6 +63,7 @@ python_prepare_all() {
# remove tests that fail due to network-sandbox
rm tests/test_websupport.py || die "Failed to remove web tests"
rm tests/test_build_linkcheck.py || die "Failed to remove web tests"
+   sed -i -e 's:test_latex_remote_images:_&:' tests/test_build_latex.py || 
die
 
# fails when additional sphinx themes are installed
sed -i -e 's:test_theme_api:_&:' tests/test_theming.py || die



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

2018-07-12 Thread Andreas Sturmlechner
commit: d2717a8b870bf24888080b59cb19909a6aa5db56
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jul 12 17:44:13 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jul 12 17:44:13 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d2717a8b

kde5.eclass: Mark KDE Applications 18.04.3 as released

 eclass/kde5.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 780789ec14..454e3364eb 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -157,7 +157,7 @@ fi
 # An array of $CATEGORY-$PV pairs of packages that are unreleased upstream.
 # Any package matching this will have fetch restriction enabled, and receive
 # a proper error message via pkg_nofetch.
-KDE_UNRELEASED=( kde-frameworks-5.48.0 kde-apps-18.04.3 )
+KDE_UNRELEASED=( kde-frameworks-5.48.0 )
 
 if [[ ${KDEBASE} = kdevelop ]]; then
HOMEPAGE="https://www.kdevelop.org/";



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

2018-07-12 Thread Andreas Sturmlechner
commit: e65f4708d2d87df10ca1b7e5c8a67458f406a668
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jul 12 17:48:29 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jul 12 17:48:29 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e65f4708

profiles: Drop obsolete kde-apps-18.04.3 package.mask

 profiles/package.mask/kde-apps-18.04.3 | 232 -
 1 file changed, 232 deletions(-)

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

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

2018-07-12 Thread Matt Thode
commit: 5053c5e0182c5b2d9cf90663ed3b51dd16b675d8
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Jul 12 17:42:40 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul 12 17:43:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5053c5e0

app-crypt/certbot-nginx: 0.26.0 bup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-crypt/certbot-nginx/Manifest  | 1 +
 .../{certbot-nginx-.ebuild => certbot-nginx-0.26.0.ebuild}| 4 ++--
 app-crypt/certbot-nginx/certbot-nginx-.ebuild | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/app-crypt/certbot-nginx/Manifest b/app-crypt/certbot-nginx/Manifest
index 525cf0382fb..f580cd62968 100644
--- a/app-crypt/certbot-nginx/Manifest
+++ b/app-crypt/certbot-nginx/Manifest
@@ -2,3 +2,4 @@ DIST certbot-0.23.0.tar.gz 118 BLAKE2B 
820c4e3a0245a4ccda90884e38093d4f95ebf
 DIST certbot-0.24.0.tar.gz 1149694 BLAKE2B 
7c57d59ced97de77e0f98eb11a2bba418ee81ba0eb4506ebc010cb0060c92820617ba2a3464dd398bfec6dc86f4c2dc8e22461d76ae51ccfbb97afab3bbb3681
 SHA512 
b067da7eea54deb72ff4b516382cbe480ffebcb378489a2b0c52955f7399401d936d8d6587d88473d6f4fa9e864de94514941bde9727a5babbf2d6211ea61b20
 DIST certbot-0.25.0.tar.gz 1163858 BLAKE2B 
9439b253a505f3cfb25f4ca33e6745b53ac51514dc34b31dd234c8db7dd07b9cb47b0a7edcc565dd7dee4678d0edd99590d2f235fedb77193e8ad1f0459c6b7a
 SHA512 
af0f2498d79e9d54f0609b21b8ec40efe9fbcfa5162eb18bbb8b10cc230b31db6af81c4e85af243d92c527efc55634402b30960d014085f6e6af6e679ca75592
 DIST certbot-0.25.1.tar.gz 1160526 BLAKE2B 
2dd2196c5986d5f5fe59f711589b6c3393d9c4183febb7048eab0b85e033f81d5c7ff12d7fea3aa69585308f5a4984143e431047fee73b42b16bd49e1cd2d14f
 SHA512 
6395baa33acb4cf9e953294ddb07694ffa1e76424e12114db8df0f64fb3f1872c3145b02d853c139183b2b708d40d236f91d356eb9ecca447f577bd725fee6e5
+DIST certbot-0.26.0.tar.gz 1236499 BLAKE2B 
ea276f8b0fd4c7c6ce59acdcd3829d45d06ee31ac317bd846083da8ab105ae9357eaafd81992e1493c4965a95a70ee71f2d41875ca7e8c0613cbe44eeb3dffa5
 SHA512 
19f689d5b8724c6e7aa1539808b1b60913ad0f4a9272ebf6f40115028cef3cb49d9416239e104f125ed549c15e2a032935d0d2da1866548d0a177ef70608dce1

diff --git a/app-crypt/certbot-nginx/certbot-nginx-.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-0.26.0.ebuild
similarity index 91%
copy from app-crypt/certbot-nginx/certbot-nginx-.ebuild
copy to app-crypt/certbot-nginx/certbot-nginx-0.26.0.ebuild
index dd9e6e8b437..bda8ab5ae6d 100644
--- a/app-crypt/certbot-nginx/certbot-nginx-.ebuild
+++ b/app-crypt/certbot-nginx/certbot-nginx-0.26.0.ebuild
@@ -25,8 +25,8 @@ IUSE=""
 
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="${CDEPEND}
-   >=app-crypt/certbot-0.21.1[${PYTHON_USEDEP}]
-   >=app-crypt/acme-0.21.1[${PYTHON_USEDEP}]
+   >=app-crypt/certbot-0.22.0[${PYTHON_USEDEP}]
+   >=app-crypt/acme-0.25.0[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
>=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}]

diff --git a/app-crypt/certbot-nginx/certbot-nginx-.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-.ebuild
index dd9e6e8b437..bda8ab5ae6d 100644
--- a/app-crypt/certbot-nginx/certbot-nginx-.ebuild
+++ b/app-crypt/certbot-nginx/certbot-nginx-.ebuild
@@ -25,8 +25,8 @@ IUSE=""
 
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="${CDEPEND}
-   >=app-crypt/certbot-0.21.1[${PYTHON_USEDEP}]
-   >=app-crypt/acme-0.21.1[${PYTHON_USEDEP}]
+   >=app-crypt/certbot-0.22.0[${PYTHON_USEDEP}]
+   >=app-crypt/acme-0.25.0[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
>=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}]



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

2018-07-12 Thread Matt Thode
commit: a2a5a7f9a25ef688ea569afb1f52c261234b55e6
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Jul 12 17:40:44 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul 12 17:43:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2a5a7f9

app-crypt/certbot-apache: 0.26.0 bup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-crypt/certbot-apache/Manifest | 1 +
 .../{certbot-apache-.ebuild => certbot-apache-0.26.0.ebuild}  | 4 ++--
 app-crypt/certbot-apache/certbot-apache-.ebuild   | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/app-crypt/certbot-apache/Manifest 
b/app-crypt/certbot-apache/Manifest
index 525cf0382fb..f580cd62968 100644
--- a/app-crypt/certbot-apache/Manifest
+++ b/app-crypt/certbot-apache/Manifest
@@ -2,3 +2,4 @@ DIST certbot-0.23.0.tar.gz 118 BLAKE2B 
820c4e3a0245a4ccda90884e38093d4f95ebf
 DIST certbot-0.24.0.tar.gz 1149694 BLAKE2B 
7c57d59ced97de77e0f98eb11a2bba418ee81ba0eb4506ebc010cb0060c92820617ba2a3464dd398bfec6dc86f4c2dc8e22461d76ae51ccfbb97afab3bbb3681
 SHA512 
b067da7eea54deb72ff4b516382cbe480ffebcb378489a2b0c52955f7399401d936d8d6587d88473d6f4fa9e864de94514941bde9727a5babbf2d6211ea61b20
 DIST certbot-0.25.0.tar.gz 1163858 BLAKE2B 
9439b253a505f3cfb25f4ca33e6745b53ac51514dc34b31dd234c8db7dd07b9cb47b0a7edcc565dd7dee4678d0edd99590d2f235fedb77193e8ad1f0459c6b7a
 SHA512 
af0f2498d79e9d54f0609b21b8ec40efe9fbcfa5162eb18bbb8b10cc230b31db6af81c4e85af243d92c527efc55634402b30960d014085f6e6af6e679ca75592
 DIST certbot-0.25.1.tar.gz 1160526 BLAKE2B 
2dd2196c5986d5f5fe59f711589b6c3393d9c4183febb7048eab0b85e033f81d5c7ff12d7fea3aa69585308f5a4984143e431047fee73b42b16bd49e1cd2d14f
 SHA512 
6395baa33acb4cf9e953294ddb07694ffa1e76424e12114db8df0f64fb3f1872c3145b02d853c139183b2b708d40d236f91d356eb9ecca447f577bd725fee6e5
+DIST certbot-0.26.0.tar.gz 1236499 BLAKE2B 
ea276f8b0fd4c7c6ce59acdcd3829d45d06ee31ac317bd846083da8ab105ae9357eaafd81992e1493c4965a95a70ee71f2d41875ca7e8c0613cbe44eeb3dffa5
 SHA512 
19f689d5b8724c6e7aa1539808b1b60913ad0f4a9272ebf6f40115028cef3cb49d9416239e104f125ed549c15e2a032935d0d2da1866548d0a177ef70608dce1

diff --git a/app-crypt/certbot-apache/certbot-apache-.ebuild 
b/app-crypt/certbot-apache/certbot-apache-0.26.0.ebuild
similarity index 90%
copy from app-crypt/certbot-apache/certbot-apache-.ebuild
copy to app-crypt/certbot-apache/certbot-apache-0.26.0.ebuild
index 2f2c9cd3e8a..ab98ef4612c 100644
--- a/app-crypt/certbot-apache/certbot-apache-.ebuild
+++ b/app-crypt/certbot-apache/certbot-apache-0.26.0.ebuild
@@ -23,8 +23,8 @@ LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="test"
 
-RDEPEND=">=app-crypt/certbot-0.21.1[${PYTHON_USEDEP}]
-   >=app-crypt/acme-0.21.1[${PYTHON_USEDEP}]
+RDEPEND=">=app-crypt/certbot-0.26.0[${PYTHON_USEDEP}]
+   >=app-crypt/acme-0.25.0[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/python-augeas[${PYTHON_USEDEP}]
dev-python/zope-component[${PYTHON_USEDEP}]

diff --git a/app-crypt/certbot-apache/certbot-apache-.ebuild 
b/app-crypt/certbot-apache/certbot-apache-.ebuild
index 2f2c9cd3e8a..ab98ef4612c 100644
--- a/app-crypt/certbot-apache/certbot-apache-.ebuild
+++ b/app-crypt/certbot-apache/certbot-apache-.ebuild
@@ -23,8 +23,8 @@ LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="test"
 
-RDEPEND=">=app-crypt/certbot-0.21.1[${PYTHON_USEDEP}]
-   >=app-crypt/acme-0.21.1[${PYTHON_USEDEP}]
+RDEPEND=">=app-crypt/certbot-0.26.0[${PYTHON_USEDEP}]
+   >=app-crypt/acme-0.25.0[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/python-augeas[${PYTHON_USEDEP}]
dev-python/zope-component[${PYTHON_USEDEP}]



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

2018-07-12 Thread Matt Thode
commit: a43f9c002ee6765821cae5196cb309e3510b9e32
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Jul 12 17:37:22 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul 12 17:43:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a43f9c00

app-crypt/certbot: 0.26.0 bup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-crypt/certbot/Manifest   | 1 +
 app-crypt/certbot/{certbot-.ebuild => certbot-0.26.0.ebuild} | 2 +-
 app-crypt/certbot/certbot-.ebuild| 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
index 525cf0382fb..f580cd62968 100644
--- a/app-crypt/certbot/Manifest
+++ b/app-crypt/certbot/Manifest
@@ -2,3 +2,4 @@ DIST certbot-0.23.0.tar.gz 118 BLAKE2B 
820c4e3a0245a4ccda90884e38093d4f95ebf
 DIST certbot-0.24.0.tar.gz 1149694 BLAKE2B 
7c57d59ced97de77e0f98eb11a2bba418ee81ba0eb4506ebc010cb0060c92820617ba2a3464dd398bfec6dc86f4c2dc8e22461d76ae51ccfbb97afab3bbb3681
 SHA512 
b067da7eea54deb72ff4b516382cbe480ffebcb378489a2b0c52955f7399401d936d8d6587d88473d6f4fa9e864de94514941bde9727a5babbf2d6211ea61b20
 DIST certbot-0.25.0.tar.gz 1163858 BLAKE2B 
9439b253a505f3cfb25f4ca33e6745b53ac51514dc34b31dd234c8db7dd07b9cb47b0a7edcc565dd7dee4678d0edd99590d2f235fedb77193e8ad1f0459c6b7a
 SHA512 
af0f2498d79e9d54f0609b21b8ec40efe9fbcfa5162eb18bbb8b10cc230b31db6af81c4e85af243d92c527efc55634402b30960d014085f6e6af6e679ca75592
 DIST certbot-0.25.1.tar.gz 1160526 BLAKE2B 
2dd2196c5986d5f5fe59f711589b6c3393d9c4183febb7048eab0b85e033f81d5c7ff12d7fea3aa69585308f5a4984143e431047fee73b42b16bd49e1cd2d14f
 SHA512 
6395baa33acb4cf9e953294ddb07694ffa1e76424e12114db8df0f64fb3f1872c3145b02d853c139183b2b708d40d236f91d356eb9ecca447f577bd725fee6e5
+DIST certbot-0.26.0.tar.gz 1236499 BLAKE2B 
ea276f8b0fd4c7c6ce59acdcd3829d45d06ee31ac317bd846083da8ab105ae9357eaafd81992e1493c4965a95a70ee71f2d41875ca7e8c0613cbe44eeb3dffa5
 SHA512 
19f689d5b8724c6e7aa1539808b1b60913ad0f4a9272ebf6f40115028cef3cb49d9416239e104f125ed549c15e2a032935d0d2da1866548d0a177ef70608dce1

diff --git a/app-crypt/certbot/certbot-.ebuild 
b/app-crypt/certbot/certbot-0.26.0.ebuild
similarity index 97%
copy from app-crypt/certbot/certbot-.ebuild
copy to app-crypt/certbot/certbot-0.26.0.ebuild
index f21b72555c8..cf9f45f6fe8 100644
--- a/app-crypt/certbot/certbot-.ebuild
+++ b/app-crypt/certbot/certbot-0.26.0.ebuild
@@ -24,7 +24,7 @@ IUSE="test"
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="
${CDEPEND}
-   >app-crypt/acme-0.21.1[${PYTHON_USEDEP}]
+   >app-crypt/acme-0.24.0[${PYTHON_USEDEP}]
>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.2[${PYTHON_USEDEP}]

diff --git a/app-crypt/certbot/certbot-.ebuild 
b/app-crypt/certbot/certbot-.ebuild
index f21b72555c8..cf9f45f6fe8 100644
--- a/app-crypt/certbot/certbot-.ebuild
+++ b/app-crypt/certbot/certbot-.ebuild
@@ -24,7 +24,7 @@ IUSE="test"
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="
${CDEPEND}
-   >app-crypt/acme-0.21.1[${PYTHON_USEDEP}]
+   >app-crypt/acme-0.24.0[${PYTHON_USEDEP}]
>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.2[${PYTHON_USEDEP}]



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

2018-07-12 Thread Matt Thode
commit: 0cb196bb118a4958a86d78604341e104389b2b9c
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Jul 12 17:43:29 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul 12 17:43:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb196bb

app-crypt/certbot: fixing acme dep

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-crypt/certbot/certbot-0.26.0.ebuild | 2 +-
 app-crypt/certbot/certbot-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-crypt/certbot/certbot-0.26.0.ebuild 
b/app-crypt/certbot/certbot-0.26.0.ebuild
index cf9f45f6fe8..021424b910a 100644
--- a/app-crypt/certbot/certbot-0.26.0.ebuild
+++ b/app-crypt/certbot/certbot-0.26.0.ebuild
@@ -24,7 +24,7 @@ IUSE="test"
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="
${CDEPEND}
-   >app-crypt/acme-0.24.0[${PYTHON_USEDEP}]
+   >app-crypt/acme-0.25.0[${PYTHON_USEDEP}]
>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.2[${PYTHON_USEDEP}]

diff --git a/app-crypt/certbot/certbot-.ebuild 
b/app-crypt/certbot/certbot-.ebuild
index cf9f45f6fe8..021424b910a 100644
--- a/app-crypt/certbot/certbot-.ebuild
+++ b/app-crypt/certbot/certbot-.ebuild
@@ -24,7 +24,7 @@ IUSE="test"
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="
${CDEPEND}
-   >app-crypt/acme-0.24.0[${PYTHON_USEDEP}]
+   >app-crypt/acme-0.25.0[${PYTHON_USEDEP}]
>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
>=dev-python/cryptography-1.2[${PYTHON_USEDEP}]



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

2018-07-12 Thread Matt Thode
commit: 8fde6c06669467fd640cad27feab7e654f8ec645
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Jul 12 17:29:30 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Thu Jul 12 17:43:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fde6c06

app-crypt/acme: 0.26.0 bup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-crypt/acme/Manifest   |  1 +
 app-crypt/acme/acme-0.26.0.ebuild | 48 +++
 2 files changed, 49 insertions(+)

diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
index 525cf0382fb..f580cd62968 100644
--- a/app-crypt/acme/Manifest
+++ b/app-crypt/acme/Manifest
@@ -2,3 +2,4 @@ DIST certbot-0.23.0.tar.gz 118 BLAKE2B 
820c4e3a0245a4ccda90884e38093d4f95ebf
 DIST certbot-0.24.0.tar.gz 1149694 BLAKE2B 
7c57d59ced97de77e0f98eb11a2bba418ee81ba0eb4506ebc010cb0060c92820617ba2a3464dd398bfec6dc86f4c2dc8e22461d76ae51ccfbb97afab3bbb3681
 SHA512 
b067da7eea54deb72ff4b516382cbe480ffebcb378489a2b0c52955f7399401d936d8d6587d88473d6f4fa9e864de94514941bde9727a5babbf2d6211ea61b20
 DIST certbot-0.25.0.tar.gz 1163858 BLAKE2B 
9439b253a505f3cfb25f4ca33e6745b53ac51514dc34b31dd234c8db7dd07b9cb47b0a7edcc565dd7dee4678d0edd99590d2f235fedb77193e8ad1f0459c6b7a
 SHA512 
af0f2498d79e9d54f0609b21b8ec40efe9fbcfa5162eb18bbb8b10cc230b31db6af81c4e85af243d92c527efc55634402b30960d014085f6e6af6e679ca75592
 DIST certbot-0.25.1.tar.gz 1160526 BLAKE2B 
2dd2196c5986d5f5fe59f711589b6c3393d9c4183febb7048eab0b85e033f81d5c7ff12d7fea3aa69585308f5a4984143e431047fee73b42b16bd49e1cd2d14f
 SHA512 
6395baa33acb4cf9e953294ddb07694ffa1e76424e12114db8df0f64fb3f1872c3145b02d853c139183b2b708d40d236f91d356eb9ecca447f577bd725fee6e5
+DIST certbot-0.26.0.tar.gz 1236499 BLAKE2B 
ea276f8b0fd4c7c6ce59acdcd3829d45d06ee31ac317bd846083da8ab105ae9357eaafd81992e1493c4965a95a70ee71f2d41875ca7e8c0613cbe44eeb3dffa5
 SHA512 
19f689d5b8724c6e7aa1539808b1b60913ad0f4a9272ebf6f40115028cef3cb49d9416239e104f125ed549c15e2a032935d0d2da1866548d0a177ef70608dce1

diff --git a/app-crypt/acme/acme-0.26.0.ebuild 
b/app-crypt/acme/acme-0.26.0.ebuild
new file mode 100644
index 000..7c82dc6d67c
--- /dev/null
+++ b/app-crypt/acme/acme-0.26.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/certbot/certbot.git";
+   inherit git-r3
+   S=${WORKDIR}/${P}/${PN}
+else
+   SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+   S=${WORKDIR}/certbot-${PV}/acme
+fi
+
+inherit distutils-r1
+
+DESCRIPTION="An implementation of the ACME protocol"
+HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/";
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/cryptography-0.8[${PYTHON_USEDEP}]
+   >=dev-python/josepy-1.0.0[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
+   dev-python/pyrfc3339[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.10[${PYTHON_USEDEP}]
+   >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}]
+   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   test? (
+   ${RDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
+"
+
+python_test() {
+   nosetests -w ${PN} || die
+}



[gentoo-commits] proj/hardened-refpolicy: New tag: 2.20180701-r1

2018-07-12 Thread Jason Zaman
commit: 
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Jul 12 17:18:34 2018 +

New tag: 2.20180701-r1




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

2018-07-12 Thread Patrick McLean
commit: 7ee58890bab8f471af541f73f29eb69969666031
Author: Patrick McLean  gentoo  org>
AuthorDate: Thu Jul 12 16:50:59 2018 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Thu Jul 12 16:50:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ee58890

profiles/arch/amd64/x32: add >=ceph-13 to package.mask since it requres nodejs

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

diff --git a/profiles/arch/amd64/x32/package.mask 
b/profiles/arch/amd64/x32/package.mask
index 144142b62ad..7c318aca470 100644
--- a/profiles/arch/amd64/x32/package.mask
+++ b/profiles/arch/amd64/x32/package.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Patrick McLean  (12 Jul 2018)
+# requires nodejs
+>=sys-cluster/ceph-13
+
 # Michał Górny  (15 Apr 2018)
 # Broken multilib dependencies.
 net-im/mattermost-desktop-bin



[gentoo-commits] proj/releng:master commit in: releases/weekly/portage/stages/package.use/releng/

2018-07-12 Thread Jorge Manuel B. S. Vicetto
commit: 32143328004837f7851642674a7104103ca57c0b
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto)  gentoo 
 org>
AuthorDate: Thu Jul 12 16:31:18 2018 +
Commit: Jorge Manuel B. S. Vicetto  gentoo  org>
CommitDate: Thu Jul 12 16:31:18 2018 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=32143328

Add jit use flag for dev-libs/libpcre2 as required by dev-vcs/git.

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto)  
gentoo.org>

 releases/weekly/portage/stages/package.use/releng/libpcre | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/releases/weekly/portage/stages/package.use/releng/libpcre 
b/releases/weekly/portage/stages/package.use/releng/libpcre
index 0d6ae284..a41c73f5 100644
--- a/releases/weekly/portage/stages/package.use/releng/libpcre
+++ b/releases/weekly/portage/stages/package.use/releng/libpcre
@@ -1,2 +1,5 @@
 # required by sys-libs/libselinux-2.7
 dev-libs/libpcre static-libs
+
+# required by dev-vcs/git
+dev-libs/Libpcre2 jit



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

2018-07-12 Thread Alice Ferrazzi
commit: e1fcb68e8d5eb61104e48066cba22e26cb029384
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Thu Jul 12 16:21:45 2018 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Thu Jul 12 16:21:45 2018 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=e1fcb68e

linux kernel 4.4.140

 _README  |4 +
 1138_linux-4.4.140.patch | 1823 ++
 2 files changed, 1827 insertions(+)

diff --git a/_README b/_README
index cfb7ea3..73e6c56 100644
--- a/_README
+++ b/_README
@@ -599,6 +599,10 @@ Patch:  1138_linux-4.4.139.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.4.139
 
+Patch:  1139_linux-4.4.140.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.4.140
+
 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/1138_linux-4.4.140.patch b/1138_linux-4.4.140.patch
new file mode 100644
index 000..a2e3d0e
--- /dev/null
+++ b/1138_linux-4.4.140.patch
@@ -0,0 +1,1823 @@
+diff --git a/Makefile b/Makefile
+index 20a11fd36656..b842298a5970 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 4
+-SUBLEVEL = 139
++SUBLEVEL = 140
+ EXTRAVERSION =
+ NAME = Blurry Fish Butt
+ 
+diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi
+index 399103b8e2c9..c81fb8fdc41f 100644
+--- a/arch/arm/boot/dts/imx6q.dtsi
 b/arch/arm/boot/dts/imx6q.dtsi
+@@ -95,7 +95,7 @@
+   clocks = <&clks IMX6Q_CLK_ECSPI5>,
+<&clks IMX6Q_CLK_ECSPI5>;
+   clock-names = "ipg", "per";
+-  dmas = <&sdma 11 7 1>, <&sdma 12 7 2>;
++  dmas = <&sdma 11 8 1>, <&sdma 12 8 2>;
+   dma-names = "rx", "tx";
+   status = "disabled";
+   };
+diff --git a/arch/s390/kernel/entry.S b/arch/s390/kernel/entry.S
+index 5416d5d68308..4cad1adff16b 100644
+--- a/arch/s390/kernel/entry.S
 b/arch/s390/kernel/entry.S
+@@ -1170,7 +1170,7 @@ cleanup_critical:
+   jl  0f
+   clg %r9,BASED(.Lcleanup_table+104)  # .Lload_fpu_regs_end
+   jl  .Lcleanup_load_fpu_regs
+-0:BR_EX   %r14
++0:BR_EX   %r14,%r11
+ 
+   .align  8
+ .Lcleanup_table:
+@@ -1200,7 +1200,7 @@ cleanup_critical:
+   ni  __SIE_PROG0C+3(%r9),0xfe# no longer in SIE
+   lctlg   %c1,%c1,__LC_USER_ASCE  # load primary asce
+   larl%r9,sie_exit# skip forward to sie_exit
+-  BR_EX   %r14
++  BR_EX   %r14,%r11
+ #endif
+ 
+ .Lcleanup_system_call:
+diff --git a/arch/x86/kernel/cpu/mcheck/mce.c 
b/arch/x86/kernel/cpu/mcheck/mce.c
+index 6edb9530d7e9..ddc9b8125918 100644
+--- a/arch/x86/kernel/cpu/mcheck/mce.c
 b/arch/x86/kernel/cpu/mcheck/mce.c
+@@ -980,11 +980,12 @@ void do_machine_check(struct pt_regs *regs, long 
error_code)
+   int i;
+   int worst = 0;
+   int severity;
++
+   /*
+* Establish sequential order between the CPUs entering the machine
+* check handler.
+*/
+-  int order;
++  int order = -1;
+   /*
+* If no_way_out gets set, there is no safe way to recover from this
+* MCE.  If mca_cfg.tolerant is cranked up, we'll try anyway.
+@@ -1000,7 +1001,12 @@ void do_machine_check(struct pt_regs *regs, long 
error_code)
+   char *msg = "Unknown";
+   u64 recover_paddr = ~0ull;
+   int flags = MF_ACTION_REQUIRED;
+-  int lmce = 0;
++
++  /*
++   * MCEs are always local on AMD. Same is determined by MCG_STATUS_LMCES
++   * on Intel.
++   */
++  int lmce = 1;
+ 
+   /* If this CPU is offline, just bail out. */
+   if (cpu_is_offline(smp_processor_id())) {
+@@ -1039,17 +1045,23 @@ void do_machine_check(struct pt_regs *regs, long 
error_code)
+   kill_it = 1;
+ 
+   /*
+-   * Check if this MCE is signaled to only this logical processor
++   * Check if this MCE is signaled to only this logical processor,
++   * on Intel only.
+*/
+-  if (m.mcgstatus & MCG_STATUS_LMCES)
+-  lmce = 1;
+-  else {
+-  /*
+-   * Go through all the banks in exclusion of the other CPUs.
+-   * This way we don't report duplicated events on shared banks
+-   * because the first one to see it will clear it.
+-   * If this is a Local MCE, then no need to perform rendezvous.
+-   */
++  if (m.cpuvendor == X86_VENDOR_INTEL)
++  lmce = m.mcgstatus & MCG_STATUS_LMCES;
++
++  /*
++   * Local machine check may already know that we have to panic.
++   * Broadcast machine check begins rendezvous in mce_start()
++   * Go throug

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

2018-07-12 Thread Alice Ferrazzi
commit: 32f66598fb88f44b4784c0d5aa7bfda90389e1ef
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Thu Jul 12 16:13:06 2018 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Thu Jul 12 16:13:06 2018 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=32f66598

linux kernel 4.14.55

 _README  |4 +
 1054_linux-4.14.55.patch | 2167 ++
 2 files changed, 2171 insertions(+)

diff --git a/_README b/_README
index 6908240..f834399 100644
--- a/_README
+++ b/_README
@@ -259,6 +259,10 @@ Patch:  1053_linux-4.14.54.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.14.54
 
+Patch:  1054_linux-4.14.55.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.14.55
+
 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/1054_linux-4.14.55.patch b/1054_linux-4.14.55.patch
new file mode 100644
index 000..360661a
--- /dev/null
+++ b/1054_linux-4.14.55.patch
@@ -0,0 +1,2167 @@
+diff --git a/Makefile b/Makefile
+index de0955d8dfa3..0700feaaa6cf 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 4
+ PATCHLEVEL = 14
+-SUBLEVEL = 54
++SUBLEVEL = 55
+ EXTRAVERSION =
+ NAME = Petit Gorille
+ 
+diff --git a/arch/s390/kernel/entry.S b/arch/s390/kernel/entry.S
+index be20b1f73384..e928c2af6a10 100644
+--- a/arch/s390/kernel/entry.S
 b/arch/s390/kernel/entry.S
+@@ -1244,7 +1244,7 @@ cleanup_critical:
+   jl  0f
+   clg %r9,BASED(.Lcleanup_table+104)  # .Lload_fpu_regs_end
+   jl  .Lcleanup_load_fpu_regs
+-0:BR_EX   %r14
++0:BR_EX   %r14,%r11
+ 
+   .align  8
+ .Lcleanup_table:
+@@ -1280,7 +1280,7 @@ cleanup_critical:
+   ni  __SIE_PROG0C+3(%r9),0xfe# no longer in SIE
+   lctlg   %c1,%c1,__LC_USER_ASCE  # load primary asce
+   larl%r9,sie_exit# skip forward to sie_exit
+-  BR_EX   %r14
++  BR_EX   %r14,%r11
+ #endif
+ 
+ .Lcleanup_system_call:
+diff --git a/block/blk-lib.c b/block/blk-lib.c
+index 63fb971d6574..2bc544ce3d2e 100644
+--- a/block/blk-lib.c
 b/block/blk-lib.c
+@@ -275,6 +275,40 @@ static unsigned int 
__blkdev_sectors_to_bio_pages(sector_t nr_sects)
+   return min(pages, (sector_t)BIO_MAX_PAGES);
+ }
+ 
++static int __blkdev_issue_zero_pages(struct block_device *bdev,
++  sector_t sector, sector_t nr_sects, gfp_t gfp_mask,
++  struct bio **biop)
++{
++  struct request_queue *q = bdev_get_queue(bdev);
++  struct bio *bio = *biop;
++  int bi_size = 0;
++  unsigned int sz;
++
++  if (!q)
++  return -ENXIO;
++
++  while (nr_sects != 0) {
++  bio = next_bio(bio, __blkdev_sectors_to_bio_pages(nr_sects),
++ gfp_mask);
++  bio->bi_iter.bi_sector = sector;
++  bio_set_dev(bio, bdev);
++  bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
++
++  while (nr_sects != 0) {
++  sz = min((sector_t) PAGE_SIZE, nr_sects << 9);
++  bi_size = bio_add_page(bio, ZERO_PAGE(0), sz, 0);
++  nr_sects -= bi_size >> 9;
++  sector += bi_size >> 9;
++  if (bi_size < sz)
++  break;
++  }
++  cond_resched();
++  }
++
++  *biop = bio;
++  return 0;
++}
++
+ /**
+  * __blkdev_issue_zeroout - generate number of zero filed write bios
+  * @bdev: blockdev to issue
+@@ -288,12 +322,6 @@ static unsigned int 
__blkdev_sectors_to_bio_pages(sector_t nr_sects)
+  *  Zero-fill a block range, either using hardware offload or by explicitly
+  *  writing zeroes to the device.
+  *
+- *  Note that this function may fail with -EOPNOTSUPP if the driver signals
+- *  zeroing offload support, but the device fails to process the command (for
+- *  some devices there is no non-destructive way to verify whether this
+- *  operation is actually supported).  In this case the caller should call
+- *  retry the call to blkdev_issue_zeroout() and the fallback path will be 
used.
+- *
+  *  If a device is using logical block provisioning, the underlying space will
+  *  not be released if %flags contains BLKDEV_ZERO_NOUNMAP.
+  *
+@@ -305,9 +333,6 @@ int __blkdev_issue_zeroout(struct block_device *bdev, 
sector_t sector,
+   unsigned flags)
+ {
+   int ret;
+-  int bi_size = 0;
+-  struct bio *bio = *biop;
+-  unsigned int sz;
+   sector_t bs_mask;
+ 
+   bs_mask = (bdev_logical_block_size(bdev) >> 9) - 1;
+@@ -317,30 +342,10 @@ int __blkdev_issue_zeroout(struct block_device *bdev, 
sector_t sector,
+   ret = __blkdev_issue_write_zeroes(bdev, sector, nr_sects, gfp_mask,
+   biop, flags);
+   if (ret != -EOPNOTSUPP || (flags & BLKD

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

2018-07-12 Thread William Hubbs
commit: af8e666fd5b248a51dd4dc0d7d829fe0eae13c4b
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Jul 12 16:02:19 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Jul 12 16:05:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af8e666f

dev-lang/go: stable 1.9.7 on amd64 for bug #660736

bug: https://bugs.gentoo.org/660736
Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-lang/go/go-1.9.7.ebuild b/dev-lang/go/go-1.9.7.ebuild
index 503bf3c4a12..a5edf13b59d 100644
--- a/dev-lang/go/go-1.9.7.ebuild
+++ b/dev-lang/go/go-1.9.7.ebuild
@@ -39,7 +39,7 @@ case ${PV}  in
case ${PV} in
*_beta*|*_rc*) ;;
*)
-   KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd 
~x86-fbsd ~x64-macos ~x64-solaris"
+   KEYWORDS="-* amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd 
~x86-fbsd ~x64-macos ~x64-solaris"
# The upstream tests fail under portage but pass if the build is
# run according to their documentation [1].
# I am restricting the tests on released versions until this is



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

2018-07-12 Thread William Hubbs
commit: 360eb75140f4ceeade238367704d8bad6fffe886
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Jul 12 16:03:46 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Jul 12 16:06:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360eb751

dev-lang/go: Stable 1.10.3 on amd64 for bug #660736

bug: https://bugs.gentoo.org/660736
Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-lang/go/go-1.10.3.ebuild b/dev-lang/go/go-1.10.3.ebuild
index 8c2ff887401..085d8581d6b 100644
--- a/dev-lang/go/go-1.10.3.ebuild
+++ b/dev-lang/go/go-1.10.3.ebuild
@@ -39,7 +39,7 @@ case ${PV}  in
case ${PV} in
*_beta*|*_rc*) ;;
*)
-   KEYWORDS="-* ~amd64 ~arm ~arm64 ~ppc64 ~s390 ~x86 ~amd64-fbsd 
~x86-fbsd ~x64-macos ~x64-solaris"
+   KEYWORDS="-* amd64 ~arm ~arm64 ~ppc64 ~s390 ~x86 ~amd64-fbsd 
~x86-fbsd ~x64-macos ~x64-solaris"
# The upstream tests fail under portage but pass if the build is
# run according to their documentation [1].
# I am restricting the tests on released versions until this is



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

2018-07-12 Thread Alice Ferrazzi
commit: c302fa6ecc6c7bdb9657bbcc3d936fb36b2efeae
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Thu Jul 12 15:41:51 2018 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Thu Jul 12 15:41:51 2018 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=c302fa6e

linux kernel 4.9.112

 _README  |4 +
 _linux-4.9.112.patch | 1895 ++
 2 files changed, 1899 insertions(+)

diff --git a/_README b/_README
index 59417ea..f268044 100644
--- a/_README
+++ b/_README
@@ -487,6 +487,10 @@ Patch:  1110_linux-4.9.111.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.9.111
 
+Patch:  _linux-4.9.112.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.9.112
+
 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/_linux-4.9.112.patch b/_linux-4.9.112.patch
new file mode 100644
index 000..f3dc288
--- /dev/null
+++ b/_linux-4.9.112.patch
@@ -0,0 +1,1895 @@
+diff --git a/Makefile b/Makefile
+index b10646531fcd..c4544293db10 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 9
+-SUBLEVEL = 111
++SUBLEVEL = 112
+ EXTRAVERSION =
+ NAME = Roaring Lionus
+ 
+diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi
+index e9a5d0b8c7b0..908b269a016b 100644
+--- a/arch/arm/boot/dts/imx6q.dtsi
 b/arch/arm/boot/dts/imx6q.dtsi
+@@ -96,7 +96,7 @@
+   clocks = <&clks IMX6Q_CLK_ECSPI5>,
+<&clks IMX6Q_CLK_ECSPI5>;
+   clock-names = "ipg", "per";
+-  dmas = <&sdma 11 7 1>, <&sdma 12 7 2>;
++  dmas = <&sdma 11 8 1>, <&sdma 12 8 2>;
+   dma-names = "rx", "tx";
+   status = "disabled";
+   };
+diff --git a/arch/s390/kernel/entry.S b/arch/s390/kernel/entry.S
+index a4fd00064c80..771cfd2e1e6d 100644
+--- a/arch/s390/kernel/entry.S
 b/arch/s390/kernel/entry.S
+@@ -1187,7 +1187,7 @@ cleanup_critical:
+   jl  0f
+   clg %r9,BASED(.Lcleanup_table+104)  # .Lload_fpu_regs_end
+   jl  .Lcleanup_load_fpu_regs
+-0:BR_EX   %r14
++0:BR_EX   %r14,%r11
+ 
+   .align  8
+ .Lcleanup_table:
+@@ -1217,7 +1217,7 @@ cleanup_critical:
+   ni  __SIE_PROG0C+3(%r9),0xfe# no longer in SIE
+   lctlg   %c1,%c1,__LC_USER_ASCE  # load primary asce
+   larl%r9,sie_exit# skip forward to sie_exit
+-  BR_EX   %r14
++  BR_EX   %r14,%r11
+ #endif
+ 
+ .Lcleanup_system_call:
+diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c
+index b0fd028b2eee..7a4279d8a902 100644
+--- a/arch/x86/kernel/cpu/common.c
 b/arch/x86/kernel/cpu/common.c
+@@ -848,6 +848,13 @@ void get_cpu_cap(struct cpuinfo_x86 *c)
+ 
+   init_scattered_cpuid_features(c);
+   init_speculation_control(c);
++
++  /*
++   * Clear/Set all flags overridden by options, after probe.
++   * This needs to happen each time we re-probe, which may happen
++   * several times during CPU initialization.
++   */
++  apply_forced_caps(c);
+ }
+ 
+ static void identify_cpu_without_cpuid(struct cpuinfo_x86 *c)
+diff --git a/arch/x86/kernel/kprobes/core.c b/arch/x86/kernel/kprobes/core.c
+index 91c48cdfe81f..516be613bd41 100644
+--- a/arch/x86/kernel/kprobes/core.c
 b/arch/x86/kernel/kprobes/core.c
+@@ -414,25 +414,38 @@ void free_insn_page(void *page)
+   module_memfree(page);
+ }
+ 
++/* Prepare reljump right after instruction to boost */
++static void prepare_boost(struct kprobe *p, int length)
++{
++  if (can_boost(p->ainsn.insn, p->addr) &&
++  MAX_INSN_SIZE - length >= RELATIVEJUMP_SIZE) {
++  /*
++   * These instructions can be executed directly if it
++   * jumps back to correct address.
++   */
++  synthesize_reljump(p->ainsn.insn + length, p->addr + length);
++  p->ainsn.boostable = 1;
++  } else {
++  p->ainsn.boostable = -1;
++  }
++}
++
+ static int arch_copy_kprobe(struct kprobe *p)
+ {
+-  int ret;
++  int len;
+ 
+   set_memory_rw((unsigned long)p->ainsn.insn & PAGE_MASK, 1);
+ 
+   /* Copy an instruction with recovering if other optprobe modifies it.*/
+-  ret = __copy_instruction(p->ainsn.insn, p->addr);
+-  if (!ret)
++  len = __copy_instruction(p->ainsn.insn, p->addr);
++  if (!len)
+   return -EINVAL;
+ 
+   /*
+* __copy_instruction can modify the displacement of the instruction,
+* but it doesn't affect boostable check.
+*/
+-  if (can_boost(p->ainsn.insn, p->addr))
+-  p->

[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-base/

2018-07-12 Thread Jason Zaman
commit: 171ce4a06b0f2e5e7a747ebc83f96aff8c35e1c6
Author: Jason Zaman  gentoo  org>
AuthorDate: Thu Jul 12 14:32:20 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Jul 12 15:28:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=171ce4a0

sec-policy/selinux-base: update SRC_URI

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sec-policy/selinux-base/selinux-base-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sec-policy/selinux-base/selinux-base-.ebuild 
b/sec-policy/selinux-base/selinux-base-.ebuild
index b779ed9e7cf..6da755d1665 100644
--- a/sec-policy/selinux-base/selinux-base-.ebuild
+++ b/sec-policy/selinux-base/selinux-base-.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
 
inherit git-r3
 else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/TresysTechnology/refpolicy/files/refpolicy-${PV}.tar.bz2
+   
SRC_URI="https://github.com/SELinuxProject/refpolicy/releases/download/RELEASE_${PV/./_}/refpolicy-${PV}.tar.bz2

https://dev.gentoo.org/~swift/patches/selinux-base-policy/patchbundle-selinux-base-policy-${PVR}.tar.bz2";
 
KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"



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

2018-07-12 Thread Jason Zaman
commit: 635c6284be16b11a7d2f01551099136032062e5d
Author: Jason Zaman  gentoo  org>
AuthorDate: Thu Jul 12 14:35:39 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Jul 12 15:28:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=635c6284

eclass: selinux-policy-2: update SRC_URI

 eclass/selinux-policy-2.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/selinux-policy-2.eclass b/eclass/selinux-policy-2.eclass
index aaea1ee4b89..784e304a962 100644
--- a/eclass/selinux-policy-2.eclass
+++ b/eclass/selinux-policy-2.eclass
@@ -94,10 +94,10 @@ IUSE=""
 
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:SELinux";
 if [[ -n ${BASEPOL} ]] && [[ "${BASEPOL}" != "" ]]; then
-   
SRC_URI="https://raw.githubusercontent.com/wiki/TresysTechnology/refpolicy/files/refpolicy-${PV}.tar.bz2
+   
SRC_URI="https://github.com/SELinuxProject/refpolicy/releases/download/RELEASE_${PV/./_}/refpolicy-${PV}.tar.bz2

https://dev.gentoo.org/~swift/patches/selinux-base-policy/patchbundle-selinux-base-policy-${BASEPOL}.tar.bz2";
 elif [[ "${BASEPOL}" != "" ]]; then
-   
SRC_URI="https://raw.githubusercontent.com/wiki/TresysTechnology/refpolicy/files/refpolicy-${PV}.tar.bz2";
+   
SRC_URI="https://github.com/SELinuxProject/refpolicy/releases/download/RELEASE_${PV/./_}/refpolicy-${PV}.tar.bz2";
 else
SRC_URI=""
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-base-policy/

2018-07-12 Thread Jason Zaman
commit: ac8c32c38dff404a306d4145405d630bfbdafae3
Author: Jason Zaman  gentoo  org>
AuthorDate: Thu Jul 12 14:33:04 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Jul 12 15:28:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac8c32c3

sec-policy/selinux-base-policy: update SRC_URI

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sec-policy/selinux-base-policy/selinux-base-policy-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sec-policy/selinux-base-policy/selinux-base-policy-.ebuild 
b/sec-policy/selinux-base-policy/selinux-base-policy-.ebuild
index b2976ccee54..f68a3519c79 100644
--- a/sec-policy/selinux-base-policy/selinux-base-policy-.ebuild
+++ b/sec-policy/selinux-base-policy/selinux-base-policy-.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
 
inherit git-r3
 else
-   
SRC_URI="https://raw.githubusercontent.com/wiki/TresysTechnology/refpolicy/files/refpolicy-${PV}.tar.bz2
+   
SRC_URI="https://github.com/SELinuxProject/refpolicy/releases/download/RELEASE_${PV/./_}/refpolicy-${PV}.tar.bz2

https://dev.gentoo.org/~swift/patches/${PN}/patchbundle-${PN}-${PVR}.tar.bz2";
KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-base/

2018-07-12 Thread Jason Zaman
commit: 181e91a3b79035df18b5c53640fa3026a022ab98
Author: Jason Zaman  gentoo  org>
AuthorDate: Thu Jul 12 15:04:29 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Thu Jul 12 15:28:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=181e91a3

sec-policy/selinux-base: 2.20180701 policies require userspace 2.8

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sec-policy/selinux-base/selinux-base-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sec-policy/selinux-base/selinux-base-.ebuild 
b/sec-policy/selinux-base/selinux-base-.ebuild
index 6da755d1665..000ddea14dd 100644
--- a/sec-policy/selinux-base/selinux-base-.ebuild
+++ b/sec-policy/selinux-base/selinux-base-.ebuild
@@ -23,11 +23,11 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/Project:SELinux";
 LICENSE="GPL-2"
 SLOT="0"
 
-RDEPEND=">=sys-apps/policycoreutils-2.7
+RDEPEND=">=sys-apps/policycoreutils-2.8
virtual/udev"
 DEPEND="${RDEPEND}
sys-devel/m4
-   >=sys-apps/checkpolicy-2.7"
+   >=sys-apps/checkpolicy-2.8"
 
 S=${WORKDIR}/
 



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

2018-07-12 Thread Ben Kohler
commit: af0a663983092c388db9dfe470fa5d6326dddab0
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Jul 12 15:16:49 2018 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Jul 12 15:19:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af0a6639

net-wireless/unifi: prune old

5.7 series is dead, remove.  Also remove old 5.8 release.

New -r1 init script is well tested so remove r0 and all ebuilds using
it.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 net-wireless/unifi/Manifest   |  2 -
 net-wireless/unifi/files/unifi.initd  | 26 
 net-wireless/unifi/unifi-5.6.39.ebuild| 70 ---
 net-wireless/unifi/unifi-5.7.28-r1.ebuild | 70 ---
 net-wireless/unifi/unifi-5.7.28.ebuild| 70 ---
 net-wireless/unifi/unifi-5.8.23-r1.ebuild | 70 ---
 net-wireless/unifi/unifi-5.8.23.ebuild| 70 ---
 net-wireless/unifi/unifi-5.8.24.ebuild| 70 ---
 net-wireless/unifi/unifi-5.9.4.ebuild | 69 --
 9 files changed, 517 deletions(-)

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index acc36f0a6fc..dc5b4b9e7f2 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -1,6 +1,4 @@
 DIST unifi-5.6.39.zip 63559153 BLAKE2B 
377c9cbcb49f3f7fe687c7877ca37b4cf4c62076da1a05ce64599be86b8503b910e941bdaa93b9bf77ed259e46ed5355befb695c0cff41157fe1e43a10643216
 SHA512 
456407a0fe140ef35718591777fcc1084ca9ee4f70c97deb554318390aa3e530c5dfbbbe57b659f83d52ca44be8ebd57071cfad2bf7f0f180fa5f2fa9100a1d9
-DIST unifi-5.7.28.zip 79362245 BLAKE2B 
5edb7b92d602ba780b0fa7613360ada39f09b347b247945761af80d0180d4653b19cb5cd1d7bd11332a85de8481c4981b111e572cb755a83b676362494a5505c
 SHA512 
f6ba667a2f0b5959ed715a190fdbdfe308ea256c2d485f96d43fe797912dfe6992cbaed95add5899293fabdd371c1814572bf1189a4ce93c632743dca40b87e3
-DIST unifi-5.8.23.zip 80086708 BLAKE2B 
ea7aec61d74132a47843084f1987e6e016c4fb1ec96d077dac2a9b122003274b0314927404468669a5d7cc0bdb6a307c97bca09f663b180d15bf18436b35408b
 SHA512 
2b42df2a84574ac9e282c7ff59eb86ce29170ea7ef5957690dec8772c90acda3c08c633b3bceeac08bb73ff1460143207a64d2405de19436faf20a042849231b
 DIST unifi-5.8.24.zip 80086706 BLAKE2B 
00530b5e141e9444120efeb6ea5b3106781fb5b15a1ade44b71675a726ae7245221af694b36a922a4d047f78567a7bd9e1354d6dde442dfccd58a49f87079403
 SHA512 
cf7145d779893c1c9709eef7364154503dd1232f88cce38facc748426d19c5422decbd5e3a80d857a2d82969258045944b491c7b228467d8e4a7c29a0ec1
 DIST unifi-5.9.12.zip 103000745 BLAKE2B 
30613f8ee9bf832f5303d02cc2719cb91358a558afe4f998541b890be6c152a62171ad1711e78fd0f2e011161d03cdb9afa9c8dffc3b553b9c7b637f61f12b10
 SHA512 
0f8c549dfc390d71e3f8a58c05647b3cd062a55de248128267dda3c079f744a810a0138016616d5be6b2e05ecd34149172efd369c1cf4c1e24735ba982c266cb
 DIST unifi-5.9.4.zip 102808708 BLAKE2B 
3b1479bd65837667f2abff594426ecc3491475d1cf6d842d07cdc8868cabf59facc857263fcfb1ef30fdb8dbb4c0a037b7e04736b8debf0f4f795494fc62ee26
 SHA512 
01e2d8c2d48a552e3b5d03cb97b0241e0561a4c88e52f13ec2d2a8a8b7d75ba7d9eb7878e37876efe5581e439afaac359ae6e3e7b2bb3d0719ebdbb10b06778c

diff --git a/net-wireless/unifi/files/unifi.initd 
b/net-wireless/unifi/files/unifi.initd
deleted file mode 100644
index 48fd9dd3b4a..000
--- a/net-wireless/unifi/files/unifi.initd
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-ACE_LIB="lib/ace.jar"
-DAEMON="${JAVA_HOME-/etc/java-config-2/current-system-vm}"/bin/java
-JAVA_OPTS="-Djava.library.path= -Dorg.xerial.snappy.tempdir=/usr/lib/unifi/tmp"
-UNIFI_GROUP="unifi"
-UNIFI_PATH="/usr/lib/unifi"
-UNIFI_USER="unifi"
-
-depend() {
-   need net
-}
-
-start() {
-   ebegin "Starting UniFi Controller"
-   start-stop-daemon --start --quiet --background --user ${UNIFI_USER} 
--group ${UNIFI_GROUP} --chdir ${UNIFI_PATH} --exec ${DAEMON} -- ${JAVA_OPTS} 
-jar ${ACE_LIB} start
-   eend $?
-}
-
-stop() {
-   ebegin "Stopping UniFi Controller"
-   start-stop-daemon --start --quiet --background --user ${UNIFI_USER} 
--group ${UNIFI_GROUP} --chdir ${UNIFI_PATH} --exec ${DAEMON} -- ${JAVA_OPTS} 
-jar ${ACE_LIB} stop
-   eend $?
-}

diff --git a/net-wireless/unifi/unifi-5.6.39.ebuild 
b/net-wireless/unifi/unifi-5.6.39.ebuild
deleted file mode 100644
index aeda8f7c164..000
--- a/net-wireless/unifi/unifi-5.6.39.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# Used, when it's an unstable, beta or release candidate
-RC_SUFFIX=""
-
-inherit systemd user
-
-DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
-HOMEPAGE="https://www.ubnt.com";
-SRC_URI="https://dl.ubnt.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.z

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

2018-07-12 Thread Alice Ferrazzi
commit: 8d4733995b6d3df95909b5a116fae17c658d9555
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Thu Jul 12 15:14:05 2018 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Thu Jul 12 15:14:05 2018 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=8d473399

Update to linux kernel 4.17.6

 _README |4 +
 1005_linux-4.17.6.patch | 2386 +++
 2 files changed, 2390 insertions(+)

diff --git a/_README b/_README
index 33f7bd8..b414442 100644
--- a/_README
+++ b/_README
@@ -63,6 +63,10 @@ Patch:  1004_linux-4.17.5.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.17.5
 
+Patch:  1005_linux-4.17.6.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.17.6
+
 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/1005_linux-4.17.6.patch b/1005_linux-4.17.6.patch
new file mode 100644
index 000..7f17226
--- /dev/null
+++ b/1005_linux-4.17.6.patch
@@ -0,0 +1,2386 @@
+diff --git a/Makefile b/Makefile
+index e4ddbad49636..1a885c8f82ef 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 4
+ PATCHLEVEL = 17
+-SUBLEVEL = 5
++SUBLEVEL = 6
+ EXTRAVERSION =
+ NAME = Merciless Moray
+ 
+diff --git a/arch/arm/boot/dts/am3517.dtsi b/arch/arm/boot/dts/am3517.dtsi
+index ca294914bbb1..4b6062b631b1 100644
+--- a/arch/arm/boot/dts/am3517.dtsi
 b/arch/arm/boot/dts/am3517.dtsi
+@@ -39,6 +39,8 @@
+   ti,davinci-ctrl-ram-size = <0x2000>;
+   ti,davinci-rmii-en = /bits/ 8 <1>;
+   local-mac-address = [ 00 00 00 00 00 00 ];
++  clocks = <&emac_ick>;
++  clock-names = "ick";
+   };
+ 
+   davinci_mdio: ethernet@5c03 {
+@@ -49,6 +51,8 @@
+   bus_freq = <100>;
+   #address-cells = <1>;
+   #size-cells = <0>;
++  clocks = <&emac_fck>;
++  clock-names = "fck";
+   };
+ 
+   uart4: serial@4809e000 {
+diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
+index f4ddd86f2c77..9cace9f3dd15 100644
+--- a/arch/arm/boot/dts/dra7.dtsi
 b/arch/arm/boot/dts/dra7.dtsi
+@@ -1582,7 +1582,6 @@
+   dr_mode = "otg";
+   snps,dis_u3_susphy_quirk;
+   snps,dis_u2_susphy_quirk;
+-  snps,dis_metastability_quirk;
+   };
+   };
+ 
+@@ -1610,6 +1609,7 @@
+   dr_mode = "otg";
+   snps,dis_u3_susphy_quirk;
+   snps,dis_u2_susphy_quirk;
++  snps,dis_metastability_quirk;
+   };
+   };
+ 
+diff --git a/arch/arm/boot/dts/imx51-zii-rdu1.dts 
b/arch/arm/boot/dts/imx51-zii-rdu1.dts
+index 6464f2560e06..0662217751dc 100644
+--- a/arch/arm/boot/dts/imx51-zii-rdu1.dts
 b/arch/arm/boot/dts/imx51-zii-rdu1.dts
+@@ -768,7 +768,7 @@
+ 
+   pinctrl_ts: tsgrp {
+   fsl,pins = <
+-  MX51_PAD_CSI1_D8__GPIO3_12  0x85
++  MX51_PAD_CSI1_D8__GPIO3_12  0x04
+   MX51_PAD_CSI1_D9__GPIO3_13  0x85
+   >;
+   };
+diff --git a/arch/s390/kernel/entry.S b/arch/s390/kernel/entry.S
+index f03402efab4b..3891805bfcdd 100644
+--- a/arch/s390/kernel/entry.S
 b/arch/s390/kernel/entry.S
+@@ -1265,7 +1265,7 @@ cleanup_critical:
+   jl  0f
+   clg %r9,BASED(.Lcleanup_table+104)  # .Lload_fpu_regs_end
+   jl  .Lcleanup_load_fpu_regs
+-0:BR_EX   %r14
++0:BR_EX   %r14,%r11
+ 
+   .align  8
+ .Lcleanup_table:
+@@ -1301,7 +1301,7 @@ cleanup_critical:
+   ni  __SIE_PROG0C+3(%r9),0xfe# no longer in SIE
+   lctlg   %c1,%c1,__LC_USER_ASCE  # load primary asce
+   larl%r9,sie_exit# skip forward to sie_exit
+-  BR_EX   %r14
++  BR_EX   %r14,%r11
+ #endif
+ 
+ .Lcleanup_system_call:
+diff --git a/drivers/acpi/acpica/uterror.c b/drivers/acpi/acpica/uterror.c
+index 5a64ddaed8a3..e47430272692 100644
+--- a/drivers/acpi/acpica/uterror.c
 b/drivers/acpi/acpica/uterror.c
+@@ -182,19 +182,19 @@ acpi_ut_prefixed_namespace_error(const char *module_name,
+   switch (lookup_status) {
+   case AE_ALREADY_EXISTS:
+ 
+-  acpi_os_printf("\n" ACPI_MSG_BIOS_ERROR);
++  acpi_os_printf(ACPI_MSG_BIOS_ERROR);
+   message = "Failure creating";
+   break;
+ 
+   case AE_NOT_FOUND:
+ 
+-  acpi_os_printf("\n" ACPI_MSG_BIOS_ERROR);
++  acpi_os_printf(ACPI_MSG_BIOS_ERROR);
+  

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

2018-07-12 Thread Lars Wendler
commit: c6e75612bf5070345cdb6fdc06336096a972eef6
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Jul 12 15:00:05 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Jul 12 15:01:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6e75612

sys-apps/fwupd: Bump to version 1.1.0

This also fixes build with USE="pkcs7".

Closes: https://bugs.gentoo.org/659698
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 sys-apps/fwupd/Manifest   |   1 +
 sys-apps/fwupd/fwupd-1.1.0.ebuild | 102 ++
 sys-apps/fwupd/metadata.xml   |   1 +
 3 files changed, 104 insertions(+)

diff --git a/sys-apps/fwupd/Manifest b/sys-apps/fwupd/Manifest
index 7b9b5c1ad8d..8523f48cf5c 100644
--- a/sys-apps/fwupd/Manifest
+++ b/sys-apps/fwupd/Manifest
@@ -1,2 +1,3 @@
 DIST fwupd-1.0.6.tar.gz 1569675 BLAKE2B 
1e6b4acc52696cc08086647ce69d4901e78201817423a53f1a6af5f9c5b7be658a5f343c88aa358788aa9d51859b29d8ea7269ec855841652a37a88ba577e01e
 SHA512 
8daaf5d5cb91260c443448a874f92d948bf878dc44c586dbd4a75323dd834ba3b106fe570e30c7a0aefe4c4a7008b6db1ec2948a948b3fb94906ef1fe3f2e35a
 DIST fwupd-1.0.8.tar.gz 1584132 BLAKE2B 
7744d14a02bd9847c0c1efe8ff8365abccf9d5213150687815d3e1236844ec71dbf161e5f5d7be32103c3613640680b5b2a017f1a60a30df93fc55bf5d765f74
 SHA512 
11bdc1dd77697b690e849bde59e54cf289cde32f410f9f7e8911a874f0a265b091ac2e335f784f54b64f835f2750a63a74092cc5eaf7a6c70eaa6d06995d131e
+DIST fwupd-1.1.0.tar.gz 1636214 BLAKE2B 
492c33eb54852dd7d73f511dd6e5aa222b35e1898105bbfb291e1095c3968101597185cff2a1889e9da5728fdd0c8d4638e7e2102b12cf7659a1b6612ca0e9b7
 SHA512 
058d4564cf922b5056f6197261d77b97db7238a1658d69d9b29bec70a44542a5a131071935747e0cc963661a61b242ca98375ed8da920f819d37a706aec0c2ae

diff --git a/sys-apps/fwupd/fwupd-1.1.0.ebuild 
b/sys-apps/fwupd/fwupd-1.1.0.ebuild
new file mode 100644
index 000..4bf84845fd0
--- /dev/null
+++ b/sys-apps/fwupd/fwupd-1.1.0.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# Package requires newer meson than eclass provides
+MESON_AUTO_DEPEND="no"
+PYTHON_COMPAT=( python3_4 python3_5 python3_6 )
+
+inherit meson python-single-r1 vala xdg-utils
+
+DESCRIPTION="Aims to make updating firmware on Linux automatic, safe and 
reliable"
+HOMEPAGE="https://fwupd.org";
+SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="colorhug dell doc gpg +man pkcs7 redfish systemd test uefi"
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   dell? ( uefi )
+"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   app-arch/libarchive:=
+   dev-db/sqlite
+   >=dev-libs/appstream-glib-0.7.4:=[introspection]
+   >=dev-libs/glib-2.45.8:2
+   dev-libs/libgpg-error
+   dev-libs/libgudev:=
+   >=dev-libs/libgusb-0.2.9[introspection]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
+   >=net-libs/libsoup-2.51.92:2.4[introspection]
+   >=sys-auth/polkit-0.103
+   virtual/libelf:0=
+   colorhug? ( >=x11-misc/colord-1.2.12:0= )
+   dell? (
+   sys-libs/efivar
+   >=sys-libs/libsmbios-2.4.0
+   )
+   gpg? (
+   app-crypt/gpgme
+   dev-libs/libgpg-error
+   )
+   pkcs7? ( >=net-libs/gnutls-3.4.4.1:= )
+   redfish? (
+   dev-libs/json-glib
+   sys-libs/efivar
+   )
+   systemd? ( >=sys-apps/systemd-211 )
+   !systemd? ( >=sys-auth/consolekit-1.0.0 )
+   uefi? (
+   media-libs/fontconfig
+   media-libs/freetype
+   >=sys-libs/efivar-33
+   x11-libs/cairo
+   )
+"
+DEPEND="
+   ${RDEPEND}
+   app-arch/gcab
+   app-arch/libarchive
+   >=dev-util/meson-0.41.0
+   >=dev-util/ninja-1.7.2
+   virtual/pkgconfig
+   $(vala_depend)
+   doc? ( dev-util/gtk-doc )
+   man? ( app-text/docbook-sgml-utils )
+   test? ( net-libs/gnutls[tools] )
+"
+
+src_prepare() {
+   default
+   sed -e "s/'--create'/'--absolute-name', '--create'/" \
+   -i data/tests/builder/meson.build || die
+   vala_src_prepare
+}
+
+src_configure() {
+   xdg_environment_reset
+   local emesonargs=(
+   -Dconsolekit="$(usex systemd false true)"
+   -Dgpg="$(usex gpg true false)"
+   -Dgtkdoc="$(usex doc true false)"
+   -Dman="$(usex man true false)"
+   -Dpkcs7="$(usex pkcs7 true false)"
+   -Dplugin_dell="$(usex dell true false)"
+   -Dplugin_redfish="$(usex redfish true false)"
+   -Dplugin_synaptics="$(usex dell true false)"
+   # requires libtbtfwu which is not packaged (yet?)
+   -Dplugin_thunderbolt=false
+   -Dplugin

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

2018-07-12 Thread Lars Wendler
commit: 3e73bf2add5df5b49fe8582f52dfde6833939974
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Jul 12 15:00:49 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Jul 12 15:01:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e73bf2a

sys-apps/fwupd: Removed old.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 sys-apps/fwupd/Manifest   |   1 -
 sys-apps/fwupd/fwupd-1.0.6.ebuild |  98 
 sys-apps/fwupd/fwupd-1.0.8.ebuild | 102 --
 3 files changed, 201 deletions(-)

diff --git a/sys-apps/fwupd/Manifest b/sys-apps/fwupd/Manifest
index 8523f48cf5c..a46369abfcf 100644
--- a/sys-apps/fwupd/Manifest
+++ b/sys-apps/fwupd/Manifest
@@ -1,3 +1,2 @@
-DIST fwupd-1.0.6.tar.gz 1569675 BLAKE2B 
1e6b4acc52696cc08086647ce69d4901e78201817423a53f1a6af5f9c5b7be658a5f343c88aa358788aa9d51859b29d8ea7269ec855841652a37a88ba577e01e
 SHA512 
8daaf5d5cb91260c443448a874f92d948bf878dc44c586dbd4a75323dd834ba3b106fe570e30c7a0aefe4c4a7008b6db1ec2948a948b3fb94906ef1fe3f2e35a
 DIST fwupd-1.0.8.tar.gz 1584132 BLAKE2B 
7744d14a02bd9847c0c1efe8ff8365abccf9d5213150687815d3e1236844ec71dbf161e5f5d7be32103c3613640680b5b2a017f1a60a30df93fc55bf5d765f74
 SHA512 
11bdc1dd77697b690e849bde59e54cf289cde32f410f9f7e8911a874f0a265b091ac2e335f784f54b64f835f2750a63a74092cc5eaf7a6c70eaa6d06995d131e
 DIST fwupd-1.1.0.tar.gz 1636214 BLAKE2B 
492c33eb54852dd7d73f511dd6e5aa222b35e1898105bbfb291e1095c3968101597185cff2a1889e9da5728fdd0c8d4638e7e2102b12cf7659a1b6612ca0e9b7
 SHA512 
058d4564cf922b5056f6197261d77b97db7238a1658d69d9b29bec70a44542a5a131071935747e0cc963661a61b242ca98375ed8da920f819d37a706aec0c2ae

diff --git a/sys-apps/fwupd/fwupd-1.0.6.ebuild 
b/sys-apps/fwupd/fwupd-1.0.6.ebuild
deleted file mode 100644
index bf796201827..000
--- a/sys-apps/fwupd/fwupd-1.0.6.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_4 python3_5 python3_6 )
-
-inherit meson python-single-r1 vala xdg-utils
-
-DESCRIPTION="Aims to make updating firmware on Linux automatic, safe and 
reliable"
-HOMEPAGE="https://fwupd.org";
-SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="colorhug dell doc gpg +man pkcs7 systemd test uefi uefi_labels"
-REQUIRED_USE="
-   ${PYTHON_REQUIRED_USE}
-"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   app-arch/libarchive:=
-   dev-db/sqlite
-   >=dev-libs/appstream-glib-0.6.13:=[introspection]
-   >=dev-libs/glib-2.45.8:2
-   dev-libs/libgpg-error
-   dev-libs/libgudev:=
-   >=dev-libs/libgusb-0.2.9[introspection]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pycairo[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
-   >=net-libs/libsoup-2.51.92:2.4[introspection]
-   >=sys-auth/polkit-0.103
-   virtual/libelf:0=
-   colorhug? ( >=x11-misc/colord-1.2.12:0= )
-   dell? (
-   sys-libs/efivar
-   >=sys-libs/libsmbios-2.3.3
-   )
-   gpg? (
-   app-crypt/gpgme
-   dev-libs/libgpg-error
-   )
-   pkcs7? ( net-libs/gnutls:= )
-   systemd? ( >=sys-apps/systemd-231 )
-   !systemd? ( >=sys-auth/consolekit-1.0.0 )
-   uefi? ( >=sys-apps/fwupdate-5 )
-   uefi_labels? (
-   x11-libs/pango
-   x11-libs/cairo
-   media-libs/freetype
-   media-libs/fontconfig
-   media-fonts/dejavu
-   media-fonts/source-han-sans
-   )
-"
-DEPEND="
-   ${RDEPEND}
-   app-arch/gcab
-   app-arch/libarchive
-   virtual/pkgconfig
-   $(vala_depend)
-   doc? ( dev-util/gtk-doc )
-   man? ( app-text/docbook-sgml-utils )
-   test? ( net-libs/gnutls[tools] )
-"
-
-REQUIRED_USE="dell? ( uefi )"
-
-src_prepare() {
-   default
-   sed -i -e "s/'--create'/'--absolute-name', '--create'/" 
data/tests/builder/meson.build || die
-   vala_src_prepare
-}
-
-src_configure() {
-   xdg_environment_reset
-   local emesonargs=(
-   -Dconsolekit="$(usex systemd false true)"
-   -Dgpg="$(usex gpg true false)"
-   -Dgtkdoc="$(usex doc true false)"
-   -Dman="$(usex man true false)"
-   -Dpkcs7="$(usex pkcs7 true false)"
-   -Dplugin_colorhug="$(usex colorhug true false)"
-   -Dplugin_dell="$(usex dell true false)"
-   -Dplugin_synaptics="$(usex dell true false)"
-   # requires libtbtfwu which is not packaged (yet?)
-   -Dplugin_thunderbolt=false
-   -Dplugin_uefi="$(usex uefi true false)"
-   -Dplugin_uefi-labels="$(usex uefi_labels true false)"
-   -Dsystemd="$(usex systemd true false)"
-   -Dtes

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

2018-07-12 Thread Manuel Rüger
commit: 176dbcd02b3645439b109f0791b77b74d85b01b1
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 12 14:51:55 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 12 14:51:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=176dbcd0

dev-python/docker-pycreds: Remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/docker-pycreds/Manifest|  1 -
 dev-python/docker-pycreds/docker-pycreds-0.2.2.ebuild | 19 ---
 2 files changed, 20 deletions(-)

diff --git a/dev-python/docker-pycreds/Manifest 
b/dev-python/docker-pycreds/Manifest
index f9fb0fb3c04..eaa6fadea4b 100644
--- a/dev-python/docker-pycreds/Manifest
+++ b/dev-python/docker-pycreds/Manifest
@@ -1,4 +1,3 @@
 DIST docker-pycreds-0.2.1.tar.gz 7555 BLAKE2B 
e9934a357cb59d995971f0d3b247e6d84efb9c105cbd71792b536fd98088a6e658361e9621360b79a3a1041cea3f063fb66d58124cca717d003f9253e2c8e908
 SHA512 
04a2dbd00c4e0a02bee13eaf23255e660b0e8640ef4225eff94e6c2391e5ceaf539b373ef932737dbc8eb4383746b374aca5a018a1f21c1eebb2f53160662338
-DIST docker-pycreds-0.2.2.tar.gz 7787 BLAKE2B 
4ab61bc9bb3f9f75667e7d74212a8e83d214bf2210e200abad593ded94aae8290b216edd28cf2304a8d8d6192faba0b3b764bbfc0f2a446efceaf33558849b84
 SHA512 
dc0394f7cc34b36b6a7edd61fa5937743da573d14b75f7ed06ca9d5c15a980d7c43252e846e529e2bc799e7f7b72fb1f4ca03b28c2677cc38afbfda16fbbcb55
 DIST docker-pycreds-0.2.3.tar.gz 8220 BLAKE2B 
db645de930becc3ad6ecb2d6476d36d1845fbaa55b7c6d2d6590e45036713b6e215b189e6ea961c31c0898e8f231943e05abe96a63c15ac43bebf0f7787b954b
 SHA512 
d4199a48a0bda29ac6126ca9a196c0722667a744998b5f81b360066d48f1bd1f9e6e423df2b53e37117316f3dada6fa47e956c6d2c7d90f851d97a434dcb595f
 DIST docker-pycreds-0.3.0.tar.gz 8544 BLAKE2B 
88a950d7fa027b221ffd999283cb6ee4b0f23115167f27f163085372abccc4d9d5dfeb03ab5d99449d607dc69212bfeb870130d0f91843cca6b9b338d0f4f9ad
 SHA512 
5fa81b375c3ddb6527f416afb11688cb703f75dbd3b1a9efba0cf85e8b3deb903670c94933777b855d48d607596192c72e4d5be96f91ac8e8334e634abf8d2fa

diff --git a/dev-python/docker-pycreds/docker-pycreds-0.2.2.ebuild 
b/dev-python/docker-pycreds/docker-pycreds-0.2.2.ebuild
deleted file mode 100644
index cf82e0ccca5..000
--- a/dev-python/docker-pycreds/docker-pycreds-0.2.2.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for the docker credentials store API"
-HOMEPAGE="https://github.com/shin-/dockerpy-creds/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND=">=dev-python/six-1.4.0[${PYTHON_USEDEP}]"



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

2018-07-12 Thread Manuel Rüger
commit: c18a8cac1225bac28bde8b6bfd936384aab4abbb
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 12 14:52:49 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 12 14:52:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c18a8cac

dev-python/docker-py: Fix dependency to docker-pycreds

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 .../docker-py/{docker-py-3.4.0.ebuild => docker-py-3.4.0-r1.ebuild} | 2 +-
 dev-python/docker-py/docker-py-3.4.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/docker-py/docker-py-3.4.0.ebuild 
b/dev-python/docker-py/docker-py-3.4.0-r1.ebuild
similarity index 96%
copy from dev-python/docker-py/docker-py-3.4.0.ebuild
copy to dev-python/docker-py/docker-py-3.4.0-r1.ebuild
index 8ce9ced0503..d3e8810d7e6 100644
--- a/dev-python/docker-py/docker-py-3.4.0.ebuild
+++ b/dev-python/docker-py/docker-py-3.4.0-r1.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="doc test"
 
 RDEPEND="
-   >=dev-python/docker-pycreds-0.2.3[${PYTHON_USEDEP}]
+   >=dev-python/docker-pycreds-0.3.0[${PYTHON_USEDEP}]
!~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
>=dev-python/six-1.4.0[${PYTHON_USEDEP}]

diff --git a/dev-python/docker-py/docker-py-3.4.0.ebuild 
b/dev-python/docker-py/docker-py-3.4.0.ebuild
index 8ce9ced0503..d3e8810d7e6 100644
--- a/dev-python/docker-py/docker-py-3.4.0.ebuild
+++ b/dev-python/docker-py/docker-py-3.4.0.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="doc test"
 
 RDEPEND="
-   >=dev-python/docker-pycreds-0.2.3[${PYTHON_USEDEP}]
+   >=dev-python/docker-pycreds-0.3.0[${PYTHON_USEDEP}]
!~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
>=dev-python/six-1.4.0[${PYTHON_USEDEP}]



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

2018-07-12 Thread Manuel Rüger
commit: 73a06731e5afb8cc59e24daa61cb981be437c4cf
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 12 14:51:35 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 12 14:51:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73a06731

dev-python/docker-pycreds: Version bump to 0.3.0

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/docker-pycreds/Manifest|  1 +
 dev-python/docker-pycreds/docker-pycreds-0.3.0.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/dev-python/docker-pycreds/Manifest 
b/dev-python/docker-pycreds/Manifest
index c9e99c9f99d..f9fb0fb3c04 100644
--- a/dev-python/docker-pycreds/Manifest
+++ b/dev-python/docker-pycreds/Manifest
@@ -1,3 +1,4 @@
 DIST docker-pycreds-0.2.1.tar.gz 7555 BLAKE2B 
e9934a357cb59d995971f0d3b247e6d84efb9c105cbd71792b536fd98088a6e658361e9621360b79a3a1041cea3f063fb66d58124cca717d003f9253e2c8e908
 SHA512 
04a2dbd00c4e0a02bee13eaf23255e660b0e8640ef4225eff94e6c2391e5ceaf539b373ef932737dbc8eb4383746b374aca5a018a1f21c1eebb2f53160662338
 DIST docker-pycreds-0.2.2.tar.gz 7787 BLAKE2B 
4ab61bc9bb3f9f75667e7d74212a8e83d214bf2210e200abad593ded94aae8290b216edd28cf2304a8d8d6192faba0b3b764bbfc0f2a446efceaf33558849b84
 SHA512 
dc0394f7cc34b36b6a7edd61fa5937743da573d14b75f7ed06ca9d5c15a980d7c43252e846e529e2bc799e7f7b72fb1f4ca03b28c2677cc38afbfda16fbbcb55
 DIST docker-pycreds-0.2.3.tar.gz 8220 BLAKE2B 
db645de930becc3ad6ecb2d6476d36d1845fbaa55b7c6d2d6590e45036713b6e215b189e6ea961c31c0898e8f231943e05abe96a63c15ac43bebf0f7787b954b
 SHA512 
d4199a48a0bda29ac6126ca9a196c0722667a744998b5f81b360066d48f1bd1f9e6e423df2b53e37117316f3dada6fa47e956c6d2c7d90f851d97a434dcb595f
+DIST docker-pycreds-0.3.0.tar.gz 8544 BLAKE2B 
88a950d7fa027b221ffd999283cb6ee4b0f23115167f27f163085372abccc4d9d5dfeb03ab5d99449d607dc69212bfeb870130d0f91843cca6b9b338d0f4f9ad
 SHA512 
5fa81b375c3ddb6527f416afb11688cb703f75dbd3b1a9efba0cf85e8b3deb903670c94933777b855d48d607596192c72e4d5be96f91ac8e8334e634abf8d2fa

diff --git a/dev-python/docker-pycreds/docker-pycreds-0.3.0.ebuild 
b/dev-python/docker-pycreds/docker-pycreds-0.3.0.ebuild
new file mode 100644
index 000..cf82e0ccca5
--- /dev/null
+++ b/dev-python/docker-pycreds/docker-pycreds-0.3.0.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+inherit distutils-r1
+
+DESCRIPTION="Python bindings for the docker credentials store API"
+HOMEPAGE="https://github.com/shin-/dockerpy-creds/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND=">=dev-python/six-1.4.0[${PYTHON_USEDEP}]"



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

2018-07-12 Thread Manuel Rüger
commit: fcc1abcf126cfe87448bf2fdc2914d77dced7098
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 12 14:49:41 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 12 14:49:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcc1abcf

app-admin/consul: Fix commit hash

Package-Manager: Portage-2.3.42, Repoman-2.3.9

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

diff --git a/app-admin/consul/consul-1.2.0.ebuild 
b/app-admin/consul/consul-1.2.0.ebuild
index fffb722c0cf..1f9dd43d935 100644
--- a/app-admin/consul/consul-1.2.0.ebuild
+++ b/app-admin/consul/consul-1.2.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 inherit golang-vcs-snapshot systemd user
-GIT_COMMIT="12345"
+GIT_COMMIT="2814197"
 KEYWORDS="~amd64"
 EGO_PN="github.com/hashicorp/consul"
 DESCRIPTION="A tool for service discovery, monitoring and configuration"



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

2018-07-12 Thread Manuel Rüger
commit: 72b894a75fbeef95765a4be21a36b2b770882197
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 12 14:48:24 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 12 14:48:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72b894a7

app-emulation/docker-compose: Remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 .../docker-compose/docker-compose-1.21.2.ebuild| 71 --
 1 file changed, 71 deletions(-)

diff --git a/app-emulation/docker-compose/docker-compose-1.21.2.ebuild 
b/app-emulation/docker-compose/docker-compose-1.21.2.ebuild
deleted file mode 100644
index face1dd8c68..000
--- a/app-emulation/docker-compose/docker-compose-1.21.2.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit bash-completion-r1 distutils-r1 vcs-snapshot
-
-MY_PV=${PV/_/}
-
-DESCRIPTION="Multi-container orchestration for Docker"
-HOMEPAGE="https://www.docker.com/";
-SRC_URI="https://github.com/docker/compose/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-CDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/cached-property-1.2.0[${PYTHON_USEDEP}]
-   =dev-python/dockerpty-0.4.1[${PYTHON_USEDEP}]
-   =dev-python/docker-py-3.3.0[${PYTHON_USEDEP}]
-   =dev-python/docopt-0.6.1[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-2.5.1[${PYTHON_USEDEP}]
-   =dev-python/PySocks-1.5.6[${PYTHON_USEDEP}]
-   !~dev-python/PySocks-1.5.7[${PYTHON_USEDEP}]
-   =dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
-   =dev-python/requests-2.6.1[${PYTHON_USEDEP}]
-   >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
-   =dev-python/texttable-0.9[${PYTHON_USEDEP}]
-   =dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
-   =dev-python/enum34-1.0.4[${PYTHON_USEDEP}]' 
'python2_7' )
-   $(python_gen_cond_dep '=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]' 
'python2_7' )
-   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' )
-"
-DEPEND="
-   ${CDEPEND}
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]' 'python2_7' )
-   )
-"
-RDEPEND="${CDEPEND}"
-
-python_test() {
-   ${PYTHON} -m pytest tests/unit || die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   newbashcomp contrib/completion/bash/docker-compose ${PN}
-
-   insinto /usr/share/zsh/site-functions
-   doins contrib/completion/zsh/*
-
-   distutils-r1_python_install_all
-}



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

2018-07-12 Thread Manuel Rüger
commit: 15ab9945e02bc68aed8a30718a98919cd44988f4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 12 14:48:32 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 12 14:48:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15ab9945

dev-python/docker-py: Remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/docker-py/Manifest   |  4 ---
 dev-python/docker-py/docker-py-3.1.4.ebuild | 55 -
 dev-python/docker-py/docker-py-3.2.0.ebuild | 55 -
 dev-python/docker-py/docker-py-3.2.1.ebuild | 55 -
 dev-python/docker-py/docker-py-3.3.0.ebuild | 50 --
 5 files changed, 219 deletions(-)

diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
index 8be2a1383ed..96ed1849b36 100644
--- a/dev-python/docker-py/Manifest
+++ b/dev-python/docker-py/Manifest
@@ -1,7 +1,3 @@
 DIST docker-py-2.4.2.tar.gz 180890 BLAKE2B 
57518a0c8481fde0198100354225cd8a2908af6d3ca2690d98ad80b386ca4c688c7ccd6a34634ce04fb5ab1553b6c0dfbc75d28333a10f28de7188fe2ee7ffde
 SHA512 
3367066b2acd96b85bef28aef00c91d752dc25b3055575b4f2f9c0b981eb4bca81a742bc6da5f97cf039cd9c7d818e3f80101997fe3a2e2c6f3a9c42fd3111c2
 DIST docker-py-2.7.0.tar.gz 196369 BLAKE2B 
dd181dbf32f5afda06e748cb49f15d5fc6ff4a579c64b505308ad0d96913ddc8065d165090ec2b20e1f17a4519988a5665dd7a8c7643ca53aaa4385ceecb1341
 SHA512 
15cf1d8949d71e472f7636ff975cbc4c5f3e18e2d193cb603ade1397a56d0c1ec239167b71be325af99105bc36590a0f0faa1ab010f36fe8baca7807ddfa191b
-DIST docker-py-3.1.4.tar.gz 202064 BLAKE2B 
6ee3672cd1f62cd570d3939805465698879d747215b8424bc4edd79253c5bc25d193582dbfa6aa423f9b183d477486d6347f65ac7245d601d3f1fe2a1fd124ed
 SHA512 
78081010ce4027156d3b4ebafee6023f387ee8e7ee4d77ee671a16a3fcb646fca91c5c36cfbaf94157f8a524a3e1a09b9cbfabf304e278a3c1e0132df5d13d13
-DIST docker-py-3.2.0.tar.gz 205546 BLAKE2B 
0784408a0373721e30cc101bf9e20e93af4721ace3841721b851efa49874163a1684239db6a56b7e91e83ad77eb4290dde61f53d70d6656853cedaff95da90b2
 SHA512 
fa36b65a047aec6dbec07b2ee5ac895b333acc804e372b5b3ccae587045fa03613f4083c66cd6289e188fd78c6f7012c4252e9bbf9f30a980fb94f32efba03b7
-DIST docker-py-3.2.1.tar.gz 205815 BLAKE2B 
fc9b23f57f64e3d25a922b896619f3d03780d446f03adb987c6a203df2c41fbc03b202cc8dac30392158dd0da4d600372b6af284d785179c0cf58f7048735da3
 SHA512 
c66f960bd507d8c4ed99e56480c24d11b13cf49420eee2f0934cede7516a8a9b984e5e0540a1d82d830768d3a5f021861255d55e7bd1b984072cd6e48a44
-DIST docker-py-3.3.0.tar.gz 206523 BLAKE2B 
dd5b1edda8b4c31c3febcedf8352262f090c6232419a0751181c1e765220905b93b50f26091123c31b7193aeb5d94e30f1ba49d114d1c2006a2c60ebaca80865
 SHA512 
ed2dedd57df344ab576053ac6d458808c67ce5aeeacddb1729ea5ebd0fb741e8f08cf9ed472e28d40eaba3a45f6c26727bff0ab7ece832bc3238f441ed149c05
 DIST docker-py-3.4.0.tar.gz 207877 BLAKE2B 
b9a1d95f934fddc576253f9bb1d3060feaf9671d7bfa16e2c8ce2e672407dd880fa20b0e6956ff49430a20c21fdec2bf44d2a07e49ad854b374ea518a7528464
 SHA512 
90e6e64a911f7602cb71f7b6f0e0174b490254f249fcf3d4ce55a8733391881cc12776737c240263f387c4465707c50a6fa54bf44550cfa7ada808614494a1a5

diff --git a/dev-python/docker-py/docker-py-3.1.4.ebuild 
b/dev-python/docker-py/docker-py-3.1.4.ebuild
deleted file mode 100644
index 8108a4abde8..000
--- a/dev-python/docker-py/docker-py-3.1.4.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python client for Docker"
-HOMEPAGE="https://github.com/docker/docker-py";
-SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc test"
-
-RDEPEND="
-   >=dev-python/docker-pycreds-0.2.2[${PYTHON_USEDEP}]
-   !~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 
'python3_4' )
-   $(python_gen_cond_dep '>=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]' 
'python2_7' )
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   ${RDEPEND}
-   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
-   dev-python/pytest-runner[${PYTHON_USEDEP}]
-   >=dev-python/pytest-2.9.1[${PYTHON_USEDEP}]
-   )
-   doc? (
-   dev-python/recommonmark[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.4.6[${PYTHON_USEDEP}]
-   )
-"
-
-python_prepare_all() {
-   sed -i -e "s/import pip//" -e "s/if 'docker-py'.*/if False:/" setup.py 
|| die
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   if use doc; 

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

2018-07-12 Thread Manuel Rüger
commit: 2e931d672c8c6038b2674d7357f9df6fc9f9b664
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 12 14:47:22 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 12 14:47:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e931d67

app-emulation/docker-compose: Fix dependency on docker-py

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 .../{docker-compose-1.21.2.ebuild => docker-compose-1.21.2-r1.ebuild}   | 2 +-
 app-emulation/docker-compose/docker-compose-1.21.2.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/docker-compose/docker-compose-1.21.2.ebuild 
b/app-emulation/docker-compose/docker-compose-1.21.2-r1.ebuild
similarity index 98%
copy from app-emulation/docker-compose/docker-compose-1.21.2.ebuild
copy to app-emulation/docker-compose/docker-compose-1.21.2-r1.ebuild
index 2e64dd53e96..face1dd8c68 100644
--- a/app-emulation/docker-compose/docker-compose-1.21.2.ebuild
+++ b/app-emulation/docker-compose/docker-compose-1.21.2-r1.ebuild
@@ -23,7 +23,7 @@ CDEPEND="
=dev-python/dockerpty-0.4.1[${PYTHON_USEDEP}]
=dev-python/docker-py-3.2.1[${PYTHON_USEDEP}]
+   >=dev-python/docker-py-3.3.0[${PYTHON_USEDEP}]
=dev-python/docopt-0.6.1[${PYTHON_USEDEP}]

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

2018-07-12 Thread Manuel Rüger
commit: f87e46afdd7a346a4acbbfe11baad8a17dd48782
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Jul 12 14:45:15 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Jul 12 14:45:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f87e46af

app-admin/consul: Version bump to 1.2.0

Package-Manager: Portage-2.3.42, Repoman-2.3.9

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

diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest
index 41b14eb6064..2a25d32ed0e 100644
--- a/app-admin/consul/Manifest
+++ b/app-admin/consul/Manifest
@@ -1,3 +1,4 @@
 DIST consul-0.9.3.tar.gz 7278357 BLAKE2B 
041164951fe798f51bc79ef4cf322e3c37b583471d66f0d78b0a100b57ee367a5942ef07fc85adafeb6c014b5a6047dae10da42427600de25656614c235dab1a
 SHA512 
a1c9cdd3e197afbf088bd1866af15c1864cb8d042dc65d2fcc0d9070b8bf2f9380cf2ceadaff6d5bba7ecd379d53f4b8191e1ae6832f1b2c82f21c62f07d8b0f
 DIST consul-1.0.0.tar.gz 7354292 BLAKE2B 
f2e245cec5859e23dd55c991de5c4d68be8526ec7085273660271407d9f1898c803edbffaff3cd4f0d5de114b9d8b2cd205e03002d5685b77f831957b021140c
 SHA512 
8223f79aa1b7bfc5693168b56fbe9a506ca504771c92328afeb99e78dce8699c7532582749a372dfed10dd4b7c440ace0dd248f1ae27247059da3e2f88293a88
 DIST consul-1.0.6.tar.gz 8211299 BLAKE2B 
7ea5df497f4796e572a86127e0854935f97439504aff82fb697f33700e9d138048772f32f171dbbe4f1fb4d1ceefa7ca96cf3dce2a22cdffd4e1906f6befa55b
 SHA512 
c55f09272859b828816ddf548952769172331c22be8a70a7f73ab9362744fb1f4bc5fdf81955a0dbc4101584cf3660f182620dcdc56bcf94b42dce644be232a8
+DIST consul-1.2.0.tar.gz 17187054 BLAKE2B 
5e8d1151efe1e8ad5932886367d0012774713081aa2725f10d45af1e05751e328d76471ff3cbd85031c252c65cde0137f96c3ef86eca7e3e7f6b28e2d20ed0d5
 SHA512 
1c018a5f35164a899a086ccdae94cb5e6e2a490e4c788d65b0026dbf448950d0c1038b2d61cb10f5e8c9ad22a1affad64dd4a7086b59dffd115d40aa7b3d0cce

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



[gentoo-commits] proj/blogs-gentoo:master commit in: plugins/akismet/views/, plugins/akismet/

2018-07-12 Thread Anthony G. Basile
commit: 0d8f300774678bf305af12410615c43fd751aaee
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jul 12 14:39:14 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jul 12 14:39:14 2018 +
URL:https://gitweb.gentoo.org/proj/blogs-gentoo.git/commit/?id=0d8f3007

Update akismet 4.0.8

Signed-off-by: Anthony G. Basile  gentoo.org>

 plugins/akismet/akismet.php   | 4 ++--
 plugins/akismet/class.akismet.php | 2 +-
 plugins/akismet/readme.txt| 9 -
 plugins/akismet/views/config.php  | 2 +-
 plugins/akismet/views/notice.php  | 2 +-
 5 files changed, 13 insertions(+), 6 deletions(-)

diff --git a/plugins/akismet/akismet.php b/plugins/akismet/akismet.php
index e16f888..d4f2135 100644
--- a/plugins/akismet/akismet.php
+++ b/plugins/akismet/akismet.php
@@ -6,7 +6,7 @@
 Plugin Name: Akismet Anti-Spam
 Plugin URI: https://akismet.com/
 Description: Used by millions, Akismet is quite possibly the best way in the 
world to protect your blog from spam. It keeps your site 
protected even while you sleep. To get started: activate the Akismet plugin and 
then go to your Akismet Settings page to set up your API key.
-Version: 4.0.7
+Version: 4.0.8
 Author: Automattic
 Author URI: https://automattic.com/wordpress-plugins/
 License: GPLv2 or later
@@ -37,7 +37,7 @@ if ( !function_exists( 'add_action' ) ) {
exit;
 }
 
-define( 'AKISMET_VERSION', '4.0.7' );
+define( 'AKISMET_VERSION', '4.0.8' );
 define( 'AKISMET__MINIMUM_WP_VERSION', '4.0' );
 define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
 define( 'AKISMET_DELETE_LIMIT', 10 );

diff --git a/plugins/akismet/class.akismet.php 
b/plugins/akismet/class.akismet.php
index 146c13c..3a1307f 100644
--- a/plugins/akismet/class.akismet.php
+++ b/plugins/akismet/class.akismet.php
@@ -1416,7 +1416,7 @@ p {
echo apply_filters(
'akismet_comment_form_privacy_notice_markup',
'' . 
sprintf(
-   __( 'This site uses Akismet to reduce spam. Learn how your comment data is processed.', 
'akismet' ),
+   __( 'This site uses Akismet to reduce spam. Learn how your comment data 
is processed.', 'akismet' ),
'https://akismet.com/privacy/'
) . ''
);

diff --git a/plugins/akismet/readme.txt b/plugins/akismet/readme.txt
index f6d67c1..4853f6f 100644
--- a/plugins/akismet/readme.txt
+++ b/plugins/akismet/readme.txt
@@ -3,7 +3,7 @@ Contributors: matt, ryan, andy, mdawaffe, tellyworth, 
josephscott, lessbloat, eo
 Tags: akismet, comments, spam, antispam, anti-spam, anti spam, comment 
moderation, comment spam, contact form spam, spam comments
 Requires at least: 4.0
 Tested up to: 4.9.6
-Stable tag: 4.0.7
+Stable tag: 4.0.8
 License: GPLv2 or later
 
 Akismet checks your comments and contact form submissions against our global 
database of spam to protect you and your site from malicious content.
@@ -30,6 +30,13 @@ Upload the Akismet plugin to your blog, Activate it, then 
enter your [Akismet.co
 
 == Changelog ==
 
+= 4.0.8 =
+*Release Date - 19 June 2018*
+
+* Improved the grammar and consistency of the in-admin privacy related notes 
(notice and config).
+* Revised in-admin explanation of the comment form privacy notice to make its 
usage clearer. 
+* Added `rel="nofollow noopener"` to the comment form privacy notice to 
improve SEO and security.
+
 = 4.0.7 =
 *Release Date - 28 May 2018*
 

diff --git a/plugins/akismet/views/config.php b/plugins/akismet/views/config.php
index 53d9fa8..cc6fdd2 100644
--- a/plugins/akismet/views/config.php
+++ b/plugins/akismet/views/config.php
@@ -159,7 +159,7 @@

 /> 


 /> 


-   

+   





diff --git a/plugins/akismet/views/notice.php b/plugins/akismet/views/notice.php
index 9f482b2..62476bd 100644
--- a/plugins/akismet/views/notice.php
+++ b/plugins/akismet/views/notice.php
@@ -135,7 +135,7 @@
 
 

-   
+   
enable or disable this feature. More 
information.', 'akismet' ), admin_url( apply_filters( 
'akismet_comment_form_privacy_notice_url_display', 
'options-general.php?page=akismet-key-config&akismet_comment_form_privacy_notice=display'
 ) ), admin_url( apply_filters( 'akismet_comment_form_privacy_notice_url_hide', 
'options-general.php?page=akismet-key-config&akismet_comment_form_privacy_noti

[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/system/

2018-07-12 Thread Jason Zaman
commit: 85c461c93005579188f0b3b50a6873678d9e2270
Author: Jason Zaman  perfinion  com>
AuthorDate: Tue Jul 10 15:03:18 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 11 14:41:35 2018 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=85c461c9

iptables: fcontexts for 1.8.0

The binary changed from /sbin/xtables-multi to xtables-legacy-multi and
xtables-nft-multi

 policy/modules/system/iptables.fc | 4 
 1 file changed, 4 insertions(+)

diff --git a/policy/modules/system/iptables.fc 
b/policy/modules/system/iptables.fc
index 32877b26..ba65e811 100644
--- a/policy/modules/system/iptables.fc
+++ b/policy/modules/system/iptables.fc
@@ -20,7 +20,9 @@
 /usr/bin/ipvsadm-save  --  
gen_context(system_u:object_r:iptables_exec_t,s0)
 /usr/bin/nft   --  
gen_context(system_u:object_r:iptables_exec_t,s0)
 /usr/bin/xtables-compat-multi  --  
gen_context(system_u:object_r:iptables_exec_t,s0)
+/usr/bin/xtables-legacy-multi  --  
gen_context(system_u:object_r:iptables_exec_t,s0)
 /usr/bin/xtables-multi --  
gen_context(system_u:object_r:iptables_exec_t,s0)
+/usr/bin/xtables-nft-multi --  
gen_context(system_u:object_r:iptables_exec_t,s0)
 
 /usr/lib/systemd/system/[^/]*arptables.* --
gen_context(system_u:object_r:iptables_unit_t,s0)
 /usr/lib/systemd/system/[^/]*ebtables.* -- 
gen_context(system_u:object_r:iptables_unit_t,s0)
@@ -40,4 +42,6 @@
 /usr/sbin/ipvsadm-save --  
gen_context(system_u:object_r:iptables_exec_t,s0)
 /usr/sbin/nft  --  
gen_context(system_u:object_r:iptables_exec_t,s0)
 /usr/sbin/xtables-compat-multi --  
gen_context(system_u:object_r:iptables_exec_t,s0)
+/usr/sbin/xtables-legacy-multi --  
gen_context(system_u:object_r:iptables_exec_t,s0)
 /usr/sbin/xtables-multi--  
gen_context(system_u:object_r:iptables_exec_t,s0)
+/usr/sbin/xtables-nft-multi--  
gen_context(system_u:object_r:iptables_exec_t,s0)



[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/contrib/

2018-07-12 Thread Jason Zaman
commit: 6ee55a36f4be584799e0ee0df5f114e0a166e583
Author: Jason Zaman  perfinion  com>
AuthorDate: Mon Jul  9 13:06:29 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 11 14:42:50 2018 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=6ee55a36

chromium: allow xserver_misc_device access for nvidia gpus

 policy/modules/contrib/chromium.te | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/policy/modules/contrib/chromium.te 
b/policy/modules/contrib/chromium.te
index 72621719..7e7f4490 100644
--- a/policy/modules/contrib/chromium.te
+++ b/policy/modules/contrib/chromium.te
@@ -160,6 +160,8 @@ dev_read_sound(chromium_t)
 dev_write_sound(chromium_t)
 dev_read_urand(chromium_t)
 dev_read_rand(chromium_t)
+dev_rw_xserver_misc(chromium_t)
+dev_map_xserver_misc(chromium_t)
 
 domain_dontaudit_search_all_domains_state(chromium_t)
 



[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/admin/

2018-07-12 Thread Jason Zaman
commit: 2183738fdf2058f431c6eb7fbdadf9c398eb0eac
Author: Jason Zaman  perfinion  com>
AuthorDate: Mon Jul  9 13:04:40 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 11 14:42:50 2018 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=2183738f

portage: allow getattr xserver_misc_device for cuda

 policy/modules/admin/portage.te | 4 
 1 file changed, 4 insertions(+)

diff --git a/policy/modules/admin/portage.te b/policy/modules/admin/portage.te
index 4d1a4955..33547b6e 100644
--- a/policy/modules/admin/portage.te
+++ b/policy/modules/admin/portage.te
@@ -477,6 +477,8 @@ gen_tunable(portage_enable_test, false)
 
auth_use_nsswitch(portage_t)
 
+   dev_getattr_xserver_misc_dev(portage_t)
+
# Support cgroup FEATURES
fs_mount_cgroup(portage_t)
fs_mounton_cgroup(portage_t)
@@ -511,6 +513,8 @@ gen_tunable(portage_enable_test, false)
# install-xattr does listxattr() which throws a lot of this
dontaudit portage_sandbox_t self:capability sys_admin;
 
+   dev_getattr_xserver_misc_dev(portage_sandbox_t)
+
tunable_policy(`portage_enable_test',`
# lots of tests connect over loopback
corenet_tcp_bind_all_unreserved_ports(portage_sandbox_t)



[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/services/

2018-07-12 Thread Jason Zaman
commit: 08115177f277119abef4b9186ef84ef575f9dde6
Author: Jason Zaman  perfinion  com>
AuthorDate: Tue Jul 10 15:03:16 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 11 14:41:35 2018 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=08115177

xserver: label .cache/fontconfig as user_fonts_cache_t

 policy/modules/services/xserver.fc | 1 +
 policy/modules/services/xserver.if | 1 +
 policy/modules/services/xserver.te | 2 +-
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/policy/modules/services/xserver.fc 
b/policy/modules/services/xserver.fc
index 171a8df1..b7f8612d 100644
--- a/policy/modules/services/xserver.fc
+++ b/policy/modules/services/xserver.fc
@@ -2,6 +2,7 @@
 # HOME_DIR
 #
 HOME_DIR/\.cache/mesa_shader_cache(/.*)?   
gen_context(system_u:object_r:mesa_shader_cache_t,s0)
+HOME_DIR/\.cache/fontconfig(/.*)?  
gen_context(system_u:object_r:user_fonts_cache_t,s0)
 HOME_DIR/\.dmrc--  
gen_context(system_u:object_r:dmrc_home_t,s0)
 HOME_DIR/\.fonts\.conf --  
gen_context(system_u:object_r:user_fonts_config_t,s0)
 HOME_DIR/\.fonts(/.*)? gen_context(system_u:object_r:user_fonts_t,s0)

diff --git a/policy/modules/services/xserver.if 
b/policy/modules/services/xserver.if
index c1c07b32..24caccad 100644
--- a/policy/modules/services/xserver.if
+++ b/policy/modules/services/xserver.if
@@ -516,6 +516,7 @@ interface(`xserver_use_user_fonts',`
allow $1 user_fonts_config_t:file read_file_perms;
 
userdom_search_user_home_dirs($1)
+   xdg_search_cache_dirs($1)
 ')
 
 

diff --git a/policy/modules/services/xserver.te 
b/policy/modules/services/xserver.te
index 4ce36384..1202b8e5 100644
--- a/policy/modules/services/xserver.te
+++ b/policy/modules/services/xserver.te
@@ -125,7 +125,7 @@ userdom_user_home_content(user_fonts_t)
 type user_fonts_cache_t;
 typealias user_fonts_cache_t alias { staff_fonts_cache_t sysadm_fonts_cache_t 
};
 typealias user_fonts_cache_t alias { auditadm_fonts_cache_t 
secadm_fonts_cache_t };
-userdom_user_home_content(user_fonts_cache_t)
+xdg_cache_content(user_fonts_cache_t)
 
 type user_fonts_config_t;
 typealias user_fonts_config_t alias { staff_fonts_config_t 
sysadm_fonts_config_t };



[gentoo-commits] proj/hardened-refpolicy:master commit in: gentoo/

2018-07-12 Thread Jason Zaman
commit: 922890b53a64f96afb52d7dbc4bdf1c8ef702410
Author: Jason Zaman  perfinion  com>
AuthorDate: Wed Jul 11 14:42:33 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 11 14:42:50 2018 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=922890b5

Merge upstream

 gentoo/STATE | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gentoo/STATE b/gentoo/STATE
index f2ff65ae..b3db498c 100644
--- a/gentoo/STATE
+++ b/gentoo/STATE
@@ -1 +1 @@
-master dda33fde949cc22cac74d4301684c71741c37131
+master d301e83161cc62221d39a6361790a12fc88c4cc7



[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/services/, policy/modules/kernel/, policy/modules/system/

2018-07-12 Thread Jason Zaman
commit: b655a97dc1dbc580f51f58201bb101b39da39ea0
Author: Jason Zaman  perfinion  com>
AuthorDate: Tue Jul 10 15:03:17 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 11 14:41:35 2018 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=b655a97d

Allow map xserver_misc_device_t for nvidia driver

 policy/modules/kernel/devices.if   | 18 ++
 policy/modules/services/xserver.if |  1 +
 policy/modules/services/xserver.te |  1 +
 policy/modules/system/init.te  |  1 +
 4 files changed, 21 insertions(+)

diff --git a/policy/modules/kernel/devices.if b/policy/modules/kernel/devices.if
index 3e7f4538..f68d60ab 100644
--- a/policy/modules/kernel/devices.if
+++ b/policy/modules/kernel/devices.if
@@ -5079,6 +5079,24 @@ interface(`dev_rw_xserver_misc',`
rw_chr_files_pattern($1, device_t, xserver_misc_device_t)
 ')
 
+
+## 
+## Map X server miscellaneous devices.
+## 
+## 
+## 
+## Domain allowed access.
+## 
+## 
+#
+interface(`dev_map_xserver_misc',`
+   gen_require(`
+   type xserver_misc_device_t;
+   ')
+
+   allow $1 xserver_misc_device_t:chr_file map;
+')
+
 
 ## 
 ## Read and write to the zero device (/dev/zero).

diff --git a/policy/modules/services/xserver.if 
b/policy/modules/services/xserver.if
index 24caccad..7e13483b 100644
--- a/policy/modules/services/xserver.if
+++ b/policy/modules/services/xserver.if
@@ -82,6 +82,7 @@ interface(`xserver_restricted_role',`
allow $2 xserver_tmp_t:file { getattr read };
 
dev_rw_xserver_misc($2)
+   dev_map_xserver_misc($2)
dev_rw_power_management($2)
dev_read_input($2)
dev_read_misc($2)

diff --git a/policy/modules/services/xserver.te 
b/policy/modules/services/xserver.te
index 1202b8e5..2e85c3bd 100644
--- a/policy/modules/services/xserver.te
+++ b/policy/modules/services/xserver.te
@@ -749,6 +749,7 @@ dev_read_raw_memory(xserver_t)
 dev_wx_raw_memory(xserver_t)
 # for other device nodes such as the NVidia binary-only driver
 dev_rw_xserver_misc(xserver_t)
+dev_map_xserver_misc(xserver_t)
 # read events - the synaptics touchpad driver reads raw events
 dev_rw_input_dev(xserver_t)
 dev_rwx_zero(xserver_t)

diff --git a/policy/modules/system/init.te b/policy/modules/system/init.te
index 7ffda24c..a172 100644
--- a/policy/modules/system/init.te
+++ b/policy/modules/system/init.te
@@ -635,6 +635,7 @@ dev_delete_generic_symlinks(initrc_t)
 dev_getattr_all_blk_files(initrc_t)
 dev_getattr_all_chr_files(initrc_t)
 dev_rw_xserver_misc(initrc_t)
+dev_map_xserver_misc(initrc_t)
 
 domain_kill_all_domains(initrc_t)
 domain_signal_all_domains(initrc_t)



[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/apps/, policy/modules/system/, policy/modules/services/, ...

2018-07-12 Thread Jason Zaman
commit: 2e88191ba4aceb370fa048002db91879d0688e5e
Author: Chris PeBenito  ieee  org>
AuthorDate: Wed Jul 11 00:11:40 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 11 14:41:35 2018 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=2e88191b

mozilla, devices, selinux, xserver, init, iptables: Module version bump.

 policy/modules/apps/mozilla.te | 2 +-
 policy/modules/kernel/devices.te   | 2 +-
 policy/modules/kernel/selinux.te   | 2 +-
 policy/modules/services/xserver.te | 2 +-
 policy/modules/system/init.te  | 2 +-
 policy/modules/system/iptables.te  | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/policy/modules/apps/mozilla.te b/policy/modules/apps/mozilla.te
index 1ae38bbf..12e1d39a 100644
--- a/policy/modules/apps/mozilla.te
+++ b/policy/modules/apps/mozilla.te
@@ -1,4 +1,4 @@
-policy_module(mozilla, 2.14.0)
+policy_module(mozilla, 2.14.1)
 
 
 #

diff --git a/policy/modules/kernel/devices.te b/policy/modules/kernel/devices.te
index 88471926..4ce5fecf 100644
--- a/policy/modules/kernel/devices.te
+++ b/policy/modules/kernel/devices.te
@@ -1,4 +1,4 @@
-policy_module(devices, 1.23.0)
+policy_module(devices, 1.23.1)
 
 
 #

diff --git a/policy/modules/kernel/selinux.te b/policy/modules/kernel/selinux.te
index 66a89daa..e87b92ab 100644
--- a/policy/modules/kernel/selinux.te
+++ b/policy/modules/kernel/selinux.te
@@ -1,4 +1,4 @@
-policy_module(selinux, 1.15.0)
+policy_module(selinux, 1.15.1)
 
 
 #

diff --git a/policy/modules/services/xserver.te 
b/policy/modules/services/xserver.te
index 2e85c3bd..4fc46f4f 100644
--- a/policy/modules/services/xserver.te
+++ b/policy/modules/services/xserver.te
@@ -1,4 +1,4 @@
-policy_module(xserver, 3.16.0)
+policy_module(xserver, 3.16.1)
 
 gen_require(`
class x_drawable all_x_drawable_perms;

diff --git a/policy/modules/system/init.te b/policy/modules/system/init.te
index a172..475f5fa4 100644
--- a/policy/modules/system/init.te
+++ b/policy/modules/system/init.te
@@ -1,4 +1,4 @@
-policy_module(init, 2.5.0)
+policy_module(init, 2.5.1)
 
 gen_require(`
class passwd rootok;

diff --git a/policy/modules/system/iptables.te 
b/policy/modules/system/iptables.te
index 9ccb8e9f..bc459711 100644
--- a/policy/modules/system/iptables.te
+++ b/policy/modules/system/iptables.te
@@ -1,4 +1,4 @@
-policy_module(iptables, 1.20.0)
+policy_module(iptables, 1.20.1)
 
 
 #



[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/apps/

2018-07-12 Thread Jason Zaman
commit: c3e2c66e2e2789edab5f851bb70428c590e9fbd9
Author: Jason Zaman  perfinion  com>
AuthorDate: Tue Jul 10 15:03:15 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 11 14:41:35 2018 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=c3e2c66e

mozilla: xdg updates

 policy/modules/apps/mozilla.te | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/policy/modules/apps/mozilla.te b/policy/modules/apps/mozilla.te
index e57821da..1ae38bbf 100644
--- a/policy/modules/apps/mozilla.te
+++ b/policy/modules/apps/mozilla.te
@@ -206,6 +206,7 @@ userdom_use_user_ptys(mozilla_t)
 
 userdom_manage_user_tmp_dirs(mozilla_t)
 userdom_manage_user_tmp_files(mozilla_t)
+userdom_map_user_tmp_files(mozilla_t)
 
 userdom_user_content_access_template(mozilla, { mozilla_t mozilla_plugin_t })
 userdom_user_home_dir_filetrans_user_home_content(mozilla_t, { dir file })
@@ -219,6 +220,7 @@ xdg_read_config_files(mozilla_t)
 xdg_read_data_files(mozilla_t)
 xdg_manage_downloads(mozilla_t)
 
+xserver_rw_mesa_shader_cache(mozilla_t)
 xserver_user_x_domain_template(mozilla, mozilla_t, mozilla_tmpfs_t)
 xserver_dontaudit_read_xdm_tmp_files(mozilla_t)
 xserver_dontaudit_getattr_xdm_tmp_sockets(mozilla_t)
@@ -519,6 +521,7 @@ 
miscfiles_dontaudit_setattr_fonts_cache_dirs(mozilla_plugin_t)
 
 userdom_manage_user_tmp_dirs(mozilla_plugin_t)
 userdom_manage_user_tmp_files(mozilla_plugin_t)
+userdom_map_user_tmp_files(mozilla_plugin_t)
 
 userdom_user_home_dir_filetrans_user_home_content(mozilla_plugin_t, { dir file 
})
 



[gentoo-commits] proj/hardened-refpolicy:master commit in: policy/modules/kernel/

2018-07-12 Thread Jason Zaman
commit: 792f78b7b4b4289a8044c300fcbe02fb7ceab157
Author: Jason Zaman  perfinion  com>
AuthorDate: Tue Jul 10 15:03:14 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 11 14:41:35 2018 +
URL:
https://gitweb.gentoo.org/proj/hardened-refpolicy.git/commit/?id=792f78b7

selinux: compute_access_vector requires creating netlink_selinux_sockets

 policy/modules/kernel/selinux.if | 1 +
 1 file changed, 1 insertion(+)

diff --git a/policy/modules/kernel/selinux.if b/policy/modules/kernel/selinux.if
index 8123b25f..6790e5d0 100644
--- a/policy/modules/kernel/selinux.if
+++ b/policy/modules/kernel/selinux.if
@@ -534,6 +534,7 @@ interface(`selinux_compute_access_vector',`
')
 
dev_search_sysfs($1)
+   allow $1 self:netlink_selinux_socket create_socket_perms;
allow $1 security_t:dir list_dir_perms;
allow $1 security_t:file rw_file_perms;
allow $1 security_t:security compute_av;



[gentoo-commits] proj/blogs-gentoo:master commit in: themes/mantra/resources/css/, themes/mantra/admin/, themes/mantra/includes/, ...

2018-07-12 Thread Anthony G. Basile
commit: bf7e621ff2bd24636f173bbd9fb98bfd7ce20b5f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jul 12 14:34:39 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jul 12 14:34:39 2018 +
URL:https://gitweb.gentoo.org/proj/blogs-gentoo.git/commit/?id=bf7e621f

Update mantra 3.0.5

Signed-off-by: Anthony G. Basile  gentoo.org>

 themes/mantra/admin/defaults.php |  5 +++--
 themes/mantra/admin/js/admin.js  |  8 
 themes/mantra/admin/main.php |  1 +
 themes/mantra/admin/settings.php | 18 --
 themes/mantra/functions.php  |  2 +-
 themes/mantra/includes/custom-styles.php |  2 +-
 themes/mantra/includes/theme-setup.php   |  3 +--
 themes/mantra/readme.txt | 12 ++--
 themes/mantra/resources/css/editor-style.css | 10 +++---
 themes/mantra/resources/css/style-mobile.css |  6 ++
 themes/mantra/style.css  | 11 ---
 11 files changed, 62 insertions(+), 16 deletions(-)

diff --git a/themes/mantra/admin/defaults.php b/themes/mantra/admin/defaults.php
index 8acc4c2..0668296 100644
--- a/themes/mantra/admin/defaults.php
+++ b/themes/mantra/admin/defaults.php
@@ -176,7 +176,7 @@ $mantra_defaults = array(
"mantra_excerptarchive" => "Excerpt",
"mantra_excerptwords" => "50",
"mantra_magazinelayout" => "Disable",
-   "mantra_excerptdots" => "…",
+   "mantra_excerptdots" => "...",
"mantra_excerptcont" => " Continue reading",
"mantra_excerpttags" => "Disable",
 
@@ -206,7 +206,8 @@ $mantra_defaults = array(
 
"mantra_copyright" => "Lorem ipsum dolor sit amet, consectetur 
adipiscing elit. Nulla massa diam, tempus a finibus et, euismod nec arcu. 
Praesent ultrices massa at molestie facilisis.",
"mantra_customcss" => "/* Mantra Custom CSS */  ",
-   "mantra_customjs" => ""
+   "mantra_customjs" => "",
+   "mantra_editorstyle" => 1,

 );
 

diff --git a/themes/mantra/admin/js/admin.js b/themes/mantra/admin/js/admin.js
index d518ed2..d026e51 100644
--- a/themes/mantra/admin/js/admin.js
+++ b/themes/mantra/admin/js/admin.js
@@ -68,34 +68,42 @@ jQuery(document).ready(function() {
 
case "Slider Shortcode" :
jQuery('#sliderShortcode').show("normal");
+   jQuery('#sliderParameters').hide("normal");
break;
 
case "Custom Slides" :
jQuery('#sliderCustomSlides').show("normal");
+   jQuery('#sliderParameters').show("normal");
break;
 
case "Latest Posts" :
jQuery('#sliderLatestPosts').show("normal");
+   jQuery('#sliderParameters').show("normal");
break;
 
case "Random Posts" :
jQuery('#sliderRandomPosts').show("normal");
+   jQuery('#sliderParameters').show("normal");
break;
 
case "Sticky Posts" :
jQuery('#sliderStickyPosts').show("normal");
+   jQuery('#sliderParameters').show("normal");
break;
 
case "Latest Posts from Category" :
jQuery('#sliderLatestCateg').show("normal");
+   jQuery('#sliderParameters').show("normal");
break;
 
case "Random Posts from Category" :
jQuery('#sliderRandomCateg').show("normal");
+   jQuery('#sliderParameters').show("normal");
break;
 
case "Specific Posts" :
jQuery('#sliderSpecificPosts').show("normal");
+   jQuery('#sliderParameters').show("normal");
break;
 
}//switch

diff --git a/themes/mantra/admin/main.php b/themes/mantra/admin/main.php
index 3550089..d769a9e 100644
--- a/themes/mantra/admin/main.php
+++ b/themes/mantra/admin/main.php
@@ -215,6 +215,7 @@ function mantra_init_fn(){
add_settings_field('mantra_copyright', __('Custom Footer 
Text','mantra') , 'cryout_setting_copyright_fn', 'mantra-page', 'misc_section');
add_settings_field('mantra_customcss', __('Custom CSS','mantra') , 
'cryout_setting_customcss_fn', 'mantra-page', 'misc_section');
add_settings_field('mantra_customjs', __('Custom JavaScript','mantra') 
, 'cryout_setting_customjs_fn', 'mantra-page', 'misc_section');
+   add_settings_field('mantra_editorstyle', __('Editor Styling','mantra') 
, 'cryout_setting_editorstyle_fn', 'mantra-page', 'misc_section');
 }
 
 // Display the admin options page

diff --git a/themes/mantra/admin/settings.php b/themes/mantra/admin/settings.php
index 7

[gentoo-commits] proj/releng:master commit in: releases/weekly/portage/isos/package.accept_keywords/, ...

2018-07-12 Thread Ben Kohler
commit: d42c75f514e5441c6eb03af6e6be33fc731f91b0
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Jul 12 13:03:51 2018 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Jul 12 13:03:51 2018 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=d42c75f5

portage/isos: clean out obsolete masks & keywords

 releases/weekly/portage/isos/package.accept_keywords/genkernel | 2 --
 releases/weekly/portage/isos/package.mask/libtool  | 1 -
 releases/weekly/portage/isos/package.mask/modutils | 2 --
 releases/weekly/portage/isos/package.mask/openrc   | 2 --
 releases/weekly/portage/isos/package.mask/perl | 1 -
 releases/weekly/portage/isos/package.mask/sysvinit | 1 -
 6 files changed, 9 deletions(-)

diff --git a/releases/weekly/portage/isos/package.accept_keywords/genkernel 
b/releases/weekly/portage/isos/package.accept_keywords/genkernel
deleted file mode 100644
index 3ca4af85..
--- a/releases/weekly/portage/isos/package.accept_keywords/genkernel
+++ /dev/null
@@ -1,2 +0,0 @@
-# Pull in newer version for System.map fixes.
-=sys-kernel/genkernel-3.4.52.4-r1

diff --git a/releases/weekly/portage/isos/package.mask/libtool 
b/releases/weekly/portage/isos/package.mask/libtool
deleted file mode 100644
index 9e600485..
--- a/releases/weekly/portage/isos/package.mask/libtool
+++ /dev/null
@@ -1 +0,0 @@
-

[gentoo-commits] proj/releng:master commit in: releases/weekly/specs/ia64/, releases/weekly/specs/sparc/sparc64/, ...

2018-07-12 Thread Ben Kohler
commit: 2c03ec60fbac79ec3221b75bb35886b8a809f45e
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Jul 12 12:58:16 2018 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Jul 12 12:58:16 2018 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=2c03ec60

specs: remove unused USE flags from livecds

 releases/weekly/specs/alpha/installcd-stage1.spec |  2 --
 releases/weekly/specs/alpha/installcd-stage2-minimal.spec | 10 --
 .../specs/amd64/hardened/admincd-stage1-selinux.spec  |  3 ---
 releases/weekly/specs/amd64/hardened/admincd-stage1.spec  |  3 ---
 .../specs/amd64/hardened/admincd-stage2-selinux.spec  |  5 -
 releases/weekly/specs/amd64/hardened/admincd-stage2.spec  |  5 -
 releases/weekly/specs/amd64/hardened/stage4-minimal.spec  |  3 ---
 .../specs/amd64/hardened/stage4-nomultilib-minimal.spec   |  3 ---
 releases/weekly/specs/amd64/installcd-stage1.spec |  3 ---
 releases/weekly/specs/amd64/installcd-stage2-minimal.spec |  5 -
 releases/weekly/specs/amd64/livecd-stage1.spec|  1 -
 releases/weekly/specs/amd64/livecd-stage2.spec|  2 +-
 releases/weekly/specs/amd64/livedvd-stage1.spec   |  1 -
 releases/weekly/specs/amd64/livedvd-stage2.spec   |  2 +-
 releases/weekly/specs/amd64/stage4-minimal.spec   |  3 ---
 .../weekly/specs/amd64/stage4-nomultilib-minimal.spec |  3 ---
 releases/weekly/specs/hppa/installcd-stage2-minimal.spec  | 10 --
 .../weekly/specs/hppa/installcd-stage2-universal.spec | 10 --
 releases/weekly/specs/ia64/installcd-stage1.spec  |  2 --
 releases/weekly/specs/ia64/installcd-stage2-minimal.spec  |  5 -
 releases/weekly/specs/ppc/ppc64/installcd-stage1.spec |  3 ---
 .../weekly/specs/ppc/ppc64/installcd-stage2-minimal.spec  | 15 ---
 releases/weekly/specs/sparc/sparc64/installcd-stage1.spec |  3 ---
 .../specs/sparc/sparc64/installcd-stage2-minimal.spec |  5 -
 releases/weekly/specs/x86/hardened/admincd-stage1.spec|  3 ---
 releases/weekly/specs/x86/hardened/admincd-stage2.spec|  5 -
 releases/weekly/specs/x86/hardened/installcd-stage1.spec  |  2 --
 .../specs/x86/hardened/installcd-stage2-minimal.spec  |  5 -
 releases/weekly/specs/x86/i686/livecd-stage1.spec |  1 -
 releases/weekly/specs/x86/i686/livecd-stage2.spec |  2 +-
 releases/weekly/specs/x86/i686/livedvd-stage1.spec|  1 -
 releases/weekly/specs/x86/i686/livedvd-stage2.spec|  2 +-
 releases/weekly/specs/x86/installcd-stage1.spec   |  2 --
 releases/weekly/specs/x86/installcd-stage2-minimal.spec   |  5 -
 34 files changed, 4 insertions(+), 131 deletions(-)

diff --git a/releases/weekly/specs/alpha/installcd-stage1.spec 
b/releases/weekly/specs/alpha/installcd-stage1.spec
index b2a2f250..14c7bfd8 100644
--- a/releases/weekly/specs/alpha/installcd-stage1.spec
+++ b/releases/weekly/specs/alpha/installcd-stage1.spec
@@ -6,11 +6,9 @@ profile: default/linux/alpha/13.0
 snapshot: 2008.0
 source_subpath: default/stage3-alpha-2008.0
 livecd/use:
-   deprecated
fbcon
ipv6
livecd
-   loop-aes
lvm1
ncurses
nls

diff --git a/releases/weekly/specs/alpha/installcd-stage2-minimal.spec 
b/releases/weekly/specs/alpha/installcd-stage2-minimal.spec
index 5bbbce01..2a48ad27 100644
--- a/releases/weekly/specs/alpha/installcd-stage2-minimal.spec
+++ b/releases/weekly/specs/alpha/installcd-stage2-minimal.spec
@@ -21,18 +21,13 @@ boot/kernel/gentoo/config: 
../../kconfig/alpha/installcd-3.8.13.config
 boot/kernel/gentoo/use:
-*
atm
-   deprecated
fbcon
-   fbcondecor
ipv6
livecd
-   loop-aes
lvm1
-   mng
ncurses
nls
nptl
-   nptlonly
pam
png
readline
@@ -47,18 +42,13 @@ boot/kernel/gentoo_nolsa/config: 
../../kconfig/alpha/installcd-3.8.13.nolsa.conf
 boot/kernel/gentoo_nolsa/use:
-*
atm
-   deprecated
fbcon
-   fbcondecor
ipv6
livecd
-   loop-aes
lvm1
-   mng
ncurses
nls
nptl
-   nptlonly
pam
png
readline

diff --git a/releases/weekly/specs/amd64/hardened/admincd-stage1-selinux.spec 
b/releases/weekly/specs/amd64/hardened/admincd-stage1-selinux.spec
index af42ad72..c62c6c99 100644
--- a/releases/weekly/specs/amd64/hardened/admincd-stage1-selinux.spec
+++ b/releases/weekly/specs/amd64/hardened/admincd-stage1-selinux.spec
@@ -10,18 +10,15 @@ portage_confdir: @REPO_DIR@/releases/weekly/portage/isos
 
 livecd/use:
caps
-   deprecated
fbcon
filecaps
ipv6
livecd
-   loop-aes
lvm1
modules
ncurses
nls
nptl
-   nptlonly
pam
readline
socks5

diff --git a/releases/weekly/specs/amd64/hardened/admincd-stage1.spec 
b/rele

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

2018-07-12 Thread Ben Kohler
commit: a7ff9791ae928eb9d8eaeeb8c23d78be619f5cbc
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Jul 12 14:18:10 2018 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Jul 12 14:18:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7ff9791

net-wireless/unifi: bump to 5.9.12

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 net-wireless/unifi/Manifest|  1 +
 net-wireless/unifi/unifi-5.9.12.ebuild | 69 ++
 2 files changed, 70 insertions(+)

diff --git a/net-wireless/unifi/Manifest b/net-wireless/unifi/Manifest
index 3771883bed3..acc36f0a6fc 100644
--- a/net-wireless/unifi/Manifest
+++ b/net-wireless/unifi/Manifest
@@ -2,4 +2,5 @@ DIST unifi-5.6.39.zip 63559153 BLAKE2B 
377c9cbcb49f3f7fe687c7877ca37b4cf4c62076d
 DIST unifi-5.7.28.zip 79362245 BLAKE2B 
5edb7b92d602ba780b0fa7613360ada39f09b347b247945761af80d0180d4653b19cb5cd1d7bd11332a85de8481c4981b111e572cb755a83b676362494a5505c
 SHA512 
f6ba667a2f0b5959ed715a190fdbdfe308ea256c2d485f96d43fe797912dfe6992cbaed95add5899293fabdd371c1814572bf1189a4ce93c632743dca40b87e3
 DIST unifi-5.8.23.zip 80086708 BLAKE2B 
ea7aec61d74132a47843084f1987e6e016c4fb1ec96d077dac2a9b122003274b0314927404468669a5d7cc0bdb6a307c97bca09f663b180d15bf18436b35408b
 SHA512 
2b42df2a84574ac9e282c7ff59eb86ce29170ea7ef5957690dec8772c90acda3c08c633b3bceeac08bb73ff1460143207a64d2405de19436faf20a042849231b
 DIST unifi-5.8.24.zip 80086706 BLAKE2B 
00530b5e141e9444120efeb6ea5b3106781fb5b15a1ade44b71675a726ae7245221af694b36a922a4d047f78567a7bd9e1354d6dde442dfccd58a49f87079403
 SHA512 
cf7145d779893c1c9709eef7364154503dd1232f88cce38facc748426d19c5422decbd5e3a80d857a2d82969258045944b491c7b228467d8e4a7c29a0ec1
+DIST unifi-5.9.12.zip 103000745 BLAKE2B 
30613f8ee9bf832f5303d02cc2719cb91358a558afe4f998541b890be6c152a62171ad1711e78fd0f2e011161d03cdb9afa9c8dffc3b553b9c7b637f61f12b10
 SHA512 
0f8c549dfc390d71e3f8a58c05647b3cd062a55de248128267dda3c079f744a810a0138016616d5be6b2e05ecd34149172efd369c1cf4c1e24735ba982c266cb
 DIST unifi-5.9.4.zip 102808708 BLAKE2B 
3b1479bd65837667f2abff594426ecc3491475d1cf6d842d07cdc8868cabf59facc857263fcfb1ef30fdb8dbb4c0a037b7e04736b8debf0f4f795494fc62ee26
 SHA512 
01e2d8c2d48a552e3b5d03cb97b0241e0561a4c88e52f13ec2d2a8a8b7d75ba7d9eb7878e37876efe5581e439afaac359ae6e3e7b2bb3d0719ebdbb10b06778c

diff --git a/net-wireless/unifi/unifi-5.9.12.ebuild 
b/net-wireless/unifi/unifi-5.9.12.ebuild
new file mode 100644
index 000..ad64b5df30f
--- /dev/null
+++ b/net-wireless/unifi/unifi-5.9.12.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2018 Gentoo Foundation
+# 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="-ZD3vz8Yw57I"
+
+inherit systemd user
+
+DESCRIPTION="A Management Controller for Ubiquiti Networks UniFi APs"
+HOMEPAGE="https://www.ubnt.com";
+SRC_URI="https://dl.ubnt.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> 
${P}.zip"
+
+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.9"
+
+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
+
+   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: dev-lang/php/

2018-07-12 Thread Brian Evans
commit: a792cedc184897175195c932024f1cda643378c0
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Jul 12 14:02:16 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Jul 12 14:02:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a792cedc

dev-lang/php: Refine the REQUIRED_USE on gd to help the user

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-lang/php/php-5.6.35-r1.ebuild| 10 +-
 dev-lang/php/php-5.6.36.ebuild   | 10 +-
 dev-lang/php/php-7.0.29.ebuild   | 10 +-
 dev-lang/php/php-7.0.30.ebuild   | 10 +-
 dev-lang/php/php-7.1.16.ebuild   | 10 +-
 dev-lang/php/php-7.1.18.ebuild   | 10 +-
 dev-lang/php/php-7.1.19.ebuild   | 10 +-
 dev-lang/php/php-7.2.7.ebuild| 10 +-
 dev-lang/php/php-7.3.0_alpha1.ebuild | 10 +-
 dev-lang/php/php-7.3.0_alpha3.ebuild | 10 +-
 10 files changed, 50 insertions(+), 50 deletions(-)

diff --git a/dev-lang/php/php-5.6.35-r1.ebuild 
b/dev-lang/php/php-5.6.35-r1.ebuild
index 56d281890cd..152ebfe276c 100644
--- a/dev-lang/php/php-5.6.35-r1.ebuild
+++ b/dev-lang/php/php-5.6.35-r1.ebuild
@@ -147,11 +147,11 @@ DEPEND="${COMMON_DEPEND}
 REQUIRED_USE="
|| ( cli cgi fpm apache2 embed )
cli? ( ^^ ( readline libedit ) )
-   truetype? ( gd )
-   vpx? ( gd )
-   cjk? ( gd )
-   exif? ( gd )
-   xpm? ( gd )
+   truetype? ( gd zlib )
+   vpx? ( gd zlib )
+   cjk? ( gd zlib )
+   exif? ( gd zlib )
+   xpm? ( gd zlib )
gd? ( zlib )
simplexml? ( xml )
soap? ( xml )

diff --git a/dev-lang/php/php-5.6.36.ebuild b/dev-lang/php/php-5.6.36.ebuild
index 5b743906a99..fe5b563b7ea 100644
--- a/dev-lang/php/php-5.6.36.ebuild
+++ b/dev-lang/php/php-5.6.36.ebuild
@@ -147,11 +147,11 @@ DEPEND="${COMMON_DEPEND}
 REQUIRED_USE="
|| ( cli cgi fpm apache2 embed )
cli? ( ^^ ( readline libedit ) )
-   truetype? ( gd )
-   vpx? ( gd )
-   cjk? ( gd )
-   exif? ( gd )
-   xpm? ( gd )
+   truetype? ( gd zlib )
+   vpx? ( gd zlib )
+   cjk? ( gd zlib )
+   exif? ( gd zlib )
+   xpm? ( gd zlib )
gd? ( zlib )
simplexml? ( xml )
soap? ( xml )

diff --git a/dev-lang/php/php-7.0.29.ebuild b/dev-lang/php/php-7.0.29.ebuild
index a5743214637..08da09b6482 100644
--- a/dev-lang/php/php-7.0.29.ebuild
+++ b/dev-lang/php/php-7.0.29.ebuild
@@ -141,11 +141,11 @@ DEPEND="${COMMON_DEPEND}
 REQUIRED_USE="
|| ( cli cgi fpm apache2 embed phpdbg )
cli? ( ^^ ( readline libedit ) )
-   truetype? ( gd )
-   webp? ( gd )
-   cjk? ( gd )
-   exif? ( gd )
-   xpm? ( gd )
+   truetype? ( gd zlib )
+   webp? ( gd zlib )
+   cjk? ( gd zlib )
+   exif? ( gd zlib )
+   xpm? ( gd zlib )
gd? ( zlib )
simplexml? ( xml )
soap? ( xml )

diff --git a/dev-lang/php/php-7.0.30.ebuild b/dev-lang/php/php-7.0.30.ebuild
index cfcbd02ee74..9e0175a2b43 100644
--- a/dev-lang/php/php-7.0.30.ebuild
+++ b/dev-lang/php/php-7.0.30.ebuild
@@ -141,11 +141,11 @@ DEPEND="${COMMON_DEPEND}
 REQUIRED_USE="
|| ( cli cgi fpm apache2 embed phpdbg )
cli? ( ^^ ( readline libedit ) )
-   truetype? ( gd )
-   webp? ( gd )
-   cjk? ( gd )
-   exif? ( gd )
-   xpm? ( gd )
+   truetype? ( gd zlib )
+   webp? ( gd zlib )
+   cjk? ( gd zlib )
+   exif? ( gd zlib )
+   xpm? ( gd zlib )
gd? ( zlib )
simplexml? ( xml )
soap? ( xml )

diff --git a/dev-lang/php/php-7.1.16.ebuild b/dev-lang/php/php-7.1.16.ebuild
index 0adf8fe59a0..da637b55abb 100644
--- a/dev-lang/php/php-7.1.16.ebuild
+++ b/dev-lang/php/php-7.1.16.ebuild
@@ -123,11 +123,11 @@ DEPEND="${COMMON_DEPEND}
 REQUIRED_USE="
|| ( cli cgi fpm apache2 embed phpdbg )
cli? ( ^^ ( readline libedit ) )
-   truetype? ( gd )
-   webp? ( gd )
-   cjk? ( gd )
-   exif? ( gd )
-   xpm? ( gd )
+   truetype? ( gd zlib )
+   webp? ( gd zlib )
+   cjk? ( gd zlib )
+   exif? ( gd zlib )
+   xpm? ( gd zlib )
gd? ( zlib )
simplexml? ( xml )
soap? ( xml )

diff --git a/dev-lang/php/php-7.1.18.ebuild b/dev-lang/php/php-7.1.18.ebuild
index f53642ef965..b7d2c829465 100644
--- a/dev-lang/php/php-7.1.18.ebuild
+++ b/dev-lang/php/php-7.1.18.ebuild
@@ -123,11 +123,11 @@ DEPEND="${COMMON_DEPEND}
 REQUIRED_USE="
|| ( cli cgi fpm apache2 embed phpdbg )
cli? ( ^^ ( readline libedit ) )
-   truetype? ( gd )
-   webp? ( gd )
-   cjk? ( gd )
-   exif? ( gd )
-   xpm? ( gd )
+   truetype? ( gd zlib )
+   webp? ( gd zlib )
+   cjk? ( gd zlib )
+   exif? ( gd zlib )
+   xpm? ( gd zlib )
gd? ( zlib )
simplexml? ( xml )
soap? ( xml )

diff --git a/dev-lang/php/php-7.1.19.ebuild b/dev-lang/php/php-7.1.19.ebuild
index 1432a2ae457..d649e171

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

2018-07-12 Thread Brian Evans
commit: 1a76dc5592e0ed55b42fa48bb4970f3d83e2df17
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Jul 12 13:38:58 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Jul 12 13:38:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a76dc55

dev-db/percona-toolkit: whitespace

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-db/percona-toolkit/percona-toolkit-3.0.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/percona-toolkit/percona-toolkit-3.0.10-r1.ebuild 
b/dev-db/percona-toolkit/percona-toolkit-3.0.10-r1.ebuild
index cef323f12f4..4a54323f433 100644
--- a/dev-db/percona-toolkit/percona-toolkit-3.0.10-r1.ebuild
+++ b/dev-db/percona-toolkit/percona-toolkit-3.0.10-r1.ebuild
@@ -38,7 +38,7 @@ DEPEND="${COMMON_DEPEND}
 # sed -i -e '/^=item --\[no\]version-check/,/^default: yes/{/^default: yes/d}' 
bin/*
 # ^ is *-no-versioncheck.patch
 PATCHES=(
-   "${FILESDIR}"/${PN}-3.0.7-no-versioncheck.patch 
+   "${FILESDIR}"/${PN}-3.0.7-no-versioncheck.patch
"${FILESDIR}"/${PN}-3.0.10-slave-delay-fix.patch
 )
 



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

2018-07-12 Thread Michał Górny
commit: 9bc4443779d8247af9312ac39039c1bde3af6d97
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 07:02:08 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 13:27:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bc44437

net-misc/gns3-server: Fix dev-python/typing dep

 .../{gns3-server-1.5.3.1.ebuild => gns3-server-1.5.3.1-r1.ebuild}   | 2 +-
 .../{gns3-server-2.0.3-r1.ebuild => gns3-server-2.0.3-r2.ebuild}| 2 +-
 .../{gns3-server-2.1.3-r1.ebuild => gns3-server-2.1.3-r2.ebuild}| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/gns3-server/gns3-server-1.5.3.1.ebuild 
b/net-misc/gns3-server/gns3-server-1.5.3.1-r1.ebuild
similarity index 96%
rename from net-misc/gns3-server/gns3-server-1.5.3.1.ebuild
rename to net-misc/gns3-server/gns3-server-1.5.3.1-r1.ebuild
index 624d2a1d123..8bcb6c9c3b0 100644
--- a/net-misc/gns3-server/gns3-server-1.5.3.1.ebuild
+++ b/net-misc/gns3-server/gns3-server-1.5.3.1-r1.ebuild
@@ -29,7 +29,7 @@ RDEPEND=">=app-emulation/dynamips-0.2.12
>=dev-python/pyzmq-14.3.1[${PYTHON_USEDEP}]
>=dev-python/python-zipstream-1.1.4[${PYTHON_USEDEP}]
>=www-servers/tornado-3.1.1[${PYTHON_USEDEP}]
-   >=dev-python/typing-3.5.3.0[${PYTHON_USEDEP}]
+   virtual/python-typing[${PYTHON_USEDEP}]
>=dev-python/yarl-0.7.0[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 

diff --git a/net-misc/gns3-server/gns3-server-2.0.3-r1.ebuild 
b/net-misc/gns3-server/gns3-server-2.0.3-r2.ebuild
similarity index 97%
rename from net-misc/gns3-server/gns3-server-2.0.3-r1.ebuild
rename to net-misc/gns3-server/gns3-server-2.0.3-r2.ebuild
index 667fc7a119c..4dfbfec240f 100644
--- a/net-misc/gns3-server/gns3-server-2.0.3-r1.ebuild
+++ b/net-misc/gns3-server/gns3-server-2.0.3-r2.ebuild
@@ -29,7 +29,7 @@ RDEPEND=">=app-emulation/dynamips-0.2.12
>=dev-python/pyzmq-14.3.1[${PYTHON_USEDEP}]
>=dev-python/python-zipstream-1.1.4[${PYTHON_USEDEP}]
>=www-servers/tornado-3.1.1[${PYTHON_USEDEP}]
-   >=dev-python/typing-3.5.3.0[${PYTHON_USEDEP}]
+   virtual/python-typing[${PYTHON_USEDEP}]
~dev-python/yarl-0.9.8[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 

diff --git a/net-misc/gns3-server/gns3-server-2.1.3-r1.ebuild 
b/net-misc/gns3-server/gns3-server-2.1.3-r2.ebuild
similarity index 97%
rename from net-misc/gns3-server/gns3-server-2.1.3-r1.ebuild
rename to net-misc/gns3-server/gns3-server-2.1.3-r2.ebuild
index c5055f96177..62ed4a33ebd 100644
--- a/net-misc/gns3-server/gns3-server-2.1.3-r1.ebuild
+++ b/net-misc/gns3-server/gns3-server-2.1.3-r2.ebuild
@@ -31,7 +31,7 @@ RDEPEND=">=app-emulation/dynamips-0.2.12
>=dev-python/pyzmq-14.3.1[${PYTHON_USEDEP}]
>=dev-python/python-zipstream-1.1.4[${PYTHON_USEDEP}]
>=www-servers/tornado-3.1.1[${PYTHON_USEDEP}]
-   >=dev-python/typing-3.5.3.0[${PYTHON_USEDEP}]
+   virtual/python-typing[${PYTHON_USEDEP}]
>=dev-python/yarl-0.11[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 



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

2018-07-12 Thread Michał Górny
commit: 9a78e69368e15812931fba88fe6c2c8e6e62b3af
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 06:59:12 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 13:27:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a78e693

dev-db/mongodb: Fix dev-python/typing deps

 dev-db/mongodb/{mongodb-3.6.2.ebuild => mongodb-3.6.2-r1.ebuild} | 2 +-
 dev-db/mongodb/{mongodb-3.6.3.ebuild => mongodb-3.6.3-r1.ebuild} | 2 +-
 dev-db/mongodb/{mongodb-3.6.4.ebuild => mongodb-3.6.4-r1.ebuild} | 2 +-
 dev-db/mongodb/{mongodb-3.6.5.ebuild => mongodb-3.6.5-r1.ebuild} | 2 +-
 dev-db/mongodb/{mongodb-4.0.0.ebuild => mongodb-4.0.0-r1.ebuild} | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-db/mongodb/mongodb-3.6.2.ebuild 
b/dev-db/mongodb/mongodb-3.6.2-r1.ebuild
similarity index 99%
rename from dev-db/mongodb/mongodb-3.6.2.ebuild
rename to dev-db/mongodb/mongodb-3.6.2-r1.ebuild
index 5297f47b0f1..5604f58eafb 100644
--- a/dev-db/mongodb/mongodb-3.6.2.ebuild
+++ b/dev-db/mongodb/mongodb-3.6.2-r1.ebuild
@@ -39,7 +39,7 @@ DEPEND="${RDEPEND}
${PYTHON_DEPS}
dev-python/cheetah[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/typing[${PYTHON_USEDEP}]
+   virtual/python-typing[${PYTHON_USEDEP}]


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

2018-07-12 Thread Michał Górny
commit: e910b1d9356d56fd3cd434c57b354db6924e18f1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 12 08:17:39 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul 12 13:27:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e910b1d9

net-misc/gns3-gui: Un-PR-restrict gns3-server deps

 net-misc/gns3-gui/gns3-gui-1.5.3.1.ebuild  | 4 ++--
 net-misc/gns3-gui/gns3-gui-2.0.3-r1.ebuild | 4 ++--
 net-misc/gns3-gui/gns3-gui-2.1.3-r1.ebuild | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-misc/gns3-gui/gns3-gui-1.5.3.1.ebuild 
b/net-misc/gns3-gui/gns3-gui-1.5.3.1.ebuild
index b0bf8d76cd1..70503159805 100644
--- a/net-misc/gns3-gui/gns3-gui-1.5.3.1.ebuild
+++ b/net-misc/gns3-gui/gns3-gui-1.5.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -25,7 +25,7 @@ RDEPEND="
>=dev-python/paramiko-1.15.1[${PYTHON_USEDEP}]
>=dev-python/psutil-3.0.0[${PYTHON_USEDEP}]
>=net-misc/gns3-converter-1.3.0[${PYTHON_USEDEP}]
-   =net-misc/gns3-server-$PVR[${PYTHON_USEDEP}]
+   ~net-misc/gns3-server-${PV}[${PYTHON_USEDEP}]
dev-qt/qtgui:5
dev-qt/qtsvg:5
dev-python/PyQt5[gui,network,svg,widgets,${PYTHON_USEDEP}]

diff --git a/net-misc/gns3-gui/gns3-gui-2.0.3-r1.ebuild 
b/net-misc/gns3-gui/gns3-gui-2.0.3-r1.ebuild
index 4e2020676ee..a8118d51b05 100644
--- a/net-misc/gns3-gui/gns3-gui-2.0.3-r1.ebuild
+++ b/net-misc/gns3-gui/gns3-gui-2.0.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -24,7 +24,7 @@ RDEPEND="
>=dev-python/ws4py-0.3.4[${PYTHON_USEDEP}]
>=dev-python/requests-2.6.0[${PYTHON_USEDEP}]
>=dev-python/paramiko-1.15.1[${PYTHON_USEDEP}]
-   =net-misc/gns3-server-$PVR[${PYTHON_USEDEP}]
+   ~net-misc/gns3-server-${PV}[${PYTHON_USEDEP}]
dev-python/PyQt5[gui,network,svg,widgets,${PYTHON_USEDEP}]
 "
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"

diff --git a/net-misc/gns3-gui/gns3-gui-2.1.3-r1.ebuild 
b/net-misc/gns3-gui/gns3-gui-2.1.3-r1.ebuild
index e8b9a99df0c..f9cc17a23bd 100644
--- a/net-misc/gns3-gui/gns3-gui-2.1.3-r1.ebuild
+++ b/net-misc/gns3-gui/gns3-gui-2.1.3-r1.ebuild
@@ -24,7 +24,7 @@ RDEPEND="
>=dev-python/ws4py-0.3.4[${PYTHON_USEDEP}]
>=dev-python/requests-2.6.0[${PYTHON_USEDEP}]
>=dev-python/paramiko-1.15.1[${PYTHON_USEDEP}]
-   ~net-misc/gns3-server-$PV[${PYTHON_USEDEP}]
+   ~net-misc/gns3-server-${PV}[${PYTHON_USEDEP}]
dev-python/PyQt5[gui,network,svg,websockets,widgets,${PYTHON_USEDEP}]
 "
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



  1   2   >