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

2018-05-19 Thread Aaron Bauman
commit: 59ceecc592c49f454e33025b5d8b136ab5bb12c7
Author: Gabriel Linder  gmail  com>
AuthorDate: Wed Mar 14 20:55:44 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 02:29:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59ceecc5

sci-mathematics/pymc3: Fix installation error, bug #632334

Closes: https://bugs.gentoo.org/632334
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/7463

 sci-mathematics/pymc3/pymc3-3.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/pymc3/pymc3-3.1.ebuild 
b/sci-mathematics/pymc3/pymc3-3.1.ebuild
index 0361603fbe9..658b90729d1 100644
--- a/sci-mathematics/pymc3/pymc3-3.1.ebuild
+++ b/sci-mathematics/pymc3/pymc3-3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -46,7 +46,7 @@ DEPEND="
)
 "
 
-DOCS=(CHANGELOG.md  CONTRIBUTING.md RELEASE-NOTES.md
+DOCS=(CONTRIBUTING.md RELEASE-NOTES.md
  CONDUCT.md GOVERNANCE.md README.rst)
 
 python_prepare_all() {



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

2018-05-19 Thread Aaron Bauman
commit: f146a313748777cdf62c11c7dcc53c9ef687e778
Author: Jacendi  artofad  ru>
AuthorDate: Sun May 13 12:21:03 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 01:47:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f146a313

media-libs/libsfml: Version bump to 2.5.0

Closes: https://github.com/gentoo/gentoo/pull/8388

 media-libs/libsfml/Manifest |  1 +
 media-libs/libsfml/libsfml-2.5.0.ebuild | 79 +
 2 files changed, 80 insertions(+)

diff --git a/media-libs/libsfml/Manifest b/media-libs/libsfml/Manifest
index 3c88db68721..e387c9847b8 100644
--- a/media-libs/libsfml/Manifest
+++ b/media-libs/libsfml/Manifest
@@ -1 +1,2 @@
 DIST libsfml-2.4.2.tar.gz 24576150 BLAKE2B 
05d1c06cb360aae6ec8a53225666119168075ab61dd87fe86a105f2c104d21b5897c4b35e66f5c0dae7193697437d168a963c018e3d39bd7b8b6bed957a63d94
 SHA512 
8acfdf320939c953a9a3413398f82d02d68a56a337f1366c2677c14ce032baa8ba059113ac3c91bb6e6fc22eef119369a265be7ef6894526e6a97a01f37e1972
+DIST libsfml-2.5.0.tar.gz 22864874 BLAKE2B 
69f3a98e6db2cfbd6208167cd9cfaf92d980a7da878b026a12db646cc3638edd237ce61c123934c8169f7bc204cca64618aec89c51e7667aef03b6c72ee84a63
 SHA512 
94306dcbed7d68bb7e226cd91e25950a07bcf393988c4bb79f9de3555c18c78cae4573e911235f712e711a7c02a614bf370df32b8d85240d2f08142327e05076

diff --git a/media-libs/libsfml/libsfml-2.5.0.ebuild 
b/media-libs/libsfml/libsfml-2.5.0.ebuild
new file mode 100644
index 000..ad093d203a3
--- /dev/null
+++ b/media-libs/libsfml/libsfml-2.5.0.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils eapi7-ver
+
+MY_P="SFML-${PV}"
+
+DESCRIPTION="Simple and Fast Multimedia Library (SFML)"
+HOMEPAGE="http://www.sfml-dev.org/ https://github.com/SFML/SFML;
+SRC_URI="https://github.com/SFML/SFML/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ZLIB"
+SLOT="0/$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug doc examples"
+
+RDEPEND="
+   media-libs/flac
+   media-libs/freetype:2
+   media-libs/libpng:0=
+   media-libs/libogg
+   media-libs/libvorbis
+   media-libs/openal
+   sys-libs/zlib
+   virtual/jpeg:0
+   kernel_linux? (
+   virtual/libudev:0
+   )
+   virtual/opengl
+   !kernel_Winnt? (
+   x11-libs/libX11
+   x11-libs/libXrandr
+   x11-libs/libxcb
+   x11-libs/xcb-util-image
+   )
+"
+DEPEND="
+   ${RDEPEND}
+   doc? ( app-doc/doxygen )
+"
+
+DOCS=( changelog.md readme.md )
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   sed -i "s:DESTINATION .*:DESTINATION /usr/share/doc/${PF}:" \
+   doc/CMakeLists.txt || die
+
+   find examples -name CMakeLists.txt -delete || die
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DSFML_BUILD_DOC=$(usex doc)
+   -DSFML_INSTALL_PKGCONFIG_FILES=TRUE
+   )
+
+   if use kernel_Winnt; then
+   mycmakeargs+=( -DSFML_USE_SYSTEM_DEPS=TRUE )
+   fi
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   insinto /usr/share/cmake/Modules
+   doins cmake/SFMLConfig.cmake.in
+   doins cmake/SFMLConfigDependencies.cmake.in
+
+   if use examples ; then
+   docompress -x /usr/share/doc/${PF}/examples
+   dodoc -r examples
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: x11-wm/enlightenment/

2018-05-19 Thread Aaron Bauman
commit: cbed6b7d1f1c5c289399ea28fa5b159ca0bec9a3
Author: Joonas Niilola  gmail  com>
AuthorDate: Fri May 18 05:33:01 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 01:44:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbed6b7d

x11-wm/enlightenment: add a wayland dependency for 0.22.3

Closes: https://bugs.gentoo.org/655984
Package-Manager: Portage[mgorny]-2.3.36.1
Closes: https://github.com/gentoo/gentoo/pull/8457

 x11-wm/enlightenment/enlightenment-0.22.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/enlightenment/enlightenment-0.22.3.ebuild 
b/x11-wm/enlightenment/enlightenment-0.22.3.ebuild
index fe3962f31e9..e295cfe0e85 100644
--- a/x11-wm/enlightenment/enlightenment-0.22.3.ebuild
+++ b/x11-wm/enlightenment/enlightenment-0.22.3.ebuild
@@ -53,7 +53,7 @@ RDEPEND="
systemd? ( sys-apps/systemd )
udisks? ( sys-fs/udisks:2 )
wayland? (
-   dev-libs/efl[wayland]
+   dev-libs/efl[drm,wayland]
>=dev-libs/wayland-1.12.0
x11-libs/libxkbcommon
x11-libs/pixman



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

2018-05-19 Thread Aaron Bauman
commit: b39b1e1fda143eda647efdb9b1d5e8a7797fd0ce
Author: Georgy Yakovlev  sysdump  net>
AuthorDate: Fri May 18 23:53:10 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 01:25:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b39b1e1f

app-misc/asciinema: drom 2.0.0

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 app-misc/asciinema/Manifest   |  1 -
 app-misc/asciinema/asciinema-2.0.0.ebuild | 32 ---
 2 files changed, 33 deletions(-)

diff --git a/app-misc/asciinema/Manifest b/app-misc/asciinema/Manifest
index 869aa6b2ee3..62c6723c4c4 100644
--- a/app-misc/asciinema/Manifest
+++ b/app-misc/asciinema/Manifest
@@ -1,3 +1,2 @@
 DIST asciinema-1.4.0.tar.gz 35264 BLAKE2B 
7a6eb179206afdcbe8d1a68cc7bdd7246cbb8d5ace870da40db2a1159a71f7cb18133c0bf286f0b0c1a4d2b7779fec9d1af602ca8b14d2fce478b84fe0e8adf4
 SHA512 
23c67a462acdbbbed495e6cc3e0e22ed028effcc945af30b5925854e216c6f74bb1b416d9b0001726732ae8be510796e996bbca69b225c20422143e5ed1aca5c
-DIST asciinema-2.0.0.tar.gz 47724 BLAKE2B 
28ee2f19bdd7ca27720713af86492d2ac2d3acd53cadfdc82c613e187bcdb4d349c0a7629b7c48630b80c2f62bd20db25ebea43471bd04f205c2afca15b8b9c3
 SHA512 
af11134af1e69eabbf5a17726830d418ed5d91e381f27c0631692bbaae04afc3f1086ea2065c54f49f227f7e575938c69d6d3bc8b5f9f06eca3fe084598e
 DIST asciinema-2.0.1.tar.gz 48597 BLAKE2B 
9179d19c3c6980f35004145fc109dfa938fa020e1982389f7309c7716f8e18914fb8db46e74b2d778b043399d00a3348e499e9fc1849f5f02e1a729c8bde6084
 SHA512 
abc7e2a83032520d42b45524fbd103bd974b6857274fbb923b274d11f0a81a8d06cd1e97f1b7d6432a47e1ded6df5e37e52c69caaf7f15b1bf8b53f17dfc07d1

diff --git a/app-misc/asciinema/asciinema-2.0.0.ebuild 
b/app-misc/asciinema/asciinema-2.0.0.ebuild
deleted file mode 100644
index f3de7eca9d5..000
--- a/app-misc/asciinema/asciinema-2.0.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_4,3_5} )
-inherit distutils-r1
-
-DESCRIPTION="Command line recorder for asciinema.org service"
-HOMEPAGE="https://asciinema.org/ https://pypi.org/project/asciinema/;
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-"
-
-DOCS=( CHANGELOG.md CONTRIBUTING.md README.md doc/asciicast-v1.md )
-
-python_test() {
-   nosetests || die
-}
-
-src_install() {
-   distutils-r1_src_install
-   doman man/asciinema.1
-}



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

2018-05-19 Thread Aaron Bauman
commit: ebdacd3b7af82e402357f6002a770380517ffb92
Author: Georgy Yakovlev  sysdump  net>
AuthorDate: Fri May 18 23:51:25 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 01:25:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebdacd3b

app-misc/asciinema: version bump to 2.0.1

Adds python-3.6 support.

Package-Manager: Portage-2.3.38, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8461

 app-misc/asciinema/Manifest   |  1 +
 app-misc/asciinema/asciinema-2.0.1.ebuild | 32 +++
 2 files changed, 33 insertions(+)

diff --git a/app-misc/asciinema/Manifest b/app-misc/asciinema/Manifest
index ff153dda52a..869aa6b2ee3 100644
--- a/app-misc/asciinema/Manifest
+++ b/app-misc/asciinema/Manifest
@@ -1,2 +1,3 @@
 DIST asciinema-1.4.0.tar.gz 35264 BLAKE2B 
7a6eb179206afdcbe8d1a68cc7bdd7246cbb8d5ace870da40db2a1159a71f7cb18133c0bf286f0b0c1a4d2b7779fec9d1af602ca8b14d2fce478b84fe0e8adf4
 SHA512 
23c67a462acdbbbed495e6cc3e0e22ed028effcc945af30b5925854e216c6f74bb1b416d9b0001726732ae8be510796e996bbca69b225c20422143e5ed1aca5c
 DIST asciinema-2.0.0.tar.gz 47724 BLAKE2B 
28ee2f19bdd7ca27720713af86492d2ac2d3acd53cadfdc82c613e187bcdb4d349c0a7629b7c48630b80c2f62bd20db25ebea43471bd04f205c2afca15b8b9c3
 SHA512 
af11134af1e69eabbf5a17726830d418ed5d91e381f27c0631692bbaae04afc3f1086ea2065c54f49f227f7e575938c69d6d3bc8b5f9f06eca3fe084598e
+DIST asciinema-2.0.1.tar.gz 48597 BLAKE2B 
9179d19c3c6980f35004145fc109dfa938fa020e1982389f7309c7716f8e18914fb8db46e74b2d778b043399d00a3348e499e9fc1849f5f02e1a729c8bde6084
 SHA512 
abc7e2a83032520d42b45524fbd103bd974b6857274fbb923b274d11f0a81a8d06cd1e97f1b7d6432a47e1ded6df5e37e52c69caaf7f15b1bf8b53f17dfc07d1

diff --git a/app-misc/asciinema/asciinema-2.0.1.ebuild 
b/app-misc/asciinema/asciinema-2.0.1.ebuild
new file mode 100644
index 000..9d515cd798f
--- /dev/null
+++ b/app-misc/asciinema/asciinema-2.0.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5,6} )
+inherit distutils-r1
+
+DESCRIPTION="Command line recorder for asciinema.org service"
+HOMEPAGE="https://asciinema.org/ https://pypi.org/project/asciinema/;
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )
+"
+
+DOCS=( CHANGELOG.md CONTRIBUTING.md README.md doc/asciicast-v1.md )
+
+python_test() {
+   nosetests || die
+}
+
+src_install() {
+   distutils-r1_src_install
+   doman man/asciinema.1
+}



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/

2018-05-19 Thread Robin H. Johnson
commit: 6e9af3131fd9852dac5bad5d8d8c93fae4f10257
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun May 20 01:10:06 2018 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun May 20 01:10:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e9af313

dev-vcs/git: make perl packlist cleanup work on 32bit

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

 dev-vcs/git/git-2.16.1.ebuild  |  8 +---
 dev-vcs/git/git-2.16.3.ebuild  |  8 +---
 dev-vcs/git/git-2.17.0.ebuild  | 10 ++
 dev-vcs/git/git--r1.ebuild | 10 ++
 dev-vcs/git/git--r2.ebuild | 10 ++
 dev-vcs/git/git--r3.ebuild | 10 ++
 dev-vcs/git/git-.ebuild| 10 ++
 7 files changed, 40 insertions(+), 26 deletions(-)

