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

2017-11-21 Thread Michał Górny
commit: 5f724dc180b9228b5903da3f00e91c6e1a6a1fda
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 21 07:23:12 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 21 17:47:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f724dc1

dev-python/pygit2: Bump to 0.26.1

 dev-python/pygit2/Manifest |   1 +
 .../files/pygit2-0.26.1-internet-tests.patch   | 133 +
 dev-python/pygit2/pygit2-0.26.1.ebuild |  30 +
 3 files changed, 164 insertions(+)

diff --git a/dev-python/pygit2/Manifest b/dev-python/pygit2/Manifest
index 2c744d8c47a..e7cf7e20aaf 100644
--- a/dev-python/pygit2/Manifest
+++ b/dev-python/pygit2/Manifest
@@ -1,3 +1,4 @@
 DIST pygit2-0.25.0.tar.gz 472116 SHA256 
de0ed85fd840dfeb32bcaa94c643307551dc0d967c3714e49087e7edc0cdc571 SHA512 
44f94869718111acbd4ad41bc4c37ac66557e979241dd5a7bb080cf091fec3fc3d5aa53a8a84eb37b2e6f89518b2ac69d058e1970b7cf98c35b8375807fd8f86
 WHIRLPOOL 
71d8eb87ef9cd2a1d77ecc1258d5d02f2d0075144fc81556e8a2c0b599202cf17b06c548767b956748feaa13d3ece0d3a664cfe95ab93004e345890805c58175
 DIST pygit2-0.25.1.tar.gz 456580 SHA256 
e8696033052fa0221114ee7f632d38777cc29e58230cd6a05de5725cd31b4a6a SHA512 
19908c874d5c2469609a54893f37367480d27ff03583c38b474ebb125dc9db95dc60776a120bb05662938d6eb62d4bcef24f684688e97e3453ccc27e015736cd
 WHIRLPOOL 
648aabcecde66fd5b1d3cf840c51693c237e75f9da7bb793e4e9c18537cb12e4b35d5dced17389bb24440a4c72f37175e1a0a5e44a9c69811c54cf60d11f7d3f
 DIST pygit2-0.26.0.tar.gz 457263 SHA256 
a7f06d61f25ab644c39e0e9bd4846a6cc4af81ae27f889473e6f0e9511226cb1 SHA512 
e8626712a3b75aced14997dda0155f5c7be9a7e0e43aeb2c767c848fcbe711780137f663cc9ad5268cd85e2c61fd40be6853573f68b457cd5d46d6c32a644076
 WHIRLPOOL 
909d3d4f06c04107309b53653f5395f76de61195269ba753b7658725a27235ede94df48b74b547a2bafef7e20f8916c01f6d7d7f2e434965621364d51f4e32fa
+DIST pygit2-0.26.1.tar.gz 458526 BLAKE2B 
703093a5a292e92c90987785065f3a1590addc09d72311f75b22caf6fe1a17be8fb16cf777189835204cb7dc4d2066e841d3d4327e2cc040c312e22a4c75a8ee
 SHA512 
23585bc0f41458442889b5434347cbc11d6c729898864262426f84e5b9239164bb58c6e910d2381b25f1b8be271674c1a6960630a504c40accdd30e487d27a7d

diff --git a/dev-python/pygit2/files/pygit2-0.26.1-internet-tests.patch 
b/dev-python/pygit2/files/pygit2-0.26.1-internet-tests.patch
new file mode 100644
index 000..6b96eb40f3b
--- /dev/null
+++ b/dev-python/pygit2/files/pygit2-0.26.1-internet-tests.patch
@@ -0,0 +1,133 @@
+From 24a929d003f1b6b4899f41cb227293e8c4b62eb7 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Tue, 21 Nov 2017 17:53:48 +0100
+Subject: [PATCH] Disable tests requiring network access
+
+---
+ test/test_credentials.py | 3 +++
+ test/test_repository.py  | 1 +
+ test/test_submodule.py   | 4 
+ 3 files changed, 8 insertions(+)
+
+diff --git a/test/test_credentials.py b/test/test_credentials.py
+index 7921a41..e60383a 100644
+--- a/test/test_credentials.py
 b/test/test_credentials.py
+@@ -70,39 +70,42 @@ class CredentialCreateTest(utils.NoRepoTestCase):
+ username = "git"
+  
+ cred = KeypairFromAgent(username)
+ self.assertEqual((username, None, None, None), cred.credential_tuple)
+ 
+ 
+ class CredentialCallback(utils.RepoTestCase):
++@unittest.skip('requires Internet access')
+ def test_callback(self):
+ class MyCallbacks(pygit2.RemoteCallbacks):
+ @staticmethod
+ def credentials(url, username, allowed):
+ self.assertTrue(allowed & GIT_CREDTYPE_USERPASS_PLAINTEXT)
+ raise Exception("I don't know the password")
+ 
+ url = "https://github.com/github/github";
+ remote = self.repo.create_remote("github", url)
+ 
+ self.assertRaises(Exception, lambda: 
remote.fetch(callbacks=MyCallbacks()))
+ 
++@unittest.skip('requires Internet access')
+ def test_bad_cred_type(self):
+ class MyCallbacks(pygit2.RemoteCallbacks):
+ @staticmethod
+ def credentials(url, username, allowed):
+ self.assertTrue(allowed & GIT_CREDTYPE_USERPASS_PLAINTEXT)
+ return Keypair("git", "foo.pub", "foo", "sekkrit")
+ 
+ url = "https://github.com/github/github";
+ remote = self.repo.create_remote("github", url)
+ self.assertRaises(TypeError, lambda: 
remote.fetch(callbacks=MyCallbacks()))
+ 
+ class CallableCredentialTest(utils.RepoTestCase):
+ 
++@unittest.skip('requires Internet access')
+ def test_user_pass(self):
+ credentials = UserPass("libgit2", "libgit2")
+ callbacks = pygit2.RemoteCallbacks(credentials=credentials)
+ 
+ url = "https://bitbucket.org/libgit2/testgitrepository.git";
+ remote = self.repo.create_remote("bb", url)
+ remote.fetch(callbacks=callbacks)
+diff --git a/test/test_repository.py b/test/test_repository.py
+index 941851b..33f0571 100644
+--- a/test/test_repository.py

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

2017-11-21 Thread Jeroen Roovers
commit: c8cbedc03b43e2f60faeea9e0153d9eb5b0e5ab1
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Nov 21 17:41:54 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Nov 21 17:41:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8cbedc0

www-client/vivaldi-snapshot: Version bump.

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 www-client/vivaldi-snapshot/Manifest   |   2 +
 .../vivaldi-snapshot-1.13.1008.30_p1.ebuild| 118 +
 2 files changed, 120 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 50bc532b9d6..28cf0aa3cea 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -2,3 +2,5 @@ DIST vivaldi-snapshot-1.13.1008.19_p1-amd64.deb 50245124 SHA256 
048808dc36a4ac80
 DIST vivaldi-snapshot-1.13.1008.19_p1-i386.deb 51134116 SHA256 
8cc9330a4d711f3f6ac240c8715943adab10f8ab5ab130cf75d8bb09d00f07a2 SHA512 
e7a70b998792160e7d8fc00967634422b124d70bbdffedb10c572f9b28469a172df963c9ef7c9671f436092813ed7b6094849b93ce45b03be6a9412fb358d831
 WHIRLPOOL 
52872cd176e35789af201f1d01489fccd40cdc409ed0ced8e023759ce8809d26eb4cfae2ec66a20a91dbebb734f97f6f09eda729233a709ae0bde0940c8eabbf
 DIST vivaldi-snapshot-1.13.1008.21_p1-amd64.deb 50239602 SHA256 
7e4561d9a9eddd85dd7a16ee2af53ec1e81a0c808c0b404257175a6dca81b8e0 SHA512 
39d55f9294a16271c951ddf94286a85b9300da1f01dce33568a218ae8a47643291068fcd04bdba0c64727b732c4c61131ad6cd4be89471c377d40e3511c3f7c4
 WHIRLPOOL 
94f9d80d4188ac0974f14f94d6d66a6ad6cf3522bc86dc834020b2f976a1103a0825ccb11febcd987a8ad9e6f29d301a49354b61750a224798ef3518e75be1a2
 DIST vivaldi-snapshot-1.13.1008.21_p1-i386.deb 51125782 SHA256 
a605236ed9552099aaa83e02ea4aa8ce787abc0f1c90904e9b6c839308cef39b SHA512 
6eab1eddccf79d732cf1f61eb202bd2d4a64975e941f1a1e5892e04ca5129744c4c08cb03760ab3642e5cd30ecc3483692230f51511da539a4f1af03ba83b3e0
 WHIRLPOOL 
3a7461153f6fb72b3049e769c2879db8fedf8c683e1c2c2632c690b4de71f454ca3ed5cb5bd7601bfb6070fa9521a7517c23fbb990bc1e614b7bd504ff5182f5
+DIST vivaldi-snapshot-1.13.1008.30_p1-amd64.deb 50248032 SHA256 
09c2bff740757d28d6c46340297d4182d4ee853f6e0222db3afef0fb3b02bad1 SHA512 
8bc449d337118d46a670425d93c3675ac60706e7db2eb8e35ca44affc3f6c2b381fef1e459fcdcf4f8dfd781f6fba3101841459e015206e37d93ccc9723b1537
 WHIRLPOOL 
db265ed8f7f380858f5e9d7f9c50e4a5846deb8d7f17ef051172996aaa344a10986541d84e666ab676806f157686533b0bb21dd8eaf01143cb767720563f79e7
+DIST vivaldi-snapshot-1.13.1008.30_p1-i386.deb 51135960 SHA256 
bcdf2f4b2f25c17c13c7b5d149adeb3f7d5568fad44795841c49f4698c1c34b3 SHA512 
ac2c563bbe96bc4164ac6165783037059d595c47f2ab612c3d437a6978d91cd9d1776425fc0f269123eeb5cdbf4a80899821764437f982c5cdf1c8eb932cb2b4
 WHIRLPOOL 
2917a58eb136511b8bec051dcc4483b6f2a00e26edc57ec48280fe09b1fbd00d22b3ec2e4c7015fbc74ae4ac5af002cfc3111f18873b02bd80fe885aa0bfdabc

diff --git 
a/www-client/vivaldi-snapshot/vivaldi-snapshot-1.13.1008.30_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.13.1008.30_p1.ebuild
new file mode 100644
index 000..fff39bc2705
--- /dev/null
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.13.1008.30_p1.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CHROMIUM_LANGS="
+   am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he 
hi
+   hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr 
sv
+   sw ta te th tr uk vi zh-CN zh-TW
+"
+inherit chromium-2 eutils gnome2-utils multilib unpacker toolchain-funcs 
xdg-utils
+
+VIVALDI_HOME="opt/${PN}"
+DESCRIPTION="A new browser for our friends"
+HOMEPAGE="http://vivaldi.com/";
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_";
+SRC_URI="
+   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
+   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
+"
+
+LICENSE="Vivaldi"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+RESTRICT="bindist mirror"
+
+DEPEND="
+   virtual/libiconv
+"
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   >=dev-libs/openssl-1.0.1:0
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/libcap
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:2
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/pango[X]
+"
+QA_PREBUILT="*"
+S=${WORKDIR}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   iconv -c -t UTF-8 usr/share/applications

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

2017-11-21 Thread Ian Stakenvicius
commit: 3dd23d4bc9222af04ce0e307a1eebe0dbc744bca
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Tue Nov 21 17:31:21 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Tue Nov 21 17:31:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dd23d4b

net-libs/webkit-gtk: bump to 2.18.3 for security

Bug: https://bugs.gentoo.org/637076
Acked-by: Mart Raudsepp  gentoo.org>
Package-Manager: Portage-2.3.13, Repoman-2.3.3

 net-libs/webkit-gtk/Manifest |   1 +
 net-libs/webkit-gtk/webkit-gtk-2.18.3.ebuild | 284 +++
 2 files changed, 285 insertions(+)

diff --git a/net-libs/webkit-gtk/Manifest b/net-libs/webkit-gtk/Manifest
index eafc5261138..dc75e12ae36 100644
--- a/net-libs/webkit-gtk/Manifest
+++ b/net-libs/webkit-gtk/Manifest
@@ -1,2 +1,3 @@
 DIST webkitgtk-2.18.2.tar.xz 14823612 SHA256 
b14cb3f1b5321b1dc50abcc0445a97f8e2f8813562bca7ce4d2f8069f6fec8e7 SHA512 
94c8ce0fcee741dc9c054fa3f8ecac9756245c623f36e6b0bb5588d12b660aaa8bbbe28e82d0f694b94b75f1985f9dbf9231a4b63832fcf4efbe7a0116c7585c
 WHIRLPOOL 
a1ccd765d6699f07ecad8b4c899398bb2152076eda4f3a86af61d67c741229cf3d0ef02a7c8fbca2fb494e1bb1822518a18aa4f88026e91ebd2d4835d6807545
+DIST webkitgtk-2.18.3.tar.xz 14824668 SHA256 
e15420e1616a6f70f321541d467af5ca285bff66b1e0fa68a01df3ccf1b18f9e SHA512 
8ba68d7234205728ed4b92358304cf0d0b771647d9b4316085241adeacafe67dee685225b0b46752087b93416ce8d2053a5a7c2376fda1eee7bc6d9024ae787e
 WHIRLPOOL 
1151c09119bfbb213bb3cd291f3ddcc49e3c9f77396bc960e381754e564d72ea21e70641f3cd57f42b2dcb77c05fd92e158b02b0ae94fade22129d8ae114524a
 DIST webkitgtk-2.4.11.tar.xz 9869100 SHA256 
588aea051bfbacced27fdfe0335a957dca839ebe36aa548df39c7bbafdb65bf7 SHA512 
2e2cf01a52b8593765a0a3c2d7f0ad306121660019eb402226bd2826c7d4666dab4e91ca6ccbd29abe0ad3993549f256ed1ab88de22e9c8516d5f40a4edd6bfb
 WHIRLPOOL 
