[gentoo-commits] repo/gentoo:master commit in: dev-perl/Apache-CGI-Builder/, dev-perl/Apache-CGI-Builder/files/

2017-10-12 Thread Kent Fredric
commit: c286b97e2c1b452674ad243467770aa507fc3d33
Author: Kent Fredric  gentoo  org>
AuthorDate: Fri Oct 13 05:31:22 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Fri Oct 13 05:31:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c286b97e

dev-perl/Apache-CGI-Builder: Kill apache1 support, add tests

- EAPI6
- Enable/extend tests (slightly)
- Kill all mentions of apache1
- Add missing mod_perl dep

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 .../Apache-CGI-Builder-1.300.0-r2.ebuild   | 48 
 .../Apache-CGI-Builder-1.300.0-no-apache-1.patch   | 65 ++
 dev-perl/Apache-CGI-Builder/metadata.xml   |  1 -
 3 files changed, 113 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Apache-CGI-Builder/Apache-CGI-Builder-1.300.0-r2.ebuild 
b/dev-perl/Apache-CGI-Builder/Apache-CGI-Builder-1.300.0-r2.ebuild
new file mode 100644
index 000..47d5d71ee1c
--- /dev/null
+++ b/dev-perl/Apache-CGI-Builder/Apache-CGI-Builder-1.300.0-r2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=DOMIZIO
+DIST_VERSION=1.3
+inherit perl-module
+
+DESCRIPTION="CGI::Builder and Apache2/mod_perl2 integration"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=dev-perl/OOTools-2.21
+   >=dev-perl/CGI-Builder-1.2
+   www-apache/mod_perl
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${P}-no-apache-1.patch" )
+
+src_prepare() {
+   rm "${S}/lib/Apache/CGI/Builder.pm" || die "Can't remove Apache-1 
support"
+   perl-module_src_prepare
+}
+src_test() {
+   local MODULES=(
+   "Apache2::CGI::Builder ${DIST_VERSION}"
+   )
+   local failed=()
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1
+   eend $? || failed+=( "$dep" )
+   done
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+   perl_rm_files t/test_pod_coverage.t t/test_pod.t
+   perl-module_src_test
+}

diff --git 
a/dev-perl/Apache-CGI-Builder/files/Apache-CGI-Builder-1.300.0-no-apache-1.patch
 
b/dev-perl/Apache-CGI-Builder/files/Apache-CGI-Builder-1.300.0-no-apache-1.patch
new file mode 100644
index 000..97e488bd4aa
--- /dev/null
+++ 
b/dev-perl/Apache-CGI-Builder/files/Apache-CGI-Builder-1.300.0-no-apache-1.patch
@@ -0,0 +1,65 @@
+From ef931c54efda99718b71f9e772fb7474e6ae8953 Mon Sep 17 00:00:00 2001
+From: Kent Fredric 
+Date: Fri, 13 Oct 2017 18:19:42 +1300
+Subject: Kill Apache1/mod_perl-1
+
+---
+ MANIFEST  |   1 -
+ Makefile.PL   |   6 +-
+ lib/Apache/CGI/Builder.pm | 383 --
+ t/01_class.t  |   2 +-
+ 4 files changed, 4 insertions(+), 388 deletions(-)
+ delete mode 100644 lib/Apache/CGI/Builder.pm
+
+diff --git a/MANIFEST b/MANIFEST
+index 3dcf4d5..e5e1a8d 100644
+--- a/MANIFEST
 b/MANIFEST
+@@ -1,5 +1,4 @@
+ Changes
+-lib/Apache/CGI/Builder.pm
+ lib/Apache2/CGI/Builder.pm
+ Makefile.PL
+ MANIFEST  This list of files
+diff --git a/Makefile.PL b/Makefile.PL
+index 47272f9..babf555 100644
+--- a/Makefile.PL
 b/Makefile.PL
