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

2017-08-07 Thread Lars Wendler
commit: 8330ceb20c6f347cbb97a6147c1bc407958c12f3
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Aug  7 14:02:55 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue Aug  8 05:52:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8330ceb2

net-misc/fatrat: Removed old.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 net-misc/fatrat/Manifest   |  1 -
 net-misc/fatrat/fatrat-1.2.0_beta2.ebuild  | 56 --
 .../fatrat/files/fatrat-1.2.0_beta2-build.patch| 29 ---
 .../fatrat-1.2.0_beta2-libcrypto_linking.patch | 13 -
 4 files changed, 99 deletions(-)

diff --git a/net-misc/fatrat/Manifest b/net-misc/fatrat/Manifest
index 05928293d76..eb661f0122e 100644
--- a/net-misc/fatrat/Manifest
+++ b/net-misc/fatrat/Manifest
@@ -1,2 +1 @@
-DIST fatrat-1.2.0_beta2.tar.xz 3677188 SHA256 
b9e1116e5754a2cfff952908145eea6f27454cd8a2260422a54be59e43d2d5e5 SHA512 
f8ca441eb7f2264d6c3b6968bcbfc01dcc495340d7b34432a9430065ec7fb4e8f5ce68cde77de42d61577fe3f46014d9ce041ca513e17da8afab2c0888352751
 WHIRLPOOL 
f5c774872c7d9b4f09dd13a04cd0d21a706195eecec103ab883029013228d473f8b82975cc61afcd93001be19ab3350e22288523bc7cac3c043dd2e3e13e0d4f
 DIST fatrat-1.2.0_beta2_p20150803.tar.gz 4308365 SHA256 
e4df2cedc68b0c03848b3b9a5766032de7e845824120079c6916dae8a33164fb SHA512 
a872c4351fd079530d18c3335cc6dc7fd95d1402c39ee6f1a65660b8c271644af5d1e8f48890d75e603f646689936f385404d05631b53b2e655c5357a02eb94a
 WHIRLPOOL 
ec4d6783397e796aca9ec7e252919a116b96cdbb8f7ca9f5040971e229cd2070d624e4421bf22a2c51f75ec2077d4df179e1e729f3e4d4a7c682f3e9f4b59bd2

diff --git a/net-misc/fatrat/fatrat-1.2.0_beta2.ebuild 
b/net-misc/fatrat/fatrat-1.2.0_beta2.ebuild
deleted file mode 100644
index ab50f764a2e..000
--- a/net-misc/fatrat/fatrat-1.2.0_beta2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="Qt4-based download/upload manager"
-HOMEPAGE="http://fatrat.dolezel.info/;
-SRC_URI="http://www.dolezel.info/download/data/${PN}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="bittorrent +curl doc xmpp nls webinterface"
-
-RDEPEND="dev-qt/qtdbus:4
-   dev-qt/qtgui:4
-   dev-qt/qtsvg:4
-   bittorrent? ( >=net-libs/libtorrent-rasterbar-0.14.5
-   >=dev-cpp/asio-1.1.0
-   dev-qt/qtwebkit:4 )
-   curl? ( >=net-misc/curl-7.18.2 )
-   doc? ( dev-qt/qthelp:4 )
-   xmpp? ( net-libs/gloox )
-   webinterface? ( dev-qt/qtscript:4 )"
-DEPEND="${RDEPEND}
-   nls? ( sys-devel/gettext )"
-
-PATCHES=(
-   "${FILESDIR}/${P}-build.patch"
-   "${FILESDIR}/${P}-libcrypto_linking.patch"
-)
-
-src_configure() {
-   local mycmakeargs="
-   $(cmake-utils_use_with bittorrent) \
-   $(cmake-utils_use_with curl) \
-   $(cmake-utils_use_with doc DOCUMENTATION) \
-   $(cmake-utils_use_with xmpp JABBER) \
-   $(cmake-utils_use_with nls) \
-   $(cmake-utils_use_with webinterface)"
-   cmake-utils_src_configure
-}
-
-src_install() {
-   use bittorrent && echo "MimeType=application/x-bittorrent;" >> 
"${S}"/data/${PN}.desktop
-   cmake-utils_src_install
-}
-
-pkg_postinst() {
-   # this is a completely optional and NOT automagic dep
-   if ! has_version dev-libs/geoip; then
-   elog "If you want the GeoIP support, then emerge 
dev-libs/geoip."
-   fi
-}

diff --git a/net-misc/fatrat/files/fatrat-1.2.0_beta2-build.patch 
b/net-misc/fatrat/files/fatrat-1.2.0_beta2-build.patch
deleted file mode 100644
index f1725bfb720..000
--- a/net-misc/fatrat/files/fatrat-1.2.0_beta2-build.patch
+++ /dev/null
@@ -1,29 +0,0 @@
 fatrat-1.2.0_beta2/CMakeLists.txt
-+++ fatrat-1.2.0_beta2/CMakeLists.txt
-@@ -121,16 +121,12 @@
-   endif(curl_FOUND)
- endif(WITH_CURL)
- 
--ADD_DEFINITIONS(-Wl,--stack,524 288)
- if(CMAKE_BUILD_TYPE MATCHES Debug)
-+  ADD_DEFINITIONS(-Wl,--stack,524 288)
-   ADD_DEFINITIONS(-ggdb)
-   ADD_DEFINITIONS(-DDEBUG_BUILD)
-   ADD_DEFINITIONS(-DNDEBUG)
-   ADD_DEFINITIONS(-Wall)
--else(CMAKE_BUILD_TYPE MATCHES Debug)
--  ADD_DEFINITIONS(-ggdb)
--  ADD_DEFINITIONS(-DNDEBUG)
--  ADD_DEFINITIONS(-Wall)
- endif(CMAKE_BUILD_TYPE MATCHES Debug)
- 
- CHECK_INCLUDE_FILES(sys/epoll.h HAVE_SYS_EPOLL_H)
-@@ -577,7 +573,7 @@
- 
- set(fatrat_DEV_HEADERS
-   ${CMAKE_CURRENT_SOURCE_DIR}/src/fatrat.h
--  ${CMAKE_CURRENT_SOURCE_DIR}/config.h
-+  ${CMAKE_CURRENT_BINARY_DIR}/config.h
-   ${CMAKE_CURRENT_SOURCE_DIR}/src/DelayedIcon.h
-   ${CMAKE_CURRENT_SOURCE_DIR}/src/AppTools.h
-   ${CMAKE_CURRENT_SOURCE_DIR}/src/Transfer.h

diff --git a/net-misc/fatrat/files/fatrat-1.2.0_beta2-libcrypto_linking.patch 

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

2017-08-07 Thread Hans de Graaff
commit: 791bb462226bc02f125268895abda4594f674beb
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Aug  8 04:55:52 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Aug  8 04:55:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=791bb462

dev-ruby/hamster: add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/hamster/hamster-3.0.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/hamster/hamster-3.0.0-r1.ebuild 
b/dev-ruby/hamster/hamster-3.0.0-r1.ebuild
index 83847fd4248..1efc4838233 100644
--- a/dev-ruby/hamster/hamster-3.0.0-r1.ebuild
+++ b/dev-ruby/hamster/hamster-3.0.0-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



[gentoo-commits] repo/gentoo:master commit in: www-apps/nanoc/

2017-08-07 Thread Hans de Graaff
commit: 6a5e9df124d5d4e5f81563f701bc794edccd5f6b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Aug  8 04:57:22 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Aug  8 04:57:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a5e9df1

www-apps/nanoc: add 4.7.14

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 www-apps/nanoc/Manifest|  1 +
 www-apps/nanoc/nanoc-4.7.14.ebuild | 67 ++
 2 files changed, 68 insertions(+)

diff --git a/www-apps/nanoc/Manifest b/www-apps/nanoc/Manifest
index 7d15a827b0c..ebdb88b2f88 100644
--- a/www-apps/nanoc/Manifest
+++ b/www-apps/nanoc/Manifest
@@ -3,3 +3,4 @@ DIST nanoc-4.3.8.gem 168960 SHA256 
450676d4c702f4e0ebe7a9ea5d69648cc5eaeaf9a2c3e
 DIST nanoc-4.4.7.gem 227840 SHA256 
714ebdfa0247b60cbac1265889fdfc7981e31f8885b08cf648b0395fe6765c88 SHA512 
32525a80f43246786a7f6d19f269613a4dc397f3a85ebd1676a9a443cb2472b38407511b5248be1cf321af539e1e483b02f55dedaca385ee15eedfee2d02712c
 WHIRLPOOL 
ce921450982f4d4229a40470a09894b56a11318a9bf16a0c98cad94ff5dea5912d4bb026a4e95e51c562f5a2eb57c60bbf445099306736ac3c470c7c818c3fb1
 DIST nanoc-4.5.4.gem 230400 SHA256 
6bb5b62d7421893c7078b086baa94349294454d23def4884f6ce7db3ac1507f8 SHA512 
be7d658ec5ca91c67ab8d96631434a9f90ebca8078eb734c0bdb1ca11724432b2db157955e84a68334aa6542d3e0b1d577bb046300811c23bb52d7191e9a517d
 WHIRLPOOL 
add98630cbe7814be7b811301297f79c7c5f5a471c4fbeedf3ec13682300316353be9e73b31ce9cd1692d4fe5d4687dbde814f0bd3df4730d31e1830465cca07
 DIST nanoc-4.6.4.gem 241152 SHA256 
4fc9c41f8103edc732654ba8559f42007ce6e7013078cf652f05e572c61272aa SHA512 
49e41f5bfc3ae9afc7e40b182374579adbd703954ba97b0cbe68c0e3ac864e7301a90dc5993795636b96155a1d9cfbb102e6bfa321513919123ff680322a2631
 WHIRLPOOL 
bbfd86c526f34258d68e1532ec4629cada74da8a5a6411f6bd5b1fa890693dd614205c9859483b1b796a0de38d9ec1ce21650d69415aa8eb4f08500fa9e27eea
+DIST nanoc-4.7.14.gem 256000 SHA256 
e68fb32763517dbd78b655ad14d2bc69e0828f4cce6488240c4ec89b7d8377a9 SHA512 
e7413771794e9d2931e3be2a5b5575f7cd207d9b11167a1838496edf34bee4e631c362d9ac50fb0f9dddbe2fd5836b402506565c704838327116a18f0ea34088
 WHIRLPOOL 
ff04d10480a2a9ff308d0ac11320f37fcc7afed84221dc9bc86ff8b318a1100d2cdb20634d771612c7e56a727ac3448b094b7d736c5bf38c4f24fc09d9bd7486

diff --git a/www-apps/nanoc/nanoc-4.7.14.ebuild 
b/www-apps/nanoc/nanoc-4.7.14.ebuild
new file mode 100644
index 000..0072b5e9173
--- /dev/null
+++ b/www-apps/nanoc/nanoc-4.7.14.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23"
+
+RUBY_FAKEGEM_EXTRADOC="NEWS.md README.md"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="nanoc is a simple but very flexible static site generator written 
in Ruby"
+HOMEPAGE="https://nanoc.ws/;
+LICENSE="MIT"
+
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE="${IUSE} minimal"
+
+DEPEND+="test? ( app-text/asciidoc app-text/highlight )"
+
+ruby_add_rdepend "!minimal? (
+   dev-ruby/mime-types:*
+   dev-ruby/rack:*
+   www-servers/adsf
+)
+   >=dev-ruby/cri-2.3:0
+   dev-ruby/ddplugin:1
+   =dev-ruby/hamster-3*
+   dev-ruby/ref:2"
+
+ruby_add_bdepend "test? (
+   dev-ruby/rspec:3
+   >=dev-ruby/mocha-0.13
+   dev-ruby/minitest
+   dev-ruby/rdoc
+   dev-ruby/systemu
+   dev-ruby/vcr
+   dev-ruby/webmock
+   dev-ruby/yard
+)
+doc? (
+   dev-ruby/kramdown
+   dev-ruby/rdiscount
+   dev-ruby/yard
+)"
+
+all_ruby_prepare() {
+   # Avoid unneeded development dependencies
+   sed -i -e '/simplecov/,/SimpleCov.formatter/ s:^:#:' test/helper.rb || 
die
+   sed -i -e '/simplecov/I s:^:#:' -e '/codecov/I s:^:#:' 
spec/spec_helper.rb || die
+   sed -i -e '/coverall/I s:^:#:' \
+   -e '/rubocop/ s:^:#:' Rakefile || die
+
+   echo "-r ./spec/spec_helper.rb" > .rspec || die
+
+   # Avoid tests requiring a network connection
+   rm -f test/checking/checks/test_{css,html}.rb || die
+
+   # Avoid tests for unpackaged dependencies
+   rm spec/nanoc/deploying/fog_spec.rb spec/nanoc/filters/less_spec.rb || 
die
+}
+
+each_ruby_test() {
+   RUBYLIB="${S}/lib" ${RUBY} -S rake spec test_all || die
+}



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

2017-08-07 Thread Markus Meier
commit: 4b032c782878cfea3add8394b0568d326451765f
Author: Markus Meier  gentoo  org>
AuthorDate: Tue Aug  8 04:31:47 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue Aug  8 04:31:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b032c78

media-libs/libmtp: arm stable, bug #622910

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

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

diff --git a/media-libs/libmtp/libmtp-1.1.13.ebuild 
b/media-libs/libmtp/libmtp-1.1.13.ebuild
index 1b094d162d5..5f843c805de 100644
--- a/media-libs/libmtp/libmtp-1.1.13.ebuild
+++ b/media-libs/libmtp/libmtp-1.1.13.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]]; then
inherit autotools git-r3
 else
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd 
~x86-fbsd"
+   KEYWORDS="~amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd 
~x86-fbsd"
 fi
 
 DESCRIPTION="An implementation of Microsoft's Media Transfer Protocol (MTP)"



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

2017-08-07 Thread Markus Meier
commit: faff590f4c44278c20a65a0d64d32c2d7ca69dad
Author: Markus Meier  gentoo  org>
AuthorDate: Tue Aug  8 04:32:46 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue Aug  8 04:32:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faff590f

sys-apps/shadow: arm stable, bug #627044

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

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

diff --git a/sys-apps/shadow/shadow-4.5.ebuild 
b/sys-apps/shadow/shadow-4.5.ebuild
index f9c38130ea0..d7c7555b423 100644
--- a/sys-apps/shadow/shadow-4.5.ebuild
+++ b/sys-apps/shadow/shadow-4.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/shadow-maint/shadow/releases/download/${PV}/${P}.tar
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-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="acl audit cracklib nls pam selinux skey xattr"
 # Taken from the man/Makefile.am file.
 LANGS=( cs da de es fi fr hu id it ja ko pl pt_BR ru sv tr zh_CN zh_TW )



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

2017-08-07 Thread Markus Meier
commit: e700dbdd29ae4ce20894ca44f689f7823ba81710
Author: Markus Meier  gentoo  org>
AuthorDate: Tue Aug  8 04:32:21 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue Aug  8 04:32:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e700dbdd

media-video/ffmpeg: arm stable, bug #622912

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

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

diff --git a/media-video/ffmpeg/ffmpeg-3.2.6.ebuild 
b/media-video/ffmpeg/ffmpeg-3.2.6.ebuild
index efe41b67258..7a663545d22 100644
--- a/media-video/ffmpeg/ffmpeg-3.2.6.ebuild
+++ b/media-video/ffmpeg/ffmpeg-3.2.6.ebuild
@@ -54,7 +54,7 @@ LICENSE="
samba? ( GPL-3 )
 "
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
 fi
 
 # Options to use as use_enable in the foo[:bar] form.



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

2017-08-07 Thread Markus Meier
commit: 36bc8e28df85f91ba976d4e4d3737f5e7b790bb9
Author: Markus Meier  gentoo  org>
AuthorDate: Tue Aug  8 04:30:56 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue Aug  8 04:30:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36bc8e28

media-libs/openh264: arm stable, bug #604420

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

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

diff --git a/media-libs/openh264/openh264-1.7.0.ebuild 
b/media-libs/openh264/openh264-1.7.0.ebuild
index df9f74f2f81..5e6a20d6b0e 100644
--- a/media-libs/openh264/openh264-1.7.0.ebuild
+++ b/media-libs/openh264/openh264-1.7.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/cisco/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz
https://github.com/mozilla/gmp-api/archive/Firefox${MOZVER}.tar.gz -> 
gmp-api-Firefox${MOZVER}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
 IUSE="+plugin utils"
 
 RESTRICT="bindist"



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

2017-08-07 Thread Markus Meier
commit: b79eda7c53f7784ee9506e5a529d83c2174c96e4
Author: Markus Meier  gentoo  org>
AuthorDate: Tue Aug  8 04:31:26 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue Aug  8 04:31:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b79eda7c

dev-lang/ruby: arm stable, bug #605536

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 dev-lang/ruby/ruby-2.2.7-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/ruby/ruby-2.2.7-r2.ebuild 
b/dev-lang/ruby/ruby-2.2.7-r2.ebuild
index b0f3e9ca739..e1eb1d0d39f 100644
--- a/dev-lang/ruby/ruby-2.2.7-r2.ebuild
+++ b/dev-lang/ruby/ruby-2.2.7-r2.ebuild
@@ -30,7 +30,7 @@ SRC_URI="mirror://ruby/2.2/${MY_P}.tar.xz
 
https://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2;
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="berkdb debug doc examples gdbm ipv6 jemalloc libressl +rdoc rubytests 
socks5 ssl tk xemacs ncurses +readline"
 
 RDEPEND="



[gentoo-commits] proj/genkernel:overlayfs commit in: defaults/

2017-08-07 Thread Richard Farina
commit: 86e2bffaaffe96728ab16d6533e7844042416a0f
Author: Rick Farina (Zero_Chaos)  gentoo  org>
AuthorDate: Tue Aug  8 01:50:28 2017 +
Commit: Richard Farina  gentoo  org>
CommitDate: Tue Aug  8 01:50:28 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=86e2bffa

and in the worlds longest test cycle, one missing double quote

 defaults/initrd.scripts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts
index 73e9bac..eb75d93 100644
--- a/defaults/initrd.scripts
+++ b/defaults/initrd.scripts
@@ -1784,7 +1784,7 @@ strip_mount_options()
 }
 
 checkzconfig() {
-  if [ -r "/proc/config.gz ]; then
+  if [ -r "/proc/config.gz" ]; then
 if zcat /proc/config.gz | grep -E 'CONFIG_${1}=(m|y)' 1>/dev/null;
 then
  return 0



[gentoo-commits] repo/gentoo:master commit in: dev-java/javatoolkit/

2017-08-07 Thread Patrice Clement
commit: 5b3d819790a6afc84ae3d190a84cabc4edb8
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 23:53:05 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 23:53:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b3d8197

dev-java/javatoolkit: version bump.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-java/javatoolkit/Manifest |  1 +
 dev-java/javatoolkit/javatoolkit-0.5.0.ebuild | 29 +++
 2 files changed, 30 insertions(+)

diff --git a/dev-java/javatoolkit/Manifest b/dev-java/javatoolkit/Manifest
index e051e8eef6c..5495dae22ba 100644
--- a/dev-java/javatoolkit/Manifest
+++ b/dev-java/javatoolkit/Manifest
@@ -1,2 +1,3 @@
 DIST javatoolkit-0.3.0.tar.bz2 16823 SHA256 
47bf8aad2ec58b2d850e8cbe57fe2707859d800b215b24387c7652a50353677c SHA512 
e7bbe04e39ab277d0aab89f0eea963c4b0341a336660dab08bfad0510ad1b2b49ce7410a2363bcf9ebad5f8757ee254ddc27af642b4bfb374db52d82cf02c3b1
 WHIRLPOOL 
a9b1034939a0e22c49620bb29d3652e8f5e6a8e71645556fe00463aabc0c1ff2ac2b666f59fd0ceea8ea5dc18579d90cc11a07ba341028831e3b8dd1e8a0e9ce
 DIST javatoolkit-0.4.0.tar.bz2 32156 SHA256 
607d383024f2fcb74472f24d1c5bb2bd14929b38738613574737356ed6546c9a SHA512 
1b5b596546342312eb841ca59f212ca2a09b2c872c4b6d29d984bb8017eb36b72e5c03ec2ed1e01e2900284495da9809e607c8156a5f26d40f94752847dba7f4
 WHIRLPOOL 
b95ca41e0fb02ad7d078681d1232ce7dfdfec9748c5c71c4cdd273fdcb540a14c053016e2adab32074d5c8d510b336698b73757e2487d3596748cc7802268815
+DIST javatoolkit-0.5.0.tar.bz2 26290 SHA256 
d4e75ff4a8606011319f3281c7fc0dc7c72ee450b71bf79b5cf365bee5cb90f6 SHA512 
d5b3a72bbb8d60a1c0621a4f0949d1d0830cf96b1eb61a8f68327dc44e349f9fe21713389174f29464cbc8749810db8f2a522cd3b59ac7a8e4c860464f033421
 WHIRLPOOL 
07e64f9b375f72f2922302dac665d28c52cf23d1b359f6c032984bfd262643ccf73c914dcfa9ad13998e4243c967194c3c5ed403f7d4384ff02f64a92b2c667d

diff --git a/dev-java/javatoolkit/javatoolkit-0.5.0.ebuild 
b/dev-java/javatoolkit/javatoolkit-0.5.0.ebuild
new file mode 100644
index 000..2548a6ea45e
--- /dev/null
+++ b/dev-java/javatoolkit/javatoolkit-0.5.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_4 )
+
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1 multilib prefix
+
+DESCRIPTION="Collection of Gentoo-specific tools for Java"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Java;
+SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-aix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+python_prepare_all() {
+   hprefixify src/py/buildparser src/py/findclass setup.py
+
+   distutils-r1_python_prepare_all
+}
+
+python_install() {
+   distutils-r1_python_install \
+   --install-scripts="${EPREFIX}"/usr/$(get_libdir)/${PN}/bin
+}



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

2017-08-07 Thread Patrice Clement
commit: 582b1ddbc506695702d1e742f0278ecd99ebc670
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 23:40:48 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 23:40:48 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=582b1ddb

add entry to NEWS file

 NEWS | 5 +
 1 file changed, 5 insertions(+)

diff --git a/NEWS b/NEWS
index b6a842a..3c5be57 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+javatoolkit-0.5.0 (08 Aug 2017)
+===
+ - Fix imports with Python 3.
+ - More cleanup.
+
 javatoolkit-0.4.0 (07 Aug 2017)
 ===
  - Port to Python 3.



[gentoo-commits] proj/javatoolkit:master commit in: src/py/

2017-08-07 Thread Patrice Clement
commit: 14576a84b715a958bab1dbb9ca892e7cabec8e6c
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 23:38:19 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 23:38:19 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=14576a84

remove __version__ variable references

 src/py/eclipse-build.py | 2 +-
 src/py/maven-helper.py  | 2 +-
 src/py/xml-rewrite-3.py | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/py/eclipse-build.py b/src/py/eclipse-build.py
index 3baa23f..7da09da 100755
--- a/src/py/eclipse-build.py
+++ b/src/py/eclipse-build.py
@@ -16,7 +16,7 @@ from javatoolkit.java.properties import PropertiesParser
 
 
 if __name__ == '__main__':
-usage = "Eclipse Ant Build File writer " + __version__ + "\n"
+usage = "Eclipse Ant Build File writer"
 usage += "Copyright 2008 Gentoo Foundation\n"
 usage += "Distributed under the terms of the GNU General Public Licence\n"
 usage += "Please contact the Gentoo Java Team  with 
problems.\n"

diff --git a/src/py/maven-helper.py b/src/py/maven-helper.py
index cf924f6..01c9557 100755
--- a/src/py/maven-helper.py
+++ b/src/py/maven-helper.py
@@ -25,7 +25,7 @@ from javatoolkit.maven.MavenPom import MavenPom
 
 
 def main():
-usage = "XML MAVEN POM MODULE " + __version__ + "\n"
+usage = "XML MAVEN POM MODULE"
 usage += "Copyright 2004,2006,2007 Gentoo Foundation\n"
 usage += "Distributed under the terms of the GNU General Public Lincense 
v2\n"
 usage += "Please contact the Gentoo Java Team  with 
problems.\n"

diff --git a/src/py/xml-rewrite-3.py b/src/py/xml-rewrite-3.py
index 82255c9..b17f4d5 100755
--- a/src/py/xml-rewrite-3.py
+++ b/src/py/xml-rewrite-3.py
@@ -33,7 +33,7 @@ from javatoolkit.xml.SaxRewriter import SaxRewriter
 
 
 def main():
-usage = "XML Rewrite Python Module Version " + __version__ + "\n"
+usage = "XML Rewrite Python Module"
 usage += "Copyright 2004,2006,2007 Gentoo Foundation\n"
 usage += "Distributed under the terms of the GNU General Public Lincense 
v2\n"
 usage += "Please contact the Gentoo Java Team  with 
problems.\n"



[gentoo-commits] proj/javatoolkit:master commit in: src/py/

2017-08-07 Thread Patrice Clement
commit: a5af39e2e0c3f00226be6a3ca4bacabf6ea39118
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 23:32:12 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 23:34:55 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=a5af39e2

autopep8 format

 src/py/build-xml-rewrite   |  28 ++-
 src/py/buildparser |  23 +-
 src/py/class-version-verify.py |  52 +++-
 src/py/eclipse-build.py|  88 +--
 src/py/findclass   |  13 +-
 src/py/jarjarclean |   3 +-
 src/py/maven-helper.py |  90 +--
 src/py/xml-rewrite-2.py| 542 -
 src/py/xml-rewrite-3.py| 273 -
 src/py/xml-rewrite.py  |  59 +++--
 10 files changed, 785 insertions(+), 386 deletions(-)

diff --git a/src/py/build-xml-rewrite b/src/py/build-xml-rewrite
index 229de89..5a67145 100755
--- a/src/py/build-xml-rewrite
+++ b/src/py/build-xml-rewrite
@@ -4,17 +4,28 @@ import sys
 import xml.etree.cElementTree as et
 from optparse import OptionParser
 
+
 def main():
 parser = OptionParser()
-parser.add_option('-c', '--changeattributes', dest='change', 
action="append", nargs=3)
-parser.add_option('-g', '--gentooclasspath', dest="gcp", 
action="store_true", default=False)
+parser.add_option(
+'-c',
+'--changeattributes',
+dest='change',
+action="append",
+nargs=3)
+parser.add_option(
+'-g',
+'--gentooclasspath',
+dest="gcp",
+action="store_true",
+default=False)
 parser.add_option('-e', '--encoding', dest="encoding")
 (options, args) = parser.parse_args()
 
 changes = []
 if options.change:
 for c in options.change:
-changes.append((c[0].split(),c[1], c[2]))
+changes.append((c[0].split(), c[1], c[2]))
 
 gcp = options.gcp
 gcp_str = '${gentoo.classpath}'
@@ -26,8 +37,8 @@ def main():
 for javac in tree.getiterator('javac'):
 if gcp:
 javac.attrib['classpath'] = gcp_str
-if options.encoding:
-javac.attrib['encoding'] = options.encoding
+if options.encoding:
+javac.attrib['encoding'] = options.encoding
 for javadoc in tree.getiterator('javadoc'):
 if gcp:
 javadoc.attrib['classpath'] = gcp_str
@@ -35,9 +46,9 @@ def main():
 javadoc.attrib['encoding'] = options.encoding
 for c in changes:
 elems, attr, value = c
-for elem in elems:
-for e in tree.getiterator(elem):
-e.attrib[attr] = value
+for elem in elems:
+for e in tree.getiterator(elem):
+e.attrib[attr] = value
 for junit in tree.getiterator('junit'):
 if gcp:
 junit.append(gcp_sub)
@@ -46,5 +57,6 @@ def main():
 with open(file, 'w') as f:
 tree.write(f)
 
+
 if __name__ == '__main__':
 main()

diff --git a/src/py/buildparser b/src/py/buildparser
index 7af980d..3007d9b 100755
--- a/src/py/buildparser
+++ b/src/py/buildparser
@@ -16,7 +16,8 @@ from javatoolkit.parser.buildproperties import 
BuildPropertiesParser
 from javatoolkit.parser.manifest import ManifestParser
 from javatoolkit.parser.tree import Node, ParseError
 
-__author__ = ["James Le Cuirot ", "Karl Trygve 
Kalleberg "]
+__author__ = ["James Le Cuirot ",
+  "Karl Trygve Kalleberg "]
 __version__ = "0.3.0"
 __productname__ = "buildparser"
 __description__ = "A parser for build.properties and JAR manifest files."
@@ -34,14 +35,14 @@ def parse_args():
 parser = OptionParser(usage, version=about)
 
 parser.add_option('-t', '--type', action='store', type='choice',
-dest='type', choices=['manifest', 'buildprops'],
-help='Type of file to parse: manifest or buildprops')
+  dest='type', choices=['manifest', 'buildprops'],
+  help='Type of file to parse: manifest or buildprops')
 
 parser.add_option('-i', '--in-place', action='store_true', dest='in_place',
-help='Edit file in place when replacing')
+  help='Edit file in place when replacing')
 
 parser.add_option('-w', '--wrap', action='store_true', dest='wrap',
-help='Wrap when returning singular values')
+  help='Wrap when returning singular values')
 
 opt, args = parser.parse_args()
 
@@ -56,6 +57,7 @@ def parse_args():
 
 return opt, args
 
+
 def main():
 opt, args = parse_args()
 
@@ -78,7 +80,9 @@ def main():
 p = BuildPropertiesParser()
 

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

2017-08-07 Thread Patrice Clement
commit: dd5b5e20676b52f339ec6084dd7e8dcf951e5d5f
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 23:47:55 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 23:47:55 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=dd5b5e20