de86c4abfb22aacbf62163d0398158931c9cf6ab628547d3b30e613f0505d67c85c3200f7db96500e7c2b35f640cdaa7f501346fc13f492c9439dff4056849a3

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.18.3.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.18.3.ebuild
new file mode 100644
index 000..2be3f452f74
--- /dev/null
+++ b/net-libs/webkit-gtk/webkit-gtk-2.18.3.ebuild
@@ -0,0 +1,284 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+CMAKE_MAKEFILE_GENERATOR="ninja"
+PYTHON_COMPAT=( python2_7 )
+USE_RUBY="ruby22 ruby23 ruby24"
+
+inherit check-reqs cmake-utils eutils flag-o-matic gnome2 pax-utils 
python-any-r1 ruby-single toolchain-funcs versionator virtualx
+
+MY_P="webkitgtk-${PV}"
+DESCRIPTION="Open source web browser engine"
+HOMEPAGE="http://www.webkitgtk.org/";
+SRC_URI="http://www.webkitgtk.org/releases/${MY_P}.tar.xz";
+
+LICENSE="LGPL-2+ BSD"
+SLOT="4/37" # soname version of libwebkit2gtk-4.0
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+
+IUSE="aqua coverage doc +egl +geolocation gles2 gnome-keyring +gstreamer 
+introspection +jit libnotify nsplugin +opengl spell wayland +webgl X"
+
+# webgl needs gstreamer, bug #560612
+REQUIRED_USE="
+   geolocation? ( introspection )
+   gles2? ( egl )
+   introspection? ( gstreamer )
+   nsplugin? ( X )
+   webgl? ( ^^ ( gles2 opengl ) )
+   !webgl? ( ?? ( gles2 opengl ) )
+   webgl? ( gstreamer )
+   wayland? ( egl )
+   || ( aqua wayland X )
+"
+
+# Tests fail to link for inexplicable reasons
+# https://bugs.webkit.org/show_bug.cgi?id=148210
+RESTRICT="test"
+
+# Aqua support in gtk3 is untested
+# Dependencies found at Source/cmake/OptionsGTK.cmake
+# Various compile-time optionals for gtk+-3.22.0 - ensure it
+# Missing OpenWebRTC checks and conditionals, but 
ENABLE_MEDIA_STREAM/ENABLE_WEB_RTC is experimental upstream (PRIVATE OFF)
+RDEPEND="
+   >=x11-libs/cairo-1.10.2:=
+   >=media-libs/fontconfig-2.8.0:1.0
+   >=media-libs/freetype-2.4.2:2
+   >=dev-libs/libgcrypt-1.6.0:0=
+   >=x11-libs/gtk+-3.22:3[aqua?,introspection?,wayland?,X?]
+   >=media-libs/harfbuzz-1.3.3:=[icu(+)]
+   >=dev-libs/icu-3.8.1-r1:=
+   virtual/jpeg:0=
+   >=net-libs/libsoup-2.48:2.4[introspection?]
+   >=dev-libs/libxml2-2.8.0:2
+   >=media-libs/libpng-1.4:0=
+   dev-db/sqlite:3=
+   sys-libs/zlib:0
+   >=dev-libs/atk-2.8.0
+   media-libs/libwebp:=
+
+   >=dev-libs/glib-2.40:2
+   >=dev-libs/libxslt-1.1.7
+   gnome-keyring? ( app-crypt/libsecret )
+   geolocation? ( >=app-misc/geoclue-2.1.5:2.0 )
+   introspection? ( >=dev-libs/gobject-introspection-1.32.0:= )
+   dev-libs/libtasn1:=
+   >=dev-libs/libgcrypt-1.7.0:0=
+   nsplugin? ( >=x11-libs/gtk+-2.24.10:2 )
+   spell? ( >=app-text/enchant-0.22:= )
+   gstreamer? (
+   >=media-libs/gstreamer-1.2.3:1.0
+   >=media-libs/gst-plugins-base-1.2.3:1.0
+   >=media-libs/gst-plugins-bad-1.10:1.0

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

2017-11-21 Thread Jonas Stein
commit: 7dc43130073131cfc6b3162cc397cd8e77215a7c
Author: Jonas Stein  gentoo  org>
AuthorDate: Tue Nov 21 17:16:40 2017 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Tue Nov 21 17:16:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dc43130

media-gfx/inkscape: >=dev-libs/boehm-gc-7.1

Fix minimum required version for the dependency dev-libs/boehm-gc.
This was already required by the configure script, so it does not
affect the stable status.
Closes: https://bugs.gentoo.org/602384
Package-Manager: Portage-2.3.15, Repoman-2.3.5

 media-gfx/inkscape/inkscape-0.91-r3.ebuild   | 2 +-
 media-gfx/inkscape/inkscape-0.92.1-r1.ebuild | 2 +-
 media-gfx/inkscape/inkscape-0.92.1.ebuild| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-gfx/inkscape/inkscape-0.91-r3.ebuild 
b/media-gfx/inkscape/inkscape-0.91-r3.ebuild
index 7bf58496145..08ca114f2a4 100644
--- a/media-gfx/inkscape/inkscape-0.91-r3.ebuild
+++ b/media-gfx/inkscape/inkscape-0.91-r3.ebuild
@@ -33,7 +33,7 @@ COMMON_DEPEND="
>=dev-cpp/glibmm-2.48
>=dev-cpp/gtkmm-2.18.0:2.4
>=dev-cpp/cairomm-1.9.8
-   >=dev-libs/boehm-gc-6.4
+   >=dev-libs/boehm-gc-7.1
>=dev-libs/glib-2.28
>=dev-libs/libsigc++-2.0.12
>=dev-libs/libxml2-2.6.20

diff --git a/media-gfx/inkscape/inkscape-0.92.1-r1.ebuild 
b/media-gfx/inkscape/inkscape-0.92.1-r1.ebuild
index 09084673b9c..6620793e9f1 100644
--- a/media-gfx/inkscape/inkscape-0.92.1-r1.ebuild
+++ b/media-gfx/inkscape/inkscape-0.92.1-r1.ebuild
@@ -33,7 +33,7 @@ COMMON_DEPEND="
>=dev-cpp/glibmm-2.48
>=dev-cpp/gtkmm-2.18.0:2.4
>=dev-cpp/cairomm-1.9.8
-   >=dev-libs/boehm-gc-6.4
+   >=dev-libs/boehm-gc-7.1
>=dev-libs/glib-2.28
>=dev-libs/libsigc++-2.0.12
>=dev-libs/libxml2-2.6.20

diff --git a/media-gfx/inkscape/inkscape-0.92.1.ebuild 
b/media-gfx/inkscape/inkscape-0.92.1.ebuild
index efd58af66c6..c29c3017a54 100644
--- a/media-gfx/inkscape/inkscape-0.92.1.ebuild
+++ b/media-gfx/inkscape/inkscape-0.92.1.ebuild
@@ -33,7 +33,7 @@ COMMON_DEPEND="
>=dev-cpp/glibmm-2.48
>=dev-cpp/gtkmm-2.18.0:2.4
>=dev-cpp/cairomm-1.9.8
-   >=dev-libs/boehm-gc-6.4
+   >=dev-libs/boehm-gc-7.1
>=dev-libs/glib-2.28
>=dev-libs/libsigc++-2.0.12
>=dev-libs/libxml2-2.6.20



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

2017-11-21 Thread Andrey Grozin
commit: 25062be3a7b4ff2c5fbbb7a3f7401c7c8b9b2e09
Author: Andrey Grozin  gentoo  org>
AuthorDate: Tue Nov 21 17:08:21 2017 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Tue Nov 21 17:08:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25062be3

dev-lisp/clozurecl: add the upstream patch for compatibility with glibc-2.26

Closes: https://bugs.gentoo.org/638304
Package-Manager: Portage-2.3.14, Repoman-2.3.6

 dev-lisp/clozurecl/clozurecl-1.11-r3.ebuild| 102 +
 dev-lisp/clozurecl/files/ccl-1.11-glibc-2.26.patch |  41 +
 2 files changed, 143 insertions(+)

diff --git a/dev-lisp/clozurecl/clozurecl-1.11-r3.ebuild 
b/dev-lisp/clozurecl/clozurecl-1.11-r3.ebuild
new file mode 100644
index 000..5482af1a6e1
--- /dev/null
+++ b/dev-lisp/clozurecl/clozurecl-1.11-r3.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils flag-o-matic multilib toolchain-funcs
+
+MY_PN=ccl
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Common Lisp implementation, derived from Digitool's MCL product"
+HOMEPAGE="https://ccl.clozure.com";
+SRC_URI="
+   x86?   ( ${HOMEPAGE}/ftp/pub/release/${PV}/${MY_P}-linuxx86.tar.gz )
+   amd64? ( ${HOMEPAGE}/ftp/pub/release/${PV}/${MY_P}-linuxx86.tar.gz )
+   arm? ( ${HOMEPAGE}/ftp/pub/release/${PV}/${MY_P}-linuxarm.tar.gz )
+   x86-macos? ( ${HOMEPAGE}/ftp/pub/release/${PV}/${MY_P}-darwinx86.tar.gz 
)
+   x64-macos? ( ${HOMEPAGE}/ftp/pub/release/${PV}/${MY_P}-darwinx86.tar.gz 
)
+   x86-solaris? ( 
${HOMEPAGE}/ftp/pub/release/${PV}/${MY_P}-solarisx86.tar.gz )
+   x64-solaris? ( 
${HOMEPAGE}/ftp/pub/release/${PV}/${MY_P}-solarisx86.tar.gz )
+   doc? ( ${HOMEPAGE}/docs/ccl.html )"
+
+LICENSE="LLGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="doc"
+
+RDEPEND=">=dev-lisp/asdf-2.33-r3:="
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}"/${MY_PN}
+ENVD="${T}/50ccl"
+
+src_configure() {
+   if use x86-macos; then
+   CCL_RUNTIME=dx86cl; CCL_HEADERS=darwin-x86-headers; 
CCL_KERNEL=darwinx8632
+   elif use x64-macos; then
+   CCL_RUNTIME=dx86cl64; CCL_HEADERS=darwin-x86-headers64; 
CCL_KERNEL=darwinx8664
+   elif use x86-solaris; then
+   CCL_RUNTIME=sx86cl; CCL_HEADERS=solarisx86-headers; 
CCL_KERNEL=solarisx86
+   elif use x64-solaris; then
+   CCL_RUNTIME=sx86cl64; CCL_HEADERS=solarisx64-headers; 
CCL_KERNEL=solarisx64
+   elif use x86; then
+   CCL_RUNTIME=lx86cl; CCL_HEADERS=x86-headers; 
CCL_KERNEL=linuxx8632
+   elif use amd64; then
+   CCL_RUNTIME=lx86cl64; CCL_HEADERS=x86-headers64; 
CCL_KERNEL=linuxx8664
+   elif use arm; then
+   CCL_RUNTIME=armcl; CCL_HEADERS=arm-headers; CCL_KERNEL=linuxarm
+   elif use ppc; then
+   CCL_RUNTIME=ppccl; CCL_HEADERS=headers; CCL_KERNEL=linuxppc
+   elif use ppc64; then
+   CCL_RUNTIME=ppccl64; CCL_HEADERS=headers64; 
CCL_KERNEL=linuxppc64
+   fi
+}
+
+src_prepare() {
+   default
+   eapply "${FILESDIR}/${MY_PN}-format.patch"
+   # bug #638304 
https://github.com/Clozure/ccl/commit/a87d61b88e1f48a563335062668970f7e6290ecf
+   eapply "${FILESDIR}/${MY_P}-glibc-2.26.patch"
+   # 
https://lists.clozure.com/pipermail/openmcl-devel/2016-September/011399.html
+   sed -i "s/-dynamic/-no_pie/" "${S}/lisp-kernel/darwinx8664/Makefile" || 
die
+   cp "${EPREFIX}/usr/share/common-lisp/source/asdf/build/asdf.lisp" 
tools/ || die
+}
+
+src_compile() {
+   emake -C lisp-kernel/${CCL_KERNEL} clean
+   emake -C lisp-kernel/${CCL_KERNEL} all CC="$(tc-getCC)"
+
+   unset CCL_DEFAULT_DIRECTORY
+   ./${CCL_RUNTIME} -n -b -Q -e '(ccl:rebuild-ccl :full t)' -e 
'(ccl:quit)' || die "Compilation failed"
+
+   # remove non-owner write permissions on the full-image
+   chmod go-w ${CCL_RUNTIME}{,.image} || die
+
+   esvn_clean
+}
+
+src_install() {
+   local target_dir="/usr/$(get_libdir)/${PN}"
+   local prefix_dir="${EPREFIX}/${target_dir#/}"
+
+   mkdir -p "${D}/${prefix_dir#/}"
+
+   find . -type f -name '*fsl' -delete || die
+   rm -f lisp-kernel/${CCL_KERNEL}/*.o || die
+   cp -a compiler contrib level-0 level-1 lib library lisp-kernel scripts \
+   tools xdump ${CCL_HEADERS} ${CCL_RUNTIME} ${CCL_RUNTIME}.image \
+   "${D}/${prefix_dir#/}" || die
+
+   echo "CCL_DEFAULT_DIRECTORY=${prefix_dir}" > "${ENVD}"
+   doenvd "${ENVD}"
+
+   dosym "${target_dir}/${CCL_RUNTIME}" /usr/bin/ccl
+   dodoc doc/release-notes.txt
+
+   if use doc ; then
+   dodoc "${DISTDIR}/ccl.html"
+   dodoc -r doc/manual
+   dodoc -r examples
+   fi
+}

diff --git a/dev-lisp/clozurecl/files/ccl-1.11-glibc-2.26.patch 
b/dev-lisp/clozurecl/files/ccl-1.11-glibc-2.26.patch
n

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

2017-11-21 Thread Thomas Deutschmann
commit: 190b8440424d0684880808bb8d6587078a7357ef
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov 21 16:29:39 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov 21 16:29:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=190b8440

dev-db/percona-server: Fix building on gcc 7

Backport of commit c6a3a38050e112302534fa1392dc5649ca3d4f36.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-db/percona-server/Manifest | 2 +-
 dev-db/percona-server/percona-server-5.6.37.82.2-r1.ebuild | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-db/percona-server/Manifest b/dev-db/percona-server/Manifest
index 45a56a5672e..682f7180254 100644
--- a/dev-db/percona-server/Manifest
+++ b/dev-db/percona-server/Manifest
@@ -1,2 +1,2 @@
-DIST mysql-extras-20170820-2245Z.tar.bz2 312101 SHA256 
619afb88752e461434709ed91e91c2104845a9a9ee67ac944212833f4a715ed8 SHA512 
34868c8ba3509ed5e3625c973e16f5015390ca9fc656cbcdbe8f5568bc7cab3708bb7c88b1af324ebb66f86433dfee71b90adf6451556fcfc12ad4e7d32256dd
 WHIRLPOOL 
f8e08f47bb0789c25dc096c76340b1ca9db8a264d89aca816e3b45e4dd984dc9dea90554c6c114179dc972026c703404aa8521b3c93fb882d7eadd1295635fb9
+DIST mysql-extras-20171121-1518Z.tar.bz2 313539 SHA256 
1afb0cd5cd7eb71b0cfa34d6f0b970ab3e00f8a3ab08a6a09a8fb829c4121f01 SHA512 
dd0d4a00c0ed710e786d157a73f02c6f555ab7a68e57014d958627096a4245a0b45d22ec860dc5389002d106554e8011c0b6ddcadff1f737e3fa195badda
 WHIRLPOOL 
67b7d6b4239b43f906477624137946c015f7d1430e309874858d40c8c55dfb633ad1f116b7bb08057c924c5a92a66a296016273ae984ba13d6c5d89ae1e054fc
 DIST percona-server-5.6.37-82.2.tar.gz 56296960 SHA256 
3cf04b64c8bf5b9cc1ea1a68c54ba77a4709d9c9051314e70a4cbd4c904da702 SHA512 
38905c2429bee6e6ba9c35b232c87c27c414726b349ff5a878cc94bbc4a333bbf76019478f8e82a10274ffeea5ac71c4520ff534cc434c4844b496b48801ea4e
 WHIRLPOOL 
9e3988072d00f60af467a21092cc737529bd9250ce4ebbfa20834455791a3fb093b11da8bb845bd62e3fa33ad37e63bfbda483139700bd4147e1b7be64578659

diff --git a/dev-db/percona-server/percona-server-5.6.37.82.2-r1.ebuild 
b/dev-db/percona-server/percona-server-5.6.37.82.2-r1.ebuild
index 887e1891444..bb675e54533 100644
--- a/dev-db/percona-server/percona-server-5.6.37.82.2-r1.ebuild
+++ b/dev-db/percona-server/percona-server-5.6.37.82.2-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
-MY_EXTRAS_VER="20170820-2245Z"
+MY_EXTRAS_VER="20171121-1518Z"
 SUBSLOT="18"
 PYTHON_COMPAT=( python2_7 )
 inherit linux-info python-any-r1 mysql-multilib-r1
@@ -41,6 +41,7 @@ PATCHES=(
"${MY_PATCH_DIR}"/20008_all_mysql-tzinfo-symlink-5.6.37.patch
"${MY_PATCH_DIR}"/20009_all_mysql_myodbc_symbol_fix-5.6.patch

"${MY_PATCH_DIR}"/20018_all_percona-server-5.6.25-without-clientlibs-tools.patch
+   "${MY_PATCH_DIR}"/20028_all_mysql-5.6-gcc7.patch
 )
 
 # Please do not add a naive src_unpack to this ebuild



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

2017-11-21 Thread Bernard Cafarelli
commit: ca63bc2c906af0d2d92fe2470c6f1d199d32f52e
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov 21 14:01:52 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov 21 16:15:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca63bc2c

media-gfx/argyllcms: drop old

Package-Manager: Portage-2.3.15, Repoman-2.3.6

 media-gfx/argyllcms/Manifest   |  4 --
 media-gfx/argyllcms/argyllcms-1.7.0.ebuild | 90 -
 media-gfx/argyllcms/argyllcms-1.8.2.ebuild | 91 -
 media-gfx/argyllcms/argyllcms-1.8.3.ebuild | 91 -
 media-gfx/argyllcms/argyllcms-1.9.1.ebuild | 93 --
 5 files changed, 369 deletions(-)

diff --git a/media-gfx/argyllcms/Manifest b/media-gfx/argyllcms/Manifest
index 947ad6d6a5e..2dc2c178f38 100644
--- a/media-gfx/argyllcms/Manifest
+++ b/media-gfx/argyllcms/Manifest
@@ -1,5 +1 @@
-DIST Argyll_V1.7.0_src.zip 13935712 SHA256 
dac51cf5d8f6d04bb02f2f5b119fa0e8b773a010e6377116768b082ef018f663 SHA512 
644683c8a73d36583d607b5d51c543dca8f1e3fb3db8138a164f9ed7f994df7739ee7d810b7136a7cf0eba7b54fe53b35ffbdd4e6915ec20b271325119ce369c
 WHIRLPOOL 
e08c6e311856716ee6b49e37c583d8d4275629fb746f018e0d7c768d4c907644dc60545ff2c709217988c668b198dfc95396af3fdf0ccd40d320514854b1c087
-DIST Argyll_V1.8.2_src.zip 13946428 SHA256 
59bdfaeace35d2007c90fc53234ba33bf8a64cffc08f7b27a297fc5f85455377 SHA512 
fb5a9fcfe558ce0593cc63d43751693dcaca8ed9dc202372bea5d8d54e19c004de0cb80382ffd2b570d9eeeb58584c7466b725d35377c72cbbde414625613d9c
 WHIRLPOOL 
1a7f32f5ac203ae69773c8f40540aed4c2d36b1878ac7e7cc703df8809faa6ca086a249c1f20f5c2b8bb3db652add330b8a555dd34570c79b1da74cd5bb372ed
-DIST Argyll_V1.8.3_src.zip 13933565 SHA256 
60494176785f6c2e4e4daefb9452d83859880449040b2a843ed81de3bd0c558e SHA512 
19bdba20313ec62b5b3c461d29a4f1eefbeb799ded06a1e0b568013b606547bf97b23c1b69f27d415e0052a7a2b747273131624e725ee21781b261568822b3a7
 WHIRLPOOL 
d0f65bfdee48dcb29c887f371fe787aebac8c9577a1db0f386bb4a17e379ab99d2c0f94bc7474e753b3fd49548028928aeb48d9c0021b8ee5a76ab55575d5ce8
-DIST Argyll_V1.9.1_src.zip 13497142 SHA256 
5e910b1fafa53498747bee6128adfb1b4a2418801728ad466ebd65fa7fa29823 SHA512 
28cc7f686a841a8ef6d6594b71a9a8c8be9370395fd1385abdc4b8388b699266966b21385056933670e233a085edbe9ee58cbe854f18c980408a89b45e807179
 WHIRLPOOL 
70592c405e584b186225a7c1427c94d73b45dfcfd1080f91b71583d044b77130d9531e3b30c7d9f24802539cc3a02ebba661c15af5229569183351134d29a7ef
 DIST Argyll_V1.9.2_src.zip 13624924 SHA256 
4d61ae0b91686dea721d34df2e44eaf36c88da87086fd50ccc4e999a58e9ce90 SHA512 
f21fc2385b643dd6c32d1b1b0ab208a79ad8bc4319ac644d96e69ebc4c4e333d38b41e4516742816da9a91145e4f00bffb7f8b61a827859d5e14c1a8867b5a41
 WHIRLPOOL 
2b1bf8997a029bea711f42b7dec51c645834e7429430c6ad187a0b26f903ff58cfea27a072e28fb703be7ef2bcfa96d20f0f7ba6d1d809052eeb10d52013b430

diff --git a/media-gfx/argyllcms/argyllcms-1.7.0.ebuild 
b/media-gfx/argyllcms/argyllcms-1.7.0.ebuild
deleted file mode 100644
index 031d59b3ec5..000
--- a/media-gfx/argyllcms/argyllcms-1.7.0.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit base flag-o-matic multiprocessing toolchain-funcs udev
-
-MY_P="Argyll_V${PV}"
-
-DESCRIPTION="Open source, ICC compatible color management system"
-HOMEPAGE="http://www.argyllcms.com/";
-SRC_URI="http://www.argyllcms.com/${MY_P}_src.zip";
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="amd64 hppa x86"
-IUSE="doc"
-
-RDEPEND="
-   media-libs/tiff:0
-   sys-libs/zlib
-   virtual/jpeg:0
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libXdmcp
-   x11-libs/libXext
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXxf86vm
-   x11-libs/libXScrnSaver"
-DEPEND="${RDEPEND}
-   app-arch/unzip
-   dev-util/ftjam"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
-   )
-
-src_compile() {
-   # Make it respect LDFLAGS
-   echo "LINKFLAGS += ${LDFLAGS} ;" >> Jamtop
-
-   # Evil hack to get --as-needed working. The build system unfortunately 
lists all
-   # the shared libraries by default on the command line _before_ the 
object to be built...
-   echo "STDLIBS += -ldl -lrt -lX11 -lXext -lXxf86vm -lXinerama -lXrandr 
-lXau -lXdmcp -lXss -ltiff -ljpeg ;" >> Jamtop
-
-   append-cflags -DUNIX -D_THREAD_SAFE
-
-   sed \
-   -e 's:CCFLAGS:CFLAGS:g' \
-   -e "s:ar rusc:$(tc-getAR) rusc:g" \
-   -i Jambase || die
-
-   tc-export CC RANLIB
-
-   jam -dx -fJambase "-j$(makeopts_jobs)" || die
-}
-
-src_install() {
-   jam -dx -fJambase install || die
-
-   rm bin/License.txt || die
-
-   pushd bin > /dev/null
-   local binname
-   for binname in * ; do
-   newbin ${binname} argyll-${binname}
-   done
-   popd > /dev/null
-
-   use do

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

2017-11-21 Thread Bernard Cafarelli
commit: e6ab1cb1c9b944d7d13930716674327a15d3df2d
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Nov 21 14:02:28 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Nov 21 16:15:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6ab1cb1

media-gfx/argyllcms: 2.0.0 bump

Package-Manager: Portage-2.3.15, Repoman-2.3.6

 media-gfx/argyllcms/Manifest   |  1 +
 media-gfx/argyllcms/argyllcms-2.0.0.ebuild | 89 ++
 2 files changed, 90 insertions(+)

diff --git a/media-gfx/argyllcms/Manifest b/media-gfx/argyllcms/Manifest
index 2dc2c178f38..eb309eff2da 100644
--- a/media-gfx/argyllcms/Manifest
+++ b/media-gfx/argyllcms/Manifest
@@ -1 +1,2 @@
 DIST Argyll_V1.9.2_src.zip 13624924 SHA256 
4d61ae0b91686dea721d34df2e44eaf36c88da87086fd50ccc4e999a58e9ce90 SHA512 
f21fc2385b643dd6c32d1b1b0ab208a79ad8bc4319ac644d96e69ebc4c4e333d38b41e4516742816da9a91145e4f00bffb7f8b61a827859d5e14c1a8867b5a41
 WHIRLPOOL 
2b1bf8997a029bea711f42b7dec51c645834e7429430c6ad187a0b26f903ff58cfea27a072e28fb703be7ef2bcfa96d20f0f7ba6d1d809052eeb10d52013b430
+DIST Argyll_V2.0.0_src.zip 13588152 SHA256 
5492896c040b406892864c467466ad6b50eb62954b5874ef0eb9174d1764ff41 SHA512 
44e9a2307bc39a8e455c15b2f4126de652a9ecd43bec94a841cb3da56896effcb023740d7e6b8991d109766c83426eee4b131a6c56cda5ff28b22a06ea470b5d
 WHIRLPOOL 
91e945c2871798f6a0065011a6d2016985857c978edffca4b3f6286210ccf172fcc597c1923e428250c19e600f9cace1c6c2f9e84fddbb4ee2db0107b281fe33

diff --git a/media-gfx/argyllcms/argyllcms-2.0.0.ebuild 
b/media-gfx/argyllcms/argyllcms-2.0.0.ebuild
new file mode 100644
index 000..a90a7721a76
--- /dev/null
+++ b/media-gfx/argyllcms/argyllcms-2.0.0.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils flag-o-matic multiprocessing toolchain-funcs udev
+
+MY_P="Argyll_V${PV}"
+
+DESCRIPTION="Open source, ICC compatible color management system"
+HOMEPAGE="http://www.argyllcms.com/";
+SRC_URI="http://www.argyllcms.com/${MY_P}_src.zip";
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~hppa ~x86"
+IUSE="doc"
+
+RDEPEND="
+   media-libs/tiff:0
+   sys-libs/zlib
+   virtual/jpeg:0
+   x11-libs/libX11
+   x11-libs/libXau
+   x11-libs/libXdmcp
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXxf86vm
+   x11-libs/libXScrnSaver"
+DEPEND="${RDEPEND}
+   app-arch/unzip
+   dev-util/ftjam"
+
+S="${WORKDIR}/${MY_P}"
+
+src_compile() {
+   # Make it respect LDFLAGS
+   echo "LINKFLAGS += ${LDFLAGS} ;" >> Jamtop
+
+   # Evil hack to get --as-needed working. The build system unfortunately 
lists all
+   # the shared libraries by default on the command line _before_ the 
object to be built...
+   echo "STDLIBS += -ldl -lrt -lX11 -lXext -lXxf86vm -lXinerama -lXrandr 
-lXau -lXdmcp -lXss -ltiff -ljpeg ;" >> Jamtop
+
+   append-cflags -DUNIX -D_THREAD_SAFE
+
+   sed \
+   -e 's:CCFLAGS:CFLAGS:g' \
+   -e "s:ar rusc:$(tc-getAR) rusc:g" \
+   -i Jambase || die
+
+   tc-export CC RANLIB
+
+   jam -dx -fJambase "-j$(makeopts_jobs)" || die
+}
+
+src_install() {
+   jam -dx -fJambase install || die
+
+   rm bin/License.txt || die
+
+   pushd bin > /dev/null
+   local binname
+   for binname in * ; do
+   newbin ${binname} argyll-${binname}
+   done
+   popd > /dev/null
+
+   dodoc log.txt Readme.txt ttbd.txt notes.txt
+   if use doc;  then
+   docinto html
+   dodoc doc/*html doc/*jpg doc/*gif
+   fi
+
+   insinto /usr/share/${PN}
+   doins -r ref
+
+   udev_dorules usb/55-Argyll.rules
+}
+
+pkg_postinst() {
+   elog "If you have a Spyder2 you need to extract the firmware"
+   elog "from the CVSpyder.dll of the windows driver package"
+   elog "and store it as /usr/share/color/spyd2PLD.bin"
+   echo
+   elog "For further info on setting up instrument access read"
+   elog "http://www.argyllcms.com/doc/Installing_Linux.html";
+   echo
+}



[gentoo-commits] proj/sci:master commit in: sci-biology/SEECER/files/, sci-biology/SEECER/

2017-11-21 Thread Martin Mokrejs
commit: aab87747b89b64107677056a3d4874d8f5ee7bbf
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Tue Nov 21 16:11:28 2017 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Tue Nov 21 16:11:28 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=aab87747

sci-biology/SEECER: execute jellyfish1 instead of jellyfish

Also I wrote a few cleanup patches to expose THREADS
variable and cleanup the code.

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 sci-biology/SEECER/SEECER-0.1.3-r2.ebuild  |  7 ++-
 .../SEECER/files/rename_jellyfish_binary.patch | 11 
 sci-biology/SEECER/files/run_jellyfish.sh.patch| 72 ++
 sci-biology/SEECER/files/run_seecer.sh.patch   | 42 +
 4 files changed, 130 insertions(+), 2 deletions(-)

diff --git a/sci-biology/SEECER/SEECER-0.1.3-r2.ebuild 
b/sci-biology/SEECER/SEECER-0.1.3-r2.ebuild
index 60862d8c8..0b7ec3bfa 100644
--- a/sci-biology/SEECER/SEECER-0.1.3-r2.ebuild
+++ b/sci-biology/SEECER/SEECER-0.1.3-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 inherit eutils
 
-DESCRIPTION="SEquencing Error Corrector for RNA-Seq reads"
+DESCRIPTION="SEquence Error Corrector for RNA-Seq reads"
 HOMEPAGE="http://sb.cs.cmu.edu/seecer/";
 SRC_URI="
http://sb.cs.cmu.edu/seecer/downloads/"${P}".tar.gz
@@ -22,12 +22,15 @@ DEPEND="
sci-libs/gsl:0=
sci-biology/seqan:0="
 RDEPEND="${DEPEND}
-   =sci-biology/jellyfish-1.1.11"
+   =sci-biology/jellyfish-1.1.11-r1"
 
 S="${S}"/SEECER
 
 PATCHES=(
"${FILESDIR}"/remove-hardcoded-paths.patch
+   "${FILESDIR}"/run_seecer.sh.patch
+   "${FILESDIR}"/run_jellyfish.sh.patch
+   "${FILESDIR}"/rename_jellyfish_binary.patch
 )
 
 src_prepare(){

diff --git a/sci-biology/SEECER/files/rename_jellyfish_binary.patch 
b/sci-biology/SEECER/files/rename_jellyfish_binary.patch
new file mode 100644
index 0..c6548cee1
--- /dev/null
+++ b/sci-biology/SEECER/files/rename_jellyfish_binary.patch
@@ -0,0 +1,11 @@
+--- SEECER/bin/run_seecer.sh.ori   2017-11-21 16:56:28.808767468 +0100
 SEECER/bin/run_seecer.sh   2017-11-21 16:57:07.469835728 +0100
+@@ -26,7 +26,7 @@
+ 
+ 
+ BINDIR='' #this can be hardcoded to /absolute/path/to/SEECER/bin/
+-JF="jellyfish"#this may be hardcoded to /absolute/path/to/jellyfish/bin/
++JF="jellyfish1"#this may be hardcoded to 
/absolute/path/to/jellyfish/bin/jellyfish
+ 
+ K=17
+ SEECER_PARAMS=""

diff --git a/sci-biology/SEECER/files/run_jellyfish.sh.patch 
b/sci-biology/SEECER/files/run_jellyfish.sh.patch
new file mode 100644
index 0..7631f5a4c
--- /dev/null
+++ b/sci-biology/SEECER/files/run_jellyfish.sh.patch
@@ -0,0 +1,72 @@
+--- SEECER-0.1.3/bin/run_jellyfish.sh.ori  2017-11-21 16:41:54.164599838 
+0100
 SEECER-0.1.3/bin/run_jellyfish.sh  2017-11-21 16:46:28.022166903 +0100
+@@ -1,18 +1,45 @@
+ #!/bin/bash
++
++# Usage: run_jellyfish.sh jellyfish_binpath tempfile_prefix kmersize mincount 
tmpdir infile1 [infile2] threads
+ JF=$1
+ LCOUNT=$4
+ TMPDIR=$5
++THREADS=${8:-32}
+ 
+ if [ -z "$JF" ]; then
+ echo "No path to jellyfish binary provided, exiting.";
+ exit 255;
+ fi
+ 
++# Usage: jellyfish count [options] file:path+
++#
++# Count k-mers or qmers in fasta or fastq files
++# 
++# Options (default value in (), *required):
++#  -m, --mer-len=uint32*Length of mer
++#  -s, --size=uint64   *Hash size
++#  -t, --threads=uint32 Number of threads (1)
++#  -o, --output=string  Output prefix (mer_counts)
++#  -c, --counter-len=Length in bits Length of counting field (7)
++#  --out-counter-len=Length in bytesLength of counter field in output 
(4)
++#  -C, --both-strands   Count both strand, canonical 
representation (false)
++#  -p, --reprobes=uint32Maximum number of reprobes (62)
++#  -r, --rawWrite raw database (false)
++#  -q, --quake  Quake compatibility mode (false)
++#  --quality-start=uint32   Starting ASCII for quality values 
(64)
++#  --min-quality=uint32 Minimum quality. A base with 
lesser quality becomes an N (0)
++#  -L, --lower-count=uint64 Don't output k-mer with count < 
lower-count
++#  -U, --upper-count=uint64 Don't output k-mer with count > 
upper-count
++#  --invalid-char=warn|ignore|error How to treat invalid characters. 
The char is changed to a N. (warn)
++#  --matrix=Matrix file Hash function binary matrix
++#  --timing=Timing file Print timing information
++#  --stats=Stats file   Print stats
++#
+ if [ "$#" -eq "4" ];
+ then
+-$JF count -m $3 -o $TMPDIR/jf_tmp -c 3 -s 1000 -t 32 --both-strands $6 || 
exit 255
++$JF count -m $3 -o $TMPDIR/jf_tmp -c 3 -s 1000 -t $THREADS --both-strands 
$6 || exit 255

[gentoo-commits] proj/sci:master commit in: sci-biology/jellyfish/

2017-11-21 Thread Martin Mokrejs
commit: 03271b4b44f838754e7af1b70c62366c42f4d4d2
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Tue Nov 21 16:08:54 2017 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Tue Nov 21 16:08:54 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=03271b4b

sci-biology/jellyfish: rename jellyfish to jellyfish1

This will facilitate simultaneous installs of jeelyfish2
and jellyfish, so that sci-biology/SEECER and sci-biology/quorum
could be installed at the same time (both calling "jellyfish"
but quorum needs version 2 and SEECER version 1.
See list of files at https://packages.debian.org/unstable/jellyfish1

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 .../jellyfish/{jellyfish-1.1.11.ebuild => jellyfish-1.1.11-r1.ebuild} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sci-biology/jellyfish/jellyfish-1.1.11.ebuild 
b/sci-biology/jellyfish/jellyfish-1.1.11-r1.ebuild
similarity index 85%
rename from sci-biology/jellyfish/jellyfish-1.1.11.ebuild
rename to sci-biology/jellyfish/jellyfish-1.1.11-r1.ebuild
index 9134a98d4..923784ada 100644
--- a/sci-biology/jellyfish/jellyfish-1.1.11.ebuild
+++ b/sci-biology/jellyfish/jellyfish-1.1.11-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -34,6 +34,8 @@ src_prepare(){
 }
 
 src_install(){
+   # install the binary under jellyfish1 name like Debian/Ubuntu to avoid 
name clash with jellyfish2 and allow simultaneous installs
+   mv bin/jellyfish bin/jellyfish1 || die
default
sed -e "s#jellyfish-${PV}#jellyfish#" -i 
"${ED}/usr/$(get_libdir)"/pkgconfig/jellyfish-1.1.pc || die
mkdir -p "${ED}/usr/include/${PN}" || die



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

2017-11-21 Thread Thomas Deutschmann
commit: b1a39c149ffac5d3168aa0f4e9723e4a6bc8ca95
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Nov 21 16:04:37 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Nov 21 16:04:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1a39c14

www-servers/nginx: Bump to v1.13.7 mainline

Ebuild changes:
===
 - headers_more module bumped to v0.33

 - lua module bumped to 0.10.11

 - push module bumped to 0.5.4

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 www-servers/nginx/Manifest|4 +
 www-servers/nginx/nginx-1.13.7.ebuild | 1006 +
 2 files changed, 1010 insertions(+)

diff --git a/www-servers/nginx/Manifest b/www-servers/nginx/Manifest
index bb8f6618067..0b2958d40da 100644
--- a/www-servers/nginx/Manifest
+++ b/www-servers/nginx/Manifest
@@ -6,6 +6,7 @@ DIST nginx-1.13.3.tar.gz 985931 SHA256 
5b73f98004c302fb8e4a172abf046d9ce77739a82
 DIST nginx-1.13.4.tar.gz 988415 SHA256 
de21f3c49ba65c611329d8759a63d72e5fcf719bc6f2a3270e2541348ef1fbba SHA512 
068f59f0dfe68a9a20a141bf5416551bc758fe50a38b2576f0e1c9df2ec674c7348b151f3ce80b614ac20610bc85374be7cef69f95b925f4fde351716c1da740
 WHIRLPOOL 
333cf2542fef05a0709259e6c8ea363a2eaaade00e1e1f0f50df081af023826d452b7b5fd3e826a63cad1753949f469424723b0a9731a34418c06517e14d6f3a
 DIST nginx-1.13.5.tar.gz 988821 SHA256 
0e75b94429b3f745377aeba3aff97da77bf2b03fcb9ff15b3bad9b038db29f2e SHA512 
ffd0406a75a35da427522f58c9b710cde86acb1ebf48f4e6b7f6a44e04ccd83950fedc6dceed9e2ab5132e06559f3bf45935d5011fc436e7c2efd46ac1e86459
 WHIRLPOOL 
94703bff57b0c701709974748f07ba444143707ecfb98beb9ca0d30d66913cde07725f3ae82a44d5585709c35b0ff600eccab37f0b5df904b67cee8e2085207d
 DIST nginx-1.13.6.tar.gz 989760 SHA256 
8512fc6f986a20af293b61f33b0e72f64a72ea5b1acbcc790c4c4e2d6f63f8f8 SHA512 
9ae218396e94f0e165d4d573a979354045ac579f0dcc702a37bde3ec5764e21161efc90fc1ff66bd402047c41a16ca0ff02423eaeb8d89b397e970df246f419e
 WHIRLPOOL 
e219846d7a15de9239d4c26eab4e8ec783bbc715e84eee0f6a8591a1d0dae0eeb828b15ccf622638c14a943758b3bb02e23355e129c16178d9aca72c4733b80f
+DIST nginx-1.13.7.tar.gz 990836 SHA256 
beb732bc7da80948c43fd0bf94940a21a21b1c1ddfba0bd99a4b88e026220f5c SHA512 
77ee919315e0b16ec042ec80b5a9ed01ef057d30fded4c1991fc1b7648d41433b94897fbe6f0900299d3596ede7b25e842e47c44865b1c3d91d2dc6363d23fc0
 WHIRLPOOL 
f56195c1bf4143acfceba4d7c03a2cf7a12d26f829dbf8465c59618601dacc10746e85c45d6d3b978706766b6987a478fd665776c454411a7ff4b164e869
 DIST nginx-auth-ldap-49a8b4d28fc4a518563c82e0b52821e5f37db1fc.tar.gz 17159 
SHA256 3c11c32f05da04f1a4647dc4e35dd8d8aeacd5a2e763ba349feba3dba8663132 SHA512 
323abd0ca8e90f5afcaf81a8ff1a8abe3dfcbff3d69f0dd4a1c005fe6436acbf3076c4c57a4df877b3d8e388cbea085d46301bb2df9c0752e2567817ff7cca92
 WHIRLPOOL 
ad65e8182b2634db5fa06055ef7d91c7d8aabd0fa986d8402a4845977354d6edb329621b6f9f96c90ce2d158cff20e42ae50fba06a088a84de3e3f414205dbc2
 DIST nginx_http_sticky_module_ng-1.2.6-10-g08a395c66e42.tar.bz2 124047 SHA256 
6f9102321d8c68df6d67e9bde145a8de3f45f99f6cb47c08735a86f003234d31 SHA512 
6c1bfdcf89884b2855d51ae7da0f6e53a4ca3629e1aaf58433b70c07dcb2af797ba6e87d9b3eb4fe2fb6d4d697e862f2b4c2f8d8b3fdaea201740c97ec936529
 WHIRLPOOL 
38abe56e177e22dad68ac7d6570425ecd763d2e891627a75156a6f39bd7edc54f664c3d2f638e1ea57c743dadc6a8c9889be087abbdb4c98b5641c299f7fbc07
 DIST ngx_devel_kit-0.3.0-r1.tar.gz 66455 SHA256 
88e05a99a8a7419066f5ae75966fb1efc409bad4522d14986da074554ae61619 SHA512 
558764c9be913a4f61d0e277d07bf3c272e1ce086b3fadb85b693a7e92805cd9fca4da7a8d29c96e53fc0d23b331327d3b2561ff61f19d2330e7d5d35ac7d614
 WHIRLPOOL 
5f6ed4e6850d2ce7e8c65e0570a7e2c74a1fe360e167644ed405fff682ab178b09c722c99c1df9af552fb816219b9fc04dcdf638b3e4af68c688434cdb33aa59
@@ -18,10 +19,13 @@ DIST ngx_http_echo-0.61.tar.gz 53155 SHA256 
2e6a03032555f5da1bdff2ae96c96486f447
 DIST ngx_http_fancyindex-0.4.1.tar.gz 21130 SHA256 
2b00d8e0ad2a67152a9cee7b7ee67990c742d501412df912baaf1eee9bb6dc71 SHA512 
ce0043ad4a2b638c5d99244d6caaa65ad142cea78884084a9aeca5a9593c68dbe508c9e4dd85dc5722eb63ef386612bffc48d4b6fc1487df244fbcb7a73bffe1
 WHIRLPOOL 
4a885afbadf64bbd25df6580a099472ae48836d9dddfe1dee6ac6a6f97bfb0cf7120ff10dd69fceca7085fab590bec3a4b4b5be5644f2352375316885ddc3cac
 DIST ngx_http_fancyindex-0.4.2.tar.gz 22047 SHA256 
8327150864ca267b735d550d3304030efbbd863fdddfe0a94e970f249a8827ee SHA512 
aee121e4d25872f0eee6c8150c8c732767ab24c61dc4f6e3f86bd6edc53ad715f3c23045362954a1ad2086ff1002bca821b2e9a53b58b077cbda91a95077ef76
 WHIRLPOOL 
81b34afe05fda9068a53d5fa29937c72210847a9eda86f8858d6d2d625958f1c6cea2c3639ce9132687b672384b066f314bfb7096098646131c7380bd99c5470
 DIST ngx_http_headers_more-0.32.tar.gz 28033 SHA256 
c6d9dab8ea1fc997031007e2e8f47cced01417e203cd88d53a9fe9f6ae138720 SHA512 
e42582b45c3111de3940bbeb67ce161aca2d55adcfb00c61c12256fa0e36221d38723013f36edbcf6d1b520f8dfb49d4657df8a956e66d36e68425afad382bd1
 WHIRLPOOL 
2b95ea8e2933e83082b9dfd7aaa8f57dd38b0ec12fb452a4aa38a215ca76b6572fe35b79c8afe8cf3097bf8

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

2017-11-21 Thread Alice Ferrazzi
commit: 588900dd784838416b5bce2faeacb344bb2ed670
Author: kuzetsa  gmail  com>
AuthorDate: Tue Nov 21 13:59:29 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 15:45:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=588900dd

sys-kernel/ck-sources: v.bump (4.9.64 & 4.13.15 & 4.14.1)

Package-Manager: Portage-2.3.13, Repoman-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/6257

 sys-kernel/ck-sources/Manifest   | 12 +---
 .../{ck-sources-4.14.0.ebuild => ck-sources-4.13.15.ebuild}  |  2 +-
 .../{ck-sources-4.14.0.ebuild => ck-sources-4.14.1.ebuild}   |  2 +-
 .../{ck-sources-4.14.0.ebuild => ck-sources-4.9.64.ebuild}   | 11 ---
 4 files changed, 19 insertions(+), 8 deletions(-)

diff --git a/sys-kernel/ck-sources/Manifest b/sys-kernel/ck-sources/Manifest
index d2894b30465..96000a88ef0 100644
--- a/sys-kernel/ck-sources/Manifest
+++ b/sys-kernel/ck-sources/Manifest
@@ -31,9 +31,12 @@ DIST genpatches-4.13-15.extras.tar.xz 17400 SHA256 
28a3431e5d8aca353b9d763c67261
 DIST genpatches-4.13-17.base.tar.xz 266392 SHA256 
bac6764bdc28b40db5aae433b2a6e16a4b9e1040c02d3d516b11ae57b76caf8a SHA512 
8cd638064078eef540f614f766b89d845208082109f7af71013ab210ef4f0b7f483eefc112805646cc99b8517c3d938dcbe2eab4fcd4b35be14969c83f71b858
 WHIRLPOOL 
82961c4d2f7f44b2ffc031550d70270ad938048475cee52ed3ffb8193c08473c3b5faf61ef9e3062d373cb47f71a382bb4c189f7d6929ef5dfd5fcd55044ea54
 DIST genpatches-4.13-17.experimental.tar.xz 5184 SHA256 
79ea2d943234c7bad47bf6c8c11838ea974752fee6ec74961b5fd693424326ca SHA512 
9f74b4ad9970941ffc931faf933dcd4e3e6fa3b5090c629db4fcac99d07613e0953d33fdae629359fec58207c245627e963e4b6e36e2a13ffc3c654f592cf7bc
 WHIRLPOOL 
9e4a3fac16b95c100430ebaa2cfe796a177531632125e8e8abfed3df8de60c791103f437383497bb8cc9bc2544a7da1d6210c80da69656445e17074046da4a4a
 DIST genpatches-4.13-17.extras.tar.xz 17384 SHA256 
f777359f588b4e86c0449c96a708d861fdb1103a80484747eeca745619b5020f SHA512 
2e6a14b9a40ea92af1ab79db66892d7f77bfc54380f08e8214ba1ce8d3d3de36e1be4c979ac3cd257545faf364002b7def9f7614bdbe73751692e8aed753ca5a
 WHIRLPOOL 
3d5b338a4d493a407e29a6a2ad9ad8945dbf9eca330632e968ceeeb6c0d317d8d8981ccc13e91e887beef5fab9bb13b2b2e03678e629d3089064e9da9de1792a
-DIST genpatches-4.14-1.base.tar.xz 5256 SHA256 
1459f373ecf84fc1d429db2bbca0c13528492deb0c30b2e9ca011eaf8bcce932 SHA512 
6f8fceff08d9d030785493973648ec3662a7a0c40e7919e0132d6915942a0e017f8ab6da9fdbd00fb6308d19a30608cfa5141141535a203d1cd4e55675d1f1eb
 WHIRLPOOL 
d3ed44fc3e85192f4cf58f629e83cf1ed23456d37a94eaf6242690ebde77cbcb90f1642ebddb65a8f188d3cedfd18bf92b870c4115dc622f3f3b4f4308d318c9
-DIST genpatches-4.14-1.experimental.tar.xz 5184 SHA256 
6734f0f0fdf33b648f7af28252e17b72e9345a483ef0714fa45e192cb33e2b7c SHA512 
c220d229f4dffaf7bf09b9d4cb1a73d61b7646191d715098e5eb51808c66d38827729edccf1252d7b1bfaaed7d2d2566add7b6cbadad1db246379334dee1
 WHIRLPOOL 
307fe32b1492096547eca0af6de818d81724ee58f2594d4c537b1a6bf797ef45b96a51a25b5e92d279e78398f5104bb28bb20a2c2980bab779e5f292017de246
-DIST genpatches-4.14-1.extras.tar.xz 3292 SHA256 
4f1886356f68ce31b02b3edc9982d9bf6492f39f30933f2db3a6339b285ce4c3 SHA512 
38f97d3fab03bde1c1868490e7095149c44c07213b3c6d0d02a6e4549700641daa525b29ffb8a6a78edd08d29ba592ff01ab0a30c37e45d932e3ebe6f48ef74e
 WHIRLPOOL 
2b0b90899c284ce2ec8d02461ccbb9ff997004c5c0e9617df6699a18d4665b2713844e0435e8c4afa52e2e9decad5e632da4ffb72d57e850eddb3a0021bcd5ae
+DIST genpatches-4.13-18.base.tar.xz 273920 SHA256 
6f62ab656a2268bff6ca348479e8a8ab7760be37067e02cac7d409d37c2fa401 SHA512 
3164f77eef84977602beed2acc59739d8d8ed99a0e9ea02a1f9a1e8ba95b35c8e7566e020ea88ed73f6bb0d359daa207d9e08d6cecf9cebe9b93fb86ff6280ac
 WHIRLPOOL 
18d2013274ae2fcdcd4cf1cbcbf3eb370faea497b2597c23f48ee87f37344cd749f010f7b8f507b44784ec94dbb6008603c8c9db0f86b90f1a03f938180ae8aa
+DIST genpatches-4.13-18.experimental.tar.xz 5180 SHA256 
ae765e5814e1ba88f9b84322080d1346de49cc681b6f2279336a59759493a4d1 SHA512 
09a53e6b53c20ddc857b7ff7001be326adacf9d24a565922c8ceae35a98e9a5a1bd214fd6a227115ea90436d3504154cd6ae3e47e5eac270f220ec16255b16ca
 WHIRLPOOL 
7476ea163249171c057d3ced1fd0c9953e698b7d694de3c33ea771f687b99d937b66a323799746cc8bd52ad416cee78735049729d5d8f8c27da136c1970f894b
+DIST genpatches-4.13-18.extras.tar.xz 17408 SHA256 
05363afc19b8eee1abb48cc81ce7e6397edb57d7e90bae014ec05d7b0b07165a SHA512 
eb0505e6f54051ca3f1cdf3070092d5e78831a649582021a19878d6ada2d47d0c960d1726201c0d276a2eb4eed2ed72dd162dbc0ce0185a82f4a4e9580e7c804
 WHIRLPOOL 
6ad8d563d86a862b7e9b7f2903ab96168d80f12d8ab386467a05be3f46dfff4f823f5bde01807364fdccc0e871e1b806984add7475f2061d9da8eb2409b7e730
+DIST genpatches-4.14-2.base.tar.xz 17648 SHA256 
5826e129ea0c4832faec7577fc00e248f5cb6e53186fc9ad14ad68f26d112532 SHA512 
8562287eef0efd1df7816c65eb452e2b1a037cf572cc5131cc27526a7e93cb610d49b6855eae28039c922c5ce1ca270da1cf4070aa5ceb32edb260c5ca82717a
 WHIRLPOOL 
5fef1986a007cefcd50e5311efa1497572b4b5959eaca316cca7fa13d7dffc6ece2d173d10d52a

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

2017-11-21 Thread Lars Wendler
commit: 02db8097a23ed187de6a4ee58400762393e98e7f
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Nov 21 15:33:19 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Nov 21 15:34:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02db8097

sys-apps/iproute2: Bump to version 4.14.1

Package-Manager: Portage-2.3.15, Repoman-2.3.6

 sys-apps/iproute2/Manifest   |   1 +
 sys-apps/iproute2/iproute2-4.14.1.ebuild | 148 +++
 2 files changed, 149 insertions(+)

diff --git a/sys-apps/iproute2/Manifest b/sys-apps/iproute2/Manifest
index a63dfa60ece..693370a9fd3 100644
--- a/sys-apps/iproute2/Manifest
+++ b/sys-apps/iproute2/Manifest
@@ -3,6 +3,7 @@ DIST iproute2-4.11.0.tar.xz 657100 SHA256 
72671028bda696d0cb8f48ec8e702581c3a501
 DIST iproute2-4.12.0.tar.xz 662424 SHA256 
2e0a4c4262d9f6c169885a6e16c4c5c5f1ef6fd57b6a0e7b41f42be5bb6ebd7d SHA512 
275147f71e7c4698654f0d6d0981ab42f6f108066508c15cfcd5d9e0d3aaf8d33291968d9f06cb03f5494d801cfabf8d53308aaf56fc4fa92c52b137e970a3b0
 WHIRLPOOL 
590cc191e96ff0b777373603186e4416f064931d529878ec783759f31fd99e1119bb0604e8a89dc98d350f80eca2bfef05a13bca7ce24302408072002c0b17b2
 DIST iproute2-4.13.0.tar.xz 670340 SHA256 
9cfb81edf8c8509e03daa77cf62aead01c4a827132f6c506578f94cc19415c50 SHA512 
f96d2839aec1f439bfac504c8e3881c063dacbf4c67b15f0e3da9882d2fa013cba33c23602de3eab624e0eecbb911a13967d60bddcdf097f47a580a5a77b5e3a
 WHIRLPOOL 
757247f1356eef49b299019f6d1809e5d781471665daedce885201b7034a6138def73c84ba2f0453f2f0f5d55cc2edf778992b3d79d06e01364c511373ea4644
 DIST iproute2-4.14.0.tar.xz 636872 SHA256 
fee001307b3c018462cb010e3aa19b38017de26168d5777c05ee73a21d60fcd0 SHA512 
dda8b7881d82d6d38449d69df362bd3eedde6c7f4dd315d6eaf7969673805faf82675e1df04d7dc35a826b0df429a400a3f8ac0e998c1de0d6ca500e722f058e
 WHIRLPOOL 
62ce4fa8ba1bb84678277401c07097b26490767cd55a66f2be743dc1fec4610033437517c44339dc4cc95ffe0d255d804c25cdd6e77640eb15453160abe87f78
+DIST iproute2-4.14.1.tar.xz 636876 SHA256 
d43ac068afcc350a448f4581b6e292331ef7e4e7aa746e34981582d5fdb10067 SHA512 
e593b68c46ef5f98bd6911ee7beb38388a14935a29fefabdeccc96aa012593b6f3a49b3bb1baed7d77e54f1f4a857172e058b73407f4070f158b8713f44f5d2c
 WHIRLPOOL 
42ee7611f3fb1ceb922c606bf11cd4d72cf71020a73f96f5130f07a9cab08f1dbc973cb5924f6a15cf4613dac5b60a3a97583c0e801db960f5039d6d8c0ef095
 DIST iproute2-4.4.0.tar.xz 528552 SHA256 
bc91c367288a19f78ef800cd6840363be1f22da8436fbae88e1a7250490d6514 SHA512 
48236fc6103a55d977efa4f93ad7fdfc0944df975ce771d57fd3dcfb13b761b0c05dbe749978ac86c7a471d023bee62a2f1648a6ca75f50da9252acfde174b69
 WHIRLPOOL 
7e90c98805e12b28de284bb998e5a27cf524a78d0bd7632c0d49a7ddff8f11f5229ac6867076e9fea6f21b6b31360bddb21138673d94de766bdf7324a09bc013
 DIST iproute2-4.5.0.tar.xz 554500 SHA256 
3f15292f53e465cb5bd6652961343ca64eb6936309ae75be5d5a541435bc494a SHA512 
d12be24cf7a1102be8e449d1e95fa67b784d505e98fcf2f18caedf0136fb378dc439f74a75bc0d6ef5b2893e5ca1968e122054404c1f4d1a212aeb0fba1c5860
 WHIRLPOOL 
dc660bde36fed126b27fb69a59c02405b5299b92a6b519ebdce74d817f88be82114bb10217ca34bbc26a89e664ff243e606a84bcb00db41088bce824542def40
 DIST iproute2-4.6.0.tar.xz 570960 SHA256 
74fc6a8ad085be095a159f8158bbaf385b42af9e101619f233f1ae466829d406 SHA512 
1e3868ced65012da6724744eb15e6bb8e2c5bf8d7a46cf2b655526de1a9e1224c7b7e9bd4a88e40516b5648955987eb9001600ca5afbd507bc664f92b51ede9f
 WHIRLPOOL 
1b0ff7988d6d5567137aca9d41e2cc3183f3620f8b874113ff9e6ca9508349550e388e423c54b165e73ed54ccb7a366ef8d032a930f27722eccbd5ff6879032e

diff --git a/sys-apps/iproute2/iproute2-4.14.1.ebuild 
b/sys-apps/iproute2/iproute2-4.14.1.ebuild
new file mode 100644
index 000..1e581bc9468
--- /dev/null
+++ b/sys-apps/iproute2/iproute2-4.14.1.ebuild
@@ -0,0 +1,148 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs flag-o-matic multilib
+
+if [[ ${PV} == "" ]] ; then
+   
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git"
+   inherit git-r3
+else
+   SRC_URI="mirror://kernel/linux/utils/net/${PN}/${P}.tar.xz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
+fi
+
+DESCRIPTION="kernel routing and traffic control utilities"
+HOMEPAGE="https://wiki.linuxfoundation.org/networking/iproute2";
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="atm berkdb +iptables ipv6 minimal selinux"
+
+# We could make libmnl optional, but it's tiny, so eh
+RDEPEND="
+   !net-misc/arpd
+   !minimal? ( net-libs/libmnl )
+   iptables? ( >=net-firewall/iptables-1.4.20:= )
+   berkdb? ( sys-libs/db:= )
+   atm? ( net-dialup/linux-atm )
+   selinux? ( sys-libs/libselinux )
+"
+# We require newer linux-headers for ipset support #549948 and some defines 
#553876
+DEPEND="
+   ${RDEPEND}
+   app-arch/xz-utils
+   iptables? ( virtual/pkgconfig )
+   sys-devel/bison
+   sys-devel/flex
+   

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

2017-11-21 Thread Mike Gilbert
commit: 226d956c3da004e730a9b4a72f710f0594eb4e6c
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Nov 21 15:33:08 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Nov 21 15:33:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=226d956c

sys-fs/btrfs-progs: sync live ebuild

Package-Manager: Portage-2.3.14_p5, Repoman-2.3.6

 sys-fs/btrfs-progs/btrfs-progs-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/btrfs-progs/btrfs-progs-.ebuild 
b/sys-fs/btrfs-progs/btrfs-progs-.ebuild
index 33bf02bef56..5ecd9046025 100644
--- a/sys-fs/btrfs-progs/btrfs-progs-.ebuild
+++ b/sys-fs/btrfs-progs/btrfs-progs-.ebuild
@@ -9,7 +9,7 @@ libbtrfs_soname=0
 
 if [[ ${PV} !=  ]]; then
MY_PV=v${PV}
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86"

SRC_URI="https://www.kernel.org/pub/linux/kernel/people/kdave/${PN}/${PN}-${MY_PV}.tar.xz";
S="${WORKDIR}"/${PN}-${MY_PV}
 else
@@ -83,8 +83,8 @@ src_configure() {
--bindir="${EPREFIX}"/sbin
$(use_enable convert)
$(use_enable elibc_glibc backtrace)
-   --with-convert=ext2$(usex reiserfs ',reiserfs' '')
$(use_enable zstd)
+   --with-convert=ext2$(usex reiserfs ',reiserfs' '')
)
econf "${myeconfargs[@]}"
 }



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

2017-11-21 Thread Mike Gilbert
commit: 5a8d9590240bb54908d7bb898ef6f80efc9a4151
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Nov 21 15:31:40 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue Nov 21 15:32:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a8d9590

sys-fs/btrfs-progs: disable zstd upon request

Closes: https://bugs.gentoo.org/638324
Package-Manager: Portage-2.3.14_p5, Repoman-2.3.6

 sys-fs/btrfs-progs/btrfs-progs-4.14.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-fs/btrfs-progs/btrfs-progs-4.14.ebuild 
b/sys-fs/btrfs-progs/btrfs-progs-4.14.ebuild
index 8a28c861ce6..5ecd9046025 100644
--- a/sys-fs/btrfs-progs/btrfs-progs-4.14.ebuild
+++ b/sys-fs/btrfs-progs/btrfs-progs-4.14.ebuild
@@ -83,6 +83,7 @@ src_configure() {
--bindir="${EPREFIX}"/sbin
$(use_enable convert)
$(use_enable elibc_glibc backtrace)
+   $(use_enable zstd)
--with-convert=ext2$(usex reiserfs ',reiserfs' '')
)
econf "${myeconfargs[@]}"



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

2017-11-21 Thread Brian Evans
commit: c6a3a38050e112302534fa1392dc5649ca3d4f36
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Nov 21 15:26:43 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Nov 21 15:26:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6a3a380

dev-db/mysql: Fix building 5.6.38 on gcc 7

Closes: https://bugs.gentoo.org/634514
Package-Manager: Portage-2.3.15, Repoman-2.3.6

 dev-db/mysql/Manifest| 1 +
 dev-db/mysql/mysql-5.6.38.ebuild | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-db/mysql/Manifest b/dev-db/mysql/Manifest
index e33be7f13ee..91f7cb75b5f 100644
--- a/dev-db/mysql/Manifest
+++ b/dev-db/mysql/Manifest
@@ -5,3 +5,4 @@ DIST mysql-5.6.38.tar.gz 32197625 SHA256 
18f249752f6c64af6e39c5b99c89ee1c86d6eb7
 DIST mysql-extras-20170302-1359Z.tar.bz2 306816 SHA256 
0375bffa8a7b26caab3a13be299b30231f20ad3e8dc82fba9384e5463763a105 SHA512 
2c096c68e0d545c98fb5520f92b9e85f6bbc910853793f60f0e67979ee927410bbecadece3400364fdc2b5682f9105664f6a2de8fa0ee1818fb266e063e82869
 WHIRLPOOL 
6629f0069b77c9add86f4a40168a1dad7bcc0ae18a513f05e44619366a5fdfb82238df2e925de88c358fca2dd50f162ffefd8efea335cb544ccdcf74e73ed25f
 DIST mysql-extras-20170719-1335Z.tar.bz2 311350 SHA256 
725dc29fa4a553cfc0bd07dcc1259e5a38a6d945f757e9f49f554a9a7773abe7 SHA512 
3450725b4cdcf1e330aee775c1c169510bd7f06f19b874a3e94203227d393b136165eca1e77270bfc37c534f4120aeeeb3df8fbd71704312836b79a99d81a122
 WHIRLPOOL 
f1606df56f82847a8b4b332c1b61cb695aba2a51aef895fa9596495d89208535f829b8fa69a6e97a26d0b9171d817115b83ce447c8232197353dda258a6d38d0
 DIST mysql-extras-20171018-1948Z.tar.bz2 313540 SHA256 
6b910637f7ac2d5132154357db46f47b585f6555846d5f1922e85954e93a527a SHA512 
35ba9f3c8462ae188e47f5973e891cbd72e5d742e92fabc09678f93c83bb26337ae11d6fa8400b2a8c5125ba2a771f780e008b7448e3006446b13d3e51adcaba
 WHIRLPOOL 
480c0aa3353076864795f0646a1c833cfeaddeff21e26404e98480f73ff6f4866a9ece39e7dd88e0d1a4ee9c820eb1fd31a46c09bfdb18537f839b0460fc3443
+DIST mysql-extras-20171121-1518Z.tar.bz2 313539 SHA256 
1afb0cd5cd7eb71b0cfa34d6f0b970ab3e00f8a3ab08a6a09a8fb829c4121f01 SHA512 
dd0d4a00c0ed710e786d157a73f02c6f555ab7a68e57014d958627096a4245a0b45d22ec860dc5389002d106554e8011c0b6ddcadff1f737e3fa195badda
 WHIRLPOOL 
67b7d6b4239b43f906477624137946c015f7d1430e309874858d40c8c55dfb633ad1f116b7bb08057c924c5a92a66a296016273ae984ba13d6c5d89ae1e054fc

diff --git a/dev-db/mysql/mysql-5.6.38.ebuild b/dev-db/mysql/mysql-5.6.38.ebuild
index f9b5a7e6897..5190600da74 100644
--- a/dev-db/mysql/mysql-5.6.38.ebuild
+++ b/dev-db/mysql/mysql-5.6.38.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="6"
 
-MY_EXTRAS_VER="20171018-1948Z"
+MY_EXTRAS_VER="20171121-1518Z"
 MY_PV="${PV//_alpha_pre/-m}"
 MY_PV="${MY_PV//_/-}"
 HAS_TOOLS_PATCH="1"
@@ -32,6 +32,7 @@ PATCHES=(
"${MY_PATCH_DIR}"/20009_all_mysql_myodbc_symbol_fix-5.6.patch
"${MY_PATCH_DIR}"/20018_all_mysql-5.6.25-without-clientlibs-tools.patch
"${MY_PATCH_DIR}"/20027_all_mysql-5.5-perl5.26-includes.patch
+   "${MY_PATCH_DIR}"/20028_all_mysql-5.6-gcc7.patch
 )
 
 # Please do not add a naive src_unpack to this ebuild



[gentoo-commits] proj/mysql-extras: New tag: mysql-extras-20171121-1518Z

2017-11-21 Thread Brian Evans
commit: 
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Nov 21 15:18:33 2017 +

New tag: mysql-extras-20171121-1518Z




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

2017-11-21 Thread Lars Wendler
commit: f9d2da3b41693901512eae8eaff2c0dcee6174a7
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue Nov 21 15:08:40 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Nov 21 15:08:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9d2da3b

media-libs/faac: Bump to version 1.29.9.2 and removed old.

Package-Manager: Portage-2.3.15, Repoman-2.3.6

 media-libs/faac/Manifest | 2 +-
 media-libs/faac/{faac-1.29.9.ebuild => faac-1.29.9.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/faac/Manifest b/media-libs/faac/Manifest
index 26bee3cea74..cb6a43bb361 100644
--- a/media-libs/faac/Manifest
+++ b/media-libs/faac/Manifest
@@ -1,3 +1,3 @@
 DIST faac-1.28.tar.gz 678891 SHA256 
c5141199f4cfb17d749c36ba8cfe4b25f838da67c22f0fec40228b6b9c3d19df SHA512 
0ef721ad28835e95cad41afc0cb6130e1ebb634cb6dd4b40f649bc2269b7bb5bf2887f6d8f023c74628d521f8bdf55b4dd070f972ecff162a5fe0384e026235b
 WHIRLPOOL 
fe56f3c2b40670f03e0c1880b253d7f0cc6e318c0b407f4e57fb7eaeac8692c6de9829402e670ddc0f397396935131ade0f8dadfc89b88fcdedecbf404e1b54e
 DIST faac-1.29.8.3.tar.gz 483404 SHA256 
3d85267b394dd8ebd5dd88845b25bc5e5e4fc88ac5affb8a2807f50368dc3b41 SHA512 
2f17d87245c5cdb1ea37f21fb67f5a239f24133bb863bd635bb1f223d8d54c13d23ad43e93954a89361109c39b01e3b506ee791ffdf52741f76feb8bd1ed316c
 WHIRLPOOL 
72f601a8c1ef9901e0037db9dc99a873997bce366ce79aef5d08fc5fa2edb7baeeb0c9738d416cd058720b2a52d14288410ce51beba76d864b45fff30a6526e0
-DIST faac-1.29.9.tar.gz 483674 SHA256 
238cb4453b6fe4eebaffb326e40a63786a155e349955c4259925006fa1e2839e SHA512 
69c05fc426c5d2eb881e8c6e5ebaf1d28452b2ae11a6f5216eefc0a8a97f784a2481e6100db2746d12749ac7b6c7d01b03531dc83ce0e06d4463e6f9556fd597
 WHIRLPOOL 
1adf97b6e4a09905731e1e55a46d6e845a7a2bafe910a7405a2cd4c60e1e62e36e06fc01e97b66fc0978b2425f903d2e8fd53b83d0cf6af61344f6e678a5377c
+DIST faac-1.29.9.2.tar.gz 483826 SHA256 
d45f209d837c49dae6deebcdd87b8cc3b04ea290880358faecf5e7737740c771 SHA512 
71aaf060d087e866700a3a7c7d447e85709f65709e148610c4b34f5a3e095fa4a5c19f49450610949fd7db12345422b8a116a1d061899c127ad9a1bc30e79c7c
 WHIRLPOOL 
89377adb955ad3ad02c1531893bde4bfd1c8298a7138a80e078197b89a11a91f0bb530cd6672550083254c6869b69a44a88d5d004f314ceab0c66f83bca4e428

diff --git a/media-libs/faac/faac-1.29.9.ebuild 
b/media-libs/faac/faac-1.29.9.2.ebuild
similarity index 100%
rename from media-libs/faac/faac-1.29.9.ebuild
rename to media-libs/faac/faac-1.29.9.2.ebuild



[gentoo-commits] proj/mysql-extras:master commit in: /

2017-11-21 Thread Brian Evans
commit: 3a4ccb251df768eb8d9ab440ebf220c22a8556af
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Nov 21 15:00:08 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Nov 21 15:00:08 2017 +
URL:https://gitweb.gentoo.org/proj/mysql-extras.git/commit/?id=3a4ccb25

Add gcc 7 compilation patch for MySQL 5.6

 20028_all_mysql-5.6-gcc7.patch | 13 +
 1 file changed, 13 insertions(+)

diff --git a/20028_all_mysql-5.6-gcc7.patch b/20028_all_mysql-5.6-gcc7.patch
new file mode 100644
index 000..cf8caed
--- /dev/null
+++ b/20028_all_mysql-5.6-gcc7.patch
@@ -0,0 +1,13 @@
+diff --git a/sql-common/client_authentication.cc 
b/sql-common/client_authentication.cc
+index eaeb2d4..035ecd2 100644
+--- a/sql-common/client_authentication.cc
 b/sql-common/client_authentication.cc
+@@ -84,7 +84,7 @@ RSA *rsa_init(MYSQL *mysql)
+ 
+   if (mysql->options.extension != NULL &&
+   mysql->options.extension->server_public_key_path != NULL &&
+-  mysql->options.extension->server_public_key_path != '\0')
++  mysql->options.extension->server_public_key_path[0] != '\0')
+   {
+ pub_key_file= fopen(mysql->options.extension->server_public_key_path,
+ "r");



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

2017-11-21 Thread Manuel Rüger
commit: 9b7fa1cadc90fdba753370e744671deb0d8d4a1d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Nov 21 14:56:25 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Nov 21 14:56:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b7fa1ca

dev-util/drone: Version bump to 0.8.2

Package-Manager: Portage-2.3.15, Repoman-2.3.6

 dev-util/drone/Manifest   |  4 +++
 dev-util/drone/drone-0.8.2.ebuild | 52 +++
 2 files changed, 56 insertions(+)

diff --git a/dev-util/drone/Manifest b/dev-util/drone/Manifest
index 6696b33a0ad..8599ab79976 100644
--- a/dev-util/drone/Manifest
+++ b/dev-util/drone/Manifest
@@ -1,9 +1,13 @@
 DIST drone-0.7.3.tar.gz 4133041 SHA256 
997ce994fb852ffc0c98f20ba17d9ff458b396019207e923cd5863ec7599211e SHA512 
4c85e964f43ce3076996cd1cbcfc3675d74b254278d046d1e7d4b7f04ee5fcc55a6de04947c3f8102be474e0ef3fbd5d0006ac2b39aae04fe2bc6b466b513c66
 WHIRLPOOL 
18cfc24df5735b11f767b0ec323f591e44b08192abb05eff3984ef6bd8ce3df548924fb69b9543cb3c92c3b26f3bddfdfd105ec4014ebe2bd5c2b420c7fe6c2f
 DIST drone-0.8.0.tar.gz 4755986 SHA256 
1d0c375308a444fa0f0f92c1fda2e1cd7fabf1683b5d77a418076844520bfc84 SHA512 
f6a383df0718e7db7c35b518b248af001aeca5fc836f12d1f363a6897ea278d72e54d16f72fa9887aecdc162e0cb7fa5572215e0069f4dcacc0be4e1132a58d7
 WHIRLPOOL 
9a76227a2e0eb6a60ed989c62909131a30636e70074e230a95c20747cba6a752ebf430ca59391b2d9f72022f55fd60fe8dea732ab7c43d4f87533a5502b20064
 DIST drone-0.8.1.tar.gz 4756298 SHA256 
08212cb57ab5dee58497219003dbf57cb8bc35ff441acdc5a8960dd42e9f9df0 SHA512 
b34e606c1aae02e274ef41cdf4bfc1e584b3a1020b211d9d869f7905caa5f9a8514d694a1f51c4cef5431c228451763a50dc610b31b311f08e0e955f02737751
 WHIRLPOOL 
3877d43a34a0a9446e1f1dcd3a880c76cee3baaedda5149734b9fab90e07b584d6bf012883f954339e6a83d1a0212b671caccaeeddbecba05d9051ece7fee890
+DIST drone-0.8.2.tar.gz 4758508 SHA256 
db1469def1a102f3130eac4278e0e1d10d12dc66955077259c386535c884a829 SHA512 
3bec1b93210349e7c82386b5e16c04c458987633dc56493d52741dcdd6d3887f3f2db454f1e18c4cb71f455eadc7232cd1f089118880a70be53eefbf8203f5d5
 WHIRLPOOL 
276a30788acbf86982a9836d381840fae9bda841dcb3c5e6be8a3cfc3b057a0a2432beaec95f38b0b1465357032a9528fe2f1244714141ca7a617c8edac68b97
 DIST github.com-drone-drone-ui-2910d0ee662816a2463d31f0988b1ecccd0410b5.tar.gz 
167172 SHA256 5817bfb4fe7546a492d840f7a42a0dc6ede1eeacfc735024276bb90fb1522b5d 
SHA512 
d4c6fbeba9ae5c55533a76fdcf6c251516aa4f8c650f49add7e9392d22a131438bd829670df801495d361417ec12cce07e9d9c28aacd1ce1adc0024408cf3cca
 WHIRLPOOL 
f941daae3f12c96fd439680c5ca81ccbe3aea2b76b1e250ef009a0fe7883514909113b6c9ab923bcb05a5950dec9b57bd849bedb8767225f6eece583f4fe63de
 DIST github.com-drone-drone-ui-5a497bd6cd5c3c17c53b00d40bcda1bf6f68f475.tar.gz 
229479 SHA256 706b974674b70cb5c16ee1258c8a01535cc151940aab88c356a00549d1b150fa 
SHA512 
38c59fc48f06805a2e69036b7184c7385ab51671f0a2538d779d15c9bc22f03cb091d971265b2522b755db955b326447cf041aa5f76792e0ab0b43c654f82fb7
 WHIRLPOOL 
d863d94a58c9bb8622f1bbcfe2ee182f7f80160f4e8ce40c84390a13c39e953492a357a07d798c7b758fc5b856f1002d30e7eb8812427110a529df59aca0d510
 DIST github.com-drone-drone-ui-87c64622eae0ea8d515fa6d551841d4b699bf7f1.tar.gz 
229472 SHA256 afd19b2f5b90d79b20fe16a0d66085072b4d9f5ebae4acae766ba7561d1c450a 
SHA512 
14982e52113293e80e183523be4b84a2594c19b5c47e26e09360ac81dcc5eed0205d107beec1d3b2f3d6be36f8c1b782bc487c8b897d288cf8a74852b28fb08b
 WHIRLPOOL 
f10af4ac5a8fdf392f81f2c1008527736875d2753d17c2f7e17dc4f3915c144aa9b12ad3f00aa2c0842fc439b7b10be251a26855e1fbc94bed73132505d15ae0
+DIST github.com-drone-drone-ui-cc079b1279f70e54f64cf0c14e1e531b6689232b.tar.gz 
229805 SHA256 275fa3c0357eb926833f5a26b1ea368c9648692836cfa681b0ece2e16f7d4dd7 
SHA512 
8c9dcd0f77916cbf144ee062453adebfb73a8537c0f40f799d87cae9e3811cdf914cec90ecd4526149be0c3baed646b9065ed879c69d185df7c7ecb452bcf798
 WHIRLPOOL 
f510f892d65f772a39e8124982dea5907d054e2a2cf5c89e008f2f1edd1c8d7ba96c068796917e7b0529869add5cd6bb07da15c0b6a1265fbbeb990e852719fa
 DIST github.com-golang-net-0744d001aa8470aaa53df28d32e5ceeb8af9bd70.tar.gz 
920361 SHA256 03f6f00d1142924dfee5abd67e6a39801a1da5c9f372a122f3c65de58a39 
SHA512 
d308b4f872612287c29b815b6ac0c4c3efbda4c641940ed8553851b1e93c6654bf443367b5ec96166d68fc2759d7e90e46fd6f148f0a6d535bf057bb785627d7
 WHIRLPOOL 
3d058a51d06992f8c07640f2ff6e69c5a0c468251420857b26da30fb6dc9b15f169321a7a4a29849aa6f346122339a0758875d6afd31d8d85a0cf3be8bb481f2
 DIST github.com-golang-net-0a9397675ba34b2845f758fe3cd68828369c6517.tar.gz 
922889 SHA256 46e2a7e1062920808f8c4dc026072ab0b4cd9176988d9b05b6e40c051621468d 
SHA512 
0aba0d4661a21ff31efb3dcd811ec4c9862e21ceaff6cdbb4dbe3c99495b3c575a2cec5b356bb229d7a207e10e7753f286425ee03367a8607deacdcc4a92726d
 WHIRLPOOL 
97c21f45d39e48eb2c4053d31306e8c710a80095e2d351e81182d9e8e017c2092000f2e8847a293ddbe33e2d6bf6bbb34c153529d6fbba8d1692f9059702e611
+DIST github.com-golang-net-9dfe39835686865bff950a07b394c12a98ddc811.tar.gz 
926294 SHA256 4f8800a39f9972bf081fc3e429fb5

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

2017-11-21 Thread Manuel Rüger
commit: 3be6381972b2465b32acb35e281a9ce552638c8d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Nov 21 14:56:42 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Nov 21 14:56:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3be63819

dev-util/drone: Remove old

Package-Manager: Portage-2.3.15, Repoman-2.3.6

 dev-util/drone/Manifest   |  7 --
 dev-util/drone/drone-0.8.0.ebuild | 52 ---
 dev-util/drone/drone-0.8.1.ebuild | 52 ---
 3 files changed, 111 deletions(-)

diff --git a/dev-util/drone/Manifest b/dev-util/drone/Manifest
index 8599ab79976..1db1375184c 100644
--- a/dev-util/drone/Manifest
+++ b/dev-util/drone/Manifest
@@ -1,13 +1,6 @@
 DIST drone-0.7.3.tar.gz 4133041 SHA256 
997ce994fb852ffc0c98f20ba17d9ff458b396019207e923cd5863ec7599211e SHA512 
4c85e964f43ce3076996cd1cbcfc3675d74b254278d046d1e7d4b7f04ee5fcc55a6de04947c3f8102be474e0ef3fbd5d0006ac2b39aae04fe2bc6b466b513c66
 WHIRLPOOL 
18cfc24df5735b11f767b0ec323f591e44b08192abb05eff3984ef6bd8ce3df548924fb69b9543cb3c92c3b26f3bddfdfd105ec4014ebe2bd5c2b420c7fe6c2f
-DIST drone-0.8.0.tar.gz 4755986 SHA256 
1d0c375308a444fa0f0f92c1fda2e1cd7fabf1683b5d77a418076844520bfc84 SHA512 
f6a383df0718e7db7c35b518b248af001aeca5fc836f12d1f363a6897ea278d72e54d16f72fa9887aecdc162e0cb7fa5572215e0069f4dcacc0be4e1132a58d7
 WHIRLPOOL 
9a76227a2e0eb6a60ed989c62909131a30636e70074e230a95c20747cba6a752ebf430ca59391b2d9f72022f55fd60fe8dea732ab7c43d4f87533a5502b20064
-DIST drone-0.8.1.tar.gz 4756298 SHA256 
08212cb57ab5dee58497219003dbf57cb8bc35ff441acdc5a8960dd42e9f9df0 SHA512 
b34e606c1aae02e274ef41cdf4bfc1e584b3a1020b211d9d869f7905caa5f9a8514d694a1f51c4cef5431c228451763a50dc610b31b311f08e0e955f02737751
 WHIRLPOOL 
3877d43a34a0a9446e1f1dcd3a880c76cee3baaedda5149734b9fab90e07b584d6bf012883f954339e6a83d1a0212b671caccaeeddbecba05d9051ece7fee890
 DIST drone-0.8.2.tar.gz 4758508 SHA256 
db1469def1a102f3130eac4278e0e1d10d12dc66955077259c386535c884a829 SHA512 
3bec1b93210349e7c82386b5e16c04c458987633dc56493d52741dcdd6d3887f3f2db454f1e18c4cb71f455eadc7232cd1f089118880a70be53eefbf8203f5d5
 WHIRLPOOL 
276a30788acbf86982a9836d381840fae9bda841dcb3c5e6be8a3cfc3b057a0a2432beaec95f38b0b1465357032a9528fe2f1244714141ca7a617c8edac68b97
 DIST github.com-drone-drone-ui-2910d0ee662816a2463d31f0988b1ecccd0410b5.tar.gz 
167172 SHA256 5817bfb4fe7546a492d840f7a42a0dc6ede1eeacfc735024276bb90fb1522b5d 
SHA512 
d4c6fbeba9ae5c55533a76fdcf6c251516aa4f8c650f49add7e9392d22a131438bd829670df801495d361417ec12cce07e9d9c28aacd1ce1adc0024408cf3cca
 WHIRLPOOL 
f941daae3f12c96fd439680c5ca81ccbe3aea2b76b1e250ef009a0fe7883514909113b6c9ab923bcb05a5950dec9b57bd849bedb8767225f6eece583f4fe63de
-DIST github.com-drone-drone-ui-5a497bd6cd5c3c17c53b00d40bcda1bf6f68f475.tar.gz 
229479 SHA256 706b974674b70cb5c16ee1258c8a01535cc151940aab88c356a00549d1b150fa 
SHA512 
38c59fc48f06805a2e69036b7184c7385ab51671f0a2538d779d15c9bc22f03cb091d971265b2522b755db955b326447cf041aa5f76792e0ab0b43c654f82fb7
 WHIRLPOOL 
d863d94a58c9bb8622f1bbcfe2ee182f7f80160f4e8ce40c84390a13c39e953492a357a07d798c7b758fc5b856f1002d30e7eb8812427110a529df59aca0d510
-DIST github.com-drone-drone-ui-87c64622eae0ea8d515fa6d551841d4b699bf7f1.tar.gz 
229472 SHA256 afd19b2f5b90d79b20fe16a0d66085072b4d9f5ebae4acae766ba7561d1c450a 
SHA512 
14982e52113293e80e183523be4b84a2594c19b5c47e26e09360ac81dcc5eed0205d107beec1d3b2f3d6be36f8c1b782bc487c8b897d288cf8a74852b28fb08b
 WHIRLPOOL 
f10af4ac5a8fdf392f81f2c1008527736875d2753d17c2f7e17dc4f3915c144aa9b12ad3f00aa2c0842fc439b7b10be251a26855e1fbc94bed73132505d15ae0
 DIST github.com-drone-drone-ui-cc079b1279f70e54f64cf0c14e1e531b6689232b.tar.gz 
229805 SHA256 275fa3c0357eb926833f5a26b1ea368c9648692836cfa681b0ece2e16f7d4dd7 
SHA512 
8c9dcd0f77916cbf144ee062453adebfb73a8537c0f40f799d87cae9e3811cdf914cec90ecd4526149be0c3baed646b9065ed879c69d185df7c7ecb452bcf798
 WHIRLPOOL 
f510f892d65f772a39e8124982dea5907d054e2a2cf5c89e008f2f1edd1c8d7ba96c068796917e7b0529869add5cd6bb07da15c0b6a1265fbbeb990e852719fa
-DIST github.com-golang-net-0744d001aa8470aaa53df28d32e5ceeb8af9bd70.tar.gz 
920361 SHA256 03f6f00d1142924dfee5abd67e6a39801a1da5c9f372a122f3c65de58a39 
SHA512 
d308b4f872612287c29b815b6ac0c4c3efbda4c641940ed8553851b1e93c6654bf443367b5ec96166d68fc2759d7e90e46fd6f148f0a6d535bf057bb785627d7
 WHIRLPOOL 
3d058a51d06992f8c07640f2ff6e69c5a0c468251420857b26da30fb6dc9b15f169321a7a4a29849aa6f346122339a0758875d6afd31d8d85a0cf3be8bb481f2
-DIST github.com-golang-net-0a9397675ba34b2845f758fe3cd68828369c6517.tar.gz 
922889 SHA256 46e2a7e1062920808f8c4dc026072ab0b4cd9176988d9b05b6e40c051621468d 
SHA512 
0aba0d4661a21ff31efb3dcd811ec4c9862e21ceaff6cdbb4dbe3c99495b3c575a2cec5b356bb229d7a207e10e7753f286425ee03367a8607deacdcc4a92726d
 WHIRLPOOL 
97c21f45d39e48eb2c4053d31306e8c710a80095e2d351e81182d9e8e017c2092000f2e8847a293ddbe33e2d6bf6bbb34c153529d6fbba8d1692f9059702e611
 DIST github.com-golang-net-9dfe39835686865bff95

[gentoo-commits] proj/sci:master commit in: sci-biology/BBmap/

2017-11-21 Thread Martin Mokrejs
commit: 260aefeda8cec93335beb1bb83e299aff7bc8612
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Tue Nov 21 14:53:47 2017 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Tue Nov 21 14:53:47 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=260aefed

sci-biology/BBmap: version bump

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 sci-biology/BBmap/{BBmap-37.22.ebuild => BBmap-37.67.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/sci-biology/BBmap/BBmap-37.22.ebuild 
b/sci-biology/BBmap/BBmap-37.67.ebuild
similarity index 100%
rename from sci-biology/BBmap/BBmap-37.22.ebuild
rename to sci-biology/BBmap/BBmap-37.67.ebuild



[gentoo-commits] proj/sci:master commit in: sci-biology/SEECER/files/

2017-11-21 Thread Martin Mokrejs
commit: 6283a774209756751880212d783863da56b9f80e
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Tue Nov 21 14:15:55 2017 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Tue Nov 21 14:15:55 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6283a774

sci-biology/SEECER: 'patch -p1' and not 'patch -p0' is used

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 sci-biology/SEECER/files/remove-hardcoded-paths.patch | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-biology/SEECER/files/remove-hardcoded-paths.patch 
b/sci-biology/SEECER/files/remove-hardcoded-paths.patch
index d8120e396..bb46f6a30 100644
--- a/sci-biology/SEECER/files/remove-hardcoded-paths.patch
+++ b/sci-biology/SEECER/files/remove-hardcoded-paths.patch
@@ -1,5 +1,5 @@
 bin/run_jellyfish.sh   2015-11-13 18:40:01.595807104 +0100
-+++ bin/run_jellyfish.sh   2015-11-13 18:51:45.655818838 +0100
+--- SEECER-0.1.3/bin/run_jellyfish.sh  2015-11-13 18:40:01.595807104 +0100
 SEECER-0.1.3/bin/run_jellyfish.sh  2015-11-13 18:51:45.655818838 +0100
 @@ -3,22 +3,27 @@
  LCOUNT=$4
  TMPDIR=$5
@@ -33,8 +33,8 @@
 -$JF dump --lower-count=$LCOUNT -o $2 -c $TMPDIR/jf_merged_$3
 +$JF dump --lower-count=$LCOUNT -o $2 -c $TMPDIR/jf_merged_$3 || exit 255
  rm $TMPDIR/jf_merged_$3
 bin/run_seecer.sh  2015-11-13 18:40:16.215807347 +0100
-+++ bin/run_seecer.sh  2015-11-13 18:53:03.695820138 +0100
+--- SEECER-0.1.3/bin/run_seecer.sh 2015-11-13 18:40:16.215807347 +0100
 SEECER-0.1.3/bin/run_seecer.sh 2015-11-13 18:53:03.695820138 +0100
 @@ -25,8 +25,8 @@
  #
  



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

2017-11-21 Thread Manuel Rüger
commit: 354da9cb994b7d6490e302eba9ec87d9c69a5412
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Nov 21 14:15:09 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Nov 21 14:15:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354da9cb

sys-apps/fwupd: Version bump to 1.0.1

Package-Manager: Portage-2.3.15, Repoman-2.3.6

 sys-apps/fwupd/Manifest   |  1 +
 sys-apps/fwupd/fwupd-1.0.1.ebuild | 90 +++
 2 files changed, 91 insertions(+)

diff --git a/sys-apps/fwupd/Manifest b/sys-apps/fwupd/Manifest
index 1c23b933e2e..fb12b046c6f 100644
--- a/sys-apps/fwupd/Manifest
+++ b/sys-apps/fwupd/Manifest
@@ -1,3 +1,4 @@
 DIST fwupd-0.9.5.tar.gz 1389768 SHA256 
876bb4c1cc5b27bb5f30e1c5d81522c82554738bede9a811f9e352966e58453e SHA512 
2a8ca8da2fffa71bdaa44b82aff1a4151441b8496793101d7d0b1ab984bfbb10a3a94c4ebae5cfc17241364ab7aed051252a70543ebe6a82dd8bdb5c6f52863d
 WHIRLPOOL 
b7d606acd35a58e25ee94045557899b1c9ea30941024cfb17bf3226f39dab7961c802abafc9ca6320e21ea1ca3792a0bd37fa942476dfd0b37c4ce3b4fe28b5b
 DIST fwupd-0.9.6.tar.gz 1404749 SHA256 
cf406eb11b284cd89228db53bff787cb8468d4e14a910acdea4c995f04df2435 SHA512 
d2098d2f14319728f1f2078126f68ee5b5cb2f32687428f61db13b01ad3904ea6c641c3758044229a7d1f48a0b96c7984a119d48a8ef5efc65e29e90476f4017
 WHIRLPOOL 
7854fd62fb87980c2d89d8341c85f4ddbf860c3cfbd0a1e541caac28c36f4499db1b2e78a42b7d8351a519bbb6d7ce2e75b3fa13672b5ca7b7f8e2cc35ceaf34
 DIST fwupd-1.0.0.tar.gz 1466486 SHA256 
179ee1fb5c0099ba9bfb8c07178574cc7408297d2af80ddf483e9f147b30e31a SHA512 
6bf5e691b2d958b28e6002bfbc06bd19440876aea8dc55f761e10e039141e12df14a6ec8c2f2479b82770f4a15296229dd662653841bb0b41d4ea61fa422
 WHIRLPOOL 
0db3183049921b8ac30b5855c3657d6c51a948bba2728178ed4932e18401f15f6af7178ac866a56347219b334385c826ce5cec0ac72ddcba799251b3f91468b9
+DIST fwupd-1.0.1.tar.gz 1498681 SHA256 
9a4eeb37241f4b4e1eeade9d431e074f5324573e450ea9d2ef4af3fd8b59def3 SHA512 
f89455563d8d587bee6c6f4a9a1ff75401d803a89087ddb73b9260e2578e581bdc315593b7bb3466318a52123383c9499cba2fe3ead0fe13efd40d907a753345
 WHIRLPOOL 
774ff9b64e6e37b12b48c987ed2515d958127883e84ae988a5b491a238fc6a486adf29d2b4d615ef2107eb87c915d1eed8deff8875c6cd749fb004b98f10f4c2

diff --git a/sys-apps/fwupd/fwupd-1.0.1.ebuild 
b/sys-apps/fwupd/fwupd-1.0.1.ebuild
new file mode 100644
index 000..6d4d3f01c65
--- /dev/null
+++ b/sys-apps/fwupd/fwupd-1.0.1.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2017 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 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 elf +man systemd test uefi uefi_labels"
+REQUIRED_USE="
+   uefi_labels? ( ${PYTHON_REQUIRED_USE} )
+"
+
+RDEPEND="
+   app-crypt/gpgme
+   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]
+   >=net-libs/libsoup-2.51.92:2.4
+   >=sys-auth/polkit-0.103
+   colorhug? ( >=x11-misc/colord-1.2.12:0= )
+   dell? (
+   sys-libs/efivar
+   >=sys-libs/libsmbios-2.3.3
+   )
+   elf? ( virtual/libelf:0= )
+   systemd? ( >=sys-apps/systemd-231 )
+   !systemd? ( >=sys-auth/consolekit-1.0.0 )
+   uefi? ( >=sys-apps/fwupdate-5 )
+   uefi_labels? (
+   ${PYTHON_DEPS}
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   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
+   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
+}
+
+src_configure() {
+   xdg_environment_reset
+   local emesonargs=(
+   -Denable-colorhug="$(usex colorhug true false)"
+   -Denable-consolekit="$(usex systemd false true)"
+   -Denable-dell="$(usex dell true false)"
+   -Denable-doc="$(usex doc true false)"
+   -Denable-man="$(usex man true false)"
+   -Denable-libelf="$(usex elf true false)"
+   -D

[gentoo-commits] proj/sci:master commit in: sci-biology/SEECER/files/

2017-11-21 Thread Martin Mokrejs
commit: a6b2257d10e785afb2c8045af72d4eb24ceaa55f
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Tue Nov 21 14:06:46 2017 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Tue Nov 21 14:06:46 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=a6b2257d

sci-biology/SEECER: drop trailing .ori from filenames

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 sci-biology/SEECER/files/remove-hardcoded-paths.patch | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-biology/SEECER/files/remove-hardcoded-paths.patch 
b/sci-biology/SEECER/files/remove-hardcoded-paths.patch
index a04ee6759..d8120e396 100644
--- a/sci-biology/SEECER/files/remove-hardcoded-paths.patch
+++ b/sci-biology/SEECER/files/remove-hardcoded-paths.patch
@@ -1,4 +1,4 @@
 bin/run_jellyfish.sh.ori   2015-11-13 18:40:01.595807104 +0100
+--- bin/run_jellyfish.sh   2015-11-13 18:40:01.595807104 +0100
 +++ bin/run_jellyfish.sh   2015-11-13 18:51:45.655818838 +0100
 @@ -3,22 +3,27 @@
  LCOUNT=$4
@@ -33,7 +33,7 @@
 -$JF dump --lower-count=$LCOUNT -o $2 -c $TMPDIR/jf_merged_$3
 +$JF dump --lower-count=$LCOUNT -o $2 -c $TMPDIR/jf_merged_$3 || exit 255
  rm $TMPDIR/jf_merged_$3
 bin/run_seecer.sh.ori  2015-11-13 18:40:16.215807347 +0100
+--- bin/run_seecer.sh  2015-11-13 18:40:16.215807347 +0100
 +++ bin/run_seecer.sh  2015-11-13 18:53:03.695820138 +0100
 @@ -25,8 +25,8 @@
  #



[gentoo-commits] proj/sci:master commit in: sci-biology/SEECER/

2017-11-21 Thread Martin Mokrejs
commit: 8c3e0095958a9efae40423c93b9b6480152d32b1
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Tue Nov 21 14:03:47 2017 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Tue Nov 21 14:03:47 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=8c3e0095

sci-biology/SEECER: remove stale .swp files from mschulz

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 sci-biology/SEECER/SEECER-0.1.3-r2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sci-biology/SEECER/SEECER-0.1.3-r2.ebuild 
b/sci-biology/SEECER/SEECER-0.1.3-r2.ebuild
index ac49a7503..60862d8c8 100644
--- a/sci-biology/SEECER/SEECER-0.1.3-r2.ebuild
+++ b/sci-biology/SEECER/SEECER-0.1.3-r2.ebuild
@@ -33,6 +33,7 @@ PATCHES=(
 src_prepare(){
# 
http://seecer-rna-read-error-correction-mailing-list.21961.x6.nabble.com/Segmentation-fault-in-step-4-td41.html
cp -p "${FILESDIR}"/replace_ids.cc "${S}"/src/ || die
+   rm -f bin/.run*.swp || die
default
 }
 



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

2017-11-21 Thread Alexis Ballier
commit: 954726debd5f333e2a24eaca436d5db15046059b
Author: Simon van der Veldt  gmail  com>
AuthorDate: Sun Nov 19 16:48:40 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Nov 21 13:55:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=954726de

media-sound/helm Fix dependencies

Closes: https://bugs.gentoo.org/585202

 media-sound/helm/helm-0.4.1-r2.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/media-sound/helm/helm-0.4.1-r2.ebuild 
b/media-sound/helm/helm-0.4.1-r2.ebuild
index b4af7711363..e7f71121652 100644
--- a/media-sound/helm/helm-0.4.1-r2.ebuild
+++ b/media-sound/helm/helm-0.4.1-r2.ebuild
@@ -14,11 +14,15 @@ KEYWORDS="~amd64"
 IUSE=""
 
 RDEPEND="media-libs/alsa-lib
+   media-libs/freetype
media-libs/lv2
virtual/jack
virtual/opengl
x11-libs/libX11
-   x11-libs/libXext"
+   x11-libs/libXcursor
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr"
 DEPEND="${RDEPEND}"
 
 DOCS="README.md"



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

2017-11-21 Thread Jeroen Roovers
commit: 6217fe01d52c2cd1eed967bfc5cd13b9880b95e1
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Nov 21 13:51:56 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Nov 21 13:52:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6217fe01

app-arch/unzip: Version bump.

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 app-arch/unzip/Manifest |  1 +
 app-arch/unzip/unzip-6.0_p21.ebuild | 85 +
 2 files changed, 86 insertions(+)

diff --git a/app-arch/unzip/Manifest b/app-arch/unzip/Manifest
index f7a457161cb..8296fa70277 100644
--- a/app-arch/unzip/Manifest
+++ b/app-arch/unzip/Manifest
@@ -1,2 +1,3 @@
 DIST unzip60.tar.gz 1376845 SHA256 
036d96991646d0449ed0aa952e4fbe21b476ce994abc276e49d30e686708bd37 SHA512 
0694e403ebc57b37218e00ec1a406cae5cc9c5b52b6798e0d4590840b6cdbf9ddc0d9471f67af783e960f8fa2e620394d51384257dca23d06bcd90224a80ce5d
 WHIRLPOOL 
eab32d6d0ab100d302b608658a3ae290d3dad4beddccebaf6cb6527102bb238f751ec6482dea68ae62474005de89f11f9e0cf1b1e12bee2ca5a2336a3c0c9808
 DIST unzip_6.0-20.debian.tar.xz 16680 SHA256 
7ddfafb1a771ae8d6b4e25c5e31f22c717e0fe606b1bafadcdd574c01f671490 SHA512 
7212cb110291581c2e465dc8ea5130eabffc4e0369d6245e8c26fa9d350bed904847d6e1191afaaa2d3fc23bd05fda7da80439d0c06b88f5331b01c9eff97fbe
 WHIRLPOOL 
ea5ebd5d95638ff8cd2e91eb77f5be544e33ac6fd478aa00c04da193cd3fad980c5ac1975dfedb2c242192cee6c4eee8bbaf3581299f6c3fa45faa639f0169fd
+DIST unzip_6.0-21.debian.tar.xz 17740 SHA256 
8accd9d214630a366476437a3ec1842f2e057fdce16042a7b19ee569c33490a3 SHA512 
f7bce4156ac13c34da3f991df3ae88b0db99b0810c7f8904ea3ac666a4cb2788d7182056f2bbd82d7519d0e0ee31a10af47bee08f360ceb859e5fbfc6e15ef36
 WHIRLPOOL 
ce4d74e27ff27183989c680ef022328915c8ade5c1f12b39bcc1ee905dbd2fd3974cbb22da9bed40d8dc7a59de9ba768bfc6bb61d3bdd1b6f571945d06bf19f6

diff --git a/app-arch/unzip/unzip-6.0_p21.ebuild 
b/app-arch/unzip/unzip-6.0_p21.ebuild
new file mode 100644
index 000..f86d5ebbf5b
--- /dev/null
+++ b/app-arch/unzip/unzip-6.0_p21.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit eutils toolchain-funcs flag-o-matic
+
+MY_PV="${PV//.}"
+MY_PV="${MY_PV%_p*}"
+MY_P="${PN}${MY_PV}"
+
+DESCRIPTION="unzipper for pkzip-compressed files"
+HOMEPAGE="http://www.info-zip.org/";
+SRC_URI="mirror://sourceforge/infozip/${MY_P}.tar.gz
+   mirror://debian/pool/main/u/${PN}/${PN}_${PV/_p/-}.debian.tar.xz"
+
+LICENSE="Info-ZIP"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+IUSE="bzip2 natspec unicode"
+
+DEPEND="bzip2? ( app-arch/bzip2 )
+   natspec? ( dev-libs/libnatspec )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   local deb="${WORKDIR}"/debian/patches
+   rm "${deb}"/02-this-is-debian-unzip.patch || die
+   eapply "${deb}"/*.patch
+
+   eapply "${FILESDIR}"/${PN}-6.0-no-exec-stack.patch
+   use natspec && eapply "${FILESDIR}/${PN}-6.0-natspec.patch" #275244
+   sed -i -r \
+   -e '/^CFLAGS/d' \
+   -e '/CFLAGS/s:-O[0-9]?:$(CFLAGS) $(CPPFLAGS):' \
+   -e '/^STRIP/s:=.*:=true:' \
+   -e "s:\:CC=\"$(tc-getCC)\":" \
+   -e "s:\:LD=\"$(tc-getCC)\":" \
+   -e "s:\:AS=\"$(tc-getCC)\":" \
+   -e 's:LF2 = -s:LF2 = :' \
+   -e 's:LF = :LF = $(LDFLAGS) :' \
+   -e 's:SL = :SL = $(LDFLAGS) :' \
+   -e 's:FL = :FL = $(LDFLAGS) :' \
+   -e "/^#L_BZ2/s:^$(use bzip2 && echo .)::" \
+   -e 's:$(AS) :$(AS) $(ASFLAGS) :g' \
+   unix/Makefile \
+   || die "sed unix/Makefile failed"
+
+   # Delete bundled code to make sure we don't use it.
+   rm -r bzip2 || die
+
+   eapply_user
+}
+
+src_configure() {
+   case ${CHOST} in
+   i?86*-*linux*)   TARGET="linux_asm" ;;
+   *linux*) TARGET="linux_noasm" ;;
+   i?86*-*bsd* | \
+   i?86*-dragonfly*)TARGET="freebsd" ;; # mislabelled bsd with x86 asm
+   *bsd* | *dragonfly*) TARGET="bsd" ;;
+   *-darwin*)   TARGET="macosx" ;;
+   *-cygwin*)   TARGET="cygwin" ;;
+   *) die "Unknown target; please update the ebuild to handle ${CHOST} 
" ;;
+   esac
+
+   [[ ${CHOST} == *linux* ]] && append-cppflags -DNO_LCHMOD
+   use bzip2 && append-cppflags -DUSE_BZIP2
+   use unicode && append-cppflags -DUNICODE_SUPPORT -DUNICODE_WCHAR 
-DUTF8_MAYBE_NATIVE
+   append-cppflags -DLARGE_FILE_SUPPORT #281473
+}
+
+src_compile() {
+   ASFLAGS="${ASFLAGS} $(get_abi_var CFLAGS)" \
+   emake -f unix/Makefile ${TARGET}
+}
+
+src_install() {
+   dobin unzip funzip unzipsfx unix/zipgrep
+   dosym unzip /usr/bin/zipinfo
+   doman man/*.1
+   dodoc BUGS History* README ToD

[gentoo-commits] proj/sci:master commit in: sci-biology/SEECER/files/

2017-11-21 Thread Martin Mokrejs
commit: a3a57382876fcf7675ad8865da9a4fc18122d5ac
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Tue Nov 21 13:50:40 2017 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Tue Nov 21 13:50:40 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=a3a57382

sci-biology/SEECER: adjust paths to work with patch -p1

With bump to EAPI=6 the patch does not apply anymore
due to extraneous 'SEECER-0.1.3/SEECER/'.

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 sci-biology/SEECER/files/remove-hardcoded-paths.patch | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-biology/SEECER/files/remove-hardcoded-paths.patch 
b/sci-biology/SEECER/files/remove-hardcoded-paths.patch
index 4e317e6b0..a04ee6759 100644
--- a/sci-biology/SEECER/files/remove-hardcoded-paths.patch
+++ b/sci-biology/SEECER/files/remove-hardcoded-paths.patch
@@ -1,5 +1,5 @@
 SEECER-0.1.3/SEECER/bin/run_jellyfish.sh.ori   2015-11-13 
18:40:01.595807104 +0100
-+++ SEECER-0.1.3/SEECER/bin/run_jellyfish.sh   2015-11-13 18:51:45.655818838 
+0100
+--- bin/run_jellyfish.sh.ori   2015-11-13 18:40:01.595807104 +0100
 bin/run_jellyfish.sh   2015-11-13 18:51:45.655818838 +0100
 @@ -3,22 +3,27 @@
  LCOUNT=$4
  TMPDIR=$5
@@ -33,8 +33,8 @@
 -$JF dump --lower-count=$LCOUNT -o $2 -c $TMPDIR/jf_merged_$3
 +$JF dump --lower-count=$LCOUNT -o $2 -c $TMPDIR/jf_merged_$3 || exit 255
  rm $TMPDIR/jf_merged_$3
 SEECER-0.1.3/SEECER/bin/run_seecer.sh.ori  2015-11-13 18:40:16.215807347 
+0100
-+++ SEECER-0.1.3/SEECER/bin/run_seecer.sh  2015-11-13 18:53:03.695820138 
+0100
+--- bin/run_seecer.sh.ori  2015-11-13 18:40:16.215807347 +0100
 bin/run_seecer.sh  2015-11-13 18:53:03.695820138 +0100
 @@ -25,8 +25,8 @@
  #
  



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

2017-11-21 Thread Alice Ferrazzi
commit: 9ee3b0b4ce959bb60863808200d969b7e7bc394e
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 13:21:00 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 13:21:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ee3b0b4

profiles: mask sys-kernel/ck-sources-4.14.0.ebuild Data corruption bug (bug 
638206)

 profiles/package.mask | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 73c50a35177..d7c0a9167ea 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -31,11 +31,12 @@
 
 # Alice Ferrazzi  (21 Nov 2017)
 # A regression in kernel 4.14.0
-# Using bcache can destroy the filesystem. 
+# Data corruption issue that affects at minimum bcache. 
 # The hope is that this patch will make it to 4.14.1 Bug #638206
 =sys-kernel/vanilla-sources-4.14.1
 =sys-kernel/vanilla-sources-4.14.0
 =sys-kernel/gentoo-sources-4.14.0
+=sys-kernel/ck-sources-4.14.0
 
 # Andreas Sturmlechner  (16 Nov 2017)
 # Qt4WebKit is ancient and full of security holes.



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

2017-11-21 Thread Mike Pagano
commit: 018dd1dcb0c726ac7bd808ac88a63a23f4071224
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Nov 21 13:03:53 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Nov 21 13:04:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=018dd1dc

sys-kernel/vanilla-sources: Remove due to bcache filesystem corruption bug. See 
bug 638206

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 sys-kernel/vanilla-sources/Manifest  |  2 --
 sys-kernel/vanilla-sources/vanilla-sources-4.14.1.ebuild | 16 
 2 files changed, 18 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 4a1728a4e61..285b29a34d3 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -2,13 +2,11 @@ DIST linux-3.16.tar.xz 80501624 SHA256 
4813ad7927a7d92e5339a873ab16201b242b27489
 DIST linux-3.2.tar.xz 65065516 SHA256 
dd96ed02b53fb5d57762e4b1f573460909de472ca588f81ec6660e4a172e7ba7 SHA512 
77e9a52d78d6c8e951df1e166023eebe5defc5ef3c45d3ac84b613137b3c2e55cee5693d828ebd06c5034bd89ea2a5f862f55824f2b7839c9ad7212c81e3ecb0
 WHIRLPOOL 
7cc68baac4441740e2171fbbc4195ee6c0351de099aadaee8cb3487f6d1f8b7e1d3144ee54ba38dbd24d6be431a1ea3b921ffce82ff84df21a98da7bc61c1d17
 DIST linux-4.1.tar.xz 83017828 SHA256 
caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 WHIRLPOOL 
85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8
 DIST linux-4.13.tar.xz 100579888 SHA256 
2db3d6066c3ad93eb25b973a3d2951e022a7e975ee2fa7cbe5bddf84d9a49a2c SHA512 
a557c2f0303ae618910b7106ff63d9978afddf470f03cb72aa748213e099a0ecd5f3119aea6cbd7b61df30ca6ef3ec57044d524b7babbaabddf8b08b8bafa7d2
 WHIRLPOOL 
d3d332e02cd3c5056c76c28cf1f81504c6f7b8f2caed7238e7dd7866747fb03154b88d8d7aec4d0eddf5760624bc7d6c5485fb52a3e32d098a2742eba96c0d05
-DIST linux-4.14.tar.xz 100770500 SHA256 
f81d59477e90a130857ce18dc02f4fbe5725854911db1e7ba770c7cd350f96a7 SHA512 
77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8
 WHIRLPOOL 
fee10d54ecb210156aa55364ecc15867127819e9f7ff9ec5f6ef159b1013e2ae3d3a28d35c62d663886cbe826b996a1387671766093be002536309045a8e4d10
 DIST linux-4.4.tar.xz 87295988 SHA256 
401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 WHIRLPOOL 
02abc203d867404b9934aaa4c1e5b5dcbb0b0021e91a03f3a7e7fd224eed106821d8b4949f32a590536db150e5a88c16fcde88538777a26d0c17900f0257b1bc
 DIST linux-4.9.tar.xz 93192404 SHA256 
029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 WHIRLPOOL 
072505b29972ad120eb25a074217847c9c2813416c4903e605a0433574f5f87616dbea0b1454e4b19acc48107f11274b682958b1d773373156e99f8163e6606a
 DIST patch-3.16.50.xz 1768284 SHA256 
e57f3e038b219da4bd906d34cb7c5cd8b4a9e1156b153e4fd5c85b9248e62313 SHA512 
7632a44e541f780210b2ebf797846be015b353735aa8161b4c3949577df074a9478b5c87ca4fd5b82f83a9d17c4b2b568114dbc9dbc731b4f5331c158c4dd9d9
 WHIRLPOOL 
00f8a254696b2d34321bd1b307413c6a665dfb3830ec4cca69543de17cc3f43da270cdbd308476d35e223bac37e18ac6bb91a142f2254a74b28964cf5a19c236
 DIST patch-3.2.95.xz 1814816 SHA256 
71cc9d329538f676bf0c5e243215d32ac727a11c4128596cf6e5d6bc55d8446c SHA512 
68b065aa8c64431cb3478f8e061e4b7a5c0a273ad7a82de4c20422b7e7c8ab4e103e571945421929c03e5790da572d9a567277e42355bbf1878c78a8e83134be
 WHIRLPOOL 
8186e777c3d4e257abfd5114559e6eb8e0ddabf527511a411cfcddf081b9ef32a0d9eccc474ce8128dbff8acee4b7448a1ab34d8328a31326d2448e048e5e922
 DIST patch-4.1.46.xz 1236640 SHA256 
b066ec1a0aabec07afe8e71766b5bf5b397a681070698e7a6e00b52ae00de982 SHA512 
c6b50ddd848c949119dfe1ebe45542a53c8116718e09345e8b47b300f057d4396f0991de51a6ce0ae1ea88502e53339573c8873126bfe202c742a09455b00519
 WHIRLPOOL 
4ccb03d9474c52c8c84a89f0b8103b36284371991b24555d9c74956edc13487b767c96b050776ded5b4c7985de545c042baa968f8c0c1acdaa5ab4cab70dc889
 DIST patch-4.13.15.xz 264180 SHA256 
110744f7ecf675153a1d6b6a622f6dd58a2e4615c36fae61dd846316bfd51c90 SHA512 
54e1d3b526984efe90a5c759b35ac849ac65525c977b3982ef32b0fbb83e73f1fca92d73c3ffb1f23643d9f72a3083eeb4edb54768b105138722434811f622c4
 WHIRLPOOL 
1dcc5133d009b40b776a63b59986c26441762589940308c5a663ad532750d795f94d1b0256c37a020844c9c7e4e5116fd77f53a7993613a0b1bea1412dbd9d26
-DIST patch-4.14.1.xz 12164 SHA256 
5af72b487fbcc8e7fd3f5392271490c8498ffb2048e77abaf406971a7382f8d7 SHA512 
2566d2151cb0e0ad706dda3cb815e293d84ecc804cf2891e511a0f28e359b7714a1732add599a268c98108a63ee40200cf76cbda8181d67d0a64511e815202df
 WHIRLPOOL 

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

2017-11-21 Thread Mike Pagano
commit: 1def00da728c342337b75132e8ba4528d0642204
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Nov 21 12:57:31 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Nov 21 12:57:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1def00da

sys-kernel/gentoo-sources: Remove 4.14.0 due to bcache corruption bug. See bug 
638206.

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-4.14.0.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index c9ba2f7bafc..2816ef50ea0 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -31,9 +31,6 @@ DIST genpatches-4.13-17.extras.tar.xz 17384 SHA256 
f777359f588b4e86c0449c96a708d
 DIST genpatches-4.13-18.base.tar.xz 273920 SHA256 
6f62ab656a2268bff6ca348479e8a8ab7760be37067e02cac7d409d37c2fa401 SHA512 
3164f77eef84977602beed2acc59739d8d8ed99a0e9ea02a1f9a1e8ba95b35c8e7566e020ea88ed73f6bb0d359daa207d9e08d6cecf9cebe9b93fb86ff6280ac
 WHIRLPOOL 
18d2013274ae2fcdcd4cf1cbcbf3eb370faea497b2597c23f48ee87f37344cd749f010f7b8f507b44784ec94dbb6008603c8c9db0f86b90f1a03f938180ae8aa
 DIST genpatches-4.13-18.experimental.tar.xz 5180 SHA256 
ae765e5814e1ba88f9b84322080d1346de49cc681b6f2279336a59759493a4d1 SHA512 
09a53e6b53c20ddc857b7ff7001be326adacf9d24a565922c8ceae35a98e9a5a1bd214fd6a227115ea90436d3504154cd6ae3e47e5eac270f220ec16255b16ca
 WHIRLPOOL 
7476ea163249171c057d3ced1fd0c9953e698b7d694de3c33ea771f687b99d937b66a323799746cc8bd52ad416cee78735049729d5d8f8c27da136c1970f894b
 DIST genpatches-4.13-18.extras.tar.xz 17408 SHA256 
05363afc19b8eee1abb48cc81ce7e6397edb57d7e90bae014ec05d7b0b07165a SHA512 
eb0505e6f54051ca3f1cdf3070092d5e78831a649582021a19878d6ada2d47d0c960d1726201c0d276a2eb4eed2ed72dd162dbc0ce0185a82f4a4e9580e7c804
 WHIRLPOOL 
6ad8d563d86a862b7e9b7f2903ab96168d80f12d8ab386467a05be3f46dfff4f823f5bde01807364fdccc0e871e1b806984add7475f2061d9da8eb2409b7e730
-DIST genpatches-4.14-1.base.tar.xz 5256 SHA256 
1459f373ecf84fc1d429db2bbca0c13528492deb0c30b2e9ca011eaf8bcce932 SHA512 
6f8fceff08d9d030785493973648ec3662a7a0c40e7919e0132d6915942a0e017f8ab6da9fdbd00fb6308d19a30608cfa5141141535a203d1cd4e55675d1f1eb
 WHIRLPOOL 
d3ed44fc3e85192f4cf58f629e83cf1ed23456d37a94eaf6242690ebde77cbcb90f1642ebddb65a8f188d3cedfd18bf92b870c4115dc622f3f3b4f4308d318c9
-DIST genpatches-4.14-1.experimental.tar.xz 5184 SHA256 
6734f0f0fdf33b648f7af28252e17b72e9345a483ef0714fa45e192cb33e2b7c SHA512 
c220d229f4dffaf7bf09b9d4cb1a73d61b7646191d715098e5eb51808c66d38827729edccf1252d7b1bfaaed7d2d2566add7b6cbadad1db246379334dee1
 WHIRLPOOL 
307fe32b1492096547eca0af6de818d81724ee58f2594d4c537b1a6bf797ef45b96a51a25b5e92d279e78398f5104bb28bb20a2c2980bab779e5f292017de246
-DIST genpatches-4.14-1.extras.tar.xz 3292 SHA256 
4f1886356f68ce31b02b3edc9982d9bf6492f39f30933f2db3a6339b285ce4c3 SHA512 
38f97d3fab03bde1c1868490e7095149c44c07213b3c6d0d02a6e4549700641daa525b29ffb8a6a78edd08d29ba592ff01ab0a30c37e45d932e3ebe6f48ef74e
 WHIRLPOOL 
2b0b90899c284ce2ec8d02461ccbb9ff997004c5c0e9617df6699a18d4665b2713844e0435e8c4afa52e2e9decad5e632da4ffb72d57e850eddb3a0021bcd5ae
 DIST genpatches-4.14-2.base.tar.xz 17648 SHA256 
5826e129ea0c4832faec7577fc00e248f5cb6e53186fc9ad14ad68f26d112532 SHA512 
8562287eef0efd1df7816c65eb452e2b1a037cf572cc5131cc27526a7e93cb610d49b6855eae28039c922c5ce1ca270da1cf4070aa5ceb32edb260c5ca82717a
 WHIRLPOOL 
5fef1986a007cefcd50e5311efa1497572b4b5959eaca316cca7fa13d7dffc6ece2d173d10d52a471e13e8ff4734e0335d437f70e2529e86ddd4bb3c35272e5e
 DIST genpatches-4.14-2.experimental.tar.xz 5184 SHA256 
79ea2d943234c7bad47bf6c8c11838ea974752fee6ec74961b5fd693424326ca SHA512 
9f74b4ad9970941ffc931faf933dcd4e3e6fa3b5090c629db4fcac99d07613e0953d33fdae629359fec58207c245627e963e4b6e36e2a13ffc3c654f592cf7bc
 WHIRLPOOL 
9e4a3fac16b95c100430ebaa2cfe796a177531632125e8e8abfed3df8de60c791103f437383497bb8cc9bc2544a7da1d6210c80da69656445e17074046da4a4a
 DIST genpatches-4.14-2.extras.tar.xz 17480 SHA256 
24c731db2b003a124b093557033103d93be5baae6cdb9a15de525976f9baac15 SHA512 
75ce75cb5248c8822e3798203b6836d689d32d54dc387f8a879d7cdd5aa81decbe7f3794861a92039b2b16a69e5a3de90dadca015eedc88d5d5d92883a6f0ff4
 WHIRLPOOL 
ae9336ed872f4c9234bd6f021e2e9c2624bd91ee6921e552fdba563c408477478fbc38d488838b9bcc71221c9d3017f9d638cdc901ed5f9a6961eff755b4b75e

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.0.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.0.ebuild
deleted file mode 100644
index 10bdbe18e1e..000
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-ETYPE="sources"
-K_WANT_GENPATCHES="base extras experimental"
-K_GENPATCHES_VER="1"
-
-inherit kernel-2
-detect_version
-detect

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

2017-11-21 Thread Mike Pagano
commit: 676b0d0e7d66f1f077b29952f465770c08f1b525
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Nov 21 12:54:36 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Nov 21 12:54:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=676b0d0e

package.mask: Add vanilla-sources-4.14.0 to mask for bcache data corruption bug.

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

diff --git a/profiles/package.mask b/profiles/package.mask
index f690160f80a..73c50a35177 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -34,6 +34,7 @@
 # Using bcache can destroy the filesystem. 
 # The hope is that this patch will make it to 4.14.1 Bug #638206
 =sys-kernel/vanilla-sources-4.14.1
+=sys-kernel/vanilla-sources-4.14.0
 =sys-kernel/gentoo-sources-4.14.0
 
 # Andreas Sturmlechner  (16 Nov 2017)



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

2017-11-21 Thread Mike Pagano
commit: 0a8c30502306c781db8b2c973506e3c62da400e5
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Nov 21 12:47:51 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Nov 21 12:48:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8c3050

sys-kernel/gentoo-sources: Linux patch 4.14.1 including a fix for bcache data 
corruption bug. See bug #638206.

Package-Manager: Portage-2.3.13, Repoman-2.3.3

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index b6d16741613..c9ba2f7bafc 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -34,6 +34,9 @@ DIST genpatches-4.13-18.extras.tar.xz 17408 SHA256 
05363afc19b8eee1abb48cc81ce7e
 DIST genpatches-4.14-1.base.tar.xz 5256 SHA256 
1459f373ecf84fc1d429db2bbca0c13528492deb0c30b2e9ca011eaf8bcce932 SHA512 
6f8fceff08d9d030785493973648ec3662a7a0c40e7919e0132d6915942a0e017f8ab6da9fdbd00fb6308d19a30608cfa5141141535a203d1cd4e55675d1f1eb
 WHIRLPOOL 
d3ed44fc3e85192f4cf58f629e83cf1ed23456d37a94eaf6242690ebde77cbcb90f1642ebddb65a8f188d3cedfd18bf92b870c4115dc622f3f3b4f4308d318c9
 DIST genpatches-4.14-1.experimental.tar.xz 5184 SHA256 
6734f0f0fdf33b648f7af28252e17b72e9345a483ef0714fa45e192cb33e2b7c SHA512 
c220d229f4dffaf7bf09b9d4cb1a73d61b7646191d715098e5eb51808c66d38827729edccf1252d7b1bfaaed7d2d2566add7b6cbadad1db246379334dee1
 WHIRLPOOL 
307fe32b1492096547eca0af6de818d81724ee58f2594d4c537b1a6bf797ef45b96a51a25b5e92d279e78398f5104bb28bb20a2c2980bab779e5f292017de246
 DIST genpatches-4.14-1.extras.tar.xz 3292 SHA256 
4f1886356f68ce31b02b3edc9982d9bf6492f39f30933f2db3a6339b285ce4c3 SHA512 
38f97d3fab03bde1c1868490e7095149c44c07213b3c6d0d02a6e4549700641daa525b29ffb8a6a78edd08d29ba592ff01ab0a30c37e45d932e3ebe6f48ef74e
 WHIRLPOOL 
2b0b90899c284ce2ec8d02461ccbb9ff997004c5c0e9617df6699a18d4665b2713844e0435e8c4afa52e2e9decad5e632da4ffb72d57e850eddb3a0021bcd5ae
+DIST genpatches-4.14-2.base.tar.xz 17648 SHA256 
5826e129ea0c4832faec7577fc00e248f5cb6e53186fc9ad14ad68f26d112532 SHA512 
8562287eef0efd1df7816c65eb452e2b1a037cf572cc5131cc27526a7e93cb610d49b6855eae28039c922c5ce1ca270da1cf4070aa5ceb32edb260c5ca82717a
 WHIRLPOOL 
5fef1986a007cefcd50e5311efa1497572b4b5959eaca316cca7fa13d7dffc6ece2d173d10d52a471e13e8ff4734e0335d437f70e2529e86ddd4bb3c35272e5e
+DIST genpatches-4.14-2.experimental.tar.xz 5184 SHA256 
79ea2d943234c7bad47bf6c8c11838ea974752fee6ec74961b5fd693424326ca SHA512 
9f74b4ad9970941ffc931faf933dcd4e3e6fa3b5090c629db4fcac99d07613e0953d33fdae629359fec58207c245627e963e4b6e36e2a13ffc3c654f592cf7bc
 WHIRLPOOL 
9e4a3fac16b95c100430ebaa2cfe796a177531632125e8e8abfed3df8de60c791103f437383497bb8cc9bc2544a7da1d6210c80da69656445e17074046da4a4a
+DIST genpatches-4.14-2.extras.tar.xz 17480 SHA256 
24c731db2b003a124b093557033103d93be5baae6cdb9a15de525976f9baac15 SHA512 
75ce75cb5248c8822e3798203b6836d689d32d54dc387f8a879d7cdd5aa81decbe7f3794861a92039b2b16a69e5a3de90dadca015eedc88d5d5d92883a6f0ff4
 WHIRLPOOL 
ae9336ed872f4c9234bd6f021e2e9c2624bd91ee6921e552fdba563c408477478fbc38d488838b9bcc71221c9d3017f9d638cdc901ed5f9a6961eff755b4b75e
 DIST genpatches-4.4-100.base.tar.xz 1513104 SHA256 
46ccb979e540dcb77f7af38d07c5f66a396a128f74c4af38aa7dc43e86ce2c48 SHA512 
75324834165e3493387e635918cb81d73d27b3274cc6826557df548f7f84a0aab456faf1b60e1e4bf35d8ae5fef00d1bdb4298f43208440c0422e006a3b248ef
 WHIRLPOOL 
1db08d1b79e29854e830ac9e4b167cf076620a9da8db8c3b0ae18679cab90fdb43b1479f68372b04daf4acefb6dbd2c97fc65f660ae9c685d617ab5b8576
 DIST genpatches-4.4-100.experimental.tar.xz 87748 SHA256 
c0d5113ebed9c284738d8999e48734f2834f42d8583ff86899f82014bf4c69f2 SHA512 
822c943f114c35a8caeea20ee5f6c56d67f0d1122ca9db8f3bd9f34561735b0eaa72f9be7161b55c390ab5adf967ee64540a81a042746e39c6d294158cfd52b9
 WHIRLPOOL 
27fd96867ba9dad975cc401737d979867582742bd68cd14c24edae86ceb155d2d9db72c5fcc61964b48fb1c6c44f9652709ca6963cf705435b3e8ff88c6feb95
 DIST genpatches-4.4-100.extras.tar.xz 16464 SHA256 
68ddbd5cbab566284824a0458e40982c467aee31bc84bc7107ad95de97971bf1 SHA512 
b9ae815130b993cd2723ba54c41aa62b04e8e373b4b26f63ad0c511c445eaa1af71e7d63f0eaecd23b6ded8589b65b4e9da0dd62349a0b8b836b15b01a4e523b
 WHIRLPOOL 
6e9b183367a2327a957130b83cea4cd8b4f1faf01e12eed927c2ea7463d72533c275e6ec7f20c73813c4b2649e0a4b050187416fc019e8842d9c42677a94826b

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.1.ebuild
new file mode 100644
index 000..2d6aa240323
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="2"
+
+inherit kernel-2

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

2017-11-21 Thread Alice Ferrazzi
commit: 3f3676066690d9a176a613f9779360b2030bb4a0
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 12:33:45 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 12:35:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f367606

profiles: mask sys-kernel/vanilla-sources-4.14.1.ebuild (bug 638206)

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

diff --git a/profiles/package.mask b/profiles/package.mask
index a38f9a1557c..f690160f80a 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,7 @@
 # A regression in kernel 4.14.0
 # Using bcache can destroy the filesystem. 
 # The hope is that this patch will make it to 4.14.1 Bug #638206
+=sys-kernel/vanilla-sources-4.14.1
 =sys-kernel/gentoo-sources-4.14.0
 
 # Andreas Sturmlechner  (16 Nov 2017)



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

2017-11-21 Thread Andrey Grozin
commit: 2e9006187fe0eff83e27dec73eb9000f2e2e119e
Author: Andrey Grozin  gentoo  org>
AuthorDate: Tue Nov 21 12:13:28 2017 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Tue Nov 21 12:13:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e900618

dev-python/matplotlib: dependency on backports-functools-lru-cache fixed

With python_targets_python2_7, backports-functools-lru-cache is needed at 
runtime.
It is also needed at build time with USE=test,
or with USE=doc if python2_ is the only element in PYTHON_TARGETS.
Therefore, Ive added it to COMMON_DEPEND.

Closes: https://bugs.gentoo.org/637588
Package-Manager: Portage-2.3.14, Repoman-2.3.6

 dev-python/matplotlib/matplotlib-2.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/matplotlib/matplotlib-2.1.0-r1.ebuild 
b/dev-python/matplotlib/matplotlib-2.1.0-r1.ebuild
index db96f8cb7fb..1d9b9b227ac 100644
--- a/dev-python/matplotlib/matplotlib-2.1.0-r1.ebuild
+++ b/dev-python/matplotlib/matplotlib-2.1.0-r1.ebuild
@@ -45,6 +45,7 @@ COMMON_DEPEND="
media-fonts/stix-fonts
media-libs/freetype:2
media-libs/libpng:0
+   python_targets_python2_7? ( 
dev-python/backports-functools-lru-cache[${PY2_USEDEP}] )
>=media-libs/qhull-2013
cairo? ( dev-python/cairocffi[${PYTHON_USEDEP}] )
gtk2? (
@@ -76,7 +77,6 @@ DEPEND="${COMMON_DEPEND}
media-gfx/graphviz[cairo]
)
test? (
-   dev-python/backports-functools-lru-cache[${PY2_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
>=dev-python/nose-0.11.1[${PYTHON_USEDEP}]
)"



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

2017-11-21 Thread Jeroen Roovers
commit: d904f25f8d73ab12e9a0a6e33da052d9f5f8a1ed
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Nov 21 12:00:09 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Nov 21 12:01:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d904f25f

net-libs/nodejs: Use upstream patches for shared nghttp2 support.

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 .../nodejs/files/nodejs-8.9.0-shared-nghttp2.patch | 95 ++
 .../nodejs/files/nodejs-9.2.0-shared-nghttp2.patch | 75 +
 2 files changed, 88 insertions(+), 82 deletions(-)

diff --git a/net-libs/nodejs/files/nodejs-8.9.0-shared-nghttp2.patch 
b/net-libs/nodejs/files/nodejs-8.9.0-shared-nghttp2.patch
index dfccb1b0aea..c5e0d837f30 100644
--- a/net-libs/nodejs/files/nodejs-8.9.0-shared-nghttp2.patch
+++ b/net-libs/nodejs/files/nodejs-8.9.0-shared-nghttp2.patch
@@ -1,8 +1,10 @@
+diff --git a/configure b/configure
+index 5703a70cb2d..3b6fc7347db 100755
 --- a/configure
 +++ b/configure
-@@ -182,6 +182,27 @@
- dest='shared_http_parser_libpath',
- help='a directory to search for the shared http_parser DLL')
+@@ -220,6 +220,27 @@ shared_optgroup.add_option('--shared-libuv-libpath',
+ dest='shared_libuv_libpath',
+ help='a directory to search for the shared libuv DLL')
  
 +shared_optgroup.add_option('--shared-nghttp2',
 +action='store_true',
@@ -23,48 +25,40 @@
 +shared_optgroup.add_option('--shared-nghttp2-libpath',
 +action='store',
 +dest='shared_nghttp2_libpath',
-+help='a directory to search for the shared nghttp2 DLL')
++help='a directory to search for the shared nghttp2 DLLs')
 +
- shared_optgroup.add_option('--shared-libuv',
+ shared_optgroup.add_option('--shared-openssl',
  action='store_true',
- dest='shared_libuv',
-@@ -1360,6 +1381,7 @@
- configure_node(output)
- configure_library('zlib', output)
+ dest='shared_openssl',
+@@ -1415,6 +1436,7 @@ configure_library('zlib', output)
  configure_library('http_parser', output)
-+configure_library('nghttp2', output)
  configure_library('libuv', output)
  configure_library('libcares', output)
++configure_library('nghttp2', output)
  # stay backwards compatible with shared cares builds
+ output['variables']['node_shared_cares'] = \
+ output['variables'].pop('node_shared_libcares')
+diff --git a/node.gyp b/node.gyp
+index 86a4331a4ed..38241302e26 100644
 --- a/node.gyp
 +++ b/node.gyp
-@@ -14,6 +14,7 @@
- 'node_module_version%': '',
- 'node_shared_zlib%': 'false',
+@@ -16,6 +16,7 @@
  'node_shared_http_parser%': 'false',
-+'node_shared_nghttp2%': 'false',
  'node_shared_cares%': 'false',
  'node_shared_libuv%': 'false',
++'node_shared_nghttp2%': 'false',
  'node_use_openssl%': 'true',
-@@ -151,8 +152,15 @@
-   'type': '<(node_target_type)',
+ 'node_shared_openssl%': 'false',
+ 'node_v8_options%': '',
+@@ -177,7 +178,6 @@
  
'dependencies': [
--'node_js2c#host',
+ 'node_js2c#host',
 -'deps/nghttp2/nghttp2.gyp:nghttp2'
-+'node_js2c#host'
-+  ],
-+
-+  'conditions': [
-+[ 'node_shared_nghttp2=="false"', {
-+  'dependencies': [
-+'deps/nghttp2/nghttp2.gyp:nghttp2'
-+  ]
-+}]
],
  
'includes': [
-@@ -180,8 +180,7 @@
+@@ -187,8 +187,7 @@
'include_dirs': [
  'src',
  'tools/msvs/genfiles',
@@ -74,32 +68,33 @@
],
  
'sources': [
-@@ -691,6 +696,15 @@
- 'deps/http_parser/http_parser.gyp:http_parser'
-   ]
- }],
-+[ 'node_shared_nghttp2=="false"', {
-+  'dependencies': [
-+'deps/nghttp2/nghttp2.gyp:nghttp2'
-+  ],
-+  'defines': [
-+# We're using the nghttp2 static lib
-+'NGHTTP2_STATICLIB'
-+  ]
-+}],
- [ 'node_shared_libuv=="false"', {
-   'dependencies': [
- 'deps/uv/uv.gyp:libuv'
+@@ -930,6 +929,14 @@
+ 'deps/uv/uv.gyp:libuv'
+   ]
+ }],
++[ 'node_shared_nghttp2=="false"', {
++  'dependencies': [
++'deps/nghttp2/nghttp2.gyp:nghttp2'
++  ],
++  'include_dirs': [
++'deps/nghttp2/lib/includes'
++  ]
++}],
+ [ 'node_use_v8_platform=="true"', {
+   'dependencies': [
+ 'deps/v8/src/v8.gyp:v8_libplatform',
+diff --git a/node.gypi b/node.gypi
+index ec78df2a339..3990c59ef98 100644
 --- a/node.gypi
 +++ b/node.gypi
-@@ -251,6 +251,10 @@
-   'dependencies': [ 'deps/http_parser/http_parser.gyp:http_parser' ],
+@@ -259,6 +259,10 @@
+ [ 'node_shared_libuv=="false"', {
+   'dependencies': [ 'deps/uv/uv.gyp:libuv' ],
  }],
- 
++
 +[ 'node_shared_nghttp2=="false"', {
 +  'dependencies': [ 'deps/nghttp2/nghttp2.gyp:nghttp2' ],
 +}],
-+
- [ 'node_shared_car

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

2017-11-21 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Nov 21 11:57:54 2017 +

New tag: 4.14-2




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

2017-11-21 Thread Alice Ferrazzi
commit: 773e85d8da0f903514afda380d10c510e9cae791
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 11:33:31 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 11:34:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=773e85d8

sys-kernel/vanilla-sources: bump 4.14.1
removed old

Package-Manager: portage-2.3.5

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

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index d395a10f926..4a1728a4e61 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -9,5 +9,6 @@ DIST patch-3.16.50.xz 1768284 SHA256 
e57f3e038b219da4bd906d34cb7c5cd8b4a9e1156b1
 DIST patch-3.2.95.xz 1814816 SHA256 
71cc9d329538f676bf0c5e243215d32ac727a11c4128596cf6e5d6bc55d8446c SHA512 
68b065aa8c64431cb3478f8e061e4b7a5c0a273ad7a82de4c20422b7e7c8ab4e103e571945421929c03e5790da572d9a567277e42355bbf1878c78a8e83134be
 WHIRLPOOL 
8186e777c3d4e257abfd5114559e6eb8e0ddabf527511a411cfcddf081b9ef32a0d9eccc474ce8128dbff8acee4b7448a1ab34d8328a31326d2448e048e5e922
 DIST patch-4.1.46.xz 1236640 SHA256 
b066ec1a0aabec07afe8e71766b5bf5b397a681070698e7a6e00b52ae00de982 SHA512 
c6b50ddd848c949119dfe1ebe45542a53c8116718e09345e8b47b300f057d4396f0991de51a6ce0ae1ea88502e53339573c8873126bfe202c742a09455b00519
 WHIRLPOOL 
4ccb03d9474c52c8c84a89f0b8103b36284371991b24555d9c74956edc13487b767c96b050776ded5b4c7985de545c042baa968f8c0c1acdaa5ab4cab70dc889
 DIST patch-4.13.15.xz 264180 SHA256 
110744f7ecf675153a1d6b6a622f6dd58a2e4615c36fae61dd846316bfd51c90 SHA512 
54e1d3b526984efe90a5c759b35ac849ac65525c977b3982ef32b0fbb83e73f1fca92d73c3ffb1f23643d9f72a3083eeb4edb54768b105138722434811f622c4
 WHIRLPOOL 
1dcc5133d009b40b776a63b59986c26441762589940308c5a663ad532750d795f94d1b0256c37a020844c9c7e4e5116fd77f53a7993613a0b1bea1412dbd9d26
+DIST patch-4.14.1.xz 12164 SHA256 
5af72b487fbcc8e7fd3f5392271490c8498ffb2048e77abaf406971a7382f8d7 SHA512 
2566d2151cb0e0ad706dda3cb815e293d84ecc804cf2891e511a0f28e359b7714a1732add599a268c98108a63ee40200cf76cbda8181d67d0a64511e815202df
 WHIRLPOOL 
2732015a7535ca3fbcf663159cf8a43c5d6cf1092e969448240e05540995e064572b7bdce9c8d9cac561c20209d24c0acb131e99143b3c1473cfe724e414cc1f
 DIST patch-4.4.100.xz 1439928 SHA256 
0521ca9dd8f8f8eee0f405d01242cdd6a52eacbefd417169624484ab692adbef SHA512 
1a8e563165744e30d523d47610b700d20c410df257ef29a3ab0d72ed3cab35df9fdfbdf48136ffd31b3de629b65dd4d1c6b7b3088c3c8a5ee6e46625b2a9b55a
 WHIRLPOOL 
baeb819469018eac581f5dee74e259abd44517e77872c1701fc899592d7576d393cc58ca0d7a03cc656a81fbf2ed0c52b13cf763e6eb9078d0aaff8817ddb034
 DIST patch-4.9.64.xz 1156948 SHA256 
e17b3219b2b9ebdeb180e509b3a1a6eb46d957d6a95c17f4e6b6b7199067949a SHA512 
5fbf5d204fffddcfb2ad89f55254c49c57490936547790e46bcf46c81f209163cdc018d9c9211ec4d7fd6b8ca668eb3c38c06e5b6856c6eee49564bd33ec22fe
 WHIRLPOOL 
0333b0678c94bc2c9c0ed024aa4a20f6695273cef5531074a641f70535de03d3e003f73d4cdcb55429d766fa7ff22d02159aebfeb6ae32ee488bcc2ec74a69cb

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



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

2017-11-21 Thread Mike Pagano
commit: e643729a50271d73aebedf7166075449cb64403a
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Nov 21 11:34:02 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Nov 21 11:34:02 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=e643729a

Add fix for bcache data corruption bug. See bug #638206.

 _README|  4 +++
 ..._bcache-data-corruption-fix-for-bi-partno.patch | 38 ++
 2 files changed, 42 insertions(+)

diff --git a/_README b/_README
index a8d45fc..5bfe726 100644
--- a/_README
+++ b/_README
@@ -55,6 +55,10 @@ Patch:  
1510_fs-enable-link-security-restrictions-by-default.patch
 From:   
http://sources.debian.net/src/linux/3.16.7-ckt4-3/debian/patches/debian/fs-enable-link-security-restrictions-by-default.patch/
 Desc:   Enable link security restrictions by default.
 
+Patch: 2100_bcache-data-corruption-fix-for-bi-partno.patch
+From:   
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=62530ed8b1d07a45dec94d46e521c0c6c2d476e6
+Desc:   bio: ensure __bio_clone_fast copies bi_partno. 
+
 Patch:  2300_enable-poweroff-on-Mac-Pro-11.patch
 From:   
http://kernel.ubuntu.com/git/ubuntu/ubuntu-xenial.git/patch/drivers/pci/quirks.c?id=5080ff61a438f3dd80b88b423e1a20791d8a774c
 Desc:   Workaround to enable poweroff on Mac Pro 11. See bug #601964.

diff --git a/2100_bcache-data-corruption-fix-for-bi-partno.patch 
b/2100_bcache-data-corruption-fix-for-bi-partno.patch
new file mode 100644
index 000..dd4aed6
--- /dev/null
+++ b/2100_bcache-data-corruption-fix-for-bi-partno.patch
@@ -0,0 +1,38 @@
+From 62530ed8b1d07a45dec94d46e521c0c6c2d476e6 Mon Sep 17 00:00:00 2001
+From: Michael Lyle 
+Date: Thu, 16 Nov 2017 23:47:25 -0800
+Subject: bio: ensure __bio_clone_fast copies bi_partno
+
+A new field was introduced in 74d46992e0d9, bi_partno, instead of using
+bdev->bd_contains and encoding the partition information in the bi_bdev
+field.  __bio_clone_fast was changed to copy the disk information, but
+not the partition information.  At minimum, this regressed bcache and
+caused data corruption.
+
+Signed-off-by: Michael Lyle 
+Fixes: 74d46992e0d9 ("block: replace bi_bdev with a gendisk pointer and 
partitions index")
+Reported-by: Pavel Goran 
+Reported-by: Campbell Steven 
+Reviewed-by: Coly Li 
+Reviewed-by: Ming Lei 
+Cc:  # 4.14
+Signed-off-by: Jens Axboe 
+---
+ block/bio.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/block/bio.c b/block/bio.c
+index b94a802..459cc85 100644
+--- a/block/bio.c
 b/block/bio.c
+@@ -597,6 +597,7 @@ void __bio_clone_fast(struct bio *bio, struct bio *bio_src)
+* so we don't set nor calculate new physical/hw segment counts here
+*/
+   bio->bi_disk = bio_src->bi_disk;
++  bio->bi_partno = bio_src->bi_partno;
+   bio_set_flag(bio, BIO_CLONED);
+   bio->bi_opf = bio_src->bi_opf;
+   bio->bi_write_hint = bio_src->bi_write_hint;
+-- 
+cgit v1.1
+



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

2017-11-21 Thread Mike Pagano
commit: 3b8f01df4ca760d54640e17fd95ac407b78fd536
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Nov 21 11:24:21 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Nov 21 11:24:21 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=3b8f01df

Linux patcj 4.14.1

 _README |4 +
 1000_linux-4.14.1.patch | 1360 +++
 2 files changed, 1364 insertions(+)

diff --git a/_README b/_README
index fe79f36..a8d45fc 100644
--- a/_README
+++ b/_README
@@ -43,6 +43,10 @@ EXPERIMENTAL
 Individual Patch Descriptions:
 --
 
+Patch:  1000_linux-4.14.1.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.14.1
+
 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/1000_linux-4.14.1.patch b/1000_linux-4.14.1.patch
new file mode 100644
index 000..4a007ec
--- /dev/null
+++ b/1000_linux-4.14.1.patch
@@ -0,0 +1,1360 @@
+diff --git a/Makefile b/Makefile
+index ccd981892ef2..01f9df1af256 100644
+--- a/Makefile
 b/Makefile
+@@ -1,9 +1,9 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 4
+ PATCHLEVEL = 14
+-SUBLEVEL = 0
++SUBLEVEL = 1
+ EXTRAVERSION =
+-NAME = Fearless Coyote
++NAME = Petit Gorille
+ 
+ # *DOCUMENTATION*
+ # To see a list of typical targets execute "make help"
+diff --git a/arch/sparc/include/asm/cmpxchg_32.h 
b/arch/sparc/include/asm/cmpxchg_32.h
+index 3e3823db303e..c73b5a3ab7b9 100644
+--- a/arch/sparc/include/asm/cmpxchg_32.h
 b/arch/sparc/include/asm/cmpxchg_32.h
+@@ -63,6 +63,9 @@ __cmpxchg(volatile void *ptr, unsigned long old, unsigned 
long new_, int size)
+   (unsigned long)_n_, sizeof(*(ptr)));\
+ })
+ 
++u64 __cmpxchg_u64(u64 *ptr, u64 old, u64 new);
++#define cmpxchg64(ptr, old, new)  __cmpxchg_u64(ptr, old, new)
++
+ #include 
+ 
+ /*
+diff --git a/arch/sparc/include/asm/mmu_context_64.h 
b/arch/sparc/include/asm/mmu_context_64.h
+index e25d25b0a34b..b361702ef52a 100644
+--- a/arch/sparc/include/asm/mmu_context_64.h
 b/arch/sparc/include/asm/mmu_context_64.h
+@@ -8,9 +8,11 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ #include 
+ #include 
++#include 
+ 
+ static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct 
*tsk)
+ {
+diff --git a/arch/sparc/include/asm/tsb.h b/arch/sparc/include/asm/tsb.h
+index 25b6abdb3908..522a677e050d 100644
+--- a/arch/sparc/include/asm/tsb.h
 b/arch/sparc/include/asm/tsb.h
+@@ -217,7 +217,7 @@ extern struct tsb_phys_patch_entry __tsb_phys_patch, 
__tsb_phys_patch_end;
+   sllxREG2, 32, REG2; \
+   andcc   REG1, REG2, %g0;\
+   be,pt   %xcc, 700f; \
+-   sethi  %hi(0x1ffc), REG2;  \
++   sethi  %hi(0xffe0), REG2;  \
+   sllxREG2, 1, REG2;  \
+   brgez,pnREG1, FAIL_LABEL;   \
+andn   REG1, REG2, REG1;   \
+diff --git a/arch/sparc/lib/atomic32.c b/arch/sparc/lib/atomic32.c
+index 5010df497387..465a901a0ada 100644
+--- a/arch/sparc/lib/atomic32.c
 b/arch/sparc/lib/atomic32.c
+@@ -173,6 +173,20 @@ unsigned long __cmpxchg_u32(volatile u32 *ptr, u32 old, 
u32 new)
+ }
+ EXPORT_SYMBOL(__cmpxchg_u32);
+ 
++u64 __cmpxchg_u64(u64 *ptr, u64 old, u64 new)
++{
++  unsigned long flags;
++  u64 prev;
++
++  spin_lock_irqsave(ATOMIC_HASH(ptr), flags);
++  if ((prev = *ptr) == old)
++  *ptr = new;
++  spin_unlock_irqrestore(ATOMIC_HASH(ptr), flags);
++
++  return prev;
++}
++EXPORT_SYMBOL(__cmpxchg_u64);
++
+ unsigned long __xchg_u32(volatile u32 *ptr, u32 new)
+ {
+   unsigned long flags;
+diff --git a/arch/x86/kernel/cpu/mcheck/mce-severity.c 
b/arch/x86/kernel/cpu/mcheck/mce-severity.c
+index 87cc9ab7a13c..4b8187639c2d 100644
+--- a/arch/x86/kernel/cpu/mcheck/mce-severity.c
 b/arch/x86/kernel/cpu/mcheck/mce-severity.c
+@@ -245,6 +245,9 @@ static int mce_severity_amd(struct mce *m, int tolerant, 
char **msg, bool is_exc
+ 
+   if (m->status & MCI_STATUS_UC) {
+ 
++  if (ctx == IN_KERNEL)
++  return MCE_PANIC_SEVERITY;
++
+   /*
+* On older systems where overflow_recov flag is not present, we
+* should simply panic if an error overflow occurs. If
+@@ -255,10 +258,6 @@ static int mce_severity_amd(struct mce *m, int tolerant, 
char **msg, bool is_exc
+   if (mce_flags.smca)
+   return mce_severity_amd_smca(m, ctx);
+ 
+-  /* software can try to contain */
+-  if (!(m->mcgstatus & MCG_STATUS_RIPV) && (ctx == 
IN_KERNEL))
+-  return MCE_PANIC_SEVERITY;
+-

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