+@@ -3,10 +3,10 @@
+ 
+ ; use ExtUtils::MakeMaker
+ 
+-; my $pm = 'lib/Apache/CGI/Builder.pm'
++; my $pm = 'lib/Apache2/CGI/Builder.pm'
+ 
+ ; WriteMakefile
+-   ( NAME   => 'Apache::CGI::Builder'
++   ( NAME   => 'Apache2::CGI::Builder'
+, VERSION_FROM   => $pm
+, ( $] ge '5.005' )
+  ? ( AUTHOR => 'Domizio Demichelis - perl.4pro.net'
+@@ -16,7 +16,7 @@
+, PREREQ_PM  => { 'CGI::Builder'  => 1.2
+, 'Class::props'  => 1.62
+, 'Object::props' => 1.62
+-   , 'mod_perl'  => 0
++   , 'mod_perl2' => 0
+}
+)
+   
+diff --git a/t/01_class.t b/t/01_class.t
+index fce93e9..056453d 100644
+--- a/t/01_class.t
 b/t/01_class.t
+@@ -3,7 +3,7 @@
+ ; use strict
+ ; use Test::More tests => 1
+ 
+-; use Apache::CGI::Builder
++; use Apache2::CGI::Builder
+ 
+ ; ok(1)
+ 
+-- 
+2.14.2
+

diff --git a/dev-perl/Apache-CGI-Builder/metadata.xml 
b/dev-perl/Apache-CGI-Builder/metadata.xml
index 1a61f03e7da..8585b0f8201 100644
--- a/dev-perl/Apache-CGI-Builder/metadata.xml
+++ b/dev-perl/Apache-CGI-Builder/metadata.xml
@@ -8,6 +8,5 @@
   
 Apache-CGI-Builder
 Apache2::CGI::Builder
-Apache::CGI::Builder
   
 



[gentoo-commits] data/glep:glep66 commit in: /

2017-10-12 Thread Michał Górny
commit: aae75d3818cf41c5bc42917b978f6348d813cc41
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 13 05:08:30 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 13 05:08:30 2017 +
URL:https://gitweb.gentoo.org/data/glep.git/commit/?id=aae75d38

glep-0066: Update GLEP 63 URL to no-www

 glep-0066.rst | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/glep-0066.rst b/glep-0066.rst
index 0a8e4b5..74c09e2 100644
--- a/glep-0066.rst
+++ b/glep-0066.rst
@@ -444,9 +444,8 @@ References
 .. [#GENTOO_GITHUB] Gentoo GitHub (on Gentoo Wiki)
https://wiki.gentoo.org/wiki/Gentoo_GitHub
 
-.. TODO: verify this
 .. [#GLEP63] GLEP 63: Gentoo GPG key policies
-   https://www.gentoo.org/glep/glep-0063.html
+   https://gentoo.org/glep/glep-0063.html
 
 .. [#REPOMAN_PKG_NAME_COMMIT]

https://gitweb.gentoo.org/proj/portage.git/commit/?id=46dafadff58da0220511f20480b73ad09f913430



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Ace/

2017-10-12 Thread Kent Fredric
commit: 352b2996d7149d0dec9b16fb45002f6bbc01fef6
Author: Kent Fredric  gentoo  org>
AuthorDate: Fri Oct 13 04:30:57 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Fri Oct 13 04:57:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=352b2996

dev-perl/Ace: Add tests & XS & RPC

- EAPI6ify
- Add basic compile tests
- Add missing dependencies discovered by tests
- Build XS support
- Build RPC support
- Fence network tests better

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/Ace/Ace-1.920.0-r2.ebuild | 96 ++
 1 file changed, 96 insertions(+)

diff --git a/dev-perl/Ace/Ace-1.920.0-r2.ebuild 
b/dev-perl/Ace/Ace-1.920.0-r2.ebuild
new file mode 100644
index 000..d08d72d1c77
--- /dev/null
+++ b/dev-perl/Ace/Ace-1.920.0-r2.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_NAME=AcePerl
+DIST_AUTHOR=LDS
+DIST_VERSION=1.92
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="Object-Oriented Access to ACEDB Databases"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="virtual/perl-Digest-MD5
+   dev-perl/Cache-Cache
+   dev-perl/GD
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   sed -i 's/", "1")/", "3")/' "${S}/Makefile.PL" || die "Can't patch 
config"
+   perl-module_src_prepare
+}
+src_test() {
+   local MODULES=(
+   "Ace ${DIST_VERSION}"
+   "Ace::Freesubs 1.00"
+   "Ace::Graphics::Fk" # NO VERSION
+   "Ace::Graphics::Glyph"
+   "Ace::Graphics::Glyph::anchored_arrow"
+   "Ace::Graphics::Glyph::arrow"
+   "Ace::Graphics::Glyph::box"
+   "Ace::Graphics::Glyph::crossbox"
+   "Ace::Graphics::Glyph::dot"
+   "Ace::Graphics::Glyph::ex"
+   "Ace::Graphics::Glyph::graded_segments"
+   "Ace::Graphics::Glyph::group"
+   "Ace::Graphics::Glyph::line"
+   "Ace::Graphics::Glyph::primers"
+   "Ace::Graphics::Glyph::segments"
+   "Ace::Graphics::Glyph::span"
+   "Ace::Graphics::Glyph::toomany"
+   "Ace::Graphics::Glyph::transcript"
+   "Ace::Graphics::Glyph::triangle"
+   "Ace::Graphics::GlyphFactory"
+   "Ace::Graphics::Panel"
+   "Ace::Graphics::Track"
+   "Ace::Iterator 1.51"
+   "Ace::Local 1.05"
+   "Ace::Model 1.51"
+   "Ace::Object 1.66"
+   "Ace::Object::Wormbase"
+   "Ace::RPC 1.00"
+   "Ace::Sequence 1.51"
+   "Ace::Sequence::Feature"
+   "Ace::Sequence::FeatureList"
+   "Ace::Sequence::GappedAlignment 1.20"
+   "Ace::Sequence::Gene"
+   "Ace::Sequence::Homol"
+   "Ace::Sequence::Multi"
+   "Ace::Sequence::Transcript"
+   "Ace::SocketServer 1.01"
+   "GFF::Filehandle"
+# Need Ace::Browser
+#  "Ace::Browser::AceSubs ${DIST_VERSION}"
+#  "Ace::Browser::GeneSubs ${DIST_VERSION}"
+#  "Ace::Browser::SearchSubs ${DIST_VERSION}"
+#  "Ace::Browser::SiteDefs ${DIST_VERSION}"
+#  "Ace::Browser::TreeSubs ${DIST_VERSION}"
+   )
+   local failed=()
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1
+   eend $? || failed+=( "$dep" )
+   done
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+   if ! has "network" "${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}"; 
then
+   ewarn "This package needs network access to run its full test 
suite"
+   ewarn "For details, see:"
+   ewarn 
"https://wiki.gentoo.org/wiki/Project:Perl/maint-nodes/dev-perl/Ace;
+   else
+   perl-module_src_test
+   fi
+}



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

2017-10-12 Thread Sergei Trofimovich
commit: 9189989731ed2de603639f2501fa9b736d0ebc50
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:02:18 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91899897

app-text/dos2unix: stable 7.3.5 for ia64, bug #633996

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

 app-text/dos2unix/dos2unix-7.3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/dos2unix/dos2unix-7.3.5.ebuild 
b/app-text/dos2unix/dos2unix-7.3.5.ebuild
index e7ed026a27f..ad3f17b2e70 100644
--- a/app-text/dos2unix/dos2unix-7.3.5.ebuild
+++ b/app-text/dos2unix/dos2unix-7.3.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
 IUSE="debug nls test"
 
 RDEPEND="



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

2017-10-12 Thread Sergei Trofimovich
commit: 1472209ccad913b4f4315f4ece04a0fa47702487
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:02:00 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1472209c

sys-apps/pcsc-lite: stable 1.8.22 for ia64, bug #633674

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

 sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild 
b/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild
index e254b99bf10..881dffc8912 100644
--- a/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild
+++ b/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 # upstream.
 LICENSE="BSD ISC MIT GPL-3+ GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ppc ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 # This is called libusb so that it doesn't fool people in thinking that
 # it is _required_ for USB support. Otherwise they'll disable udev and



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

2017-10-12 Thread Sergei Trofimovich
commit: ccc09c6b574e1c49407e792fbc8aede1b7f295ae
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:02:22 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccc09c6b

dev-util/ninja: stable 1.8.2 for ia64, bug #634052

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

 dev-util/ninja/ninja-1.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/ninja/ninja-1.8.2.ebuild 
b/dev-util/ninja/ninja-1.8.2.ebuild
index 4dc6e68bbf6..20034f8194a 100644
--- a/dev-util/ninja/ninja-1.8.2.ebuild
+++ b/dev-util/ninja/ninja-1.8.2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/ninja-build/ninja.git;
 else
SRC_URI="https://github.com/ninja-build/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos"
 fi
 
 DESCRIPTION="A small build system similar to make"



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Module-CoreList/

2017-10-12 Thread Sergei Trofimovich
commit: d3f0dc44360511c2c9580a477d56c7d2b025065c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Oct 13 00:11:44 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f0dc44

virtual/perl-Module-CoreList: stable 5.201.709.220-r1 for ppc, bug #630610

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

 .../perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild 
b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild
index 5fd6072bcf0..6eb714d876d 100644
--- a/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild
+++ b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Check 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/virtual/perl-Module-CoreList
 # When bumping this package.



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

2017-10-12 Thread Sergei Trofimovich
commit: 098e63214533c7dfda773770fae580517ec9dded
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:25:51 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=098e6321

app-arch/xdms: stable 1.3.2-r1 for ppc, bug #627294

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

 app-arch/xdms/xdms-1.3.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/xdms/xdms-1.3.2-r1.ebuild 
b/app-arch/xdms/xdms-1.3.2-r1.ebuild
index 3561bdcbd69..757acbdaf11 100644
--- a/app-arch/xdms/xdms-1.3.2-r1.ebuild
+++ b/app-arch/xdms/xdms-1.3.2-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
@@ -11,7 +11,7 @@ SRC_URI="http://zakalwe.fi/~shd/foss/xdms/${P}.tar.bz2;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+KEYWORDS="~amd64 ~hppa ppc ~x86"
 IUSE=""
 
 pkg_setup() {



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

2017-10-12 Thread Sergei Trofimovich
commit: 1cb06e582d609b40285fa556a2af543e694db355
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:25:56 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cb06e58

app-admin/petrovich: stable 1.0.0-r1 for ppc, bug #627228

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/app-admin/petrovich/petrovich-1.0.0-r1.ebuild 
b/app-admin/petrovich/petrovich-1.0.0-r1.ebuild
index f5bdd23dcd8..a8f7ae4b557 100644
--- a/app-admin/petrovich/petrovich-1.0.0-r1.ebuild
+++ b/app-admin/petrovich/petrovich-1.0.0-r1.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://sourceforge.net/projects/petrovich;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc ~sparc"
+KEYWORDS="~amd64 ppc ~sparc ~x86"
 
 RDEPEND="virtual/perl-Digest-MD5"
 



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

2017-10-12 Thread Sergei Trofimovich
commit: 2169e7d7f1d06b686c270dec09fb0f34ac6b0d1d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:21:16 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2169e7d7

media-libs/openjpeg: stable 2.3.0 for ia64, bug #629668

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

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

diff --git a/media-libs/openjpeg/openjpeg-2.3.0.ebuild 
b/media-libs/openjpeg/openjpeg-2.3.0.ebuild
index c963d904b67..e06586cd5ba 100644
--- a/media-libs/openjpeg/openjpeg-2.3.0.ebuild
+++ b/media-libs/openjpeg/openjpeg-2.3.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/uclouvain/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="2/7" # based on SONAME
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs test"
 
 RDEPEND="media-libs/lcms:2=



[gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/

2017-10-12 Thread Sergei Trofimovich
commit: ea9ecef8052b4a1a82ff8a1fd2c333e847547329
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:09:43 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea9ecef8

app-portage/repoman: stable 2.3.3 for ppc, bug #627234

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

 app-portage/repoman/repoman-2.3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/repoman/repoman-2.3.3.ebuild 
b/app-portage/repoman/repoman-2.3.3.ebuild
index fec5b7d6832..d40046e15fe 100644
--- a/app-portage/repoman/repoman-2.3.3.ebuild
+++ b/app-portage/repoman/repoman-2.3.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} ==  ]]; then
S="${WORKDIR}/${P}/repoman"
 else
SRC_URI="https://dev.gentoo.org/~dolsen/releases/${PN}/${P}.tar.bz2;
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 
~s390 ~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 
~s390 ~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds"



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

2017-10-12 Thread Sergei Trofimovich
commit: 2a335c2201636f18bfd28eff03db57864ced7328
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:02:14 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a335c22

sys-apps/openrc: stable 0.32.1 for ia64, bug #633976

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

 sys-apps/openrc/openrc-0.32.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/openrc/openrc-0.32.1.ebuild 
b/sys-apps/openrc/openrc-0.32.1.ebuild
index 4791b531c42..7094da44baf 100644
--- a/sys-apps/openrc/openrc-0.32.1.ebuild
+++ b/sys-apps/openrc/openrc-0.32.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



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

2017-10-12 Thread Sergei Trofimovich
commit: 2bbe7502ab3fdfed318d2f993329882aea1c8992
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:21:09 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bbe7502

media-video/mplayer: stable 1.3.0-r3 for ia64, bug #581952

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

 media-video/mplayer/mplayer-1.3.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/mplayer/mplayer-1.3.0-r3.ebuild 
b/media-video/mplayer/mplayer-1.3.0-r3.ebuild
index 56c6166d7be..63793c18fc5 100644
--- a/media-video/mplayer/mplayer-1.3.0-r3.ebuild
+++ b/media-video/mplayer/mplayer-1.3.0-r3.ebuild
@@ -156,9 +156,9 @@ RDEPEND+="
 SLOT="0"
 LICENSE="GPL-2"
 if [[ ${PV} != ** ]]; then
-   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~ppc ~ppc64 x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 else
-   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 x86"
+   KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~ppc ~ppc64 x86"
 fi
 
 # faac codecs are nonfree



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

2017-10-12 Thread Sergei Trofimovich
commit: f7a8279f48614045ecd25152b402551b784db5c5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:01:52 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7a8279f

app-portage/portage-utils: stable 0.64 for ia64, bug #622578

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

 app-portage/portage-utils/portage-utils-0.64.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/portage-utils/portage-utils-0.64.ebuild 
b/app-portage/portage-utils/portage-utils-0.64.ebuild
index a191928c3a9..53c240d6119 100644
--- a/app-portage/portage-utils/portage-utils-0.64.ebuild
+++ b/app-portage/portage-utils/portage-utils-0.64.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 RDEPEND="dev-libs/iniparser:0"



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Time-HiRes/

2017-10-12 Thread Sergei Trofimovich
commit: c2f6aa1371c7a50616dabdc606481cf3a44989c4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Oct 13 00:11:49 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2f6aa13

virtual/perl-Time-HiRes: stable 1.974.100-r1 for ppc, bug #630610

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

 virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild 
b/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild
index 7a881e8f3f4..bcacdbee558 100644
--- a/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild
+++ b/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND="
|| ( =dev-lang/perl-5.26* =dev-lang/perl-5.24.3* 
~perl-core/${PN#perl-}-${PV} )



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

2017-10-12 Thread Sergei Trofimovich
commit: ec0bd33a7b8b4cc777e6d4148d7ca4d62638c9ea
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Oct 13 00:11:08 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec0bd33a

dev-lang/perl: stable 5.24.3 for ppc, bug #630610

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-lang/perl/perl-5.24.3.ebuild b/dev-lang/perl/perl-5.24.3.ebuild
index be463144ec9..8b4a0a7b7c9 100644
--- a/dev-lang/perl/perl-5.24.3.ebuild
+++ b/dev-lang/perl/perl-5.24.3.ebuild
@@ -30,7 +30,7 @@ HOMEPAGE="http://www.perl.org/;
 
 LICENSE="|| ( Artistic GPL-1+ )"
 SLOT="0/${SHORT_PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="berkdb debug doc gdbm ithreads"
 
 RDEPEND="



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

2017-10-12 Thread Sergei Trofimovich
commit: a7eeb0e2ffc5e6403e70a13d787728a759c863f3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:02:04 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7eeb0e2

net-dns/openresolv: stable 3.9.0 for ia64, bug #633686

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

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

diff --git a/net-dns/openresolv/openresolv-3.9.0.ebuild 
b/net-dns/openresolv/openresolv-3.9.0.ebuild
index bb62c71603f..a214ce04e7e 100644
--- a/net-dns/openresolv/openresolv-3.9.0.ebuild
+++ b/net-dns/openresolv/openresolv-3.9.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://roy.marples.name/downloads/${PN}/${P}.tar.xz;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux"
 
 DEPEND="!net-dns/resolvconf-gentoo



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

2017-10-12 Thread Sergei Trofimovich
commit: 4808f2da8d8cca29e35a9c8b6903649a69901745
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 21:02:09 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 13 00:13:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4808f2da

sys-apps/sandbox: stable 2.10-r4 for ia64, bug #633960

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

 sys-apps/sandbox/sandbox-2.10-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/sandbox/sandbox-2.10-r4.ebuild 
b/sys-apps/sandbox/sandbox-2.10-r4.ebuild
index 0f792910204..999ac487c75 100644
--- a/sys-apps/sandbox/sandbox-2.10-r4.ebuild
+++ b/sys-apps/sandbox/sandbox-2.10-r4.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
 IUSE=""
 
 DEPEND="app-arch/xz-utils



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libdrm/

2017-10-12 Thread Matt Turner
commit: 61414460d48f01d0273959f98191b42b2d0f80de
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Oct 13 00:05:30 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Oct 13 00:05:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61414460

x11-libs/libdrm: Version bump to 2.4.84

 x11-libs/libdrm/Manifest |  1 +
 x11-libs/libdrm/libdrm-2.4.84.ebuild | 63 
 2 files changed, 64 insertions(+)

diff --git a/x11-libs/libdrm/Manifest b/x11-libs/libdrm/Manifest
index fb8d938ee99..bc4f5472b24 100644
--- a/x11-libs/libdrm/Manifest
+++ b/x11-libs/libdrm/Manifest
@@ -4,3 +4,4 @@ DIST libdrm-2.4.80.tar.bz2 771243 SHA256 
a82a519601e9cdfad795e760807eb07ac8913b2
 DIST libdrm-2.4.81.tar.bz2 786276 SHA256 
8cc05c195ac8708199979a94c4e4d1a928c14ec338ecbcb38ead09f54dae11ae SHA512 
5f7a1524acad59890d3f890bed90a660a424e18a88d587ca356223bde4a7446d1c540f97ec11cb10d2e7ed1b4ae86127957634354a1be6d04199295ab24782e5
 WHIRLPOOL 
2694fe988c7ebf34b30076a10dcb2d5ba8a24b1ad348da69874814d64e78ad48f959275faa02fabd798ae214f386ef8437bdf48d485f77519b8759d695df
 DIST libdrm-2.4.82.tar.bz2 754053 SHA256 
43fa2dbd422d6d41ac141272cc9855360ce4d08c7cf7f2c7bb55dfe449c4ce1c SHA512 
e69fd8c2b392daabbb3a548179e3a21a555d5174c11d76a288eb2a08850849aa867cb67798ec00e026e998a3b128c22698f05a7b44eb24cddc5c8a3a02d0
 WHIRLPOOL 
bf600559faf5ffe45b6f0192a561875e5284ea76d7611724c2e7f21e6f8aaa6d2e368546102170cffb713bb37fc4c5f98a08b6828e4f6f48f774d7b9b9d96906
 DIST libdrm-2.4.83.tar.bz2 756342 SHA256 
03a52669da60ead62548a35bc430aafb6c2d8dd21ec9dba3a90f96eff5fe36d6 SHA512 
8f894ff61939bca03ac857506a84bbbcbe2367e60c91a0f2388bfce5ae81e12ba2f96fe1c962416cf9e2d25ef04b98b5437c7015497789561311a72607b3bfcb
 WHIRLPOOL 
8e585516cc8ce88085489b46916f3108b3481bf71877238290a0c79315020c835fb1af90907c4357656e16fcf26ee48b0febce37a189a522978ed95a05525c5e
+DIST libdrm-2.4.84.tar.bz2 794348 SHA256 
7ae9c24d91139ac9a2cdee06fe46dbe1c401a1eda1c0bd2a6d1ecf72f479e0aa SHA512 
860ebc5fa934edee97e9e7e13aaa2f2e70a68b946f4f3893cd7f93b8296c10b3cd4ce4c23b1676eefe375286e6e2292b96e917d7976f65c61da3fa661e5e641a
 WHIRLPOOL 
8984374145694034626d6ccd15d72123989f5e8a127922dd0be5ae26866f8ef9179617689bc75d9a9170bbc55419c7cb2762363e700e91291a78dfb7df740dc9

diff --git a/x11-libs/libdrm/libdrm-2.4.84.ebuild 
b/x11-libs/libdrm/libdrm-2.4.84.ebuild
new file mode 100644
index 000..b8477e723d2
--- /dev/null
+++ b/x11-libs/libdrm/libdrm-2.4.84.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+XORG_MULTILIB=yes
+inherit xorg-2
+
+DESCRIPTION="X.Org libdrm library"
+HOMEPAGE="https://dri.freedesktop.org/;
+if [[ ${PV} = * ]]; then
+   EGIT_REPO_URI="https://anongit.freedesktop.org/git/mesa/drm.git;
+else
+   SRC_URI="https://dri.freedesktop.org/libdrm/${P}.tar.bz2;
+fi
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vc4 
vivante vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS} libkms valgrind"
+RESTRICT="test" # see bug #236845
+
+RDEPEND=">=dev-libs/libpthread-stubs-0.3-r1:=[${MULTILIB_USEDEP}]
+   video_cards_intel? ( 
>=x11-libs/libpciaccess-0.13.1-r1:=[${MULTILIB_USEDEP}] )
+   abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )"
+DEPEND="${RDEPEND}
+   valgrind? ( dev-util/valgrind )"
+
+src_prepare() {
+   if [[ ${PV} = * ]]; then
+   # tests are restricted, no point in building them
+   sed -ie 's/tests //' "${S}"/Makefile.am
+   fi
+   xorg-2_src_prepare
+   epatch_user
+}
+
+src_configure() {
+   XORG_CONFIGURE_OPTIONS=(
+   # Udev is only used by tests now.
+   --disable-udev
+   --disable-cairo-tests
+   $(use_enable video_cards_amdgpu amdgpu)
+   $(use_enable video_cards_exynos exynos-experimental-api)
+   $(use_enable video_cards_freedreno freedreno)
+   $(use_enable video_cards_intel intel)
+   $(use_enable video_cards_nouveau nouveau)
+   $(use_enable video_cards_omap omap-experimental-api)
+   $(use_enable video_cards_radeon radeon)
+   $(use_enable video_cards_tegra tegra-experimental-api)
+   $(use_enable video_cards_vc4 vc4)
+   $(use_enable video_cards_vivante etnaviv-experimental-api)
+   $(use_enable video_cards_vmware vmwgfx)
+   $(use_enable libkms)
+   # valgrind installs its .pc file to the pkgconfig for the 
primary arch
+   --enable-valgrind=$(usex valgrind auto no)
+   )
+
+   xorg-2_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libdrm/

2017-10-12 Thread Matt Turner
commit: 4502fce581cc4cd9be52f74ac5057741051e0991
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Oct 13 00:08:07 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Oct 13 00:08:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4502fce5

x11-libs/libdrm: Drop old version 2.4.83

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

 x11-libs/libdrm/Manifest |  1 -
 x11-libs/libdrm/libdrm-2.4.83.ebuild | 63 
 2 files changed, 64 deletions(-)

diff --git a/x11-libs/libdrm/Manifest b/x11-libs/libdrm/Manifest
index bc4f5472b24..0e4f994c344 100644
--- a/x11-libs/libdrm/Manifest
+++ b/x11-libs/libdrm/Manifest
@@ -3,5 +3,4 @@ DIST libdrm-2.4.79.tar.bz2 783711 SHA256 
c6aaf319293bce38023e9a637471b0f45c93c80
 DIST libdrm-2.4.80.tar.bz2 771243 SHA256 
a82a519601e9cdfad795e760807eb07ac8913b225e25fc8fe9bc03e3be6549f1 SHA512 
478f64bcc6f4815368ae86d023f11ba6b37595bb9d8baa588b466c6c0e2aae48a50a489137750ed21fbabef5afabf183c78c152eb770bfe316fa7401b191a30b
 WHIRLPOOL 
210f62c21aa27fb93eba3a8303daeab80b9da4b20ec6a70649fbad88f4277559a58018fbb12ff4b92bc6b8dc16b7ccbec1724bfcafe353382673352e9ac6d16d
 DIST libdrm-2.4.81.tar.bz2 786276 SHA256 
8cc05c195ac8708199979a94c4e4d1a928c14ec338ecbcb38ead09f54dae11ae SHA512 
5f7a1524acad59890d3f890bed90a660a424e18a88d587ca356223bde4a7446d1c540f97ec11cb10d2e7ed1b4ae86127957634354a1be6d04199295ab24782e5
 WHIRLPOOL 
2694fe988c7ebf34b30076a10dcb2d5ba8a24b1ad348da69874814d64e78ad48f959275faa02fabd798ae214f386ef8437bdf48d485f77519b8759d695df
 DIST libdrm-2.4.82.tar.bz2 754053 SHA256 
43fa2dbd422d6d41ac141272cc9855360ce4d08c7cf7f2c7bb55dfe449c4ce1c SHA512 
e69fd8c2b392daabbb3a548179e3a21a555d5174c11d76a288eb2a08850849aa867cb67798ec00e026e998a3b128c22698f05a7b44eb24cddc5c8a3a02d0
 WHIRLPOOL 
bf600559faf5ffe45b6f0192a561875e5284ea76d7611724c2e7f21e6f8aaa6d2e368546102170cffb713bb37fc4c5f98a08b6828e4f6f48f774d7b9b9d96906
-DIST libdrm-2.4.83.tar.bz2 756342 SHA256 
03a52669da60ead62548a35bc430aafb6c2d8dd21ec9dba3a90f96eff5fe36d6 SHA512 
8f894ff61939bca03ac857506a84bbbcbe2367e60c91a0f2388bfce5ae81e12ba2f96fe1c962416cf9e2d25ef04b98b5437c7015497789561311a72607b3bfcb
 WHIRLPOOL 
8e585516cc8ce88085489b46916f3108b3481bf71877238290a0c79315020c835fb1af90907c4357656e16fcf26ee48b0febce37a189a522978ed95a05525c5e
 DIST libdrm-2.4.84.tar.bz2 794348 SHA256 
7ae9c24d91139ac9a2cdee06fe46dbe1c401a1eda1c0bd2a6d1ecf72f479e0aa SHA512 
860ebc5fa934edee97e9e7e13aaa2f2e70a68b946f4f3893cd7f93b8296c10b3cd4ce4c23b1676eefe375286e6e2292b96e917d7976f65c61da3fa661e5e641a
 WHIRLPOOL 
8984374145694034626d6ccd15d72123989f5e8a127922dd0be5ae26866f8ef9179617689bc75d9a9170bbc55419c7cb2762363e700e91291a78dfb7df740dc9

diff --git a/x11-libs/libdrm/libdrm-2.4.83.ebuild 
b/x11-libs/libdrm/libdrm-2.4.83.ebuild
deleted file mode 100644
index b8477e723d2..000
--- a/x11-libs/libdrm/libdrm-2.4.83.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-XORG_MULTILIB=yes
-inherit xorg-2
-
-DESCRIPTION="X.Org libdrm library"
-HOMEPAGE="https://dri.freedesktop.org/;
-if [[ ${PV} = * ]]; then
-   EGIT_REPO_URI="https://anongit.freedesktop.org/git/mesa/drm.git;
-else
-   SRC_URI="https://dri.freedesktop.org/libdrm/${P}.tar.bz2;
-fi
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
-VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vc4 
vivante vmware"
-for card in ${VIDEO_CARDS}; do
-   IUSE_VIDEO_CARDS+=" video_cards_${card}"
-done
-
-IUSE="${IUSE_VIDEO_CARDS} libkms valgrind"
-RESTRICT="test" # see bug #236845
-
-RDEPEND=">=dev-libs/libpthread-stubs-0.3-r1:=[${MULTILIB_USEDEP}]
-   video_cards_intel? ( 
>=x11-libs/libpciaccess-0.13.1-r1:=[${MULTILIB_USEDEP}] )
-   abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )"
-DEPEND="${RDEPEND}
-   valgrind? ( dev-util/valgrind )"
-
-src_prepare() {
-   if [[ ${PV} = * ]]; then
-   # tests are restricted, no point in building them
-   sed -ie 's/tests //' "${S}"/Makefile.am
-   fi
-   xorg-2_src_prepare
-   epatch_user
-}
-
-src_configure() {
-   XORG_CONFIGURE_OPTIONS=(
-   # Udev is only used by tests now.
-   --disable-udev
-   --disable-cairo-tests
-   $(use_enable video_cards_amdgpu amdgpu)
-   $(use_enable video_cards_exynos exynos-experimental-api)
-   $(use_enable video_cards_freedreno freedreno)
-   $(use_enable video_cards_intel intel)
-   $(use_enable video_cards_nouveau nouveau)
-   $(use_enable video_cards_omap omap-experimental-api)
-   $(use_enable video_cards_radeon radeon)
-   $(use_enable video_cards_tegra tegra-experimental-api)
-   

[gentoo-commits] proj/openrc:master commit in: man/

2017-10-12 Thread William Hubbs
commit: 2b6eeea01d1c64d58929788f4bfa0758393885bf
Author: William Hubbs  gmail  com>
AuthorDate: Thu Oct 12 23:47:36 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Oct 12 23:47:36 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=2b6eeea0

man: remove service(8) man page

 man/Makefile  | 2 +-
 man/service.8 | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/man/Makefile b/man/Makefile
index a72b7e72..006c8d16 100644
--- a/man/Makefile
+++ b/man/Makefile
@@ -6,7 +6,7 @@ MAN3=   einfo.3 \
rc_config.3 rc_deptree.3 rc_find_pids.3 rc_plugin_hook.3 \
rc_runlevel.3 rc_service.3 rc_stringlist.3
 MAN8=  rc-service.8 rc-status.8 rc-update.8 openrc.8 openrc-run.8 \
-   service.8 start-stop-daemon.8 supervise-daemon.8
+   start-stop-daemon.8 supervise-daemon.8
 
 ifeq (${OS},Linux)
 MAN8 += rc-sstat.8 openrc-init.8 openrc-shutdown.8

diff --git a/man/service.8 b/man/service.8
deleted file mode 100644
index cd9dfa88..
--- a/man/service.8
+++ /dev/null
@@ -1 +0,0 @@
-.so rc-service.8



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

2017-10-12 Thread William Hubbs
commit: 91109e31d81ecd48f5690ad6f63103fca545dec7
Author: William Hubbs  gmail  com>
AuthorDate: Thu Oct 12 23:54:17 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Oct 12 23:54:17 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=91109e31

update news

 NEWS.md | 9 +
 1 file changed, 9 insertions(+)

diff --git a/NEWS.md b/NEWS.md
index 5ba32144..1a98da2a 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -3,6 +3,15 @@
 This file will contain a list of notable changes for each release. Note
 the information in this file is in reverse order.
 
+## OpenRC 0.33
+
+This version removes the "service" binary which was just a copy of
+"rc-service" provided for compatibility.
+
+If you still need the "service" binary, as opposed to "rc-service", it is
+recommended that you use something like Debian's init-system-helpers.
+Otherwise, just use "rc-service" in place of "service".
+
 ## OpenRC 0.31
 
 This version adds support for Control Groups version 2, which is



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

2017-10-12 Thread Mike Pagano
commit: 9473d6ac8b656ad2fc8971cff63daa37544d56fe
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 12 23:12:02 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 12 23:12:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9473d6ac

sys-kernel/vanilla-sources: Remove broken 4.9.55. Bump to 4.9.56

Package-Manager: Portage-2.3.11, Repoman-2.3.3

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

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index bbea8ab6199..e101535ba23 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -13,4 +13,4 @@ DIST patch-4.1.44.xz 1171508 SHA256 
e4af9c7bbcc7b8315ef59f8d5c950d330d387118ccee
 DIST patch-4.12.14.xz 237356 SHA256 
999f3e0d97e1b9e7a09c8c0889f020ac9e342ec2391d0458521d4b8bff1cf945 SHA512 
8bef19b2a87147b4ac7c5852d6cac0281c7df7deb84460c6462c981b9213d288061c19535bd9a4da03db73f8a9fd2fb76bf9c6d42b0b6ad1f30c97d5ee0964d1
 WHIRLPOOL 
cd7c1173430eea9a33386fdfca10e1112ee90a5420180f30c0f375d7fb3ddfa657eae93cbae1a1d2b1a1a5d442eaf402e6565028ffeff79fc78a08b6334b1873
 DIST patch-4.13.6.xz 165096 SHA256 
12d897b7f547c7d03a81be690b3dc0e0e5b9becfbd63e3dbf9f7258db861ddfb SHA512 
40e111f3969b622f982bfb75f8c35aa59d9989a627a4511d8e0090b0c7bbcafcc90567434f5166ef2d17831f0beddb52762107e523414523e1877f67f66ca3f7
 WHIRLPOOL 
84ffb5f228a46d5551de04e8dcb8fda2ed72b40f0306198c909036610f58f6d5e6299d71bcd08e235f3c34fbfffb5d6dae8052dbef220ae94ef844a6890b
 DIST patch-4.4.92.xz 1376520 SHA256 
198196ec8cfabdab83687535b7655796a78d05cf7dddf08f976226f2e191c640 SHA512 
5f65d59d386dd7810f7f0309b38e5dbb9c8198c6f145a539ece4b48321a9f26cb7c7418dec566a1872cf8ffcf0ee1b233c3c344d0f7e4afdd8a05be6a99decff
 WHIRLPOOL 
30ad8543adfe312bb66a1feef49a27f3810230cde88c5977c8818ef0280bdf17bb48ec667590d8491d2ad58bc5693e533675ec5989cbbb77649f48eace4b8a3e
-DIST patch-4.9.55.xz 1060060 SHA256 
358191624dd7004bfc7a8658b6354d9da4d49eb8ef84af41d2dc63dd1a8c4d1a SHA512 
9b3080ceebb2301c4d251c80e1d6687fbbd22feba301bbaa32b4f9e50e9c5e00ee040ce1627be55b6ece6c160a553f71e86735521ebb1e6d850298a8e34a08e5
 WHIRLPOOL 
a627157eee570fc4af9c71c9099e887e8f4f8afb5e404cd8069c1e93ccdba4b451da9165fbc7ff6e768f11cf2124768cb9e97b1f3b9a1bc3205458eef9eb70f4
+DIST patch-4.9.56.xz 1059840 SHA256 
a63aacf1f75a2f02a1313658b7f86be922b7a0e4bab41dc377449dfc0b7c529f SHA512 
9d926ac7e06ed3d4ae7e2747b06045e6e2dd61c279895067141e4c5abb252488252253398ac2bb87f297671c8d47402f2476f065b0cabf73d9c1c7dae9da8243
 WHIRLPOOL 
063d112999c912d50b95af8f3a068d4d2c0b9e319d690a2f0927dc21ca4926518f6fa6130d8f04fdef9b8ac702db6048b241e4dce62cc99e7f7fd6457300ee2f

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



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

2017-10-12 Thread Mike Pagano
commit: 72843d3043ac122691b5aaece99f322b4a0db106
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 12 22:43:44 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 12 22:43:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72843d30

sys-kernel/gentoo-sources: Linux patch 4.9.56

Package-Manager: Portage-2.3.11, Repoman-2.3.3

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 4f0642f8711..abe3244465b 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -64,6 +64,9 @@ DIST genpatches-4.9-54.extras.tar.xz 17356 SHA256 
70314b113191df3bcf461537c5c578
 DIST genpatches-4.9-55.base.tar.xz 1069704 SHA256 
803d5d028875b905bb4cbff7b2258786e7199095e68e3b2cdf8134dd22f11c20 SHA512 
a1156e41e1499218e3fb1c6ef0bb66fb6bcb93b4076c3c780f60ac23b340d13e3e9f4a38e62bf066c765e9a65d2cdc9266d9358fbea2c1bed3a491d8b7d40875
 WHIRLPOOL 
8af62aa544f5e0f2c707b7537c80f09ffdbfb454c634f551242917fedae070eaeb8c09a98638f9eaa6adaafd1cbc45cacfa50d4687b9e036234d6749938d7451
 DIST genpatches-4.9-55.experimental.tar.xz 106376 SHA256 
2d973cb9728d880cf947fcb898ae4f25fcb31a7b26bead9eb424fcf4dbc3be16 SHA512 
c4c552f2b1aa91a3fc3c7834c0c6dec898f4c74a557a7e767bbe85b6e7463e02ac23fc71c3a32fa256603967622e0e54deec8046f0502f5fd00c64d649741600
 WHIRLPOOL 
c070a07d4e8c832fa84880b9395d7499faecbedbc3e2d290a76339205234f396570b190a23183e6b4a1c2044119b8c631d161ce798e9aa03a1995d668e18080e
 DIST genpatches-4.9-55.extras.tar.xz 17348 SHA256 
70e1a8008adeb7bf207fd7f3194b4fa7c3efd500af7aa6fbc33b288794788b05 SHA512 
995901d2d40c5b9e9b33372636b4c2134014fbe1f5705b800283463904f072ce215930d81cda5f968333abd2d8558ac59a0d6cd419cd701e41b88901dea19d40
 WHIRLPOOL 
6b73420d4e249dbd3c8fc7e9670f0ca6b60554466b2d79410956df12af03763a8352701d9df4bc0759e08a6652813e40cbe1b6c9924cac111a81e33009bf27c8
+DIST genpatches-4.9-58.base.tar.xz 1124000 SHA256 
b2b5f906221d998661065f259d7fdc543f42ff2743ed192f26ee470405889b29 SHA512 
c1dfb266b9a5dbdb92068061e49230a0a5b33df9e995212a62128cb54cefd1743f084ebffa3cb94bd1f335a90b97058464b3245ce2ad5580489e3d41b30b5e21
 WHIRLPOOL 
ce5770b15cb82165ef676625c88b81f80eb079ad713b2a01b155aba2ac2136460f36704b2a40b229fea3202fd8d947e5c134525e886cdf6c8640a820d7420433
+DIST genpatches-4.9-58.experimental.tar.xz 106368 SHA256 
52efe26871a034dd7559a27f336b5ac63788605dee9f01196b66d67e916502c1 SHA512 
59a09e4a7df29092f51df45569dd86f806e3ebb80f397a0e44b237e6f23588e8c3e2de1d1d266b10b9227320763129daf0a3326f18f16aa18e9bd2ebbafdbbb4
 WHIRLPOOL 
a792f351b9d4d2acb5be5c342e27ce65b2197fa19739462f1ed8d4b8b0d451bfc9b73ca512d3f9c460d0bc146292d882d5b0429241f398a13e8f84f6dc7d7125
+DIST genpatches-4.9-58.extras.tar.xz 17348 SHA256 
538ec1d455e26781b6b898b172c324500e1ab185cc25fc115b65f4496857a16b SHA512 
5caf5732004295541f61e4409f7ab02f324a73d9ae6fcfc0943b6e6c942f64374cd735ff1873d3e596c2628663d5ca9e7cfea2f6c55ba2d145a569b5bd07254e
 WHIRLPOOL 
abad1dfa83aaa41edfbadfeaa17715383391008ac1badf5f5a715714f4d7efed532c3ff5081d3407823a172a24606b9597302eafc286fd23dfa084be2b0b9154
 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.56.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.56.ebuild
new file mode 100644
index 000..9704375e8cb
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.56.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="58"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 

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

2017-10-12 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 12 22:33:41 2017 +

New tag: 4.9-58




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

2017-10-12 Thread Mike Pagano
commit: e0666fdabfb2135f09a7a9e08a8f11880cdac05a
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 12 22:32:18 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 12 22:32:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0666fda

sys-kernel/gentoo-sources: Memory error on boot. See 
https://lkml.org/lkml/2017/10/12/673

Package-Manager: Portage-2.3.11, Repoman-2.3.3

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index f049f71f386..4f0642f8711 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -64,9 +64,6 @@ DIST genpatches-4.9-54.extras.tar.xz 17356 SHA256 
70314b113191df3bcf461537c5c578
 DIST genpatches-4.9-55.base.tar.xz 1069704 SHA256 
803d5d028875b905bb4cbff7b2258786e7199095e68e3b2cdf8134dd22f11c20 SHA512 
a1156e41e1499218e3fb1c6ef0bb66fb6bcb93b4076c3c780f60ac23b340d13e3e9f4a38e62bf066c765e9a65d2cdc9266d9358fbea2c1bed3a491d8b7d40875
 WHIRLPOOL 
8af62aa544f5e0f2c707b7537c80f09ffdbfb454c634f551242917fedae070eaeb8c09a98638f9eaa6adaafd1cbc45cacfa50d4687b9e036234d6749938d7451
 DIST genpatches-4.9-55.experimental.tar.xz 106376 SHA256 
2d973cb9728d880cf947fcb898ae4f25fcb31a7b26bead9eb424fcf4dbc3be16 SHA512 
c4c552f2b1aa91a3fc3c7834c0c6dec898f4c74a557a7e767bbe85b6e7463e02ac23fc71c3a32fa256603967622e0e54deec8046f0502f5fd00c64d649741600
 WHIRLPOOL 
c070a07d4e8c832fa84880b9395d7499faecbedbc3e2d290a76339205234f396570b190a23183e6b4a1c2044119b8c631d161ce798e9aa03a1995d668e18080e
 DIST genpatches-4.9-55.extras.tar.xz 17348 SHA256 
70e1a8008adeb7bf207fd7f3194b4fa7c3efd500af7aa6fbc33b288794788b05 SHA512 
995901d2d40c5b9e9b33372636b4c2134014fbe1f5705b800283463904f072ce215930d81cda5f968333abd2d8558ac59a0d6cd419cd701e41b88901dea19d40
 WHIRLPOOL 
6b73420d4e249dbd3c8fc7e9670f0ca6b60554466b2d79410956df12af03763a8352701d9df4bc0759e08a6652813e40cbe1b6c9924cac111a81e33009bf27c8
-DIST genpatches-4.9-56.base.tar.xz 1098340 SHA256 
69e8104e4b2cf11d286d04b19a88d027ffbf94701cfc237f5737d0d907d2f4e4 SHA512 
d0e54f6b904bce6cee767297fd3282ad8fbd002e2820cd211d35d00e71c1a0339f0715d352c6dc7972097ebeaa282c074f9e85ef953ad16f9a4f35f5ddc26e58
 WHIRLPOOL 
c64fb7d0f811754166b5f8cdb08efd270ec6e1b57723fe8d1c206d5d184c8230b41d1f61c1e98300da0765327dc6feb2f3d8d5e36a8d26b9b1d5a2a3a6170c32
-DIST genpatches-4.9-56.experimental.tar.xz 106376 SHA256 
2d973cb9728d880cf947fcb898ae4f25fcb31a7b26bead9eb424fcf4dbc3be16 SHA512 
c4c552f2b1aa91a3fc3c7834c0c6dec898f4c74a557a7e767bbe85b6e7463e02ac23fc71c3a32fa256603967622e0e54deec8046f0502f5fd00c64d649741600
 WHIRLPOOL 
c070a07d4e8c832fa84880b9395d7499faecbedbc3e2d290a76339205234f396570b190a23183e6b4a1c2044119b8c631d161ce798e9aa03a1995d668e18080e
-DIST genpatches-4.9-56.extras.tar.xz 17348 SHA256 
70e1a8008adeb7bf207fd7f3194b4fa7c3efd500af7aa6fbc33b288794788b05 SHA512 
995901d2d40c5b9e9b33372636b4c2134014fbe1f5705b800283463904f072ce215930d81cda5f968333abd2d8558ac59a0d6cd419cd701e41b88901dea19d40
 WHIRLPOOL 
6b73420d4e249dbd3c8fc7e9670f0ca6b60554466b2d79410956df12af03763a8352701d9df4bc0759e08a6652813e40cbe1b6c9924cac111a81e33009bf27c8
 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.54.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.54.ebuild
deleted file mode 100644
index 9d82489d350..000
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.54.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="56"
-
-inherit kernel-2
-detect_version
-detect_arch
-
-KEYWORDS="~alpha 

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

2017-10-12 Thread Mike Pagano
commit: 4f4b7dae2c83e4de8afcc68720bf3fdb757a23f1
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 12 22:26:35 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 12 22:26:35 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=4f4b7dae

Linux patch 4.9.56

 _README |  4 +++
 1055_linux-4.9.56.patch | 72 +
 2 files changed, 76 insertions(+)

diff --git a/_README b/_README
index 1042b2f..b4a856b 100644
--- a/_README
+++ b/_README
@@ -263,6 +263,10 @@ Patch:  1054_linux-4.9.55.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.9.55
 
+Patch:  1055_linux-4.9.56.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.9.56
+
 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/1055_linux-4.9.56.patch b/1055_linux-4.9.56.patch
new file mode 100644
index 000..46e3ea3
--- /dev/null
+++ b/1055_linux-4.9.56.patch
@@ -0,0 +1,72 @@
+diff --git a/Makefile b/Makefile
+index 2a995675d6bf..feab5f5a507c 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 9
+-SUBLEVEL = 55
++SUBLEVEL = 56
+ EXTRAVERSION =
+ NAME = Roaring Lionus
+ 
+diff --git a/net/core/filter.c b/net/core/filter.c
+index bfeedbbde214..4eb4ce0aeef4 100644
+--- a/net/core/filter.c
 b/net/core/filter.c
+@@ -937,31 +937,20 @@ void sk_filter_uncharge(struct sock *sk, struct 
sk_filter *fp)
+ /* try to charge the socket memory if there is space available
+  * return true on success
+  */
+-static bool __sk_filter_charge(struct sock *sk, struct sk_filter *fp)
++bool sk_filter_charge(struct sock *sk, struct sk_filter *fp)
+ {
+   u32 filter_size = bpf_prog_size(fp->prog->len);
+ 
+   /* same check as in sock_kmalloc() */
+   if (filter_size <= sysctl_optmem_max &&
+   atomic_read(>sk_omem_alloc) + filter_size < sysctl_optmem_max) {
++  atomic_inc(>refcnt);
+   atomic_add(filter_size, >sk_omem_alloc);
+   return true;
+   }
+   return false;
+ }
+ 
+-bool sk_filter_charge(struct sock *sk, struct sk_filter *fp)
+-{
+-  if (!atomic_inc_not_zero(>refcnt))
+-  return false;
+-
+-  if (!__sk_filter_charge(sk, fp)) {
+-  sk_filter_release(fp);
+-  return false;
+-  }
+-  return true;
+-}
+-
+ static struct bpf_prog *bpf_migrate_filter(struct bpf_prog *fp)
+ {
+   struct sock_filter *old_prog;
+diff --git a/net/core/sock.c b/net/core/sock.c
+index 2a77cc50f021..231c38d91855 100644
+--- a/net/core/sock.c
 b/net/core/sock.c
+@@ -1528,16 +1528,13 @@ struct sock *sk_clone_lock(const struct sock *sk, 
const gfp_t priority)
+   sock_reset_flag(newsk, SOCK_DONE);
+   skb_queue_head_init(>sk_error_queue);
+ 
+-  rcu_read_lock();
+-  filter = rcu_dereference(sk->sk_filter);
++  filter = rcu_dereference_protected(newsk->sk_filter, 1);
+   if (filter != NULL)
+   /* though it's an empty new sock, the charging may fail
+* if sysctl_optmem_max was changed between creation of
+* original socket and cloning
+*/
+   is_charged = sk_filter_charge(newsk, filter);
+-  RCU_INIT_POINTER(newsk->sk_filter, filter);
+-  rcu_read_unlock();
+ 
+   if (unlikely(!is_charged || xfrm_sk_clone_policy(newsk, sk))) {
+   /* We need to make sure that we don't uncharge the new



[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2017-10-12 Thread Mike Gilbert
commit: fc3607f5376cd63d04f59509255b35e00de49dbb
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 12 22:03:27 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 12 22:04:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc3607f5

www-plugins/chrome-binary-plugins: automated update (63.0.3236.0, 62.0.3202.52)

Package-Manager: Portage-2.3.11_p4, Repoman-2.3.3_p62

 www-plugins/chrome-binary-plugins/Manifest| 4 ++--
 45_beta.ebuild => chrome-binary-plugins-62.0.3202.52_beta.ebuild} | 0
 0_alpha.ebuild => chrome-binary-plugins-63.0.3236.0_alpha.ebuild} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 576158ecd3c..a6125dedabf 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_62.0.3202.45-1_amd64.deb 50051642 SHA256 
e2b641239765d89c1096936a676d2ffa8d3941a340a5739f74da57c320e5aa34 SHA512 
c06c6bc9d7bc37c8da95980f62bfbe53d02d28ecab004d8fe66c4da5c40201cde36dd2f677d5b47b8adb009f40892b7fc8614f110355e0d2406220386444a9ef
 WHIRLPOOL 
6df8fb1d773936c2150d5e2678a1dabe0eed4a1e77eaee70c2e6e04d0f7a42062ebd72abaa7d8590f138de142074fc55b04efbf43c123e87f37d78bca56bc5c1
+DIST google-chrome-beta_62.0.3202.52-1_amd64.deb 50048514 SHA256 
ecc51d289f90fc3ac9bec4c57ae3d3d9109118ae0efd8078ce1c240f88390696 SHA512 
4555660d0551bba1d8594142239583f612b207a00b2a06cf90597303e28ca5842b4cf810d330f6f6a16afd2226cfb3cc0a0f991b6ef539ecc92e389ce211589c
 WHIRLPOOL 
cf6945303c97e893d90a327093cad4ddde199556f059bc0444dab5a0957dca58ce601c7380e844e3bf8972be9ba311f1e62a77bb11732631af9bfe4c8a47f15b
 DIST google-chrome-stable_61.0.3163.100-1_amd64.deb 65267668 SHA256 
5b8b9655db8dcce4b276db7860ae1c8ce1079a33f161a716c17fda24b8d5a9b2 SHA512 
ec8b3b29d4af45f0aac67cf564bb7f25e45543bc5aa97c075cb23b6a4f332795a6fb4922ce4c963d1305f41eb455e7b46a874b670dc7bb1b6676fff1c45f1040
 WHIRLPOOL 
ddaf6dfe8d89bf58fcca7fcb2f58365cb82e9b751a8c15025e7ccc2d219b4255869b7d2f9a80ae292f3bfe19818ce55cb90f5e57b13a65d9808e78f8e7bda2f1
-DIST google-chrome-unstable_63.0.3230.0-1_amd64.deb 49851312 SHA256 
11430f165090c16ee532c2275755701cd1273dacee39a56b2b39fb18ecb9e755 SHA512 
98b303cf6822af611bf96b67ed3471e7a172477dfa97440d6b5619a5543c8fb5f237052db8e6e2a3491dd54cf2d6d32efe005a1f1efa92499654290296ba812e
 WHIRLPOOL 
96f2ab0b26c8dae29a28bec0c0bfe050e07be6ec5808193d170e165769b4fb22510e7cd9193f38e3bee43454cddd623759c017159d559e84f249e7e44536c7ce
+DIST google-chrome-unstable_63.0.3236.0-1_amd64.deb 50443872 SHA256 
9d56062b76b4dc8e361fafeb2c8ce4c50661833ad7f43ce27de94678b60d856f SHA512 
9ded4fc9f5bbdca7e4bc1560b8673649bbf5d6c90550f6cb3975224f5eb7553b1ee035434605b492aa6c0e085ab70266d2f818e3ab20e0ced776fd3e9130850f
 WHIRLPOOL 
7940e3b62af402866c262102de7702c0f300497d3d67f2ae969c46a8923a28deb0f522836be68897ea99d5861b418f52d39185084c5dcf8a905d3cab79aab432

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-62.0.3202.45_beta.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-62.0.3202.52_beta.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-62.0.3202.45_beta.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-62.0.3202.52_beta.ebuild

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-63.0.3230.0_alpha.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-63.0.3236.0_alpha.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-63.0.3230.0_alpha.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-63.0.3236.0_alpha.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-beta/

2017-10-12 Thread Mike Gilbert
commit: eb89d5e0c893cfb6f388a7f4ec8a3175959b1500
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 12 22:03:44 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 12 22:04:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb89d5e0

www-client/google-chrome-beta: automated update (62.0.3202.52)

Package-Manager: Portage-2.3.11_p4, Repoman-2.3.3_p62

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-62.0.3202.45.ebuild => google-chrome-beta-62.0.3202.52.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index 71b714e3b8c..a8d26ec0d16 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_62.0.3202.45-1_amd64.deb 50051642 SHA256 
e2b641239765d89c1096936a676d2ffa8d3941a340a5739f74da57c320e5aa34 SHA512 
c06c6bc9d7bc37c8da95980f62bfbe53d02d28ecab004d8fe66c4da5c40201cde36dd2f677d5b47b8adb009f40892b7fc8614f110355e0d2406220386444a9ef
 WHIRLPOOL 
6df8fb1d773936c2150d5e2678a1dabe0eed4a1e77eaee70c2e6e04d0f7a42062ebd72abaa7d8590f138de142074fc55b04efbf43c123e87f37d78bca56bc5c1
+DIST google-chrome-beta_62.0.3202.52-1_amd64.deb 50048514 SHA256 
ecc51d289f90fc3ac9bec4c57ae3d3d9109118ae0efd8078ce1c240f88390696 SHA512 
4555660d0551bba1d8594142239583f612b207a00b2a06cf90597303e28ca5842b4cf810d330f6f6a16afd2226cfb3cc0a0f991b6ef539ecc92e389ce211589c
 WHIRLPOOL 
cf6945303c97e893d90a327093cad4ddde199556f059bc0444dab5a0957dca58ce601c7380e844e3bf8972be9ba311f1e62a77bb11732631af9bfe4c8a47f15b

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-62.0.3202.45.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-62.0.3202.52.ebuild
similarity index 100%
rename from www-client/google-chrome-beta/google-chrome-beta-62.0.3202.45.ebuild
rename to www-client/google-chrome-beta/google-chrome-beta-62.0.3202.52.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/

2017-10-12 Thread Mike Gilbert
commit: 368cd072d7638da8b52c8e3bd0a01a2c7f0a464e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Oct 12 22:03:37 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Oct 12 22:04:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=368cd072

www-client/google-chrome-unstable: automated update (63.0.3236.0)

Package-Manager: Portage-2.3.11_p4, Repoman-2.3.3_p62

 www-client/google-chrome-unstable/Manifest  | 2 +-
 ...ble-63.0.3230.0.ebuild => google-chrome-unstable-63.0.3236.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index f8ea54d53ff..911b5af1790 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_63.0.3230.0-1_amd64.deb 49851312 SHA256 
11430f165090c16ee532c2275755701cd1273dacee39a56b2b39fb18ecb9e755 SHA512 
98b303cf6822af611bf96b67ed3471e7a172477dfa97440d6b5619a5543c8fb5f237052db8e6e2a3491dd54cf2d6d32efe005a1f1efa92499654290296ba812e
 WHIRLPOOL 
96f2ab0b26c8dae29a28bec0c0bfe050e07be6ec5808193d170e165769b4fb22510e7cd9193f38e3bee43454cddd623759c017159d559e84f249e7e44536c7ce
+DIST google-chrome-unstable_63.0.3236.0-1_amd64.deb 50443872 SHA256 
9d56062b76b4dc8e361fafeb2c8ce4c50661833ad7f43ce27de94678b60d856f SHA512 
9ded4fc9f5bbdca7e4bc1560b8673649bbf5d6c90550f6cb3975224f5eb7553b1ee035434605b492aa6c0e085ab70266d2f818e3ab20e0ced776fd3e9130850f
 WHIRLPOOL 
7940e3b62af402866c262102de7702c0f300497d3d67f2ae969c46a8923a28deb0f522836be68897ea99d5861b418f52d39185084c5dcf8a905d3cab79aab432

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-63.0.3230.0.ebuild 
b/www-client/google-chrome-unstable/google-chrome-unstable-63.0.3236.0.ebuild
similarity index 100%
rename from 
www-client/google-chrome-unstable/google-chrome-unstable-63.0.3230.0.ebuild
rename to 
www-client/google-chrome-unstable/google-chrome-unstable-63.0.3236.0.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-vim/vim-spell-he/

2017-10-12 Thread Patrice Clement
commit: b166a9e176f7bc70c9f8f840fc9b2996df67debf
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Oct 12 21:59:16 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Oct 12 21:59:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b166a9e1

app-vim/vim-spell-he: EAPI 6 bump, update HOMEPAGE.

Bug: https://bugs.gentoo.org/614654
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-vim/vim-spell-he/vim-spell-he-20100312-r1.ebuild | 12 
 1 file changed, 12 insertions(+)

diff --git a/app-vim/vim-spell-he/vim-spell-he-20100312-r1.ebuild 
b/app-vim/vim-spell-he/vim-spell-he-20100312-r1.ebuild
new file mode 100644
index 000..3dd8fe1b81d
--- /dev/null
+++ b/app-vim/vim-spell-he/vim-spell-he-20100312-r1.ebuild
@@ -0,0 +1,12 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+VIM_SPELL_LANGUAGE="Hebrew"
+
+inherit vim-spell
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;



[gentoo-commits] repo/gentoo:master commit in: app-vim/vim-spell-el/

2017-10-12 Thread Patrice Clement
commit: 79973a0c9050689379661439db9df823f4040aac
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Oct 12 21:47:11 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Oct 12 21:47:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79973a0c

app-vim/vim-spell-el: EAPI 6 bump.

Bug: https://bugs.gentoo.org/614654
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-vim/vim-spell-el/vim-spell-el-20080402-r1.ebuild | 12 
 1 file changed, 12 insertions(+)

diff --git a/app-vim/vim-spell-el/vim-spell-el-20080402-r1.ebuild 
b/app-vim/vim-spell-el/vim-spell-el-20080402-r1.ebuild
new file mode 100644
index 000..6cda4247305
--- /dev/null
+++ b/app-vim/vim-spell-el/vim-spell-el-20080402-r1.ebuild
@@ -0,0 +1,12 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+VIM_SPELL_LANGUAGE="Greek"
+
+inherit vim-spell
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;



[gentoo-commits] repo/gentoo:master commit in: app-vim/vim-spell-es/

2017-10-12 Thread Patrice Clement
commit: 9306413584e5876c466061cf6628bae1473936dc
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Oct 12 21:49:08 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Oct 12 21:49:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93064135

app-vim/vim-spell-es: EAPI 6 bump, update HOMEPAGE.

Bug: https://bugs.gentoo.org/614654
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-vim/vim-spell-es/vim-spell-es-20060208-r1.ebuild | 12 
 1 file changed, 12 insertions(+)

diff --git a/app-vim/vim-spell-es/vim-spell-es-20060208-r1.ebuild 
b/app-vim/vim-spell-es/vim-spell-es-20060208-r1.ebuild
new file mode 100644
index 000..efbae0026c2
--- /dev/null
+++ b/app-vim/vim-spell-es/vim-spell-es-20060208-r1.ebuild
@@ -0,0 +1,12 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+VIM_SPELL_LANGUAGE="Spanish"
+
+inherit vim-spell
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;



[gentoo-commits] repo/gentoo:master commit in: app-vim/vim-spell-da/

2017-10-12 Thread Patrice Clement
commit: 04f34d5d13ce3d159c5e55b3659b63cd0985286c
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Oct 12 21:46:26 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Oct 12 21:46:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04f34d5d

app-vim/vim-spell-da: EAPI 6 bump, update HOMEPAGE.

Bug: https://bugs.gentoo.org/614654
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-vim/vim-spell-da/vim-spell-da-20060116-r1.ebuild | 12 
 1 file changed, 12 insertions(+)

diff --git a/app-vim/vim-spell-da/vim-spell-da-20060116-r1.ebuild 
b/app-vim/vim-spell-da/vim-spell-da-20060116-r1.ebuild
new file mode 100644
index 000..d64264f06d9
--- /dev/null
+++ b/app-vim/vim-spell-da/vim-spell-da-20060116-r1.ebuild
@@ -0,0 +1,12 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+VIM_SPELL_LANGUAGE="Danish"
+
+inherit vim-spell
+
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
+LICENSE="GPL-2"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;



[gentoo-commits] repo/gentoo:master commit in: app-vim/vim-spell-fr/

2017-10-12 Thread Patrice Clement
commit: 73d742a0929805a99c25fafe5bb2529da364bb8a
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Oct 12 21:56:51 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Oct 12 21:57:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73d742a0

app-vim/vim-spell-fr: EAPI 6 bump, update HOMEPAGE.

Bug: https://bugs.gentoo.org/614654
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-vim/vim-spell-fr/vim-spell-fr-20060121-r1.ebuild | 12 
 1 file changed, 12 insertions(+)

diff --git a/app-vim/vim-spell-fr/vim-spell-fr-20060121-r1.ebuild 
b/app-vim/vim-spell-fr/vim-spell-fr-20060121-r1.ebuild
new file mode 100644
index 000..73fc4dce0e2
--- /dev/null
+++ b/app-vim/vim-spell-fr/vim-spell-fr-20060121-r1.ebuild
@@ -0,0 +1,12 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+VIM_SPELL_LANGUAGE="French"
+
+inherit vim-spell
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;



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

2017-10-12 Thread Göktürk Yüksek
commit: e608e6b149b2c99ebe504457e8557e2236a97915
Author: kuzetsa  gmail  com>
AuthorDate: Thu Oct 12 19:52:14 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Oct 12 21:22:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e608e6b1

sys-kernel/ck-sources: v.bump (4.9.55)

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 sys-kernel/ck-sources/Manifest |  3 ++
 sys-kernel/ck-sources/ck-sources-4.9.55.ebuild | 65 ++
 2 files changed, 68 insertions(+)

diff --git a/sys-kernel/ck-sources/Manifest b/sys-kernel/ck-sources/Manifest
index f8539b6c7eb..eba1514766e 100644
--- a/sys-kernel/ck-sources/Manifest
+++ b/sys-kernel/ck-sources/Manifest
@@ -15,6 +15,9 @@ DIST genpatches-4.9-55.extras.tar.xz 17348 SHA256 
70e1a8008adeb7bf207fd7f3194b4f
 DIST genpatches-4.9-56.base.tar.xz 1098340 SHA256 
69e8104e4b2cf11d286d04b19a88d027ffbf94701cfc237f5737d0d907d2f4e4 SHA512 
d0e54f6b904bce6cee767297fd3282ad8fbd002e2820cd211d35d00e71c1a0339f0715d352c6dc7972097ebeaa282c074f9e85ef953ad16f9a4f35f5ddc26e58
 WHIRLPOOL 
c64fb7d0f811754166b5f8cdb08efd270ec6e1b57723fe8d1c206d5d184c8230b41d1f61c1e98300da0765327dc6feb2f3d8d5e36a8d26b9b1d5a2a3a6170c32
 DIST genpatches-4.9-56.experimental.tar.xz 106376 SHA256 
2d973cb9728d880cf947fcb898ae4f25fcb31a7b26bead9eb424fcf4dbc3be16 SHA512 
c4c552f2b1aa91a3fc3c7834c0c6dec898f4c74a557a7e767bbe85b6e7463e02ac23fc71c3a32fa256603967622e0e54deec8046f0502f5fd00c64d649741600
 WHIRLPOOL 
c070a07d4e8c832fa84880b9395d7499faecbedbc3e2d290a76339205234f396570b190a23183e6b4a1c2044119b8c631d161ce798e9aa03a1995d668e18080e
 DIST genpatches-4.9-56.extras.tar.xz 17348 SHA256 
70e1a8008adeb7bf207fd7f3194b4fa7c3efd500af7aa6fbc33b288794788b05 SHA512 
995901d2d40c5b9e9b33372636b4c2134014fbe1f5705b800283463904f072ce215930d81cda5f968333abd2d8558ac59a0d6cd419cd701e41b88901dea19d40
 WHIRLPOOL 
6b73420d4e249dbd3c8fc7e9670f0ca6b60554466b2d79410956df12af03763a8352701d9df4bc0759e08a6652813e40cbe1b6c9924cac111a81e33009bf27c8
+DIST genpatches-4.9-57.base.tar.xz 1123828 SHA256 
c1dea24632710b6847766dd1776e398045f5fd4920c14d089cb783a169c2f41f SHA512 
4fc135e4c2a6db37bcc82694491d05d176e2a8f9a420c08bad915dbaedfbdcb679a36bc7ec187c27fb617f751880a2e6e9f103b0860191ad339eec0b86240453
 WHIRLPOOL 
b2594ec0dd072b7ea402417ac83bd6c43a9e82a2a438c55cb8bfbb1d036210f8a8eee9224f2434f386b529645224ed93a4984d984d8cbdec8d3ce0353d120f12
+DIST genpatches-4.9-57.experimental.tar.xz 106420 SHA256 
0dd2e1c70e7d271b6a02f1abc21698698edeb9ea2c7a4bc9e421fbe55e963186 SHA512 
6c06ceaec38b4d87750fb0fd188c43b7420f90cf1f6e5b9f3f0268d959400b78d993d1d435910d50815b0cddb3dcf73e97dfda732a620a7ab91cb0fb8ce913c3
 WHIRLPOOL 
c1878fcf5052741a89c9ad670c3ef96676dcf23b58efa1949c126887ab0538e2816ac4f5661b677640528328c1d95f18fd89eac9b5660f8900ca0e1c041f2045
+DIST genpatches-4.9-57.extras.tar.xz 17352 SHA256 
b7de79c153d275dd374f79f5de4864f3f3362ab3190fba054b8365fbbc8109f5 SHA512 
6116c52aa4ad546e93226545fb99c6218587d6f76aec5f4ffb1f84a379be9d562fcdc93768c0979773a2eb3966d2053ec16939eeb2fce7f8af8259efa13f3c2f
 WHIRLPOOL 
206903be31b879c96fa57d2827c7d31f1123a3147111a4b9801d0bb525dc46ca7c6d8d21c38d399cb2e2b57f8055c389d6cf05e01741b04e6de51150bec1149c
 DIST linux-4.12.tar.xz 99186576 SHA256 
a45c3becd4d08ce411c14628a949d08e2433d8cdeca92036c7013980e93858ab SHA512 
8e81b41b253e63233e92948941f44c6482acb52aa3a3fd172f03a38a86f2c35b2ad4fd407acd1bc3964673eba344fe104d3a03e3ff4bf9cd1f22bd44263bd728
 WHIRLPOOL 
3b97da251c2ba4ace4a27b708f2b1dcf94cb1b59aaeded6acb74bd98f0d3e33f1df83670665e4186d99a55daa84c88d539d93e20f0ff18a6d46ef326c48dd375
 DIST linux-4.9.tar.xz 93192404 SHA256 
029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 WHIRLPOOL 
072505b29972ad120eb25a074217847c9c2813416c4903e605a0433574f5f87616dbea0b1454e4b19acc48107f11274b682958b1d773373156e99f8163e6606a
 DIST patch-4.12-ck2.xz 83604 SHA256 
6d15f95ca23b46f7abdfa1315600daed7ed6843acc29587fd84c2be7937c8564 SHA512 
958cbce3d20484372473fd372de2cf803c58e6b62d203e6da98aef8d367f01d6291f984a601b0ba962670eadeab7c5a3b1cb200ca0c8c82921688cae1b10
 WHIRLPOOL 
6156e37a9029fcbcdc2bf7b8ed49e1c2e5a03fa0c849c71383b16af3cf6cadedcd0239eebcbb82aeb4a536ecdd0770bd9704712a61716df57e7696b98b857b2b

diff --git a/sys-kernel/ck-sources/ck-sources-4.9.55.ebuild 
b/sys-kernel/ck-sources/ck-sources-4.9.55.ebuild
new file mode 100644
index 000..f000ce569db
--- /dev/null
+++ b/sys-kernel/ck-sources/ck-sources-4.9.55.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~x86"
+
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches/
+   http://users.tpg.com.au/ckolivas/kernel/;
+
+K_WANT_GENPATCHES="base extras experimental"
+K_EXP_GENPATCHES_PULL="1"
+K_EXP_GENPATCHES_NOUSE="1"

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

2017-10-12 Thread Thomas Deutschmann
commit: c8baa6ce9e2babb17e59ed0c2d40a2b0ade93b37
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Oct 12 21:16:58 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Oct 12 21:18:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8baa6ce

media-video/mplayer: x86 stable (bug #581952)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-video/mplayer/mplayer-1.3.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/mplayer/mplayer-1.3.0-r3.ebuild 
b/media-video/mplayer/mplayer-1.3.0-r3.ebuild
index b0404afad77..56c6166d7be 100644
--- a/media-video/mplayer/mplayer-1.3.0-r3.ebuild
+++ b/media-video/mplayer/mplayer-1.3.0-r3.ebuild
@@ -156,9 +156,9 @@ RDEPEND+="
 SLOT="0"
 LICENSE="GPL-2"
 if [[ ${PV} != ** ]]; then
-   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 else
-   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64"
+   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 x86"
 fi
 
 # faac codecs are nonfree



[gentoo-commits] repo/gentoo:master commit in: app-portage/gentoolkit/

2017-10-12 Thread Thomas Deutschmann
commit: afa8c25fb9582cf84180b72b921ca573c26d9837
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Oct 12 21:11:33 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Oct 12 21:18:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afa8c25f

app-portage/gentoolkit: x86 stable (bug #627350)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 app-portage/gentoolkit/gentoolkit-0.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-portage/gentoolkit/gentoolkit-0.4.0.ebuild 
b/app-portage/gentoolkit/gentoolkit-0.4.0.ebuild
index 47b17b4f6c0..496d7d8ed7b 100644
--- a/app-portage/gentoolkit/gentoolkit-0.4.0.ebuild
+++ b/app-portage/gentoolkit/gentoolkit-0.4.0.ebuild
@@ -16,7 +16,7 @@ LICENSE="GPL-2"
 SLOT="0"
 IUSE=""
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 DEPEND="sys-apps/portage[${PYTHON_USEDEP}]"
 RDEPEND="${DEPEND}



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

2017-10-12 Thread Thomas Deutschmann
commit: 6f5503b74b0794ed65fc7dfd4ff1c6388371cc7b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Oct 12 21:14:35 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Oct 12 21:18:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f5503b7

media-libs/openjpeg: x86 stable (bug #629668)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

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

diff --git a/media-libs/openjpeg/openjpeg-2.3.0.ebuild 
b/media-libs/openjpeg/openjpeg-2.3.0.ebuild
index 4b95641ca9d..c963d904b67 100644
--- a/media-libs/openjpeg/openjpeg-2.3.0.ebuild
+++ b/media-libs/openjpeg/openjpeg-2.3.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/uclouvain/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="2/7" # based on SONAME
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs test"
 
 RDEPEND="media-libs/lcms:2=



[gentoo-commits] repo/gentoo:master commit in: kde-misc/yakuake/files/, kde-misc/yakuake/

2017-10-12 Thread Andreas Sturmlechner
commit: a2cca051f8320b24468f29db9c71c27b8d79a5b9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 12 19:35:01 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 12 21:16:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2cca051

kde-misc/yakuake: Fixes for Qt-5.9 and Wayland sessions

Package release cycle is slow.

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 .../yakuake/files/yakuake-3.0.4-qdbus-crash.patch  |  44 
 kde-misc/yakuake/files/yakuake-3.0.4-qicon.patch   |  32 ++
 .../files/yakuake-3.0.4-qt-5.9-wayland.patch   | 120 +
 kde-misc/yakuake/files/yakuake-3.0.4-wayland.patch |  28 +
 kde-misc/yakuake/yakuake-3.0.4-r1.ebuild   |  54 ++
 5 files changed, 278 insertions(+)

diff --git a/kde-misc/yakuake/files/yakuake-3.0.4-qdbus-crash.patch 
b/kde-misc/yakuake/files/yakuake-3.0.4-qdbus-crash.patch
new file mode 100644
index 000..da3b042d701
--- /dev/null
+++ b/kde-misc/yakuake/files/yakuake-3.0.4-qdbus-crash.patch
@@ -0,0 +1,44 @@
+From 09abe657c65ba482ce9253e54467d33276f88bc9 Mon Sep 17 00:00:00 2001
+From: Vangelis Tasoulas 
+Date: Sat, 16 Sep 2017 16:42:44 +0500
+Subject: Fixes a yakuake "index out of range" crash produced by QDBus exposed
+ function TabBar::sessionAtTab(int)
+
+Summary:
+The function `TabBar::sessionAtTab(int index)` is exposed through QDBus and if 
a user/script passes a negative number, yakuake crashes with `index out of 
range`.
+
+This patch fixes that behaviour with a sanity check. If the user passes a 
negative number, return -1.
+
+Test Plan:
+Run the command `qdbus org.kde.yakuake /yakuake/tabs 
org.kde.yakuake.sessionAtTab -1`
+Yakuake will crash.
+
+Apply the patch and re-run the above `qdbus` command. It shouldn't be crashing 
now.
+
+Reviewers: #kde_applications, hein, alexeymin
+
+Reviewed By: #kde_applications, hein, alexeymin
+
+Subscribers: alexeymin
+
+Differential Revision: https://phabricator.kde.org/D7812
+---
+ app/tabbar.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/app/tabbar.cpp b/app/tabbar.cpp
+index b76cdee..1bc6fdd 100644
+--- a/app/tabbar.cpp
 b/app/tabbar.cpp
+@@ -914,7 +914,7 @@ void TabBar::setTabTitleInteractive(int sessionId, const 
QString& newTitle)
+ 
+ int TabBar::sessionAtTab(int index)
+ {
+-if (index > m_tabs.count() - 1)
++if (index < 0 || index > m_tabs.count() - 1)
+ return -1;
+ else
+ return m_tabs.at(index);
+-- 
+cgit v0.11.2
+

diff --git a/kde-misc/yakuake/files/yakuake-3.0.4-qicon.patch 
b/kde-misc/yakuake/files/yakuake-3.0.4-qicon.patch
new file mode 100644
index 000..608a09cf39d
--- /dev/null
+++ b/kde-misc/yakuake/files/yakuake-3.0.4-qicon.patch
@@ -0,0 +1,32 @@
+From 28138a891ff71236b3b8efcd1bc5fe7a2fe09b0d Mon Sep 17 00:00:00 2001
+From: Kai Uwe Broulik 
+Date: Wed, 2 Aug 2017 16:31:09 +0200
+Subject: [Appearance Settings] QIcon -> QIcon::fromTheme
+
+Most likely a porting error from KIcon
+
+Reviewed-By: Eike Hein
+---
+ app/config/appearancesettings.cpp | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/app/config/appearancesettings.cpp 
b/app/config/appearancesettings.cpp
+index c21ac33..b7d5c6f 100644
+--- a/app/config/appearancesettings.cpp
 b/app/config/appearancesettings.cpp
+@@ -63,9 +63,9 @@ AppearanceSettings::AppearanceSettings(QWidget* parent) : 
QWidget(parent)
+ connect(installButton, SIGNAL(clicked()), this, SLOT(installSkin()));
+ connect(removeButton, SIGNAL(clicked()), this, 
SLOT(removeSelectedSkin()));
+ 
+-installButton->setIcon(QIcon(QStringLiteral("folder")));
+-removeButton->setIcon(QIcon(QStringLiteral("edit-delete")));
+-ghnsButton->setIcon(QIcon(QStringLiteral("get-hot-new-stuff")));
++installButton->setIcon(QIcon::fromTheme(QStringLiteral("folder")));
++removeButton->setIcon(QIcon::fromTheme(QStringLiteral("edit-delete")));
++
ghnsButton->setIcon(QIcon::fromTheme(QStringLiteral("get-hot-new-stuff")));
+ 
+ m_knsConfigFileName = QLatin1String("yakuake.knsrc");
+ m_knsDownloadManager = new KNSCore::DownloadManager(m_knsConfigFileName);
+-- 
+cgit v0.11.2
+

diff --git a/kde-misc/yakuake/files/yakuake-3.0.4-qt-5.9-wayland.patch 
b/kde-misc/yakuake/files/yakuake-3.0.4-qt-5.9-wayland.patch
new file mode 100644
index 000..b24781dcc9f
--- /dev/null
+++ b/kde-misc/yakuake/files/yakuake-3.0.4-qt-5.9-wayland.patch
@@ -0,0 +1,120 @@
+From 7534df21025b10fd236dd5a8f92d0dff7889e0ef Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Martin=20Fl=C3=B6ser?= 
+Date: Wed, 6 Sep 2017 18:42:01 +0200
+Subject: Make Yakuake work on Wayland with Qt 5.9
+
+Summary:
+Yakuake is also affected by the common problem that the integration
+breaks once a window gets hidden, which is a very common feature of
+Yakuake.
+
+This change tracks the PlasmaShellSurface, destroys it on hide 

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

2017-10-12 Thread Thomas Deutschmann
commit: 54550720b42f8a4bb3adaf6727ce8a47c5ed7892
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Oct 12 21:08:16 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Oct 12 21:18:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54550720

media-libs/libfpx: Bump to v1.3.1_p10 (CVE-2017-{12920,12921,12925})

Bug: https://bugs.gentoo.org/628190
Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-libs/libfpx/Manifest|  1 +
 media-libs/libfpx/libfpx-1.3.1_p10.ebuild | 45 +++
 media-libs/libfpx/metadata.xml|  3 +++
 3 files changed, 49 insertions(+)

diff --git a/media-libs/libfpx/Manifest b/media-libs/libfpx/Manifest
index e22d43d9779..bda9b1c3c86 100644
--- a/media-libs/libfpx/Manifest
+++ b/media-libs/libfpx/Manifest
@@ -1 +1,2 @@
+DIST libfpx-1.3.1-10.tar.bz2 2358246 SHA256 
21e968ba90e7f091fa59e5baf72ff3d2150adba07fb4e37e9f495775185b4bba SHA512 
afa96b240ead4d3c56e8e6c66db188d1f4441e7b4d08e12e0e96359cfa2cea9eae5625105d87df65ceacd97d84a386876c62dee5bc1916c420755d9bcc4655d4
 WHIRLPOOL 
705074b5aaec62274b18a4aee8d710b52708bfc45aa7ebdd6fe27da628b0248e3db1f6cb99f129dbf6cc955854ff67517353d489e1831acd6850842c237ec9bf
 DIST libfpx-1.3.1-6.tar.bz2 2358328 SHA256 
84e663bb23619e19195777a7c5d348046756f28cffda3d0ea2160ed0b55a698a SHA512 
d33bc59f091100f4e0f7db396ba2f3a93951b348f8b175070fa23186f7ce488e71b7be43a45ebd9a3af21affe5342f63955df8549ff15582f8b29e67601531fb
 WHIRLPOOL 
d107a1ee69d018699567761603ce21ba6f6b80e25d5e3e53f6a76ef262602d0d344127c6a0c7f372c2da60a3b293882184513d4a77e674c32b384d5c8798a4bf

diff --git a/media-libs/libfpx/libfpx-1.3.1_p10.ebuild 
b/media-libs/libfpx/libfpx-1.3.1_p10.ebuild
new file mode 100644
index 000..1393c338253
--- /dev/null
+++ b/media-libs/libfpx/libfpx-1.3.1_p10.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils flag-o-matic libtool
+
+DESCRIPTION="A library for manipulating FlashPIX images"
+HOMEPAGE="http://www.i3a.org/;
+SRC_URI="mirror://imagemagick/delegates/${P/_p/-}.tar.bz2"
+
+LICENSE="Flashpix"
+SLOT="0/1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x86-solaris"
+IUSE="static-libs"
+
+S=${WORKDIR}/${P/_p/-}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.2.0.13-export-symbols.patch
+)
+
+src_prepare() {
+   default
+
+   # we're not windows, even though we don't define __unix by default
+   [[ ${CHOST} == *-darwin* ]] && append-flags -D__unix
+
+   elibtoolize
+}
+
+src_configure() {
+   append-ldflags -Wl,--no-undefined
+   econf \
+   $(use_enable static-libs static) \
+   LIBS="-lstdc++ -lm"
+}
+
+src_install() {
+   default
+
+   dodoc AUTHORS ChangeLog doc/*.txt
+
+   insinto /usr/share/doc/${PF}/pdf
+   doins doc/*.pdf
+}

diff --git a/media-libs/libfpx/metadata.xml b/media-libs/libfpx/metadata.xml
index 6ade85e1c64..d845d64c112 100644
--- a/media-libs/libfpx/metadata.xml
+++ b/media-libs/libfpx/metadata.xml
@@ -5,4 +5,7 @@
 graph...@gentoo.org
 Gentoo Graphics Project
   
+  
+Reflect major ABI of libfpx.so.
+  
 



[gentoo-commits] repo/gentoo:master commit in: net-irc/konversation/, net-irc/konversation/files/

2017-10-12 Thread Andreas Sturmlechner
commit: f5d15d8e9a88ae315fb2eef855d1d6461f74d01b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 12 19:44:22 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 12 21:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5d15d8e

net-irc/konversation: Fix crash on extended joins

Package release cycle is slow.

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 .../files/konversation-1.7.2-extjoin-crash.patch   | 47 +
 .../files/konversation-1.7.2-focus.patch   | 25 +++
 .../files/konversation-1.7.2-memleak.patch | 33 ++
 net-irc/konversation/konversation-1.7.2-r1.ebuild  | 77 ++
 4 files changed, 182 insertions(+)

diff --git a/net-irc/konversation/files/konversation-1.7.2-extjoin-crash.patch 
b/net-irc/konversation/files/konversation-1.7.2-extjoin-crash.patch
new file mode 100644
index 000..97fc4c1494c
--- /dev/null
+++ b/net-irc/konversation/files/konversation-1.7.2-extjoin-crash.patch
@@ -0,0 +1,47 @@
+From 783dc0f595ecf90e37225a57da0ffa2c030a470d Mon Sep 17 00:00:00 2001
+From: Peter Simonsson 
+Date: Sat, 10 Jun 2017 20:41:50 +0200
+Subject: Fix crash in join handling in inputfilter
+
+Make sure to check size of parameter list for extended join.
+
+BUG:378854
+---
+ src/irc/inputfilter.cpp | 19 ++-
+ 1 file changed, 6 insertions(+), 13 deletions(-)
+
+diff --git a/src/irc/inputfilter.cpp b/src/irc/inputfilter.cpp
+index 53f3b2c..f273d30 100644
+--- a/src/irc/inputfilter.cpp
 b/src/irc/inputfilter.cpp
+@@ -575,21 +575,14 @@ void InputFilter::parseClientCommand(const QString 
, const QString 
+ QString account;
+ QString realName;
+ 
+-if (!m_server->hasExtendedJoin())
+-{
+-channelName = trailing;
+-// Sometimes JOIN comes without ":" in front of the channel name
+-}
+-else
++channelName = parameterList[0];
++
++if (m_server->hasExtendedJoin() && plHas(3))
+ {
+-channelName = parameterList[0];
+-account = parameterList[1];
+-realName = parameterList[2];
++if (parameterList[1] != "*")
++account = parameterList[1];
+ 
+-if (account == "*")
+-{
+-account = QString();
+-}
++realName = parameterList[2];
+ }
+ 
+ // Did we join the channel, or was it someone else?
+-- 
+cgit v0.11.2
+

diff --git a/net-irc/konversation/files/konversation-1.7.2-focus.patch 
b/net-irc/konversation/files/konversation-1.7.2-focus.patch
new file mode 100644
index 000..b42bed488f3
--- /dev/null
+++ b/net-irc/konversation/files/konversation-1.7.2-focus.patch
@@ -0,0 +1,25 @@
+From 3263b47db2d0aab78d6a6fbc99682ac9b5ef2f2e Mon Sep 17 00:00:00 2001
+From: Eike Hein 
+Date: Wed, 21 Jun 2017 06:36:26 +0900
+Subject: Don't commit on focus loss.
+
+---
+ src/irc/channel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/irc/channel.cpp b/src/irc/channel.cpp
+index a431c80..a5c313e 100644
+--- a/src/irc/channel.cpp
 b/src/irc/channel.cpp
+@@ -292,7 +292,7 @@ Channel::Channel(QWidget* parent, const QString& _name) : 
ChatWindow(parent)
+ connect(nicknameCombobox,SIGNAL 
(activated(int)),this,SLOT(nicknameComboboxChanged()));
+ 
+ if(nicknameCombobox->lineEdit())
+-connect(nicknameCombobox->lineEdit(), SIGNAL 
(editingFinished()),this,SLOT(nicknameComboboxChanged()));
++connect(nicknameCombobox->lineEdit(), SIGNAL 
(returnPressed()),this,SLOT(nicknameComboboxChanged()));
+ 
+ 
+ connect(,SIGNAL (timeout()),this,SLOT (autoUserhost()));
+-- 
+cgit v0.11.2
+

diff --git a/net-irc/konversation/files/konversation-1.7.2-memleak.patch 
b/net-irc/konversation/files/konversation-1.7.2-memleak.patch
new file mode 100644
index 000..c079809f0c6
--- /dev/null
+++ b/net-irc/konversation/files/konversation-1.7.2-memleak.patch
@@ -0,0 +1,33 @@
+From cb2c91f06bc9247520474372d163bd0520f4db42 Mon Sep 17 00:00:00 2001
+From: Gun Park 
+Date: Mon, 10 Jul 2017 16:59:28 +0900
+Subject: Fix memory leak
+
+Reviewers: hein
+
+Reviewed By: hein
+
+Differential Revision: https://phabricator.kde.org/D6580
+---
+ src/viewer/viewcontainer.cpp | 5 ++---
+ 1 file changed, 2 insertions(+), 3 deletions(-)
+
+diff --git a/src/viewer/viewcontainer.cpp b/src/viewer/viewcontainer.cpp
+index 31ff633..94d498e 100644
+--- a/src/viewer/viewcontainer.cpp
 b/src/viewer/viewcontainer.cpp
+@@ -2786,9 +2786,8 @@ void ViewContainer::showJoinChannelDialog()
+ if (dlg->exec() == QDialog::Accepted)
+ {
+ Server *server = 
Application::instance()->getConnectionManager()->getServerByConnectionId(dlg->connectionId());
+-if (!server)
+-  return;
+-server->sendJoinCommand(dlg->channel(), dlg->password());
++if 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Mixer/, dev-perl/Audio-Mixer/files/

2017-10-12 Thread Kent Fredric
commit: 1ff2833374b810c7ed5c50e17208c1033136f243
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct 12 20:13:58 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Oct 12 21:14:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ff28333

dev-perl/Audio-Mixer: Fixup testing and cruft files

- EAPI6
- Don't install volume.pl to @INC
- Add USE=examples
- Add some basic tests without needing the soundcard
- Properly fence and advertise tests
- Replace upstreams tests with better ones that fail when things break.
- Apply clang patch

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/Audio-Mixer/Audio-Mixer-0.700.0-r2.ebuild |  50 +
 .../files/Audio-Mixer-0.700.0-clang.patch  |  27 +
 .../files/Audio-Mixer-0.700.0-testsuite.patch  | 124 +
 .../files/Audio-Mixer-0.700.0-volumepl.patch   |  33 ++
 4 files changed, 234 insertions(+)

diff --git a/dev-perl/Audio-Mixer/Audio-Mixer-0.700.0-r2.ebuild 
b/dev-perl/Audio-Mixer/Audio-Mixer-0.700.0-r2.ebuild
new file mode 100644
index 000..9325b9aecf0
--- /dev/null
+++ b/dev-perl/Audio-Mixer/Audio-Mixer-0.700.0-r2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=SERGEY
+DIST_VERSION=0.7
+DIST_EXAMPLES=("eg/*")
+inherit perl-module
+
+DESCRIPTION="Perl extension for Sound Mixer control"
+
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
+IUSE=""
+
+PATCHES=(
+   "${FILESDIR}/${P}-volumepl.patch"
+   "${FILESDIR}/${P}-clang.patch"
+   "${FILESDIR}/${P}-testsuite.patch"
+)
+
+src_test() {
+   local MODULES=(
+   "Audio::Mixer ${DIST_VERSION}"
+   )
+   local failed=()
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1
+   eend $? || failed+=( "$dep" )
+   done
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+   if [[ "${AUDIO_MIXER_HW_TEST:-0}" == 0 ]]; then
+   ewarn "Comprehensive testing of this module needs hardware 
access to mixing"
+   ewarn "devices. Set AUDIO_MIXER_HW_TEST=1 in your environment 
if you want full"
+   ewarn "coverage"
+   ewarn "For details, see:"
+   ewarn 
"https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/Audio-Mixer;
+   else
+   perl-module_src_test
+   fi
+}

diff --git a/dev-perl/Audio-Mixer/files/Audio-Mixer-0.700.0-clang.patch 
b/dev-perl/Audio-Mixer/files/Audio-Mixer-0.700.0-clang.patch
new file mode 100644
index 000..b7beac56f9a
--- /dev/null
+++ b/dev-perl/Audio-Mixer/files/Audio-Mixer-0.700.0-clang.patch
@@ -0,0 +1,27 @@
+From 6390829e5e60019b464d1fe83fb448ea54604170 Mon Sep 17 00:00:00 2001
+From: gregor herrmann 
+Date: Wed, 26 Mar 2014 05:44:25 +1300
+Subject: Fix building with clang
+
+Bug: https://rt.cpan.org/Ticket/Display.html?id=94186
+Bug: https://bugs.debian.org/742537
+---
+ Mix.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Mix.c b/Mix.c
+index 108153e..8b4284b 100644
+--- a/Mix.c
 b/Mix.c
+@@ -78,7 +78,7 @@ close_mixer() {
+ #ifdef DEBUG
+   fprintf(stderr, "close_mixer()\n");
+ #endif
+-  if (mixer_fd < 0) return;
++  if (mixer_fd < 0) return(0);
+   close(mixer_fd);
+   init_flag = 0;
+   mixer_fd = -1;
+-- 
+2.14.2
+

diff --git a/dev-perl/Audio-Mixer/files/Audio-Mixer-0.700.0-testsuite.patch 
b/dev-perl/Audio-Mixer/files/Audio-Mixer-0.700.0-testsuite.patch
new file mode 100644
index 000..c984c7190fc
--- /dev/null
+++ b/dev-perl/Audio-Mixer/files/Audio-Mixer-0.700.0-testsuite.patch
@@ -0,0 +1,124 @@
+From a3117d0b6a9e79f11e69362c42205bc548f6c754 Mon Sep 17 00:00:00 2001
+From: Kent Fredric 
+Date: Fri, 13 Oct 2017 09:43:01 +1300
+Subject: Rework test suite to be useful
+
+Bug: https://rt.cpan.org/Ticket/Display.html?id=31547
+---
+ MANIFEST  |  2 +-
+ t/basic.t | 23 +++
+ test.pl   | 60 
+ 3 files changed, 24 insertions(+), 61 deletions(-)
+ create mode 100644 t/basic.t
+ delete mode 100644 test.pl
+
+diff --git a/MANIFEST b/MANIFEST
+index d15c4ab..b713e9a 100644
+--- a/MANIFEST
 b/MANIFEST
+@@ -5,6 +5,6 @@ Mix.c
+ Mix.h
+ Mixer.pm
+ Mixer.xs
+-test.pl
++t/basic.t
+ eg/volume.pl
+ README
+diff --git a/t/basic.t b/t/basic.t
+new file mode 100644
+index 000..53448d2
+--- /dev/null
 b/t/basic.t
+@@ -0,0 +1,23 @@
++use strict;
++use warnings;
++
++use Test::More tests => 7;
++
++require_ok("Audio::Mixer");
++
++is( 

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

2017-10-12 Thread Andreas Hüttel
commit: 9596faca0fa2374b5c04e48c4de4528a05d32d18
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Oct 12 21:09:13 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Oct 12 21:09:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9596faca

toolchain-binutils.eclass: Add my public_html as patch source

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

diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass
index 3fbbc57e638..2218c02dd35 100644
--- a/eclass/toolchain-binutils.eclass
+++ b/eclass/toolchain-binutils.eclass
@@ -75,7 +75,7 @@ add_src_uri() {
else
a+=".bz2"
fi
-   set -- mirror://gentoo https://dev.gentoo.org/~vapier/dist 
https://dev.gentoo.org/~tamiko/distfiles
+   set -- mirror://gentoo https://dev.gentoo.org/~vapier/dist 
https://dev.gentoo.org/~tamiko/distfiles 
https://dev.gentoo.org/~dilfridge/distfiles
SRC_URI="${SRC_URI} ${@/%//${a}}"
 }
 PATCH_BINUTILS_VER=${PATCH_BINUTILS_VER:-${BVER}}



[gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils/

2017-10-12 Thread Andreas Hüttel
commit: 432c27adfd54cf33d1800e42f3a7d3a8001aa8b5
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Oct 12 21:07:39 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Oct 12 21:07:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=432c27ad

sys-devel/binutils: Revbump to patchlevel 2, unkeyworded, untested

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 sys-devel/binutils/Manifest  |  1 +
 sys-devel/binutils/binutils-2.29.1-r1.ebuild | 11 +++
 2 files changed, 12 insertions(+)

diff --git a/sys-devel/binutils/Manifest b/sys-devel/binutils/Manifest
index 37368e3a0f9..e47b73d984c 100644
--- a/sys-devel/binutils/Manifest
+++ b/sys-devel/binutils/Manifest
@@ -7,5 +7,6 @@ DIST binutils-2.27.tar.bz2 26099568 SHA256 
369737ce51587f92466041a97ab7d2358c6d9
 DIST binutils-2.28.1-patches-1.0.tar.xz 19772 SHA256 
50cfce6ef7f546dcdb983a8b632507b5cdd51095e4acf1f15bfcd68027d438a4 SHA512 
c2c7d22e1013e79040c4dcb4d70649e78a070976ba3a4bc2ceb4805827b9d93eea1805c85db4fcb6b31be5218c3d7b42a4990437a7c01dc01fd7e9dedb606828
 WHIRLPOOL 
2369fce643cc9b83724b486521621d744de0eaf3d95fdd34c7f1c785bc400f3ed31ae6105001870f33539664d84dd9caae854725e20007f136929d2ece755247
 DIST binutils-2.28.1.tar.bz2 28120394 SHA256 
6924999be62d4464458eb53c11f27277cfb63755df8c1cd47b8d15d02c1942ea SHA512 
5ec5212497b0fa8324f6a0884c284cb71c01942bbd39356d1ae745a5c9d97274c10f9d9c723f4bef6f0217662dfcd0c36e4e955a7599b11217658dc7b97553eb
 WHIRLPOOL 
5c616f719827e5da7db23e89c761323cd4828b4779e79c3983d3ea429bce57ed40219982c478237b4dd728b77bae0a6447d912d96490ed1f5fc279ba5fd73bc6
 DIST binutils-2.29-patches-1.0.tar.xz 7548 SHA256 
8ce4d1ea1224a305c4e36529e02dba87306075638ba0415b69ceeccedc77cd6e SHA512 
5375bfb1b796b7692cf2adfc41bd2ae2e6dc19ff497db5f6beb35a456981b3adb8552ef14f32382faf655aa40da86c2d44177a658ec71e1c0e228dc27a4f2e18
 WHIRLPOOL 
73d2b78ea18e3427442bcb24440f671c1d35c0b559bf2141f30052b2bb8d6a8a6e29994cac741e4e50071c716d761f32b36358487a176d67e8cd226dfaaeafc2
+DIST binutils-2.29.1-patches-2.tar.xz 18528 SHA256 
e50774626a1860a91aef58815cee187dd3206a2612f6e6315dee0d8c39128316 SHA512 
b60a3af9cd6a681f32a59fc4a30602ee1290f75cc93c8ad38ab0de17a7f30538a751b801dbaf079e3d514b9671e34e91742c4c9c953a8c9794505b571b7e80f0
 WHIRLPOOL 
be24896a10f90701ad3056477f8fc0df25b16a05cae5eda466a05a93b96e47c5809641b8f3af3720d8e8dea521c4b27c66c5d716d8f9c8a54dfb7c3dc87839e3
 DIST binutils-2.29.1.tar.bz2 29123355 SHA256 
1509dff41369fb70aed23682351b663b56db894034773e6dbf7d5d6071fc55cc SHA512 
4063d3426922376ccceb3f14b43e287442e82a8038cf50f4f51ad97d438c672c0e310ca4b856c9aff5aa9911073e256e8298a7a3f1844eeb60b90d955592
 WHIRLPOOL 
55bf62434bb00b9a355f8d7138c97b6d984eed3a83d7eb37137cf3ab8efcc8e536415d68eba375ae0ab30743f5b3014a664f7d3c773ed55da40c8814691e04d8
 DIST binutils-2.29.tar.bz2 29073316 SHA256 
29a29549869039aad75fdf507ac30366da5ad0b974fbff4a8e7148dbf4f40ebf SHA512 
8148587d7e4f14ebcbcb3f984b116deaae5d4008228628acde14bc242a64a4b53faf1f6077a2c4ca4750e2f254b698ba506bd657f79e1202e87e7029b0069337
 WHIRLPOOL 
62b3e9ff6f85f8f4a13b71361f5abc4081a70de560931dcaaece1daef04c6bc7d3e0085cbacff0abbb750c4779863d45bc0d8d17273965472992c6b61b5cab20

diff --git a/sys-devel/binutils/binutils-2.29.1-r1.ebuild 
b/sys-devel/binutils/binutils-2.29.1-r1.ebuild
new file mode 100644
index 000..01c773d1cea
--- /dev/null
+++ b/sys-devel/binutils/binutils-2.29.1-r1.ebuild
@@ -0,0 +1,11 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+PATCHVER="2"
+ELF2FLT_VER=""
+inherit toolchain-binutils
+
+#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd -sparc-fbsd ~x86-fbsd"
+KEYWORDS=""



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Module-CoreList/

2017-10-12 Thread Sergei Trofimovich
commit: 7b639ba28eff53aadb0268c5b18294776550236d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 20:54:04 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 20:54:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b639ba2

virtual/perl-Module-CoreList: stable 5.201.709.220-r1 for ppc64, bug #630610

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

 .../perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild 
b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild
index 8877b7757c4..5fd6072bcf0 100644
--- a/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild
+++ b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.709.220-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Check 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/virtual/perl-Module-CoreList
 # When bumping this package.



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

2017-10-12 Thread Sergei Trofimovich
commit: d6cc36175552ce3d881a166309af9d42cdeba8f3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 20:53:58 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 20:54:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6cc3617

dev-lang/perl: stable 5.24.3 for ppc64, bug #630610

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-lang/perl/perl-5.24.3.ebuild b/dev-lang/perl/perl-5.24.3.ebuild
index beead2feea0..be463144ec9 100644
--- a/dev-lang/perl/perl-5.24.3.ebuild
+++ b/dev-lang/perl/perl-5.24.3.ebuild
@@ -30,7 +30,7 @@ HOMEPAGE="http://www.perl.org/;
 
 LICENSE="|| ( Artistic GPL-1+ )"
 SLOT="0/${SHORT_PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="berkdb debug doc gdbm ithreads"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Time-HiRes/

2017-10-12 Thread Sergei Trofimovich
commit: 60f6548b9382d2a8cec3b4524eeeb88c965f9c79
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 20:54:08 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 20:54:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60f6548b

virtual/perl-Time-HiRes: stable 1.974.100-r1 for ppc64, bug #630610

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

 virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild 
b/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild
index 86c94989aab..7a881e8f3f4 100644
--- a/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild
+++ b/virtual/perl-Time-HiRes/perl-Time-HiRes-1.974.100-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND="
|| ( =dev-lang/perl-5.26* =dev-lang/perl-5.24.3* 
~perl-core/${PN#perl-}-${PV} )



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

2017-10-12 Thread Sergei Trofimovich
commit: 8c4455434ab7d4d5252e12326747a3546cc5f138
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 20:54:50 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 20:54:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c445543

app-editors/mg: stable 20170401 for ppc, bug #629240

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/app-editors/mg/mg-20170401.ebuild 
b/app-editors/mg/mg-20170401.ebuild
index 1e9f490454d..1ee1c688f45 100644
--- a/app-editors/mg/mg-20170401.ebuild
+++ b/app-editors/mg/mg-20170401.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://homepage.boetes.org/software/mg/${P}.tar.gz;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm hppa ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="livecd"
 
 RDEPEND="sys-libs/ncurses:0



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

2017-10-12 Thread Robin H. Johnson
commit: b545fdf6233c35ef3173109dfcd3d0c2b05da205
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Thu Oct 12 20:30:01 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Thu Oct 12 20:36:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b545fdf6

dev-db/redis: use s-s-d to background, disallow daemonize.

Bug: https://bugs.gentoo.org/631002#c10
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-db/redis/files/redis.initd-5  | 4 +++-
 dev-db/redis/{redis-3.2.8-r4.ebuild => redis-3.2.8-r5.ebuild} | 0
 dev-db/redis/{redis-4.0.2.ebuild => redis-4.0.2-r1.ebuild}| 0
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-db/redis/files/redis.initd-5 b/dev-db/redis/files/redis.initd-5
index a567b1e210d..bfeeb6925ec 100644
--- a/dev-db/redis/files/redis.initd-5
+++ b/dev-db/redis/files/redis.initd-5
@@ -9,8 +9,10 @@
 : ${REDIS_GROUP:=redis}
 : ${REDIS_TIMEOUT:=30}
 
+# https://bugs.gentoo.org/631002#c10
+# Force '--daemonize no' to override the config file 
 command="/usr/sbin/redis-server"
-command_args="${REDIS_OPTS}"
+command_args="${REDIS_OPTS} --daemonize no"
 command_background="true"
 command_user="${REDIS_USER}:${REDIS_GROUP}"
 pidfile="/run/${RC_SVCNAME}.pid"

diff --git a/dev-db/redis/redis-3.2.8-r4.ebuild 
b/dev-db/redis/redis-3.2.8-r5.ebuild
similarity index 100%
rename from dev-db/redis/redis-3.2.8-r4.ebuild
rename to dev-db/redis/redis-3.2.8-r5.ebuild

diff --git a/dev-db/redis/redis-4.0.2.ebuild 
b/dev-db/redis/redis-4.0.2-r1.ebuild
similarity index 100%
rename from dev-db/redis/redis-4.0.2.ebuild
rename to dev-db/redis/redis-4.0.2-r1.ebuild



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

2017-10-12 Thread Mike Pagano
commit: ac157a7b33883b812da0b5c09080c52e0ea959c3
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 12 20:10:46 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 12 20:10:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac157a7b

sys-kernel/gentoo-sources: Linux patch 4.13.6

Package-Manager: Portage-2.3.11, Repoman-2.3.3

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 6e350dad122..f049f71f386 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -28,6 +28,9 @@ DIST genpatches-4.13-6.extras.tar.xz 17400 SHA256 
48a1601631610c44ce61f108105208
 DIST genpatches-4.13-7.base.tar.xz 125424 SHA256 
994b898aa71c58666966578eb89f1bd4d7d95ab166c9a904141391e9aaa44785 SHA512 
f2b7a2ecf10049026d9591e38cc4c15df6d9290533ea0125e2a3f7b3c9bd6ffe077db6577b964f80807d1910ba74188e5e8600f47095f558b04651d922c32adc
 WHIRLPOOL 
67548caf0f249e6cc6031aa53e4bc98f3e2990380226c95653a1a5ec0f4b5ebb5a293dc7cd5cde124cb88b8ef2db374856b8cf252088b6df5afa5b6c3b4e4e0a
 DIST genpatches-4.13-7.experimental.tar.xz 5184 SHA256 
bc5eb8610a712e66c6974ce9986aec76d30a88a31fce29fb90aec50819ea09f6 SHA512 
78e765b77276b919f8731f68c9ef240035b502f0febd234a0ef572ed0dfdc589f8057324ec633971d73e083ad8a0e449713dfd82ae8982bacf36379e623f
 WHIRLPOOL 
458ee683f01b827be2f8c24b8ca88e78766965c3e630a18bcf6c7c0324967b669e6c43e8f0cfe8f07e6811458235601e918d015a86c8bc36e88cc4f201d543d7
 DIST genpatches-4.13-7.extras.tar.xz 17400 SHA256 
25b8b93102267a59e9b586caa67073e962fbc7aa9b6390eddf5e8b49ebc9c85f SHA512 
0a849a8b3ed7bfd0418118f7b24c40e5d5fe00b97faa49de6dcd5b26025b7c1fc6b52eb641d2e7ed92ee25b1df392382fec23b074d7494620b2791c69083c7e0
 WHIRLPOOL 
4c66583a3dd0fcdc98c2d6c4bfe6ff45895cdbb24b4ba7599b88c149c2bf510676de1135ba7129d7c8b1f99fdba42ef154468cc6f042d3f96b6d320cb9175c32
+DIST genpatches-4.13-8.base.tar.xz 170820 SHA256 
ca9c0edb25925391405876238441e8d7d76dac4801bd621c6570078c25ebb01b SHA512 
b3804343f81c951b851747c669605ae1a652bec0668c90e530624ed17aa817c2594f72d91fbe0b058a839782a044cf1c0224f9395a458d9cca67f4f586505a80
 WHIRLPOOL 
909b6a495533a6d9e344ae4901426a3606bc15fd1619438ea6f6efe6ded6e6ed0776167d1bf8577c37e9c6b689d3623eebf33be962557ffccffa309b6f47aa0a
+DIST genpatches-4.13-8.experimental.tar.xz 5184 SHA256 
3bdc5c643a87277723334f1e78fcc5c327bacb3363900c67f2050de610737f86 SHA512 
d8c9b1925eb9911ebbc0cf6902d2df009f38b09ffed0138c047248d36d215932bedb0fb32a2de9a10c61544bca5dd15a1fdb92a057f872f241b3c575cf8eef72
 WHIRLPOOL 
77b2a52d350de7eb157aa37e21876669e921cfabe22a9412b9af4c59d04e880cc2b510a2256864ead8d5f69636a7a45e840d7cb27266c33eafb381db654fff70
+DIST genpatches-4.13-8.extras.tar.xz 17400 SHA256 
9653d6207d975592974ea62b9d84d4ace8ac5cf84e9d08bb411125899bec9d16 SHA512 
7656a9f7e93c1e88974b65281682fed3b1148bac5c96c59c1fadf7c821a27afbdaad27cfc61d9d3178f5b010578e31183ca35bda150ef2a42e153d254c849261
 WHIRLPOOL 
cbdc0feb916fbb05e2c496b56009d4145190736942d3422f615aeb330ca67068f562c15e26f43e1207b3341930f945cf1aaf24f5df668302ca77bac69dbd907d
 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.13.6.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.13.6.ebuild
new file mode 100644
index 000..6c9556150bd
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.13.6.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="8"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm 

[gentoo-commits] repo/gentoo:master commit in: app-laptop/laptop-mode-tools/

2017-10-12 Thread Alon Bar-Lev
commit: e0eb88d80ab3140d64370ee97df57661617745be
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Thu Oct 12 20:01:06 2017 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Thu Oct 12 20:01:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0eb88d8

app-laptop/laptop-mode-tools: cleanup

Gentoo-Bug: https://bugs.gentoo.org/633684
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-laptop/laptop-mode-tools/Manifest  |  1 -
 .../laptop-mode-tools-1.70.ebuild  | 94 --
 2 files changed, 95 deletions(-)

diff --git a/app-laptop/laptop-mode-tools/Manifest 
b/app-laptop/laptop-mode-tools/Manifest
index 126459c77fb..335a4a54864 100644
--- a/app-laptop/laptop-mode-tools/Manifest
+++ b/app-laptop/laptop-mode-tools/Manifest
@@ -1,2 +1 @@
-DIST laptop-mode-tools_1.70.tar.gz 116624 SHA256 
12cde7dbec8c35201efab96187be75ec84e0a2424494852413f21be1b7bc6a11 SHA512 
755e2d94b63bb2a6e5362365f11181374c5fe159b508076f5def91c4df93983fa3e2553bbd94ae0b5bb4690aa7fb0881eafe3f4dcc7c8e77a8b72de23f6a21c5
 WHIRLPOOL 
a70b0e3353877ffedd87ed3f72f1239addd34e8fecfd0e54b98c328a1f4a48a87a2f278fa4afa227452eb5f874bd58912a1ddf8ae2f385636c6bb3a552ce7b3a
 DIST laptop-mode-tools_1.71.tar.gz 118833 SHA256 
3aa122f876ef191e2501f550363724e30d20646637cff0de7147124c867166f9 SHA512 
67ef4ed4c80f3a64ab9f0f9003d415f9e8759fd0ee1c7a82837d423a0e7aeb03ab95724afd89ae223f954ae0baec5830c8fa600bd6e2e351aead83a656f9b665
 WHIRLPOOL 
9c26c546f75f45b46b9b9e34a5ac435f58952e4d70b8db02c86170b4026b00112fb4044e41130dbc4f74326e22b39e0b782ba935179150441e9b5d41c884

diff --git a/app-laptop/laptop-mode-tools/laptop-mode-tools-1.70.ebuild 
b/app-laptop/laptop-mode-tools/laptop-mode-tools-1.70.ebuild
deleted file mode 100644
index 76f2e8092a2..000
--- a/app-laptop/laptop-mode-tools/laptop-mode-tools-1.70.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib systemd udev
-
-MY_P="${PN}_${PV}"
-
-DESCRIPTION="Linux kernel laptop_mode user-space utilities"
-HOMEPAGE="https://github.com/rickysarraf/laptop-mode-tools/wiki;
-SRC_URI="https://github.com/rickysarraf/${PN}/releases/download/${PV}/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="+acpi apm bluetooth scsi"
-
-RDEPEND="net-wireless/wireless-tools
-   sys-apps/iproute2
-   sys-apps/ethtool
-   sys-apps/hdparm
-   sys-apps/which
-   acpi? ( sys-power/acpid )
-   apm? ( sys-apps/apmd )
-   bluetooth? ( net-wireless/bluez:= )
-   scsi? ( sys-apps/sdparm )"
-DEPEND=""
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   default
-   # This should avoid conflict with pm-powersave wrt #327443 and #396703
-   cat <<-EOF > "${T}"/${PN}
-   HOOK_BLACKLIST="00powersave"
-   EOF
-}
-
-src_compile() { :; }
-
-src_install() {
-   DESTDIR="${D}" \
-   INIT_D="none" \
-   MAN_D="/usr/share/man" \
-   LIB_D="/usr/$(get_libdir)" \
-   UDEV_D="$(get_udevdir)" \
-   SYSTEMD_UNIT_D="$(systemd_get_systemunitdir)" \
-   TMPFILES_D="/usr/lib/tmpfiles.d" \
-   ACPI="$(use acpi && echo force || echo disabled)" \
-   PMU="$(false && echo force || echo disabled)" \
-   APM="$(use apm && echo force || echo disabled)" \
-   SYSTEMD=yes \
-   sh ./install.sh || die
-
-   dodoc Documentation/*.txt README.md
-   newinitd "${FILESDIR}"/laptop_mode.init-1.4 laptop_mode
-
-   # See src_prepare()
-   insinto /etc/pm/config.d
-   doins "${T}"/${PN}
-}
-
-pkg_postinst() {
-   if use acpi || use apm; then
-   if use acpi; then
-   daemon_name="acpid"
-   elif use apm; then
-   deamon_name="apmd"
-   fi
-   if [ "$(rc-config list default | grep laptop_mode)" = "" ] || [ 
"$(rc-config list default | grep ${daemon_name} )" = "" ]; then
-   ewarn "To enable automatic power state event handling,"
-   ewarn "e.g. enabling laptop_mode after unplugging the 
battery,"
-   ewarn "both laptop_mode and the ${daemon_name} daemon 
must be"
-   ewarn "added to default runlevel:"
-   if [ "$(rc-config list default | grep laptop_mode)" = 
"" ]; then
-   ewarn "# rc-update add laptop_mode default"
-   fi
-   if [ "$(rc-config list default | grep ${daemon_name} )" 
= "" ]; then
-   ewarn "# rc-update add ${daemon_name} default"
-   fi
-   fi
-   else
-   ewarn "Without USE=\"acpi\" or USE=\"apm\" ${PN} can not"
-   ewarn "automatically disable laptop_mode on low battery."
-   

[gentoo-commits] proj/catalyst:2.X commit in: targets/support/

2017-10-12 Thread Robin H. Johnson
commit: 0a4046643fca127fa1198b7fc953825d659ed92c
Author: Ben Kohler  gmail  com>
AuthorDate: Thu Oct 12 16:33:27 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Thu Oct 12 19:41:07 2017 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=0a404664

rc-update.sh: fix rc-update calls to work inside chroot

When "rc-update del service" is called without a runlevel specified, it
removes the service from the current runlevel which may or may not be
correct within the chroot.  This commit adds --all to ensure that these
rc-update calls actually take effect.

(cherry picked from commit 0f17e92e40d41c54af7bc863f033f1fdc61f9bf3)

 targets/support/rc-update.sh | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/targets/support/rc-update.sh b/targets/support/rc-update.sh
index c3e8ed9c..f2de50e0 100755
--- a/targets/support/rc-update.sh
+++ b/targets/support/rc-update.sh
@@ -11,12 +11,11 @@ fi
 
 if [ "${clst_spec_prefix}" == "livecd" ]
 then
-   # default programs that we always want to start
-   rc-update del iptables
-   rc-update del netmount
-   rc-update del keymaps
-   rc-update del serial
-   rc-update del consolefont
+   rc-update --all del iptables
+   rc-update --all del netmount
+   rc-update --all del keymaps
+   rc-update --all del serial
+   rc-update --all del consolefont
# We need to add this one, unconditionally
rc-update add autoconfig default
[[ -e /etc/init.d/splash ]] && rc-update add splash default



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2017-10-12 Thread Robin H. Johnson
commit: 0f17e92e40d41c54af7bc863f033f1fdc61f9bf3
Author: Ben Kohler  gmail  com>
AuthorDate: Thu Oct 12 16:33:27 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Thu Oct 12 19:39:22 2017 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=0f17e92e

rc-update.sh: fix rc-update calls to work inside chroot

When "rc-update del service" is called without a runlevel specified, it
removes the service from the current runlevel which may or may not be
correct within the chroot.  This commit adds --all to ensure that these
rc-update calls actually take effect.

 targets/support/rc-update.sh | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/targets/support/rc-update.sh b/targets/support/rc-update.sh
index c3e8ed9c..f2de50e0 100755
--- a/targets/support/rc-update.sh
+++ b/targets/support/rc-update.sh
@@ -11,12 +11,11 @@ fi
 
 if [ "${clst_spec_prefix}" == "livecd" ]
 then
-   # default programs that we always want to start
-   rc-update del iptables
-   rc-update del netmount
-   rc-update del keymaps
-   rc-update del serial
-   rc-update del consolefont
+   rc-update --all del iptables
+   rc-update --all del netmount
+   rc-update --all del keymaps
+   rc-update --all del serial
+   rc-update --all del consolefont
# We need to add this one, unconditionally
rc-update add autoconfig default
[[ -e /etc/init.d/splash ]] && rc-update add splash default



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

2017-10-12 Thread Manuel Rüger
commit: b931e1dd248b7029816de39a143e507889e9414b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 19:31:30 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 19:31:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b931e1dd

media-sound/mp3blaster: Stable on amd64

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 media-sound/mp3blaster/mp3blaster-3.2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/mp3blaster/mp3blaster-3.2.6.ebuild 
b/media-sound/mp3blaster/mp3blaster-3.2.6.ebuild
index a189f3ec03d..c080229ae2e 100644
--- a/media-sound/mp3blaster/mp3blaster-3.2.6.ebuild
+++ b/media-sound/mp3blaster/mp3blaster-3.2.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ppc ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ppc ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="lirc oss +sdl sid vorbis"
 
 RDEPEND="



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

2017-10-12 Thread Manuel Rüger
commit: d9c8d6ebab57eeeafe3520b45b49b9d8174b1c12
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 19:26:06 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 19:26:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9c8d6eb

x11-base/xorg-server: Stable on amd64

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 x11-base/xorg-server/xorg-server-1.19.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-base/xorg-server/xorg-server-1.19.4.ebuild 
b/x11-base/xorg-server/xorg-server-1.19.4.ebuild
index 0a04c061087..edeee84e852 100644
--- a/x11-base/xorg-server/xorg-server-1.19.4.ebuild
+++ b/x11-base/xorg-server/xorg-server-1.19.4.ebuild
@@ -9,7 +9,7 @@ 
EGIT_REPO_URI="https://anongit.freedesktop.org/git/xorg/xserver.git;
 
 DESCRIPTION="X.Org X servers"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 
 IUSE_SERVERS="dmx kdrive wayland xephyr xnest xorg xvfb"
 IUSE="${IUSE_SERVERS} debug glamor ipv6 libressl minimal selinux +suid systemd 
tslib +udev unwind xcsecurity"



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

2017-10-12 Thread Manuel Rüger
commit: 914145c6e7a99a12b58578f6fe3748b3cdf193f4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 19:22:53 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 19:22:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=914145c6

app-text/dos2unix: Stable on amd64

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 app-text/dos2unix/dos2unix-7.3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/dos2unix/dos2unix-7.3.5.ebuild 
b/app-text/dos2unix/dos2unix-7.3.5.ebuild
index 3ed4ddaa73a..e7ed026a27f 100644
--- a/app-text/dos2unix/dos2unix-7.3.5.ebuild
+++ b/app-text/dos2unix/dos2unix-7.3.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris"
 IUSE="debug nls test"
 
 RDEPEND="



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

2017-10-12 Thread Kent Fredric
commit: 4627c601ccf6c44a75694f9f9bd30686176bd14a
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct 12 19:04:30 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Oct 12 19:05:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4627c601

app-admin/gentoo-perl-helpers: Bump to version 0.3.1

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-admin/gentoo-perl-helpers/Manifest |  1 +
 .../gentoo-perl-helpers-0.3.1.ebuild   | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/app-admin/gentoo-perl-helpers/Manifest 
b/app-admin/gentoo-perl-helpers/Manifest
index d310b939214..2355f32f1aa 100644
--- a/app-admin/gentoo-perl-helpers/Manifest
+++ b/app-admin/gentoo-perl-helpers/Manifest
@@ -3,3 +3,4 @@ DIST gentoo-perl-helpers-0.2.0.tar.xz 8876 SHA256 
73ed0e54870ca3979067251c35750a
 DIST gentoo-perl-helpers-0.2.1.tar.xz 8904 SHA256 
6e6e5e1a0162771cc7874dbd86910790bed9538e82355875308eafd3691d44c4 SHA512 
f2815f0bc893faa815482333c79da0ea81eedb0919d9eec9d2403e0f6d886fa28561221a4f1b4b9d48b6182dea37a02ab79fcea2322a837817948428146a5ba3
 WHIRLPOOL 
fe9742df1235a010a1c52249b510230d65668f3c95da75a0161e9d43431cc41336c77d9748126f77619a19fe0daec1bce0be7c1798b39ca57f52dab25e99f232
 DIST gentoo-perl-helpers-0.2.2.tar.xz 9096 SHA256 
1b6479d573f14458e3daa7a4b75b8c30867b480d1f94ca70c03c261bbd867ba3 SHA512 
97653cbcff01cb65b5aa8b5e56ecdafedddfed773b8f41120707066d8c3d837634b9d2996eeed069cf434175684ac38a0e829719dd88a3bfd14e2e0ab6f80a14
 WHIRLPOOL 
cd0fa43068dd30b7ee971e14006cf6818fdd22c89a88937a39b64fdf73c29f4066a1f27673485bb406ca41acf6234c4a87e2283b18081041ac22683700892e6b
 DIST gentoo-perl-helpers-0.3.0.tar.xz 9392 SHA256 
030aba5f692b77bced185af7ca158ccaa5207874062f965357e4bda57ff82031 SHA512 
3feaf287457d0b4fa29cc58878566b38674b0c112ba356727bbce2bcff9b9cca07cec34cfb960260a0a32542c43611b783f74ee4127c9c0aa33843a144544c13
 WHIRLPOOL 
bd2d60dbd5fb337e8d00797b082d9c3fb5ccd39459d15d1949ad1b4d66a97d0ad8337a1dfb4e9e446a4af21d740321f861a79e0ad08894fda6e2691769d628c9
+DIST gentoo-perl-helpers-0.3.1.tar.xz 9420 SHA256 
091631c606537304dae042827e5d2c45507110b51651fab5945db1665565751a SHA512 
dce6addfebbdfd16da3b580776c34346eb60b2eaef9cc7bed03d5ae0bf028de7a0175fbf7f68113d44b645c3d5ca7f5175389478655b08c115a5342ff930e096
 WHIRLPOOL 
a0b76c9ff5ccee74a63d5cb11b088d7c3b5c768b32a80c6a4318f9872190d44a60e28ed86e143c5b980fcfc0324291f41cbf04fd5d3ba63f27ab464ed0553b5a

diff --git a/app-admin/gentoo-perl-helpers/gentoo-perl-helpers-0.3.1.ebuild 
b/app-admin/gentoo-perl-helpers/gentoo-perl-helpers-0.3.1.ebuild
new file mode 100644
index 000..b725db35e2e
--- /dev/null
+++ b/app-admin/gentoo-perl-helpers/gentoo-perl-helpers-0.3.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Introspection and Upgrade Assistance tools for Gentoo Perl"
+HOMEPAGE="https://github.com/gentoo-perl/gentoo-perl-helpers;
+SRC_URI="
+   https://github.com/gentoo-perl/${PN}/releases/download/${PV}/${P}.tar.xz
+   mirror://gentoo/${P}.tar.xz
+   https://dev.gentoo.org/~kentnl/distfiles/${P}.tar.xz
+"
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+# Assumed System:
+# sys-apps/coreutils
+# sys-apps/grep
+# sys-apps/findutils
+# sys-apps/sed
+# app-shells/bash
+# sys-apps/gawk
+# app-arch/tar
+
+RDEPEND="
+   $(: --format support)
+   >=app-portage/portage-utils-0.60
+   sys-apps/portage
+"
+DEPEND=""
+
+src_prepare() {
+   sed -i -e "s^@@LIBDIR@@^${EPREFIX}/usr/lib/gentoo-perl-helpers^g"   
\
+  -e 
"s^@@LIBEXECDIR@@^${EPREFIX}/usr/libexec/gentoo-perl-helpers^g" \
+  "${S}/bin/gentoo-perl"   \
+  "${S}/lib/core-functions.sh" \
+  || die "Can't patch bin/gentoo-perl"
+   default
+}
+src_compile() { :; }
+src_install() {
+   exeinto /usr/bin
+   doexe "${S}/bin/"*
+
+   exeinto /usr/libexec/gentoo-perl-helpers
+   doexe "${S}/libexec/"*
+
+   insinto /usr/lib/gentoo-perl-helpers
+   doins -r "${S}/lib/"*
+
+   dodoc "${S}/README.mkdn" "${S}/Changes"
+}



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

2017-10-12 Thread Sergei Trofimovich
commit: 9abe7c336a0ff1baae51718a938563ad0b0de229
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 19:04:13 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 19:04:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9abe7c33

media-sound/mp3blaster: stable 3.2.6 for ppc64, bug #632450

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

 media-sound/mp3blaster/mp3blaster-3.2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/mp3blaster/mp3blaster-3.2.6.ebuild 
b/media-sound/mp3blaster/mp3blaster-3.2.6.ebuild
index 26b26a39c7e..a189f3ec03d 100644
--- a/media-sound/mp3blaster/mp3blaster-3.2.6.ebuild
+++ b/media-sound/mp3blaster/mp3blaster-3.2.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ppc ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="lirc oss +sdl sid vorbis"
 
 RDEPEND="



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

2017-10-12 Thread Sergei Trofimovich
commit: 0d719cb66134c9fa06aeb11a6143835637ebfeda
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 19:04:17 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 19:04:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d719cb6

dev-ruby/ffi: stable 1.9.18 for ppc64, bug #633662

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-ruby/ffi/ffi-1.9.18.ebuild b/dev-ruby/ffi/ffi-1.9.18.ebuild
index 80f738e62dc..a105b39c147 100644
--- a/dev-ruby/ffi/ffi-1.9.18.ebuild
+++ b/dev-ruby/ffi/ffi-1.9.18.ebuild
@@ -21,7 +21,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${PN}-git-${PV}.
 IUSE=""
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND+=" virtual/libffi"
 DEPEND+=" virtual/libffi"



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

2017-10-12 Thread Sergei Trofimovich
commit: 2218874d348d98de7a4c22cdcac7ef1241a5a6be
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 19:04:09 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 19:04:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2218874d

media-libs/libsidplay: stable 1.36.59-r2 for ppc64, bug #632285

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

 media-libs/libsidplay/libsidplay-1.36.59-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libsidplay/libsidplay-1.36.59-r2.ebuild 
b/media-libs/libsidplay/libsidplay-1.36.59-r2.ebuild
index 2fe4ee7db84..c72e57c02b9 100644
--- a/media-libs/libsidplay/libsidplay-1.36.59-r2.ebuild
+++ b/media-libs/libsidplay/libsidplay-1.36.59-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://critical.ch/distfiles/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="1"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="static-libs"
 DEPEND=""
 RDEPEND=""



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

2017-10-12 Thread Sergei Trofimovich
commit: 40da05a95c6333fc3e84f0dd656964a7251ca64e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 19:04:05 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 19:04:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40da05a9

app-crypt/signing-party: stable 2.6 for ppc, bug #633676

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

 app-crypt/signing-party/signing-party-2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/signing-party/signing-party-2.6.ebuild 
b/app-crypt/signing-party/signing-party-2.6.ebuild
index 675acb0adac..9a08ba9f083 100644
--- a/app-crypt/signing-party/signing-party-2.6.ebuild
+++ b/app-crypt/signing-party/signing-party-2.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="mirror://debian/pool/main/s/signing-party/${PN}_${PV}.orig.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
 IUSE=""
 
 DEPEND="



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

2017-10-12 Thread Sergei Trofimovich
commit: bc97e47a8e0da9d0c482f81649ff95e9eb22c0a0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 19:04:00 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 19:04:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc97e47a

sys-apps/pcsc-lite: stable 1.8.22 for ppc, bug #633674

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

 sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild 
b/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild
index f69aa88c1b6..e254b99bf10 100644
--- a/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild
+++ b/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 # upstream.
 LICENSE="BSD ISC MIT GPL-3+ GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 # This is called libusb so that it doesn't fool people in thinking that
 # it is _required_ for USB support. Otherwise they'll disable udev and



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

2017-10-12 Thread Sergei Trofimovich
commit: e8e326278c9e1522c10e588e33ecc5d1d231dd3d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 19:03:55 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 19:04:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8e32627

dev-ruby/ffi: stable 1.9.18 for ppc, bug #633662

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-ruby/ffi/ffi-1.9.18.ebuild b/dev-ruby/ffi/ffi-1.9.18.ebuild
index 8e74ef40552..80f738e62dc 100644
--- a/dev-ruby/ffi/ffi-1.9.18.ebuild
+++ b/dev-ruby/ffi/ffi-1.9.18.ebuild
@@ -21,7 +21,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${PN}-git-${PV}.
 IUSE=""
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND+=" virtual/libffi"
 DEPEND+=" virtual/libffi"



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

2017-10-12 Thread Manuel Rüger
commit: af336f33263b2109bd833b9a343741e31974d673
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 19:00:11 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 19:01:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af336f33

app-emulation/runc: Version bump to 1.0.0_rc4

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 app-emulation/runc/Manifest  |  1 +
 app-emulation/runc/runc-1.0.0_rc4.ebuild | 54 
 2 files changed, 55 insertions(+)

diff --git a/app-emulation/runc/Manifest b/app-emulation/runc/Manifest
index c2fb30a64c5..4a6e583bd00 100644
--- a/app-emulation/runc/Manifest
+++ b/app-emulation/runc/Manifest
@@ -1,3 +1,4 @@
 DIST runc-1.0.0_rc2.tar.gz 550449 SHA256 
638742c48426b9a3281aeb619e27513d972de228bdbd43b478baea99c186d491 SHA512 
83a3d45efbb86d3d583b96062202b9e60121d250af2c0dd37d07fda574b642aa6f05e29cac6644ad3d624647400db694082e280383e41ca9f31dc0a33b87ed76
 WHIRLPOOL 
990a45739689db80bbeed43b0fd3a4ce4d0563ea833361b9112e750782313f19e638c4bfbd455f5dd1882d64c724dcf0213701322029c2c9f98f624863c744f3
 DIST runc-1.0.0_rc2_p20170222.tar.gz 576999 SHA256 
1ee6491b9c14e0ce9e0546ed92e3eb4bdc60cf4b5e58b6de0455dbe3b03145cb SHA512 
fe293057f55eee4f3821004af730ad57f512d610d7cf3693b26e69ffa068c8c28da5426b9f4988627c0803ecd1d46b6e427db8f1703649f5861859d61cd24bbd
 WHIRLPOOL 
561c09ffc7d3e0f1dd73f3711adb85b74d5fea265181cdd1535a83d23a164c1e4cb884053c0b46c968b0b582feeb2ccc9eb99e3e086b1fcbcce0813f172c
 DIST runc-1.0.0_rc3.tar.gz 453694 SHA256 
77dc6c48704da4005896acf369d0ee306f8af684c54a815f589fd87043221380 SHA512 
298a176db119a02c1dbe5c095897f34955d6d0d7ea3cb21496258a23225bae35603a818c13f7adc4be1c1f4e2b3a8a540fb2fc1b2828a59f29a53e3c8b13c354
 WHIRLPOOL 
649aba93a24eff37042cc08d55cff0d97d6e4fe6b2c35053b36a4a186040e8772b8f63be488f3cb8d75e7daa61193669a79b2ed1f04a13ae47695c98dccb17ec
+DIST runc-1.0.0_rc4.tar.gz 1090513 SHA256 
3ffefd293932d2ad509701878dd7dd6ef498c3667198a33e8e5d5a3cbce0eeaa SHA512 
cc2ae38b96f3f3355d9ba26f7af15c57975276aeaf58dcfe7fe5f0f0411ece8584a7cb51ae7fdd2f4109366f55ac8dfb86f225e26377fe07b685bbc56a2518ed
 WHIRLPOOL 
298e3ad3561c6d0de3f0517458da47f04389d4cf2686aba96cdf70966b1121e6a7997f0419159a4390dd276fd6cba41b08c6152aea66816a7bb760ebc5e46e32

diff --git a/app-emulation/runc/runc-1.0.0_rc4.ebuild 
b/app-emulation/runc/runc-1.0.0_rc4.ebuild
new file mode 100644
index 000..886cd2b7728
--- /dev/null
+++ b/app-emulation/runc/runc-1.0.0_rc4.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+EGO_PN="github.com/opencontainers/${PN}"
+
+if [[ ${PV} == * ]]; then
+   inherit golang-build golang-vcs
+else
+   MY_PV="${PV/_/-}"
+   EGIT_COMMIT="v${MY_PV}"
+   RUNC_COMMIT="2e7cfe0" # Change this when you update the ebuild
+   SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~ppc64"
+   inherit golang-build golang-vcs-snapshot
+fi
+
+DESCRIPTION="runc container cli tools"
+HOMEPAGE="http://runc.io;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="+ambient apparmor hardened +seccomp"
+
+RDEPEND="
+   apparmor? ( sys-libs/libapparmor )
+   seccomp? ( sys-libs/libseccomp )
+   !app-emulation/docker-runc
+"
+
+src_compile() {
+   # Taken from app-emulation/docker-1.7.0-r1
+   export CGO_CFLAGS="-I${ROOT}/usr/include"
+   export CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')
+   -L${ROOT}/usr/$(get_libdir)"
+
+   # build up optional flags
+   local options=(
+   $(usex ambient 'ambient')
+   $(usex apparmor 'apparmor')
+   $(usex seccomp 'seccomp')
+   )
+
+   GOPATH="${S}"\
+   emake BUILDTAGS="${options[*]}" \
+   COMMIT="${RUNC_COMMIT}" -C src/${EGO_PN}
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin runc
+   dodoc README.md PRINCIPLES.md
+   popd || die
+}



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

2017-10-12 Thread Andreas Sturmlechner
commit: 0497b79b29919db1ceeced26fd93eb739a500499
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 12 16:49:47 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 12 19:00:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0497b79b

www-client/qupzilla: 2.2.0 version bump

Added xdg-utils.eclass, new PLOCALES, bump PLUGINS_VERSION

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 www-client/qupzilla/Manifest  |   2 +
 www-client/qupzilla/qupzilla-2.2.0.ebuild | 118 ++
 2 files changed, 120 insertions(+)

diff --git a/www-client/qupzilla/Manifest b/www-client/qupzilla/Manifest
index 120c8704fcc..2d29184bc23 100644
--- a/www-client/qupzilla/Manifest
+++ b/www-client/qupzilla/Manifest
@@ -1,2 +1,4 @@
 DIST QupZilla-2.1.2.tar.xz 2767560 SHA256 
d8f860d8c41bbf2bf78889aef3ffed118a34b2754f7e114ad44eb2c6103ee58a SHA512 
d09a394ba70ae0f7f908940a26d6554a3706b6638c197d16b75e1e5855f76015c8e13b7155c40dacee3a38080a0c277d9410eaf07cf912dc4b295eafe1ff6343
 WHIRLPOOL 
1da85e81854d41e62bd28b71e9509571c789cc73c2a550a7165efa9dc65bb1099f8de17dafcdbbbcdf6498403e5e8458a82042f1090355c4df67144cb4fed59b
+DIST QupZilla-2.2.0.tar.xz 2465576 SHA256 
32cb6d4e5852781146ca5f1a1cf8e77da42a71fc096272e2030d83ea865c7818 SHA512 
82beb4593c6234e30e91401b23063f18427dc8c49d1ee6c9e447cdec03160655b9e077365ab30af7457d6a20d01fd0bb5c2f30d0c0b9ba916c12d231ebb858b4
 WHIRLPOOL 
449bedcc2c225434a3e88cbc3ef5d978a425f056a625f9079d29bc1d30aebef15c3ac81a3357a0191f3e2e5378c0bce6d0da9e5ec6a39bba1e7182759bf56b68
 DIST qupzilla-plugins-2016.05.02.tar.gz 425314 SHA256 
276491a89daf1b64d6eab861b54d313e85c815d322bf51d47491f00ad22f55bc SHA512 
b294ecb2372b3267603a43bc7412ab75d2cd29a8c4667331f0d2c74e3b0b99d0c2a005b9e4854c6d777894522bba9fb3b1607e85e8da6dcbaa760c9ddc6288f2
 WHIRLPOOL 
471807dc70dd3ea072f1e429a6e67ea97ecd5eadc02ac19debdcddfca4f5cb8e1767ad754aed1ff8a557f0734460a87b4e2d5e01ea57d07c473f48b006e32ef1
+DIST qupzilla-plugins-2017.03.26.tar.gz 430926 SHA256 
00967e12d319da991711e12767b7c7fe017dea1a7f1ec06627c2be8b13ce8687 SHA512 
3b04b4120825fd58937986cf12f2b521cf78a64380b915d46735ada3f4776f914056c5511daa781c89867d0309af7cbf833eb71dfa4b14b6b9ba25d80315
 WHIRLPOOL 
08124559291c3ccc387a9f3195060952cb4bed5e17920c472e7650d223b910cc60ebecdf831b4620b95ca22ec918add25c8009752098cec7a29ad5dad303ee9f

diff --git a/www-client/qupzilla/qupzilla-2.2.0.ebuild 
b/www-client/qupzilla/qupzilla-2.2.0.ebuild
new file mode 100644
index 000..694a6b84eaf
--- /dev/null
+++ b/www-client/qupzilla/qupzilla-2.2.0.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PLOCALES="ar_SA bg_BG ca_ES cs_CZ da_DK de_DE el_GR es_419 es_ES es_MX es_VE
+   eu_ES fa_IR fi_FI fr_FR gl_ES he_IL hr_HR hu_HU id_ID is it_IT ja_JP
+   ka_GE lg lt lv_LV nl_NL nqo pl_PL pt_BR pt_PT ro_RO ru_RU sk_SK sl_SI sr
+   sr@ijekavian sr@ijekavianlatin sr@latin sv_SE tr_TR uk_UA uz@Latn
+   zh_CN zh_HK zh_TW"
+
+PLUGINS_HASH="80fea7df7765fdf9c9c64fdb667052b25f1c0a22"
+PLUGINS_VERSION="2017.03.26" # if there are no updates, we can use the older 
archive
+
+inherit l10n qmake-utils xdg-utils
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/QupZilla/${PN}.git;
+else
+   MY_P=QupZilla-${PV}
+   
SRC_URI="https://github.com/QupZilla/${PN}/releases/download/v${PV}/${MY_P}.tar.xz;
+   KEYWORDS="~amd64 ~arm ~x86"
+   S=${WORKDIR}/${MY_P}
+fi
+
+DESCRIPTION="A cross-platform web browser using QtWebEngine"
+HOMEPAGE="https://www.qupzilla.com/;
+SRC_URI+=" 
https://github.com/QupZilla/${PN}-plugins/archive/${PLUGINS_HASH}.tar.gz -> 
${PN}-plugins-${PLUGINS_VERSION}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="dbus debug gnome-keyring kwallet libressl nonblockdialogs"
+
+RDEPEND="
+   >=dev-qt/qtcore-5.8:5
+   >=dev-qt/qtdeclarative-5.8:5[widgets]
+   >=dev-qt/qtgui-5.8:5
+   >=dev-qt/qtnetwork-5.8:5[ssl]
+   >=dev-qt/qtprintsupport-5.8:5
+   >=dev-qt/qtsql-5.8:5[sqlite]
+   >=dev-qt/qtwebchannel-5.8:5
+   >=dev-qt/qtwebengine-5.8:5[widgets]
+   >=dev-qt/qtwidgets-5.8:5
+   >=dev-qt/qtx11extras-5.8:5
+   x11-libs/libxcb:=
+   dbus? ( >=dev-qt/qtdbus-5.8:5 )
+   gnome-keyring? ( gnome-base/gnome-keyring )
+   kwallet? ( kde-frameworks/kwallet:5 )
+   libressl? ( dev-libs/libressl:= )
+   !libressl? ( dev-libs/openssl:0= )
+"
+DEPEND="${RDEPEND}
+   >=dev-qt/linguist-tools-5.8:5
+   >=dev-qt/qtconcurrent-5.8:5
+   virtual/pkgconfig
+"
+
+DOCS=( AUTHORS BUILDING.md CHANGELOG FAQ README.md )
+
+src_unpack() {
+   if [[ ${PV} == * ]]; then
+   git-r3_src_unpack
+   fi
+   default
+}
+
+src_prepare() {
+   # get extra plugins into qupzilla build tree
+   mv "${WORKDIR}"/${PN}-plugins-${PLUGINS_HASH}/plugins/* src/plugins/ || 
die

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

2017-10-12 Thread Manuel Rüger
commit: a69bfdca33b4ed605188b177d501e372b32ad35f
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 18:50:30 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 18:50:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a69bfdca

app-admin/prom2json: Initial version

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 app-admin/prom2json/Manifest   |  1 +
 app-admin/prom2json/metadata.xml   | 11 +++
 .../prom2json/prom2json-0.1.0_p20170523.ebuild | 38 ++
 3 files changed, 50 insertions(+)

diff --git a/app-admin/prom2json/Manifest b/app-admin/prom2json/Manifest
new file mode 100644
index 000..4955dc43427
--- /dev/null
+++ b/app-admin/prom2json/Manifest
@@ -0,0 +1 @@
+DIST prom2json-0.1.0_p20170523.tar.gz 129179 SHA256 
3b16fc3d0f668a42546b521f7a6a9ef59897c4347cb01d5542551aa9d7d7a4bc SHA512 
824f4c43f4a167dc7dde2f11e84cf482e5cdfa26ab11caf08a5461d525543c3491180f54694c4ae61fdd5dc9763ff16f6e29b332a64dc3ac52fdb7b9c0902571
 WHIRLPOOL 
85866f1c76072554e72eb62637bf099904f4d10533cc00ff6f4791ff9bf5c3b1e6b3388f5ee9f8d61783c65cf40fc6b3cc367c049dfd0b62d1edeca659f1

diff --git a/app-admin/prom2json/metadata.xml b/app-admin/prom2json/metadata.xml
new file mode 100644
index 000..eaf3cc3d6f8
--- /dev/null
+++ b/app-admin/prom2json/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+   
+   prometheus/prom2json
+   
+

diff --git a/app-admin/prom2json/prom2json-0.1.0_p20170523.ebuild 
b/app-admin/prom2json/prom2json-0.1.0_p20170523.ebuild
new file mode 100644
index 000..c1596c29bce
--- /dev/null
+++ b/app-admin/prom2json/prom2json-0.1.0_p20170523.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/prometheus/${PN}"
+EGIT_COMMIT="4a7436442837da72f9e211d99f0145dff3246b66"
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="A tool to scrape a Prometheus client and dump the result as JSON"
+HOMEPAGE="https://github.com/prometheus/node_exporter;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-util/promu"
+
+src_prepare() {
+   default
+   sed -i -e "s/{{.Revision}}/${EGIT_COMMIT:0:7}/" 
src/${EGO_PN}/.promu.yml || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   mkdir -p bin || die
+   GOPATH="${S}" promu build -v --prefix ${PN} || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin ${PN}/${PN}
+   dodoc {README,CONTRIBUTING}.md
+   popd || die
+}



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

2017-10-12 Thread Sergei Trofimovich
commit: 45a561f3258e52c032556925ff37e472b6483570
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 18:47:05 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 18:48:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45a561f3

sys-apps/pcsc-lite: stable 1.8.22 for ppc64, bug #633674

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

 sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild 
b/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild
index 7f14616f756..f69aa88c1b6 100644
--- a/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild
+++ b/sys-apps/pcsc-lite/pcsc-lite-1.8.22.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 # upstream.
 LICENSE="BSD ISC MIT GPL-3+ GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 # This is called libusb so that it doesn't fool people in thinking that
 # it is _required_ for USB support. Otherwise they'll disable udev and



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

2017-10-12 Thread Sergei Trofimovich
commit: 9af979af46542bb7464c89680d746ed88a3b45c2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 18:47:13 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 18:48:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9af979af

net-dns/openresolv: stable 3.9.0 for ppc64, bug #633686

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/net-dns/openresolv/openresolv-3.9.0.ebuild 
b/net-dns/openresolv/openresolv-3.9.0.ebuild
index 62e94ca348e..34514595746 100644
--- a/net-dns/openresolv/openresolv-3.9.0.ebuild
+++ b/net-dns/openresolv/openresolv-3.9.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://roy.marples.name/downloads/${PN}/${P}.tar.xz;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux"
 
 DEPEND="!net-dns/resolvconf-gentoo



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

2017-10-12 Thread Sergei Trofimovich
commit: 2ea66bc4127470e8a95b029103876d032c435f40
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 18:47:38 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 18:48:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ea66bc4

net-misc/iprange: stable 1.0.4 for ppc, bug #633690

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/net-misc/iprange/iprange-1.0.4.ebuild 
b/net-misc/iprange/iprange-1.0.4.ebuild
index b4a82f68c67..0b24a6a9d4e 100644
--- a/net-misc/iprange/iprange-1.0.4.ebuild
+++ b/net-misc/iprange/iprange-1.0.4.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/firehol/${PN}/releases/download/v${PV}/${P}.tar.xz;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc"
+KEYWORDS="amd64 ~arm ppc"
 IUSE=""
 
 DEPEND=""



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

2017-10-12 Thread Sergei Trofimovich
commit: 95600fb8082a3a94c2f31d10c8ad63ec4fcba75e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 18:47:34 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 18:48:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95600fb8

net-dns/openresolv: stable 3.9.0 for ppc, bug #633686

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/net-dns/openresolv/openresolv-3.9.0.ebuild 
b/net-dns/openresolv/openresolv-3.9.0.ebuild
index 34514595746..bb62c71603f 100644
--- a/net-dns/openresolv/openresolv-3.9.0.ebuild
+++ b/net-dns/openresolv/openresolv-3.9.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://roy.marples.name/downloads/${PN}/${P}.tar.xz;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux"
 
 DEPEND="!net-dns/resolvconf-gentoo



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

2017-10-12 Thread Sergei Trofimovich
commit: a9abe8157a45274d881d95acf85dbf769491a8e7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 18:47:24 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 18:48:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9abe815

dev-libs/xmlsec: stable 1.2.24-r1 for ppc, bug #633682

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

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



[gentoo-commits] repo/gentoo:master commit in: app-laptop/laptop-mode-tools/

2017-10-12 Thread Sergei Trofimovich
commit: d1755cc13fd7c6f21fd27ad8f77555ed49282cb0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 18:47:29 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 18:48:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1755cc1

app-laptop/laptop-mode-tools: stable 1.71 for ppc, bug #633684

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

 app-laptop/laptop-mode-tools/laptop-mode-tools-1.71.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-laptop/laptop-mode-tools/laptop-mode-tools-1.71.ebuild 
b/app-laptop/laptop-mode-tools/laptop-mode-tools-1.71.ebuild
index 32250ae7f47..76f2e8092a2 100644
--- a/app-laptop/laptop-mode-tools/laptop-mode-tools-1.71.ebuild
+++ b/app-laptop/laptop-mode-tools/laptop-mode-tools-1.71.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/rickysarraf/${PN}/releases/download/${PV}/${MY_P}.ta
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="+acpi apm bluetooth scsi"
 
 RDEPEND="net-wireless/wireless-tools



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

2017-10-12 Thread Sergei Trofimovich
commit: 7ebf9986fb3b17708281c7e514fbb4279977afcb
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 18:47:18 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 18:48:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ebf9986

app-crypt/ccid: stable 1.4.27 for ppc, bug #633680

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/app-crypt/ccid/ccid-1.4.27.ebuild 
b/app-crypt/ccid/ccid-1.4.27.ebuild
index 09e0812e759..82c0a08d4cd 100644
--- a/app-crypt/ccid/ccid-1.4.27.ebuild
+++ b/app-crypt/ccid/ccid-1.4.27.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://alioth.debian.org/frs/download.php/file/${STUPID_NUM}/${P}.tar.b
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
 IUSE="twinserial kobil-midentity +usb"
 
 RDEPEND=">=sys-apps/pcsc-lite-1.8.3



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

2017-10-12 Thread Sergei Trofimovich
commit: b9308047b1c58507461509f7a74dcccb90a32236
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 18:47:09 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 18:48:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9308047

app-crypt/ccid: stable 1.4.27 for ppc64, bug #633680

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/app-crypt/ccid/ccid-1.4.27.ebuild 
b/app-crypt/ccid/ccid-1.4.27.ebuild
index 6fbb05a2bef..09e0812e759 100644
--- a/app-crypt/ccid/ccid-1.4.27.ebuild
+++ b/app-crypt/ccid/ccid-1.4.27.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://alioth.debian.org/frs/download.php/file/${STUPID_NUM}/${P}.tar.b
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86"
 IUSE="twinserial kobil-midentity +usb"
 
 RDEPEND=">=sys-apps/pcsc-lite-1.8.3



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

2017-10-12 Thread Anthony G. Basile
commit: f72e60b5246f2da2a5ec265ed2c7463734b61372
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Oct 12 18:45:02 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Oct 12 18:45:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f72e60b5

net-libs/mbedtls: version bump to 2.6.1

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 net-libs/mbedtls/Manifest |  1 +
 net-libs/mbedtls/mbedtls-2.6.1.ebuild | 93 +++
 2 files changed, 94 insertions(+)

diff --git a/net-libs/mbedtls/Manifest b/net-libs/mbedtls/Manifest
index 90652c5ff2f..f0eabc48225 100644
--- a/net-libs/mbedtls/Manifest
+++ b/net-libs/mbedtls/Manifest
@@ -1 +1,2 @@
 DIST mbedtls-2.6.0.tar.gz 1912899 SHA256 
8ed1e4ef5831968847565e7da1ed9cc0e9aea419da324326ae24912a03c12a1b SHA512 
d03c7adace6647d7d4700bf45becde9d31144bd2adf10cc7f2a73d19fd338c8b81ab8373a81400d74818fd99ce1661979bc5386760b7a68d263fb67406ee2641
 WHIRLPOOL 
066dbe141c7a23ce8ba96f2b39f56b0092309a86fc6a2dab05666ab15bc66a2266a7f1341074bcdc9991b71fda5b5c0b953df13da5b87709ceaa8bc7148b634d
+DIST mbedtls-2.6.1.tar.gz 1912980 SHA256 
d064a8a3babab9ea2ac33675cc843606dbb7a11511fed96fb70aa3189dd64519 SHA512 
06f8ba2a453164bac01d20ca6f5c80e691857977ef501d56685e81a0e90dddae1bedeab46c18c22f9a3b72894d45d7466f76a5c404417b6613ddae0ee4a881c8
 WHIRLPOOL 
cbb8564c65ac8fc31c402bb1651faaf7abde90877c367229b6f098d3dae71b8569bb27dc2b0b818e2dc515c381912912063f0ca049e36e65f5afaf8ac0a45be3

diff --git a/net-libs/mbedtls/mbedtls-2.6.1.ebuild 
b/net-libs/mbedtls/mbedtls-2.6.1.ebuild
new file mode 100644
index 000..a5f6f23f855
--- /dev/null
+++ b/net-libs/mbedtls/mbedtls-2.6.1.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils multilib-minimal
+
+DESCRIPTION="Cryptographic library for embedded systems"
+HOMEPAGE="https://tls.mbed.org/;
+SRC_URI="https://github.com/ARMmbed/mbedtls/archive/${P}.tar.gz;
+S=${WORKDIR}/${PN}-${P}
+
+LICENSE="Apache-2.0"
+SLOT="0/10" # slot for libmbedtls.so
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE="cpu_flags_x86_sse2 doc havege libressl programs test threads zlib"
+
+RDEPEND="
+   programs? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen media-gfx/graphviz )
+   test? ( dev-lang/perl )"
+
+enable_mbedtls_option() {
+   local myopt="$@"
+   # check that config.h syntax is the same at version bump
+   sed -i \
+   -e "s://#define ${myopt}:#define ${myopt}:" \
+   include/mbedtls/config.h || die
+}
+
+src_prepare() {
+   use cpu_flags_x86_sse2 && enable_mbedtls_option MBEDTLS_HAVE_SSE2
+   use zlib && enable_mbedtls_option MBEDTLS_ZLIB_SUPPORT
+   use havege && enable_mbedtls_option MBEDTLS_HAVEGE_C
+   use threads && enable_mbedtls_option MBEDTLS_THREADING_C
+   use threads && enable_mbedtls_option MBEDTLS_THREADING_PTHREAD
+
+   cmake-utils_src_prepare
+}
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DENABLE_PROGRAMS=$(multilib_native_usex programs)
+   -DENABLE_ZLIB_SUPPORT=$(usex zlib)
+   -DUSE_STATIC_MBEDTLS_LIBRARY=OFF
+   -DENABLE_TESTING=$(usex test)
+   -DUSE_SHARED_MBEDTLS_LIBRARY=ON
+   -DINSTALL_MBEDTLS_HEADERS=ON
+   -DLIB_INSTALL_DIR="/usr/$(get_libdir)"
+   )
+
+   cmake-utils_src_configure
+}
+
+multilib_src_compile() {
+   cmake-utils_src_compile
+   use doc && multilib_is_native_abi && emake apidoc
+}
+
+multilib_src_test() {
+   LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${BUILD_DIR}/library" \
+   cmake-utils_src_test
+}
+
+multilib_src_install() {
+   cmake-utils_src_install
+}
+
+multilib_src_install_all() {
+   use doc && HTML_DOCS=( apidoc )
+
+   einstalldocs
+
+   if use programs ; then
+   # avoid file collisions with sys-apps/coreutils
+   local p e
+   for p in "${ED%/}"/usr/bin/* ; do
+   if [[ -x "${p}" && ! -d "${p}" ]] ; then
+   mv "${p}" "${ED%/}"/usr/bin/mbedtls_${p##*/} || 
die
+   fi
+   done
+   for e in aes hash pkey ssl test ; do
+   docinto "${e}"
+   dodoc programs/"${e}"/*.c
+   dodoc programs/"${e}"/*.txt
+   done
+   fi
+}



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

2017-10-12 Thread William Hubbs
commit: 469f3368072850d4c0a514d24a604bf2adc9b5fa
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Oct 12 18:40:47 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Oct 12 18:41:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=469f3368

sys-apps/openrc: 0.32.1 stable on amd64 for bug #633976

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 sys-apps/openrc/openrc-0.32.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/openrc/openrc-0.32.1.ebuild 
b/sys-apps/openrc/openrc-0.32.1.ebuild
index e50431efc97..4791b531c42 100644
--- a/sys-apps/openrc/openrc-0.32.1.ebuild
+++ b/sys-apps/openrc/openrc-0.32.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocplib-simplex/

2017-10-12 Thread Alfredo Tupone
commit: 10942bf83b1eaff5647af5f136793bcb993bd022
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Thu Oct 12 18:38:34 2017 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Thu Oct 12 18:38:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10942bf8

dev-ml/ocplib-simplex: Add dev-ml/ocplib-simplex-0.3

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-ml/ocplib-simplex/Manifest  |  1 +
 dev-ml/ocplib-simplex/metadata.xml  | 12 ++
 dev-ml/ocplib-simplex/ocplib-simplex-0.3.ebuild | 31 +
 3 files changed, 44 insertions(+)

diff --git a/dev-ml/ocplib-simplex/Manifest b/dev-ml/ocplib-simplex/Manifest
new file mode 100644
index 000..531355b8468
--- /dev/null
+++ b/dev-ml/ocplib-simplex/Manifest
@@ -0,0 +1 @@
+DIST ocplib-simplex-0.3.tar.gz 31013 SHA256 
59bf450593e2407d52029140803e0e1343d6e30d1564f65cb2b7ec9582681171 SHA512 
43373deb6e921a31526c27d33808c3520b4f375caf9e5237179db0e8d84b5be3bf43e061e2d991fc6de694958c64c7ede0b258400fb921c4139664e367958630
 WHIRLPOOL 
eb27382e3726bbdb408b41512bb7ff294a5cb6a06335c726ae2c7a197f6fe5c829cdd2f3b2cf6a0bea483e21025fea6146f571aad60c2f91f004dadec770b264

diff --git a/dev-ml/ocplib-simplex/metadata.xml 
b/dev-ml/ocplib-simplex/metadata.xml
new file mode 100644
index 000..01c5e44dd80
--- /dev/null
+++ b/dev-ml/ocplib-simplex/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   tup...@gentoo.org
+   Tupone Alfredo
+   
+   
+   A library implementing a simplex algorithm, in a functional 
style,
+   for solving systems of linear inequalities
+   
+

diff --git a/dev-ml/ocplib-simplex/ocplib-simplex-0.3.ebuild 
b/dev-ml/ocplib-simplex/ocplib-simplex-0.3.ebuild
new file mode 100644
index 000..cf06261cf33
--- /dev/null
+++ b/dev-ml/ocplib-simplex/ocplib-simplex-0.3.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools findlib multilib
+
+DESCRIPTION="A library implementing a simplex algorithm"
+HOMEPAGE="https://github.com/OCamlPro-Iguernlala/ocplib-simplex;
+SRC_URI="https://github.com/OCamlPro-Iguernlala/${PN}/archive/${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1-with-linking-exception"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+DOCS="CHANGES.md README.md extra/simplex_invariants.txt extra/TODO.txt"
+
+src_prepare() {
+   default
+   mv configure.{in,ac} || die
+   eautoreconf
+}
+
+src_install() {
+   findlib_src_install LIBDIR="${D}"usr/"$(get_libdir)"/ocaml
+}



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

2017-10-12 Thread Manuel Rüger
commit: bfbf2da07d356ee5baaa1c55d6cae52acbfb8a8e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 18:31:29 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 18:31:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfbf2da0

net-analyzer/prometheus-node_exporter: Fix metadata.xml

Package-Manager: Portage-2.3.11, Repoman-2.3.3

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

diff --git a/net-analyzer/prometheus-node_exporter/metadata.xml 
b/net-analyzer/prometheus-node_exporter/metadata.xml
index 43b9f018e07..d758c8dfc41 100644
--- a/net-analyzer/prometheus-node_exporter/metadata.xml
+++ b/net-analyzer/prometheus-node_exporter/metadata.xml
@@ -6,6 +6,6 @@
Manuel Rüger


-   prometheus/prometheus-node_exporter
+   prometheus/node_exporter

 



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

2017-10-12 Thread Manuel Rüger
commit: b02f11b8db73f417e3cbbbf1f8bdfdcb3f8097cc
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 18:31:02 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 18:31:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b02f11b8

net-analyzer/prometheus-snmp_exporter: Fix metadata.xml

Package-Manager: Portage-2.3.11, Repoman-2.3.3

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

diff --git a/net-analyzer/prometheus-snmp_exporter/metadata.xml 
b/net-analyzer/prometheus-snmp_exporter/metadata.xml
index 7391ccfbbae..9ea37fba673 100644
--- a/net-analyzer/prometheus-snmp_exporter/metadata.xml
+++ b/net-analyzer/prometheus-snmp_exporter/metadata.xml
@@ -6,6 +6,6 @@
Manuel Rüger


-   prometheus/prometheus-snmp_exporter
+   prometheus/snmp_exporter

 



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/prometheus-blackbox_exporter/files/, ...

2017-10-12 Thread Manuel Rüger
commit: 65f668d31b913a03fa772432ee5755cb9e9c245d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 18:30:34 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 18:30:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65f668d3

net-analyzer/prometheus-blackbox_exporter: Initial version

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 net-analyzer/prometheus-blackbox_exporter/Manifest |  1 +
 .../files/prometheus-blackbox_exporter.confd   |  2 +
 .../files/prometheus-blackbox_exporter.initd   | 19 
 .../prometheus-blackbox_exporter/metadata.xml  | 11 +
 .../prometheus-blackbox_exporter-0.10.0.ebuild | 50 ++
 5 files changed, 83 insertions(+)

diff --git a/net-analyzer/prometheus-blackbox_exporter/Manifest 
b/net-analyzer/prometheus-blackbox_exporter/Manifest
new file mode 100644
index 000..a9cb8e33c56
--- /dev/null
+++ b/net-analyzer/prometheus-blackbox_exporter/Manifest
@@ -0,0 +1 @@
+DIST prometheus-blackbox_exporter-0.10.0.tar.gz 530109 SHA256 
fcadd04112bfd405c56011954bf225a72831d9c4ca4ef3fb5bfdb4107a225907 SHA512 
497246b440b03b964c90f9bcf8ec1bca45c213bc4652ddb92c339b42586746b75a5145e87899381718ba628891faae3dfae39b0196272f572c7213e94ea7295b
 WHIRLPOOL 
73ae4c5d5b1ed14e1f33157b56085f739c3a4078f605caf8798b1783a37fde342a6874b8a9fa0a71854f92511890c7ebbdb39433a2d6b0c701e29c61bccb1299

diff --git 
a/net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.confd
 
b/net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.confd
new file mode 100644
index 000..39887477dff
--- /dev/null
+++ 
b/net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.confd
@@ -0,0 +1,2 @@
+# arguments for prometheus blackbox exporter
+command_args="--config.file=/etc/blackbox_exporter/blackbox.yml"

diff --git 
a/net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.initd
 
b/net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.initd
new file mode 100644
index 000..45da799723d
--- /dev/null
+++ 
b/net-analyzer/prometheus-blackbox_exporter/files/prometheus-blackbox_exporter.initd
@@ -0,0 +1,19 @@
+#!/sbin/openrc-run
+# Copyright 2016-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+description="Prometheus blackbox exporter"
+pidfile=${pidfile:-"/run/${RC_SVCNAME}.pid"}
+user=${user:-${RC_SVCNAME}}
+group=${group:-${RC_SVCNAME}}
+
+command="/usr/bin/blackbox_exporter"
+command_args="${command_args:--config.file=/etc/blackbox_exporter/blackbox.yml}"
+command_background="true"
+start_stop_daemon_args="--user ${user} --group ${group} \
+   --stdout /var/log/blackbox_exporter/${RC_SVCNAME}.log \
+   --stderr /var/log/blackbox_exporter/${RC_SVCNAME}.log"
+
+depend() {
+   after net
+}

diff --git a/net-analyzer/prometheus-blackbox_exporter/metadata.xml 
b/net-analyzer/prometheus-blackbox_exporter/metadata.xml
new file mode 100644
index 000..5d0a20fee17
--- /dev/null
+++ b/net-analyzer/prometheus-blackbox_exporter/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+   
+   prometheus/blackbox_exporter
+   
+

diff --git 
a/net-analyzer/prometheus-blackbox_exporter/prometheus-blackbox_exporter-0.10.0.ebuild
 
b/net-analyzer/prometheus-blackbox_exporter/prometheus-blackbox_exporter-0.10.0.ebuild
new file mode 100644
index 000..c5cf528c542
--- /dev/null
+++ 
b/net-analyzer/prometheus-blackbox_exporter/prometheus-blackbox_exporter-0.10.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/prometheus/blackbox_exporter"
+EGIT_COMMIT="v${PV/_rc/-rc.}"
+BLACKBOX_EXPORTER_COMMIT="75681e3"
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Prometheus exporter for blackbox probing via HTTP, HTTPS, DNS, 
TCP and ICMP"
+HOMEPAGE="https://github.com/prometheus/blackbox_exporter;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-util/promu"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/{{.Revision}}/${BLACBOX_EXPORTER_COMMIT}/" 
src/${EGO_PN}/.promu.yml || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   mkdir -p bin || die
+   GOPATH="${S}" promu build -v --prefix blackbox_exporter || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin blackbox_exporter/blackbox_exporter
+   dodoc {README,CONFIGURATION}.md blackbox.yml
+   insinto /etc/blackbox_exporter
+   newins example.yml blackbox.yml.example
+  

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

2017-10-12 Thread Manuel Rüger
commit: e83e3907606a280bd1c6b90894f8aa6779457c11
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 18:27:03 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 18:29:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e83e3907

net-analyzer/prometheus-snmp_exporter: Fix description

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 .../prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild 
b/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild
index 407d8bf4a08..15ca77ed1b7 100644
--- 
a/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild
+++ 
b/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild
@@ -10,7 +10,7 @@ SNMP_EXPORTER_COMMIT="9147920"
 ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
 KEYWORDS="~amd64"
 
-DESCRIPTION="Prometheus exporter for machine metrics"
+DESCRIPTION="Prometheus exporter for snmp metrics"
 HOMEPAGE="https://github.com/prometheus/snmp_exporter;
 SRC_URI="${ARCHIVE_URI}"
 LICENSE="Apache-2.0"



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

2017-10-12 Thread Manuel Rüger
commit: d41c6725e0c2c2501dbe7b536bde31e6f20d6758
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 18:24:18 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 18:29:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d41c6725

net-analyzer/prometheus-snmp_exporter: Make config file an example

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 .../prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild 
b/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild
index 747c37de355..407d8bf4a08 100644
--- 
a/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild
+++ 
b/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild
@@ -41,7 +41,7 @@ src_install() {
dobin snmp_exporter/snmp_exporter
dodoc {README,CHANGELOG,CONTRIBUTING}.md
insinto /etc/snmp_exporter
-   doins snmp.yml
+   newins snmp.yml snmp.yml.example
popd || die
keepdir /var/lib/snmp_exporter /var/log/snmp_exporter
fowners ${PN}:${PN} /var/lib/snmp_exporter /var/log/snmp_exporter



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

2017-10-12 Thread Sergei Trofimovich
commit: b1c99556303893ae969b5e6864d3ad525e7e5c43
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 18:25:05 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 18:25:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1c99556

sys-fs/btrfs-progs: update live ebuild to use comma separator

https://github.com/kdave/btrfs-progs/commit/ab74bdc1cbc874078f80796537542075741586f3
fixes comma (',') as a list separator.

Package-Manager: Portage-2.3.10, Repoman-2.3.3

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

diff --git a/sys-fs/btrfs-progs/btrfs-progs-.ebuild 
b/sys-fs/btrfs-progs/btrfs-progs-.ebuild
index 0dc40a977f4..49ff5c4dffd 100644
--- a/sys-fs/btrfs-progs/btrfs-progs-.ebuild
+++ b/sys-fs/btrfs-progs/btrfs-progs-.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} !=  ]]; then
 else
WANT_LIBTOOL=none
inherit autotools git-r3
-   EGIT_REPO_URI="git://repo.or.cz/btrfs-progs-unstable/devel.git"
+   EGIT_REPO_URI="https://github.com/kdave/btrfs-progs.git;
EGIT_BRANCH="devel"
 fi
 
@@ -81,9 +81,7 @@ src_configure() {
--bindir="${EPREFIX}"/sbin
$(use_enable convert)
$(use_enable elibc_glibc backtrace)
-   # No whitespace due to 'ext2,reiserfs' being invalid
-   # for configure. TODO: Why it's not valid?
-   --with-convert=ext2$(usex reiserfs 'reiserfs' '')
+   --with-convert=ext2$(usex reiserfs ',reiserfs' '')
)
econf "${myeconfargs[@]}"
 }



[gentoo-commits] repo/gentoo:master commit in: app-backup/btrbk/

2017-10-12 Thread Craig Andrews
commit: 253b163f27eb4b087b79316b5c66f0f9236a5498
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Oct 12 18:10:58 2017 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Oct 12 18:21:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=253b163f

app-backup/btrbk: Bump to 0.26.0

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

 app-backup/btrbk/Manifest |  1 +
 .../btrbk/{btrbk-.ebuild => btrbk-0.26.0.ebuild}  | 19 ---
 app-backup/btrbk/btrbk-.ebuild| 19 ---
 3 files changed, 33 insertions(+), 6 deletions(-)

diff --git a/app-backup/btrbk/Manifest b/app-backup/btrbk/Manifest
index eb62507f4f6..ae497cbf3c5 100644
--- a/app-backup/btrbk/Manifest
+++ b/app-backup/btrbk/Manifest
@@ -1,2 +1,3 @@
 DIST btrbk-0.24.0.tar.xz 72308 SHA256 
032671c2905005d91a87b85acf8daec05df09bfad9e191092610094fb9a65906 SHA512 
fbe180743743ead1241968765b5ae6eff37b2925bee8379443568c126426f2098d280a3f62d13e5f5b63f967ac9889ad9331d73f354d0cd441c907ba92258267
 WHIRLPOOL 
19052093dcec40d4a8bd5593538f6ec44ea2bbaf6a846f966cebb1f1ff76b9c94700a0bad6f16f33258f92fa05180efc2ba770f02db5553e755beb21b6761ed9
 DIST btrbk-0.25.1.tar.xz 74904 SHA256 
25bbfe9352b833761c2ec929d744faa2b33670dac0dc00b6e51ed0d2d64e0c0b SHA512 
6802e379f49c5433a811f6f844cf2663c752b23d8d678f001bb8cba9b099c7527983e23169814c7469ab8682b95fa0f742d1088415747ebebfe0fcc36425cd05
 WHIRLPOOL 
05850216548c01d86b0ec508e11d8085dec597b41bad491cbf65aa9f41432a09b2a0f79ec821bf16c0e7f24271bcb4cce1f9b52352d7d6cd67ef2ac9850a19e0
+DIST btrbk-0.26.0.tar.xz 82472 SHA256 
608c49fa0cdb204d8ef818924d49f520a68a80557bfc8cf6902135377a8136af SHA512 
a08ec4e2e0d164b9a9a17b3d4b8417eb3890994c8aa2233ecda9d616659fce917311a94fdfd6762acacb40dc25a60fe8f6880703c980ccd4a176b14e24a2bb00
 WHIRLPOOL 
183d9f91b9c310921ca2a1e7c6c05946a6b0db0885ff1013d81355170c019d7090fb91a400d62fc1ab3f2ca27fd1f2cf04c4794a88d85684fbbe1d6e8a6cdf67

diff --git a/app-backup/btrbk/btrbk-.ebuild 
b/app-backup/btrbk/btrbk-0.26.0.ebuild
similarity index 60%
copy from app-backup/btrbk/btrbk-.ebuild
copy to app-backup/btrbk/btrbk-0.26.0.ebuild
index 8718b622026..8588eb6d0e3 100644
--- a/app-backup/btrbk/btrbk-.ebuild
+++ b/app-backup/btrbk/btrbk-0.26.0.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
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]] ; then
KEYWORDS=""
 else
SRC_URI="https://digint.ch/download/btrbk/releases/${P}.tar.xz;
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
 fi
 
 DESCRIPTION="Tool for creating snapshots and remote backups of btrfs 
subvolumes"
@@ -21,7 +21,9 @@ LICENSE="GPL-3+"
 SLOT="0"
 IUSE="+pv"
 
-DEPEND=""
+DEPEND=">=app-text/asciidoc-8.6.0
+   app-text/xmlto"
+
 RDEPEND="dev-lang/perl
net-misc/openssh
pv? ( sys-apps/pv )
@@ -30,3 +32,14 @@ RDEPEND="dev-lang/perl
 src_install() {
emake DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" 
SYSTEMDDIR="$(systemd_get_systemunitdir)" install
 }
+pkg_preinst() {
+   if has_version "<${CATEGORY}/${PN}-0.26.0" ; then
+   upgrade_0_26_0_warning="1"
+   fi
+}
+pkg_postinst() {
+   if [[ "${upgrade_0_26_0_warning}" == "1" ]]; then
+   ewarn "If you are using raw targets, make sure to run the"
+   ewarn "\"raw_suffix2sidecar\" utility in each target directory."
+   fi
+}

diff --git a/app-backup/btrbk/btrbk-.ebuild 
b/app-backup/btrbk/btrbk-.ebuild
index 8718b622026..8588eb6d0e3 100644
--- a/app-backup/btrbk/btrbk-.ebuild
+++ b/app-backup/btrbk/btrbk-.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
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]] ; then
KEYWORDS=""
 else
SRC_URI="https://digint.ch/download/btrbk/releases/${P}.tar.xz;
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
 fi
 
 DESCRIPTION="Tool for creating snapshots and remote backups of btrfs 
subvolumes"
@@ -21,7 +21,9 @@ LICENSE="GPL-3+"
 SLOT="0"
 IUSE="+pv"
 
-DEPEND=""
+DEPEND=">=app-text/asciidoc-8.6.0
+   app-text/xmlto"
+
 RDEPEND="dev-lang/perl
net-misc/openssh
pv? ( sys-apps/pv )
@@ -30,3 +32,14 @@ RDEPEND="dev-lang/perl
 src_install() {
emake DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" 
SYSTEMDDIR="$(systemd_get_systemunitdir)" install
 }
+pkg_preinst() {
+   if has_version "<${CATEGORY}/${PN}-0.26.0" ; then
+   upgrade_0_26_0_warning="1"
+   fi
+}
+pkg_postinst() {
+   if [[ "${upgrade_0_26_0_warning}" == "1" ]]; then
+   ewarn "If you are using raw targets, make sure to run the"
+   ewarn "\"raw_suffix2sidecar\" utility 

[gentoo-commits] repo/gentoo:master commit in: app-backup/btrbk/

2017-10-12 Thread Craig Andrews
commit: ac67366554261149c43ddeb20a6e72faa4a86ebe
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Oct 12 17:55:00 2017 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Oct 12 18:21:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac673665

app-backup/btrbk: <=0.25.1 does not work with >=btrfs-progs-4.13.2

See: https://github.com/digint/btrbk/issues/192
Package-Manager: Portage-2.3.11, Repoman-2.3.3

 app-backup/btrbk/{btrbk-0.25.1.ebuild => btrbk-0.25.1-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/btrbk/btrbk-0.25.1.ebuild 
b/app-backup/btrbk/btrbk-0.25.1-r1.ebuild
similarity index 92%
rename from app-backup/btrbk/btrbk-0.25.1.ebuild
rename to app-backup/btrbk/btrbk-0.25.1-r1.ebuild
index 11d760f7b36..10a44f3e713 100644
--- a/app-backup/btrbk/btrbk-0.25.1.ebuild
+++ b/app-backup/btrbk/btrbk-0.25.1-r1.ebuild
@@ -25,7 +25,7 @@ DEPEND=""
 RDEPEND="dev-lang/perl
net-misc/openssh
pv? ( sys-apps/pv )
-   >=sys-fs/btrfs-progs-3.18.2"
+   >=sys-fs/btrfs-progs-3.18.2 

[gentoo-commits] repo/gentoo:master commit in: app-backup/btrbk/

2017-10-12 Thread Craig Andrews
commit: 6e193dd34d4c511965951968aedfd8ff1f6bd032
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Oct 12 18:17:28 2017 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Oct 12 18:21:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e193dd3

app-backup/btrbk: use HTTPS for EGIT_REPO_URI

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 app-backup/btrbk/btrbk-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/btrbk/btrbk-.ebuild 
b/app-backup/btrbk/btrbk-.ebuild
index 8588eb6d0e3..78df68d0241 100644
--- a/app-backup/btrbk/btrbk-.ebuild
+++ b/app-backup/btrbk/btrbk-.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit systemd
 
 if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="git://dev.tty0.ch/btrbk.git"
+   EGIT_REPO_URI="https://github.com/digint/btrbk.git;
inherit git-r3
SRC_URI=""
KEYWORDS=""



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/prometheus-node_exporter/files/, ...

2017-10-12 Thread Manuel Rüger
commit: 6ed05641cba6866a0297e8b0617040bb4008a7e1
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 18:09:13 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 18:09:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ed05641

net-analyzer/prometheus-node_exporter: Version bump to 0.15.0

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 net-analyzer/prometheus-node_exporter/Manifest |  1 +
 .../files/prometheus-node_exporter-1.initd | 19 +
 .../prometheus-node_exporter-0.15.0.ebuild | 48 ++
 3 files changed, 68 insertions(+)

diff --git a/net-analyzer/prometheus-node_exporter/Manifest 
b/net-analyzer/prometheus-node_exporter/Manifest
index 0b7cd7f7c2d..fda3f5741ed 100644
--- a/net-analyzer/prometheus-node_exporter/Manifest
+++ b/net-analyzer/prometheus-node_exporter/Manifest
@@ -1 +1,2 @@
 DIST prometheus-node_exporter-0.14.0.tar.gz 1086402 SHA256 
312d7e1c07d6a7548f2f116b983da87f7b3a7630f9332eb41c306fd71b2e6ec1 SHA512 
28b1c3a17b0065f7005636f0751e535f9455675f7c17546a584fb709f43f2608e4854fe4e7f0e3790b89eff21016b41dccb0a96f16eae466de1040b57c4b1c98
 WHIRLPOOL 
176eb95a76fefb388817fa27f0b43fca9b1ed235d39e73e97254ef829025d7493f710ce0ef2cf11b00ffa509c08f7b12664cdff38939a5ea62eb79e7991c0bd3
+DIST prometheus-node_exporter-0.15.0.tar.gz 1324698 SHA256 
87a057081e2034f85e997f9e1343aaf45e1b6ad9fa51411caf97a03fe1c46ccb SHA512 
0630c112742ef029d24a0086f9cf0a2efcf1125987dc1e6978055d3e74b820bbd91fd2e7391aa5108881a08a2ec06aff4c1500ebbb6644b46fd7e6271f2b8fa9
 WHIRLPOOL 
8d4da98c4df9dd344ea68e64deb550197af04b01251dfc784c992007b24677843af8f5d973fafef6e679ce1b2a769512a43419406252cf5f9d35b91c17011a1f

diff --git 
a/net-analyzer/prometheus-node_exporter/files/prometheus-node_exporter-1.initd 
b/net-analyzer/prometheus-node_exporter/files/prometheus-node_exporter-1.initd
new file mode 100644
index 000..e8268e487d2
--- /dev/null
+++ 
b/net-analyzer/prometheus-node_exporter/files/prometheus-node_exporter-1.initd
@@ -0,0 +1,19 @@
+#!/sbin/openrc-run
+# Copyright 2016-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+description="Prometheus machine metrics exporter"
+pidfile=${pidfile:-"/run/${RC_SVCNAME}.pid"}
+user=${user:-${RC_SVCNAME}}
+group=${group:-${RC_SVCNAME}}
+
+command="/usr/bin/node_exporter"
+command_args="${command_args:---collector.textfile.directory=/var/lib/node_exporter/}"
+command_background="true"
+start_stop_daemon_args="--user ${user} --group ${group} \
+   --stdout /var/log/node_exporter/${RC_SVCNAME}.log \
+   --stderr /var/log/node_exporter/${RC_SVCNAME}.log"
+
+depend() {
+   after net
+}

diff --git 
a/net-analyzer/prometheus-node_exporter/prometheus-node_exporter-0.15.0.ebuild 
b/net-analyzer/prometheus-node_exporter/prometheus-node_exporter-0.15.0.ebuild
new file mode 100644
index 000..b350301d13e
--- /dev/null
+++ 
b/net-analyzer/prometheus-node_exporter/prometheus-node_exporter-0.15.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/prometheus/node_exporter"
+EGIT_COMMIT="v${PV/_rc/-rc.}"
+NODE_EXPORTER_COMMIT="6e2053c"
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Prometheus exporter for machine metrics"
+HOMEPAGE="https://github.com/prometheus/node_exporter;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-util/promu"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/{{.Revision}}/${NODE_EXPORTER_COMMIT}/" 
src/${EGO_PN}/.promu.yml || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   mkdir -p bin || die
+   GOPATH="${S}" promu build -v --prefix node_exporter || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin node_exporter/node_exporter
+   dodoc {README,CHANGELOG,CONTRIBUTING}.md
+   popd || die
+   keepdir /var/lib/node_exporter /var/log/node_exporter
+   fowners ${PN}:${PN} /var/lib/node_exporter /var/log/node_exporter
+   newinitd "${FILESDIR}"/${PN}-1.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/prometheus-snmp_exporter/, ...

2017-10-12 Thread Manuel Rüger
commit: 354cc09a85ef30ef2abf3879fdf986860dc35e3d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 12 18:08:12 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 12 18:08:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354cc09a

net-analyzer/prometheus-snmp_exporter: Initial commit

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 net-analyzer/prometheus-snmp_exporter/Manifest |  1 +
 .../files/prometheus-snmp_exporter.confd   |  2 +
 .../files/prometheus-snmp_exporter.initd   | 19 
 net-analyzer/prometheus-snmp_exporter/metadata.xml | 11 +
 .../prometheus-snmp_exporter-0.7.0.ebuild  | 50 ++
 5 files changed, 83 insertions(+)

diff --git a/net-analyzer/prometheus-snmp_exporter/Manifest 
b/net-analyzer/prometheus-snmp_exporter/Manifest
new file mode 100644
index 000..cba6bc622a0
--- /dev/null
+++ b/net-analyzer/prometheus-snmp_exporter/Manifest
@@ -0,0 +1 @@
+DIST prometheus-snmp_exporter-0.7.0.tar.gz 3250164 SHA256 
da9d0c4baa21a317a88ebbb0e836a4665614d03421d2c4ecb7df7e5217920398 SHA512 
b0564fcd38eb823d136b25c3aa4e8f1df495eb6f262f105e6686adab80a794cd2cc47f51f40606aa4b51d29e0ab6851216b147b37e406e450b4f9559caaee5d1
 WHIRLPOOL 
a0c4a7e53cc24ea712f681440be5757c40f7585037fa8a7f1e71da7aee2fb1a4084d2648e3b0076c452f7740657b710d9eb986b1e97e8b5bf44b04617d2c3405

diff --git 
a/net-analyzer/prometheus-snmp_exporter/files/prometheus-snmp_exporter.confd 
b/net-analyzer/prometheus-snmp_exporter/files/prometheus-snmp_exporter.confd
new file mode 100644
index 000..e80d6a1a850
--- /dev/null
+++ b/net-analyzer/prometheus-snmp_exporter/files/prometheus-snmp_exporter.confd
@@ -0,0 +1,2 @@
+# arguments for prometheus snmp exporter
+command_args="--config-file=/etc/snmp_exporter/snmp.yml"

diff --git 
a/net-analyzer/prometheus-snmp_exporter/files/prometheus-snmp_exporter.initd 
b/net-analyzer/prometheus-snmp_exporter/files/prometheus-snmp_exporter.initd
new file mode 100644
index 000..4d620b54b17
--- /dev/null
+++ b/net-analyzer/prometheus-snmp_exporter/files/prometheus-snmp_exporter.initd
@@ -0,0 +1,19 @@
+#!/sbin/openrc-run
+# Copyright 2016-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+description="Prometheus snmp exporter"
+pidfile=${pidfile:-"/run/${RC_SVCNAME}.pid"}
+user=${user:-${RC_SVCNAME}}
+group=${group:-${RC_SVCNAME}}
+
+command="/usr/bin/snmp_exporter"
+command_args="${command_args:---config-file=/etc/snmp_exporter/snmp.yml}"
+command_background="true"
+start_stop_daemon_args="--user ${user} --group ${group} \
+   --stdout /var/log/snmp_exporter/${RC_SVCNAME}.log \
+   --stderr /var/log/snmp_exporter/${RC_SVCNAME}.log"
+
+depend() {
+   after net
+}

diff --git a/net-analyzer/prometheus-snmp_exporter/metadata.xml 
b/net-analyzer/prometheus-snmp_exporter/metadata.xml
new file mode 100644
index 000..7391ccfbbae
--- /dev/null
+++ b/net-analyzer/prometheus-snmp_exporter/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+   
+   prometheus/prometheus-snmp_exporter
+   
+

diff --git 
a/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild 
b/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild
new file mode 100644
index 000..747c37de355
--- /dev/null
+++ 
b/net-analyzer/prometheus-snmp_exporter/prometheus-snmp_exporter-0.7.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/prometheus/snmp_exporter"
+EGIT_COMMIT="v${PV/_rc/-rc.}"
+SNMP_EXPORTER_COMMIT="9147920"
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Prometheus exporter for machine metrics"
+HOMEPAGE="https://github.com/prometheus/snmp_exporter;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-util/promu"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/{{.Revision}}/${SNMP_EXPORTER_COMMIT}/" 
src/${EGO_PN}/.promu.yml || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   mkdir -p bin || die
+   GOPATH="${S}" promu build -v --prefix snmp_exporter || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin snmp_exporter/snmp_exporter
+   dodoc {README,CHANGELOG,CONTRIBUTING}.md
+   insinto /etc/snmp_exporter
+   doins snmp.yml
+   popd || die
+   keepdir /var/lib/snmp_exporter /var/log/snmp_exporter
+   fowners ${PN}:${PN} /var/lib/snmp_exporter /var/log/snmp_exporter
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd 

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

2017-10-12 Thread Johannes Huber
commit: d0cce997bcc505c6731389ccacf8c669205d2af7
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Oct 12 17:57:00 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Oct 12 17:57:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0cce997

kde-plasma/kwin: Add missing patch

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 .../kwin/files/kwin-5.10.95-test-optional.patch| 34 ++
 1 file changed, 34 insertions(+)

diff --git a/kde-plasma/kwin/files/kwin-5.10.95-test-optional.patch 
b/kde-plasma/kwin/files/kwin-5.10.95-test-optional.patch
new file mode 100644
index 000..e52934b3ec5
--- /dev/null
+++ b/kde-plasma/kwin/files/kwin-5.10.95-test-optional.patch
@@ -0,0 +1,34 @@
+From 89db55c3983abee3dd42cef3cff2f83e94121be8 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Thu, 14 Sep 2017 10:02:04 +0200
+Subject: [PATCH] Put effectModelTest behind BUILD_TESTING conditional
+
+Qt5Test, so tests need to be too.
+---
+ kcmkwin/kwincompositing/CMakeLists.txt | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/kcmkwin/kwincompositing/CMakeLists.txt 
b/kcmkwin/kwincompositing/CMakeLists.txt
+index 350ef85de..75758a4a0 100644
+--- a/kcmkwin/kwincompositing/CMakeLists.txt
 b/kcmkwin/kwincompositing/CMakeLists.txt
+@@ -46,7 +46,7 @@ target_link_libraries(kwincompositing
+ kwin4_effect_builtins
+ )
+ 
+-
++if(BUILD_TESTING)
+ set(modelTest_SRC
+ model.cpp
+ effectconfig.cpp
+@@ -77,6 +77,7 @@ target_link_libraries(effectModelTest
+ kwineffects
+ kwin4_effect_builtins
+ )
++endif()
+ 
+ INSTALL(DIRECTORY qml DESTINATION ${DATA_INSTALL_DIR}/kwincompositing)
+ INSTALL(TARGETS kwincompositing DESTINATION ${PLUGIN_INSTALL_DIR})
+-- 
+2.13.5
+



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/breeze-plymouth/, kde-plasma/kwayland-integration/, ...

2017-10-12 Thread Johannes Huber
commit: 4fe359a11b3f9908a7cf476ff8d56c21cbc7bf2f
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Oct 12 17:42:04 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Oct 12 17:45:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fe359a1

kde-plasma: Version bump KDE Plasma 5.11.0

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 kde-plasma/bluedevil/Manifest  |   1 +
 kde-plasma/bluedevil/bluedevil-5.11.0.ebuild   |  40 +
 kde-plasma/breeze-grub/Manifest|   1 +
 kde-plasma/breeze-grub/breeze-grub-5.11.0.ebuild   |  30 
 kde-plasma/breeze-gtk/Manifest |   1 +
 kde-plasma/breeze-gtk/breeze-gtk-5.11.0.ebuild |  12 ++
 kde-plasma/breeze-plymouth/Manifest|   1 +
 .../breeze-plymouth/breeze-plymouth-5.11.0.ebuild  |  26 
 kde-plasma/breeze/Manifest |   1 +
 kde-plasma/breeze/breeze-5.11.0.ebuild |  76 +
 kde-plasma/drkonqi/Manifest|   1 +
 kde-plasma/drkonqi/drkonqi-5.11.0.ebuild   |  55 +++
 kde-plasma/drkonqi/metadata.xml|   8 +
 kde-plasma/kactivitymanagerd/Manifest  |   1 +
 .../kactivitymanagerd-5.11.0.ebuild|  35 +
 kde-plasma/kde-cli-tools/Manifest  |   1 +
 .../kde-cli-tools/kde-cli-tools-5.11.0.ebuild  |  59 +++
 kde-plasma/kde-gtk-config/Manifest |   1 +
 .../kde-gtk-config/kde-gtk-config-5.11.0.ebuild|  58 +++
 kde-plasma/kdecoration/Manifest|   1 +
 kde-plasma/kdecoration/kdecoration-5.11.0.ebuild   |  16 ++
 kde-plasma/kdeplasma-addons/Manifest   |   1 +
 .../kdeplasma-addons-5.11.0.ebuild |  56 +++
 kde-plasma/kgamma/Manifest |   1 +
 kde-plasma/kgamma/kgamma-5.11.0.ebuild |  26 
 kde-plasma/khotkeys/Manifest   |   1 +
 kde-plasma/khotkeys/khotkeys-5.11.0.ebuild |  46 ++
 kde-plasma/kinfocenter/Manifest|   1 +
 kde-plasma/kinfocenter/kinfocenter-5.11.0.ebuild   |  91 +++
 kde-plasma/kmenuedit/Manifest  |   1 +
 kde-plasma/kmenuedit/kmenuedit-5.11.0.ebuild   |  44 ++
 kde-plasma/kscreen/Manifest|   1 +
 kde-plasma/kscreen/kscreen-5.11.0.ebuild   |  38 +
 kde-plasma/kscreenlocker/Manifest  |   1 +
 .../kscreenlocker/kscreenlocker-5.11.0.ebuild  |  92 +++
 kde-plasma/ksshaskpass/Manifest|   1 +
 kde-plasma/ksshaskpass/ksshaskpass-5.11.0.ebuild   |  49 ++
 kde-plasma/ksysguard/Manifest  |   1 +
 kde-plasma/ksysguard/ksysguard-5.11.0.ebuild   |  47 ++
 kde-plasma/kwallet-pam/Manifest|   1 +
 kde-plasma/kwallet-pam/kwallet-pam-5.11.0.ebuild   |  53 +++
 kde-plasma/kwayland-integration/Manifest   |   1 +
 .../kwayland-integration-5.11.0.ebuild |  22 +++
 kde-plasma/kwin/Manifest   |   1 +
 kde-plasma/kwin/kwin-5.11.0.ebuild |  92 +++
 kde-plasma/kwrited/Manifest|   1 +
 kde-plasma/kwrited/kwrited-5.11.0.ebuild   |  23 +++
 kde-plasma/libkscreen/Manifest |   1 +
 kde-plasma/libkscreen/libkscreen-5.11.0.ebuild |  27 
 kde-plasma/libksysguard/Manifest   |   1 +
 kde-plasma/libksysguard/libksysguard-5.11.0.ebuild |  53 +++
 kde-plasma/milou/Manifest  |   1 +
 kde-plasma/milou/milou-5.11.0.ebuild   |  30 
 kde-plasma/oxygen/Manifest |   1 +
 kde-plasma/oxygen/oxygen-5.11.0.ebuild |  91 +++
 kde-plasma/plasma-desktop/Manifest |   1 +
 kde-plasma/plasma-desktop/metadata.xml |   2 +
 .../plasma-desktop/plasma-desktop-5.11.0.ebuild| 153 ++
 kde-plasma/plasma-integration/Manifest |   1 +
 .../plasma-integration-5.11.0.ebuild   |  43 +
 kde-plasma/plasma-meta/metadata.xml|   1 +
 kde-plasma/plasma-meta/plasma-meta-5.11.0.ebuild   |  70 +
 kde-plasma/plasma-nm/Manifest  |   1 +
 kde-plasma/plasma-nm/plasma-nm-5.11.0.ebuild   |  65 
 kde-plasma/plasma-pa/Manifest  |   1 +
 kde-plasma/plasma-pa/plasma-pa-5.11.0.ebuild   |  29 
 kde-plasma/plasma-sdk/Manifest |   1 +
 kde-plasma/plasma-sdk/plasma-sdk-5.11.0.ebuild |  39 +
 kde-plasma/plasma-vault/Manifest   |   1 +
 kde-plasma/plasma-vault/plasma-vault-5.11.0.ebuild |  32 
 kde-plasma/plasma-workspace-wallpapers/Manifest|   1 +
 .../plasma-workspace-wallpapers-5.11.0.ebuild  |  18 +++
 kde-plasma/plasma-workspace/Manifest   |   1 +
 .../plasma-workspace-5.11.0.ebuild   

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

2017-10-12 Thread Johannes Huber
commit: a0fa0377c893a34180f9233b519c0edcbd046d33
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Oct 12 17:42:59 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Oct 12 17:45:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0fa0377

kde5-functions.eclass: Require KF 5.38 for KDE Plasma 5.11

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

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index 2e6b85bbc81..345408aae2b 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -35,6 +35,7 @@ case ${CATEGORY} in
[[ ${KDE_BUILD_TYPE} = live ]] && : ${FRAMEWORKS_MINIMAL:=}
;;
kde-plasma)
+   [[ ${PV} = 5.11* ]] && : ${FRAMEWORKS_MINIMAL:=5.38.0}
if [[ ${KDE_BUILD_TYPE} = live ]]; then
: ${FRAMEWORKS_MINIMAL:=}
fi



[gentoo-commits] proj/kde:master commit in: kde-plasma/kdecoration/, kde-plasma/plasma-workspace/, kde-plasma/khotkeys/, ...

2017-10-12 Thread Johannes Huber
commit: c62c25f360a8ae2efa3db22abc53c2de1f4a24e6
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Oct 12 17:46:00 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Oct 12 17:46:00 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c62c25f3

kde-plasma: Remove KDE Plasma 5.11.0

Moved to Gentoo main tree.

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 kde-plasma/bluedevil/bluedevil-5.11.0.ebuild   |  40 -
 kde-plasma/breeze-grub/breeze-grub-5.11.0.ebuild   |  30 
 kde-plasma/breeze-gtk/breeze-gtk-5.11.0.ebuild |  12 --
 .../breeze-plymouth/breeze-plymouth-5.11.0.ebuild  |  26 
 kde-plasma/breeze/breeze-5.11.0.ebuild |  76 -
 kde-plasma/drkonqi/drkonqi-5.11.0.ebuild   |  55 ---
 .../kactivitymanagerd-5.11.0.ebuild|  35 -
 .../kde-cli-tools/kde-cli-tools-5.11.0.ebuild  |  59 ---
 .../kde-gtk-config/kde-gtk-config-5.11.0.ebuild|  58 ---
 kde-plasma/kdecoration/kdecoration-5.11.0.ebuild   |  16 --
 .../kdeplasma-addons-5.11.0.ebuild |  56 ---
 kde-plasma/kgamma/kgamma-5.11.0.ebuild |  26 
 kde-plasma/khotkeys/khotkeys-5.11.0.ebuild |  46 --
 kde-plasma/kinfocenter/kinfocenter-5.11.0.ebuild   |  91 ---
 kde-plasma/kmenuedit/kmenuedit-5.11.0.ebuild   |  44 --
 kde-plasma/kscreen/kscreen-5.11.0.ebuild   |  38 -
 .../kscreenlocker/kscreenlocker-5.11.0.ebuild  |  92 ---
 kde-plasma/ksshaskpass/ksshaskpass-5.11.0.ebuild   |  49 --
 kde-plasma/ksysguard/ksysguard-5.11.0.ebuild   |  47 --
 kde-plasma/kwallet-pam/kwallet-pam-5.11.0.ebuild   |  53 ---
 .../kwayland-integration-5.11.0.ebuild |  22 ---
 kde-plasma/kwin/kwin-5.11.0.ebuild |  92 ---
 kde-plasma/kwrited/kwrited-5.11.0.ebuild   |  23 ---
 kde-plasma/libkscreen/libkscreen-5.11.0.ebuild |  27 
 kde-plasma/libksysguard/libksysguard-5.11.0.ebuild |  53 ---
 kde-plasma/milou/milou-5.11.0.ebuild   |  30 
 kde-plasma/oxygen/oxygen-5.11.0.ebuild |  91 ---
 .../plasma-desktop/plasma-desktop-5.11.0.ebuild| 153 --
 .../plasma-integration-5.11.0.ebuild   |  43 -
 kde-plasma/plasma-meta/plasma-meta-5.11.0.ebuild   |  70 -
 kde-plasma/plasma-nm/plasma-nm-5.11.0.ebuild   |  65 
 kde-plasma/plasma-pa/plasma-pa-5.11.0.ebuild   |  29 
 kde-plasma/plasma-sdk/plasma-sdk-5.11.0.ebuild |  39 -
 kde-plasma/plasma-vault/plasma-vault-5.11.0.ebuild |  32 
 .../plasma-workspace-wallpapers-5.11.0.ebuild  |  18 ---
 .../plasma-workspace-5.11.0.ebuild | 173 -
 kde-plasma/plymouth-kcm/plymouth-kcm-5.11.0.ebuild |  36 -
 .../polkit-kde-agent-5.11.0.ebuild |  30 
 kde-plasma/powerdevil/powerdevil-5.11.0.ebuild |  82 --
 kde-plasma/sddm-kcm/sddm-kcm-5.11.0.ebuild |  41 -
 .../systemsettings/systemsettings-5.11.0.ebuild|  49 --
 kde-plasma/user-manager/user-manager-5.11.0.ebuild |  27 
 42 files changed, 2174 deletions(-)

diff --git a/kde-plasma/bluedevil/bluedevil-5.11.0.ebuild 
b/kde-plasma/bluedevil/bluedevil-5.11.0.ebuild
deleted file mode 100644
index 1b30c235b0..00
--- a/kde-plasma/bluedevil/bluedevil-5.11.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit kde5
-
-DESCRIPTION="Bluetooth stack for KDE Plasma"
-HOMEPAGE="https://projects.kde.org/projects/extragear/base/bluedevil;
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-COMMON_DEPEND="
-   $(add_frameworks_dep bluez-qt)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kded)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep plasma)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-"
-DEPEND="${COMMON_DEPEND}
-   x11-misc/shared-mime-info
-"
-RDEPEND="${COMMON_DEPEND}
-   $(add_plasma_dep kde-cli-tools)
-   !app-mobilephone/obexd
-   !app-mobilephone/obex-data-server
-   !kde-plasma/bluedevil:4
-"

diff --git a/kde-plasma/breeze-grub/breeze-grub-5.11.0.ebuild 
b/kde-plasma/breeze-grub/breeze-grub-5.11.0.ebuild
deleted file mode 100644
index 70488d313e..00
--- a/kde-plasma/breeze-grub/breeze-grub-5.11.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public 

[gentoo-commits] proj/kde:master commit in: kde-frameworks/qqc2-desktop-style/

2017-10-12 Thread Johannes Huber
commit: 0b3e4c3ccd5c43ba68004581431683979df85c07
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Oct 12 17:46:45 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Oct 12 17:46:45 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0b3e4c3c

kde-frameworks/qqc2-desktop-style: Remove 5.10.95

Moved to Gentoo main tree.

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 .../qqc2-desktop-style-5.10.95.ebuild  | 24 --
 1 file changed, 24 deletions(-)

diff --git 
a/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.10.95.ebuild 
b/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.10.95.ebuild
deleted file mode 100644
index f1ddd6e92f..00
--- a/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.10.95.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit kde5
-
-DESCRIPTION="Style for QtQuickControls 2 that uses QWidget's QStyle for 
painting"
-SRC_URI="mirror://kde/unstable/${PN}/${P}.tar.xz"
-
-KEYWORDS="~amd64 ~arm ~x86"
-LICENSE="|| ( GPL-2+ LGPL-3+ )"
-IUSE=""
-
-# drop qtdeclarative subslot operator when QT_MINIMAL >= 5.8.0
-DEPEND="
-   $(add_qt_dep qtdeclarative '' '' '5=')
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-"
-RDEPEND="${DEPEND}
-   $(add_qt_dep qtgraphicaleffects)
-   $(add_qt_dep qtquickcontrols2)
-"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/qqc2-desktop-style/

2017-10-12 Thread Johannes Huber
commit: b6765708eb4efeedb703b907f3c380905466818b
Author: Johannes Huber  gentoo  org>
AuthorDate: Thu Oct 12 17:28:30 2017 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Thu Oct 12 17:45:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6765708

kde-frameworks/qqc2-desktop-style: New package

Import from kde overlay. Needed for KDE Plasma 5.11. Initial ebuild by
Andreas Sturmlechner  gentoo.org>.

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 kde-frameworks/qqc2-desktop-style/Manifest |  1 +
 kde-frameworks/qqc2-desktop-style/metadata.xml |  8 
 .../qqc2-desktop-style-5.10.95.ebuild  | 24 ++
 3 files changed, 33 insertions(+)

diff --git a/kde-frameworks/qqc2-desktop-style/Manifest 
b/kde-frameworks/qqc2-desktop-style/Manifest
new file mode 100644
index 000..476ac494b40
--- /dev/null
+++ b/kde-frameworks/qqc2-desktop-style/Manifest
@@ -0,0 +1 @@
+DIST qqc2-desktop-style-5.10.95.tar.xz 32520 SHA256 
bafa0600f096826ba371a1e1366e04b6c9a47c7de81cb403df1caec5d809d82f SHA512 
0d9b7580a0e84ac13910ca8e706d86382a7f26eeca7010b330d9dadb704640e9d8a078cd2a1b0a603688c9b6015de1f196c1e2c8ff006d5f39ae787cbfed1202
 WHIRLPOOL 
ccf1e4b4482cc1c33682e0b1e2fe7136e6a16873d6b88b0bcefdf20db590087526d47f85ab122a13bc3b7a3accfce9dc081c72f14782fc91d9a22ac321daaaca

diff --git a/kde-frameworks/qqc2-desktop-style/metadata.xml 
b/kde-frameworks/qqc2-desktop-style/metadata.xml
new file mode 100644
index 000..2fdbf33d963
--- /dev/null
+++ b/kde-frameworks/qqc2-desktop-style/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   k...@gentoo.org
+   Gentoo KDE Project
+   
+

diff --git 
a/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.10.95.ebuild 
b/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.10.95.ebuild
new file mode 100644
index 000..f1ddd6e92fe
--- /dev/null
+++ b/kde-frameworks/qqc2-desktop-style/qqc2-desktop-style-5.10.95.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit kde5
+
+DESCRIPTION="Style for QtQuickControls 2 that uses QWidget's QStyle for 
painting"
+SRC_URI="mirror://kde/unstable/${PN}/${P}.tar.xz"
+
+KEYWORDS="~amd64 ~arm ~x86"
+LICENSE="|| ( GPL-2+ LGPL-3+ )"
+IUSE=""
+
+# drop qtdeclarative subslot operator when QT_MINIMAL >= 5.8.0
+DEPEND="
+   $(add_qt_dep qtdeclarative '' '' '5=')
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtwidgets)
+"
+RDEPEND="${DEPEND}
+   $(add_qt_dep qtgraphicaleffects)
+   $(add_qt_dep qtquickcontrols2)
+"



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

2017-10-12 Thread Andreas Sturmlechner
commit: 803052ec7a91d2323d13391b3ac2981e51237deb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 12 17:34:18 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 12 17:34:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=803052ec

kde-apps/ktuberling: Tarball respun

Package-Manager: Portage-2.3.11, Repoman-2.3.3

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

diff --git a/kde-apps/ktuberling/Manifest b/kde-apps/ktuberling/Manifest
index 41d9cec3707..700abd27c2e 100644
--- a/kde-apps/ktuberling/Manifest
+++ b/kde-apps/ktuberling/Manifest
@@ -1,2 +1,2 @@
 DIST ktuberling-17.04.3.tar.xz 32764788 SHA256 
2de0ee5d1cfb51b4621e85caf73751fc2970a794199e13d63de4a60ba569c640 SHA512 
f5f9c4bf7e040ac2b61b020ee55445584628823b36e13d257e66a06a2eea2a80d5437a2c27750f352cde8076e349fcee4bbdd4b9adf43c022dfa294d8e3e81b6
 WHIRLPOOL 
a87e8da84f0d3dc154239bec00c2f22b3af27155df414aa50e3a34bf47315c3c515c925e03a851b8c91ed6a8ab78e3259ea159a6183ab47a63026d683faee22b
-DIST ktuberling-17.08.2.tar.xz 26607616 SHA256 
1aedb22208096b579d91a3de9bcb4c3a364f8a4254e5f5be0527f9d979d1aaaf SHA512 
89c99b7bb330dca9f759eb19f338e605518853d7ef814cde396b0094257165af0f72c7d8bc138078ac50214c361d98ce10728335a6fef45f66c0ea23edde8609
 WHIRLPOOL 
2482688730030c9d914c1688a4cc6064f6e52e3d278e17fe70be7e217a08d0d7779a486ee2a3f71207944a9bce083c7dc3b9d92884aa8fca197919fef76b4a8f
+DIST ktuberling-17.08.2.tar.xz 32763756 SHA256 
d81dded9ae2ce1b62e3371db0749bc238ba2f0eb078431445200c9bf3ef17c0b SHA512 
18d5073217893610daaf0308407e9d5cd109c4487cfa4c170d83c12ba35feea44b3d7fcd1327da81fbd8ac0e9b8a1c560b7303401a8ce9252118c06327231f08
 WHIRLPOOL 
8853fc6fa739824b87dd9b00f7f0b6620c52ddf668efa4d43364159c6f860441dab9045caea3172885431aa4e5c8f141211317aa01fa91bf5c9eca4f6ff6d9e5



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

2017-10-12 Thread Sergei Trofimovich
commit: 34d05121ef11c2eee93ed3a382141799803cc381
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 12 17:33:50 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 12 17:34:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34d05121

dev-util/radare2: bump up to 2.0.1

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-util/radare2/Manifest |  1 +
 dev-util/radare2/radare2-2.0.1.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-util/radare2/Manifest b/dev-util/radare2/Manifest
index 0db15992eea..6c40a371368 100644
--- a/dev-util/radare2/Manifest
+++ b/dev-util/radare2/Manifest
@@ -4,3 +4,4 @@ DIST radare2-1.3.0.tar.gz 8517265 SHA256 
adf9bbfb36b5cff986e8218455d75d7410e41e2
 DIST radare2-1.4.0.tar.gz 8719644 SHA256 
bf6e9ad94fd5828d3936563b8b13218433fbf44231cacfdf37a7312ae2b3e93e SHA512 
5d022759e53f762094e237a29780d63dc4f39601ceacb22f58206bbb83a38a8938ea2321e49426b03421dcb0f6493a96f18905f8bf81025293f9c1a8087a4a0a
 WHIRLPOOL 
a86f5389d4905b970b22cd79b217d71a37a980b780b53078e5bcaf623d66e24999fb77a9d9b527986f5e9193b72f6b158e8dbefbed4d2557bdd9f0abffc88199
 DIST radare2-1.6.0.tar.gz 5752191 SHA256 
759d1c65dcd69d1189fc73e427c568ec234a7ca1958c19f5001c255dd31a3787 SHA512 
6e1485c4edaa007790c07a8cfe190c4ea3e4df843620e2575587478e60f1be3dacaa0c545c84e135a51d9f7aff61c27f712c0ffa6038b556d347151f2a3cd2bb
 WHIRLPOOL 
6a35b3b58bc5ec248de53ca3970c4791a8d837b330109f832ccd12d0660537ca0fa62101b806dc29f1123bd48d4139bd7ef1856f5fdbd31afe67daea384f1872
 DIST radare2-2.0.0.tar.gz 6003014 SHA256 
7d734cb3c047774600928110c8f8b970eb6117630b66d2c7284bc4ed68242c83 SHA512 
387e08d06d017aac7ea7c1d6c6d1f761808ac689c85a5de22b796356fb5580d4cd6218a994ec86fbf9e9864def6d7d589bef290cacc2b10b241fe9681b80a985
 WHIRLPOOL 
df8ca26f4f03ced670c6d911d1291a233aa1bf6e0236ee2ab34394f43afd49f7bf1ff9e7bbfd9b3c8853d126b2feeeaa64fe3553d2cc41504a3335b18c099164
+DIST radare2-2.0.1.tar.gz 6001927 SHA256 
d8f7e1ab96028fc8bd62d4f92fbbe8bbf48c6cda8112e6eaec93bf5ffbbbd1dd SHA512 
1a8db3c71895fd9ccf284e7d0747770a5490872c5ee7f8e6d1c3a2590d2b344873bfc11b5f686bd08caa441bb787b2ec86aae9e83bf61e296f6a233d3ba35207
 WHIRLPOOL 
276f5628482a56eba3596a04f42a5fa60ed267ed09efea1adef1305cb3313d6ff59b0821ad05b5421620caa3e902f0839c61c619156f5bc1e1966d33261d1e3e

diff --git a/dev-util/radare2/radare2-2.0.1.ebuild 
b/dev-util/radare2/radare2-2.0.1.ebuild
new file mode 100644
index 000..cf3939d9299
--- /dev/null
+++ b/dev-util/radare2/radare2-2.0.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils
+
+DESCRIPTION="unix-like reverse engineering framework and commandline tools"
+HOMEPAGE="http://www.radare.org;
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/radare/radare2;
+else
+   SRC_URI="https://github.com/radare/radare2/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86 ~arm ~arm64"
+   PATCHES=( "${FILESDIR}"/${PN}-0.9.9-nogit.patch )
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="ssl +system-capstone zsh-completion"
+
+RDEPEND="
+   ssl? ( dev-libs/openssl:0= )
+   system-capstone? ( dev-libs/capstone:0= )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_configure() {
+   econf \
+   $(use_with ssl openssl) \
+   $(use_with system-capstone syscapstone)
+}
+
+src_install() {
+   default
+
+   if use zsh-completion; then
+   insinto /usr/share/zsh/site-functions
+   doins doc/zsh/_*
+   fi
+
+   # a workaround for unstable $(INSTALL) call, bug #574866
+   local d
+   for d in doc/*; do
+   if [[ -d $d ]]; then
+   rm -rfv "$d" || die "failed to delete '$d'"
+   fi
+   done
+}



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

2017-10-12 Thread Tim Harder
commit: 7368c330319013afbb49ac1b2d03296c84744164
Author: Tim Harder  gentoo  org>
AuthorDate: Thu Oct 12 17:28:02 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Thu Oct 12 17:33:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7368c330

media-gfx/sxiv: remove old

 media-gfx/sxiv/sxiv-1.3.2.ebuild | 53 
 1 file changed, 53 deletions(-)

diff --git a/media-gfx/sxiv/sxiv-1.3.2.ebuild b/media-gfx/sxiv/sxiv-1.3.2.ebuild
deleted file mode 100644
index a5ce018584d..000
--- a/media-gfx/sxiv/sxiv-1.3.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils fdo-mime gnome2-utils savedconfig toolchain-funcs
-
-DESCRIPTION="Simple (or small or suckless) X Image Viewer"
-HOMEPAGE="https://github.com/muennich/sxiv/;
-SRC_URI="https://github.com/muennich/sxiv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   media-libs/libexif
-   media-libs/giflib
-   media-libs/imlib2[X]
-   x11-libs/libX11
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   sed -i '/^LDFLAGS/d' Makefile || die
-   tc-export CC
-
-   restore_config config.h
-   default
-}
-
-src_install() {
-   emake DESTDIR="${ED}" PREFIX=/usr install
-   emake -C icon DESTDIR="${ED}" PREFIX=/usr install
-   dodoc README.md
-   domenu sxiv.desktop
-
-   save_config config.h
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   fdo-mime_desktop_database_update
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   fdo-mime_desktop_database_update
-   gnome2_icon_cache_update
-}



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

2017-10-12 Thread Tim Harder
commit: 6524ca216e0faa640f1cf09a222e7f6d7a0133fa
Author: Tim Harder  gentoo  org>
AuthorDate: Thu Oct 12 17:32:23 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Thu Oct 12 17:33:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6524ca21

media-gfx/sxiv: update live ebuild

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

diff --git a/media-gfx/sxiv/sxiv-.ebuild b/media-gfx/sxiv/sxiv-.ebuild
index 3e670c67d76..97e80c6e0ef 100644
--- a/media-gfx/sxiv/sxiv-.ebuild
+++ b/media-gfx/sxiv/sxiv-.ebuild
@@ -39,7 +39,7 @@ src_prepare() {
 }
 
 src_compile() {
-   emake $(usex exif "" NO_LIBEXIF=1) $(usex gif "" NO_GIFLIB=1)
+   emake V=1 HAVE_LIBEXIF=$(usex exif 1 0) HAVE_GIFLIB=$(usex gif 1 0)
 }
 
 src_install() {



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

2017-10-12 Thread Tim Harder
commit: 8740c29e79aec132e33f29b227e13ed5a15e7492
Author: Tim Harder  gentoo  org>
AuthorDate: Thu Oct 12 17:25:45 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Thu Oct 12 17:33:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8740c29e

media-gfx/sxiv: stabilize 1.3.2-r2

 media-gfx/sxiv/sxiv-1.3.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/sxiv/sxiv-1.3.2-r2.ebuild 
b/media-gfx/sxiv/sxiv-1.3.2-r2.ebuild
index 937dac0c4cf..cbff57e3992 100644
--- a/media-gfx/sxiv/sxiv-1.3.2-r2.ebuild
+++ b/media-gfx/sxiv/sxiv-1.3.2-r2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/muennich/sxiv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 x86"
 fi
 
 DESCRIPTION="Simple (or small or suckless) X Image Viewer"



  1   2   3   >