diff --git a/dev-vcs/git/git-2.16.1.ebuild b/dev-vcs/git/git-2.16.1.ebuild
index 5f587fc48af..ef8239e6b0d 100644
--- a/dev-vcs/git/git-2.16.1.ebuild
+++ b/dev-vcs/git/git-2.16.1.ebuild
@@ -534,9 +534,11 @@ src_install() {
newdoc  "${S}"/gitweb/INSTALL INSTALL.gitweb
newdoc  "${S}"/gitweb/README README.gitweb
 
-   find "${ED}"/usr/lib64/perl5/ \
-   -name .packlist \
-   -exec rm \{\} \;
+   for d in "${ED}"/usr/lib{64,}/perl5/ ; do
+   test -d "$d" && find "$d" \
+   -name .packlist \
+   -delete
+   done
else
rm -rf "${ED}"/usr/share/gitweb
fi

diff --git a/dev-vcs/git/git-2.16.3.ebuild b/dev-vcs/git/git-2.16.3.ebuild
index e9f0c242bcf..b1eec131970 100644
--- a/dev-vcs/git/git-2.16.3.ebuild
+++ b/dev-vcs/git/git-2.16.3.ebuild
@@ -534,9 +534,11 @@ src_install() {
newdoc  "${S}"/gitweb/INSTALL INSTALL.gitweb
newdoc  "${S}"/gitweb/README README.gitweb
 
-   find "${ED}"/usr/lib64/perl5/ \
-   -name .packlist \
-   -exec rm \{\} \;
+   for d in "${ED}"/usr/lib{64,}/perl5/ ; do
+   test -d "$d" && find "$d" \
+   -name .packlist \
+   -delete
+   done
else
rm -rf "${ED}"/usr/share/gitweb
fi

diff --git a/dev-vcs/git/git-2.17.0.ebuild b/dev-vcs/git/git-2.17.0.ebuild
index 2306f55ec64..ec767a414c4 100644
--- a/dev-vcs/git/git-2.17.0.ebuild
+++ b/dev-vcs/git/git-2.17.0.ebuild
@@ -543,10 +543,12 @@ src_install() {
newdoc  "${S}"/gitweb/INSTALL INSTALL.gitweb
newdoc  "${S}"/gitweb/README README.gitweb
 
-   find "${ED%/}"/usr/lib64/perl5/ \
-   -name .packlist \
-   -delete \
-   || die
+   for d in "${ED%/}"/usr/lib{,64}/perl5/ ; do
+   test -d "$d" && find "${d}" \
+   -name .packlist \
+   -delete \
+   || die
+   done
else
rm -rf "${ED%/}"/usr/share/gitweb
fi

diff --git a/dev-vcs/git/git--r1.ebuild b/dev-vcs/git/git--r1.ebuild
index 339c9e96dd1..592c262cdb8 100644
--- a/dev-vcs/git/git--r1.ebuild
+++ b/dev-vcs/git/git--r1.ebuild
@@ -543,10 +543,12 @@ src_install() {
newdoc  "${S}"/gitweb/INSTALL INSTALL.gitweb
newdoc  "${S}"/gitweb/README README.gitweb
 
-   find "${ED%/}"/usr/lib64/perl5/ \
-   -name .packlist \
-   -delete \
-   || die
+   for d in "${ED%/}"/usr/lib{,64}/perl5/ ; do
+   test -d "$d" && find "${d}" \
+   -name .packlist \
+   -delete \
+   || die
+   done
else
rm -rf "${ED%/}"/usr/share/gitweb
fi

diff --git a/dev-vcs/git/git--r2.ebuild b/dev-vcs/git/git--r2.ebuild
index 339c9e96dd1..592c262cdb8 100644
--- a/dev-vcs/git/git--r2.ebuild
+++ b/dev-vcs/git/git--r2.ebuild
@@ -543,10 +543,12 @@ src_install() {
newdoc  "${S}"/gitweb/INSTALL INSTALL.gitweb
newdoc  "${S}"/gitweb/README README.gitweb
 
-   find "${ED%/}"/usr/lib64/perl5/ \
-   -name .packlist \
-   -delete \
-   || die
+   for d in "${ED%/}"/usr/lib{,64}/perl5/ ; do
+   test -d "$d" && find "${d}" \
+   -name .packlist \
+   -delete \
+   || die
+   done
else
rm -rf "${ED%/}"/usr/share/gitweb
fi

diff --git a/dev-vcs/git/git--r3.ebuild b/dev-vcs/git/git--r3.ebuild
index 

[gentoo-commits] repo/user/ssnb:master commit in: media-video/qmplay2/

2018-05-19 Thread Samuel Bernardo
commit: a72622a88fe7a08004967662d3bb4ce5067e986b
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sun May 20 00:59:06 2018 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sun May 20 00:59:06 2018 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=a72622a8

correct bug in qmplay2

 media-video/qmplay2/Manifest| 8 
 media-video/qmplay2/qmplay2-.ebuild | 1 +
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/media-video/qmplay2/Manifest b/media-video/qmplay2/Manifest
index ebf4abd..9647d28 100644
--- a/media-video/qmplay2/Manifest
+++ b/media-video/qmplay2/Manifest
@@ -1,4 +1,4 @@
-AUX qmplay2-dbus.patch 436 SHA256 
a7df35be948507cde83578c92077bd895ac7a02b1f3b902ed82cd203fc4c57a3 SHA512 
5bdfe1dbd10a4343b11e279014162964d5032969f06b7fb41fb73e6f9fba1a1914efdc5e5083257308f7310e22fe38e3b7656fd82acda3857a5614bfa15ca4ec
 WHIRLPOOL 
7791c0c817a6e7ca18e0107408531a8bab1b26258f1d0e72ece641f67a72d05464e337874945201a43e9bc8bda7d7bf7a125253c129b301abd156f298672b98c
-DIST QMPlay2-src-17.12.31.tar.xz 980692 SHA256 
f32b9b34558740d27b5d6cc3cf8f331d69d1919d5852f9cb1e30ed70290aced7 SHA512 
e0398df0daeb55c294a21deb175391253fee1fe7ebb255ba05960a59564b99004f7c299d8c3af652bb6bb40f8173e4d129c9a4bbda3efa9fafc375c77ba95f01
 WHIRLPOOL 
8e55ce2ae0f3a21cc124931ed26fe9a37a70567355eb9f61f6995ee9126b60c3b688805034d531b044c83803c3250ca17494862143afa91b5120a921033e67cd
-EBUILD qmplay2-17.12.31.ebuild 3018 SHA256 
3f4987a67fed1b9556369e1835acbef89250320ce214d2c46a615b472c7b9f78 SHA512 
878f43e507d29d699c5b55b3d9aec0538f0db8b3f93cdb149a6c98cfc18d402b722cd0c6a4d65b4188b94186a67b5bb1bd16e15499092e16e4c0992e9e434a2a
 WHIRLPOOL 
468847d6d98c184043a947ecd694a81dbb1ac50b50174cd4de0ca69410f5a8f09f35bbf9da9f2d47439a3c4011c9db06a20e14f07bc81b34c757a813b0824c19
-EBUILD qmplay2-.ebuild 3018 SHA256 
3f4987a67fed1b9556369e1835acbef89250320ce214d2c46a615b472c7b9f78 SHA512 
878f43e507d29d699c5b55b3d9aec0538f0db8b3f93cdb149a6c98cfc18d402b722cd0c6a4d65b4188b94186a67b5bb1bd16e15499092e16e4c0992e9e434a2a
 WHIRLPOOL 
468847d6d98c184043a947ecd694a81dbb1ac50b50174cd4de0ca69410f5a8f09f35bbf9da9f2d47439a3c4011c9db06a20e14f07bc81b34c757a813b0824c19
+AUX qmplay2-dbus.patch 436 BLAKE2B 
1cd09c5abc68a0e956dda8796dd430e99c39ff633f23c9c348907f7125b7beecbb5f4e628d228d477c0909b4a7d44a360be7b9c11d02dedeeaf1b6f5b6b3d527
 SHA512 
5bdfe1dbd10a4343b11e279014162964d5032969f06b7fb41fb73e6f9fba1a1914efdc5e5083257308f7310e22fe38e3b7656fd82acda3857a5614bfa15ca4ec
+DIST QMPlay2-src-17.12.31.tar.xz 980692 BLAKE2B 
f3ac981563ff0416bf0dc487e221e4aa48684f49716e10a2008694bf4740a89213809b53526a1ee43fafd12ae7bf549a5b4645e69c24cde0370981d748f833af
 SHA512 
e0398df0daeb55c294a21deb175391253fee1fe7ebb255ba05960a59564b99004f7c299d8c3af652bb6bb40f8173e4d129c9a4bbda3efa9fafc375c77ba95f01
+EBUILD qmplay2-17.12.31.ebuild 3039 BLAKE2B 
3ade242ebdab21451fc3bf535f71b35a5adc8746c09c3e20f5cc02a0647d217263db9fad5cee0bb7dbeb00d257cddf9052f0e83c1403c452e143744dc4274e21
 SHA512 
0b3269d72ee909c260e3a5beb745240d00dd0c5af7c4b9d714267b02296972d8366f3adcd72c6f177047e8c45571649512b5ca7cb4d35ae3d48e5da4061f2c10
+EBUILD qmplay2-.ebuild 3039 BLAKE2B 
3ade242ebdab21451fc3bf535f71b35a5adc8746c09c3e20f5cc02a0647d217263db9fad5cee0bb7dbeb00d257cddf9052f0e83c1403c452e143744dc4274e21
 SHA512 
0b3269d72ee909c260e3a5beb745240d00dd0c5af7c4b9d714267b02296972d8366f3adcd72c6f177047e8c45571649512b5ca7cb4d35ae3d48e5da4061f2c10

diff --git a/media-video/qmplay2/qmplay2-.ebuild 
b/media-video/qmplay2/qmplay2-.ebuild
index 37b14ae..6a4d079 100644
--- a/media-video/qmplay2/qmplay2-.ebuild
+++ b/media-video/qmplay2/qmplay2-.ebuild
@@ -16,6 +16,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/zaps166/${MY_PN}.git;
KEYWORDS=""
 else
+   inherit versionator
MY_PV=$(replace_version_separator 3 '-')
 

SRC_URI="https://github.com/zaps166/${MY_PN}/releases/download/${MY_PV}/${MY_PN}-src-${MY_PV}.tar.xz;



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

2018-05-19 Thread Samuel Bernardo
commit: 5238e5800749fdd352563fd2b7ab850ee32d59be
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sun May 20 00:58:25 2018 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sun May 20 00:58:25 2018 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=5238e580

update megasync and add patch

 net-misc/megasync/Manifest |  3 ++-
 net-misc/megasync/files/megasync-3.6.5-ffmeg.patch | 12 
 net-misc/megasync/megasync-3.6.5.ebuild|  6 +-
 3 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/net-misc/megasync/Manifest b/net-misc/megasync/Manifest
index b24a386..962d108 100644
--- a/net-misc/megasync/Manifest
+++ b/net-misc/megasync/Manifest
@@ -1,5 +1,6 @@
 AUX MEGAsync-3.1.4.0_Linux.patch 1035 BLAKE2B 
f68751902e0ec9f0276f08d1d0ba4c88ce3fd7a16f75f36644b60becc0299f80d7abe0b998d0d0f18440be172ceb3637fce7ad3fde443c51fa4aa0c1a772b124
 SHA512 
afd9b11a8dcdc3240d3c3850dfccafce64078c95ae4fa44ef0f3fbd71aabb4fa129f46bbde470d916719174a19674ba3f14cf9cde1166f7c5e09e56feb9f943e
 AUX MEGAsync-3.5.3.0_Linux.patch 1035 BLAKE2B 
f68751902e0ec9f0276f08d1d0ba4c88ce3fd7a16f75f36644b60becc0299f80d7abe0b998d0d0f18440be172ceb3637fce7ad3fde443c51fa4aa0c1a772b124
 SHA512 
afd9b11a8dcdc3240d3c3850dfccafce64078c95ae4fa44ef0f3fbd71aabb4fa129f46bbde470d916719174a19674ba3f14cf9cde1166f7c5e09e56feb9f943e
+AUX megasync-3.6.5-ffmeg.patch 566 BLAKE2B 
c1e8bd4b5c4c2c6fd6cc2316e7372443672ff1b25fbc3332ffc60f524396b7f784669da26506dbf683962a7f3da63809b57ec7696be8cef0d6c720fdb924999b
 SHA512 
741df967aece39bdd3b17b105bcad390d6cf817c1e4db9bf13d460ccc972af8ff6696f72a0253f2adea76526d7346474e65df18bfd485194e7ff8a479274c655
 AUX megasync-glibc2.26.patch 5958 BLAKE2B 
990b5ddc9300979e9a059c285b05ef691566e2ec33ab40de76e9f5c251dc8c2f94ddc936eb13772c413c42b0d1122596f2e47805766fe6512ec09050f6b22111
 SHA512 
f8348b61028f34714dabe83fe88e5820686a35e1fa52206451152a97a286557168666142121936304d60aa18dae16d4474c3c3278274b62cc06d42587fc7016e
 DIST megasync-3.0.1.tar.gz 10859538 BLAKE2B 
4ae480d36b746b70a7a155690aaa2dfb9cb70ded57228382df10db57bbdde5c0d93b98738fa6104c709cea2ce57078dd0494b122ea3ab84b9d348d3316e9e063
 SHA512 
0e3e0315f9a8f4694a59f7b50d6dd93c5e840d013d8c658288d7c0cafca9fbdc1faa2bbaec5c2d08e5f4c4d1790864a8595153808ea7b8c0a1c3550ae8398dbe
 DIST megasync-sdk-20170215.tar.gz 3475525 BLAKE2B 
71e85a62c9429944a0bd3cbe4f914b9632fa02b2021e0ca5281c19ff98e4c11feb9de5575553eb0df4589b8929e5c22719abdb7ed1f3784827cf5532cf0ce1b5
 SHA512 
218f69e22110d31093d841a6f3e7aa1336f16db063ae2fe2219507c140a14c6879d2ff9a7be11d0c31662b2439117e384737be916663af1d49fdf6dbd2d83706
@@ -7,6 +8,6 @@ EBUILD megasync-3.0.1.ebuild 3631 BLAKE2B 
6747ed137f2174d13cdefd2347e0b39772f52b
 EBUILD megasync-3.1.4.ebuild 3165 BLAKE2B 
4f50da930addad128e9cbd6be4b7e2b44bff6e8ddd0d7609076297385bd11fed43e3c0fdd0f03ce2e29bf21b3aa707a928af8d3f3063e0a7cedcc33928a65711
 SHA512 
964fbd703748194c5c2b109d89e03bdb7d99c2b793fb187875e7d7304e69ea0f7efce9a19d607ce1b87de5e229fbf9d2fbda86df02aa6c42ffeab908c8152dc1
 EBUILD megasync-3.5.3.ebuild 3277 BLAKE2B 
a59fddfa224bcdb23b033950d8cbe0587f145717710824c2470f8e5c76d01853a0b65101b0841c01024f3ad85eb5e86a993be4d31d57f5245829b9eda92ac334
 SHA512 
3d063386c052ec6c673d31c37ac2d7a8e78ee47d627bc5961d0e8ea9f1b7fde76f58078de0cc7cd5e1aa968b1941e7f51d22e9632ffe6c0b8dda05d919b40f13
 EBUILD megasync-3.6.0-r1.ebuild 3275 BLAKE2B 
5d38e6a51ada5d8e20d193e811cb7053f362fd9d936b2ad216116ec68a8d382f8467d69005f1399087905ac1876f32dc1d1fc62c28ae655c7da23debb99ebf7c
 SHA512 
2c3ce9067753c26b6339f64ea2cd23a0f7fd395556f3d535a404227017601b992f66a494db999ff42f927d02573b8f2a3d49c7b8c50e499025c261fe89fec5e2
-EBUILD megasync-3.6.5.ebuild 3277 BLAKE2B 
16486c24e8443039c7793a0d23e44d55d9594af91257b2edd78cda9ba5f22968aa8564fa52bba5baf368c5907725c5c2e83764a422424639b62638e7ca66364f
 SHA512 
cdf8578835f4560087deb3e248b6c70303718fee558a11f2a5d4fe0a415934aaab5ffb6f55a799ed9159dd7d22b35f067f77fac69c304d48f73c03d840066b79
+EBUILD megasync-3.6.5.ebuild 3336 BLAKE2B 
2cf009c94d874548b066cfa5fc3ed01b12dc531c04249d61bfd9d2cf82e00b838ebfb1caead8fa0ea051f6d06c039940fa0e6c298150ce68c9c3523b59cb7856
 SHA512 
e2a09e28f41fb9a3f28bbd177f50c256161d44ab02e2fa2a1b7743b6b390a337e1dd404a651923a0c1c54e8662ae70c3943629883f402a1f8e6b89257f9d7362
 EBUILD megasync-.ebuild 3637 BLAKE2B 
948364efa4ae9ce897da38659e669fbb509de374686832d4546caccc4f9333693749540c989f1bb074b9eb929b308978ed089f4b6be714dbf76c530e608b
 SHA512 
020ca96d8972f66cc79673bc31083af2fffacbb02dfeb12677d5d62f08605e1a4f9b29d55d5509231a416c39e7b1cd2e6b20d16c4af00a415cbaf4c133fa6c6d
 MISC metadata.xml 318 BLAKE2B 
ffc32715f0597b63ba78c242a5adfad13c921b43da17b5e07b4cca5e5ef69dbb3c89a7d110165dcea06ed317f873a5210db21be0ac5941dfb433185fdcb7a6e7
 SHA512 
e4930a21d6f75f5395e2e96436b42c792771fd7167abceeff0db7a9036616c6feeb6beee890afa6ff5e4584f5bb6938084316e60df57997aa1c20ba0a025514c

diff --git a/net-misc/megasync/files/megasync-3.6.5-ffmeg.patch 

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

2018-05-19 Thread Aaron Bauman
commit: 4b6df5b9ed23934f853f1c3b4c1bc39af6ac7551
Author: Karl Linden  gmail  com>
AuthorDate: Wed May 16 10:14:49 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:36:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b6df5b9

sys-kernel/rt-sources: remove old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-kernel/rt-sources/Manifest |  4 --
 .../rt-sources/rt-sources-4.14.27_p21.ebuild   | 54 
 .../rt-sources/rt-sources-4.4.120_p135.ebuild  | 58 --
 3 files changed, 116 deletions(-)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 73e08fdfe9e..b07be82a576 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -22,8 +22,6 @@ DIST patch-3.18.91-rt98.patch.xz 175116 BLAKE2B 
3045e7e370e28830a6eee3816ddb96e7
 DIST patch-3.18.91.xz 1407536 BLAKE2B 
45797565f03f53d22dad76051517719f5aa25c924b9b800f94f20789514ed34f4c06182a51cdac4b87d7dc4e32e239f3a347160cfb43b70871cec19c71454a10
 SHA512 
7fc3276ab236e2b88fc59b239e541c028b20e2b8105fd5082b1b9a1e4015c313c314aa2eb770f2059e3c6f92d68793888549cf8943d0f41a9214ffefd0d51655
 DIST patch-4.1.46-rt52.patch.xz 190088 BLAKE2B 
2468002852ead5b171d043486b912bb710f4689b5b549f90890de572069f430f4de709cb54c4cde723bd8e888c0027cf13ecb7708f116575fc6801ab1a97cecc
 SHA512 
2c6813cc0f0efe990e9599f3e38048142fafb6fbfd7d3f9670d118cec0ada6fc69fb897509759cbb0c54798316ac30d137cd2721fb9a88a98024ddcd7ee90e7b
 DIST patch-4.1.46.xz 1236640 BLAKE2B 
0c4305e3a3d2da4dfb8f23e0837d27d7916830170a0f10e9108d7517c69fca89bfccf35455a12f6e944f4c0527041172b072ea93978b19410daa2e9ec0b9f43d
 SHA512 
c6b50ddd848c949119dfe1ebe45542a53c8116718e09345e8b47b300f057d4396f0991de51a6ce0ae1ea88502e53339573c8873126bfe202c742a09455b00519
-DIST patch-4.14.27-rt21.patch.xz 226204 BLAKE2B 
d902929932fb3590c568faedec59c22f9cf9990fd53c08c3afe17d1435b1e686c3ae3db65a8988555c8fca9a70d777e534460e95cb2670e5808abd88093945f4
 SHA512 
e3a147a41d34782b48209f37709e9d6bb547dfc8a85890d937393393b47b408699716b3b808cf591a2e69c79529d00added737474260d9be538f967edc6dfa4b
-DIST patch-4.14.27.xz 812636 BLAKE2B 
d8ca3c7c6c2bb7842e5683afc9516341d9a30cecf173dc04898d4462c062a2206afa0257736bcfd60cc8af331899986c3761778e6c27d17929c23ca0f6055f07
 SHA512 
678df0bca8701b26f5f3df6069798a2ab75925a63c2ba77410e671cad18320b00652133afcb957a12f3caa84f14f8c7dcdbac9c9731a557e6e28834a79cff883
 DIST patch-4.14.29-rt25.patch.xz 226432 BLAKE2B 
a3022401b464eb89a4bbbfb96071e1ef90c1bc55d054d7f11cc9e043eab3d10de94ba933d2043112552313b988f48a21c28b1fca7cfd96335aea1dc3512bc806
 SHA512 
bd2fb72ad0da50a2590c47eff7f6087014b0f068488975bdecae7e5b0f99523beffe1dd16b8d0a7f877cd03b1bc86516ea00153679e2e913daa10f742d02608d
 DIST patch-4.14.29.xz 842604 BLAKE2B 
368ac0197568441621a54a212544d0bfd40e23bcc71a9ce3feda8ea9669c5487f4e5661f0678bb3c9436bc8f98e3a42523d061a0ca7ab916a09593f5bb55eee2
 SHA512 
f2e87f9205924097b5aaa39ca6967449fa78a9a13d27fd4edac829cbb411f28881b2dc4fc5f8c270ec8673118bf260f7411646f0900c00f8511283fe0eb3c7e7
 DIST patch-4.14.34-rt27.patch.xz 229500 BLAKE2B 
15ecc312787314bd72caeb03aaedf1dc3ad161ef8a1062bb166e324eb33d71ad7881984c5b9d4f382bd49827747397eceeec688a99a2bf03f08ecddadacaf307
 SHA512 
4ed0ca1ddb90401afff3c5b09c2c657046f6c1ce0c102bfbed4f467e8adc7817f36508aaaeba170c964be00e1ca82aff612042b931597c24b0fbb8bb7c3ae47e
@@ -36,8 +34,6 @@ DIST patch-4.16.7-rt1.patch.xz 225980 BLAKE2B 
0da775b0950453178c79f13e9c3cc10ceb
 DIST patch-4.16.7.xz 170468 BLAKE2B 
899c2268face620ee9ccf7f713b8db9a321e0cdec09abd42a8bad891acaa9d1807e35d15880641a9afbe1cda60cd4d5dab3c76f6ee98694f52d2e449c8c1b7b8
 SHA512 
576c2b520d444e11a9ca45ed3ed03822007ab6ff778a1759aa0f65c96946fe3e169e71d48d11e6d3b8627a99cdc20abfb0c84d7b6c9b0d2afa4d5fee9ed3aa41
 DIST patch-4.16.8-rt2.patch.xz 225952 BLAKE2B 
767a9c4a51a886a544203d8a4863e72000eb5d347edf66f1a7b60085628f96ec0a336582bbee7e956211cb312b0eb3f03987ad319c42ad1e88599c2717ea6dfe
 SHA512 
609541e14f89d771ddf8c5cc5b7f4724f886f992511883aad021dca56ce905c34fe7f0215788928052e40d21f938f822fadd7cd4073890e809789263ef725aca
 DIST patch-4.16.8.xz 189408 BLAKE2B 
ba3586ae91ef7a43a81da76c812dca3bd6bcd0e00c508d04d1f81b28d6304eb4aa3177efe0acdcd231a0d829a0dc231f4c5463a97cd0cf1ab16f007d2a58
 SHA512 
8bd521f5a14280c6893f6d85f46d12f97ba71abf3e149f1900aa5e1efa3a03a97df674c4b2b46553b8e9df55164894b6fcb510dbba8cab8ce47ee4b0186e27d0
-DIST patch-4.4.120-rt135.patch.xz 194592 BLAKE2B 
abaac0132b0b35d02e107af1bc412c239fd27d20513f7dda0af9cfc6a9661a5d3cff4ede0309ee41cefcd4671e6c0bb8b3833c6bb30752cc02b963238fe6e9dd
 SHA512 
61dcbe07ab2fe307cae1ac59822afce50999fd817f503f8a1cf8a7686ea0bfefbd99fb2d660e557f94af8523923faba2e00a68e973792b633a7cc7be1c0df6a4
-DIST patch-4.4.120.xz 1718956 BLAKE2B 
06df2a0f9ce7ec7d813e6101a5fe5704adf6303c516193d8f53f5f3486a4f9b16c3842797ffa99d9e8daa5f3c1b20366ef2971c8f22aed1de443f4958946de6c
 SHA512 

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

2018-05-19 Thread Aaron Bauman
commit: 81c60d201ff5fd253f9f43f1063e8e3befc003da
Author: Karl Linden  gmail  com>
AuthorDate: Wed May 16 07:49:54 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:36:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81c60d20

sys-kernel/rt-sources: version bump to 4.14.40_p30

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-kernel/rt-sources/Manifest |  2 +
 .../rt-sources/rt-sources-4.14.40_p30.ebuild   | 54 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 5077ad2e616..09aee46f619 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -30,6 +30,8 @@ DIST patch-4.14.34-rt27.patch.xz 229500 BLAKE2B 
15ecc312787314bd72caeb03aaedf1dc
 DIST patch-4.14.34.xz 939276 BLAKE2B 
69bb29dba7b4dc463310325c1fa1b7497c353cc0534eecdf084f01d5fe9b01a8e0b3f02714e6759806d8c2f90424800c59cc197907bb66d441f1178bb6a10606
 SHA512 
1aff1ad1294e0d22ae1de0bbcb1d05269a9cc7bfeb6bc885bd9ee445198b30951d7d7918bf33152579415db2a4afe018d4b21c1fea5dd4d5e5014662fd870acf
 DIST patch-4.14.39-rt29.patch.xz 229716 BLAKE2B 
f89a355f677d10268e6928a86f83bd8cfaec7a421f899c862f0e8c265f1101fe6a6b836588b1bad6b4c7b7f22ddc79fbd852cf419cf0d72d069d9356338e31df
 SHA512 
b50f62eb6310151da88c73caef4749dbfc1aaea2529cbc33946211524aaf8c08d5e102e81d60d449f5e969f97b2d2adf9596ab967452ba8efa18315a87c55326
 DIST patch-4.14.39.xz 1091116 BLAKE2B 
5b3b9d1f2a02eb0eb4713f571acd0ae78a4b66dea671ef06519f980c373a5c9632047bd74078ce7366c7a0d49d3f98363b0f5cd7aae3e179c74b205380015ff9
 SHA512 
28568e50fc70016426b65706f3de12cd723d7e5d5d88a23bbb02915b221db904744108328c3a63bb3f620e059f116930bb0b2d16271b53ed70dc320f6f3daf69
+DIST patch-4.14.40-rt30.patch.xz 230352 BLAKE2B 
b788d4034b4398c2c499d5010c6e20bc455d35925f66acaeb02f4bf11efa43ddb793bcb92590008cfc0aaafa385148efd124ca2881247381bc85f0461375dcc3
 SHA512 
acd6e26bae67d7961abf9d3cac0a2ddf124b83b5087bfe533446a135dff42bc59bd415b88dfb56500239a0e726bd6b7f894a89f74e6cd1a6370c5e944dfae0d5
+DIST patch-4.14.40.xz 1103932 BLAKE2B 
a06e9f1208a0396e3bf28ddad9fefb7bcd669271731fc3a3745e61eb62f4186138c00b03a5f7afb7a0c236a278d164043f07f01ee6faf0aca29ca1cd11e02d52
 SHA512 
4961a454836b8583cf3b0a743f08951c7084745039593f2cfb2630f836f33c471b7456d162556359255e6952e3652e9bb30e2b363985467787d4d0d73ad24738
 DIST patch-4.16.7-rt1.patch.xz 225980 BLAKE2B 
0da775b0950453178c79f13e9c3cc10ceb41ba23ea6fb866b8c0928bc8f52059129355cd7d89bb43f0ec47c138904bde29f699bb742eda5fa46362551c9861ac
 SHA512 
5b3625ebb4eccce4e45a3925640a0b0cb91af07ae3d1fe879709c107aa1633bc89bfe7895f650a83cc75c109f11cfa3ee986f6ecfdb3af0b718509154a5ec027
 DIST patch-4.16.7.xz 170468 BLAKE2B 
899c2268face620ee9ccf7f713b8db9a321e0cdec09abd42a8bad891acaa9d1807e35d15880641a9afbe1cda60cd4d5dab3c76f6ee98694f52d2e449c8c1b7b8
 SHA512 
576c2b520d444e11a9ca45ed3ed03822007ab6ff778a1759aa0f65c96946fe3e169e71d48d11e6d3b8627a99cdc20abfb0c84d7b6c9b0d2afa4d5fee9ed3aa41
 DIST patch-4.4.120-rt135.patch.xz 194592 BLAKE2B 
abaac0132b0b35d02e107af1bc412c239fd27d20513f7dda0af9cfc6a9661a5d3cff4ede0309ee41cefcd4671e6c0bb8b3833c6bb30752cc02b963238fe6e9dd
 SHA512 
61dcbe07ab2fe307cae1ac59822afce50999fd817f503f8a1cf8a7686ea0bfefbd99fb2d660e557f94af8523923faba2e00a68e973792b633a7cc7be1c0df6a4

diff --git a/sys-kernel/rt-sources/rt-sources-4.14.40_p30.ebuild 
b/sys-kernel/rt-sources/rt-sources-4.14.40_p30.ebuild
new file mode 100644
index 000..ad4f19f2289
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-4.14.40_p30.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/;
+
+inherit versionator
+
+CKV="$(get_version_component_range 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE} \
+   
mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE}"
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+   -i "${S}/kernel/Kconfig.preempt"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the Gentoo Kernel Project in any 
way."
+   ewarn "If you need support, please contact the RT project developers 
directly."
+   ewarn "Do *not* 

[gentoo-commits] repo/gentoo:master commit in: x11-terms/terminology/

2018-05-19 Thread Aaron Bauman
commit: f0b4bfc415388f4d5f5ecbebc5c59e5ce4235998
Author: Joonas Niilola  gmail  com>
AuthorDate: Thu May 17 05:12:10 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:36:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0b4bfc4

x11-terms/terminology: fix xdg_environment_reset for 1.2.1

Reported by Toralf Förster
Closes: https://bugs.gentoo.org/655902
Package-Manager: Portage[mgorny]-2.3.36.1
Closes: https://github.com/gentoo/gentoo/pull/8439

 x11-terms/terminology/terminology-1.2.1.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/x11-terms/terminology/terminology-1.2.1.ebuild 
b/x11-terms/terminology/terminology-1.2.1.ebuild
index 30208be73e7..dfc6458bbd5 100644
--- a/x11-terms/terminology/terminology-1.2.1.ebuild
+++ b/x11-terms/terminology/terminology-1.2.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit meson
+inherit meson xdg-utils
 
 DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation 
Libraries"
 HOMEPAGE="https://www.enlightenment.org/about-terminology;
@@ -21,6 +21,12 @@ DEPEND="
nls? ( sys-devel/gettext )
 "
 
+src_prepare() {
+   default
+
+   xdg_environment_reset
+}
+
 src_configure() {
local emesonargs=(
-D nls=$(usex nls true false)



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

2018-05-19 Thread Aaron Bauman
commit: c9ec5405d242620cc57903d6838a103255d5f1ad
Author: Karl Linden  gmail  com>
AuthorDate: Wed May 16 08:21:54 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:36:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9ec5405

sys-kernel/rt-sources: version bump to 4.16.8_p2

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-kernel/rt-sources/Manifest|  2 +
 sys-kernel/rt-sources/rt-sources-4.16.8_p2.ebuild | 54 +++
 2 files changed, 56 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 09aee46f619..73e08fdfe9e 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -34,6 +34,8 @@ DIST patch-4.14.40-rt30.patch.xz 230352 BLAKE2B 
b788d4034b4398c2c499d5010c6e20bc
 DIST patch-4.14.40.xz 1103932 BLAKE2B 
a06e9f1208a0396e3bf28ddad9fefb7bcd669271731fc3a3745e61eb62f4186138c00b03a5f7afb7a0c236a278d164043f07f01ee6faf0aca29ca1cd11e02d52
 SHA512 
4961a454836b8583cf3b0a743f08951c7084745039593f2cfb2630f836f33c471b7456d162556359255e6952e3652e9bb30e2b363985467787d4d0d73ad24738
 DIST patch-4.16.7-rt1.patch.xz 225980 BLAKE2B 
0da775b0950453178c79f13e9c3cc10ceb41ba23ea6fb866b8c0928bc8f52059129355cd7d89bb43f0ec47c138904bde29f699bb742eda5fa46362551c9861ac
 SHA512 
5b3625ebb4eccce4e45a3925640a0b0cb91af07ae3d1fe879709c107aa1633bc89bfe7895f650a83cc75c109f11cfa3ee986f6ecfdb3af0b718509154a5ec027
 DIST patch-4.16.7.xz 170468 BLAKE2B 
899c2268face620ee9ccf7f713b8db9a321e0cdec09abd42a8bad891acaa9d1807e35d15880641a9afbe1cda60cd4d5dab3c76f6ee98694f52d2e449c8c1b7b8
 SHA512 
576c2b520d444e11a9ca45ed3ed03822007ab6ff778a1759aa0f65c96946fe3e169e71d48d11e6d3b8627a99cdc20abfb0c84d7b6c9b0d2afa4d5fee9ed3aa41
+DIST patch-4.16.8-rt2.patch.xz 225952 BLAKE2B 
767a9c4a51a886a544203d8a4863e72000eb5d347edf66f1a7b60085628f96ec0a336582bbee7e956211cb312b0eb3f03987ad319c42ad1e88599c2717ea6dfe
 SHA512 
609541e14f89d771ddf8c5cc5b7f4724f886f992511883aad021dca56ce905c34fe7f0215788928052e40d21f938f822fadd7cd4073890e809789263ef725aca
+DIST patch-4.16.8.xz 189408 BLAKE2B 
ba3586ae91ef7a43a81da76c812dca3bd6bcd0e00c508d04d1f81b28d6304eb4aa3177efe0acdcd231a0d829a0dc231f4c5463a97cd0cf1ab16f007d2a58
 SHA512 
8bd521f5a14280c6893f6d85f46d12f97ba71abf3e149f1900aa5e1efa3a03a97df674c4b2b46553b8e9df55164894b6fcb510dbba8cab8ce47ee4b0186e27d0
 DIST patch-4.4.120-rt135.patch.xz 194592 BLAKE2B 
abaac0132b0b35d02e107af1bc412c239fd27d20513f7dda0af9cfc6a9661a5d3cff4ede0309ee41cefcd4671e6c0bb8b3833c6bb30752cc02b963238fe6e9dd
 SHA512 
61dcbe07ab2fe307cae1ac59822afce50999fd817f503f8a1cf8a7686ea0bfefbd99fb2d660e557f94af8523923faba2e00a68e973792b633a7cc7be1c0df6a4
 DIST patch-4.4.120.xz 1718956 BLAKE2B 
06df2a0f9ce7ec7d813e6101a5fe5704adf6303c516193d8f53f5f3486a4f9b16c3842797ffa99d9e8daa5f3c1b20366ef2971c8f22aed1de443f4958946de6c
 SHA512 
dd879f449840f380287bda06fe27453768b65493edee8f162cf17d3268f838acbbea375633412f1c0f8bc24b41fe153d610cbbca205cd7c8891bfe8f398f3ec2
 DIST patch-4.4.126-rt141.patch.xz 194488 BLAKE2B 
8af6171724d92813c6edaa6be86ae460469964d395e9bc83360d423132a14394950d579b7e3eeacb4fecb284e3550c84297d4cbe4c44389baa8bccdf7fbb2615
 SHA512 
ca473fff80bfd1f9c10ac6d3d92c661418b4b01ac2def910ac454b14dd2deb3bc9f341f7b9a2ad4f66f31331423686d7f28349ff46845d6f55de454853fecc80

diff --git a/sys-kernel/rt-sources/rt-sources-4.16.8_p2.ebuild 
b/sys-kernel/rt-sources/rt-sources-4.16.8_p2.ebuild
new file mode 100644
index 000..ad4f19f2289
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-4.16.8_p2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/;
+
+inherit versionator
+
+CKV="$(get_version_component_range 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE} \
+   
mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE}"
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+   -i "${S}/kernel/Kconfig.preempt"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the Gentoo Kernel Project in any 
way."
+   ewarn "If you need support, please contact the RT project developers 
directly."
+   ewarn "Do *not* open bugs 

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

2018-05-19 Thread Aaron Bauman
commit: bde581c0a064e730ee99780653ede278cb2aa418
Author: Karl Linden  gmail  com>
AuthorDate: Wed May 16 07:48:40 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:36:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bde581c0

sys-kernel/rt-sources: version bump to 4.9.98_p76

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-kernel/rt-sources/Manifest |  2 +
 sys-kernel/rt-sources/rt-sources-4.9.98_p76.ebuild | 58 ++
 2 files changed, 60 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index d231d05bc4e..5077ad2e616 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -41,3 +41,5 @@ DIST patch-4.4.131-rt148.patch.xz 196408 BLAKE2B 
d58fc0441b7282ffbe01644304f6630
 DIST patch-4.4.131.xz 1871404 BLAKE2B 
3d7729d4e3ce75888670d57368b651f2750f46e4c94826525095b791f6717badefede520a144b098fffb9ac08b3a08d0c567f0e391b94cff8869cdb6afe9592d
 SHA512 
856ef10be19b07a2e1fbc777dd0052a145f5ca49c59b29ec4e5205babd478d623bfef40ed06c2fa113292e512701b4dbc67723cf1a946f27ce38b601d003bff2
 DIST patch-4.9.84-rt62.patch.xz 173640 BLAKE2B 
e79032ab9137270e8144d5a1a9faa2897c1013a6380394e1a379d8f6aaccb69b4c2f107c793d70fa540c1f43c610076bd2ecd37b274f4c3701b2081ab55a6012
 SHA512 
e273d384d845478e7b3ce55be56bddf74e1b18c0b70aaad92dcc73bdf949337a10ee41c6c3ebca7057988cfb88b762ebd5657a29ea47e684c6d10d83c0c03f7c
 DIST patch-4.9.84.xz 1512620 BLAKE2B 
8f3ff14ed541bebbc841af845fcd6182d67a347363c1b9e2ea446653809025d414d478c228a7a7daca3c29706c6a541edceefcabc82dd7dda065f27d7aa16a23
 SHA512 
0c7f6dfe4ccd548a12c734f3d4faf52dcc221fbbb709cfc7a25c73a57f0fdee6141244b6d475e0bbb994fd148bacdd5e565ac020b6cbf4631da063f64a59ec83
+DIST patch-4.9.98-rt76.patch.xz 173232 BLAKE2B 
77f8e3a17bdcf126b9854d54f6a15fee483e422ffc60e7f656ca6298bbbcedc7c9a1d907ec151e1305bb1c8673644473de4410088892007bd1c8c80c3b1b4d53
 SHA512 
1adcb149f5991300aebdb88595bd93d941325cca5880e9f0e195c2771468ee018cbca5af21401b78064695785e6bc16252767d7399df4002b5add03cedce9988
+DIST patch-4.9.98.xz 1811528 BLAKE2B 
f6244076779eeef08399128daf07d4a9ceb42065bff4f89b5f40ef3dd9dbdcf36daa5cb064ad13635c91e73b3d9bbdb57dd64dc4d5adf07042b1f96c7e8733f4
 SHA512 
e1aa814fac33ae6dbfbf2e0cda40a1bebbf420d33c6448de718726f94d2ba0c9538b18c3251fb46202d90da6aa56add466d4328696faa1a05c50478aa3f99a5e

diff --git a/sys-kernel/rt-sources/rt-sources-4.9.98_p76.ebuild 
b/sys-kernel/rt-sources/rt-sources-4.9.98_p76.ebuild
new file mode 100644
index 000..1ca2170247a
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-4.9.98_p76.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/;
+
+inherit versionator
+
+CKV="$(get_version_component_range 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE} \
+   
mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE}"
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+PATCHES=(
+   "${FILESDIR}"/rt-sources-posix-printf.patch # 627068
+)
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+   -i "${S}/kernel/Kconfig.preempt"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the Gentoo Kernel Project in any 
way."
+   ewarn "If you need support, please contact the RT project developers 
directly."
+   ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues 
with"
+   ewarn "the ebuilds."
+   ewarn
+}
+
+K_EXTRAEINFO="For more info on rt-sources and details on how to report 
problems, see: \
+${HOMEPAGE}."



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

2018-05-19 Thread Aaron Bauman
commit: 3be98a20ec267f8258658a4573bbb306af687a07
Author: Karl Linden  gmail  com>
AuthorDate: Wed May 16 07:48:06 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:36:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3be98a20

sys-kernel/rt-sources: version bump to 4.4.131_p148

Package-Manager: Portage-2.3.36, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8428

 sys-kernel/rt-sources/Manifest |  1 +
 .../rt-sources/rt-sources-4.4.131_p148.ebuild  | 58 ++
 2 files changed, 59 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 0a876ca58b4..d231d05bc4e 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -37,6 +37,7 @@ DIST patch-4.4.120.xz 1718956 BLAKE2B 
06df2a0f9ce7ec7d813e6101a5fe5704adf6303c51
 DIST patch-4.4.126-rt141.patch.xz 194488 BLAKE2B 
8af6171724d92813c6edaa6be86ae460469964d395e9bc83360d423132a14394950d579b7e3eeacb4fecb284e3550c84297d4cbe4c44389baa8bccdf7fbb2615
 SHA512 
ca473fff80bfd1f9c10ac6d3d92c661418b4b01ac2def910ac454b14dd2deb3bc9f341f7b9a2ad4f66f31331423686d7f28349ff46845d6f55de454853fecc80
 DIST patch-4.4.126.xz 1784496 BLAKE2B 
e2a72fdb84d8c88bdcd3d47719712df7eaa9ab37e1f4a4feef8ebb3dd9b14b67c447a5bd260e4fb4c40a72c4b1527922175caa5648250f8486f8a2a74783e87a
 SHA512 
7f53db4c7d34ec19732d0b9f1b994ee5817096a59daf8116efa64fe3776edba74060915af2765e641edce6a40acda7cc6b7cce131aa8ac6a7f643f0f4e0a177e
 DIST patch-4.4.131-rt147.patch.xz 196092 BLAKE2B 
537b64e39785b6a992d901b921e3847bd17266a98f3c64d9af68e9828fa99c3d29293c9ddca8682b70e1e6df5b66cb27bdc9de0c39673a6ba389ac69dedc4ed6
 SHA512 
5cfdc1202eb85cb6ff677fd750932d696d1e9f1d938bc97990bd9876787c815fc0934f056ef049812662c061dea08b7ac25bfd0410d2bb8dd3c13b11dd8143d7
+DIST patch-4.4.131-rt148.patch.xz 196408 BLAKE2B 
d58fc0441b7282ffbe01644304f6630b079aff1af200e7fac98e3ee95d1664f3186f5f26e6377a56376a8ac7324774d159d232577101988cb773facf86360c64
 SHA512 
44ae0b66cca897d850486b1be2f97a2d0d697ebc31e46326673ccd5ed373f7f0deba5f538d3932e41669fd86f3f496da7d32c79081383668ebb7144867b4
 DIST patch-4.4.131.xz 1871404 BLAKE2B 
3d7729d4e3ce75888670d57368b651f2750f46e4c94826525095b791f6717badefede520a144b098fffb9ac08b3a08d0c567f0e391b94cff8869cdb6afe9592d
 SHA512 
856ef10be19b07a2e1fbc777dd0052a145f5ca49c59b29ec4e5205babd478d623bfef40ed06c2fa113292e512701b4dbc67723cf1a946f27ce38b601d003bff2
 DIST patch-4.9.84-rt62.patch.xz 173640 BLAKE2B 
e79032ab9137270e8144d5a1a9faa2897c1013a6380394e1a379d8f6aaccb69b4c2f107c793d70fa540c1f43c610076bd2ecd37b274f4c3701b2081ab55a6012
 SHA512 
e273d384d845478e7b3ce55be56bddf74e1b18c0b70aaad92dcc73bdf949337a10ee41c6c3ebca7057988cfb88b762ebd5657a29ea47e684c6d10d83c0c03f7c
 DIST patch-4.9.84.xz 1512620 BLAKE2B 
8f3ff14ed541bebbc841af845fcd6182d67a347363c1b9e2ea446653809025d414d478c228a7a7daca3c29706c6a541edceefcabc82dd7dda065f27d7aa16a23
 SHA512 
0c7f6dfe4ccd548a12c734f3d4faf52dcc221fbbb709cfc7a25c73a57f0fdee6141244b6d475e0bbb994fd148bacdd5e565ac020b6cbf4631da063f64a59ec83

diff --git a/sys-kernel/rt-sources/rt-sources-4.4.131_p148.ebuild 
b/sys-kernel/rt-sources/rt-sources-4.4.131_p148.ebuild
new file mode 100644
index 000..1ca2170247a
--- /dev/null
+++ b/sys-kernel/rt-sources/rt-sources-4.4.131_p148.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64"
+
+HOMEPAGE="https://www.kernel.org/pub/linux/kernel/projects/rt/;
+
+inherit versionator
+
+CKV="$(get_version_component_range 1-3)"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+RT_PATCHSET="${PV/*_p}"
+
+inherit kernel-2
+detect_version
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+RT_FILE="patch-${K_BRANCH_ID}.${KV_PATCH}-rt${RT_PATCHSET}.patch.xz"
+RT_URI="mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/${RT_FILE} \
+   
mirror://kernel/linux/kernel/projects/rt/${K_BRANCH_ID}/older/${RT_FILE}"
+
+DESCRIPTION="Full Linux ${K_BRANCH_ID} kernel sources with the 
CONFIG_PREEMPT_RT patch"
+SRC_URI="${KERNEL_URI} ${RT_URI}"
+
+KV_FULL="${PVR/_p/-rt}"
+S="${WORKDIR}/linux-${KV_FULL}"
+
+UNIPATCH_LIST="${DISTDIR}/${RT_FILE}"
+UNIPATCH_STRICTORDER="yes"
+
+PATCHES=(
+   "${FILESDIR}"/rt-sources-posix-printf.patch # 627068
+)
+
+src_prepare() {
+   default
+
+   # 627796
+   sed \
+   "s/default PREEMPT_NONE/default PREEMPT_RT_FULL/g" \
+   -i "${S}/kernel/Kconfig.preempt"
+}
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   ewarn
+   ewarn "${PN} are *not* supported by the Gentoo Kernel Project in any 
way."
+   ewarn "If you need support, please contact the RT project developers 
directly."
+   ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues 
with"
+   ewarn "the ebuilds."
+   ewarn
+}
+
+K_EXTRAEINFO="For more info on rt-sources and details on how 

[gentoo-commits] repo/gentoo:master commit in: x11-terms/terminology/

2018-05-19 Thread Aaron Bauman
commit: 7455d07e5ee8cc727356f1df63d34f5bb0622540
Author: Joonas Niilola  gmail  com>
AuthorDate: Thu May 17 05:13:13 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:36:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7455d07e

x11-terms/terminology: remove 1.2.0

Package-Manager: Portage[mgorny]-2.3.36.1

 x11-terms/terminology/Manifest |  1 -
 x11-terms/terminology/terminology-1.2.0.ebuild | 30 --
 2 files changed, 31 deletions(-)

diff --git a/x11-terms/terminology/Manifest b/x11-terms/terminology/Manifest
index 436faf07b4d..4941e768d02 100644
--- a/x11-terms/terminology/Manifest
+++ b/x11-terms/terminology/Manifest
@@ -1,4 +1,3 @@
 DIST terminology-0.9.1.tar.xz 4961876 BLAKE2B 
03aab7c5c0740bede4c06b90721d96c12159b6dd939387e8bd3dae160b4c705cf95a724dd8cc404badc9b9d5f22a5321312f229dd488331e4c4c1e2b0844
 SHA512 
c6db9fa62f3f168be635da1e3ed7a13deba13cbfa5bed75e3f97ee6e13837ca9cb5facab48c44f200baed34b8f32f852eadd9844de648795733602602fae32fd
 DIST terminology-1.0.0.tar.xz 4979420 BLAKE2B 
cbc78b751a2e6812ab31c69a62ea4abe2bb53f12b647cea7adae03e54fe0a238c56c5c029c43057c3a1326c7c8af0412574a85a404896554a142ed068ab581ab
 SHA512 
5c99e1e1eea0de24d67779059d3ba65a8fbd1fdf63d9f22099e38defc11fdc8923fbe50a7276bc483ce5ee7527f665e3f2c48358d85c3a06f33e551bd8ef2320
-DIST terminology-1.2.0.tar.xz 4858040 BLAKE2B 
831ea173fcf8d0327e5ea6a64a827e221eeef5125a7ed6722cc479ff1e3649b653908f97dd5478b24e13463b53634aba14786f9d39da6ad8ba64b982f28f2d7c
 SHA512 
3f017d4706de0de7de5800adad39b5d168f4447279942a452b98529044d3c5e88fc00aa96078420829283ddc454d85d7e5b1d8b557a38d5be8ad266020a3f40b
 DIST terminology-1.2.1.tar.xz 4858528 BLAKE2B 
953917ed9dac9d17048d19394e6d8b38fd1673bc618cd1ecb596eee7b889f973b5622ef9d3424bc9f94928f44129062a7a4f88cdb2af519b87aeb141661902bc
 SHA512 
8485d38a5426ac0f32b3cb049170bfa015a9f648134973462d72412b291b160f05b6ccfb3ba47115740946c8d87160401d55672a6853027d0cc216bdc7cc659b

diff --git a/x11-terms/terminology/terminology-1.2.0.ebuild 
b/x11-terms/terminology/terminology-1.2.0.ebuild
deleted file mode 100644
index 30208be73e7..000
--- a/x11-terms/terminology/terminology-1.2.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit meson
-
-DESCRIPTION="Feature rich terminal emulator using the Enlightenment Foundation 
Libraries"
-HOMEPAGE="https://www.enlightenment.org/about-terminology;
-SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz;
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="nls"
-
-RDEPEND=">=dev-libs/efl-1.20.0[eet,fontconfig,opengl,X]"
-DEPEND="
-   ${RDEPEND}
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-"
-
-src_configure() {
-   local emesonargs=(
-   -D nls=$(usex nls true false)
-   )
-
-   meson_src_configure
-}



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

2018-05-19 Thread Aaron Bauman
commit: 4d6d81607f7d852c2f81241ceffd4b4b99903147
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun May 20 00:34:33 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:34:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d6d8160

package.mask: fix whitespace

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 19a2eb69d52..9cf4206f70b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,8 +30,8 @@
 #--- END OF EXAMPLES ---
 
 # Joonas Niilola  (18 May 2018)
-# Unmaintained, bugs open without activity, makes users 
-# install ancient version of enlightenment by typing 
+# Unmaintained, bugs open without activity, makes users
+# install ancient version of enlightenment by typing
 # 'emerge enlightenment' due to obnoxious package slotting.
 # Bug #656020. Removal in ~30 days
 =x11-wm/enlightenment-1.0.17



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

2018-05-19 Thread Aaron Bauman
commit: 1670adac8404081469fa7a92ff93565c750a7372
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:15:34 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:30:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1670adac

media-libs/libprojectm: remove old

 media-libs/libprojectm/libprojectm-2.1.0-r1.ebuild | 57 --
 1 file changed, 57 deletions(-)

diff --git a/media-libs/libprojectm/libprojectm-2.1.0-r1.ebuild 
b/media-libs/libprojectm/libprojectm-2.1.0-r1.ebuild
deleted file mode 100644
index 3b248ee9b6f..000
--- a/media-libs/libprojectm/libprojectm-2.1.0-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit base cmake-utils flag-o-matic eutils toolchain-funcs multilib
-
-MY_P=${PN/m/M}-complete-${PV}-Source ; MY_P=${MY_P/lib}
-
-DESCRIPTION="A graphical music visualization plugin similar to milkdrop"
-HOMEPAGE="http://projectm.sourceforge.net;
-SRC_URI="mirror://sourceforge/projectm/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd"
-IUSE="debug openmp video_cards_nvidia"
-
-RDEPEND="media-fonts/dejavu
-   >=media-libs/ftgl-2.1.3_rc5
-   media-libs/freetype:2
-   media-libs/mesa
-   media-libs/glew:=
-   sys-libs/zlib
-   video_cards_nvidia? ( media-gfx/nvidia-cg-toolkit )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-S=${WORKDIR}/${MY_P}/src/libprojectM
-
-PATCHES=(
-   "${FILESDIR}"/${P}-multilib.patch
-   "${FILESDIR}"/${P}-path.patch
-)
-
-src_configure() {
-   if use video_cards_nvidia; then
-   append-ldflags -L/opt/nvidia-cg-toolkit/$(get_libdir)
-   append-ldflags -L/opt/nvidia-cg-toolkit/lib
-   append-cppflags -I/opt/nvidia-cg-toolkit/include
-   fi
-
-   local mycmakeargs=(
-   $(cmake-utils_use_use video_cards_nvidia CG)
-   "-DUSE_OPENMP=OFF"
-   
"-DprojectM_FONT_MENU=${EPREFIX}/usr/share/fonts/dejavu/DejaVuSans.ttf"
-   
"-DprojectM_FONT_TITLE=${EPREFIX}/usr/share/fonts/dejavu/DejaVuSansMono.ttf"
-   )
-
-   if use openmp && tc-has-openmp; then
-   mycmakeargs+=(
-   $(cmake-utils_use_use openmp)
-   )
-   fi
-
-   cmake-utils_src_configure
-}



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

2018-05-19 Thread Aaron Bauman
commit: 608a914ce01ca5184fc62657720cc781b2075fb8
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:14:54 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:30:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=608a914c

media-sound/mp3splt-gtk: remove old

 media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2.ebuild | 57 
 1 file changed, 57 deletions(-)

diff --git a/media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2.ebuild 
b/media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2.ebuild
deleted file mode 100644
index c6495c8a830..000
--- a/media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils versionator autotools multilib
-
-DESCRIPTION="a GTK+ based utility to split mp3 and ogg files without decoding"
-HOMEPAGE="http://mp3splt.sourceforge.net;
-SRC_URI="mirror://sourceforge/mp3splt/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 sparc x86"
-IUSE="audacious doc gnome gstreamer nls"
-
-RDEPEND="~media-libs/libmp3splt-0.9.2
-   x11-libs/gtk+:3
-   audacious? ( >=media-sound/audacious-3.0 )
-   !audacious? ( dev-libs/dbus-glib )
-   gstreamer? ( media-libs/gstreamer:1.0
-   media-plugins/gst-plugins-meta:1.0[mp3] )
-   gnome? ( gnome-base/libgnomeui )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   gnome? ( app-text/gnome-doc-utils app-text/rarian )
-   nls? ( sys-devel/gettext )"
-
-src_prepare() {
-   if use audacious; then
-   sed -i \
-   -e 's:@AUDACIOUS_LIBS@:-laudclient &:' \
-   src/Makefile.am || die
-   fi
-
-   eautoreconf
-}
-
-src_configure() {
-   local myconf
-
-   use nls || myconf+=" --disable-nls"
-   use audacious || myconf+=" --disable-audacious"
-   use gstreamer || myconf+=" --disable-gstreamer"
-
-   econf \
-   --disable-dependency-tracking \
-   $(use_enable gnome) \
-   $(use_enable doc doxygen_doc) \
-   --disable-cutter \
-   ${myconf}
-}
-
-src_install() {
-   default
-   dodoc AUTHORS ChangeLog NEWS README
-}



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

2018-05-19 Thread Aaron Bauman
commit: 7b3107f4fc9b60b0d78a0e56513f900870f3b9d5
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 06:54:14 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:31:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b3107f4

app-misc/mvcase: remove old

Closes: https://github.com/gentoo/gentoo/pull/8467

 app-misc/mvcase/mvcase-0.1-r1.ebuild | 34 --
 1 file changed, 34 deletions(-)

diff --git a/app-misc/mvcase/mvcase-0.1-r1.ebuild 
b/app-misc/mvcase/mvcase-0.1-r1.ebuild
deleted file mode 100644
index 817386ef378..000
--- a/app-misc/mvcase/mvcase-0.1-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A modified version of mv, used to convert filenames to 
lower/upper case"
-HOMEPAGE="http://www.ibiblio.org/pub/Linux/utils/file;
-SRC_URI="http://www.ibiblio.org/pub/Linux/utils/file/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-DEPEND="dev-libs/shhopt"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-includes.patch \
-   "${FILESDIR}"/${P}-flags.patch
-}
-
-src_compile() {
-   tc-export CC
-   emake || die
-}
-
-src_install() {
-   dobin mvcase || die
-   doman mvcase.1
-   dodoc INSTALL
-}



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

2018-05-19 Thread Aaron Bauman
commit: 51e57fd3ab640e793aeeed7e641680acc8b7d853
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:13:25 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:30:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51e57fd3

media-sound/orpheus: remove old

Closes: https://github.com/gentoo/gentoo/pull/8468

 media-sound/orpheus/orpheus-1.6-r2.ebuild | 50 ---
 1 file changed, 50 deletions(-)

diff --git a/media-sound/orpheus/orpheus-1.6-r2.ebuild 
b/media-sound/orpheus/orpheus-1.6-r2.ebuild
deleted file mode 100644
index 2766f98a607..000
--- a/media-sound/orpheus/orpheus-1.6-r2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools eutils toolchain-funcs
-
-DESCRIPTION="Command line MP3 player"
-HOMEPAGE="http://konst.org.ua/en/orpheus;
-SRC_URI="http://konst.org.ua/download/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND="sys-libs/ncurses
-   media-libs/libvorbis
-   media-sound/mpg123
-   media-sound/vorbis-tools[ogg123]"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
-src_prepare() {
-   epatch "${FILESDIR}"/1.5-amd64.patch
-
-   # Fix a stack-based buffer overflow in kkstrtext.h in ktools library.
-   # Bug 113683, CVE-2005-3863.
-   epatch "${FILESDIR}"/101_fix-buffer-overflow.diff
-
-   epatch "${FILESDIR}"/${P}-nolibghttp.patch \
-   "${FILESDIR}"/${P}-cppflags.patch \
-   "${FILESDIR}"/${P}-bufsize.patch \
-   "${FILESDIR}"/${P}-gcc47.patch \
-   "${FILESDIR}"/${P}-constify.patch
-   cp "${S}/config.rpath" "${S}/kkstrtext-0.1/" || die
-
-   # For automake 1.9 and later
-   sed -i -e 's:@MKINSTALLDIRS@:$(top_srcdir)/mkinstalldirs:' \
-   po/Makefile.in.in || die
-
-   einfo "Removing outdated files..."
-   find . -name "missing" -print -delete
-   eautoreconf
-}
-
-src_compile() {
-   emake AR="$(tc-getAR)"
-}



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

2018-05-19 Thread Aaron Bauman
commit: 36ca13142abd0a08239c2ea51d3dd9ed23f4a14e
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 06:59:29 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:31:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36ca1314

net-p2p/ppcoind: remove old

 net-p2p/ppcoind/ppcoind-0.4.0.ebuild | 118 ---
 1 file changed, 118 deletions(-)

diff --git a/net-p2p/ppcoind/ppcoind-0.4.0.ebuild 
b/net-p2p/ppcoind/ppcoind-0.4.0.ebuild
deleted file mode 100644
index f0cc1712c90..000
--- a/net-p2p/ppcoind/ppcoind-0.4.0.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DB_VER="4.8"
-
-inherit db-use eutils systemd user
-
-MyPV="${PV/_/-}"
-MyPN="ppcoin"
-MyP="${MyPN}-${MyPV}"
-
-DESCRIPTION="Cryptocurrency forked from Bitcoin which aims to be energy 
efficiency"
-HOMEPAGE="http://peercoin.net/;
-SRC_URI="mirror://sourceforge/${MyPN}/${MyP}-linux.tar.gz -> ${MyP}.tar.gz"
-
-LICENSE="MIT ISC GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples ipv6 logrotate upnp"
-
-RDEPEND="
-   dev-libs/boost[threads(+)]
-   dev-libs/openssl:0[-bindist]
-   logrotate? (
-   app-admin/logrotate
-   )
-   upnp? (
-   net-libs/miniupnpc
-   )
-   sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
-"
-DEPEND="${RDEPEND}
-   >=app-shells/bash-4.1
-   sys-apps/sed
-"
-
-S="${WORKDIR}/${MyP}-linux/src"
-
-pkg_setup() {
-   local UG='ppcoin'
-   enewgroup "${UG}"
-   enewuser "${UG}" -1 -1 /var/lib/ppcoin "${UG}"
-}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-gcc6.patch
-
-   if has_version '>=dev-libs/boost-1.52'; then
-   sed -i 's/\(-l db_cxx\)/-l boost_chrono$(BOOST_LIB_SUFFIX) \1/' 
src/makefile.unix
-   fi
-}
-
-src_configure() {
-   OPTS=()
-
-   OPTS+=("DEBUGFLAGS=")
-   OPTS+=("CXXFLAGS=${CXXFLAGS}")
-   OPTS+=("LDFLAGS=${LDFLAGS}")
-
-   if use upnp; then
-   OPTS+=("USE_UPNP=1")
-   else
-   OPTS+=("USE_UPNP=-")
-   fi
-
-   use ipv6 || OPTS+=("USE_IPV6=-")
-
-   OPTS+=("USE_SYSTEM_LEVELDB=1")
-   OPTS+=("BDB_INCLUDE_PATH=$(db_includedir "${DB_VER}")")
-   OPTS+=("BDB_LIB_SUFFIX=-${DB_VER}")
-
-   cd src || die
-   emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" -f makefile.unix "${OPTS[@]}" 
${PN}
-}
-
-#Tests are broken
-#src_test() {
-#  cd src || die
-#  emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" -f makefile.unix "${OPTS[@]}" 
test_ppcoin
-#  ./test_ppcoin || die 'Tests failed'
-#}
-
-src_install() {
-   dobin src/${PN}
-
-   insinto /etc/ppcoin
-   doins "${FILESDIR}/ppcoin.conf"
-   fowners ppcoin:ppcoin /etc/ppcoin/ppcoin.conf
-   fperms 600 /etc/ppcoin/ppcoin.conf
-
-   newconfd "${FILESDIR}/ppcoin.confd" ${PN}
-   newinitd "${FILESDIR}/ppcoin.initd-r1" ${PN}
-   systemd_dounit "${FILESDIR}/ppcoin.service"
-
-   keepdir /var/lib/ppcoin/.ppcoin
-   fperms 700 /var/lib/ppcoin
-   fowners ppcoin:ppcoin /var/lib/ppcoin/
-   fowners ppcoin:ppcoin /var/lib/ppcoin/.ppcoin
-   dosym /etc/ppcoin/ppcoin.conf /var/lib/ppcoin/.ppcoin/ppcoin.conf
-
-   dodoc ../README
-   dodoc README.md
-   newman contrib/debian/manpages/bitcoind.1 ppcoind.1
-   newman contrib/debian/manpages/bitcoin.conf.5 ppcoin.conf.5
-
-   if use examples; then
-   docinto examples
-   dodoc -r 
contrib/{bitrpc,gitian-descriptors,gitian-downloader,pyminer,wallettools}
-
-   fi
-
-   if use logrotate; then
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}/ppcoind.logrotate" ppcoind
-   fi
-}



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