2017-11-21 Thread Marek Szuba
commit: 3ebffd6d260dfe5afe324522c24dc06db7bad071
Author: Marek Szuba  gentoo  org>
AuthorDate: Tue Nov 21 11:13:50 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Tue Nov 21 11:13:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ebffd6d

Revert "media-libs/gstreamer: Stable on amd64"

This reverts commit 71fba8c776acc60c40d60ff5face54733060b656.

Gentoo-Bug: 635900

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

diff --git a/media-libs/gstreamer/gstreamer-1.12.3.ebuild 
b/media-libs/gstreamer/gstreamer-1.12.3.ebuild
index e400651136b..1d810fbdb40 100644
--- a/media-libs/gstreamer/gstreamer-1.12.3.ebuild
+++ b/media-libs/gstreamer/gstreamer-1.12.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/src/${PN}/${P}.tar.xz";
 
 LICENSE="LGPL-2+"
 SLOT="1.0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+caps +introspection nls +orc test unwind"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-libs/gst-plugins-base/

2017-11-21 Thread Marek Szuba
commit: 28f2d77614ca756deed3785957bdc8eeaf2c9c28
Author: Marek Szuba  gentoo  org>
AuthorDate: Tue Nov 21 11:15:14 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Tue Nov 21 11:15:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28f2d776