we're at version 0.5.0

 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index 3c8a562..28f6475 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ from distutils.core import setup
 
 setup (
 name = 'javatoolkit',
-version = '0.3.0',
+version = '0.5.0',
 description = 'Collection of Gentoo-specific tools for Java.',
 maintainer = 'Gentoo Java Team',
 maintainer_email = 'j...@gentoo.org',
@@ -28,4 +28,4 @@ setup (
 data_files = [ ( '/usr/share/man/man1', ['src/man/findclass.1'] ) ]
 )
 
-#set expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap 
+#set expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap



[gentoo-commits] proj/javatoolkit:master commit in: src/py/javatoolkit/

2017-08-07 Thread Patrice Clement
commit: 148f42293eb0e6c33b39ad2bd11b367362c929fe
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 23:36:52 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 23:36:52 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=148f4229

fix imports

 src/py/javatoolkit/__init__.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/py/javatoolkit/__init__.py b/src/py/javatoolkit/__init__.py
index 77b273b..f40ce2e 100644
--- a/src/py/javatoolkit/__init__.py
+++ b/src/py/javatoolkit/__init__.py
@@ -5,8 +5,8 @@
 #
 # Licensed under the GNU General Public License, v2
 
-from classpath import *
-from output import *
+from .classpath import *
+from .output import *
 
 if __name__ == "__main__":
 print("This is not an executable module")



[gentoo-commits] proj/javatoolkit:master commit in: src/py/

2017-08-07 Thread Patrice Clement
commit: a3d76ee426581f537af69825b5348480adea9a3a
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 22:56:07 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 22:56:07 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=a3d76ee4

more cleanup

 src/py/eclipse-build.py | 3 ---
 src/py/maven-helper.py  | 6 +-
 src/py/xml-rewrite-2.py | 3 ---
 src/py/xml-rewrite-3.py | 2 --
 src/py/xml-rewrite.py   | 3 ---
 5 files changed, 1 insertion(+), 16 deletions(-)

diff --git a/src/py/eclipse-build.py b/src/py/eclipse-build.py
index 2f41b3a..ab65307 100755
--- a/src/py/eclipse-build.py
+++ b/src/py/eclipse-build.py
@@ -15,9 +15,6 @@ from xml.dom.minidom import parse
 from javatoolkit.java.properties import PropertiesParser
 
 
-__version__ = "$Revision: 1 $"[11:-2]
-
-
 if __name__ == '__main__':
 usage = "Eclipse Ant Build File writer " + __version__ + "\n"
 usage += "Copyright 2008 Gentoo Foundation\n"

diff --git a/src/py/maven-helper.py b/src/py/maven-helper.py
index 108abae..9aa41cc 100755
--- a/src/py/maven-helper.py
+++ b/src/py/maven-helper.py
@@ -24,11 +24,7 @@ from optparse import OptionParser, make_option
 from javatoolkit.maven.MavenPom import MavenPom
 
 
-__version__ = "$Revision: 1.1 $"[11:-2]
-
-
-def main()
-
+def main():
 usage = "XML MAVEN POM MODULE " + __version__ + "\n"
 usage += "Copyright 2004,2006,2007 Gentoo Foundation\n"
 usage += "Distributed under the terms of the GNU General Public Lincense 
v2\n"

diff --git a/src/py/xml-rewrite-2.py b/src/py/xml-rewrite-2.py
index 2755bb6..5c8aa6b 100755
--- a/src/py/xml-rewrite-2.py
+++ b/src/py/xml-rewrite-2.py
@@ -26,9 +26,6 @@ from xml.sax.saxutils import quoteattr,escape
 from optparse import OptionParser, make_option
 
 
-__version__ = "$Revision: 1.7 $"[11:-2]
-
-
 def add_gentoo_classpath(document):
matches = document.getElementsByTagName("classpath")
gcp = document.createElement("location")

diff --git a/src/py/xml-rewrite-3.py b/src/py/xml-rewrite-3.py
index 605e927..549443b 100755
--- a/src/py/xml-rewrite-3.py
+++ b/src/py/xml-rewrite-3.py
@@ -32,8 +32,6 @@ from javatoolkit.xml.DomRewriter import DomRewriter
 from javatoolkit.xml.SaxRewriter import SaxRewriter
 
 
-__version__ = "$Revision: 1.7 $"[11:-2]
-
 def main():
 usage = "XML Rewrite Python Module Version " + __version__ + "\n"
 usage += "Copyright 2004,2006,2007 Gentoo Foundation\n"

diff --git a/src/py/xml-rewrite.py b/src/py/xml-rewrite.py
index 7e1dbc4..6bf8ea2 100755
--- a/src/py/xml-rewrite.py
+++ b/src/py/xml-rewrite.py
@@ -21,9 +21,6 @@ from optparse import OptionParser, make_option
 from xml.dom import NotFoundErr
 
 
-__version__ = "$Revision: 1.6 $"[11:-2]
-
-
 class IOWrapper:
 def __init__(self, object):
 self.stream = object



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

2017-08-07 Thread Patrice Clement
commit: e91166809a3ce9b2b57028909c06ee6215178429
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 22:37:45 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 22:37:45 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=e9116680

add entry to NEWS

 NEWS | 4 
 1 file changed, 4 insertions(+)

diff --git a/NEWS b/NEWS
index 8f80573..b6a842a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+javatoolkit-0.4.0 (07 Aug 2017)
+===
+ - Port to Python 3.
+
 javatoolkit-0.3.0 (19 Jun 2008)
 ===
  - Files reorganised into a tidier structure.



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

2017-08-07 Thread Patrice Clement
commit: 22814996003855966c1ab79fc4ade554b7c67376
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 22:33:25 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 22:33:25 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=22814996

not needed anymore

 make-release | 13 -
 1 file changed, 13 deletions(-)

diff --git a/make-release b/make-release
deleted file mode 100755
index b3e473a..000
--- a/make-release
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-version=${1}
-if [[ -z ${version} ]]; then
-   echo "I want a version"
-   exit 1
-fi
-svn up
-svn2cl --authors=AUTHORS
-sed -i "s/version =.*/version = \'${version}\',/" setup.py
-#sed -i "s/__version__ =.*/__version__ = \'${version}\'/" 
src/java_config_2/__init__.py
-python setup.py sdist --force-manifest --formats=bztar
-
-cp -v dist/javatoolkit-${version}.tar.bz2 $(portageq envvar DISTDIR)



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

2017-08-07 Thread Patrice Clement
commit: 811d37a42b509e2a4cbd8c645030b62112cd4680
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 22:34:17 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 22:34:17 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=811d37a4

remove yet another useless header

 setup.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/setup.py b/setup.py
index bd832be..3c8a562 100644
--- a/setup.py
+++ b/setup.py
@@ -1,8 +1,6 @@
 #!/usr/bin/env python
-
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
 
 from distutils.core import setup
 



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

2017-08-07 Thread Patrice Clement
commit: b138b36e55d34a5b044bc73a6b12ff7b49c5eee0
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 23:41:12 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 23:41:12 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=b138b36e

format file

 AUTHORS | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/AUTHORS b/AUTHORS
index b8c2447..8781d7f 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -6,9 +6,14 @@ betelgeuse: Petteri Räty 
 kiorky: kiorky 
 ali_bush: Alistair Bush 
 
-The scripts inside src/ are written by the above authors.  Authors names are 
contained in the header of each file. This file is meant to only acknowledge 
contributions to the javatoolkit package and does not attempt to list authors 
by any criteria.
+The scripts inside src/ are written by the above authors.  Authors names are
+contained in the header of each file. This file is meant to only acknowledge
+contributions to the javatoolkit package and does not attempt to list authors
+by any criteria.
 
 Javatoolkit as a whole is maintained by the Java herd. If you have questions,
 drop by #gentoo-java on freenode, or mail to .
 
-If you feel that your name should be contained in this list, please contact 
the gentoo java project via irc, our mailing list 
 or via http://bugs.gentoo.org
+If you feel that your name should be contained in this list, please contact the
+gentoo java project via irc, our mailing list  or
+via http://bugs.gentoo.org



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

2017-08-07 Thread Patrice Clement
commit: 97f43b6c1ac5921281e3e03c2620f05e197b9880
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 22:35:36 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 22:35:36 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=97f43b6c

concatenate two ChangeLog files together

 ChangeLog  | 88 ++
 ChangeLog.2004 | 88 --
 2 files changed, 88 insertions(+), 88 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 61ecc02..172fd88 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -283,3 +283,91 @@
  NEWS, README, TODO, makedefs.mak, src: Created a trunk directory
  to make tags possible.
 
+2005-09-10 01:20  Karl Trygve Kalleberg 
+
+   * src/javatoolkit, src/buildparser: Added code from
+  Chewi.
+
+2004-12-20 20:32  Karl Trygve Kalleberg 
+
+   * ChangeLog, Makefile: Added bsfix to the dist and install targets
+ (untested)
+
+2004-12-20 20:30  Karl Trygve Kalleberg 
+
+   * .usermap: Added usermap for ChangeLog generation
+
+2004-12-20 20:23  Karl Trygve Kalleberg 
+
+   * ChangeLog: [no log message]
+
+2004-12-20 20:14  Karl Trygve Kalleberg 
+
+   * src/bsfix/: JXSLT.java, bsfix: JXSLT from Jan and a command line
+ wrapper for it
+
+2004-12-20 20:13  Karl Trygve Kalleberg 
+
+   * src/bsfix/Makefile: Added initial Makefile
+
+2004-12-20 20:13  Karl Trygve Kalleberg 
+
+   * src/bsfix/: bsfix-eclipse.py, bsfix.py: Renamed directory to
+ bsfix
+
+2004-11-08 21:06  Karl Trygve Kalleberg 
+
+   * src/javatoolkit/classpath.py: Fixed indentation
+
+2004-11-08 20:31  Karl Trygve Kalleberg 
+
+   * src/javatoolkit/: classpath.py, parser/buildproperties.py,
+ parser/helpers.py: Fixed documentation.
+
+2004-11-08 20:21  Karl Trygve Kalleberg 
+
+   * src/javatoolkit/: .cvsignore, __init__.py, classpath.py,
+ output.py, parser/.cvsignore, parser/__init__.py,
+ parser/buildproperties.py, parser/helpers.py, parser/tree.py:
+ Major fixes to the Eclipse buildscript fixer
+
+2004-10-11 16:20  Karl Trygve Kalleberg 
+
+   * ChangeLog, src/javatoolkit/__init__.py,
+ src/javatoolkit/classpath.py, src/javatoolkit/parser/__init__.py,
+ src/javatoolkit/parser/buildproperties.py,
+ src/javatoolkit/parser/helpers.py: Added initial Ant build script
+ fixer
+
+2004-08-10 23:11  Karl Trygve Kalleberg 
+
+   * src/sun-fetch/: TODO, sun-fetch: [no log message]
+
+2004-08-10 22:38  Karl Trygve Kalleberg 
+
+   * ChangeLog, makedefs.mak, src/sun-fetch/ChangeLog,
+ src/sun-fetch/Makefile, src/sun-fetch/sun-fetch: [no log message]
+
+2004-08-10 22:06  Karl Trygve Kalleberg 
+
+   * COPYING, Makefile, makedefs.mak, src/findclass/AUTHORS,
+ src/findclass/ChangeLog, src/findclass/Makefile,
+ src/findclass/README, src/findclass/TODO,
+ src/findclass/findclass.1, src/sun-fetch/AUTHORS,
+ src/sun-fetch/ChangeLog, src/sun-fetch/Makefile,
+ src/sun-fetch/README, src/sun-fetch/TODO,
+ src/sun-fetch/sun-fetch.1: [no log message]
+
+2004-08-10 19:11  Karl Trygve Kalleberg 
+
+   * src/sun-fetch/sun-fetch.py: Reworked command line options
+
+2004-07-31 16:49  Karl Trygve Kalleberg 
+
+   * src/findclass/findclass: Added findclass
+
+2004-07-28 02:50  Karl Trygve Kalleberg 
+
+   * AUTHORS, ChangeLog, INSTALL, NEWS, README, TODO,
+ src/sun-fetch/sun-fetch.py: Initial import
+

diff --git a/ChangeLog.2004 b/ChangeLog.2004
deleted file mode 100644
index 783e0fd..000
--- a/ChangeLog.2004
+++ /dev/null
@@ -1,88 +0,0 @@
-2005-09-10 01:20  Karl Trygve Kalleberg 
-
-   * src/javatoolkit, src/buildparser: Added code from
-  Chewi.
-
-2004-12-20 20:32  Karl Trygve Kalleberg 
-
-   * ChangeLog, Makefile: Added bsfix to the dist and install targets
- (untested)
-
-2004-12-20 20:30  Karl Trygve Kalleberg 
-
-   * .usermap: Added usermap for ChangeLog generation
-
-2004-12-20 20:23  Karl Trygve Kalleberg 
-
-   * ChangeLog: [no log message]
-
-2004-12-20 20:14  Karl Trygve Kalleberg 
-
-   * src/bsfix/: JXSLT.java, bsfix: JXSLT from Jan and a command line
- wrapper for it
-
-2004-12-20 20:13  Karl Trygve Kalleberg 
-
-   * src/bsfix/Makefile: Added initial Makefile
-
-2004-12-20 20:13  Karl Trygve Kalleberg 
-
-   * src/bsfix/: bsfix-eclipse.py, 

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

2017-08-07 Thread Patrice Clement
commit: 2130c2a53f79039730014845a5103286b48e0e79
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 22:36:43 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 22:36:43 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=2130c2a5

clean up TODO file

 TODO | 1 -
 1 file changed, 1 deletion(-)

diff --git a/TODO b/TODO
deleted file mode 100644
index caba06a..000
--- a/TODO
+++ /dev/null
@@ -1 +0,0 @@
-A lot.



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

2017-08-07 Thread Patrice Clement
commit: e7066d8049f74daa8e5cc98901d7f003221baa87
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 23:39:34 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 23:39:34 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=e7066d80

remove MANIFEST.in file

What's this file for? Not quite sure.

 MANIFEST.in | 2 --
 1 file changed, 2 deletions(-)

diff --git a/MANIFEST.in b/MANIFEST.in
deleted file mode 100644
index a36bcae..000
--- a/MANIFEST.in
+++ /dev/null
@@ -1,2 +0,0 @@
-recursive-include src/man/ *
-include README NEWS Changelog



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

2017-08-07 Thread Patrice Clement
commit: 9926deb2f63aded576db328ee51572115b3ef0e8
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 22:38:04 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 22:38:04 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=9926deb2

clean up INSTALL file

 INSTALL | 2 --
 1 file changed, 2 deletions(-)

diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 8db134c..000
--- a/INSTALL
+++ /dev/null
@@ -1,2 +0,0 @@
-
-Installation instructions are not necessary. 



[gentoo-commits] proj/javatoolkit:master commit in: src/obsolete/bsfix/, src/obsolete/bsfix/tests/

2017-08-07 Thread Patrice Clement
commit: 7bee587c7f6694e88a69ebaec66d7447b0e30b7b
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 23:45:34 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 23:45:34 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=7bee587c

remove obsolete directory

 src/obsolete/bsfix/JXSLT.java   | 141 --
 src/obsolete/bsfix/Makefile |  36 
 src/obsolete/bsfix/bsfix|   8 -
 src/obsolete/bsfix/bsfix-eclipse.py | 105 --
 src/obsolete/bsfix/bsfix.py |  80 
 src/obsolete/bsfix/build-xml-source-target.xslt |  28 ---
 src/obsolete/bsfix/rewrite2-speed-test.sh   |  47 -
 src/obsolete/bsfix/tests/build.xml  | 247 
 8 files changed, 692 deletions(-)

diff --git a/src/obsolete/bsfix/JXSLT.java b/src/obsolete/bsfix/JXSLT.java
deleted file mode 100644
index 3b580f2..000
--- a/src/obsolete/bsfix/JXSLT.java
+++ /dev/null
@@ -1,141 +0,0 @@
-/*
- * Copyright (C) 2004, Jan Brinkmann 
- * Copyright (c) 2004, Karl Trygve Kalleberg 
- * Copyright (c) 2004, Thomas Matthijs 
- * Copyright (c) 2004, Gentoo Foundation
- * 
- * Licensed under the GNU General Public License, v2
- *
- */
-
-import javax.xml.transform.Result;
-import javax.xml.transform.Source;
-import javax.xml.transform.Transformer;
-import javax.xml.transform.TransformerConfigurationException;
-import javax.xml.transform.TransformerException;
-import javax.xml.transform.TransformerFactory;
-import javax.xml.transform.stream.StreamSource;
-import javax.xml.transform.stream.StreamResult;
-import java.io.*;
-
-public class JXSLT
-{
-public static void printHelp()
-{
-System.err
-.println("Usage: java JXSLT ( -v  || -s  -t 
 ) -x  -i  -o  ");
-}
-
-public static void main(String[] args)
-{
-// check if there are enough options given
-if (args.length <= 8)
-{
-System.err.println("missing options");
-printHelp();
-System.exit(1);
-}
-
-// detailed parsing of command line arguments
-File oldXmlFile = null, newXmlFile = null, xsltFile = null;
-String source = null, target = null;
-int i = 0;
-while (i < args.length)
-{
-boolean match = false;
-String[] options = {
-"-v", "--version", "-s", "--source", "-t", "--target", 
"-x", "--xsltsource", "-i", "--oldxml", "-o", "--newxml"
-};
-
-if (args[i].substring(0, 1).equals("-"))
-{
-if (args[i+1].substring(0, 1).equals("-")) {
-System.err.println("missing argument for '"+args[i]+"'");
-printHelp();
-System.exit(1);
-}
-
-int j = 0;
-while (j < options.length)
-{
-if (options[j].equals(args[i]))
-{
-match = true;
-break;
-}
-++j;
-}
-
-if (match != true)
-{
-System.err.println("invalid option '" + args[i] + "'");
-printHelp();
-System.exit(1);
-}
-} 
-
-if (args[i].equalsIgnoreCase("-v") || 
args[i].equalsIgnoreCase("--version"))
-{
-target = source = args[i + 1];
-} else if (args[i].equalsIgnoreCase("-s") || 
args[i].equalsIgnoreCase("--source")) 
-   {
-   source = args[i + 1];
-   }  else if (args[i].equalsIgnoreCase("-t") || 
args[i].equalsIgnoreCase("--target")) 
-   {
-   target = args[i + 1];
-   } else if (args[i].equalsIgnoreCase("-x")
-|| args[i].equalsIgnoreCase("--xsltsource"))
-{
-xsltFile = new File(args[i + 1]);
-} else if (args[i].equalsIgnoreCase("-i") || 
args[i].equalsIgnoreCase("--oldxml"))
-{
-oldXmlFile = new File(args[i + 1]);
-} else if (args[i].equalsIgnoreCase("-o") || 
args[i].equalsIgnoreCase("--newxml"))
-{
-newXmlFile = new File(args[i + 1]);
-}
-
-++i;
-}
-
-// check if files exist
-Source xmlSource = null, xsltSource = null;
-if (oldXmlFile.exists())
-{
-xmlSource = new StreamSource(oldXmlFile);
-} else
-{
-System.out.println("xml sourcefile doesn't exist");
-System.exit(1);
-}
-
-if 

[gentoo-commits] proj/javatoolkit: New tag: 0.5.0

2017-08-07 Thread Patrice Clement
commit: 
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 23:48:17 2017 +

New tag: 0.5.0




[gentoo-commits] repo/gentoo:master commit in: media-libs/libsdl2/, media-libs/libsdl2/files/

2017-08-07 Thread Patrick McLean
commit: adbfacbfc968c7415595487972dbbe73a0b163da
Author: Patrick McLean  gentoo  org>
AuthorDate: Mon Aug  7 22:29:52 2017 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon Aug  7 22:30:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adbfacbf

media-libs/libsdl2: Revision bump, add patch to fix DS4 support in new kernels

This patch has been merged in to master, but upstream hasn't done a
release in quite awhile.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 .../libsdl2/files/libsdl2-2.0.5-ds3_ds4.patch  |  48 +++
 media-libs/libsdl2/libsdl2-2.0.5-r1.ebuild | 158 +
 2 files changed, 206 insertions(+)

diff --git a/media-libs/libsdl2/files/libsdl2-2.0.5-ds3_ds4.patch 
b/media-libs/libsdl2/files/libsdl2-2.0.5-ds3_ds4.patch
new file mode 100644
index 000..34455663a56
--- /dev/null
+++ b/media-libs/libsdl2/files/libsdl2-2.0.5-ds3_ds4.patch
@@ -0,0 +1,48 @@
+diff --git a/src/joystick/SDL_gamecontrollerdb.h 
b/src/joystick/SDL_gamecontrollerdb.h
+index 1e623cb..ae84c6d 100644
+--- a/src/joystick/SDL_gamecontrollerdb.h
 b/src/joystick/SDL_gamecontrollerdb.h
+@@ -47,6 +47,8 @@ static const char *s_ControllerMappings [] =
+ "4c056802504944564944,PS3 
Controller,a:b14,b:b13,back:b0,dpdown:b6,dpleft:b7,dpright:b5,dpup:b4,guide:b16,leftshoulder:b10,leftstick:b1,lefttrigger:b8,leftx:a0,lefty:a1,rightshoulder:b11,rightstick:b2,righttrigger:b9,rightx:a2,righty:a3,start:b3,x:b15,y:b12,",
+ "25090500504944564944,PS3 
DualShock,a:b2,b:b1,back:b9,dpdown:h0.8,dpleft:h0.4,dpright:h0.2,dpup:h0.1,guide:,leftshoulder:b6,leftstick:b10,lefttrigger:b4,leftx:a0,lefty:a1,rightshoulder:b7,rightstick:b11,righttrigger:b5,rightx:a2,righty:a3,start:b8,x:b0,y:b3,",
+ "4c05c405504944564944,PS4 
Controller,a:b1,b:b2,back:b8,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:h0.1,guide:b12,leftshoulder:b4,leftstick:b10,lefttrigger:a3,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b11,righttrigger:a4,rightx:a2,righty:a5,start:b9,x:b0,y:b3,",
++"4c05cc09504944564944,PS4 
Controller,a:b1,b:b2,back:b8,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:h0.1,guide:b12,leftshoulder:b4,leftstick:b10,lefttrigger:a3,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b11,righttrigger:a4,rightx:a2,righty:a5,start:b9,x:b0,y:b3,",
++"4c05a00b504944564944,PS4 
Controller,a:b1,b:b2,back:b8,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:h0.1,guide:b12,leftshoulder:b4,leftstick:b10,lefttrigger:a3,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b11,righttrigger:a4,rightx:a2,righty:a5,start:b9,x:b0,y:b3,",
+ #endif
+ #if defined(__MACOSX__)
+ "10280900,8Bitdo SFC30 GamePad 
Joystick,a:b1,b:b0,back:b10,leftshoulder:b6,leftx:a0,lefty:a1,rightshoulder:b7,start:b11,x:b4,y:b3,",
+@@ -62,6 +64,10 @@ static const char *s_ControllerMappings [] =
+ "11012014,SteelSeries 
Nimbus,a:b0,b:b1,dpdown:b9,dpleft:b11,dpright:b10,dpup:b8,leftshoulder:b4,lefttrigger:b6,leftx:a0,lefty:a1,rightshoulder:b5,righttrigger:b7,rightx:a2,righty:a3,start:b12,x:b2,y:b3,",
+ "11011714,SteelSeries Stratus 
XL,a:b0,b:b1,dpdown:b9,dpleft:b11,dpright:b10,dpup:b8,leftshoulder:b4,lefttrigger:b6,leftx:a0,lefty:a1,rightshoulder:b5,righttrigger:b7,rightx:a2,righty:a3,start:b12,x:b2,y:b3,",
+ "5e048e02,X360 
Controller,a:b0,b:b1,back:b9,dpdown:b12,dpleft:b13,dpright:b14,dpup:b11,guide:b10,leftshoulder:b4,leftstick:b6,lefttrigger:a2,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b7,righttrigger:a5,rightx:a3,righty:a4,start:b8,x:b2,y:b3,",
++"03004c0568020001,PS3 
Controller,a:b14,b:b13,back:b0,dpdown:b6,dpleft:b7,dpright:b5,dpup:b4,guide:b16,leftshoulder:b10,leftstick:b1,lefttrigger:b8,leftx:a0,lefty:a1,rightshoulder:b11,rightstick:b2,righttrigger:b9,rightx:a2,righty:a3,start:b3,x:b15,y:b12,",
++"03004c05c4050001,PS4 
Controller,a:b1,b:b2,back:b8,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:h0.1,guide:b12,leftshoulder:b4,leftstick:b10,lefttrigger:a3,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b11,righttrigger:a4,rightx:a2,righty:a5,start:b9,x:b0,y:b3,",
++"03004c05cc090001,PS4 
Controller,a:b1,b:b2,back:b8,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:h0.1,guide:b12,leftshoulder:b4,leftstick:b10,lefttrigger:a3,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b11,righttrigger:a4,rightx:a2,righty:a5,start:b9,x:b0,y:b3,",
++"03004c05a00b0001,PS4 
Controller,a:b1,b:b2,back:b8,dpdown:h0.4,dpleft:h0.8,dpright:h0.2,dpup:h0.1,guide:b12,leftshoulder:b4,leftstick:b10,lefttrigger:a3,leftx:a0,lefty:a1,rightshoulder:b5,rightstick:b11,righttrigger:a4,rightx:a2,righty:a5,start:b9,x:b0,y:b3,",
+ #endif
+ #if defined(__LINUX__)
+ "050010280901,8Bitdo SFC30 
GamePad,a:b1,b:b0,back:b10,leftshoulder:b6,leftx:a0,lefty:a1,rightshoulder:b7,start:b11,x:b4,y:b3,",
+@@ -85,12 

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

2017-08-07 Thread Robin H. Johnson
commit: 76d196ba473c74ba967b0eebe80804f16e23e31e
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Aug  7 22:09:39 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Aug  7 22:09:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76d196ba

net-vpn/openvpn: dep change in wrong ebuild.

Fixes: 66e1778c95aa54f432305e5174a01f0f6be41b89
Package-Manager: portage-2.3.6

 net-vpn/openvpn/openvpn-2.4.2-r1.ebuild | 2 +-
 net-vpn/openvpn/openvpn-2.4.3-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-vpn/openvpn/openvpn-2.4.2-r1.ebuild 
b/net-vpn/openvpn/openvpn-2.4.2-r1.ebuild
index 9f2ac65f910..c81204dae23 100644
--- a/net-vpn/openvpn/openvpn-2.4.2-r1.ebuild
+++ b/net-vpn/openvpn/openvpn-2.4.2-r1.ebuild
@@ -26,7 +26,7 @@ REQUIRED_USE="static? ( !plugins !pkcs11 )
 CDEPEND="
kernel_linux? (
iproute2? ( sys-apps/iproute2[-minimal] )
-   !iproute2? ( >=sys-apps/net-tools-1.60_p20160215155418 )
+   !iproute2? ( sys-apps/net-tools )
)
pam? ( virtual/pam )
ssl? (

diff --git a/net-vpn/openvpn/openvpn-2.4.3-r1.ebuild 
b/net-vpn/openvpn/openvpn-2.4.3-r1.ebuild
index 71574d10482..798c6c354ac 100644
--- a/net-vpn/openvpn/openvpn-2.4.3-r1.ebuild
+++ b/net-vpn/openvpn/openvpn-2.4.3-r1.ebuild
@@ -26,7 +26,7 @@ REQUIRED_USE="static? ( !plugins !pkcs11 )
 CDEPEND="
kernel_linux? (
iproute2? ( sys-apps/iproute2[-minimal] )
-   !iproute2? ( sys-apps/net-tools )
+   !iproute2? ( >=sys-apps/net-tools-1.60_p20160215155418 )
)
pam? ( virtual/pam )
ssl? (



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

2017-08-07 Thread Robin H. Johnson
commit: 66e1778c95aa54f432305e5174a01f0f6be41b89
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Aug  7 22:03:19 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Aug  7 22:07:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66e1778c

net-vpn/openvpn: Force /bin/{ifconfig,route}

openvpn build prefers ifconfig/route in /sbin, even if you are trying to
move away from those because net-tools now installs then in /bin and you
only have symlinks in /sbin for migration. Force a bump to rebuild with
explicitly referencing /bin and a new-enough version of net-tools.

Package-Manager: portage-2.3.6

 net-vpn/openvpn/openvpn-2.4.2-r1.ebuild  | 2 +-
 net-vpn/openvpn/{openvpn-2.4.2-r1.ebuild => openvpn-2.4.3-r1.ebuild} | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/net-vpn/openvpn/openvpn-2.4.2-r1.ebuild 
b/net-vpn/openvpn/openvpn-2.4.2-r1.ebuild
index c81204dae23..9f2ac65f910 100644
--- a/net-vpn/openvpn/openvpn-2.4.2-r1.ebuild
+++ b/net-vpn/openvpn/openvpn-2.4.2-r1.ebuild
@@ -26,7 +26,7 @@ REQUIRED_USE="static? ( !plugins !pkcs11 )
 CDEPEND="
kernel_linux? (
iproute2? ( sys-apps/iproute2[-minimal] )
-   !iproute2? ( sys-apps/net-tools )
+   !iproute2? ( >=sys-apps/net-tools-1.60_p20160215155418 )
)
pam? ( virtual/pam )
ssl? (

diff --git a/net-vpn/openvpn/openvpn-2.4.2-r1.ebuild 
b/net-vpn/openvpn/openvpn-2.4.3-r1.ebuild
similarity index 95%
copy from net-vpn/openvpn/openvpn-2.4.2-r1.ebuild
copy to net-vpn/openvpn/openvpn-2.4.3-r1.ebuild
index c81204dae23..71574d10482 100644
--- a/net-vpn/openvpn/openvpn-2.4.2-r1.ebuild
+++ b/net-vpn/openvpn/openvpn-2.4.3-r1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://openvpn.net/;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-macos"
 
 IUSE="down-root examples inotify iproute2 libressl lz4 +lzo mbedtls pam"
 IUSE+=" pkcs11 +plugins selinux +ssl static systemd test userland_BSD"
@@ -68,6 +68,8 @@ src_configure() {
use static && append-ldflags -Xcompiler -static
SYSTEMD_UNIT_DIR=$(systemd_get_systemunitdir) \
TMPFILES_DIR="/usr/lib/tmpfiles.d" \
+   IFCONFIG=/bin/ifconfig \
+   ROUTE=/bin/route \
econf \
$(usex mbedtls '--with-crypto-library=mbedtls' '') \
$(use_enable inotify async-push) \



[gentoo-commits] repo/gentoo:master commit in: dev-libs/elfutils/files/, dev-libs/elfutils/

2017-08-07 Thread Sergei Trofimovich
commit: 0b7fca2f0fc7284950bf7204942fb45cdb3879ba
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Aug  7 21:54:46 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Aug  7 21:54:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b7fca2f

dev-libs/elfutils: make patch appliable with -p1

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-libs/elfutils/elfutils-0.170.ebuild  | 4 +++-
 dev-libs/elfutils/files/elfutils-0.118-PaX-support.patch | 8 
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/dev-libs/elfutils/elfutils-0.170.ebuild 
b/dev-libs/elfutils/elfutils-0.170.ebuild
index c6b460b456e..bf9aa9d2e54 100644
--- a/dev-libs/elfutils/elfutils-0.170.ebuild
+++ b/dev-libs/elfutils/elfutils-0.170.ebuild
@@ -23,9 +23,11 @@ DEPEND="${RDEPEND}
>=sys-devel/flex-2.5.4a
sys-devel/m4"
 
+PATCHES=("${FILESDIR}"/${PN}-0.118-PaX-support.patch)
+
 src_prepare() {
default
-   epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
+
if use static-libs; then
sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' 
lib{asm,dw,elf}/Makefile.in || die
fi

diff --git a/dev-libs/elfutils/files/elfutils-0.118-PaX-support.patch 
b/dev-libs/elfutils/files/elfutils-0.118-PaX-support.patch
index 083f32ff855..0ae359fe7db 100644
--- a/dev-libs/elfutils/files/elfutils-0.118-PaX-support.patch
+++ b/dev-libs/elfutils/files/elfutils-0.118-PaX-support.patch
@@ -4,8 +4,8 @@ Patch by Kevin F. Quinn 
 
 http://bugs.gentoo.org/115100
 
 libelf/elf.h
-+++ libelf/elf.h
+--- a/libelf/elf.h
 b/libelf/elf.h
 @@ -568,6 +568,7 @@
  #define PT_GNU_EH_FRAME   0x6474e550  /* GCC .eh_frame_hdr segment */
  #define PT_GNU_STACK  0x6474e551  /* Indicates stack executability */
@@ -14,8 +14,8 @@ http://bugs.gentoo.org/115100
  #define PT_LOSUNW 0x6ffa
  #define PT_SUNWBSS0x6ffa  /* Sun Specific segment */
  #define PT_SUNWSTACK  0x6ffb  /* Stack segment */
 src/elflint.c
-+++ src/elflint.c
+--- a/src/elflint.c
 b/src/elflint.c
 @@ -3187,6 +3187,7 @@
  
if (phdr->p_type >= PT_NUM && phdr->p_type != PT_GNU_EH_FRAME



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

2017-08-07 Thread Sergei Trofimovich
commit: cf3ebf28d8d512db0060035783672e9f62f6c26e
Author: Michael Mair-Keimberger (t1)  gmail  com>
AuthorDate: Sun Aug  6 15:12:21 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Aug  7 21:54:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf3ebf28

dev-libs/elfutils: Version bump to 0.170

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

 dev-libs/elfutils/Manifest  |  1 +
 dev-libs/elfutils/elfutils-0.170.ebuild | 64 +
 2 files changed, 65 insertions(+)

diff --git a/dev-libs/elfutils/Manifest b/dev-libs/elfutils/Manifest
index 3243f5c574b..ecec6085c5e 100644
--- a/dev-libs/elfutils/Manifest
+++ b/dev-libs/elfutils/Manifest
@@ -2,3 +2,4 @@ DIST elfutils-0.166.tar.bz2 6496225 SHA256 
3c056914c8a438b210be0d790463b960fc79d
 DIST elfutils-0.167.tar.bz2 6456047 SHA256 
3f300087c42b6f35591163b48246b4098ce39c4c6f5d55a83023c903c5776553 SHA512 
855b27b7b2785265e095a5c28518b9765238bbcdc8aefede11453e9727156b71360a4b0e2634f2c3813d4b632d3be7079b2d952701bf0455a9c2c19f7facdc91
 WHIRLPOOL 
1eccbdf65e75c36d7e7704e34eb824d8f54aa4d5879c8df174a1121889fd796cd0aaf5e727f07f361da301659f23d7167e5e59e6a039003def0411d0d01a570e
 DIST elfutils-0.168.tar.bz2 6840399 SHA256 
b88d07893ba1373c7dd69a7855974706d05377766568a7d9002706d5de72c276 SHA512 
c8f2077ffe6877ad9e9d2f553bf0576361799c601d246f53e1d99a6f7046794c5916e1087b97ad1d1e5f59f9debc20384f864d507ef6c4c75a8e767d15d6eb91
 WHIRLPOOL 
281e6917ad243c4f28dad48801d43c29b503da0198f1cd882b6e378b9016e0843088185a39909db75295484f28b963b711f68b80dc6cc810b3027a2ea5cce556
 DIST elfutils-0.169.tar.bz2 8067758 SHA256 
9412fac7b30872b738bc1ed1ebcaed54493c26ef9a67887913498c17b10f3bc2 SHA512 
0a81a20bb2aff533d035d6b76f1403437b2e11bce390db57e34b8c26e4b9b3150346d83dddcbfbbdc58063f046ca3223508dba35c6ce88e375d201e7a777a8b9
 WHIRLPOOL 
dc4f689b403160272dccb1e306ee3584f6d06156d3318d745bba46f9b4a31a477795223233ffb420b096b1c196aba09492e4ab5803f6150326b48e1045f92e06
+DIST elfutils-0.170.tar.bz2 8358001 SHA256 
1f844775576b79bdc9f9c717a50058d08620323c1e935458223a12f249c9e066 SHA512 
aca0b5e271138eaf86e36505ffb101181207b151e833e6cd7c18986ac50678542a5ecd2250f8dd6923ca497142f197c8b08fd225e4130b16b6203c24013d6d28
 WHIRLPOOL 
ebb3069aa52e49b7e137c722ac490b12393e0c54656d6d7476193eaa4253b48209e62e4babd4819a52cf5a9f3a1a6f56945eb776f014df9cbd841aa392e94823

diff --git a/dev-libs/elfutils/elfutils-0.170.ebuild 
b/dev-libs/elfutils/elfutils-0.170.ebuild
new file mode 100644
index 000..c6b460b456e
--- /dev/null
+++ b/dev-libs/elfutils/elfutils-0.170.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils flag-o-matic multilib-minimal
+
+DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement 
for libelf)"
+HOMEPAGE="http://elfutils.org/;
+SRC_URI="https://sourceware.org/elfutils/ftp/${PV}/${P}.tar.bz2;
+
+LICENSE="|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+IUSE="bzip2 lzma nls static-libs test +threads +utils"
+
+RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
+   bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] )
+   lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] )
+   !dev-libs/libelf"
+DEPEND="${RDEPEND}
+   nls? ( sys-devel/gettext )
+   >=sys-devel/flex-2.5.4a
+   sys-devel/m4"
+
+src_prepare() {
+   default
+   epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
+   if use static-libs; then
+   sed -i -e '/^lib_LIBRARIES/s:=.*:=:' -e '/^%.os/s:%.o$::' 
lib{asm,dw,elf}/Makefile.in || die
+   fi
+   sed -i 's:-Werror::' */Makefile.in || die
+}
+
+src_configure() {
+   use test && append-flags -g #407135
+   multilib-minimal_src_configure
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable nls) \
+   $(use_enable threads thread-safety) \
+   --program-prefix="eu-" \
+   --with-zlib \
+   $(use_with bzip2 bzlib) \
+   $(use_with lzma)
+}
+
+multilib_src_test() {
+   env 
LD_LIBRARY_PATH="${BUILD_DIR}/libelf:${BUILD_DIR}/libebl:${BUILD_DIR}/libdw:${BUILD_DIR}/libasm"
 \
+   LC_ALL="C" \
+   emake check
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   dodoc NOTES
+   # These build quick, and are needed for most tests, so don't
+   # disable their building when the USE flag is disabled.
+   if ! use utils; then
+   rm -rf "${ED}"/usr/bin || die
+   fi
+}



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

2017-08-07 Thread Mike Gilbert
commit: 18687f5e248ab9dd7f853d94c8ab6dc7ebde9e09
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Aug  7 21:40:00 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Aug  7 21:40:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18687f5e

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

Package-Manager: Portage-2.3.6_p23, Repoman-2.3.3_p1

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-60.0.3112.78.ebuild => google-chrome-beta-61.0.3163.31.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 75c9361ff87..369c8b39f45 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_60.0.3112.78-1_amd64.deb 66935492 SHA256 
75907688709453e42d29cdbd9323e65556a28ea7cc7a152d77a5e2533ef1c7f0 SHA512 
eabbe7dd4af6fc222f34385c9aa63a0157e95f537e3a8228690d05dcf9a856f1be295b6c140be36f5f134dae9701029a2e81a48585e1560b75840b0d1acd4a4f
 WHIRLPOOL 
a47887ab114bf5c609b5fe377b49c2df1c4328c812966888d320ef51b46c18280ebb48c5e1b19148ca6c829e0f9596e643d21b43d1c7b7431b57e4475f726f55
+DIST google-chrome-beta_61.0.3163.31-1_amd64.deb 76196422 SHA256 
c90b766fabb453e343dd6429a6f5cc8052c87102b39ab771bc9e0887b860c9d7 SHA512 
58f2e082bee219ed23748b4c1b7281faae9589436825674e42936d08cec97e6270b6defabeba5056e085f0fe1a65cd5a70412521e1fd53cfca2707fa84868d9f
 WHIRLPOOL 
da0ec7d1a2f92f5acf40234f51be3f9a7e049fa9e7746231b26c7e61d7e7ce5eca9901cac34d290a305a21e538af21f8e60a1836a00e86cac0468e44c3150405

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



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

2017-08-07 Thread Mike Gilbert
commit: e87dc180b53954372e38d66db787056068f7ba27
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Aug  7 21:39:52 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Aug  7 21:39:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e87dc180

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

Package-Manager: Portage-2.3.6_p23, Repoman-2.3.3_p1

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

diff --git a/www-client/google-chrome/Manifest 
b/www-client/google-chrome/Manifest
index 584e8d63a81..3a631e77c1b 100644
--- a/www-client/google-chrome/Manifest
+++ b/www-client/google-chrome/Manifest
@@ -1 +1 @@
-DIST google-chrome-stable_60.0.3112.78-1_amd64.deb 61726918 SHA256 
9a64c54d87724b58ea5cff53b05a48583e1c26b48108d9e5723ff69ff05a7871 SHA512 
96bf3c54fe4114d2213b5efba074f11f9c819e8b1896e5627d9c638613a1b909f021cc9715e6c748e083575bcee698295f8f14ac029cbe59f7ed3e3eb380d1b8
 WHIRLPOOL 
2828e89f5522ea49df2c4e7a5612c420fcd085987df777c5dc74d6eee787d3cb53607febfc3c74cb4a77fbe00cadd1478dac3ae52a827eaf49fcc1c13cd8cfac
+DIST google-chrome-stable_60.0.3112.90-1_amd64.deb 58348198 SHA256 
936eb6dbf6062b4a375593d3289375d3f7823d3168673534f54f037d632283d3 SHA512 
27d3ca3b6199fa17c9e569ed52b58b70525bef04add845000145db7289f9bbeb893b743827e42f95113391f9287778b36fd3f5cd69d94aa32720edf810aa3bfd
 WHIRLPOOL 
ef1f22524844c313d3e94de8fe6b06fed173d568226eef6f4b31bee954e55e094f2b73fc2d1993c3aa63e3faa7adbcf34e6547d40df2a0575ad9a6abffb9077c

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



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

2017-08-07 Thread Mike Gilbert
commit: fd2c7c0c490dd5b9d167f5fac9bf62ce24489258
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Aug  7 21:39:13 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Aug  7 21:39:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd2c7c0c

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

Package-Manager: Portage-2.3.6_p23, Repoman-2.3.3_p1

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

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index eea0f2cef0b..66b19a73e21 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_61.0.3163.25-1_amd64.deb 78541072 SHA256 
610702e8cdc2187bdbcac0262e7832a804c603b9e2403c3a7ba2458bb350bb35 SHA512 
ca7ecf8d2b1f44b9c1cd0442fbe19fc0069afcdfffdbe5407122c8b81648da6dab22b3e0d9bc81dd50b5f9a6cb9749d625d2787ea056b2646dafda1d4290cd13
 WHIRLPOOL 
cb1e6703be521a66a995626953dc0f7f070f7d5abc3b4b5980e79c60f0cc6025a9b74c531d806c2b8e6f9bc5bb496f5661066f8ade91de5e7ee372d73f36d788
+DIST google-chrome-unstable_62.0.3175.4-1_amd64.deb 4851 SHA256 
79f20800b23beb1e2586ffe119288784728f3bef7bb6122c6b3c6dabdb427e21 SHA512 
b0e19ad7eebdf6ec5a6ddf6c6fd486810512d3dbfa81d40e38e2d989e9b45d15a91c8ee4a3341659fa59cea42ab628f904f2493eee4bd0dec706bd68784201b8
 WHIRLPOOL 
dd502d916e3be45c4d4550bb6cb756fabe97e1b0be2efc73587da782e33e5770487f3b3bf58c9ce3225ec949016c9212dbc19daae48079394b62861aa27ee2b7

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



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

2017-08-07 Thread Mike Gilbert
commit: 68ee49b68fb4f5f7d76b9971a7b853bd1c8f6389
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Aug  7 21:39:44 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Aug  7 21:39:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68ee49b6

www-plugins/chrome-binary-plugins: automated update (60.0.3112.90, 
61.0.3163.31, 62.0.3175.4)

Package-Manager: Portage-2.3.6_p23, Repoman-2.3.3_p1

 www-plugins/chrome-binary-plugins/Manifest  | 6 +++---
 ...0.0.3112.78.ebuild => chrome-binary-plugins-60.0.3112.90.ebuild} | 0
 ...8_beta.ebuild => chrome-binary-plugins-61.0.3163.31_beta.ebuild} | 0
 ..._alpha.ebuild => chrome-binary-plugins-62.0.3175.4_alpha.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 15a1ede61a8..5ee3e7ddf11 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_60.0.3112.78-1_amd64.deb 66935492 SHA256 
75907688709453e42d29cdbd9323e65556a28ea7cc7a152d77a5e2533ef1c7f0 SHA512 
eabbe7dd4af6fc222f34385c9aa63a0157e95f537e3a8228690d05dcf9a856f1be295b6c140be36f5f134dae9701029a2e81a48585e1560b75840b0d1acd4a4f
 WHIRLPOOL 
a47887ab114bf5c609b5fe377b49c2df1c4328c812966888d320ef51b46c18280ebb48c5e1b19148ca6c829e0f9596e643d21b43d1c7b7431b57e4475f726f55
-DIST google-chrome-stable_60.0.3112.78-1_amd64.deb 61726918 SHA256 
9a64c54d87724b58ea5cff53b05a48583e1c26b48108d9e5723ff69ff05a7871 SHA512 
96bf3c54fe4114d2213b5efba074f11f9c819e8b1896e5627d9c638613a1b909f021cc9715e6c748e083575bcee698295f8f14ac029cbe59f7ed3e3eb380d1b8
 WHIRLPOOL 
2828e89f5522ea49df2c4e7a5612c420fcd085987df777c5dc74d6eee787d3cb53607febfc3c74cb4a77fbe00cadd1478dac3ae52a827eaf49fcc1c13cd8cfac
-DIST google-chrome-unstable_61.0.3163.25-1_amd64.deb 78541072 SHA256 
610702e8cdc2187bdbcac0262e7832a804c603b9e2403c3a7ba2458bb350bb35 SHA512 
ca7ecf8d2b1f44b9c1cd0442fbe19fc0069afcdfffdbe5407122c8b81648da6dab22b3e0d9bc81dd50b5f9a6cb9749d625d2787ea056b2646dafda1d4290cd13
 WHIRLPOOL 
cb1e6703be521a66a995626953dc0f7f070f7d5abc3b4b5980e79c60f0cc6025a9b74c531d806c2b8e6f9bc5bb496f5661066f8ade91de5e7ee372d73f36d788
+DIST google-chrome-beta_61.0.3163.31-1_amd64.deb 76196422 SHA256 
c90b766fabb453e343dd6429a6f5cc8052c87102b39ab771bc9e0887b860c9d7 SHA512 
58f2e082bee219ed23748b4c1b7281faae9589436825674e42936d08cec97e6270b6defabeba5056e085f0fe1a65cd5a70412521e1fd53cfca2707fa84868d9f
 WHIRLPOOL 
da0ec7d1a2f92f5acf40234f51be3f9a7e049fa9e7746231b26c7e61d7e7ce5eca9901cac34d290a305a21e538af21f8e60a1836a00e86cac0468e44c3150405
+DIST google-chrome-stable_60.0.3112.90-1_amd64.deb 58348198 SHA256 
936eb6dbf6062b4a375593d3289375d3f7823d3168673534f54f037d632283d3 SHA512 
27d3ca3b6199fa17c9e569ed52b58b70525bef04add845000145db7289f9bbeb893b743827e42f95113391f9287778b36fd3f5cd69d94aa32720edf810aa3bfd
 WHIRLPOOL 
ef1f22524844c313d3e94de8fe6b06fed173d568226eef6f4b31bee954e55e094f2b73fc2d1993c3aa63e3faa7adbcf34e6547d40df2a0575ad9a6abffb9077c
+DIST google-chrome-unstable_62.0.3175.4-1_amd64.deb 4851 SHA256 
79f20800b23beb1e2586ffe119288784728f3bef7bb6122c6b3c6dabdb427e21 SHA512 
b0e19ad7eebdf6ec5a6ddf6c6fd486810512d3dbfa81d40e38e2d989e9b45d15a91c8ee4a3341659fa59cea42ab628f904f2493eee4bd0dec706bd68784201b8
 WHIRLPOOL 
dd502d916e3be45c4d4550bb6cb756fabe97e1b0be2efc73587da782e33e5770487f3b3bf58c9ce3225ec949016c9212dbc19daae48079394b62861aa27ee2b7

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

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

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



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/stack-bin/

2017-08-07 Thread Sergei Trofimovich
commit: ac2afc0709118651239c6f105670320420c7afac
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Aug  7 21:37:36 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Aug  7 21:38:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac2afc07

dev-haskell/stack-bin: added binary version of stack, bug #627282

Initial version of ebuild is written by Jeff Parent.

Bug: https://bugs.gentoo.org/627282
Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-haskell/stack-bin/Manifest   |  3 ++
 dev-haskell/stack-bin/metadata.xml   | 15 ++
 dev-haskell/stack-bin/stack-bin-1.5.1.ebuild | 45 
 3 files changed, 63 insertions(+)

diff --git a/dev-haskell/stack-bin/Manifest b/dev-haskell/stack-bin/Manifest
new file mode 100644
index 000..02aff3fe690
--- /dev/null
+++ b/dev-haskell/stack-bin/Manifest
@@ -0,0 +1,3 @@
+DIST stack-1.5.1-linux-arm.tar.gz 16542317 SHA256 
91a6539494504f670223b8de5af2b87e67267d7c80b4372e6eb3a851dbb4 SHA512 
efb3d8eff4b4f8381364ab397298c6879e4ef3f6cdba799306696f961031f31e301b68f140624f0b6e7a0cb5d2bba02eb953203c1b7ab4a6a42d6368c8b39a29
 WHIRLPOOL 
48e7ecd314d672ef4dfcae603081d54b76fec98dac520a4449a6aa549793619cb2626fe68599c46458d078b6bbabf22d043be2de9899a42b564170dcab95af0a
+DIST stack-1.5.1-linux-i386.tar.gz 11546331 SHA256 
2973f7baab2f557c113a92a560ad79b887bd57102e8f4a5caf67551a42ea4250 SHA512 
f8b640d74ab013426a60d3bc6a8a190acad48439e7e80c33517c5904cf818e9d988e7b84dcd0fba15e24013887849c3d56ab7655a4bb549ee292058a00f14e12
 WHIRLPOOL 
c86aa67680005e5949eab71c3402304ed678d32fe40b488de9b64dbb0c0b2fcf58bb704e9e18bc7594b32a4ec2ad94b3b29bd5b1918bac6fef3b097a485413be
+DIST stack-1.5.1-linux-x86_64.tar.gz 11788896 SHA256 
b7df551c2f67464bebc5859fc0ecb2dc59cdbeb525af09e05ea4f2752828e542 SHA512 
837190e769e33d95a7f7d105884b82fb1ace47d84534c017ba44019d8a5335728d13f1e6c5a3591ee542172734ae2ed49d2f9ab3f19b25963a01d001fc24f1b3
 WHIRLPOOL 
a44dd4b620bbc6085ee8ad97bf33103136fc18599ac6094758c4ca33d7038304346d390888ac36617265e698e16c1710b9268a39ca264fe5f57c2151e3b8

diff --git a/dev-haskell/stack-bin/metadata.xml 
b/dev-haskell/stack-bin/metadata.xml
new file mode 100644
index 000..d702142876f
--- /dev/null
+++ b/dev-haskell/stack-bin/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   hask...@gentoo.org
+   Gentoo Haskell
+   
+   
+   Please see the README.md for usage information, and
+   the wiki on Github for more details.  Also, note that
+   the API for the library is not currently stable, and may
+   change significantly, even between minor releases. It is
+   currently only intended for use by the executable.
+   
+

diff --git a/dev-haskell/stack-bin/stack-bin-1.5.1.ebuild 
b/dev-haskell/stack-bin/stack-bin-1.5.1.ebuild
new file mode 100644
index 000..624ecf2f7aa
--- /dev/null
+++ b/dev-haskell/stack-bin/stack-bin-1.5.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="The Haskell Tool Stack (Binary)"
+HOMEPAGE="https://github.com/commercialhaskell/stack;
+
+uri() {
+   echo 
"https://github.com/commercialhaskell/stack/releases/download/v${PV}/stack-${PV}-linux-$1.tar.gz;
+}
+
+SRC_URI="
+   arm? ( $(uri arm) )
+   x86? ( $(uri i386) )
+   amd64? ( $(uri x86_64) )
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~arm"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   sys-libs/zlib
+   dev-libs/gmp:0
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="/usr/bin/stack-bin"
+QA_PRESTRIPPED="/usr/bin/stack-bin"
+
+src_prepare() {
+   default
+
+   mv stack-${PV}-*/doc doc || die
+   mv stack-${PV}-*/stack stack-bin || die
+}
+
+src_install() {
+   dodoc doc/*
+   dobin stack-bin
+}



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

2017-08-07 Thread Patrice Clement
commit: 89e35acfdbb605b90b93381e5fa7dcc4439fcb36
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 21:26:45 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 21:27:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e35acf

dev-util/ctags: regenerate Manifest file.

Gentoo-Bug: https://bugs.gentoo.org/627258

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-util/ctags/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/ctags/Manifest b/dev-util/ctags/Manifest
index e5721a4e31a..44fc13005d0 100644
--- a/dev-util/ctags/Manifest
+++ b/dev-util/ctags/Manifest
@@ -1,5 +1,5 @@
 DIST ctags-20161028.tar.xz 852108 SHA256 
8c10b3728ed90793fa25e5225e8cf56ee0a01b5da6d2bcdccd97e8ec0db2da4e SHA512 
2b991ca47fc77d26da43f55753624d1b21363dbeec4aff3daa57762ff81df97b18b067e8989f5d92d36dd8c02abc04ad42296dd5da3659ae0c8901001287c75e
 WHIRLPOOL 
ac8b51f9d453c7d5ae52044d711949112f0523c61c5de12827188c694f616c5108ff4af86e2b810da859b88ba9ada1a9f9d36ba52060ebb16ed570f185caea95
-DIST ctags-20170704.tar.gz 1294471 SHA256 
4528257c4ea651a847572c1b424a65742a6c153daced3f412c1c4f1b76cf828e SHA512 
0b8dfe2971a88384f95594336bfe97d5d8be88d0d2ef174c3a7eecf0ac71aa37a92be4eaf48df770d9b907265c9c8b8d4f15cea86449b6d84ff5c2172a1d12ba
 WHIRLPOOL 
52fdbc56afa9ca7d6bd75dcd94d3bba8b76081d0f8659757d841128e93f24a0b18457aeff7eadede257269f6be682dd26fa1119e05c85a9a448adbc471c0ca36
+DIST ctags-20170704.tar.gz 1295281 SHA256 
280b8689285dd0960364139661529e665bff39a6e234fa522ac2a1d79d512456 SHA512 
6ed134347a4be16a5dcff35186bd949e73bea645908a5ac43082b92fdfa6040b0b99ea04590948ae8308d4e9eb1042c83a4f0df006709f15cebfbf0741d73641
 WHIRLPOOL 
c6c02cba5d36326dab720e203e2cfdf2be96a3ccf3c1048aaf459c45e8d579fbd21e45f0efa413a16327521a5a140fe3a2ba81f695f7b5d9a2f53207d50ddec3
 DIST ctags-5.8.tar.gz 479927 SHA256 
0e44b45dcabe969e011e30c246f81abe5d32012db37395eb57d66e9e99c7 SHA512 
981912cd335978cde22864e977947fc75326572fb29518e559cc4a8ac1edc84b3604165218a666e36353f17da4f89f8e967acdb88696f816748eb946d79eaa15
 WHIRLPOOL 
04506a4495025907ee5fe41b9c4ff104dd234fc9ef39bd594158b36c550bf511b6ab5980a98736f9857dc47b99f1718a7ae2928fd4a1d1c0b57dfd3d79fce2ea
 DIST ctags-5.8_p20140919.tar.gz 582289 SHA256 
eebc85bd0206988250d9b24a7d02918bbca751259b086d5f53f31b4b39f571ee SHA512 
3b6ad6e2d1f683dffe9e79c607f9cc222c4aa3c1f5113540cd18ea66d8f862917c9d849ee81d8b33a57ddd09749fa28fde74868d48479269a6e17b6c0451342d
 WHIRLPOOL 
0c4008e914aed33097641fbb517f33e2ccf771a968ae3d1f6288422cdb634dda054ece11dd6204d624c9c78d4a36cecc4bb9d696d07f2bba24f3099aa3758f48
 DIST ctags-ada-mode-4.3.11.tar.bz2 14060 SHA256 
d25a3fd26b356adbd068f10a0b68691d36c154c04b96304b96386e169e4b6b57 SHA512 
51c71e13ef658cd6682f04c94485315c4a702080ef2c7786fc9881b03c86f1c1d43aa1a69c452e4b0b2f7a78383804b66b159542cb4eae0cd309bc1ddbe2eb6e
 WHIRLPOOL 
7e0ded8c97d3651e1afe48ec836697a4a19264baf3b203f6e98c134b88e3ab0eee7ac660789f5b955f0f827128996988694aa6c4bc78f18adf52724c5230da5d



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/

2017-08-07 Thread Amy Liffey
commit: 9b0e1da418df8b40ca935cacc8253062b3a0dde6
Author: Amy Liffey  gentoo  org>
AuthorDate: Mon Aug  7 20:53:54 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Aug  7 20:53:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b0e1da4

dev-lisp/sbcl: fix proxy maintainer address

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-lisp/sbcl/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/sbcl/metadata.xml b/dev-lisp/sbcl/metadata.xml
index 03a2c8bb338..e4a3f6aa22b 100644
--- a/dev-lisp/sbcl/metadata.xml
+++ b/dev-lisp/sbcl/metadata.xml
@@ -7,7 +7,7 @@
primary-maintainer


-   sionescu+gen...@cddr.org
+   b...@cddr.org
Stelian Ionescu (fe[nl]ix)
second-maintainer




[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-cairo2/

2017-08-07 Thread José María Alonso
commit: 507bb969bb21860ac5afc0d4121e39c2e932687b
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:48:21 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:48:21 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=507bb969

dev-lisp/cl-cairo2: Use https schema in live ebuild

 dev-lisp/cl-cairo2/cl-cairo2-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/cl-cairo2/cl-cairo2-.ebuild 
b/dev-lisp/cl-cairo2/cl-cairo2-.ebuild
index cd6a4483..7501dc05 100644
--- a/dev-lisp/cl-cairo2/cl-cairo2-.ebuild
+++ b/dev-lisp/cl-cairo2/cl-cairo2-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Comon Lisp bindings for the Cairo API"
 HOMEPAGE="http://cliki.net/cl-cairo2;
-EGIT_REPO_URI="git://github.com/rpav/cl-cairo2.git"
+EGIT_REPO_URI="https://github.com/rpav/cl-cairo2;
 
 LICENSE="Boost-1.0"
 SLOT="0"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-typesetting/

2017-08-07 Thread José María Alonso
commit: fbf9027fa806a4c91f953a7556efc2be58fabcfb
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:49:47 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:49:47 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=fbf9027f

dev-lisp/cl-typesetting: Use https schema in live ebuild

 dev-lisp/cl-typesetting/cl-typesetting-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/cl-typesetting/cl-typesetting-.ebuild 
b/dev-lisp/cl-typesetting/cl-typesetting-.ebuild
index 13b9c36d..d73423c5 100644
--- a/dev-lisp/cl-typesetting/cl-typesetting-.ebuild
+++ b/dev-lisp/cl-typesetting/cl-typesetting-.ebuild
@@ -8,7 +8,7 @@ inherit common-lisp-3 git-r3
 DESCRIPTION="CL-TYPESETTING is a complete typesetting system written in Common 
Lisp."
 HOMEPAGE="http://www.fractalconcept.com/asp/html/cl-typesetting.html
http://www.cliki.net/cl-typesetting;
-EGIT_REPO_URI="git://github.com/mbattyani/${PN}.git"
+EGIT_REPO_URI="https://github.com/mbattyani/cl-typesetting;
 
 LICENSE="BSD-2"
 SLOT="0"



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

2017-08-07 Thread José María Alonso
commit: 12d9a4ca75aec12a4ce2614b15bf5372d044b888
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:46:31 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:46:31 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=12d9a4ca

dev-lisp/esrap: Use https schema in live ebuild

 dev-lisp/esrap/esrap-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/esrap/esrap-.ebuild b/dev-lisp/esrap/esrap-.ebuild
index 3dc6c6b7..367d08a1 100644
--- a/dev-lisp/esrap/esrap-.ebuild
+++ b/dev-lisp/esrap/esrap-.ebuild
@@ -8,7 +8,7 @@ inherit common-lisp-3 git-r3
 DESCRIPTION="ESRAP -- a packrat parser generator for Common Lisp"
 HOMEPAGE="https://github.com/nikodemus/esrap
www.cliki.net/esrap"
-EGIT_REPO_URI="git://github.com/nikodemus/${PN}"
+EGIT_REPO_URI="https://github.com/nikodemus/esrap;
 
 LICENSE="MIT"
 SLOT="0"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-mongo/

2017-08-07 Thread José María Alonso
commit: 98a67bee6ab1f18337bf5d023d051a9ae77ff85c
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:44:51 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:44:51 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=98a67bee

dev-lisp/cl-mongo: Use https schema in live ebuild

 dev-lisp/cl-mongo/cl-mongo-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/cl-mongo/cl-mongo-.ebuild 
b/dev-lisp/cl-mongo/cl-mongo-.ebuild
index 05c33e44..2356ced0 100644
--- a/dev-lisp/cl-mongo/cl-mongo-.ebuild
+++ b/dev-lisp/cl-mongo/cl-mongo-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Lisp interface to mongo db"
 HOMEPAGE="https://github.com/fons/cl-mongo;
-EGIT_REPO_URI="git://github.com/fons/${PN}.git"
+EGIT_REPO_URI="https://github.com/fons/cl-mongo;
 
 LICENSE="MIT"
 SLOT="0"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-pdf/

2017-08-07 Thread José María Alonso
commit: edfffb6cf255d198645906c4f0d1416a9678bac3
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:44:05 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:44:05 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=edfffb6c

dev-lisp/cl-pdf: Use https schema in live ebuild

 dev-lisp/cl-pdf/cl-pdf-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/cl-pdf/cl-pdf-.ebuild 
b/dev-lisp/cl-pdf/cl-pdf-.ebuild
index c90301c0..bb91925e 100644
--- a/dev-lisp/cl-pdf/cl-pdf-.ebuild
+++ b/dev-lisp/cl-pdf/cl-pdf-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="CL-PDF is a cross-platform Common Lisp library for generating PDF 
files"
 HOMEPAGE="http://www.fractalconcept.com/asp/cl-pdf;
-EGIT_REPO_URI="git://github.com/mbattyani/cl-pdf.git"
+EGIT_REPO_URI="https://github.com/mbattyani/cl-pdf;
 
 LICENSE="BSD-2"
 SLOT="0"



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

2017-08-07 Thread José María Alonso
commit: 5c7ca68a9c2a259ac235cd851de09664ff3eaec1
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:42:49 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:42:49 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=5c7ca68a

dev-lisp/clinch: Use https schema in live ebuild

 dev-lisp/clinch/clinch-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/clinch/clinch-.ebuild 
b/dev-lisp/clinch/clinch-.ebuild
index 416b3f60..b56567e0 100644
--- a/dev-lisp/clinch/clinch-.ebuild
+++ b/dev-lisp/clinch/clinch-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Common Lisp 3D/2D Graphics Engine for OpenGL"
 HOMEPAGE="https://github.com/BradWBeer/CLinch;
-EGIT_REPO_URI="git://github.com/BradWBeer/CLinch.git"
+EGIT_REPO_URI="https://github.com/BradWBeer/CLinch;
 
 LICENSE="BSD-2"
 SLOT="0"



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

2017-08-07 Thread Alexis Ballier
commit: 0571cb863dc907fbfc6c915cf376b4f9d272a63a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Aug  7 09:20:25 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Aug  7 20:37:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0571cb86

dev-ml/ocamlnet: bump to 4.1.3

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-ml/ocamlnet/Manifest  |  1 +
 dev-ml/ocamlnet/ocamlnet-4.1.3.ebuild | 77 +++
 2 files changed, 78 insertions(+)

diff --git a/dev-ml/ocamlnet/Manifest b/dev-ml/ocamlnet/Manifest
index ae3ae742c73..ea8cb71ea58 100644
--- a/dev-ml/ocamlnet/Manifest
+++ b/dev-ml/ocamlnet/Manifest
@@ -1 +1,2 @@
 DIST ocamlnet-4.1.2.tar.gz 4623183 SHA256 
918c3921529cfe545e206b3535a58f43f665165044dd3548f685b583e94f14d8 SHA512 
69f42042a54efd662db2217224da53513fc7e72c7b2313d4a4a1128f1b4624f4f6298434f5b19f354b832119ff151abc81e85eb0108d6eb24f30f82d176e0b4d
 WHIRLPOOL 
27e1a8eb24361cadb8b2fb2b61bc6e93d71be8290873ca5bb1eebe16b9c9b1db69eae3b20c8deb3f6656aa79171a817b15acae53159d80ff8f4c946c201de173
+DIST ocamlnet-4.1.3.tar.gz 4553037 SHA256 
8a01393ed26c5475bba89aab928e9aa8a366af1e810416d9c916265a7f1cd5c5 SHA512 
683ab6f529639c9da01478ba8ba7a1bf89a418ad3872331bb3e29067c0a75ddc0db996630ce5a5dd116967d6e3e756ade02d9a78b865bbc226f95d01af9e3956
 WHIRLPOOL 
56f2772ea02bbf9c3166d13797083cabc8a8dad8f8c53be7796361383f7c9ff9406e0d273d402a2415b3f5437b163977ad7f5a1bfccb46994de552dd4ebd1acb

diff --git a/dev-ml/ocamlnet/ocamlnet-4.1.3.ebuild 
b/dev-ml/ocamlnet/ocamlnet-4.1.3.ebuild
new file mode 100644
index 000..1460d03f5cc
--- /dev/null
+++ b/dev-ml/ocamlnet/ocamlnet-4.1.3.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+inherit eutils findlib
+
+MY_P=${P/_beta/test}
+DESCRIPTION="Modules for OCaml application-level Internet protocols"
+HOMEPAGE="http://projects.camlcity.org/projects/ocamlnet.html;
+SRC_URI="http://download.camlcity.org/download/${MY_P}.tar.gz;
+
+LICENSE="ZLIB GPL-2+"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="gtk kerberos tk httpd +ocamlopt +pcre ssl zip"
+RESTRICT="installsources"
+
+# the auth-dh compile flag has been disabled as well, since it depends on
+# ocaml-cryptgps, which is not available.
+
+RDEPEND=">=dev-ml/findlib-1.0
+   pcre? ( >=dev-ml/pcre-ocaml-5:= )
+   >=dev-lang/ocaml-3.10.2:=[ocamlopt?]
+   tk? ( dev-ml/labltk:= )
+   ssl? ( net-libs/gnutls:= )
+   gtk? ( >=dev-ml/lablgtk-2:= )
+   kerberos? ( virtual/krb5 )
+   zip? ( dev-ml/camlzip:= )
+   "
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+S=${WORKDIR}/${MY_P}
+
+ocamlnet_use_with() {
+   if use $1; then
+   echo "-with-$2"
+   else
+   echo "-without-$2"
+   fi
+}
+
+ocamlnet_use_enable() {
+   if use $1; then
+   echo "-enable-$2"
+   else
+   echo "-disable-$2"
+   fi
+}
+
+src_configure() {
+   ./configure \
+   -bindir /usr/bin \
+   -datadir /usr/share/${PN} \
+   $(ocamlnet_use_enable ssl gnutls) \
+   $(ocamlnet_use_enable gtk gtk2) \
+   $(ocamlnet_use_enable kerberos gssapi) \
+   $(ocamlnet_use_enable pcre pcre) \
+   $(ocamlnet_use_enable tk tcl) \
+   $(ocamlnet_use_enable zip zip) \
+   $(ocamlnet_use_with httpd nethttpd) \
+   || die "Error : econf failed!"
+}
+
+src_compile() {
+   emake -j1 all
+   if use ocamlopt; then
+   emake -j1 opt
+   fi
+}
+
+src_install() {
+   export STRIP_MASK="*/bin/*"
+   findlib_src_install
+}



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

2017-08-07 Thread Alexis Ballier
commit: 8a945623d881da7bdb3291ff11d40ef8cffa94cf
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Aug  7 20:41:10 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Aug  7 20:41:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a945623

media-video/ffmpeg: Remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 media-video/ffmpeg/Manifest|   2 -
 media-video/ffmpeg/ffmpeg-3.2.5.ebuild | 460 ---
 media-video/ffmpeg/ffmpeg-3.3.2.ebuild | 475 -
 3 files changed, 937 deletions(-)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index 936466ff29d..ff06e57df3b 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -1,8 +1,6 @@
 DIST ffmpeg-2.8.10.tar.bz2 8585304 SHA256 
d1ce1a73503dce6e2b1e208cb93a2a8a7e89f9c64357ddc3e4da3cab33dea9c9 SHA512 
1ca8b0060361c49de201afc463bcd7c9340f09bbd116dff2539653bc36411d60cdf667874d2ec51664e141ee7a7be8bebc94e158687cb97db6bdfa40f00ec193
 WHIRLPOOL 
4ff9271290c138ad5caa50835da9fd6685fabf5a589cb6c068cfff6698ded948d93e9d40656dca3b516f9e591119d204e6283d57f7d2f0747a4f7ef9b322ebce
 DIST ffmpeg-2.8.11.tar.bz2 8582471 SHA256 
9987e0f6b1f66311390f807a0c18ad9c90652b5097cff17b3dcbeabdd89f8d32 SHA512 
60749897dccde1ff2840be9679f6e10118c7313bbeb1b07bb36acf7f311010f484259df9a4a43e60373726de9d6b54675e1961cc7b40646107142f8f42ea1601
 WHIRLPOOL 
4b71d63a1bbd63ebaa90b3c581f5d2c38e1a74c37044ad80fbf44b857d3d76722d3833da53575aa744779d9dd9a3dc0e41e9706611ba0899ab23c91ad17caa5f
 DIST ffmpeg-3.2.4.tar.bz2 9612274 SHA256 
c0fa3593a2e9e96ace3c1757900094437ad96d1d6ca19f057c378b5f394496a4 SHA512 
ba5004d0f2659faa139c7dbf2f0fc6bab1d4e017d919f4ac271a5d2e8e4a3478909176e3a4d1ad33ddf2f62ab28dd9e00ce9be1399efb7cb3276dde79134cdaa
 WHIRLPOOL 
e97a19541f990f86b8adbdc3fd20115258e5644b98a5c7f4e075f8f1320881da33fb9be969d8a5e20d79eea4c63b1c9510841b5cf0d5b479408ff231d3ba69cc
-DIST ffmpeg-3.2.5.tar.bz2 9619556 SHA256 
9ca9f24a442d5a5f0c127106daab5e08e30468e34f97c936cce6be9b114275ae SHA512 
304a10c9bafce163d2bfe79fcf989bdd919d6361cb188acf3ebba32094df1ba23e66468a11f789392589e4f1f6c9e9dd7edfaadf999b92ee8540301723fd6501
 WHIRLPOOL 
f0cc3355b2f5d8129221451dce7c2b4dcd9e80ba43c53f97a1931849d6d5eb0b882d70cd3397409f37f103e7237c2f5f04082acbe8d3a2b4827add793fde6d8d
 DIST ffmpeg-3.2.6.tar.bz2 9623111 SHA256 
602b1a8c91bbc87f6e8897c0918d2bf1c7d4820d3888712f0ff0c1198a3f1e8f SHA512 
eca75524374003eac78033bd2a744b459a4dc631c59150b6c9291e06a693bdd14e0b11cae9c800446f0648edccc066480c2b869bcb456a74eeabb91ab41f8285
 WHIRLPOOL 
b2b5b78ae0a1ad0c44387e1241825a79cfe87234f1470d9095757b25ed724e04fe42ae96287e3242a80f6f74f380c5167b5388ddc6abf4d6738a1bc4af1ebe4d
 DIST ffmpeg-3.2.7.tar.bz2 9622391 SHA256 
d5a0f891ed7764876e3c2fd541adcab90641eefe9103ab4d8269a346b10ebc8a SHA512 
a5b6df77d2d4ede0cc2f398b763d7405f43f43e37c11a596ec1a2a8921714875fd8fa9ffbcff84355854780872ab7313c859a4a19bf419298b4d3bc797ad8ac4
 WHIRLPOOL 
8c3f36cd1d254ce5ed3917d498124860bb9620a65add1a3461844565fddb6d315914d38cc9760b7e45ebe4e1818e1872eeaebe65a040dd738a5bcc6508233f7d
-DIST ffmpeg-3.3.2.tar.bz2 9937466 SHA256 
216900d5c0af9017bb8f76b0ad23f0ac53cf7fc618cf04b40d989bd99b088e6a SHA512 
673f18b2935d23703e5f325a2c951c69f49b2598acdf1bf3987487eecd246670f792d4363def6832bb17f16cb0e919994cd79141d1d95c8112644c979fb8b796
 WHIRLPOOL 
92ff3ca83ee4a7479a84dcf3f938a8204c8803d15ee29512a90eb51115ade054ec9044e769a2be6a58dda2cf64bd8d62dfe831244ba43115bf3d4e4f944b8a14
 DIST ffmpeg-3.3.3.tar.bz2 9940959 SHA256 
1069ac8fc7f52e566bea28b41b9c437246aeb5096f82fb26fa96dc7d5a10a473 SHA512 
1cc63bf73356f4e618c0d3572a216bdf5689f10deff56b4262f6d740b0bee5a4b3eac234f45fca3d4d2da77903a507b4fba725b76d2d2070f31b6dae9e7a2dab
 WHIRLPOOL 
c90d2cc0d3fa7c3635a00c8039f94ff9e7b8413bd14400ddd6f1cccdc9cbbbfd2254ca2a209cefccd7e6c2f750b4594053d4c664eb2867ee208fe5657e95330b

diff --git a/media-video/ffmpeg/ffmpeg-3.2.5.ebuild 
b/media-video/ffmpeg/ffmpeg-3.2.5.ebuild
deleted file mode 100644
index d7e03bf5fdf..000
--- a/media-video/ffmpeg/ffmpeg-3.2.5.ebuild
+++ /dev/null
@@ -1,460 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# Subslot: libavutil major.libavcodec major.libavformat major
-# Since FFmpeg ships several libraries, subslot is kind of limited here.
-# Most consumers will use those three libraries, if a "less used" library
-# changes its soname, consumers will have to be rebuilt the old way
-# (preserve-libs).
-# If, for example, a package does not link to libavformat and only libavformat
-# changes its ABI then this package will be rebuilt needlessly. Hence, such a
-# package is free _not_ to := depend on FFmpeg but I would strongly encourage
-# doing so since such a case is unlikely.
-FFMPEG_SUBSLOT=55.57.57
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git"
-fi
-

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

2017-08-07 Thread Alexis Ballier
commit: f64780b95a6cf51e47c365c6ba34631b9dd19649
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Aug  7 20:39:11 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Aug  7 20:39:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f64780b9

media-video/ffmpeg: add := dep on webp

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 media-video/ffmpeg/ffmpeg-3.3.3.ebuild | 2 +-
 media-video/ffmpeg/ffmpeg-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/ffmpeg/ffmpeg-3.3.3.ebuild 
b/media-video/ffmpeg/ffmpeg-3.3.3.ebuild
index 2a83529d3dd..fb789614634 100644
--- a/media-video/ffmpeg/ffmpeg-3.3.3.ebuild
+++ b/media-video/ffmpeg/ffmpeg-3.3.3.ebuild
@@ -191,7 +191,7 @@ RDEPEND="
)
twolame? ( >=media-sound/twolame-0.3.13-r1[${MULTILIB_USEDEP}] )
wavpack? ( >=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}] )
-   webp? ( >=media-libs/libwebp-0.3.0[${MULTILIB_USEDEP}] )
+   webp? ( >=media-libs/libwebp-0.3.0:=[${MULTILIB_USEDEP}] )
x264? ( >=media-libs/x264-0.0.20130506:=[${MULTILIB_USEDEP}] )
x265? ( >=media-libs/x265-1.6:=[${MULTILIB_USEDEP}] )
xvid? ( >=media-libs/xvid-1.3.2-r1[${MULTILIB_USEDEP}] )

diff --git a/media-video/ffmpeg/ffmpeg-.ebuild 
b/media-video/ffmpeg/ffmpeg-.ebuild
index 046da05bb5b..e2ab9a865dc 100644
--- a/media-video/ffmpeg/ffmpeg-.ebuild
+++ b/media-video/ffmpeg/ffmpeg-.ebuild
@@ -181,7 +181,7 @@ RDEPEND="
)
twolame? ( >=media-sound/twolame-0.3.13-r1[${MULTILIB_USEDEP}] )
wavpack? ( >=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}] )
-   webp? ( >=media-libs/libwebp-0.3.0[${MULTILIB_USEDEP}] )
+   webp? ( >=media-libs/libwebp-0.3.0:=[${MULTILIB_USEDEP}] )
x264? ( >=media-libs/x264-0.0.20130506:=[${MULTILIB_USEDEP}] )
x265? ( >=media-libs/x265-1.6:=[${MULTILIB_USEDEP}] )
xvid? ( >=media-libs/xvid-1.3.2-r1[${MULTILIB_USEDEP}] )



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

2017-08-07 Thread José María Alonso
commit: 2b8c6209207da4052a41c360a8e34906de72f0e4
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:41:55 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:41:55 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=2b8c6209

dev-lisp/clx: Use https schema in live ebuild

 dev-lisp/clx/clx-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/clx/clx-.ebuild b/dev-lisp/clx/clx-.ebuild
index efbfcfbe..02b1df2b 100644
--- a/dev-lisp/clx/clx-.ebuild
+++ b/dev-lisp/clx/clx-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="A fork of crhodes' fork of danb's fork of CLX, an X11 client for 
Common Lisp"
 HOMEPAGE="https://github.com/sharplispers/clx http://www.cliki.net/CLX;
-EGIT_REPO_URI="git://github.com/sharplispers/clx.git"
+EGIT_REPO_URI="https://github.com/sharplispers/clx;
 
 LICENSE="MIT"
 SLOT="0"



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

2017-08-07 Thread José María Alonso
commit: abf37c1aaa167828b4abcad081ea981851d2f1d0
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:40:32 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:40:32 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=abf37c1a

dev-lisp/lift: Use https schema in live ebuild

 dev-lisp/lift/lift-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/lift/lift-.ebuild b/dev-lisp/lift/lift-.ebuild
index 029a956a..5c761551 100644
--- a/dev-lisp/lift/lift-.ebuild
+++ b/dev-lisp/lift/lift-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="LIFT is yet another LIsp Framework for Testing"
 HOMEPAGE="http://common-lisp.net/project/lift/;
-EGIT_REPO_URI="git://github.com/gwkkwg/${PN}"
+EGIT_REPO_URI="https://github.com/gwkkwg/${PN};
 
 LICENSE="MIT"
 SLOT="0"



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

2017-08-07 Thread José María Alonso
commit: 146ffe10f62de275de17fa4ddf1bf150d9dfef5a
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:38:40 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:38:40 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=146ffe10

dev-lisp/zip: Use https schema in live ebuild

 dev-lisp/zip/zip-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/zip/zip-.ebuild b/dev-lisp/zip/zip-.ebuild
index fb98068a..b8ddd895 100644
--- a/dev-lisp/zip/zip-.ebuild
+++ b/dev-lisp/zip/zip-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="A library for .zip-file reading and writing, written in Common 
Lisp."
 HOMEPAGE="http://common-lisp.net/project/zip/;
-EGIT_REPO_URI="git://github.com/bluelisp/${PN}.git"
+EGIT_REPO_URI="https://github.com/bluelisp/${PN};
 
 LICENSE="LLGPL-2.1"
 SLOT="0"



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

2017-08-07 Thread José María Alonso
commit: 2885f7a7e72ba7f50b7904ede4ecf6911b352cad
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:37:25 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:37:25 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=2885f7a7

dev-lisp/colorize: Use https schema in live ebuild

 dev-lisp/colorize/colorize-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/colorize/colorize-.ebuild 
b/dev-lisp/colorize/colorize-.ebuild
index cdc1f900..41eb5df3 100644
--- a/dev-lisp/colorize/colorize-.ebuild
+++ b/dev-lisp/colorize/colorize-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Colorize is a Common Lisp application for colorizing source code."
 HOMEPAGE="http://www.cliki.net/colorize;
-EGIT_REPO_URI="git://github.com/redline6561/${PN}"
+EGIT_REPO_URI="https://github.com/redline6561/${PN};
 
 LICENSE="MIT"
 SLOT="0"



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

2017-08-07 Thread José María Alonso
commit: ade4bd44d899ac3bf1e7208f7b507ca0f7e43ea8
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 20:34:16 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 20:34:16 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=ade4bd44

dev-lisp/graylex: Use https schema in live ebuild

 dev-lisp/graylex/graylex-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/graylex/graylex-.ebuild 
b/dev-lisp/graylex/graylex-.ebuild
index c3717525..78db3fae 100644
--- a/dev-lisp/graylex/graylex-.ebuild
+++ b/dev-lisp/graylex/graylex-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Gray lexer input streams"
 HOMEPAGE="http://cliki.net/graylex;
-EGIT_REPO_URI="git://github.com/e-user/${PN}.git"
+EGIT_REPO_URI="https://github.com/e-user/${PN};
 
 LICENSE="GPL-3+"
 SLOT="0"



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

2017-08-07 Thread Matt Turner
commit: 17d39e361c73db8d80ee6797804367d20d01e842
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Aug  7 20:27:10 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Aug  7 20:28:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17d39e36

dev-libs/wayland-protocols: Version bump to 1.10

 dev-libs/wayland-protocols/Manifest|  1 +
 .../wayland-protocols-1.10.ebuild  | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-libs/wayland-protocols/Manifest 
b/dev-libs/wayland-protocols/Manifest
index 777857de27c..44f9cecc61a 100644
--- a/dev-libs/wayland-protocols/Manifest
+++ b/dev-libs/wayland-protocols/Manifest
@@ -1,3 +1,4 @@
+DIST wayland-protocols-1.10.tar.xz 117652 SHA256 
5719c51d7354864983171c5083e93a72ac99229e2b460c4bb10513de08839c0a SHA512 
4cecee723c67b483ecb2a1e36e415935a90f080307531d8fb27cb3f0fe1ae10c1f2aae9b919c8744c2e33cb52943d15202aee960302763a338bdcd16fea7aeb5
 WHIRLPOOL 
d10f31a210959827b9e34f72602e6f36aca9825120e861de8ebe3622073053692db06a79f5cd3e3884c9ad4910dc7ea49b3e966763b0b405890adc38c84bf12c
 DIST wayland-protocols-1.7.tar.xz 113220 SHA256 
635f2a937d318f1fecb97b54074ca211486e38af943868dd0fa82ea38d091c1f SHA512 
291a3226cc538de3b81bdffa5de513b305a946bfc3481e21c254fcc6a023e0cf2ff1869509c7ae193da02460f1d4a3c5cd5f1ca13b2550886acffcc636fb30d2
 WHIRLPOOL 
6528e73461455278f2086fc953d251042f870360ab854f388658eb353f3d0affcc6aa369d912a3edc9040a026468a3a0f63b42cbc2a27a0902e9ab94ae2a7bfc
 DIST wayland-protocols-1.8.tar.xz 112124 SHA256 
e3fa5f2812cfec3c1c2573bd34adfe37d4d8950dba572d9ec6c52adcc5fe4b9a SHA512 
8d9bbd4eb52c0b727c75f0379e53e29a197ce21f5a0a10a6351c053e26a635b53dcb418fa44f0fa5e0484d1457681a7f69afd3c98f2095be16ae1b0d0aeb0c50
 WHIRLPOOL 
4974b1c88ab32a3ec334c15c00e3f3dcf09ffeba9d909140d980d037e4edb21cd906699afd83577cc7505f399b2b10e75ca6df157a97e313b1d182cf5a673c5c
 DIST wayland-protocols-1.9.tar.xz 116152 SHA256 
666b72de30ca3b70c2b54ccc9e8114cb520e76db224c816b5e23501099174f75 SHA512 
16154520dd355ba9d459baf942945c6b7d267ab4463a31eba76f5d300569ffa993641f65d3e2cde89d735767a3bf743382449f58c5f42521dbdc7db1b1d0dc0d
 WHIRLPOOL 
25102072f7b3e7be0a6a860c4992ff301d0afda4d91867daf5e0e848dbb3d986c0f1ba9162210b00acc12ff9af2aa6c19c19718b98c289433c24df18cec780a9

diff --git a/dev-libs/wayland-protocols/wayland-protocols-1.10.ebuild 
b/dev-libs/wayland-protocols/wayland-protocols-1.10.ebuild
new file mode 100644
index 000..d25cad183e7
--- /dev/null
+++ b/dev-libs/wayland-protocols/wayland-protocols-1.10.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+if [[ ${PV} = * ]]; then
+   EGIT_REPO_URI="git://anongit.freedesktop.org/git/wayland/${PN}"
+   GIT_ECLASS="git-r3"
+   EXPERIMENTAL="true"
+   AUTOTOOLS_AUTORECONF=1
+fi
+
+inherit autotools-utils ${GIT_ECLASS}
+
+DESCRIPTION="Wayland protocol files"
+HOMEPAGE="https://wayland.freedesktop.org/;
+
+if [[ $PV = * ]]; then
+   SRC_URI="${SRC_PATCHES}"
+   KEYWORDS=""
+else
+   SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-libs/wayland"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_test() {
+   export XDG_RUNTIME_DIR="${T}/runtime-dir"
+   mkdir "${XDG_RUNTIME_DIR}" || die
+   chmod 0700 "${XDG_RUNTIME_DIR}" || die
+
+   autotools-utils_src_test
+}



[gentoo-commits] proj/lisp:master commit in: dev-lisp/asdf-system-connections/

2017-08-07 Thread José María Alonso
commit: 9b5b3703cf22cd1b65c536bd095993c790c54382
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:52:44 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:52:44 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=9b5b3703

dev-lisp/asdf-system-connections: Use https schema in live ebuild

 dev-lisp/asdf-system-connections/asdf-system-connections-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-lisp/asdf-system-connections/asdf-system-connections-.ebuild 
b/dev-lisp/asdf-system-connections/asdf-system-connections-.ebuild
index 53905026..d65b5cce 100644
--- a/dev-lisp/asdf-system-connections/asdf-system-connections-.ebuild
+++ b/dev-lisp/asdf-system-connections/asdf-system-connections-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Provides auto-loading of systems that only make sense when others 
are loaded."
 
HOMEPAGE="http://common-lisp.net/project/cl-containers/asdf-system-connections/;
-EGIT_REPO_URI="git://github.com/gwkkwg/${PN}"
+EGIT_REPO_URI="https://github.com/gwkkwg/${PN};
 
 LICENSE="MIT"
 SLOT="0"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-colors/

2017-08-07 Thread José María Alonso
commit: 3758a9be4899d5d01a379b35d2dcd2f63bee6e6a
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:48:49 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:48:49 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=3758a9be

dev-lisp/cl-colors: Use https schema in live ebuild

 dev-lisp/cl-colors/cl-colors-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/cl-colors/cl-colors-.ebuild 
b/dev-lisp/cl-colors/cl-colors-.ebuild
index f3626588..75df70f4 100644
--- a/dev-lisp/cl-colors/cl-colors-.ebuild
+++ b/dev-lisp/cl-colors/cl-colors-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Simple color library for Common Lisp"
 HOMEPAGE="http://cliki.net/cl-colors;
-EGIT_REPO_URI="git://github.com/tpapp/${PN}.git"
+EGIT_REPO_URI="https://github.com/tpapp/${PN};
 
 LICENSE="Boost-1.0"
 SLOT="0"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-heredoc/

2017-08-07 Thread José María Alonso
commit: 02c06649b278ed2268f87d3b663d87e03a930fee
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:44:34 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:44:34 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=02c06649

dev-lisp/cl-heredoc: Use https schema in live ebuild

 dev-lisp/cl-heredoc/cl-heredoc-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/cl-heredoc/cl-heredoc-.ebuild 
b/dev-lisp/cl-heredoc/cl-heredoc-.ebuild
index 0c6234f5..2a8a6c4d 100644
--- a/dev-lisp/cl-heredoc/cl-heredoc-.ebuild
+++ b/dev-lisp/cl-heredoc/cl-heredoc-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Common Lisp reader heredoc dispatcher"
 HOMEPAGE="http://www.cliki.net/cl-heredoc;
-EGIT_REPO_URI="git://github.com/e-user/${PN}.git"
+EGIT_REPO_URI="https://github.com/e-user/${PN};
 
 LICENSE="GPL-3+"
 SLOT="0"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/s-sysdeps/

2017-08-07 Thread José María Alonso
commit: 52d9f9da529e7d5c708bdc3b99cb76aafc2ca645
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:43:48 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:43:48 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=52d9f9da

dev-lisp/s-sysdeps: Use https schema in live ebuild

 dev-lisp/s-sysdeps/s-sysdeps-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/s-sysdeps/s-sysdeps-.ebuild 
b/dev-lisp/s-sysdeps/s-sysdeps-.ebuild
index 7da295a7..fbda197b 100644
--- a/dev-lisp/s-sysdeps/s-sysdeps-.ebuild
+++ b/dev-lisp/s-sysdeps/s-sysdeps-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="A Common Lisp abstraction layer over platform dependent 
functionality."
 HOMEPAGE="https://github.com/svenvc/s-sysdeps;
-EGIT_REPO_URI="git://github.com/svenvc/${PN}.git"
+EGIT_REPO_URI="https://github.com/svenvc/${PN};
 
 LICENSE="LLGPL-2.1"
 SLOT="0"



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

2017-08-07 Thread José María Alonso
commit: 30ace80ebc2659a7ebd1e35ece87827a795ec33a
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:42:28 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:42:28 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=30ace80e

dev-lisp/eos: Use https schema in live ebuild

 dev-lisp/eos/eos-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/eos/eos-.ebuild b/dev-lisp/eos/eos-.ebuild
index 69b6dae6..314ff517 100644
--- a/dev-lisp/eos/eos-.ebuild
+++ b/dev-lisp/eos/eos-.ebuild
@@ -8,7 +8,7 @@ inherit common-lisp-3 git-r3
 DESCRIPTION="Eos is a drop-in replacement for the FiveAM Test Framework"
 HOMEPAGE="https://github.com/adlai/Eos
http://www.cliki.net/Eos;
-EGIT_REPO_URI="git://github.com/adlai/Eos"
+EGIT_REPO_URI="https://github.com/adlai/Eos;
 
 LICENSE="MIT"
 SLOT="0"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/let-plus/

2017-08-07 Thread José María Alonso
commit: f67204fc5ebc779dde3a30b63d85f9f82829842d
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:41:50 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:41:50 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=f67204fc

dev-lisp/let-plus: Use https schema in live ebuild

 dev-lisp/let-plus/let-plus-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/let-plus/let-plus-.ebuild 
b/dev-lisp/let-plus/let-plus-.ebuild
index 6d57d90e..3c0efe7d 100644
--- a/dev-lisp/let-plus/let-plus-.ebuild
+++ b/dev-lisp/let-plus/let-plus-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="LET+: destructuring extension of LET*"
 HOMEPAGE="http://www.cliki.net/let-plus;
-EGIT_REPO_URI="git://github.com/tpapp/${PN}"
+EGIT_REPO_URI="https://github.com/tpapp/${PN};
 
 LICENSE="Boost-1.0"
 SLOT="0"



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

2017-08-07 Thread Robin H. Johnson
commit: d6915ed86bf72160e0ff203fb52f83bf4aa8d863
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Aug  7 19:41:14 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Aug  7 19:41:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6915ed8

sys-fs/lvm2: bump.

Package-Manager: portage-2.3.6

 sys-fs/lvm2/Manifest |   1 +
 sys-fs/lvm2/lvm2-2.02.173.ebuild | 297 +++
 2 files changed, 298 insertions(+)

diff --git a/sys-fs/lvm2/Manifest b/sys-fs/lvm2/Manifest
index cfbec6371c8..5e37aa936bb 100644
--- a/sys-fs/lvm2/Manifest
+++ b/sys-fs/lvm2/Manifest
@@ -5,3 +5,4 @@ DIST LVM2.2.02.145.tgz 1986370 SHA256 
98b7c4c07c485a462c6a86e1a5265757133ceea362
 DIST LVM2.2.02.166.tgz 2148324 SHA256 
e120b066b85b224552efda40204488c5123de068725676fd6e5c8bc655051b94 SHA512 
8bebe9b474f791b5edf5366b0bd24861fbbaf8a83afa2a9e2a8e3917e05e4ecbf6877f018be03ffb4e9b4c8832208264165b85182bf79a07661adf35128b4a21
 WHIRLPOOL 
a4c2e0b2e8da85301b2518b35193304436715fdf45cbc7bc28fd6f7b88af15e611134d5a530d2311b23544aa67c3a7f13fd3780d4d46fc10854e624fb8b27870
 DIST LVM2.2.02.171.tgz 2333643 SHA256 
b815a711a2fabaa5c3dc1a4a284df0268bf0f325f0fc0f5c9530c9bbb54b9964 SHA512 
801adcc2ae483f81edf6bfba73090b6b8f710370e48764f08a62da71d617157075bea01593c2535ad5ba71dcb5e0cfe83cec9a65180a6e8b9e0d214bdee79883
 WHIRLPOOL 
fedd62612c6bb4b7764277a0d4474ff3557f041858c71eb7bf2a1c06b646637fe719f91a12c1b5c58ccefa7f4d2daba6bf30409340c52fd3a1b8b01ce62467ab
 DIST LVM2.2.02.172.tgz 2351684 SHA256 
eab09d4132e6ade4db22249e554919045948efb908ffa40409e8e8e0c316f708 SHA512 
402612667f279be5f1c682b9037022788e9b76e3157907a0832e8b7847c3aa96e4b44a3bd880657a7e577ab46db0e4f283ac6edbb52502e365617633c802ae40
 WHIRLPOOL 
618123038cbfce1cba7e90e22e5ffccc9d92ddad4b60dd92dedc46ea26729700c6c7003e701c4f2a511f4a34a834ea277f619c557e2865540e4dd9826a8aa76b
+DIST LVM2.2.02.173.tgz 2363504 SHA256 
ceb9168c7e009ef487f96a1fe969b23cbb07d920ffb71769affdbdf30fea8d64 SHA512 
c2ea8beafe006abf9282f51ec98600fd0ebff816d53c10ecbb19bbf336ada4825135cf9c92ccd364afb18f8b1d7e163eff5bdec8dfdd70dfb9ba45db2f6bdd5e
 WHIRLPOOL 
fcafa785bb6c9223b52e31c09570bc68bae9495431b947265e31a2b680b549f76f2fe1d2ccc56420ceec50e8b55ef9314706d9bc50348b3c449192d9fe03c4d0

diff --git a/sys-fs/lvm2/lvm2-2.02.173.ebuild b/sys-fs/lvm2/lvm2-2.02.173.ebuild
new file mode 100644
index 000..4de31e3cbcc
--- /dev/null
+++ b/sys-fs/lvm2/lvm2-2.02.173.ebuild
@@ -0,0 +1,297 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools eutils linux-info multilib systemd toolchain-funcs udev 
flag-o-matic
+
+DESCRIPTION="User-land utilities for LVM2 (device-mapper) software"
+HOMEPAGE="https://sourceware.org/lvm2/;
+SRC_URI="ftp://sourceware.org/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz
+   ftp://sourceware.org/pub/lvm2/old/${PN/lvm/LVM}.${PV}.tgz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="readline static static-libs systemd clvm cman corosync lvm1 
lvm2create_initrd openais sanlock selinux +udev +thin device-mapper-only"
+REQUIRED_USE="device-mapper-only? ( !clvm !cman !corosync !lvm1 
!lvm2create_initrd !openais !sanlock !thin )
+   systemd? ( udev )
+   clvm? ( !systemd )"
+
+DEPEND_COMMON="
+   clvm? (
+   cman? ( =sys-cluster/cman-3* )
+   corosync? ( sys-cluster/corosync )
+   openais? ( sys-cluster/openais )
+   =sys-cluster/libdlm-3*
+   )
+
+   readline? ( sys-libs/readline:0= )
+   sanlock? ( sys-cluster/sanlock )
+   systemd? ( >=sys-apps/systemd-205:0= )
+   udev? ( >=virtual/libudev-208:=[static-libs?] )"
+# /run is now required for locking during early boot. /var cannot be assumed to
+# be available -- thus, pull in recent enough baselayout for /run.
+# This version of LVM is incompatible with cryptsetup <1.1.2.
+RDEPEND="${DEPEND_COMMON}
+   >=sys-apps/baselayout-2.2
+   !=sys-apps/util-linux-2.16
+   lvm2create_initrd? ( sys-apps/makedev )
+   thin? ( >=sys-block/thin-provisioning-tools-0.3.0 )"
+# note: thin- 0.3.0 is required to avoid --disable-thin_check_needs_check
+# USE 'static' currently only works with eudev, bug 520450
+DEPEND="${DEPEND_COMMON}
+   virtual/pkgconfig
+   >=sys-devel/binutils-2.20.1-r1
+   sys-devel/autoconf-archive
+   static? (
+   selinux? ( sys-libs/libselinux[static-libs] )
+   udev? ( >=sys-fs/eudev-3.1.2[static-libs] )
+   >=sys-apps/util-linux-2.16[static-libs]
+   )"
+
+S=${WORKDIR}/${PN/lvm/LVM}.${PV}
+
+PATCHES=(
+   # Gentoo specific modification(s):
+   "${FILESDIR}"/${PN}-2.02.129-example.conf.in.patch
+
+   # For upstream -- review and forward:
+   "${FILESDIR}"/${PN}-2.02.63-always-make-static-libdm.patch
+   "${FILESDIR}"/${PN}-2.02.56-lvm2create_initrd.patch
+  

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

2017-08-07 Thread José María Alonso
commit: be198a26f8efc9b313f6adbdbc699b5cace1b6fa
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:40:52 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:40:52 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=be198a26

dev-lisp/cffi: Use https schema in live ebuild

 dev-lisp/cffi/cffi-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/cffi/cffi-.ebuild b/dev-lisp/cffi/cffi-.ebuild
index 6fb7ab48..b237a123 100644
--- a/dev-lisp/cffi/cffi-.ebuild
+++ b/dev-lisp/cffi/cffi-.ebuild
@@ -9,7 +9,7 @@ MY_P=${PN}_${PV}
 
 DESCRIPTION="The Common Foreign Function Interface (CFFI)"
 HOMEPAGE="http://common-lisp.net/project/cffi/;
-EGIT_REPO_URI="git://github.com/${PN}/${PN}/"
+EGIT_REPO_URI="https://github.com/${PN}/${PN}/;
 
 LICENSE="MIT"
 SLOT="0"



[gentoo-commits] proj/lisp:master commit in: dev-lisp/sb-cga/

2017-08-07 Thread José María Alonso
commit: 1c9cbb007b37237af0a438f00194df2c4960710a
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:39:14 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:39:14 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=1c9cbb00

dev-lisp/sb-cga: Use https schema in live ebuild

 dev-lisp/sb-cga/sb-cga-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/sb-cga/sb-cga-.ebuild 
b/dev-lisp/sb-cga/sb-cga-.ebuild
index c5dcf9f3..28c17a36 100644
--- a/dev-lisp/sb-cga/sb-cga-.ebuild
+++ b/dev-lisp/sb-cga/sb-cga-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Computer graphics algebra library for SBCL."
 HOMEPAGE="https://github.com/nikodemus/sb-cga;
-EGIT_REPO_URI="git://github.com/nikodemus/${PN}"
+EGIT_REPO_URI="https://github.com/nikodemus/${PN};
 
 LICENSE="MIT"
 SLOT="0"



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

2017-08-07 Thread José María Alonso
commit: da48046f056a1e0e0f36d004414e0b8f00fb2d81
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:38:40 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:38:40 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=da48046f

dev-lisp/parenscript: Use https schema in live ebuild

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

diff --git a/dev-lisp/parenscript/parenscript-.ebuild 
b/dev-lisp/parenscript/parenscript-.ebuild
index 2c0cf581..bf66bf49 100644
--- a/dev-lisp/parenscript/parenscript-.ebuild
+++ b/dev-lisp/parenscript/parenscript-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Parenscript is a small lispy language that can be compiled to 
JavaScript."
 HOMEPAGE="http://common-lisp.net/project/parenscript/;
-EGIT_REPO_URI="git://github.com/vsedach/Parenscript"
+EGIT_REPO_URI="https://github.com/vsedach/Parenscript;
 
 LICENSE="BSD"
 SLOT="0"
@@ -30,6 +30,6 @@ src_install() {
dodoc contributors README
if use doc ; then
dodoc docs/introduction.lisp
-   dohtml -r docs
+   dodoc -r docs
fi
 }



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-css/

2017-08-07 Thread José María Alonso
commit: 3af9d9bdcd437e33e8173782e472ec4b89f466ef
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:37:04 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:37:04 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=3af9d9bd

dev-lisp/cl-css: Use https schema in live ebuild

 dev-lisp/cl-css/cl-css-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/cl-css/cl-css-.ebuild 
b/dev-lisp/cl-css/cl-css-.ebuild
index 05056f1b..f516c7c2 100644
--- a/dev-lisp/cl-css/cl-css-.ebuild
+++ b/dev-lisp/cl-css/cl-css-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="Non-validating, inline CSS generator for Common Lisp"
 HOMEPAGE="https://github.com/Inaimathi/cl-css;
-EGIT_REPO_URI="git://github.com/Inaimathi/${PN}.git"
+EGIT_REPO_URI="https://github.com/Inaimathi/${PN};
 
 LICENSE="MIT"
 SLOT="0"



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

2017-08-07 Thread José María Alonso
commit: 471acd22aa5424482f0ffbba6e0e8b62286a7765
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Mon Aug  7 19:36:23 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Mon Aug  7 19:36:23 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=471acd22

dev-lisp/smackjack: Use https schema in live ebuild

 dev-lisp/smackjack/smackjack-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/smackjack/smackjack-.ebuild 
b/dev-lisp/smackjack/smackjack-.ebuild
index b9b687cd..183d912a 100644
--- a/dev-lisp/smackjack/smackjack-.ebuild
+++ b/dev-lisp/smackjack/smackjack-.ebuild
@@ -7,7 +7,7 @@ inherit common-lisp-3 git-r3
 
 DESCRIPTION="An Ajax Common Lisp Library using parenscript and hunchentoot"
 HOMEPAGE="https://github.com/aarvid/SmackJack;
-EGIT_REPO_URI="git://github.com/aarvid/SmackJack"
+EGIT_REPO_URI="https://github.com/aarvid/SmackJack;
 
 LICENSE="MIT"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: net-print/cups-filters/

2017-08-07 Thread Austin English
commit: 688cb6112495f5f2a282ff2b846c2fcff2c03eaf
Author: Austin English  gentoo  org>
AuthorDate: Mon Aug  7 19:27:58 2017 +
Commit: Austin English  gentoo  org>
CommitDate: Mon Aug  7 19:28:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=688cb611

net-print/cups-filters: append -std=c++11 to CXXFLAGS

Gentoo-Bug: https://bugs.gentoo.org/626800

Acked-By: Manuel Rueger  gentoo.org>
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-print/cups-filters/cups-filters-1.16.0.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net-print/cups-filters/cups-filters-1.16.0.ebuild 
b/net-print/cups-filters/cups-filters-1.16.0.ebuild
index 99e00cdae7d..25780fbc625 100644
--- a/net-print/cups-filters/cups-filters-1.16.0.ebuild
+++ b/net-print/cups-filters/cups-filters-1.16.0.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 GENTOO_DEPEND_ON_PERL=no
 
-inherit perl-module systemd
+inherit perl-module systemd flag-o-matic
 
 if [[ "${PV}" == "" ]] ; then
inherit bzr autotools
@@ -50,6 +50,9 @@ DEPEND="${RDEPEND}
 src_prepare() {
default
[[ "${PV}" == "" ]] && eautoreconf
+
+   # Bug #626800
+   append-cxxflags -std=c++11
 }
 
 src_configure() {



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

2017-08-07 Thread Matt Turner
commit: 8e8e95f899854f270c6e292e9445ede1d8ca20f8
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Aug  7 18:40:49 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Aug  7 19:21:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e8e95f8

media-libs/mesa: Require libdrm-2.4.82

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

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 6ea8f3c9931..2a3fb561504 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -74,7 +74,7 @@ REQUIRED_USE="
video_cards_vmware? ( gallium )
 "
 
-LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.81"
+LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.82"
 # keep correct libdrm and dri2proto dep
 # keep blocks in rdepend for binpkg
 RDEPEND="



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

2017-08-07 Thread Matt Turner
commit: ffb26ef20563ff568fc37f4afb8fb3715d1588fa
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Aug  7 18:37:45 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Aug  7 19:22:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffb26ef2

media-libs/mesa: Version bump to 17.1.6

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-17.1.6.ebuild | 503 +
 2 files changed, 504 insertions(+)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index ffa7a2f7ae4..9602cbac90f 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -8,3 +8,4 @@ DIST mesa-17.1.2.tar.xz 9837516 SHA256 
0937804f43746339b1f9540d8f9c8b4a1bb3d3eec
 DIST mesa-17.1.3.tar.xz 9861256 SHA256 
5f1ee9a8aea2880f887884df2dea0c16dd1b13eb42fd2e52265db0dc1b380e8c SHA512 
b487d4f3d7717f379e7aaf66958bbef886fbae219e6e0333123c4623dc7db84109aca8cf07be08c0b79a74bdb198c704073fd549c6e85aa952ed3c97da1a8a94
 WHIRLPOOL 
f9e2634e8a4c9765739ca4db005901d4df077f954e9008c05ee26dfc10e008166e5128096db071e0e26f4bdf244ecb9f8767b8862b018a68d677a3579c789114
 DIST mesa-17.1.4.tar.xz 9899196 SHA256 
06f3b0e6a28f0d20b7f3391cf67fe89ae98ecd0a686cd545da76557b6cec9cad SHA512 
cb8369f0edd3e17b4eee8da159b9dc487f8144d69fe4b95901e9aa6a924759866f26f91fc2ead7036707eecea41582185e7ce73d54f97bf310f198b72ee0a8e4
 WHIRLPOOL 
5c313d7b938c58a7e2f59b619161316629ee996025dc5810742c881716cfcee441a8b3641d644fa0bc4aeec6c44c4b1ce99f515a59159a3391cf4948c2bab45a
 DIST mesa-17.1.5.tar.xz 9901876 SHA256 
378516b171712687aace4c7ea8b37c85895231d7a6d61e1e27362cf6034fded9 SHA512 
a12671afd812b304e1db690b123a9de16332608541f71cc3ee9128a3630c81416d46255e5bdbf19e14e85716b218f447987b555e3bc0081b8b6f392556fa21e2
 WHIRLPOOL 
b3a94172df5061774e7746ca9f2191f0f04ff375cb76406e22a694141d185f650ce04b3fa4f89b054aa3348f3562886982b5b725680d9ab1cdd6108900da91b7
+DIST mesa-17.1.6.tar.xz 9868932 SHA256 
0686deadde1f126b20aa67e47e8c50502043eee4ecdf60d5009ffda3cebfee50 SHA512 
cf57f29a21208f0a9bc84157f806bcaf6fd0583352449fcb986b05773eeefc99c4040dc41b242782dd5aa9ff7f9c5312b17a4db82d87f600acf165b6acdfc95a
 WHIRLPOOL 
38d6043001798ea9876b55a45222b129596ae92ebb1cc2af36bb0cc8523acce11b38a658d0e8a8afad1b99a49f7d4cdc229b7a3cbb7c15d9858614a91a4994f8

diff --git a/media-libs/mesa/mesa-17.1.6.ebuild 
b/media-libs/mesa/mesa-17.1.6.ebuild
new file mode 100644
index 000..4850a6750a4
--- /dev/null
+++ b/media-libs/mesa/mesa-17.1.6.ebuild
@@ -0,0 +1,503 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://anongit.freedesktop.org/git/mesa/mesa.git;
+
+if [[ ${PV} =  ]]; then
+   GIT_ECLASS="git-r3"
+   EXPERIMENTAL="true"
+fi
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools llvm multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}
+
+OPENGL_DIR="xorg-x11"
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="OpenGL-like graphic library for Linux"
+HOMEPAGE="https://www.mesa3d.org/;
+
+if [[ $PV ==  ]]; then
+   SRC_URI=""
+else
+   SRC_URI="https://mesa.freedesktop.org/archive/${MY_P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~sparc-solaris ~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="!bindist? ( bindist )"
+
+INTEL_CARDS="i915 i965 intel"
+RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
+VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno imx nouveau vc4 vivante 
vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS}
+   bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 unwind
+   +llvm +nptl opencl osmesa pax_kernel openmax pic selinux vaapi valgrind
+   vdpau vulkan wayland xvmc xa"
+
+REQUIRED_USE="
+   d3d9?   ( dri3 gallium )
+   llvm?   ( gallium )
+   opencl? ( gallium llvm )
+   openmax? ( gallium )
+   gles1?  ( egl )
+   gles2?  ( egl )
+   vaapi? ( gallium )
+   vdpau? ( gallium )
+   vulkan? ( || ( video_cards_i965 video_cards_radeonsi )
+ video_cards_radeonsi? ( llvm ) )
+   wayland? ( egl gbm )
+   xa?  ( gallium )
+   video_cards_freedreno?  ( gallium )
+   video_cards_intel?  ( classic )
+   video_cards_i915?   ( || ( classic gallium ) )
+   video_cards_i965?   ( classic )
+   video_cards_imx?( gallium )
+   video_cards_nouveau? ( || ( classic gallium ) )
+   video_cards_radeon? ( || ( classic gallium )
+ gallium? ( x86? ( llvm ) 
amd64? ( llvm ) ) )
+   video_cards_r100?   ( classic )
+   video_cards_r200?   ( classic )
+   video_cards_r300?   ( gallium x86? ( llvm ) amd64? ( llvm ) )
+   video_cards_r600?   ( gallium )
+   video_cards_radeonsi?   ( gallium llvm )
+   

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

2017-08-07 Thread Matt Turner
commit: 52e4583439afc9480d7482b69413f40b0c521f10
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Aug  7 18:38:41 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Aug  7 19:22:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52e45834

media-libs/mesa: Version bump to 17.2.0_rc3

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-17.2.0_rc3.ebuild | 504 +
 2 files changed, 505 insertions(+)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index 9602cbac90f..a6c23a54963 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -9,3 +9,4 @@ DIST mesa-17.1.3.tar.xz 9861256 SHA256 
5f1ee9a8aea2880f887884df2dea0c16dd1b13eb4
 DIST mesa-17.1.4.tar.xz 9899196 SHA256 
06f3b0e6a28f0d20b7f3391cf67fe89ae98ecd0a686cd545da76557b6cec9cad SHA512 
cb8369f0edd3e17b4eee8da159b9dc487f8144d69fe4b95901e9aa6a924759866f26f91fc2ead7036707eecea41582185e7ce73d54f97bf310f198b72ee0a8e4
 WHIRLPOOL 
5c313d7b938c58a7e2f59b619161316629ee996025dc5810742c881716cfcee441a8b3641d644fa0bc4aeec6c44c4b1ce99f515a59159a3391cf4948c2bab45a
 DIST mesa-17.1.5.tar.xz 9901876 SHA256 
378516b171712687aace4c7ea8b37c85895231d7a6d61e1e27362cf6034fded9 SHA512 
a12671afd812b304e1db690b123a9de16332608541f71cc3ee9128a3630c81416d46255e5bdbf19e14e85716b218f447987b555e3bc0081b8b6f392556fa21e2
 WHIRLPOOL 
b3a94172df5061774e7746ca9f2191f0f04ff375cb76406e22a694141d185f650ce04b3fa4f89b054aa3348f3562886982b5b725680d9ab1cdd6108900da91b7
 DIST mesa-17.1.6.tar.xz 9868932 SHA256 
0686deadde1f126b20aa67e47e8c50502043eee4ecdf60d5009ffda3cebfee50 SHA512 
cf57f29a21208f0a9bc84157f806bcaf6fd0583352449fcb986b05773eeefc99c4040dc41b242782dd5aa9ff7f9c5312b17a4db82d87f600acf165b6acdfc95a
 WHIRLPOOL 
38d6043001798ea9876b55a45222b129596ae92ebb1cc2af36bb0cc8523acce11b38a658d0e8a8afad1b99a49f7d4cdc229b7a3cbb7c15d9858614a91a4994f8
+DIST mesa-17.2.0-rc3.tar.xz 10405100 SHA256 
bd417166bc55a74a20e7687738c2f081364637e40a0712989e04b3ba7e404ff2 SHA512 
34cc307e82f227fc0398185ac8a349c96631c47e407e883e80523850eeeb0eb4cc445780f61494c2ba81856965d8ae06819330fa54c149808a18db9e872c12b6
 WHIRLPOOL 
8ea40f6b4a6366b502cd2f2f1ab4bf371dab695b0ed86825a0f0abb36198adfd2d335cf43b668acc4606216a736be41fc735daee1b1b6b6060f4f044bc6f948f

diff --git a/media-libs/mesa/mesa-17.2.0_rc3.ebuild 
b/media-libs/mesa/mesa-17.2.0_rc3.ebuild
new file mode 100644
index 000..2a3fb561504
--- /dev/null
+++ b/media-libs/mesa/mesa-17.2.0_rc3.ebuild
@@ -0,0 +1,504 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGIT_REPO_URI="https://anongit.freedesktop.org/git/mesa/mesa.git;
+
+if [[ ${PV} =  ]]; then
+   GIT_ECLASS="git-r3"
+   EXPERIMENTAL="true"
+fi
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools llvm multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}
+
+OPENGL_DIR="xorg-x11"
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="OpenGL-like graphic library for Linux"
+HOMEPAGE="https://www.mesa3d.org/;
+
+if [[ $PV ==  ]]; then
+   SRC_URI=""
+else
+   SRC_URI="https://mesa.freedesktop.org/archive/${MY_P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~sparc-solaris ~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="!bindist? ( bindist )"
+
+RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
+VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 imx intel nouveau vc4 vivante 
vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS}
+   bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 unwind
+   +llvm +nptl opencl osmesa pax_kernel openmax pic selinux vaapi valgrind
+   vdpau vulkan wayland xvmc xa"
+
+REQUIRED_USE="
+   d3d9?   ( dri3 gallium )
+   llvm?   ( gallium )
+   opencl? ( gallium llvm )
+   openmax? ( gallium )
+   gles1?  ( egl )
+   gles2?  ( egl )
+   vaapi? ( gallium )
+   vdpau? ( gallium )
+   vulkan? ( || ( video_cards_i965 video_cards_radeonsi )
+ video_cards_radeonsi? ( llvm ) )
+   wayland? ( egl gbm )
+   xa?  ( gallium )
+   video_cards_freedreno?  ( gallium )
+   video_cards_intel?  ( classic )
+   video_cards_i915?   ( || ( classic gallium ) )
+   video_cards_i965?   ( classic )
+   video_cards_imx?( gallium )
+   video_cards_nouveau? ( || ( classic gallium ) )
+   video_cards_radeon? ( || ( classic gallium )
+ gallium? ( x86? ( llvm ) 
amd64? ( llvm ) ) )
+   video_cards_r100?   ( classic )
+   video_cards_r200?   ( classic )
+   video_cards_r300?   ( gallium x86? ( llvm ) amd64? ( llvm ) )
+   video_cards_r600?   ( gallium )
+   video_cards_radeonsi?   ( gallium llvm )
+   video_cards_vc4? ( 

[gentoo-commits] repo/gentoo:master commit in: dev-java/javatoolkit/

2017-08-07 Thread Patrice Clement
commit: 072aeb4cb30ce6ae472ac52651f1eec7f394f7cf
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 19:18:38 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 19:18:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=072aeb4c

dev-java/javatoolkit: EAPI 6 and version bump.

javatoolkit 0.4.0 is Python 3 compatible, \o/!

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-java/javatoolkit/Manifest |  1 +
 dev-java/javatoolkit/javatoolkit-0.4.0.ebuild | 29 +++
 2 files changed, 30 insertions(+)

diff --git a/dev-java/javatoolkit/Manifest b/dev-java/javatoolkit/Manifest
index 071901b215e..e051e8eef6c 100644
--- a/dev-java/javatoolkit/Manifest
+++ b/dev-java/javatoolkit/Manifest
@@ -1 +1,2 @@
 DIST javatoolkit-0.3.0.tar.bz2 16823 SHA256 
47bf8aad2ec58b2d850e8cbe57fe2707859d800b215b24387c7652a50353677c SHA512 
e7bbe04e39ab277d0aab89f0eea963c4b0341a336660dab08bfad0510ad1b2b49ce7410a2363bcf9ebad5f8757ee254ddc27af642b4bfb374db52d82cf02c3b1
 WHIRLPOOL 
a9b1034939a0e22c49620bb29d3652e8f5e6a8e71645556fe00463aabc0c1ff2ac2b666f59fd0ceea8ea5dc18579d90cc11a07ba341028831e3b8dd1e8a0e9ce
+DIST javatoolkit-0.4.0.tar.bz2 32156 SHA256 
607d383024f2fcb74472f24d1c5bb2bd14929b38738613574737356ed6546c9a SHA512 
1b5b596546342312eb841ca59f212ca2a09b2c872c4b6d29d984bb8017eb36b72e5c03ec2ed1e01e2900284495da9809e607c8156a5f26d40f94752847dba7f4
 WHIRLPOOL 
b95ca41e0fb02ad7d078681d1232ce7dfdfec9748c5c71c4cdd273fdcb540a14c053016e2adab32074d5c8d510b336698b73757e2487d3596748cc7802268815

diff --git a/dev-java/javatoolkit/javatoolkit-0.4.0.ebuild 
b/dev-java/javatoolkit/javatoolkit-0.4.0.ebuild
new file mode 100644
index 000..2548a6ea45e
--- /dev/null
+++ b/dev-java/javatoolkit/javatoolkit-0.4.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_4 )
+
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1 multilib prefix
+
+DESCRIPTION="Collection of Gentoo-specific tools for Java"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Java;
+SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-aix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+python_prepare_all() {
+   hprefixify src/py/buildparser src/py/findclass setup.py
+
+   distutils-r1_python_prepare_all
+}
+
+python_install() {
+   distutils-r1_python_install \
+   --install-scripts="${EPREFIX}"/usr/$(get_libdir)/${PN}/bin
+}



[gentoo-commits] proj/javatoolkit:master commit in: src/py/javatoolkit/xml/, src/py/javatoolkit/java/, src/py/javatoolkit/parser/, ...

2017-08-07 Thread Patrice Clement
commit: 1a722e7e516d75885022ff8c14e668d1c8d73d56
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Aug  7 19:13:38 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 19:13:38 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=1a722e7e

remove a few more headers and add braces around two print functions

 src/py/buildparser   | 2 --
 src/py/javatoolkit/__init__.py   | 4 +---
 src/py/javatoolkit/java/__init__.py  | 4 +---
 src/py/javatoolkit/parser/buildproperties.py | 2 --
 src/py/javatoolkit/parser/helpers.py | 2 --
 src/py/javatoolkit/parser/manifest.py| 3 ---
 src/py/javatoolkit/xml/SaxRewriter.py| 2 --
 7 files changed, 2 insertions(+), 17 deletions(-)

diff --git a/src/py/buildparser b/src/py/buildparser
index a7e656d..7af980d 100755
--- a/src/py/buildparser
+++ b/src/py/buildparser
@@ -5,8 +5,6 @@
 #
 # Licensed under the GNU General Public License, v2
 #
-# $Header:$
-
 import os
 import sys
 from optparse import OptionParser

diff --git a/src/py/javatoolkit/__init__.py b/src/py/javatoolkit/__init__.py
index 5d9dcee..77b273b 100644
--- a/src/py/javatoolkit/__init__.py
+++ b/src/py/javatoolkit/__init__.py
@@ -4,11 +4,9 @@
 # Copyright(c) 2004, Gentoo Foundation
 #
 # Licensed under the GNU General Public License, v2
-#
-# $Header: /var/cvsroot/gentoo-src/javatoolkit/src/javatoolkit/__init__.py,v 
1.2 2004/11/08 19:21:52 karltk Exp $
 
 from classpath import *
 from output import *
 
 if __name__ == "__main__":
-   print "This is not an executable module"
+print("This is not an executable module")

diff --git a/src/py/javatoolkit/java/__init__.py 
b/src/py/javatoolkit/java/__init__.py
index 20432bd..0e3a32d 100644
--- a/src/py/javatoolkit/java/__init__.py
+++ b/src/py/javatoolkit/java/__init__.py
@@ -3,8 +3,6 @@
 # Copyright(c) 2008, Gentoo Foundation
 #
 # Licensed under the GNU General Public License, v2
-#
-# $Header: $
 
 if __name__ == "__main__":
-   print "This is not an executable module"
+print("This is not an executable module")

diff --git a/src/py/javatoolkit/parser/buildproperties.py 
b/src/py/javatoolkit/parser/buildproperties.py
index a09614d..9a73f78 100644
--- a/src/py/javatoolkit/parser/buildproperties.py
+++ b/src/py/javatoolkit/parser/buildproperties.py
@@ -3,8 +3,6 @@
 # Copyright(c) 2004, Gentoo Foundation
 #
 # Licensed under the GNU General Public License, v2
-#
-# $Header: $
 
 from .tree import *
 from . import parser

diff --git a/src/py/javatoolkit/parser/helpers.py 
b/src/py/javatoolkit/parser/helpers.py
index b11b08b..c0e1bb3 100644
--- a/src/py/javatoolkit/parser/helpers.py
+++ b/src/py/javatoolkit/parser/helpers.py
@@ -3,8 +3,6 @@
 # Copyright(c) 2004, Gentoo Foundation
 #
 # Licensed under the GNU General Public License, v2
-#
-# $Header: $
 
 def expand(root, expr, realroot = None):
 """Evaluates a path expression on a given tree.

diff --git a/src/py/javatoolkit/parser/manifest.py 
b/src/py/javatoolkit/parser/manifest.py
index b5a1701..b55a28a 100644
--- a/src/py/javatoolkit/parser/manifest.py
+++ b/src/py/javatoolkit/parser/manifest.py
@@ -1,8 +1,5 @@
 # Copyright(c) 2006, 2008, James Le Cuirot 
-#
 # Licensed under the GNU General Public License, v2
-#
-# $Header: $
 
 from .tree import *
 from . import parser

diff --git a/src/py/javatoolkit/xml/SaxRewriter.py 
b/src/py/javatoolkit/xml/SaxRewriter.py
index 07528c9..bd6e8de 100644
--- a/src/py/javatoolkit/xml/SaxRewriter.py
+++ b/src/py/javatoolkit/xml/SaxRewriter.py
@@ -1,8 +1,6 @@
 # -*- coding: UTF-8 -*-
-
 # Copyright 2004-2005 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
 
 import os
 import sys



[gentoo-commits] proj/genkernel:overlayfs commit in: defaults/

2017-08-07 Thread Richard Farina
commit: 4c022256838b3166e95d8d594f39f5b5cbe34928
Author: Rick Farina (Zero_Chaos)  gentoo  org>
AuthorDate: Mon Aug  7 19:14:04 2017 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Aug  7 19:14:04 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=4c022256

add generic config checker to avoid code reuse, add check in a few more places

 defaults/initrd.defaults |  2 --
 defaults/initrd.scripts  | 14 ++
 defaults/linuxrc | 26 ++
 3 files changed, 20 insertions(+), 22 deletions(-)

diff --git a/defaults/initrd.defaults b/defaults/initrd.defaults
index e83f6fe..32bffc0 100755
--- a/defaults/initrd.defaults
+++ b/defaults/initrd.defaults
@@ -72,13 +72,11 @@ VERIFY=0
 
 # AUFS variables
 aufs=0
-aufs_detected=0
 aufs_union_file=/livecd.aufs
 aufs_modules_dir=mnt/cdrom
 
 # Overlayfs variables
 overlayfs=0
-overlayfs_detected=0
 overlayfs_modules_dir=mnt/cdrom
 
 LOOPS='/livecd.loop /zisofs /livecd.squashfs /image.squashfs /livecd.gcloop'

diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts
index 9424f5d..73e9bac 100644
--- a/defaults/initrd.scripts
+++ b/defaults/initrd.scripts
@@ -1782,3 +1782,17 @@ strip_mount_options()
-e 's/(,|^)(no)?auto(,|$)/,/g' \
 -e 's/(,|^)iversion(,|$)/,/g'
 }
+
+checkzconfig() {
+  if [ -r "/proc/config.gz ]; then
+if zcat /proc/config.gz | grep -E 'CONFIG_${1}=(m|y)' 1>/dev/null;
+then
+ return 0
+fi
+  fi
+
+  warn_msg "No CONFIG_${1} support"
+  warn_msg "${1} is not guarantee to work on this medium"
+
+  return 1
+}

diff --git a/defaults/linuxrc b/defaults/linuxrc
index 7edf8d5..6464280 100644
--- a/defaults/linuxrc
+++ b/defaults/linuxrc
@@ -261,18 +261,11 @@ do
 ;;
 aufs)
   aufs=1
-  if [ -f /proc/config.gz ]; then
-if zcat /proc/config.gz | grep -E 'CONFIG_AUFS_FS=(m|y)' 1>/dev/null;
-then
-  aufs_detected=1
-fi
-  fi
-  if [ "1" != "$aufs_detected" ]; then
-warn_msg "No CONFIG_IKCONFIG support"
-warn_msg "AUFS is not guarantee to work on this medium"
-  fi
+  checkzconfig AUFS_FS
 ;;
aufs\=*)
+  aufs=1
+  checkzconfig AUFS_FS
if echo "${x#*=}" | grep , &>/dev/null; then
aufs_dev_uid=${x#*,}
aufs_dev=${x%,*}
@@ -287,18 +280,11 @@ do
;;
 overlayfs)
   overlayfs=1
-  if [ -f /proc/config.gz ]; then
-if zcat /proc/config.gz | grep -E 'CONFIG_OVERLAY_FS=(m|y)' 
1>/dev/null;
-then
-  overlayfs_detected=1
-fi
-  fi
-  if [ "1" != "$overlayfs_detected" ]; then
-warn_msg "No CONFIG_IKCONFIG support"
-warn_msg "OVERLAYFS is not guarantee to work on this medium"
-  fi
+  checkzconfig OVERLAY_FS
 ;;
   overlayfs\=*)
+overlayfs=1
+checkzconfig OVERLAY_FS
 if echo "${x#*=}" | grep , &>/dev/null; then
   overlayfs_dev_uid=${x#*,}
   overlayfs_dev=${x%,*}



[gentoo-commits] proj/genkernel:overlayfs commit in: defaults/

2017-08-07 Thread Richard Farina
commit: c81f01fd8561844a9fc9f9b7a2d8cd2b98910fae
Author: Rick Farina (Zero_Chaos)  gentoo  org>
AuthorDate: Mon Aug  7 19:03:29 2017 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Aug  7 19:03:29 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=c81f01fd

initialize overlayfs and aufs variables properly, enable unconditionally and 
warn if checks fail

 defaults/initrd.defaults |   6 ++
 defaults/linuxrc | 239 ---
 2 files changed, 129 insertions(+), 116 deletions(-)

diff --git a/defaults/initrd.defaults b/defaults/initrd.defaults
index b028f72..e83f6fe 100755
--- a/defaults/initrd.defaults
+++ b/defaults/initrd.defaults
@@ -72,9 +72,15 @@ VERIFY=0
 
 # AUFS variables
 aufs=0
+aufs_detected=0
 aufs_union_file=/livecd.aufs
 aufs_modules_dir=mnt/cdrom
 
+# Overlayfs variables
+overlayfs=0
+overlayfs_detected=0
+overlayfs_modules_dir=mnt/cdrom
+
 LOOPS='/livecd.loop /zisofs /livecd.squashfs /image.squashfs /livecd.gcloop'
 
 DEFAULT_NFSOPTIONS="ro,nolock,rsize=1024,wsize=1024"

diff --git a/defaults/linuxrc b/defaults/linuxrc
index 6bb1b98..7edf8d5 100644
--- a/defaults/linuxrc
+++ b/defaults/linuxrc
@@ -256,18 +256,22 @@ do
keymap=*)
keymap=${x#*=}
;;
-locale=*)
-locale=${x#*=}
-;;
-   aufs)
-   if [ -f /proc/config.gz ]; then
-zcat /proc/config.gz | grep -E 
'CONFIG_AUFS_FS=(m|y)' 1>/dev/null && aufs=1
-else
-warn_msg "No CONFIG_IKCONFIG support"
-warn_msg "AUFS is not guarantee to work on 
this medium"
-aufs=1
-fi
-   ;;
+locale=*)
+  locale=${x#*=}
+;;
+aufs)
+  aufs=1
+  if [ -f /proc/config.gz ]; then
+if zcat /proc/config.gz | grep -E 'CONFIG_AUFS_FS=(m|y)' 1>/dev/null;
+then
+  aufs_detected=1
+fi
+  fi
+  if [ "1" != "$aufs_detected" ]; then
+warn_msg "No CONFIG_IKCONFIG support"
+warn_msg "AUFS is not guarantee to work on this medium"
+  fi
+;;
aufs\=*)
if echo "${x#*=}" | grep , &>/dev/null; then
aufs_dev_uid=${x#*,}
@@ -281,24 +285,27 @@ do
aufs_modules_dir=${x#*=}
 aufs_modules=1
;;
-
-overlayfs)
-if [ -f /proc/config.gz ]; then
-zcat /proc/config.gz | grep -E 
'CONFIG_OVERLAY_FS=(m|y)' 1>/dev/null && overlayfs=1
-else
-warn_msg "No CONFIG_IKCONFIG support"
-warn_msg "OVERLAYFS is not guarantee to work 
on this medium"
-overlayfs=1
-fi
-;;
-overlayfs\=*)
-if echo "${x#*=}" | grep , &>/dev/null; then
-overlayfs_dev_uid=${x#*,}
-overlayfs_dev=${x%,*}
-else
-overlayfs_dev=${x#*=}
-   fi
-   ;;
+overlayfs)
+  overlayfs=1
+  if [ -f /proc/config.gz ]; then
+if zcat /proc/config.gz | grep -E 'CONFIG_OVERLAY_FS=(m|y)' 
1>/dev/null;
+then
+  overlayfs_detected=1
+fi
+  fi
+  if [ "1" != "$overlayfs_detected" ]; then
+warn_msg "No CONFIG_IKCONFIG support"
+warn_msg "OVERLAYFS is not guarantee to work on this medium"
+  fi
+;;
+  overlayfs\=*)
+if echo "${x#*=}" | grep , &>/dev/null; then
+  overlayfs_dev_uid=${x#*,}
+  overlayfs_dev=${x%,*}
+else
+  overlayfs_dev=${x#*=}
+fi
+;;
# Allow user to specify the modules location
overlayfs.modules\=*)
overlayfs_modules_dir=${x#*=}
@@ -877,94 +884,94 @@ FSTAB
fi
 
 
-   if [ "${USE_UNIONFS_NORMAL}" = '1' ]; then
-   setup_unionfs ${NEW_ROOT} /${FS_LOCATION}
-   CHROOT=/union
-elif [ 1 != "$aufs"  ] && [ 1 != "$overlayfs" ]; then
-good_msg "Copying read-write image contents to tmpfs"
-
-# Copy over stuff that should be writable
-(
-cd "${NEW_ROOT}/${FS_LOCATION}"
-cp -a ${ROOT_TREES} "${NEW_ROOT}"
-) ||
-{
-bad_msg "Copying failed, dropping into a shell."
-do_rundebugshell
-}
-
-# Now we do the links.
-for x in ${ROOT_LINKS}; do
-if [ -L 

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

2017-08-07 Thread Sergei Trofimovich
commit: 6f49e6fc1120471c8f5f3ca9cdfe367c88a5d055
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Aug  7 09:07:35 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Aug  7 19:08:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f49e6fc

sys-libs/glibc: add locale-gen to live ebuild, bug #609676

gentoo's toolchain-glibc.eclass relies on locale-gen presence.
This change adds patchset to live ebuild with extra/ files.

Reported-by: Jan Ziak
Bug: https://bugs.gentoo.org/609676
Package-Manager: Portage-2.3.6, Repoman-2.3.3

 sys-libs/glibc/Manifest  | 1 +
 sys-libs/glibc/glibc-.ebuild | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/sys-libs/glibc/Manifest b/sys-libs/glibc/Manifest
index 3821313494d..83fe7707c0f 100644
--- a/sys-libs/glibc/Manifest
+++ b/sys-libs/glibc/Manifest
@@ -18,3 +18,4 @@ DIST glibc-2.24-patches-8.tar.bz2 71769 SHA256 
0a21549ed196c5c03efc37273fb991e19
 DIST glibc-2.24.tar.xz 13554048 SHA256 
99d4a3e8efd144d71488e478f62587578c0f4e1fa0b4eed47ee3d4975ebeb5d3 SHA512 
a4cb28a2c51a0cc029ed69da7cba11931a615ba897235590b4f7fad2eaabec9042f8250eaac2a5860997437a69ab13304f10a634000e52c0336b5593b7969adb
 WHIRLPOOL 
be82b47fc73f7e780e8e73a5f58b313d8e861d5ea8c4320f95ef0d8c1e125ff011d61dcfc0380be0e83868bd8c3299de1ea662da7fc8d709050e89b2c126e3eb
 DIST glibc-2.25-patches-5.tar.bz2 44356 SHA256 
d9ea3908c8c4d561d22697d9830b4032cbbba46822613d5a3509d3b7e579c016 SHA512 
ad3acf760e6cd714fe5d6833b53d8759e09c74ca60fbfd173e87dbb2d1062a5006427ca17db0b6ce695dae03e2ace7dc30992ae9b08e94ae4350b19ea03acdcc
 WHIRLPOOL 
1fa660852f9e42fda956b4924351a532efdca88691cb2855c458e8bb9af1fc3cbdf2eb9c8ce93a7c57fa2d6a7e20b1c1a5c17d29b0d07f8e44e0ed8fdb7db8bc
 DIST glibc-2.25.tar.xz 13873900 SHA256 
067bd9bb3390e79aa45911537d13c3721f1d9d3769931a30c2681bfee66f23a0 SHA512 
5b7a2418d5b8a1b6a907c6c7fb6477ee2a473151cb45e03d0d4cdd9a33497c90b1ee39e2e7e885e2b25743dcd3747336ef114b4a73eb001da1fd79f29e0f9a6e
 WHIRLPOOL 
dc2fafaa4a0e5581268338453838a03ed0c5e7a2af844e8fb7086ab8d3ae48efbdbe6f25db1d089ae669cd2f8b0412f690d965506753d86f8525da2df59b7953
+DIST glibc--patches-1.tar.bz2 19159 SHA256 
5c1f969f151a07ba9c52ee72d266b0e01f337632957e7a61ffa97082d4b2452a SHA512 
9f52c215ae91028f1ec71bb948ae49ca7eac89a4c8b382352e1e5685978ce1e69824e71e10f22efbfb6cae3a8dea3b9c106f10b67b301e35b5b6d211b296c2d6
 WHIRLPOOL 
4bd2f1c3b0d2a537b3ab96f1dcca08ab7d133ebebb9b3b03b278abdc77aaf2a67b2c278760367c44e8299b631854ee3ffb81409b722137ec9e4978198be8d64b

diff --git a/sys-libs/glibc/glibc-.ebuild b/sys-libs/glibc/glibc-.ebuild
index 026e3879bf5..5cf43b49525 100644
--- a/sys-libs/glibc/glibc-.ebuild
+++ b/sys-libs/glibc/glibc-.ebuild
@@ -22,12 +22,12 @@ case ${PV} in
inherit git-2
;;
 *)
-   RELEASE_VER=${PV}
;;
 esac
+RELEASE_VER=${PV}
 GCC_BOOTSTRAP_VER="4.7.3-r1"
 # patches live at 
https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo/src/patchsets/glibc/
-PATCH_VER=""   # Gentoo patchset
+PATCH_VER="1"  # Gentoo patchset
 : ${NPTL_KERN_VER:="2.6.32"}   # min kernel version nptl 
requires
 
 IUSE="audit caps debug gd hardened multilib nscd +rpc selinux systemtap 
profile suid vanilla crosscompile_opts_headers-only"
@@ -100,7 +100,7 @@ upstream_uris() {
echo mirror://gnu/glibc/$1 
ftp://sourceware.org/pub/glibc/{releases,snapshots}/$1 mirror://gentoo/$1
 }
 gentoo_uris() {
-   local devspace="HTTP~vapier/dist/URI HTTP~tamiko/distfiles/URI 
HTTP~dilfridge/distfiles/URI"
+   local devspace="HTTP~vapier/dist/URI HTTP~tamiko/distfiles/URI 
HTTP~dilfridge/distfiles/URI HTTP~slyfox/distfiles/URI"
devspace=${devspace//HTTP/https://dev.gentoo.org/}
echo mirror://gentoo/$1 ${devspace//URI/$1}
 }



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

2017-08-07 Thread Andreas Sturmlechner
commit: db4bdc1749b99869b86f6e1b23b8eca2e6c1f99c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Aug  7 19:06:25 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Aug  7 19:06:25 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=db4bdc17

kde-frameworks/kidletime: Patch upstreamed

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 kde-frameworks/kidletime/kidletime-.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/kde-frameworks/kidletime/kidletime-.ebuild 
b/kde-frameworks/kidletime/kidletime-.ebuild
index 812edf6821..a1ee3cd9c2 100644
--- a/kde-frameworks/kidletime/kidletime-.ebuild
+++ b/kde-frameworks/kidletime/kidletime-.ebuild
@@ -29,8 +29,6 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
-PATCHES=( "${FILESDIR}/${PN}-5.37.0-qtdbus.patch" )
-
 src_prepare() {
kde5_src_prepare
if ! use xscreensaver; then



[gentoo-commits] proj/javatoolkit: New tag: 0.4.0

2017-08-07 Thread Patrice Clement
commit: 
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Aug  7 18:55:55 2017 +

New tag: 0.4.0




[gentoo-commits] proj/genkernel:overlayfs commit in: defaults/

2017-08-07 Thread Richard Farina
commit: 1b73a2ea3f152c6b0df04dc83b32a3cd4972de2e
Author: Rick Farina (Zero_Chaos)  gentoo  org>
AuthorDate: Mon Aug  7 18:48:15 2017 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Aug  7 18:48:15 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=1b73a2ea

/proc/sys/kernel/hotplug is pretty deprecated, only try to write to it if it 
exists

 defaults/linuxrc | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/defaults/linuxrc b/defaults/linuxrc
index 9ab44c8..6bb1b98 100644
--- a/defaults/linuxrc
+++ b/defaults/linuxrc
@@ -385,7 +385,10 @@ good_msg 'Activating mdev'
 touch /dev/mdev.seq
 
 # Setup hotplugging for firmware loading
-echo /sbin/mdev > /proc/sys/kernel/hotplug
+if [ -f "/proc/sys/kernel/hotplug" ];
+then
+  echo /sbin/mdev > /proc/sys/kernel/hotplug
+fi
 
 # Load modules listed in MY_HWOPTS if /lib/modules exists for the running 
kernel
 if [ -z "${DO_modules}" ]



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

2017-08-07 Thread Aric Belsito
commit: c285e5b1406daa444fdb52371f53c4fb2714ba06
Author: Aric Belsito  gmail  com>
AuthorDate: Mon Aug  7 18:03:48 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Mon Aug  7 18:03:48 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=c285e5b1

sys-devel/gcc: Add patch for PR80706 to GCC 7.1.0

Should fix build of FireFox.

 sys-devel/gcc/Manifest  |   3 +-
 sys-devel/gcc/files/gcc-7.1.0-pr80706.patch | 119 
 sys-devel/gcc/gcc-7.1.0-r1.ebuild   |   3 +
 3 files changed, 124 insertions(+), 1 deletion(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index a5a5a51..8f23059 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -22,6 +22,7 @@ AUX gcc-4.9.3-secure-plt.patch 1478 SHA256 
b9435e19c3193e872bfdce8f635755655cf6e
 AUX gcc-4.9.3-tree-vect-data-refs-correctness.patch 315 SHA256 
904ae5ce2ecd5a2f7786c54d148a7562d0bb6f51fe60761038c2f57b8cf70356 SHA512 
88d93c061ef72035522270ab60c8c2ec04e2fa2d69763f45b9eab0c37b19c23920484358d7556ad885775071ac04cf94684a2cd8ed93418d5f0c54ac3a045c9d
 WHIRLPOOL 
2b9c281401abc111d53467c51b6238c6f4c430a73d8833f161766f973138ffe3b4fa1ffe5cc5813b5e2f8a81dee2cdcaaff2b9a8f8e13089f993f3ab3d69ccbd
 AUX gcc-5.4.0-pr68470.patch 2012 SHA256 
f8949e1d35bf7bba80aec50bdcd5d6b008f731679b06f3d89e6d8a4eb98e492e SHA512 
dea9ab12a37b88308424af2882b4755366745c204cd74e6892374d4aeb0981487f9fa1d44ab4d4e6184c83547c3ea30ed731719fa074bea62bdf8bfcf1dfbca0
 WHIRLPOOL 
2f66cd0d2dcaf237fd730eefe6f477970db14c237a8309925f799984a010f5470f6fc0f6a735316c7eab4de9dc958d773a4ffa14eea7093158690e9ff8f1847e
 AUX gcc-5.4.0-pr70473.patch 1665 SHA256 
d674821a34356e78c4aa8405fc27f30effd5a7ab4f5929892e23a4c53023e137 SHA512 
6fc8f70a1e34ae475d15fb20e198b63f00a11eff3bd09f1518b76d9622d32c9500beb49065bb1a32dc40119146f009bbda21fd0e74bc200771384b547f282680
 WHIRLPOOL 
d22f1daec32b91bd29d6b87481681c86f405b4f5567468339b9f25e0e5ad6818d171db1692be588a0174767f9fcdf21a28d895932a8ef7a2ecc910a1984075db
+AUX gcc-7.1.0-pr80706.patch 3306 SHA256 
5fe4ae00ef68686a37e4bacd4424c9950a91e12a19d2b6a857524b558d49acf2 SHA512 
4c5a72c221d21a6ad03586d4f570caffb16be041d7a232c6da2622fd8603341c4a4e97cc48b61509fb9be04ba59d06c339a2718cf72803cff67bc31813c5161c
 WHIRLPOOL 
f3876e3d682af9ca3584a6c877c5b452e529a93adbbc69fde5a9dc0d8b973a5c4f13c5322bd70e0cd1971970a09c9891313ea51648eda8457ca8e20326dc1e8e
 AUX gcc-configure-LANG.patch 2052 SHA256 
63de6d2dcfe14f21d147abeb1390405b9220c03f8e968f482d4b4c1cf279c88b SHA512 
a694c7ac2f45cc657097ff5b0cf1356ac88a9c06035c9ba15167e9d444844d0d8a478eb1b9b62195dd063774f79697b9148b9cdb6c261640b472c291061b2129
 WHIRLPOOL 
3cc1ec912fb192ff1058de5b93e49a994ba30d1501a932290dd5b3df1cd783875621cda56edeb41894cd5fa10c04917e693a40a60be8d742ddd7992bf5d8afeb
 AUX gcc-configure-texinfo.patch 337 SHA256 
74b73a7ecec2d9876b4db480cd173632f49d5396bb8e5b3c93673f9b5b98 SHA512 
a15fba8bf2ff02bdeca54d6f186bfa08c1079c6a8ba0a3beef154483ce5c1b8c497e7ffeec32371968f0037e0ff8384609eb0c367d0155a4e5a7eef8aad084d5
 WHIRLPOOL 
39d008aad06f7621e4e5db15f5e85a59e583b43f8d247029bd4944466bb60a9795bda157d185c45c329294078e282703a243aad5c468d90c77665dd6336870d4
 AUX gcc-spec-env-r1.patch 3148 SHA256 
da0a6442eb42bce58cbdc7858b110a2e65fc5bd5b4b780b9b491033de6e302fa SHA512 
ecae71577543772cfe1711f1b4a8815c0b5d706ebd01edacd1f07586637d4805e25771f970a6e6d1bb696d4b1b5ef3e0036088a96a9f6beff7ddaee704175d16
 WHIRLPOOL 
3535605998eabccdee71ba396ed5cefbb8b0a8cb073101f6444c7d01233f3b3904c1b29f4daf0a3417c68de8dbd62a0b7dc367cacfcbfa0c4ee1b69b7df8c6fb
@@ -66,5 +67,5 @@ EBUILD gcc-5.4.0-r3.ebuild 1934 SHA256 
3d643e82c9ff1017c6ad6eb8a24994ffbbd48d70e
 EBUILD gcc-5.4.0-r4.ebuild 1936 SHA256 
2bb3cda67f82af445fca53eb0c198de14f24fa1764fe0bab5eabadd090cfd3c9 SHA512 
e949174290ff75386a69c5c89b980e9af04a8c1002458de4dad1b213bca6389ca99e566180027b62d3f0a196080bf49dd185e1bd1aa9603c7a311994f1344804
 WHIRLPOOL 
f5c6df6698d1e868fea6a4b459813004898a0e88811f76c832c122ee3508bf188732a51ded3d678b90c984c80f91f6997b2ab0c3e6ead9df14b321e8364f353a
 EBUILD gcc-6.3.0.ebuild 902 SHA256 
f75f2d455bd332ab08dcb12ef5101319b9117ea48d773e782d7ec9e9bd017738 SHA512 
2cb339bd2003d2e6c0e649377c693a5c6874583ac27d1b60ffa3bc9723f83c26554dd385154133e8384a92e85c0c134bbb787c7ba34e1ca174f05e23758d1bb2
 WHIRLPOOL 
88a7ef0e56136cb610f16aa92be0967f40d59d7ee1877bddc213035fd8007745beb2743b5016acfa6bf6a3f334e002e311c0e457aea2b68d4f7a9e311f6f1d4b
 EBUILD gcc-6.4.0.ebuild 902 SHA256 
e54104dd9fd73c8017661a03c3614e71c40bf9be73ddbe87fe11e3c7d0efb004 SHA512 
1fb4edafa2d62cd6e34fb42e5b07adaeb036fae0c4819416f8f24d612c49c51fac1ad1c356d8b82822ac772919016a7125294d8609fd5209fb3a63155af56541
 WHIRLPOOL 
9073081c7e4453d83e8d86e664712f96422b0bc1383a416ce22b3a475a9df496e10788e93fa0462e52ff31f07b911015f5f29587cfe0ec094757a727012e83a5
-EBUILD gcc-7.1.0-r1.ebuild 603 SHA256 
9cbff0ffd838af811cde3103906c146eaf17517caf48c8ad62a9216bbc435c8b SHA512 

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

2017-08-07 Thread Aric Belsito
commit: ad015f444a92e1d216b4bc2b94be22e6584ae64d
Author: Aric Belsito  gmail  com>
AuthorDate: Mon Aug  7 17:48:26 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Mon Aug  7 17:48:26 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=ad015f44

sys-devel/gcc: version bump to 5.4.0-r4

 sys-devel/gcc/Manifest|  2 ++
 sys-devel/gcc/gcc-5.4.0-r4.ebuild | 61 +++
 2 files changed, 63 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 4ab8638..a5a5a51 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -50,6 +50,7 @@ DIST gcc-4.9.4-piepatches-v0.6.4.tar.bz2 14414 SHA256 
c67b56f04c653e6a19e36abed8
 DIST gcc-4.9.4-uclibc-patches-1.0.tar.bz2 2618 SHA256 
95f290d0b68114d835515afc424d6096476a45665671784aa71a7a506296e465 SHA512 
5a1f44caa9261f4947101379628143869b31dec67fa28605e8e1f3894d4b7120c3f68ba6deb59da7a74fa906e27ab32cd3767761837dc3dfebc37865d349d6db
 WHIRLPOOL 
e46b08737cfdc235bfb80117e0389f3969167adf59bcba2a0a1094a20eab2b62f0c952dac44781e43957cb1507cd4e80f37bd8aecbc55dbda6382d93b3a4cf94
 DIST gcc-4.9.4.tar.bz2 90097606 SHA256 
6c11d292cd01b294f9f84c9a59c230d80e9e4a47e5c6355f046bb36d4f358092 SHA512 
93abb78e16277454f41a8e9810f41f66c0fdffdc539a762ff6b67d3037f78db971378683fd2ebf707d1d51c059fad2161fe42d110c330027f40214b7db0f3efe
 WHIRLPOOL 
e20045126c21a3edea1fa4a2185ec2bc5feec77ddf967ab9d1e8c33322ad4eafe013bfcaab1ed4e35971d3b70ef373ea3585ebb089c9bbf91bbfca1f1da71236
 DIST gcc-5.4.0-patches-1.3.tar.bz2 28942 SHA256 
b23d1517b626b48e69ecac87878467044a91cabb256e3185bf8e1e00fcde230f SHA512 
f75fcf07ca19e43650e3fe6f9baad74205150c009823465f04505b45876d623a56fd6dfc8e67a35e2df36839750cad2561d0f0581154df0b553d6a608730aaf4
 WHIRLPOOL 
eacfc125cf7c5281101f887b3a617df01e3c32d1f66fe377371c33da2819a404ea3cff603b9f3a0b3a49a5875137842b9e94ab8905a069fa20b6da3e59f56b96
+DIST gcc-5.4.0-patches-1.4.tar.bz2 28425 SHA256 
039b88a939c3b90777fb94c58980cbcfffcdca4365db044dae0677302a4365d1 SHA512 
c4922cf0f83cd3b6ed9c50ffb39847a03beb95031865d36d86ae48fdd912c0bd6842ad71a3b0d18a91786ed58e2e529630c6ccd2a0414a48892415051c70246e
 WHIRLPOOL 
6d0a73cfb4ea387811bcd81b2de98a11e2f656a4df7ee5a887cd15d0a744662d85b22fcff86a6953f7c6bcc6d822333528de91b793191e72fe5ff2354deb7a97
 DIST gcc-5.4.0-piepatches-v0.6.5.tar.bz2 14551 SHA256 
495eb9110244dac17408cd0eb6977a593577eeb0437e72b60339b8ec394f2fb0 SHA512 
4890f0713d261982ab81a20f93c5f65193aa1dfa171e3f9e5867f0b80ec7c1e76c5a997b1a4e6f47f8ce36af54ac91125c5bff8bf6d971b7d77c65a57a40a3c0
 WHIRLPOOL 
13b74b1ca75cc94f9624fe1b52221a953962c918c2cb932302a3078b6deba4f3e501647ad8a2915edef6301e64c820ed612a6fbb9e1178cf1711fe0045686969
 DIST gcc-5.4.0-uclibc-patches-1.0.tar.bz2 3731 SHA256 
a3145faa6c81c0753ba754b735834c38987c356dadaa7c4a625c738e374604b5 SHA512 
009f34197e79c5e8c6497a0db01ac45cc657e92e56a663b4f3281661d108b2a129cd977fab5f0064f225d6812ae91e82bab22a2b10ae02c486881eeed85ec7a3
 WHIRLPOOL 
a3598ce0aad7e9110db156005190739abc5b4ceea3c327cb9c747c4cf1b99589c1a9fac170aea346eae030b09ee563f9f990e031ad7dfa1aa19b895898bf2608
 DIST gcc-5.4.0.tar.bz2 95661481 SHA256 
608df76dec2d34de6558249d8af4cbee21eceddbcb580d666f7a5a583ca3303a SHA512 
2941cc950c8f2409a314df497631f9b0266211aa74746c1839c46e04f1c7c299afe2528d1ef16ea39def408a644ba48f97519ec7a7dd37d260c3e9423514265b
 WHIRLPOOL 
ec81c8143e48bc8d9d0bbdc0fa3ca553c805193f53ac46c86127b54565894780dd97281485e396a130567464c753f043458c8e450018c957813f50ff90a40708
@@ -62,6 +63,7 @@ DIST gcc-7.1.0.tar.bz2 84303533 SHA256 
8a8136c235f64c6fef69cac0d73a46a1a09bb2507
 EBUILD gcc-4.9.4-r100.ebuild 2313 SHA256 
08ca3c854dc7fdf863a659f0c745bbe92a094a60b71beb12aca2bcef8a555c1c SHA512 
780400349b18484bfa253091bc0d9f17319fb892d202b226f72f114ee48d843665bf1ec00e08ef9ea0bf77ea72e13c4f1e2b732d63a252528e6d4ffcf92e151f
 WHIRLPOOL 
9333b35db26f056416975313e4510d775b23844c2c4c8a3847b9ccb8b010fa983adf940ba2a1577d4de45c522de26d56d638115a814bde44084d3b3bcb06ce07
 EBUILD gcc-4.9.4-r99.ebuild 2261 SHA256 
770df64ec98bcc6071a482abfa68b3b38a0187b6e13d58ad8b26ef8495e7ec07 SHA512 
ba472cc558a94e3ed8632681c7678287fadc0303f1ff88b575e5b41e9087f9efff7332621523618eabc2fac85f71dad6a16194b9b8d55d023f77af2fe2d235b8
 WHIRLPOOL 
d0bbcf867f789e469171f30d8188264ee66426fba8662f26b47bb0befe91fea2d9d2ac50e640816e5c746648b478414ac62ff5db2d97452becc4d1863159a725
 EBUILD gcc-5.4.0-r3.ebuild 1934 SHA256 
3d643e82c9ff1017c6ad6eb8a24994ffbbd48d70e30f0578fe4861ea60984c2d SHA512 
620b95dbd9cd7b01538b8523af275b828d9f2db4760a5451a585be1cb39554d62a6ea2c0c6e3e5f7e97b82f20f8b1e18814ca82465b99a046313f98e31b1ab4a
 WHIRLPOOL 
72687c4950ee5e0567adf74b834d9639c4197245febcec50734093204b55f45aa0eb3f5535b79d848ab3f38b593e4850964130afa696ca41adb35793839023d6
+EBUILD gcc-5.4.0-r4.ebuild 1936 SHA256 
2bb3cda67f82af445fca53eb0c198de14f24fa1764fe0bab5eabadd090cfd3c9 SHA512 
e949174290ff75386a69c5c89b980e9af04a8c1002458de4dad1b213bca6389ca99e566180027b62d3f0a196080bf49dd185e1bd1aa9603c7a311994f1344804
 WHIRLPOOL 

[gentoo-commits] proj/musl:master commit in: sys-libs/libselinux/

2017-08-07 Thread Aric Belsito
commit: 568bbeb8f981b3c5e95995389a9e6fd0f012d099
Author: Aric Belsito  gmail  com>
AuthorDate: Mon Aug  7 17:43:02 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Mon Aug  7 17:43:02 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=568bbeb8

sys-libs/libselinux: version bump to 2.7

 sys-libs/libselinux/Manifest  |   2 +
 sys-libs/libselinux/libselinux-2.7.ebuild | 160 ++
 2 files changed, 162 insertions(+)

diff --git a/sys-libs/libselinux/Manifest b/sys-libs/libselinux/Manifest
index b9dc29f..f6bc675 100644
--- a/sys-libs/libselinux/Manifest
+++ b/sys-libs/libselinux/Manifest
@@ -4,7 +4,9 @@ DIST libselinux-2.6.tar.gz 203119 SHA256 
4ea2dde50665c202253ba5caac7738370ea0337
 DIST libselinux-2.7-rc1.tar.gz 186897 SHA256 
213e1ca473855a61e8147e027b6ee5edf4162c9fbfc00749643f0ecc0a08371c SHA512 
fe7fe67f14e5483fbb237eeb33f6eca48f1d3f6a3ab7fa1cfa99e5143ce4d6a03c9033a03a82bb3954d07c4d1a2c211cf5dea80030c727f9adcb3cc6bd72e641
 WHIRLPOOL 
dfee20eaf3ea9e3cb7caa21ac10e710799ed324eee833650fc0bdf17c3fbcd3426bea7d915f6d6b79ca4440b99c57805a018bbd6a6103d97cb590f52d58f0e40
 DIST libselinux-2.7-rc4.tar.gz 186904 SHA256 
27c1780d6c623ab70ccf6923b8c8f386f8984ec99b7b4734f7b23d3d25809970 SHA512 
788beb44ca2d2b6d84b57193538ed6f9c25f536c129903d58a852a64fc2c46a4e4249c4acd6234a6242a6ac0ea828a553f42a0e80fd9405ff5225c8a722c395f
 WHIRLPOOL 
709ba4c3021d8b9e260ec8dbb0ff0ecd2a06a32cb44ce2c6fc486004e4c7f8cc28728150df40967472d00b97a26194dc36702dc990f5dd7055b2571714ccd37a
 DIST libselinux-2.7-rc5.tar.gz 186909 SHA256 
b002ec2fc5ab74041a5138ebc680e5bc2045c7a5089699f39c494ac1f0b482b2 SHA512 
01a600d03ff2a04f91efee8ab6ef9dccc3e39c64e2857be57b84ab0a38e01a55710d7c1b4e3d33b69f0ed0f04e1af14b9569d65ce419294d40177baff283a8b7
 WHIRLPOOL 
05fa39c10669eeaf7e91609ff77967c0b3187c27d9edeee0614110e9dbe54068df317df73ce421e9a0a5511705a374f02abcf8f5dc3f8006ef73d88cb597534a
+DIST libselinux-2.7.tar.gz 187574 SHA256 
d0fec0769b3ad60aa7baf9b9a4b7a056827769dc2dadda0dc0eb59b3d1c18c57 SHA512 
415d10306692d4323455b61fb61d7e56e53b9144276ff206d72760e1df9b04ab07c62a4d6f04bf4e5fa708f9f14b21a9801069b16ece0a0aade886950941ab8d
 WHIRLPOOL 
dd9175c91fa8f6f87add7b0ad1b90706b1fb203ade866b42d886faeb3710e1138fc08a2d7d371fbc8c9480148f8fdec6f0a6dd3f7142f194da580365cd527351
 EBUILD libselinux-2.6.ebuild 4484 SHA256 
ce11a2196a960e75df6ff4eafd8ab670687c7ead2cca6f51c15d5c9688d34e26 SHA512 
6bf726dc5594ffba0aa36e4f97fc4131c4c4b78ad498c0c36dffdd335ca9772d1f3d6c57dc8de87e431b06bbb2e190f220932dc166e8220d68cf6293bca518f4
 WHIRLPOOL 
5a7df89e0c1f21f3bc3f0a6e3f590520c51879b9a62a78c42435fd0a7ee9e876d47a7d3d5c48a659aedc18fa0835fd59164773073ed30ed1167648771b98f540
+EBUILD libselinux-2.7.ebuild 4508 SHA256 
a48489e974f4d994cb6f6432e6edd51a947da764fd7f1f8a13d105bdf6c75e7f SHA512 
39b925648f1923a038c1145c4b8ac2f58502c949f0fccdc2e9ce4fe841ca216fc3de6f487c3b148c441ed2d3410cb6bbf4f071d5da0dfb04f1a68338d6b1735f
 WHIRLPOOL 
b1ecba437c9deea9e251619f9c008a66b18b84cf12086ffcfa733368b9ab110a2a662f28081416fafb59a0e77ca1eda8e7c81030d28f8badd862166c6b10b154
 EBUILD libselinux-2.7_rc1.ebuild 4508 SHA256 
8273a5a82155cdc299135f00250410047e81a4941c900d96802f6107718a81c5 SHA512 
c5afe914323f99c45cdd5058c45754231c8d1d29a17a4ac4046d99c6697fac6366ea4fac854f64c849edc15a74525ef2d8c34826957048a35eb455253ab5caa5
 WHIRLPOOL 
2ed67afde472c91f9397a3a21ff19652c32e03e746619c542202afe99e51e5ab17833b6e7b62d0020f7a3249c27c1e667126510217578ec9a97c6995a6cdc0e6
 EBUILD libselinux-2.7_rc4.ebuild 4508 SHA256 
0dbd2576be8d3e485d0fd5c312fa786e673258c06eaee5cf3b1d1a1544feb394 SHA512 
ea38b6042023e2993958e3634733549a58f935cc77853a7443b5d5d948f8becbbd3d5aabfedad12bc9c3f51bbc80be9462a276397371cbb91137c96ed40ab82a
 WHIRLPOOL 
706f99fb0c39dee6785009208a44e2d9409f267021cabf1393604a4f3f165c23a312f7dc83dc2646e97a9442a6925667de8664a12515ede3c5044eff29f0d30e
 EBUILD libselinux-2.7_rc5.ebuild 4508 SHA256 
0044e655fea9123afcb9e03769ebaccedf969365a83324540c069886075591a4 SHA512 
3d1633ad5ffc75178c8053cc70b946f6837cc9336e451c18788b9f22d2eea2a10712a2d6ea11a42d1bc03bdd372899a0942d879c74ae4970f35b2cc52b40a9b5
 WHIRLPOOL 
fe4362ec75da5187f2139c7b562fac2235625771a0ecf959e9bcd463dd8c1d79d95dc1d7c06c6b80231554dcb44b1fb1ea1cd65cf9140c8a6205810829f0d1c6

diff --git a/sys-libs/libselinux/libselinux-2.7.ebuild 
b/sys-libs/libselinux/libselinux-2.7.ebuild
new file mode 100644
index 000..799bc59
--- /dev/null
+++ b/sys-libs/libselinux/libselinux-2.7.ebuild
@@ -0,0 +1,160 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
+USE_RUBY="ruby21 ruby22 ruby23"
+
+# No, I am not calling ruby-ng
+inherit multilib python-r1 toolchain-funcs multilib-minimal
+
+MY_P="${P//_/-}"
+SEPOL_VER="${PV}"
+MY_RELEASEDATE="20170804"
+
+DESCRIPTION="SELinux userland library"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+if [[ ${PV} ==  ]] ; 

[gentoo-commits] repo/gentoo:master commit in: www-apache/mod_h2/

2017-08-07 Thread David Seifert
commit: 4edd88f5877644b95f538aa1be9a0c74019f0518
Author: Craig Andrews  integralblue  com>
AuthorDate: Fri Aug  4 13:26:03 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Aug  7 17:12:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4edd88f5

www-apache/mod_h2: version 1.10.10, use EAPI=6

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

 www-apache/mod_h2/Manifest   |  1 +
 .../mod_h2/{mod_h2-.ebuild => mod_h2-1.10.10.ebuild} | 16 +++-
 www-apache/mod_h2/mod_h2-.ebuild | 16 +++-
 3 files changed, 15 insertions(+), 18 deletions(-)

diff --git a/www-apache/mod_h2/Manifest b/www-apache/mod_h2/Manifest
index 92a0c89b1e9..3a26e01798e 100644
--- a/www-apache/mod_h2/Manifest
+++ b/www-apache/mod_h2/Manifest
@@ -1,2 +1,3 @@
+DIST mod_http2-1.10.10.tar.gz 528560 SHA256 
9fa881c7f2cdc955b790406bebf6e0542d35b91aeb2a400e21c244e853971ee8 SHA512 
b4b9e734ed35ca63fa114462f1adb358bb73e4cbd8df95ab28c4518b8f7db40233f4ba13bc2194847eb9c1adbc3eb86fc63cbb56389fc0867767658d4d8ba77b
 WHIRLPOOL 
ee319ff6ba21832de525efa15ff1a2cd2bfef7ba80e60713342af63edf2a76d4c60c76f6b63ca172fcd33b45e728711f12646f08cc8f932f2a0802771dd95ca2
 DIST mod_http2-1.4.7.tar.gz 476716 SHA256 
0d51a019917aa6bf7866cf23bf837626592ad0e74408eb341d070982cb88380a SHA512 
6d91d8f73de4a571dc9ac24328b2f7214afcc9a3a00cbf93a74954533a45b647480f96f0cb1c85d767e980080b21561891a55b16943b0369a0fe2573bba1b54f
 WHIRLPOOL 
0b81b8baf871ff043e972c65c685ae9f18737c0909bff65528a6ea3dd56735a2230c9dda67879a5684e867681fc6487f483ef006611397061b367bc275793ad6
 DIST mod_http2-1.5.6.tar.gz 502108 SHA256 
73c11780e82e65c11e71e5a44685c22a7d8f07203d55dca094ea61d7a5bbaffc SHA512 
8cc8894d56e32489f8e3064145cb527a415723131bdefd99583b6678af5fc50e3d4ebbf59f4734640bef0381ac0f808c780dafb9a3fe6bb45e7af4d595470716
 WHIRLPOOL 
a2f3efb9e7ecf657be61d46a832a1b438cdaab0e44114e8ec717d9b77e8500308e7c904248c195bb55157410a103c8714e0378e2d2099ecb7aa7d679a4a7

diff --git a/www-apache/mod_h2/mod_h2-.ebuild 
b/www-apache/mod_h2/mod_h2-1.10.10.ebuild
similarity index 81%
copy from www-apache/mod_h2/mod_h2-.ebuild
copy to www-apache/mod_h2/mod_h2-1.10.10.ebuild
index 48f0e8ef370..eaf87ecaf6b 100644
--- a/www-apache/mod_h2/mod_h2-.ebuild
+++ b/www-apache/mod_h2/mod_h2-1.10.10.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI="6"
 
 inherit apache-module
 
@@ -9,8 +9,9 @@ MY_P="${PN/h2/http2}-${PV}"
 
 if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/icing/mod_h2.git;
-   inherit git-2
+   inherit autotools git-r3
 else
+   S="${WORKDIR}/${MY_P}"

SRC_URI="https://github.com/icing/mod_h2/releases/download/v${PV}/${MY_P}.tar.gz;
KEYWORDS="~amd64 ~x86"
 fi
@@ -26,14 +27,11 @@ RDEPEND=">=net-libs/nghttp2-1.0
>=www-servers/apache-2.4.20[-apache2_modules_http2,ssl?]"
 DEPEND="${RDEPEND}"
 
-S="${WORKDIR}/${MY_P}"
-
 need_apache2_4
 
-src_configure() {
-   econf \
-   --docdir='$(datarootdir)'/doc/${PF} \
-   --disable-werror
+src_prepare() {
+   default
+   [[ ${PV} =  ]] && eautoreconf
 }
 
 src_compile() {

diff --git a/www-apache/mod_h2/mod_h2-.ebuild 
b/www-apache/mod_h2/mod_h2-.ebuild
index 48f0e8ef370..eaf87ecaf6b 100644
--- a/www-apache/mod_h2/mod_h2-.ebuild
+++ b/www-apache/mod_h2/mod_h2-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI="6"
 
 inherit apache-module
 
@@ -9,8 +9,9 @@ MY_P="${PN/h2/http2}-${PV}"
 
 if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/icing/mod_h2.git;
-   inherit git-2
+   inherit autotools git-r3
 else
+   S="${WORKDIR}/${MY_P}"

SRC_URI="https://github.com/icing/mod_h2/releases/download/v${PV}/${MY_P}.tar.gz;
KEYWORDS="~amd64 ~x86"
 fi
@@ -26,14 +27,11 @@ RDEPEND=">=net-libs/nghttp2-1.0
>=www-servers/apache-2.4.20[-apache2_modules_http2,ssl?]"
 DEPEND="${RDEPEND}"
 
-S="${WORKDIR}/${MY_P}"
-
 need_apache2_4
 
-src_configure() {
-   econf \
-   --docdir='$(datarootdir)'/doc/${PF} \
-   --disable-werror
+src_prepare() {
+   default
+   [[ ${PV} =  ]] && eautoreconf
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: sys-apps/pacman/, sys-apps/pacman/files/

2017-08-07 Thread Amy Liffey
commit: aa655378e457e47abd9c358df124e2bc754231f7
Author: Nils Freydank  posteo  de>
AuthorDate: Mon Aug  7 15:42:53 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Aug  7 17:03:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa655378

sys-apps/pacman-4.x: Security cleanup wrt Gentoo bug #585940.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 sys-apps/pacman/Manifest   |  2 -
 sys-apps/pacman/files/pacman-4.0.0-gpgme.patch | 45 --
 sys-apps/pacman/pacman-4.0.1.ebuild| 82 
 sys-apps/pacman/pacman-4.0.3-r1.ebuild | 86 --
 sys-apps/pacman/pacman-4.0.3.ebuild| 82 
 5 files changed, 297 deletions(-)

diff --git a/sys-apps/pacman/Manifest b/sys-apps/pacman/Manifest
index 679b00ebe9d..c2e540aa814 100644
--- a/sys-apps/pacman/Manifest
+++ b/sys-apps/pacman/Manifest
@@ -1,3 +1 @@
-DIST pacman-4.0.1.tar.gz 1897685 SHA256 
04f6822b31022100de6cd0a1905b199bbd1eaf878ef0726b6242ee032f3c33b1 SHA512 
3508fd4ef02c1b6ed5220946a9b7a54ebc24b4b5444c0fd58ada5e4bae9486be2aa38043c313bc2c82d485b03f7283f7754244a944c8529649fb4edbc0851de9
 WHIRLPOOL 
429e5c59f116d1d053c597f0fa186ece6bd5c042c58a257c5bf75ed4cd8eec11bdd282bb4ec2900c79b5f0aabe6dd2accebea71355fbb315d2d9522745d7d58d
-DIST pacman-4.0.3.tar.gz 1961839 SHA256 
a48696ae51aaccf31a69ea7916ba9b06e7836eb933b8a281c666729c9d55ce25 SHA512 
a1c7607470f0c54affe09a1b0491cdc310f37accaf782489439fd80f85b7b0ae313c477f5f3075ddef86234364b2b317e9f6abe618722b603cc9808fbba2b326
 WHIRLPOOL 
f01c0ee89e471fbf08d71abe6e1413d7102ce6b20d20a1658a88f4600df01e9485420975ef698765b2f358e83dffe84d68df0891a6d888a35826254db33856ed
 DIST pacman-5.0.2.tar.gz 3361701 SHA256 
dfd36086ad68564bcd977f4a1fafe51dd328acd4a95093ac4bf1249be9c41f0e SHA512 
94a8cce1a52d2365a993c72f16537f4dbea6100feb8f22e8782cc7d2c1ef8a525a63f3c40bb183294c0faedcc743e3d806d2fc3c50a21ab9b03df2910039d628
 WHIRLPOOL 
2419486287d1ce26d97b3ad53513b4699d876cf5823f65b10d60d8f1df6b2150bc1b742677a60891dccc32bb2105a9a9bb10b58950f5403d0bd64859b0b8640b

diff --git a/sys-apps/pacman/files/pacman-4.0.0-gpgme.patch 
b/sys-apps/pacman/files/pacman-4.0.0-gpgme.patch
deleted file mode 100644
index ab0f57c7a16..000
--- a/sys-apps/pacman/files/pacman-4.0.0-gpgme.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From fc732def0944aac5c7b18860b4f46444e6d50044 Mon Sep 17 00:00:00 2001
-From: Nathan Phillip Brink 
-Date: Mon, 17 Oct 2011 21:01:22 +
-Subject: [PATCH] Use AM_GPGME_PATH macro from gpgme instead of home-built 
gpgme detection.
-
-Fixes compilation on Gentoo, where CPPFLAGS=-I/usr/include/gpgme is
-necessary.

- configure.ac |   20 
- 1 files changed, 12 insertions(+), 8 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index c23da75..87cd359 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -161,14 +161,18 @@ AM_CONDITIONAL([HAVE_LIBSSL], [test "x$with_openssl" = 
"xyes"])
- # Check for gpgme
- AC_MSG_CHECKING(whether to link with libgpgme)
- AS_IF([test "x$with_gpgme" != "xno"],
--  [AC_MSG_RESULT(yes)
--  AC_CHECK_LIB([gpgme], [gpgme_check_version], ,
--  [if test "x$with_gpgme" != "xcheck"; then
--  AC_MSG_FAILURE([--with-ggpme was given, but -lgpgme was not 
found])
--  fi],
--  [-lgpgme])
--  with_gpgme=$ac_cv_lib_gpgme_gpgme_check_version],
--  AC_MSG_RESULT(no))
-+  [AC_MSG_RESULT([yes])],
-+  [AC_MSG_RESULT([no])])
-+AS_IF([test "x$with_gpgme" != "xno"],
-+  [AM_PATH_GPGME([],
-+  [LIBS="$LIBS $GPGME_LIBS"
-+  CPPFLAGS="$CPPFLAGS $GPGME_CPPFLAGS"
-+  CFLAGS="$CFLAGS $GPGME_CFLAGS"
-+  with_gpgme=yes
-+  AC_DEFINE([HAVE_LIBGPGME], [1], [Define if gpgme should be used 
to provide GPG signature support.])],
-+  [AS_IF([test "x$with_gpgme" != "xcheck"],
-+  [AC_MSG_FAILURE([--with-gpgme was given, but gpgme was 
not found])])
-+  with_gpgme=no])])
- AM_CONDITIONAL([HAVE_LIBGPGME], [test "x$with_gpgme" = "xyes"])
- 
- # Checks for header files.
--- 
-1.7.3.4
-

diff --git a/sys-apps/pacman/pacman-4.0.1.ebuild 
b/sys-apps/pacman/pacman-4.0.1.ebuild
deleted file mode 100644
index 44c51197f16..000
--- a/sys-apps/pacman/pacman-4.0.1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools autotools-utils bash-completion-r1 eutils
-
-DESCRIPTION="Archlinux's binary package manager"
-HOMEPAGE="http://archlinux.org/pacman/;
-SRC_URI="ftp://ftp.archlinux.org/other/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="curl debug doc gpg test"
-
-COMMON_DEPEND="app-arch/libarchive
-   dev-libs/openssl
-   virtual/libiconv
-   virtual/libintl
-   sys-devel/gettext
-   curl? ( net-misc/curl )
-   

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

2017-08-07 Thread Amy Liffey
commit: 12e57d184a39138ac3ee87cf3d47b683b6530873
Author: Nils Freydank  posteo  de>
AuthorDate: Mon Aug  7 15:14:56 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Aug  7 17:03:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12e57d18

sys-apps/pacman: Add proxied maintainer.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 sys-apps/pacman/metadata.xml | 20 +---
 1 file changed, 17 insertions(+), 3 deletions(-)

diff --git a/sys-apps/pacman/metadata.xml b/sys-apps/pacman/metadata.xml
index 21f90c4eda3..24ba8965c72 100644
--- a/sys-apps/pacman/metadata.xml
+++ b/sys-apps/pacman/metadata.xml
@@ -1,7 +1,21 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-Support verifying packages signed with GPG using 
app-crypt/gpgme
-  
+   
+   mailto:pacman-...@archlinux.org
+   
https://git.archlinux.org/pacman.git/tree/NEWS
+   https://www.archlinux.org/pacman/
+   
+   
+   holgers...@posteo.de
+   Nils Freydank
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   Install extended documentation using 
app-doc/doxygen. (Man pages are included by default.)
+   Enable GPG signature verification using 
app-crypt/gpgme
+   
 



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

2017-08-07 Thread Amy Liffey
commit: 7e94a046e4f36aba9bad961013eae772a61bb07a
Author: Nils Freydank  posteo  de>
AuthorDate: Mon Aug  7 15:13:06 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Aug  7 17:03:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e94a046

sys-apps/pacman-5.0.2: Version bump. This version drops x86 keyword.

Archlinux as the upstream of pacman drops support for i686 (i.e.
x86 on Gentoo) entirely in Nov 2017 after nine months of phasing
out. Therefore a keyword for x86 won’t make sense in our ebuild
anymore. For more details please take a look at:
https://www.archlinux.org/news/phasing-out-i686-support/

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 sys-apps/pacman/Manifest|  1 +
 sys-apps/pacman/pacman-5.0.2.ebuild | 86 +
 2 files changed, 87 insertions(+)

diff --git a/sys-apps/pacman/Manifest b/sys-apps/pacman/Manifest
index f090a01e0fc..679b00ebe9d 100644
--- a/sys-apps/pacman/Manifest
+++ b/sys-apps/pacman/Manifest
@@ -1,2 +1,3 @@
 DIST pacman-4.0.1.tar.gz 1897685 SHA256 
04f6822b31022100de6cd0a1905b199bbd1eaf878ef0726b6242ee032f3c33b1 SHA512 
3508fd4ef02c1b6ed5220946a9b7a54ebc24b4b5444c0fd58ada5e4bae9486be2aa38043c313bc2c82d485b03f7283f7754244a944c8529649fb4edbc0851de9
 WHIRLPOOL 
429e5c59f116d1d053c597f0fa186ece6bd5c042c58a257c5bf75ed4cd8eec11bdd282bb4ec2900c79b5f0aabe6dd2accebea71355fbb315d2d9522745d7d58d
 DIST pacman-4.0.3.tar.gz 1961839 SHA256 
a48696ae51aaccf31a69ea7916ba9b06e7836eb933b8a281c666729c9d55ce25 SHA512 
a1c7607470f0c54affe09a1b0491cdc310f37accaf782489439fd80f85b7b0ae313c477f5f3075ddef86234364b2b317e9f6abe618722b603cc9808fbba2b326
 WHIRLPOOL 
f01c0ee89e471fbf08d71abe6e1413d7102ce6b20d20a1658a88f4600df01e9485420975ef698765b2f358e83dffe84d68df0891a6d888a35826254db33856ed
+DIST pacman-5.0.2.tar.gz 3361701 SHA256 
dfd36086ad68564bcd977f4a1fafe51dd328acd4a95093ac4bf1249be9c41f0e SHA512 
94a8cce1a52d2365a993c72f16537f4dbea6100feb8f22e8782cc7d2c1ef8a525a63f3c40bb183294c0faedcc743e3d806d2fc3c50a21ab9b03df2910039d628
 WHIRLPOOL 
2419486287d1ce26d97b3ad53513b4699d876cf5823f65b10d60d8f1df6b2150bc1b742677a60891dccc32bb2105a9a9bb10b58950f5403d0bd64859b0b8640b

diff --git a/sys-apps/pacman/pacman-5.0.2.ebuild 
b/sys-apps/pacman/pacman-5.0.2.ebuild
new file mode 100644
index 000..2cea26f9fc5
--- /dev/null
+++ b/sys-apps/pacman/pacman-5.0.2.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 )
+
+DESCRIPTION="Archlinux's binary package manager"
+HOMEPAGE="https://archlinux.org/pacman/;
+
+if [[ ${PV} == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://git.archlinux.org/pacman.git;
+else
+   SRC_URI="https://sources.archlinux.org/other/pacman/${P}.tar.gz;
+   # Do *not* re-add ~x86!
+   # https://www.archlinux.org/news/phasing-out-i686-support/
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="curl debug doc +gpg"
+COMMON_DEPEND="app-arch/libarchive:=[lzma]
+   gpg? ( >=app-crypt/gpgme-1.4.0:= )
+   dev-libs/openssl:0=
+   curl? ( net-misc/curl )
+   virtual/libiconv
+   virtual/libintl"
+RDEPEND="${COMMON_DEPEND}"
+# create manpages *everytime*
+DEPEND="${COMMON_DEPEND}
+   app-text/asciidoc
+   doc? ( app-doc/doxygen )"
+
+src_prepare() {
+   # Remove a line that adds -Werror in ./configure when --enable-debug
+   # is passed:
+   sed -i -e '/-Werror/d' configure.ac || die
+
+   default
+}
+
+src_configure() {
+   local myeconfargs=(
+   --localstatedir=/var
+   --disable-git-version
+   --with-openssl
+   # Help protect user from shooting his/her Gentoo installation
+   # in its foot.
+   --with-root-dir="${EPREFIX}/var/chroot/archlinux"
+   $(use_enable debug)
+   # build always manpages
+   --with-doc
+   # full doc with doxygen
+   $(use_enable doc doxygen)
+   $(use_with curl libcurl)
+   $(use_with gpg gpgme)
+   )
+   econf "${myeconfargs[@]}"
+}
+src_install() {
+   dodir /etc/pacman.d/
+   default
+}
+
+pkg_postinst() {
+   einfo ""
+   einfo "The default root dir was set to ${EPREFIX}/var/chroot/archlinux"
+   einfo "to avoid breaking Gentoo systems due to oscitancy."
+   einfo "You need to create this path by yourself (or choose another via"
+   einfo "pacman’s parameter -r|--root)."
+   einfo ""
+   einfo ""
+   einfo "You will need to setup at least one mirror in 
/etc/pacman.d/mirrorlist."
+   einfo "Please generate it manually according to the Archlinux 
documentation:"
+   einfo "https://wiki.archlinux.org/index.php/Mirror;
+   einfo ""
+   einfo ""
+   einfo "Archlinux is dropping support for x86 

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

2017-08-07 Thread Amy Liffey
commit: a55a6d3d0237271ed6c162102f35033c315789e4
Author: Nils Freydank  posteo  de>
AuthorDate: Mon Aug  7 15:59:08 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Aug  7 17:03:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a55a6d3d

profiles: Drop mask as it was set for pacman-4.x in unmaintained state.

Closes:#5335

 profiles/package.mask | 5 -
 1 file changed, 5 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 80f8b02eb80..c4fba55cf19 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -96,11 +96,6 @@ dev-libs/DFB++
 dev-scheme/stalin
 
 # Pacho Ramos  (26 Jul 2017)
-# Orphan, severely outdated and vulnerable to security issues (#585940).
-# Removal in a month.
-sys-apps/pacman
-
-# Pacho Ramos  (26 Jul 2017)
 # One of the last consumers of old udisks:0, upstream dead for ages
 # (#601358). Removal in a month.
 x11-misc/tinymount



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

2017-08-07 Thread Jason Zaman
commit: bcfbc52181f03e672b5229e508854d74ceb89d6c
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 16:06:44 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcfbc521

sys-apps/selinux-python: bump to 2.7

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/selinux-python/Manifest  |  1 +
 sys-apps/selinux-python/selinux-python-2.7.ebuild | 97 +++
 2 files changed, 98 insertions(+)

diff --git a/sys-apps/selinux-python/Manifest b/sys-apps/selinux-python/Manifest
index db8f2130d33..0f541ec6459 100644
--- a/sys-apps/selinux-python/Manifest
+++ b/sys-apps/selinux-python/Manifest
@@ -1,3 +1,4 @@
 DIST selinux-python-2.7-rc1.tar.gz 2067791 SHA256 
29aa4b914a11f54c05670d09a92327cc1fe5203af41ec5ece837a7fc3f5563ac SHA512 
8d0f774dd04b52d404cfdd0ed3bab7d83269a7881ff8a4f1170292193cdccb2cdbdc9456dd473fdaaa2b63584bfe0385e76a0e2315f6a9298dc5cf1c7b928c0f
 WHIRLPOOL 
37ba7397a5523d1ed283d3d4d71e8643040d3b5ab37c90e64aed90d1190bca53480c3c034512ffda62b8494386bc1759013190fa4699befa4aee86d561e7a67c
 DIST selinux-python-2.7-rc4.tar.gz 2067797 SHA256 
e6e1ae9aaebc7450f470df807b8a3913d751f15ce555c39b6bc4a50a712cc0ad SHA512 
f7a9c9ff0af4c127afdf4feae169b143d90f6c9883e678a79dce84b5807d697e778e44a709d1eddc927c48ba44315c8218262b96669661f3efa6e9c495b8cf4c
 WHIRLPOOL 
781cd09f06c5bc153f8dc4892d10e08436b9da975a5951530f237a857d493ab6507dc56f6aa0c9f253c3bd92ace3dc23c1b9607ed4ba8c83816c0facc703ec8a
 DIST selinux-python-2.7-rc5.tar.gz 2067809 SHA256 
05821b09514276a26f0d71959ba8a78e8a4a7d890300063a7f0f8822e448ee72 SHA512 
69f62c04dbbe87acd0650c547cf7f23dd321f885b3d054d1265bf4c7c30c030f857cd681bb6c3a8e21d0b9532ec8ba0b10d80a90efe41cd8b2a575e2625d6372
 WHIRLPOOL 
d2774e4c825f4d950d3fe156169a0e4211b0dd6dd33fbf3f3b461b20009e218e15d91b6ff3aafe2200acdf76053c059370752d25d58d4261db42324290eed249
+DIST selinux-python-2.7.tar.gz 2068004 SHA256 
4217cb965ecda96c91e15ffcc2e7ddd13ecc2bf5631100f3cd072a7616f140ed SHA512 
df8645e7ac9ca568f0c9d81c42b93d0abadc43c22f14d38451ab262b52132cfb7abd7742e3a00ab9c153f95dd5b23b3a496d84875debcd9787f75d940eb45c28
 WHIRLPOOL 
b1848dec315b23009b192dbc54a4ccf2433b83f87c254ad36d8c090a9d33fb15fe45b87b22a6979b0f115c385605f4359a4f3da7ab4b0abec84ebdbbc86c2531

diff --git a/sys-apps/selinux-python/selinux-python-2.7.ebuild 
b/sys-apps/selinux-python/selinux-python-2.7.ebuild
new file mode 100644
index 000..1ba9c5dd602
--- /dev/null
+++ b/sys-apps/selinux-python/selinux-python-2.7.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_REQ_USE="xml"
+
+inherit python-r1 toolchain-funcs
+
+MY_P="${P//_/-}"
+
+MY_RELEASEDATE="20170804"
+SEPOL_VER="${PV}"
+SELNX_VER="${PV}"
+SEMNG_VER="${PV}"
+
+IUSE="audit pam dbus"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DESCRIPTION="SELinux core utilities"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+if [[ ${PV} ==  ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN#selinux-}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libselinux-${SELNX_VER}:=[python]
+   >=sys-libs/libsemanage-${SEMNG_VER}:=[python]
+   >=sys-libs/libsepol-${SEPOL_VER}:=
+   >=app-admin/setools-4.1.1[${PYTHON_USEDEP}]
+   dev-python/ipy[${PYTHON_USEDEP}]
+   !dev-python/sepolgen
+   ${PYTHON_DEPS}"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   sed -i 's/-Werror//g' "${S}"/*/Makefile || die "Failed to remove Werror"
+
+   python_copy_sources
+}
+
+src_compile() {
+   building() {
+   emake -C "${BUILD_DIR}" \
+   CC="$(tc-getCC)" \
+   PYLIBVER="${EPYTHON}" \
+   LIBDIR="\$(PREFIX)/$(get_libdir)"
+   }
+   python_foreach_impl building
+}
+
+src_install() {
+   installation() {
+   emake -C "${BUILD_DIR}" \
+   DESTDIR="${D}" \
+   LIBDIR="\$(PREFIX)/$(get_libdir)" \
+   LIBSEPOLA="/usr/$(get_libdir)/libsepol.a" \
+   install
+   python_optimize
+   }
+   python_foreach_impl installation
+
+   # Set version-specific scripts
+   for pyscript in audit2allow sepolgen-ifgen sepolicy chcat; do
+ python_replicate_script "${ED}/usr/bin/${pyscript}"
+   done
+   for pyscript in semanage; do
+ python_replicate_script "${ED}/usr/sbin/${pyscript}"
+   done
+
+   # Create sepolgen.conf with different devel location definition
+  

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

2017-08-07 Thread Jason Zaman
commit: ec6c2b17ef45c09e8f5bfcf344d61b19d17328fb
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:12:11 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec6c2b17

sys-apps/semodule-utils: bump to 2.7

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/semodule-utils/Manifest  |  1 +
 sys-apps/semodule-utils/semodule-utils-2.7.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/sys-apps/semodule-utils/Manifest b/sys-apps/semodule-utils/Manifest
index 52f272fecca..3bbdfed6f1f 100644
--- a/sys-apps/semodule-utils/Manifest
+++ b/sys-apps/semodule-utils/Manifest
@@ -1,3 +1,4 @@
 DIST semodule-utils-2.7-rc1.tar.gz 15446 SHA256 
929b469e5c8ab806f0acd233352a52b257c5b59b3a75ae950d290138f2d2eef9 SHA512 
4bc0c05e36dc01d53c178c507461e64d8842aa808758370d3920d18bd26410cfceed75ec70c6441f1d40e5ca594e13c12c99bb592b5a018bae9fff47e1177e57
 WHIRLPOOL 
c1101fe791d48a8caea9be20ee15801696dba942084a1f9678e1a86e2f1079e69d19598121d63ebcc4b631ae92635da83499e9a571c99754db4ed432a155d0a6
 DIST semodule-utils-2.7-rc4.tar.gz 15445 SHA256 
91a76625538d0e5faea3828b5401c1fbce634cfb8101262006063a91c0fbf26c SHA512 
a4bd50d69cfb7484057169c1e0292edaa455436d2e8853f4e5a10e241b8508d2ff162a2f2f8857545a70b459f40b4d400b7ef8b4edcd6eb34e1096fd7e18c7c1
 WHIRLPOOL 
cacb8dea0881d9ab3d49df0cd704e5d17f20976c009189243b6a8998a6a89240d47c06d7bc80e12dcd71c862141819532ac5ac089d58cf31925d5cbd0faaca53
 DIST semodule-utils-2.7-rc5.tar.gz 15448 SHA256 
2f056cf4075805f63c89c82a455455dc3540ebe5779234e37e9b9e7bc9a1f22c SHA512 
025e2a3d55271273de98c53bd5682cb96868d5e73c3879765bccb7f489614b00335d9c1b11c90760cd5a116da01d5c9eddbab61cf07c30e08f7fb16de8a4bb69
 WHIRLPOOL 
a4a45311ad5c91ca382d8655caa23dd625753a55c3ca7385380acdf2bd19d84149da39088ec490e755064e6976165f0d2591a19d7f1fa000aa03ba3501c6fac7
+DIST semodule-utils-2.7.tar.gz 15447 SHA256 
90c98b3362a43b4da2a51a9176820a56f3e615225e23e3395bc566c4490786ba SHA512 
5c7c2a2224949f50c1119edba90d937363e22af52a38f06525e957b29f5310a3e3444d03980b2f808ce995de0f9fc0a9dca8b6167bbfde29c1a33b9bc786d3c8
 WHIRLPOOL 
795b3300f186e12ba5083a76fb2f58e85d2443471f7278d4d6f18cfd4b82ca479f47c30acd3c5e7d741733b2ca8a571dc70d0432f5e2faac5fa16f1efeba89e8

diff --git a/sys-apps/semodule-utils/semodule-utils-2.7.ebuild 
b/sys-apps/semodule-utils/semodule-utils-2.7.ebuild
new file mode 100644
index 000..67891e9cf81
--- /dev/null
+++ b/sys-apps/semodule-utils/semodule-utils-2.7.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20170804"
+SEPOL_VER="${PV}"
+SELNX_VER="${PV}"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="SELinux policy module utilities"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${SEPOL_VER}:="
+
+RDEPEND="${DEPEND}
+   !

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

2017-08-07 Thread Jason Zaman
commit: 43e7bcbd792d5497501fb2e87de6d29206e22692
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:12:38 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43e7bcbd

sys-apps/mcstrans: bump to 2.7

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/mcstrans/Manifest|  1 +
 sys-apps/mcstrans/mcstrans-2.7.ebuild | 57 +++
 2 files changed, 58 insertions(+)

diff --git a/sys-apps/mcstrans/Manifest b/sys-apps/mcstrans/Manifest
index f028cfc273a..4a7f489362b 100644
--- a/sys-apps/mcstrans/Manifest
+++ b/sys-apps/mcstrans/Manifest
@@ -1,3 +1,4 @@
 DIST mcstrans-2.7-rc1.tar.gz 41124 SHA256 
5e80b7dc9fc0204a2d561941ea8b220193cf3d34dba9ac527878a7ee036be01d SHA512 
c0db564a693e3dc81759df54ce1b3e4ce6fdb22f3b0a998f4f31919644bae086d22acf6f248d789df1de24fb3d1d3a17bc45f9c39f8ed5b02467ac05177529fa
 WHIRLPOOL 
b2164b2005a3d30963c86301bc1f76d39605d7d72e055e12cafd6cc645c2bcde54f773c41db842ab830becd69454519a628754bd6041d3a45b9a56ee55489740
 DIST mcstrans-2.7-rc4.tar.gz 41154 SHA256 
0548cc928609b17a2cfe0cac62146b79c44f86ec553ba41d8a9dae7876a9ae2b SHA512 
6f6e5843a8932e6a37d978a6af4fb64bddfad8e34afff7bd7e2ba8d92954c7cc7abd390104a5fba8e98d43e40de5c7cc3e48ba2f6c4c599df7905f84448c7e3d
 WHIRLPOOL 
5868ffa1d44b873307c2fe3a7637ae2ad90ba22a2133eb1c416d435436d18ebfa4bca7886eb6a1bf4f20cc6d73f6102b1bdab41193bba3677db8dad7fea3c15b
 DIST mcstrans-2.7-rc5.tar.gz 41156 SHA256 
726b1727ddfa43f34dcf9f68dee29792b1cfb075f3202c9828c0b2c45570d9e6 SHA512 
9936a72eb36cdac1a8e0f93ee56160ba9e028d7831293bc5acf0866907613299bbfde76f1dd12c103fbeeb2ff07705098f9c7981b2a9a71cbdcca93009d49f0d
 WHIRLPOOL 
fdd1ea31e4e7fa5661ba13d908041b19e99e301fbc04742e6e1d2b239b68122f8f3c3fca551f967a8771d683c0474d804a9e3637b2088ef652edda4cead9dd97
+DIST mcstrans-2.7.tar.gz 41137 SHA256 
cdca003282d160b50ad695ab5b013c05ca21387a419b2f89288534184d16e1e2 SHA512 
2e59f26fad3423a0c8e2ea49d619f99022c72e1aebb00e842defb4fad56f187f9ed0f069ef78d3b209ba76f5ebdcba1668f51ff881b753dada5716ee942519b3
 WHIRLPOOL 
0a63443d0a0c1e11a000c923b9c23e8b6e128543665c11b84d122bcd8afec298617680b9543110ae5d44a9ea64564a2c361a8a9426f65c17505848c91f6ca555

diff --git a/sys-apps/mcstrans/mcstrans-2.7.ebuild 
b/sys-apps/mcstrans/mcstrans-2.7.ebuild
new file mode 100644
index 000..2f7feeef011
--- /dev/null
+++ b/sys-apps/mcstrans/mcstrans-2.7.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20170804"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="SELinux context translation to human readable names"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

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

2017-08-07 Thread Jason Zaman
commit: 5e59328d053b7610d3c975121800f78957b84760
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:12:51 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e59328d

sys-apps/restorecond: bump to 2.7

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/restorecond/Manifest   |  1 +
 sys-apps/restorecond/restorecond-2.7.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/sys-apps/restorecond/Manifest b/sys-apps/restorecond/Manifest
index f4438e1137f..a607e123ca0 100644
--- a/sys-apps/restorecond/Manifest
+++ b/sys-apps/restorecond/Manifest
@@ -1,3 +1,4 @@
 DIST restorecond-2.7-rc1.tar.gz 17752 SHA256 
af97d65094dd0b064325647e63130737b6fb077de1753e0b6d2d4c8060b938d5 SHA512 
386d62a42237288fbe013bcc05ce9d6b46007ca3c9c0671fd53e60203fb0a92e7911d80a27591f068c8038f390af7bd39b6b75244f944684186e7766a19e2fbd
 WHIRLPOOL 
06e6ad4afe94e49b6d3040235da052a4e0641c8054e6b80236cc84c04ed477eb71e1a276c03e1ef9c7025b670ac55014ba4b64df336fd9681d68bb96c0ead2b2
 DIST restorecond-2.7-rc4.tar.gz 17761 SHA256 
b8ebd7ba6d988442f6c24f43867d0ed4e9573975540ef4726adccf897db4a5c4 SHA512 
907931a73ea2c1c2899d8f6792c7d808676f667dd443ad5abbe77c9cb143ac03f86eee9496e354655e21721882a2c17446fd886d89c8feacde0b477d1ce2c3f1
 WHIRLPOOL 
559364b67c0f9966090b00abd997810582cb123cc08b71eea802652b4994a70d9e068a2ec1a49d2d90317540eb15d1edbd597331039dfbe8c8b44453375d90dc
 DIST restorecond-2.7-rc5.tar.gz 17756 SHA256 
659fa414a56f001eee449ae876e4903a1e9bd139cbacaad2fa786adc3185c62b SHA512 
afda79cf98ca7cf2bd2fc1ff93255ba96b28f4b61fc20ed90c64842efe3158ba5760a584f93a777ff8c6c631fd4bf15c2c0763c18751d0e63edd6043db950711
 WHIRLPOOL 
dbd1f4321f9e0aaa97982216ff438a48b1a7fd854116dd2bf752fe9c1e77ab4a0b5f64fc695af714a5fa51c5260942362bd50e62ebf67440a92683103bc46e35
+DIST restorecond-2.7.tar.gz 17753 SHA256 
cb8e0a8d706cb2c1f105125f3514defcbcfb49199183a7f91ab0bdf1f24d SHA512 
c81950e4f748a729c8951b13a4075ab1003530f8ada7a9d3fbe6428f76070df4819a37daaab557b63fc234aa8c8320ec41757fbdb24b76fa2c11747bde0038ad
 WHIRLPOOL 
54ab5aec56100d459aecf2018326942498ee63236ccf9edcce33c8dbfd100a54c278ef895421b098ef4e2106fb777f116e7eab023491b7d26f9263090af3b6db

diff --git a/sys-apps/restorecond/restorecond-2.7.ebuild 
b/sys-apps/restorecond/restorecond-2.7.ebuild
new file mode 100644
index 000..3d679bcf4c7
--- /dev/null
+++ b/sys-apps/restorecond/restorecond-2.7.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit toolchain-funcs
+
+MY_RELEASEDATE="20170804"
+
+MY_P="${P//_/-}"
+IUSE=""
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND=">=sys-libs/libsepol-${PV}:=
+   >=sys-libs/libselinux-${PV}:=
+   dev-libs/libpcre:=
+   >=sys-libs/libcap-1.10-r10:="
+
+RDEPEND="${DEPEND}
+   !

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

2017-08-07 Thread Jason Zaman
commit: 6909064f038037ab74ba0580ac6f949b04a42514
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:11:16 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6909064f

sys-libs/libsemanage: bump to 2.7

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-libs/libsemanage/Manifest   |   1 +
 sys-libs/libsemanage/libsemanage-2.7.ebuild | 137 
 2 files changed, 138 insertions(+)

diff --git a/sys-libs/libsemanage/Manifest b/sys-libs/libsemanage/Manifest
index 1cda5557654..af54977332c 100644
--- a/sys-libs/libsemanage/Manifest
+++ b/sys-libs/libsemanage/Manifest
@@ -3,3 +3,4 @@ DIST libsemanage-2.6.tar.gz 155897 SHA256 
4f81541047290b751f2ffb926fcd381c186f22
 DIST libsemanage-2.7-rc1.tar.gz 153597 SHA256 
50df2092bce88af87350916bd7f93b8095de500d9911452a025c3f24ea140455 SHA512 
92371e0f710a9fb5179db4c05af52455e3ec0771173a693c954abf032afc70e76d3eb626ae87445a59b04d6037a83fce15bc196275ef3497a8321423ccfb4aac
 WHIRLPOOL 
b871a59d0565cc194e7e2b0f60fd059aef17eb433a743bff113085473013a155905aa5778439aa37cb0dbbd4951873c20dc4458469b400a9e64dc4e8bb7e1e87
 DIST libsemanage-2.7-rc4.tar.gz 153500 SHA256 
92c052fcc385471965ac22a6031573947cce8a685146aa6c7b404ba688277280 SHA512 
efd84cdcff3a326e55180063d5877f711f2af001e89f83181bb4e7b93cee226fa94d0bce8285974ca1aaf14e75378f2022fd4c2c788a2325cd4665fce4100535
 WHIRLPOOL 
32a949f72f5fc4ba677dff83ed35487a0cb3661c9f696acaaaee0087d7d6d23e1740fe5f51f032e4aeaa2a6d64484d7522e2572113f218018ad9f76f3078c222
 DIST libsemanage-2.7-rc5.tar.gz 153499 SHA256 
1157538b67b77bdff14592c7b23d43181fad747307452009b4cfa53b07a94e6a SHA512 
62803ef4eee50f8a706aef7034e604891ca3f15e3f735793c63785e7e7e072f1cd3ff0c4ad1e9a591925b91c53ac4e89453b7fcb479cb2396c7e914a704bd685
 WHIRLPOOL 
4b6eff5b2cfbf0d4915cbad10bbcb8bec549be7e5cabd74e7ed58b92f9a7a7e453b8f126624a38f469b6e9758123500cb266fc5c49e6b75901a69d874f9cc683
+DIST libsemanage-2.7.tar.gz 153465 SHA256 
07e9477714ce6a4557a1fe924ea4cb06501b62d0fa0e3c0dc32a2cf47cb8d476 SHA512 
6b30ea87f1ab3944935188539bbf869c8e287e05c174ea61cd19722a89cf8156518f336476e23b4117a5a05aec9a99a4db679b58a6952bf0c31ad809e9ab91d9
 WHIRLPOOL 
b1acccb13b54cacd6d956d615a954c5aef4bd97ec225702ccd6818f7a4d64244f60f13c5b8cc02d4fd453e103b6e409919562406510fe2614c1fc6338c19ad67

diff --git a/sys-libs/libsemanage/libsemanage-2.7.ebuild 
b/sys-libs/libsemanage/libsemanage-2.7.ebuild
new file mode 100644
index 000..5015c4e9fc9
--- /dev/null
+++ b/sys-libs/libsemanage/libsemanage-2.7.ebuild
@@ -0,0 +1,137 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit multilib python-r1 toolchain-funcs multilib-minimal
+
+MY_P="${P//_/-}"
+MY_RELEASEDATE="20170804"
+
+SEPOL_VER="${PV}"
+SELNX_VER="${PV}"
+
+DESCRIPTION="SELinux kernel and policy management library"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND=">=sys-libs/libsepol-${SEPOL_VER}[${MULTILIB_USEDEP}]
+   >=sys-libs/libselinux-${SELNX_VER}[${MULTILIB_USEDEP}]
+   >=sys-process/audit-2.2.2[${MULTILIB_USEDEP}]
+   >=dev-libs/ustr-1.0.4-r2[${MULTILIB_USEDEP}]
+   python? ( ${PYTHON_DEPS} )"
+DEPEND="${RDEPEND}
+   sys-devel/bison
+   sys-devel/flex
+   python? (
+   >=dev-lang/swig-2.0.4-r1
+   virtual/pkgconfig
+   )"
+
+# tests are not meant to be run outside of the
+# full SELinux userland repo
+RESTRICT="test"
+
+src_prepare() {
+   echo "# Set this to true to save the linked policy." >> 
"${S}/src/semanage.conf"
+   echo "# This is normally only useful for analysis" >> 
"${S}/src/semanage.conf"
+   echo "# or debugging of policy." >> "${S}/src/semanage.conf"
+   echo "save-linked=false" >> "${S}/src/semanage.conf"
+   echo >> "${S}/src/semanage.conf"
+   echo "# Set this to 0 to disable assertion checking." >> 
"${S}/src/semanage.conf"
+   echo "# This should speed up building the kernel policy" >> 
"${S}/src/semanage.conf"
+   echo "# from policy modules, but may leave you open to" >> 
"${S}/src/semanage.conf"
+   echo "# dangerous rules which assertion checking" >> 
"${S}/src/semanage.conf"
+   echo "# would catch." >> "${S}/src/semanage.conf"
+   echo "expand-check=1" >> "${S}/src/semanage.conf"
+   echo >> "${S}/src/semanage.conf"
+   echo "# Modules in the module 

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

2017-08-07 Thread Jason Zaman
commit: 353ff057ddffd9cd1774a47fddd9b8e31d31ec81
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:45:42 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=353ff057

app-admin/setools: bump to 4.1.1

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-admin/setools/Manifest |  1 +
 app-admin/setools/setools-4.1.1.ebuild | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/app-admin/setools/Manifest b/app-admin/setools/Manifest
index b8918eb9912..67160e25dc5 100644
--- a/app-admin/setools/Manifest
+++ b/app-admin/setools/Manifest
@@ -2,3 +2,4 @@ DIST setools-3.3.8-04-gentoo-patches.tar.bz2 94986 SHA256 
9a8a43ac97606fde9b2610
 DIST setools-3.3.8.tar.bz2 951428 SHA256 
44387ecc9a231ec536a937783440cd8960a72c51f14bffc1604b7525e341e999 SHA512 
2c42ee9904174ed6c6fc129e374ec3591925094ab0ef65001b0104e365c5634bf4a79f28369608c80199d8f59fafaa5f274107c04c129c380eeef7adb0c32667
 WHIRLPOOL 
11c4065809909764f4364b78df1a8030d189315601b882919ccacb5fb147c1b3a061c5bbf9ced3c243d4615ab7727e9db0c89e931a884ae8b317ae3a879e5371
 DIST setools-4.0.1.tar.gz 399888 SHA256 
4c2049877f2f68e4485b72bc280fe20127b49a019169a2cf1d8295c908bdcdfe SHA512 
d0a36cfddc6a6f47ecaa8402141271558e97467b6c449d18b98bf6fe894189f29a32fb672e3ff573efdb44964bd361283c68c2906d02f8a9c1269b6b71903bc2
 WHIRLPOOL 
017e709c113b28175787249af8aa1dcc99a5034eadcc76e97a394f9f89afcc1e7fe3eeb8ec105c541a6260d8a2eb4b1aa8155ba2297ecdf6d640ba112857a442
 DIST setools-4.1.0.tar.gz 447189 SHA256 
cc251572c50298e2705617c8a0ddb5ae7cfe0bde2480bc0c6a4e44341d3df831 SHA512 
047f969a347c5d015885aef0c7a341ae4393c8e0d61a7112b7bd0380d7c6161765f1ac5d875777ac84430bbe4d21bcb8a748f1b8484ae3a4d3f0137e90a07f2b
 WHIRLPOOL 
9b05768d55d4edcafe7f7f90e49fe3170659084a497f1bc74266270e8d242ae4173820058b598fb4452483e57303d11bf6bb4f2482144e9d2803369cf58b857c
+DIST setools-4.1.1.tar.gz 461649 SHA256 
46a927ea2b163cbe1d35cc35da43e45853e13720c7e02d4cf75a498783c19610 SHA512 
2e55a3b07e2f94d7c84054f31d266567b9acc708fe2b0e16ac3ea24e8301c712bcf564ff915a6135a1a6ba6822682bb3a6530dae20161a832fb7048364acbd04
 WHIRLPOOL 
a2982268bb6f407f080718cf841eed097b62e09f5cdb972850d2de7da09562bf0e1b3092fbfd6770ee03aa8146c637241a9ea44618b7fd1c0d8da393c1b9d9f2

diff --git a/app-admin/setools/setools-4.1.1.ebuild 
b/app-admin/setools/setools-4.1.1.ebuild
new file mode 100644
index 000..f1e79d0d936
--- /dev/null
+++ b/app-admin/setools/setools-4.1.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
+
+inherit distutils-r1
+
+DESCRIPTION="Policy Analysis Tools for SELinux"
+HOMEPAGE="https://github.com/TresysTechnology/setools/wiki;
+
+if [[ ${PV} ==  ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/TresysTechnology/setools.git;
+else
+   
SRC_URI="https://github.com/TresysTechnology/setools/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+IUSE="X debug test"
+
+RDEPEND="${PYTHON_DEPS}
+   >=sys-libs/libsepol-2.7:=
+   >=sys-libs/libselinux-2.7:=[${PYTHON_USEDEP}]
+   >=dev-python/networkx-1.8[${PYTHON_USEDEP}]
+   virtual/python-enum34[${PYTHON_USEDEP}]
+   dev-libs/libpcre:=
+   X? (
+   dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}]
+   )"
+
+DEPEND="${RDEPEND}
+   >=dev-lang/swig-2.0.12:0
+   sys-devel/bison
+   sys-devel/flex
+   >=sys-libs/libsepol-2.5
+   test? (
+   python_targets_python2_7? ( dev-python/mock[${PYTHON_USEDEP}] )
+   dev-python/tox[${PYTHON_USEDEP}]
+   )"
+
+python_prepare_all() {
+   sed -i "s/'-Werror', //" "${S}"/setup.py || die "failed to remove 
Werror"
+
+   use X || local PATCHES=( "${FILESDIR}"/setools-4.1.0-remove-gui.patch )
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   esetup.py test
+}



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

2017-08-07 Thread Jason Zaman
commit: 60e2bebc0fbd9fceea5a2529728284eedef3d639
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 15:46:23 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60e2bebc

sys-apps/policycoreutils: bump to 2.7

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/policycoreutils/Manifest  |   1 +
 .../policycoreutils/policycoreutils-2.7.ebuild | 181 +
 2 files changed, 182 insertions(+)

diff --git a/sys-apps/policycoreutils/Manifest 
b/sys-apps/policycoreutils/Manifest
index a1aeeece6ba..bd5ae09197e 100644
--- a/sys-apps/policycoreutils/Manifest
+++ b/sys-apps/policycoreutils/Manifest
@@ -3,6 +3,7 @@ DIST policycoreutils-2.6.tar.gz 4660087 SHA256 
68891b376f5048edc53c6ccb2fca44da3
 DIST policycoreutils-2.7-rc1.tar.gz 2797016 SHA256 
d990b00be77838c15bf701494eeddd7d39cb8871dcc69483dd954a2c2a9eb328 SHA512 
7669041dbd6a119dde0283335967160cf477d21e5e6f170e7269351bc07e30995b489fd6eb90188e84be0b321e55e77860cbbad588fbf5f5c2b64a6f18334cfb
 WHIRLPOOL 
529f8dfc55844a712bf966b0686e522b563bcbcd2373ec113a90bf78c8a30c3f4250393ea35554e5065065dde9f583f5461a889d825ffcced1b96f383e91a086
 DIST policycoreutils-2.7-rc4.tar.gz 2797116 SHA256 
d68f7cfbdb5539c13f35aba4e506b4f5aff54cc426810d96eac14fc84aa26e5f SHA512 
4eabcb5b36c3a5cde22e9754f2fb6563f8a6c97a33bb4f1143e802f02f1018e8cefa445b11bcd26e9f32bd306e30bad48d77e22b828da807d1eae682ff89b87a
 WHIRLPOOL 
81c6bbf10d6b1f0377b60ad8c5c79349511f446e2b4e748a999feed4a5fd525193017e57edbd285cdd8322b0fda15f218ec06400d6dfdad42053b788f68b5964
 DIST policycoreutils-2.7-rc5.tar.gz 2797162 SHA256 
8f4ebdafd7efb0b61d4bbc2d706be88ec1a5104573e83a30fff257823c657b52 SHA512 
cebc12cf58803f64f38bb544337742bb85cd1b81bb6041a3a0d2ed44dbe8fbb72efc9801d1634ef05c7a2055945ec4381903aa059b320ca774bba6a42768da39
 WHIRLPOOL 
e9d8f841e7724a70ad024305a53c2a83171f242efd6dae902d9480e10069103999af0a47024dcff6ba74d10aee22ccf9c4f8b71bd6689793b2de7986017aa049
+DIST policycoreutils-2.7.tar.gz 2796707 SHA256 
0a1b8a4a323b854981c6755ff025fe98a0f1cff307f109abb260f0490f13e4f4 SHA512 
ce97d659f72058fd23d8dab8db98fc7c0003806a636c521fa15da465d7358d40ccc8e3eaa9675f00a9b0b8aaa1465d3fb650bc0ebbbf00164e121230673256fb
 WHIRLPOOL 
f2360ab5e83f1a9a0f9e63bf700a89c28b61d13f8101c9ea2b68e9f071ede23557a0a5bec9a077b96b42be063421018ab8b85c4443e3bc1021f0d251a62de301
 DIST policycoreutils-extra-1.34.tar.bz2 12107 SHA256 
56ae2aac57bf104d6a8a7837b25de7978b25e0642744ef95e6e6d483201aa4ca SHA512 
b1db6d70cf864023f22583e5bd24c85e796f1541f9c1bc878dd55309464b27346e05e414db3ef81bef2dfe8c8d7d7063ee7e0422878f38a3db56c67d9468b89d
 WHIRLPOOL 
8b094818bed0e438ce4258428afa054cb561f53e303d84e171881add5952cfc0fa577bce2765294905dac8ddd5560906904958f35c96afce0f357feb5333646d
 DIST policycoreutils-extra-1.35.tar.bz2 12124 SHA256 
25983df35c0b98fb65423f109d71c02e4d6b86415452b7a7a6e92b5e4fa4a36e SHA512 
8cc3c74afee7ec38d7d085744fdd60849d3ae97a75599d2181b12b5b472a6a4445868e8a6aff707e439c10d9c378fb55e329b4db21c0a771f41180bf3b9eabc1
 WHIRLPOOL 
863ca52e1897cbfb9252f1afe81fef497f27ede10c74e1150c07e9f355390eca0e64c9b0cc0a48e8a7442b310387b1e929b40e2b9c14a9a095850a00983cd5f6
 DIST policycoreutils-extra-1.36.tar.bz2 8830 SHA256 
2dfbe799bbbf150e68fab7e168fd71b94505c992623f30c71873213447506e8f SHA512 
c6a18e6fb2d65f51dc55b88907f23241f2fbfc033d3d2888b109596d9ed31d509b2c93456727ea4d1f98544831afb15c449ff72d6aedf93b9e474b27817f7fb3
 WHIRLPOOL 
c9772dba472b9b466181204f5bd5fb13d839042c53c84db38999a8b077b0dee1e9e78089b7b5fe4bc4076a1ad1c420528354404b292abd428a73e6f95312d0c4

diff --git a/sys-apps/policycoreutils/policycoreutils-2.7.ebuild 
b/sys-apps/policycoreutils/policycoreutils-2.7.ebuild
new file mode 100644
index 000..f2098b2a414
--- /dev/null
+++ b/sys-apps/policycoreutils/policycoreutils-2.7.ebuild
@@ -0,0 +1,181 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_REQ_USE="xml"
+
+inherit multilib python-r1 toolchain-funcs bash-completion-r1
+
+MY_P="${P//_/-}"
+
+MY_RELEASEDATE="20170804"
+EXTRAS_VER="1.36"
+SEMNG_VER="${PV}"
+SELNX_VER="${PV}"
+SEPOL_VER="${PV}"
+
+IUSE="audit pam dbus"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DESCRIPTION="SELinux core utilities"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+if [[ ${PV} ==  ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   
SRC_URI="https://dev.gentoo.org/~perfinion/distfiles/policycoreutils-extra-${EXTRAS_VER}.tar.bz2;
+   S1="${WORKDIR}/${MY_P}/${PN}"
+   S2="${WORKDIR}/policycoreutils-extra"
+   S="${S1}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz
+   
https://dev.gentoo.org/~perfinion/distfiles/policycoreutils-extra-${EXTRAS_VER}.tar.bz2;

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

2017-08-07 Thread Jason Zaman
commit: 5cabdc3a9ea428774b6ab91275a571694d1814aa
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:10:16 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cabdc3a

sys-apps/mcstrans: update live ebuild

Package-Manager: Portage-2.3.6, Repoman-2.3.1

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

diff --git a/sys-apps/mcstrans/mcstrans-.ebuild 
b/sys-apps/mcstrans/mcstrans-.ebuild
index 9deac88931d..2f7feeef011 100644
--- a/sys-apps/mcstrans/mcstrans-.ebuild
+++ b/sys-apps/mcstrans/mcstrans-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20170718"
+MY_RELEASEDATE="20170804"
 
 MY_P="${P//_/-}"
 IUSE=""



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

2017-08-07 Thread Jason Zaman
commit: 7d875d3cd97e90ae2a55eb164b875692231f83bd
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:10:45 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d875d3c

sys-libs/libsepol: bump to 2.7

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-libs/libsepol/Manifest|  1 +
 sys-libs/libsepol/libsepol-2.7.ebuild | 48 +++
 2 files changed, 49 insertions(+)

diff --git a/sys-libs/libsepol/Manifest b/sys-libs/libsepol/Manifest
index bc571fa5529..ea1a17cca26 100644
--- a/sys-libs/libsepol/Manifest
+++ b/sys-libs/libsepol/Manifest
@@ -3,3 +3,4 @@ DIST libsepol-2.6.tar.gz 442549 SHA256 
d856d6506054f52abeaa3543ea2f2344595a3dc05
 DIST libsepol-2.7-rc1.tar.gz 471201 SHA256 
a00523b53c6f96e5a811a0315b02db0f290b19c8f8376369216aaa08377dcbc6 SHA512 
040107fdd03f36c5f8a02220f930c16256e93891d2e934f2b45ee29938809d72192efb5c59a900c2802f73cfd9670ff7758083544376ee5c58a992651e8ea12d
 WHIRLPOOL 
d75e046a5f7298503b837c65147ca970e243ea23d07c96f67090758fed4a058dfcfa98d711f25f7bec3fd65238faa78a16132e23efdd3df6aabcfe49a7a29f9e
 DIST libsepol-2.7-rc4.tar.gz 471191 SHA256 
a0425da4a5a8e08687383b64b90c903a99a8e3db9d3b703ff529d3154f922207 SHA512 
b0cc3d0296fc58824f056e90e53103188fe6c2ea830373006ef9004a564325eb72d735e69b16922241fe7ca7241e50a440ed3a42daa1030a0a0171714999de66
 WHIRLPOOL 
fb8ce3bdf14eed1106bc06773ede5c4258f173f0a182232e05c7e38c332c32df879dcbb1624112c5da2acb1b7acde05d776aa666c7c21b145f26d516d762a8ab
 DIST libsepol-2.7-rc5.tar.gz 471190 SHA256 
d598027322e2b2f94b262f2de9d8199f1c4ddd8e3de7b80fedb730f8412d6944 SHA512 
d215cfcdc1961659a0361e3c6267296ab476dded11354232adbcb152e97b4c9d0ac52f7a9ac95825ed1ce9c9e69e24c088ccd5145ff022962afb0fceddfc90a2
 WHIRLPOOL 
b42e3addde2c0c9f93fe4822694167bafc198d60f0d182b5f45d594e9306b57982a96b5fa1ac00289e0b6f723dd01415bb8b30aba1a7ad2d550ff096d8a4d4af
+DIST libsepol-2.7.tar.gz 471147 SHA256 
d69d3bd8ec901a3bd5adf2be2fb47fb1a685ed73066ab482e7e505371a48f9e7 SHA512 
1d308c17bfea2659f9dc4877ab685449a5a33dff7260e62b603cde9551bed2010360b71a896c6dfcdb8b9fe86ecebc9f6b3225e6c3573a80fca8578a9d561b47
 WHIRLPOOL 
d89ac1e892a3b1a05221bcdaecab2e9bdb1dbe035133da052b04868152891ee994d266a64508ae4077a3859863a10efc49088f6ae12a5cf5beef571c1c932c80

diff --git a/sys-libs/libsepol/libsepol-2.7.ebuild 
b/sys-libs/libsepol/libsepol-2.7.ebuild
new file mode 100644
index 000..e68451424fc
--- /dev/null
+++ b/sys-libs/libsepol/libsepol-2.7.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit multilib toolchain-funcs multilib-minimal
+
+MY_P="${P//_/-}"
+MY_RELEASEDATE="20170804"
+
+DESCRIPTION="SELinux binary policy representation library"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+# tests are not meant to be run outside of the full SELinux userland repo
+RESTRICT="test"
+
+src_prepare() {
+   eapply_user
+   multilib_copy_sources
+}
+
+multilib_src_compile() {
+   tc-export RANLIB;
+   LIBDIR="\$(PREFIX)/$(get_libdir)" SHLIBDIR="\$(DESTDIR)/$(get_libdir)" \
+   emake AR="$(tc-getAR)" CC="$(tc-getCC)"
+}
+
+multilib_src_install() {
+   LIBDIR="\$(PREFIX)/$(get_libdir)" SHLIBDIR="\$(DESTDIR)/$(get_libdir)" \
+   emake DESTDIR="${D}" install
+}



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

2017-08-07 Thread Jason Zaman
commit: 4eec2bc2d9fe221199b47ef30dbf69c68e24c71a
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:08:45 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eec2bc2

sys-libs/libselinux: update live ebuild

Package-Manager: Portage-2.3.6, Repoman-2.3.1

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

diff --git a/sys-libs/libselinux/libselinux-.ebuild 
b/sys-libs/libselinux/libselinux-.ebuild
index 19446c951bf..68e315c6cf6 100644
--- a/sys-libs/libselinux/libselinux-.ebuild
+++ b/sys-libs/libselinux/libselinux-.ebuild
@@ -10,7 +10,7 @@ inherit multilib python-r1 toolchain-funcs multilib-minimal
 
 MY_P="${P//_/-}"
 SEPOL_VER="${PV}"
-MY_RELEASEDATE="20170718"
+MY_RELEASEDATE="20170804"
 
 DESCRIPTION="SELinux userland library"
 HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;



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

2017-08-07 Thread Jason Zaman
commit: a602a061bdd079f00883b4ef7a9873f049184425
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:09:11 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a602a061

sys-apps/checkpolicy: update live ebuild

Package-Manager: Portage-2.3.6, Repoman-2.3.1

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

diff --git a/sys-apps/checkpolicy/checkpolicy-.ebuild 
b/sys-apps/checkpolicy/checkpolicy-.ebuild
index 7498b6b9e16..a354cf27e26 100644
--- a/sys-apps/checkpolicy/checkpolicy-.ebuild
+++ b/sys-apps/checkpolicy/checkpolicy-.ebuild
@@ -6,7 +6,7 @@ EAPI="6"
 inherit toolchain-funcs
 
 MY_P="${P//_/-}"
-MY_RELEASEDATE="20170718"
+MY_RELEASEDATE="20170804"
 
 SEPOL_VER="${PV}"
 SEMNG_VER="${PV}"



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

2017-08-07 Thread Jason Zaman
commit: 62784c0ecad573a382279177547780e8d7f7d670
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:09:52 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62784c0e

sys-apps/semodule-utils: update live ebuild

Package-Manager: Portage-2.3.6, Repoman-2.3.1

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

diff --git a/sys-apps/semodule-utils/semodule-utils-.ebuild 
b/sys-apps/semodule-utils/semodule-utils-.ebuild
index 7e76534ec49..67891e9cf81 100644
--- a/sys-apps/semodule-utils/semodule-utils-.ebuild
+++ b/sys-apps/semodule-utils/semodule-utils-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 inherit toolchain-funcs
 
-MY_RELEASEDATE="20170718"
+MY_RELEASEDATE="20170804"
 SEPOL_VER="${PV}"
 SELNX_VER="${PV}"
 



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

2017-08-07 Thread Jason Zaman
commit: 610dfee97e662740d3a1947427590ee7f797ce35
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:11:01 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=610dfee9

sys-libs/libselinux: bump to 2.7

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-libs/libselinux/Manifest  |   1 +
 sys-libs/libselinux/libselinux-2.7.ebuild | 151 ++
 2 files changed, 152 insertions(+)

diff --git a/sys-libs/libselinux/Manifest b/sys-libs/libselinux/Manifest
index b6fd8d5802d..b592376acf5 100644
--- a/sys-libs/libselinux/Manifest
+++ b/sys-libs/libselinux/Manifest
@@ -3,3 +3,4 @@ DIST libselinux-2.6.tar.gz 203119 SHA256 
4ea2dde50665c202253ba5caac7738370ea0337
 DIST libselinux-2.7-rc1.tar.gz 186897 SHA256 
213e1ca473855a61e8147e027b6ee5edf4162c9fbfc00749643f0ecc0a08371c SHA512 
fe7fe67f14e5483fbb237eeb33f6eca48f1d3f6a3ab7fa1cfa99e5143ce4d6a03c9033a03a82bb3954d07c4d1a2c211cf5dea80030c727f9adcb3cc6bd72e641
 WHIRLPOOL 
dfee20eaf3ea9e3cb7caa21ac10e710799ed324eee833650fc0bdf17c3fbcd3426bea7d915f6d6b79ca4440b99c57805a018bbd6a6103d97cb590f52d58f0e40
 DIST libselinux-2.7-rc4.tar.gz 186904 SHA256 
27c1780d6c623ab70ccf6923b8c8f386f8984ec99b7b4734f7b23d3d25809970 SHA512 
788beb44ca2d2b6d84b57193538ed6f9c25f536c129903d58a852a64fc2c46a4e4249c4acd6234a6242a6ac0ea828a553f42a0e80fd9405ff5225c8a722c395f
 WHIRLPOOL 
709ba4c3021d8b9e260ec8dbb0ff0ecd2a06a32cb44ce2c6fc486004e4c7f8cc28728150df40967472d00b97a26194dc36702dc990f5dd7055b2571714ccd37a
 DIST libselinux-2.7-rc5.tar.gz 186909 SHA256 
b002ec2fc5ab74041a5138ebc680e5bc2045c7a5089699f39c494ac1f0b482b2 SHA512 
01a600d03ff2a04f91efee8ab6ef9dccc3e39c64e2857be57b84ab0a38e01a55710d7c1b4e3d33b69f0ed0f04e1af14b9569d65ce419294d40177baff283a8b7
 WHIRLPOOL 
05fa39c10669eeaf7e91609ff77967c0b3187c27d9edeee0614110e9dbe54068df317df73ce421e9a0a5511705a374f02abcf8f5dc3f8006ef73d88cb597534a
+DIST libselinux-2.7.tar.gz 187574 SHA256 
d0fec0769b3ad60aa7baf9b9a4b7a056827769dc2dadda0dc0eb59b3d1c18c57 SHA512 
415d10306692d4323455b61fb61d7e56e53b9144276ff206d72760e1df9b04ab07c62a4d6f04bf4e5fa708f9f14b21a9801069b16ece0a0aade886950941ab8d
 WHIRLPOOL 
dd9175c91fa8f6f87add7b0ad1b90706b1fb203ade866b42d886faeb3710e1138fc08a2d7d371fbc8c9480148f8fdec6f0a6dd3f7142f194da580365cd527351

diff --git a/sys-libs/libselinux/libselinux-2.7.ebuild 
b/sys-libs/libselinux/libselinux-2.7.ebuild
new file mode 100644
index 000..68e315c6cf6
--- /dev/null
+++ b/sys-libs/libselinux/libselinux-2.7.ebuild
@@ -0,0 +1,151 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
+USE_RUBY="ruby21 ruby22 ruby23"
+
+# No, I am not calling ruby-ng
+inherit multilib python-r1 toolchain-funcs multilib-minimal
+
+MY_P="${P//_/-}"
+SEPOL_VER="${PV}"
+MY_RELEASEDATE="20170804"
+
+DESCRIPTION="SELinux userland library"
+HOMEPAGE="https://github.com/SELinuxProject/selinux/wiki;
+
+if [[ ${PV} ==  ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/SELinuxProject/selinux.git;
+   S="${WORKDIR}/${MY_P}/${PN}"
+else
+   
SRC_URI="https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/${MY_RELEASEDATE}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   S="${WORKDIR}/${MY_P}"
+fi
+
+LICENSE="public-domain"
+SLOT="0"
+IUSE="pcre2 python ruby static-libs ruby_targets_ruby21 ruby_targets_ruby22 
ruby_targets_ruby23"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND=">=sys-libs/libsepol-${SEPOL_VER}:=[${MULTILIB_USEDEP}]
+   !pcre2? ( >=dev-libs/libpcre-8.33-r1:=[static-libs?,${MULTILIB_USEDEP}] 
)
+   pcre2? ( dev-libs/libpcre2:=[static-libs?,${MULTILIB_USEDEP}] )
+   python? ( ${PYTHON_DEPS} )
+   ruby? (
+   ruby_targets_ruby21? ( dev-lang/ruby:2.1 )
+   ruby_targets_ruby22? ( dev-lang/ruby:2.2 )
+   ruby_targets_ruby23? ( dev-lang/ruby:2.3 )
+   )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   python? ( >=dev-lang/swig-2.0.9 )"
+
+src_prepare() {
+   eapply_user
+
+   multilib_copy_sources
+}
+
+multilib_src_compile() {
+   tc-export AR CC PKG_CONFIG RANLIB
+
+   emake \
+   LIBDIR="\$(PREFIX)/$(get_libdir)" \
+   SHLIBDIR="\$(DESTDIR)/$(get_libdir)" \
+   LDFLAGS="-fPIC ${LDFLAGS} -pthread" \
+   USE_PCRE2="$(usex pcre2 y n)" \
+   all
+
+   if multilib_is_native_abi && use python; then
+   building() {
+   emake \
+   LDFLAGS="-fPIC ${LDFLAGS} -lpthread" \
+   LIBDIR="\$(PREFIX)/$(get_libdir)" \
+   SHLIBDIR="\$(DESTDIR)/$(get_libdir)" \
+   USE_PCRE2="$(usex pcre2 y n)" \
+   

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

2017-08-07 Thread Jason Zaman
commit: 34eb162250cd56b319d921fb7b6ae087c375c248
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:09:40 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34eb1622

sys-apps/selinux-python: update live ebuild

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-apps/selinux-python/selinux-python-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/selinux-python/selinux-python-.ebuild 
b/sys-apps/selinux-python/selinux-python-.ebuild
index 2a48c1d284e..510a3b731c4 100644
--- a/sys-apps/selinux-python/selinux-python-.ebuild
+++ b/sys-apps/selinux-python/selinux-python-.ebuild
@@ -9,7 +9,7 @@ inherit python-r1 toolchain-funcs
 
 MY_P="${P//_/-}"
 
-MY_RELEASEDATE="20170718"
+MY_RELEASEDATE="20170804"
 SEPOL_VER="${PV}"
 SELNX_VER="${PV}"
 SEMNG_VER="${PV}"
@@ -36,7 +36,7 @@ SLOT="0"
 DEPEND=">=sys-libs/libselinux-${SELNX_VER}:=[python]
>=sys-libs/libsemanage-${SEMNG_VER}:=[python]
>=sys-libs/libsepol-${SEPOL_VER}:=
-   >=app-admin/setools-4.0
+   >=app-admin/setools-4.1.1[${PYTHON_USEDEP}]
dev-python/ipy[${PYTHON_USEDEP}]
!dev-python/sepolgen
${PYTHON_DEPS}"



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

2017-08-07 Thread Jason Zaman
commit: 9e5eab5067cd7027714513edca1f8ce8c6d2e7cb
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Aug  7 14:10:04 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Aug  7 16:46:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e5eab50

sys-apps/secilc: update live ebuild

Package-Manager: Portage-2.3.6, Repoman-2.3.1

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

diff --git a/sys-apps/secilc/secilc-.ebuild 
b/sys-apps/secilc/secilc-.ebuild
index 02442dff35f..7b5cd206329 100644
--- a/sys-apps/secilc/secilc-.ebuild
+++ b/sys-apps/secilc/secilc-.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 inherit toolchain-funcs
 
 MY_P="${P//_/-}"
-MY_RELEASEDATE="20170718"
+MY_RELEASEDATE="20170804"
 
 SEPOL_VER="${PV}"
 



  1   2   >