2018-05-19 Thread Aaron Bauman
commit: 4990493c97b6fedb45f2ff290bef9d6f133ff59c
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 06:54:56 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:31:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4990493c

app-admin/sxid: remove old

 app-admin/sxid/sxid-4.2-r1.ebuild | 31 ---
 1 file changed, 31 deletions(-)

diff --git a/app-admin/sxid/sxid-4.2-r1.ebuild 
b/app-admin/sxid/sxid-4.2-r1.ebuild
deleted file mode 100644
index da19f4b987a..000
--- a/app-admin/sxid/sxid-4.2-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools
-
-DESCRIPTION="suid, sgid file and directory checking"
-HOMEPAGE="http://freshmeat.net/projects/sxid;
-SRC_URI="http://linukz.org/download/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-RDEPEND="virtual/mailx"
-DEPEND=""
-
-DOCS=( docs/sxid.{conf,cron}.example )
-
-src_prepare() {
-   # this is an admin application and really requires root to run correctly
-   # we need to move the binary to the sbin directory
-   sed -i s/bindir/sbindir/g source/Makefile.in || die
-   eautoreconf
-}
-
-pkg_postinst() {
-   elog "You will need to configure sxid.conf for your system using the 
manpage and example"
-}



[gentoo-commits] repo/gentoo:master commit in: x11-terms/tilda/

2018-05-19 Thread Aaron Bauman
commit: 3a4a034e34992bd76fb75d390520093e31e49596
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 06:56:56 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:31:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a4a034e

x11-terms/tilda: remove old

 x11-terms/tilda/tilda-0.9.6.ebuild | 27 ---
 1 file changed, 27 deletions(-)

diff --git a/x11-terms/tilda/tilda-0.9.6.ebuild 
b/x11-terms/tilda/tilda-0.9.6.ebuild
deleted file mode 100644
index fee09545ab7..000
--- a/x11-terms/tilda/tilda-0.9.6.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils
-
-DESCRIPTION="A drop down terminal, similar to the consoles found in first 
person shooters"
-HOMEPAGE="http://tilda.sourceforge.net;
-SRC_URI="mirror://sourceforge/tilda/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="x11-libs/vte:0
-   >=dev-libs/glib-2.8.4:2
-   dev-libs/confuse
-   gnome-base/libglade"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-0.9.6-gdk_resources.patch
-   epatch "${FILESDIR}"/${PN}-0.9.6-glib-single-include.patch
-}



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

2018-05-19 Thread Aaron Bauman
commit: 22d3d224b837a63b234fa488c2f6abfd4614078c
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:14:19 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:30:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22d3d224

media-sound/gbsplay: remove old

 media-sound/gbsplay/gbsplay-0.0.91-r1.ebuild | 54 
 1 file changed, 54 deletions(-)

diff --git a/media-sound/gbsplay/gbsplay-0.0.91-r1.ebuild 
b/media-sound/gbsplay/gbsplay-0.0.91-r1.ebuild
deleted file mode 100644
index 3b74a80e008..000
--- a/media-sound/gbsplay/gbsplay-0.0.91-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-IUSE="+alsa nas nls oss"
-PLOCALES="de en"
-
-inherit l10n toolchain-funcs
-
-DESCRIPTION="Nintendo Gameboy sound player for GBS format"
-HOMEPAGE="http://gbsplay.berlios.de;
-#SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="alsa? ( media-libs/alsa-lib:0 )
-   nas? ( media-libs/nas:0 )"
-
-DEPEND="${RDEPEND}
-   nls? ( sys-devel/gettext:0 )"
-
-src_configure() {
-   tc-export AR CC
-
-   # No econf, because "unknown option '--build=x86_64-pc-linux-gnu'"
-   ./configure \
-   --prefix=/usr \
-   --mandir=/usr/share/man \
-   --docdir=/usr/share/doc/${PF} \
-   --without-xmmsplugin \
-   --without-test \
-   $(use_enable nls i18n) \
-   $(use_enable oss devdsp) \
-   $(use_enable alsa) \
-   $(use_enable nas) || die "Configure failed."
-}
-
-src_compile() {
-   emake CC="$(tc-getCC)" SPLINT="true"
-}
-
-remove_disabled_locale() {
-   rm -rf "${D}"/usr/share/locale/$1
-}
-
-src_install() {
-   default
-
-   l10n_for_each_disabled_locale_do remove_disabled_locale
-}



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

2018-05-19 Thread Aaron Bauman
commit: 708471029574348294733f713aca3ccae4781b1a
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 06:55:50 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:31:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70847102

app-misc/astrolog: remove old

 app-misc/astrolog/astrolog-5.40-r2.ebuild | 68 ---
 1 file changed, 68 deletions(-)

diff --git a/app-misc/astrolog/astrolog-5.40-r2.ebuild 
b/app-misc/astrolog/astrolog-5.40-r2.ebuild
deleted file mode 100644
index 99247e390a4..000
--- a/app-misc/astrolog/astrolog-5.40-r2.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit toolchain-funcs
-
-DESCRIPTION="A many featured astrology chart calculation program"
-HOMEPAGE="http://www.astrolog.org/astrolog.htm;
-SRC_URI="http://www.astrolog.org/ftp/ast54unx.shr;
-
-LICENSE="astrolog"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="X"
-
-DEPEND="X? ( x11-libs/libX11 )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-
-src_unpack() {
-   sh "${DISTDIR}"/ast54unx.shr || die
-}
-
-src_prepare() {
-   # remove stripping of created binary, dump hardcoded CFLAGS,
-   # respect CC (bug #243606), and CFLAGS (bug #240057)
-   sed \
-   -e 's:strip:#strip:' -e 's:^CFLAGS = :#CFLAGS = :' \
-   -e 's:\tcc :\t$(CC) $(CFLAGS) $(LDFLAGS) :' \
-   -i Makefile || die
-
-   # we use /usr/share/astrolog for config and (optional) 
ephemeris-data-files
-   sed -i -e "s:~/astrolog:/usr/share/astrolog:g" astrolog.h || die
-
-   # if we use X, we need to add -L/usr/X11R6/lib to compile succesful
-   #use X && sed -i -e "s:-lm -lX11:-lm -lX11 -L/usr/X11R6/lib:g" Makefile
-
-   # if we do NOT use X, we disable it by removing the -lX11 from the 
Makefile
-   # and remove the "#define X11" and "#define MOUSE" from astrolog.h
-   use X || ( sed -i -e "s:-lm -lX11:-lm:g" Makefile
-  sed -i -e "s:#define X11:/*#define X11:g" astrolog.h
-  sed -i -e "s:#define MOUSE:/*#define MOUSE:g" astrolog.h )
-
-   # any user may have an own astrolog configfile
-   #sed -i -e "s:astrolog.dat:astrolog.dat:g" astrolog.h
-}
-
-src_compile() {
-   emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   dobin astrolog
-   dodoc Helpfile.540 README.1ST README.540 Update.540
-   insinto /usr/share/astrolog
-   doins astrolog.dat
-}
-
-pkg_postinst() {
-   ewarn "There is a sample config file /usr/share/astrolog/astrolog.dat"
-   ewarn "astrolog looks in current dir for a file astrolog.dat before"
-   ewarn "using the file in /usr/share/astrolog"
-   ewarn "If you want extended accuracy of astrolog's calculations you"
-   ewarn "can emerge the optional package \"astrolog-ephemeris\" which"
-   ewarn "needs ~4.7 MB additional diskspace for the ephemeris-files"
-}



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

2018-05-19 Thread Aaron Bauman
commit: ffbc17afe479f8c05b7ca2ee2299c9a5c378d018
Author: Joonas Niilola  gmail  com>
AuthorDate: Fri May 18 13:51:26 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:32:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffbc17af

profiles/package.mask: Last-rite e16 + few deps

Bug: https://bugs.gentoo.org/656020
Closes: https://github.com/gentoo/gentoo/pull/8458

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 4f6ecb0db45..19a2eb69d52 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,18 @@
 
 #--- END OF EXAMPLES ---
 
+# Joonas Niilola  (18 May 2018)
+# Unmaintained, bugs open without activity, makes users 
+# install ancient version of enlightenment by typing 
+# 'emerge enlightenment' due to obnoxious package slotting.
+# Bug #656020. Removal in ~30 days
+=x11-wm/enlightenment-1.0.17
+=x11-wm/enlightenment-0.16.
+app-doc/edox-data
+x11-misc/e16keyedit
+x11-misc/e16menuedit2
+x11-plugins/epplets
+
 # Andreas Sturmlechner  (18 May 2018)
 # Breaking consumers by internal header cleanup and removal of deprecated
 # qt5_use_modules from Qt5CoreMacros.cmake. File bugs with fixes upstream



[gentoo-commits] repo/gentoo:master commit in: x11-wm/oroborus/

2018-05-19 Thread Aaron Bauman
commit: cebc24fc549b6e5eda8a47c7dcfd114fc30cd5df
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 06:57:53 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:31:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cebc24fc

x11-wm/oroborus: remove old

 x11-wm/oroborus/oroborus-2.0.20.ebuild | 37 --
 1 file changed, 37 deletions(-)

diff --git a/x11-wm/oroborus/oroborus-2.0.20.ebuild 
b/x11-wm/oroborus/oroborus-2.0.20.ebuild
deleted file mode 100644
index a5e7374cb09..000
--- a/x11-wm/oroborus/oroborus-2.0.20.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-DESCRIPTION="Small and fast window manager"
-HOMEPAGE="http://www.oroborus.org;
-SRC_URI="mirror://debian/pool/main/o/${PN}/${PN}_${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="gnome"
-
-RDEPEND="x11-libs/libXpm
-   x11-libs/libXext
-   x11-libs/libSM
-   x11-libs/libICE
-   x11-libs/libX11"
-DEPEND="${RDEPEND}
-   x11-proto/xproto
-   x11-proto/xextproto"
-
-src_configure() {
-   econf --disable-dependency-tracking
-}
-
-src_install () {
-   emake DESTDIR="${D}" install
-
-   if use gnome; then
-   insinto /usr/share/gnome/wm-properties
-   doins "${FILESDIR}"/${PN}.desktop
-   fi
-
-   dodoc AUTHORS ChangeLog example.${PN}rc README TODO
-}



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

2018-05-19 Thread Aaron Bauman
commit: 6663a68bf08507d637bdd5fc9d20f610e4fd6a74
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:17:44 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:30:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6663a68b

media-libs/portaudio: remove old

 media-libs/portaudio/portaudio-19.06.00.ebuild | 41 --
 1 file changed, 41 deletions(-)

diff --git a/media-libs/portaudio/portaudio-19.06.00.ebuild 
b/media-libs/portaudio/portaudio-19.06.00.ebuild
deleted file mode 100644
index 7030a2c59e2..000
--- a/media-libs/portaudio/portaudio-19.06.00.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
-inherit autotools-multilib
-
-DESCRIPTION="A free, cross-platform, open-source, audio I/O library"
-HOMEPAGE="http://www.portaudio.com/;
-SRC_URI="http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
-IUSE="alsa +cxx debug jack oss static-libs"
-
-RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
-   jack? ( virtual/jack[${MULTILIB_USEDEP}] )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-S=${WORKDIR}/${PN}
-DOCS=( README.txt )
-HTML_DOCS=( index.html )
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable debug debug-output)
-   $(use_enable cxx)
-   $(use_with alsa)
-   $(use_with jack)
-   $(use_with oss)
-   )
-
-   autotools-multilib_src_configure
-}
-
-src_compile() {
-   autotools-multilib_src_compile lib/libportaudio.la
-   autotools-multilib_src_compile
-}



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

2018-05-19 Thread Aaron Bauman
commit: f40bde16c4e9cd120c488bbbf7794c549641ea74
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:40:43 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:29:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f40bde16

media-gfx/alembic: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8476

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

diff --git a/media-gfx/alembic/alembic-1.7.4.ebuild 
b/media-gfx/alembic/alembic-1.7.4.ebuild
index 59e04e1ce8f..542642f08d7 100644
--- a/media-gfx/alembic/alembic-1.7.4.ebuild
+++ b/media-gfx/alembic/alembic-1.7.4.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit eutils python-single-r1 cmake-utils
 
 DESCRIPTION="Alembic is an open framework for storing and sharing scene data"
-HOMEPAGE="http://alembic.io/;
+HOMEPAGE="https://www.alembic.io;
 SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"



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

2018-05-19 Thread Davide Pesavento
commit: 0445342fd3497bbad8bda23b676cfafb881025b7
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun May 20 00:20:41 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun May 20 00:20:41 2018 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=0445342f

travis: update

 .travis.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 3c125813..3217506a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,10 +6,10 @@ language: python
 python:
 - pypy
 env:
-- PORTAGE_VER="2.3.24"
+- PORTAGE_VER="2.3.38"
 before_install:
 - sudo apt-get -qq update
-- pip install lxml==4.1.1
+- pip install lxml pyyaml
 before_script:
 - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr
 - mkdir -p travis-overlay /etc/portage /usr/portage/distfiles
@@ -23,7 +23,7 @@ before_script:
 - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> 
/etc/passwd
 - echo "portage::250:portage,travis" >> /etc/group
 - wget "https://www.gentoo.org/dtd/metadata.dtd; -O 
/usr/portage/distfiles/metadata.dtd
-- ln -s portage-portage-${PORTAGE_VER}/cnf/repos.conf 
/etc/portage/repos.conf
+- ln -s $TRAVIS_BUILD_DIR/portage-portage-${PORTAGE_VER}/cnf/repos.conf 
/etc/portage/repos.conf
 - ln -s /usr/portage/profiles/default/linux/amd64/17.0 
/etc/portage/make.profile
 - SIZE=$(stat -c %s .travis.yml.upstream)
 - if ! cmp -n $SIZE -s .travis.yml .travis.yml.upstream; then echo -e 
"\e[31m !!! .travis.yml outdated! Update available 
https://github.com/mrueg/repoman-travis \e[0m" > /tmp/update ; fi



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

2018-05-19 Thread Andreas Hüttel
commit: 51dcc4fb13f219504eaf6c1961b82c747538
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun May 20 00:19:39 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sun May 20 00:20:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51dcc433

layout.conf: Last EAPI=3 ebuild is gone, so ban committing new ones. \o/

 metadata/layout.conf | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/metadata/layout.conf b/metadata/layout.conf
index 58939f1ad66..7ffc0ce6b72 100644
--- a/metadata/layout.conf
+++ b/metadata/layout.conf
@@ -16,10 +16,12 @@ manifest-required-hashes = BLAKE2B
 
 # 2013-04-09 gentoo's council says to deprecate EAPIs 1 and 2 (bug #470670).
 # 2014-02-25 council meeting deprecated EAPIs 0 and 3.
+# 2014-03-11 council meeting banned EAPI 1.
 # 2015-10-11 council meeting deprecated EAPI 4.
+# 2016-01-10 council meeting banned EAPI 3.
 # 2018-05-13 council meeting deprecated EAPI 5 for ebuilds.
-eapis-banned = 1
-eapis-deprecated = 0 2 3 4 5
+eapis-banned = 1 3
+eapis-deprecated = 0 2 4 5
 
 # Bug #337853 - gentoo's council says to enable
 # --echangelog by default for the "gentoo" repo



[gentoo-commits] repo/gentoo:master commit in: sys-process/runit/

2018-05-19 Thread William Hubbs
commit: 4cc8e6626371ca52829b8fce74ad9b4f13639ab6
Author: William Hubbs  gentoo  org>
AuthorDate: Sun May 20 00:20:19 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun May 20 00:20:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cc8e662

sys-process/runit: remove 2.1.1-r1 for eapi3 removal

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-process/runit/runit-2.1.1-r1.ebuild | 72 -
 1 file changed, 72 deletions(-)