Revert "media-libs/gst-plugins-base: Stable on amd64"

This reverts commit e39cf86c10210144634f40fd15efedf29f74ce48.

Gentoo-Bug: 635900

 media-libs/gst-plugins-base/gst-plugins-base-1.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/gst-plugins-base/gst-plugins-base-1.12.3.ebuild 
b/media-libs/gst-plugins-base/gst-plugins-base-1.12.3.ebuild
index e1b27a618f0..eb6fac9c4ef 100644
--- a/media-libs/gst-plugins-base/gst-plugins-base-1.12.3.ebuild
+++ b/media-libs/gst-plugins-base/gst-plugins-base-1.12.3.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Basepack of plugins for gstreamer"
 HOMEPAGE="https://gstreamer.freedesktop.org/";
 
 LICENSE="GPL-2+ LGPL-2+"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 
 IUSE="alsa +introspection ivorbis +ogg +orc +pango theora +vorbis X"
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: dev-libs/amdgpu-pro-opencl/

2017-11-21 Thread Marek Szuba
commit: 015d3afbbaed5832de54c8a947de1a1cd6b8c336
Author: Marek Szuba  gentoo  org>
AuthorDate: Tue Nov 21 11:00:29 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Tue Nov 21 11:00:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=015d3afb

dev-libs/amdgpu-pro-opencl: add proxied co-maintainer.

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-libs/amdgpu-pro-opencl/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-libs/amdgpu-pro-opencl/metadata.xml 
b/dev-libs/amdgpu-pro-opencl/metadata.xml
index 8c9e58cc4d2..1a1bba3f0d9 100644
--- a/dev-libs/amdgpu-pro-opencl/metadata.xml
+++ b/dev-libs/amdgpu-pro-opencl/metadata.xml
@@ -2,6 +2,10 @@
 http://www.gentoo.org/dtd/metadata.dtd";>
 

