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

2018-05-16 Thread Hans de Graaff
commit: 55a480dd2613e181c23cc8f605fe55756af8c238
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu May 17 04:57:22 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu May 17 04:57:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55a480dd

dev-util/cucumber-tag_expressions: add ruby25

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild 
b/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild
index d4242a208b3..1b80ebb5bd7 100644
--- a/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild
+++ b/dev-util/cucumber-tag_expressions/cucumber-tag_expressions-1.1.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2018-05-16 Thread Hans de Graaff
commit: ab5b39563ebd6ede745f3226ee4ee27d5369b09f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu May 17 04:41:08 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu May 17 04:41:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab5b3956

dev-ruby/bcrypt-ruby: add 3.1.12

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 dev-ruby/bcrypt-ruby/Manifest  |  1 +
 dev-ruby/bcrypt-ruby/bcrypt-ruby-3.1.12.ebuild | 59 ++
 2 files changed, 60 insertions(+)

diff --git a/dev-ruby/bcrypt-ruby/Manifest b/dev-ruby/bcrypt-ruby/Manifest
index 14c77e2ac3a..4ce51c4ad15 100644
--- a/dev-ruby/bcrypt-ruby/Manifest
+++ b/dev-ruby/bcrypt-ruby/Manifest
@@ -1 +1,2 @@
 DIST bcrypt-3.1.11.gem 44032 BLAKE2B 
debdc199ff3806b32998c91a99006f293ca6ebbfe2573546afda7c705fbdc0ac8f4cdfba97c1765668cfe3782cb4f9a1b59b20c42e19fd14a6fa52f66160
 SHA512 
bf9ff0d3cdd7044b4ee5796cd04869f21bb3384143b0f336bc2cd9a8f0db3f9562aa23a39601c1d86f153b62f07469ef066616f8a52cfcd840377e331cb22454
+DIST bcrypt-3.1.12.gem 44544 BLAKE2B 
767d38c3fc03e24bedc6a14668538d214219b93fed0b918dedfd5aabc25cd46273e0f7a849dbfa8d23e4ace2ec037809dcd927a9942bfcc126def7e707252c39
 SHA512 
1cb465bc00e40c82c7b9789cf5ba96273a455f4c1c993f411a9b80d39aa9c938e4909a094ca92af786ad3cd836eebac2aefcbe1bb29c6238947e55fcdc110d35

diff --git a/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.1.12.ebuild 
b/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.1.12.ebuild
new file mode 100644
index 000..4680bb999ff
--- /dev/null
+++ b/dev-ruby/bcrypt-ruby/bcrypt-ruby-3.1.12.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md"
+
+RUBY_FAKEGEM_NAME="bcrypt"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="An easy way to keep your users' passwords secure"
+HOMEPAGE="https://github.com/codahale/bcrypt-ruby;
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE=""
+
+all_ruby_prepare() {
+   rm Gemfile || die
+   sed -i -e '/git ls-files/d' bcrypt.gemspec || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/mri extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/mri V=1
+   cp ext/mri/*$(get_modname) lib/ || die
+}
+
+each_ruby_install() {
+   each_fakegem_install
+
+   # bcrypt was called bcrypt-ruby before, so add a spec file that
+   # simply loads bcrypt to make sure that old projects load 
correctly
+   # we don't even need to create a file to load this: the `require
+   # bcrypt` was already part of bcrypt-ruby requirements.
+   cat - < "${T}/bcrypt-ruby.gemspec"
+Gem::Specification.new do |s|
+   s.name = "bcrypt-ruby"
+   s.version = "${RUBY_FAKEGEM_VERSION}"
+   s.summary = "Fake gem to load bcrypt"
+   s.homepage = "${HOMEPAGE}"
+   s.specification_version = 3
+   s.add_runtime_dependency("${RUBY_FAKEGEM_NAME}", ["= 
${RUBY_FAKEGEM_VERSION}"])
+end
+EOF
+   RUBY_FAKEGEM_NAME=bcrypt-ruby \
+   RUBY_FAKEGEM_GEMSPEC="${T}/bcrypt-ruby.gemspec" 
\
+   ruby_fakegem_install_gemspec
+}



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

2018-05-16 Thread Hans de Graaff
commit: aedad04537548fe6b4d84d36fcd373d5203102cc
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu May 17 04:51:33 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu May 17 04:51:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aedad045

dev-ruby/git: add 1.4.0

Package-Manager: Portage-2.3.36, Repoman-2.3.9

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

diff --git a/dev-ruby/git/Manifest b/dev-ruby/git/Manifest
index f5151955291..c257e85c14c 100644
--- a/dev-ruby/git/Manifest
+++ b/dev-ruby/git/Manifest
@@ -1 +1,2 @@
 DIST git-1.3.0.tar.gz 124800 BLAKE2B 
7dbdfe19d3398a2ca7df4383c619acca3e9d05875a629dd580286f3e2241e19183b5713daa5c5357f0644ca1570d4ee5a9d81b204ad0546656faa45cf0c99bbc
 SHA512 
a5c86030f20580886b92b0a258cfc5d281d9fb093069c6350d0afb69a9dccb372a257cbbabd415132b35ccd26620bbc3589a5dc6ac1a418f35f42f7d225c9307
+DIST git-1.4.0.tar.gz 125691 BLAKE2B 
313cbf5bb6b33d96237fccb01aa691e54ab0e94708ffa582d18c7457196f0438de97a2d03518da219ccde85cae627babdffe1f075d16f113f4b8e98cc00fc9a8
 SHA512 
270c7cd7485f1fc41bda5e8c11556707b7e807720bce9bfac7f172a9c640d0fb31404ce7d1fa0de8fc743a95adecfb34efae01fbfccb83ccd8a8f0169443a073

diff --git a/dev-ruby/git/git-1.4.0.ebuild b/dev-ruby/git/git-1.4.0.ebuild
new file mode 100644
index 000..157b12a8f86
--- /dev/null
+++ b/dev-ruby/git/git-1.4.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md"
+
+RUBY_FAKEGEM_GEMSPEC="git.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Library for using Git in Ruby"
+HOMEPAGE="https://github.com/schacon/ruby-git;
+SRC_URI="https://github.com/schacon/ruby-git/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="ruby-git-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="test"
+
+DEPEND+="test? ( >=dev-vcs/git-1.6.0.0 app-arch/tar )"
+RDEPEND+=">=dev-vcs/git-1.6.0.0"
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )"
+
+all_ruby_prepare() {
+   # Don't use hardcoded /tmp directory.
+   sed -i -e "s:/tmp:${TMPDIR}:" tests/units/test_archive.rb 
tests/test_helper.rb || die
+}



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

2018-05-16 Thread Hans de Graaff
commit: 7752f7e9177a0c479cf09d7058f866a4f3d30531
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu May 17 04:56:43 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu May 17 04:56:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7752f7e9

dev-ruby/fakefs: add 0.14.0

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 dev-ruby/fakefs/Manifest |  1 +
 dev-ruby/fakefs/fakefs-0.14.0.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-ruby/fakefs/Manifest b/dev-ruby/fakefs/Manifest
index 1586fdcc2ee..23f009fed24 100644
--- a/dev-ruby/fakefs/Manifest
+++ b/dev-ruby/fakefs/Manifest
@@ -3,3 +3,4 @@ DIST fakefs-0.12.0.tar.gz 45573 BLAKE2B 
8fabed4ae113da67a3e7b61c6b4c400d1e20509a
 DIST fakefs-0.13.0.tar.gz 45866 BLAKE2B 
0c31b6672aed70d00b5372a6b43045ebc1037126b81fe8cae8b139c1298fe833b42b09255f3c64148a6073d0205759786e401c6c34cdb5054295a2f654ba2584
 SHA512 
9df14a3d7ec2cdd92126eedf7663460caf21ad017f5db8a941fe8489ca3e3d16b8dd5fcb41d92b45a2895d18e18c9dd705d70e9b2d7895edb2f4430be7e6a0fa
 DIST fakefs-0.13.2.tar.gz 45978 BLAKE2B 
7657904f7732f398fbea8eaffc7fed375316be8827d015121215383f93524d683dd2f957b067e796a795b97e3c697b95ed1f317743d3b111e0ae9b6afe1d5740
 SHA512 
9d1aec7c750a70b8c27543481aa431c42df1436d1cd59af5feb0cde4bdb7491907ed856ffb991d4ca8a8147a521cb35910f8f9de9d80426ee4432a20090003b2
 DIST fakefs-0.13.3.tar.gz 46019 BLAKE2B 
2ff858106a4d5b4f6859b806cc1aa54a08917ecf2d8794fc20ff372cc94f1817ffac3e070c1c2d96a2f145fd2d471399792b42a45c24ee61c309b5f8d0ee18e1
 SHA512 
c3cd74fd5914d75a4cd3b0edc661b70398c8970ab100e7103831c2d2b686a9f61036549cb21f53610eeb2416d1a49dc0e0a16e7c439c504d65b41a05c31dfad3
+DIST fakefs-0.14.0.tar.gz 44808 BLAKE2B 
9957e95e5d8c6188da0cfa9160067b27485b9222a4f6342b2901a769b437ffcf4322e6ea377ac80ec95fd59ec56c5a48d3012e5c50b49a9fa8085c5c7b0fdd20
 SHA512 
8afc29bdff38232bf86de37771653b3f519f21e3c148afe7376d6df86cb303452f06a430f359f0df80a9f01aa9d697b24018e6b55a185e649c82e81d43274739

diff --git a/dev-ruby/fakefs/fakefs-0.14.0.ebuild 
b/dev-ruby/fakefs/fakefs-0.14.0.ebuild
new file mode 100644
index 000..0190df16641
--- /dev/null
+++ b/dev-ruby/fakefs/fakefs-0.14.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="none"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CONTRIBUTORS README.md"
+
+inherit ruby-fakegem eutils
+
+DESCRIPTION="A fake filesystem. Use it in your tests"
+HOMEPAGE="https://github.com/defunkt/fakefs;
+SRC_URI="https://github.com/defunkt/fakefs/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+IUSE=""
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/rspec-3.1:3
+   >=dev-ruby/minitest-5.5
+   )"
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+
+   # Avoid unneeded minitest-rg dependency.
+   sed -i -e '1igem "minitest", "~>5.5"' \
+   -e '/bundler/ s:^:#:' \
+   -e '/minitest\/rg/ s:^:#:' test/test_helper.rb || die
+}
+
+each_ruby_test() {
+   RSPEC_VERSION=3 ruby-ng_rspec
+   ${RUBY} -Ilib:.:test -e 'Dir["test/**/*_test.rb"].each{|f| require f}' 
|| die
+}



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

2018-05-16 Thread Richard Farina
commit: fed37693d6442a4ec65e121c80ad2f52b6d93335
Author: Zero_Chaos  gentoo  org>
AuthorDate: Thu May 17 02:50:05 2018 +
Commit: Richard Farina  gentoo  org>
CommitDate: Thu May 17 02:50:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fed37693

net-wireless/wpa_supplicant: bindist sucks