diff --git a/sys-process/runit/runit-2.1.1-r1.ebuild 
b/sys-process/runit/runit-2.1.1-r1.ebuild
deleted file mode 100644
index 806a4a39161..000
--- a/sys-process/runit/runit-2.1.1-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-
-inherit toolchain-funcs flag-o-matic
-
-DESCRIPTION="A UNIX init scheme with service supervision"
-HOMEPAGE="http://smarden.org/runit/;
-SRC_URI="http://smarden.org/runit/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86"
-IUSE="static"
-
-S=${WORKDIR}/admin/${P}/src
-
-src_prepare() {
-   # we either build everything or nothing static
-   sed -i -e 's:-static: :' Makefile
-}
-
-src_configure() {
-   use static && append-ldflags -static
-
-   echo "$(tc-getCC) ${CFLAGS}"  > conf-cc
-   echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
-}
-
-src_install() {
-   dodir /var
-   keepdir /etc/runit{,/runsvdir{,/default,/all}}
-   dosym default /etc/runit/runsvdir/current
-   dosym ../etc/runit/runsvdir/current /var/service
-   dosym ../etc/runit/2 /sbin/runsvdir-start
-
-   dobin $(<../package/commands) || die "dobin"
-   dodir /sbin
-   mv "${ED}"/usr/bin/{runit-init,runit,utmpset} "${ED}"/sbin/ || die 
"dosbin"
-
-   cd "${S}"/..
-   dodoc package/{CHANGES,README,THANKS,TODO}
-   dohtml doc/*.html
-   doman man/*.[18]
-
-   exeinto /etc/runit
-   doexe "${FILESDIR}"/{1,2,3,ctrlaltdel} || die
-   for tty in tty1 tty2 tty3 tty4 tty5 tty6; do
-   exeinto /etc/runit/runsvdir/all/getty-$tty/
-   for script in run finish; do
-   newexe "${FILESDIR}"/$script.getty $script
-   dosed "s:TTY:${tty}:g" 
/etc/runit/runsvdir/all/getty-$tty/$script
-   done
-   dosym ../all/getty-$tty /etc/runit/runsvdir/default/getty-$tty
-   done
-
-   # make sv command work
-   cd "${S}"
-   insinto /etc/env.d
-   cat <<-EOF > env.d
-   #/etc/env.d/20runit
-   SVDIR="/var/service/"
-   EOF
-   newins env.d 20runit
-}
-
-pkg_postinst() {
-   ewarn "/etc/profile was updated. Please run:"
-   ewarn "source /etc/profile"
-   ewarn "to make 'sv' work correctly on your currently open shells"
-}



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

2018-05-19 Thread Thomas Deutschmann
commit: 6696ed6cca665c92b86c530b8c870a166f749419
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun May 20 00:12:53 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun May 20 00:19:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6696ed6c

sys-apps/irqbalance: Bump to v1.4.0

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 sys-apps/irqbalance/Manifest|  1 +
 sys-apps/irqbalance/irqbalance-1.4.0.ebuild | 64 +
 2 files changed, 65 insertions(+)

diff --git a/sys-apps/irqbalance/Manifest b/sys-apps/irqbalance/Manifest
index 23b51e5e5df..b9bf92621df 100644
--- a/sys-apps/irqbalance/Manifest
+++ b/sys-apps/irqbalance/Manifest
@@ -2,3 +2,4 @@ DIST irqbalance-1.0.9.tar.gz 44661 BLAKE2B 
f6405629683499c0c92a954927e51dff56eeb
 DIST irqbalance-1.1.0.tar.gz 46742 BLAKE2B 
621e97abd3b901b3ceac3b7959c6bcf88e5dda3742ff83bb3e15e0b65887c945180a9a24b93d20acbb6153015bceda849bb4552293ceb7d94c072aa9cb2781f9
 SHA512 
66abf71b87e25df190417afbf9da24d826d817de3c0ebdc686e3ae56ac131b2f9586092ba67e5f9c749cb139fbf2faaa2af2ef30700955a5b347f1964f61bf6b
 DIST irqbalance-1.2.0.tar.gz 55618 BLAKE2B 
2f5be5564e4cfe510537d7a9322725eec0783b75ebc165d59edc742dde6af3ae694da9ecc4775b5e43c3f4f8946bc4e75cb227258936922f7487f0244752e072
 SHA512 
02510d0d4dc069570b5f98f3b8191384593a6ed9a88c65c87f5a4261f375c291d95c401b01c03ef9d80834925dd124a088f56ac90c5f290815e26337d4f61c1b
 DIST irqbalance-1.3.0.tar.gz 53225 BLAKE2B 
01820d3a3e465896823927dfb43655c4c5efd1eb043a25b438d7b0802c5a6dd7a966825cfb1e71a32d47eca41b72260ba29190e49d9f585c4bf70b676db75c81
 SHA512 
6328d3e419689192a9dce99ccfd803aaf3ad0e766498e63da1c8c5fbbd7ef669b94fa4102b841fa7aca3729ca595f72c05a0ae4373922fb340b6832648de12c4
+DIST irqbalance-1.4.0.tar.gz 53431 BLAKE2B 
35271fab011cb917e5472079025f88df45142b0622d94570f62ef7cce7f2a4e9c9c0b77a79121afa5e7edf4510707c7ace52e894b2af44a5a26b543160f481d0
 SHA512 
d95909c5e86efa452d0d440df0335b398bd2bf973d6a84e29068534f8c4dc033df90913bf507a6d1b7cdab11b288bafbd2c88b4e476f04e32d5f4c89efe4f7d9

diff --git a/sys-apps/irqbalance/irqbalance-1.4.0.ebuild 
b/sys-apps/irqbalance/irqbalance-1.4.0.ebuild
new file mode 100644
index 000..a38439a45dc
--- /dev/null
+++ b/sys-apps/irqbalance/irqbalance-1.4.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+AUTOTOOLS_AUTORECONF=true
+
+inherit autotools systemd linux-info
+
+DESCRIPTION="Distribute hardware interrupts across processors on a 
multiprocessor system"
+HOMEPAGE="https://github.com/Irqbalance/irqbalance;
+SRC_URI="https://github.com/Irqbalance/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="caps +numa selinux"
+
+CDEPEND="
+   dev-libs/glib:2
+   sys-libs/ncurses:0=[unicode]
+   caps? ( sys-libs/libcap-ng )
+   numa? ( sys-process/numactl )
+"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig
+"
+RDEPEND="${CDEPEND}
+   selinux? ( sec-policy/selinux-irqbalance )
+"
+
+pkg_setup() {
+   CONFIG_CHECK="~PCI_MSI"
+   linux-info_pkg_setup
+}
+
+src_prepare() {
+   # Follow systemd policies
+   # https://wiki.gentoo.org/wiki/Project:Systemd/Ebuild_policy
+   sed \
+   -e 's/ $IRQBALANCE_ARGS//' \
+   -e '/EnvironmentFile/d' \
+   -i misc/irqbalance.service || die
+
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_with caps libcap-ng)
+   $(use_enable numa)
+   )
+
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   newinitd "${FILESDIR}"/irqbalance.init.4 irqbalance
+   newconfd "${FILESDIR}"/irqbalance.confd-1 irqbalance
+   systemd_dounit misc/irqbalance.service
+}



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

2018-05-19 Thread Thomas Deutschmann
commit: 41be65b0a1909090de5df0bf30247d52a9dbb4b4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun May 20 00:07:07 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun May 20 00:19:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41be65b0

app-shells/dash: Bump to v0.5.10.2

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 app-shells/dash/Manifest |  1 +
 app-shells/dash/dash-0.5.10.2.ebuild | 78 
 2 files changed, 79 insertions(+)

diff --git a/app-shells/dash/Manifest b/app-shells/dash/Manifest
index 28e096423d1..0ee0aee331e 100644
--- a/app-shells/dash/Manifest
+++ b/app-shells/dash/Manifest
@@ -1,2 +1,3 @@
 DIST dash-0.5.10.1.tar.gz 225253 BLAKE2B 
55dbdca7f01d19656e002d6e210bcae920619e2e88d4d174a3e08cbbc40bf867ece3f24ce9690ec64f95b1f0995ab35cabc08381ac031a33b55282cec0b09e73
 SHA512 
7ca3bbcf8bac84d359cde710a9ab393f05cf8522e969a2c110d2e71620e53f349387128045e68738dc621afe0b48f43ae3d32851187f2ae02d49b3e2575ffa6b
+DIST dash-0.5.10.2.tar.gz 225196 BLAKE2B 
af48879d29aee8041949b51f08eb89c3938e77b2e05553a3e1a9939da7b00fd80f7b9fb35f33e18b0c11850bfb1b8377e9dc9bcfd80754fd29c9d160e0ce5a4d
 SHA512 
0ae29be77794df0ba254967649b9728611a75fbb3acd32ab6634d76399d1ce97c7d12d31da465482a7e4f3207093415c496c39525cace9b78ab3cb9444dd7640
 DIST dash-0.5.9.1.tar.gz 225217 BLAKE2B 
a80aa00ea5418d00b03c9ded21ef5c3a28d599059d1ac2f20082867b71ece6afac2f0bce9bc09946450c7618ad2c7f95df63b3d519a7f56552a291d09e44a71b
 SHA512 
d56a043b8fab4693d3f70cceb531c37174e7ded4acd5549e53048d7ce29125ff21d7e758f51a4a73e06250d051e246467039989275838c19a2579edea3f72b7d

diff --git a/app-shells/dash/dash-0.5.10.2.ebuild 
b/app-shells/dash/dash-0.5.10.2.ebuild
new file mode 100644
index 000..d51383e2eb1
--- /dev/null
+++ b/app-shells/dash/dash-0.5.10.2.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs versionator
+
+#MY_PV="$(get_version_component_range 1-3)"
+DEB_PATCH="" #$(get_version_component_range 4)
+#MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="Debian Almquist Shell"
+HOMEPAGE="http://gondor.apana.org.au/~herbert/dash/;
+SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz;
+if [[ -n "${DEB_PATCH}" ]] ; then
+   DEB_PF="${PN}_${MY_PV}-${DEB_PATCH}"
+   SRC_URI+=" mirror://debian/pool/main/d/dash/${DEB_PF}.diff.gz"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="libedit static vanilla"
+
+RDEPEND="!static? ( libedit? ( dev-libs/libedit ) )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   libedit? ( static? ( dev-libs/libedit[static-libs] ) )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.5.9.1-format-security.patch
+)
+
+src_prepare() {
+   if [[ -n "${DEB_PATCH}" ]] ; then
+   eapply "${WORKDIR}"/${DEB_PF}.diff
+   eapply */debian/diff/*
+   fi
+
+   #337329 #527848
+   use vanilla || eapply "${FILESDIR}"/${PN}-0.5.10-dumb-echo.patch
+
+   default
+
+   # Fix the invalid sort
+   sed -i -e 's/LC_COLLATE=C/LC_ALL=C/g' src/mkbuiltins
+
+   # Use pkg-config for libedit linkage
+   sed -i \
+   -e "/LIBS/s:-ledit:\`$(tc-getPKG_CONFIG) --libs libedit $(usex 
static --static '')\`:" \
+   configure || die
+}
+
+src_configure() {
+   # don't redefine stat on Solaris
+   if [[ ${CHOST} == *-solaris* ]] ; then
+   export ac_cv_func_stat64=yes
+   fi
+   append-cppflags -DJOBS=$(usex libedit 1 0)
+   use static && append-ldflags -static
+   # Do not pass --enable-glob due to #443552.
+   # Autotools use $LINENO as a proxy for extended debug support
+   # (i.e. they're running bash), so disable that. #527644
+   local myeconfargs=(
+   --bindir="${EPREFIX}"/bin
+   --enable-fnmatch
+   --disable-lineno
+   $(use_with libedit)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+   if [[ -n "${DEB_PATCH}" ]] ; then
+   dodoc */debian/changelog
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: sys-block/mbuffer/

2018-05-19 Thread Thomas Deutschmann
commit: 129927402d4aa28f64ec936a2fb720c622e67aed
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun May 20 00:19:05 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun May 20 00:19:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12992740

sys-block/mbuffer: Bump to v20180505

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 sys-block/mbuffer/Manifest|  1 +
 sys-block/mbuffer/mbuffer-20180505.ebuild | 65 +++
 2 files changed, 66 insertions(+)

diff --git a/sys-block/mbuffer/Manifest b/sys-block/mbuffer/Manifest
index 03129a42e2c..858bb66989e 100644
--- a/sys-block/mbuffer/Manifest
+++ b/sys-block/mbuffer/Manifest
@@ -2,3 +2,4 @@ DIST mbuffer-20150412.tgz 122935 BLAKE2B 
c57708861a9fc049fd4f3aa9c1229798a82e866
 DIST mbuffer-20171011.tgz 136630 BLAKE2B 
ba69435684b8c844701a51c5a77d0f5ecbf8bef3ca9b9739a63309524b14d0cbbeba422cee1c5d69f1029a42c18d089cea0bcc46dbeba7f51767df3a815f7de7
 SHA512 
398d7545388a94b4f8961193192cd5e1139b84f31c7699c2b7f66b84a40488a2e70c88a2a70578bd95375e11efc87978a5f6fec805dbbc5f1fea460b3a9c68c4
 DIST mbuffer-20180318.tgz 137259 BLAKE2B 
bec1f6acc68c3c9cf617dd7a752644628d088541c20816737ea1533eb0e9c92b76ef2dd037912501c29056994443e3ad66b1e7f4456e0f40687b32e4c6a12cf1
 SHA512 
ac71876aa0bea3acce8ea00c3848783b752991a0e60ebc4245277fd435c2c9e08c79cc5f47c996e590e711ca1bd652ded075c24ca820efe845f578b106c43594
 DIST mbuffer-20180410.tgz 140026 BLAKE2B 
d271b4c744d5c54aebaea9a68a674df184ac460f879ac4788afaca732466c95dd958145ffcb42155ed998cab771a5b0e70a57a6b479d244156afe6232c37b154
 SHA512 
88fdad5b767bc4dabdbe3300cf3de99a56d137ac991aa5be7ba383fc2447ec01cb43853f31ec88be3bf0cfa736753afe8bd5ef0a5abb386521f2d3316b781d74
+DIST mbuffer-20180505.tgz 140183 BLAKE2B 
4c575c9654f15b4f81357fff21f41170627f6747313a462a76abbb8f5125a2e97549a9975aa67a59b402af6651b4e27b17e4ac7ea72b45620b43542ebccf9107
 SHA512 
b2f541332afadb42bbd2452d2079373f9d8ad44f0fe5eab2934cf4c46c6b2e4ec18c862ed385ba10e5b820efeab28c982bcf4ffa37a9cf70c5c92b5aabde7f4f

diff --git a/sys-block/mbuffer/mbuffer-20180505.ebuild 
b/sys-block/mbuffer/mbuffer-20180505.ebuild
new file mode 100644
index 000..3b1fd2aa6a9
--- /dev/null
+++ b/sys-block/mbuffer/mbuffer-20180505.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="M(easuring)buffer is a replacement for buffer with additional 
functionality"
+HOMEPAGE="http://www.maier-komor.de/mbuffer.html;
+SRC_URI="http://www.maier-komor.de/software/mbuffer/${P}.tgz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="debug ssl test"
+
+RDEPEND="ssl? ( dev-libs/openssl:0= )"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/openssl:0 )"
+
+REQUIRED_USE="test? ( ssl )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-20180410-sysconfdir.patch"
+)
+
+src_prepare() {
+   ln -s "${DISTDIR}"/${P}.tgz test.tar #258881
+
+   # Enforce MAKEOPTS=-j1 because src_test() spawns multiple listener
+   # using same port and src_install may have problems (with /etc folder)
+   export MAKEOPTS=-j1
+
+   default
+
+   mv configure.in configure.ac || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable ssl md5)
+   $(use_enable debug)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_test() {
+   if has usersandbox ${FEATURES} || has network-sandbox ${FEATURES}; then
+   ewarn "Some tests may fail with FEATURES=usersandbox or"
+   ewarn "FEATURES=network-sandbox; Skipping tests because"
+   ewarn "test suite would hang forever in such environments!"
+   return 0;
+   fi
+
+   default
+}
+
+pkg_postinst() {
+   if ! has_version "app-arch/mt-st"; then
+   elog ""
+   elog "If you want autoloader support you need to install 
\"app-arch/mt-st\" in addition!"
+   fi
+}



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

2018-05-19 Thread Thomas Deutschmann
commit: 91da28e722589714e8e46a870d203cde0a77276c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun May 20 00:02:23 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun May 20 00:19:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91da28e7

dev-util/byacc: Bump to v20180510

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-util/byacc/Manifest  |  1 +
 dev-util/byacc/byacc-20180510.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-util/byacc/Manifest b/dev-util/byacc/Manifest
index 6dbe1778cd8..6e9f8a0a084 100644
--- a/dev-util/byacc/Manifest
+++ b/dev-util/byacc/Manifest
@@ -1,2 +1,3 @@
 DIST byacc-20170201.tgz 741550 BLAKE2B 
d72e2361cbc02d37754d7ca2b0cdabe39bc5b60728e7edf6c0040ca87f991469c918fb0d4c96239d1483ccce0b729698cae9fd6d9988626c1a7ca2d58f47bf1c
 SHA512 
f45e6f5eefe4a4bbcd233fbe06cf25fecec3ecabebea9064db0f52d900ae90783dd180f90d70901f82e2b632ce0432d28a913d312b15225e6256344c176a3638
 DIST byacc-20170709.tgz 743677 BLAKE2B 
453e0083671ae17e3401bbc474a9724091fb3314adcee0e13ba55a95a12c4cd351ef901b645cb46e0df89d2053054e46a05703d418706bc962a0cacf55bb3201
 SHA512 
81b6e2dfe674d7e7650e1583c46f67e20cc5ff56b06ef73a54ec2070abd7f4af1a0db7909f31264d0e6157acd3661c19c3478e06c9bab395f53d0371bc1e9097
+DIST byacc-20180510.tgz 744070 BLAKE2B 
9ba861ffcd310462513d7eb4b663c5c44f5cb6dc06ecf1cbcb41c309054905781c4ba1ffada88eaf0071caf16d78a5746d53e66190081e388b95f4a148684cca
 SHA512 
89ac9d4bd1edfdcfa304b0efacc478dbdd84cc2a1cd4ef75515863b1ea2731b106202c758b469c39a4379bb155c0a2365baa290797da0a6bb3904295431556d6

diff --git a/dev-util/byacc/byacc-20180510.ebuild 
b/dev-util/byacc/byacc-20180510.ebuild
new file mode 100644
index 000..56f94d2538c
--- /dev/null
+++ b/dev-util/byacc/byacc-20180510.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="the best variant of the Yacc parser generator"
+HOMEPAGE="https://invisible-island.net/byacc/byacc.html;
+SRC_URI="ftp://invisible-island.net/byacc/${P}.tgz;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+
+DOCS=( ACKNOWLEDGEMENTS AUTHORS CHANGES NEW_FEATURES NOTES README )
+
+src_configure() {
+   econf --program-prefix=b
+}



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

2018-05-19 Thread Thomas Deutschmann
commit: 183524070bdd4330eabb2262adee1fd0d912b4c3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun May 20 00:10:28 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun May 20 00:19:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18352407

sys-apps/debianutils: Bump to v4.8.6

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 sys-apps/debianutils/Manifest |  1 +
 sys-apps/debianutils/debianutils-4.8.6.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/sys-apps/debianutils/Manifest b/sys-apps/debianutils/Manifest
index 25ede174cbf..f97d3f941b2 100644
--- a/sys-apps/debianutils/Manifest
+++ b/sys-apps/debianutils/Manifest
@@ -1,3 +1,4 @@
 DIST debianutils_4.7.tar.xz 156276 BLAKE2B 
9d32dc8222b67d4f1f91d58af0811412924f5de43a691463bc24ac51087f986440d6464fee71f7723980b9c21c579cd4aef70213d5033c419f3802be3bd4cd29
 SHA512 
74110d194de8b6b61d40b133b97629520048a8fdedac349ec2031c793c0246526c1c7904e88098b4c2a121e5efba2d724924139ab1aca15d129a4d210f94a1aa
 DIST debianutils_4.8.3.tar.xz 159292 BLAKE2B 
e655741f42594ff12b4f349331da57ec09073802c9778594619686c93fc3061cf5248ac8e9e2c1b391eb49dd572f3033b1db206ff43f373b17caf7f3c835111f
 SHA512 
468b8f001c0338f166cbc2fe25079edc5feeaa38dce2f5c7e6724c691d6cb35f4843e987695e33ead557bb11887e78ff8a5e3e1f52a266a0f32fb978fa643897
 DIST debianutils_4.8.4.tar.xz 156344 BLAKE2B 
069d15039579d4ce03d2ca4bfd0df199f0044049e7cd6ca899104eec5d917f3db290649bfdd851d8b14519df2750fb975bc6d96e98e14cdb626a610d44da80b0
 SHA512 
7d7b2d12d4907f6032477b4cd5b5dc94d8093724af8a97859c1d4cf229479e2dfe6d44143b454ed9b1990ca2d4833eaeb059659d8c305623875fdc8420659855
+DIST debianutils_4.8.6.tar.xz 156532 BLAKE2B 
2add390a0e38aa3d7103e09b3b65fa2b88c3965ca411c5789409454519791bccdb12d89b1bea4d07417f733d23d0662d4f510750ab404d7a4e8f20c2bd3d7ef4
 SHA512 
5913729cc3c56962e8939b71803258952df0d7204df8090a7504fbefc7f5d1da8e749d606fe23148ea3294909ef172bc1f4f821690169e861729caab70921a2f