+   brovushkin+gen...@gmail.com
+   Vladyslav Brovko
+   
+   
mare...@gentoo.org
Marek Szuba




[gentoo-commits] repo/gentoo:master commit in: dev-db/sqliteman/, dev-db/sqliteman/files/

2017-11-21 Thread Michael Palimaka
commit: 87436a546204cd84761ac86ef8843937bab5bd2c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Nov 21 10:30:54 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Nov 21 10:31:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87436a54

dev-db/sqliteman: remove 1.2.2-r2 and 1.2.2-r3

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 .../files/sqliteman-1.2.2-qscintilla-2.10.patch| 13 -
 dev-db/sqliteman/sqliteman-1.2.2-r2.ebuild | 32 
 dev-db/sqliteman/sqliteman-1.2.2-r3.ebuild | 34 --
 3 files changed, 79 deletions(-)

diff --git a/dev-db/sqliteman/files/sqliteman-1.2.2-qscintilla-2.10.patch 
b/dev-db/sqliteman/files/sqliteman-1.2.2-qscintilla-2.10.patch
deleted file mode 100644
index c197ad34211..000
--- a/dev-db/sqliteman/files/sqliteman-1.2.2-qscintilla-2.10.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/cmake/modules/FindQScintilla.cmake 
b/cmake/modules/FindQScintilla.cmake
-index c4592d0..7700ec4 100644
 a/cmake/modules/FindQScintilla.cmake