this might allow building with bindist, might

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 .../wpa_supplicant/wpa_supplicant-2.6-r7.ebuild| 439 +
 1 file changed, 439 insertions(+)

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r7.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r7.ebuild
new file mode 100644
index 000..08686df3b1f
--- /dev/null
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.6-r7.ebuild
@@ -0,0 +1,439 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils qmake-utils systemd toolchain-funcs readme.gentoo-r1
+
+DESCRIPTION="IEEE 802.1X/WPA supplicant for secure wireless transfers"
+HOMEPAGE="https://w1.fi/wpa_supplicant/;
+SRC_URI="https://w1.fi/releases/${P}.tar.gz;
+LICENSE="|| ( GPL-2 BSD )"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd"
+IUSE="ap bindist dbus eap-sim eapol_test fasteap gnutls +hs2-0 libressl p2p 
privsep ps3 qt5 readline selinux smartcard ssl tdls uncommon-eap-types wimax 
wps kernel_linux kernel_FreeBSD"
+REQUIRED_USE="smartcard? ( ssl )"
+
+CDEPEND="dbus? ( sys-apps/dbus )
+   kernel_linux? (
+   dev-libs/libnl:3
+   net-wireless/crda
+   eap-sim? ( sys-apps/pcsc-lite )
+   )
+   !kernel_linux? ( net-libs/libpcap )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   )
+   readline? (
+   sys-libs/ncurses:0=
+   sys-libs/readline:0=
+   )
+   ssl? (
+   gnutls? (
+   dev-libs/libgcrypt:0=
+   net-libs/gnutls:=
+   )
+   !gnutls? (
+   !libressl? ( >=dev-libs/openssl-1.0.2k:0=[bindist=] )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   )
+   !ssl? ( dev-libs/libtommath )
+"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig
+"
+RDEPEND="${CDEPEND}
+   selinux? ( sec-policy/selinux-networkmanager )
+"
+
+DOC_CONTENTS="
+   If this is a clean installation of wpa_supplicant, you
+   have to create a configuration file named
+   ${EROOT%/}/etc/wpa_supplicant/wpa_supplicant.conf
+   An example configuration file is available for reference in
+   ${EROOT%/}/usr/share/doc/${PF}/
+"
+
+S="${WORKDIR}/${P}/${PN}"
+
+Kconfig_style_config() {
+   #param 1 is CONFIG_* item
+   #param 2 is what to set it = to, defaulting in y
+   CONFIG_PARAM="${CONFIG_HEADER:-CONFIG_}$1"
+   setting="${2:-y}"
+
+   if [ ! $setting = n ]; then
+   #first remove any leading "# " if $2 is not n
+   sed -i "/^# *$CONFIG_PARAM=/s/^# *//" .config || echo 
"Kconfig_style_config error uncommenting $CONFIG_PARAM"
+   #set item = $setting (defaulting to y)
+   sed -i "/^$CONFIG_PARAM/s/=.*/=$setting/" .config || 
echo "Kconfig_style_config error setting $CONFIG_PARAM=$setting"
+   if [ -z "$( grep ^$CONFIG_PARAM= .config )" ] ; then
+   echo "$CONFIG_PARAM=$setting" >>.config
+   fi
+   else
+   #ensure item commented out
+   sed -i "/^$CONFIG_PARAM/s/$CONFIG_PARAM/# 
$CONFIG_PARAM/" .config || echo "Kconfig_style_config error commenting 
$CONFIG_PARAM"
+   fi
+}
+
+pkg_setup() {
+   if use ssl ; then
+   if use gnutls && use libressl ; then
+   elog "You have both 'gnutls' and 'libressl' USE flags 
enabled: defaulting to USE=\"gnutls\""
+   fi
+   else
+   elog "You have 'ssl' USE flag disabled: defaulting to internal 
TLS implementation"
+   fi
+}
+
+src_prepare() {
+   default
+
+   # net/bpf.h needed for net-libs/libpcap on Gentoo/FreeBSD
+   sed -i \
+   -e "s:\(#include \):#include \n\1:" \
+   ../src/l2_packet/l2_packet_freebsd.c || die
+
+   # People seem to take the example configuration file too literally (bug 
#102361)
+   sed -i \
+   -e "s:^\(opensc_engine_path\):#\1:" \
+   -e "s:^\(pkcs11_engine_path\):#\1:" \
+   -e "s:^\(pkcs11_module_path\):#\1:" \
+   wpa_supplicant.conf || die
+
+   # Change configuration to match Gentoo locations (bug #143750)
+   sed -i \
+   -e 

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

2018-05-16 Thread Anthony G. Basile
commit: b1bccc593772a13805254e636295a7c47b5a6efc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu May 17 00:39:32 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu May 17 00:39:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1bccc59

net-misc/curl: version bump to 7.60.0, bug #655266

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-misc/curl/Manifest   |   1 +
 net-misc/curl/curl-7.60.0.ebuild | 247 +++
 2 files changed, 248 insertions(+)

diff --git a/net-misc/curl/Manifest b/net-misc/curl/Manifest
index 8a7bdfeff8f..7cdd21faf31 100644
--- a/net-misc/curl/Manifest
+++ b/net-misc/curl/Manifest
@@ -1,3 +1,4 @@
 DIST curl-7.57.0.tar.bz2 2849283 BLAKE2B 
05bf62df8908a7c2b00abbc31067b8e12e8f8527594597e0c92e950a83e359e3ad430930face01057e0d2e6af8e8d759a9e078bd179cdbd69bc7fe2d10c5c5e3
 SHA512 
f366d2e931d7aff63bac0e1f760ced32c849252947d522427ba92124566906a7e6bd081b6d1630df36895dda2a00ac4cf1bed1470740693ef47ab90c6a270377
 DIST curl-7.58.0.tar.bz2 2891868 BLAKE2B 
d13efab3e3e677804c0821257958eb6f4260234e3d939092e7de862a12ab84500aa50073e37610774b3be9e5a2910c3ba703a716296d31f799916c3046dc214b
 SHA512 
853b945fbfe87e8dcf2186d8cc6609681b9ed3727f9f075bb434d5df07d633fdf30795f6d5956e3355a5cf94a3780e4a3603b08cbd0368e44103de27085b
 DIST curl-7.59.0.tar.bz2 2904158 BLAKE2B 
c44d9985a19cb7b1e273f868181b0017c7b00683c195fd2c6696b9976e3c6a80d8b80490379c2dce653a9b2d698d1be33fce71a0e61844f38c12c44594909c35
 SHA512 
9b5586f443a3c9fed947debce86861a8dea0fbf59bf8838cfd72a0884f13073630cf9d369b5535a059d122decd738c652705567752517f5cb11148cc16f693fb
+DIST curl-7.60.0.tar.bz2 2938400 BLAKE2B 
1c80e63094b6c0e8c63265ed7a62f75aac2ba13cf86ba201d69837f32c6b0011599a33507e65234cf3dccc5aa08ee558ff9c52998c50f0288738ba3992b6bc65
 SHA512 
c7566bbe7289cd75d34a65b457905d54b5d07543b9fed5a762c889eb09114ad66de62c3edafd1973e87bc8e303a434e77b4e40eea1718801e79ae9256531abe9

diff --git a/net-misc/curl/curl-7.60.0.ebuild b/net-misc/curl/curl-7.60.0.ebuild
new file mode 100644
index 000..f4914b51ff8
--- /dev/null
+++ b/net-misc/curl/curl-7.60.0.ebuild
@@ -0,0 +1,247 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools eutils prefix multilib-minimal
+
+DESCRIPTION="A Client that groks URLs"
+HOMEPAGE="https://curl.haxx.se/;
+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"
+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"
+
+#lead to lots of false negatives, bug #285669
+RESTRICT="test"
+
+RDEPEND="ldap? ( net-nds/openldap[${MULTILIB_USEDEP}] )
+   brotli? ( app-arch/brotli:= )
+   ssl? (
+   curl_ssl_axtls? (
+   net-libs/axtls:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_gnutls? (
+   net-libs/gnutls:0=[static-libs?,${MULTILIB_USEDEP}]
+   dev-libs/nettle:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_libressl? (
+   dev-libs/libressl:0=[static-libs?,${MULTILIB_USEDEP}]
+   )
+   curl_ssl_mbedtls? (
+   net-libs/mbedtls:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_openssl? (
+   dev-libs/openssl:0=[static-libs?,${MULTILIB_USEDEP}]
+   )
+   curl_ssl_nss? (
+   dev-libs/nss:0[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   )
+   http2? ( net-libs/nghttp2[${MULTILIB_USEDEP}] )
+   idn? ( net-dns/libidn2:0[static-libs?,${MULTILIB_USEDEP}] )
+   adns? ( net-dns/c-ares:0[${MULTILIB_USEDEP}] )
+   kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
+   metalink? ( >=media-libs/libmetalink-0.1.1[${MULTILIB_USEDEP}] )
+   rtmp? ( media-video/rtmpdump[${MULTILIB_USEDEP}] )
+   ssh? ( net-libs/libssh2[static-libs?,${MULTILIB_USEDEP}] )
+   sys-libs/zlib[${MULTILIB_USEDEP}]"
+
+# Do we need to enforce the same ssl backend for curl and rtmpdump? Bug #423303
+#  rtmp? (
+#  media-video/rtmpdump
+#  curl_ssl_gnutls? ( media-video/rtmpdump[gnutls] )
+#  curl_ssl_openssl? ( media-video/rtmpdump[-gnutls,ssl] )
+#  )
+
+# ssl 

[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-wsgi-dashboards/

2018-05-16 Thread Brian Dolbec
commit: eb18e98ffae61384dd3891750f9c06fba1c24820
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu May 17 00:30:24 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu May 17 00:30:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb18e98f

dev-util/buildbot-wsgi-dashboards: Add py3.6 to 0.9.12

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.12.ebuild   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.12.ebuild 
b/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.12.ebuild
index ebf5cd95ad2..4cabf641f70 100644
--- a/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.12.ebuild
+++ b/dev-util/buildbot-wsgi-dashboards/buildbot-wsgi-dashboards-0.9.12.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_5 )
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
 
 EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
 



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

2018-05-16 Thread Brian Dolbec
commit: 5ea0b12f592af03b03c27f263351605d930e66f3
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu May 17 00:30:43 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu May 17 00:30:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ea0b12f

dev-util/buildbot-worker: Add py3.6 to 0.9.12

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-util/buildbot-worker/buildbot-worker-0.9.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/buildbot-worker/buildbot-worker-0.9.12.ebuild 
b/dev-util/buildbot-worker/buildbot-worker-0.9.12.ebuild
index d78740f7287..475028a231a 100644
--- a/dev-util/buildbot-worker/buildbot-worker-0.9.12.ebuild
+++ b/dev-util/buildbot-worker/buildbot-worker-0.9.12.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
-PYTHON_COMPAT=( python2_7 python3_5 )
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
 
 EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-console-view/

2018-05-16 Thread Brian Dolbec
commit: 552e27beb80f3f5474aae1f8ef3d17de4e3ace5a
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu May 17 00:27:38 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu May 17 00:27:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=552e27be

dev-util/buildbot-console-view: Add py3.6 to 0.9.12

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-util/buildbot-console-view/buildbot-console-view-0.9.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/buildbot-console-view/buildbot-console-view-0.9.12.ebuild 
b/dev-util/buildbot-console-view/buildbot-console-view-0.9.12.ebuild
index d81e32504b4..cc2a6351b2d 100644
--- a/dev-util/buildbot-console-view/buildbot-console-view-0.9.12.ebuild
+++ b/dev-util/buildbot-console-view/buildbot-console-view-0.9.12.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_5 )
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
 
 EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
 



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

2018-05-16 Thread Brian Dolbec
commit: 5e58d0c06de148b0aec36808ad93b6fdd576
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu May 17 00:26:18 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu May 17 00:26:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e58d0c0

dev-util/buildbot: Add py3.6 to 0.9.12

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-util/buildbot/buildbot-0.9.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/buildbot/buildbot-0.9.12.ebuild 
b/dev-util/buildbot/buildbot-0.9.12.ebuild
index 7ea786c5284..c37dc87e147 100644
--- a/dev-util/buildbot/buildbot-0.9.12.ebuild
+++ b/dev-util/buildbot/buildbot-0.9.12.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_5 )
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
 
 EGIT_REPO_URI="https://github.com/buildbot/${PN}.git;
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-grid-view/

2018-05-16 Thread Brian Dolbec
commit: 74549ebda864f736459a6a6f4fced5731472fde1
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu May 17 00:28:41 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu May 17 00:28:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74549ebd

dev-util/buildbot-grid-view: Add py3.6 to 0.9.12

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-util/buildbot-grid-view/buildbot-grid-view-0.9.12_p1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.12_p1.ebuild 
b/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.12_p1.ebuild
index 2da8989d872..7a88dd5d695 100644
--- a/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.12_p1.ebuild
+++ b/dev-util/buildbot-grid-view/buildbot-grid-view-0.9.12_p1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_5 )
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
 
 EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/buildbot-waterfall-view/

2018-05-16 Thread Brian Dolbec
commit: 4b9dff299d6a427e9d03802d6103a58caf4b0b96
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu May 17 00:30:02 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu May 17 00:30:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b9dff29

dev-util/buildbot-waterfall-view: Add py3.6 to 0.9.12

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../buildbot-waterfall-view/buildbot-waterfall-view-0.9.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.12.ebuild 
b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.12.ebuild
index 0f150c29112..1481782cc5d 100644
--- a/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.12.ebuild
+++ b/dev-util/buildbot-waterfall-view/buildbot-waterfall-view-0.9.12.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_5 )
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
 
 EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
 



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

2018-05-16 Thread Brian Dolbec
commit: 7a7f25e84591bf982d2b6adbdc3ef43362bc767b
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu May 17 00:29:06 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu May 17 00:29:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a7f25e8

dev-util/buildbot-pkg: Add py3.6 to 0.9.12

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-util/buildbot-pkg/buildbot-pkg-0.9.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/buildbot-pkg/buildbot-pkg-0.9.12.ebuild 
b/dev-util/buildbot-pkg/buildbot-pkg-0.9.12.ebuild
index 8985c18fefb..78d73aebfef 100644
--- a/dev-util/buildbot-pkg/buildbot-pkg-0.9.12.ebuild
+++ b/dev-util/buildbot-pkg/buildbot-pkg-0.9.12.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_5 )
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
 
 EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
 



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

2018-05-16 Thread Brian Dolbec
commit: 19ba9d5f886283f486044c17b8d5141a87a7f8f9
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu May 17 00:31:23 2018 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu May 17 00:31:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19ba9d5f

dev-util/buildbot-www: Add py3.6 to 0.9.12

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-util/buildbot-www/buildbot-www-0.9.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/buildbot-www/buildbot-www-0.9.12.ebuild 
b/dev-util/buildbot-www/buildbot-www-0.9.12.ebuild
index fc596c84bbb..04389c8bb42 100644
--- a/dev-util/buildbot-www/buildbot-www-0.9.12.ebuild
+++ b/dev-util/buildbot-www/buildbot-www-0.9.12.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 PYTHON_REQ_USE="sqlite"
-PYTHON_COMPAT=( python2_7 python3_5 )
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
 
 EGIT_REPO_URI="https://github.com/buildbot/buildbot.git;
 



[gentoo-commits] proj/portage:master commit in: repoman/bin/, repoman/pym/repoman/tests/

2018-05-16 Thread Zac Medico
commit: b414df90b50aaf73dda3708680c6951e7dc8bad9
Author: Zac Medico  gentoo  org>
AuthorDate: Wed May 16 23:28:13 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed May 16 23:28:13 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=b414df90

repoman: explicitly close event loops (bug 654390)

The default asyncio event loop triggers a resource warning if it
is not explicitly closed, therefore close it when appropriate.

Bug: https://bugs.gentoo.org/654390

 repoman/bin/repoman   | 3 +++
 repoman/pym/repoman/tests/runTests.py | 6 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/repoman/bin/repoman b/repoman/bin/repoman
index 7084ff918..ab04d56ca 100755
--- a/repoman/bin/repoman
+++ b/repoman/bin/repoman
@@ -38,6 +38,7 @@ if osp.isfile(osp.join(osp.dirname(osp.dirname(here)), 
".repoman_not_installed")
 
 import portage
 portage._internal_caller = True
+from portage.util._eventloop.global_event_loop import global_event_loop
 from repoman.main import repoman_main
 
 try:
@@ -48,3 +49,5 @@ except IOError as e:
sys.exit(1)
else:
raise
+finally:
+   global_event_loop().close()

diff --git a/repoman/pym/repoman/tests/runTests.py 
b/repoman/pym/repoman/tests/runTests.py
index b0e715ec6..ed73592a1 100644
--- a/repoman/pym/repoman/tests/runTests.py
+++ b/repoman/pym/repoman/tests/runTests.py
@@ -45,6 +45,7 @@ portage._internal_caller = True
 # Ensure that we don't instantiate portage.settings, so that tests should
 # work the same regardless of global configuration file state/existence.
 portage._disable_legacy_globals()
+from portage.util._eventloop.global_event_loop import global_event_loop
 
 if os.environ.get('NOCOLOR') in ('yes', 'true'):
portage.output.nocolor()
@@ -66,4 +67,7 @@ if insert_bin_path:
os.environ["PATH"] = ":".join(path)
 
 if __name__ == "__main__":
-   sys.exit(tests.main())
+   try:
+   sys.exit(tests.main())
+   finally:
+   global_event_loop().close()



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

2018-05-16 Thread Thomas Deutschmann
commit: 14da69badcb42e4cc5c6a3277a262b709421d58c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed May 16 23:19:23 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed May 16 23:19:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14da69ba

app-arch/unrar: drop old

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 app-arch/unrar/Manifest   |  2 --
 app-arch/unrar/unrar-5.6.1.ebuild | 68 ---
 app-arch/unrar/unrar-5.6.2.ebuild | 68 ---
 3 files changed, 138 deletions(-)

diff --git a/app-arch/unrar/Manifest b/app-arch/unrar/Manifest
index e3ac96e08ca..06a3fa5f813 100644
--- a/app-arch/unrar/Manifest
+++ b/app-arch/unrar/Manifest
@@ -1,5 +1,3 @@
 DIST unrar-5.5.8.tar.gz 85 BLAKE2B 
ec6317fc95674a3f282f92762ee89d2fd21d162a96b7b1ea29de9f4ab0ebf0bdb9c3e7141c7146d4bd2e570620db7d7850bc9a8c45a42ef745af1d75d4df5a71
 SHA512 
9eac83707fa47a03925e5f3e8adf47889064d748304b732d12a2d379ab525b441f1aa33216377d4ef445f45c4e8ad73d2cd0b560601ceac344c60571b77fd6aa
-DIST unrar-5.6.1.tar.gz 225408 BLAKE2B 
1b4cef7b55dec0658d4eca09e9dc933ed1ad10d87dabe3626a01974bddb51dabf89c39f2db200cbe4388a682c0a756c720d116b9654e4539bfca1658396d0768
 SHA512 
62f37f9e3deb86651c92832190fa27a8e4490084c6a95f42e8a5f5668fbc7aafd9c273a2c60683c3534b614e0ca44b20d18598296f67edb0812850a50b807e77
-DIST unrar-5.6.2.tar.gz 225677 BLAKE2B 
a8eaf1ca3262caedb1f1a44109d26e688208d62c2424b476e40b90406be8d6274073bae4f1963b0f7eec4e978a25347b36be8561e74143c6a6ce84e2c4956130
 SHA512 
67f958330bc58fecc2fde3a16073bb44b61b5fd4a0ff19c5e345ce830a1ff3f00f3fb2507455912b7b3252804b9d27a92c4469f31513337569fed298d6af7655
 DIST unrar-5.6.3.tar.gz 225788 BLAKE2B 
8baf99ef85052a395fe0f2daed41803587e7d839949488eb3430e3d3a3dbca30ef894530d5ef40757f7ea2ffdfb2d493e8e13d7322e65885cf03f8fa0859b804
 SHA512 
cd3c97d357242a91917cdd9ee6898527829bff73dd187e58d7490d0d0ed5ffd8f8db651ce63d4bd8307c6a085fa95d72faa7b0cf1348bba191086136232a98fc
 DIST unrar-5.6.4.tar.gz 225849 BLAKE2B 
56257ab9482841a1a27e5afd5b00b19e7319eef250168f08826e3cb63eefa063ece8198133d8439fca8d8905d303715751e24ed36a5018f03982c03cda27a53b
 SHA512 
0ff55a82f8593c59c9773ffa7dec00386b762c504a08497bc1a50de5502c52e1c1d1043cb8ba353291aa61a3ebc9f5f0a21d313d89639f400e5fc45f01d62cca

diff --git a/app-arch/unrar/unrar-5.6.1.ebuild 
b/app-arch/unrar/unrar-5.6.1.ebuild
deleted file mode 100644
index 78288603ed4..000
--- a/app-arch/unrar/unrar-5.6.1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit eutils flag-o-matic multilib toolchain-funcs
-
-MY_PN=${PN}src
-
-DESCRIPTION="Uncompress rar files"
-HOMEPAGE="https://www.rarlab.com/rar_add.htm;
-SRC_URI="https://www.rarlab.com/rar/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="unRAR"
-# subslot = soname version
-SLOT="0/5"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
-IUSE=""
-
-RDEPEND="!<=app-arch/unrar-gpl-0.0.1_p20080417"
-
-S=${WORKDIR}/unrar
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-5.5.5-build.patch
-   "${FILESDIR}"/${PN}-5.5.5-honor-flags.patch
-)
-
-src_prepare() {
-   default
-
-   local sed_args=( -e "/libunrar/s:.so:$(get_libname ${PV%.*.*}):" )
-   if [[ ${CHOST} == *-darwin* ]] ; then
-   sed_args+=( -e "s:-shared:-dynamiclib -install_name 
${EPREFIX}/usr/$(get_libdir)/libunrar$(get_libname ${PV%.*.*}):" )
-   else
-   sed_args+=( -e "s:-shared:& -Wl,-soname 
-Wl,libunrar$(get_libname ${PV%.*.*}):" )
-   fi
-   sed -i "${sed_args[@]}" makefile || die
-}
-
-src_configure() {
-   mkdir -p build-{lib,bin}
-   printf 'VPATH = ..\ninclude ../makefile' > build-lib/Makefile || die
-   cp build-{lib,bin}/Makefile || die
-}
-
-src_compile() {
-   unrar_make() {
-   emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" STRIP=true "$@"
-   }
-
-   unrar_make CXXFLAGS+=" -fPIC" -C build-lib lib
-   ln -s libunrar$(get_libname ${PV%.*.*}) 
build-lib/libunrar$(get_libname) || die
-   ln -s libunrar$(get_libname ${PV%.*.*}) build-lib/libunrar$(get_libname 
${PV}) || die
-
-   unrar_make -C build-bin
-}
-
-src_install() {
-   dobin build-bin/unrar
-   dodoc readme.txt
-
-   dolib.so build-lib/libunrar*
-
-   insinto /usr/include/libunrar${PV%.*.*}
-   doins *.hpp
-   dosym libunrar${PV%.*.*} /usr/include/libunrar
-}

diff --git a/app-arch/unrar/unrar-5.6.2.ebuild 
b/app-arch/unrar/unrar-5.6.2.ebuild
deleted file mode 100644
index 78288603ed4..000
--- a/app-arch/unrar/unrar-5.6.2.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-

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

2018-05-16 Thread Thomas Deutschmann
commit: 3c58ed3ac8727bccd21845f10b6b156e76786582
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed May 16 23:18:39 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed May 16 23:18:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c58ed3a

app-arch/unrar: Bump to v5.6.4

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 app-arch/unrar/Manifest   |  1 +
 app-arch/unrar/unrar-5.6.4.ebuild | 68 +++
 2 files changed, 69 insertions(+)

diff --git a/app-arch/unrar/Manifest b/app-arch/unrar/Manifest
index a7baf225d11..e3ac96e08ca 100644
--- a/app-arch/unrar/Manifest
+++ b/app-arch/unrar/Manifest
@@ -2,3 +2,4 @@ DIST unrar-5.5.8.tar.gz 85 BLAKE2B 
ec6317fc95674a3f282f92762ee89d2fd21d162a9
 DIST unrar-5.6.1.tar.gz 225408 BLAKE2B 
1b4cef7b55dec0658d4eca09e9dc933ed1ad10d87dabe3626a01974bddb51dabf89c39f2db200cbe4388a682c0a756c720d116b9654e4539bfca1658396d0768
 SHA512 
62f37f9e3deb86651c92832190fa27a8e4490084c6a95f42e8a5f5668fbc7aafd9c273a2c60683c3534b614e0ca44b20d18598296f67edb0812850a50b807e77
 DIST unrar-5.6.2.tar.gz 225677 BLAKE2B 
a8eaf1ca3262caedb1f1a44109d26e688208d62c2424b476e40b90406be8d6274073bae4f1963b0f7eec4e978a25347b36be8561e74143c6a6ce84e2c4956130
 SHA512 
67f958330bc58fecc2fde3a16073bb44b61b5fd4a0ff19c5e345ce830a1ff3f00f3fb2507455912b7b3252804b9d27a92c4469f31513337569fed298d6af7655
 DIST unrar-5.6.3.tar.gz 225788 BLAKE2B 
8baf99ef85052a395fe0f2daed41803587e7d839949488eb3430e3d3a3dbca30ef894530d5ef40757f7ea2ffdfb2d493e8e13d7322e65885cf03f8fa0859b804
 SHA512 
cd3c97d357242a91917cdd9ee6898527829bff73dd187e58d7490d0d0ed5ffd8f8db651ce63d4bd8307c6a085fa95d72faa7b0cf1348bba191086136232a98fc
+DIST unrar-5.6.4.tar.gz 225849 BLAKE2B 
56257ab9482841a1a27e5afd5b00b19e7319eef250168f08826e3cb63eefa063ece8198133d8439fca8d8905d303715751e24ed36a5018f03982c03cda27a53b
 SHA512 
0ff55a82f8593c59c9773ffa7dec00386b762c504a08497bc1a50de5502c52e1c1d1043cb8ba353291aa61a3ebc9f5f0a21d313d89639f400e5fc45f01d62cca

diff --git a/app-arch/unrar/unrar-5.6.4.ebuild 
b/app-arch/unrar/unrar-5.6.4.ebuild
new file mode 100644
index 000..78288603ed4
--- /dev/null
+++ b/app-arch/unrar/unrar-5.6.4.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit eutils flag-o-matic multilib toolchain-funcs
+
+MY_PN=${PN}src
+
+DESCRIPTION="Uncompress rar files"
+HOMEPAGE="https://www.rarlab.com/rar_add.htm;
+SRC_URI="https://www.rarlab.com/rar/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="unRAR"
+# subslot = soname version
+SLOT="0/5"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND="!<=app-arch/unrar-gpl-0.0.1_p20080417"
+
+S=${WORKDIR}/unrar
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-5.5.5-build.patch
+   "${FILESDIR}"/${PN}-5.5.5-honor-flags.patch
+)
+
+src_prepare() {
+   default
+
+   local sed_args=( -e "/libunrar/s:.so:$(get_libname ${PV%.*.*}):" )
+   if [[ ${CHOST} == *-darwin* ]] ; then
+   sed_args+=( -e "s:-shared:-dynamiclib -install_name 
${EPREFIX}/usr/$(get_libdir)/libunrar$(get_libname ${PV%.*.*}):" )
+   else
+   sed_args+=( -e "s:-shared:& -Wl,-soname 
-Wl,libunrar$(get_libname ${PV%.*.*}):" )
+   fi
+   sed -i "${sed_args[@]}" makefile || die
+}
+
+src_configure() {
+   mkdir -p build-{lib,bin}
+   printf 'VPATH = ..\ninclude ../makefile' > build-lib/Makefile || die
+   cp build-{lib,bin}/Makefile || die
+}
+
+src_compile() {
+   unrar_make() {
+   emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" STRIP=true "$@"
+   }
+
+   unrar_make CXXFLAGS+=" -fPIC" -C build-lib lib
+   ln -s libunrar$(get_libname ${PV%.*.*}) 
build-lib/libunrar$(get_libname) || die
+   ln -s libunrar$(get_libname ${PV%.*.*}) build-lib/libunrar$(get_libname 
${PV}) || die
+
+   unrar_make -C build-bin
+}
+
+src_install() {
+   dobin build-bin/unrar
+   dodoc readme.txt
+
+   dolib.so build-lib/libunrar*
+
+   insinto /usr/include/libunrar${PV%.*.*}
+   doins *.hpp
+   dosym libunrar${PV%.*.*} /usr/include/libunrar
+}



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

2018-05-16 Thread Thomas Deutschmann
commit: 0e8d506824ab6c2b8aab82471c2e36147b56e049
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed May 16 21:44:37 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed May 16 23:11:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e8d5068

dev-libs/librelp: Bump to v1.2.16

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 dev-libs/librelp/Manifest  |  1 +
 dev-libs/librelp/librelp-1.2.16.ebuild | 59 ++
 2 files changed, 60 insertions(+)

diff --git a/dev-libs/librelp/Manifest b/dev-libs/librelp/Manifest
index a2ca2208800..aecd425fe0d 100644
--- a/dev-libs/librelp/Manifest
+++ b/dev-libs/librelp/Manifest
@@ -1 +1,2 @@
 DIST librelp-1.2.15.tar.gz 440273 BLAKE2B 
dba423e206bdbcbfb351ab691f777d4c78f25d9042ffe2cdac01bc4e7e07eb7c02301ab0d8942a73d688eaf28b43d9f77aa94cc88a258dee1b28dac94a13954e
 SHA512 
9cf52c82c8e61f6970a83ead60da4bc64ab56a2bda42fedf184a1ae60c28f66d565a0c3a8720b55b9a2e5e3ffb7ec35601158f634c8f2965f8c0d3b4f1c15568
+DIST librelp-1.2.16.tar.gz 474456 BLAKE2B 
b528aaa66e9d52d5304510f86400067e1baea44be487f8cb176aeb146924bc35af24a403e849376e74614fb060093b48a3afe9d6c5da56bbf4dc37a6740478cc
 SHA512 
54c101281c94046e4f8d6f77e73ab52874408e62c77f3dfa29ec0b294f39c216637674cc0bf1b7e04173557b3f21bfa74b7be1aafa3ff2771acd41d1d067d3a3

diff --git a/dev-libs/librelp/librelp-1.2.16.ebuild 
b/dev-libs/librelp/librelp-1.2.16.ebuild
new file mode 100644
index 000..e82777d8801
--- /dev/null
+++ b/dev-libs/librelp/librelp-1.2.16.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools
+
+DESCRIPTION="An easy to use library for the RELP protocol"
+HOMEPAGE="http://www.librelp.com/;
+SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-3+ doc? ( FDL-1.3 )"
+
+# subslot = soname version
+SLOT="0/0.4.0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="debug doc +ssl static-libs"
+
+RDEPEND="
+   ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+"
+
+DEPEND="
+   ssl? ( >=net-libs/gnutls-3.3.17.1:0= )
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   sed -i \
+   -e 's/ -g"/"/g' \
+   configure.ac || die "sed failed"
+
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable debug)
+   $(use_enable ssl tls)
+   $(use_enable static-libs static)
+   )
+
+   econf "${myeconfargs[@]}"
+}
+
+src_test() {
+   emake -j1 check
+}
+
+src_install() {
+   local DOCS=( ChangeLog )
+   use doc && local HTML_DOCS=( doc/relp.html )
+   default
+
+   find "${ED}"usr/lib* -name '*.la' -delete || die
+}



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

2018-05-16 Thread Thomas Deutschmann
commit: ff84bcd39bf6347e772341dbb55fccf084f1da0f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed May 16 23:11:40 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed May 16 23:11:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff84bcd3

app-admin/rsyslog: Bump to v8.35.0

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 app-admin/rsyslog/Manifest |   2 +
 .../8-stable/rsyslog-8.35.0-fix-issue2719.patch| 241 +++
 app-admin/rsyslog/rsyslog-8.35.0.ebuild| 464 +
 3 files changed, 707 insertions(+)

diff --git a/app-admin/rsyslog/Manifest b/app-admin/rsyslog/Manifest
index 7818558481f..fe8ef0c9003 100644
--- a/app-admin/rsyslog/Manifest
+++ b/app-admin/rsyslog/Manifest
@@ -2,7 +2,9 @@ DIST rsyslog-8.28.0.tar.gz 2471122 BLAKE2B 
48ed55cbf02eca22591c3d1d59db8f956e4d8
 DIST rsyslog-8.32.0.tar.gz 2478990 BLAKE2B 
21bfc93b55da107bec2eddb89cb42d76990ced2675caeb6e73183a109f9bc8293bde43f202bb56007f9ea4e49de385b004c158059cb13e8d3d376bf050ca445a
 SHA512 
eea85d77bf3624fbad6f0838fa2a4af7c14d853c8f120f14cf697cdfda7f7e0692dab684d2ddd07fe44a0bcd50cf91baf69af1bb63dc9d60e19146f1150155ac
 DIST rsyslog-8.33.1.tar.gz 2494338 BLAKE2B 
680ad2c062386e4e3e6c6e1a83cf0001d63da305edae9df527d1079a2fa13b8715e3cbfa211ca908e0005f1762becfd88369a7cd1488134564980137f0e98d86
 SHA512 
c4b426409e89463a8e8f7f9d0267f2fa1df1a84e947ce7bf91255db88b4cad5b7e607c476ba2db0543af069c44cdbb35330e0839696bf83668200e8ac009c6a0
 DIST rsyslog-8.34.0.tar.gz 2545544 BLAKE2B 
66caf277a814563027183ecf267d76067c384adf8d6d7b8543203df9a7c37242722dd35445e4446aacf1e680f5f3957cea40ece8a284ef2a393b4a71e3a2b49c
 SHA512 
69eaececa2f8b98799deac8e6cb2cf635a5117da7a21cbb0b880b7df1d83c6ccf16133dab099a6e5fb865f34c2dad164a1bf1952d16ca116af3b1dd35d15065e
+DIST rsyslog-8.35.0.tar.gz 2590108 BLAKE2B 
e201c1366b8ab96c070829d51de079212e82216a793eb7622aa91c66e2330981de8be547b1ee7f102ed7d8c8de054d58ba151e95238146a61fba8fe908c5f929
 SHA512 
3b8845fc057147c2dd740b3bb432e7fb101ad60be5c6bc86a2c2796bcd3f3526c617d45b9e8301388d51047a125ca18ba4ac54f8be2a13eabbbe8fb9361beecc
 DIST rsyslog-docs-8.28.0.tar.gz 4424901 BLAKE2B 
9753b1a48b9d3bb045f2d088de5df0bbe5bc9045a82a5cab98b27c2df7648ac312929a173ec34c81ced46cb0eba336d708204b73b57413686769afa882dceaa5
 SHA512 
c085e09149cfc27ce0cd22edf9ad3f81b111f491fbea79afbc3172882065bd8324e366e3b5d09c885c1a3aa63fe8fbbe154d66488319d4ffc0867f938e1ab07d
 DIST rsyslog-docs-8.32.0.tar.gz 5368254 BLAKE2B 
6d1efb191698bb1cfb03660167e5dcf9eea8f2fd2e459c350cd55aa24afcc5fb44d2bc0ef5590c6951326fbd0215aecbd59a6122e88ff449f566b37d1ee00d56
 SHA512 
e64eba3c40eab35e266826fb7e183418f38eb008f2a21ddf2c523d1e42aacaa20f882a561e5df67a979463048b58232fa82759645a21dc6962f6836ac8f57bce
 DIST rsyslog-docs-8.33.1.tar.gz 6770438 BLAKE2B 
e076688d7559c16986241149c00f6df603e2c90771222f4f91dc944fbdeace3dbc6e47fc82602f852a7407e064fe31df0a1c2940d521ae6ae21f5663518bfeb7
 SHA512 
fcc8ffee372c0b0dc2ab1b76dcf68a66ce820996cf2d46a2b5c6fd40e6fad5ef3c33da97a2e88956751597c20cf0c4a9b6537c22db0b3b46d1a734a9d9f95df5
 DIST rsyslog-docs-8.34.0.tar.gz 7419160 BLAKE2B 
928e6a4044d6d2161483f934e6c2cd5e489a3ec95b823419d7d57b98a7dd6c73f4d28d17c238471592fe1c692b626b57c7bf647e926c1c38ff5a774e5d2defd5
 SHA512 
edf9aa63c777624c3dc27dfd64b38893b9b4c9b56941df1d7a8c6bc3cb4cbbfb83e8c356cbefeab7c688ecb6017b66ed99931cb71b69b7c927b4743548dd40d4
+DIST rsyslog-docs-8.35.0.tar.gz 7427270 BLAKE2B 
5441080c07a8398cd5d513ba6abe0335f62762f105354105549f0440c0429c62a4f28a4cc84a71d049bc8134cd64bda2c2210a2f30fd5b94f53e0bc783e7c8d1
 SHA512 
f78d0451eef789d60f7c5ae1eed46c4a9f7a6ade73b829f65aa2373aa786b00e84e8957089532b1b652838bd9f62b41d92530276a0d27e21b8e94d5f0e4728a6

diff --git 
a/app-admin/rsyslog/files/8-stable/rsyslog-8.35.0-fix-issue2719.patch 
b/app-admin/rsyslog/files/8-stable/rsyslog-8.35.0-fix-issue2719.patch
new file mode 100644
index 000..8996acd27e8
--- /dev/null
+++ b/app-admin/rsyslog/files/8-stable/rsyslog-8.35.0-fix-issue2719.patch
@@ -0,0 +1,241 @@
+Add missing files for mmkubernetes tests
+
+Upstream bug: https://github.com/rsyslog/rsyslog/pull/2719
+
+--- /dev/null
 b/tests/mmkubernetes-basic.out.json
+@@ -0,0 +1,110 @@
++[{
++  "kubernetes": {
++"namespace_id": "namespace-name2-id",
++"namespace_labels": {
++  "label_1_key": "label 1 value",
++  "label_with_empty_value": "",
++  "label_2_key": "label 2 value"
++},
++"creation_timestamp": "2018-04-09T21:56:39Z",
++"pod_id": "pod-name2-id",
++"labels": {
++  "custom_label": "pod-name2-label-value",
++  "deploymentconfig": "pod-name2-dc",
++  "component": "pod-name2-component",
++  "label_with_empty_value": "",
++  "deployment": "pod-name2-deployment"
++},
++"pod_name": "pod-name2",
++"namespace_name": "namespace-name2",
++"container_name": "container-name2",
++"master_url": "http://localhost:18443;
++  },
++  "docker": {
++"container_id": "id2"

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

2018-05-16 Thread Thomas Deutschmann
commit: 38d99b94c9e32f42548357e749786928aa022652
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed May 16 21:36:30 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed May 16 23:11:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38d99b94

net-firewall/shorewall: Bump to v5.2.0.3

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-firewall/shorewall/Manifest |   7 +
 net-firewall/shorewall/shorewall-5.2.0.3.ebuild | 459 
 2 files changed, 466 insertions(+)

diff --git a/net-firewall/shorewall/Manifest b/net-firewall/shorewall/Manifest
index f3201993340..97255359cca 100644
--- a/net-firewall/shorewall/Manifest
+++ b/net-firewall/shorewall/Manifest
@@ -1,14 +1,21 @@
 DIST shorewall-5.1.12.4.tar.bz2 555854 BLAKE2B 
697fb7dbe4217b3a8d7230b3d79cec94f33ff69975b9f52477def8424e2ed9c79614e5aff4a40e31c2c0c69bc32f88c40810b7b1e5381037df1cf225b8bf97ec
 SHA512 
25038865df0b3a4d1bcdb14b58108cd0f42e8738c3415ef2ce6fcbf3b15fc651fa90ce6adcfc3c67d6e0dd18709c4862a3ca18f1976e6c96567db6cdae86e000
 DIST shorewall-5.2.0.2.tar.bz2 537374 BLAKE2B 
650b3f23307be51b3a4ce75dcdfb3024ab476b5b5a2119b92181a8fc304ea6c4d1bdad342163eff4ea797d6dd18de0c0f1cf26d4de1e48f5fb0b384c25c85edf
 SHA512 
e80525599956316fbd1421fce95e2e6adc0a2992ef1791b3d4d5a339100859c34396e19ee4f00f430f5808fc160c09e6f7a7f4f619bbbe21422524f1daaa1849
+DIST shorewall-5.2.0.3.tar.bz2 538053 BLAKE2B 
1488177b2151c90790cc3f1d9dd186e502189cc483a908e477adf878d52feb423e4a64c7a39470555ac06329124f01fd5918dd4d0b404f0435ab3ad34be0bd18
 SHA512 
37ae7d0ea9ebb86f75cf9a4572ee84118aba87b2690c76457f76313502a3abd96b5f5b700d7c650d98db7f0655d8f2ba0a0fece269613bb153fa3a2f6158b05b
 DIST shorewall-core-5.1.12.4.tar.bz2 86548 BLAKE2B 
8384c2f8ec673db3f0fed04af702e1967d41133f3a066ba09cbd58199654878d4d6c73730a933525304d68f7834c80d5c2a2452a4dd6faa71e2580deadf3189e
 SHA512 
f77ae4080fa81a3259ab620ba7615c4188e6bec0244e898702dc641aacd8ac54160331e270b3708d818bfa9452cf96014868199a48c28f15c50d128365cb62e6
 DIST shorewall-core-5.2.0.2.tar.bz2 75108 BLAKE2B 
2523d3fbdb0755c9c14195dedd0a4db2329b96a1ac5bde1eed1f0bb5623f89e18fab641d84074999b3058f73da75c9d306d372e02fac0bd735b0247256dad123
 SHA512 
1a6b94d25a09eeb464e4e35dee6e10a505d9fe271f034bc92763bed5c7bae44f88de68321f4b21bef4ef6e199d746d24fb4be077c676f96d9c84d8dfd453f370
+DIST shorewall-core-5.2.0.3.tar.bz2 75625 BLAKE2B 
fd8ae63da974088958ffb4a0a9b3d740556f60e1f73b50614af1fd337cf0c715cbd79f003085df1d6a2e1ad1203b8f322aea56e4808dbc920c3c09ef7011a4d5
 SHA512 
c67f0c64272c03650d4c3a727bcc0f9fc5771eb10e8b914e0c4709b4fda5ee1bea98a6e2a84eb43ee44a41005d8b05bf869ec7c61be582d3b82936f33a6d3d0a
 DIST shorewall-docs-html-5.1.12.4.tar.bz2 4281202 BLAKE2B 
51624bf6a36766fa8f1aad9600885dc2b92f656ef3a7bc6cf3704a33d2e014af590bbe1621793bd77d291baa3441a0f493c27f838159ccbb15b0684ab26f4bef
 SHA512 
e1592137013b463a7cbd28c7354f51b36460c054d55e1819198b72c600ccbdc8b3fee4bab33d7a71466397338bd38e0aa6312f1c182e79052f249c51d1017dc1
 DIST shorewall-docs-html-5.2.0.2.tar.bz2 4294083 BLAKE2B 
3ce667e656359f7d2f27bd03a47f2eae9f407a04f7b2921ad7099729164c40b3a88b2651052c3b28a3ab404953bef811da499f6acd4eb432648bf6d727124a20
 SHA512 
751f2c426e8abe9a5af396df39d4b67ccf674113b4b595916c6d44c14ace67f82ae2ffc84500b25d2876f0356b02c96383068d54fa97804afe464d2d5eccba31
+DIST shorewall-docs-html-5.2.0.3.tar.bz2 4295064 BLAKE2B 
a4913ac5138a2ee1c0c8640a7e2ea4e40bd4324aee0ffd6d4b228b41065d4d4e9e55ef0d600fd93dca8cb3ee73aeb2df196496d68dd11b40b23ce7c96ec0f9d6
 SHA512 
1e887b7eb0c4d0a78be7857a537f7cfa1307b43feed6396c5db289de5a2ea13547e25311bdd1e1dd48cd460e12ff71ce1520f1ec0feab87753f10cfeb45873c1
 DIST shorewall-init-5.1.12.4.tar.bz2 41541 BLAKE2B 
149b31b2ffd37c64cfc69de7d2d3a39824ce427a98a84f4e96af02aad9e04f0973f862ea0b158245a1d806504dc0dac9a5a554776d9533a7c88dbf6c096d4d07
 SHA512 
971f0a7a25f49c289e9c9d6d564e05b7f2675d271ef95c15b06a4a4e878a74c5b13a1ea80411014a5130f53267df6691042b313c423db193b9cd6cde172ed359
 DIST shorewall-init-5.2.0.2.tar.bz2 29749 BLAKE2B 
c70067951d458bc54434214dc2b4764c0c52aca457a21c4c77d3ae6cc0586fc5ce325549f7a5df9c18c255113e7d71a4f687a6a72fc81528b7611a3edacab864
 SHA512 
1fef0feea7e36d2f12373e64d898129e2e49c66f3f182fad950f5aced6615ff2b59cea66c1d2c475e9a781c0faf50541642c71e69dda68fa41ab86509134b511
+DIST shorewall-init-5.2.0.3.tar.bz2 30209 BLAKE2B 
93e80935fd659b073e85ea0281f749a8bfebcc752e8fb1134af21a0bf262c7a7ba0f96ed8ce2aba37b592cd4bfef0a8e714dce25c3e1af9529c4acafe52502cd
 SHA512 
988342ba1755373ecc89bf139eb6ca7a3fb78081a84e510a2827d174129bb24e06cb36fb474f9cce1056879997bc641152da18d8feb57429686a88e8cc1c8b9d
 DIST shorewall-lite-5.1.12.4.tar.bz2 47209 BLAKE2B 
ca39daa7a864b86cd9075f8604d053984ef8c451285520c568b83171163513bdbe7f910b21638f4f69e716d4bdbb4f148856b02dbe83392789d8b962669374e1
 SHA512 
1bcdb90fccc634103ff190be9a058abf1b5158d562702c8c1ad51e8edebc2939271f3279bcb0fd8ff7389ea175387ce5a090a0d9e5655524a11203b5c0d55604
 DIST shorewall-lite-5.2.0.2.tar.bz2 35577 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: sci-libs/netcdf/

2018-05-16 Thread Aaron Bauman
commit: 8d8d124e1a72956c5b96feb679b8b3b1b334779a
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 11:27:15 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d8d124e

sci-libs/netcdf: use HTTPS

 sci-libs/netcdf/netcdf-4.3.2-r1.ebuild | 4 ++--
 sci-libs/netcdf/netcdf-4.4.0-r1.ebuild | 4 ++--
 sci-libs/netcdf/netcdf-4.4.1.1.ebuild  | 4 ++--
 sci-libs/netcdf/netcdf-4.6.1.ebuild| 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/sci-libs/netcdf/netcdf-4.3.2-r1.ebuild 
b/sci-libs/netcdf/netcdf-4.3.2-r1.ebuild
index fd351c9fc86..d12cf4ae26a 100644
--- a/sci-libs/netcdf/netcdf-4.3.2-r1.ebuild
+++ b/sci-libs/netcdf/netcdf-4.3.2-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=5
@@ -6,7 +6,7 @@ EAPI=5
 inherit autotools-utils
 
 DESCRIPTION="Scientific library and interface for array oriented data access"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="ftp://ftp.unidata.ucar.edu/pub/netcdf/${P}.tar.gz;
 
 LICENSE="UCAR-Unidata"

diff --git a/sci-libs/netcdf/netcdf-4.4.0-r1.ebuild 
b/sci-libs/netcdf/netcdf-4.4.0-r1.ebuild
index 5a8e696da39..3efc4f92fd0 100644
--- a/sci-libs/netcdf/netcdf-4.4.0-r1.ebuild
+++ b/sci-libs/netcdf/netcdf-4.4.0-r1.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
@@ -6,7 +6,7 @@ EAPI=6
 inherit eutils
 
 DESCRIPTION="Scientific library and interface for array oriented data access"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="https://github.com/Unidata/netcdf-c/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="UCAR-Unidata"

diff --git a/sci-libs/netcdf/netcdf-4.4.1.1.ebuild 
b/sci-libs/netcdf/netcdf-4.4.1.1.ebuild
index b295062f6d9..645d3596db6 100644
--- a/sci-libs/netcdf/netcdf-4.4.1.1.ebuild
+++ b/sci-libs/netcdf/netcdf-4.4.1.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
@@ -6,7 +6,7 @@ EAPI=6
 inherit eutils
 
 DESCRIPTION="Scientific library and interface for array oriented data access"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="https://github.com/Unidata/netcdf-c/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="UCAR-Unidata"

diff --git a/sci-libs/netcdf/netcdf-4.6.1.ebuild 
b/sci-libs/netcdf/netcdf-4.6.1.ebuild
index 29e459757a7..027ac4abf35 100644
--- a/sci-libs/netcdf/netcdf-4.6.1.ebuild
+++ b/sci-libs/netcdf/netcdf-4.6.1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit eutils
 
 DESCRIPTION="Scientific library and interface for array oriented data access"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="https://github.com/Unidata/netcdf-c/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="UCAR-Unidata"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/sundials/

2018-05-16 Thread Aaron Bauman
commit: 66b50ac9755c37a3c7dc9f214c8e0577e37999ae
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 11:30:30 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:57:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66b50ac9

sci-libs/sundials: use HTTPS

 sci-libs/sundials/sundials-2.7.0.ebuild | 6 +++---
 sci-libs/sundials/sundials-3.0.0.ebuild | 4 ++--
 sci-libs/sundials/sundials-3.1.0.ebuild | 4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/sci-libs/sundials/sundials-2.7.0.ebuild 
b/sci-libs/sundials/sundials-2.7.0.ebuild
index 5eb5426e8a5..3b5df344e82 100644
--- a/sci-libs/sundials/sundials-2.7.0.ebuild
+++ b/sci-libs/sundials/sundials-2.7.0.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
@@ -9,8 +9,8 @@ FORTRAN_STANDARD=90
 inherit cmake-utils toolchain-funcs fortran-2 versionator
 
 DESCRIPTION="Suite of nonlinear solvers"
-HOMEPAGE="http://computation.llnl.gov/projects/sundials;
-SRC_URI="http://computation.llnl.gov/projects/sundials/download/${P}.tar.gz;
+HOMEPAGE="https://computation.llnl.gov/projects/sundials;
+SRC_URI="https://computation.llnl.gov/projects/sundials/download/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0/$(get_major_version)"

diff --git a/sci-libs/sundials/sundials-3.0.0.ebuild 
b/sci-libs/sundials/sundials-3.0.0.ebuild
index 35e90af469e..5be73141477 100644
--- a/sci-libs/sundials/sundials-3.0.0.ebuild
+++ b/sci-libs/sundials/sundials-3.0.0.ebuild
@@ -9,8 +9,8 @@ FORTRAN_STANDARD=90
 inherit cmake-utils toolchain-funcs fortran-2 versionator
 
 DESCRIPTION="Suite of nonlinear solvers"
-HOMEPAGE="http://computation.llnl.gov/projects/sundials;
-SRC_URI="http://computation.llnl.gov/projects/sundials/download/${P}.tar.gz;
+HOMEPAGE="https://computation.llnl.gov/projects/sundials;
+SRC_URI="https://computation.llnl.gov/projects/sundials/download/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0/$(get_major_version)"

diff --git a/sci-libs/sundials/sundials-3.1.0.ebuild 
b/sci-libs/sundials/sundials-3.1.0.ebuild
index 707322d2acc..6285504725e 100644
--- a/sci-libs/sundials/sundials-3.1.0.ebuild
+++ b/sci-libs/sundials/sundials-3.1.0.ebuild
@@ -9,8 +9,8 @@ FORTRAN_STANDARD=90
 inherit cmake-utils toolchain-funcs fortran-2 versionator
 
 DESCRIPTION="Suite of nonlinear solvers"
-HOMEPAGE="http://computation.llnl.gov/projects/sundials;
-SRC_URI="http://computation.llnl.gov/projects/sundials/download/${P}.tar.gz;
+HOMEPAGE="https://computation.llnl.gov/projects/sundials;
+SRC_URI="https://computation.llnl.gov/projects/sundials/download/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0/$(get_major_version)"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libsvm/

2018-05-16 Thread Aaron Bauman
commit: 35c94285f00dd311ad5131b2a7a9d82e85c7c14d
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 11:29:28 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:57:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35c94285

sci-libs/libsvm: use HTTPS

 sci-libs/libsvm/libsvm-3.21.ebuild | 6 +++---
 sci-libs/libsvm/libsvm-3.22.ebuild | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sci-libs/libsvm/libsvm-3.21.ebuild 
b/sci-libs/libsvm/libsvm-3.21.ebuild
index b36a2fbf321..9f2b74252fd 100644
--- a/sci-libs/libsvm/libsvm-3.21.ebuild
+++ b/sci-libs/libsvm/libsvm-3.21.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,8 +8,8 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 inherit flag-o-matic java-pkg-opt-2 python-r1 toolchain-funcs
 
 DESCRIPTION="Library for Support Vector Machines"
-HOMEPAGE="http://www.csie.ntu.edu.tw/~cjlin/libsvm/;
-SRC_URI="http://www.csie.ntu.edu.tw/~cjlin/libsvm/${P}.tar.gz;
+HOMEPAGE="https://www.csie.ntu.edu.tw/~cjlin/libsvm/;
+SRC_URI="https://www.csie.ntu.edu.tw/~cjlin/libsvm/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/sci-libs/libsvm/libsvm-3.22.ebuild 
b/sci-libs/libsvm/libsvm-3.22.ebuild
index 57d4bbb5185..25c71ee18fa 100644
--- a/sci-libs/libsvm/libsvm-3.22.ebuild
+++ b/sci-libs/libsvm/libsvm-3.22.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,8 +8,8 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 inherit flag-o-matic java-pkg-opt-2 python-r1 toolchain-funcs
 
 DESCRIPTION="Library for Support Vector Machines"
-HOMEPAGE="http://www.csie.ntu.edu.tw/~cjlin/libsvm/;
-SRC_URI="http://www.csie.ntu.edu.tw/~cjlin/libsvm/${P}.tar.gz;
+HOMEPAGE="https://www.csie.ntu.edu.tw/~cjlin/libsvm/;
+SRC_URI="https://www.csie.ntu.edu.tw/~cjlin/libsvm/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0/2"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/o2scl/

2018-05-16 Thread Aaron Bauman
commit: 4c27af839e3bf69035c37b362e20149ea74b6c91
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 11:28:23 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:57:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c27af83

sci-libs/o2scl: use HTTPS

 sci-libs/o2scl/o2scl-0.920.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/o2scl/o2scl-0.920.ebuild 
b/sci-libs/o2scl/o2scl-0.920.ebuild
index bf2fa4a38a8..88dc93218e4 100644
--- a/sci-libs/o2scl/o2scl-0.920.ebuild
+++ b/sci-libs/o2scl/o2scl-0.920.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 flag-o-matic
 
 DESCRIPTION="Object-oriented Scientific Computing Library"
-HOMEPAGE="http://web.utk.edu/~asteine1/o2scl;
+HOMEPAGE="https://web.utk.edu/~asteine1/o2scl/;
 
SRC_URI="https://github.com/awsteiner/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-3"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/netcdf-cxx/

2018-05-16 Thread Aaron Bauman
commit: b629aca278d5d40a7096c1ba052414f7598437d5
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 11:26:36 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b629aca2

sci-libs/netcdf-cxx: use HTTPS

 sci-libs/netcdf-cxx/netcdf-cxx-4.2-r300.ebuild | 4 ++--
 sci-libs/netcdf-cxx/netcdf-cxx-4.2.1-r1.ebuild | 4 ++--
 sci-libs/netcdf-cxx/netcdf-cxx-4.2.1.ebuild| 4 ++--
 sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild| 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/sci-libs/netcdf-cxx/netcdf-cxx-4.2-r300.ebuild 
b/sci-libs/netcdf-cxx/netcdf-cxx-4.2-r300.ebuild
index 5e1d1c252b1..79fd2e1b0aa 100644
--- a/sci-libs/netcdf-cxx/netcdf-cxx-4.2-r300.ebuild
+++ b/sci-libs/netcdf-cxx/netcdf-cxx-4.2-r300.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
@@ -6,7 +6,7 @@ EAPI=5
 inherit autotools-utils versionator
 
 DESCRIPTION="C++ library for netCDF"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="https://www.unidata.ucar.edu/downloads/netcdf/ftp/${P}.tar.gz;
 
 LICENSE="UCAR-Unidata"

diff --git a/sci-libs/netcdf-cxx/netcdf-cxx-4.2.1-r1.ebuild 
b/sci-libs/netcdf-cxx/netcdf-cxx-4.2.1-r1.ebuild
index 5d0ad2c8c24..92e54788bdc 100644
--- a/sci-libs/netcdf-cxx/netcdf-cxx-4.2.1-r1.ebuild
+++ b/sci-libs/netcdf-cxx/netcdf-cxx-4.2.1-r1.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
@@ -8,7 +8,7 @@ inherit eutils
 MYP=${PN}4-${PV}
 
 DESCRIPTION="C++ library for netCDF"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="https://github.com/Unidata/netcdf-cxx4/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="UCAR-Unidata"

diff --git a/sci-libs/netcdf-cxx/netcdf-cxx-4.2.1.ebuild 
b/sci-libs/netcdf-cxx/netcdf-cxx-4.2.1.ebuild
index 0cff763395d..b1bb22728e0 100644
--- a/sci-libs/netcdf-cxx/netcdf-cxx-4.2.1.ebuild
+++ b/sci-libs/netcdf-cxx/netcdf-cxx-4.2.1.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
@@ -8,7 +8,7 @@ inherit autotools-utils
 MYP=${PN}4-${PV}
 
 DESCRIPTION="C++ library for netCDF"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="https://github.com/Unidata/netcdf-cxx4/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="UCAR-Unidata"

diff --git a/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild 
b/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild
index 3b997cf9c65..43463f50c10 100644
--- a/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild
+++ b/sci-libs/netcdf-cxx/netcdf-cxx-4.3.0.ebuild
@@ -8,7 +8,7 @@ inherit eutils
 MYP=${PN}4-${PV}
 
 DESCRIPTION="C++ library for netCDF"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="https://github.com/Unidata/netcdf-cxx4/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="UCAR-Unidata"



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/tbb/

2018-05-16 Thread Aaron Bauman
commit: 312e027294ffd8ecb94f876d635316700a39c3b7
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:14:00 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312e0272

dev-cpp/tbb: use HTTPS

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

 dev-cpp/tbb/tbb-2017.20161128.ebuild | 2 +-
 dev-cpp/tbb/tbb-2017.20170226.ebuild | 2 +-
 dev-cpp/tbb/tbb-2018.20180312.ebuild | 2 +-
 dev-cpp/tbb/tbb-4.3.20150611.ebuild  | 4 ++--
 dev-cpp/tbb/tbb-4.4.20160803.ebuild  | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-cpp/tbb/tbb-2017.20161128.ebuild 
b/dev-cpp/tbb/tbb-2017.20161128.ebuild
index 42598e74ad8..466e1e756f7 100644
--- a/dev-cpp/tbb/tbb-2017.20161128.ebuild
+++ b/dev-cpp/tbb/tbb-2017.20161128.ebuild
@@ -10,7 +10,7 @@ PV2="$(get_version_component_range 2)"
 MYP="${PN}${PV1}_${PV2}oss"
 
 DESCRIPTION="High level abstract threading library"
-HOMEPAGE="http://www.threadingbuildingblocks.org/;
+HOMEPAGE="https://www.threadingbuildingblocks.org;
 
SRC_URI="http://threadingbuildingblocks.org/sites/default/files/software_releases/source/${MYP}_src.tgz;
 LICENSE="Apache-2.0"
 SLOT="0"

diff --git a/dev-cpp/tbb/tbb-2017.20170226.ebuild 
b/dev-cpp/tbb/tbb-2017.20170226.ebuild
index c2780f710a8..a265095c4bb 100644
--- a/dev-cpp/tbb/tbb-2017.20170226.ebuild
+++ b/dev-cpp/tbb/tbb-2017.20170226.ebuild
@@ -10,7 +10,7 @@ PV2=5
 MY_PV="${PV1}_U${PV2}"
 
 DESCRIPTION="High level abstract threading library"
-HOMEPAGE="http://www.threadingbuildingblocks.org/;
+HOMEPAGE="https://www.threadingbuildingblocks.org;
 SRC_URI="https://github.com/01org/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="0"

diff --git a/dev-cpp/tbb/tbb-2018.20180312.ebuild 
b/dev-cpp/tbb/tbb-2018.20180312.ebuild
index 3d6b1e11f0b..7879da6125e 100644
--- a/dev-cpp/tbb/tbb-2018.20180312.ebuild
+++ b/dev-cpp/tbb/tbb-2018.20180312.ebuild
@@ -10,7 +10,7 @@ PV2=3
 MY_PV="${PV1}_U${PV2}"
 
 DESCRIPTION="High level abstract threading library"
-HOMEPAGE="http://www.threadingbuildingblocks.org/;
+HOMEPAGE="https://www.threadingbuildingblocks.org;
 SRC_URI="https://github.com/01org/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="0"

diff --git a/dev-cpp/tbb/tbb-4.3.20150611.ebuild 
b/dev-cpp/tbb/tbb-4.3.20150611.ebuild
index 6e59a338c11..d5efb48803d 100644
--- a/dev-cpp/tbb/tbb-4.3.20150611.ebuild
+++ b/dev-cpp/tbb/tbb-4.3.20150611.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
@@ -11,7 +11,7 @@ PV3="$(get_version_component_range 3)"
 MYP="${PN}${PV1}${PV2}_${PV3}oss"
 
 DESCRIPTION="High level abstract threading library"
-HOMEPAGE="http://www.threadingbuildingblocks.org/;
+HOMEPAGE="https://www.threadingbuildingblocks.org;
 
SRC_URI="http://threadingbuildingblocks.org/sites/default/files/software_releases/source/${MYP}_src.tgz;
 LICENSE="GPL-2-with-exceptions"
 SLOT="0"

diff --git a/dev-cpp/tbb/tbb-4.4.20160803.ebuild 
b/dev-cpp/tbb/tbb-4.4.20160803.ebuild
index fb62b61be4a..f6cd3e24a60 100644
--- a/dev-cpp/tbb/tbb-4.4.20160803.ebuild
+++ b/dev-cpp/tbb/tbb-4.4.20160803.ebuild
@@ -11,7 +11,7 @@ PV3="$(get_version_component_range 3)"
 MYP="${PN}${PV1}${PV2}_${PV3}oss"
 
 DESCRIPTION="High level abstract threading library"
-HOMEPAGE="http://www.threadingbuildingblocks.org/;
+HOMEPAGE="https://www.threadingbuildingblocks.org;
 
SRC_URI="http://threadingbuildingblocks.org/sites/default/files/software_releases/source/${MYP}_src.tgz;
 LICENSE="GPL-2-with-exceptions"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/mdanalysis/

2018-05-16 Thread Aaron Bauman
commit: a7376d65f0c6667ea04e3a8539a3358c518ac25a
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:25:59 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7376d65

sci-chemistry/mdanalysis: use HTTPS

 sci-chemistry/mdanalysis/mdanalysis-0.7.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-chemistry/mdanalysis/mdanalysis-0.7.7.ebuild 
b/sci-chemistry/mdanalysis/mdanalysis-0.7.7.ebuild
index 763061028d4..adb280c4b63 100644
--- a/sci-chemistry/mdanalysis/mdanalysis-0.7.7.ebuild
+++ b/sci-chemistry/mdanalysis/mdanalysis-0.7.7.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
@@ -11,7 +11,7 @@ MY_PN="MDAnalysis"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="A python library to analyze and manipulate molecular dynamics 
trajectories"
-HOMEPAGE="http://www.mdanalysis.org/;
+HOMEPAGE="https://www.mdanalysis.org;
 SRC_URI="https://mdanalysis.googlecode.com/files/${MY_P}.tar.gz;
 
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/cairo-ocaml/

2018-05-16 Thread Aaron Bauman
commit: 8373c4b5d79aa5e67bc30df75bb7e5eb09a3a5e4
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:16:15 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8373c4b5

dev-ml/cairo-ocaml: use HTTPS

 dev-ml/cairo-ocaml/cairo-ocaml-1.2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/cairo-ocaml/cairo-ocaml-1.2.0.ebuild 
b/dev-ml/cairo-ocaml/cairo-ocaml-1.2.0.ebuild
index 159e587f606..5a13b6957e1 100644
--- a/dev-ml/cairo-ocaml/cairo-ocaml-1.2.0.ebuild
+++ b/dev-ml/cairo-ocaml/cairo-ocaml-1.2.0.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
@@ -6,7 +6,7 @@ EAPI=5
 inherit eutils findlib autotools
 
 DESCRIPTION="Ocaml bindings for the cairo vector graphics library"
-HOMEPAGE="http://www.cairographics.org/cairo-ocaml/;
+HOMEPAGE="https://www.cairographics.org/cairo-ocaml/;
 SRC_URI="https://cgit.freedesktop.org/cairo-ocaml/snapshot/${P}.tar.bz2;
 
 LICENSE="LGPL-2.1"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/netcdf-fortran/

2018-05-16 Thread Aaron Bauman
commit: 3cc0c41105556ea7d546f782670fc31c6162e27a
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 11:27:54 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc0c411

sci-libs/netcdf-fortran: use HTTPS

 sci-libs/netcdf-fortran/netcdf-fortran-4.2.ebuild   | 4 ++--
 sci-libs/netcdf-fortran/netcdf-fortran-4.4.2.ebuild | 4 ++--
 sci-libs/netcdf-fortran/netcdf-fortran-4.4.3.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sci-libs/netcdf-fortran/netcdf-fortran-4.2.ebuild 
b/sci-libs/netcdf-fortran/netcdf-fortran-4.2.ebuild
index 52eecd25d43..a722ccdc91f 100644
--- a/sci-libs/netcdf-fortran/netcdf-fortran-4.2.ebuild
+++ b/sci-libs/netcdf-fortran/netcdf-fortran-4.2.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
@@ -9,7 +9,7 @@ AUTOTOOLS_IN_SOURCE_BUILD=1
 inherit autotools-utils fortran-2
 
 DESCRIPTION="Scientific library and interface for array oriented data access"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="ftp://ftp.unidata.ucar.edu/pub/netcdf/${P}.tar.gz;
 
 LICENSE="UCAR-Unidata"

diff --git a/sci-libs/netcdf-fortran/netcdf-fortran-4.4.2.ebuild 
b/sci-libs/netcdf-fortran/netcdf-fortran-4.4.2.ebuild
index 31db078a73a..a7ba9edabdf 100644
--- a/sci-libs/netcdf-fortran/netcdf-fortran-4.4.2.ebuild
+++ b/sci-libs/netcdf-fortran/netcdf-fortran-4.4.2.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=5
@@ -9,7 +9,7 @@ AUTOTOOLS_IN_SOURCE_BUILD=1
 inherit autotools-utils fortran-2
 
 DESCRIPTION="Scientific library and interface for array oriented data access"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="https://github.com/Unidata/netcdf-fortran/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="UCAR-Unidata"

diff --git a/sci-libs/netcdf-fortran/netcdf-fortran-4.4.3.ebuild 
b/sci-libs/netcdf-fortran/netcdf-fortran-4.4.3.ebuild
index 7539ce517ae..0feb7f5eb97 100644
--- a/sci-libs/netcdf-fortran/netcdf-fortran-4.4.3.ebuild
+++ b/sci-libs/netcdf-fortran/netcdf-fortran-4.4.3.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
@@ -8,7 +8,7 @@ FORTRAN_STANDARD="77 90"
 inherit autotools eutils fortran-2
 
 DESCRIPTION="Scientific library and interface for array oriented data access"
-HOMEPAGE="http://www.unidata.ucar.edu/software/netcdf/;
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/;
 SRC_URI="https://github.com/Unidata/netcdf-fortran/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="UCAR-Unidata"



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

2018-05-16 Thread Aaron Bauman
commit: 0157347210449607de301c77484419b7e81777d2
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:25:06 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01573472

dev-python/pycuda: use HTTPS

 dev-python/pycuda/pycuda-2012.1.ebuild   | 4 ++--
 dev-python/pycuda/pycuda-2013.1.1.ebuild | 4 ++--
 dev-python/pycuda/pycuda-2014.1.ebuild   | 4 ++--
 dev-python/pycuda/pycuda-2016.1.2.ebuild | 4 ++--
 dev-python/pycuda/pycuda-2017.1.ebuild   | 4 ++--
 dev-python/pycuda/pycuda-.ebuild | 6 +++---
 6 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/dev-python/pycuda/pycuda-2012.1.ebuild 
b/dev-python/pycuda/pycuda-2012.1.ebuild
index 30d96f63d3f..a2b3ca5a881 100644
--- a/dev-python/pycuda/pycuda-2012.1.ebuild
+++ b/dev-python/pycuda/pycuda-2012.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
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit cuda distutils-r1 multilib
 
 DESCRIPTION="Python wrapper for NVIDIA CUDA"
-HOMEPAGE="http://mathema.tician.de/software/pycuda/ 
https://pypi.org/project/pycuda/;
+HOMEPAGE="https://mathema.tician.de/software/pycuda/ 
https://pypi.org/project/pycuda/;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"

diff --git a/dev-python/pycuda/pycuda-2013.1.1.ebuild 
b/dev-python/pycuda/pycuda-2013.1.1.ebuild
index ba7813d1236..64034046183 100644
--- a/dev-python/pycuda/pycuda-2013.1.1.ebuild
+++ b/dev-python/pycuda/pycuda-2013.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
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit cuda distutils-r1 multilib
 
 DESCRIPTION="Python wrapper for NVIDIA CUDA"
-HOMEPAGE="http://mathema.tician.de/software/pycuda/ 
https://pypi.org/project/pycuda/;
+HOMEPAGE="https://mathema.tician.de/software/pycuda/ 
https://pypi.org/project/pycuda/;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"

diff --git a/dev-python/pycuda/pycuda-2014.1.ebuild 
b/dev-python/pycuda/pycuda-2014.1.ebuild
index 01a938b9731..e7553c70a17 100644
--- a/dev-python/pycuda/pycuda-2014.1.ebuild
+++ b/dev-python/pycuda/pycuda-2014.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
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_4 )
 inherit cuda distutils-r1 multilib
 
 DESCRIPTION="Python wrapper for NVIDIA CUDA"
-HOMEPAGE="http://mathema.tician.de/software/pycuda/ 
https://pypi.org/project/pycuda/;
+HOMEPAGE="https://mathema.tician.de/software/pycuda/ 
https://pypi.org/project/pycuda/;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"

diff --git a/dev-python/pycuda/pycuda-2016.1.2.ebuild 
b/dev-python/pycuda/pycuda-2016.1.2.ebuild
index cd62cabbb5c..07cc2b626f8 100644
--- a/dev-python/pycuda/pycuda-2016.1.2.ebuild
+++ b/dev-python/pycuda/pycuda-2016.1.2.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
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5} )
 inherit cuda distutils-r1
 
 DESCRIPTION="Python wrapper for NVIDIA CUDA"
-HOMEPAGE="http://mathema.tician.de/software/pycuda/ 
https://pypi.org/project/pycuda/;
+HOMEPAGE="https://mathema.tician.de/software/pycuda/ 
https://pypi.org/project/pycuda/;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"

diff --git a/dev-python/pycuda/pycuda-2017.1.ebuild 
b/dev-python/pycuda/pycuda-2017.1.ebuild
index 8e1816be7cb..5ff90c3a140 100644
--- a/dev-python/pycuda/pycuda-2017.1.ebuild
+++ b/dev-python/pycuda/pycuda-2017.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 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 inherit cuda distutils-r1
 
 DESCRIPTION="Python wrapper for NVIDIA CUDA"
-HOMEPAGE="http://mathema.tician.de/software/pycuda;
+HOMEPAGE="https://mathema.tician.de/software/pycuda/ 
https://pypi.org/project/pycuda/;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"

diff --git a/dev-python/pycuda/pycuda-.ebuild 
b/dev-python/pycuda/pycuda-.ebuild
index 69e43e00038..eb4f5e80637 100644
--- a/dev-python/pycuda/pycuda-.ebuild
+++ b/dev-python/pycuda/pycuda-.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
@@ -8,9 +8,9 @@ PYTHON_COMPAT=( 

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

2018-05-16 Thread Aaron Bauman
commit: 5d010b7bdd081f518e184c07cd81ace6c664a130
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:20:06 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d010b7b

dev-python/bokeh: use HTTPS

 dev-python/bokeh/bokeh-0.11.1.ebuild | 6 --
 dev-python/bokeh/bokeh-0.12.4.ebuild | 6 --
 dev-python/bokeh/bokeh-0.12.6.ebuild | 6 --
 3 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/dev-python/bokeh/bokeh-0.11.1.ebuild 
b/dev-python/bokeh/bokeh-0.11.1.ebuild
index bb7d27a052e..3a98665a729 100644
--- a/dev-python/bokeh/bokeh-0.11.1.ebuild
+++ b/dev-python/bokeh/bokeh-0.11.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,9 @@ PYTHON_COMPAT=( python2_7 python3_{4,5} )
 inherit distutils-r1
 
 DESCRIPTION="Statistical and novel interactive HTML plots for Python"
-HOMEPAGE="http://bokeh.pydata.org/ https://github.com/bokeh/bokeh 
http://pypi.org/project/bokeh/;
+HOMEPAGE="https://bokeh.pydata.org/en/latest/
+   https://github.com/bokeh/bokeh
+   https://pypi.org/project/bokeh/;
 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"

diff --git a/dev-python/bokeh/bokeh-0.12.4.ebuild 
b/dev-python/bokeh/bokeh-0.12.4.ebuild
index 92224a4b240..13a916ab9c6 100644
--- a/dev-python/bokeh/bokeh-0.12.4.ebuild
+++ b/dev-python/bokeh/bokeh-0.12.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
@@ -8,7 +8,9 @@ PYTHON_COMPAT=( python2_7 python3_{4,5} )
 inherit distutils-r1
 
 DESCRIPTION="Statistical and interactive HTML plots for Python"
-HOMEPAGE="http://bokeh.pydata.org/;
+HOMEPAGE="https://bokeh.pydata.org/en/latest/
+   https://github.com/bokeh/bokeh
+   https://pypi.org/project/bokeh/;
 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"

diff --git a/dev-python/bokeh/bokeh-0.12.6.ebuild 
b/dev-python/bokeh/bokeh-0.12.6.ebuild
index 9d2c39b2d3d..4e2f6972548 100644
--- a/dev-python/bokeh/bokeh-0.12.6.ebuild
+++ b/dev-python/bokeh/bokeh-0.12.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,9 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 inherit distutils-r1
 
 DESCRIPTION="Statistical and interactive HTML plots for Python"
-HOMEPAGE="http://bokeh.pydata.org/;
+HOMEPAGE="https://bokeh.pydata.org/en/latest/
+   https://github.com/bokeh/bokeh
+   https://pypi.org/project/bokeh/;
 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/cdf/

2018-05-16 Thread Aaron Bauman
commit: 3fd827a451b6514b559be2d1ad15766e7f59a9e5
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:27:56 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fd827a4

sci-libs/cdf: use HTTPS

 sci-libs/cdf/cdf-3.4.1.ebuild   | 4 ++--
 sci-libs/cdf/cdf-3.5.0.2.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-libs/cdf/cdf-3.4.1.ebuild b/sci-libs/cdf/cdf-3.4.1.ebuild
index 55a3ace7b64..fcc6e3d4c3d 100644
--- a/sci-libs/cdf/cdf-3.4.1.ebuild
+++ b/sci-libs/cdf/cdf-3.4.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=5
@@ -9,7 +9,7 @@ MY_DP="${PN}$(get_version_component_range 
1)$(get_version_component_range 2)"
 MY_P="${MY_DP}_$(get_version_component_range 3)"
 
 DESCRIPTION="Common Data Format I/O library for multi-dimensional data sets"
-HOMEPAGE="http://cdf.gsfc.nasa.gov/;
+HOMEPAGE="https://cdf.gsfc.nasa.gov;
 SRC_BASE="ftp://cdaweb.gsfc.nasa.gov/pub/${PN}/dist/${MY_P}/unix;
 
 SRC_URI="${SRC_BASE}/${MY_P}-dist-${PN}.tar.gz

diff --git a/sci-libs/cdf/cdf-3.5.0.2.ebuild b/sci-libs/cdf/cdf-3.5.0.2.ebuild
index 9956ff0e3fa..2a56dc164bf 100644
--- a/sci-libs/cdf/cdf-3.5.0.2.ebuild
+++ b/sci-libs/cdf/cdf-3.5.0.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=5
@@ -9,7 +9,7 @@ MY_DP="${PN}$(get_version_component_range 
1)$(get_version_component_range 2)"
 MY_P="${MY_DP}_$(get_version_component_range 3)"
 
 DESCRIPTION="Common Data Format I/O library for multi-dimensional data sets"
-HOMEPAGE="http://cdf.gsfc.nasa.gov/;
+HOMEPAGE="https://cdf.gsfc.nasa.gov;
 SRC_BASE="http://cdaweb.gsfc.nasa.gov/pub/software/${PN}/dist/${MY_P}/unix/;
 
 SRC_URI="${SRC_BASE}/${MY_P}-dist-${PN}.tar.gz



[gentoo-commits] repo/gentoo:master commit in: sci-libs/jama/

2018-05-16 Thread Aaron Bauman
commit: 77f632d807fb5ea439a4f18892e9a77e4c083662
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:28:49 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77f632d8

sci-libs/jama: use HTTPS

 sci-libs/jama/jama-1.2.5.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-libs/jama/jama-1.2.5.ebuild b/sci-libs/jama/jama-1.2.5.ebuild
index a9db9225bd5..7d96ea39577 100644
--- a/sci-libs/jama/jama-1.2.5.ebuild
+++ b/sci-libs/jama/jama-1.2.5.ebuild
@@ -9,9 +9,9 @@ MYP="${PN}$(replace_all_version_separators '')"
 DOCPV=102
 
 DESCRIPTION="Java-like matrix C++ templates"
-HOMEPAGE="http://math.nist.gov/tnt/;
-SRC_URI="http://math.nist.gov/tnt/${MYP}.zip
-   doc? ( http://math.nist.gov/tnt/${PN}${DOCPV}doc.zip )"
+HOMEPAGE="https://math.nist.gov/tnt/;
+SRC_URI="https://math.nist.gov/tnt/${MYP}.zip
+   doc? ( https://math.nist.gov/tnt/${PN}${DOCPV}doc.zip )"
 
 LICENSE="public-domain"
 SLOT="0"



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

2018-05-16 Thread Aaron Bauman
commit: 8377d05b63760178a2b47dfe3799d3a5b54ade49
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:17:16 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8377d05b

dev-perl/Lab-Measurement: use HTTPS

 dev-perl/Lab-Measurement/Lab-Measurement-3.631.ebuild | 2 +-
 dev-perl/Lab-Measurement/Lab-Measurement-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Lab-Measurement/Lab-Measurement-3.631.ebuild 
b/dev-perl/Lab-Measurement/Lab-Measurement-3.631.ebuild
index ae26b9fe656..cd62a7560e4 100644
--- a/dev-perl/Lab-Measurement/Lab-Measurement-3.631.ebuild
+++ b/dev-perl/Lab-Measurement/Lab-Measurement-3.631.ebuild
@@ -18,7 +18,7 @@ else
 fi
 
 DESCRIPTION="Measurement control and automation with Perl"
-HOMEPAGE="http://www.labmeasurement.de/;
+HOMEPAGE="https://www.labmeasurement.de;
 
 SLOT="0"
 IUSE="test"

diff --git a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild 
b/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
index ae26b9fe656..cd62a7560e4 100644
--- a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
+++ b/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
@@ -18,7 +18,7 @@ else
 fi
 
 DESCRIPTION="Measurement control and automation with Perl"
-HOMEPAGE="http://www.labmeasurement.de/;
+HOMEPAGE="https://www.labmeasurement.de;
 
 SLOT="0"
 IUSE="test"



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

2018-05-16 Thread Aaron Bauman
commit: f12d921c4fcc1aa564edfe268d1beae6baf88f4f
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:15:40 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f12d921c

dev-libs/openspecfun: use HTTPS

 dev-libs/openspecfun/openspecfun-0.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/openspecfun/openspecfun-0.5.1.ebuild 
b/dev-libs/openspecfun/openspecfun-0.5.1.ebuild
index 5cad71a2cd9..40545b5459d 100644
--- a/dev-libs/openspecfun/openspecfun-0.5.1.ebuild
+++ b/dev-libs/openspecfun/openspecfun-0.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
@@ -6,7 +6,7 @@ EAPI=6
 inherit fortran-2 multilib
 
 DESCRIPTION="A collection of special mathematical functions"
-HOMEPAGE="http://julialang.org/;
+HOMEPAGE="https://julialang.org;
 SRC_URI="https://github.com/JuliaLang/openspecfun/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT public-domain"



[gentoo-commits] repo/gentoo:master commit in: sci-visualization/mayavi/

2018-05-16 Thread Aaron Bauman
commit: 7f12da0722c07b02d3be85203e402f28bb43a772
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 11:33:19 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:57:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f12da07

sci-visualization/mayavi: use HTTPS

 sci-visualization/mayavi/mayavi-4.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-visualization/mayavi/mayavi-4.5.0.ebuild 
b/sci-visualization/mayavi/mayavi-4.5.0.ebuild
index 30e24063df3..fc00ab86acb 100644
--- a/sci-visualization/mayavi/mayavi-4.5.0.ebuild
+++ b/sci-visualization/mayavi/mayavi-4.5.0.ebuild
@@ -10,7 +10,7 @@ inherit distutils-r1 virtualx
 DESCRIPTION="Enthought Tool Suite: Scientific data 3-dimensional visualizer"
 HOMEPAGE="
http://code.enthought.com/projects/mayavi/
-   http://pypi.org/project/mayavi/;
+   https://pypi.org/project/mayavi/;
 SRC_URI="https://github.com/enthought/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="BSD"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/nfft/

2018-05-16 Thread Aaron Bauman
commit: 05093d5bd80517926ad0f63c276f2fcdb9747e45
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:29:24 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05093d5b

sci-libs/nfft: use HTTPS

 sci-libs/nfft/nfft-3.3.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/nfft/nfft-3.3.2.ebuild b/sci-libs/nfft/nfft-3.3.2.ebuild
index 8c5f1f54b67..875606882aa 100644
--- a/sci-libs/nfft/nfft-3.3.2.ebuild
+++ b/sci-libs/nfft/nfft-3.3.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 toolchain-funcs
 
 DESCRIPTION="library for nonequispaced discrete Fourier transformations"
-HOMEPAGE="http://www-user.tu-chemnitz.de/~potts/nfft;
+HOMEPAGE="https://www-user.tu-chemnitz.de/~potts/nfft/;
 SRC_URI="https://github.com/NFFT/nfft/releases/download/${PV}/${P}.tar.gz;
 
 LICENSE="GPL-2"



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

2018-05-16 Thread Aaron Bauman
commit: c9b930544d76343a2b160124fe493f612c484844
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:14:58 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9b93054

dev-lang/cfortran: use HTTPS

 dev-lang/cfortran/cfortran-4.4-r2.ebuild | 2 +-
 dev-lang/cfortran/cfortran-4.4-r3.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-lang/cfortran/cfortran-4.4-r2.ebuild 
b/dev-lang/cfortran/cfortran-4.4-r2.ebuild
index f63f8906b03..6b13ce65940 100644
--- a/dev-lang/cfortran/cfortran-4.4-r2.ebuild
+++ b/dev-lang/cfortran/cfortran-4.4-r2.ebuild
@@ -10,7 +10,7 @@ DEB_PR="14"
 DESCRIPTION="Header file allowing to call Fortran routines from C and C++"
 SRC_URI="mirror://debian/pool/main/c/${PN}/${PN}_${PV}.orig.tar.gz
mirror://debian/pool/main/c/${PN}/${PN}_${PV}-${DEB_PR}.diff.gz"
-HOMEPAGE="http://www-zeus.desy.de/~burow/cfortran/;
+HOMEPAGE="https://www-zeus.desy.de/~burow/cfortran/;
 KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux 
~x86-macos"
 LICENSE="LGPL-2"
 IUSE="examples"

diff --git a/dev-lang/cfortran/cfortran-4.4-r3.ebuild 
b/dev-lang/cfortran/cfortran-4.4-r3.ebuild
index 85738d91954..18edf8e2949 100644
--- a/dev-lang/cfortran/cfortran-4.4-r3.ebuild
+++ b/dev-lang/cfortran/cfortran-4.4-r3.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
@@ -8,7 +8,7 @@ inherit eutils
 DEB_PR="14"
 
 DESCRIPTION="Header file allowing to call Fortran routines from C and C++"
-HOMEPAGE="http://www-zeus.desy.de/~burow/cfortran/;
+HOMEPAGE="https://www-zeus.desy.de/~burow/cfortran/;
 SRC_URI="
mirror://debian/pool/main/c/${PN}/${PN}_${PV}.orig.tar.gz
mirror://debian/pool/main/c/${PN}/${PN}_${PV}-${DEB_PR}.diff.gz"



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

2018-05-16 Thread Aaron Bauman
commit: 336a2b7836bfc1a8dc5ee8f47f62514812bdca2c
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Tue May 15 10:21:10 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:56:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=336a2b78

dev-python/netcdf4-python: use HTTPS

 dev-python/netcdf4-python/netcdf4-python-1.2.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/netcdf4-python/netcdf4-python-1.2.2.ebuild 
b/dev-python/netcdf4-python/netcdf4-python-1.2.2.ebuild
index b952760211b..38cd8b451eb 100644
--- a/dev-python/netcdf4-python/netcdf4-python-1.2.2.ebuild
+++ b/dev-python/netcdf4-python/netcdf4-python-1.2.2.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
@@ -11,7 +11,7 @@ MY_PN="netCDF4"
 MY_P="${MY_PN}-${PV}"
 
 DESCRIPTION="Python/numpy interface to the netCDF C library"
-HOMEPAGE="http://unidata.github.io/netcdf4-python;
+HOMEPAGE="https://unidata.github.io/netcdf4-python/;
 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 SLOT="0"



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

2018-05-16 Thread Zac Medico
commit: db097ff0ef0df7f6ad6dd51498615f0cae93f309
Author: Zac Medico  gentoo  org>
AuthorDate: Wed May 16 21:37:17 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed May 16 21:37:54 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=db097ff0

Updates for portage-2.3.37 release

 RELEASE-NOTES | 9 +
 setup.py  | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 594e5a705..4da398380 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,15 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+portage-2.3.37
+==
+* repos.conf: Use openpgp-keys-* as key provider for gemato
+* Bug Fixes:
+- Bug 654390 use asyncio's default event loop
+- Bug 655414 fix has/best_version for cross-prefix portageq
+- Bug 655860 fix ROOT overrides for has/best_version
+
+
 portage-2.3.36
 ==
 * Bug Fixes:

diff --git a/setup.py b/setup.py
index 25bb30006..94248cc61 100755
--- a/setup.py
+++ b/setup.py
@@ -662,7 +662,7 @@ class build_ext(_build_ext):
 
 setup(
name = 'portage',
-   version = '2.3.36',
+   version = '2.3.37',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



[gentoo-commits] proj/portage: New tag: portage-2.3.37

2018-05-16 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Wed May 16 22:52:34 2018 +

New tag: portage-2.3.37




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

2018-05-16 Thread Zac Medico
commit: 7342b2e991aeafe00d0a5e0275342fe134944997
Author: Zac Medico  gentoo  org>
AuthorDate: Wed May 16 22:30:03 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed May 16 22:51:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7342b2e9

sys-apps/portage: version bump to 2.3.37

  #654390 - use asyncio's default event loop
  #655414 - fix has/best_version for cross-prefix portageq
  #655860 - fix ROOT overrides for has/best_version

Closes: https://bugs.gentoo.org/655860
Package-Manager: Portage-2.3.37, Repoman-2.3.9

 sys-apps/portage/Manifest  |   1 +
 sys-apps/portage/portage-2.3.37.ebuild | 284 +
 2 files changed, 285 insertions(+)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index 3477ac144c6..31f8bb8a26c 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -3,4 +3,5 @@ DIST portage-2.3.19.tar.bz2 954921 BLAKE2B 
e1bb3606ff2c5ba7b2123c61469b99f4d5d89
 DIST portage-2.3.24.tar.bz2 959266 BLAKE2B 
bc15f10599c694ad29f5a55264e929d0a04a9c5211e9cafd4f1a35de1d77e655d99df0ceb352fd431a8cefd40c733064422d8f41099edf7263aa36ef8cfd2ba8
 SHA512 
fca250d4afc1819a27b67daff770132ed4e88fb067038992a6b3f8aac63604536366ea628dd30c24f93db19ae55e88da372598ccc489bcf445038dfe860ce0ec
 DIST portage-2.3.31.tar.bz2 986684 BLAKE2B 
dc2a6e7da211da98320b872b26af46138791e2600d261fbff21823576804ea04dc77bc69c5f64d94a9bc3d0ec9cba0630b9093c12c426ae0561471092c837080
 SHA512 
7cca6aa6e8e6ce7ee3902686b437ea09c398630f46926d568a35f94b95be3c6ecc53a4ab6ee99d52c04755d5144900cc3aa84be24a49533518f8c50a9301ffb8
 DIST portage-2.3.36.tar.bz2 992242 BLAKE2B 
44b414495ab156214bfd27d10894a6b1ae020f503639f41d408670b440b5e389bd56c801138907992982db8964aaa2664e9f7f0aa99647d4eab1aa81167157ba
 SHA512 
765bb60fce2b6b84c5fde7b19c5abeeed0ba8036ea311c7f57dfcb2ed11395cafe7bdd07a2b46adce95792f4bf9f5401643e88780c90e792a8a4e4d1f2886167
+DIST portage-2.3.37.tar.bz2 993987 BLAKE2B 
aa24665db663df007bc8387d2d6086a2bad249a08c037a52c9dbd60f29221242745a0e444e53b968c889631a67ab05269c0d8a2f855d8ef34112cedfad9a1172
 SHA512 
59506ec32dec5b25c95c4dd60376cccd5b0f148199abaec9bcf28cbab58bce2d6e53798af4eabab27f1d2b32972470044702581f4fefefcd5748640d8f631d83
 DIST portage-2.3.8.tar.bz2 938062 BLAKE2B 
3f7bedf6268131a3b3539d53c8a7bb069b533b3a78e5eec521b6201439c8ee5e66996e798fe295561d0a94bfcd32adf414d4f8b5e7a93035cea09749406e64a3
 SHA512 
4b4b2de20323799b9b0f7a8812f939aa9a96d2744a0f65ad5287ba49744c491b55169cdb21f2885317a6a7c960d2070775ffd798f247b44eebc677c33c271eb8

diff --git a/sys-apps/portage/portage-2.3.37.ebuild 
b/sys-apps/portage/portage-2.3.37.ebuild
new file mode 100644
index 000..677674ee4de
--- /dev/null
+++ b/sys-apps/portage/portage-2.3.37.ebuild
@@ -0,0 +1,284 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=(
+   pypy
+   python3_4 python3_5 python3_6
+   python2_7
+)
+PYTHON_REQ_USE='bzip2(+),threads(+)'
+
+inherit distutils-r1 systemd
+
+DESCRIPTION="Portage is the package management and distribution system for 
Gentoo"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+SLOT="0"
+IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
+
+DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') )
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   >=sys-apps/sed-4.0.5 sys-devel/patch
+   doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 )
+   epydoc? ( >=dev-python/epydoc-2.0[$(python_gen_usedep 'python2*')] )"
+# Require sandbox-2.2 for bug #288863.
+# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's
+# quite slow, so it's not considered in the dependencies as an alternative to
+# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so
+# for now, don't pull in xattr deps for other kernels.
+# For whirlpool hash, require python[ssl] (bug #425046).
+# For compgen, require bash[readline] (bug #445576).
+# app-portage/gemato goes without PYTHON_USEDEP since we're calling
+# the executable.
+RDEPEND="
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   !build? (
+   >=sys-apps/sed-4.0.5
+   app-shells/bash:0[readline]
+   >=app-admin/eselect-1.2
+   $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' \
+   python{2_7,3_4,3_5} pypy)
+   rsync-verify? (
+   >=app-portage/gemato-12.1
+   app-crypt/openpgp-keys-gentoo-release
+   >=app-crypt/gnupg-2.2.4-r2[ssl(-)]
+   )
+   )
+   elibc_FreeBSD? ( sys-freebsd/freebsd-bin )
+   elibc_glibc? ( >=sys-apps/sandbox-2.2 )
+   elibc_musl? ( >=sys-apps/sandbox-2.2 )
+   elibc_uclibc? ( 

[gentoo-commits] repo/gentoo:master commit in: dev-util/android-sdk-update-manager/

2018-05-16 Thread Aaron Bauman
commit: 6eb25167cd9101dfe234bc3d71c898b923c7478c
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed May 16 14:24:57 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:50:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eb25167

dev-util/android-sdk-update-manager: use HTTPS

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

 .../android-sdk-update-manager-21.1.ebuild  | 6 +++---
 .../android-sdk-update-manager/android-sdk-update-manager-21.ebuild | 6 +++---
 .../android-sdk-update-manager-22.0.1-r1.ebuild | 6 +++---
 .../android-sdk-update-manager-22.0.1.ebuild| 6 +++---
 .../android-sdk-update-manager-22.0.4.ebuild| 6 +++---
 .../android-sdk-update-manager-22.0.5-r1.ebuild | 6 +++---
 .../android-sdk-update-manager-22.0.5.ebuild| 6 +++---
 .../android-sdk-update-manager-22.2.1.ebuild| 6 +++---
 .../android-sdk-update-manager-22.3.ebuild  | 6 +++---
 .../android-sdk-update-manager-22.6.1.ebuild| 6 +++---
 .../android-sdk-update-manager-22.6.ebuild  | 6 +++---
 .../android-sdk-update-manager/android-sdk-update-manager-22.ebuild | 6 +++---
 .../android-sdk-update-manager-23-r1.ebuild | 6 +++---
 .../android-sdk-update-manager/android-sdk-update-manager-23.ebuild | 6 +++---
 .../android-sdk-update-manager-24.4.1.ebuild| 6 +++---
 15 files changed, 45 insertions(+), 45 deletions(-)

diff --git 
a/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.1.ebuild 
b/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.1.ebuild
index 5f00b9850c8..7403186e3da 100644
--- a/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.1.ebuild
+++ b/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.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
@@ -8,7 +8,7 @@ inherit eutils user
 MY_P="android-sdk_r${PV}-linux"
 
 DESCRIPTION="Open Handset Alliance's Android SDK"
-HOMEPAGE="http://developer.android.com;
+HOMEPAGE="https://developer.android.com;
 SRC_URI="https://dl.google.com/android/${MY_P}.tgz;
 IUSE=""
 RESTRICT="mirror"
@@ -91,7 +91,7 @@ pkg_postinst() {
elog "Run 'android' to download the full SDK, including some of the 
platform tools."
elog "You must be in the android group to manage the development 
environment."
elog "Just run 'gpasswd -a  android', then have  re-login."
-   elog "See http://developer.android.com/sdk/adding-components.html for 
more"
+   elog "See https://developer.android.com/sdk/adding-components.html for 
more"
elog "information."
elog "If you have problems downloading the SDK, see 
https://code.google.com/p/android/issues/detail?id=4406;
elog "You need to run env-update and source /etc/profile in any open 
shells"

diff --git 
a/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.ebuild 
b/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.ebuild
index 5a517bb942a..6a654da49cb 100644
--- a/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.ebuild
+++ b/dev-util/android-sdk-update-manager/android-sdk-update-manager-21.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
@@ -8,7 +8,7 @@ inherit eutils user
 MY_P="android-sdk_r${PV}-linux"
 
 DESCRIPTION="Open Handset Alliance's Android SDK"
-HOMEPAGE="http://developer.android.com;
+HOMEPAGE="https://developer.android.com;
 SRC_URI="https://dl.google.com/android/${MY_P}.tgz;
 IUSE=""
 RESTRICT="mirror"
@@ -91,7 +91,7 @@ pkg_postinst() {
elog "Run 'android' to download the full SDK, including some of the 
platform tools."
elog "You must be in the android group to manage the development 
environment."
elog "Just run 'gpasswd -a  android', then have  re-login."
-   elog "See http://developer.android.com/sdk/adding-components.html for 
more"
+   elog "See https://developer.android.com/sdk/adding-components.html for 
more"
elog "information."
elog "If you have problems downloading the SDK, see 
https://code.google.com/p/android/issues/detail?id=4406;
elog "You need to run env-update and source /etc/profile in any open 
shells"

diff --git 
a/dev-util/android-sdk-update-manager/android-sdk-update-manager-22.0.1-r1.ebuild
 
b/dev-util/android-sdk-update-manager/android-sdk-update-manager-22.0.1-r1.ebuild
index f7afd556077..f812d83f4ed 100644
--- 
a/dev-util/android-sdk-update-manager/android-sdk-update-manager-22.0.1-r1.ebuild
+++ 

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

2018-05-16 Thread Aaron Bauman
commit: 54295c90d81aeea2264f3062f237ff2f3234941f
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed May 16 14:23:04 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed May 16 22:49:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54295c90

app-text/txt2tags: use HTTPS

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

 app-text/txt2tags/txt2tags-2.6-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/txt2tags/txt2tags-2.6-r1.ebuild 
b/app-text/txt2tags/txt2tags-2.6-r1.ebuild
index 06bd030e0bd..701f24a7853 100644
--- a/app-text/txt2tags/txt2tags-2.6-r1.ebuild
+++ b/app-text/txt2tags/txt2tags-2.6-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=5
@@ -9,7 +9,7 @@ PYTHON_REQ_USE="tk?"
 inherit eutils elisp-common python-single-r1
 
 DESCRIPTION="Generate marked up documents (HTML, etc.)from a plain text file 
with markup"
-HOMEPAGE="http://txt2tags.org/;
+HOMEPAGE="https://txt2tags.org;
 SRC_URI="https://${PN}.googlecode.com/files/${P}.tgz;
 
 LICENSE="GPL-2"



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

2018-05-16 Thread Mike Gilbert
commit: 5a41c57693e4854abc94482fea18102251cf94df
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed May 16 22:37:03 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed May 16 22:37:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a41c576

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

Package-Manager: Portage-2.3.36_p22, Repoman-2.3.9_p215

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

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index 31132ff5d52..ddf8333575f 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_67.0.3396.40-1_amd64.deb 53706590 BLAKE2B 
4713df66465982ee13e0092710f66c08cc4da3300c0a6745bc88735beda6c6e07e07a7d14661680ab211f448baf28b931694770d30aa7ba2d2edad785f23e600
 SHA512 
b2b469cf46f8380f1c4139ab090592b219a86f3266061151b6641a6491582622020aceb869c0f5de68a2e6cd3ddaf5c713e4c01c013928480dcbfcecaca4605f
+DIST google-chrome-beta_67.0.3396.48-1_amd64.deb 53690648 BLAKE2B 
7222f04fa5d370aa52262f698b21545906cbf16656fbdaf4d7acd7fd88ea8cae66ae9ab0e8fe86fd61fd1155b4739f0994eaa77950dd781b767255880ae933b8
 SHA512 
0e7bef42e7a7a3cb4f935860b67d361cd158a7a07c576ad2bf012652371fe3a1e0ad31790e5a230796b0ae0dac5175ae7d425652d0c40873e454164aa4da5c6e

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



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

2018-05-16 Thread Mike Gilbert
commit: 969fa43518e3cdcdde5483b979b08ed6c10c828c
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed May 16 22:37:11 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed May 16 22:37:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=969fa435

www-plugins/chrome-binary-plugins: automated update (66.0.3359.181, 
67.0.3396.48)

Package-Manager: Portage-2.3.36_p22, Repoman-2.3.9_p215

 www-plugins/chrome-binary-plugins/Manifest| 4 ++--
 ...6.0.3359.170.ebuild => chrome-binary-plugins-66.0.3359.181.ebuild} | 0
 40_beta.ebuild => chrome-binary-plugins-67.0.3396.48_beta.ebuild} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 761226503e2..05faf8043b4 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_67.0.3396.40-1_amd64.deb 53706590 BLAKE2B 
4713df66465982ee13e0092710f66c08cc4da3300c0a6745bc88735beda6c6e07e07a7d14661680ab211f448baf28b931694770d30aa7ba2d2edad785f23e600
 SHA512 
b2b469cf46f8380f1c4139ab090592b219a86f3266061151b6641a6491582622020aceb869c0f5de68a2e6cd3ddaf5c713e4c01c013928480dcbfcecaca4605f
-DIST google-chrome-stable_66.0.3359.170-1_amd64.deb 52207438 BLAKE2B 
cd2b5cdac9ce79e8296ff616e77f3af3611e2461fb7fe1d9cfd6f96acf1876f7670b85b949b6445630505e58d0c4995076c28ae15f5bc162bdb013c2b01624ca
 SHA512 
a518dae7e42594621d78d0dc00698308544055575c7a5b0a9c8994547a87ca310bc7e24884ac947f3f0aefbf9e352889ab78485174145d1764fa50551d720725
+DIST google-chrome-beta_67.0.3396.48-1_amd64.deb 53690648 BLAKE2B 
7222f04fa5d370aa52262f698b21545906cbf16656fbdaf4d7acd7fd88ea8cae66ae9ab0e8fe86fd61fd1155b4739f0994eaa77950dd781b767255880ae933b8
 SHA512 
0e7bef42e7a7a3cb4f935860b67d361cd158a7a07c576ad2bf012652371fe3a1e0ad31790e5a230796b0ae0dac5175ae7d425652d0c40873e454164aa4da5c6e
+DIST google-chrome-stable_66.0.3359.181-1_amd64.deb 52336026 BLAKE2B 
ff6d8646970c11734c0bb692e5174ecad70094356d0929e24763b23bf4cd03fbe7cbb7a64b8188b55395708e4d505782b8e3879bdfa7b0e2f8a66e76fe27d276
 SHA512 
95c0d47e8017072f8bfbfd7a46d46677e8729791bdc48fddb3d966574702a167dcde7557e317048bfa93d9216e613385244353f7fa94b8b793d384fb09427c93
 DIST google-chrome-unstable_68.0.3423.2-1_amd64.deb 54165194 BLAKE2B 
10f8a44de80400a87e04102625cc3b968107df287cfd4df70a4c2fcf59267b13afdfec1fbd6f672a83f49a1ad36cac36bbcb3c36f02ca99b29c6c9f39623990f
 SHA512 
eb27e8e3631fe69c54cce86161f5b5e1e1a64cb64863462b81a43f29a82cd2c6498cf4d1251bc9a9efcb5a2e4bfe995274b4d0b95108dde5468ff1cd5ff9e91d

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-66.0.3359.170.ebuild 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-66.0.3359.181.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-66.0.3359.170.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-66.0.3359.181.ebuild

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



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

2018-05-16 Thread Mike Gilbert
commit: cd9985b9969b2424ab18db72beb2594ed4a51af9
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed May 16 22:36:46 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed May 16 22:36:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd9985b9

www-client/google-chrome: automated update (66.0.3359.181)

Package-Manager: Portage-2.3.36_p22, Repoman-2.3.9_p215

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

diff --git a/www-client/google-chrome/Manifest 
b/www-client/google-chrome/Manifest
index d4098e70718..808edefcf38 100644
--- a/www-client/google-chrome/Manifest
+++ b/www-client/google-chrome/Manifest
@@ -1 +1 @@
-DIST google-chrome-stable_66.0.3359.170-1_amd64.deb 52207438 BLAKE2B 
cd2b5cdac9ce79e8296ff616e77f3af3611e2461fb7fe1d9cfd6f96acf1876f7670b85b949b6445630505e58d0c4995076c28ae15f5bc162bdb013c2b01624ca
 SHA512 
a518dae7e42594621d78d0dc00698308544055575c7a5b0a9c8994547a87ca310bc7e24884ac947f3f0aefbf9e352889ab78485174145d1764fa50551d720725
+DIST google-chrome-stable_66.0.3359.181-1_amd64.deb 52336026 BLAKE2B 
ff6d8646970c11734c0bb692e5174ecad70094356d0929e24763b23bf4cd03fbe7cbb7a64b8188b55395708e4d505782b8e3879bdfa7b0e2f8a66e76fe27d276
 SHA512 
95c0d47e8017072f8bfbfd7a46d46677e8729791bdc48fddb3d966574702a167dcde7557e317048bfa93d9216e613385244353f7fa94b8b793d384fb09427c93

diff --git a/www-client/google-chrome/google-chrome-66.0.3359.170.ebuild 
b/www-client/google-chrome/google-chrome-66.0.3359.181.ebuild
similarity index 100%
rename from www-client/google-chrome/google-chrome-66.0.3359.170.ebuild
rename to www-client/google-chrome/google-chrome-66.0.3359.181.ebuild



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

2018-05-16 Thread Sergei Trofimovich
commit: 929380d18927f48e791e10188e687ffed20279c4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May 16 22:12:51 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May 16 22:16:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=929380d1

sys-fs/udev: stable 238 for ia64, bug #655712

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

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

diff --git a/sys-fs/udev/udev-238.ebuild b/sys-fs/udev/udev-238.ebuild
index 626053fc495..65319c095f8 100644
--- a/sys-fs/udev/udev-238.ebuild
+++ b/sys-fs/udev/udev-238.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} = * ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> 
systemd-${PV}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86"
+   KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86"
 fi
 
 DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"



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

2018-05-16 Thread Nick Sarnie
commit: b73be3798154c97e1ad99c64435b87eec7f0b34d
Author: Nick Sarnie  gentoo  org>
AuthorDate: Wed May 16 22:07:05 2018 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Wed May 16 22:08:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b73be379

app-emulation/winetricks: Sync with ::wine

Version bump winetricks to 20180513

Original work done by Jimi Huotari  gentoo.org>

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 app-emulation/winetricks/Manifest  |  1 +
 .../winetricks/winetricks-20180513.ebuild  | 96 ++
 2 files changed, 97 insertions(+)

diff --git a/app-emulation/winetricks/Manifest 
b/app-emulation/winetricks/Manifest
index 4d6213b747c..e50eaeb8f66 100644
--- a/app-emulation/winetricks/Manifest
+++ b/app-emulation/winetricks/Manifest
@@ -1,3 +1,4 @@
 DIST winetricks-20170823.tar.gz 639027 BLAKE2B 
ce0de22ff3363bd6fd675d07ea235ed5fb03ea7a84b3242329c094d6a9190c61813a1f360e74ece49d43d2dbf48dbbb1e94c4febc6e1a0d84cf1df895b0be6f9
 SHA512 
edc805be1a1c4fa64ae16b14fdd46786e259b88a0cde7afdf24bf934fa79f4acf3d9e599727fa589f155ec265569953b9e419cda79d54057157cbb1510261e3a
 DIST winetricks-20180217.tar.gz 646726 BLAKE2B 
3cde3ca1cd7c74946732c530a49ca532975e037bc2907e88239b4697b3828dfcde3ce250d95e6c03ca36cc36b4e00cd545b0f6b63f984722a737674aff808e27
 SHA512 
3f90ef3381d89c0dac8c4b7acea04d71fe898207c534d4fe00c3db4e5c2e18db90602b78672e8ecf6f754206a999465ba5d8f1f5962e0291386badfc8202cd73
+DIST winetricks-20180513.tar.gz 652299 BLAKE2B 
fb4c55e534e368d5d7e94247feed031d0f6f98a2f3604f6187e32d25659f1cfa7f5589806e429ee054b4a94c00ebd6ac63cb99012fd94a99622891132a477001
 SHA512 
49fc022fc3db068145baf3a51444dc937deb092aceac8e31259888fea21ffe86f747a0d4dbd5ff10f253a94b15de090c01f20dacbe838c8444bdb00b98cbf5c6
 DIST winetricks-gentoo-2012.11.24.tar.bz2 6398 BLAKE2B 
54a4502f6e8ef15d21b02c43e3ce599e32d476c2559246064de14cc4ce2243ff11dde681d24c8a7f4913c3d7a10b855bda47e8fb8ecad31e00d839705416be6f
 SHA512 
59c93b73f3a7b2d11aefcde2ff66659ff1de21ad4b5f232f4b60572f3a48b15a6c49f369b1696862bf1b33fde190bf5598945e9536fb41ddec42d8def4d2be2a

diff --git a/app-emulation/winetricks/winetricks-20180513.ebuild 
b/app-emulation/winetricks/winetricks-20180513.ebuild
new file mode 100644
index 000..58d2e71829b
--- /dev/null
+++ b/app-emulation/winetricks/winetricks-20180513.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils eutils
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/Winetricks/${PN}.git;
+   inherit git-r3
+   SRC_URI=""
+else
+   SRC_URI="https://github.com/Winetricks/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+wtg=winetricks-gentoo-2012.11.24
+
+SRC_URI="${SRC_URI}
+   gtk? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${wtg}.tar.bz2 )
+   kde? ( https://dev.gentoo.org/~tetromino/distfiles/wine/${wtg}.tar.bz2 
)"
+
+DESCRIPTION="Easy way to install DLLs needed to work around problems in Wine"
+HOMEPAGE="https://github.com/Winetricks/winetricks 
https://wiki.winehq.org/Winetricks;
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+IUSE="gtk kde rar test"
+
+DEPEND="test? (
+   dev-python/bashate
+   dev-util/checkbashisms
+   dev-util/shellcheck
+   )"
+
+RDEPEND="app-arch/cabextract
+   app-arch/p7zip
+   app-arch/unzip
+   net-misc/wget
+   virtual/wine
+   x11-misc/xdg-utils
+   gtk? ( gnome-extra/zenity )
+   kde? ( kde-apps/kdialog )
+   rar? ( app-arch/unrar )"
+
+# Test targets include syntax checks only, not the "heavy duty" tests
+# that would require a lot of disk space, as well as network access.
+
+# This uses a non-standard "Wine" category, which is provided by
+# '/etc/xdg/menus/applications-merged/wine.menu' from the
+# 'app-emulation/wine-desktop-common' package.
+# https://bugs.gentoo.org/451552
+QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop"
+
+src_unpack() {
+   if [[ ${PV} == "" ]] ; then
+   git-r3_src_unpack
+   if use gtk || use kde; then
+   unpack ${wtg}.tar.bz2
+   fi
+   else
+   default
+   fi
+}
+
+src_test() {
+   ./tests/shell-checks || die "Test(s) failed."
+}
+
+src_install() {
+   default
+   if use gtk || use kde; then
+   cd "${WORKDIR}/${wtg}" || die
+   domenu winetricks.desktop
+   insinto /usr/share/icons/hicolor/scalable/apps
+   doins wine-winetricks.svg
+   fi
+}
+
+pkg_preinst() {
+   if use gtk || use kde; then
+   gnome2_icon_savelist
+   fi
+}
+
+pkg_postinst() {
+   if use gtk || use kde; then
+   gnome2_icon_cache_update
+   fi
+}
+
+pkg_postrm() {
+   if use gtk || use kde; then
+   gnome2_icon_cache_update
+  

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

2018-05-16 Thread Mikle Kolyada
commit: 04479b7e73ab9071e416e5f90dbc0a245c02acd6
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed May 16 14:49:46 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed May 16 22:05:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04479b7e

net-im/psi: use HTTPS

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

 net-im/psi/psi-1.3-r1.ebuild | 2 +-
 net-im/psi/psi-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-im/psi/psi-1.3-r1.ebuild b/net-im/psi/psi-1.3-r1.ebuild
index 83b51354079..ed3aa9cca4b 100644
--- a/net-im/psi/psi-1.3-r1.ebuild
+++ b/net-im/psi/psi-1.3-r1.ebuild
@@ -9,7 +9,7 @@ PLOCALE_BACKUP="en"
 inherit l10n qmake-utils xdg-utils
 
 DESCRIPTION="Qt XMPP client"
-HOMEPAGE="http://psi-im.org/;
+HOMEPAGE="https://psi-im.org;
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz
https://github.com/psi-im/psi-l10n/archive/${PV}.tar.gz -> 
psi-l10n-${PV}.tar.gz"
 

diff --git a/net-im/psi/psi-.ebuild b/net-im/psi/psi-.ebuild
index 59adb230419..6e5d6038e68 100644
--- a/net-im/psi/psi-.ebuild
+++ b/net-im/psi/psi-.ebuild
@@ -9,7 +9,7 @@ PLOCALE_BACKUP="en"
 inherit l10n git-r3 qmake-utils gnome2-utils xdg-utils
 
 DESCRIPTION="Qt XMPP client"
-HOMEPAGE="http://psi-im.org/;
+HOMEPAGE="https://psi-im.org;
 
 PSI_URI="https://github.com/psi-im;
 PSI_PLUS_URI="https://github.com/psi-plus;



[gentoo-commits] repo/gentoo:master commit in: sys-devel/gcc/, eclass/

2018-05-16 Thread Sergei Trofimovich
commit: 91966aedd03d633af8476d824e2ee83a5181cc26
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May 16 21:54:38 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May 16 22:01:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91966aed

toolchain.eclass: add IUSE=systemtap to gcc-8

Avoid automagic dependency on systemtap installed.

Reported-by: lekto  o2.pl
Bug: https://bugs.gentoo.org/654748
Signed-off-by: Sergei Trofimovich  gentoo.org>

 eclass/toolchain.eclass| 11 +++
 sys-devel/gcc/metadata.xml |  1 +
 2 files changed, 12 insertions(+)

diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 47ee5495739..68e4ce15b37 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -154,6 +154,8 @@ if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then
tc_version_is_at_least 4.9 && IUSE+=" +vtv"
tc_version_is_at_least 5.0 && IUSE+=" jit mpx"
tc_version_is_at_least 6.0 && IUSE+=" +pie +ssp +pch"
+   # systemtap is a gentoo-specific switch: bug #654748
+   tc_version_is_at_least 8.0 && IUSE+=" systemtap"
 fi
 
 IUSE+=" ${IUSE_DEF[*]/#/+}"
@@ -220,6 +222,11 @@ if in_iuse gcj ; then
DEPEND+=" gcj? ( awt? ( ${GCJ_GTK_DEPS} ) ${GCJ_DEPS} )"
 fi
 
+if in_iuse systemtap ; then
+   # gcc needs sys/sdt.h headers on target
+   DEPEND+=" systemtap? ( dev-util/systemtap )"
+fi
+
 PDEPEND=">=sys-devel/gcc-config-1.7"
 
 #>> S + SRC_URI essentials <<
@@ -1229,6 +1236,10 @@ toolchain_src_configure() {
confgcc+=( $(use_enable mpx libmpx) )
fi
 
+   if in_iuse systemtap ; then
+   confgcc+=( $(use_enable systemtap) )
+   fi
+
if in_iuse vtv ; then
confgcc+=(
$(use_enable vtv vtable-verify)

diff --git a/sys-devel/gcc/metadata.xml b/sys-devel/gcc/metadata.xml
index 52748bc1ff6..51f143604eb 100644
--- a/sys-devel/gcc/metadata.xml
+++ b/sys-devel/gcc/metadata.xml
@@ -31,6 +31,7 @@
 Run the testsuite and install the results 
(requires FEATURES=test)
 Build support for various sanitizer functions 
(ASAN/TSAN/etc...)
 Build packages with stack smashing protector on by 
default
+enable systemtap static probe points
 Build support for virtual table verification (a C++ 
hardening feature)
   
   



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

2018-05-16 Thread Mikle Kolyada
commit: ff7ce428f53313da38eddd7abbd2d3e5f0e30c34
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed May 16 14:54:00 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed May 16 21:59:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7ce428

sys-apps/s390-tools: use HTTPS

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

 sys-apps/s390-tools/s390-tools-1.23.1.ebuild| 6 +++---
 sys-apps/s390-tools/s390-tools-1.36.1-r1.ebuild | 4 ++--
 sys-apps/s390-tools/s390-tools-1.36.1.ebuild| 6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/sys-apps/s390-tools/s390-tools-1.23.1.ebuild 
b/sys-apps/s390-tools/s390-tools-1.23.1.ebuild
index 8c977340c6e..dfdc088e665 100644
--- a/sys-apps/s390-tools/s390-tools-1.23.1.ebuild
+++ b/sys-apps/s390-tools/s390-tools-1.23.1.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,8 +10,8 @@ E2FSPROGS_P=e2fsprogs-1.41.3
 LINUX_P=linux-2.6.27
 
 DESCRIPTION="User space utilities for the zSeries (s390) Linux kernel and 
device drivers"
-HOMEPAGE="http://www.ibm.com/developerworks/linux/linux390/s390-tools.html;
-SRC_URI="http://download.boulder.ibm.com/ibmdl/pub/software/dw/linux390/ht_src/${P}.tar.bz2
+HOMEPAGE="https://www.ibm.com/developerworks/linux/linux390/s390-tools.html;
+SRC_URI="https://download.boulder.ibm.com/ibmdl/pub/software/dw/linux390/ht_src/${P}.tar.bz2
zfcpdump? (
mirror://sourceforge/e2fsprogs/${E2FSPROGS_P}.tar.gz
mirror://kernel/linux/kernel/v2.6/${LINUX_P}.tar.bz2

diff --git a/sys-apps/s390-tools/s390-tools-1.36.1-r1.ebuild 
b/sys-apps/s390-tools/s390-tools-1.36.1-r1.ebuild
index b77f1f4fe47..61fc38e5cef 100644
--- a/sys-apps/s390-tools/s390-tools-1.36.1-r1.ebuild
+++ b/sys-apps/s390-tools/s390-tools-1.36.1-r1.ebuild
@@ -6,8 +6,8 @@ EAPI="5"
 inherit toolchain-funcs udev
 
 DESCRIPTION="User space utilities for the zSeries (s390) Linux kernel and 
device drivers"
-HOMEPAGE="http://www.ibm.com/developerworks/linux/linux390/s390-tools.html;
-SRC_URI="http://download.boulder.ibm.com/ibmdl/pub/software/dw/linux390/ht_src/${P}.tar.bz2;
+HOMEPAGE="https://www.ibm.com/developerworks/linux/linux390/s390-tools.html;
+SRC_URI="https://download.boulder.ibm.com/ibmdl/pub/software/dw/linux390/ht_src/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/sys-apps/s390-tools/s390-tools-1.36.1.ebuild 
b/sys-apps/s390-tools/s390-tools-1.36.1.ebuild
index 51d00f78707..25a2d14a557 100644
--- a/sys-apps/s390-tools/s390-tools-1.36.1.ebuild
+++ b/sys-apps/s390-tools/s390-tools-1.36.1.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="5"
@@ -6,8 +6,8 @@ EAPI="5"
 inherit toolchain-funcs udev
 
 DESCRIPTION="User space utilities for the zSeries (s390) Linux kernel and 
device drivers"
-HOMEPAGE="http://www.ibm.com/developerworks/linux/linux390/s390-tools.html;
-SRC_URI="http://download.boulder.ibm.com/ibmdl/pub/software/dw/linux390/ht_src/${P}.tar.bz2;
+HOMEPAGE="https://www.ibm.com/developerworks/linux/linux390/s390-tools.html;
+SRC_URI="https://download.boulder.ibm.com/ibmdl/pub/software/dw/linux390/ht_src/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: sci-physics/h2o-gtk/

2018-05-16 Thread Michał Górny
commit: 870ba927b664bb72be14063cac451dbcc75182e7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 21:16:37 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870ba927

sci-physics/h2o-gtk: Bump to EAPI 7

 .../{h2o-gtk-.ebuild => h2o-gtk-0.1-r1.ebuild}   | 16 
 sci-physics/h2o-gtk/h2o-gtk-.ebuild  | 11 +++
 2 files changed, 15 insertions(+), 12 deletions(-)

diff --git a/sci-physics/h2o-gtk/h2o-gtk-.ebuild 
b/sci-physics/h2o-gtk/h2o-gtk-0.1-r1.ebuild
similarity index 65%
copy from sci-physics/h2o-gtk/h2o-gtk-.ebuild
copy to sci-physics/h2o-gtk/h2o-gtk-0.1-r1.ebuild
index dd9d42e7722..ec3885a327d 100644
--- a/sci-physics/h2o-gtk/h2o-gtk-.ebuild
+++ b/sci-physics/h2o-gtk/h2o-gtk-0.1-r1.ebuild
@@ -1,23 +1,23 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils git-r3
+EAPI=7
 
 DESCRIPTION="GTK+ UI for libh2o -- water & steam properties"
 HOMEPAGE="https://github.com/mgorny/h2o-gtk/;
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/mgorny/h2o-gtk.git;
+SRC_URI="https://github.com/mgorny/h2o-gtk/releases/download/${P}/${P}.tar.bz2;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="dev-cpp/gtkmm:2.4=
sci-libs/libh2oxx:0=
sci-libs/plotmm:0="
 DEPEND="${RDEPEND}"
+
+src_configure() {
+   local -x CXXFLAGS="${CXXFLAGS} -std=c++11"
+   default
+}

diff --git a/sci-physics/h2o-gtk/h2o-gtk-.ebuild 
b/sci-physics/h2o-gtk/h2o-gtk-.ebuild
index dd9d42e7722..1096a19fbbc 100644
--- a/sci-physics/h2o-gtk/h2o-gtk-.ebuild
+++ b/sci-physics/h2o-gtk/h2o-gtk-.ebuild
@@ -1,11 +1,9 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils git-r3
+inherit autotools git-r3
 
 DESCRIPTION="GTK+ UI for libh2o -- water & steam properties"
 HOMEPAGE="https://github.com/mgorny/h2o-gtk/;
@@ -21,3 +19,8 @@ RDEPEND="dev-cpp/gtkmm:2.4=
sci-libs/libh2oxx:0=
sci-libs/plotmm:0="
 DEPEND="${RDEPEND}"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libh2o/

2018-05-16 Thread Michał Górny
commit: 3c7d334f13d9d10a3d5daea1b7f505e0530dc59a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 19:45:29 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c7d334f

sci-libs/libh2o: Migrate to GitHub

 sci-libs/libh2o/libh2o-0.2.1.ebuild | 6 +++---
 sci-libs/libh2o/libh2o-.ebuild  | 4 ++--
 sci-libs/libh2o/metadata.xml| 4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/sci-libs/libh2o/libh2o-0.2.1.ebuild 
b/sci-libs/libh2o/libh2o-0.2.1.ebuild
index 03e9cb7d25c..1cc49ecad8b 100644
--- a/sci-libs/libh2o/libh2o-0.2.1.ebuild
+++ b/sci-libs/libh2o/libh2o-0.2.1.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=4
@@ -6,8 +6,8 @@ EAPI=4
 inherit autotools-utils
 
 DESCRIPTION="Library of routines for IF97 water & steam properties"
-HOMEPAGE="https://bitbucket.org/mgorny/libh2o/;
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2;
+HOMEPAGE="https://github.com/mgorny/libh2o/;
+SRC_URI="https://github.com/mgorny/libh2o/releases/download/${P}/${P}.tar.bz2;
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/sci-libs/libh2o/libh2o-.ebuild 
b/sci-libs/libh2o/libh2o-.ebuild
index 28b2f2cc10c..2181109f366 100644
--- a/sci-libs/libh2o/libh2o-.ebuild
+++ b/sci-libs/libh2o/libh2o-.ebuild
@@ -8,9 +8,9 @@ AUTOTOOLS_AUTORECONF=yes
 inherit autotools-utils git-r3
 
 DESCRIPTION="Library of routines for IF97 water & steam properties"
-HOMEPAGE="https://bitbucket.org/mgorny/libh2o/;
+HOMEPAGE="https://github.com/mgorny/libh2o/;
 SRC_URI=""
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
+EGIT_REPO_URI="https://github.com/mgorny/libh2o.git;
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/sci-libs/libh2o/metadata.xml b/sci-libs/libh2o/metadata.xml
index 3b33b5ad848..d7baf471a70 100644
--- a/sci-libs/libh2o/metadata.xml
+++ b/sci-libs/libh2o/metadata.xml
@@ -10,7 +10,7 @@
mgo...@gentoo.org
Michał Górny

-   https://bitbucket.org/mgorny/libh2o/issues/
-   mgorny/libh2o
+   https://github.com/mgorny/libh2o/issues/
+   mgorny/libh2o

 



[gentoo-commits] repo/gentoo:master commit in: sci-physics/h2o-gtk/

2018-05-16 Thread Michał Górny
commit: 0d72adacd773a026d50b4526bfebe8792066e1bd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 21:13:11 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d72adac

sci-physics/h2o-gtk: Migrate to GitHub

 sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild  | 6 +++---
 sci-physics/h2o-gtk/h2o-gtk-.ebuild | 4 ++--
 sci-physics/h2o-gtk/metadata.xml| 4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild 
b/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild
index 58ab0a0cab1..b3b174804c0 100644
--- a/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild
+++ b/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 inherit autotools-utils flag-o-matic
 
 DESCRIPTION="GTK+ UI for libh2o -- water & steam properties"
-HOMEPAGE="https://bitbucket.org/mgorny/h2o-gtk/;
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2;
+HOMEPAGE="https://github.com/mgorny/h2o-gtk/;
+SRC_URI="https://github.com/mgorny/h2o-gtk/releases/download/${P}/${P}.tar.bz2;
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/sci-physics/h2o-gtk/h2o-gtk-.ebuild 
b/sci-physics/h2o-gtk/h2o-gtk-.ebuild
index 8f63af68dab..dd9d42e7722 100644
--- a/sci-physics/h2o-gtk/h2o-gtk-.ebuild
+++ b/sci-physics/h2o-gtk/h2o-gtk-.ebuild
@@ -8,9 +8,9 @@ AUTOTOOLS_AUTORECONF=yes
 inherit autotools-utils git-r3
 
 DESCRIPTION="GTK+ UI for libh2o -- water & steam properties"
-HOMEPAGE="https://bitbucket.org/mgorny/h2o-gtk/;
+HOMEPAGE="https://github.com/mgorny/h2o-gtk/;
 SRC_URI=""
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
+EGIT_REPO_URI="https://github.com/mgorny/h2o-gtk.git;
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/sci-physics/h2o-gtk/metadata.xml b/sci-physics/h2o-gtk/metadata.xml
index 00eb8a518fd..9cd05826817 100644
--- a/sci-physics/h2o-gtk/metadata.xml
+++ b/sci-physics/h2o-gtk/metadata.xml
@@ -10,7 +10,7 @@
mgo...@gentoo.org
Michał Górny

-   https://bitbucket.org/mgorny/h2o-gtk/issues/
-   mgorny/h2o-gtk
+   https://github.com/mgorny/h2o-gtk/issues/
+   mgorny/h2o-gtk

 



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libh2oxx/

2018-05-16 Thread Michał Górny
commit: aebbadde48140ae66f0a2ebab537d74154df7491
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 19:53:58 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aebbadde

sci-libs/libh2oxx: Migrate to GitHub

 sci-libs/libh2oxx/libh2oxx-0.2.ebuild  | 6 +++---
 sci-libs/libh2oxx/libh2oxx-.ebuild | 4 ++--
 sci-libs/libh2oxx/metadata.xml | 4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/sci-libs/libh2oxx/libh2oxx-0.2.ebuild 
b/sci-libs/libh2oxx/libh2oxx-0.2.ebuild
index 5b2383ae7c4..9d629d2d6a2 100644
--- a/sci-libs/libh2oxx/libh2oxx-0.2.ebuild
+++ b/sci-libs/libh2oxx/libh2oxx-0.2.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=4
@@ -6,8 +6,8 @@ EAPI=4
 inherit autotools-utils
 
 DESCRIPTION="C++ bindings for libh2o"
-HOMEPAGE="https://bitbucket.org/mgorny/libh2oxx/;
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2;
+HOMEPAGE="https://github.com/mgorny/libh2oxx/;
+SRC_URI="https://github.com/mgorny/libh2oxx/releases/download/${P}/${P}.tar.bz2;
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/sci-libs/libh2oxx/libh2oxx-.ebuild 
b/sci-libs/libh2oxx/libh2oxx-.ebuild
index 6a80aaab934..8932ae68d34 100644
--- a/sci-libs/libh2oxx/libh2oxx-.ebuild
+++ b/sci-libs/libh2oxx/libh2oxx-.ebuild
@@ -8,9 +8,9 @@ AUTOTOOLS_AUTORECONF=yes
 inherit autotools-utils git-r3
 
 DESCRIPTION="C++ bindings for libh2o"
-HOMEPAGE="https://bitbucket.org/mgorny/libh2oxx/;
+HOMEPAGE="https://github.com/mgorny/libh2oxx/;
 SRC_URI=""
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
+EGIT_REPO_URI="https://github.com/mgorny/libh2oxx.git;
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/sci-libs/libh2oxx/metadata.xml b/sci-libs/libh2oxx/metadata.xml
index 34c84fc2814..ab8b9c0d2e6 100644
--- a/sci-libs/libh2oxx/metadata.xml
+++ b/sci-libs/libh2oxx/metadata.xml
@@ -10,7 +10,7 @@
mgo...@gentoo.org
Michał Górny

-   https://bitbucket.org/mgorny/libh2oxx/issues/
-   mgorny/libh2oxx
+   https://github.com/mgorny/libh2oxx/issues/
+   mgorny/libh2oxx

 



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libh2o/

2018-05-16 Thread Michał Górny
commit: 2ae1f9ac47eca2f9bc9f761ea166d5aa2e31b1fd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 19:49:20 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ae1f9ac

sci-libs/libh2o: Bump to EAPI 7

 .../{libh2o-.ebuild => libh2o-0.2.1-r1.ebuild}  | 21 +++--
 sci-libs/libh2o/libh2o-.ebuild  | 21 +++--
 2 files changed, 26 insertions(+), 16 deletions(-)

diff --git a/sci-libs/libh2o/libh2o-.ebuild 
b/sci-libs/libh2o/libh2o-0.2.1-r1.ebuild
similarity index 58%
copy from sci-libs/libh2o/libh2o-.ebuild
copy to sci-libs/libh2o/libh2o-0.2.1-r1.ebuild
index 2181109f366..2b52c92af38 100644
--- a/sci-libs/libh2o/libh2o-.ebuild
+++ b/sci-libs/libh2o/libh2o-0.2.1-r1.ebuild
@@ -1,28 +1,29 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils git-r3
+EAPI=7
 
 DESCRIPTION="Library of routines for IF97 water & steam properties"
 HOMEPAGE="https://github.com/mgorny/libh2o/;
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/mgorny/libh2o.git;
+SRC_URI="https://github.com/mgorny/libh2o/releases/download/${P}/${P}.tar.bz2;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE="debug static-libs"
 
 DEPEND="virtual/pkgconfig"
 
 src_configure() {
-   local myeconfargs=(
+   local myconf=(
$(use_enable debug)
+   $(use_enable static-libs static)
)
 
-   autotools-utils_src_configure
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
 }

diff --git a/sci-libs/libh2o/libh2o-.ebuild 
b/sci-libs/libh2o/libh2o-.ebuild
index 2181109f366..731e477a391 100644
--- a/sci-libs/libh2o/libh2o-.ebuild
+++ b/sci-libs/libh2o/libh2o-.ebuild
@@ -1,11 +1,9 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils git-r3
+inherit autotools git-r3
 
 DESCRIPTION="Library of routines for IF97 water & steam properties"
 HOMEPAGE="https://github.com/mgorny/libh2o/;
@@ -19,10 +17,21 @@ IUSE="debug static-libs"
 
 DEPEND="virtual/pkgconfig"
 
+src_prepare() {
+   default
+   eautoreconf
+}
+
 src_configure() {
-   local myeconfargs=(
+   local myconf=(
$(use_enable debug)
+   $(use_enable static-libs static)
)
 
-   autotools-utils_src_configure
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
 }



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

2018-05-16 Thread Michał Górny
commit: ca54a956b3de5d095f214214e398deed706b4b9b
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 21:05:06 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca54a956

dev-python/pyh2o: Remove conditionals from -

 dev-python/pyh2o/pyh2o-.ebuild | 21 +
 1 file changed, 5 insertions(+), 16 deletions(-)

diff --git a/dev-python/pyh2o/pyh2o-.ebuild 
b/dev-python/pyh2o/pyh2o-.ebuild
index 669c5446b71..e9c39b53a02 100644
--- a/dev-python/pyh2o/pyh2o-.ebuild
+++ b/dev-python/pyh2o/pyh2o-.ebuild
@@ -1,31 +1,20 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
 
-inherit distutils-r1
-
-#if LIVE
-AUTOTOOLS_AUTORECONF=yes
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
-
-inherit git-r3
-#endif
+inherit distutils-r1 git-r3
 
 DESCRIPTION="Library of routines for IF97 water & steam properties"
 HOMEPAGE="https://bitbucket.org/mgorny/libh2o/;
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2;
+SRC_URI=""
+EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 IUSE=""
 
 RDEPEND=">=sci-libs/libh2o-0.2.1"
 DEPEND="${RDEPEND}"
-#if LIVE
-
-KEYWORDS=
-SRC_URI=
-#endif



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libh2o/

2018-05-16 Thread Michał Górny
commit: 3db94a2f535414c6b83a8ca288e6c5de472443af
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 19:44:24 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3db94a2f

sci-libs/libh2o: Remove conditionals from -

 sci-libs/libh2o/libh2o-.ebuild | 19 +--
 1 file changed, 5 insertions(+), 14 deletions(-)

diff --git a/sci-libs/libh2o/libh2o-.ebuild 
b/sci-libs/libh2o/libh2o-.ebuild
index 2413fb4aaf6..28b2f2cc10c 100644
--- a/sci-libs/libh2o/libh2o-.ebuild
+++ b/sci-libs/libh2o/libh2o-.ebuild
@@ -1,33 +1,24 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-#if LIVE
 AUTOTOOLS_AUTORECONF=yes
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
-
-inherit git-r3
-#endif
 
-inherit autotools-utils
+inherit autotools-utils git-r3
 
 DESCRIPTION="Library of routines for IF97 water & steam properties"
 HOMEPAGE="https://bitbucket.org/mgorny/libh2o/;
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2;
+SRC_URI=""
+EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 IUSE="debug static-libs"
 
 DEPEND="virtual/pkgconfig"
 
-#if LIVE
-KEYWORDS=
-SRC_URI=
-#endif
-
 src_configure() {
local myeconfargs=(
$(use_enable debug)



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

2018-05-16 Thread Michał Górny
commit: a62ef30bb38b744ba373279e29fc110ddc5cb540
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 21:07:39 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a62ef30b

dev-python/pyh2o: Bump to EAPI 7

 dev-python/pyh2o/pyh2o-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyh2o/pyh2o-.ebuild 
b/dev-python/pyh2o/pyh2o-.ebuild
index fc831568f1e..7f436b494c8 100644
--- a/dev-python/pyh2o/pyh2o-.ebuild
+++ b/dev-python/pyh2o/pyh2o-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
 
 inherit distutils-r1 git-r3
@@ -16,5 +16,5 @@ SLOT="0"
 KEYWORDS=""
 IUSE=""
 
-RDEPEND=">=sci-libs/libh2o-0.2.1"
+RDEPEND=">=sci-libs/libh2o-0.2.1:="
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libh2oxx/

2018-05-16 Thread Michał Górny
commit: dd9273ea64d1f1c103b5ea7ee182b81d8fe17bff
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 19:52:05 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd9273ea

sci-libs/libh2oxx: Remove conditionals from -

 sci-libs/libh2oxx/libh2oxx-.ebuild | 19 +--
 1 file changed, 5 insertions(+), 14 deletions(-)

diff --git a/sci-libs/libh2oxx/libh2oxx-.ebuild 
b/sci-libs/libh2oxx/libh2oxx-.ebuild
index d1de9347c06..6a80aaab934 100644
--- a/sci-libs/libh2oxx/libh2oxx-.ebuild
+++ b/sci-libs/libh2oxx/libh2oxx-.ebuild
@@ -1,34 +1,25 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-#if LIVE
 AUTOTOOLS_AUTORECONF=yes
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
-
-inherit git-r3
-#endif
 
-inherit autotools-utils
+inherit autotools-utils git-r3
 
 DESCRIPTION="C++ bindings for libh2o"
 HOMEPAGE="https://bitbucket.org/mgorny/libh2oxx/;
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2;
+SRC_URI=""
+EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 IUSE="debug static-libs"
 
 RDEPEND=">=sci-libs/libh2o-0.2:0="
 DEPEND="${RDEPEND}"
 
-#if LIVE
-KEYWORDS=
-SRC_URI=
-#endif
-
 src_configure() {
local myeconfargs=(
$(use_enable debug)



[gentoo-commits] repo/gentoo:master commit in: sci-libs/libh2oxx/

2018-05-16 Thread Michał Górny
commit: 3297c990c507035e989a30c03a499851f05b385d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 19:56:11 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3297c990

sci-libs/libh2oxx: Bump to EAPI 7

 ...{libh2oxx-.ebuild => libh2oxx-0.2-r1.ebuild} | 21 +++--
 sci-libs/libh2oxx/libh2oxx-.ebuild  | 21 +++--
 2 files changed, 26 insertions(+), 16 deletions(-)

diff --git a/sci-libs/libh2oxx/libh2oxx-.ebuild 
b/sci-libs/libh2oxx/libh2oxx-0.2-r1.ebuild
similarity index 57%
copy from sci-libs/libh2oxx/libh2oxx-.ebuild
copy to sci-libs/libh2oxx/libh2oxx-0.2-r1.ebuild
index 8932ae68d34..7dcb50db90f 100644
--- a/sci-libs/libh2oxx/libh2oxx-.ebuild
+++ b/sci-libs/libh2oxx/libh2oxx-0.2-r1.ebuild
@@ -1,29 +1,30 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils git-r3
+EAPI=7
 
 DESCRIPTION="C++ bindings for libh2o"
 HOMEPAGE="https://github.com/mgorny/libh2oxx/;
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/mgorny/libh2oxx.git;
+SRC_URI="https://github.com/mgorny/libh2oxx/releases/download/${P}/${P}.tar.bz2;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE="debug static-libs"
 
 RDEPEND=">=sci-libs/libh2o-0.2:0="
 DEPEND="${RDEPEND}"
 
 src_configure() {
-   local myeconfargs=(
+   local myconf=(
$(use_enable debug)
+   $(use_enable static-libs static)
)
 
-   autotools-utils_src_configure
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
 }

diff --git a/sci-libs/libh2oxx/libh2oxx-.ebuild 
b/sci-libs/libh2oxx/libh2oxx-.ebuild
index 8932ae68d34..a9e3eef7129 100644
--- a/sci-libs/libh2oxx/libh2oxx-.ebuild
+++ b/sci-libs/libh2oxx/libh2oxx-.ebuild
@@ -1,11 +1,9 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils git-r3
+inherit autotools git-r3
 
 DESCRIPTION="C++ bindings for libh2o"
 HOMEPAGE="https://github.com/mgorny/libh2oxx/;
@@ -20,10 +18,21 @@ IUSE="debug static-libs"
 RDEPEND=">=sci-libs/libh2o-0.2:0="
 DEPEND="${RDEPEND}"
 
+src_prepare() {
+   default
+   eautoreconf
+}
+
 src_configure() {
-   local myeconfargs=(
+   local myconf=(
$(use_enable debug)
+   $(use_enable static-libs static)
)
 
-   autotools-utils_src_configure
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
 }



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

2018-05-16 Thread Michał Górny
commit: a7534f160a24124ac1a6146848a92f5c31a53502
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 21:06:17 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7534f16

dev-python/pyh2o: Migrate to GitHub, fix HOMEPAGE & DESC

 dev-python/pyh2o/metadata.xml  | 4 ++--
 dev-python/pyh2o/pyh2o-.ebuild | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-python/pyh2o/metadata.xml b/dev-python/pyh2o/metadata.xml
index 5ea188e8d80..175983e000a 100644
--- a/dev-python/pyh2o/metadata.xml
+++ b/dev-python/pyh2o/metadata.xml
@@ -10,7 +10,7 @@
   mgo...@gentoo.org
   Michał Górny
 
-https://bitbucket.org/mgorny/pyh2o/issues/
-mgorny/libh2o
+https://github.com/mgorny/pyh2o/issues/
+mgorny/pyh2o
   
 

diff --git a/dev-python/pyh2o/pyh2o-.ebuild 
b/dev-python/pyh2o/pyh2o-.ebuild
index e9c39b53a02..fc831568f1e 100644
--- a/dev-python/pyh2o/pyh2o-.ebuild
+++ b/dev-python/pyh2o/pyh2o-.ebuild
@@ -6,10 +6,10 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
 
 inherit distutils-r1 git-r3
 
-DESCRIPTION="Library of routines for IF97 water & steam properties"
-HOMEPAGE="https://bitbucket.org/mgorny/libh2o/;
+DESCRIPTION="Python API for sci-libs/libh2o"
+HOMEPAGE="https://github.com/mgorny/pyh2o/;
 SRC_URI=""
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
+EGIT_REPO_URI="https://github.com/mgorny/pyh2o.git;
 
 LICENSE="BSD"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: sci-physics/h2o-gtk/

2018-05-16 Thread Michał Górny
commit: c50bee1b4ae4fa2a25cd3530c426e0327481efa6
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 21:11:44 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 21:49:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c50bee1b

sci-physics/h2o-gtk: Remove conditionals from -

 sci-physics/h2o-gtk/h2o-gtk-.ebuild | 19 +--
 1 file changed, 5 insertions(+), 14 deletions(-)

diff --git a/sci-physics/h2o-gtk/h2o-gtk-.ebuild 
b/sci-physics/h2o-gtk/h2o-gtk-.ebuild
index 6276dd849cb..8f63af68dab 100644
--- a/sci-physics/h2o-gtk/h2o-gtk-.ebuild
+++ b/sci-physics/h2o-gtk/h2o-gtk-.ebuild
@@ -1,32 +1,23 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-#if LIVE
 AUTOTOOLS_AUTORECONF=yes
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
-
-inherit git-r3
-#endif
 
-inherit autotools-utils
+inherit autotools-utils git-r3
 
 DESCRIPTION="GTK+ UI for libh2o -- water & steam properties"
 HOMEPAGE="https://bitbucket.org/mgorny/h2o-gtk/;
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2;
+SRC_URI=""
+EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 IUSE=""
 
 RDEPEND="dev-cpp/gtkmm:2.4=
sci-libs/libh2oxx:0=
sci-libs/plotmm:0="
 DEPEND="${RDEPEND}"
-
-#if LIVE
-KEYWORDS=
-SRC_URI=
-#endif



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

2018-05-16 Thread Sergei Trofimovich
commit: 6f027fd9b535c53a19d442b95eea99b2a9158d08
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May 16 21:36:24 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May 16 21:37:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f027fd9

sys-devel/gcc: bump patchset up to 1.3 for gcc-8.1.0

3 new patches:
+ 95_all_ia64-TEXTREL.patch : fix TEXTRELs on -rdynamic binaries
+ 96_all_lto-O2-PR85655.patch : fix gcc -flto SIGSEGV on mariadb
+ 97_all_disable-systemtap-switch.patch : add --disable-systemtap switch

Bug: https://bugs.gentoo.org/566118
Bug: https://bugs.gentoo.org/655518
Bug: https://bugs.gentoo.org/654748
Package-Manager: Portage-2.3.36, Repoman-2.3.9

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

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 139cb5e1194..6ee03ce8310 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -56,6 +56,6 @@ DIST gcc-7.2.0.tar.xz 62312628 BLAKE2B 
35e4b732f1a4515fc1a9d4424797177112847588e
 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.tar.xz 62462388 BLAKE2B 
dc8f132b21bd0543c3d9dd17557038aafe65675aa73c540954234a3c972b4c31c939149bd50183d072ab6c8d16919e19daeaaffd619ce2ccd62dbdf9a5bb3302
 SHA512 
ad41a7e4584e40e92cdf860bc0288500fbaf5dfb7e8c3fcabe9eba809c87bcfa85b46c19c19921b0cdf6d05483faede8287bb9ea120c0d1559449a70e602c8d4
-DIST gcc-8.1.0-patches-1.2.tar.bz2 8486 BLAKE2B 
0232bbc63c56c62fc44099330fc05b9463d5fddfcdaffcc8dae1e380f4c88ead9be8d6f5c47e80ec820bbfa8825157aef26cb9c893f5e2186d6de4168f78eb70
 SHA512 
55afbf8c9b8cd34b7c0bac42fc3b171d7c538fa8f256bc282998f46db2294a5956bfd94b36ac1adbabccebc49717218b184ed4ec98297e3dfbcf0669a6e5dd78
+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
 DIST gdc-0.24-src.tar.bz2 1012099 BLAKE2B 
2c85058aad09af328719a702f69d655b9aa9655f2a83bb46bd21367cd442ed72c9b471ddaa764753f782dcb2f22fe51b052a965ed08290e0d9415b543481d144
 SHA512 
9aec7e4b102e602dfb61cd09ea4b4a96af637ceb3d726235261d09ebd35dbd416abcbfe0e46918e48474bd241fe9bb29abc145a65aa834669295aaee4fca0686

diff --git a/sys-devel/gcc/gcc-8.1.0-r2.ebuild 
b/sys-devel/gcc/gcc-8.1.0-r3.ebuild
similarity index 97%
rename from sys-devel/gcc/gcc-8.1.0-r2.ebuild
rename to sys-devel/gcc/gcc-8.1.0-r3.ebuild
index a8065168d5e..f2ea5537cfe 100644
--- a/sys-devel/gcc/gcc-8.1.0-r2.ebuild
+++ b/sys-devel/gcc/gcc-8.1.0-r3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="5"
 
-PATCH_VER="1.2"
+PATCH_VER="1.3"
 #UCLIBC_VER="1.0"
 
 inherit toolchain



[gentoo-commits] gentoo commit in src/patchsets/gcc/7.3.0/gentoo: README.history

2018-05-16 Thread Sergei Trofimovich (slyfox)
slyfox  18/05/16 21:25:44

  Modified: README.history
  Log:
  release 1.3 patchset

Revision  ChangesPath
1.6  src/patchsets/gcc/7.3.0/gentoo/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/7.3.0/gentoo/README.history?rev=1.6=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/7.3.0/gentoo/README.history?rev=1.6=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/7.3.0/gentoo/README.history?r1=1.5=1.6

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/7.3.0/gentoo/README.history,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- README.history  11 May 2018 21:29:12 -  1.5
+++ README.history  16 May 2018 21:25:44 -  1.6
@@ -1,4 +1,4 @@
-1.3TODO
+1.316 May 2018
U 13_all_default-ssp-fix.patch
U 55_all_extra-options.patch
+ 93_all_copy-constructible-fix.patch






[gentoo-commits] gentoo commit in src/patchsets/gcc/8.1.0/gentoo: README.history

2018-05-16 Thread Sergei Trofimovich (slyfox)
slyfox  18/05/16 21:24:37

  Modified: README.history
  Log:
  release 1.3 patchset

Revision  ChangesPath
1.10 src/patchsets/gcc/8.1.0/gentoo/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/8.1.0/gentoo/README.history?rev=1.10=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/8.1.0/gentoo/README.history?rev=1.10=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/8.1.0/gentoo/README.history?r1=1.9=1.10

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/8.1.0/gentoo/README.history,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- README.history  12 May 2018 14:20:05 -  1.9
+++ README.history  16 May 2018 21:24:37 -  1.10
@@ -1,4 +1,4 @@
-1.3TODO
+1.316 May 2018
+ 95_all_ia64-TEXTREL.patch
+ 96_all_lto-O2-PR85655.patch
+ 97_all_disable-systemtap-switch.patch






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

2018-05-16 Thread Sergei Trofimovich
commit: bb500c89c6e4beb7590022d738a5f9956b0b5948
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May 16 21:17:25 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May 16 21:19:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb500c89

app-misc/screen: stable 4.6.1 for ia64, bug #655490

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

 app-misc/screen/screen-4.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/screen/screen-4.6.1.ebuild 
b/app-misc/screen/screen-4.6.1.ebuild
index 928e94fa16a..a6a1ccd05e6 100644
--- a/app-misc/screen/screen-4.6.1.ebuild
+++ b/app-misc/screen/screen-4.6.1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://www.gnu.org/software/screen/;
 
 if [[ "${PV}" !=  ]] ; then
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-   KEYWORDS="alpha amd64 ~arm arm64 hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 
sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-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 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 else
EGIT_REPO_URI="git://git.savannah.gnu.org/screen.git"
EGIT_CHECKOUT_DIR="${WORKDIR}/${P}" # needed for setting S later on



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

2018-05-16 Thread Sergei Trofimovich
commit: cf17d44ffdc06e89061ded08e5c94a40eb31cbe8
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May 16 21:13:57 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May 16 21:19:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf17d44f

sys-libs/e2fsprogs-libs: stable 1.43.9 for ia64, bug #655850

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

 sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.43.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.43.9.ebuild 
b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.43.9.ebuild
index 3a28e3caf0b..e4988231e26 100644
--- a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.43.9.ebuild
+++ b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.43.9.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/e2fsprogs/${PN}-${UP_PV}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~m68k-mint ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~m68k-mint ~x86-solaris"
 IUSE="nls static-libs"
 
 RDEPEND="!sys-libs/com_err



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

2018-05-16 Thread Sergei Trofimovich
commit: 0f448ad6b77279c7a8d7d849b9db8fd80cd743f1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May 16 21:17:33 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May 16 21:19:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f448ad6

sys-process/cronie: stable 1.5.1-r1 for ia64, bug #655686

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

 sys-process/cronie/cronie-1.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/cronie/cronie-1.5.1-r1.ebuild 
b/sys-process/cronie/cronie-1.5.1-r1.ebuild
index 2e9a275496e..703d584fe47 100644
--- a/sys-process/cronie/cronie-1.5.1-r1.ebuild
+++ b/sys-process/cronie/cronie-1.5.1-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/cronie-crond/cronie;
 SRC_URI="https://github.com/cronie-crond/cronie/archive/${P}.tar.gz;
 
 LICENSE="ISC BSD BSD-2 GPL-2"
-KEYWORDS="alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
+KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
 IUSE="+anacron +inotify pam selinux"
 
 DEPEND="pam? ( virtual/pam )



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

2018-05-16 Thread Sergei Trofimovich
commit: eecb129bc75fbc02706eb42afadf1e7c831ffb62
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May 16 21:17:29 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May 16 21:19:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eecb129b

net-dns/libidn: stable 1.35 for ia64, bug #655668

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

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

diff --git a/net-dns/libidn/libidn-1.35.ebuild 
b/net-dns/libidn/libidn-1.35.ebuild
index 254234131ce..e8e86c943fb 100644
--- a/net-dns/libidn/libidn-1.35.ebuild
+++ b/net-dns/libidn/libidn-1.35.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://gnu/libidn/${P}.tar.gz"
 
 LICENSE="GPL-2 GPL-3 LGPL-3 java? ( Apache-2.0 )"
 SLOT="0/12"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



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

2018-05-16 Thread Sergei Trofimovich
commit: 582ba038d1570daf23de12c1f1ae33bc69ab0bcc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May 16 21:17:17 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May 16 21:19:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=582ba038

sys-fs/e2fsprogs: stable 1.43.9 for ia64, bug #655850

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

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

diff --git a/sys-fs/e2fsprogs/e2fsprogs-1.43.9.ebuild 
b/sys-fs/e2fsprogs/e2fsprogs-1.43.9.ebuild
index 60cd809da46..c568133708c 100644
--- a/sys-fs/e2fsprogs/e2fsprogs-1.43.9.ebuild
+++ b/sys-fs/e2fsprogs/e2fsprogs-1.43.9.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://sourceforge/e2fsprogs/${PN}-${UP_PV}.tar.gz
 
 LICENSE="GPL-2 BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 -x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~m68k-mint"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 -x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~m68k-mint"
 IUSE="fuse nls static-libs elibc_FreeBSD"
 
 RDEPEND="~sys-libs/${PN}-libs-${PV}



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

2018-05-16 Thread Mike Gilbert
commit: 00e26fc064d3097406733d3242c14f8b872a239e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed May 16 21:18:42 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed May 16 21:18:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00e26fc0

net-misc/freerdp: fix null pointer deref in primitives

Closes: https://bugs.gentoo.org/655904
Package-Manager: Portage-2.3.36_p22, Repoman-2.3.9_p215

 net-misc/freerdp/files/2.0.0-rc2-primitives.patch  | 41 ++
 0.0_rc2.ebuild => freerdp-2.0.0_rc2-r1.ebuild} |  4 +++
 2 files changed, 45 insertions(+)

diff --git a/net-misc/freerdp/files/2.0.0-rc2-primitives.patch 
b/net-misc/freerdp/files/2.0.0-rc2-primitives.patch
new file mode 100644
index 000..a82dec1ad0f
--- /dev/null
+++ b/net-misc/freerdp/files/2.0.0-rc2-primitives.patch
@@ -0,0 +1,41 @@
+From 9460f4292b130fcca58519a1c52b9aaef3265042 Mon Sep 17 00:00:00 2001
+From: Mike Gilbert 
+Date: Wed, 16 May 2018 16:15:50 -0400
+Subject: [PATCH] primitives: ensure primitives_get() returns a populated
+ struct
+
+Fixes: https://github.com/FreeRDP/FreeRDP/issues/4658
+---
+ libfreerdp/primitives/primitives.c | 8 ++--
+ 1 file changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/libfreerdp/primitives/primitives.c 
b/libfreerdp/primitives/primitives.c
+index fd236df6e7..d25c5b41dc 100644
+--- a/libfreerdp/primitives/primitives.c
 b/libfreerdp/primitives/primitives.c
+@@ -28,10 +28,12 @@
+ #include "prim_internal.h"
+ 
+ /* Singleton pointer used throughout the program when requested. */
+-static primitives_t pPrimitives = { 0 };
+ static primitives_t pPrimitivesGeneric = { 0 };
+ static INIT_ONCE generic_primitives_InitOnce = INIT_ONCE_STATIC_INIT;
++#if defined(HAVE_OPTIMIZED_PRIMITIVES)
++static primitives_t pPrimitives = { 0 };
+ static INIT_ONCE primitives_InitOnce = INIT_ONCE_STATIC_INIT;
++#endif
+ 
+ 
+ /* - 
*/
+@@ -74,8 +76,10 @@ primitives_t* primitives_get(void)
+   InitOnceExecuteOnce(_primitives_InitOnce, 
primitives_init_generic, NULL, NULL);
+ #if defined(HAVE_OPTIMIZED_PRIMITIVES)
+   InitOnceExecuteOnce(_InitOnce, primitives_init, NULL, NULL);
+-#endif
+   return 
++#else
++  return 
++#endif
+ }
+ 
+ primitives_t* primitives_get_generic(void)

diff --git a/net-misc/freerdp/freerdp-2.0.0_rc2.ebuild 
b/net-misc/freerdp/freerdp-2.0.0_rc2-r1.ebuild
similarity index 97%
rename from net-misc/freerdp/freerdp-2.0.0_rc2.ebuild
rename to net-misc/freerdp/freerdp-2.0.0_rc2-r1.ebuild
index 48abe1a3fc7..328ca08dce1 100644
--- a/net-misc/freerdp/freerdp-2.0.0_rc2.ebuild
+++ b/net-misc/freerdp/freerdp-2.0.0_rc2-r1.ebuild
@@ -87,6 +87,10 @@ DEPEND="${RDEPEND}
) ) )
 "
 
+PATCHES=(
+   "${FILESDIR}"/2.0.0-rc2-primitives.patch
+)
+
 src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)



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

2018-05-16 Thread Amy Liffey
commit: 35cb795c64f72c812a228dcd28d6cd53582d9929
Author: Amy Liffey  gentoo  org>
AuthorDate: Wed May 16 20:58:47 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Wed May 16 21:07:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35cb795c

app-crypt/eid-mw: remove old 4.2.5,4.28

Submitted-by: Vincent Hardy  gmail.com>
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-crypt/eid-mw/Manifest|  2 -
 app-crypt/eid-mw/eid-mw-4.2.5.ebuild | 97 
 app-crypt/eid-mw/eid-mw-4.2.8.ebuild | 94 --
 3 files changed, 193 deletions(-)

diff --git a/app-crypt/eid-mw/Manifest b/app-crypt/eid-mw/Manifest
index 7ffa7deb42f..55c4d55466f 100644
--- a/app-crypt/eid-mw/Manifest
+++ b/app-crypt/eid-mw/Manifest
@@ -1,4 +1,2 @@
-DIST eid-mw-4.2.5.tar.gz 7751526 BLAKE2B 
4836dc3a5ba4d781b8c342231cbbe74411fc6f0bf4b32eaa42ac28ea7688815361f74a1def371a05e250d3249af7ff58d24a66062fe169717872d6789ffb54f1
 SHA512 
cf00f6aa295c3d057e77faddde31ba6b00ce44402bc0ad141c773fb58067d7cf2e107fc5f3a294be8731de592cb0895537cd29ad4e69f6721e6c77fa99c12075
-DIST eid-mw-4.2.8.tar.gz 7076407 BLAKE2B 
e1d9b375adb326cb710da9eb5cd125086cb40b6ee37ce2ac3912ac4b5fa9c92d66c8af002a47c9ce73ff98ad2306e96529e1c87486eb0f36e61a1f4eb2231b9f
 SHA512 
bf910e8b5bad40fe65765524af20cf18e2c615b6b7bddfdd3024309d90767952875f1c264ea8bd8dfc73621a41683fce02501febe71c016816ccc0f75d88d8cb
 DIST eid-mw-4.3.6.tar.gz 7515482 BLAKE2B 
8895564736be83ad2f9797a6cfcbc6cb50a928c36508b9ddcf8e9032d7b4de9284745d711a7664edba106ad005a63eb1fddb5c1e639305b4af12f49ab8dbc61c
 SHA512 
336181c21896bec0e7a0a67f5bc739fdc63ca7b17eb6fefa98b6d468810fcdb52ecb6a64f267cdcfc063a2ef599d033064ec90b6bb41ec7ceccc2ca8e829a82b
 DIST eid-mw-4.4.1.tar.gz 7708697 BLAKE2B 
7bdbaa37af1cdd5a8abd1519939f663c7c871cea49850932d97c391465de362885b061c024285ab2690473a4bb1ba57a70fdc12a720246b2a610ac9525f6395e
 SHA512 
9de54858ac052eeff101070dd11c5cf60ab1d29b8dc8d946680745acf9aa6ba1044ca5451eca6066b5b467fbc32a2a23bbe7e8551ca7559e6003a4097a304cfc

diff --git a/app-crypt/eid-mw/eid-mw-4.2.5.ebuild 
b/app-crypt/eid-mw/eid-mw-4.2.5.ebuild
deleted file mode 100644
index fe66ca2e579..000
--- a/app-crypt/eid-mw/eid-mw-4.2.5.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils autotools mozextension
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://github.com/Fedict/${PN}.git;
-   inherit git-r3
-   SRC_URI=""
-else
-   SRC_URI="https://codeload.github.com/fedict/${PN}/tar.gz/v${PV} ->
-   ${P}.tar.gz"
-   KEYWORDS="~x86 ~amd64 ~arm"
-fi
-
-SLOT="0"
-LICENSE="LGPL-3"
-DESCRIPTION="Electronic Identity Card middleware supplied by the Belgian 
Federal Government"
-
-HOMEPAGE="https://eid.belgium.be;
-
-IUSE="+dialogs +gtk p11-kit +xpi"
-
-REQUIRED_USE="
-   dialogs? ( gtk )"
-
-RDEPEND="gtk? (
-   x11-libs/gdk-pixbuf[jpeg]
-   x11-libs/gtk+:*
-   dev-libs/libxml2
-   net-misc/curl[ssl]
-   net-libs/libproxy
-   !app-misc/eid-viewer-bin
-   )
-   >=sys-apps/pcsc-lite-1.2.9
-   p11-kit? ( app-crypt/p11-kit )
-   xpi? ( || ( >=www-client/firefox-bin-3.6.24
-   >=www-client/firefox-3.6.20 ) )"
-
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_prepare() {
-   eapply_user
-
-   sed -i -e 's:/beid/rsaref220:/rsaref220:' configure.ac || die
-   sed -i -e 's:/beid::' cardcomm/pkcs11/src/libbeidpkcs11.pc.in || die
-
-   # hardcoded lsb_info
-   sed -i \
-   -e "s:get_lsb_info('i'):strdup(_(\"Gentoo\")):" \
-   -e "s:get_lsb_info('r'):strdup(_(\"n/a\")):" \
-   -e "s:get_lsb_info('c'):strdup(_(\"n/a\")):" \
-   plugins_tools/aboutmw/gtk/about-main.c || die
-
-   if [[ ${PV} == "" ]] ; then
-   use gtk || eapply "${FILESDIR}"/gtk_not_required_.patch
-   else
-   use gtk || eapply "${FILESDIR}"/gtk_not_required_4_2_5.patch
-   fi
-
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   $(use_enable dialogs) \
-   $(use_enable p11-kit p11kit) \
-   --with-gnu-ld \
-   --disable-static \
-   --disable-signed
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   if use xpi; then
-   declare MOZILLA_FIVE_HOME
-   if has_version '>=www-client/firefox-3.6.20'; then
-   MOZILLA_FIVE_HOME="/usr/$(get_libdir)/firefox"
-   xpi_install 
"${D}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/belgium...@eid.belgium.be"
-   fi
-   if has_version '>=www-client/firefox-bin-3.6.24'; then
-   

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

2018-05-16 Thread Amy Liffey
commit: f4b1c4972803e0f5515d91a2c9465fb200728460
Author: Amy Liffey  gentoo  org>
AuthorDate: Wed May 16 21:06:03 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Wed May 16 21:07:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4b1c497

package.mask: Last rite app-misc/eid-viewer-bin

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 5cd714f841f..e3cb3a14f56 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Amy Liffey  (16 May 2018)
+# Obsolete and not used anymore replaced by app-crypt/eid-mw.
+# Requested by maintainer Vincent Hardy 
+# Removal in 30 days.
+app-misc/eid-viewer-bin
+
 # Michał Górny  (16 May 2018)
 # Ancient, unmaintained and seriously broken.  Applying patches
 # in the ebuild was broken in 2014 and nobody even reported that.



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

2018-05-16 Thread Amy Liffey
commit: 65717f08d563f39bb0e745111cbe8727722e4c32
Author: Amy Liffey  gentoo  org>
AuthorDate: Wed May 16 20:57:13 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Wed May 16 21:07:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65717f08

app-crypt/eid-mw: version bump 4.4.1

Submitted-by: Vincent Hardy  gmail.com>
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-crypt/eid-mw/Manifest|  1 +
 app-crypt/eid-mw/eid-mw-4.4.1.ebuild | 92 
 2 files changed, 93 insertions(+)

diff --git a/app-crypt/eid-mw/Manifest b/app-crypt/eid-mw/Manifest
index c383ae8d683..7ffa7deb42f 100644
--- a/app-crypt/eid-mw/Manifest
+++ b/app-crypt/eid-mw/Manifest
@@ -1,3 +1,4 @@
 DIST eid-mw-4.2.5.tar.gz 7751526 BLAKE2B 
4836dc3a5ba4d781b8c342231cbbe74411fc6f0bf4b32eaa42ac28ea7688815361f74a1def371a05e250d3249af7ff58d24a66062fe169717872d6789ffb54f1
 SHA512 
cf00f6aa295c3d057e77faddde31ba6b00ce44402bc0ad141c773fb58067d7cf2e107fc5f3a294be8731de592cb0895537cd29ad4e69f6721e6c77fa99c12075
 DIST eid-mw-4.2.8.tar.gz 7076407 BLAKE2B 
e1d9b375adb326cb710da9eb5cd125086cb40b6ee37ce2ac3912ac4b5fa9c92d66c8af002a47c9ce73ff98ad2306e96529e1c87486eb0f36e61a1f4eb2231b9f
 SHA512 
bf910e8b5bad40fe65765524af20cf18e2c615b6b7bddfdd3024309d90767952875f1c264ea8bd8dfc73621a41683fce02501febe71c016816ccc0f75d88d8cb
 DIST eid-mw-4.3.6.tar.gz 7515482 BLAKE2B 
8895564736be83ad2f9797a6cfcbc6cb50a928c36508b9ddcf8e9032d7b4de9284745d711a7664edba106ad005a63eb1fddb5c1e639305b4af12f49ab8dbc61c
 SHA512 
336181c21896bec0e7a0a67f5bc739fdc63ca7b17eb6fefa98b6d468810fcdb52ecb6a64f267cdcfc063a2ef599d033064ec90b6bb41ec7ceccc2ca8e829a82b
+DIST eid-mw-4.4.1.tar.gz 7708697 BLAKE2B 
7bdbaa37af1cdd5a8abd1519939f663c7c871cea49850932d97c391465de362885b061c024285ab2690473a4bb1ba57a70fdc12a720246b2a610ac9525f6395e
 SHA512 
9de54858ac052eeff101070dd11c5cf60ab1d29b8dc8d946680745acf9aa6ba1044ca5451eca6066b5b467fbc32a2a23bbe7e8551ca7559e6003a4097a304cfc

diff --git a/app-crypt/eid-mw/eid-mw-4.4.1.ebuild 
b/app-crypt/eid-mw/eid-mw-4.4.1.ebuild
new file mode 100644
index 000..26f6f9f8d33
--- /dev/null
+++ b/app-crypt/eid-mw/eid-mw-4.4.1.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools gnome2-utils
+
+DESCRIPTION="Electronic Identity Card middleware supplied by the Belgian 
Federal Government"
+HOMEPAGE="https://eid.belgium.be;
+SRC_URI="https://codeload.github.com/fedict/${PN}/tar.gz/v${PV} -> ${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~x86 ~amd64 ~arm"
+IUSE="+dialogs +gtk p11-kit"
+
+RDEPEND=">=sys-apps/pcsc-lite-1.2.9
+   gtk? (
+   x11-libs/gdk-pixbuf[jpeg]
+   x11-libs/gtk+:*
+   dev-libs/libxml2
+   net-misc/curl[ssl]
+   net-libs/libproxy
+   !app-misc/eid-viewer-bin
+   )
+   p11-kit? ( app-crypt/p11-kit )"
+
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+REQUIRED_USE="dialogs? ( gtk )"
+
+src_prepare() {
+   default
+
+   sed -i -e 's:/beid/rsaref220:/rsaref220:' configure.ac || die
+   sed -i -e 's:/beid::' cardcomm/pkcs11/src/libbeidpkcs11.pc.in || die
+
+   # Buggy internal versioning when autoreconf a tarball release.
+   # Weird numbering is required otherwise we get a seg fault in
+   # about-eid-mw program.
+   echo "${PV}-v${PV}" > .version
+   sed -i \
+   -e '/^GITDESC/ d' \
+   -e '/^VERCLEAN/ d' \
+   scripts/build-aux/genver.sh
+
+   # legacy xpi module : we don't want it anymore
+   sed -i -e 's:plugins_tools/xpi$::' Makefile.am || die
+   sed -i -e '/plugins_tools\/xpi/ d' configure.ac || die
+
+   # hardcoded lsb_info
+   sed -i \
+   -e "s:get_lsb_info('i'):strdup(_(\"Gentoo\")):" \
+   -e "s:get_lsb_info('r'):strdup(_(\"n/a\")):" \
+   -e "s:get_lsb_info('c'):strdup(_(\"n/a\")):" \
+   plugins_tools/aboutmw/gtk/about-main.c || die
+
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_enable dialogs) \
+   $(use_enable p11-kit p11kit) \
+   $(use_with gtk gtkvers 'detect') \
+   --with-gnu-ld \
+   --disable-static
+}
+
+src_install() {
+   default
+   rm -r "${ED}"/usr/$(get_libdir)/*.la || die
+   if use gtk; then
+   domenu plugins_tools/eid-viewer/eid-viewer.desktop
+   doicon plugins_tools/eid-viewer/gtk/eid-viewer.png
+   fi
+}
+
+pkg_postinst(){
+   if use gtk; then
+   gnome2_schemas_update
+   gnome2_icon_cache_update
+   fi
+}
+
+pkg_postrm(){
+   if use gtk; then
+   gnome2_schemas_update
+   gnome2_icon_cache_update
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-tex/latex2rtf/

2018-05-16 Thread Sergei Trofimovich
commit: 1a4adc122550e34ff1ee39bbd34f52285ffb364f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed May 16 21:00:31 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed May 16 21:00:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a4adc12

dev-tex/latex2rtf: stable 2.3.15 for ia64, bug #655334

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

 dev-tex/latex2rtf/latex2rtf-2.3.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/latex2rtf/latex2rtf-2.3.15.ebuild 
b/dev-tex/latex2rtf/latex2rtf-2.3.15.ebuild
index 4f12f828bd8..eb4aaa8c71c 100644
--- a/dev-tex/latex2rtf/latex2rtf-2.3.15.ebuild
+++ b/dev-tex/latex2rtf/latex2rtf-2.3.15.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="http://latex2rtf.sourceforge.net/;
 SRC_URI="mirror://sourceforge/latex2rtf/${P}.tar.gz"
 
 LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86"
 SLOT="0"
 IUSE="test"
 S="${WORKDIR}/${P%b}"



[gentoo-commits] proj/portage:master commit in: bin/

2018-05-16 Thread Zac Medico
commit: 1582103b2f0f64e5dc57eddc4217360eac230b8a
Author: Zac Medico  gentoo  org>
AuthorDate: Wed May 16 20:54:23 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed May 16 20:56:43 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=1582103b

phase-helpers.sh: handle readonly EPREFIX for local override (bug 655414)

Since ebuild.sh calls "declare -r ED EPREFIX EROOT", use env to
override EPREFIX for the called command.

Fixes: 17fce85669be ("phase-helpers.sh: fix has/best_version for cross-prefix 
portageq (bug 655414)")

 bin/phase-helpers.sh | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh
index 99a30a176..5c9f957e9 100644
--- a/bin/phase-helpers.sh
+++ b/bin/phase-helpers.sh
@@ -880,6 +880,7 @@ __eapi6_src_install() {
 
 ___best_version_and_has_version_common() {
local atom root root_arg
+   local -a cmd=()
case $1 in
--host-root|-r|-d|-b)
root_arg=$1
@@ -903,7 +904,7 @@ ___best_version_and_has_version_common() {
# Since portageq requires the root argument be 
consistent
# with EPREFIX, ensure consistency here (bug 
655414).
root=/${PORTAGE_OVERRIDE_EPREFIX#/}
-   local -x EPREFIX=${PORTAGE_OVERRIDE_EPREFIX}
+   cmd+=(env EPREFIX="${PORTAGE_OVERRIDE_EPREFIX}")
else
root=/
fi ;;
@@ -927,10 +928,11 @@ ___best_version_and_has_version_common() {
esac
 
if [[ -n $PORTAGE_IPC_DAEMON ]] ; then
-   "${PORTAGE_BIN_PATH}"/ebuild-ipc "${FUNCNAME[1]}" "${root}" 
"${atom}"
+   cmd+=("${PORTAGE_BIN_PATH}"/ebuild-ipc "${FUNCNAME[1]}" 
"${root}" "${atom}")
else
-   "${PORTAGE_BIN_PATH}"/ebuild-helpers/portageq "${FUNCNAME[1]}" 
"${root}" "${atom}"
+   cmd+=("${PORTAGE_BIN_PATH}"/ebuild-helpers/portageq 
"${FUNCNAME[1]}" "${root}" "${atom}")
fi
+   "${cmd[@]}"
local retval=$?
case "${retval}" in
0|1)



[gentoo-commits] proj/portage:master commit in: bin/

2018-05-16 Thread Zac Medico
commit: 17fce85669beec41747d65b37a55747b2f3ddb3c
Author: Zac Medico  gentoo  org>
AuthorDate: Wed May 16 20:35:57 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed May 16 20:35:57 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=17fce856

phase-helpers.sh: fix has/best_version for cross-prefix portageq (bug 655414)

When the portageq root argument refers to ${PORTAGE_OVERRIDE_EPREFIX},
also export a consistent ${EPREFIX}, since portageq asserts that the
root argument ends with ${EPREFIX}.

Bug: https://bugs.gentoo.org/655414

 bin/phase-helpers.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh
index 3e455d715..99a30a176 100644
--- a/bin/phase-helpers.sh
+++ b/bin/phase-helpers.sh
@@ -900,7 +900,10 @@ ___best_version_and_has_version_common() {
die "${FUNCNAME[1]}: option ${root_arg} is not 
supported with EAPI ${EAPI}"
fi
if ___eapi_has_prefix_variables; then
+   # Since portageq requires the root argument be 
consistent
+   # with EPREFIX, ensure consistency here (bug 
655414).
root=/${PORTAGE_OVERRIDE_EPREFIX#/}
+   local -x EPREFIX=${PORTAGE_OVERRIDE_EPREFIX}
else
root=/
fi ;;



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

2018-05-16 Thread Denis Dupeyron
commit: 1aa4c56d9cf29a30c1f1f8ae65da52d924b8c907
Author: Denis Dupeyron  gentoo  org>
AuthorDate: Wed May 16 20:40:23 2018 +
Commit: Denis Dupeyron  gentoo  org>
CommitDate: Wed May 16 20:42:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aa4c56d

dev-python/jira: fixed bug 655854, added kerberos authentication

 dev-python/jira/jira-1.0.14-r1.ebuild | 39 +++
 dev-python/jira/metadata.xml  |  2 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/jira/jira-1.0.14-r1.ebuild 
b/dev-python/jira/jira-1.0.14-r1.ebuild
new file mode 100644
index 000..70df2a7ab9b
--- /dev/null
+++ b/dev-python/jira/jira-1.0.14-r1.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=( python2_7 python3_{4,5,6} )
+inherit distutils-r1
+
+DESCRIPTION="Python library for interacting with the JIRA REST API"
+HOMEPAGE="https://jira.readthedocs.io/en/latest/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="filemagic jirashell kerberos oauth"
+
+DEPEND="
+   >=dev-python/pbr-3.0[${PYTHON_USEDEP}]
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   "
+RDEPEND="
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/requests-toolbelt[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   filemagic? ( dev-python/filemagic[${PYTHON_USEDEP}] )
+   jirashell? (
+   dev-python/ipython[${PYTHON_USEDEP}]
+   dev-python/requests-oauthlib[${PYTHON_USEDEP}]
+   )
+   kerberos? ( $(python_gen_cond_dep 
'dev-python/requests-kerberos[${PYTHON_USEDEP}]' -3) )
+   oauth? (
+   || ( dev-python/pycryptodome[${PYTHON_USEDEP}] 
dev-python/pycrypto[${PYTHON_USEDEP}] )
+   dev-python/requests-oauthlib[${PYTHON_USEDEP}]
+   )
+   "
+
+REQUIRED_USE="kerberos? ( !python_targets_python2_7 )"

diff --git a/dev-python/jira/metadata.xml b/dev-python/jira/metadata.xml
index 59bf90305a6..20544ce8d99 100644
--- a/dev-python/jira/metadata.xml
+++ b/dev-python/jira/metadata.xml
@@ -19,6 +19,8 @@
   
 Include filemagic support (for identifying uploaded 
filetypes)
 Include Interactive Python (IPython)
+Include dependencies for jirashell (ipython, 
oauthlib)
+Support Kerberos authentication
 Support OAuth authentication
   
 



[gentoo-commits] repo/gentoo:master commit in: games-action/bzflag/

2018-05-16 Thread Alfredo Tupone
commit: f9c30273b0f84245c7be1fc01d822d1b4052db96
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Wed May 16 20:03:07 2018 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Wed May 16 20:03:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9c30273

games-action/bzflag: Fix plugins directory and --with-SDL

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 games-action/bzflag/bzflag-2.4.14.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/games-action/bzflag/bzflag-2.4.14.ebuild 
b/games-action/bzflag/bzflag-2.4.14.ebuild
index 59edcad4188..290ef54d300 100644
--- a/games-action/bzflag/bzflag-2.4.14.ebuild
+++ b/games-action/bzflag/bzflag-2.4.14.ebuild
@@ -48,11 +48,12 @@ src_configure() {
ewarn
myconf="--disable-client --without-SDL"
else
-   myconf="--with-sdl=2"
+   myconf="--with-SDL=2"
fi
 
econf \
$(use_enable upnp UPnP) \
+   --libdir=/usr/$(get_libdir)/${PN} \
${myconf}
 }
 



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

2018-05-16 Thread Mart Raudsepp
commit: ff703a69b90e2c1b71900b926cda530304d6b07b
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed May 16 19:22:54 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed May 16 19:51:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff703a69

media-fonts/hack-3.003: arm64 stable (bug #655738)

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="arm64"

 media-fonts/hack/hack-3.003.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/hack/hack-3.003.ebuild 
b/media-fonts/hack/hack-3.003.ebuild
index 1b272507e29..1e090fce1f7 100644
--- a/media-fonts/hack/hack-3.003.ebuild
+++ b/media-fonts/hack/hack-3.003.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/source-foundry/Hack/releases/download/v${PV}/Hack-v$
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm arm64 x86"
 IUSE=""
 RESTRICT="binchecks strip"
 



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

2018-05-16 Thread Göktürk Yüksek
commit: 3749dd04eec222977bf662ffc64a78fb80fa8b10
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Wed May 16 19:46:05 2018 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed May 16 19:46:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3749dd04

sys-apps/rng-tools: bump to 6.2

Package-Manager: Portage-2.3.27, Repoman-2.3.9

 sys-apps/rng-tools/Manifest |  1 +
 sys-apps/rng-tools/rng-tools-6.2.ebuild | 60 +
 2 files changed, 61 insertions(+)

diff --git a/sys-apps/rng-tools/Manifest b/sys-apps/rng-tools/Manifest
index 81bdf68a0b8..a72ffa68065 100644
--- a/sys-apps/rng-tools/Manifest
+++ b/sys-apps/rng-tools/Manifest
@@ -1,3 +1,4 @@
 DIST rng-tools-5.tar.gz 122182 BLAKE2B 
de7085d530e38de21a1c33792d67a72e0131b221082d690cdb299367b80b0a123c2976174aa3f895a4a2ab1216aacfaa8e09de485c85154dc4a5b8f960d05245
 SHA512 
58047c37cad4f5f1210b696e4dba122878f78e57d05d9cb822f79234240ecce31efd2d39061fea1eb5b2e81d48d8c3bf6b92d06451f1ce5d5db7117704e89c50
 DIST rng-tools-6.1.tar.gz 29814 BLAKE2B 
4102c03ced36b33f9db6f7e5f77e8f918c4b9286a4c94cfd9ea9645c394f054fb3165255c3beb0f73d897d066831301f69a64e2758296b4418808343c97f3269
 SHA512 
388593ffeef0b5f2770532629418cdf1b6421092ae9c5fe0a68d198a5cbd4ff733fbca8091d497e09620c61a9e8b982298fb064edfd05a0fc36fa49c22eef5c9
+DIST rng-tools-6.2.tar.gz 30421 BLAKE2B 
646628095cbc611aee4113198e0874b5f0672cd787f04f1649ff350883edebe6b31753aef3ac2bca1f05eedcf3c1400435c084382bde9f97fe6dcdd71adf18c2
 SHA512 
ffd8be5b232f092f8bcfdb6281580ce9053ec8bb87ff6bcae76585c38e3e91b9e464a9544a33ecd9814a9f244a89bac973d15c9bd3560d1164559685c720d174
 DIST rng-tools-6.tar.gz 26024 BLAKE2B 
a523328fcce56997e2847940cdc096abd5a539135f857f0a4cd3d782a1659f4d2978870149caac47b839c80788df6a3d891adcd39371d5968149dd29bc46bc62
 SHA512 
2aea947c4dba5e8c4df33396957f7224b62200be0e3d10aac08c84155fa473a67df5f49e07a07b2cbea4dfd772d90c1b194e8fce3d8eea762463a7f4a16d6ce4

diff --git a/sys-apps/rng-tools/rng-tools-6.2.ebuild 
b/sys-apps/rng-tools/rng-tools-6.2.ebuild
new file mode 100644
index 000..fd05ed79c01
--- /dev/null
+++ b/sys-apps/rng-tools/rng-tools-6.2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools systemd toolchain-funcs
+
+DESCRIPTION="Daemon to use hardware random number generators"
+HOMEPAGE="https://github.com/nhorman/rng-tools;
+SRC_URI="https://github.com/nhorman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~x86"
+IUSE="nistbeacon selinux"
+
+DEPEND="dev-libs/libgcrypt:0
+   dev-libs/libgpg-error
+   sys-fs/sysfsutils
+   nistbeacon? (
+   net-misc/curl[ssl]
+   dev-libs/libxml2:2=
+   dev-libs/openssl:0=
+   )
+"
+RDEPEND="${DEPEND}
+   selinux? ( sec-policy/selinux-rngd )"
+DEPEND="${DEPEND}
+   nistbeacon? (
+   virtual/pkgconfig
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}"/test-for-argp.patch
+   "${FILESDIR}"/${PN}-5-fix-textrels-on-PIC-x86.patch #469962
+)
+
+src_prepare() {
+   echo 'bin_PROGRAMS = randstat' >> contrib/Makefile.am || die
+   default
+
+   mv README.md README || die
+
+   eautoreconf
+
+   sed -i '/^AR /d' Makefile.in || die
+   tc-export AR
+}
+
+src_configure() {
+   econf $(use_with nistbeacon)
+}
+
+src_install() {
+   default
+   newinitd "${FILESDIR}"/rngd-initd-6 rngd
+   newconfd "${FILESDIR}"/rngd-confd-4.1 rngd
+   systemd_dounit "${FILESDIR}"/rngd.service
+}



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

2018-05-16 Thread Lars Wendler
commit: 3a5d4f13b41c1435bbfe82161b9d983f5c49dd29
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed May 16 19:33:05 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed May 16 19:33:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a5d4f13

app-text/ghostscript-gpl: Added sub-slot dep operator for net-dns/libidn

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild 
b/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild
index 89941fe85f3..b0391f26d81 100644
--- a/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild
+++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild
@@ -37,7 +37,7 @@ COMMON_DEPEND="
cups? ( >=net-print/cups-1.3.8 )
dbus? ( sys-apps/dbus )
gtk? ( || ( x11-libs/gtk+:3 x11-libs/gtk+:2 ) )
-   unicode? ( net-dns/libidn )
+   unicode? ( net-dns/libidn:= )
tiff? ( >=media-libs/tiff-4.0.1:0= )
X? ( x11-libs/libXt x11-libs/libXext )
 "



[gentoo-commits] repo/gentoo:master commit in: mail-mta/msmtp/

2018-05-16 Thread Lars Wendler
commit: 25ac8ef4547d1c466c2f48f9dc0865d4bf1e25ae
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed May 16 19:31:32 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed May 16 19:31:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25ac8ef4

mail-mta/msmtp: Added sub-slot dep operator for net-dns/libidn

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 mail-mta/msmtp/msmtp-1.6.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-mta/msmtp/msmtp-1.6.6.ebuild 
b/mail-mta/msmtp/msmtp-1.6.6.ebuild
index 5daaadaad46..6a189227d21 100644
--- a/mail-mta/msmtp/msmtp-1.6.6.ebuild
+++ b/mail-mta/msmtp/msmtp-1.6.6.ebuild
@@ -14,7 +14,7 @@ KEYWORDS="alpha amd64 ~arm ~arm64 ia64 ppc ppc64 sparc x86 
~amd64-linux ~arm-lin
 IUSE="doc gnutls idn libressl libsecret +mta nls sasl ssl vim-syntax"
 
 CDEPEND="
-   idn? ( net-dns/libidn )
+   idn? ( net-dns/libidn:= )
libsecret? ( app-crypt/libsecret )
nls? ( virtual/libintl )
sasl? ( virtual/gsasl )



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

2018-05-16 Thread Lars Wendler
commit: e4c5303564b7701bd33aae55ff85c0934599e774
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed May 16 19:30:17 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed May 16 19:30:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4c53035

net-libs/gloox: Added sub-slot dep operator for net-dns/libidn

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-libs/gloox/gloox-1.0.20.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/gloox/gloox-1.0.20.ebuild 
b/net-libs/gloox/gloox-1.0.20.ebuild
index 09007f44398..1d000bc0004 100644
--- a/net-libs/gloox/gloox-1.0.20.ebuild
+++ b/net-libs/gloox/gloox-1.0.20.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
@@ -13,7 +13,7 @@ SLOT="0/17"
 KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~ia64 ~sparc ~x86"
 IUSE="debug gnutls idn libressl ssl static-libs test zlib"
 
-DEPEND="idn? ( net-dns/libidn )
+DEPEND="idn? ( net-dns/libidn:= )
gnutls? ( net-libs/gnutls )
ssl? (
!libressl? ( dev-libs/openssl:0 )



[gentoo-commits] repo/gentoo:master commit in: net-ftp/filezilla/

2018-05-16 Thread Lars Wendler
commit: 32613d63a82f5e0038b583971046ab052a1827bf
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed May 16 19:28:33 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed May 16 19:28:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32613d63

net-ftp/filezilla: Added sub-slot dep operator for net-dns/libidn

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-ftp/filezilla/filezilla-3.25.2.ebuild  | 2 +-
 net-ftp/filezilla/filezilla-3.31.0-r300.ebuild | 2 +-
 net-ftp/filezilla/filezilla-3.31.0.ebuild  | 2 +-
 net-ftp/filezilla/filezilla-3.33.0-r300.ebuild | 2 +-
 net-ftp/filezilla/filezilla-3.33.0.ebuild  | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-ftp/filezilla/filezilla-3.25.2.ebuild 
b/net-ftp/filezilla/filezilla-3.25.2.ebuild
index e16e202da40..072bfdc7005 100644
--- a/net-ftp/filezilla/filezilla-3.25.2.ebuild
+++ b/net-ftp/filezilla/filezilla-3.25.2.ebuild
@@ -25,7 +25,7 @@ RDEPEND=">=app-eselect/eselect-wxwidgets-0.7-r1
>=dev-db/sqlite-3.7
=dev-libs/libfilezilla-0.9*
>=dev-libs/pugixml-1.7
-   net-dns/libidn
+   net-dns/libidn:=
>=net-libs/gnutls-3.4.0
>=x11-libs/wxGTK-3.0.2.0-r1:3.0[X]
x11-misc/xdg-utils

diff --git a/net-ftp/filezilla/filezilla-3.31.0-r300.ebuild 
b/net-ftp/filezilla/filezilla-3.31.0-r300.ebuild
index a27b1979854..ea8be1a27f3 100644
--- a/net-ftp/filezilla/filezilla-3.31.0-r300.ebuild
+++ b/net-ftp/filezilla/filezilla-3.31.0-r300.ebuild
@@ -25,7 +25,7 @@ RDEPEND=">=app-eselect/eselect-wxwidgets-0.7-r1
>=dev-db/sqlite-3.7
>=dev-libs/libfilezilla-0.12.1
>=dev-libs/pugixml-1.7
-   net-dns/libidn
+   net-dns/libidn:=
>=net-libs/gnutls-3.4.0
>=x11-libs/wxGTK-3.0.3:${WX_GTK_VER}[X]
x11-misc/xdg-utils

diff --git a/net-ftp/filezilla/filezilla-3.31.0.ebuild 
b/net-ftp/filezilla/filezilla-3.31.0.ebuild
index e0d7eeec245..73f5a7517ef 100644
--- a/net-ftp/filezilla/filezilla-3.31.0.ebuild
+++ b/net-ftp/filezilla/filezilla-3.31.0.ebuild
@@ -25,7 +25,7 @@ RDEPEND=">=app-eselect/eselect-wxwidgets-0.7-r1
>=dev-db/sqlite-3.7
>=dev-libs/libfilezilla-0.12.1
>=dev-libs/pugixml-1.7
-   net-dns/libidn
+   net-dns/libidn:=
>=net-libs/gnutls-3.4.0
>=x11-libs/wxGTK-3.0.3:${WX_GTK_VER}[X]
x11-misc/xdg-utils

diff --git a/net-ftp/filezilla/filezilla-3.33.0-r300.ebuild 
b/net-ftp/filezilla/filezilla-3.33.0-r300.ebuild
index 7895c9ff9fc..2d9c499662c 100644
--- a/net-ftp/filezilla/filezilla-3.33.0-r300.ebuild
+++ b/net-ftp/filezilla/filezilla-3.33.0-r300.ebuild
@@ -25,7 +25,7 @@ RDEPEND=">=app-eselect/eselect-wxwidgets-0.7-r1
>=dev-db/sqlite-3.7
>=dev-libs/libfilezilla-0.12.2
>=dev-libs/pugixml-1.7
-   net-dns/libidn
+   net-dns/libidn:=
>=net-libs/gnutls-3.4.15
>=x11-libs/wxGTK-3.0.4:${WX_GTK_VER}[X]
x11-misc/xdg-utils

diff --git a/net-ftp/filezilla/filezilla-3.33.0.ebuild 
b/net-ftp/filezilla/filezilla-3.33.0.ebuild
index 506fc6d9f96..606eecdfcf8 100644
--- a/net-ftp/filezilla/filezilla-3.33.0.ebuild
+++ b/net-ftp/filezilla/filezilla-3.33.0.ebuild
@@ -25,7 +25,7 @@ RDEPEND=">=app-eselect/eselect-wxwidgets-0.7-r1
>=dev-db/sqlite-3.7
>=dev-libs/libfilezilla-0.12.2
>=dev-libs/pugixml-1.7
-   net-dns/libidn
+   net-dns/libidn:=
>=net-libs/gnutls-3.4.15
>=x11-libs/wxGTK-3.0.4:${WX_GTK_VER}[X]
x11-misc/xdg-utils



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

2018-05-16 Thread Lars Wendler
commit: 034a66e5627fc629c4e43a5e49c2b483cac08333
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed May 16 19:24:50 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed May 16 19:26:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=034a66e5

net-misc/iputils: Removed old.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 net-misc/iputils/Manifest  |   8 -
 .../files/iputils-20071127-nonroot-floodping.patch |  11 -
 .../files/iputils-20121221-crypto-build.patch  |  35 
 .../iputils/files/iputils-20121221-makefile.patch  |  61 --
 .../iputils/files/iputils-20121221-openssl.patch   |  92 -
 .../files/iputils-20121221-owl-pingsock.diff   | 224 -
 .../files/iputils-20121221-parallel-doc.patch  |  74 ---
 .../files/iputils-20121221-printf-size.patch   |  64 --
 .../iputils/files/iputils-20121221-strtod.patch|  45 -
 .../files/iputils-20121221-tftpd-setid.patch   |  34 
 .../files/iputils-20121221-tftpd-syslog.patch  |  38 
 .../iputils/files/iputils--openssl.patch   |  97 -
 .../files/iputils--tftpd-syslog.patch  |  38 
 net-misc/iputils/iputils-20121221-r1.ebuild| 103 --
 net-misc/iputils/iputils-20121221-r2.ebuild| 153 --
 net-misc/iputils/iputils-20151218.ebuild   | 158 ---
 net-misc/iputils/iputils-20160308.ebuild   | 165 ---
 net-misc/iputils/iputils-20161105.ebuild   | 168 
 18 files changed, 1568 deletions(-)

diff --git a/net-misc/iputils/Manifest b/net-misc/iputils/Manifest
index db05f47bd4f..4bd330cb3a8 100644
--- a/net-misc/iputils/Manifest
+++ b/net-misc/iputils/Manifest
@@ -1,10 +1,2 @@
-DIST iputils-20160308.tar.gz 195348 BLAKE2B 
d034454921a117307c5092c5b44c250cb90ab96d4b0331cf0c7645523159d3f615746edf6c70faf5b13a2a58761fcb4dbe09043cd486ddc56586a9716f98ca5a
 SHA512 
6b4d6e58ab8f1218f3ab52da695f252bd3e0004ffce755f2378b44fc3b4fbf9beb9beef51ff12f14348a07f6fe8525e64dba7f5d7b70997423d2c98c5ff7dde2
-DIST iputils-20161105.tar.gz 195879 BLAKE2B 
3aacbe2a507415d43e524329df269d8a435b529c2e0bdd5387f4711a63ede46968f285dbf78491341013188b3c929e2e717898fed44c5c211fe15946bfe214a4
 SHA512 
1593077b6eff1e57eb8a32897dd9624a745d0c87db1501a96436b168b109ef22d41ee69406a4a2154d8d72c823c1df723b4c52eeec8d82ba2762fb01dc0d4797
 DIST iputils-20171016_pre.tar.gz 195254 BLAKE2B 
1170db29d53dd8285b11d4df7b7da2ea3bd2be3599a3f0df85ca7e64247f2a534d03e43a2b6267ba4b9c0b65fcc58045151833ae2c1035a839ed728a389804af
 SHA512 
570896fc58d945e08032134701ab6ea02bbf6fff420437bc5f89687cdcce6f3c1c64418a4c5ff54ca3cdc582bae2c95e196b2c8368eba2b163ebf88490aabf99
 DIST iputils-manpages-20171016_pre.tar.xz 29764 BLAKE2B 
47def1413b2cdcfba7f924dd7a045063c289c244ba8fb4dc43caf2a8d52032b57ee6d86ee4dffd5351faa3124d4c83a33ca3365866568c2164b374eed9d70ec0
 SHA512 
31b4b0b4e46d7c98530577392c636e4397917cbe415762145a119e68e3223bc85b9d5afcfe61ae01584a35f6a1a772adffc52deeedc722c474179fa1d208d8d9
-DIST iputils-s20121221-manpages.tar.bz2 23778 BLAKE2B 
6b781f7df17b272bf19ba41a7d9a1449526b60f5f596c2201dcf489caf776b74e6a9de2bfff67fada2e9e0480b49a2dce341ce8e5d13c82d6ffd2a0b65bf2c49
 SHA512 
006be62e61bf1555c99dbd5aac270cbd8d1074a3016fdde3aeed47e5c9b1acd326aa30a596c532d6688827f7f61966a6e3141eaa3b6f4f943eb21ac227282d8c
-DIST iputils-s20121221.tar.bz2 155344 BLAKE2B 
bef1fc6e0484fa43fe34b3c50e9060b0bb2a76cc4912e306143a5b74ff6c42d4cfd1db890548d8d684540f0aabf949def521e2562d7878a7042095e7b19cfd9c
 SHA512 
693d240becd766c345c3af2053fc0699b9358e54d667d40738c21d731b70e779112d81476a220d8300ca54250120385414a13610d445996f95a90571047389f4
-DIST iputils-s20151218-manpages.tar.xz 22336 BLAKE2B 
ea19d5bc399cadc73c137badbe304383be0b0b0794db1b655fe766c87684b760664e986ed513a5717e5cfd4b068b0800ba188f10dca5a75215891754b1208e62
 SHA512 
964b9e22b18b67215ea48e046c45768cd86076b53db2131b00ac721be9e7de4edadefb74855d81861f12b4e10dcecd90d29f0098c2c4568d7601d97e756be0a3
-DIST iputils-s20151218.tar.bz2 157187 BLAKE2B 
d739fdc696b3592ec49ee98163a31bac364fc6cd9136510c34ecddd789d0ebdd76c92ed740fe6e2f098db086aa2885e9f48b94b8f43badd208ddcb6f9332a5dd
 SHA512 
4bf0eed0ae5603e872afb0e09be039df3822a7723e8cbb8cbe578d69d8c457ffac9bdbe2eb17b32c95968e5e4ad6204af955617482c5701671f0f476b560b65c
-DIST iputils-s20160308-manpages.tar.xz 22684 BLAKE2B 
4c9a8278640b55ffce0cbb929b89fe528716905bcb119d949ad4bc41b8fe74c6b6822d2a623e377c71ca0a82ee48d7fadb770e395a9acdbfedd43da0790ff910
 SHA512 
fe55ee334f1a99c6d93f4d18d97666d307676ced77175b73139f888af8f4f0ddc0f1d0511ab71d234f57909def606bf5c3aede2db28a0f73eb5628b9c8e16cac
-DIST iputils-s20161105-manpages.tar.xz 22660 BLAKE2B 
ae764e66ebbd3e77a0583b7191532a0d8774fc5713c239f00f35c624868a9d6ea8507175153f1025ffb01d854d96ba3c542006d3966119e4fd021899ec114ad1
 SHA512 
10cf22e1c2bf4ab90818e2120638d250ccefd65f19545cc9662537a31ab525089309b505759a347f09f1439800e291d7fa22f38bdec5460d41bd40f323412279


[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/amd64/17.1/

2018-05-16 Thread Brian Evans
commit: 6574efff52ced6f4139d31e5e3fa494e3a31e119
Author: Brian Evans  gentoo  org>
AuthorDate: Wed May 16 19:20:06 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed May 16 19:23:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6574efff

profiles: amd64/17.1/profile.bashrc - Dereference symlink to /lib and /usr/lib

Advanced users may want /lib and/or /usr/lib to point somewhere else

This checks what should not be and warns but still lets those
advanced people do what they like.

 profiles/default/linux/amd64/17.1/profile.bashrc | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/profiles/default/linux/amd64/17.1/profile.bashrc 
b/profiles/default/linux/amd64/17.1/profile.bashrc
index 44dc51c5540..7019782fb8f 100644
--- a/profiles/default/linux/amd64/17.1/profile.bashrc
+++ b/profiles/default/linux/amd64/17.1/profile.bashrc
@@ -1,7 +1,9 @@
-if [[ "${EBUILD_PHASE}" == "setup" ]] && [[ -L ${ROOT%/}/lib || -L 
${ROOT%/}/usr/lib ]] ; then
-   eerror "Please follow the instructions in the news item:"
-   eerror "2017-12-26-experimental-amd64-17-1-profiles"
-   eerror "or choose the 17.0 profile."
-   die "ERROR: 17.1 migration has not been performed!!"
+if [[ "${EBUILD_PHASE}" == "setup" ]] ; then
+   if [[ "$(realpath ${ROOT%/}/lib)" == "${ROOT%/}/lib64" || "$(realpath 
${ROOT%/}/usr/lib)" == "${ROOT%/}/usr/lib64" ]] ; then
+   eerror "Please follow the instructions in the news item:"
+   eerror "2017-12-26-experimental-amd64-17-1-profiles"
+   eerror "or choose the 17.0 profile."
+   die "ERROR: 17.1 migration has not been performed!!"
+   fi
 fi
 



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

2018-05-16 Thread Lars Wendler
commit: 75a69dc7a39a5fbb3aca2a0ad71d4ca2640d5a8a
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed May 16 19:20:38 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed May 16 19:20:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75a69dc7

games-strategy/freeciv: Bump to version 2.6.0_beta3. Removed old.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 games-strategy/freeciv/Manifest | 2 +-
 .../freeciv/{freeciv-2.6.0_beta2.ebuild => freeciv-2.6.0_beta3.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-strategy/freeciv/Manifest b/games-strategy/freeciv/Manifest
index 68e908dea79..ffd9e563bfb 100644
--- a/games-strategy/freeciv/Manifest
+++ b/games-strategy/freeciv/Manifest
@@ -1,2 +1,2 @@
 DIST freeciv-2.5.11.tar.bz2 40940090 BLAKE2B 
dfc1e714e1a3122335f555c2e57352726bda60dc0d1700b0d8ae937c85cba6beb0b2a6ffa6266b77437934ed85f1740f319c379a10c217161ee147f2339a50d3
 SHA512 
f5eac2fc2b7e09b9fd3b8b45145a5359f8216aef49050c692893d30584000c7db2f2a6e66ac19e67186e2653efaa0aa7656abefe2d2de25d123e9a52ce604456
-DIST freeciv-2.6.0-beta2.tar.bz2 51503051 BLAKE2B 
45bf863a530d726261670cbdcd16daefeecaa72e3f090d98d274baa0cd52f3cd0dd1807d660863c822a2dafd170ad51a6b45d756c43aaf6e95e70c74460ce90b
 SHA512 
e92411f43192dc28bcd492f7e78f455cbc18264c7720dd8d35eb86fcc6da5e3927d79751bd1cd6f88d2904283c0844910415df5d7e36d0b9b76ab5fe3c872976
+DIST freeciv-2.6.0-beta3.tar.bz2 51761039 BLAKE2B 
a01e1df80eaa7ab76416190d8c32941e443481b6f7460155f3180548919270bec5bf6efde698931c44d427e17c6347299c0674ed2fc59b5b3c6a8ee5b97c9cf0
 SHA512 
c8a49ab77d799a65d181632a565d92cd0f9c2cd9fbaa5ce963eddc9abca29ccb9567bc3f731ad80b3f3593dd807c3d702abbe378824e3adef655edb8100711f5

diff --git a/games-strategy/freeciv/freeciv-2.6.0_beta2.ebuild 
b/games-strategy/freeciv/freeciv-2.6.0_beta3.ebuild
similarity index 100%
rename from games-strategy/freeciv/freeciv-2.6.0_beta2.ebuild
rename to games-strategy/freeciv/freeciv-2.6.0_beta3.ebuild



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

2018-05-16 Thread Göktürk Yüksek
commit: 9804a4e8dfab556ffc251dbe3aedfc8c6864cfbb
Author: kuzetsa  gmail  com>
AuthorDate: Wed May 16 16:46:59 2018 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed May 16 19:13:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9804a4e8

sys-kernel/ck-sources: genpatches-4.9-103

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/sys-kernel/ck-sources/Manifest b/sys-kernel/ck-sources/Manifest
index 593bedbbe85..6d5c914bbee 100644
--- a/sys-kernel/ck-sources/Manifest
+++ b/sys-kernel/ck-sources/Manifest
@@ -29,6 +29,9 @@ DIST genpatches-4.16-9.extras.tar.xz 17492 BLAKE2B 
2e9bb4e33e33f0b5ba923bc0036a3
 DIST genpatches-4.9-102.base.tar.xz 1971300 BLAKE2B 
1d0a9bdbabb19e482249668052f06578c791a90b15fd771969e58049f8fd7c029901d78ff4424915f1a7d245a02757f19b3796500b508d8cc7c7ff93fec6fc5c
 SHA512 
002cb87ba93db70f6de6bc0fba42c49b2d3ab69ce9f28f783a161b0c0b60d7235f583b535ec7f9735974decb98206f73a36b8ffbf2521ec524cbf5ccb0793c89
 DIST genpatches-4.9-102.experimental.tar.xz 106380 BLAKE2B 
59e2fda5661bcb77a1e60fc6fe9dc8a78476891ea203e2b4ec02389c01e702200bf5dbe8fe1d9bfecdd6ad59fa43d1e20c9738f929949c3442ec301b0a4a27d5
 SHA512 
0cfe440902f209e9e74bbb424780b19538d05d43388ca6d067633be479c0ba6b459d766617a42282ff53ed25374da469226825f31969ef7c128d2620b69af43e
 DIST genpatches-4.9-102.extras.tar.xz 17356 BLAKE2B 
d9a05e5b95c7a4c2477f01c7cef7b58697d6dc4d519bec5494fdc946a1a2b6e5a2fd9a0b6155dac84539a0aa6b2dd4583aa9180b19702062567189a460859387
 SHA512 
3b97bdb3f49676a43f378a95773b38c3650aba89f2d74e55f14762868983254250654ca56368cab41a150b04a32a190d8238a7bb0209196b80202cb2e9ca5040
+DIST genpatches-4.9-103.base.tar.xz 1979040 BLAKE2B 
767d35109446a55c229bd3cd7a66beece88557f810b1ed1548d556e21205e2ed50eb5ee3d3aeb21255f5a1f7878ecaa722b3cc2dd0a45f116cb9288f04ae2d2c
 SHA512 
8ccfe558b0ff3fea8765664a5304b67c7e244fbe88990cdb50f82b6e9b88c2abfd865663329458c5455cafc29f62bcfa5e3a6d6557a989af99ea0899a4ebbb92
+DIST genpatches-4.9-103.experimental.tar.xz 106388 BLAKE2B 
c8a171fda6fd70e17662b779805cc7353303159443fc4031f153bb8acda5c3632aaf331d1720c389b030fbc837d25522c4abbf6cb1858e7023ba292c5373b633
 SHA512 
db1c60f4c5356cc67e26244af373678fa7b51155c620cb8d62ae966e63e5b2c8320167bae699137135fd2e522337e197d6e2d8c1bf9f736ba5fc0657243218a3
+DIST genpatches-4.9-103.extras.tar.xz 17356 BLAKE2B 
e84df76263c11d9ae1fe5bbbad0d24dfd2e866f625deab07f7b72404c351237ac28f8907cb4ef30e5bb88947ef303e1c8c4123acf4c6f899aa66f2ccfab5de41
 SHA512 
49025fe6fd388ddf72cdb3cbb68f24ae8225d4356459bbb2f8677b90488eb49f27e62591f98f87038f2d17d0355c55bf0c38b8fb94e3929a0619ebf2bccd06e6
 DIST genpatches-4.9-96.base.tar.xz 1813704 BLAKE2B 
43236fbdf22137a2f98c617919e3a21208cf7269a5d5e51d705734610e348f443b57677e3c00aa1d75a73c68314de537252eb24bd23cf83e8d7de05c2f111526
 SHA512 
c8275aad26fce06c6f8286d4341964031aaa5308ee4e0396fde48f3abbc97fc47db6bcc67764ba424dbed6d93fcc935f07831c20c5dada21acdd9e2d9575a5d8
 DIST genpatches-4.9-96.experimental.tar.xz 106408 BLAKE2B 
a959d2df5d348d1dac693e9e99169f7f87a0234cd45e4a7b8f77e5d446cb844ed210ae64e7d5f50239e5d4e1d55da67ab740cf803d428a683d23ac481731ce80
 SHA512 
aa23d0364460a82382f6554416019ae1bec6fb61e3dc18ed2c9366b25f47fac447c30ba5316b5b627e041710cfd33d8411c998bba1e5e9ace722aca304ce9816
 DIST genpatches-4.9-96.extras.tar.xz 17352 BLAKE2B 
ab1643d3b767b33a4f0cf1d5de5fd373d7de89f2eec1d0c626cab8155b057d18667f614bc1cf29926e5c55538ed4570ef9c25aef171f13d8c86fb3aa130174d7
 SHA512 
7a56e5b5108ed398696e220c25859ac1a5a9e02afac6659977f1c38b8d0731ee9b8455654d3e5d03e50f188ea0eaf2e8714435eb241a4bb7fdc6f2b273859661

diff --git a/sys-kernel/ck-sources/ck-sources-4.9.100.ebuild 
b/sys-kernel/ck-sources/ck-sources-4.9.100.ebuild
new file mode 100644
index 000..e4306f6ab3f
--- /dev/null
+++ b/sys-kernel/ck-sources/ck-sources-4.9.100.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~x86"
+
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches/
+   http://kernel.kolivas.org/;
+
+K_WANT_GENPATCHES="base extras experimental"
+K_EXP_GENPATCHES_PULL="1"
+K_EXP_GENPATCHES_NOUSE="1"
+K_GENPATCHES_VER="103"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+
+PYTHON_COMPAT=( python2_7 )
+inherit python-any-r1 kernel-2
+detect_version
+detect_arch
+
+DEPEND="deblob? ( ${PYTHON_DEPS} )"
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+
+DESCRIPTION="Con Kolivas' high performance patchset and Gentoo's genpatches 
for Linux ${K_BRANCH_ID}"
+
+CK_VERSION="1"
+
+CK_FILE="patch-${K_BRANCH_ID}-ck${CK_VERSION}.xz"
+
+CK_BASE_URL="http://ck.kolivas.org/patches/4.0;
+CK_LVER_URL="${CK_BASE_URL}/${K_BRANCH_ID}/${K_BRANCH_ID}-ck${CK_VERSION}"
+CK_URI="${CK_LVER_URL}/${CK_FILE}"
+
+# solves bug #606866 (Fix build for CONFIG_FREEZER 

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

2018-05-16 Thread Göktürk Yüksek
commit: 8f4c952514a2f486aa71ed28e1d7d156c5f9410f
Author: kuzetsa  gmail  com>
AuthorDate: Wed May 16 16:47:56 2018 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed May 16 19:13:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f4c9525

sys-kernel/ck-sources: genpatches-4.14-46

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-kernel/ck-sources/Manifest  |  3 ++
 sys-kernel/ck-sources/ck-sources-4.14.41.ebuild | 67 +
 2 files changed, 70 insertions(+)

diff --git a/sys-kernel/ck-sources/Manifest b/sys-kernel/ck-sources/Manifest
index 6d5c914bbee..c36a513acf7 100644
--- a/sys-kernel/ck-sources/Manifest
+++ b/sys-kernel/ck-sources/Manifest
@@ -17,6 +17,9 @@ DIST genpatches-4.14-40.extras.tar.xz 17496 BLAKE2B 
2240a8879139d6ad765a9e38d0ef
 DIST genpatches-4.14-45.base.tar.xz 1175760 BLAKE2B 
6bc299d8072aa6e1f0ee3d338f20ecf9e17bc3f3c89b6458fa3c3b5616a58b69d32ff1c173202dc95a8a234a1cf3f6eee0f74028f6b386d39c1319f93dc3fcd4
 SHA512 
f1431f24c17bbe49e3f08d4041aba88bce22ef560c89cfe5c9abe4fead0305de7b27649e1dca8965867f115fc153839880eac5905aca74949289c8a061286932
 DIST genpatches-4.14-45.experimental.tar.xz 5184 BLAKE2B 
501c9b838f5e44380043ceaa9f8a5d9097bcd97c9113874cd8c9959224d1556e64867605c803e02ba92f70e250cb8f96728dee728e52b97feaf43eeb75a95fdd
 SHA512 
907a896f768ac555d04c7d5278c632bf9a89c556a1ba863d01ba73cfa98f20c5b12742cd057bcb6037b41d12420069ac7a2453774d1a79a4e68e1216c188192b
 DIST genpatches-4.14-45.extras.tar.xz 17496 BLAKE2B 
c7fca4b94f96e36704f4f7aea0daac855515544d54a286dc90791e8318ef172771665ce132872351da9e26a0231f0b3e356cf9380c59ea52358ece117a23157e
 SHA512 
eba699a9b0615b096358e967c1ee68989f1374ba9a4f281f232aca8ea459b30446551346a081b4a61067a4e94fedfbe2e470708801a4e9bc3049b69f6558fa14
+DIST genpatches-4.14-46.base.tar.xz 1190412 BLAKE2B 
cf4c875da660153fdc018e10a208d0277ca7e9645aa3ced2a6331f182a9eb50ad3f459d94680f0749cff6cf2e2900930a169873b0e3076d54b4155a4718aba5b
 SHA512 
8704a4855b85b5ae151cbf66300ba7b0f546e7283fb58cfa8db32c038b32d00481770d9152e6a616f90010709215d7c07fcebd7ddfabd2978397b669894d794d
+DIST genpatches-4.14-46.experimental.tar.xz 5184 BLAKE2B 
501c9b838f5e44380043ceaa9f8a5d9097bcd97c9113874cd8c9959224d1556e64867605c803e02ba92f70e250cb8f96728dee728e52b97feaf43eeb75a95fdd
 SHA512 
907a896f768ac555d04c7d5278c632bf9a89c556a1ba863d01ba73cfa98f20c5b12742cd057bcb6037b41d12420069ac7a2453774d1a79a4e68e1216c188192b
+DIST genpatches-4.14-46.extras.tar.xz 17496 BLAKE2B 
c7fca4b94f96e36704f4f7aea0daac855515544d54a286dc90791e8318ef172771665ce132872351da9e26a0231f0b3e356cf9380c59ea52358ece117a23157e
 SHA512 
eba699a9b0615b096358e967c1ee68989f1374ba9a4f281f232aca8ea459b30446551346a081b4a61067a4e94fedfbe2e470708801a4e9bc3049b69f6558fa14
 DIST genpatches-4.15-20.base.tar.xz 464468 BLAKE2B 
b3c30e02819663b31b4ed83794d57c4521fe13015a4419088664f017f4753117bbc88a5600e310092d8eaf8b132b0757d59fb7b503abef046db0249ed7ae96e6
 SHA512 
cf79c85b65f3a68d3d721d2425fb6e498df808097bd8b1c610023d0c36c0378ec0f92d33ee0dc39592730d87f4a1df52931ea9608be2d56d5543a201f9d1d658
 DIST genpatches-4.15-20.experimental.tar.xz 5184 BLAKE2B 
96ab38624869b7ca2caddceea1be6701c6a9df489dda0be4736765a6546909d522f5b32a44506875270485606797357bf44e044ed61ee40f6171670a5956bdbb
 SHA512 
673083672ca1758f0b3dcc4507bd18c3ea1c024c86f1f8e0bcafe6117f33e226ad981fa123f1b3317858b93f5a17b5f56924e5e5eefb6c0980fc8572626010da
 DIST genpatches-4.15-20.extras.tar.xz 17492 BLAKE2B 
a610729f55d64e3ef6dee6129879f5ae27f31bb2738b0d8d3270f3502eaa19024323a741f0ac3325ba72342ae9e3c7fc9b4dbd56f8763a4be29e825d98a17b18
 SHA512 
304fa9e1f83f5b8e2fe10905799badc8bd8e9ac981fd59b3568f9d9d208dc671ec4dc1b88163351322d047596db4d2c8f9a261dbefa3351cf25f321b84beca9e

diff --git a/sys-kernel/ck-sources/ck-sources-4.14.41.ebuild 
b/sys-kernel/ck-sources/ck-sources-4.14.41.ebuild
new file mode 100644
index 000..4c16f5a4afa
--- /dev/null
+++ b/sys-kernel/ck-sources/ck-sources-4.14.41.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~x86"
+
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches/
+   http://kernel.kolivas.org/;
+
+IUSE="experimental"
+
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="46"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+
+PYTHON_COMPAT=( python2_7 )
+inherit python-any-r1 kernel-2
+detect_version
+detect_arch
+
+DEPEND="deblob? ( ${PYTHON_DEPS} )"
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+
+DESCRIPTION="Con Kolivas' high performance patchset and Gentoo's genpatches 
for Linux ${K_BRANCH_ID}"
+
+CK_VERSION="1"
+
+CK_FILE="patch-${K_BRANCH_ID}-ck${CK_VERSION}.xz"
+
+CK_BASE_URL="http://ck.kolivas.org/patches/4.0;
+CK_LVER_URL="${CK_BASE_URL}/${K_BRANCH_ID}/${K_BRANCH_ID}-ck${CK_VERSION}"
+CK_URI="${CK_LVER_URL}/${CK_FILE}"
+CK_URI="${CK_LVER_URL}/${CK_FILE}"
+
+# Fix for: 

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

2018-05-16 Thread Göktürk Yüksek
commit: 47c0c456555c99ae5f7a10b8e18b81dcf605e363
Author: kuzetsa  gmail  com>
AuthorDate: Wed May 16 16:48:53 2018 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed May 16 19:13:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47c0c456

sys-kernel/ck-sources: genpatches-4.16-10

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/sys-kernel/ck-sources/Manifest b/sys-kernel/ck-sources/Manifest
index c36a513acf7..8ab6b0fef44 100644
--- a/sys-kernel/ck-sources/Manifest
+++ b/sys-kernel/ck-sources/Manifest
@@ -26,6 +26,9 @@ DIST genpatches-4.15-20.extras.tar.xz 17492 BLAKE2B 
a610729f55d64e3ef6dee6129879
 DIST genpatches-4.15-21.base.tar.xz 479732 BLAKE2B 
3d2b40d4ed60e68712a498b184ff58cb72a7902b75ecd35efc98f2a6455dc902b1c02d459837e7ca17465ceeae380e20ed12cfe50f1bcc4a884eef0d80e05360
 SHA512 
e92ad5ee6cfc8d7a57eba044ae6bd86344a0e8eca11c89d0de9fbe3410b0d7582c38d48281ae8d0c17992b151cb35a9916835a6963402732449e150ff5e471d6
 DIST genpatches-4.15-21.experimental.tar.xz 5184 BLAKE2B 
4c1bdbd651ea3c20d44194e0bcc5ab3dce499182ce31a8436ec46875cde2d4b14a0cc5f0eb90cef0aaea167b49a25775be24b38a2b2bfa606a415627f87d96fc
 SHA512 
05a8084dff8f08f9ba84b90230b4bf50a521ba1e0dfe792f30a3f775772f2097e43927c6c5878ba19bd97fed66036c5b29309a0b1a5e914ec895281440be8c8d
 DIST genpatches-4.15-21.extras.tar.xz 17496 BLAKE2B 
2240a8879139d6ad765a9e38d0ef78c78ac9e92f54c5317912b512ab1a64fd42fd512696f1820718a1fbfa658c8775bbae358db483ded60e65d504f4a81aa4e0
 SHA512 
e6070bd5631bb41e1e0e73c9381993779cc6095525a6eab5d8387641e1fce534617d368bd6a02c5f5d8d2669db6f480d284a64c8f76fc218e29df5a34937e1dc
+DIST genpatches-4.16-10.base.tar.xz 215644 BLAKE2B 
b2706d34e5778c3453aac5e63c006a94a1f35ebf164cff8af692b754721205303a3d22a1cf7715a1809359d166191dbe29503ae0632af421c34ac59210876ee0
 SHA512 
0d290d1853481052b74dea62c16f1c9d25d3b27b9fffa5f444d48e23a4dcf79cd12008940c2ab8cd6af3733003a287620148a4535431081a7d37e7b9d5c1
+DIST genpatches-4.16-10.experimental.tar.xz 5164 BLAKE2B 
f99e68621a2e5b17e4f6bef55a24ec2c52c442abfa35230e869ae008e4fca3721375e4a93a4f6cd7c49f09e5412ba4cd753bedab2fb4ae85fad57dfb8761f04f
 SHA512 
4288ddbd0123242c5e22b69645f9da7d706c08c7dd313c7c59481ffd42c395076e7aac8bc26736729d04cebe5b1da579cadeca1ecd4644bcf1d786e402e87642
+DIST genpatches-4.16-10.extras.tar.xz 17488 BLAKE2B 
75169c7816271f85df521749f6da4a706217797b10a4b3bd8ff7cdb37e380c3427f442428707449afa361956bb0197cc4c30f794491bb9ba1f5056abc586d2ad
 SHA512 
dc8253041478cfb0ce1f6d5d1ec5a4e006320822e14b79f40fea752575e47444948987c17b8ad90d1bf5febece034393f49ab8a049e5e33078831e8e640c27e2
 DIST genpatches-4.16-9.base.tar.xz 196768 BLAKE2B 
25c4b6a22a9a07af643ddc73fea2cf6e997f5cca89f86cf8386286d1b63e0c0dd393f138f66f87773d9eba382bcaec3a2562d2a4c22140a61358cd2612e11d4f
 SHA512 
aab3c760270e8d72c892d58a88fac3db792150a8f7157a2fb656d52ecfb29c9f6a049783ec9583b98b9cfd09ae6f77f672ef375d6a260cb2cb4df8157e5398a7
 DIST genpatches-4.16-9.experimental.tar.xz 5164 BLAKE2B 
0e8c1ce1a65404faafe4c0c7163cf87ce4ba4195edec6caab0dcb5351c6b211b233b6b659a7521e48e11e0fcf726e23341728591e9dbf305a4cac4500175
 SHA512 
9b4003d7902152183e4a76c54e0d4d09da33c9956aadafef4b11cdde81f7539a0d7931f4ae7d4d7e02928bbd7c128eba5fda00319723c1f7c2a7abb34ecddc9c
 DIST genpatches-4.16-9.extras.tar.xz 17492 BLAKE2B 
2e9bb4e33e33f0b5ba923bc0036a3697abefcf7c439dfba68beb0c4d0a558dffde1c9224f56da6bbea560bec3664cb1025c0ce1c961037598523d1af0d0513fb
 SHA512 
e1ed8a1532488aa849969a90bf299eaf39233695eb9bda7b070a87906b8891e2332a06234d4b2c98338b04380020387b8fb212dc95072ae79cc58274e8118656

diff --git a/sys-kernel/ck-sources/ck-sources-4.16.9.ebuild 
b/sys-kernel/ck-sources/ck-sources-4.16.9.ebuild
new file mode 100644
index 000..7a7e0e9f590
--- /dev/null
+++ b/sys-kernel/ck-sources/ck-sources-4.16.9.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+KEYWORDS="~amd64 ~x86"
+
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches/
+   http://kernel.kolivas.org/;
+
+IUSE="experimental"
+
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="10"
+K_SECURITY_UNSUPPORTED="1"
+K_DEBLOB_AVAILABLE="1"
+
+PYTHON_COMPAT=( python2_7 )
+inherit python-any-r1 kernel-2
+detect_version
+detect_arch
+
+DEPEND="deblob? ( ${PYTHON_DEPS} )"
+
+K_BRANCH_ID="${KV_MAJOR}.${KV_MINOR}"
+
+DESCRIPTION="Con Kolivas' high performance patchset and Gentoo's genpatches 
for Linux ${K_BRANCH_ID}"
+
+CK_VERSION="1"
+
+CK_FILE="patch-${K_BRANCH_ID}-ck${CK_VERSION}.xz"
+
+CK_BASE_URL="http://ck.kolivas.org/patches/4.0;
+CK_LVER_URL="${CK_BASE_URL}/${K_BRANCH_ID}/${K_BRANCH_ID}-ck${CK_VERSION}"
+CK_URI="${CK_LVER_URL}/${CK_FILE}"
+CK_URI="${CK_LVER_URL}/${CK_FILE}"
+
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI} 

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

2018-05-16 Thread Lars Wendler
commit: f0f2368ce5bc5d28cf6e0a0019bcdd226853187f
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed May 16 18:42:53 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed May 16 19:12:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0f2368c

games-strategy/freeciv: Removed old.

Package-Manager: Portage-2.3.36, Repoman-2.3.9

 games-strategy/freeciv/Manifest  |   1 -
 games-strategy/freeciv/freeciv-2.5.10.ebuild | 177 ---
 2 files changed, 178 deletions(-)

diff --git a/games-strategy/freeciv/Manifest b/games-strategy/freeciv/Manifest
index 85f6bc2183f..68e908dea79 100644
--- a/games-strategy/freeciv/Manifest
+++ b/games-strategy/freeciv/Manifest
@@ -1,3 +1,2 @@
-DIST freeciv-2.5.10.tar.bz2 40920632 BLAKE2B 
1fb6d3d8130088c818ffe95c68a4061732278da8b7e477347cc67e7cc770526a65006844db0d3ecdb462a903fb5589d18666ffe6c9262956bf30fbc0c79742e5
 SHA512 
198ea42af083ebbfc4d79cbcbc9fc2dd548c92581301d77fd9cff0e2addc7b7255090471dc52aceb966320958b3a4c542615d5ec91a114dfc805fe993864a6f5
 DIST freeciv-2.5.11.tar.bz2 40940090 BLAKE2B 
dfc1e714e1a3122335f555c2e57352726bda60dc0d1700b0d8ae937c85cba6beb0b2a6ffa6266b77437934ed85f1740f319c379a10c217161ee147f2339a50d3
 SHA512 
f5eac2fc2b7e09b9fd3b8b45145a5359f8216aef49050c692893d30584000c7db2f2a6e66ac19e67186e2653efaa0aa7656abefe2d2de25d123e9a52ce604456
 DIST freeciv-2.6.0-beta2.tar.bz2 51503051 BLAKE2B 
45bf863a530d726261670cbdcd16daefeecaa72e3f090d98d274baa0cd52f3cd0dd1807d660863c822a2dafd170ad51a6b45d756c43aaf6e95e70c74460ce90b
 SHA512 
e92411f43192dc28bcd492f7e78f455cbc18264c7720dd8d35eb86fcc6da5e3927d79751bd1cd6f88d2904283c0844910415df5d7e36d0b9b76ab5fe3c872976

diff --git a/games-strategy/freeciv/freeciv-2.5.10.ebuild 
b/games-strategy/freeciv/freeciv-2.5.10.ebuild
deleted file mode 100644
index b235bb640ff..000
--- a/games-strategy/freeciv/freeciv-2.5.10.ebuild
+++ /dev/null
@@ -1,177 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils flag-o-matic gnome2-utils
-
-DESCRIPTION="multiplayer strategy game (Civilization Clone)"
-HOMEPAGE="http://www.freeciv.org/;
-SRC_URI="mirror://sourceforge/freeciv/${P}.tar.bz2"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="auth aimodules dedicated +gtk ipv6 mapimg modpack mysql nls qt5 readline 
sdl +server +sound sqlite system-lua"
-
-# postgres isn't yet really supported by upstream
-RDEPEND="app-arch/bzip2
-   app-arch/xz-utils
-   net-misc/curl
-   sys-libs/zlib
-   auth? (
-   mysql? ( virtual/mysql )
-   sqlite? ( dev-db/sqlite:3 )
-   !mysql? ( ( !sqlite? ( virtual/mysql ) ) )
-   )
-   readline? ( sys-libs/readline:0= )
-   dedicated? ( aimodules? ( dev-libs/libltdl:0 ) )
-   !dedicated? (
-   media-libs/libpng:0
-   gtk? ( x11-libs/gtk+:2 )
-   mapimg? ( media-gfx/imagemagick:= )
-   modpack? ( x11-libs/gtk+:2 )
-   nls? ( virtual/libintl )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   )
-   sdl? (
-   media-libs/libsdl[video]
-   media-libs/sdl-gfx
-   media-libs/sdl-image[png]
-   media-libs/sdl-ttf
-   )
-   server? ( aimodules? ( sys-devel/libtool:2 ) )
-   sound? (
-   media-libs/libsdl[sound]
-   media-libs/sdl-mixer[vorbis]
-   )
-   !sdl? ( !gtk? ( x11-libs/gtk+:2 ) )
-   )
-   system-lua? ( >=dev-lang/lua-5.2 )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   !dedicated? (
-   x11-proto/xextproto
-   nls? ( sys-devel/gettext )
-   )"
-
-pkg_setup() {
-   if use !dedicated && use !server ; then
-   ewarn "Disabling server USE flag will make it impossible"
-   ewarn "to start local games, but you will still be able to"
-   ewarn "join multiplayer games."
-   fi
-}
-
-src_prepare() {
-   default
-
-   # install the .desktop in /usr/share/applications
-   # install the icons in /usr/share/pixmaps
-   sed -i \
-   -e 's:^.*\(desktopfiledir = \).*:\1/usr/share/applications:' \
-   -e 's:^\(icon[0-9]*dir = \)$(prefix)\(.*\):\1/usr\2:' \
-   -e 's:^\(icon[0-9]*dir = \)$(datadir)\(.*\):\1/usr/share\2:' \
-   client/Makefile.in \
-   server/Makefile.in \
-   tools/Makefile.in \
-   data/icons/Makefile.in || die
-   sed -i -e 's/=SDL/=X-SDL/' bootstrap/freeciv-sdl.desktop.in || die
-}
-
-src_configure() {
-   local myclient mydatabase myeconfargs
-
-   if use auth ; then
-   if ! use mysql && ! use 

[gentoo-commits] repo/gentoo:master commit in: games-strategy/freeciv/, games-strategy/freeciv/files/

2018-05-16 Thread Lars Wendler
commit: 855784a25ceb0d58033f2fb7cd07682677286e28
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed May 16 19:11:48 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed May 16 19:12:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=855784a2

games-strategy/freeciv: Use pkg-config to find freetype

Bug: https://bugs.gentoo.org/655884
Package-Manager: Portage-2.3.36, Repoman-2.3.9

 .../files/freeciv-2.5.11-freetype_pkgconfig.patch  | 229 +
 games-strategy/freeciv/freeciv-2.5.11.ebuild   |   8 +-
 2 files changed, 236 insertions(+), 1 deletion(-)

diff --git 
a/games-strategy/freeciv/files/freeciv-2.5.11-freetype_pkgconfig.patch 
b/games-strategy/freeciv/files/freeciv-2.5.11-freetype_pkgconfig.patch
new file mode 100644
index 000..b41411c8a16
--- /dev/null
+++ b/games-strategy/freeciv/files/freeciv-2.5.11-freetype_pkgconfig.patch
@@ -0,0 +1,229 @@
+From fe3eaf658c256a1ee1aac645c004625e9f345421 Mon Sep 17 00:00:00 2001
+From: Lars Wendler 
+Date: Wed, 16 May 2018 20:41:22 +0200
+Subject: [PATCH] Use pkg-config to find freetype
+
+As of freetype-2.9.1 the freetype-config script no longer gets installed
+by default.
+---
+ m4/freetype2.m4  | 194 ---
+ m4/sdl-client.m4 |   2 +-
+ 2 files changed, 1 insertion(+), 195 deletions(-)
+ delete mode 100644 m4/freetype2.m4
+
+diff --git a/m4/freetype2.m4 b/m4/freetype2.m4
+deleted file mode 100644
+index 3d0ecb3554..00
+--- a/m4/freetype2.m4
 /dev/null
+@@ -1,194 +0,0 @@
+-# Configure paths for FreeType2
+-# Marcelo Magallon 2001-10-26, based on gtk.m4 by Owen Taylor
+-#
+-# Copyright 2001, 2003, 2007, 2009 by
+-# David Turner, Robert Wilhelm, and Werner Lemberg.
+-#
+-# This file is part of the FreeType project, and may only be used, modified,
+-# and distributed under the terms of the FreeType project license,
+-# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+-# indicate that you have read the license and understand and accept it
+-# fully.
+-#
+-# As a special exception to the FreeType project license, this file may be
+-# distributed as part of a program that contains a configuration script
+-# generated by Autoconf, under the same distribution terms as the rest of
+-# that program.
+-#
+-# serial 3
+-
+-# AC_CHECK_FT2([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
+-# Test for FreeType 2, and define FT2_CFLAGS and FT2_LIBS.
+-# MINIMUM-VERSION is what libtool reports; the default is `7.0.1' (this is
+-# FreeType 2.0.4).
+-#
+-AC_DEFUN([AC_CHECK_FT2],
+-  [# Get the cflags and libraries from the freetype-config script
+-   #
+-   AC_ARG_WITH([ft-prefix],
+- dnl don't quote AS_HELP_STRING!
+- AS_HELP_STRING([--with-ft-prefix=PREFIX],
+-[Prefix where FreeType is installed (optional)]),
+- [ft_config_prefix="$withval"],
+- [ft_config_prefix=""])
+-
+-   AC_ARG_WITH([ft-exec-prefix],
+- dnl don't quote AS_HELP_STRING!
+- AS_HELP_STRING([--with-ft-exec-prefix=PREFIX],
+-[Exec prefix where FreeType is installed (optional)]),
+- [ft_config_exec_prefix="$withval"],
+- [ft_config_exec_prefix=""])
+-
+-   AC_ARG_ENABLE([freetypetest],
+- dnl don't quote AS_HELP_STRING!
+- AS_HELP_STRING([--disable-freetypetest],
+-[Do not try to compile and run a test FreeType program]),
+- [],
+- [enable_fttest=yes])
+-
+-   if test x$ft_config_exec_prefix != x ; then
+- ft_config_args="$ft_config_args --exec-prefix=$ft_config_exec_prefix"
+- if test x${FT2_CONFIG+set} != xset ; then
+-   FT2_CONFIG=$ft_config_exec_prefix/bin/freetype-config
+- fi
+-   fi
+-
+-   if test x$ft_config_prefix != x ; then
+- ft_config_args="$ft_config_args --prefix=$ft_config_prefix"
+- if test x${FT2_CONFIG+set} != xset ; then
+-   FT2_CONFIG=$ft_config_prefix/bin/freetype-config
+- fi
+-   fi
+-
+-   if test "x$FT2_CONFIG" = x ; then
+- AC_PATH_PROG([FT2_CONFIG], [freetype-config], [no])
+-   fi
+-
+-   min_ft_version=m4_if([$1], [], [7.0.1], [$1])
+-   AC_MSG_CHECKING([for FreeType -- version >= $min_ft_version])
+-   no_ft=""
+-   if test "$FT2_CONFIG" = "no" ; then
+- no_ft=yes
+-   else
+- FT2_CFLAGS=`$FT2_CONFIG $ft_config_args --cflags`
+- FT2_LIBS=`$FT2_CONFIG $ft_config_args --libs`
+- ft_config_major_version=`$FT2_CONFIG $ft_config_args --version | \
+-   sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+- ft_config_minor_version=`$FT2_CONFIG $ft_config_args --version | \
+-   sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+- ft_config_micro_version=`$FT2_CONFIG $ft_config_args --version | \
+-   sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+- ft_min_major_version=`echo $min_ft_version | \
+-   sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+- ft_min_minor_version=`echo $min_ft_version | \

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

2018-05-16 Thread Michał Górny
commit: ff5ef2277166a87d23f99c79778dd3c463c494cd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 19:07:55 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 19:11:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff5ef227

app-portage/diffmask: Switch to GitHub

 app-portage/diffmask/diffmask-0.3.3-r3.ebuild | 4 ++--
 app-portage/diffmask/diffmask-.ebuild | 4 ++--
 app-portage/diffmask/metadata.xml | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-portage/diffmask/diffmask-0.3.3-r3.ebuild 
b/app-portage/diffmask/diffmask-0.3.3-r3.ebuild
index 1b7c91a0cd0..7baf9d9b47c 100644
--- a/app-portage/diffmask/diffmask-0.3.3-r3.ebuild
+++ b/app-portage/diffmask/diffmask-0.3.3-r3.ebuild
@@ -7,8 +7,8 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
 inherit distutils-r1
 
 DESCRIPTION="A utility to maintain package.unmask entries up-to-date with 
masks"
-HOMEPAGE="https://bitbucket.org/mgorny/diffmask/;
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2;
+HOMEPAGE="https://github.com/mgorny/diffmask/;
+SRC_URI="https://github.com/mgorny/diffmask/releases/download/${P}/${P}.tar.bz2;
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/app-portage/diffmask/diffmask-.ebuild 
b/app-portage/diffmask/diffmask-.ebuild
index 98a07f61cfe..14151f6b5ab 100644
--- a/app-portage/diffmask/diffmask-.ebuild
+++ b/app-portage/diffmask/diffmask-.ebuild
@@ -7,9 +7,9 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
 inherit distutils-r1 git-r3
 
 DESCRIPTION="A utility to maintain package.unmask entries up-to-date with 
masks"
-HOMEPAGE="https://bitbucket.org/mgorny/diffmask/;
+HOMEPAGE="https://github.com/mgorny/diffmask/;
 SRC_URI=""
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
+EGIT_REPO_URI="https://github.com/mgorny/${PN}.git;
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/app-portage/diffmask/metadata.xml 
b/app-portage/diffmask/metadata.xml
index 787683efe04..a7831157d05 100644
--- a/app-portage/diffmask/metadata.xml
+++ b/app-portage/diffmask/metadata.xml
@@ -17,7 +17,7 @@
mgo...@gentoo.org
Michał Górny

-   https://bitbucket.org/mgorny/diffmask/issues/
-   mgorny/diffmask
+   https://github.com/mgorny/diffmask/issues/
+   mgorny/diffmask

 



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

2018-05-16 Thread Michał Górny
commit: 245cc5106ac760d8d2fcf699457ce06892fb0f67
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 19:06:49 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 19:11:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=245cc510

app-portage/diffmask: Strip conditionals from -

 app-portage/diffmask/diffmask-.ebuild | 17 -
 1 file changed, 4 insertions(+), 13 deletions(-)

diff --git a/app-portage/diffmask/diffmask-.ebuild 
b/app-portage/diffmask/diffmask-.ebuild
index 3b906ae054e..98a07f61cfe 100644
--- a/app-portage/diffmask/diffmask-.ebuild
+++ b/app-portage/diffmask/diffmask-.ebuild
@@ -4,20 +4,16 @@
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
 
-inherit distutils-r1
-
-#if LIVE
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
-inherit git-r3
-#endif
+inherit distutils-r1 git-r3
 
 DESCRIPTION="A utility to maintain package.unmask entries up-to-date with 
masks"
 HOMEPAGE="https://bitbucket.org/mgorny/diffmask/;
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2;
+SRC_URI=""
+EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~x86 ~x86-fbsd"
+KEYWORDS=""
 IUSE=""
 
 RDEPEND="
@@ -25,8 +21,3 @@ RDEPEND="
sys-apps/portage[${PYTHON_USEDEP}]
sys-apps/portage-mgorny[${PYTHON_USEDEP}]
)"
-#if LIVE
-
-KEYWORDS=
-SRC_URI=
-#endif



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

2018-05-16 Thread Michał Górny
commit: ee30c1f6a37873431ba64cddf554f52c8011ce42
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 19:09:22 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 19:11:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee30c1f6

app-portage/diffmask: Bump to EAPI 7

 .../diffmask/{diffmask-.ebuild => diffmask-0.3.3-r4.ebuild}  | 9 -
 app-portage/diffmask/diffmask-.ebuild| 2 +-
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/app-portage/diffmask/diffmask-.ebuild 
b/app-portage/diffmask/diffmask-0.3.3-r4.ebuild
similarity index 70%
copy from app-portage/diffmask/diffmask-.ebuild
copy to app-portage/diffmask/diffmask-0.3.3-r4.ebuild
index 14151f6b5ab..80b09bc47ee 100644
--- a/app-portage/diffmask/diffmask-.ebuild
+++ b/app-portage/diffmask/diffmask-0.3.3-r4.ebuild
@@ -1,19 +1,18 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
 
-inherit distutils-r1 git-r3
+inherit distutils-r1
 
 DESCRIPTION="A utility to maintain package.unmask entries up-to-date with 
masks"
 HOMEPAGE="https://github.com/mgorny/diffmask/;
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/mgorny/${PN}.git;
+SRC_URI="https://github.com/mgorny/diffmask/releases/download/${P}/${P}.tar.bz2;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~mips ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="

diff --git a/app-portage/diffmask/diffmask-.ebuild 
b/app-portage/diffmask/diffmask-.ebuild
index 14151f6b5ab..8c0f4525f82 100644
--- a/app-portage/diffmask/diffmask-.ebuild
+++ b/app-portage/diffmask/diffmask-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
 
 inherit distutils-r1 git-r3



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

2018-05-16 Thread Michał Górny
commit: a05ed6ed30b2d87d1e7d8711cb8060a6fa715c39
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 19:00:44 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 19:03:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05ed6ed

sys-apps/uam: Bump to EAPI 6

 sys-apps/uam/{uam-.ebuild => uam-0.3.2-r1.ebuild} | 11 ---
 sys-apps/uam/uam-.ebuild  | 11 +++
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/sys-apps/uam/uam-.ebuild b/sys-apps/uam/uam-0.3.2-r1.ebuild
similarity index 90%
copy from sys-apps/uam/uam-.ebuild
copy to sys-apps/uam/uam-0.3.2-r1.ebuild
index 5b6acde55b3..409fc7f68e8 100644
--- a/sys-apps/uam/uam-.ebuild
+++ b/sys-apps/uam/uam-0.3.2-r1.ebuild
@@ -1,20 +1,17 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils git-r3 udev user
+inherit udev user
 
 DESCRIPTION="Simple udev-based automounter for removable USB media"
 HOMEPAGE="https://github.com/mgorny/uam/;
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/mgorny/uam.git;
+SRC_URI="https://github.com/mgorny/uam/releases/download/${P}/${P}.tar.bz2;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="virtual/udev"

diff --git a/sys-apps/uam/uam-.ebuild b/sys-apps/uam/uam-.ebuild
index 5b6acde55b3..4aa94933698 100644
--- a/sys-apps/uam/uam-.ebuild
+++ b/sys-apps/uam/uam-.ebuild
@@ -1,11 +1,9 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils git-r3 udev user
+inherit autotools git-r3 udev user
 
 DESCRIPTION="Simple udev-based automounter for removable USB media"
 HOMEPAGE="https://github.com/mgorny/uam/;
@@ -21,6 +19,11 @@ RDEPEND="virtual/udev"
 DEPEND="${RDEPEND}
virtual/pkgconfig"
 
+src_prepare() {
+   default
+   eautoreconf
+}
+
 pkg_postinst() {
# The plugdev group is created by pam, pmount and many other ebuilds
# in gx86. As we don't want to depend on any of them (even pmount is



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

2018-05-16 Thread Michał Górny
commit: d917ea1283802a0ed78028bf89cad5764ca08d62
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 16 18:52:29 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 16 19:03:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d917ea12

sys-apps/uam: Remove conditionals from -

 sys-apps/uam/uam-.ebuild | 19 +--
 1 file changed, 5 insertions(+), 14 deletions(-)

diff --git a/sys-apps/uam/uam-.ebuild b/sys-apps/uam/uam-.ebuild
index 512c8e51355..653f9fe868d 100644
--- a/sys-apps/uam/uam-.ebuild
+++ b/sys-apps/uam/uam-.ebuild
@@ -1,35 +1,26 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-#if LIVE
 AUTOTOOLS_AUTORECONF=yes
-EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
-
-inherit git-r3
-#endif
 
-inherit autotools-utils udev user
+inherit autotools-utils git-r3 udev user
 
 DESCRIPTION="Simple udev-based automounter for removable USB media"
 HOMEPAGE="https://bitbucket.org/mgorny/uam/;
-SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2;
+SRC_URI=""
+EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 IUSE=""
 
 RDEPEND="virtual/udev"
 DEPEND="${RDEPEND}
virtual/pkgconfig"
 
-#if LIVE
-KEYWORDS=
-SRC_URI=
-#endif
-
 pkg_postinst() {
# The plugdev group is created by pam, pmount and many other ebuilds
# in gx86. As we don't want to depend on any of them (even pmount is



  1   2   3   >