diff --git a/sys-apps/debianutils/debianutils-4.8.6.ebuild 
b/sys-apps/debianutils/debianutils-4.8.6.ebuild
new file mode 100644
index 000..f454a8bd5fd
--- /dev/null
+++ b/sys-apps/debianutils/debianutils-4.8.6.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit flag-o-matic
+
+DESCRIPTION="A selection of tools from Debian"
+HOMEPAGE="https://packages.qa.debian.org/d/debianutils.html;
+SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz"
+
+LICENSE="BSD GPL-2 SMAIL"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+IUSE="+installkernel static"
+
+PATCHES=( "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch )
+
+src_configure() {
+   use static && append-ldflags -static
+   default
+}
+
+src_install() {
+   into /
+   dobin tempfile run-parts
+   if use installkernel ; then
+   dosbin installkernel
+   fi
+
+   into /usr
+   dosbin savelog
+
+   doman tempfile.1 run-parts.8 savelog.8
+   use installkernel && doman installkernel.8
+   cd debian || die
+   dodoc changelog control
+   keepdir /etc/kernel/postinst.d
+}



[gentoo-commits] repo/gentoo:master commit in: sys-process/runit/

2018-05-19 Thread William Hubbs
commit: 2f26d2dc5406a99c9e63874270ad8d227aabd10d
Author: William Hubbs  gentoo  org>
AuthorDate: Sun May 20 00:15:50 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun May 20 00:17:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f26d2dc

sys-process/runit: 2.1.1-r2 revbump to remove eapi 3 ebuild

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --force

 sys-process/runit/runit-2.1.1-r2.ebuild | 72 +
 1 file changed, 72 insertions(+)

diff --git a/sys-process/runit/runit-2.1.1-r2.ebuild 
b/sys-process/runit/runit-2.1.1-r2.ebuild
new file mode 100644
index 000..48bdcfc31e7
--- /dev/null
+++ b/sys-process/runit/runit-2.1.1-r2.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs flag-o-matic
+
+DESCRIPTION="A UNIX init scheme with service supervision"
+HOMEPAGE="http://smarden.org/runit/;
+SRC_URI="http://smarden.org/runit/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86"
+IUSE="static"
+
+S=${WORKDIR}/admin/${P}/src
+
+src_prepare() {
+   default
+   # we either build everything or nothing static
+   sed -i -e 's:-static: :' Makefile || die "sed of Makefile failed"
+}
+
+src_configure() {
+   use static && append-ldflags -static
+
+   echo "$(tc-getCC) ${CFLAGS}"  > conf-cc || die "setting cflags"
+   echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die "setting ldflags failed"
+}
+
+src_install() {
+   keepdir /etc/runit{,/runsvdir{,/default,/all}}
+   dosym default /etc/runit/runsvdir/current
+   dosym ../etc/runit/runsvdir/current /var/service
+   dosym ../etc/runit/2 /sbin/runsvdir-start
+
+   dobin $(<../package/commands)
+   dodir /sbin
+   mv "${ED}"/usr/bin/{runit-init,runit,utmpset} "${ED}"/sbin/ || die 
"dosbin"
+
+   cd "${S}"/..
+   dodoc package/{CHANGES,README,THANKS,TODO}
+   dohtml doc/*.html
+   doman man/*.[18]
+
+   exeinto /etc/runit
+   doexe "${FILESDIR}"/{1,2,3,ctrlaltdel}
+   for tty in tty1 tty2 tty3 tty4 tty5 tty6; do
+   exeinto /etc/runit/runsvdir/all/getty-$tty/
+   for script in run finish; do
+   newexe "${FILESDIR}"/$script.getty $script
+   sed -i -e "s:TTY:${tty}:g" 
"${ED}"/etc/runit/runsvdir/all/getty-$tty/$script
+   done
+   dosym ../all/getty-$tty /etc/runit/runsvdir/default/getty-$tty
+   done
+
+   # make sv command work
+   cd "${S}"
+   insinto /etc/env.d
+   cat <<-EOF > env.d
+   #/etc/env.d/20runit
+   SVDIR="/var/service/"
+   EOF
+   newins env.d 20runit
+}
+
+pkg_postinst() {
+   ewarn "/etc/profile was updated. Please run:"
+   ewarn "source /etc/profile"
+   ewarn "to make 'sv' work correctly on your currently open shells"
+}



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

2018-05-19 Thread Aaron Bauman
commit: a79609b7f3868ea387fa4bc38fdec611a6ee1d30
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:36:04 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:16:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a79609b7

dev-python/singledispatch: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8471

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

diff --git a/dev-python/singledispatch/singledispatch-3.4.0.3.ebuild 
b/dev-python/singledispatch/singledispatch-3.4.0.3.ebuild
index 34fa938254a..176fc1e7e05 100644
--- a/dev-python/singledispatch/singledispatch-3.4.0.3.ebuild
+++ b/dev-python/singledispatch/singledispatch-3.4.0.3.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 pypy )
 inherit distutils-r1
 
 DESCRIPTION="A library to bring functools.singledispatch from Python 3.4 to 
Python 2.6-3.3"
-HOMEPAGE="http://docs.python.org/3/library/functools.html#functools.singledispatch;
+HOMEPAGE="https://docs.python.org/3/library/functools.html#functools.singledispatch;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PF}.tar.gz"
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-commander/

2018-05-19 Thread Aaron Bauman
commit: 86e3cdbe07c471c7f75c9f7048c65b2b83b26eb3
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:39:01 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:14:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86e3cdbe

gnome-extra/gnome-commander: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8475

 gnome-extra/gnome-commander/gnome-commander-1.6.1.ebuild | 4 ++--
 gnome-extra/gnome-commander/gnome-commander-1.6.3.ebuild | 4 ++--
 gnome-extra/gnome-commander/gnome-commander-1.6.4.ebuild | 4 ++--
 gnome-extra/gnome-commander/gnome-commander-1.8.0.ebuild | 4 ++--
 gnome-extra/gnome-commander/gnome-commander-1.8.1.ebuild | 2 +-
 5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnome-extra/gnome-commander/gnome-commander-1.6.1.ebuild 
b/gnome-extra/gnome-commander/gnome-commander-1.6.1.ebuild
index f5d9510947e..98d3052c305 100644
--- a/gnome-extra/gnome-commander/gnome-commander-1.6.1.ebuild
+++ b/gnome-extra/gnome-commander/gnome-commander-1.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ GNOME2_LA_PUNT="yes"
 inherit eutils gnome2 python-single-r1
 
 DESCRIPTION="A graphical, full featured, twin-panel file manager"
-HOMEPAGE="http://gcmd.github.io/;
+HOMEPAGE="https://gcmd.github.io/;
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/gnome-extra/gnome-commander/gnome-commander-1.6.3.ebuild 
b/gnome-extra/gnome-commander/gnome-commander-1.6.3.ebuild
index 0c0da091a84..8855b6edb1c 100644
--- a/gnome-extra/gnome-commander/gnome-commander-1.6.3.ebuild
+++ b/gnome-extra/gnome-commander/gnome-commander-1.6.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ GNOME2_LA_PUNT="yes"
 inherit eutils gnome2 python-single-r1
 
 DESCRIPTION="A graphical, full featured, twin-panel file manager"
-HOMEPAGE="http://gcmd.github.io/;
+HOMEPAGE="https://gcmd.github.io/;
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/gnome-extra/gnome-commander/gnome-commander-1.6.4.ebuild 
b/gnome-extra/gnome-commander/gnome-commander-1.6.4.ebuild
index b6b77a79acf..83995841e95 100644
--- a/gnome-extra/gnome-commander/gnome-commander-1.6.4.ebuild
+++ b/gnome-extra/gnome-commander/gnome-commander-1.6.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ GNOME2_LA_PUNT="yes"
 inherit eutils gnome2 python-single-r1
 
 DESCRIPTION="A graphical, full featured, twin-panel file manager"
-HOMEPAGE="http://gcmd.github.io/;
+HOMEPAGE="https://gcmd.github.io/;
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/gnome-extra/gnome-commander/gnome-commander-1.8.0.ebuild 
b/gnome-extra/gnome-commander/gnome-commander-1.8.0.ebuild
index 04455c617d8..9ce12ae4eee 100644
--- a/gnome-extra/gnome-commander/gnome-commander-1.8.0.ebuild
+++ b/gnome-extra/gnome-commander/gnome-commander-1.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ GNOME2_LA_PUNT="yes"
 inherit eutils gnome2 python-single-r1
 
 DESCRIPTION="A graphical, full featured, twin-panel file manager"
-HOMEPAGE="http://gcmd.github.io/;
+HOMEPAGE="https://gcmd.github.io/;
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/gnome-extra/gnome-commander/gnome-commander-1.8.1.ebuild 
b/gnome-extra/gnome-commander/gnome-commander-1.8.1.ebuild
index 652a2cabc70..89f3bfdfe2b 100644
--- a/gnome-extra/gnome-commander/gnome-commander-1.8.1.ebuild
+++ b/gnome-extra/gnome-commander/gnome-commander-1.8.1.ebuild
@@ -8,7 +8,7 @@ GNOME2_LA_PUNT="yes"
 inherit gnome2
 
 DESCRIPTION="A graphical, full featured, twin-panel file manager"
-HOMEPAGE="http://gcmd.github.io/;
+HOMEPAGE="https://gcmd.github.io/;
 
 LICENSE="GPL-2"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/nudoku/

2018-05-19 Thread Aaron Bauman
commit: 60e78116186b3bdd8ca2fbeb4e544ba0160f93e4
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:37:53 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:16:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60e78116

games-puzzle/nudoku: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8469

 games-puzzle/nudoku/nudoku-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-puzzle/nudoku/nudoku-1.0.0.ebuild 
b/games-puzzle/nudoku/nudoku-1.0.0.ebuild
index 6b6db45f6e4..3277e1193f1 100644
--- a/games-puzzle/nudoku/nudoku-1.0.0.ebuild
+++ b/games-puzzle/nudoku/nudoku-1.0.0.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools
 
 DESCRIPTION="ncurses based sudoku game"
-HOMEPAGE="http://jubalh.github.io/nudoku;
+HOMEPAGE="https://jubalh.github.io/nudoku;
 SRC_URI="https://github.com/jubalh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3"



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

2018-05-19 Thread Aaron Bauman
commit: 4325546cb0204a0345f682e4e9bd3a643dafd4b6
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:50:01 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:14:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4325546c

net-p2p/deluge: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8478

 net-p2p/deluge/deluge-1.3.15-r2.ebuild | 4 ++--
 net-p2p/deluge/deluge-1.3..ebuild  | 4 ++--
 net-p2p/deluge/deluge-.ebuild  | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-p2p/deluge/deluge-1.3.15-r2.ebuild 
b/net-p2p/deluge/deluge-1.3.15-r2.ebuild
index ab375feed8a..f49c58d5c41 100644
--- a/net-p2p/deluge/deluge-1.3.15-r2.ebuild
+++ b/net-p2p/deluge/deluge-1.3.15-r2.ebuild
@@ -9,7 +9,7 @@ PLOCALES="af ar ast be bg bn bs ca cs cy da de el en_AU en_CA 
en_GB eo es et eu
 inherit distutils-r1 eutils systemd user l10n
 
 DESCRIPTION="BitTorrent client with a client/server model"
-HOMEPAGE="http://deluge-torrent.org/;
+HOMEPAGE="https://deluge-torrent.org/;
 
 if [[ ${PV} ==  ]]; then
inherit git-r3
@@ -138,6 +138,6 @@ pkg_postinst() {
elog "happens in /etc/systemd/system/deluged.service.d/00gentoo.conf"
elog "and /etc/systemd/system/deluge-web.service.d/00gentoo.conf"
elog
-   elog "For more information look at 
http://dev.deluge-torrent.org/wiki/Faq;
+   elog "For more information look at 
https://dev.deluge-torrent.org/wiki/Faq;
elog
 }

diff --git a/net-p2p/deluge/deluge-1.3..ebuild 
b/net-p2p/deluge/deluge-1.3..ebuild
index 4c516d7de28..a32833a4f9f 100644
--- a/net-p2p/deluge/deluge-1.3..ebuild
+++ b/net-p2p/deluge/deluge-1.3..ebuild
@@ -9,7 +9,7 @@ PLOCALES="af ar ast be bg bn bs ca cs cy da de el en_AU en_CA 
en_GB eo es et eu
 inherit distutils-r1 eutils systemd user l10n
 
 DESCRIPTION="BitTorrent client with a client/server model"
-HOMEPAGE="http://deluge-torrent.org/;
+HOMEPAGE="https://deluge-torrent.org/;
 
 if [[ ${PV} == 1.3. ]]; then
inherit git-r3
@@ -138,6 +138,6 @@ pkg_postinst() {
elog "happens in /etc/systemd/system/deluged.service.d/00gentoo.conf"
elog "and /etc/systemd/system/deluge-web.service.d/00gentoo.conf"
elog
-   elog "For more information look at 
http://dev.deluge-torrent.org/wiki/Faq;
+   elog "For more information look at 
https://dev.deluge-torrent.org/wiki/Faq;
elog
 }

diff --git a/net-p2p/deluge/deluge-.ebuild 
b/net-p2p/deluge/deluge-.ebuild
index af4e8728bc1..7d98de7bce8 100644
--- a/net-p2p/deluge/deluge-.ebuild
+++ b/net-p2p/deluge/deluge-.ebuild
@@ -9,7 +9,7 @@ PLOCALES="af ar ast be bg bn bs ca cs cy da de el en_AU en_CA 
en_GB eo es et eu
 inherit distutils-r1 eutils systemd user l10n
 
 DESCRIPTION="BitTorrent client with a client/server model"
-HOMEPAGE="http://deluge-torrent.org/;
+HOMEPAGE="https://deluge-torrent.org/;
 
 if [[ ${PV} ==  ]]; then
inherit git-r3
@@ -134,6 +134,6 @@ pkg_postinst() {
elog "happens in /etc/systemd/system/deluged.service.d/00gentoo.conf"
elog "and /etc/systemd/system/deluge-web.service.d/00gentoo.conf"
elog
-   elog "For more information look at 
http://dev.deluge-torrent.org/wiki/Faq;
+   elog "For more information look at 
https://dev.deluge-torrent.org/wiki/Faq;
elog
 }



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

2018-05-19 Thread Aaron Bauman
commit: f592b9d504fbc6e002443bdcfef58a389ed3a407
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:32:20 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:15:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f592b9d5

app-editors/scite: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8474

 app-editors/scite/scite-3.5.5.ebuild| 4 ++--
 app-editors/scite/scite-3.6.5-r1.ebuild | 4 ++--
 app-editors/scite/scite-4.0.2.ebuild| 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-editors/scite/scite-3.5.5.ebuild 
b/app-editors/scite/scite-3.5.5.ebuild
index e780172d8de..7e033571557 100644
--- a/app-editors/scite/scite-3.5.5.ebuild
+++ b/app-editors/scite/scite-3.5.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -7,7 +7,7 @@ inherit toolchain-funcs eutils xdg-utils
 
 MY_PV=${PV//./}
 DESCRIPTION="A very powerful editor for programmers"
-HOMEPAGE="http://www.scintilla.org/SciTE.html;
+HOMEPAGE="https://www.scintilla.org/SciTE.html;
 SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz"
 
 LICENSE="HPND lua? ( MIT )"

diff --git a/app-editors/scite/scite-3.6.5-r1.ebuild 
b/app-editors/scite/scite-3.6.5-r1.ebuild
index 55818274ac6..94ef7659ec7 100644
--- a/app-editors/scite/scite-3.6.5-r1.ebuild
+++ b/app-editors/scite/scite-3.6.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -7,7 +7,7 @@ inherit toolchain-funcs eutils flag-o-matic
 
 MY_PV=${PV//./}
 DESCRIPTION="A very powerful editor for programmers"
-HOMEPAGE="http://www.scintilla.org/SciTE.html;
+HOMEPAGE="https://www.scintilla.org/SciTE.html;
 SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz"
 
 LICENSE="HPND lua? ( MIT )"

diff --git a/app-editors/scite/scite-4.0.2.ebuild 
b/app-editors/scite/scite-4.0.2.ebuild
index f5d3f5c8774..8ef73fdbb39 100644
--- a/app-editors/scite/scite-4.0.2.ebuild
+++ b/app-editors/scite/scite-4.0.2.ebuild
@@ -8,7 +8,7 @@ inherit toolchain-funcs flag-o-matic gnome2-utils xdg-utils
 MY_PV=${PV//./}
 DESCRIPTION="A very powerful, highly configurable, small editor with syntax
 coloring."
-HOMEPAGE="http://www.scintilla.org/SciTE.html;
+HOMEPAGE="https://www.scintilla.org/SciTE.html;
 SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz"
 
 LICENSE="HPND lua? ( MIT )"



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

2018-05-19 Thread Aaron Bauman
commit: 36da3aaae815879e2bf344525bc808d0bab7e1db
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:54:14 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:12:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36da3aaa

sys-devel/slibtool: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8482

 sys-devel/slibtool/slibtool-0.5.17.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-devel/slibtool/slibtool-0.5.17.ebuild 
b/sys-devel/slibtool/slibtool-0.5.17.ebuild
index 2d616267ad3..d5ca0f0b916 100644
--- a/sys-devel/slibtool/slibtool-0.5.17.ebuild
+++ b/sys-devel/slibtool/slibtool-0.5.17.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 DESCRIPTION="A skinny libtool implementation, written in C"
-HOMEPAGE="http://git.midipix.org/cgit.cgi/slibtool;
-SRC_URI="http://git.midipix.org/cgit.cgi/${PN}/snapshot/${P}.tar.xz;
+HOMEPAGE="https://git.midipix.org/cgit.cgi/slibtool;
+SRC_URI="https://git.midipix.org/cgit.cgi/${PN}/snapshot/${P}.tar.xz;
 
 LICENSE="MIT"
 SLOT="0"



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

2018-05-19 Thread Aaron Bauman
commit: 67a94f27e3ad2af15be902f83e6892945b106d25
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:33:46 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:15:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67a94f27

app-emulation/genymotion-bin: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8473

 app-emulation/genymotion-bin/genymotion-bin-2.11.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/genymotion-bin/genymotion-bin-2.11.0.ebuild 
b/app-emulation/genymotion-bin/genymotion-bin-2.11.0.ebuild
index 5d9a8111355..15acb33f5a0 100644
--- a/app-emulation/genymotion-bin/genymotion-bin-2.11.0.ebuild
+++ b/app-emulation/genymotion-bin/genymotion-bin-2.11.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ MY_PN="${PN/-bin}"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="Complete set of tools that provide a virtual environment for 
Android"
-HOMEPAGE="http://genymotion.com;
+HOMEPAGE="https://genymotion.com;
 SRC_URI="${MY_P}-linux_x64.bin"
 DOWNLOAD_URL="https://www.genymotion.com/download/;
 



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

2018-05-19 Thread Aaron Bauman
commit: 133068dc030382cc04d302e25210f6b7bcce17a6
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:37:02 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:16:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=133068dc

dev-ruby/hashicorp-checkpoint: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8470

 dev-ruby/hashicorp-checkpoint/hashicorp-checkpoint-0.1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/hashicorp-checkpoint/hashicorp-checkpoint-0.1.5.ebuild 
b/dev-ruby/hashicorp-checkpoint/hashicorp-checkpoint-0.1.5.ebuild
index 3d67d7d1ada..32cff800327 100644
--- a/dev-ruby/hashicorp-checkpoint/hashicorp-checkpoint-0.1.5.ebuild
+++ b/dev-ruby/hashicorp-checkpoint/hashicorp-checkpoint-0.1.5.ebuild
@@ -12,7 +12,7 @@ RUBY_FAKEGEM_EXTRADOC="README.md"
 inherit ruby-fakegem
 
 DESCRIPTION="Internal HashiCorp service to check version information"
-HOMEPAGE="http://www.hashicorp.com;
+HOMEPAGE="https://www.hashicorp.com;
 
 LICENSE="MPL-2.0"
 SLOT="0"



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

2018-05-19 Thread Aaron Bauman
commit: e138c38bb9e3de70eb29a3e6fda6a987ff69d7df
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:35:01 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:15:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e138c38b

dev-python/python-ly: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8472

 dev-python/python-ly/python-ly-0.9.4.ebuild | 4 ++--
 dev-python/python-ly/python-ly-0.9.5.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/python-ly/python-ly-0.9.4.ebuild 
b/dev-python/python-ly/python-ly-0.9.4.ebuild
index 85786df53c1..0c61c6370a7 100644
--- a/dev-python/python-ly/python-ly-0.9.4.ebuild
+++ b/dev-python/python-ly/python-ly-0.9.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 inherit distutils-r1
 
 DESCRIPTION="Tool and library for manipulating LilyPond files"
-HOMEPAGE="https://github.com/wbsoft/python-ly 
http://pypi.org/project/python-ly/;
+HOMEPAGE="https://github.com/wbsoft/python-ly 
https://pypi.org/project/python-ly/;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2+"

diff --git a/dev-python/python-ly/python-ly-0.9.5.ebuild 
b/dev-python/python-ly/python-ly-0.9.5.ebuild
index 8b2a0b736d5..6bdab043c96 100644
--- a/dev-python/python-ly/python-ly-0.9.5.ebuild
+++ b/dev-python/python-ly/python-ly-0.9.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 inherit distutils-r1
 
 DESCRIPTION="Tool and library for manipulating LilyPond files"
-HOMEPAGE="https://github.com/wbsoft/python-ly 
http://pypi.org/project/python-ly/;
+HOMEPAGE="https://github.com/wbsoft/python-ly 
https://pypi.org/project/python-ly/;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2+"



[gentoo-commits] repo/gentoo:master commit in: net-im/corebird/

2018-05-19 Thread Aaron Bauman
commit: b91ae43c6d56d69a96a98c0f9687982873238fa1
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:47:31 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:14:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b91ae43c

net-im/corebird: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8479

 net-im/corebird/corebird-0.8.ebuild| 4 ++--
 net-im/corebird/corebird-1.0.ebuild| 4 ++--
 net-im/corebird/corebird-1.1.ebuild| 4 ++--
 net-im/corebird/corebird-1.5-r2.ebuild | 4 ++--
 net-im/corebird/corebird-1.5.1.ebuild  | 4 ++--
 net-im/corebird/corebird-1.6.ebuild| 4 ++--
 net-im/corebird/corebird-1.7.2.ebuild  | 4 ++--
 7 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/net-im/corebird/corebird-0.8.ebuild 
b/net-im/corebird/corebird-0.8.ebuild
index edde2a21c5e..49c8f2a5ef4 100644
--- a/net-im/corebird/corebird-0.8.ebuild
+++ b/net-im/corebird/corebird-0.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -10,7 +10,7 @@ AUTOTOOLS_IN_SOURCE_BUILD=1
 inherit eutils autotools-utils gnome2 vala
 
 DESCRIPTION="Native GTK+3 Twitter client"
-HOMEPAGE="http://corebird.baedert.org/;
+HOMEPAGE="https://corebird.baedert.org/;
 SRC_URI="https://github.com/baedert/corebird/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"

diff --git a/net-im/corebird/corebird-1.0.ebuild 
b/net-im/corebird/corebird-1.0.ebuild
index 794ed7e9d84..a3379003a8d 100644
--- a/net-im/corebird/corebird-1.0.ebuild
+++ b/net-im/corebird/corebird-1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -9,7 +9,7 @@ AUTOTOOLS_IN_SOURCE_BUILD=1
 inherit eutils autotools-utils gnome2 vala
 
 DESCRIPTION="Native GTK+3 Twitter client"
-HOMEPAGE="http://corebird.baedert.org/;
+HOMEPAGE="https://corebird.baedert.org/;
 SRC_URI="https://github.com/baedert/corebird/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"

diff --git a/net-im/corebird/corebird-1.1.ebuild 
b/net-im/corebird/corebird-1.1.ebuild
index 10ed157602c..389c95d922f 100644
--- a/net-im/corebird/corebird-1.1.ebuild
+++ b/net-im/corebird/corebird-1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -9,7 +9,7 @@ AUTOTOOLS_IN_SOURCE_BUILD=1
 inherit eutils autotools-utils gnome2 vala
 
 DESCRIPTION="Native GTK+3 Twitter client"
-HOMEPAGE="http://corebird.baedert.org/;
+HOMEPAGE="https://corebird.baedert.org/;
 SRC_URI="https://github.com/baedert/corebird/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"

diff --git a/net-im/corebird/corebird-1.5-r2.ebuild 
b/net-im/corebird/corebird-1.5-r2.ebuild
index 2b05bc95eef..2f515cc2371 100644
--- a/net-im/corebird/corebird-1.5-r2.ebuild
+++ b/net-im/corebird/corebird-1.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ VALA_MIN_API_VERSION=0.34
 inherit autotools gnome2 vala virtualx
 
 DESCRIPTION="Native GTK+3 Twitter client"
-HOMEPAGE="http://corebird.baedert.org/;
+HOMEPAGE="https://corebird.baedert.org/;
 SRC_URI="https://github.com/baedert/corebird/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"

diff --git a/net-im/corebird/corebird-1.5.1.ebuild 
b/net-im/corebird/corebird-1.5.1.ebuild
index 2b05bc95eef..2f515cc2371 100644
--- a/net-im/corebird/corebird-1.5.1.ebuild
+++ b/net-im/corebird/corebird-1.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ VALA_MIN_API_VERSION=0.34
 inherit autotools gnome2 vala virtualx
 
 DESCRIPTION="Native GTK+3 Twitter client"
-HOMEPAGE="http://corebird.baedert.org/;
+HOMEPAGE="https://corebird.baedert.org/;
 SRC_URI="https://github.com/baedert/corebird/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"

diff --git a/net-im/corebird/corebird-1.6.ebuild 
b/net-im/corebird/corebird-1.6.ebuild
index 33c417eb139..c5c524a48e7 100644
--- a/net-im/corebird/corebird-1.6.ebuild
+++ b/net-im/corebird/corebird-1.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ VALA_MIN_API_VERSION=0.34
 inherit autotools gnome2 vala virtualx
 
 DESCRIPTION="Native GTK+3 Twitter client"
-HOMEPAGE="http://corebird.baedert.org/;
+HOMEPAGE="https://corebird.baedert.org/;
 SRC_URI="https://github.com/baedert/corebird/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 

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

2018-05-19 Thread Aaron Bauman
commit: b6c7c384f56bb66443242886167df8adce548b88
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:45:44 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:13:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6c7c384

media-video/syncplay: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8480

 media-video/syncplay/syncplay-1.5.0.ebuild | 4 ++--
 media-video/syncplay/syncplay-1.5.1.ebuild | 2 +-
 media-video/syncplay/syncplay-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-video/syncplay/syncplay-1.5.0.ebuild 
b/media-video/syncplay/syncplay-1.5.0.ebuild
index ae5ec478536..82e3ec8bd45 100644
--- a/media-video/syncplay/syncplay-1.5.0.ebuild
+++ b/media-video/syncplay/syncplay-1.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ inherit python-r1
 MY_PV=${PV/_rc/-RC}
 
 DESCRIPTION="Client/server to synchronize media playback"
-HOMEPAGE="http://syncplay.pl;
+HOMEPAGE="https://syncplay.pl;
 SRC_URI="https://github.com/Syncplay/syncplay/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="Apache-2.0"

diff --git a/media-video/syncplay/syncplay-1.5.1.ebuild 
b/media-video/syncplay/syncplay-1.5.1.ebuild
index 1261425ad26..908f6042f4a 100644
--- a/media-video/syncplay/syncplay-1.5.1.ebuild
+++ b/media-video/syncplay/syncplay-1.5.1.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit python-r1
 
 DESCRIPTION="Client/server to synchronize media playback"
-HOMEPAGE="http://syncplay.pl;
+HOMEPAGE="https://syncplay.pl;
 SRC_URI="https://github.com/Syncplay/syncplay/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="Apache-2.0"

diff --git a/media-video/syncplay/syncplay-.ebuild 
b/media-video/syncplay/syncplay-.ebuild
index eec07d40d08..fd8e3170c71 100644
--- a/media-video/syncplay/syncplay-.ebuild
+++ b/media-video/syncplay/syncplay-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ inherit git-r3 python-r1
 MY_PV=${PV/_rc/-RC}
 
 DESCRIPTION="Client/server to synchronize media playback"
-HOMEPAGE="http://syncplay.pl;
+HOMEPAGE="https://syncplay.pl;
 EGIT_REPO_URI="https://github.com/Syncplay/${PN}.git;
 
 LICENSE="Apache-2.0"



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

2018-05-19 Thread Aaron Bauman
commit: b1cb43d8f1200f11318d408a259b893fec71c980
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:53:15 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:13:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1cb43d8

sys-apps/miller: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8481

 sys-apps/miller/miller-4.2.0.ebuild | 4 ++--
 sys-apps/miller/miller-5.2.2.ebuild | 4 ++--
 sys-apps/miller/miller-5.3.0.ebuild | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-apps/miller/miller-4.2.0.ebuild 
b/sys-apps/miller/miller-4.2.0.ebuild
index df616602dab..f0f66106e3d 100644
--- a/sys-apps/miller/miller-4.2.0.ebuild
+++ b/sys-apps/miller/miller-4.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools
 
 DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data 
(CSV, JSON, ..)"
-HOMEPAGE="http://johnkerl.org/miller;
+HOMEPAGE="https://johnkerl.org/miller/doc/index.html;
 LICENSE="BSD-2"
 
 SLOT="0"

diff --git a/sys-apps/miller/miller-5.2.2.ebuild 
b/sys-apps/miller/miller-5.2.2.ebuild
index 7d27a1bf9b8..fc4af1f1087 100644
--- a/sys-apps/miller/miller-5.2.2.ebuild
+++ b/sys-apps/miller/miller-5.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools
 
 DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data 
(CSV, JSON, ..)"
-HOMEPAGE="http://johnkerl.org/miller;
+HOMEPAGE="https://johnkerl.org/miller/doc/index.html;
 SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="BSD-2"

diff --git a/sys-apps/miller/miller-5.3.0.ebuild 
b/sys-apps/miller/miller-5.3.0.ebuild
index 97912f6bbd6..fc4af1f1087 100644
--- a/sys-apps/miller/miller-5.3.0.ebuild
+++ b/sys-apps/miller/miller-5.3.0.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools
 
 DESCRIPTION="A tool like sed, awk, cut, join, and sort for name-indexed data 
(CSV, JSON, ..)"
-HOMEPAGE="http://johnkerl.org/miller;
+HOMEPAGE="https://johnkerl.org/miller/doc/index.html;
 SRC_URI="https://github.com/johnkerl/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: net-vpn/vpnc/

2018-05-19 Thread Aaron Bauman
commit: ce9aedb01cca00067e6170905865226d59eb10d6
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sat May 19 07:51:07 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun May 20 00:14:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce9aedb0

net-vpn/vpnc: use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/8477

 net-vpn/vpnc/vpnc-0.5.3_p550.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-vpn/vpnc/vpnc-0.5.3_p550.ebuild 
b/net-vpn/vpnc/vpnc-0.5.3_p550.ebuild
index 3962719c290..b3b6de8c287 100644
--- a/net-vpn/vpnc/vpnc-0.5.3_p550.ebuild
+++ b/net-vpn/vpnc/vpnc-0.5.3_p550.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -6,7 +6,7 @@ EAPI=5
 inherit eutils linux-info systemd toolchain-funcs
 
 DESCRIPTION="Free client for Cisco VPN routing software"
-HOMEPAGE="http://www.unix-ag.uni-kl.de/~massar/vpnc/;
+HOMEPAGE="https://www.unix-ag.uni-kl.de/~massar/vpnc/;
 SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;
 
 LICENSE="GPL-2 BSD"
@@ -32,12 +32,12 @@ CONFIG_CHECK="~TUN"
 src_prepare() {
if use gnutls; then
elog "Will build with GnuTLS (default) instead of OpenSSL so 
you may even redistribute binaries."
-   elog "See the Makefile itself and 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440318;
+   elog "See the Makefile itself and 
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440318;
else
sed -i -e '/^#OPENSSL_GPL_VIOLATION/s:#::g' "${S}"/Makefile 
|| die
ewarn "Building SSL support with OpenSSL instead of GnuTLS.  
This means that"
ewarn "you are not allowed to re-distibute the binaries due to 
conflicts between BSD license and GPL,"
-   ewarn "see the vpnc Makefile and 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440318;
+   ewarn "see the vpnc Makefile and 
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440318;
fi
 
sed -e 's:test/cert0.pem::g' -i Makefile || die



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/arm/, app-metrics/collectd/, profiles/desc/, profiles/arch/alpha/

2018-05-19 Thread Thomas Deutschmann
commit: b62998b5cc33b8c5bfd876ab1e99653e1641192e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat May 19 23:42:26 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat May 19 23:43:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b62998b5

app-metrics/collectd: Bump to v5.8.0

Closes: https://bugs.gentoo.org/651808
Package-Manager: Portage-2.3.38, Repoman-2.3.9

 app-metrics/collectd/Manifest  |   1 +
 app-metrics/collectd/collectd-5.8.0.ebuild | 534 +
 profiles/arch/alpha/package.use.mask   |   1 +
 profiles/arch/arm/package.use.mask |   5 +-
 profiles/desc/collectd_plugins.desc|   5 +
 5 files changed, 543 insertions(+), 3 deletions(-)

diff --git a/app-metrics/collectd/Manifest b/app-metrics/collectd/Manifest
index bac7ff56a18..9fb11846c23 100644
--- a/app-metrics/collectd/Manifest
+++ b/app-metrics/collectd/Manifest
@@ -1 +1,2 @@
 DIST collectd-5.7.2.tar.bz2 1798777 BLAKE2B 
4af359a773457bb9c05b6a301d7728eea7598c200f7ca534875b07d1d011b280ab138f680d9607723f14523dd71dcbec3a41e0d8d183848c8ef809cef86c2b8f
 SHA512 
8844b67159f8da2203b5ac57ef19fce0a01050a016174d196b48b5fb24925ad2935af9bdd9af06097ff663499abc496cdcc2d9e9a10f403f8d707c465c1a88f3
+DIST collectd-5.8.0.tar.bz2 1686017 BLAKE2B 
26d995cdb9c25869bf96a056e6ba879de9f009fd4bbf1364a7dedba93b822e57c4b606ca8c84da68cc29db8e77333047695e85d7eb101080de9cee783240f5ea
 SHA512 
1b3d0cc44e2ca54e13eebf292074f1efa8b33d6800d04405e0eaaa2dd1cb2416c6eae580729fb5aead23a5039f41ffe8a9989a907a8c18be8f867f1099fc0008

diff --git a/app-metrics/collectd/collectd-5.8.0.ebuild 
b/app-metrics/collectd/collectd-5.8.0.ebuild
new file mode 100644
index 000..1595bfd1c82
--- /dev/null
+++ b/app-metrics/collectd/collectd-5.8.0.ebuild
@@ -0,0 +1,534 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+JAVA_PKG_OPT_USE="collectd_plugins_java"
+
+inherit autotools fcaps flag-o-matic java-pkg-opt-2 linux-info multilib 
perl-functions python-single-r1 systemd tmpfiles user
+
+DESCRIPTION="Collects system statistics and provides mechanisms to store the 
values"
+
+HOMEPAGE="https://collectd.org/;
+SRC_URI="${HOMEPAGE%/}/files/${P}.tar.bz2"
+
+LICENSE="MIT GPL-2 GPL-2+ GPL-3 GPL-3+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~x86"
+IUSE="contrib debug java kernel_Darwin kernel_FreeBSD kernel_linux perl 
selinux static-libs udev xfs"
+
+# The plugin lists have to follow here since they extend IUSE
+
+# Plugins that don't build (e.g. dependencies not in Gentoo)
+# apple_sensors: Requires libIOKit
+# aquaero:   Requires aerotools-ng/libaquaero5
+# barometer: Requires libi2c (i2c_smbus_read_i2c_block_data)
+# dpdkevents:Requires dpdk
+# dpdkstat:  Requires dpdk
+# grpc:  Requires libgrpc
+# intel_pmu: Requires libjevents (pmu-tools)
+# intel_rdt: Requires libpqos from intel-cmt-cat project
+# lpar:  Requires libperfstat (AIX only)
+# mic:   Requires Intel Many Integrated Core Architecture API
+#(part of Intel's  Xeon Phi software)
+# netapp:Requires libnetapp 
(http://communities.netapp.com/docs/DOC-1110)
+# pf:Requires BSD packet filter
+# pinba: Requires MySQL Pinba engine (http://pinba.org/)
+# tape:  Requires libkstat (Solaris only)
+# write_riemann: Requires riemann-c-client
+# xmms:  Requires libxmms (v1)
+# zone:  Solaris only...
+COLLECTD_IMPOSSIBLE_PLUGINS="apple_sensors aquaero barometer dpdkstat grpc
+   intel_pmu intel_rdt lpar mic netapp pf pinba tape write_riemann
+   xmms zone"
+
+# Plugins that have been (compile) tested and can be enabled via 
COLLECTD_PLUGINS
+COLLECTD_TESTED_PLUGINS="aggregation amqp apache apcups ascent battery bind
+   ceph cgroups chrony conntrack contextswitch cpu cpufreq cpusleep
+   csv curl curl_json curl_xml dbi df disk dns drbd email
+   entropy ethstat exec fhcount filecount fscache gmond gps hddtemp
+   hugepages interface ipc ipmi iptables ipvs irq java lua
+   load logfile log_logstash lvm madwifi match_empty_counter
+   match_hashed match_regex match_timediff match_value mbmon mcelog md
+   memcachec memcached memory modbus mqtt multimeter mysql netlink
+   network network nfs nginx notify_desktop notify_email notify_nagios
+   ntpd numa nut olsrd onewire openldap openvpn oracle ovs_events
+   ovs_stats perl ping postgresql powerdns processes protocols python
+   python redis routeros rrdcached rrdtool sensors serial sigrok smart
+   snmp snmp_agent statsd swap syslog table tail tail_csv
+   target_notification target_replace target_scale target_set tcpconns
+   teamspeak2 ted thermal threshold tokyotyrant turbostat unixsock
+   uptime users uuid varnish virt vmem vserver wireless write_graphite
+   write_http write_kafka 

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

2018-05-19 Thread Andreas Hüttel
commit: 8530febc54e83682dcf87fe26e8cc04130ab44ca
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat May 19 23:37:42 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat May 19 23:38:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8530febc

sys-libs/glibc: Remove old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-libs/glibc/glibc-2.26-r6.ebuild | 848 
 1 file changed, 848 deletions(-)

diff --git a/sys-libs/glibc/glibc-2.26-r6.ebuild 
b/sys-libs/glibc/glibc-2.26-r6.ebuild
deleted file mode 100644
index 0922ffb404f..000
--- a/sys-libs/glibc/glibc-2.26-r6.ebuild
+++ /dev/null
@@ -1,848 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit prefix toolchain-glibc
-
-DESCRIPTION="GNU libc C library"
-HOMEPAGE="https://www.gnu.org/software/libc/;
-
-LICENSE="LGPL-2.1+ BSD HPND ISC inner-net rc PCRE"
-RESTRICT="strip" # Strip ourself #46186
-EMULTILIB_PKG="true"
-
-# Configuration variables
-
-if [[ ${PV} == * ]]; then
-   EGIT_REPO_URI="git://sourceware.org/git/glibc.git"
-   inherit git-r3
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
-   SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
-fi
-
-RELEASE_VER=${PV}
-
-GCC_BOOTSTRAP_VER="4.7.3-r1"
-
-# Gentoo patchset
-PATCH_VER=7
-
-SRC_URI+=" 
https://dev.gentoo.org/~dilfridge/distfiles/${P}-patches-${PATCH_VER}.tar.bz2;
-SRC_URI+=" multilib? ( 
https://dev.gentoo.org/~dilfridge/distfiles/gcc-${GCC_BOOTSTRAP_VER}-multilib-bootstrap.tar.bz2
 )"
-
-IUSE="audit caps debug doc gd hardened multilib nscd selinux systemtap profile 
suid vanilla headers-only"
-
-# Min kernel version glibc requires
-: ${NPTL_KERN_VER:="3.2.0"}
-
-# Here's how the cross-compile logic breaks down ...
-#  CTARGET - machine that will target the binaries
-#  CHOST   - machine that will host the binaries
-#  CBUILD  - machine that will build the binaries
-# If CTARGET != CHOST, it means you want a libc for cross-compiling.
-# If CHOST != CBUILD, it means you want to cross-compile the libc.
-#  CBUILD = CHOST = CTARGET- native build/install
-#  CBUILD != (CHOST = CTARGET) - cross-compile a native build
-#  (CBUILD = CHOST) != CTARGET - libc for cross-compiler
-#  CBUILD != CHOST != CTARGET  - cross-compile a libc for a cross-compiler
-# For install paths:
-#  CHOST = CTARGET  - install into /
-#  CHOST != CTARGET - install into /usr/CTARGET/
-
-export CBUILD=${CBUILD:-${CHOST}}
-export CTARGET=${CTARGET:-${CHOST}}
-if [[ ${CTARGET} == ${CHOST} ]] ; then
-   if [[ ${CATEGORY} == cross-* ]] ; then
-   export CTARGET=${CATEGORY#cross-}
-   fi
-fi
-
-is_crosscompile() {
-   [[ ${CHOST} != ${CTARGET} ]]
-}
-
-SLOT="2.2"
-
-# General: We need a new-enough binutils/gcc to match upstream baseline.
-# arch: we need to make sure our binutils/gcc supports TLS.
-COMMON_DEPEND="
-   nscd? ( selinux? (
-   audit? ( sys-process/audit )
-   caps? ( sys-libs/libcap )
-   ) )
-   suid? ( caps? ( sys-libs/libcap ) )
-   selinux? ( sys-libs/libselinux )
-   systemtap? ( dev-util/systemtap )
-"
-DEPEND="${COMMON_DEPEND}
-   >=app-misc/pax-utils-0.1.10
-   !2.19, but 2.20-r3->2.20-r2 should be 
fine.
-   # Hopefully we never actually use a r# this high.
-   if has_version ">${CATEGORY}/${P}-r1" ; then
-   eerror "Sanity check to keep you from breaking your 
system:"
-   eerror " Downgrading glibc is not supported and a sure 
way to destruction"
-   die "Aborting to save your system"
-   fi
-
-   if ! glibc_run_test '#include \nint main(){return 
getpwuid(0)==0;}\n'
-   then
-   eerror "Your patched vendor kernel is broken.  You need 
to get an"
-   eerror "update from whoever is providing the kernel to 
you."
-   eerror 
"https://sourceware.org/bugzilla/show_bug.cgi?id=5227;
-   eerror "https://bugs.gentoo.org/262698;
-   die "Keeping your system alive, say thank you"
-   fi
-
-   if ! glibc_run_test '#include \n#include 
\nint main(){return syscall(1000)!=-1;}\n'
-   then
-   eerror "Your old kernel is broken.  You need to update 
it to"
-   eerror "a newer version as syscall() will 
break."
-   eerror "https://bugs.gentoo.org/279260;
-   die "Keeping your system alive, say thank you"
-   fi
-   fi
-
-   # Users have had a chance to phase themselves, time to give em the boot
-   if [[ -e ${EROOT}/etc/locale.gen ]] && [[ -e ${EROOT}/etc/locales.build 
]] ; then
-   eerror "You still haven't deleted 

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

2018-05-19 Thread Michael Everitt
commit: ad92a47cf89b5825f70e79e28e2c0f9a10a9e8cf
Author: Michael Everitt  iee  org>
AuthorDate: Sat May 19 22:36:07 2018 +
Commit: Michael Everitt  iee  org>
CommitDate: Sat May 19 22:36:07 2018 +
URL:https://gitweb.gentoo.org/repo/user/veremit.git/commit/?id=ad92a47c

sys-kernel/mc-sources: New package

Package-Manager: Portage-2.3.13, Repoman-2.3.3

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Your branch is up-to-date with 'origin/master'.
#
# Changes to be committed:
#   new file:   sys-kernel/mc-sources/Manifest
#   new file:   sys-kernel/mc-sources/mc-sources-4.14_p6.ebuild
#   new file:   sys-kernel/mc-sources/mc-sources-4.14_p7.ebuild
#
# Untracked files:
#   dev-embedded/
#   dev-libs/
#   kde-misc/
#   licenses/
#   net-misc/
#   profiles/license_groups
#   sys-block/
#   sys-cluster/
#

 sys-kernel/mc-sources/Manifest  |  3 ++
 sys-kernel/mc-sources/mc-sources-4.14_p6.ebuild | 40 +
 sys-kernel/mc-sources/mc-sources-4.14_p7.ebuild | 40 +
 3 files changed, 83 insertions(+)

diff --git a/sys-kernel/mc-sources/Manifest b/sys-kernel/mc-sources/Manifest
new file mode 100644
index 000..931c3de
--- /dev/null
+++ b/sys-kernel/mc-sources/Manifest
@@ -0,0 +1,3 @@
+DIST linux-4.14-mc6-patches.tar.xz 1069216 BLAKE2B 
dd6985c29b02c46ca6fe807425b0a8da8e50506706deb6d8106b99bd65d4d768415d86e34b6f18a61647dabbfe5a750b65e0e3c8731f37579ee02920d2cba54a
 SHA512 
a0bcbc2a87bad234f7c30d5b1a66197079de3eba9069d14ea51a5edd39c8e5b0a0ea432ee112c31d3e266d2929351d4070c4caa369358059cdaae95d682a5848
+DIST linux-4.14-mc7-patches.tar.xz 1281212 BLAKE2B 
e3f5b711b5011183baa3a95a2cb613b6edb90d11bfb2806a7b6d9d81f8dabea086af048ff83c463f6af5184cb0aec62f467a5fe254fd373b4310bee248050fa6
 SHA512 
6f2e80147242c7b6fc307b89cf8de4a292e641867ed052440736c86bd3472aea08efd04513ed031437f3174edb8a09ea4ce3a8720bce5bd868ae0d2124e7c058
+DIST linux-4.14.tar.xz 100770500 BLAKE2B 
85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a
 SHA512 
77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8

diff --git a/sys-kernel/mc-sources/mc-sources-4.14_p6.ebuild 
b/sys-kernel/mc-sources/mc-sources-4.14_p6.ebuild
new file mode 100644
index 000..48049b5
--- /dev/null
+++ b/sys-kernel/mc-sources/mc-sources-4.14_p6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+inherit versionator
+
+COMPRESSTYPE=".xz"
+K_SECURITY_UNSUPPORTED="1"
+
+MC_B="$(get_version_component_range 1-2)"
+MC_V="6"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+K_NOSETEXTRAVERSION="don't_set_it"
+
+DESCRIPTION="Linux kernel that aims to provide improvements to reliability,
+interactive performance, and memory consumption on all architectures and under 
all loads."
+HOMEPAGE="http://oddball.tech/code/kernel-mc/;
+
+MC_FILE="linux-${MC_B}-mc${MC_V}-patches.tar.xz"
+MC_URI="http://oddball.tech/code/kernel-mc/${MC_FILE};
+SRC_URI="${KERNEL_URI} ${MC_URI}" # \${EXPERIMENTAL_URI}
+
+KEYWORDS="-* ~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+UNIPATCH_STRICTORDER="yes"
+UNIPATCH_LIST="${DISTDIR}/${MC_FILE}"
+
+
+pkg_setup(){
+   ewarn
+   ewarn "${PN} is *not* supported by the Gentoo Kernel Project in any 
way."
+   ewarn "If you need support, please contact the mc developers directly."
+   ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues 
with"
+   ewarn "the ebuilds. Thank you."
+   ewarn
+   kernel-2_pkg_setup
+}

diff --git a/sys-kernel/mc-sources/mc-sources-4.14_p7.ebuild 
b/sys-kernel/mc-sources/mc-sources-4.14_p7.ebuild
new file mode 100644
index 000..5577c65
--- /dev/null
+++ b/sys-kernel/mc-sources/mc-sources-4.14_p7.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+inherit eapi7-ver
+
+COMPRESSTYPE=".xz"
+K_SECURITY_UNSUPPORTED="1"
+
+MC_B="$(ver_cut 1-2)"
+MC_V="$(ver_cut 4)"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+K_NOSETEXTRAVERSION="don't_set_it"
+
+DESCRIPTION="Linux kernel that aims to provide improvements to reliability,
+interactive performance, and memory consumption on all architectures and under 
all loads."
+HOMEPAGE="http://oddball.tech/code/kernel-mc/;
+
+MC_FILE="linux-${MC_B}-mc${MC_V}-patches.tar.xz"
+MC_URI="http://oddball.tech/code/kernel-mc/${MC_FILE};
+SRC_URI="${KERNEL_URI} ${MC_URI}" # \${EXPERIMENTAL_URI}
+
+KEYWORDS="-* ~arm ~arm64 ~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+UNIPATCH_STRICTORDER="yes"
+UNIPATCH_LIST="${DISTDIR}/${MC_FILE}"
+
+
+pkg_setup(){
+   ewarn
+   ewarn "${PN} is *not* supported by the Gentoo 

[gentoo-commits] repo/user/veremit:master commit in: metadata/

2018-05-19 Thread Michael Everitt
commit: 7388da2d279c4a51e65b8fe8ea7c2e923b38834b
Author: Michael Everitt  iee  org>
AuthorDate: Fri Feb 10 18:19:18 2017 +
Commit: Michael Everitt  iee  org>
CommitDate: Fri Feb 10 18:19:18 2017 +
URL:https://gitweb.gentoo.org/repo/user/veremit.git/commit/?id=7388da2d

Added thin manifests and sign commits to repo layout.conf.

 metadata/layout.conf | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/metadata/layout.conf b/metadata/layout.conf
index d43e61c..85574a3 100644
--- a/metadata/layout.conf
+++ b/metadata/layout.conf
@@ -1 +1,3 @@
 masters = gentoo
+sign-commits = true
+thin-manifests = true



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

2018-05-19 Thread William Hubbs
commit: 74ba244dc7f9339de406309d89b4a052178a2f3a
Author: William Hubbs  gentoo  org>
AuthorDate: Sat May 19 21:32:52 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat May 19 21:33:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74ba244d

dev-util/meson: 0.46.1 version bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-util/meson/Manifest|  1 +
 dev-util/meson/meson-0.46.1.ebuild | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/dev-util/meson/Manifest b/dev-util/meson/Manifest
index 12624ec1b94..b989ce95417 100644
--- a/dev-util/meson/Manifest
+++ b/dev-util/meson/Manifest
@@ -1,3 +1,4 @@
 DIST meson-0.44.1.tar.gz 1136337 BLAKE2B 
7391776d2f480f43c6cf0bfae3665c16a61c4a28fc4310dc8659ab4165ef76ad1729a9daf645330ea213aeb59e5ba9d991d021d1ad620f6673cebfd64b085d93
 SHA512 
3c350d1752ae4463ec47060e051d79cc0855385e9552deff34fad8431175fb5d0f04b51a242f8f8f737726d06e504339d6b02a5aa9558ee673fb867dbb4e5b2d
 DIST meson-0.45.1.tar.gz 1163287 BLAKE2B 
820ab763193322c75ebf3a79cd38f49f9fa06f9645f382961eddab9bb088263f5ecc603d3ba6db9e038db1ea150d6897dc202bad24ff985ab1ef2dea3f08b724
 SHA512 
704731aae28ba5fe4c2040464d42489cfc1946c95c39e28eef170ba5ab929b8672c782ed18798528b59aeb38abd23e4930f38e38f1e8c45f1ccf96071b097731
 DIST meson-0.46.0.tar.gz 1200258 BLAKE2B 
8f1fdae2456d262abff6078084c8f3ca7a4163e709fe9cdf99fad4b9f42ee42750e66db4dd66728df5c26f2622b9a55388f6c165cbcc022513622df2ebcf7d72
 SHA512 
f2985bfd19477c2f6cd773d7cd0453084e850c0924e110261dcfe183d1534d9d1098ca032fac050d3913893c94a20a2277daa1c12f0cee4fe368a91d136a0c15
+DIST meson-0.46.1.tar.gz 1203731 BLAKE2B 
3b6b78e24a4d1ff3166db5546dda80e8b29236babec51fd5f1e70ba4139f13c4e7b6d2985daccf9ef1bc2e33516b1278ab9c9ea4c7fce775d187450c2498dc76
 SHA512 
beacd5431f9d6abd85a72b2609cbd913f67829b2eef4712a5b9a151e2d0cad6e2c16b5e42819b93f986705305ed874d26211c315aa930b1695552a9e30de8b98

diff --git a/dev-util/meson/meson-0.46.1.ebuild 
b/dev-util/meson/meson-0.46.1.ebuild
new file mode 100644
index 000..37aab5a3b43
--- /dev/null
+++ b/dev-util/meson/meson-0.46.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{5,6} )
+
+if [[ ${PV} = ** ]]; then
+   EGIT_REPO_URI="https://github.com/mesonbuild/meson;
+   inherit git-r3
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x64-solaris"
+fi
+
+inherit distutils-r1
+
+DESCRIPTION="Open source build system"
+HOMEPAGE="http://mesonbuild.com/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+RESTRICT="test"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND=""
+
+python_test() {
+   ${EPYTHON} run_tests.py || die
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   insinto /usr/share/vim/vimfiles
+   doins -r data/syntax-highlighting/vim/{ftdetect,indent,syntax}
+   insinto /usr/share/zsh/site-functions
+   doins data/shell-completions/zsh/_meson
+}



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

2018-05-19 Thread Robin H. Johnson
commit: 1b91ec9ce59ba715f29b61cb384d1585d48fddc2
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Mon May 14 20:58:30 2018 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat May 19 21:30:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b91ec9c

sys-fs/lvm2: Fix correct order for applying patches

Closes: https://bugs.gentoo.org/617756
Package-Manager: Portage-2.3.36, Repoman-2.3.9
(cherry picked from commit 8e74564c314c390f347bb6b2b5e83d448bf2735d)
Signed-off-by: Robin H. Johnson  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/8402

 sys-fs/lvm2/lvm2-2.02.171.ebuild | 2 +-
 sys-fs/lvm2/lvm2-2.02.172.ebuild | 2 +-
 sys-fs/lvm2/lvm2-2.02.173.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-fs/lvm2/lvm2-2.02.171.ebuild b/sys-fs/lvm2/lvm2-2.02.171.ebuild
index c37f990a866..28862e26bce 100644
--- a/sys-fs/lvm2/lvm2-2.02.171.ebuild
+++ b/sys-fs/lvm2/lvm2-2.02.171.ebuild
@@ -66,9 +66,9 @@ PATCHES=(
"${FILESDIR}"/${PN}-2.02.99-locale-muck.patch #330373
"${FILESDIR}"/${PN}-2.02.70-asneeded.patch # -Wl,--as-needed
"${FILESDIR}"/${PN}-2.02.139-dynamic-static-ldflags.patch #332905
-   "${FILESDIR}"/${PN}-2.02.171-static-libm.patch #617756
"${FILESDIR}"/${PN}-2.02.129-static-pkgconfig-libs.patch #370217, 
#439414 + blkid
"${FILESDIR}"/${PN}-2.02.130-pthread-pkgconfig.patch #492450
+   "${FILESDIR}"/${PN}-2.02.171-static-libm.patch #617756
#"${FILESDIR}"/${PN}-2.02.145-mkdev.patch #580062 # Merged upstream
 )
 

diff --git a/sys-fs/lvm2/lvm2-2.02.172.ebuild b/sys-fs/lvm2/lvm2-2.02.172.ebuild
index b8021bbe234..7d02c914775 100644
--- a/sys-fs/lvm2/lvm2-2.02.172.ebuild
+++ b/sys-fs/lvm2/lvm2-2.02.172.ebuild
@@ -66,9 +66,9 @@ PATCHES=(
"${FILESDIR}"/${PN}-2.02.99-locale-muck.patch #330373
"${FILESDIR}"/${PN}-2.02.70-asneeded.patch # -Wl,--as-needed
"${FILESDIR}"/${PN}-2.02.139-dynamic-static-ldflags.patch #332905
-   "${FILESDIR}"/${PN}-2.02.171-static-libm.patch #617756
"${FILESDIR}"/${PN}-2.02.172-static-pkgconfig-libs.patch #370217, 
#439414 + blkid
"${FILESDIR}"/${PN}-2.02.130-pthread-pkgconfig.patch #492450
+   "${FILESDIR}"/${PN}-2.02.171-static-libm.patch #617756
#"${FILESDIR}"/${PN}-2.02.145-mkdev.patch #580062 # Merged upstream
 )
 

diff --git a/sys-fs/lvm2/lvm2-2.02.173.ebuild b/sys-fs/lvm2/lvm2-2.02.173.ebuild
index b8021bbe234..7d02c914775 100644
--- a/sys-fs/lvm2/lvm2-2.02.173.ebuild
+++ b/sys-fs/lvm2/lvm2-2.02.173.ebuild
@@ -66,9 +66,9 @@ PATCHES=(
"${FILESDIR}"/${PN}-2.02.99-locale-muck.patch #330373
"${FILESDIR}"/${PN}-2.02.70-asneeded.patch # -Wl,--as-needed
"${FILESDIR}"/${PN}-2.02.139-dynamic-static-ldflags.patch #332905
-   "${FILESDIR}"/${PN}-2.02.171-static-libm.patch #617756
"${FILESDIR}"/${PN}-2.02.172-static-pkgconfig-libs.patch #370217, 
#439414 + blkid
"${FILESDIR}"/${PN}-2.02.130-pthread-pkgconfig.patch #492450
+   "${FILESDIR}"/${PN}-2.02.171-static-libm.patch #617756
#"${FILESDIR}"/${PN}-2.02.145-mkdev.patch #580062 # Merged upstream
 )
 



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

2018-05-19 Thread Johannes Huber
commit: 1127a11f3ac50ca6dd028a764a50d47c2c78baed
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat May 19 20:36:58 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat May 19 20:37:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1127a11f

app-misc/neofetch: Version bump 4.0.1

Closes: https://github.com/gentoo/gentoo/pull/8442
Package-Manager: Portage-2.3.38, Repoman-2.3.9

 app-misc/neofetch/Manifest| 1 +
 app-misc/neofetch/{neofetch-.ebuild => neofetch-4.0.1.ebuild} | 6 +++---
 app-misc/neofetch/neofetch-.ebuild| 2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/app-misc/neofetch/Manifest b/app-misc/neofetch/Manifest
index aa3077c1807..3550a663a43 100644
--- a/app-misc/neofetch/Manifest
+++ b/app-misc/neofetch/Manifest
@@ -1 +1,2 @@
 DIST neofetch-3.4.0.tar.gz 82090 BLAKE2B 
afc00b37d84cdf3ae0fd4037312b1c67fdadcbe99d6d602e8f3b6caa844b3780861c9d2522ec605ba5b7aa08e4e85ef804129da2ce3f6f01ab8b536704cdd182
 SHA512 
931648e8173eb91fdf5c79b5bb9b6efef132d30cf2f10d6f75dcff42f3661d40ceec712c109e90e2226e1aa85cad7676c438b6cad49e8298a77d990d9a3d197b
+DIST neofetch-4.0.1.tar.gz 111631 BLAKE2B 
457f8d4bb4b2d42bacab5891bd64c6f8b52ee94262258dc4b69b8ebcbae9f06bc7ffabd424a7cae5eee384d52259861f9f2e6b38f3e540b5b805eda48c2d1650
 SHA512 
b3d89e55d9c056a9e80295f4abcdee96866bcf685dc924f21a8b4c92ddb822b8dafef06d28ac14a3bed9da29bb61219a0d4b82cd7e8da18ce4989d847e4e920d

diff --git a/app-misc/neofetch/neofetch-.ebuild 
b/app-misc/neofetch/neofetch-4.0.1.ebuild
similarity index 78%
copy from app-misc/neofetch/neofetch-.ebuild
copy to app-misc/neofetch/neofetch-4.0.1.ebuild
index 2bcaa63beea..a25cba92a48 100644
--- a/app-misc/neofetch/neofetch-.ebuild
+++ b/app-misc/neofetch/neofetch-4.0.1.ebuild
@@ -1,14 +1,14 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit git-r3
 DESCRIPTION="Simple information system script"
 HOMEPAGE="https://github.com/dylanaraps/neofetch;
-EGIT_REPO_URI="https://github.com/dylanaraps/neofetch.git;
+SRC_URI="https://github.com/dylanaraps/${PN}/archive/${PV}/${P}.tar.gz;
 LICENSE="MIT-with-advertising"
 SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-fbsd"
 IUSE="X"
 
 RDEPEND="sys-apps/pciutils

diff --git a/app-misc/neofetch/neofetch-.ebuild 
b/app-misc/neofetch/neofetch-.ebuild
index 2bcaa63beea..82642075d61 100644
--- a/app-misc/neofetch/neofetch-.ebuild
+++ b/app-misc/neofetch/neofetch-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit git-r3
 DESCRIPTION="Simple information system script"



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

2018-05-19 Thread Patrice Clement
commit: 2e09e71a3d9f085bc142ab00f86ef0ac18b2e203
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat May 19 19:31:42 2018 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat May 19 19:31:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e09e71a

dev-python/toolz: version bump.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-python/toolz/Manifest   |  1 +
 dev-python/toolz/toolz-0.9.0.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-python/toolz/Manifest b/dev-python/toolz/Manifest
index bef893c5519..da7561baaeb 100644
--- a/dev-python/toolz/Manifest
+++ b/dev-python/toolz/Manifest
@@ -1,2 +1,3 @@
 DIST toolz-0.8.0.tar.gz 40768 BLAKE2B 
5526dca9841b4d0eaee2f5691dc4dca17a231432eac795eae694c609d011ee85f3a6e818b206820168665b03338ab038326b485635022bdad2eb9289237b5de5
 SHA512 
678ec3120d1306fe0e79824caaa03060ba780c464e783d7e20c4149483babe63646b3facaec63ee4017b32be07cd052f4ebcdf73ba8f7734e80873df7127d469
 DIST toolz-0.8.2.tar.gz 45486 BLAKE2B 
fdc949807efc44c335e542c0a0f8262976747c5fb20a43c8de412d69289394b6ffb7200dfe9ce484b4f71a9c33ee1f8876e1fc14e9e18552f3ea92319146
 SHA512 
b03968b5f31474b2b5fd944d282b620861184cd26b256f6f92a141aa0f25c20baf2be6b1424bc945778fa05781730b477b16551c9f302c284d54c8be64f2699f
+DIST toolz-0.9.0.tar.gz 45544 BLAKE2B 
8de1702a38423f71ae6da24396c7a00428b13cef262efb0fceee454bf67a09a1ab4f4093c84c38234713b38ae4058c4039f2bfcb3c7286daba112e4eda23186c
 SHA512 
f55a773d322b4ece104724c58d89bb41a35ec43f45b14fe367865934162ef06cf7da783b53498405552df75d83fba15bb61ce5ee0661b6122c5984352e80de3d

diff --git a/dev-python/toolz/toolz-0.9.0.ebuild 
b/dev-python/toolz/toolz-0.9.0.ebuild
new file mode 100644
index 000..57473564d3d
--- /dev/null
+++ b/dev-python/toolz/toolz-0.9.0.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="List processing tools and functional utilities"
+HOMEPAGE="https://pypi.org/project/toolz/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



[gentoo-commits] proj/musl:master commit in: sys-devel/gcc/

2018-05-19 Thread Aric Belsito
commit: ad67ddbb4728a4eb76b193b4bf7940d9c5dc1b64
Author: Aric Belsito  gmail  com>
AuthorDate: Sat May 19 19:23:10 2018 +
Commit: Aric Belsito  gmail  com>
CommitDate: Sat May 19 19:23:10 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=ad67ddbb

sys-devel/gcc: version bump to 7.3.0-r3

 sys-devel/gcc/Manifest | 2 +-
 sys-devel/gcc/{gcc-7.3.0-r2.ebuild => gcc-7.3.0-r3.ebuild} | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 088e209..9de862c 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -15,7 +15,7 @@ DIST gcc-7.1.0-patches-1.1.tar.bz2 6746 BLAKE2B 
29ed4ff1ce6412a0c1a88f613377883e
 DIST gcc-7.2.0-patches-1.1.tar.bz2 9246 BLAKE2B 
f6eec8459e5ac1f177d9a417c59616ad53e4ba6da8744cf55922d3a401717bd5bfdf79296a1c0b856cfa03349e73b8034ab6024b83d3f5ef909534811ba470f2
 SHA512 
d08b31d1279cc4c6ba46b2dca6ebed4e5c8e4997f0859acab86c974209ce4aacd0df09632e70c3fb8ee7108ecb8208c8b8605e66a7e8d2568e45644bfeee4fbe
 DIST gcc-7.2.0.tar.xz 62312628 BLAKE2B 
35e4b732f1a4515fc1a9d4424797177112847588e600dc5531bc9bf72305619d4100e8fd9d945920245e704fc9ac5bc5e3dbd20be6c3af49e689fc5bd1eca10f
 SHA512 
f853cd6530b4055d8d8289da74687cb4c6d5f363598d386332d31852b581bac76c3adb7d61889edec3b779f63d8646f0122840f12965ce4a4389ba535dbbb6e1
 DIST gcc-7.3.0-patches-1.1.tar.bz2 7439 BLAKE2B 
b6eff6f96cf4daf7b8debc767dc5ee1924a27be95c0a9a5d5ba957978f224c0907570e1492398865c4fa27d3b8f7c2f0fea2da813bf6b4ebb0fa66f9ccca9c46
 SHA512 
864a433c8f153a216c1028c553ffc3c84c474498c637ca6978e86fbb2ce4c07291c2561aabc2caa4953c012b8e18c277383ca153d56e13006967680119f9bcfa
-DIST gcc-7.3.0-patches-1.2.tar.bz2 7947 BLAKE2B 
3748a090654b322c94402bc88803ffb5e751532601b5810e08891c240360f4725e5666d458bcb189e1ff5aca34db1dc21984d08e26853cd495d3cf1407b16296
 SHA512 
60fa8ed8a2c331db5a9baca86cea655c3f8a26791d6db38cfde2b87147421d7fd9bff20a1486e75512c30cd5e788af11eae329721d84e61270cff2048a4e493b
+DIST gcc-7.3.0-patches-1.4.tar.bz2 8238 BLAKE2B 
72a5dcb046558c8f5c3a75040fe24ce1106c43af7510d6febf667b4377cb9caea5ebe9e1287af90e4ebfffa3f3f22ca85f533acf57c2e2d896f92adc1659b9f5
 SHA512 
24ed0d82240426efb111bbf48913b96fdc824ae3aa5a653298a726ebe64a40791f484229bbab9cc58f73d658e0b4b83ccd13081cfbea6e1673ef1d076cca3b33
 DIST gcc-7.3.0.tar.xz 62462388 BLAKE2B 
dc8f132b21bd0543c3d9dd17557038aafe65675aa73c540954234a3c972b4c31c939149bd50183d072ab6c8d16919e19daeaaffd619ce2ccd62dbdf9a5bb3302
 SHA512 
ad41a7e4584e40e92cdf860bc0288500fbaf5dfb7e8c3fcabe9eba809c87bcfa85b46c19c19921b0cdf6d05483faede8287bb9ea120c0d1559449a70e602c8d4
 DIST gcc-8.1.0-patches-1.3.tar.bz2 10713 BLAKE2B 
3e5cddf5b0c0b9b2bbd2b0aa546dc3aee9bf0e8421656c9260bb7561baa8bb53f7b6ad651bf12d68102fd9e9f97fa17c3306d52a657a46d2dedd16e9a1a74579
 SHA512 
37c785fbfd801d48c46c65e21d33085c1470942531b8f13c28f933debcec944a1389a50fe0f72afa7dbba25a931959a3ebb1c42911abadd11ee530812f1034bb
 DIST gcc-8.1.0.tar.xz 63372320 BLAKE2B 
6465809cf90f4c65c0a82d0390de86c98f954e0b910e2f2de2282b828cca8b6aaf0a5243548854048344ec4840046017887fc0b253fb0ced4238da67ef68f946
 SHA512 
c96246f34a7aeb404c4525b754dc7f7708a18e06271aadb2b32fef00e6e0940f584e52430bfe2ab01e699c93e3cb418adc113d2622fa826facbec0ec8ce3eb2c

diff --git a/sys-devel/gcc/gcc-7.3.0-r2.ebuild 
b/sys-devel/gcc/gcc-7.3.0-r3.ebuild
similarity index 85%
rename from sys-devel/gcc/gcc-7.3.0-r2.ebuild
rename to sys-devel/gcc/gcc-7.3.0-r3.ebuild
index b53b6da..94f12fe 100644
--- a/sys-devel/gcc/gcc-7.3.0-r2.ebuild
+++ b/sys-devel/gcc/gcc-7.3.0-r3.ebuild
@@ -3,13 +3,12 @@
 
 EAPI="5"
 
-PATCH_VER="1.2"
+PATCH_VER="1.4"
 #UCLIBC_VER="1.0"
 
 inherit epatch toolchain
 
-#not enough fixes to warrant a revbump: #511548
-#KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
 
 RDEPEND=""
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: net-firewall/iptables/

2018-05-19 Thread Robin H. Johnson
commit: b15bc816925ae6fbe6cf760858d712635ba3a6ce
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat May 19 18:52:40 2018 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat May 19 18:53:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b15bc816

net-firewall/iptables: >=linux-headers-4.4 needed for BPF_OBJ_GET

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

 net-firewall/iptables/iptables-1.6.1-r3.ebuild | 1 +
 net-firewall/iptables/iptables-1.6.2-r1.ebuild | 1 +
 net-firewall/iptables/iptables-1.6.2-r2.ebuild | 1 +
 3 files changed, 3 insertions(+)

diff --git a/net-firewall/iptables/iptables-1.6.1-r3.ebuild 
b/net-firewall/iptables/iptables-1.6.1-r3.ebuild
index e2e29f74ee9..0bcab1a4bd2 100644
--- a/net-firewall/iptables/iptables-1.6.1-r3.ebuild
+++ b/net-firewall/iptables/iptables-1.6.1-r3.ebuild
@@ -30,6 +30,7 @@ COMMON_DEPEND="
 "
 DEPEND="${COMMON_DEPEND}
virtual/os-headers
+   >=sys-kernel/linux-headers-4.4:0
virtual/pkgconfig
nftables? (
sys-devel/flex

diff --git a/net-firewall/iptables/iptables-1.6.2-r1.ebuild 
b/net-firewall/iptables/iptables-1.6.2-r1.ebuild
index ce3b60df453..6c819b048e5 100644
--- a/net-firewall/iptables/iptables-1.6.2-r1.ebuild
+++ b/net-firewall/iptables/iptables-1.6.2-r1.ebuild
@@ -30,6 +30,7 @@ COMMON_DEPEND="
 "
 DEPEND="${COMMON_DEPEND}
virtual/os-headers
+   >=sys-kernel/linux-headers-4.4:0
virtual/pkgconfig
nftables? (
sys-devel/flex

diff --git a/net-firewall/iptables/iptables-1.6.2-r2.ebuild 
b/net-firewall/iptables/iptables-1.6.2-r2.ebuild
index 131b221fb8f..6688c68b711 100644
--- a/net-firewall/iptables/iptables-1.6.2-r2.ebuild
+++ b/net-firewall/iptables/iptables-1.6.2-r2.ebuild
@@ -30,6 +30,7 @@ COMMON_DEPEND="
 "
 DEPEND="${COMMON_DEPEND}
virtual/os-headers
+   >=sys-kernel/linux-headers-4.4:0
virtual/pkgconfig
nftables? (
sys-devel/flex



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

2018-05-19 Thread Johannes Huber
commit: ac433c5a48b56b486788453a83085d16dc5d2b8f
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat May 19 18:41:38 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat May 19 18:41:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac433c5a

dev-libs/pcl: Remove 1.12 (r0)

Uses deprecated EAPI 5.

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-libs/pcl/pcl-1.12.ebuild | 12 
 1 file changed, 12 deletions(-)

diff --git a/dev-libs/pcl/pcl-1.12.ebuild b/dev-libs/pcl/pcl-1.12.ebuild
deleted file mode 100644
index 14a525dda63..000
--- a/dev-libs/pcl/pcl-1.12.ebuild
+++ /dev/null
@@ -1,12 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Portable Coroutine Library"
-HOMEPAGE="http://xmailserver.org/libpcl.html;
-SRC_URI="http://xmailserver.org/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~x86"



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

2018-05-19 Thread Johannes Huber
commit: 4fb4bf23ac333b4e09346cfd6fe4320abbb21f76
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat May 19 18:40:25 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat May 19 18:41:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fb4bf23

dev-libs/pcl: Revision bump 1.12-r1

EAPI 7

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-libs/pcl/pcl-1.12-r1.ebuild | 12 
 1 file changed, 12 insertions(+)

diff --git a/dev-libs/pcl/pcl-1.12-r1.ebuild b/dev-libs/pcl/pcl-1.12-r1.ebuild
new file mode 100644
index 000..9be9a04989c
--- /dev/null
+++ b/dev-libs/pcl/pcl-1.12-r1.ebuild
@@ -0,0 +1,12 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Portable Coroutine Library"
+HOMEPAGE="http://xmailserver.org/libpcl.html;
+SRC_URI="http://xmailserver.org/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0/1"
+KEYWORDS="~amd64 ~arm ~x86"



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

2018-05-19 Thread Sergei Trofimovich
commit: 3e6f6b83a718f8dca1765b5350d81812e5367abd
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 18:01:35 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e6f6b83

sys-fs/lvm2: keyworded 2.02.173 for sparc

Bug: https://bugs.gentoo.org/614726
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/sys-fs/lvm2/lvm2-2.02.173.ebuild b/sys-fs/lvm2/lvm2-2.02.173.ebuild
index 0d9e8e6dc47..b8021bbe234 100644
--- a/sys-fs/lvm2/lvm2-2.02.173.ebuild
+++ b/sys-fs/lvm2/lvm2-2.02.173.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://sourceware.org/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="readline static static-libs systemd clvm cman corosync lvm1 
lvm2create_initrd openais sanlock selinux +udev +thin device-mapper-only"
 REQUIRED_USE="device-mapper-only? ( !clvm !cman !corosync !lvm1 
!lvm2create_initrd !openais !sanlock !thin )
systemd? ( udev )



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

2018-05-19 Thread Sergei Trofimovich
commit: e3a41fc4d12d1519c83302bd3d9be654acaa31d3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 18:03:07 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3a41fc4

dev-db/postgresql: stable 9.3.22 for sparc

Bug: https://bugs.gentoo.org/649288
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-db/postgresql/postgresql-9.3.22.ebuild 
b/dev-db/postgresql/postgresql-9.3.22.ebuild
index 247e9a1b97c..7d174a46977 100644
--- a/dev-db/postgresql/postgresql-9.3.22.ebuild
+++ b/dev-db/postgresql/postgresql-9.3.22.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



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

2018-05-19 Thread Sergei Trofimovich
commit: 054b894469c1f799c32a62c3ffbcaeb3d02d02b2
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 18:00:40 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=054b8944

sys-fs/lvm2: keyworded 2.02.172 for sparc

Bug: https://bugs.gentoo.org/614726
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/sys-fs/lvm2/lvm2-2.02.172.ebuild b/sys-fs/lvm2/lvm2-2.02.172.ebuild
index 0d9e8e6dc47..b8021bbe234 100644
--- a/sys-fs/lvm2/lvm2-2.02.172.ebuild
+++ b/sys-fs/lvm2/lvm2-2.02.172.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://sourceware.org/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="readline static static-libs systemd clvm cman corosync lvm1 
lvm2create_initrd openais sanlock selinux +udev +thin device-mapper-only"
 REQUIRED_USE="device-mapper-only? ( !clvm !cman !corosync !lvm1 
!lvm2create_initrd !openais !sanlock !thin )
systemd? ( udev )



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

2018-05-19 Thread Sergei Trofimovich
commit: 1043f61b432a8d612d935fc1d63851d703f4cc9f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 18:06:48 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1043f61b

dev-db/postgresql: stable 9.6.8 for sparc

Bug: https://bugs.gentoo.org/649288
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-db/postgresql/postgresql-9.6.8.ebuild 
b/dev-db/postgresql/postgresql-9.6.8.ebuild
index 8527319e7d6..136a3759b71 100644
--- a/dev-db/postgresql/postgresql-9.6.8.ebuild
+++ b/dev-db/postgresql/postgresql-9.6.8.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



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

2018-05-19 Thread Sergei Trofimovich
commit: b8e7622911e8b519b8c4901cfedd77e602c0a6e9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 15:47:46 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8e76229

net-libs/zeromq: stable 4.2.2-r2 for sparc

Bug: https://bugs.gentoo.org/618522
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 net-libs/zeromq/zeromq-4.2.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/zeromq/zeromq-4.2.2-r2.ebuild 
b/net-libs/zeromq/zeromq-4.2.2-r2.ebuild
index 9c159d7b564..9afe36287c8 100644
--- a/net-libs/zeromq/zeromq-4.2.2-r2.ebuild
+++ b/net-libs/zeromq/zeromq-4.2.2-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/zeromq/libzmq/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="LGPL-3"
 SLOT="0/5"
-KEYWORDS="amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~x64-macos ~x86-macos"
 IUSE="doc pgm +sodium static-libs test unwind elibc_Darwin"
 
 RDEPEND="



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

2018-05-19 Thread Sergei Trofimovich
commit: 784b388eb3443f59c106d372fe7e94e224f451c7
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 16:47:52 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=784b388e

dev-libs/libressl: stable 2.6.4 for sparc

Bug: https://bugs.gentoo.org/651564
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-libs/libressl/libressl-2.6.4.ebuild 
b/dev-libs/libressl/libressl-2.6.4.ebuild
index faa38895b6c..152d3751d35 100644
--- a/dev-libs/libressl/libressl-2.6.4.ebuild
+++ b/dev-libs/libressl/libressl-2.6.4.ebuild
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either.  However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/44"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
 IUSE="+asm static-libs test"
 REQUIRED_USE="test? ( static-libs )"
 



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

2018-05-19 Thread Sergei Trofimovich
commit: ff53a14e3c0d1f26e269e4b6aa52a0350a87e750
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 17:46:31 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff53a14e

net-libs/mbedtls: stable 2.7.2 for sparc

Bug: https://bugs.gentoo.org/647800
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/net-libs/mbedtls/mbedtls-2.7.2.ebuild 
b/net-libs/mbedtls/mbedtls-2.7.2.ebuild
index 7d8f493e9ee..d12d9efae7d 100644
--- a/net-libs/mbedtls/mbedtls-2.7.2.ebuild
+++ b/net-libs/mbedtls/mbedtls-2.7.2.ebuild
@@ -12,7 +12,7 @@ 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"
+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="



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

2018-05-19 Thread Sergei Trofimovich
commit: 13c4dc9853dc413ec0d3c5aa8607fde7ae1e2146
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 17:59:46 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13c4dc98

sys-fs/lvm2: keyworded 2.02.171 for sparc

Bug: https://bugs.gentoo.org/614726
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/sys-fs/lvm2/lvm2-2.02.171.ebuild b/sys-fs/lvm2/lvm2-2.02.171.ebuild
index fccd403cbc9..c37f990a866 100644
--- a/sys-fs/lvm2/lvm2-2.02.171.ebuild
+++ b/sys-fs/lvm2/lvm2-2.02.171.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://sourceware.org/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="readline static static-libs systemd clvm cman corosync lvm1 
lvm2create_initrd openais sanlock selinux +udev +thin device-mapper-only"
 REQUIRED_USE="device-mapper-only? ( !clvm !cman !corosync !lvm1 
!lvm2create_initrd !openais !sanlock !thin )
systemd? ( udev )



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

2018-05-19 Thread Sergei Trofimovich
commit: f6c50db2958502bd080a939e08782afb38447f79
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 15:45:24 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c50db2

net-libs/openpgm: stable 5.2.122 for sparc

Bug: https://bugs.gentoo.org/618522
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/net-libs/openpgm/openpgm-5.2.122.ebuild 
b/net-libs/openpgm/openpgm-5.2.122.ebuild
index 26f3cff9c29..4222de5a36b 100644
--- a/net-libs/openpgm/openpgm-5.2.122.ebuild
+++ b/net-libs/openpgm/openpgm-5.2.122.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/steve-o/${PN}/archive/release-${MY_PV}.tar.gz -> ${P
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 arm arm64 hppa ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="static-libs"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2018-05-19 Thread Sergei Trofimovich
commit: 805a8c1d7a566dec44b9fbc1d0f6bff56fc802fc
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 18:04:20 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=805a8c1d

dev-db/postgresql: stable 9.4.17 for sparc

Bug: https://bugs.gentoo.org/649288
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-db/postgresql/postgresql-9.4.17.ebuild 
b/dev-db/postgresql/postgresql-9.4.17.ebuild
index 25676b51c9f..f40cb53ae05 100644
--- a/dev-db/postgresql/postgresql-9.4.17.ebuild
+++ b/dev-db/postgresql/postgresql-9.4.17.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



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

2018-05-19 Thread Sergei Trofimovich
commit: 30cbf998dc97248b11f16c87c56d816a8cf9fe55
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 18:08:02 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30cbf998

dev-db/postgresql: stable 10.3 for sparc

Bug: https://bugs.gentoo.org/649288
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-db/postgresql/postgresql-10.3.ebuild 
b/dev-db/postgresql/postgresql-10.3.ebuild
index 3d5f13113f4..73c9fb3fe9a 100644
--- a/dev-db/postgresql/postgresql-10.3.ebuild
+++ b/dev-db/postgresql/postgresql-10.3.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT=$(get_major_version)
 



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

2018-05-19 Thread Sergei Trofimovich
commit: 7d6d7237e19bcd3b23b3892b46dabe514c209214
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 18:05:34 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d6d7237

dev-db/postgresql: stable 9.5.12 for sparc

Bug: https://bugs.gentoo.org/649288
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-db/postgresql/postgresql-9.5.12.ebuild 
b/dev-db/postgresql/postgresql-9.5.12.ebuild
index 90f8e694d0a..af7b5fab106 100644
--- a/dev-db/postgresql/postgresql-9.5.12.ebuild
+++ b/dev-db/postgresql/postgresql-9.5.12.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



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

2018-05-19 Thread Sergei Trofimovich
commit: b9cc207102a73c5552add4b8142e8ada9688f195
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 17:51:56 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 18:15:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9cc2071

net-misc/curl: stable 7.60.0 for sparc

Bug: https://bugs.gentoo.org/655266
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

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



[gentoo-commits] repo/gentoo:master commit in: app-admin/rsyslog/, app-admin/rsyslog/files/8-stable/

2018-05-19 Thread Thomas Deutschmann
commit: 0b181b006262ef34a81662783d7a1865e6d848f4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat May 19 17:44:38 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat May 19 17:44:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b181b00

app-admin/rsyslog: Fix mmkubernetes test

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 .../8-stable/rsyslog-8.35.0-fix-issue2726.patch| 41 ++
 app-admin/rsyslog/rsyslog-8.35.0.ebuild|  5 ++-
 2 files changed, 45 insertions(+), 1 deletion(-)

diff --git 
a/app-admin/rsyslog/files/8-stable/rsyslog-8.35.0-fix-issue2726.patch 
b/app-admin/rsyslog/files/8-stable/rsyslog-8.35.0-fix-issue2726.patch
new file mode 100644
index 000..eaec239c383
--- /dev/null
+++ b/app-admin/rsyslog/files/8-stable/rsyslog-8.35.0-fix-issue2726.patch
@@ -0,0 +1,41 @@
+From c1791ee90fdd8adf219ae3d2b849f5f041284b7c Mon Sep 17 00:00:00 2001
+From: Rich Megginson 
+Date: Thu, 17 May 2018 18:38:25 -0600
+Subject: [PATCH] mmkubernetes test python must encode response
+
+https://github.com/rsyslog/rsyslog/issues/2721
+Was not working on python3 - must use `encode()` to convert the
+string to a `bytes` object.
+Also run the server with python -u to make sure we get the log
+output from the kubernetes test server.
+---
+ tests/mmkubernetes-basic.sh   | 2 +-
+ tests/mmkubernetes_test_server.py | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/tests/mmkubernetes-basic.sh b/tests/mmkubernetes-basic.sh
+index 0bbfd08ca..d320c343f 100755
+--- a/tests/mmkubernetes-basic.sh
 b/tests/mmkubernetes-basic.sh
+@@ -4,7 +4,7 @@
+ . $srcdir/diag.sh init
+ 
+ testsrv=mmk8s-test-server
+-python ./mmkubernetes_test_server.py 18443 rsyslog${testsrv}.pid 
rsyslogd${testsrv}.started > mmk8s_srv.log 2>&1 &
++python -u ./mmkubernetes_test_server.py 18443 rsyslog${testsrv}.pid 
rsyslogd${testsrv}.started > mmk8s_srv.log 2>&1 &
+ BGPROCESS=$!
+ . $srcdir/diag.sh wait-startup $testsrv
+ echo background mmkubernetes_test_server.py process id is $BGPROCESS
+diff --git a/tests/mmkubernetes_test_server.py 
b/tests/mmkubernetes_test_server.py
+index 0de215603..24f4e1b0e 100644
+--- a/tests/mmkubernetes_test_server.py
 b/tests/mmkubernetes_test_server.py
+@@ -104,7 +104,7 @@ def do_GET(self):
+ self.log_error(resp)
+ self.send_response(status)
+ self.end_headers()
+-self.wfile.write(json.dumps(json.loads(resp), separators=(',',':')))
++self.wfile.write(json.dumps(json.loads(resp), 
separators=(',',':')).encode())
+ 
+ port = int(sys.argv[1])
+ 

diff --git a/app-admin/rsyslog/rsyslog-8.35.0.ebuild 
b/app-admin/rsyslog/rsyslog-8.35.0.ebuild
index b225c3969c6..6c81d3b33a1 100644
--- a/app-admin/rsyslog/rsyslog-8.35.0.ebuild
+++ b/app-admin/rsyslog/rsyslog-8.35.0.ebuild
@@ -48,7 +48,10 @@ else
doc? ( 
https://www.rsyslog.com/files/download/${PN}/${MY_URL_PREFIX}${PN}-doc-${MY_PV}.tar.gz
 -> ${MY_FILENAME_DOCS} )
"
 
-   PATCHES=( "${FILESDIR}"/${BRANCH}/${PN}-8.35.0-fix-issue2719.patch )
+   PATCHES=(
+   "${FILESDIR}"/${BRANCH}/${PN}-8.35.0-fix-issue2719.patch
+   "${FILESDIR}"/${BRANCH}/${PN}-8.35.0-fix-issue2726.patch
+   )
 fi
 
 LICENSE="GPL-3 LGPL-3 Apache-2.0"



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

2018-05-19 Thread Andreas Hüttel
commit: dc88b8b6d8868b4e7d177b8ef3e340e669d68c99
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat May 19 17:20:13 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat May 19 17:20:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc88b8b6

sys-devel/binutils-hppa64: Remove old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-devel/binutils-hppa64/Manifest |   1 -
 .../binutils-hppa64/binutils-hppa64-2.30.ebuild| 393 -
 2 files changed, 394 deletions(-)

diff --git a/sys-devel/binutils-hppa64/Manifest 
b/sys-devel/binutils-hppa64/Manifest
index d6f2e7ca842..5b53fd263c4 100644
--- a/sys-devel/binutils-hppa64/Manifest
+++ b/sys-devel/binutils-hppa64/Manifest
@@ -12,6 +12,5 @@ DIST binutils-2.29-patches-1.0.tar.xz 7548 BLAKE2B 
b5365ba6849f8809528ed13ce0b0e
 DIST binutils-2.29.1-patches-2.tar.xz 18528 BLAKE2B 
514496d6c9609362782d66b6cecbe3fe617f96dfb86e174a80d0b9113cbd4fce9d760fa61660ba2cfafbe1e482e955391cb8d3ef78d2c166c82796416a7ee106
 SHA512 
b60a3af9cd6a681f32a59fc4a30602ee1290f75cc93c8ad38ab0de17a7f30538a751b801dbaf079e3d514b9671e34e91742c4c9c953a8c9794505b571b7e80f0
 DIST binutils-2.29.1.tar.bz2 29123355 BLAKE2B 
83de518a27bae0f13c57b1979493dd7f7cabae424cff5e8495d1f064da24b6ef9e1c19d1d1adad2dca7142372782023f66b4b4223170a49b96ba3834266fe878
 SHA512 
4063d3426922376ccceb3f14b43e287442e82a8038cf50f4f51ad97d438c672c0e310ca4b856c9aff5aa9911073e256e8298a7a3f1844eeb60b90d955592
 DIST binutils-2.29.tar.bz2 29073316 BLAKE2B 
0eb7bbefa1ac5f4d753ca9328d339a466d4f75c69d5d860802aded8e42ce4293f65c72a0f0596b170e90e1cc3ded23ea30576948cb875eea044cb02bb55bb2d3
 SHA512 
8148587d7e4f14ebcbcb3f984b116deaae5d4008228628acde14bc242a64a4b53faf1f6077a2c4ca4750e2f254b698ba506bd657f79e1202e87e7029b0069337
-DIST binutils-2.30-patches-1.tar.xz 13884 BLAKE2B 
86d160144e4ae3213838ccd07d008a96f210dbe8d894f2043420bd0003f8e0611564f77dadf60780da61278bbac41130922703fef69ba8ac451bcae5d9c65cf4
 SHA512 
cf38328bac920c1159e73727a9bb46bd462fa60650c90ee8a3d6221d447c678fdd79c6886efc52e35897d535dd717c1dc363bcb3f201aacd15ace078694456da
 DIST binutils-2.30-patches-2.tar.xz 490272 BLAKE2B 
a28a5b5bb8faa33fec269f2c69d6ed0e4e7d5a9169861aa4b3c45511794e1e749c216862a8258c2029f1b40c511dcb2a0aeaecda57e75d52418f10d6f345718f
 SHA512 
1686d5b58ee968f2000647acab2bee4c263d1c85fd43fed8c820fccfc0d7024a01211e7853cd5ce452fa90da500bc17309edf6dbc901c7fd6fc7b3e3d6f42581
 DIST binutils-2.30.tar.xz 20286700 BLAKE2B 
2dd5436a15a601011a1950e6082ec00082f5916fb82ce95ceab424fd8dc19f6daa7ac32a149f222ccdcc603354165cc206fde070eaa44fe2cc5e57486efc7868
 SHA512 
e747ea20d8d79fcd21b9d9f6695059caa7189d60f19256da398e34b789fea9a133c32b192e9693b5828d27683739b0198431bf8b3e39fb3b04884cf89d9aa839

diff --git a/sys-devel/binutils-hppa64/binutils-hppa64-2.30.ebuild 
b/sys-devel/binutils-hppa64/binutils-hppa64-2.30.ebuild
deleted file mode 100644
index 2bb4529fe8f..000
--- a/sys-devel/binutils-hppa64/binutils-hppa64-2.30.ebuild
+++ /dev/null
@@ -1,393 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-export CTARGET=hppa64-${CHOST#*-}
-
-inherit eutils libtool flag-o-matic gnuconfig multilib versionator
-
-DESCRIPTION="Tools necessary to build programs"
-HOMEPAGE="https://sourceware.org/binutils/;
-LICENSE="GPL-3+"
-IUSE="+cxx doc multitarget +nls static-libs test"
-
-# Variables that can be set here:
-# PATCH_VER  - the patchset version
-#  Default: empty, no patching
-# PATCH_BINUTILS_VER - the binutils version in the patchset name
-#- Default: PV
-# PATCH_DEV  - Use download URI 
https://dev.gentoo.org/~{PATCH_DEV}/distfiles/...
-#  for the patchsets
-#  Default: dilfridge :)
-
-PATCH_VER=1
-
-case ${PV} in
-   )
-   BVER="git"
-   EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git;
-   inherit git-r3
-   S=${WORKDIR}/binutils
-   EGIT_CHECKOUT_DIR=${S}
-   ;;
-   *)
-   BVER=${PV}
-   SRC_URI="mirror://gnu/binutils/binutils-${BVER}.tar.xz 
https://sourceware.org/pub/binutils/releases/binutils-${BVER}.tar.xz;
-   ;;
-esac
-SLOT="${BVER}"
-KEYWORDS="-* ~hppa"
-
-#
-# The Gentoo patchset
-#
-PATCH_BINUTILS_VER=${PATCH_BINUTILS_VER:-${BVER}}
-PATCH_DEV=${PATCH_DEV:-dilfridge}
-
-[[ -z ${PATCH_VER} ]] || SRC_URI="${SRC_URI}
-   
https://dev.gentoo.org/~${PATCH_DEV}/distfiles/binutils-${PATCH_BINUTILS_VER}-patches-${PATCH_VER}.tar.xz;
-
-#
-# The cross-compile logic
-#
-export CTARGET=${CTARGET:-${CHOST}}
-if [[ ${CTARGET} == ${CHOST} ]] ; then
-   if [[ ${CATEGORY} == cross-* ]] ; then
-   export CTARGET=${CATEGORY#cross-}
-   fi
-fi
-is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
-
-#
-# The dependencies
-#
-RDEPEND="
-   >=sys-devel/binutils-config-3
-   

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

2018-05-19 Thread Andreas Hüttel
commit: 4485556b5c3f3c92dbee97dd0b38e1452ad9e1c7
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat May 19 17:19:46 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat May 19 17:19:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4485556b

sys-devel/binutils: Remove old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-devel/binutils/Manifest|   1 -
 sys-devel/binutils/binutils-2.30-r1.ebuild | 416 -
 sys-devel/binutils/binutils-2.30.ebuild| 385 --
 3 files changed, 802 deletions(-)

diff --git a/sys-devel/binutils/Manifest b/sys-devel/binutils/Manifest
index 67acde949fd..943d5a86288 100644
--- a/sys-devel/binutils/Manifest
+++ b/sys-devel/binutils/Manifest
@@ -8,6 +8,5 @@ DIST binutils-2.28.1-patches-1.0.tar.xz 19772 BLAKE2B 
146b393b49ba868c7c064c5827
 DIST binutils-2.28.1.tar.bz2 28120394 BLAKE2B 
3a0ed2bcf0c859638546b7460d9e6f0a55518402ff0c65c90ce462a318f5ae6690961616d188ce6cf0271c9f2fb8b7902782d32cf0e711068c53d3d06956d89e
 SHA512 
5ec5212497b0fa8324f6a0884c284cb71c01942bbd39356d1ae745a5c9d97274c10f9d9c723f4bef6f0217662dfcd0c36e4e955a7599b11217658dc7b97553eb
 DIST binutils-2.29.1-patches-3.tar.xz 20904 BLAKE2B 
5549cb2412123e4ad3a13935762cc0dca46215950dbf38a149caf4c6416da382a0fd7ecffe97b10bce4dfdcef5edc2673d49bb21e9d37be37e33b454a8c2bc1a
 SHA512 
ba54efaf9e9f668d2922972acd2cdf5c3e6f174cfcc73d29953ab4ba6e157ce0cb500c583568a4e3b92c9d30c394a327f29b51292acc66f8d3f20f5eae2a
 DIST binutils-2.29.1.tar.bz2 29123355 BLAKE2B 
83de518a27bae0f13c57b1979493dd7f7cabae424cff5e8495d1f064da24b6ef9e1c19d1d1adad2dca7142372782023f66b4b4223170a49b96ba3834266fe878
 SHA512 
4063d3426922376ccceb3f14b43e287442e82a8038cf50f4f51ad97d438c672c0e310ca4b856c9aff5aa9911073e256e8298a7a3f1844eeb60b90d955592
-DIST binutils-2.30-patches-1.tar.xz 13884 BLAKE2B 
86d160144e4ae3213838ccd07d008a96f210dbe8d894f2043420bd0003f8e0611564f77dadf60780da61278bbac41130922703fef69ba8ac451bcae5d9c65cf4
 SHA512 
cf38328bac920c1159e73727a9bb46bd462fa60650c90ee8a3d6221d447c678fdd79c6886efc52e35897d535dd717c1dc363bcb3f201aacd15ace078694456da
 DIST binutils-2.30-patches-2.tar.xz 490272 BLAKE2B 
a28a5b5bb8faa33fec269f2c69d6ed0e4e7d5a9169861aa4b3c45511794e1e749c216862a8258c2029f1b40c511dcb2a0aeaecda57e75d52418f10d6f345718f
 SHA512 
1686d5b58ee968f2000647acab2bee4c263d1c85fd43fed8c820fccfc0d7024a01211e7853cd5ce452fa90da500bc17309edf6dbc901c7fd6fc7b3e3d6f42581
 DIST binutils-2.30.tar.xz 20286700 BLAKE2B 
2dd5436a15a601011a1950e6082ec00082f5916fb82ce95ceab424fd8dc19f6daa7ac32a149f222ccdcc603354165cc206fde070eaa44fe2cc5e57486efc7868
 SHA512 
e747ea20d8d79fcd21b9d9f6695059caa7189d60f19256da398e34b789fea9a133c32b192e9693b5828d27683739b0198431bf8b3e39fb3b04884cf89d9aa839

diff --git a/sys-devel/binutils/binutils-2.30-r1.ebuild 
b/sys-devel/binutils/binutils-2.30-r1.ebuild
deleted file mode 100644
index 3842bc3a240..000
--- a/sys-devel/binutils/binutils-2.30-r1.ebuild
+++ /dev/null
@@ -1,416 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils libtool flag-o-matic gnuconfig multilib versionator
-
-DESCRIPTION="Tools necessary to build programs"
-HOMEPAGE="https://sourceware.org/binutils/;
-LICENSE="GPL-3+"
-IUSE="+cxx doc multitarget +nls static-libs test"
-
-# Variables that can be set here:
-# PATCH_VER  - the patchset version
-#  Default: empty, no patching
-# PATCH_BINUTILS_VER - the binutils version in the patchset name
-#- Default: PV
-# PATCH_DEV  - Use download URI 
https://dev.gentoo.org/~{PATCH_DEV}/distfiles/...
-#  for the patchsets
-#  Default: dilfridge :)
-
-PATCH_VER=1
-
-case ${PV} in
-   )
-   BVER="git"
-   EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git;
-   inherit git-r3
-   S=${WORKDIR}/binutils
-   EGIT_CHECKOUT_DIR=${S}
-   ;;
-   *)
-   BVER=${PV}
-   SRC_URI="mirror://gnu/binutils/binutils-${BVER}.tar.xz 
https://sourceware.org/pub/binutils/releases/binutils-${BVER}.tar.xz;
-   ;;
-esac
-SLOT="${BVER}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-
-#
-# The Gentoo patchset
-#
-PATCH_BINUTILS_VER=${PATCH_BINUTILS_VER:-${BVER}}
-PATCH_DEV=${PATCH_DEV:-dilfridge}
-
-[[ -z ${PATCH_VER} ]] || SRC_URI="${SRC_URI}
-   
https://dev.gentoo.org/~${PATCH_DEV}/distfiles/binutils-${PATCH_BINUTILS_VER}-patches-${PATCH_VER}.tar.xz;
-
-#
-# The cross-compile logic
-#
-export CTARGET=${CTARGET:-${CHOST}}
-if [[ ${CTARGET} == ${CHOST} ]] ; then
-   if [[ ${CATEGORY} == cross-* ]] ; then
-   export CTARGET=${CATEGORY#cross-}
-   fi
-fi
-is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; }
-
-#
-# The 

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

2018-05-19 Thread Andreas Hüttel
commit: 02d41c972b7642bc05a916f7b535b7a7502b59c6
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat May 19 17:20:53 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat May 19 17:20:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02d41c97

sys-libs/binutils-libs: Remove old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 sys-libs/binutils-libs/Manifest|   1 -
 .../binutils-libs/binutils-libs-2.30-r1.ebuild | 106 -
 2 files changed, 107 deletions(-)

diff --git a/sys-libs/binutils-libs/Manifest b/sys-libs/binutils-libs/Manifest
index edadd3e3c5b..561ed50d9db 100644
--- a/sys-libs/binutils-libs/Manifest
+++ b/sys-libs/binutils-libs/Manifest
@@ -6,6 +6,5 @@ DIST binutils-2.28.1-patches-1.0.tar.xz 19772 BLAKE2B 
146b393b49ba868c7c064c5827
 DIST binutils-2.28.1.tar.bz2 28120394 BLAKE2B 
3a0ed2bcf0c859638546b7460d9e6f0a55518402ff0c65c90ce462a318f5ae6690961616d188ce6cf0271c9f2fb8b7902782d32cf0e711068c53d3d06956d89e
 SHA512 
5ec5212497b0fa8324f6a0884c284cb71c01942bbd39356d1ae745a5c9d97274c10f9d9c723f4bef6f0217662dfcd0c36e4e955a7599b11217658dc7b97553eb
 DIST binutils-2.29.1-patches-2.tar.xz 18528 BLAKE2B 
514496d6c9609362782d66b6cecbe3fe617f96dfb86e174a80d0b9113cbd4fce9d760fa61660ba2cfafbe1e482e955391cb8d3ef78d2c166c82796416a7ee106
 SHA512 
b60a3af9cd6a681f32a59fc4a30602ee1290f75cc93c8ad38ab0de17a7f30538a751b801dbaf079e3d514b9671e34e91742c4c9c953a8c9794505b571b7e80f0
 DIST binutils-2.29.1.tar.bz2 29123355 BLAKE2B 
83de518a27bae0f13c57b1979493dd7f7cabae424cff5e8495d1f064da24b6ef9e1c19d1d1adad2dca7142372782023f66b4b4223170a49b96ba3834266fe878
 SHA512 
4063d3426922376ccceb3f14b43e287442e82a8038cf50f4f51ad97d438c672c0e310ca4b856c9aff5aa9911073e256e8298a7a3f1844eeb60b90d955592
-DIST binutils-2.30-patches-1.tar.xz 13884 BLAKE2B 
86d160144e4ae3213838ccd07d008a96f210dbe8d894f2043420bd0003f8e0611564f77dadf60780da61278bbac41130922703fef69ba8ac451bcae5d9c65cf4
 SHA512 
cf38328bac920c1159e73727a9bb46bd462fa60650c90ee8a3d6221d447c678fdd79c6886efc52e35897d535dd717c1dc363bcb3f201aacd15ace078694456da
 DIST binutils-2.30-patches-2.tar.xz 490272 BLAKE2B 
a28a5b5bb8faa33fec269f2c69d6ed0e4e7d5a9169861aa4b3c45511794e1e749c216862a8258c2029f1b40c511dcb2a0aeaecda57e75d52418f10d6f345718f
 SHA512 
1686d5b58ee968f2000647acab2bee4c263d1c85fd43fed8c820fccfc0d7024a01211e7853cd5ce452fa90da500bc17309edf6dbc901c7fd6fc7b3e3d6f42581
 DIST binutils-2.30.tar.xz 20286700 BLAKE2B 
2dd5436a15a601011a1950e6082ec00082f5916fb82ce95ceab424fd8dc19f6daa7ac32a149f222ccdcc603354165cc206fde070eaa44fe2cc5e57486efc7868
 SHA512 
e747ea20d8d79fcd21b9d9f6695059caa7189d60f19256da398e34b789fea9a133c32b192e9693b5828d27683739b0198431bf8b3e39fb3b04884cf89d9aa839

diff --git a/sys-libs/binutils-libs/binutils-libs-2.30-r1.ebuild 
b/sys-libs/binutils-libs/binutils-libs-2.30-r1.ebuild
deleted file mode 100644
index 63ad287c18c..000
--- a/sys-libs/binutils-libs/binutils-libs-2.30-r1.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PATCH_VER=1
-
-inherit eutils toolchain-funcs multilib-minimal
-
-MY_PN="binutils"
-MY_P="${MY_PN}-${PV}"
-PATCH_BINUTILS_VER=${PATCH_BINUTILS_VER:-${PV}}
-PATCH_DEV=${PATCH_DEV:-dilfridge}
-
-DESCRIPTION="Core binutils libraries (libbfd, libopcodes, libiberty) for 
external packages"
-HOMEPAGE="https://sourceware.org/binutils/;
-SRC_URI="mirror://gnu/binutils/${MY_P}.tar.xz
-   
mirror://gentoo/${MY_PN}-${PATCH_BINUTILS_VER}-patches-${PATCH_VER}.tar.xz"
-
-LICENSE="|| ( GPL-3 LGPL-3 )"
-# The shared lib SONAMEs use the ${PV} in them.
-SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="64-bit-bfd multitarget nls static-libs"
-
-COMMON_DEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]"
-DEPEND="${COMMON_DEPEND}
-   >=sys-apps/texinfo-4.7
-   nls? ( sys-devel/gettext )"
-# Need a newer binutils-config that'll reset include/lib symlinks for us.
-RDEPEND="${COMMON_DEPEND}
-   >=sys-devel/binutils-config-5
-   nls? ( !=2.24) make this an explicit option. #497268
-   --enable-install-libiberty
-   --disable-werror
-   --with-bugurl="https://bugs.gentoo.org/;
-   --with-pkgversion="$(pkgversion)"
-   $(use_enable static-libs static)
-   # The binutils eclass enables this flag for all bi-arch builds,
-   # but other tools often don't care about that support.  Put it
-   # beyond a flag if people really want it, but otherwise leave
-   # it disabled as it can slow things down on 32bit arches. 
#438522
-   $(use_enable 64-bit-bfd)
-   # This only disables building in the zlib subdir.
-

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

2018-05-19 Thread Jonas Stein
commit: 8d6fbdc8bc4e3bd1c6f842e2d58db99bbe421c95
Author: Jonas Stein  gentoo  org>
AuthorDate: Sat May 19 16:09:21 2018 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Sat May 19 16:09:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d6fbdc8

dev-util/shards: Maintainer retired

Proxied maintainer retired due to inactivity.
Closes: https://bugs.gentoo.org/633308
Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-util/shards/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/dev-util/shards/metadata.xml b/dev-util/shards/metadata.xml
index 9c98005e23c..43e1575986e 100644
--- a/dev-util/shards/metadata.xml
+++ b/dev-util/shards/metadata.xml
@@ -1,18 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   longl...@gmail.com
-   Lixiao Chen
-   

sly...@gentoo.org
Sergei Trofimovich

-   
-   proxy-ma...@gentoo.org
-   Gentoo Proxy Maintainers Project
-   

Dependency manager for the Crystal language

@@ -20,3 +12,4 @@
ysbaddaden/shards

 
+



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

2018-05-19 Thread Jonas Stein
commit: c4b99b204ac0e0df0c7fbfdcb9f7c21e54e687b0
Author: Jonas Stein  gentoo  org>
AuthorDate: Sat May 19 16:07:37 2018 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Sat May 19 16:07:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4b99b20

dev-libs/pcl: Maintainer retired

Proxied maintainer retired due to inactivity.
Bug: https://bugs.gentoo.org/633308
Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-libs/pcl/metadata.xml | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/dev-libs/pcl/metadata.xml b/dev-libs/pcl/metadata.xml
index 64dbed2929b..1d859a5cde8 100644
--- a/dev-libs/pcl/metadata.xml
+++ b/dev-libs/pcl/metadata.xml
@@ -1,16 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   longl...@gmail.com
-   Lixiao Chen
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
+   

The Portable Coroutine Library (PCL) implements the low level
functionality for coroutines

 
+



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

2018-05-19 Thread Jonas Stein
commit: 7427c67bbb2e539d5670cab62b75ba712189f76b
Author: Jonas Stein  gentoo  org>
AuthorDate: Sat May 19 16:08:29 2018 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Sat May 19 16:08:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7427c67b

dev-lang/crystal: Maintainer retired

Proxied maintainer retired due to inactivity.
Bug: https://bugs.gentoo.org/633308
Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-lang/crystal/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/dev-lang/crystal/metadata.xml b/dev-lang/crystal/metadata.xml
index 8c0dacece65..76b2f777258 100644
--- a/dev-lang/crystal/metadata.xml
+++ b/dev-lang/crystal/metadata.xml
@@ -1,18 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   longl...@gmail.com
-   Lixiao Chen
-   

sly...@gentoo.org
Sergei Trofimovich

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

Crystal is a programming language that resembles Ruby but 
compiles to
native code and tries to be much more efficient, at the cost of
@@ -38,3 +30,4 @@
manastech/crystal

 
+



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

2018-05-19 Thread José María Alonso
commit: f495b90001b02f470fa161fc39b4a64eb3e284bc
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sat May 19 14:01:11 2018 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sat May 19 14:01:11 2018 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=f495b900

Add abcl to common-lisp-export-impl-args

 eclass/common-lisp-3.eclass | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/eclass/common-lisp-3.eclass b/eclass/common-lisp-3.eclass
index 01fad68d..ae229491 100644
--- a/eclass/common-lisp-3.eclass
+++ b/eclass/common-lisp-3.eclass
@@ -11,10 +11,6 @@
 
 inherit eutils
 
-# CL packages in the overlay don't have their tarballs on the mirrors
-# so it's useless to mirror them
-RESTRICT="mirror"
-
 # @ECLASS-VARIABLE: CLIMPLEMENTATIONS
 # @DESCRIPTION:
 # Common Lisp implementations
@@ -198,6 +194,11 @@ common-lisp-export-impl-args() {
fi
CL_BINARY="${1}"
case "${CL_BINARY}" in
+   sbcl)
+   CL_NORC="--sysinit /dev/null --userinit /dev/null"
+   CL_LOAD="--load"
+   CL_EVAL="--eval"
+   ;;
clisp)
CL_NORC="-norc"
CL_LOAD="-i"
@@ -220,8 +221,8 @@ common-lisp-export-impl-args() {
CL_LOAD="-load"
CL_EVAL="-eval"
;;
-   sbcl)
-   CL_NORC="--sysinit /dev/null --userinit /dev/null"
+   abcl)
+   CL_NORC="--noinit"
CL_LOAD="--load"
CL_EVAL="--eval"
;;



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

2018-05-19 Thread Keri Harris
commit: d5c3ba5328bd3156cfc12e5effc254b37dd67d8a
Author: Keri Harris  gentoo  org>
AuthorDate: Sat May 19 14:00:09 2018 +
Commit: Keri Harris  gentoo  org>
CommitDate: Sat May 19 14:00:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5c3ba53

dev-lang/swi-prolog: bump 7.7 development version

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-lang/swi-prolog/Manifest |   1 +
 dev-lang/swi-prolog/swi-prolog-7.7.13.ebuild | 148 +++
 2 files changed, 149 insertions(+)

diff --git a/dev-lang/swi-prolog/Manifest b/dev-lang/swi-prolog/Manifest
index a855186ce5a..73f1144bd6e 100644
--- a/dev-lang/swi-prolog/Manifest
+++ b/dev-lang/swi-prolog/Manifest
@@ -9,3 +9,4 @@ DIST swipl-7.6.4.tar.gz 16777875 BLAKE2B 
94409966362e649f4748b94b4ec25415bb827c7
 DIST swipl-7.7.10.tar.gz 16800970 BLAKE2B 
c9d8904734bb5a6d20adad8203cec6682e9bd97a343d887d1c03dfb735f32e5794ab0631a76e69fe5f0c7d2e76cd21be06471c7df6e4bc585882b7de1308ec70
 SHA512 
55e0b129424c2ba0f7a8151b85eaf3de6ce7e16ed01626fae245eb0ee754dcfa7bfbd3a30d00da7e2df72b8d2899e5354900e27b47ffe0401bc26a0b594f9d30
 DIST swipl-7.7.11.tar.gz 16935711 BLAKE2B 
5ccac7b91ef35d132451b101a53b9977067e28d4239ecf25185e4140d728a711a8fd9dfe73bf51c47a2935c51637c0ad61780997e0b9fa13e6298d815c46071a
 SHA512 
28bffdc7d7c431aa59a996faddac941024d3923c22793b890938475f041e2d40d9218b10779e5ad01c91093234dfd21ea3339756950dd8401adeb5783c3e3aa3
 DIST swipl-7.7.12.tar.gz 16935097 BLAKE2B 
774bbb34325ed03eb55c71f7f98063ea44012a7069aabe9d77f16252f9f2a1c398a86c16eb47604f271110f63d249f77fdbeeed307ff22f427a61f7beb871df6
 SHA512 
4c1e6b13f37c16977f6ff384cba119d0fecfe48a20b7cd37b26154587d2abf46ac1619e96f5fdfa85549b72e9077bf73fd2f74b84d9d3f4c37184f0669b0e432
+DIST swipl-7.7.13.tar.gz 17057506 BLAKE2B 
4eb1f94511d1784f2df93100e646921541db67d09469f34f58ac9884935d1917feb4ce76f1e6284fd9e6f707b13bb8d77110c61300a78aa4c68bf4b4afd908a9
 SHA512 
b838b6c441542fbca3f635cb62dd844f09d0549f4da1f4ea9f9201d9e917f08e4a8917357f83e1c6704354f095f9212df92b19cbc631e91d891599eba23ef6ed

diff --git a/dev-lang/swi-prolog/swi-prolog-7.7.13.ebuild 
b/dev-lang/swi-prolog/swi-prolog-7.7.13.ebuild
new file mode 100644
index 000..38db2fe7a5a
--- /dev/null
+++ b/dev-lang/swi-prolog/swi-prolog-7.7.13.ebuild
@@ -0,0 +1,148 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils flag-o-matic java-pkg-opt-2 multilib
+
+PATCHSET_VER="0"
+
+DESCRIPTION="free, small, and standard compliant Prolog compiler"
+HOMEPAGE="http://www.swi-prolog.org/;
+SRC_URI="http://www.swi-prolog.org/download/devel/src/swipl-${PV}.tar.gz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="archive berkdb debug doc +gmp hardened java +libedit libressl minimal 
odbc pcre readline ssl static-libs test uuid zlib X"
+
+RDEPEND="sys-libs/ncurses:=
+   archive? ( app-arch/libarchive )
+   berkdb? ( >=sys-libs/db-4:= )
+   zlib? ( sys-libs/zlib )
+   odbc? ( dev-db/unixODBC )
+   pcre? ( dev-libs/libpcre )
+   readline? ( sys-libs/readline:= )
+   libedit? ( dev-libs/libedit )
+   gmp? ( dev-libs/gmp:0 )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0 )
+   libressl? ( dev-libs/libressl )
+   )
+   java? ( >=virtual/jdk-1.7:= )
+   uuid? ( dev-libs/ossp-uuid )
+   X? (
+   virtual/jpeg:0
+   x11-libs/libX11
+   x11-libs/libXft
+   x11-libs/libXpm
+   x11-libs/libXt
+   x11-libs/libICE
+   x11-libs/libSM )"
+
+DEPEND="${RDEPEND}
+   X? ( x11-base/xorg-proto )
+   java? ( test? ( =dev-java/junit-3.8* ) )"
+
+S="${WORKDIR}/swipl-${PV}"
+
+src_prepare() {
+   EPATCH_FORCE=yes
+   EPATCH_SUFFIX=patch
+   if [[ -d "${WORKDIR}"/${PV} ]] ; then
+   epatch "${WORKDIR}"/${PV}
+   fi
+
+   if ! use uuid; then
+   mv packages/clib/uuid.pl packages/clib/uuid.pl.unused || die
+   fi
+
+   # OSX/Intel ld doesn't like an archive without table of contents
+   sed -i -e 's/-cru/-scru/' packages/nlp/libstemmer_c/Makefile.pl || die
+
+   eapply_user
+}
+
+src_configure() {
+   append-flags -fno-strict-aliasing
+   use ppc && append-flags -mno-altivec
+   use hardened && append-flags -fno-unit-at-a-time
+   use debug && append-flags -DO_DEBUG
+
+   # ARCH is used in the configure script to figure out host and target
+   # specific stuff
+   export ARCH=${CHOST}
+
+   export CC_FOR_BUILD=$(tc-getBUILD_CC)
+
+   cd "${S}"/src || die
+   econf \
+   --libdir="${EPREFIX}"/usr/$(get_libdir) \
+   $(use_enable gmp) \
+   $(use_enable static-libs static) \
+   --enable-shared \
+   --enable-custom-flags COFLAGS="${CFLAGS} -DOF=_Z_OF"
+
+   if 

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

2018-05-19 Thread José María Alonso
commit: 224fd51069611707512352412273a2cd2b74121b
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sat May 19 13:57:20 2018 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sat May 19 13:57:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=224fd510

common-lisp-3.eclass: Add abct to common-lisp-export-impl-args

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

 eclass/common-lisp-3.eclass | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/eclass/common-lisp-3.eclass b/eclass/common-lisp-3.eclass
index 102332e345a..ae229491025 100644
--- a/eclass/common-lisp-3.eclass
+++ b/eclass/common-lisp-3.eclass
@@ -194,6 +194,11 @@ common-lisp-export-impl-args() {
fi
CL_BINARY="${1}"
case "${CL_BINARY}" in
+   sbcl)
+   CL_NORC="--sysinit /dev/null --userinit /dev/null"
+   CL_LOAD="--load"
+   CL_EVAL="--eval"
+   ;;
clisp)
CL_NORC="-norc"
CL_LOAD="-i"
@@ -216,8 +221,8 @@ common-lisp-export-impl-args() {
CL_LOAD="-load"
CL_EVAL="-eval"
;;
-   sbcl)
-   CL_NORC="--sysinit /dev/null --userinit /dev/null"
+   abcl)
+   CL_NORC="--noinit"
CL_LOAD="--load"
CL_EVAL="--eval"
;;



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

2018-05-19 Thread Ulrich Müller
commit: 6ef0f2dba58770a9239de4c56e4c41cb53767a51
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sat May 19 12:18:09 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sat May 19 12:18:09 2018 +
URL:https://gitweb.gentoo.org/data/glep.git/commit/?id=6ef0f2db

glep-0039: Add reference to the vote accepting it.

 glep-0039.rst | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/glep-0039.rst b/glep-0039.rst
index c458450..c20eaee 100644
--- a/glep-0039.rst
+++ b/glep-0039.rst
@@ -7,7 +7,7 @@ Type: Informational
 Status: Final
 Version: 2
 Created: 2005-09-01
-Last-Modified: 2016-07-30
+Last-Modified: 2018-05-19
 Post-History: 2005-09-01, 2006-02-09, 2007-10-12, 2008-01-19
 Content-Type: text/x-rst
 Replaces: 4
@@ -16,8 +16,10 @@ Replaces: 4
 Status
 ==
 
-Implemented. GLEP amended on 2006-02-09 to add the final bullet point to
-list B in `Specification`_.
+Implemented.  The metastructure proposal was accepted by a vote of all
+Gentoo developers on 2005-06-14 [#Metastructure_vote]_.
+GLEP amended on 2006-02-09 to add the final bullet point to list B in
+`Specification`_.
 
 Abstract
 
@@ -207,6 +209,10 @@ So, does this proposal solve any of the 
previously-mentioned problems?
 References
 ==
 
+.. [#Metastructure_vote] Grant Goodyear, "Metastructure vote preliminary
+   results", posted to ``gentoo-dev`` mailing list on 2005-06-14
+   
(https://archives.gentoo.org/gentoo-dev/message/f5ab9ccca62a5d5e0b7b7ab0156f19b3)
+
 .. [#Project_pages] 
https://wiki.gentoo.org/wiki/Gentoo_Wiki:Developer_Central/Project_pages
 
 Copyright



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

2018-05-19 Thread Jeroen Roovers
commit: c4b723ec20acd691ccba29d00fd81dd014776f6d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat May 19 11:41:30 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat May 19 11:41:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4b723ec

net-dns/libidn2: Version 2.0.5.

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 net-dns/libidn2/Manifest |  1 +
 net-dns/libidn2/libidn2-2.0.5.ebuild | 51 
 2 files changed, 52 insertions(+)

diff --git a/net-dns/libidn2/Manifest b/net-dns/libidn2/Manifest
index dd4840ae3d8..fbc1dcb06b6 100644
--- a/net-dns/libidn2/Manifest
+++ b/net-dns/libidn2/Manifest
@@ -1 +1,2 @@
 DIST libidn2-2.0.4.tar.gz 2008524 BLAKE2B 
7163e1eff498031c7433911533b34d993876b55d9b324aaef39c93db2cceee78dec4c8cfbf4d9dabd1dbbb03a8cbd65021f26a94758f57b32ef98dc869f744b6
 SHA512 
1e51bd4b8f8907531576291f1c2a8865d17429b4105418b4c98754eb982cd1cbb3adbeab4ec0c1c561d2dba11d876c7c09e5dc5b315c55a2c24986d7a2a3b4d2
+DIST libidn2-2.0.5.tar.gz 2091929 BLAKE2B 
1eb52ae7c9295bf4b5d6e36e6852ffb54b10663a0e3cea06df110bd7798fcb0d1b8e3b7169e4a11e800a23fc9f606167dcb7fc2d4a684e861d73a236de5c578c
 SHA512 
9d040d60de40316788825d8720d509d5b8a82287415e09e17792c2f32fad99ca77f43e55888b9484db69426eaa0ece59e9671eee9cc46411afbdb0f81af31a79

diff --git a/net-dns/libidn2/libidn2-2.0.5.ebuild 
b/net-dns/libidn2/libidn2-2.0.5.ebuild
new file mode 100644
index 000..ab79a542542
--- /dev/null
+++ b/net-dns/libidn2/libidn2-2.0.5.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils flag-o-matic multilib-minimal
+
+DESCRIPTION="An implementation of the IDNA2008 specifications (RFCs 5890, 
5891, 5892, 5893)"
+HOMEPAGE="https://www.gnu.org/software/libidn/#libidn2 
https://gitlab.com/jas/libidn2;
+SRC_URI="
+   mirror://gnu/libidn/${P}.tar.gz
+"
+
+LICENSE="GPL-2+ LGPL-3+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="static-libs"
+
+RDEPEND="
+   dev-libs/libunistring[${MULTILIB_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+   dev-lang/perl
+   sys-apps/help2man
+"
+
+src_prepare() {
+   default
+
+   if [[ ${CHOST} == *-darwin* ]] ; then
+   # Darwin ar chokes when TMPDIR doesn't exist (as done for some
+   # reason in the Makefile)
+   sed -i -e '/^TMPDIR = /d' Makefile.in || die
+   export TMPDIR="${T}"
+   fi
+
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   econf \
+   $(use_enable static-libs static) \
+   --disable-doc \
+   --disable-gtk-doc
+}
+
+multilib_src_install() {
+   default
+
+   prune_libtool_files
+}



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

2018-05-19 Thread Jeroen Roovers
commit: 978e16cea232163fe5f344703c91cdd18bea91db
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat May 19 11:29:01 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat May 19 11:32:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978e16ce

dev-libs/openssl: Whitespace.

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-libs/openssl/openssl-1.0.2o-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/openssl/openssl-1.0.2o-r2.ebuild 
b/dev-libs/openssl/openssl-1.0.2o-r2.ebuild
index ce7b536e3ab..8959ecc1213 100644
--- a/dev-libs/openssl/openssl-1.0.2o-r2.ebuild
+++ b/dev-libs/openssl/openssl-1.0.2o-r2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://www.openssl.org/;
 SRC_URI="mirror://openssl/source/${MY_P}.tar.gz
mirror://gentoo/${PATCH_SET}.tar.xz
https://dev.gentoo.org/~whissi/dist/${PN}/${PATCH_SET}.tar.xz;
-
+
 LICENSE="openssl"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"



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

2018-05-19 Thread Johannes Huber
commit: 91ce9f03eecb36bd2d4b138cb506dedb5612c458
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat May 19 10:46:02 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat May 19 10:47:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91ce9f03

app-admin/calamares: Version bump 3.2.0

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 app-admin/calamares/Manifest   |  1 +
 app-admin/calamares/calamares-3.2.0.ebuild | 84 ++
 2 files changed, 85 insertions(+)

diff --git a/app-admin/calamares/Manifest b/app-admin/calamares/Manifest
index 21c218a2d05..57c83e0098e 100644
--- a/app-admin/calamares/Manifest
+++ b/app-admin/calamares/Manifest
@@ -1 +1,2 @@
 DIST calamares-3.1.13.tar.gz 2279516 BLAKE2B 
ff2c81e81086d53c205c25dbdb7e8b1b60f5f10c979e9afd85c02426cd38037c6fbbf76e21fa5fb152ea9bf1c47658563ba5b2fb7e84b4e2734d6269584315df
 SHA512 
451e04fe41448976e612b2a682cf38ed2683b490bb195ba82ad97d47dfd3eb808f8c25251be00104e3f3b4086ab37be462034bbd2866e64536e90f7ebcfb0d7a
+DIST calamares-3.2.0.tar.gz 2488863 BLAKE2B 
6941cdd7eb381a6ee4f7bc2628605ee5a670de0d839b5797cec930737ec5fc09e214c484c2e8398ab2f12669bbc64768d5ee20b2aa1adae799fb96373a0b07df
 SHA512 
0b502749ace48ce56f2bb364d265c5b9197cca2b27115663f928cb58d02ba43e93b80b5022053bca5899ce6ee35146992157408fc5af017da6d61abdcdbc4e1d

diff --git a/app-admin/calamares/calamares-3.2.0.ebuild 
b/app-admin/calamares/calamares-3.2.0.ebuild
new file mode 100644
index 000..a0864c5ac07
--- /dev/null
+++ b/app-admin/calamares/calamares-3.2.0.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_5,3_6} )
+inherit kde5 python-r1
+
+DESCRIPTION="Distribution-independent installer framework"
+HOMEPAGE="https://calamares.io;
+if [[ ${KDE_BUILD_TYPE} == live ]] ; then
+   EGIT_REPO_URI="https://github.com/${PN}/${PN};
+else
+   
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+IUSE="+networkmanager pythonqt +upower"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kpackage)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep kservice)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtdeclarative)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtsvg)
+   $(add_qt_dep qtwebengine 'widgets')
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtxml)
+   dev-cpp/yaml-cpp:=
+   >=dev-libs/boost-1.55:=[${PYTHON_USEDEP}]
+   dev-libs/libpwquality[${PYTHON_USEDEP}]
+   sys-apps/dbus
+   sys-apps/dmidecode
+   sys-auth/polkit-qt[qt5(+)]
+   >=sys-libs/kpmcore-3.0.3:5=
+   pythonqt? ( >=dev-python/PythonQt-3.1:=[${PYTHON_USEDEP}] )
+"
+
+RDEPEND="${DEPEND}
+   app-admin/sudo
+   dev-libs/libatasmart
+   net-misc/rsync
+   >=sys-block/parted-3.0
+   || ( sys-boot/grub:2 sys-boot/systemd-boot )
+   sys-boot/os-prober
+   sys-fs/squashfs-tools
+   virtual/udev
+   networkmanager? ( net-misc/networkmanager )
+   upower? ( sys-power/upower )
+"
+
+src_prepare() {
+   cmake-utils_src_prepare
+   python_setup
+   export PYTHON_INCLUDE_DIRS="$(python_get_includedir)" \
+  PYTHON_INCLUDE_PATH="$(python_get_library_path)"\
+  PYTHON_CFLAGS="$(python_get_CFLAGS)"\
+  PYTHON_LIBS="$(python_get_LIBS)"
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DWEBVIEW_FORCE_WEBKIT=OFF
+   -DWITH_PYTHONQT=$(usex pythonqt)
+   )
+
+   kde5_src_configure
+   sed -i -e 's:pkexec /usr/bin/calamares:calamares-pkexec:' 
"${S}"/calamares.desktop
+   sed -i -e 's:Icon=calamares:Icon=drive-harddisk:' 
"${S}"/calamares.desktop
+}
+
+src_install() {
+   kde5_src_install
+   dobin "${FILESDIR}"/calamares-pkexec
+}



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

2018-05-19 Thread Sergei Trofimovich
commit: c2a7b500bf0ad5d24fcd1c960e63ccb11b878bc5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat May 19 10:46:51 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 10:47:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2a7b500

sys-fs/multipath-tools: keyworded 0.6.4-r1 for ia64, bug #655730

Bug: https://bugs.gentoo.org/655730
Package-Manager: Portage-2.3.38, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 sys-fs/multipath-tools/multipath-tools-0.6.4-r1.ebuild | 2 +-
 sys-fs/multipath-tools/multipath-tools-0.7.6.ebuild| 2 +-
 sys-fs/multipath-tools/multipath-tools-0.7.7.ebuild| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-fs/multipath-tools/multipath-tools-0.6.4-r1.ebuild 
b/sys-fs/multipath-tools/multipath-tools-0.6.4-r1.ebuild
index 3a74bb9b30c..9b0d1774bf8 100644
--- a/sys-fs/multipath-tools/multipath-tools-0.6.4-r1.ebuild
+++ b/sys-fs/multipath-tools/multipath-tools-0.6.4-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://git.opensvc.com/?p=multipath-tools/.git;a=snapshot;h=${PV};sf=tg
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 x86"
 IUSE="systemd rbd"
 
 RDEPEND=">=sys-fs/lvm2-2.02.45

diff --git a/sys-fs/multipath-tools/multipath-tools-0.7.6.ebuild 
b/sys-fs/multipath-tools/multipath-tools-0.7.6.ebuild
index 60962fedf53..2fc108707b4 100644
--- a/sys-fs/multipath-tools/multipath-tools-0.7.6.ebuild
+++ b/sys-fs/multipath-tools/multipath-tools-0.7.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://git.opensvc.com/?p=multipath-tools/.git;a=snapshot;h=${PV};sf=t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="systemd rbd"
 
 RDEPEND="

diff --git a/sys-fs/multipath-tools/multipath-tools-0.7.7.ebuild 
b/sys-fs/multipath-tools/multipath-tools-0.7.7.ebuild
index 60962fedf53..2fc108707b4 100644
--- a/sys-fs/multipath-tools/multipath-tools-0.7.7.ebuild
+++ b/sys-fs/multipath-tools/multipath-tools-0.7.7.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://git.opensvc.com/?p=multipath-tools/.git;a=snapshot;h=${PV};sf=t
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="systemd rbd"
 
 RDEPEND="



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

2018-05-19 Thread Sergei Trofimovich
commit: 2866f7f718311beb175d698fc8c668123c323522
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat May 19 10:46:47 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 10:47:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2866f7f7

dev-libs/userspace-rcu: keyworded 0.10.1 for ia64, bug #655730

Bug: https://bugs.gentoo.org/655730
Package-Manager: Portage-2.3.38, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 dev-libs/userspace-rcu/userspace-rcu-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/userspace-rcu/userspace-rcu-0.10.1.ebuild 
b/dev-libs/userspace-rcu/userspace-rcu-0.10.1.ebuild
index 0576c317633..40699ad58d7 100644
--- a/dev-libs/userspace-rcu/userspace-rcu-0.10.1.ebuild
+++ b/dev-libs/userspace-rcu/userspace-rcu-0.10.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://lttng.org/files/urcu/${P}.tar.bz2;
 
 LICENSE="LGPL-2.1"
 SLOT="0/6" # subslot = soname version
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="static-libs regression-test test"
 
 DEPEND="test? ( sys-process/time )"



[gentoo-commits] repo/gentoo:master commit in: x11-misc/sent/

2018-05-19 Thread Jeroen Roovers
commit: b075694584be3dfc785835a86ed507c2fc1273fc
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat May 19 10:44:29 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat May 19 10:45:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0756945

x11-misc/sent: Fix savedconfig usage (bug #656082).

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 x11-misc/sent/{sent-1.ebuild => sent-1-r1.ebuild} | 5 +++--
 x11-misc/sent/sent-.ebuild| 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/x11-misc/sent/sent-1.ebuild b/x11-misc/sent/sent-1-r1.ebuild
similarity index 88%
rename from x11-misc/sent/sent-1.ebuild
rename to x11-misc/sent/sent-1-r1.ebuild
index f8352a8d528..8324b45871a 100644
--- a/x11-misc/sent/sent-1.ebuild
+++ b/x11-misc/sent/sent-1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -32,7 +32,7 @@ src_prepare() {
-e '/^  echo/d' \
Makefile || die
 
-   restore_config config.def.h
+   restore_config config.h
 }
 
 src_compile() {
@@ -41,4 +41,5 @@ src_compile() {
 
 src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install
+   save_config config.h
 }

diff --git a/x11-misc/sent/sent-.ebuild b/x11-misc/sent/sent-.ebuild
index 5f42528d0e6..ad9a0d7e799 100644
--- a/x11-misc/sent/sent-.ebuild
+++ b/x11-misc/sent/sent-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -31,7 +31,7 @@ src_prepare() {
-e '/^  echo/d' \
Makefile || die
 
-   restore_config config.def.h
+   restore_config config.h
 }
 
 src_compile() {
@@ -40,4 +40,5 @@ src_compile() {
 
 src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install
+   save_config config.h
 }



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

2018-05-19 Thread Sergei Trofimovich
commit: 4fe8159458cd9649ad4e60eacfa75096eb6450e4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat May 19 10:41:31 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 10:41:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fe81594

dev-libs/libtar: stable 1.2.20-r4 for ppc, bug #648936

Tested-by: ernsteiswuerfel
Bug: https://bugs.gentoo.org/648936
Package-Manager: Portage-2.3.38, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 dev-libs/libtar/libtar-1.2.20-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libtar/libtar-1.2.20-r4.ebuild 
b/dev-libs/libtar/libtar-1.2.20-r4.ebuild
index b9717afbdee..e9b592b25cc 100644
--- a/dev-libs/libtar/libtar-1.2.20-r4.ebuild
+++ b/dev-libs/libtar/libtar-1.2.20-r4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux 
~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux 
~x86-linux ~ppc-macos"
 IUSE="static-libs zlib"
 
 RDEPEND="



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

2018-05-19 Thread Sergei Trofimovich
commit: 3aaf7758a0ac8bbf7c772e50fed8bab3d719d493
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat May 19 10:41:38 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 10:41:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aaf7758

media-gfx/dawn: stable 3.90b-r1 for ppc, bug #652454

Tested-by: ernsteiswuerfel
Bug: https://bugs.gentoo.org/652454
Package-Manager: Portage-2.3.38, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 media-gfx/dawn/dawn-3.90b-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/dawn/dawn-3.90b-r1.ebuild 
b/media-gfx/dawn/dawn-3.90b-r1.ebuild
index 12062962227..8a48d386661 100644
--- a/media-gfx/dawn/dawn-3.90b-r1.ebuild
+++ b/media-gfx/dawn/dawn-3.90b-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://geant4.kek.jp/~tanaka/src/${MY_P}.tgz;
 LICENSE="public-domain"
 SLOT="0"
 
-KEYWORDS="amd64 ~hppa ~ppc x86"
+KEYWORDS="amd64 ~hppa ppc x86"
 IUSE="doc opengl X"
 
 RDEPEND="dev-lang/tk:*



[gentoo-commits] repo/gentoo:master commit in: media-fonts/fira-code/

2018-05-19 Thread Mart Raudsepp
commit: 72fb2ec6d0e53e0daab3ff13386c234abb112923
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 19 10:31:10 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 19 10:31:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72fb2ec6

media-fonts/fira-code: arm64 stable (bug #656078)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-fonts/fira-code/fira-code-1.205.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/fira-code/fira-code-1.205.ebuild 
b/media-fonts/fira-code/fira-code-1.205.ebuild
index de76a1c6fca..9fe9f4c9623 100644
--- a/media-fonts/fira-code/fira-code-1.205.ebuild
+++ b/media-fonts/fira-code/fira-code-1.205.ebuild
@@ -12,7 +12,7 @@ 
https://github.com/tonsky/FiraCode/files/412440/FiraCode-Regular-Symbol.zip;
 
 LICENSE="OFL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~x86"
 IUSE=""
 
 S="${WORKDIR}/FiraCode-${PV}"



[gentoo-commits] repo/gentoo:master commit in: media-fonts/droid/

2018-05-19 Thread Johannes Huber
commit: 4f9bc6de8929eae1b5f0085f312f77965e823870
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat May 19 10:15:55 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat May 19 10:15:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f9bc6de

media-fonts/droid: Remove 113-r4

Uses deprecated EAPI 4 and overshadowed by 113-r5

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 media-fonts/droid/droid-113-r4.ebuild | 38 ---
 1 file changed, 38 deletions(-)

diff --git a/media-fonts/droid/droid-113-r4.ebuild 
b/media-fonts/droid/droid-113-r4.ebuild
deleted file mode 100644
index 72dad2faf6d..000
--- a/media-fonts/droid/droid-113-r4.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit font
-
-MY_PN="${PN/d/D}"
-
-# $PV is a build number, use fontforge to find it out. 113 was taken from:
-# 
https://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=data/fonts;hb=HEAD
-DESCRIPTION="Font family from Google's Android project"
-HOMEPAGE="https://code.google.com/android/RELEASENOTES.html 
http://www.cosmix.org/software/;
-SRC_URI="mirror://gentoo/${P}-r1.tar.bz2
-   mirror://gentoo/${MY_PN}SansMonoSlashed-112_p1.ttf.bz2
-   mirror://gentoo/${MY_PN}SansMonoDotted-112_p1.ttf.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
-IUSE=""
-
-S="${WORKDIR}/${PN}"
-FONT_S="${S}"
-FONT_SUFFIX="ttf"
-FONT_CONF=(
-   "${FILESDIR}/59-google-droid-sans-mono.conf"
-   "${FILESDIR}/59-google-droid-sans.conf"
-   "${FILESDIR}/59-google-droid-serif.conf"
-)
-
-src_prepare() {
-   mv "${WORKDIR}/${MY_PN}SansMonoSlashed-112_p1.ttf" \
-   "${S}/${MY_PN}SansMonoSlashed.ttf"
-   mv "${WORKDIR}/${MY_PN}SansMonoDotted-112_p1.ttf" \
-   "${S}/${MY_PN}SansMonoDotted.ttf"
-   rm Ahem.ttf # bug 530158
-}



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

2018-05-19 Thread Mart Raudsepp
commit: 93b82fad871a5e185f3f32e62530d1e435bed8a3
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 19 09:35:37 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 19 09:35:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93b82fad

net-misc/curl-7.60.0: arm64 stable (bug #655266)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

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

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



[gentoo-commits] repo/gentoo:master commit in: media-fonts/droid/

2018-05-19 Thread Mart Raudsepp
commit: 6882a4662fa3b3ebf214f6fffd24c6b18e013082
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat May 19 09:36:57 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat May 19 09:36:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6882a466

media-fonts/droid-113-r5: arm64 stable, ALLARCHES stable (bug #656070)

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-fonts/droid/droid-113-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/droid/droid-113-r5.ebuild 
b/media-fonts/droid/droid-113-r5.ebuild
index f38574c7cf8..80a8f16631e 100644
--- a/media-fonts/droid/droid-113-r5.ebuild
+++ b/media-fonts/droid/droid-113-r5.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://gentoo/${P}-r1.tar.bz2
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
 IUSE=""
 
 S="${WORKDIR}/${PN}"



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

2018-05-19 Thread Sergei Trofimovich
commit: df85e803b23cbe4f6ac1333fff524b4d8d43de73
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat May 19 08:54:10 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat May 19 09:25:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df85e803

dev-python/zope-interface: stable 4.4.3 for sparc

Bug: https://bugs.gentoo.org/654442
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-python/zope-interface/zope-interface-4.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zope-interface/zope-interface-4.4.3.ebuild 
b/dev-python/zope-interface/zope-interface-4.4.3.ebuild
index 1a9d0c5ef17..b351a3bc17b 100644
--- a/dev-python/zope-interface/zope-interface-4.4.3.ebuild
+++ b/dev-python/zope-interface/zope-interface-4.4.3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="ZPL"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



  1   2   >