-+++ b/cmake/modules/FindQScintilla.cmake
-@@ -21,7 +21,7 @@ IF(QT4_FOUND)
- "${QT_INCLUDE_DIR}/Qsci" /usr/include /usr/include/Qsci
- )
- 
--SET(QSCINTILLA_NAMES ${QSCINTILLA_NAMES} qscintilla2 libqscintilla2)
-+SET(QSCINTILLA_NAMES ${QSCINTILLA_NAMES} qscintilla2 libqscintilla2 
qscintilla2_qt4 libqscintilla2_qt4)
- FIND_LIBRARY(QSCINTILLA_LIBRARY
- NAMES ${QSCINTILLA_NAMES}
- PATHS ${QT_LIBRARY_DIR}

diff --git a/dev-db/sqliteman/sqliteman-1.2.2-r2.ebuild 
b/dev-db/sqliteman/sqliteman-1.2.2-r2.ebuild
deleted file mode 100644
index 0550f0f6afa..000
--- a/dev-db/sqliteman/sqliteman-1.2.2-r2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="Powerful GUI manager for the Sqlite3 database"
-HOMEPAGE="https://sourceforge.net/projects/sqliteman/";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qtsql:4[sqlite]
-   x11-libs/qscintilla:=[qt4(-)]"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS README )
-PATCHES=( "${FILESDIR}/${P}-lpthread.patch" )
-
-src_prepare() {
-   # remove bundled lib
-   rm -rf "${S}"/${PN}/qscintilla2 || die
-
-   cmake-utils_src_prepare
-}

diff --git a/dev-db/sqliteman/sqliteman-1.2.2-r3.ebuild 
b/dev-db/sqliteman/sqliteman-1.2.2-r3.ebuild
deleted file mode 100644
index e591dfbd957..000
--- a/dev-db/sqliteman/sqliteman-1.2.2-r3.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Powerful GUI manager for the Sqlite3 database"
-HOMEPAGE="https://sourceforge.net/projects/sqliteman/";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qtsql:4[sqlite]
-   x11-libs/qscintilla:=[qt4(-)]"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-   "${FILESDIR}/${P}-lpthread.patch"
-   "${FILESDIR}/${P}-qscintilla-2.10.patch"
-)
-
-src_prepare() {
-   # remove bundled lib
-   rm -rf "${S}"/${PN}/qscintilla2 || die
-
-   cmake-utils_src_prepare
-}



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

2017-11-21 Thread Amy Liffey
commit: 545698b7ed5c2c04de97c19cd5b8177f2ea83f0a
Author: Amy Liffey  gentoo  org>
AuthorDate: Tue Nov 21 10:18:56 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Tue Nov 21 10:20:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=545698b7

sci-mathematics/geogebra: fix metadata indentation

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 sci-mathematics/geogebra/metadata.xml | 24 
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/sci-mathematics/geogebra/metadata.xml 
b/sci-mathematics/geogebra/metadata.xml
index 5087bdcd1f4..1a51751ca5a 100644
--- a/sci-mathematics/geogebra/metadata.xml
+++ b/sci-mathematics/geogebra/metadata.xml
@@ -1,16 +1,16 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-   
-   amy...@gentoo.org
-   
-   
- GeoGebra is interactive mathematics software for learning and teaching 
mathematics 
- and science from primary school up to university level. 
- Constructions can be made with points, vectors, segments, lines, polygons, 
- conic sections, inequalities, implicit polynomials and functions.
-   
-   
-   geogebra/geogebra
-   
+
+   amy...@gentoo.org
+
+
+GeoGebra is interactive mathematics software for learning and teaching 
mathematics 
+and science from primary school up to university level. 
+Constructions can be made with points, vectors, segments, lines, polygons, 
+conic sections, inequalities, implicit polynomials and functions.
+
+
+   geogebra/geogebra
+
 



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

2017-11-21 Thread Amy Liffey
commit: e9742e25a4746e6e4b2cf97cc5428689bcfc0d9d
Author: Amy Liffey  gentoo  org>
AuthorDate: Tue Nov 21 10:17:53 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Tue Nov 21 10:20:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9742e25

sci-mathematics/geogebra: enable oracle-jdk-bin during buildtime

Closes:https://bugs.gentoo.org/615884

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 ...9.0_p20170308.ebuild => geogebra-5.0.339.0_p20170308-r1.ebuild} | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/sci-mathematics/geogebra/geogebra-5.0.339.0_p20170308.ebuild 
b/sci-mathematics/geogebra/geogebra-5.0.339.0_p20170308-r1.ebuild
similarity index 99%
rename from sci-mathematics/geogebra/geogebra-5.0.339.0_p20170308.ebuild
rename to sci-mathematics/geogebra/geogebra-5.0.339.0_p20170308-r1.ebuild
index 22c7ea2ca1a..2ff4ab0b084 100644
--- a/sci-mathematics/geogebra/geogebra-5.0.339.0_p20170308.ebuild
+++ b/sci-mathematics/geogebra/geogebra-5.0.339.0_p20170308-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit eutils gnome2-utils xdg
+inherit eutils gnome2-utils xdg java-pkg-2
 
 MY_COMMIT_HASH="7d5ac993d3f88f6701f56edbfe325d86afcaad87"
 
@@ -242,6 +242,7 @@ IUSE=""
 RESTRICT="bindist"
 DEPEND="dev-java/oracle-jdk-bin[javafx]
>=dev-java/gradle-bin-3.0"
+
 # Requires oracle-jdk/jre-bin because there is no openjfx ebuild as of now
 RDEPEND="|| (
dev-java/oracle-jre-bin[javafx]
@@ -250,6 +251,10 @@ RDEPEND="|| (
 
 S="${WORKDIR}/${PN}-${MY_COMMIT_HASH}/"
 
+JAVA_PKG_WANT_BUILD_VM="oracle-jdk-bin-1.8"
+JAVA_PKG_WANT_SOURCE="1.8"
+JAVA_PKG_WANT_TARGET="1.8"
+
 # Override the repositories with our local maven repository
 # so that it doesn't attemp to fetch from the network
 __set_gradle_repositories() {



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

2017-11-21 Thread Andreas Sturmlechner
commit: aae48a15f2d9732ea2194f5f390e295e9e270114
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Nov 21 10:19:11 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Nov 21 10:19:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aae48a15

app-misc/sleepyhead: Drop outdated live ebuild

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 app-misc/sleepyhead/sleepyhead-.ebuild | 47 --
 1 file changed, 47 deletions(-)

diff --git a/app-misc/sleepyhead/sleepyhead-.ebuild 
b/app-misc/sleepyhead/sleepyhead-.ebuild
deleted file mode 100644
index 36e00d73fd3..000
--- a/app-misc/sleepyhead/sleepyhead-.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils git-2 qt4-r2
-DESCRIPTION="Software used to analyze data from CPAP machines"
-HOMEPAGE="https://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=Main_Page";
-
-# Point to any required sources; these will be automatically downloaded by
-# Portage.
-EGIT_REPO_URI="https://github.com/rich0/rich0-sleepyhead.git";
-EGIT_BRANCH="rich-test"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-KEYWORDS=""
-
-IUSE="debug"
-
-DEPEND="virtual/opengl:=
-   x11-libs/libX11:=
-   dev-qt/qtcore:4=
-   dev-qt/qtgui:4=
-   dev-qt/qtopengl:4=
-   dev-qt/qtwebkit:4=
-   dev-libs/quazip:=[qt4]"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
-git-2_src_unpack
-}
-
-src_prepare() {
-#  qt4_src_prepare
-   cd "{$S}"
-#  sed -i '1i#define OF(x) x' quazip/ioapi.h quazip/unzip.c quazip/unzip.h 
\
-#   quazip/zip.c quazip/zip.h quazip/zlib.h
-   eqmake4 SleepyHeadQT.pro
-}
-
-src_install() {
-   cd "{$S}"
-   dobin sleepyhead/SleepyHead || die
-   dodoc README || die
-   dodoc sleepyhead/docs/* || die
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/clementine/, media-sound/clementine/files/

2017-11-21 Thread Andreas Sturmlechner
commit: bd2bf56ec969421c7e8b112c1c8342e1efc295a5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Nov 21 10:18:36 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Nov 21 10:19:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd2bf56e

media-sound/clementine: qt5-lconvert.patch upstreamed

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 media-sound/clementine/clementine-.ebuild  |  5 +---
 .../clementine/files/clementine-qt5-lconvert.patch | 28 --
 2 files changed, 1 insertion(+), 32 deletions(-)

diff --git a/media-sound/clementine/clementine-.ebuild 
b/media-sound/clementine/clementine-.ebuild
index 50ae57df046..b0f63f84244 100644
--- a/media-sound/clementine/clementine-.ebuild
+++ b/media-sound/clementine/clementine-.ebuild
@@ -106,10 +106,7 @@ MY_P="${P/_}"
 [[ ${PV} == ** ]] || \
 S="${WORKDIR}/${MY_P^}"
 
-PATCHES=(
-   "${FILESDIR}"/${PN}-fts3-tokenizer.patch
-   "${FILESDIR}"/${PN}-qt5-lconvert.patch
-)
+PATCHES=( "${FILESDIR}"/${PN}-fts3-tokenizer.patch )
 
 src_prepare() {
l10n_find_plocales_changes "src/translations" "" ".po"

diff --git a/media-sound/clementine/files/clementine-qt5-lconvert.patch 
b/media-sound/clementine/files/clementine-qt5-lconvert.patch
deleted file mode 100644
index 8565f30cee0..000
--- a/media-sound/clementine/files/clementine-qt5-lconvert.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 5f75801a08a606073c700bd829ea694950de0729 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 19 Nov 2017 16:00:55 +0100
-Subject: [PATCH] Properly find Qt5LinguistTools
-

- CMakeLists.txt | 5 ++---
- 1 file changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 4022c383b..5bdb2a00e 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -45,9 +45,8 @@ if(NOT APPLE)
-   find_package(Qt5 COMPONENTS WebKitWidgets)
- endif(NOT APPLE)
- 
--# Find Qt's lconvert binary.  Try qt's binary dir first, fall back to looking 
in PATH
--find_program(QT_LCONVERT_EXECUTABLE NAMES lconvert lconvert-qt5 PATHS 
${QT_BINARY_DIR} NO_DEFAULT_PATH)
--find_program(QT_LCONVERT_EXECUTABLE NAMES lconvert lconvert-qt5)
-+find_package(Qt5LinguistTools CONFIG REQUIRED)
-+set(QT_LCONVERT_EXECUTABLE Qt5::lconvert)
- 
- if(APPLE)
-   if(NOT QT_MAC_USE_COCOA)
--- 
-2.15.0
-



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

2017-11-21 Thread Jeroen Roovers
commit: 00fd2e3c2f67d6eeb60f8d57df82b38603bf6656
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Nov 21 09:54:20 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Nov 21 09:54:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00fd2e3c

dev-libs/confuse: Old.

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 dev-libs/confuse/Manifest   |  1 -
 dev-libs/confuse/confuse-3.2.ebuild | 50 -
 2 files changed, 51 deletions(-)

diff --git a/dev-libs/confuse/Manifest b/dev-libs/confuse/Manifest
index 3feb433d810..b1465332b4b 100644
--- a/dev-libs/confuse/Manifest
+++ b/dev-libs/confuse/Manifest
@@ -1,3 +1,2 @@
 DIST confuse-3.0.tar.xz 449144 SHA256 
bb75174e02aa8b44fa1a872a47beeea1f5fe715ab669694c97803eb6127cc861 SHA512 
12279045b772e94d2e29201ab1d7aef1ef8e698780a22d6a282d12f51ccd9a437e7817a4dd5e39bdfc8dae79700b72aa0783b4b983a935d751403d2cffd1161e
 WHIRLPOOL 
fe9f792b9f0858029393a811da93746fb91dc6cc3c99bfcc3a183d7bc0f3600818b96df8d169c63e64a59cb0f3857a86298f0bfd4053c8360bcd2b6bd1e71156
 DIST confuse-3.2.1.tar.xz 470260 SHA256 
23c63272baf2ef4e2cbbafad2cf57de7eb81f006ec347c00b954819824add25e SHA512 
738bacf6a3abb9c64666fec103eb18c8456b994e7ba3562bdb090ef4eb33f0330da844de14d658ef44e74f90104f67ceaf408d21ddf0d251f4c6ddd80e0b387c
 WHIRLPOOL 
40d44a6b8d3115b2f09600d5ee652f94ef61fba2072f749bd237f53741ae229f5551d3fdaca80d1ffda150521ac77099fe8a514c8a4bcfc438ea1d7dbdc36485
-DIST confuse-3.2.tar.xz 470108 SHA256 
a46abb8696026d314197b6a70ae1a1c296342a9a68aa69b1935709c1477a4e48 SHA512 
4c81b52bca951ab46961ed91bf9e887f7940dedfb69eaf2f6905cb2d88275e635c80d2570797e4276b5cd970b805ab902da6cd6f89dc64216b0b02445c912acd
 WHIRLPOOL 
5edf49bb58215b5694b66679c6638a16e0f9b3080f4b89b660d43329a622b9771f1403424a7eac1fccc6eaf7ffd80b1994629a09ebab3e29abda31bb902ba935

diff --git a/dev-libs/confuse/confuse-3.2.ebuild 
b/dev-libs/confuse/confuse-3.2.ebuild
deleted file mode 100644
index 163dcf76dc4..000
--- a/dev-libs/confuse/confuse-3.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils multilib-minimal
-
-DESCRIPTION="a configuration file parser library"
-HOMEPAGE="http://www.nongnu.org/confuse/";
-SRC_URI="https://github.com/martinh/libconfuse/releases/download/v${PV}/${P}.tar.xz";
-
-LICENSE="ISC"
-SLOT="0/1.1.0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris"
-
-IUSE="nls static-libs"
-
-DEPEND="sys-devel/flex
-   sys-devel/libtool
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-RDEPEND="nls? ( virtual/libintl[${MULTILIB_USEDEP}] )"
-
-DOCS=( AUTHORS )
-
-src_prepare() {
-   eapply_user
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   # examples are normally compiled but not installed. They
-   # fail during a mingw crosscompile.
-   local ECONF_SOURCE=${BUILD_DIR}
-   econf \
-   --enable-shared \
-   --disable-examples \
-   $(use_enable nls) \
-   $(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
-   prune_libtool_files
-
-   doman doc/man/man3/*.3
-   dodoc -r doc/html
-
-   docinto examples
-   dodoc examples/*.{c,conf}
-}



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

2017-11-21 Thread Jeroen Roovers
commit: f158c8cad1f11d65ccd2dbb482d70c64f141ae2e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Nov 21 09:39:33 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Nov 21 09:53:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f158c8ca

dev-libs/confuse: Version bump.

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 dev-libs/confuse/Manifest |  1 +
 dev-libs/confuse/confuse-3.2.1.ebuild | 50 +++
 2 files changed, 51 insertions(+)

diff --git a/dev-libs/confuse/Manifest b/dev-libs/confuse/Manifest
index 744d3ecdca8..3feb433d810 100644
--- a/dev-libs/confuse/Manifest
+++ b/dev-libs/confuse/Manifest
@@ -1,2 +1,3 @@
 DIST confuse-3.0.tar.xz 449144 SHA256 
bb75174e02aa8b44fa1a872a47beeea1f5fe715ab669694c97803eb6127cc861 SHA512 
12279045b772e94d2e29201ab1d7aef1ef8e698780a22d6a282d12f51ccd9a437e7817a4dd5e39bdfc8dae79700b72aa0783b4b983a935d751403d2cffd1161e
 WHIRLPOOL 
fe9f792b9f0858029393a811da93746fb91dc6cc3c99bfcc3a183d7bc0f3600818b96df8d169c63e64a59cb0f3857a86298f0bfd4053c8360bcd2b6bd1e71156
+DIST confuse-3.2.1.tar.xz 470260 SHA256 
23c63272baf2ef4e2cbbafad2cf57de7eb81f006ec347c00b954819824add25e SHA512 
738bacf6a3abb9c64666fec103eb18c8456b994e7ba3562bdb090ef4eb33f0330da844de14d658ef44e74f90104f67ceaf408d21ddf0d251f4c6ddd80e0b387c
 WHIRLPOOL 
40d44a6b8d3115b2f09600d5ee652f94ef61fba2072f749bd237f53741ae229f5551d3fdaca80d1ffda150521ac77099fe8a514c8a4bcfc438ea1d7dbdc36485
 DIST confuse-3.2.tar.xz 470108 SHA256 
a46abb8696026d314197b6a70ae1a1c296342a9a68aa69b1935709c1477a4e48 SHA512 
4c81b52bca951ab46961ed91bf9e887f7940dedfb69eaf2f6905cb2d88275e635c80d2570797e4276b5cd970b805ab902da6cd6f89dc64216b0b02445c912acd
 WHIRLPOOL 
5edf49bb58215b5694b66679c6638a16e0f9b3080f4b89b660d43329a622b9771f1403424a7eac1fccc6eaf7ffd80b1994629a09ebab3e29abda31bb902ba935

diff --git a/dev-libs/confuse/confuse-3.2.1.ebuild 
b/dev-libs/confuse/confuse-3.2.1.ebuild
new file mode 100644
index 000..0dfcf2c0b2f
--- /dev/null
+++ b/dev-libs/confuse/confuse-3.2.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils multilib-minimal
+
+DESCRIPTION="a configuration file parser library"
+HOMEPAGE="http://www.nongnu.org/confuse/";
+SRC_URI="https://github.com/martinh/libconfuse/releases/download/v${PV}/${P}.tar.xz";
+
+LICENSE="ISC"
+SLOT="0/2.0.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris"
+
+IUSE="nls static-libs"
+
+DEPEND="sys-devel/flex
+   sys-devel/libtool
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+RDEPEND="nls? ( virtual/libintl[${MULTILIB_USEDEP}] )"
+
+DOCS=( AUTHORS )
+
+src_prepare() {
+   eapply_user
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   # examples are normally compiled but not installed. They
+   # fail during a mingw crosscompile.
+   local ECONF_SOURCE=${BUILD_DIR}
+   econf \
+   --enable-shared \
+   --disable-examples \
+   $(use_enable nls) \
+   $(use_enable static-libs static)
+}
+
+multilib_src_install_all() {
+   prune_libtool_files
+
+   doman doc/man/man3/*.3
+   dodoc -r doc/html
+
+   docinto examples
+   dodoc examples/*.{c,conf}
+}



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

2017-11-21 Thread Alice Ferrazzi
commit: 9636b8bee74efc10375a19492d9a81f35e0c755f
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 09:52:01 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 09:52:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9636b8be

sys-kernel/gentoo-sources: linux-patches 4.13-18

Package-Manager: portage-2.3.5

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 679c159fa14..b6d16741613 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -28,6 +28,9 @@ DIST genpatches-4.13-15.extras.tar.xz 17400 SHA256 
28a3431e5d8aca353b9d763c67261
 DIST genpatches-4.13-17.base.tar.xz 266392 SHA256 
bac6764bdc28b40db5aae433b2a6e16a4b9e1040c02d3d516b11ae57b76caf8a SHA512 
8cd638064078eef540f614f766b89d845208082109f7af71013ab210ef4f0b7f483eefc112805646cc99b8517c3d938dcbe2eab4fcd4b35be14969c83f71b858
 WHIRLPOOL 
82961c4d2f7f44b2ffc031550d70270ad938048475cee52ed3ffb8193c08473c3b5faf61ef9e3062d373cb47f71a382bb4c189f7d6929ef5dfd5fcd55044ea54
 DIST genpatches-4.13-17.experimental.tar.xz 5184 SHA256 
79ea2d943234c7bad47bf6c8c11838ea974752fee6ec74961b5fd693424326ca SHA512 
9f74b4ad9970941ffc931faf933dcd4e3e6fa3b5090c629db4fcac99d07613e0953d33fdae629359fec58207c245627e963e4b6e36e2a13ffc3c654f592cf7bc
 WHIRLPOOL 
9e4a3fac16b95c100430ebaa2cfe796a177531632125e8e8abfed3df8de60c791103f437383497bb8cc9bc2544a7da1d6210c80da69656445e17074046da4a4a
 DIST genpatches-4.13-17.extras.tar.xz 17384 SHA256 
f777359f588b4e86c0449c96a708d861fdb1103a80484747eeca745619b5020f SHA512 
2e6a14b9a40ea92af1ab79db66892d7f77bfc54380f08e8214ba1ce8d3d3de36e1be4c979ac3cd257545faf364002b7def9f7614bdbe73751692e8aed753ca5a
 WHIRLPOOL 
3d5b338a4d493a407e29a6a2ad9ad8945dbf9eca330632e968ceeeb6c0d317d8d8981ccc13e91e887beef5fab9bb13b2b2e03678e629d3089064e9da9de1792a
+DIST genpatches-4.13-18.base.tar.xz 273920 SHA256 
6f62ab656a2268bff6ca348479e8a8ab7760be37067e02cac7d409d37c2fa401 SHA512 
3164f77eef84977602beed2acc59739d8d8ed99a0e9ea02a1f9a1e8ba95b35c8e7566e020ea88ed73f6bb0d359daa207d9e08d6cecf9cebe9b93fb86ff6280ac
 WHIRLPOOL 
18d2013274ae2fcdcd4cf1cbcbf3eb370faea497b2597c23f48ee87f37344cd749f010f7b8f507b44784ec94dbb6008603c8c9db0f86b90f1a03f938180ae8aa
+DIST genpatches-4.13-18.experimental.tar.xz 5180 SHA256 
ae765e5814e1ba88f9b84322080d1346de49cc681b6f2279336a59759493a4d1 SHA512 
09a53e6b53c20ddc857b7ff7001be326adacf9d24a565922c8ceae35a98e9a5a1bd214fd6a227115ea90436d3504154cd6ae3e47e5eac270f220ec16255b16ca
 WHIRLPOOL 
7476ea163249171c057d3ced1fd0c9953e698b7d694de3c33ea771f687b99d937b66a323799746cc8bd52ad416cee78735049729d5d8f8c27da136c1970f894b
+DIST genpatches-4.13-18.extras.tar.xz 17408 SHA256 
05363afc19b8eee1abb48cc81ce7e6397edb57d7e90bae014ec05d7b0b07165a SHA512 
eb0505e6f54051ca3f1cdf3070092d5e78831a649582021a19878d6ada2d47d0c960d1726201c0d276a2eb4eed2ed72dd162dbc0ce0185a82f4a4e9580e7c804
 WHIRLPOOL 
6ad8d563d86a862b7e9b7f2903ab96168d80f12d8ab386467a05be3f46dfff4f823f5bde01807364fdccc0e871e1b806984add7475f2061d9da8eb2409b7e730
 DIST genpatches-4.14-1.base.tar.xz 5256 SHA256 
1459f373ecf84fc1d429db2bbca0c13528492deb0c30b2e9ca011eaf8bcce932 SHA512 
6f8fceff08d9d030785493973648ec3662a7a0c40e7919e0132d6915942a0e017f8ab6da9fdbd00fb6308d19a30608cfa5141141535a203d1cd4e55675d1f1eb
 WHIRLPOOL 
d3ed44fc3e85192f4cf58f629e83cf1ed23456d37a94eaf6242690ebde77cbcb90f1642ebddb65a8f188d3cedfd18bf92b870c4115dc622f3f3b4f4308d318c9
 DIST genpatches-4.14-1.experimental.tar.xz 5184 SHA256 
6734f0f0fdf33b648f7af28252e17b72e9345a483ef0714fa45e192cb33e2b7c SHA512 
c220d229f4dffaf7bf09b9d4cb1a73d61b7646191d715098e5eb51808c66d38827729edccf1252d7b1bfaaed7d2d2566add7b6cbadad1db246379334dee1
 WHIRLPOOL 
307fe32b1492096547eca0af6de818d81724ee58f2594d4c537b1a6bf797ef45b96a51a25b5e92d279e78398f5104bb28bb20a2c2980bab779e5f292017de246
 DIST genpatches-4.14-1.extras.tar.xz 3292 SHA256 
4f1886356f68ce31b02b3edc9982d9bf6492f39f30933f2db3a6339b285ce4c3 SHA512 
38f97d3fab03bde1c1868490e7095149c44c07213b3c6d0d02a6e4549700641daa525b29ffb8a6a78edd08d29ba592ff01ab0a30c37e45d932e3ebe6f48ef74e
 WHIRLPOOL 
2b0b90899c284ce2ec8d02461ccbb9ff997004c5c0e9617df6699a18d4665b2713844e0435e8c4afa52e2e9decad5e632da4ffb72d57e850eddb3a0021bcd5ae

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.13.15.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.13.15.ebuild
new file mode 100644
index 000..40b91baf81d
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.13.15.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="18"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64

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

2017-11-21 Thread Alice Ferrazzi
commit: 5710c8ec78ef85b5211a25c968057a224c973dbd
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 09:49:36 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 09:49:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5710c8ec

sys-kernel/gentoo-sources: linux-patches 4.9-66

Package-Manager: Portage-2.3.8, Repoman-2.3.3

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 2baebcbd81d..679c159fa14 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -70,6 +70,9 @@ DIST genpatches-4.9-64.extras.tar.xz 17356 SHA256 
91388a8444f98a0535cade4b901a94
 DIST genpatches-4.9-65.base.tar.xz 1214800 SHA256 
089ad87fa5517c3211f513ab8cc6d9dc8587bec6b7e7ac432b1d9f984d97dd82 SHA512 
7610c1ea5d98ffb5d7f1f036c6dd9d67dac5edc64d5e161f551e3091f295a2c5c1e8f4c0be02450c6c50baa65435b127d0c57c7118184d59377c13ecf6b9880e
 WHIRLPOOL 
da6e1d88bc4c89ddfb69c77d07ebbed2fa9272e653f0fdca0d18691f9a49cee3ec8a0597f46d430710274cc6fdff8bf374408cfd70504982e214d63df57cb4ae
 DIST genpatches-4.9-65.experimental.tar.xz 106380 SHA256 
8e5a3cf556c9792601b7c15ec25ba32b8c86012c89c9f32f57f7e3ac6c9a01aa SHA512 
6463eda4311ea2e47233076970a196fc6a55f79791c9e776b77ad54e326c9dfcdad1befb677323befec068bfe4740b137b7af82118920ddc6241c002c7040466
 WHIRLPOOL 
652aa07743004450f72ad11957ac85beca5cfe2118ce642f88efe6ac302a31f8f6ee0496dbf2079168836b7192696ed995c8a27b820ec0641b47b93910d3cec2
 DIST genpatches-4.9-65.extras.tar.xz 17352 SHA256 
f9b469fc17a0e3fd6f008a043cac320a0fbb2282e8d9d698faae3ef614c71b2f SHA512 
ced79ee5bd932605f3c183b19acd8a4b38a0119bcb74908e5949f37060479a3bb7b69dd0081f38e23aff2c572778d59939def79fab02b4026e6c496e1c19b8ba
 WHIRLPOOL 
7c069c561b69ef6be820caa6100b0a85986a4f59522b065e3fa11be0d5944d9e441352a1aa080a34db4d844d67b2f56ec07707ac5f50d5e0ea249701d6ed24a5
+DIST genpatches-4.9-66.base.tar.xz 1230840 SHA256 
ca1c43a0d2a0aa085102771f1297a2bb22b39e0f1ccc3a4f31a3f92b767c2f7d SHA512 
b0a3ad38f32e4ddaf591977144ff7d292822433ee87c0af3adf5b6493feda8f9e3f9d49a7c1813529cb24ae4f83b434f7e75513ba068a2fafed4039a1383e8b1
 WHIRLPOOL 
34ccd1476878b32528cd5705e3882b859d3b84b552812e63b2ccefa57a99972e6133ef59f259b8fc4d38a2c94e6a111e92abc5c436f47b47d64abb5f674b4a28
+DIST genpatches-4.9-66.experimental.tar.xz 106396 SHA256 
73aa9a8ce91a0ce6ce469e375dda71462495dc955461678914f3b9c86cc6af21 SHA512 
efe86fb3f0e29e62919cf4c175405fefa0f9a3a6d9fa02bb98a922a513c1a3672ca059058004cd023509b87499772a0b634db0d8595d7d947652813c03dee341
 WHIRLPOOL 
684fd0f5c26cdd88ca543c93a23445d0fca5891fa9a0f5e64a92b3bfd3b69a6de1bf5f298e702ce2764489ca1e675b13d261bc9c57e64411149da7afef3a59c0
+DIST genpatches-4.9-66.extras.tar.xz 17348 SHA256 
73407d50267ba172bdf18b34bcb35f37a5397b336d70cb42fa6c386808eff8cf SHA512 
d16849e39d0fae50deb3aba0824020a7a64f1c4f566ab8bf0e90a8adb21fe94c06191651315f3607ede253dd6369cddec142d51438cd5bfdfe686a3af27bef0f
 WHIRLPOOL 
bf5160f28ee263be84c630c9c425f8eb8d90801b34ad9aac18290c09dbd04b4c3e07f1c75f46cef4bc662ff2783cce15576a8f6fda35c8efc92930057e690cd6
 DIST linux-3.10.tar.xz 73175088 SHA256 
df27fa92d27a9c410bfe6c4a89f141638500d7eadcca5cce578954efc2ad3544 SHA512 
5fb109fcbd59bf3dffc911b853894f0a84afa75151368f783a1252c5ff60c7a1504de216c0012be446df983e2dea400ad8eeed3ce04f24dc61d0ef76c174dc35
 WHIRLPOOL 
e7c0ccc2231e430b831218fc66f1940d095d2d5447d391329c6a7373d4a1d16708f64778b32e4847802ee2dae4fcf7cb67a1238fd4eb204fd0c4bce2d8134053
 DIST linux-4.1.tar.xz 83017828 SHA256 
caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 WHIRLPOOL 
85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8
 DIST linux-4.12.tar.xz 99186576 SHA256 
a45c3becd4d08ce411c14628a949d08e2433d8cdeca92036c7013980e93858ab SHA512 
8e81b41b253e63233e92948941f44c6482acb52aa3a3fd172f03a38a86f2c35b2ad4fd407acd1bc3964673eba344fe104d3a03e3ff4bf9cd1f22bd44263bd728
 WHIRLPOOL 
3b97da251c2ba4ace4a27b708f2b1dcf94cb1b59aaeded6acb74bd98f0d3e33f1df83670665e4186d99a55daa84c88d539d93e20f0ff18a6d46ef326c48dd375

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.64.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.64.ebuild
new file mode 100644
index 000..0a9bccad99e
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.64.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="66"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc 

[gentoo-commits] proj/musl:master commit in: net-misc/openssh/, net-misc/openssh/files/

2017-11-21 Thread Anthony G. Basile
commit: 6b0dea5feb4e927a973caa037ebee05e46e081e1
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Nov 21 09:47:33 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Nov 21 09:47:49 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=6b0dea5f

net-misc/openssh: sync with tree version

Package-Manager: Portage-2.3.13, Repoman-2.3.3
RepoMan-Options: --force

 net-misc/openssh/Manifest  |   7 +-
 .../files/openssh-7.5_p1-CVE-2017-15906.patch  |  31 ++
 net-misc/openssh/openssh-7.3_p1-r7.ebuild  | 355 -
 ...h-7.5_p1-r1.ebuild => openssh-7.5_p1-r3.ebuild} |   8 +-
 4 files changed, 36 insertions(+), 365 deletions(-)

diff --git a/net-misc/openssh/Manifest b/net-misc/openssh/Manifest
index 4a1820a..bda2277 100644
--- a/net-misc/openssh/Manifest
+++ b/net-misc/openssh/Manifest
@@ -1,10 +1,5 @@
-DIST openssh-7.3_p1-hpn-14.10-r1.patch.xz 20584 SHA256 
0bbbfeb1f9f975ad591ed4ec74927172c5299ec1a76210197c14575204efa85d SHA512 
f0a1c84af85f7cfc7cb58b5117b3d0f57fc25ae0dd608e38b48ef42da43780fd5cf243d26ff9b3fbd6f4cb1567852b87bcb75f98791cf3ad1892e8579a7834d3
 WHIRLPOOL 
b1a8bae14c8189745056c15c9ed45207aa06af1f4c598a1af7dc3cc56e47bd0211a63989a920727e20311a148bbcf3202c202eae94cd1512c7d87816a9f44bcb
-DIST openssh-7.3_p1-sctp.patch.xz 9968 SHA256 
18c3db45ed1e5495db29626938d8432aee509e88057494f052cfc09d40824c7f SHA512 
f249b76898af0c6f1f65f2a1cfb422648aa712818d0dc051b85a171f26bdddf7980fff5de7761161aa41c309e528b3801b4234f5cdd9f79f8eef173ae83f1e3c
 WHIRLPOOL 
1d92b969154b77d8ce9e3a6d0302aa17ec95e2d5ea4de72c0fb5680a8ee12f518ee5b1c47f22ad5d1a923a74c43829ed36cf478fe75fe400de967ab48d93dc99
-DIST openssh-7.3p1+x509-9.2.diff.gz 588078 SHA256 
45f054cbb2b77ac8cc7ab01439e34083382137d47b840ca274555b7e2cf7098b SHA512 
fab0da148b0833a651e8a7c36f344aacecef6fa92f8f1cb6302272d98c1ab018831f5850dcaa8f54a39f9ada9b7d5b0a0ea01defc3c6f603bbe211f6bff6a841
 WHIRLPOOL 
53f63d879f563909c57d23ced273e23eda1eace2a2ddfd54edf5f2ef15218cc7e5d927e54714b6850db541f361c459de50d79b0a4516b43ce4cba8eb66b49485
-DIST openssh-7.3p1.tar.gz 1522617 SHA256 
3ffb989a6dcaa69594c3b550d4855a5a2e1718ccdde7f5e36387b424220fbecc SHA512 
7ba2d6140f38bd359ebf32ef17626e0ae1c00c3a38c01877b7c6b0317d030f10a8f82a0a51fc3b6273619de9ed73e24b8cf107b1e968f927053a3bedf97ff801
 WHIRLPOOL 
f852026638d173d455f74e3fce16673fc4b10f32d954d5bb8c7c65df8d1ca7efd0938177dd9fb6e1f7354383f21c7bca8a2f01e89793e32f8ca68c30456a611c
 DIST openssh-7.4_p1-sctp.patch.xz 8220 SHA256 
18fa77f79ccae8b9a76bc877e9602113d91953bd487b6cc8284bfd1217438a23 SHA512 
0c199e3b26949482125aeaa88216b2458292589e3eac8908d9134d13a1cae891094fcb0f752ed3009b3126cc72277b460205f39140c251792eb1b545271c3bd4
 WHIRLPOOL 
0f0ea1d36523b35d3be33d22fb84daa05fd14c464d69c19695235f81d26326bc53d6804bf34d0cc0c2584f412bfdac361d2b018032447d1033a4ff4fd9458a09
-DIST openssh-7.5p1+x509-10.1.diff.gz 460721 SHA256 
e7abe401e7f651779c680491cfefbfcf4f26743202641b2bda934f80bb4464d2 SHA512 
d3b5a8f5e3a88eda7989b002236811867b7e2c39bf7cd29a6dbbce277fca3fbedbfdbeaf1fba7d8c19f3dea32a17790e90604765f18576bcc5627a9c1d39109c
 WHIRLPOOL 
2d4f96b47bcde9eabd19cad2fdc4da01a3d207f6ad5f4f1ea5a7dbd708d61783ae6a53e4cb622feed838106f57dbe6a7ecd1b41426325870378caf44803ff9ef
+DIST openssh-7.5p1+x509-10.2.diff.gz 467040 SHA256 
24d5c1949d245b432abf2db6c28554a09bcffdcb4f4247826c0a33bdbee8b92c SHA512 
ec760d38771749d09afc8d720120ea2aa065c1c7983898b45dba74a4411f7e61e7705da226864e1e8e62e2261eecc3a4ab654b528c71512a07798824d9fb1a9a
 WHIRLPOOL 
3291a3e39b1a47efe149cdf805de11217fd55c4260477f2a6c6cc0bfa376b98a5dc7f56a49ae184fb57bae6226c73d1794db7b2285e3ea26a8fea4bc9304655b
 DIST openssh-7.5p1-hpnssh14v12.tar.xz 23068 SHA256 
8a1ed99c121a4ad21d7a26cd32627a8dd51595fd3ee9f95dc70e6b50fe779ce2 SHA512 
45c42090a212b9ce898fbaa8284ddf0f0d17236af13c4a780e00bf265b0c7a4286027e90a7ce9ad70066309db722709dd2f0a7914f57e5364ffbaf7c4859cdf9
 WHIRLPOOL 
6089ad8ae16c112a6f15d168c092e7f057b9e6d815724346b5a6a1cd0de932f779d5f410d48c904d935fcb3bad3f597fa4de075ab1f49cadc9842ce7bd8fdf42
 DIST openssh-7.5p1.tar.gz 1510857 SHA256 
9846e3c5fab9f0547400b4d2c017992f914222b3fd1f8eee6c7dc6bc5e59f9f0 SHA512 
58c542e8a110fb4316a68db94abb663fa1c810becd0638d45281df8aeca62c1f705090437a80e788e6c29121769b72a505feced537d3118c933fde01b5285c81
 WHIRLPOOL 
1a42c68d8e350bc4790dd4c1a98dd6571bfa353ad6871b1462c53b6412f752719daabd1a13bb4434d294de966a00428ac66334bab45f371420029b5e34a6914c
-DIST openssh-lpk-7.3p1-0.3.14.patch.xz 17800 SHA256 
cf1f60235cb8b0e561cd36cbf9e4f437e16fd748c2616d3f511c128c02deb76c SHA512 
e9a73c5f13e41f6e11c744fdbcdb2e399c394479f79249e901cb3c101efb06f23d51d3ba4869db872184fa034a5910fc93a730fe906266c8d7409e39ad5b1ecd
 WHIRLPOOL 
bbdeadbed8f901148713bd9e4a082a4be2992c3151f995febd8be89bbb85d91185e1f0413b5a94a9340f2f404d18c9cee2aa6e032adaee0306aa1c624f6cc09c
 DIST openssh-lpk-7.5p1-0.3.14.patch.xz 17040 SHA256 
11060be996b291b8d78de698c68a92428430e4ff440553f5045c6de5c0e1dab3 SHA512 
9ce5d7e5d831c972f0f866b686bf

[gentoo-commits] proj/linux-patches: New tag: 4.13-18

2017-11-21 Thread Alice Ferrazzi
commit: 
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 09:45:50 2017 +

New tag: 4.13-18




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

2017-11-21 Thread Alice Ferrazzi
commit: 3b8ffc20aa662b0f26caa4643a27b22af47aff77
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 09:45:03 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 09:45:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b8ffc20

sys-kernel/vanilla-sources: removed old packages

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 sys-kernel/vanilla-sources/Manifest  |  3 ---
 .../vanilla-sources/vanilla-sources-4.13.14.ebuild   | 16 
 sys-kernel/vanilla-sources/vanilla-sources-4.4.99.ebuild | 16 
 sys-kernel/vanilla-sources/vanilla-sources-4.9.63.ebuild | 16 
 4 files changed, 51 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 059c3c4fc42..d395a10f926 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -8,9 +8,6 @@ DIST linux-4.9.tar.xz 93192404 SHA256 
029098dcffab74875e086ae970e3828456838da6e0
 DIST patch-3.16.50.xz 1768284 SHA256 
e57f3e038b219da4bd906d34cb7c5cd8b4a9e1156b153e4fd5c85b9248e62313 SHA512 
7632a44e541f780210b2ebf797846be015b353735aa8161b4c3949577df074a9478b5c87ca4fd5b82f83a9d17c4b2b568114dbc9dbc731b4f5331c158c4dd9d9
 WHIRLPOOL 
00f8a254696b2d34321bd1b307413c6a665dfb3830ec4cca69543de17cc3f43da270cdbd308476d35e223bac37e18ac6bb91a142f2254a74b28964cf5a19c236
 DIST patch-3.2.95.xz 1814816 SHA256 
71cc9d329538f676bf0c5e243215d32ac727a11c4128596cf6e5d6bc55d8446c SHA512 
68b065aa8c64431cb3478f8e061e4b7a5c0a273ad7a82de4c20422b7e7c8ab4e103e571945421929c03e5790da572d9a567277e42355bbf1878c78a8e83134be
 WHIRLPOOL 
8186e777c3d4e257abfd5114559e6eb8e0ddabf527511a411cfcddf081b9ef32a0d9eccc474ce8128dbff8acee4b7448a1ab34d8328a31326d2448e048e5e922
 DIST patch-4.1.46.xz 1236640 SHA256 
b066ec1a0aabec07afe8e71766b5bf5b397a681070698e7a6e00b52ae00de982 SHA512 
c6b50ddd848c949119dfe1ebe45542a53c8116718e09345e8b47b300f057d4396f0991de51a6ce0ae1ea88502e53339573c8873126bfe202c742a09455b00519
 WHIRLPOOL 
4ccb03d9474c52c8c84a89f0b8103b36284371991b24555d9c74956edc13487b767c96b050776ded5b4c7985de545c042baa968f8c0c1acdaa5ab4cab70dc889
-DIST patch-4.13.14.xz 256976 SHA256 
f6d10bf6569f433b8ad6eef54acb395bf15990b709ee34c7a82a95829acaa917 SHA512 
6cbcd43f1691be45f74a2d06ed55d59e4dc49c9a02d7573f3ca11130ad27a6f35f36d9da054e762ffbf9a5517735fba44bae601b60d477fcf5603a8867221c08
 WHIRLPOOL 
52259008714d76d912a5a926f10b0cc532b9f7adf21d64503207b00e8cc98bdadb49ac959e069a4be78d6f83df8c0c667bf1d46be304084f30e8ba6b47c2e1b2
 DIST patch-4.13.15.xz 264180 SHA256 
110744f7ecf675153a1d6b6a622f6dd58a2e4615c36fae61dd846316bfd51c90 SHA512 
54e1d3b526984efe90a5c759b35ac849ac65525c977b3982ef32b0fbb83e73f1fca92d73c3ffb1f23643d9f72a3083eeb4edb54768b105138722434811f622c4
 WHIRLPOOL 
1dcc5133d009b40b776a63b59986c26441762589940308c5a663ad532750d795f94d1b0256c37a020844c9c7e4e5116fd77f53a7993613a0b1bea1412dbd9d26
 DIST patch-4.4.100.xz 1439928 SHA256 
0521ca9dd8f8f8eee0f405d01242cdd6a52eacbefd417169624484ab692adbef SHA512 
1a8e563165744e30d523d47610b700d20c410df257ef29a3ab0d72ed3cab35df9fdfbdf48136ffd31b3de629b65dd4d1c6b7b3088c3c8a5ee6e46625b2a9b55a
 WHIRLPOOL 
baeb819469018eac581f5dee74e259abd44517e77872c1701fc899592d7576d393cc58ca0d7a03cc656a81fbf2ed0c52b13cf763e6eb9078d0aaff8817ddb034
-DIST patch-4.4.99.xz 1428600 SHA256 
b87f6562043171cd1bf09564f34f782803af3ce461fc6ef2d4c7590cb51c20ab SHA512 
7f7e3f0e2fffcb5e1980f09484177a26a6bacebea7e430f1dde041e97b31e6f73fe67b9e815f98158e7de6f3a6072f406e173f9b06250c26a8557bcd68719f1b
 WHIRLPOOL 
f8e72bc368c7a7942242504d6777d5fd4d089ac355911cf0f77c36f3148512ed21cb8514e506fe9019beb688699dd8374122d72021b1cb9431a85d962dda5d72
-DIST patch-4.9.63.xz 1142136 SHA256 
bcd440b398c8ab8158d91fa7245d583ed00203caba4f0751293687305e570eb1 SHA512 
51fa0a5c19989be5326130421afe29aeb22bc7be65adbe882fc32b0b22c414e8631e3e7cefb6fecfc23545851a19211f5feddd7196934f5c84ec507b4f2984c0
 WHIRLPOOL 
585a9c032e672eca1cf16cf13600ca935367307ce1791d9cc8719c2a418a2e8a4f57722eba79eb08c727b8a413b4667323d470abc02a559bedf9b830856d54e4
 DIST patch-4.9.64.xz 1156948 SHA256 
e17b3219b2b9ebdeb180e509b3a1a6eb46d957d6a95c17f4e6b6b7199067949a SHA512 
5fbf5d204fffddcfb2ad89f55254c49c57490936547790e46bcf46c81f209163cdc018d9c9211ec4d7fd6b8ca668eb3c38c06e5b6856c6eee49564bd33ec22fe
 WHIRLPOOL 
0333b0678c94bc2c9c0ed024aa4a20f6695273cef5531074a641f70535de03d3e003f73d4cdcb55429d766fa7ff22d02159aebfeb6ae32ee488bcc2ec74a69cb

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.13.14.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.13.14.ebuild
deleted file mode 100644
index 20e2c109b44..000
--- a/sys-kernel/vanilla-sources/vanilla-sources-4.13.14.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-K_NOUSENAME="yes"
-K_NOSETEXTRAVERSION="yes"
-K_SECURITY_UNSUPPORTED="1"
-ETYPE="sources"
-inherit kernel-2
-detect_ver

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

2017-11-21 Thread Alice Ferrazzi
commit: 1e22ee21bb5c0cf7b0f171214fe2df3323b61db9
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 09:38:28 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 09:38:28 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=1e22ee21

linux kernel 4.13.15

 _README  |4 +
 1014_linux-4.13.15.patch | 1057 ++
 2 files changed, 1061 insertions(+)

diff --git a/_README b/_README
index 8777a91..7f93bc3 100644
--- a/_README
+++ b/_README
@@ -99,6 +99,10 @@ Patch:  1013_linux-4.13.14.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.13.14
 
+Patch:  1014_linux-4.13.15.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.13.15
+
 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/1014_linux-4.13.15.patch b/1014_linux-4.13.15.patch
new file mode 100644
index 000..9e3a0bd
--- /dev/null
+++ b/1014_linux-4.13.15.patch
@@ -0,0 +1,1057 @@
+diff --git a/Makefile b/Makefile
+index 4aabae365a6c..3bd5d9d148d3 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 13
+-SUBLEVEL = 14
++SUBLEVEL = 15
+ EXTRAVERSION =
+ NAME = Fearless Coyote
+ 
+diff --git a/arch/x86/kernel/cpu/mcheck/mce-severity.c 
b/arch/x86/kernel/cpu/mcheck/mce-severity.c
+index 87cc9ab7a13c..4b8187639c2d 100644
+--- a/arch/x86/kernel/cpu/mcheck/mce-severity.c
 b/arch/x86/kernel/cpu/mcheck/mce-severity.c
+@@ -245,6 +245,9 @@ static int mce_severity_amd(struct mce *m, int tolerant, 
char **msg, bool is_exc
+ 
+   if (m->status & MCI_STATUS_UC) {
+ 
++  if (ctx == IN_KERNEL)
++  return MCE_PANIC_SEVERITY;
++
+   /*
+* On older systems where overflow_recov flag is not present, we
+* should simply panic if an error overflow occurs. If
+@@ -255,10 +258,6 @@ static int mce_severity_amd(struct mce *m, int tolerant, 
char **msg, bool is_exc
+   if (mce_flags.smca)
+   return mce_severity_amd_smca(m, ctx);
+ 
+-  /* software can try to contain */
+-  if (!(m->mcgstatus & MCG_STATUS_RIPV) && (ctx == 
IN_KERNEL))
+-  return MCE_PANIC_SEVERITY;
+-
+   /* kill current process */
+   return MCE_AR_SEVERITY;
+   } else {
+diff --git a/crypto/dh.c b/crypto/dh.c
+index b1032a5c1bfa..aadaf36fb56f 100644
+--- a/crypto/dh.c
 b/crypto/dh.c
+@@ -21,19 +21,12 @@ struct dh_ctx {
+   MPI xa;
+ };
+ 
+-static inline void dh_clear_params(struct dh_ctx *ctx)
++static void dh_clear_ctx(struct dh_ctx *ctx)
+ {
+   mpi_free(ctx->p);
+   mpi_free(ctx->g);
+-  ctx->p = NULL;
+-  ctx->g = NULL;
+-}
+-
+-static void dh_free_ctx(struct dh_ctx *ctx)
+-{
+-  dh_clear_params(ctx);
+   mpi_free(ctx->xa);
+-  ctx->xa = NULL;
++  memset(ctx, 0, sizeof(*ctx));
+ }
+ 
+ /*
+@@ -71,10 +64,8 @@ static int dh_set_params(struct dh_ctx *ctx, struct dh 
*params)
+   return -EINVAL;
+ 
+   ctx->g = mpi_read_raw_data(params->g, params->g_size);
+-  if (!ctx->g) {
+-  mpi_free(ctx->p);
++  if (!ctx->g)
+   return -EINVAL;
+-  }
+ 
+   return 0;
+ }
+@@ -86,21 +77,23 @@ static int dh_set_secret(struct crypto_kpp *tfm, const 
void *buf,
+   struct dh params;
+ 
+   /* Free the old MPI key if any */
+-  dh_free_ctx(ctx);
++  dh_clear_ctx(ctx);
+ 
+   if (crypto_dh_decode_key(buf, len, ¶ms) < 0)
+-  return -EINVAL;
++  goto err_clear_ctx;
+ 
+   if (dh_set_params(ctx, ¶ms) < 0)
+-  return -EINVAL;
++  goto err_clear_ctx;
+ 
+   ctx->xa = mpi_read_raw_data(params.key, params.key_size);
+-  if (!ctx->xa) {
+-  dh_clear_params(ctx);
+-  return -EINVAL;
+-  }
++  if (!ctx->xa)
++  goto err_clear_ctx;
+ 
+   return 0;
++
++err_clear_ctx:
++  dh_clear_ctx(ctx);
++  return -EINVAL;
+ }
+ 
+ static int dh_compute_value(struct kpp_request *req)
+@@ -158,7 +151,7 @@ static void dh_exit_tfm(struct crypto_kpp *tfm)
+ {
+   struct dh_ctx *ctx = dh_get_ctx(tfm);
+ 
+-  dh_free_ctx(ctx);
++  dh_clear_ctx(ctx);
+ }
+ 
+ static struct kpp_alg dh = {
+diff --git a/crypto/dh_helper.c b/crypto/dh_helper.c
+index 8ba8a3f82620..7f00c771fe8d 100644
+--- a/crypto/dh_helper.c
 b/crypto/dh_helper.c
+@@ -83,6 +83,14 @@ int crypto_dh_decode_key(const char *buf, unsigned int len, 
struct dh *params)
+   if (secret.len != crypto_dh_key_len(params))
+   return -EINVAL;
+ 
++  /*
++   * Don't permit the buffer for 'key' or 'g' to be larger than 'p', since
++   * some drivers assume otherwise.
++   */
++  if (params->key_size > p

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

2017-11-21 Thread Alice Ferrazzi
commit: d69a484a888e80b10a72280366854febc7323dc4
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 09:31:04 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 09:31:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d69a484a

sys-kernel/gentoo-sources: linux patch 4.4-104

Package-Manager: Portage-2.3.8, Repoman-2.3.3

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index a63c25ac322..2baebcbd81d 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -43,6 +43,9 @@ DIST genpatches-4.4-102.extras.tar.xz 16460 SHA256 
6f58d9d2058c087bd1e09eca3b445
 DIST genpatches-4.4-103.base.tar.xz 1542244 SHA256 
6cd9bea9b6b43a6710e13f6317579ad69724c59a131199c26905b8aa2f7b0465 SHA512 
d3d615dd6e912afa23db3b23c88f0adcf55b2cec987ad6902e997d55cf8ef6af48a01e576c5d9dad998c2ef6963cf9f5b56a605dac08dc8f8c9a2d0732c22f79
 WHIRLPOOL 
8fee07a49a1723cd44221d6be7a799eaade357d171c207de870952fdb495f5f5827692ca3d1620d40397ac535fd8d9bd85c2fae3b6586bd370f1df9240018f0d
 DIST genpatches-4.4-103.experimental.tar.xz 87784 SHA256 
4f78fc0d353a8945040671e79a7b805130ac478996b250d2ad82d059bf8fd626 SHA512 
71747c2a01baa8f288d720b093a9035bd0ecb65a6c22a308c9f97c150f7c8ffdba48172b2cd18730298b6cbfe0f9718737f2975017382d15d403eabcba3f3198
 WHIRLPOOL 
5320127de7c3fbc38352db5d5b2c83fd2f79cdf0b6113f79537b12aca7222bd6dff27e19daf7134de323abdb290f5b5dded48b6a4d15b3b46d7f7cd3c02a12c2
 DIST genpatches-4.4-103.extras.tar.xz 16460 SHA256 
a78a83dc115d7943711568dfb88fee9a18a8a787c6070414337e77dd87a3100f SHA512 
7caee6577147b750fb178126b73f7204082c1b353720695abd091e004211f42b0a5ec279783a98a5cbe294239eb1b29a2492a1af662a8efb70263403604715a7
 WHIRLPOOL 
9ef6ac6d6875fb6b26ce097ba616e2c824974a42cb623640da9731db414771c83745315a07b5c95f7bee96072e341f4ae2499b9af1916078040089371a3b1880
+DIST genpatches-4.4-104.base.tar.xz 1555020 SHA256 
1e1ed1bd72d11acab05481915b6b07a6480a70dbcd895689fb706459cd8d8a38 SHA512 
7b6625a1dc8669e25f5702509c7f25d7e72c102c6eb959afe295000cbd320db18a4d896fe385751cbbc569d74f056db70f610053a165f2f01683a411acc120b4
 WHIRLPOOL 
ec832bb3f76bf0bc83b2c650ffcedc71b3cb8c35de2c300adf78a7d3c76b0761242b27e7b5f34572975d87e6ae93992414f9381ea2ded2bd03ec20056326f97a
+DIST genpatches-4.4-104.experimental.tar.xz 87752 SHA256 
be68249f6ca443f41be3ddcba2e42211e0bab395e5d941faaae673bda98a1645 SHA512 
75148631440426b827ea17e397212594c7e6b99e5ef6913c96f39ed9cbc25a4078d6ccb0be0a375eb88a1db952a4c7a877df05f6fda98c6e8ae5ec91ea1c19be
 WHIRLPOOL 
39c8e6d1e13dc6f77a76c158700435220e07c9a37574e7a6d723b26317866231e8d34ae331bd5e3f232ceb4053d2a55bdfa54a28fbb396bf60f56e19d0ca16d8
+DIST genpatches-4.4-104.extras.tar.xz 16464 SHA256 
046b969ff0bab3644ce61476b91d7541a522627a6d785045cf67c94e111f17c4 SHA512 
6248bb8482697705b3c339c70cb1c64e286cde8d454051a5aa5633220a31e310ab77080e6acca6b4afcb60ba317763ed179e3789ce5587527229fe6dae6fdf1c
 WHIRLPOOL 
1ff8b58733e43220decad95aeb408e83e09c5aa5c5798c0d29864f7b758981c28b9cd5086ced554efa1511b5070cefa41b5ac3f41810d28d169d7bbbeb507e88
 DIST genpatches-4.4-91.base.tar.xz 1428436 SHA256 
d6c806bd868856a9021b35d0bc3ced37029c8803846d6b251fe7fefadfe46c69 SHA512 
c25be04b33558f7ebcee66df992aae38f29181474ebed82958d4d50639097b4a82eaf256d7b3576bfcd0cd3fe7682956e1d2cdbdb912d47fe86205d9b554
 WHIRLPOOL 
8de12e7bdba76256e8fc41738605bbe961fa3fa0ccbe1fccaf0c8cb3708c692bb65a27db7675e42ce5558a22c81b9017742b14d6776ee2b93f4d1d92535942a9
 DIST genpatches-4.4-91.experimental.tar.xz 87760 SHA256 
e04a99c94b4dd9f5856dd08ed4b286b19c765d8d0fe40237dce256f7c874dbf8 SHA512 
0bbc83e076d45da1d0258bfd7f6acf6170e99891a9a857b2552f3a0fcefff4f318a8c5c8779591b0bb654760f905530de18723f2ba960618eae59a1b7219c28f
 WHIRLPOOL 
fb6306af0191198d466b3349c348139342a70de118bcce0563e3209a7ead8a9d56291f3a4155ba4a4d211db8fc1e20ddec3a3b463d62fff5375df823646f7b02
 DIST genpatches-4.4-91.extras.tar.xz 16468 SHA256 
6cc85cbae6d2ccf087104b5f719abf10d186d3b630572caeb1906c344c66de76 SHA512 
229922945fcb882a0cb7dcba8bac9de51683690462a8df59e181a03d702fcb1c9b54078c5434624b4a197c481f0bb9b73dca58456ef5a5884a30bfd3644dfd6d
 WHIRLPOOL 
81f8fa1676856f0941bc6d09e7e602d2213740bed6edc914d9341bad590650d5a5249fd8bbd2d640380a638ce2a12fd4ec66e0c3753c8d9d22c1fa2c3f07aacb

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.100.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.100.ebuild
new file mode 100644
index 000..978e3ebc3dd
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.100.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="104"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~a

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

2017-11-21 Thread Alice Ferrazzi
commit: 79a72c41db6d136a571c22a3fbccc1dccddc0267
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 09:35:35 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 09:35:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79a72c41

sys-kernel/vanilla-sources: bump to {4.4.100,4.9.64,4.13.15}

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 sys-kernel/vanilla-sources/Manifest  |  3 +++
 .../vanilla-sources/vanilla-sources-4.13.15.ebuild   | 16 
 .../vanilla-sources/vanilla-sources-4.4.100.ebuild   | 16 
 sys-kernel/vanilla-sources/vanilla-sources-4.9.64.ebuild | 16 
 4 files changed, 51 insertions(+)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 308a918e335..059c3c4fc42 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -9,5 +9,8 @@ DIST patch-3.16.50.xz 1768284 SHA256 
e57f3e038b219da4bd906d34cb7c5cd8b4a9e1156b1
 DIST patch-3.2.95.xz 1814816 SHA256 
71cc9d329538f676bf0c5e243215d32ac727a11c4128596cf6e5d6bc55d8446c SHA512 
68b065aa8c64431cb3478f8e061e4b7a5c0a273ad7a82de4c20422b7e7c8ab4e103e571945421929c03e5790da572d9a567277e42355bbf1878c78a8e83134be
 WHIRLPOOL 
8186e777c3d4e257abfd5114559e6eb8e0ddabf527511a411cfcddf081b9ef32a0d9eccc474ce8128dbff8acee4b7448a1ab34d8328a31326d2448e048e5e922
 DIST patch-4.1.46.xz 1236640 SHA256 
b066ec1a0aabec07afe8e71766b5bf5b397a681070698e7a6e00b52ae00de982 SHA512 
c6b50ddd848c949119dfe1ebe45542a53c8116718e09345e8b47b300f057d4396f0991de51a6ce0ae1ea88502e53339573c8873126bfe202c742a09455b00519
 WHIRLPOOL 
4ccb03d9474c52c8c84a89f0b8103b36284371991b24555d9c74956edc13487b767c96b050776ded5b4c7985de545c042baa968f8c0c1acdaa5ab4cab70dc889
 DIST patch-4.13.14.xz 256976 SHA256 
f6d10bf6569f433b8ad6eef54acb395bf15990b709ee34c7a82a95829acaa917 SHA512 
6cbcd43f1691be45f74a2d06ed55d59e4dc49c9a02d7573f3ca11130ad27a6f35f36d9da054e762ffbf9a5517735fba44bae601b60d477fcf5603a8867221c08
 WHIRLPOOL 
52259008714d76d912a5a926f10b0cc532b9f7adf21d64503207b00e8cc98bdadb49ac959e069a4be78d6f83df8c0c667bf1d46be304084f30e8ba6b47c2e1b2
+DIST patch-4.13.15.xz 264180 SHA256 
110744f7ecf675153a1d6b6a622f6dd58a2e4615c36fae61dd846316bfd51c90 SHA512 
54e1d3b526984efe90a5c759b35ac849ac65525c977b3982ef32b0fbb83e73f1fca92d73c3ffb1f23643d9f72a3083eeb4edb54768b105138722434811f622c4
 WHIRLPOOL 
1dcc5133d009b40b776a63b59986c26441762589940308c5a663ad532750d795f94d1b0256c37a020844c9c7e4e5116fd77f53a7993613a0b1bea1412dbd9d26
+DIST patch-4.4.100.xz 1439928 SHA256 
0521ca9dd8f8f8eee0f405d01242cdd6a52eacbefd417169624484ab692adbef SHA512 
1a8e563165744e30d523d47610b700d20c410df257ef29a3ab0d72ed3cab35df9fdfbdf48136ffd31b3de629b65dd4d1c6b7b3088c3c8a5ee6e46625b2a9b55a
 WHIRLPOOL 
baeb819469018eac581f5dee74e259abd44517e77872c1701fc899592d7576d393cc58ca0d7a03cc656a81fbf2ed0c52b13cf763e6eb9078d0aaff8817ddb034
 DIST patch-4.4.99.xz 1428600 SHA256 
b87f6562043171cd1bf09564f34f782803af3ce461fc6ef2d4c7590cb51c20ab SHA512 
7f7e3f0e2fffcb5e1980f09484177a26a6bacebea7e430f1dde041e97b31e6f73fe67b9e815f98158e7de6f3a6072f406e173f9b06250c26a8557bcd68719f1b
 WHIRLPOOL 
f8e72bc368c7a7942242504d6777d5fd4d089ac355911cf0f77c36f3148512ed21cb8514e506fe9019beb688699dd8374122d72021b1cb9431a85d962dda5d72
 DIST patch-4.9.63.xz 1142136 SHA256 
bcd440b398c8ab8158d91fa7245d583ed00203caba4f0751293687305e570eb1 SHA512 
51fa0a5c19989be5326130421afe29aeb22bc7be65adbe882fc32b0b22c414e8631e3e7cefb6fecfc23545851a19211f5feddd7196934f5c84ec507b4f2984c0
 WHIRLPOOL 
585a9c032e672eca1cf16cf13600ca935367307ce1791d9cc8719c2a418a2e8a4f57722eba79eb08c727b8a413b4667323d470abc02a559bedf9b830856d54e4
+DIST patch-4.9.64.xz 1156948 SHA256 
e17b3219b2b9ebdeb180e509b3a1a6eb46d957d6a95c17f4e6b6b7199067949a SHA512 
5fbf5d204fffddcfb2ad89f55254c49c57490936547790e46bcf46c81f209163cdc018d9c9211ec4d7fd6b8ca668eb3c38c06e5b6856c6eee49564bd33ec22fe
 WHIRLPOOL 
0333b0678c94bc2c9c0ed024aa4a20f6695273cef5531074a641f70535de03d3e003f73d4cdcb55429d766fa7ff22d02159aebfeb6ae32ee488bcc2ec74a69cb

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.13.15.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.13.15.ebuild
new file mode 100644
index 000..20e2c109b44
--- /dev/null
+++ b/sys-kernel/vanilla-sources/vanilla-sources-4.13.15.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_SECURITY_UNSUPPORTED="1"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="Full sources for the Linux kernel"
+HOMEPAGE="https://www.kernel.org";
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.100.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.4.100.ebuild
new file mode 100644
index 00

[gentoo-commits] repo/gentoo:master commit in: dev-lang/blassic/, dev-lang/blassic/files/

2017-11-21 Thread Michael Palimaka
commit: 0754e81fc7829ead5c8ce0ba8fe70d573e803a50
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Nov 21 09:22:32 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Nov 21 09:23:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0754e81f

dev-lang/blassic: remove 0.10.2

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 dev-lang/blassic/Manifest |  1 -
 dev-lang/blassic/blassic-0.10.2.ebuild| 32 ---
 dev-lang/blassic/files/blassic-0.10.2-tinfo.patch | 12 -
 3 files changed, 45 deletions(-)

diff --git a/dev-lang/blassic/Manifest b/dev-lang/blassic/Manifest
index f7c7f74d92a..3193b6a3064 100644
--- a/dev-lang/blassic/Manifest
+++ b/dev-lang/blassic/Manifest
@@ -1,2 +1 @@
-DIST blassic-0.10.2.tgz 361603 SHA256 
b0ef334d5c1c710643f1dd11e651ce091e7059aa5e9895b547dfa86c3638bdfa SHA512 
20f7210fd42ff58e11d7238aee37c21f18b733faf11edeb1d1a3e78c8fb524e37f0c871a2ab6b6608daaf593c4b4e8da4e2f86cddb8ad5e23905b0ce081feffa
 WHIRLPOOL 
ba571518104e319c47a341654f241e0b53ece0b614f200a824440fd0e67795a375d4f1703ccaa42ac8c85572c0ee6b0d3c980379094bc836fc4d866e2678cf1a
 DIST blassic-0.10.3.tgz 391555 SHA256 
c9c3002ad0de50aa2211634b41483b83a3dc985ec7ca68818450d8f4891c1693 SHA512 
7405e82a4855d87715fa8475e9b1858a95e18cd240c14ff422e31fd799f2d8182c7e0e22bfdfc2d7b95824660b2fe0bec9b0aaaf20dc1ce985f77b6da3173caa
 WHIRLPOOL 
4010bfe149df557abf60edd548eca0074d8b7287e80af8a8bd2ace479f7d2e92d54f68137d19450357b3912bb8297df51cc14728db58140166a3b6ac8f85296c

diff --git a/dev-lang/blassic/blassic-0.10.2.ebuild 
b/dev-lang/blassic/blassic-0.10.2.ebuild
deleted file mode 100644
index 1256cd52934..000
--- a/dev-lang/blassic/blassic-0.10.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils
-
-DESCRIPTION="classic Basic interpreter"
-HOMEPAGE="http://blassic.org";
-SRC_URI="http://blassic.org/bin/${P}.tgz";
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 hppa ppc x86 ~x86-linux ~ppc-macos ~x86-macos"
-SLOT="0"
-IUSE="X"
-
-RDEPEND="sys-libs/ncurses:0
-   X? ( x11-libs/libICE x11-libs/libX11 x11-libs/libSM )"
-DEPEND="${RDEPEND}
-   X? ( x11-proto/xproto )"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-tinfo.patch
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --disable-svgalib \
-   $(use_with X x)
-}
-
-DOCS=( AUTHORS NEWS README THANKS TODO )

diff --git a/dev-lang/blassic/files/blassic-0.10.2-tinfo.patch 
b/dev-lang/blassic/files/blassic-0.10.2-tinfo.patch
deleted file mode 100644
index 3253532a6bc..000
--- a/dev-lang/blassic/files/blassic-0.10.2-tinfo.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 a/configure.ac
-+++ b/configure.ac
-@@ -191,7 +191,8 @@
-   AC_CHECK_HEADERS([ncurses.h],,[ncurses_found=no])
-   if test "$ncurses_found" = yes
-   then
--  
AC_CHECK_LIB([ncurses],[tputs],,[ncurses_found=no])
-+  AC_CHECK_LIB([tinfo],[tputs],,
-+  
AC_CHECK_LIB([ncurses],[tputs],,[ncurses_found=no]))
-   if test "$ncurses_found" = yes
-   then
-   AC_DEFINE(BLASSIC_CONFIG_USE_NCURSES)



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

2017-11-21 Thread Alice Ferrazzi
commit: 
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 09:18:58 2017 +

New tag: 4.9-66




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

2017-11-21 Thread Alice Ferrazzi
commit: 39fe86bc72de6a2976071057107ace490bacb774
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 09:05:51 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 09:05:51 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=39fe86bc

linux kernel 4.9.64

 _README |4 +
 1063_linux-4.9.64.patch | 2758 +++
 2 files changed, 2762 insertions(+)

diff --git a/_README b/_README
index 7c70a9e..c8f1c9c 100644
--- a/_README
+++ b/_README
@@ -295,6 +295,10 @@ Patch:  1062_linux-4.9.63.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.9.63
 
+Patch:  1063_linux-4.9.64.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.9.64
+
 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/1063_linux-4.9.64.patch b/1063_linux-4.9.64.patch
new file mode 100644
index 000..469d63b
--- /dev/null
+++ b/1063_linux-4.9.64.patch
@@ -0,0 +1,2758 @@
+diff --git a/Documentation/devicetree/bindings/arm/davinci.txt 
b/Documentation/devicetree/bindings/arm/davinci.txt
+index 715622c36260..f0841ce725b5 100644
+--- a/Documentation/devicetree/bindings/arm/davinci.txt
 b/Documentation/devicetree/bindings/arm/davinci.txt
+@@ -13,10 +13,6 @@ EnBW AM1808 based CMC board
+ Required root node properties:
+ - compatible = "enbw,cmc", "ti,da850;
+ 
+-LEGO MINDSTORMS EV3 (AM1808 based)
+-Required root node properties:
+-- compatible = "lego,ev3", "ti,da850";
+-
+ Generic DaVinci Boards
+ --
+ 
+diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt 
b/Documentation/devicetree/bindings/vendor-prefixes.txt
+index f949a22bcd74..bceb7502 100644
+--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
 b/Documentation/devicetree/bindings/vendor-prefixes.txt
+@@ -154,7 +154,6 @@ kosagi Sutajio Ko-Usagi PTE Ltd.
+ kyo   Kyocera Corporation
+ lacie LaCie
+ lantiqLantiq Semiconductor
+-lego  LEGO Systems A/S
+ lenovoLenovo Group Ltd.
+ lgLG Corporation
+ linux Linux-specific binding
+diff --git a/Makefile b/Makefile
+index 339d4a85ffba..d29cace0da6d 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 9
+-SUBLEVEL = 63
++SUBLEVEL = 64
+ EXTRAVERSION =
+ NAME = Roaring Lionus
+ 
+diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
+index 795c1467fa50..a3277e6436d5 100644
+--- a/arch/arm/boot/dts/am33xx.dtsi
 b/arch/arm/boot/dts/am33xx.dtsi
+@@ -143,10 +143,11 @@
+   };
+ 
+   scm_conf: scm_conf@0 {
+-  compatible = "syscon";
++  compatible = "syscon", "simple-bus";
+   reg = <0x0 0x800>;
+   #address-cells = <1>;
+   #size-cells = <1>;
++  ranges = <0 0 0x800>;
+ 
+   scm_clocks: clocks {
+   #address-cells = <1>;
+diff --git a/arch/arm/boot/dts/dm814x.dtsi b/arch/arm/boot/dts/dm814x.dtsi
+index d87efab24fa2..ff57a20af9cd 100644
+--- a/arch/arm/boot/dts/dm814x.dtsi
 b/arch/arm/boot/dts/dm814x.dtsi
+@@ -252,7 +252,7 @@
+   };
+ 
+   uart1: uart@2 {
+-  compatible = "ti,omap3-uart";
++  compatible = "ti,am3352-uart", "ti,omap3-uart";
+   ti,hwmods = "uart1";
+   reg = <0x2 0x2000>;
+   clock-frequency = <4800>;
+@@ -262,7 +262,7 @@
+   };
+ 
+   uart2: uart@22000 {
+-  compatible = "ti,omap3-uart";
++  compatible = "ti,am3352-uart", "ti,omap3-uart";
+   ti,hwmods = "uart2";
+   reg = <0x22000 0x2000>;
+   clock-frequency = <4800>;
+@@ -272,7 +272,7 @@
+   };
+ 
+   uart3: uart@24000 {
+-  compatible = "ti,omap3-uart";
++  compatible = "ti,am3352-uart", "ti,omap3-uart";
+   ti,hwmods = "uart3";
+   reg = <0x24000 0x2000>;
+   clock-frequency = <4800>;
+@@ -332,10 +332,11 @@
+   ranges = <0 0x14 0x2>;
+ 
+   scm_conf: scm_conf@0 {
+-  compatible = "syscon";
++  compatible = "syscon", "simple-bus";
+   reg

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

2017-11-21 Thread Alice Ferrazzi
commit: 
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 09:03:05 2017 +

New tag: 4.4-104




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

2017-11-21 Thread Alice Ferrazzi
commit: de3f04ded621d007c726847d900eae91be5bc35c
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 08:34:09 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 08:34:09 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=de3f04de

linux kernel 4.4.100

 _README  |4 +
 1099_linux-4.4.100.patch | 2132 ++
 2 files changed, 2136 insertions(+)

diff --git a/_README b/_README
index e8c2522..fb4d48b 100644
--- a/_README
+++ b/_README
@@ -439,6 +439,10 @@ Patch:  1098_linux-4.4.99.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.4.99
 
+Patch:  1099_linux-4.4.100.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.4.100
+
 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/1099_linux-4.4.100.patch b/1099_linux-4.4.100.patch
new file mode 100644
index 000..e0c456c
--- /dev/null
+++ b/1099_linux-4.4.100.patch
@@ -0,0 +1,2132 @@
+diff --git a/Makefile b/Makefile
+index 0b5d9e20eee2..91dd7832f499 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 4
+-SUBLEVEL = 99
++SUBLEVEL = 100
+ EXTRAVERSION =
+ NAME = Blurry Fish Butt
+ 
+diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
+index d23e2524d694..be9c37e89be1 100644
+--- a/arch/arm/boot/dts/am33xx.dtsi
 b/arch/arm/boot/dts/am33xx.dtsi
+@@ -142,10 +142,11 @@
+   };
+ 
+   scm_conf: scm_conf@0 {
+-  compatible = "syscon";
++  compatible = "syscon", "simple-bus";
+   reg = <0x0 0x800>;
+   #address-cells = <1>;
+   #size-cells = <1>;
++  ranges = <0 0 0x800>;
+ 
+   scm_clocks: clocks {
+   #address-cells = <1>;
+diff --git a/arch/arm/boot/dts/dm814x.dtsi b/arch/arm/boot/dts/dm814x.dtsi
+index 7988b42e5764..c226c3d952d8 100644
+--- a/arch/arm/boot/dts/dm814x.dtsi
 b/arch/arm/boot/dts/dm814x.dtsi
+@@ -138,7 +138,7 @@
+   };
+ 
+   uart1: uart@2 {
+-  compatible = "ti,omap3-uart";
++  compatible = "ti,am3352-uart", "ti,omap3-uart";
+   ti,hwmods = "uart1";
+   reg = <0x2 0x2000>;
+   clock-frequency = <4800>;
+@@ -148,7 +148,7 @@
+   };
+ 
+   uart2: uart@22000 {
+-  compatible = "ti,omap3-uart";
++  compatible = "ti,am3352-uart", "ti,omap3-uart";
+   ti,hwmods = "uart2";
+   reg = <0x22000 0x2000>;
+   clock-frequency = <4800>;
+@@ -158,7 +158,7 @@
+   };
+ 
+   uart3: uart@24000 {
+-  compatible = "ti,omap3-uart";
++  compatible = "ti,am3352-uart", "ti,omap3-uart";
+   ti,hwmods = "uart3";
+   reg = <0x24000 0x2000>;
+   clock-frequency = <4800>;
+@@ -189,10 +189,11 @@
+   ranges = <0 0x16 0x16d000>;
+ 
+   scm_conf: scm_conf@0 {
+-  compatible = "syscon";
++  compatible = "syscon", "simple-bus";
+   reg = <0x0 0x800>;
+   #address-cells = <1>;
+   #size-cells = <1>;
++  ranges = <0 0 0x800>;
+ 
+   scm_clocks: clocks {
+   #address-cells = <1>;
+diff --git a/arch/arm/boot/dts/dm816x.dtsi b/arch/arm/boot/dts/dm816x.dtsi
+index eee636de4cd8..e526928e6e96 100644
+--- a/arch/arm/boot/dts/dm816x.dtsi
 b/arch/arm/boot/dts/dm816x.dtsi
+@@ -347,7 +347,7 @@
+   };
+ 
+   uart1: uart@4802 {
+-  compatible = "ti,omap3-uart";
++  compatible = "ti,am3352-uart", "ti,omap3-uart";
+   ti,hwmods = "uart1";
+   reg = <0x4802 0x2000>;
+   clock-frequency = <4800>;
+@@ -357,7 +357,7 @@
+   };
+ 
+   uart2: uart@48022000 {
+-  compatible = "ti,omap3-uart";
++  compatible = "ti,am3352-uart", "ti,omap3-uart";
+   

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

2017-11-21 Thread Alice Ferrazzi
commit: 1c37d6db7962c1a7db9c1ca63960ab2c8254894b
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Tue Nov 21 08:26:28 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Tue Nov 21 08:29:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c37d6db

profiles: mask sys-kernel/gentoo-sources-4.14.0 (bug 638206)

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

diff --git a/profiles/package.mask b/profiles/package.mask
index b59da46e44c..a38f9a1557c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Alice Ferrazzi  (21 Nov 2017)
+# A regression in kernel 4.14.0
+# Using bcache can destroy the filesystem. 
+# The hope is that this patch will make it to 4.14.1 Bug #638206
+=sys-kernel/gentoo-sources-4.14.0
+
 # Andreas Sturmlechner  (16 Nov 2017)
 # Qt4WebKit is ancient and full of security holes.
 # Masked for removal in 30 days. Bug #620684



[gentoo-commits] repo/gentoo:master commit in: sys-freebsd/freebsd-usbin/

2017-11-21 Thread Patrice Clement
commit: b2a5a2d6805cf74fb85755a9f8cf43db2e9fcdf8
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Nov 19 23:24:28 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 21 08:22:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2a5a2d6

sys-freebsd/freebsd-usbin: tidy up ebuilds.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 sys-freebsd/freebsd-usbin/freebsd-usbin-10.3-r1.ebuild | 14 +++---
 sys-freebsd/freebsd-usbin/freebsd-usbin-11.0-r1.ebuild | 14 +++---
 sys-freebsd/freebsd-usbin/freebsd-usbin-11.1.ebuild| 12 ++--
 3 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/sys-freebsd/freebsd-usbin/freebsd-usbin-10.3-r1.ebuild 
b/sys-freebsd/freebsd-usbin/freebsd-usbin-10.3-r1.ebuild
index 13fcabab5a4..54be148462f 100644
--- a/sys-freebsd/freebsd-usbin/freebsd-usbin-10.3-r1.ebuild
+++ b/sys-freebsd/freebsd-usbin/freebsd-usbin-10.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -130,9 +130,9 @@ src_install() {
 
# Most of these now come from openrc.
for util in iscsid nfs nfsuserd rpc.statd rpc.lockd; do
-   newinitd "${FILESDIR}/"${util}.initd ${util} || die
+   newinitd "${FILESDIR}/"${util}.initd ${util}
if [[ -e "${FILESDIR}"/${util}.confd ]]; then \
-   newconfd "${FILESDIR}"/${util}.confd ${util} || die
+   newconfd "${FILESDIR}"/${util}.confd ${util}
fi
done
 
@@ -147,17 +147,17 @@ EOS
 
# Install the pw.conf file to let pw use Gentoo's skel location
insinto /etc
-   doins "${FILESDIR}/pw.conf" || die
+   doins "${FILESDIR}/pw.conf"
 
cd "${WORKDIR}/etc" || die
-   doins apmd.conf syslog.conf newsyslog.conf nscd.conf || die
+   doins apmd.conf syslog.conf newsyslog.conf nscd.conf
 
insinto /etc/ppp
-   doins ppp/ppp.conf || die
+   doins ppp/ppp.conf
 
if use bluetooth; then
insinto /etc/bluetooth
-   doins bluetooth/* || die
+   doins bluetooth/*
rm -f "${D}"/etc/bluetooth/Makefile
fi
 

diff --git a/sys-freebsd/freebsd-usbin/freebsd-usbin-11.0-r1.ebuild 
b/sys-freebsd/freebsd-usbin/freebsd-usbin-11.0-r1.ebuild
index 4050a75bdf5..a43897c528f 100644
--- a/sys-freebsd/freebsd-usbin/freebsd-usbin-11.0-r1.ebuild
+++ b/sys-freebsd/freebsd-usbin/freebsd-usbin-11.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -128,9 +128,9 @@ src_install() {
 
# Most of these now come from openrc.
for util in iscsid nfs nfsuserd rpc.statd rpc.lockd; do
-   newinitd "${FILESDIR}/"${util}.initd ${util} || die
+   newinitd "${FILESDIR}/"${util}.initd ${util}
if [[ -e "${FILESDIR}"/${util}.confd ]]; then \
-   newconfd "${FILESDIR}"/${util}.confd ${util} || die
+   newconfd "${FILESDIR}"/${util}.confd ${util}
fi
done
 
@@ -145,20 +145,20 @@ EOS
 
# Install the pw.conf file to let pw use Gentoo's skel location
insinto /etc
-   doins "${FILESDIR}/pw.conf" || die
+   doins "${FILESDIR}/pw.conf"
 
cd "${WORKDIR}/etc" || die
-   doins apmd.conf syslog.conf newsyslog.conf nscd.conf || die
+   doins apmd.conf syslog.conf newsyslog.conf nscd.conf
 
if use bluetooth; then
insinto /etc/bluetooth
-   doins bluetooth/* || die
+   doins bluetooth/*
rm -f "${D}"/etc/bluetooth/Makefile
fi
 
cd "${S}"/ppp || die
insinto /etc/ppp
-   doins ppp.conf || die
+   doins ppp.conf
 
# Install the periodic stuff (needs probably to be ported in a more
# gentooish way)

diff --git a/sys-freebsd/freebsd-usbin/freebsd-usbin-11.1.ebuild 
b/sys-freebsd/freebsd-usbin/freebsd-usbin-11.1.ebuild
index 522032984c5..36367a5e496 100644
--- a/sys-freebsd/freebsd-usbin/freebsd-usbin-11.1.ebuild
+++ b/sys-freebsd/freebsd-usbin/freebsd-usbin-11.1.ebuild
@@ -129,9 +129,9 @@ src_install() {
 
# Most of these now come from openrc.
for util in iscsid nfs nfsuserd rpc.statd rpc.lockd; do
-   newinitd "${FILESDIR}/"${util}.initd ${util} || die
+   newinitd "${FILESDIR}/"${util}.initd ${util}
if [[ -e "${FILESDIR}"/${util}.confd ]]; then \
-   newconfd "${FILESDIR}"/${util}.confd ${util} || die
+   newconfd "${FILESDIR}"/${util}.confd ${util}
fi
done
 
@@ -146,20 +146,20 @@ EOS
 
# Install the pw.conf file to let pw use Gentoo's skel location
insinto

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

2017-11-21 Thread Patrice Clement
commit: 195a615dbfb0f774779316ed288d0c715dddc814
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 21 08:16:57 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 21 08:19:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=195a615d

app-shells/hstr: stable for amd64+x86.

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 app-shells/hstr/hstr-1.23.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/app-shells/hstr/hstr-1.23.ebuild b/app-shells/hstr/hstr-1.23.ebuild
index aa0d958ff0d..c1c420e73d2 100644
--- a/app-shells/hstr/hstr-1.23.ebuild
+++ b/app-shells/hstr/hstr-1.23.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/dvorka/hstr/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="sys-libs/ncurses:0="
 
@@ -20,9 +20,7 @@ DEPEND="
virtual/pkgconfig"
 
 DOCS=( CONFIGURATION.md README.md )
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.23-tinfo.patch
-)
+PATCHES=( "${FILESDIR}/${P}-tinfo.patch" )
 
 src_prepare() {
default



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

2017-11-21 Thread Patrice Clement
commit: f43dffd985fe94bb8077e96d344bc8d2732b80a8
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Nov 21 08:19:35 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Nov 21 08:19:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f43dffd9

app-shells/hstr: clean up old.

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 app-shells/hstr/Manifest|  1 -
 app-shells/hstr/hstr-1.22-r1.ebuild | 30 --
 2 files changed, 31 deletions(-)

diff --git a/app-shells/hstr/Manifest b/app-shells/hstr/Manifest
index 7651c4b3400..ac158ccdcf7 100644
--- a/app-shells/hstr/Manifest
+++ b/app-shells/hstr/Manifest
@@ -1,2 +1 @@
-DIST hstr-1.22.tar.gz 46487 SHA256 
c4995e7041dc66e2118f83bd4c6c7f4cff5b4c493ca28bd7e4aef76edeff71ba SHA512 
5f31434410963c236f4e0d1117f09849b0a391d4173924d9eb2b2ddb9977a8bcb5a0c9b2e01045b618d01dfbcebd9c5db41534cb6abbb024a3515d5994b442cd
 WHIRLPOOL 
30c6e42c91eebbcf55d6e8d89921d0760e3bda8e84ece0e2ccc7ef6be51dae15806f3db434b79a3afa4e8a9ebe63462fa927cc305c7a8d89a5d0651aa342493e
 DIST hstr-1.23.tar.gz 47239 SHA256 
f435b4fce473e966fe52d3c27ca9074df0925a236b01517ece022607b889af33 SHA512 
234c72587d0492d788b1c001b5e53f74820790a9ebe670e8abd28cd82fc7db65996d54160e675055be54cab110686838fe6e36dbefe0fbef9175613633bc5910
 WHIRLPOOL 
c5d247efe07ad84aa8a09a75366cf943a04ad92a340962dfe944e3e6b43da81e7d76653309982e79c2a58229b8f0f426d782642b538eb4983968184eada68738

diff --git a/app-shells/hstr/hstr-1.22-r1.ebuild 
b/app-shells/hstr/hstr-1.22-r1.ebuild
deleted file mode 100644
index 120e39a1037..000
--- a/app-shells/hstr/hstr-1.22-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="Shell history suggest box"
-HOMEPAGE="https://github.com/dvorka/hstr http://www.mindforger.com";
-SRC_URI="https://github.com/dvorka/hstr/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="Apache-2.0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="sys-libs/ncurses:0="
-
-DEPEND="
-   ${RDEPEND}
-   virtual/pkgconfig"
-
-DOCS=( CONFIGURATION.md README.md )
-
-src_prepare() {
-   default
-   sed \
-   -e 's:-O2::g' \
-   -i src/Makefile.am || die
-   eautoreconf
-}



<    1   2