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

2016-03-21 Thread Patrick McLean
commit: 5926790bb828970a05117d964dd3e8dbce0ba1e5
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue Mar 22 06:50:45 2016 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Mar 22 06:50:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5926790b

sys-fs/ntfs3g: version bump to 2016.2.22

Package-Manager: portage-2.2.28

 sys-fs/ntfs3g/Manifest|  1 +
 sys-fs/ntfs3g/ntfs3g-2016.2.22.ebuild | 85 +++
 2 files changed, 86 insertions(+)

diff --git a/sys-fs/ntfs3g/Manifest b/sys-fs/ntfs3g/Manifest
index a0370ef..5511f00 100644
--- a/sys-fs/ntfs3g/Manifest
+++ b/sys-fs/ntfs3g/Manifest
@@ -1,2 +1,3 @@
 DIST ntfs-3g_ntfsprogs-2014.2.15.tgz 1143575 SHA256 
4c3099400cb14b231a3c9d718b3a8d152d38555059341ce5fc6d02292a4a5b56 SHA512 
7e4a5c9ac9d43dcf0d4b4085dea6703126fc4808cb9e1b7038884b20df2a8ab8f54c269d7204a279b62c5ba1127a966fd64226a8ed8f0c11667d9326c2f8fa7c
 WHIRLPOOL 
33931d50ba548cf309849b07e22068106b19caebe9f66f8a8d59e19c75fdbf282c9683656042452ba54ad160b3ebc7d098e90b7ad991316e3e5ff0c27f1c6e83
 DIST ntfs-3g_ntfsprogs-2015.3.14.tgz 1210069 SHA256 
97f996015d8316d4a272bd2629978e5e97072dd3cc148ce39802f8037c6538f2 SHA512 
9744dee814e89a97050bc8beb76f1a7d8a585e7d7740e8041e393c6912c93e49803f9b41af84e8315b3162e58b19ca8d155d435395cb07ecaa7de9caaf2af441
 WHIRLPOOL 
6963d56200c686b2717ae05afda85665a2746ce75d75bb486672055d7cfdebb8ac983f1b99b3ff65068be3a26493c16d3f7fe509602b966b3b1fa23d4d3c9472
+DIST ntfs-3g_ntfsprogs-2016.2.22.tgz 1264364 SHA256 
d7b72c05e4b3493e6095be789a760c9f5f2b141812d5b885f3190c98802f1ea0 SHA512 
dbd36fadd2881db1d17fdbf5d2b4e50bbe11dc9dd0ad4917e7f8bc4032c2287346143756ce8754df0d46ce9209f2c0c41b626cad929d76a9bc881712c7101c15
 WHIRLPOOL 
64630580b70e85f67b31ea7380ff3b6862be0c8cdf6c6af17e9a5eb2fe3f0d5efa7404ad726638ed958fb218631f7006eb492e713c7957d3ce60c6fbb1dd2bb9

diff --git a/sys-fs/ntfs3g/ntfs3g-2016.2.22.ebuild 
b/sys-fs/ntfs3g/ntfs3g-2016.2.22.ebuild
new file mode 100644
index 000..fbac7ac
--- /dev/null
+++ b/sys-fs/ntfs3g/ntfs3g-2016.2.22.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils linux-info udev toolchain-funcs libtool
+
+MY_PN=${PN/3g/-3g}
+MY_P=${MY_PN}_ntfsprogs-${PV}
+
+DESCRIPTION="Open source read-write NTFS driver that runs under FUSE"
+HOMEPAGE="http://www.tuxera.com/community/ntfs-3g-download/";
+SRC_URI="http://tuxera.com/opensource/${MY_P}.tgz";
+
+LICENSE="GPL-2"
+SLOT="0/86"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~arm-linux 
~x86-linux"
+IUSE="acl debug +external-fuse ntfsdecrypt +ntfsprogs static-libs suid xattr"
+
+RDEPEND="!=dev-libs/libgcrypt-1.2.2:0
+   >=net-libs/gnutls-1.4.4
+   )
+   external-fuse? ( >=sys-fs/fuse-2.8.0 )"
+DEPEND="${RDEPEND}
+   sys-apps/attr
+   virtual/pkgconfig"
+
+S="${WORKDIR}/${MY_P}"
+
+DOCS="AUTHORS ChangeLog CREDITS README"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2014.2.15-no-split-usr.patch
+)
+
+pkg_setup() {
+   if use external-fuse && use kernel_linux; then
+   if kernel_is lt 2 6 9; then
+   die "Your kernel is too old."
+   fi
+   CONFIG_CHECK="~FUSE_FS"
+   FUSE_FS_WARNING="You need to have FUSE module built to use 
ntfs-3g"
+   linux-info_pkg_setup
+   fi
+}
+
+src_prepare() {
+   epatch "${PATCHES[@]}"
+   # Note: patches apply to Makefile.in, so don't run autotools here.
+   elibtoolize
+}
+
+src_configure() {
+   tc-ld-disable-gold
+   econf \
+   --prefix="${EPREFIX}"/usr \
+   --exec-prefix="${EPREFIX}"/usr \
+   --docdir="${EPREFIX}"/usr/share/doc/${PF} \
+   --exec-prefix="${EPREFIX}"/usr \
+   $(use_enable debug) \
+   --enable-ldscript \
+   --disable-ldconfig \
+   $(use_enable acl posix-acls) \
+   $(use_enable xattr xattr-mappings) \
+   $(use_enable ntfsdecrypt crypto) \
+   $(use_enable ntfsprogs) \
+   $(use_enable ntfsprogs quarantined) \
+   --without-uuid \
+   --enable-extras \
+   $(use_enable static-libs static) \
+   --with-fuse=$(usex external-fuse external internal)
+}
+
+src_install() {
+   default
+
+   use suid && fperms u+s /usr/bin/${MY_PN}
+   udev_dorules "${FILESDIR}"/99-ntfs3g.rules
+   prune_libtool_files
+
+   dosym mount.ntfs-3g /usr/sbin/mount.ntfs #374197
+}



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

2016-03-21 Thread Hans de Graaff
commit: fb3bd59e5c6e9f5603c70cea2730506dfbb50c12
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Mar 22 06:18:41 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Mar 22 06:18:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb3bd59e

dev-ruby/slop: drop ruby19, add ruby23

Package-Manager: portage-2.2.26

 dev-ruby/slop/slop-3.6.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/slop/slop-3.6.0.ebuild b/dev-ruby/slop/slop-3.6.0.ebuild
index fa4ea51..97f6328 100644
--- a/dev-ruby/slop/slop-3.6.0.ebuild
+++ b/dev-ruby/slop/slop-3.6.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"



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

2016-03-21 Thread Hans de Graaff
commit: a6bc1cf26aae4da6e0aa92f575bc3e71ab68d604
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Mar 22 06:20:23 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Mar 22 06:20:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6bc1cf2

dev-ruby/slop: add 4.3.0

Package-Manager: portage-2.2.26

 dev-ruby/slop/Manifest  |  1 +
 dev-ruby/slop/slop-4.3.0.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-ruby/slop/Manifest b/dev-ruby/slop/Manifest
index e89af0b..508be7f 100644
--- a/dev-ruby/slop/Manifest
+++ b/dev-ruby/slop/Manifest
@@ -1,2 +1,3 @@
 DIST slop-3.6.0.tgz 19570 SHA256 
8fdb0e81e0636f7a266b5f12e1fa419c27bf1b529f0c48addaaa9b02bcccf1ca SHA512 
48bc2f56070a6f65b865b76dd5ba2e0e434c2ac5f9efef89301833746c0d01e5d9769ae02cdff8a4cfb0ed67d4306d921eafe086f49dafa0af8521d14bcee2a6
 WHIRLPOOL 
c33dfb201a24c07e3abc56fa5c0944caff55814ac42d462e607a63c7d60e7fb02ba80accd020f572331c0bd9abd823446538e81b8039fdf5bab6bfa26d24e5d4
 DIST slop-4.2.1.tgz 13788 SHA256 
a825f9a6e9a450e5d1968b52cb4c1b662d678a94063e0d5f3d6ae50a4f788b62 SHA512 
698c8dc10aa450486b43d2a2d2447616bc7dc42a6ea6b0b5db4aa0be651641d780f002161ab6fd6f6d1b4b6fb59ac38a8b56a4b27daa80680c5f2a94e13fbb11
 WHIRLPOOL 
8539c9308edb0744fd74170c945bcf44564daaebcfdb7347769932747e7167ac4edddc365eb4e058b26a08850809cbaa91d2e645c6f027e5145123baff09a6d0
+DIST slop-4.3.0.tgz 14050 SHA256 
9d63c2d3d7f45772ebea05e72534d05e33c0669219f066cbfa9fa65b9bd38e5c SHA512 
16bedf3251ef0e6a55943e6f0246d7ab42d7ace62af83b3e8cce0c0b59cef521d8386f2932813c09e54a4818e672d3d596baee2a67176962dc2caa7471d52725
 WHIRLPOOL 
2af7ce6fdf48faab405021c141de02107f6039c67ed95bf891c289f005ba63bda001bf5873a70c8f2bd554a14250c782238fd9bc97c839f9287a1bc2118a4eab

diff --git a/dev-ruby/slop/slop-4.3.0.ebuild b/dev-ruby/slop/slop-4.3.0.ebuild
new file mode 100644
index 000..5a8f803
--- /dev/null
+++ b/dev-ruby/slop/slop-4.3.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A simple option parser with an easy to remember syntax and 
friendly API"
+HOMEPAGE="https://github.com/injekt/slop";
+SRC_URI="https://github.com/injekt/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
+
+LICENSE="MIT"
+SLOT="4"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/minitest )"
+
+all_ruby_prepare() {
+   sed -i -e '/git ls-files/d' slop.gemspec || die
+}



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

2016-03-21 Thread Hans de Graaff
commit: fbfdea40f110a20d29ebb9ed7c8b98d2e22812c6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Mar 22 06:16:55 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Mar 22 06:16:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbfdea40

dev-ruby/slop: cleanup

Package-Manager: portage-2.2.26

 dev-ruby/slop/Manifest  |  2 --
 dev-ruby/slop/slop-4.1.0.ebuild | 27 ---
 dev-ruby/slop/slop-4.2.0.ebuild | 27 ---
 3 files changed, 56 deletions(-)

diff --git a/dev-ruby/slop/Manifest b/dev-ruby/slop/Manifest
index 762ef02..e89af0b 100644
--- a/dev-ruby/slop/Manifest
+++ b/dev-ruby/slop/Manifest
@@ -1,4 +1,2 @@
 DIST slop-3.6.0.tgz 19570 SHA256 
8fdb0e81e0636f7a266b5f12e1fa419c27bf1b529f0c48addaaa9b02bcccf1ca SHA512 
48bc2f56070a6f65b865b76dd5ba2e0e434c2ac5f9efef89301833746c0d01e5d9769ae02cdff8a4cfb0ed67d4306d921eafe086f49dafa0af8521d14bcee2a6
 WHIRLPOOL 
c33dfb201a24c07e3abc56fa5c0944caff55814ac42d462e607a63c7d60e7fb02ba80accd020f572331c0bd9abd823446538e81b8039fdf5bab6bfa26d24e5d4
-DIST slop-4.1.0.tgz 12644 SHA256 
d07e6bb256cc1392ddeafcd071bd6407c469af4496de9e429333a50514281a33 SHA512 
b1dfa808821b210681917e2cec6878482287e3be0e8ea1a1b3b311bf94e53a109e9b77524bca0030600904545c3e7a5b2ad3850210e53c7ee5bbff1efd8adef2
 WHIRLPOOL 
ebdca4c84c7dc9997be8a1a492389c43b907a4d8c1f7bbad74ebff9335459d83f989b6e1a3e04ca76926c08737f1244abdd461ae8fc72d87532bf9003af30427
-DIST slop-4.2.0.tgz 13291 SHA256 
72fb5cc0d3847d44b3e4a6eba6ce7c0042819db3b952fc91ce662146b7797f49 SHA512 
5857b749cee508a5ac94b1c247b23cb9b0dd23bb51ade3909472f597ee1c4a73571afb499731a7b55e65125cee83d9ce582b87a10f68086debc30e70f044
 WHIRLPOOL 
5a881a86ba79925174d0f88933302fcabe79889f1570b6bc14ee3c20d9b1cadae761641d499de86c5cb82cc0a2dd71a5f87082026758d474001db5f0e0804887
 DIST slop-4.2.1.tgz 13788 SHA256 
a825f9a6e9a450e5d1968b52cb4c1b662d678a94063e0d5f3d6ae50a4f788b62 SHA512 
698c8dc10aa450486b43d2a2d2447616bc7dc42a6ea6b0b5db4aa0be651641d780f002161ab6fd6f6d1b4b6fb59ac38a8b56a4b27daa80680c5f2a94e13fbb11
 WHIRLPOOL 
8539c9308edb0744fd74170c945bcf44564daaebcfdb7347769932747e7167ac4edddc365eb4e058b26a08850809cbaa91d2e645c6f027e5145123baff09a6d0

diff --git a/dev-ruby/slop/slop-4.1.0.ebuild b/dev-ruby/slop/slop-4.1.0.ebuild
deleted file mode 100644
index f75b19d..000
--- a/dev-ruby/slop/slop-4.1.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A simple option parser with an easy to remember syntax and 
friendly API"
-HOMEPAGE="https://github.com/injekt/slop";
-SRC_URI="https://github.com/injekt/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
-
-LICENSE="MIT"
-SLOT="4"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/minitest )"
-
-all_ruby_prepare() {
-   sed -i -e '/git ls-files/d' slop.gemspec || die
-}

diff --git a/dev-ruby/slop/slop-4.2.0.ebuild b/dev-ruby/slop/slop-4.2.0.ebuild
deleted file mode 100644
index f75b19d..000
--- a/dev-ruby/slop/slop-4.2.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A simple option parser with an easy to remember syntax and 
friendly API"
-HOMEPAGE="https://github.com/injekt/slop";
-SRC_URI="https://github.com/injekt/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
-
-LICENSE="MIT"
-SLOT="4"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/minitest )"
-
-all_ruby_prepare() {
-   sed -i -e '/git ls-files/d' slop.gemspec || die
-}



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

2016-03-21 Thread Patrick Lauer
commit: 2604450aafa12df3500690a94d437d6cd27879e9
Author: Patrick Lauer  gentoo  org>
AuthorDate: Tue Mar 22 05:18:22 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Tue Mar 22 05:18:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2604450a

dev-libs/ocl-icd: Whitespace

Package-Manager: portage-2.2.28

 dev-libs/ocl-icd/ocl-icd-2.2.3.ebuild | 2 +-
 dev-libs/ocl-icd/ocl-icd-2.2.8.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/ocl-icd/ocl-icd-2.2.3.ebuild 
b/dev-libs/ocl-icd/ocl-icd-2.2.3.ebuild
index e8b5685..a786a5c 100644
--- a/dev-libs/ocl-icd/ocl-icd-2.2.3.ebuild
+++ b/dev-libs/ocl-icd/ocl-icd-2.2.3.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="dev-lang/ruby
-dev-ruby/rubygems"
+   dev-ruby/rubygems"
 RDEPEND="app-eselect/eselect-opencl"
 
 src_prepare() {

diff --git a/dev-libs/ocl-icd/ocl-icd-2.2.8.ebuild 
b/dev-libs/ocl-icd/ocl-icd-2.2.8.ebuild
index d8daeee..3cdac79 100644
--- a/dev-libs/ocl-icd/ocl-icd-2.2.8.ebuild
+++ b/dev-libs/ocl-icd/ocl-icd-2.2.8.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="dev-lang/ruby
-dev-ruby/rubygems"
+   dev-ruby/rubygems"
 RDEPEND="app-eselect/eselect-opencl"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2016-03-21 Thread Jeroen Roovers
commit: 40d70bd2641e07f1a4009ea15b20b8b6bbfcc3b9
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Mar 22 04:06:41 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Mar 22 04:10:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40d70bd2

x11-drivers/nvidia-drivers: Stable for AMD64 x86 too.

Package-Manager: portage-2.2.28
RepoMan-Options: --ignore-arches

 x11-drivers/nvidia-drivers/nvidia-drivers-352.79.ebuild | 2 +-
 x11-drivers/nvidia-drivers/nvidia-drivers-361.28.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-352.79.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-352.79.ebuild
index 1e13b1c..53a664d 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-352.79.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-352.79.ebuild
@@ -24,7 +24,7 @@ SRC_URI="
 
 LICENSE="GPL-2 NVIDIA-r2"
 SLOT="0/${PV%.*}"
-KEYWORDS="-* ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="-* amd64 x86 ~amd64-fbsd ~x86-fbsd"
 RESTRICT="bindist mirror strip"
 EMULTILIB_PKG="true"
 

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-361.28.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-361.28.ebuild
index 72187e3..9c6bd52 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-361.28.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-361.28.ebuild
@@ -25,7 +25,7 @@ SRC_URI="
 
 LICENSE="GPL-2 NVIDIA-r2"
 SLOT="0/${PV%.*}"
-KEYWORDS="-* ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="-* amd64 x86 ~amd64-fbsd ~x86-fbsd"
 RESTRICT="bindist mirror strip"
 EMULTILIB_PKG="true"
 



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2016-03-21 Thread Jeroen Roovers
commit: aed36f9fd27cb4332d740f123543734c45d7516a
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Mar 22 04:10:02 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Mar 22 04:10:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aed36f9f

x11-drivers/nvidia-drivers: Add USE=wayland.

Package-Manager: portage-2.2.28

 x11-drivers/nvidia-drivers/nvidia-drivers-364.12.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-364.12.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-364.12.ebuild
index d0b9817..d1dbf5f 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-364.12.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-364.12.ebuild
@@ -29,7 +29,7 @@ KEYWORDS="-* ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd"
 RESTRICT="bindist mirror"
 EMULTILIB_PKG="true"
 
-IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms multilib 
pax_kernel static-libs +tools uvm +X"
+IUSE="acpi compat +driver gtk3 kernel_FreeBSD kernel_linux +kms multilib 
pax_kernel static-libs +tools uvm wayland +X"
 REQUIRED_USE="
tools? ( X )
static-libs? ( tools )
@@ -66,6 +66,7 @@ RDEPEND="
${COMMON}
acpi? ( sys-power/acpid )
tools? ( !media-video/nvidia-settings )
+   wayland? ( dev-libs/wayland )
X? (
=x11-libs/libvdpau-0.3-r1
@@ -443,7 +444,7 @@ src_install-libs() {
"libvdpau_nvidia.so.${NV_SOVER}"
)
 
-   if use X && has_multilib_profile && [[ ${ABI} == "amd64" ]];
+   if use wayland && has_multilib_profile && [[ ${ABI} == "amd64" 
]];
then
NV_GLX_LIBRARIES+=(
"libnvidia-egl-wayland.so.${NV_SOVER}"



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2016-03-21 Thread Jeroen Roovers
commit: 47a6115aa35821fddb4c76a0d2879483e7c4315e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Mar 22 04:05:00 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Mar 22 04:10:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47a6115a

x11-drivers/nvidia-drivers: Version bump.

Package-Manager: portage-2.2.28

 x11-drivers/nvidia-drivers/Manifest|   5 +
 .../nvidia-drivers/nvidia-drivers-364.12.ebuild| 540 +
 2 files changed, 545 insertions(+)

diff --git a/x11-drivers/nvidia-drivers/Manifest 
b/x11-drivers/nvidia-drivers/Manifest
index dc9cd79..cdd566d 100644
--- a/x11-drivers/nvidia-drivers/Manifest
+++ b/x11-drivers/nvidia-drivers/Manifest
@@ -8,6 +8,7 @@ DIST NVIDIA-FreeBSD-x86-352.79.tar.gz 55381403 SHA256 
baf99225383aa1b114c14504d0
 DIST NVIDIA-FreeBSD-x86-355.11.tar.gz 56832647 SHA256 
3d4d5d8fcf558a8f5f1a88846161b1a89bd7fc66c0268b40613c7e3457f5ce7b SHA512 
744d9b8c48b82bac0bfeea5e8b2b2bbaa0e6a183cbd1f5d4f782fa7b21a6f6c5b252e556a8b2161c3b5d43938ef8fabf6cb36f995ee823fbf792f3c9a92b87e1
 WHIRLPOOL 
43bceb8e8d3b00789cf2c8163a055b1d2405ef93e471fda4c4e2146093289891557f4ec8debfe6bca89ad6ed6dc2e389f1d3060759a71e8949df343bc31b85b9
 DIST NVIDIA-FreeBSD-x86-358.16.tar.gz 58548165 SHA256 
2257d9a2b3661d024be0864e2fe192de34fdf8e206073930541e0fa6f232016e SHA512 
e1d84c2cc3473253b31aa3df8e2ad7418da5789e31d6f71f07e6bf5e712ffcb6417cf8931c16e5e5a19d0f4cdaebf229e4edbee53d5613bea1ff6b4e4c6657cc
 WHIRLPOOL 
15b760556d978c9e82b063c1135089e1b1222460285ab2c40d450cf26820e701ff5d7ebdd04815f80a68a07eea0e622fa621b8369883f4168af5b45d4edde62d
 DIST NVIDIA-FreeBSD-x86-361.28.tar.gz 64858208 SHA256 
985290fb9b0f183decffc98d2fcf58a713f2d96c0fc7dca6e9122cbdfdcab40f SHA512 
135b6a06ea1cc378e2a9b1b4878a7fad2dc01eed9dd8f810906d32e955be99b3ecb6e80d8a63c319a86b64617df3892e41c7768794f918c610815b5c03d1a173
 WHIRLPOOL 
d119dbdbcc5f842199058cdfcb3b6084096b9fb8e821cdbbde184a26c56f270811769eb163fdf8b4a8c78009caac768f48fbc91b8a8973004de52d0d037d0feb
+DIST NVIDIA-FreeBSD-x86-364.12.tar.gz 65662933 SHA256 
bc9e60b20c878f70cc1ea3372cb61192fc02251e95be3ca6a99085ba240c31f9 SHA512 
d09599821dc2d9300bc8a110e2a96019705aff854a38c0b71872c1ae16725d38a7d2eaaeaaa53fdf604cfe97de96a0d5eb117c9142afacf7a63ad83fc575b4c2
 WHIRLPOOL 
3a00e131729450dbfe0b46dda95d886e017233e6aa15ce6d23a147ceb6a1da8fab1fa2164eab35b371924fcc206bc2d56cd7e0e983c574cefcd122434ff45807
 DIST NVIDIA-FreeBSD-x86-96.43.23.tar.gz 15463464 SHA256 
18d855db8381eda1a6cf548c9e5095fc5bb8694bf1d6e24fc1072fba4e54cd78 SHA512 
42d7b1b76cdb3b23680363e565614a22112162a5dd3639cb804fe670c0c3f3f23595bbefa3f78afdc6a8ca848446dee853c7a355f2c96a0d01b354753ba2785c
 WHIRLPOOL 
f8e59ce521990cd9edee441e73f973f074db492952807a0931e362102874cddbb47604ff5c5eb20a0cbde27f9b6d4e440dd12cc2e5a20c9cb65bf3c0b3e62511
 DIST NVIDIA-FreeBSD-x86_64-304.131.tar.gz 35812363 SHA256 
e10aa34f4aeb6981c0bc6762f37e6ad57de52b45c7322d0caef9781c1a43858a SHA512 
0df69d11c79cfd66f40f5adf091f9c3ad494b89fbe9200a1a01fef8cb2d2591ffdeb703d82a263e050384d39ef81af3a717ac24716f96b1fd8386d1758bcf45b
 WHIRLPOOL 
a7e01ac4646d52229efb1d22df9b4db98bfd6bc30c79fc4c65273001b1cd09c4db823a0141a060f8c53926ae23a33fe66e27aec805879228d64bf3f45aa66bcd
 DIST NVIDIA-FreeBSD-x86_64-340.93.tar.gz 60215584 SHA256 
07208f6a832c2da8748b1c4f8b5ce42a7b617f2ee1ac59155fecaff952c30988 SHA512 
c480df2f36c3d6eba53af9c3070e1561ae7c56cd5d31fb531dcb6897ca02d0d205c0ce99597304ea36b7b75b173e31a9a4c07ddd143ad13884aff0a7c3479bce
 WHIRLPOOL 
c1b28898ffe733961bdb622e8b430715c74871cfaab0348a9e5990df5a92676e8fb8c199ea1f1a06fa6c6ded65877b987b802a7a9ea0b7023cbaa62fb52eda01
@@ -18,6 +19,7 @@ DIST NVIDIA-FreeBSD-x86_64-352.79.tar.gz 57044396 SHA256 
d2a406c4a7502096964b6fd
 DIST NVIDIA-FreeBSD-x86_64-355.11.tar.gz 54031364 SHA256 
3637a879905bb541bf02f9bcdfe37c242a52ec6071671a0ba33581efdce1504e SHA512 
84add7d90c7f45d19d736ee70c1c4a6434be1c512bafa29cbbf9221e99a31fc383971696dce99da5a77a171eb3537c98cfec7005ff061411ac9c310fa219c906
 WHIRLPOOL 
d8ade5d63c3ef78fa92f9dc07934eed8fdd4ead1e40f1820ad95feb166264a95a800879e1fc6374bf2deef419b0838b4864796d9f81a81110d06ccd9b65c459d
 DIST NVIDIA-FreeBSD-x86_64-358.16.tar.gz 55338634 SHA256 
29b62c266bb96604e82c5a514aebea86b65057fa59ba37f91bd01cd870a0725c SHA512 
2e5aef35d5c4aa605ebe18a23ab132fe373c9b87a915ada005ecd28d75a476d6ac9d978394f8c63123f98a408dcc97d624b5deda5f242faea7304fc8ddf76d0d
 WHIRLPOOL 
bc8ee78214209fdeb0c6fc196cbc3acc244c777df8a83b5a5489959a73b744ecc125d7a9be6ca2f08d43b6a080898b1090eca45e627c96210dcfeb6207512c8e
 DIST NVIDIA-FreeBSD-x86_64-361.28.tar.gz 61654538 SHA256 
eacf04491d1e7e3b78a8765672e5e64ad36431f8f02983672c56fa6a8231f528 SHA512 
774d669294d251ee836cb73c6ee510c07ad0cddc3df5804fe4f9fc3279dfa32c663ca6a92746eec2f34d596bb5da90c41db8c6b6980b2ae63d94afaa8fa3faad
 WHIRLPOOL 
e3c384deed08788d933a4c2f47a318c19cf2ac4606c9a376975fabe9e023b1c0f33a898bb84066caba4cad5978184c614737bc41ea505db2ca461616df172638
+DIST NVIDIA-FreeBSD-x86_64-364.12.tar.gz 

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

2016-03-21 Thread Mike Frysinger
commit: 53141daab06a0906fc9f4437940d65bf08d82c33
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Mar 22 02:25:37 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Mar 22 02:25:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53141daa

dev-vcs/git: mark 2.7.3-r1 arm64/s390/sh stable

 dev-vcs/git/git-2.7.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.7.3-r1.ebuild b/dev-vcs/git/git-2.7.3-r1.ebuild
index d2a90ea..7fd6f04 100644
--- a/dev-vcs/git/git-2.7.3-r1.ebuild
+++ b/dev-vcs/git/git-2.7.3-r1.ebuild
@@ -34,7 +34,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}

${SRC_URI_GOOG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] proj/releng:master commit in: tools/

2016-03-21 Thread Mike Frysinger
commit: a85f4327c67f66501a4332d1a1a1617f3a26ec3b
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Mar 21 05:21:05 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Mar 21 05:21:05 2016 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=a85f4327

catalyst-auto: unify catalyst.conf parsing

 tools/catalyst-auto| 9 +
 tools/catalyst-auto-alpha.conf | 4 
 tools/catalyst-auto-armv4tl.conf   | 4 
 tools/catalyst-auto-armv5tel.conf  | 4 
 tools/catalyst-auto-armv6j.conf| 4 
 tools/catalyst-auto-armv6j_hardfp.conf | 4 
 tools/catalyst-auto-armv7a.conf| 4 
 tools/catalyst-auto-armv7a_hardfp.conf | 4 
 tools/catalyst-auto-hppa.conf  | 4 
 tools/catalyst-auto-ia64.conf  | 4 
 tools/catalyst-auto-ppc.conf   | 4 
 tools/catalyst-auto-ppc64.conf | 4 
 tools/catalyst-auto-s390.conf  | 4 
 tools/catalyst-auto-s390x.conf | 4 
 tools/catalyst-auto-sparc64.conf   | 4 
 15 files changed, 9 insertions(+), 56 deletions(-)

diff --git a/tools/catalyst-auto b/tools/catalyst-auto
index 3d0b419..70755d5 100755
--- a/tools/catalyst-auto
+++ b/tools/catalyst-auto
@@ -17,6 +17,8 @@ if [[ -z ${UNSHARE} ]] ; then
 fi
 unset UNSHARE
 
+CATALYST_CONFIG=/etc/catalyst/catalyst.conf
+
 declare -a config_files
 config_files=()
 verbose=0
@@ -87,6 +89,12 @@ post_build() {
   local foo=bar
 }
 
+catalyst_var() {
+  # Extract a setting from the catalyst.conf.
+  local var=$1
+  (. "${CATALYST_CONFIG}"; echo "${!var}")
+}
+
 # Parse args
 params=${#}
 while [ ${#} -gt 0 ]
@@ -136,6 +144,7 @@ if [[ $doneconfig -eq 0 ]]; then
   exit 1
 fi
 
+BUILD_SRCDIR_BASE=$(catalyst_var storedir)
 
 TMPDIR=$(mktemp -d --tmpdir="${TMP_PATH:-/tmp}" catalyst-auto.XX)
 DATESTAMP=$(date +%Y%m%d)

diff --git a/tools/catalyst-auto-alpha.conf b/tools/catalyst-auto-alpha.conf
index 5a698cf..5035345 100644
--- a/tools/catalyst-auto-alpha.conf
+++ b/tools/catalyst-auto-alpha.conf
@@ -19,10 +19,6 @@ 
EMAIL_TO=rel...@gentoo.org,gentoo-releng-autobui...@lists.gentoo.org
 EMAIL_FROM=armi...@gentoo.org
 EMAIL_SUBJECT_PREPEND="[alpha-auto]"
  
-CATALYST_CONFIG=/etc/catalyst/catalyst.conf
- 
-BUILD_SRCDIR_BASE=`grep storedir= $CATALYST_CONFIG | cut -d '=' -f2 | sed -e 
's/"//g'`
-
 give_latest_from_dates() {
   sed 's,-20,~20,g' | \
   sort -k +1 -n -t '~' |\

diff --git a/tools/catalyst-auto-armv4tl.conf b/tools/catalyst-auto-armv4tl.conf
index e5328d2..410b61d 100644
--- a/tools/catalyst-auto-armv4tl.conf
+++ b/tools/catalyst-auto-armv4tl.conf
@@ -18,10 +18,6 @@ EMAIL_FROM=catalyst@replaceme.local
 EMAIL_SUBJECT_PREPEND="[${SUBARCH}-auto]"
 
 
-CATALYST_CONFIG=/etc/catalyst/catalyst.conf
-
-BUILD_SRCDIR_BASE=`grep storedir= $CATALYST_CONFIG | cut -d '=' -f2 | sed -e 
's/"//g'`
-
 give_latest_from_dates() {
   sed 's,-20,~20,g' | \
   sort -k +1 -n -t '~' |\

diff --git a/tools/catalyst-auto-armv5tel.conf 
b/tools/catalyst-auto-armv5tel.conf
index ebcf494..0acc94f 100644
--- a/tools/catalyst-auto-armv5tel.conf
+++ b/tools/catalyst-auto-armv5tel.conf
@@ -18,10 +18,6 @@ EMAIL_FROM=catalyst@replaceme.local
 EMAIL_SUBJECT_PREPEND="[${SUBARCH}-auto]"
 
 
-CATALYST_CONFIG=/etc/catalyst/catalyst.conf
-
-BUILD_SRCDIR_BASE=`grep storedir= $CATALYST_CONFIG | cut -d '=' -f2 | sed -e 
's/"//g'`
-
 give_latest_from_dates() {
   sed 's,-20,~20,g' | \
   sort -k +1 -n -t '~' |\

diff --git a/tools/catalyst-auto-armv6j.conf b/tools/catalyst-auto-armv6j.conf
index 0dc8ffa..019dab1 100644
--- a/tools/catalyst-auto-armv6j.conf
+++ b/tools/catalyst-auto-armv6j.conf
@@ -18,10 +18,6 @@ EMAIL_FROM=catalyst@replaceme.local
 EMAIL_SUBJECT_PREPEND="[${SUBARCH}-auto]"
 
 
-CATALYST_CONFIG=/etc/catalyst/catalyst.conf
-
-BUILD_SRCDIR_BASE=`grep storedir= $CATALYST_CONFIG | cut -d '=' -f2 | sed -e 
's/"//g'`
-
 give_latest_from_dates() {
   sed 's,-20,~20,g' | \
   sort -k +1 -n -t '~' |\

diff --git a/tools/catalyst-auto-armv6j_hardfp.conf 
b/tools/catalyst-auto-armv6j_hardfp.conf
index cfb669f..1ab7569 100644
--- a/tools/catalyst-auto-armv6j_hardfp.conf
+++ b/tools/catalyst-auto-armv6j_hardfp.conf
@@ -18,10 +18,6 @@ EMAIL_FROM=catalyst@replaceme.local
 EMAIL_SUBJECT_PREPEND="[${SUBARCH}-auto]"
 
 
-CATALYST_CONFIG=/etc/catalyst/catalyst.conf
-
-BUILD_SRCDIR_BASE=`grep storedir= $CATALYST_CONFIG | cut -d '=' -f2 | sed -e 
's/"//g'`
-
 give_latest_from_dates() {
   sed 's,-20,~20,g' | \
   sort -k +1 -n -t '~' |\

diff --git a/tools/catalyst-auto-armv7a.conf b/tools/catalyst-auto-armv7a.conf
index a1e6689..462ae68 100644
--- a/tools/catalyst-auto-armv7a.conf
+++ b/tools/catalyst-auto-armv7a.conf
@@ -18,10 +18,6 @@ EMAIL_FROM=catalyst@replaceme.local
 EMAIL_SUBJECT_PREPEND="[${SUBARCH}-auto]"
 
 
-CATALYST_CONFIG=/etc/catalyst/catalyst.conf
-
-BUILD_SRCDIR_BASE=`grep storedir= $CATALYST_CONFIG | cut -d '=' -f2 | sed -e 
's/"//g'`
-
 give_latest_from_dates() {
   sed 's,-20,~20,g' | \
 

[gentoo-commits] proj/releng:master commit in: tools/

2016-03-21 Thread Mike Frysinger
commit: f34a62d0ab062674ba70d60611c35e88dc60c112
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Mar 21 05:34:12 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Mar 21 05:34:12 2016 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=f34a62d0

catalyst-auto: add a time delay option

We usually run catalyst on systems via cronjob, and do so at weekly
(or so) intervals.  But if a failure hits a run, it will be a while
before we know if changes fixed the situation.  Instead, let's push
the delay logic into the script itself so we can run this tool once
a day.  When it passes, it will take care of quitting early.  When
it fails, it will retry once a day until it passes.

 tools/catalyst-auto | 21 +
 1 file changed, 21 insertions(+)

diff --git a/tools/catalyst-auto b/tools/catalyst-auto
index a018dc9..f20aa1d 100755
--- a/tools/catalyst-auto
+++ b/tools/catalyst-auto
@@ -25,6 +25,7 @@ verbose=0
 keep_tmpdir=0
 testing=0
 preclean=0
+lastrun=0
 
 # Set pipefail so that run_cmd returns the right value in $?
 set -o pipefail
@@ -46,6 +47,7 @@ Options:
   -v|--verboseSend output of commands to console as well as log
   -k|--keep-tmpdirDon't remove temp dir when build finishes
   -t|--test   Stop after mangling specs and copying files
+  --intervalExit if last successful run was less than  ago
   -h|--help   Show this message and quit
 
 EOH
@@ -124,6 +126,10 @@ do
 -C|--preclean)
   preclean=1
   ;;
+--interval)
+  lastrun=$1
+  shift
+  ;;
 -*)
   usage "ERROR: You have specified an invalid option: ${a}"
   exit 1
@@ -151,6 +157,16 @@ fi
 
 BUILD_SRCDIR_BASE=$(catalyst_var storedir)
 
+# See if we had a recent success.
+if [[ ${lastrun} -ne 0 ]]; then
+  last_success_file="${BUILD_SRCDIR_BASE}/.last_success"
+  delay=$(( lastrun * 24 * 60 * 60 ))
+  last_success=$(head -1 "${last_success_file}" 2>/dev/null || echo 0)
+  if [[ $(date +%s) -lt $(( last_success + delay )) ]]; then
+exit 0
+  fi
+fi
+
 TMPDIR=$(mktemp -d --tmpdir="${TMP_PATH:-/tmp}" catalyst-auto.XX)
 DATESTAMP=$(date +%Y%m%d)
 
@@ -298,6 +314,11 @@ if ! run_cmd "post_build" "${TMPDIR}/log/post_build.log"; 
then
 fi
 
 if [ ${build_failure} = 0 ]; then
+  if [[ ${lastrun} -ne 0 ]]; then
+stamp=$(date)
+(date -d"${stamp}" +%s; echo "${stamp}") >"${last_success_file}"
+  fi
+
   send_email "Catalyst build success" "Build process complete."
 
   if [ "${keep_tmpdir}" = 0 ]; then



[gentoo-commits] proj/releng:master commit in: tools/

2016-03-21 Thread Mike Frysinger
commit: 880a1aa775fd7cc6890074b1baab43ef4b29c31c
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Mar 21 05:27:34 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Mar 21 05:27:34 2016 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=880a1aa7

catalyst-auto: add a preclean option to trim temp files

This makes it easier to cronjob things w/out needing manual cleanup
from time to time by people.

 tools/catalyst-auto | 23 +++
 1 file changed, 23 insertions(+)

diff --git a/tools/catalyst-auto b/tools/catalyst-auto
index 70755d5..a018dc9 100755
--- a/tools/catalyst-auto
+++ b/tools/catalyst-auto
@@ -24,6 +24,7 @@ config_files=()
 verbose=0
 keep_tmpdir=0
 testing=0
+preclean=0
 
 # Set pipefail so that run_cmd returns the right value in $?
 set -o pipefail
@@ -41,6 +42,7 @@ Usage:
 
 Options:
   -c|--config Specifies the config file to use (required)
+  -C|--preclean   Clean up loose artifacts from previous runs
   -v|--verboseSend output of commands to console as well as log
   -k|--keep-tmpdirDon't remove temp dir when build finishes
   -t|--test   Stop after mangling specs and copying files
@@ -119,6 +121,9 @@ do
 -t|--test)
   testing=1
   ;;
+-C|--preclean)
+  preclean=1
+  ;;
 -*)
   usage "ERROR: You have specified an invalid option: ${a}"
   exit 1
@@ -149,6 +154,12 @@ BUILD_SRCDIR_BASE=$(catalyst_var storedir)
 TMPDIR=$(mktemp -d --tmpdir="${TMP_PATH:-/tmp}" catalyst-auto.XX)
 DATESTAMP=$(date +%Y%m%d)
 
+# Nuke any previous tmpdirs to keep them from accumulating.
+if [[ ${preclean} -eq 1 ]]; then
+  rm -rf "${TMPDIR%.??}".*
+  mkdir "${TMPDIR}"
+fi
+
 if [ ${verbose} = 1 ]; then
   echo "TMPDIR = ${TMPDIR}"
   echo "DATESTAMP = ${DATESTAMP}"
@@ -225,6 +236,18 @@ if [ "${testing}" -eq 1 ]; then
   exit
 fi
 
+if [[ ${preclean} -eq 1 ]]; then
+  snapshot_cache=$(catalyst_var snapshot_cache)
+  if [[ -z ${snapshot_cache} ]]; then
+echo "error: snapshot_cache not set in config file"
+exit 1
+  fi
+  pushd "${BUILD_SRCDIR_BASE}" >/dev/null || exit 1
+  rm -rf --one-file-system \
+kerncache packages snapshots tmp "${snapshot_cache}"/*
+  popd >/dev/null
+fi
+
 # Create snapshot
 if ! run_cmd "catalyst -c ${CATALYST_CONFIG} -s ${DATESTAMP}" 
"${TMPDIR}/log/snapshot.log"; then
   send_email "Catalyst build error - snapshot" "" "${TMPDIR}/log/snapshot.log"



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

2016-03-21 Thread Anthony G. Basile
commit: 3d618a1757c7264483103008a4e026bc1b314ba6
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Mar 22 00:53:00 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Mar 22 00:53:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d618a17

app-backup/bacula: add libressl support

Package-Manager: portage-2.2.26

 app-backup/bacula/bacula-5.2.13-r3.ebuild | 14 ++
 app-backup/bacula/bacula-7.2.0.ebuild | 12 +---
 app-backup/bacula/bacula-7.4.0.ebuild | 12 +---
 3 files changed, 28 insertions(+), 10 deletions(-)

diff --git a/app-backup/bacula/bacula-5.2.13-r3.ebuild 
b/app-backup/bacula/bacula-5.2.13-r3.ebuild
index 724f29b..76d1241 100644
--- a/app-backup/bacula/bacula-5.2.13-r3.ebuild
+++ b/app-backup/bacula/bacula-5.2.13-r3.ebuild
@@ -18,8 +18,8 @@ SRC_URI="mirror://sourceforge/bacula/${MY_P}.tar.gz"
 
 LICENSE="AGPL-3"
 SLOT="0"
-KEYWORDS=" ~amd64 ~ppc ~sparc ~x86"
-IUSE="acl bacula-clientonly bacula-nodir bacula-nosd examples ipv6 logwatch 
mysql postgres python qt4 readline +sqlite ssl static tcpd vim-syntax X"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="acl bacula-clientonly bacula-nodir bacula-nosd examples ipv6 libressl 
logwatch mysql postgres python qt4 readline +sqlite ssl static tcpd vim-syntax 
X"
 
 DEPEND="
dev-libs/gmp:0
@@ -41,14 +41,20 @@ DEPEND="
sys-libs/zlib[static-libs]
dev-libs/lzo[static-libs]
sys-libs/ncurses:=[static-libs]
-   ssl? ( dev-libs/openssl:0[static-libs] )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[static-libs] )
+   libressl? ( dev-libs/libressl:0=[static-libs] )
+   )
)
!static? (
acl? ( virtual/acl )
sys-libs/zlib
dev-libs/lzo
sys-libs/ncurses:=
-   ssl? ( dev-libs/openssl:0 )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
)
python? ( ${PYTHON_DEPS} )
"

diff --git a/app-backup/bacula/bacula-7.2.0.ebuild 
b/app-backup/bacula/bacula-7.2.0.ebuild
index df443eb..a757466 100644
--- a/app-backup/bacula/bacula-7.2.0.ebuild
+++ b/app-backup/bacula/bacula-7.2.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/bacula/${MY_P}.tar.gz"
 LICENSE="AGPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="acl bacula-clientonly bacula-nodir bacula-nosd examples ipv6 logwatch 
mysql postgres qt4 readline +sqlite ssl static tcpd vim-syntax X"
+IUSE="acl bacula-clientonly bacula-nodir bacula-nosd examples ipv6 libressl 
logwatch mysql postgres qt4 readline +sqlite ssl static tcpd vim-syntax X"
 
 DEPEND="
dev-libs/gmp:0
@@ -38,14 +38,20 @@ DEPEND="
sys-libs/zlib[static-libs]
dev-libs/lzo[static-libs]
sys-libs/ncurses:=[static-libs]
-   ssl? ( dev-libs/openssl:0[static-libs] )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[static-libs] )
+   libressl? ( dev-libs/libressl:0=[static-libs] )
+   )
)
!static? (
acl? ( virtual/acl )
sys-libs/zlib
dev-libs/lzo
sys-libs/ncurses:=
-   ssl? ( dev-libs/openssl:0 )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
)"
 RDEPEND="${DEPEND}
!bacula-clientonly? (

diff --git a/app-backup/bacula/bacula-7.4.0.ebuild 
b/app-backup/bacula/bacula-7.4.0.ebuild
index 3303bfb..3be2523 100644
--- a/app-backup/bacula/bacula-7.4.0.ebuild
+++ b/app-backup/bacula/bacula-7.4.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/bacula/${MY_P}.tar.gz"
 LICENSE="AGPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="acl bacula-clientonly bacula-nodir bacula-nosd examples ipv6 logwatch 
mysql postgres qt4 readline +sqlite ssl static tcpd vim-syntax X"
+IUSE="acl bacula-clientonly bacula-nodir bacula-nosd examples ipv6 libressl 
logwatch mysql postgres qt4 readline +sqlite ssl static tcpd vim-syntax X"
 
 DEPEND="
dev-libs/gmp:0
@@ -38,14 +38,20 @@ DEPEND="
sys-libs/zlib[static-libs]
dev-libs/lzo[static-libs]
sys-libs/ncurses:=[static-libs]
-   ssl? ( dev-libs/openssl:0[static-libs] )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[static-libs] )
+   libressl? ( dev-libs/libressl:0=[static-libs] )
+   )
)
!static? (
acl? ( virtual/acl )
sys-libs/zlib
dev-libs/lzo
sys-libs/ncurses:=
-   ssl? ( dev-libs/openssl:0 )
+   ssl? (
+

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfce4-settings/

2016-03-21 Thread Patrick McLean
commit: 16b811bb8ea46ccb5c60fabbc6b79ece35867ec2
Author: Anthony Ryan  gmail  com>
AuthorDate: Mon Mar 14 19:16:14 2016 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Mar 22 00:50:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b811bb

xfce-base/xfce4-settings: Rename USE libinput to input_devices_libinput

Uses the same INPUT_DEVICES expanded use as x11-base/xorg-drivers and
other packages that have similar input-device specific functionality
(like gnome-settings).

Package-Manager: portage-2.2.26

 .../xfce4-settings/xfce4-settings-4.12.0-r2.ebuild | 56 ++
 1 file changed, 56 insertions(+)

diff --git a/xfce-base/xfce4-settings/xfce4-settings-4.12.0-r2.ebuild 
b/xfce-base/xfce4-settings/xfce4-settings-4.12.0-r2.ebuild
new file mode 100644
index 000..c37f353
--- /dev/null
+++ b/xfce-base/xfce4-settings/xfce4-settings-4.12.0-r2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit xfconf
+
+DESCRIPTION="Configuration system for the Xfce desktop environment"
+HOMEPAGE="http://www.xfce.org/projects/";
+SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
+IUSE="debug input_devices_libinput libcanberra libnotify upower +xklavier"
+
+RDEPEND=">=dev-libs/dbus-glib-0.100
+   >=dev-libs/glib-2.24
+   media-libs/fontconfig
+   >=x11-libs/gtk+-2.20:2
+   x11-libs/libX11
+   >=x11-libs/libXcursor-1.1
+   >=x11-libs/libXi-1.3
+   >=x11-libs/libXrandr-1.2
+   >=xfce-base/garcon-0.2
+   >=xfce-base/exo-0.8
+   >=xfce-base/libxfce4ui-4.11
+   >=xfce-base/libxfce4util-4.11
+   >=xfce-base/xfconf-4.10
+   libcanberra? ( >=media-libs/libcanberra-0.25[sound] )
+   input_devices_libinput? ( x11-drivers/xf86-input-libinput )
+   libnotify? ( >=x11-libs/libnotify-0.7 )
+   upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )
+   xklavier? ( >=x11-libs/libxklavier-5 )"
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   virtual/pkgconfig
+   sys-devel/gettext
+   >=x11-proto/inputproto-1.4
+   x11-proto/xproto"
+
+pkg_setup() {
+   XFCONF=(
+   $(use_enable upower upower-glib)
+   $(use_enable input_devices_libinput xorg-libinput)
+   $(use_enable libnotify)
+   $(use_enable xklavier libxklavier)
+   $(use_enable libcanberra sound-settings)
+   $(xfconf_use_debug)
+   )
+
+   DOCS=( AUTHORS ChangeLog NEWS TODO )
+
+   PATCHES=( "${FILESDIR}/${P}-HDMI-power-cycling.patch" )
+}



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

2016-03-21 Thread Anthony G. Basile
commit: fba133b98325e41ebea49019dec96e105522993d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Mar 22 00:45:25 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Mar 22 00:45:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fba133b9

app-backup/bareos: add libressl support

Package-Manager: portage-2.2.26

 app-backup/bareos/bareos-13.2.4-r1.ebuild | 18 --
 app-backup/bareos/bareos-14.2.2.ebuild| 18 --
 app-backup/bareos/bareos-14.2.5.ebuild| 18 --
 app-backup/bareos/bareos-15.2.2.ebuild| 18 --
 4 files changed, 48 insertions(+), 24 deletions(-)

diff --git a/app-backup/bareos/bareos-13.2.4-r1.ebuild 
b/app-backup/bareos/bareos-13.2.4-r1.ebuild
index b27d116..3b8d01f 100644
--- a/app-backup/bareos/bareos-13.2.4-r1.ebuild
+++ b/app-backup/bareos/bareos-13.2.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -17,9 +17,9 @@ RESTRICT="mirror"
 LICENSE="AGPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="acl clientonly +director fastlz ipv6 logwatch mysql ndmp postgres python 
qt4
-   readline scsi-crypto sql-pooling +sqlite ssl static 
+storage-daemon tcpd
-   vim-syntax X"
+IUSE="acl clientonly +director fastlz ipv6 libressl logwatch mysql ndmp 
postgres
+   python qt4 readline scsi-crypto sql-pooling +sqlite ssl static 
+storage-daemon
+   tcpd vim-syntax X"
 
 DEPEND="
!app-backup/bacula
@@ -43,12 +43,18 @@ DEPEND="
sys-libs/zlib[static-libs]
dev-libs/lzo[static-libs]
sys-libs/ncurses:=[static-libs]
-   ssl? ( dev-libs/openssl:0[static-libs] )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[static-libs] )
+   libressl? ( dev-libs/libressl:0=[static-libs] )
+   )
)
!static? (
acl? ( virtual/acl )
dev-libs/lzo
-   ssl? ( dev-libs/openssl:0 )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
sys-libs/ncurses:=
sys-libs/zlib
)

diff --git a/app-backup/bareos/bareos-14.2.2.ebuild 
b/app-backup/bareos/bareos-14.2.2.ebuild
index 0f83dbc..4ca6821 100644
--- a/app-backup/bareos/bareos-14.2.2.ebuild
+++ b/app-backup/bareos/bareos-14.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -17,9 +17,9 @@ RESTRICT="mirror"
 LICENSE="AGPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="acl clientonly +director fastlz ipv6 logwatch mysql ndmp postgres python 
qt4
-   readline scsi-crypto sql-pooling +sqlite ssl static 
+storage-daemon tcpd
-   vim-syntax X cephfs glusterfs lmdb rados"
+IUSE="acl clientonly +director fastlz ipv6 libressl logwatch mysql ndmp 
postgres
+   python qt4 readline scsi-crypto sql-pooling +sqlite ssl static 
+storage-daemon
+   tcpd vim-syntax X cephfs glusterfs lmdb rados"
 
 DEPEND="
!app-backup/bacula
@@ -47,12 +47,18 @@ DEPEND="
sys-libs/zlib[static-libs]
dev-libs/lzo[static-libs]
sys-libs/ncurses:=[static-libs]
-   ssl? ( dev-libs/openssl:0[static-libs] )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[static-libs] )
+   libressl? ( dev-libs/libressl:0=[static-libs] )
+   )
)
!static? (
acl? ( virtual/acl )
dev-libs/lzo
-   ssl? ( dev-libs/openssl:0 )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
sys-libs/ncurses:=
sys-libs/zlib
)

diff --git a/app-backup/bareos/bareos-14.2.5.ebuild 
b/app-backup/bareos/bareos-14.2.5.ebuild
index 0f83dbc..4ca6821 100644
--- a/app-backup/bareos/bareos-14.2.5.ebuild
+++ b/app-backup/bareos/bareos-14.2.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -17,9 +17,9 @@ RESTRICT="mirror"
 LICENSE="AGPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="acl clientonly +director fastlz ipv6 logwatch mysql ndmp postgres python 
qt4
-   readline scsi-crypto sql-pooling +sqlite ssl static 
+storage-daemon tcpd
-   vim-syntax X cephfs glusterfs lmdb rados"
+IUSE="acl clientonly +director fastlz ipv6 libressl logwatch mysql ndmp 
postgres
+   

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

2016-03-21 Thread Anthony G. Basile
commit: 6da0dfdec7120fdbf98ed29e13e1cd7b4473e27d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Mar 22 00:27:41 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Mar 22 00:27:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6da0dfde

app-backup/burp: add libressl support

Package-Manager: portage-2.2.26

 app-backup/burp/burp-1.4.40-r1.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-backup/burp/burp-1.4.40-r1.ebuild 
b/app-backup/burp/burp-1.4.40-r1.ebuild
index edfa6af..ee25ec9 100644
--- a/app-backup/burp/burp-1.4.40-r1.ebuild
+++ b/app-backup/burp/burp-1.4.40-r1.ebuild
@@ -14,10 +14,11 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
 LICENSE="AGPL-3"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="acl afs ipv6 nls tcpd xattr"
+IUSE="acl afs ipv6 libressl nls tcpd xattr"
 
 DEPEND="
-   dev-libs/openssl:0
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
dev-libs/uthash
sys-libs/libcap


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

2016-03-21 Thread Anthony G. Basile
commit: 97233afb649bf2f965e6753745b1d118125649de
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Mar 22 00:24:31 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Mar 22 00:24:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97233afb

app-backup/boxbackup: add libressl support

Package-Manager: portage-2.2.26

 app-backup/boxbackup/boxbackup-0.11.1.ebuild | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/app-backup/boxbackup/boxbackup-0.11.1.ebuild 
b/app-backup/boxbackup/boxbackup-0.11.1.ebuild
index 55bf9cb..f3b4419 100644
--- a/app-backup/boxbackup/boxbackup-0.11.1.ebuild
+++ b/app-backup/boxbackup/boxbackup-0.11.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="2"
+EAPI="5"
 
 inherit eutils user
 
@@ -13,10 +13,11 @@ SRC_URI="http://boxbackup.org/svn/box/packages/${P/_/}.tgz";
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="amd64 x86 ~ppc-macos ~x86-macos"
-IUSE="client-only"
+IUSE="client-only libressl"
 DEPEND="sys-libs/zlib
-   sys-libs/db
-   >=dev-libs/openssl-0.9.7
+   sys-libs/db:=
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
>=dev-lang/perl-5.6"
 RDEPEND="${DEPEND}
virtual/mta"



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

2016-03-21 Thread Mike Frysinger
commit: 4c756a9cfd0ac273013fe0934d46c324f546ac36
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Mar 21 23:32:12 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Mar 21 23:35:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c756a9c

sys-apps/findutils: make sys/sysmacros.h include more portable #577714

 sys-apps/findutils/findutils-4.6.0.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys-apps/findutils/findutils-4.6.0.ebuild 
b/sys-apps/findutils/findutils-4.6.0.ebuild
index d24e3af..3453917 100644
--- a/sys-apps/findutils/findutils-4.6.0.ebuild
+++ b/sys-apps/findutils/findutils-4.6.0.ebuild
@@ -34,7 +34,9 @@ src_prepare() {
 
# Newer C libraries omit this include from sys/types.h.
# https://lists.gnu.org/archive/html/bug-gnulib/2016-03/msg00018.html
-   sed -i '1i#include ' gl/lib/mountlist.c || die
+   sed -i \
+   '/include.*config.h/a#ifdef MAJOR_IN_SYSMACROS\n#include 
\n#endif\n' \
+   gl/lib/mountlist.c || die
 
epatch "${FILESDIR}"/${P}-gnulib-mb.patch #576818
 }



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

2016-03-21 Thread Mike Frysinger
commit: 93915c28a70bb0189e5e072a3bd119917b5aa0df
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Mar 21 23:33:52 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Mar 21 23:35:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93915c28

sys-apps/findutils: fix gnulib patch backport #576818

 sys-apps/findutils/files/findutils-4.6.0-gnulib-mb.patch | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/sys-apps/findutils/files/findutils-4.6.0-gnulib-mb.patch 
b/sys-apps/findutils/files/findutils-4.6.0-gnulib-mb.patch
index bd695ff..925d7cf 100644
--- a/sys-apps/findutils/files/findutils-4.6.0-gnulib-mb.patch
+++ b/sys-apps/findutils/files/findutils-4.6.0-gnulib-mb.patch
@@ -18,16 +18,14 @@ otherwise we always get:
  m4/mbrtowc.m4 | 2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
-diff --git a/m4/mbrtowc.m4 b/m4/mbrtowc.m4
-index deb9f06..be2e9d6 100644
 --- a/configure
-+++ configure
 b/configure
 @@ -569,7 +569,7 @@ changequote([,])dnl
 int
 main (void)
 {
 - return ! mbrtowc (&wc, "", 0, &mbs) == (size_t) -2;
-+ return ! mbrtowc (&wc, "", 0, &mbs) == (size_t) -2;
++ return mbrtowc (&wc, "", 0, &mbs) != (size_t) -2;
 }
  _ACEOF
  if ac_fn_c_try_run "$LINENO"; then :



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

2016-03-21 Thread Anthony G. Basile
commit: f2dd06665cf333e83a721644e3c5a97b949fa4b9
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 23:35:16 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 23:35:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2dd0666

app-backup/rear: add libressl support

Package-Manager: portage-2.2.26

 app-backup/rear/rear-1.15-r1.ebuild | 6 --
 app-backup/rear/rear-1.17.0.ebuild  | 6 --
 app-backup/rear/rear-1.17.1.ebuild  | 6 --
 3 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/app-backup/rear/rear-1.15-r1.ebuild 
b/app-backup/rear/rear-1.15-r1.ebuild
index 04b888e..76cf7de 100644
--- a/app-backup/rear/rear-1.15-r1.ebuild
+++ b/app-backup/rear/rear-1.15-r1.ebuild
@@ -14,9 +14,11 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64"
 
-IUSE="udev"
+IUSE="libressl udev"
 
-RDEPEND="dev-libs/openssl
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
net-dialup/mingetty
net-fs/nfs-utils
sys-apps/iproute2

diff --git a/app-backup/rear/rear-1.17.0.ebuild 
b/app-backup/rear/rear-1.17.0.ebuild
index 4212a9f..3669a16 100644
--- a/app-backup/rear/rear-1.17.0.ebuild
+++ b/app-backup/rear/rear-1.17.0.ebuild
@@ -15,9 +15,11 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-IUSE="udev"
+IUSE="libressl udev"
 
-RDEPEND="dev-libs/openssl
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
net-dialup/mingetty
net-fs/nfs-utils
sys-apps/gawk

diff --git a/app-backup/rear/rear-1.17.1.ebuild 
b/app-backup/rear/rear-1.17.1.ebuild
index 4212a9f..3669a16 100644
--- a/app-backup/rear/rear-1.17.1.ebuild
+++ b/app-backup/rear/rear-1.17.1.ebuild
@@ -15,9 +15,11 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-IUSE="udev"
+IUSE="libressl udev"
 
-RDEPEND="dev-libs/openssl
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
net-dialup/mingetty
net-fs/nfs-utils
sys-apps/gawk



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

2016-03-21 Thread Anthony G. Basile
commit: b2407654cbd678ee1aea9fb94d973e530a0f2cf8
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 23:22:29 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 23:22:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2407654

app-backup/attic: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-backup/attic/attic-0.16.ebuild | 4 ++--
 app-backup/attic/attic-.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-backup/attic/attic-0.16.ebuild 
b/app-backup/attic/attic-0.16.ebuild
index 909ac1f..188ef01 100644
--- a/app-backup/attic/attic-0.16.ebuild
+++ b/app-backup/attic/attic-0.16.ebuild
@@ -25,8 +25,8 @@ IUSE="libressl"
 
 RDEPEND="
dev-python/msgpack[${PYTHON_USEDEP}]
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
dev-python/llfuse[${PYTHON_USEDEP}]"
 
 DEPEND="

diff --git a/app-backup/attic/attic-.ebuild 
b/app-backup/attic/attic-.ebuild
index 909ac1f..188ef01 100644
--- a/app-backup/attic/attic-.ebuild
+++ b/app-backup/attic/attic-.ebuild
@@ -25,8 +25,8 @@ IUSE="libressl"
 
 RDEPEND="
dev-python/msgpack[${PYTHON_USEDEP}]
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
dev-python/llfuse[${PYTHON_USEDEP}]"
 
 DEPEND="



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

2016-03-21 Thread Anthony G. Basile
commit: d48ba731f2df4b10e90f56096ab1af6827c757e4
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 23:21:32 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 23:21:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d48ba731

app-backup/borgbackup: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-backup/borgbackup/borgbackup-1.0.0.ebuild | 4 ++--
 app-backup/borgbackup/borgbackup-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-backup/borgbackup/borgbackup-1.0.0.ebuild 
b/app-backup/borgbackup/borgbackup-1.0.0.ebuild
index 5267b91..373e984 100644
--- a/app-backup/borgbackup/borgbackup-1.0.0.ebuild
+++ b/app-backup/borgbackup/borgbackup-1.0.0.ebuild
@@ -26,8 +26,8 @@ IUSE="libressl +fuse"
 RDEPEND="
app-arch/lz4
dev-python/msgpack[${PYTHON_USEDEP}]
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
fuse? ( dev-python/llfuse[${PYTHON_USEDEP}] )
 "
 

diff --git a/app-backup/borgbackup/borgbackup-.ebuild 
b/app-backup/borgbackup/borgbackup-.ebuild
index 5267b91..373e984 100644
--- a/app-backup/borgbackup/borgbackup-.ebuild
+++ b/app-backup/borgbackup/borgbackup-.ebuild
@@ -26,8 +26,8 @@ IUSE="libressl +fuse"
 RDEPEND="
app-arch/lz4
dev-python/msgpack[${PYTHON_USEDEP}]
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
fuse? ( dev-python/llfuse[${PYTHON_USEDEP}] )
 "
 



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

2016-03-21 Thread Anthony G. Basile
commit: 39a61715914741c0393710b76cafb8a402dee47f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 23:19:57 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 23:20:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39a61715

app-backup/tarsnap: add libressl support

Package-Manager: portage-2.2.26

 app-backup/tarsnap/tarsnap-1.0.35.ebuild | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/app-backup/tarsnap/tarsnap-1.0.35.ebuild 
b/app-backup/tarsnap/tarsnap-1.0.35.ebuild
index 375c60a..d11f2f6 100644
--- a/app-backup/tarsnap/tarsnap-1.0.35.ebuild
+++ b/app-backup/tarsnap/tarsnap-1.0.35.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=4
+EAPI=5
 
 DESCRIPTION="Online backups for the truly paranoid"
 HOMEPAGE="http://www.tarsnap.com/";
@@ -11,9 +11,11 @@ 
SRC_URI="https://www.tarsnap.com/download/${PN}-autoconf-${PV}.tgz";
 LICENSE="tarsnap"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="acl bzip2 lzma cpu_flags_x86_sse2 xattr"
+IUSE="acl bzip2 libressl lzma cpu_flags_x86_sse2 xattr"
 
-RDEPEND="dev-libs/openssl:0
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
sys-libs/e2fsprogs-libs
sys-libs/zlib
acl? ( sys-apps/acl )



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

2016-03-21 Thread Mike Pagano
commit: 9d5ce953379635c08e0a1f1021a79cd070ed2440
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Mar 21 23:16:26 2016 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Mar 21 23:16:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d5ce953

sys-kernel/gentoo-sources: Linux patch 3.4.111

Package-Manager: portage-2.2.26

 sys-kernel/gentoo-sources/Manifest |  2 ++
 .../gentoo-sources/gentoo-sources-3.4.111.ebuild   | 29 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index f32e28a..e510e2d 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -50,6 +50,8 @@ DIST genpatches-3.18-30.experimental.tar.xz 61592 SHA256 
48fcfea1b93006fecca50e1
 DIST genpatches-3.18-30.extras.tar.xz 16180 SHA256 
f841e27ff72a11ca53b3a0af43268b1b332a3a0b88d7c906efcfed2e52075a57 SHA512 
8c196345699b10b68884e0c77cffe5c426b0b12818ad715caab92614f281eb8c53f46f4a566b646bde63c77a05a5874e150b277574f423bf6bf2cbe174980652
 WHIRLPOOL 
9f6ba37add4201536694000495828d27d01a09f31d43d6c898ded5ed32930cf218f1b940f4b6d79b7a40997e0de22a862cf5cd3271dc36bf3b4332f40475eb1e
 DIST genpatches-3.4-93.base.tar.xz 1412220 SHA256 
dce2f6bce8058560fb4f005729a29fee9c6846147bca986b8b44d1554b78f0eb SHA512 
0f0cf52185a8a49f639a1f9d3ff302a72fd7cbf4403f7f5626c9f39c3f4e2e5ea69f402df429b0b3341655d9b7a4779b738f5d5fc6ecde3799861e0b6efb8cf4
 WHIRLPOOL 
ac2b82b6e749b945b79d2c21dc3081eaf399aafef80a3fc49ee71dc1f7ee753bf406d6e93bf2142ee4b25447e0304800de0adb9911274dc37172a9a9c63d624f
 DIST genpatches-3.4-93.extras.tar.xz 18236 SHA256 
c59bbc018e3c7e71fb655c5e33cbbcc3077dedee08553c287624b175c83d0811 SHA512 
61e74164a8de8646d4d0c1cd1592eaeb8f5747f0e03557a78349d8cd2df7e924f012ae4904e14210ab56eb3f1f04e8610818ee05e4b5a51b325a42ded9876e66
 WHIRLPOOL 
42876d70dadac671875e7dc129020ed04c91ea99f40972cf87554accbe1d5e1651cca02f5e16e30654dabdfc1d15771eab8908a64376402c3b1639164b10258f
+DIST genpatches-3.4-94.base.tar.xz 1442072 SHA256 
293f0f2df75ccbee6e2ea2c4b20b618d47921d9e0801cbe6f80d47b728b3af0d SHA512 
3980eb6b57729a14ee08f804787c11b41992d3ab5fe5d318aa2e811dea0ac465e2605a02badeaf76f503bd7ecbf3657f02985621faec5d2e3eba99b0785a074c
 WHIRLPOOL 
2031c8d4ec1513db5b8c40ecbd7d584faca0466db38d207b46442c54bdece16198c6f85fe30f7215a14521bc0fa9b5241de621a4c69472d3dbe23ffac2a01b8c
+DIST genpatches-3.4-94.extras.tar.xz 18224 SHA256 
3f4602a3fea5533108a09063968a5812d819767b7741978cac7a8faf9a2e3835 SHA512 
eacfad1cf5e081dbf8406ee1ba423e2f0856a1b31c7e379f182154068e854ab9750c451910eb427fde65359241ebb959e156428428ae459ada9579e6faad8982
 WHIRLPOOL 
f42921453bcadce7457a1d44583e20c156bc73d05454060399f1cf9759b007c520ca6cca9525e04139541fef1ee6195213cfe87faafb7eeaf57ac33003131c8c
 DIST genpatches-4.0-11.base.tar.xz 234968 SHA256 
49cfd38bb97a92984c0d8b955c2f795701897544a4bfea4d2d2932543abca31a SHA512 
059a049248c2eaaae4c4201235586306f846b12503fa1aa3bdea9ad31b4522f030beb057926cf79ffa9468e2940a68b6f6089511a60005dd339e4775c8a682cd
 WHIRLPOOL 
a5a31fa2a1db39fd01ed72e9917481a7c4f406c8168a2dac078df5a46c41d0be69df6ef532aae0f06fbf81a5a5e2262a9ba4785bdb13c48b21e338347d6be1ee
 DIST genpatches-4.0-11.experimental.tar.xz 61632 SHA256 
cedb08c7d68cf62038aa6f8db3999a7d6daf434a08d0c811308affd5d18667d4 SHA512 
cfe5281678acc938ba0c906ef58a654889a71da5238fbff13e5e78f328dc07485345deea6080abf1380a8a3ec5314691b8f5a35ae0cf627e6ebb38ba66860e38
 WHIRLPOOL 
5bfd4de5098fe5cd05bc7184a5797f9b310a848b2d96e04b83986f45d3961abaf6cfb76b801b9031c0b46c2c072578b59b98781c8c432b7ec0989449f8098a04
 DIST genpatches-4.0-11.extras.tar.xz 16288 SHA256 
84b7509ecc82f7ff1b90959b88e9e0ad77544610d5a95aacfb88b7200b9aced1 SHA512 
95354b1a2dce8d93a50cc1e1e79ea807134eb050c7a76921ada26f5bfa210963a16c9af7bda0b75894201a1e82929859f6dfa5c23cf63fe4586e4264eef85c7f
 WHIRLPOOL 
4ebc929d8e39c0967b99d558f68e5454e6ffc771273b7e9637d8d0ba477c67ee490e0a443a8aa4fdcc74f3aab59cf8e9c159f2a3b152b33fb9a8f395a67b0085

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.4.111.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-3.4.111.ebuild
new file mode 100644
index 000..12aab0f
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-3.4.111.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras"
+K_GENPATCHES_VER="94"
+K_DEBLOB_AVAILABLE="0"
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches";
+IUSE="deblob"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   

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

2016-03-21 Thread Matt Thode
commit: 57c30d7516093c9a9f28079ffd635e895724ac9d
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Mar 21 23:13:16 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Mon Mar 21 23:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57c30d75

app-admin/ansible: bup to 1.x release

Package-Manager: portage-2.2.26

 app-admin/ansible/Manifest |  1 +
 app-admin/ansible/ansible-1.9.5.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index 5aae803..8556f21 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -1,4 +1,5 @@
 DIST ansible-1.9.4.tar.gz 937120 SHA256 
972c2face49f1577bd0ff7989440bfe2820e66fb10d7579915cc536bccfa6fe3 SHA512 
53ef5b3390be620cedc92687c7c9853c42f38547494f9b77056d5ea48ccd8f43d193648a7f4569fcba5afad343a9202b123296ab47c8cd02eecfe455d83b9586
 WHIRLPOOL 
0b88a27f690ff940eae1969ff163d8f8c26df038d2e9aa76694bdba1448ac9cbe8123795d0787e528c6d22cf66cc01d6b89add8e3e97bbb107a3f1a96860fd8e
+DIST ansible-1.9.5.tar.gz 941331 SHA256 
6ba3539d98d993089bea0eb4ee83a04608aff900086040f11a77f2124dccbd8e SHA512 
ad576db40c779c8465f19e10cd540771d4bac530c9822bd33ea0989e95b69cee0b057df0071a45dcb1c17d315a2bc88b2d546a220b8952621b1af60d20e09e1b
 WHIRLPOOL 
5b5cf9e85204b873b64e3e7d571b1ae6a29d924e4dcb22cd63b1a116d5497cc7896c896deb281fcc3fefdcd4fcb59824a7b1d8aac8f4ba24822c02c308dfdd12
 DIST ansible-2.0.0.1.tar.gz 1524249 SHA256 
1085c1fae3b59f8e55a64b949489f1ddcd811a0c32d9df8ac18abf44a430f3b5 SHA512 
2823252a7922c417d8495709c53db85d33ae925120c3572acafe4e11c4d5ba5b9acdec72414606eb9ef4f66ca15db8fe52e0f14623ceef5165a30eb4e249d136
 WHIRLPOOL 
0b4ba3a632d40413c61b7bd14315f14b64e459cdebd450230ed75711f97bec04ee8a8cc4c4a79e42dfd62654e0f8ae5ffa0fdea40d3874f199a16e45d60c0937
 DIST ansible-2.0.0.2.tar.gz 1497944 SHA256 
27db0b99113fab85b1430c361c7790a0aa7f5c614c9af13362e2adbba07e5828 SHA512 
bf034384849d3f065ff77982e2e47a94727fc2982f0dac8d67efda2646dcdbd52ba9cc3ddfcdb9cd8210af0935f6f42946cc8ddc659d62cccd670e5d55c7dfa0
 WHIRLPOOL 
bbf15cbdc50bfe2c33e22a4c9139663c9a622d70f59450953f85c088daa6fed88fbe4f46933c8998abdec20fed44846838a0e5a2ada76710c438f3c9769e15be
 DIST ansible-2.0.1.0.tar.gz 1510155 SHA256 
cddc4fa6af4c1be6cd1d6634de1bd0397abad921c76b32cab6722c042744ee5d SHA512 
ed126341ddae2be8f55984d7bc8b6232239f59a56f8028f19f8e2ee25096b3bba934b88b2ee72b53bbbdd245ec51a10dfbc3ffed9e0bc9f13444557ff490d6df
 WHIRLPOOL 
e5fbe9326ff34a03f6189b50a7d7984e11c0ef32538e73364da06311e587e85f1a0d8fd681f1bddd7155459270ea4f8b2ade255f9bb963e65d99cf55734d58bb

diff --git a/app-admin/ansible/ansible-1.9.5.ebuild 
b/app-admin/ansible/ansible-1.9.5.ebuild
new file mode 100644
index 000..3ce0bed
--- /dev/null
+++ b/app-admin/ansible/ansible-1.9.5.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 eutils readme.gentoo
+
+DESCRIPTION="Simple model-driven configuration management and command 
execution framework"
+HOMEPAGE="http://ansible.com/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x64-macos"
+IUSE="test"
+
+RDEPEND="
+   dev-python/httplib2[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/keyczar[${PYTHON_USEDEP}]
+   >=dev-python/pycrypto-2.6[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   net-misc/sshpass
+   virtual/ssh
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/passlib[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )"
+
+# not included in release tarball
+RESTRICT="test"
+
+python_test() {
+   nosetests -d -w test/units -v --with-coverage --cover-package=ansible 
--cover-branches || die
+}
+
+python_install_all() {
+   EXAMPLES=( examples )
+   distutils-r1_python_install_all
+
+   doman docs/man/man1/*.1
+
+   newenvd "${FILESDIR}"/${PN}.env 95ansible
+}
+
+src_install() {
+   distutils-r1_src_install
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   optfeature "Alternative ssh transport" dev-python/paramiko
+}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/idlcoyote/files/, sci-libs/idlcoyote/

2016-03-21 Thread Sebastien Fabbro
commit: a4a87f6c2c7be01c22c06c0030799ae3934bc425
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon Mar 21 18:31:03 2016 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Mar 22 00:02:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4a87f6c

sci-libs/idlcoyote: initial import

Package-Manager: portage-2.2.28

 sci-libs/idlcoyote/Manifest|  1 +
 sci-libs/idlcoyote/files/idlcoyote-cgloadct.patch  | 77 ++
 sci-libs/idlcoyote/files/idlcoyote-gdl-fixes.patch | 13 
 sci-libs/idlcoyote/idlcoyote-20160321.ebuild   | 32 +
 sci-libs/idlcoyote/metadata.xml| 14 
 5 files changed, 137 insertions(+)

diff --git a/sci-libs/idlcoyote/Manifest b/sci-libs/idlcoyote/Manifest
new file mode 100644
index 000..b065d17
--- /dev/null
+++ b/sci-libs/idlcoyote/Manifest
@@ -0,0 +1 @@
+DIST idlcoyote-20160321.zip 1360470 SHA256 
35a7735df44dbad466051aa18890405e0d5a8abba4bf82dd8baafc104ca5fb56 SHA512 
e4cd163b684d44bfacdd56895441c7ab06360c31a94fb5334ba64ab3fb42bdf52ee359585d8766ae9d04d3f9e140e0ee6f507290f3dd01f5728384229ddd
 WHIRLPOOL 
309e69fae6d18640cb3bcd886091875427527939692e68417465d815827c18a8e58a1983211c9c149f84f6cfea9f9fc8273b5cb101ad6fbb30a3984cf90f1c09

diff --git a/sci-libs/idlcoyote/files/idlcoyote-cgloadct.patch 
b/sci-libs/idlcoyote/files/idlcoyote-cgloadct.patch
new file mode 100644
index 000..ec2afd0
--- /dev/null
+++ b/sci-libs/idlcoyote/files/idlcoyote-cgloadct.patch
@@ -0,0 +1,77 @@
+Author: Ole Streicher 
+Description: Use loadct in cgloadct if no file is specified.
+ GDL does not shipt with a color table "colors1.tbl", so in the case
+ that no file name is specified, fall back to loadct instead of trying to
+ load this file.
+--- a/cgloadct.pro
 b/cgloadct.pro
+@@ -86,8 +86,8 @@
+ ;   If this keyword is set to a named variable, the color table is 
returned as an 
+ ;   [NCOLORS,3] array and no colors are loaded in the display.
+ ;filename: in, optional, type='string'
+-;   The name of a color table file to open. By default colors1.tbl in the 
IDL 
+-;   resource directory.
++;   The name of a color table file to open. By default the gdl standard
++;color table
+ ;get_names: out, optional, type='string'
+ ;   If set to a named variable, the names of the color tables are returned
+ ;   and no colors are loaded in the display. Note that RGB_TABLE cannot be
+@@ -192,9 +192,8 @@
+   Catch, /CANCEL
+   Help, LAST_MESSAGE=1, OUTPUT=traceback
+   Help, Calls=callStack
+-  callingRoutine = (StrSplit(StrCompress(callStack[1])," ", /Extract))[0]
+-  Print,''
+-  Print, 'Traceback Report from ' + StrUpCase(callingRoutine) + ':'
++  Print,''+callStack
++  Print, 'Traceback Report from:'
+   Print, ''
+   FOR j=0,N_Elements(traceback)-1 DO Print, " " + traceback[j]
+   void = Dialog_Message(traceback[0], /Error, TITLE='Trapped Error')
+@@ -236,11 +235,9 @@
+IF N_Elements(clip) EQ 0 THEN clip = [0,255]
+IF N_Elements(clip) EQ 1 THEN clip = [clip, 255]
+clip = 0 > clip < 255
+-   IF N_Elements(file) EQ 0 THEN file = Filepath('colors1.tbl', 
SUBDIRECTORY=['resource', 'colors'])
+-   
+; Try to locate the brewer file. 
+IF Keyword_Set(brewer) THEN BEGIN
+-   brewerfilepath = Filepath( ROOT_DIR=cgSourceDir(), 'fsc_brewer.tbl')
++   brewerfilepath = Filepath( 
ROOT_DIR='/usr/share/gnudatalanguage/coyote', 'fsc_brewer.tbl')
+brewerFile = File_Search(brewerfilepath, Count=count)
+IF count EQ 0 THEN BEGIN
+ Message, 'Cannot find the Brewer color table file 
"fsc_brewer.tbl."' + $
+@@ -257,6 +254,14 @@
+IF N_Elements(ncolors) EQ 0 THEN ncolors = !D.TABLE_SIZE - bottom
+reverse = KEYWORD_SET(reverse)
+ 
++   IF N_Elements(file) EQ 0 THEN BEGIN
++  loadct, table, get_names=get_names, ncolors=ncolors, bottom=bottom, $
++  silent=silent, rgb_table=ltable
++  len = N_Elements(ltable)/3
++  r = ltable[0:len-1]
++  g = ltable[len:2*len-1]
++  b = ltable[2*len:3*len-1]
++   ENDIF ELSE BEGIN
+; Open and read the color table files.
+OPENR, lun, file, /GET_LUN
+ntables = 0B
+@@ -284,6 +289,7 @@
+ 
+; Close the file.
+FREE_LUN, lun
++   ENDELSE
+ 
+; Clip the colors.
+r = r[clip[0]:clip[1]]
+--- a/xcolors.pro
 b/xcolors.pro
+@@ -838,7 +838,7 @@
+END
+ 
+ 'BREWER': BEGIN
+-   info.file = cgFindPathTo('fsc_brewer.tbl')
++   info.file = '/usr/share/gnudatalanguage/fsc_brewer.tbl'
+info.brewer = 1
+END
+ENDCASE

diff --git a/sci-libs/idlcoyote/files/idlcoyote-gdl-fixes.patch 
b/sci-lib

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

2016-03-21 Thread Sebastien Fabbro
commit: 8357ba383534fdc6f061ad95c27d216b0c3b1402
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon Mar 21 17:34:07 2016 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Mar 22 00:02:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8357ba38

sci-libs/idlmarkwardt: cleanup

Package-Manager: portage-2.2.28

 sci-libs/idlmarkwardt/Manifest |  1 -
 sci-libs/idlmarkwardt/idlmarkwardt-20121110.ebuild | 24 --
 sci-libs/idlmarkwardt/idlmarkwardt-20130418.ebuild |  7 ---
 3 files changed, 4 insertions(+), 28 deletions(-)

diff --git a/sci-libs/idlmarkwardt/Manifest b/sci-libs/idlmarkwardt/Manifest
index 93c603c..c69ebad 100644
--- a/sci-libs/idlmarkwardt/Manifest
+++ b/sci-libs/idlmarkwardt/Manifest
@@ -1,2 +1 @@
-DIST idlmarkwardt-20121110.tar.gz 702827 SHA256 
6ad1eb80c83128f0c94c725df1dbaece808fd713d42b5e7849fb1629c4b56e18 SHA512 
776d740abd434d3c31f0f5e4dc784e5d42b40d5ddba48758a857b0ed1f877628dcf078eb5136253c12c3b40a8c413879269296eb5a2b6d0554f5433e5994cdc1
 WHIRLPOOL 
fbeb149db62b80ed27661983f340287a3d719505d3344c91d1151337a912d4e53e605560a5bba2ff1fc01733876d49598dfe75a3761caa4c3a7a059bb5e17df7
 DIST idlmarkwardt-20130418.tar.gz 703131 SHA256 
b1abe54bf1ca7ce2940abf31ef43cebf838e748be482da1745e2014aa1b94369 SHA512 
e93187ffa6c719c9b3b54bf61d5b138abd6c7cc91029b0802b9542c6699c29c3d8ee26e3afeccf10bfabecea36d588cd27031621739ab509e3dfd6c0ade7b4cc
 WHIRLPOOL 
b18c5f22a43d270972f1fbfc4b7cd8d7b10a48d3163551015c35a05829adf1d9a6c66fdc88a23331ca4f9b0f0b04a6600ea99bf0828e7d8e5eeccd0860773f8f

diff --git a/sci-libs/idlmarkwardt/idlmarkwardt-20121110.ebuild 
b/sci-libs/idlmarkwardt/idlmarkwardt-20121110.ebuild
deleted file mode 100644
index 04cb902..000
--- a/sci-libs/idlmarkwardt/idlmarkwardt-20121110.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-DESCRIPTION="Craig Markwardt IDL procedures (MPFIT, CMSVLIB, etc)"
-HOMEPAGE="http://cow.physics.wisc.edu/~craigm/idl/idl.html";
-SRC_URI="http://www.physics.wisc.edu/~craigm/idl/down/cmtotal.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Markwardt"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-DEPEND=""
-RDEPEND=">=dev-lang/gdl-0.9.2-r1"
-
-S="${WORKDIR}"
-
-src_install() {
-   insinto /usr/share/gnudatalanguage/${PN}
-   doins *.pro
-   dodoc *README
-}

diff --git a/sci-libs/idlmarkwardt/idlmarkwardt-20130418.ebuild 
b/sci-libs/idlmarkwardt/idlmarkwardt-20130418.ebuild
index 04cb902..b22fa83 100644
--- a/sci-libs/idlmarkwardt/idlmarkwardt-20130418.ebuild
+++ b/sci-libs/idlmarkwardt/idlmarkwardt-20130418.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=4
+EAPI=6
 
 DESCRIPTION="Craig Markwardt IDL procedures (MPFIT, CMSVLIB, etc)"
 HOMEPAGE="http://cow.physics.wisc.edu/~craigm/idl/idl.html";
@@ -12,8 +12,9 @@ LICENSE="Markwardt"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
+
 DEPEND=""
-RDEPEND=">=dev-lang/gdl-0.9.2-r1"
+RDEPEND="dev-lang/gdl"
 
 S="${WORKDIR}"
 



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

2016-03-21 Thread Sebastien Fabbro
commit: ff2168d5ceb3a1415d4a866f8573b5752a0b3c42
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon Mar 21 16:44:17 2016 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Mar 22 00:02:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff2168d5

dev-python/gammapy: remove downloading during doc generation

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/gammapy/gammapy-0.3.ebuild 
b/dev-python/gammapy/gammapy-0.3.ebuild
index 59e84aa..dcbc12c 100644
--- a/dev-python/gammapy/gammapy-0.3.ebuild
+++ b/dev-python/gammapy/gammapy-0.3.ebuild
@@ -38,7 +38,7 @@ python_compile_all() {
VARTEXFONTS="${T}"/fonts \
MPLCONFIGDIR="${BUILD_DIR}" \
PYTHONPATH="${BUILD_DIR}"/lib \
-   esetup.py build_sphinx
+   esetup.py build_sphinx --no-intersphinx
fi
 }
 
@@ -47,6 +47,6 @@ python_test() {
 }
 
 python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/ )
+   use doc && local HTML_DOCS=( docs/_build/html/. )
distutils-r1_python_install_all
 }



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

2016-03-21 Thread Sebastien Fabbro
commit: f5520a47c96562413c6e20f195dd36d29120f8fd
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon Mar 21 17:15:44 2016 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Mar 22 00:02:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5520a47

dev-python/emcee: initial import

Package-Manager: portage-2.2.28

 dev-python/emcee/Manifest   |  1 +
 dev-python/emcee/emcee-2.1.0.ebuild | 29 +
 dev-python/emcee/metadata.xml   | 22 ++
 3 files changed, 52 insertions(+)

diff --git a/dev-python/emcee/Manifest b/dev-python/emcee/Manifest
new file mode 100644
index 000..b330f4f
--- /dev/null
+++ b/dev-python/emcee/Manifest
@@ -0,0 +1 @@
+DIST emcee-2.1.0.tar.gz 23094 SHA256 
5ce1039a3d78fb9e7d53fcd768517585c5998193743bfcfaac407927d375ca63 SHA512 
dff055dddec630e922565c38fd65d41cbfb974f6efd301d7779a3cc7de8372d7ca64ced91d01757b5b37c7a00eecdbbda74c1cd3a899ae859cfdc2e7fe05
 WHIRLPOOL 
e01e5cfb8ace4b89a1b1c7e52951cb256a9d46c6a5faa0fe1dc27d0118b8dca819761670d3d08f9ac3fdb79f3f64b75f241795cfb70da391fa080b1df1bc22c4

diff --git a/dev-python/emcee/emcee-2.1.0.ebuild 
b/dev-python/emcee/emcee-2.1.0.ebuild
new file mode 100644
index 000..356111f
--- /dev/null
+++ b/dev-python/emcee/emcee-2.1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python ensemble sampling toolkit for affine-invariant MCMC"
+HOMEPAGE="http://danfm.ca/emcee/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+DOCS=( AUTHORS.rst README.rst )
+
+python_test() {
+   nosetests -v || die
+}

diff --git a/dev-python/emcee/metadata.xml b/dev-python/emcee/metadata.xml
new file mode 100644
index 000..04a1931
--- /dev/null
+++ b/dev-python/emcee/metadata.xml
@@ -0,0 +1,22 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+  
+s...@gentoo.org
+Gentoo Science Project
+  
+  
+  This provides a set of sparse matrix types for Python, with modules
+  which implement:
+  - Iterative methods for solving linear systems of equations
+  - A set of standard preconditioners
+  - An interface to a direct solver for sparse linear systems of equations
+  - The JDSYM eigensolver.
+  All of these modules are implemented as C extension modules based on
+  standard sparse and dense matrix libraries (UMFPACK/AMD, SuperLU,
+  BLAS/LAPACK) for maximum performance and robustness.
+
+  
+emcee
+  
+



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

2016-03-21 Thread Sebastien Fabbro
commit: 27f2f84cba4fcbca51aa6c6a97997ffcb1f5c63d
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon Mar 21 16:41:26 2016 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Mar 22 00:02:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27f2f84c

dev-python/wcsaxes: cleanup

Package-Manager: portage-2.2.28

 dev-python/wcsaxes/Manifest   |  1 -
 dev-python/wcsaxes/wcsaxes-0.3.ebuild | 46 ---
 dev-python/wcsaxes/wcsaxes-0.6.ebuild |  2 --
 3 files changed, 49 deletions(-)

diff --git a/dev-python/wcsaxes/Manifest b/dev-python/wcsaxes/Manifest
index 2ba5a58..ab9b726 100644
--- a/dev-python/wcsaxes/Manifest
+++ b/dev-python/wcsaxes/Manifest
@@ -1,2 +1 @@
-DIST wcsaxes-0.3.tar.gz 773984 SHA256 
012861678afa3c05700c4dd94a73bbd0534dae7ef8d9dc215fb01d6e5a60477f SHA512 
597494609e2add782dcf84a6163b7093d1a467ffb6321d6d25064f9f87dcb0f7e5e076818b0707b9f10d0894a26ce240cda9598f035364832efe57d6ec51d76a
 WHIRLPOOL 
1d05ce40460a2477c43107f33a68de08cdeb66ee395d3311ee74c9e7d354b675584f3e5d79ea91303a1808ab767df6f54bb5c65993009edfa67b416057c459fe
 DIST wcsaxes-0.6.tar.gz 617882 SHA256 
ab8101ff742ebba79da3ff7bf777f24fcf8275886dbb5482f0a2eb3ab6756ee4 SHA512 
6254fabc31b7c2e44dd86b0330592e01a688e36957e9d96348f7b4d305242e02e27d2363fd7ada37ad6dba292c66bbace9ea675f475388ed5545ac24cad1226c
 WHIRLPOOL 
e2f1d7b230fb7ba3982915638535258377fd450d47f3f191ba0a12aa1698050213353e315de2329e3f8ad359a76bfccdc4291e49eb6b0a4947d0f41305977100

diff --git a/dev-python/wcsaxes/wcsaxes-0.3.ebuild 
b/dev-python/wcsaxes/wcsaxes-0.3.ebuild
deleted file mode 100644
index ffa1343..000
--- a/dev-python/wcsaxes/wcsaxes-0.3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Framework for plotting astronomical and geospatial data"
-HOMEPAGE="http://wcsaxes.readthedocs.org https://pypi.python.org/pypi/wcsaxes";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="doc test"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/astropy[${PYTHON_USEDEP}]
-   dev-python/matplotlib[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] )
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_compile() {
-   distutils-r1_python_compile --use-system-libraries --offline
-}
-
-python_compile_all() {
-   use doc && esetup.py build_sphinx --offline
-}
-
-python_test() {
-   esetup.py --offline test
-}
-
-python_install() {
-   distutils-r1_python_install --offline
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/ )
-   distutils-r1_python_install_all --offline
-}

diff --git a/dev-python/wcsaxes/wcsaxes-0.6.ebuild 
b/dev-python/wcsaxes/wcsaxes-0.6.ebuild
index 0dc81c5..42ce9b8 100644
--- a/dev-python/wcsaxes/wcsaxes-0.6.ebuild
+++ b/dev-python/wcsaxes/wcsaxes-0.6.ebuild
@@ -27,8 +27,6 @@ DEPEND="${RDEPEND}
  dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] )
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
 
-REQUIRED_USE="doc? ( || ( $(python_gen_useflags 'python2*') ) )"
-
 PATCHES=(
"${FILESDIR}/${PN}-0.6-disable_mpltest.patch"
"${FILESDIR}/${PN}-0.6-disable_numpy_warnings_test.patch"



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

2016-03-21 Thread Sebastien Fabbro
commit: 63d2f0be7a281f1a83a1915c42aa0ba7864c39a4
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon Mar 21 05:20:10 2016 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Mar 22 00:02:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63d2f0be

dev-python/wcsaxes: fix documentation building

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/wcsaxes/wcsaxes-0.6.ebuild 
b/dev-python/wcsaxes/wcsaxes-0.6.ebuild
index 67bda68..0dc81c5 100644
--- a/dev-python/wcsaxes/wcsaxes-0.6.ebuild
+++ b/dev-python/wcsaxes/wcsaxes-0.6.ebuild
@@ -16,14 +16,19 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+RDEPEND="
dev-python/astropy[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] )
+   dev-python/astropy-helpers[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? (
+ dev-python/sphinx[${PYTHON_USEDEP}]
+ dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}] )
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
 
+REQUIRED_USE="doc? ( || ( $(python_gen_useflags 'python2*') ) )"
+
 PATCHES=(
"${FILESDIR}/${PN}-0.6-disable_mpltest.patch"
"${FILESDIR}/${PN}-0.6-disable_numpy_warnings_test.patch"
@@ -35,7 +40,13 @@ python_prepare_all() {
 }
 
 python_compile_all() {
-   use doc && esetup.py build_sphinx -w
+   if use doc; then
+   python_setup
+   VARTEXFONTS="${T}"/fonts \
+   MPLCONFIGDIR="${BUILD_DIR}" \
+   PYTHONPATH="${BUILD_DIR}"/lib \
+   esetup.py build_sphinx --no-intersphinx
+   fi
 }
 
 python_test() {
@@ -43,6 +54,6 @@ python_test() {
 }
 
 python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/ )
+   use doc && local HTML_DOCS=( docs/_build/html/. )
distutils-r1_python_install_all
 }



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

2016-03-21 Thread Sebastien Fabbro
commit: eb9adef7aafc4697dd493585bade15e7b49d4ece
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon Mar 21 18:27:23 2016 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Mar 22 00:02:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb9adef7

dev-python/naima: initial import

Package-Manager: portage-2.2.28

 dev-python/naima/Manifest   |  1 +
 dev-python/naima/metadata.xml   | 18 
 dev-python/naima/naima-0.7.1.ebuild | 56 +
 3 files changed, 75 insertions(+)

diff --git a/dev-python/naima/Manifest b/dev-python/naima/Manifest
new file mode 100644
index 000..e79926f
--- /dev/null
+++ b/dev-python/naima/Manifest
@@ -0,0 +1 @@
+DIST naima-0.7.1.tar.gz 4876886 SHA256 
686b0c9ded61099bc0021a9ccd252004c7f56beca2ef32220e54ef8ca007f89a SHA512 
c157be2bb3dfd9ebdedf757a401343f2ca7a338f210686e49119accd75a12fe5172dfa0859ed326d910e1dbb27a09f3f5f40ee8a87d4938a1267024d4f72caa7
 WHIRLPOOL 
ce0dade3afb95a6f004de480f5713d6888d2eea817a0b09b1e9759a56fba8ef52b7c729c0a156f95aa866bc41b6bd004ad451fa5a748158ddfbf5c0bc2130bdd

diff --git a/dev-python/naima/metadata.xml b/dev-python/naima/metadata.xml
new file mode 100644
index 000..4744569
--- /dev/null
+++ b/dev-python/naima/metadata.xml
@@ -0,0 +1,18 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+  
+sci-astron...@gentoo.org
+Gentoo Astronomy Project
+  
+  
+naima is a Python package for computation of non-thermal radiation
+from relativistic particle populations. It includes tools to
+perform MCMC fitting of radiative models to X-ray, GeV, and TeV
+spectra using emcee, an affine-invariant ensemble sampler for
+Markov Chain Monte Carlo.
+  
+  
+naima
+  
+

diff --git a/dev-python/naima/naima-0.7.1.ebuild 
b/dev-python/naima/naima-0.7.1.ebuild
new file mode 100644
index 000..f0dbe3b
--- /dev/null
+++ b/dev-python/naima/naima-0.7.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Python package for gamma-ray astronomy"
+HOMEPAGE="https://gammapy.readthedocs.org/";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="doc test"
+DOCS=( README.rst )
+
+RDEPEND="
+   dev-python/astropy[${PYTHON_USEDEP}]
+   dev-python/emcee[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]"
+
+DEPEND="${RDEPEND}
+   dev-python/astropy-helpers[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+DOCS=( README.rst CHANGES.rst )
+
+python_prepare_all() {
+   sed -e '/auto_use/s/True/False/' -i setup.cfg || die
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   if use doc; then
+   python_setup
+   VARTEXFONTS="${T}"/fonts \
+   MPLCONFIGDIR="${BUILD_DIR}" \
+   PYTHONPATH="${BUILD_DIR}"/lib \
+   esetup.py build_sphinx --no-intersphinx
+   fi
+}
+
+python_test() {
+   esetup.py test
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+   distutils-r1_python_install_all
+}



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

2016-03-21 Thread Sebastien Fabbro
commit: d754e05ab4a805db4949e6070d7f4572091fc6ec
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Mon Mar 21 06:23:29 2016 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Tue Mar 22 00:02:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d754e05a

dev-python/iminuit: added python-3.5 compat and unit tests

Package-Manager: portage-2.2.28

 dev-python/iminuit/iminuit-1.2.ebuild | 28 
 1 file changed, 20 insertions(+), 8 deletions(-)

diff --git a/dev-python/iminuit/iminuit-1.2.ebuild 
b/dev-python/iminuit/iminuit-1.2.ebuild
index c6e00db..7a3e220 100644
--- a/dev-python/iminuit/iminuit-1.2.ebuild
+++ b/dev-python/iminuit/iminuit-1.2.ebuild
@@ -1,17 +1,29 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_{3,4} )
-inherit distutils-r1
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1 virtualx
 
 DESCRIPTION="Minuit numerical function minimization in Python"
 HOMEPAGE="https://github.com/iminuit/iminuit";
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 SLOT="0"
 LICENSE="MIT LGPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-DEPEND="dev-python/cython"
-RDEPEND="${DEPEND}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-python/cython[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+ dev-python/ipython[${PYTHON_USEDEP}]
+ dev-python/matplotlib[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+   virtx esetup.py test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-SSLeay/files/, dev-perl/Crypt-SSLeay/

2016-03-21 Thread Andreas Hüttel
commit: d4b6273a7404bc13344f91a98345fe1c74148146
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Mar 21 22:19:22 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon Mar 21 22:39:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4b6273a

dev-perl/Crypt-SSLeay: Add version compatible with libressl-2.3 (no SSL2, no 
SSL3)

Package-Manager: portage-2.2.28

 .../Crypt-SSLeay/Crypt-SSLeay-0.720.0-r2.ebuild| 40 ++
 .../files/Crypt-SSLeay-0.720.0-no-ssl3.patch   | 40 ++
 2 files changed, 80 insertions(+)

diff --git a/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r2.ebuild 
b/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r2.ebuild
new file mode 100644
index 000..a1b178a
--- /dev/null
+++ b/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0-r2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=NANIS
+DIST_VERSION=0.72
+inherit perl-module
+
+DESCRIPTION="OpenSSL support for LWP"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE="libressl test"
+
+RDEPEND="
+   !libressl? ( >=dev-libs/openssl-0.9.7c:0= )
+   libressl? ( dev-libs/libressl:0= )
+   virtual/perl-MIME-Base64
+"
+
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   >=virtual/perl-ExtUtils-CBuilder-0.280.205
+   virtual/perl-Getopt-Long
+   >=dev-perl/Path-Class-0.260.0
+   >=dev-perl/Try-Tiny-0.190.0
+   test? (
+   >=virtual/perl-Test-Simple-0.190.0
+   )
+"
+# PDEPEND: circular dependencies bug #144761
+PDEPEND="
+   dev-perl/libwww-perl
+   >=dev-perl/LWP-Protocol-https-6.20.0
+"
+
+PATCHES=( "${FILESDIR}"/${PN}-0.720.0-no-ssl3.patch )

diff --git a/dev-perl/Crypt-SSLeay/files/Crypt-SSLeay-0.720.0-no-ssl3.patch 
b/dev-perl/Crypt-SSLeay/files/Crypt-SSLeay-0.720.0-no-ssl3.patch
new file mode 100644
index 000..72febbf
--- /dev/null
+++ b/dev-perl/Crypt-SSLeay/files/Crypt-SSLeay-0.720.0-no-ssl3.patch
@@ -0,0 +1,40 @@
+--- a/SSLeay.xs2014-04-24 07:36:24.0 +
 b/SSLeay.xs2015-12-27 13:39:05.695422091 +
+@@ -45,13 +45,6 @@
+ }
+ #endif
+ 
+-
+-#if SSLEAY_VERSION_NUMBER >= 0x0900
+-#define CRYPT_SSL_CLIENT_METHOD SSLv3_client_method()
+-#else
+-#define CRYPT_SSL_CLIENT_METHOD SSLv2_client_method()
+-#endif
+-
+ static void InfoCallback(const SSL *s,int where,int ret)
+ {
+ const char *str;
+@@ -145,22 +138,7 @@
+ RAND_seed(buf, CRYPT_SSLEAY_RAND_BUFSIZE);
+ }
+ 
+-if(ssl_version == 23) {
+-ctx = SSL_CTX_new(SSLv23_client_method());
+-}
+-else if(ssl_version == 3) {
+-ctx = SSL_CTX_new(SSLv3_client_method());
+-}
+-else {
+-#ifndef OPENSSL_NO_SSL2
+-/* v2 is the default */
+-ctx = SSL_CTX_new(SSLv2_client_method());
+-#else
+-/* v3 is the default */
+-ctx = SSL_CTX_new(SSLv3_client_method());
+-#endif
+-}
+-
++ctx = SSL_CTX_new(SSLv23_client_method());
+ SSL_CTX_set_options(ctx,SSL_OP_ALL|0);
+ SSL_CTX_set_default_verify_paths(ctx);
+ SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, NULL);



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

2016-03-21 Thread Manuel Rüger
commit: 2e867fe18667832b7fa0277aae76ec7962182f73
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 22:12:52 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 22:12:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e867fe1

dev-ruby/cocaine: Remove old

Package-Manager: portage-2.2.28

 dev-ruby/cocaine/Manifest |  2 --
 dev-ruby/cocaine/cocaine-0.5.5.ebuild | 49 ---
 dev-ruby/cocaine/cocaine-0.5.7.ebuild | 49 ---
 3 files changed, 100 deletions(-)

diff --git a/dev-ruby/cocaine/Manifest b/dev-ruby/cocaine/Manifest
index 98ead25..b6a9ace 100644
--- a/dev-ruby/cocaine/Manifest
+++ b/dev-ruby/cocaine/Manifest
@@ -1,3 +1 @@
-DIST cocaine-0.5.5.gem 16384 SHA256 
637de9fc749bf8e55b032155d3d93ecfe30c7c65e958b467324c25c7d4239660 SHA512 
d678a823e610b39fac934584466b7f231ee27387323c953206c09a16ce309d58b941e7750cf5666851dff8f93863c10eae524e725aa6c92e11c70dcc44480a10
 WHIRLPOOL 
ff6a31ca7cdb474902ee7d2a7c4d2aea546b411072509dbab90ecdcfbf6b0fe623ee4a0cba7c685f3898116da25bc35adb4084ffd2e9c2f494cb5ae2b5c4b926
-DIST cocaine-0.5.7.gem 16384 SHA256 
ccf17d0050b63a436524f65608dd1ab993973a19af6ccb6bc3341d0629702f1d SHA512 
6de24020f83b8af27f6b3e49457b9ae5316f282aeab194254fdde8ece0f3b75250c0a63fd127eb304e769e71f85f9e67e4e65e4c0f04ac80a69fc9990fd932cd
 WHIRLPOOL 
25b1843ea59543a40b6296424d4ce26302ef8e4ec8a63821dd22eefa09db9bbd6d9967ff686167e983d95b5316a850106a3b27c666485327f293129b05f4ee2c
 DIST cocaine-0.5.8.gem 17408 SHA256 
ed44cebd5eae70ccdaa2ca926cfe5071c31f8a07d25b63779beb6a7a5a2f7306 SHA512 
0145c1731261db50c1855881da470dfeffdc3bee7cd6c800590507adc7204a31ec178ff6f655866b888eb87b47e1e454415181ec909f2dbe74f8f66277282d3f
 WHIRLPOOL 
083ef476162d8b6dd12452e004e770c216010fc56ba37b3b93939c222eddadc0682895e17eff576d352397d12716ddf20a102d44b173567fad1c6e511912

diff --git a/dev-ruby/cocaine/cocaine-0.5.5.ebuild 
b/dev-ruby/cocaine/cocaine-0.5.5.ebuild
deleted file mode 100644
index d2e6607..000
--- a/dev-ruby/cocaine/cocaine-0.5.5.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A small library for doing command lines"
-HOMEPAGE="http://www.thoughtbot.com/projects/cocaine";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/climate_control:0"
-
-ruby_add_bdepend "
-   test? (
-   >=dev-ruby/activesupport-3  http://www.thoughtbot.com/projects/cocaine";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/climate_control:0"
-
-ruby_add_bdepend "
-   test? (
-   >=dev-ruby/activesupport-3  

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

2016-03-21 Thread Manuel Rüger
commit: 6eeb41fe0d7356124cad55b201716a4d061dcf45
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 22:09:52 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 22:09:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eeb41fe

dev-ruby/simplecov: Remove old

Package-Manager: portage-2.2.28

 dev-ruby/simplecov/Manifest|  1 -
 dev-ruby/simplecov/simplecov-0.11.1.ebuild | 43 --
 2 files changed, 44 deletions(-)

diff --git a/dev-ruby/simplecov/Manifest b/dev-ruby/simplecov/Manifest
index 4c7f5bb..2923961 100644
--- a/dev-ruby/simplecov/Manifest
+++ b/dev-ruby/simplecov/Manifest
@@ -1,2 +1 @@
-DIST simplecov-0.11.1.gem 54272 SHA256 
90b822809b69f25a39a44719e6b6d163570be58ff2739b91e92126f0a3f52fb7 SHA512 
b7132a7ba76aa35d6961925d68dda240fc3efab8f0c0ad87403a49bf5f7324bef7b3a368fd9047c6b5561a532f12f9b42f743f56385af53ae64871407be29f33
 WHIRLPOOL 
65226e18886c04bcd61eaf6a0f853c30b8d633e7b7f025495b0d6e9d96c1a3d6e5e319a7fdc8d497f456e9e406e602e5a68bae31125fd71cd09ea1339f98440f
 DIST simplecov-0.11.2.gem 54784 SHA256 
82e330864f84955d6c443e7d233474e91731b2850ba35b21997a8aad798712dc SHA512 
c93ea47a6e3c9b62fd83adf1e480da66fc82ce50106b1749a9d94b7e90ef2aaf34c14c67b1ac12268765695da62895b12f060051a05c26dac41ed7df7575e3f3
 WHIRLPOOL 
34b891f608fcf3c2d021a96952be0f19c45b643ee8b5d58dfb102f8211a1fbd07e6a8a54a296a8ef0ae39f22bfcf797aad9ea979e1a9d0654335c272cec33be2

diff --git a/dev-ruby/simplecov/simplecov-0.11.1.ebuild 
b/dev-ruby/simplecov/simplecov-0.11.1.ebuild
deleted file mode 100644
index 974bcee..000
--- a/dev-ruby/simplecov/simplecov-0.11.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_TASK_DOC=""
-
-inherit ruby-fakegem
-
-DESCRIPTION="Code coverage with a configuration library and automatic merging 
of coverage across test suites"
-HOMEPAGE="https://www.ruby-toolbox.com/projects/simplecov 
https://github.com/colszowka/simplecov";
-LICENSE="MIT"
-
-KEYWORDS="~amd64"
-SLOT="0.8"
-IUSE="doc"
-
-ruby_add_rdepend ">=dev-ruby/multi_json-1.0
-   dev-ruby/simplecov-html:0.10
-   >=dev-ruby/docile-1.1.0"
-
-ruby_add_bdepend "test? (
-   dev-ruby/rspec:3
-   dev-ruby/test-unit:2
-   dev-util/cucumber
-   dev-util/aruba
-   dev-ruby/capybara
-)"
-
-all_ruby_prepare() {
-   sed -i -e '/[Bb]undler/ s:^:#:' spec/helper.rb features/support/env.rb 
|| die
-}
-
-each_ruby_test() {
-   RSPEC_VERSION=3 ruby-ng_rspec spec/*spec.rb || die
-
-#  ${RUBY} -S cucumber features || die
-}



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

2016-03-21 Thread Manuel Rüger
commit: 46c0842b2623e076c86780aebf79cca8097ca30e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 22:10:59 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 22:10:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46c0842b

dev-ruby/kramdown: Remove ruby19, fix description

Package-Manager: portage-2.2.28

 dev-ruby/kramdown/kramdown-1.4.2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/kramdown/kramdown-1.4.2.ebuild 
b/dev-ruby/kramdown/kramdown-1.4.2.ebuild
index 9ecc881..c3d7213 100644
--- a/dev-ruby/kramdown/kramdown-1.4.2.ebuild
+++ b/dev-ruby/kramdown/kramdown-1.4.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby20 ruby21"
 
 RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS CONTRIBUTERS"
 
@@ -11,7 +11,7 @@ RUBY_FAKEGEM_EXTRAINSTALL="data"
 
 inherit ruby-fakegem
 
-DESCRIPTION="Yet-another-markdown-parser but fast, pure Ruby, using a strict 
syntax definition"
+DESCRIPTION="Yet-another-markdown-parser but fast, pure Ruby, using strict 
syntax definition"
 HOMEPAGE="http://kramdown.rubyforge.org/";
 
 LICENSE="MIT"



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

2016-03-21 Thread Manuel Rüger
commit: 9390c4a73588d9390783fc3fe0126a7e788d9fed
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 22:08:55 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 22:08:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9390c4a7

dev-ruby/rack-cache: Remove ruby19, fix description

Package-Manager: portage-2.2.28

 dev-ruby/rack-cache/rack-cache-1.3.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/rack-cache/rack-cache-1.3.0.ebuild 
b/dev-ruby/rack-cache/rack-cache-1.3.0.ebuild
index ec430df..fc2280b 100644
--- a/dev-ruby/rack-cache/rack-cache-1.3.0.ebuild
+++ b/dev-ruby/rack-cache/rack-cache-1.3.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 # no documentation is generable, it needs hanna, which is broken
 RUBY_FAKEGEM_RECIPE_DOC="none"
@@ -14,7 +14,7 @@ RUBY_FAKEGEM_EXTRADOC="CHANGES README.md doc/*"
 
 inherit versionator ruby-fakegem
 
-DESCRIPTION="A drop-in component to enable HTTP caching for Rack-based 
applications that produce freshness info"
+DESCRIPTION="Enable HTTP caching for Rack-based applications that produce 
freshness info"
 HOMEPAGE="https://github.com/rtomayko/rack-cache";
 SRC_URI="https://github.com/rtomayko/rack-cache/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 



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

2016-03-21 Thread Manuel Rüger
commit: 221119bf85963b4d96ed4a85a94a68c78d321ac5
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 22:07:00 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 22:07:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=221119bf

dev-ruby/activeldap: Fix description

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/activeldap/activeldap-3.2.2.ebuild 
b/dev-ruby/activeldap/activeldap-3.2.2.ebuild
index e6871ae..caf52c0 100644
--- a/dev-ruby/activeldap/activeldap-3.2.2.ebuild
+++ b/dev-ruby/activeldap/activeldap-3.2.2.ebuild
@@ -12,7 +12,7 @@ RUBY_FAKEGEM_EXTRAINSTALL="po"
 inherit ruby-fakegem
 
 MY_P="${P/ruby-/}"
-DESCRIPTION="Ruby/ActiveLDAP provides an activerecord inspired object oriented 
interface to LDAP"
+DESCRIPTION="ActiveLDAP provides an activerecord inspired object oriented 
interface to LDAP"
 HOMEPAGE="https://github.com/activeldap/activeldap";
 
 LICENSE="GPL-2"



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

2016-03-21 Thread Manuel Rüger
commit: dfd37a77faadf18967e06f73dbcb115b35bec103
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 22:06:16 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 22:07:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfd37a77

dev-ruby/activeldap: Remove old

Package-Manager: portage-2.2.28

 dev-ruby/activeldap/Manifest   |  1 -
 dev-ruby/activeldap/activeldap-4.0.4-r1.ebuild | 40 --
 2 files changed, 41 deletions(-)

diff --git a/dev-ruby/activeldap/Manifest b/dev-ruby/activeldap/Manifest
index 862ad18..ab0746d 100644
--- a/dev-ruby/activeldap/Manifest
+++ b/dev-ruby/activeldap/Manifest
@@ -1,3 +1,2 @@
 DIST activeldap-3.2.2.gem 218624 SHA256 
2c8f1c5ca5d32ef6c98cc9ad00933a10b3ed9fc0d77eaea504a5615e6e37ece0 SHA512 
f3a802fa1e05b2140fc0c14035ce4ec7037496a2de50908a1143bf3a2c89cf9de6a339ead075b38e7f8b8f7f78314cfd9fe414b64e71e89bdd8dce6b9ab7a1ad
 WHIRLPOOL 
a07beca35e89738cc1fa39c5cfd193a63240708ab857812795fe02c148e73ef2e9e1865e286d82608c8fbbf78e4f87c6afc66f8a506b0de51550a0dd006bff6a
-DIST activeldap-4.0.4.gem 223744 SHA256 
837f2a3b3249a0be1c53d4b063422a1cf021cf9f746b8dbce4d4fefbcb7460fb SHA512 
24ca2c07ecab2d1b96b7837366e510e5cc53f7081e3a92b2c0962281d88453c5cfc65d837a2439b096fd3b517182d02f0507deca4cf694d80736d8192479a91b
 WHIRLPOOL 
8decf4dc0b4c1101f87444ac8f43f35db916752635a8a61daf4e63a7bb57104cdfc3c5de3d41f062b840d314908f21328eebaf4a5cdb37876fb379000704b1d0
 DIST activeldap-4.0.5.gem 224768 SHA256 
bcae4c7eea8250c3daf819209c7f269d531dc7741c68e8e5d57cad2bc951a49d SHA512 
bf311997d96e90af796e70870a8b24da884547d6f8db7658a5093470261e6fd70585bca527f21447397aee1f1baaa91c79117884efbf70f4d976adcde025db80
 WHIRLPOOL 
ea5adf3256ff99478a2a2d4aa6e0d856c8e9c27a269a22fe6d1856439d40d869a563c789c5aa10a8b61da2d7bc7193ba93cae1bc51b598633bd2429ae3e124ba

diff --git a/dev-ruby/activeldap/activeldap-4.0.4-r1.ebuild 
b/dev-ruby/activeldap/activeldap-4.0.4-r1.ebuild
deleted file mode 100644
index aa58683..000
--- a/dev-ruby/activeldap/activeldap-4.0.4-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.textile TODO doc/text/*"
-RUBY_FAKEGEM_EXTRAINSTALL="po"
-
-inherit ruby-fakegem
-
-MY_P="${P/ruby-/}"
-DESCRIPTION="Ruby/ActiveLDAP provides an activerecord inspired object oriented 
interface to LDAP"
-HOMEPAGE="https://github.com/activeldap/activeldap";
-
-LICENSE="GPL-2"
-SLOT="4"
-KEYWORDS="~amd64"
-IUSE=""
-
-# Most tests require a live LDAP server to run.
-RESTRICT="test"
-
-ruby_add_rdepend "
-   >dev-ruby/activemodel-4.0.0:*
-   dev-ruby/locale
-   dev-ruby/ruby-gettext
-   dev-ruby/gettext_i18n_rails
-   || ( >=dev-ruby/ruby-ldap-0.8.2 dev-ruby/ruby-net-ldap )"
-
-all_ruby_install() {
-   all_fakegem_install
-
-   dodoc doc/text/*
-
-   insinto /usr/share/doc/${PF}
-   doins -r examples
-}



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

2016-03-21 Thread Anthony G. Basile
commit: 42a9edfa1957985f083ba7d0bb49e5d764693c92
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 22:05:42 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 22:05:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42a9edfa

app-arch/xar: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-arch/xar/xar-1.5.2-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/xar/xar-1.5.2-r2.ebuild b/app-arch/xar/xar-1.5.2-r2.ebuild
index b753675..16e909a 100644
--- a/app-arch/xar/xar-1.5.2-r2.ebuild
+++ b/app-arch/xar/xar-1.5.2-r2.ebuild
@@ -16,8 +16,8 @@ KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-li
 IUSE="acl +bzip2 libressl"
 
 DEPEND="
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
dev-libs/libxml2
sys-libs/zlib
acl? ( sys-apps/acl )



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

2016-03-21 Thread Manuel Rüger
commit: 06cc6a76a7d83ed667be6308dafe1f3331cb2639
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 22:04:58 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 22:05:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06cc6a76

dev-ruby/celluloid: Fix desc

Package-Manager: portage-2.2.28

 dev-ruby/celluloid/celluloid-0.16.0-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/celluloid/celluloid-0.16.0-r1.ebuild 
b/dev-ruby/celluloid/celluloid-0.16.0-r1.ebuild
index 104e507..1b0e20b 100644
--- a/dev-ruby/celluloid/celluloid-0.16.0-r1.ebuild
+++ b/dev-ruby/celluloid/celluloid-0.16.0-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 # rbx or jruby recommended, but only in 1.9 mode.
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby20 ruby21"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 #Needed by dev-ruby/listen
@@ -16,7 +16,7 @@ RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
 
 inherit ruby-fakegem
 
-DESCRIPTION="Celluloid provides a simple and natural way to build 
fault-tolerant concurrent programs in Ruby"
+DESCRIPTION="Provides a simple and natural way to build fault-tolerant 
concurrent programs"
 HOMEPAGE="https://github.com/celluloid/celluloid";
 SRC_URI="https://github.com/celluloid/celluloid/archive/v${PV}.tar.gz -> 
${P}-git.tgz"
 IUSE=""



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

2016-03-21 Thread Patrice Clement
commit: b301b35f46b3c689db3c262dfc2c4b2baab2e76a
Author: Abheek Ghosh  gmail  com>
AuthorDate: Sun Mar 13 09:06:03 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Mar 21 21:51:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b301b35f

dev-libs/ocl-icd: fix dev-lang/ruby dependency

ocl-icd requires dev-ruby/rubygems to build.
version 2.2.3 and 2.2.8 fixed.

Gentoo-Bug: https://bugs.gentoo.org/577266
Closes: https://github.com/gentoo/gentoo/pull/1038

 dev-libs/ocl-icd/ocl-icd-2.2.3.ebuild | 3 ++-
 dev-libs/ocl-icd/ocl-icd-2.2.8.ebuild | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-libs/ocl-icd/ocl-icd-2.2.3.ebuild 
b/dev-libs/ocl-icd/ocl-icd-2.2.3.ebuild
index 1cd0749..e8b5685 100644
--- a/dev-libs/ocl-icd/ocl-icd-2.2.3.ebuild
+++ b/dev-libs/ocl-icd/ocl-icd-2.2.3.ebuild
@@ -15,7 +15,8 @@ KEYWORDS="~amd64 ~x86"
 
 IUSE=""
 
-DEPEND="dev-lang/ruby"
+DEPEND="dev-lang/ruby
+dev-ruby/rubygems"
 RDEPEND="app-eselect/eselect-opencl"
 
 src_prepare() {

diff --git a/dev-libs/ocl-icd/ocl-icd-2.2.8.ebuild 
b/dev-libs/ocl-icd/ocl-icd-2.2.8.ebuild
index 20cd5fb..d8daeee 100644
--- a/dev-libs/ocl-icd/ocl-icd-2.2.8.ebuild
+++ b/dev-libs/ocl-icd/ocl-icd-2.2.8.ebuild
@@ -15,7 +15,8 @@ KEYWORDS="~amd64 ~x86"
 
 IUSE=""
 
-DEPEND="dev-lang/ruby"
+DEPEND="dev-lang/ruby
+dev-ruby/rubygems"
 RDEPEND="app-eselect/eselect-opencl"
 
 src_prepare() {



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

2016-03-21 Thread Anthony G. Basile
commit: 9be2393f50ed115c7e17daae59fd60fefb314e6d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 22:03:34 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 22:03:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9be2393f

app-arch/unshield: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-arch/unshield/unshield-0.6_p20120308-r1.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-arch/unshield/unshield-0.6_p20120308-r1.ebuild 
b/app-arch/unshield/unshield-0.6_p20120308-r1.ebuild
index 778549d..82270ae 100644
--- a/app-arch/unshield/unshield-0.6_p20120308-r1.ebuild
+++ b/app-arch/unshield/unshield-0.6_p20120308-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=4
+EAPI=5
 inherit autotools eutils
 
 DESCRIPTION="InstallShield CAB file extractor"
@@ -15,8 +15,8 @@ KEYWORDS="~amd64 ~hppa ~ppc ~x86"
 IUSE="libressl static-libs"
 
 RDEPEND="
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
sys-libs/zlib"
 DEPEND="${RDEPEND}"
 



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

2016-03-21 Thread Manuel Rüger
commit: d6a0093be32e744a076127703f0442ad966d30fa
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 21:55:32 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 21:55:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6a0093b

dev-ruby/gpgme: Remove old

Package-Manager: portage-2.2.28

 dev-ruby/gpgme/Manifest|  2 --
 dev-ruby/gpgme/gpgme-2.0.10.ebuild | 55 --
 dev-ruby/gpgme/gpgme-2.0.11.ebuild | 55 --
 3 files changed, 112 deletions(-)

diff --git a/dev-ruby/gpgme/Manifest b/dev-ruby/gpgme/Manifest
index a46db3c..4c7b07a 100644
--- a/dev-ruby/gpgme/Manifest
+++ b/dev-ruby/gpgme/Manifest
@@ -1,3 +1 @@
-DIST ruby-gpgme-2.0.10.tar.gz 2377398 SHA256 
0c7d6a2ef57a1bcad7dc0d9175966ca3e70fc0fcb9f23e1758d55bc357be1129 SHA512 
825ab9bb5472c63d0d0060b3d5915f03c2cd0a567747fd1d66f2bd34caa6e99965ebbbf22e914bce2c3eb035ff32339bd3f5748b83e4968a7401012bdbcd8a6a
 WHIRLPOOL 
bd31b812e835e8fe82ba1b815c9da8f0a1afe83056327c7d1273b8a8b5dec9aecdfee79a867051e4da04abcb497e48eee01bd975d109afd665fec4cfa891d33c
-DIST ruby-gpgme-2.0.11.tar.gz 2414945 SHA256 
13357d6f89b3c5d11ea5edbec3ceab3046c4fbf87dd62bc6128eebd9e384e4de SHA512 
4cada80cba836aa53033fd416677e7cde0572d15dbca0f1c88cde336526c4a0a028dd1dc044aa70441c8e624af2135f87d9d7c498f16c5c9b207a6814588
 WHIRLPOOL 
550aee64df283d5a8601783f1c6981a15e06bfdd8f21a594799c89fa9724ba3cb477462b6c7829e697760c73e3452c638212611f8a16239a97d9fd4c2a24
 DIST ruby-gpgme-2.0.12.tar.gz 2414972 SHA256 
74a2d94b1298e55212547f06c30a7334b5eef23961e2cafa3017622d27bcf275 SHA512 
7c98defc69fbcee37af654d7f13110ca10663da15f40b2b558c32c1695caaa6b4ec2c65c9c6dcb1a60b9dc955d11226776d4ec7db978847b74638cda3274644e
 WHIRLPOOL 
97c307e0c08c5d74b2bf4a528a7d2df5dd52512b8ea318c53a1683e8f9496864578c35d4eb9556ce5fd6ded8578afb85bede938dbd9e8ae792b3b07df6bb8ef2

diff --git a/dev-ruby/gpgme/gpgme-2.0.10.ebuild 
b/dev-ruby/gpgme/gpgme-2.0.10.ebuild
deleted file mode 100644
index 578a8a0..000
--- a/dev-ruby/gpgme/gpgme-2.0.10.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="NEWS README.rdoc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-ng ruby-fakegem flag-o-matic
-
-DESCRIPTION="Ruby language binding for GnuPG Made Easy"
-HOMEPAGE="https://github.com/ueno/ruby-gpgme";
-SRC_URI="https://github.com/ueno/ruby-gpgme/archive/${PV}.tar.gz -> 
ruby-${P}.tar.gz"
-RUBY_S="ruby-${P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND+=">=app-crypt/gpgme-1.1.3"
-RDEPEND+=">=app-crypt/gpgme-1.1.3"
-
-ruby_add_bdepend "test? ( dev-ruby/mocha:0.14 )"
-
-all_ruby_prepare() {
-   sed -i -e '/\(coverall\|bundler\|ruby-debug\|byebug\)/I s:^:#:' \
-   -e '3igem "mocha", "~> 0.14"' \
-   test/test_helper.rb || die
-
-   # Remove failing tests for now. This package was added without
-   # running any tests :-(
-   rm -f test/{ctx,crypto}_test.rb || die
-
-   sed -i -e '/portile/d' ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-each_ruby_configure() {
-   append-flags -fPIC
-   export RUBY_GPGME_USE_SYSTEM_LIBRARIES=1
-   ${RUBY} -C ext "${S}/ext/gpgme/extconf.rb" || die "extconf.rb failed"
-}
-
-each_ruby_compile() {
-   emake V=1 -C ext archflag="${LDFLAGS}" || die "emake failed"
-   cp -f "${S}/ext/gpgme_n.so" "${S}/lib" || die
-}
-
-each_ruby_test() {
-   ${RUBY} -Ilib:test:. -e 'Dir["test/*_test.rb"].each{|f| require f}' || 
die
-}

diff --git a/dev-ruby/gpgme/gpgme-2.0.11.ebuild 
b/dev-ruby/gpgme/gpgme-2.0.11.ebuild
deleted file mode 100644
index 09a0e7b..000
--- a/dev-ruby/gpgme/gpgme-2.0.11.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="NEWS README.rdoc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-ng ruby-fakegem flag-o-matic
-
-DESCRIPTION="Ruby language binding for GnuPG Made Easy"
-HOMEPAGE="https://github.com/ueno/ruby-gpgme";
-SRC_URI="https://github.com/ueno/ruby-gpgme/archive/${PV}.tar.gz -> 
ruby-${P}.tar.gz"
-RUBY_S="ruby-${P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND+=">=app-crypt/gpgme-1.1.3"
-RDEPEND+=">=app-crypt/gpgme-1.1.3"
-
-ruby_add_bdepend "test? ( dev-ruby/mocha:0.14 )"
-
-all_ruby_prepare() {
-   sed -i -e '/\(coverall\|bundler\|ruby-debug\|byebug\)/I s:^:#:' \
-   -e '3igem "mocha", "~> 0.14"' \
-   test/test_helper.rb || die
-
-   # Remove failing tests for now. This package was added without
-   # running any tests :-(
-   rm -f test/{ctx,crypto}_test.rb || die
-
-  

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

2016-03-21 Thread Manuel Rüger
commit: 83449c54528bab9416980eb496f31c99e866d258
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 21:51:27 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 21:53:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83449c54

dev-ruby/git: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/git/git-1.2.9.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/git/git-1.2.9.1.ebuild b/dev-ruby/git/git-1.2.9.1.ebuild
index a30883a..0047d22 100644
--- a/dev-ruby/git/git-1.2.9.1.ebuild
+++ b/dev-ruby/git/git-1.2.9.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20"
+USE_RUBY="ruby20"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 



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

2016-03-21 Thread Manuel Rüger
commit: d0737c081086c299254e9493f11b340e8f8c51f6
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 21:53:04 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 21:53:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0737c08

dev-ruby/globalid: Remove old

Package-Manager: portage-2.2.28

 dev-ruby/globalid/Manifest  |  2 --
 dev-ruby/globalid/globalid-0.3.3.ebuild | 23 ---
 dev-ruby/globalid/globalid-0.3.5.ebuild | 23 ---
 3 files changed, 48 deletions(-)

diff --git a/dev-ruby/globalid/Manifest b/dev-ruby/globalid/Manifest
index 4390edd..ec0adba 100644
--- a/dev-ruby/globalid/Manifest
+++ b/dev-ruby/globalid/Manifest
@@ -1,3 +1 @@
-DIST globalid-0.3.3.tar.gz 13910 SHA256 
87e7688522862313293dded6d7495a7b05a8215ba62482789dded64cf5cccd3f SHA512 
67a77c972380bc8f99057fa9c3ea741186b630a7ee3c6b9f7dd892f17a11fd50349ff1760c397d391fd2bf16ab67b3905b4c3f57d724eb0fa83de6d4a3b0f6c8
 WHIRLPOOL 
306686b82354d5e1f502b0d71713c3d01c44e1519308c001edae9d85da1c57266a53aae8ddda8378452d960138d0dc09648e73d787da6221112011cc841f
-DIST globalid-0.3.5.tar.gz 14421 SHA256 
b431c34025ce96e85549a2a4c85900747c34983221cea681b5e8a7ed5ef939de SHA512 
e5a16ed448508dea242aaeea3fe8680a003a33ebe2f9dbe8458d3087a1692ae529793fe8b007062f9e467b9f80887600448bdbb22e8a0b498c5c5ff641e6763d
 WHIRLPOOL 
489e50f6f7824023c5d130d7d3b04a956a17dc3a92628012e9942c4493aa83b3ee0a7394ab246970fd81a3e61185bcba81a7e8c313f330b8fe8c3f70a5001565
 DIST globalid-0.3.6.tar.gz 15313 SHA256 
42657a34549f12d39db2127b24d50af85cc8aaace91d81149bab6d598a7e9269 SHA512 
82b7032c45a94d2d1efe4330689862304bca85fa96041d8077106033e3de9a7c479b437a33a83f3db25347b44b804cf79d72a23b9da7c6f809bcae54ae9d27d8
 WHIRLPOOL 
5158442be849bd20b178718499652c2bdd448677365becc908e303b8620d215f156c2db7f20ab7131e12ccc48fef600ba6067d7da393e62640031f6c607a6eca

diff --git a/dev-ruby/globalid/globalid-0.3.3.ebuild 
b/dev-ruby/globalid/globalid-0.3.3.ebuild
deleted file mode 100644
index 8aace3d..000
--- a/dev-ruby/globalid/globalid-0.3.3.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Reference models by URI"
-HOMEPAGE="https://github.com/rails/globalid";
-SRC_URI="https://github.com/rails/globalid/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/bundler >=dev-ruby/activemodel-4.1.0 
>=dev-ruby/railties-4.1.0 )"
-ruby_add_rdepend ">=dev-ruby/activesupport-4.1.0"

diff --git a/dev-ruby/globalid/globalid-0.3.5.ebuild 
b/dev-ruby/globalid/globalid-0.3.5.ebuild
deleted file mode 100644
index c4a9e66..000
--- a/dev-ruby/globalid/globalid-0.3.5.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Reference models by URI"
-HOMEPAGE="https://github.com/rails/globalid";
-SRC_URI="https://github.com/rails/globalid/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/bundler >=dev-ruby/activemodel-4.1.0 
>=dev-ruby/railties-4.1.0 )"
-ruby_add_rdepend ">=dev-ruby/activesupport-4.1.0:*"



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

2016-03-21 Thread Manuel Rüger
commit: 9f49b683281e4441288c2e41f4ee8a1b14a5b3d8
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 21:50:20 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 21:53:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f49b683

dev-ruby/git: Remove old

Package-Manager: portage-2.2.28

 dev-ruby/git/git-1.2.9.1-r1.ebuild | 38 --
 1 file changed, 38 deletions(-)

diff --git a/dev-ruby/git/git-1.2.9.1-r1.ebuild 
b/dev-ruby/git/git-1.2.9.1-r1.ebuild
deleted file mode 100644
index 56d622a..000
--- a/dev-ruby/git/git-1.2.9.1-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md"
-
-RUBY_FAKEGEM_GEMSPEC="git.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Library for using Git in Ruby"
-HOMEPAGE="https://github.com/schacon/ruby-git";
-SRC_URI="https://github.com/schacon/ruby-git/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-RUBY_S="ruby-git-${PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE="test"
-
-DEPEND+="test? ( >=dev-vcs/git-1.6.0.0 app-arch/tar )"
-RDEPEND+=">=dev-vcs/git-1.6.0.0"
-
-ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )"
-
-all_ruby_prepare() {
-   # Needs test-unit, the test-unit version distributed with ruby19 is
-   # not good enough.
-   sed -i -e '3igem "test-unit"' Rakefile || die
-
-   # Don't use hardcoded /tmp directory.
-   sed -i -e "s:/tmp:${TMPDIR}:" tests/units/test_archive.rb 
tests/test_helper.rb || die
-}



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

2016-03-21 Thread Patrice Clement
commit: 822c7bed09f122334a63043bc1d15c8e7c87cb71
Author: Thomas D  whissi  de>
AuthorDate: Mon Mar 21 21:21:37 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Mar 21 21:37:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=822c7bed

net-firewall/shorewall: Version bump.

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1108

 net-firewall/shorewall/Manifest| 14 +++---
 .../{shorewall-5.0.6.1.ebuild => shorewall-5.0.6.2.ebuild} |  0
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/net-firewall/shorewall/Manifest b/net-firewall/shorewall/Manifest
index 275d23b..29c0df6 100644
--- a/net-firewall/shorewall/Manifest
+++ b/net-firewall/shorewall/Manifest
@@ -1,14 +1,14 @@
 DIST shorewall-5.0.4.tar.bz2 482227 SHA256 
34a4ab3e4ded052cb563a280f07f350616db913ded124bfceb39adb325f1ce0a SHA512 
7912d46e794b4facf29d290370a5cbad83a568873d8aca1b6efe7856c1420a7da882957d16bd4d376d9e7c69accb5263bfa0dd73af06f3c85eab41a0e244c362
 WHIRLPOOL 
eb7351b01c9a3c709179eb6e21d6bb54935a11c066fb31588a1b90c9a089eac7e2d8387006f436c2a68c1618847f5ea69c65e8233240a8d3c8352e0a4d685dc9
-DIST shorewall-5.0.6.1.tar.bz2 486468 SHA256 
994771e9382d3d8aa13c320f1d728f517a27410d782acb859c4e3f3a00b5980e SHA512 
84a82a3b777e72f954d235b3e2204315dae7109531307d68516683ba3b0889abe1511085a2dca4bf4c03a72d72dd672eaef7b76022be4491f4e786c83fb2fb6c
 WHIRLPOOL 
92d669ef23500a488a727be039777aa4af9dde90e74af79e8e538f79a69608c9cba13a6a373081536d3f583ae49aad9ec8de05879d40c98f190df5c0f16a9cf2
+DIST shorewall-5.0.6.2.tar.bz2 485616 SHA256 
efb0136a21ee7bd61670b2f14b11acd1c10302d70a56d42b3bdfbd880ba8afc1 SHA512 
f605d5157d3b84b4607aaf449e99363dd13e1e3acc1b8902a12d0b395427b6bdcf4681b54503904397aa6141b6bd2e86bf1cf5e9bc2cf2318a1c814de1fdca18
 WHIRLPOOL 
b08e5c3f29599dff4788e0e2365a5e152eec1f1c59c6c9a10ec754be03c0273df2a2e8bf03491df5095b0a8427fe75b510c695bf4f6d03a9d936b8ba19c8a823
 DIST shorewall-core-5.0.4.tar.bz2 50604 SHA256 
ea80b9e1854033c723a5321fc920b35aa0ebb0dea3721a47cee616aa3b92ed9f SHA512 
1db3b7a44bf2f99d1a9c6775c798285bbc9a4bec5a340a10fd762600c01486f90d305297247cceb451616e852d9deb89163a43082e06f9eadad75cdd5d480a21
 WHIRLPOOL 
bb4cea303c7ea1190ec3788f9e7cab4f0febf88ab5047c18adbe9e88476c5ebe569bd3ead6105131a61ac6c31bdab6d3192383e1709847e637220f223a8875b9
-DIST shorewall-core-5.0.6.1.tar.bz2 52604 SHA256 
9e7bb2d5abf02395c7f0f8753d0aba0019776bb35657b2d5171bf2bb09c98a94 SHA512 
01340ce77a90c86009dd4e81a2ccb494394b935602e22f6a16221e98e540df5338b76d840d1e197ab023903d18f8d785e54dbb3a824b869a2d00b3860041cbe1
 WHIRLPOOL 
cfdb7065c549d88e7e914f1377ef4a9b81be3574cb13dbffac3d5f385dddb6e08935ad3836bdc5b0514f2372b8ee6d6b13160e04bfd705b8ea7edceb93f647a6
+DIST shorewall-core-5.0.6.2.tar.bz2 52826 SHA256 
df9523f71e861154846793a04cce9fde76b9e0cc12a7333ae3a9b9ea8880 SHA512 
01911d2a690e3b3514386bb8b3227d4dbb24ed5d1f9b5bba5b210e57df3c16ece5d037ce447238919f800545ba1e4b6a02a483db19b3360301d287508b759be9
 WHIRLPOOL 
22bc3f6b61ab9b653ca32d712250f2b4dccf45aee276ee5b72215e69c4b01b2acdafb7d24ef7bc4e2eecb0e2fb5aa99dd09f6bad90ddb0b5dcfe21e7e6b0d5b0
 DIST shorewall-docs-html-5.0.4.tar.bz2 4263406 SHA256 
501d76f53d6e638aaa14ab60718fa173ef0c3a7756e325326288c353d2845707 SHA512 
7e35191fbd5a1b7f0172880fa03ce95f4ac13da3a481c4c2cace83380bcacd23809c56ea12876e55c6d2371a4c88ba44d6a8a600c83481156294ff1a2a48c0e4
 WHIRLPOOL 
347666e97898ea19af93aef3fb2852b1453791038fa534bb5cad8e96acff75460cb5527389b726f7e09d4721a7b171ca9d2171ac5704f8fa50e172d7ac403929
-DIST shorewall-docs-html-5.0.6.1.tar.bz2 4267130 SHA256 
92751d57e9d54d8b0330ae38e65f7d8b1230d0bb9559fc922efa32361be69c08 SHA512 
f78e0e5a288a4ae29437ae74f8286a55332448ea2d65ec3640231319d5a29bccebf06195948452960562c425123d8c76f60414a1f8b6975443afcb8594b9b6a9
 WHIRLPOOL 
61113a39d44bcb20d7c7b551178f8175c2fdc417c07ae66739928b23d8a42c95975b86285473ac052a62e2bccbd05f660392224cb50896f58ae4ebf5432eebf4
+DIST shorewall-docs-html-5.0.6.2.tar.bz2 4267172 SHA256 
9df20309476abef09a34c0d582125a56d7880affb7e7eeaef4cb2275b18404e3 SHA512 
9e9cdcd87d33b848530ca2df89028b5cf65e279e01a476d4c1c85af8a76442f31e0890e3f72ba215b6f89b61745d157d157643467d07a1ba0bd7f1afca301b92
 WHIRLPOOL 
d369aa0655766252d1e513363805d3393a7b9d9bfc4e08dc2d50fc7fdcc72233645e61dced783a141b2f332529038280e38364d86c5b5d439946cf3ff1466a03
 DIST shorewall-init-5.0.4.tar.bz2 29902 SHA256 
97c99c9e68f2546139f26f1f713e1a3377754e53bf2ba0d8f431469aed47ee9c SHA512 
67a66ba6db64a320192f5affa38fb779c1f7d7b915523fe82e4dc8a79bb6590b8da62979f9108ba3f56beef05c1cddb5bb2ffea21317e516c2d8a380a5117567
 WHIRLPOOL 
b4f7875ed0f52d8667135dc7204b1a570dec351a7d3fb42a37618af3d54b808355b4479bfb3421d29d4ab808aeae37cd3f1d12b66046f96ec80f776e796d86c7
-DIST shorewall-init-5.0.6.1.tar.bz2 31591 SHA256 
bade0018e12546c6665024918d361d8f00d24624e7d601dc38984334b5629426 SHA512 
3c33616b5e6baa1fd0876273b9b5c7a762a3adf026279d94f58ed6d92460cd2665792eba5b923c187d974a51cba138a77f6131af4d28c4ff7e57c0b484

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

2016-03-21 Thread Patrice Clement
commit: c21c9c1bca51be78522c31f746faad9c52393250
Author: Thomas D  whissi  de>
AuthorDate: Mon Mar 21 21:20:29 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Mar 21 21:37:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c21c9c1b

net-firewall/shorewall: Clean up old.

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1108

 net-firewall/shorewall/Manifest |   7 -
 net-firewall/shorewall/shorewall-5.0.2.1.ebuild | 446 
 2 files changed, 453 deletions(-)

diff --git a/net-firewall/shorewall/Manifest b/net-firewall/shorewall/Manifest
index 4fc0d74..275d23b 100644
--- a/net-firewall/shorewall/Manifest
+++ b/net-firewall/shorewall/Manifest
@@ -1,21 +1,14 @@
-DIST shorewall-5.0.2.1.tar.bz2 478874 SHA256 
10136cf586b620abdad1f3c716f03d1160cfa65c8461fba42d858fa1ab8d5856 SHA512 
54589366a7743b9e8035a13b83a77e80a319531e07c803fd88ea31d2023445b9a63b99e0ad030997f43cb49050dfc4b0c94af2ec6c6631249fc1a2354d5565c1
 WHIRLPOOL 
559f916008b04c6779b50185e123274c8a20994c3ade58789ee840c5d9e13c7dba3e0885b3babd7a187aeb19a25b4ea8a6e151270fed3f363ce4d14d0fe749fc
 DIST shorewall-5.0.4.tar.bz2 482227 SHA256 
34a4ab3e4ded052cb563a280f07f350616db913ded124bfceb39adb325f1ce0a SHA512 
7912d46e794b4facf29d290370a5cbad83a568873d8aca1b6efe7856c1420a7da882957d16bd4d376d9e7c69accb5263bfa0dd73af06f3c85eab41a0e244c362
 WHIRLPOOL 
eb7351b01c9a3c709179eb6e21d6bb54935a11c066fb31588a1b90c9a089eac7e2d8387006f436c2a68c1618847f5ea69c65e8233240a8d3c8352e0a4d685dc9
 DIST shorewall-5.0.6.1.tar.bz2 486468 SHA256 
994771e9382d3d8aa13c320f1d728f517a27410d782acb859c4e3f3a00b5980e SHA512 
84a82a3b777e72f954d235b3e2204315dae7109531307d68516683ba3b0889abe1511085a2dca4bf4c03a72d72dd672eaef7b76022be4491f4e786c83fb2fb6c
 WHIRLPOOL 
92d669ef23500a488a727be039777aa4af9dde90e74af79e8e538f79a69608c9cba13a6a373081536d3f583ae49aad9ec8de05879d40c98f190df5c0f16a9cf2
-DIST shorewall-core-5.0.2.1.tar.bz2 47922 SHA256 
8be30270e527c7697c365c437bff07e6a41ccdcf28b7163b2866750158e5845d SHA512 
bf614cc73bc321c46b0825deb198943ce3a37a6e1b5dc5f2b9be17799409de9909219dec327c493a8382111cc9b7e7319c15effd84b238bee85ed9b6f0281100
 WHIRLPOOL 
5e415c8fb17edb96978cd3f8811fdd0953de556efe3cb6e5b1e9abe98535f905119eb968dadb65b3a525801c49af1fdbabc3b3e7eb06364c420323be6eeecb51
 DIST shorewall-core-5.0.4.tar.bz2 50604 SHA256 
ea80b9e1854033c723a5321fc920b35aa0ebb0dea3721a47cee616aa3b92ed9f SHA512 
1db3b7a44bf2f99d1a9c6775c798285bbc9a4bec5a340a10fd762600c01486f90d305297247cceb451616e852d9deb89163a43082e06f9eadad75cdd5d480a21
 WHIRLPOOL 
bb4cea303c7ea1190ec3788f9e7cab4f0febf88ab5047c18adbe9e88476c5ebe569bd3ead6105131a61ac6c31bdab6d3192383e1709847e637220f223a8875b9
 DIST shorewall-core-5.0.6.1.tar.bz2 52604 SHA256 
9e7bb2d5abf02395c7f0f8753d0aba0019776bb35657b2d5171bf2bb09c98a94 SHA512 
01340ce77a90c86009dd4e81a2ccb494394b935602e22f6a16221e98e540df5338b76d840d1e197ab023903d18f8d785e54dbb3a824b869a2d00b3860041cbe1
 WHIRLPOOL 
cfdb7065c549d88e7e914f1377ef4a9b81be3574cb13dbffac3d5f385dddb6e08935ad3836bdc5b0514f2372b8ee6d6b13160e04bfd705b8ea7edceb93f647a6
-DIST shorewall-docs-html-5.0.2.1.tar.bz2 4272585 SHA256 
a9c55c513fd086dc90d686f9a0444311453670487f10d3ed44505b952c72fcf2 SHA512 
dc310f694b4cde8b27e3df99f75081019f752a3c7faa693093b1d5ec786392d2c2202f76b7372f894fd6e72fad5f7816db3b9a88a3a3409edcf4368d9e6b36d0
 WHIRLPOOL 
2f26c930a3aa56571cbfb02ba8f61b29103af91d46b014b21ed4b7da64f891c89df17fc725ba87b5809ad50d2d3ee2f8a55e6e983a612e6320d689afd6c287c6
 DIST shorewall-docs-html-5.0.4.tar.bz2 4263406 SHA256 
501d76f53d6e638aaa14ab60718fa173ef0c3a7756e325326288c353d2845707 SHA512 
7e35191fbd5a1b7f0172880fa03ce95f4ac13da3a481c4c2cace83380bcacd23809c56ea12876e55c6d2371a4c88ba44d6a8a600c83481156294ff1a2a48c0e4
 WHIRLPOOL 
347666e97898ea19af93aef3fb2852b1453791038fa534bb5cad8e96acff75460cb5527389b726f7e09d4721a7b171ca9d2171ac5704f8fa50e172d7ac403929
 DIST shorewall-docs-html-5.0.6.1.tar.bz2 4267130 SHA256 
92751d57e9d54d8b0330ae38e65f7d8b1230d0bb9559fc922efa32361be69c08 SHA512 
f78e0e5a288a4ae29437ae74f8286a55332448ea2d65ec3640231319d5a29bccebf06195948452960562c425123d8c76f60414a1f8b6975443afcb8594b9b6a9
 WHIRLPOOL 
61113a39d44bcb20d7c7b551178f8175c2fdc417c07ae66739928b23d8a42c95975b86285473ac052a62e2bccbd05f660392224cb50896f58ae4ebf5432eebf4
-DIST shorewall-init-5.0.2.1.tar.bz2 27055 SHA256 
2ce13881f7442b9e43bb1417bed9236931bb46ce8c74dd87af5d18be41b05311 SHA512 
d8debb25e36d7829dcdb08698a889ccee680126da40f5606bba6a04b344cfd28660450cb3fd2037f6ec4d75058d8a243da82fb4c3b25184b609a5aa454739eca
 WHIRLPOOL 
5d17a58c157993af37f75b64e53b693c8f62854bfebb8774520bd435a6c65e24e06c22398181941b352e218945055d8e3927f2cfbcb32e09d8c30f3f8e45fc29
 DIST shorewall-init-5.0.4.tar.bz2 29902 SHA256 
97c99c9e68f2546139f26f1f713e1a3377754e53bf2ba0d8f431469aed47ee9c SHA512 
67a66ba6db64a320192f5affa38fb779c1f7d7b915523fe82e4dc8a79bb6590b8da62979f9108ba3f56beef05c1cddb5bb2ffea21317e516c2d8a380a5117567
 WHIRLPOOL 
b4f7

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

2016-03-21 Thread Doug Goldstein
commit: f3fb5b01475065bb65edb4e8297d3be6d8d9
Author: Doug Goldstein  gentoo  org>
AuthorDate: Sat Mar 19 05:22:42 2016 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Mon Mar 21 21:49:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3fb5b01

dev-libs/yajl: remove outdated versions

Package-Manager: portage-2.2.26
Signed-off-by: Doug Goldstein  gentoo.org>

 dev-libs/yajl/Manifest |  1 -
 dev-libs/yajl/yajl-2.0.3.ebuild| 33 -
 dev-libs/yajl/yajl-2.0.4-r1.ebuild | 29 -
 dev-libs/yajl/yajl-2.0.4-r2.ebuild | 37 -
 4 files changed, 100 deletions(-)

diff --git a/dev-libs/yajl/Manifest b/dev-libs/yajl/Manifest
index db34c29..424933e 100644
--- a/dev-libs/yajl/Manifest
+++ b/dev-libs/yajl/Manifest
@@ -1,5 +1,4 @@
 DIST yajl-1.0.11.tar.gz 53705 SHA256 
1e98e03b927a8ec466baea527647f5e243f56f71bdec48cdab1c875f0f8b96a9 SHA512 
6ab0e5052da45be327f1987818037b89b37b382c095a9e64043422425759c4819e46eb6c43919677b6020d10c042d077655ad50809d13733f781bee7db8babf0
 WHIRLPOOL 
28cf0723b65cbdea8d177d4326322fe24d335fc9ff84482b363f797e622ca9f683b1d21c50e1cb8289ac4895906da833e6229a903431c04691c5fd50aa926f57
 DIST yajl-1.0.12.tar.gz 54819 SHA256 
df27bb20903f68e40c62cdc616a37816d9b8f2bbe943900c5dad16a20dc5d326 SHA512 
a2ea24ed011cef79f98dca51723fe10ee2461f7caaedf7bc8a323132335cd61b052a40e0cda8d913707a9d1fb6e9085b4efeaf1d9b201c9c0e9122ba41fd0eeb
 WHIRLPOOL 
10ea1509bac92885a2a5efa54978b63fcd4be4896c5796d59e3eae9695b6ab5fdaceb42a432f56b0b7164cdc30e0f8b13f91c5fb80b9a19323e8fb49d1e6c4e9
-DIST yajl-2.0.3.tar.gz 82544 SHA256 
606ee384f288b6ad4f17c9c57b8868f8db525d542790fd1071139c9636e71952 SHA512 
cef6e895ad169aac9e729f8bde006367d39456c6c1a62e1984d097f2f237cc5e317ddfef4d90c36242f772c867cee220082313f6d324a57e58a56d3e51ae0f85
 WHIRLPOOL 
e9f3b37358d904f3e0aadad256fa7829b97170af5f9c3c3605c54f216cd1ac7958a281eb39f7e5cf5a0af2dce6120f900c3489ac50eeaef154b7ee4c50dd2d8b
 DIST yajl-2.0.4.tar.gz 82814 SHA256 
c19b9691cf15f22e74d903cd06ac9ba5e1e216e6a1b82bfe787c3b48a25bc118 SHA512 
ab99fdd6b7e6f7add5530fff2d3ac6171ed3698267016d6cd23449742d36c9d848f065ba920dc2abb934488239e11e4ceda571c05fa472ab5d3f0480e9033a13
 WHIRLPOOL 
ed821d07f5c06e4722d9de9648d4929fe6a5bcc13d2bd3bb6bcddce60a9817612d59f14963cc46b43b002345fc56813230194d997098de77f4d9075cf64dd85b
 DIST yajl-2.1.0.tar.gz 84039 SHA256 
510a13e0be57cd4ba99e60ac806a3635854af51316d3131d3742a90298ccde38 SHA512 
671c06081e01584d170b614dc0685f49c6d7448b673d8ed99749ce4e0ca73875af9f62df7787b919ceaecab213668ac1d2a5800b6831731ec146353552f36985
 WHIRLPOOL 
f4abfe816062eeffc74a6e661a541c769432fb4cbf9f67f464ee3bea0c5ff9926fd5ea957cfa3b09cc5cef771474e8de0d8855806b19c614693c799a7bfba731

diff --git a/dev-libs/yajl/yajl-2.0.3.ebuild b/dev-libs/yajl/yajl-2.0.3.ebuild
deleted file mode 100644
index 4e55cb0..000
--- a/dev-libs/yajl/yajl-2.0.3.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit base cmake-utils
-
-DESCRIPTION="Small event-driven (SAX-style) JSON parser"
-HOMEPAGE="https://lloyd.github.com/yajl/";
-SRC_URI="https://github.com/lloyd/yajl/tarball/${PV} -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-IUSE=""
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-fix_static_linking.patch
-)
-
-src_unpack() {
-   unpack ${A}
-   mv "${WORKDIR}"/lloyd-${PN}-* "${S}"
-}
-
-src_test() {
-   emake -C "${CMAKE_BUILD_DIR}" test
-}
-
-src_install() {
-   cmake-utils_src_install
-}

diff --git a/dev-libs/yajl/yajl-2.0.4-r1.ebuild 
b/dev-libs/yajl/yajl-2.0.4-r1.ebuild
deleted file mode 100644
index bbd4475..000
--- a/dev-libs/yajl/yajl-2.0.4-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit base cmake-multilib
-
-DESCRIPTION="Small event-driven (SAX-style) JSON parser"
-HOMEPAGE="https://lloyd.github.com/yajl/";
-SRC_URI="https://github.com/lloyd/yajl/tarball/${PV} -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-fix_static_linking.patch
-)
-
-src_unpack() {
-   unpack ${A}
-   mv "${WORKDIR}"/lloyd-${PN}-* "${S}"
-}
-
-src_test() {
-   emake -C ${CMAKE_BUILD_DIR} test
-}

diff --git a/dev-libs/yajl/yajl-2.0.4-r2.ebuild 
b/dev-libs/yajl/yajl-2.0.4-r2.ebuild
deleted file mode 100644
index 8fad8ac..000
--- a/dev-libs/yajl/yajl-2.0.4-r2.ebuild
+++ /dev/null
@@ -1,

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

2016-03-21 Thread Doug Goldstein
commit: 59bfc4c5917f05a97e439fb7848d2b143aff7db2
Author: Doug Goldstein  gentoo  org>
AuthorDate: Sat Mar 19 05:14:17 2016 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Mon Mar 21 21:49:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59bfc4c5

dev-libs/yajl: bump latest legacy yajl

The 1.x series is considered legacy but we should at least have it since
some utilities still use/need the 1.x series. Set the sub-SLOT to 1 to
help with package dependency rebuilds.

Package-Manager: portage-2.2.26
Signed-off-by: Doug Goldstein  gentoo.org>

 dev-libs/yajl/Manifest   |  1 +
 dev-libs/yajl/yajl-1.0.12.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-libs/yajl/Manifest b/dev-libs/yajl/Manifest
index d01e72c..2672c9b 100644
--- a/dev-libs/yajl/Manifest
+++ b/dev-libs/yajl/Manifest
@@ -1,3 +1,4 @@
 DIST yajl-1.0.11.tar.gz 53705 SHA256 
1e98e03b927a8ec466baea527647f5e243f56f71bdec48cdab1c875f0f8b96a9 SHA512 
6ab0e5052da45be327f1987818037b89b37b382c095a9e64043422425759c4819e46eb6c43919677b6020d10c042d077655ad50809d13733f781bee7db8babf0
 WHIRLPOOL 
28cf0723b65cbdea8d177d4326322fe24d335fc9ff84482b363f797e622ca9f683b1d21c50e1cb8289ac4895906da833e6229a903431c04691c5fd50aa926f57
+DIST yajl-1.0.12.tar.gz 54819 SHA256 
df27bb20903f68e40c62cdc616a37816d9b8f2bbe943900c5dad16a20dc5d326 SHA512 
a2ea24ed011cef79f98dca51723fe10ee2461f7caaedf7bc8a323132335cd61b052a40e0cda8d913707a9d1fb6e9085b4efeaf1d9b201c9c0e9122ba41fd0eeb
 WHIRLPOOL 
10ea1509bac92885a2a5efa54978b63fcd4be4896c5796d59e3eae9695b6ab5fdaceb42a432f56b0b7164cdc30e0f8b13f91c5fb80b9a19323e8fb49d1e6c4e9
 DIST yajl-2.0.3.tar.gz 82544 SHA256 
606ee384f288b6ad4f17c9c57b8868f8db525d542790fd1071139c9636e71952 SHA512 
cef6e895ad169aac9e729f8bde006367d39456c6c1a62e1984d097f2f237cc5e317ddfef4d90c36242f772c867cee220082313f6d324a57e58a56d3e51ae0f85
 WHIRLPOOL 
e9f3b37358d904f3e0aadad256fa7829b97170af5f9c3c3605c54f216cd1ac7958a281eb39f7e5cf5a0af2dce6120f900c3489ac50eeaef154b7ee4c50dd2d8b
 DIST yajl-2.0.4.tar.gz 82814 SHA256 
c19b9691cf15f22e74d903cd06ac9ba5e1e216e6a1b82bfe787c3b48a25bc118 SHA512 
ab99fdd6b7e6f7add5530fff2d3ac6171ed3698267016d6cd23449742d36c9d848f065ba920dc2abb934488239e11e4ceda571c05fa472ab5d3f0480e9033a13
 WHIRLPOOL 
ed821d07f5c06e4722d9de9648d4929fe6a5bcc13d2bd3bb6bcddce60a9817612d59f14963cc46b43b002345fc56813230194d997098de77f4d9075cf64dd85b

diff --git a/dev-libs/yajl/yajl-1.0.12.ebuild b/dev-libs/yajl/yajl-1.0.12.ebuild
new file mode 100644
index 000..a56aa4f
--- /dev/null
+++ b/dev-libs/yajl/yajl-1.0.12.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-multilib vcs-snapshot
+
+DESCRIPTION="Small event-driven (SAX-style) JSON parser"
+HOMEPAGE="https://lloyd.github.com/yajl/";
+SRC_URI="https://github.com/lloyd/yajl/tarball/${PV} -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/1"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+
+IUSE=""
+
+multilib_src_test() {
+   emake test
+}



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

2016-03-21 Thread Doug Goldstein
commit: aa0f46bdea9225d036ec8ac61bdcfe052cf905e4
Author: Doug Goldstein  gentoo  org>
AuthorDate: Sat Mar 19 05:23:53 2016 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Mon Mar 21 21:49:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0f46bd

dev-libs/yajl: fix license

Upstream has used ISC since version 2.0.0.

Package-Manager: portage-2.2.26
Signed-off-by: Doug Goldstein  gentoo.org>

 dev-libs/yajl/yajl-2.0.4-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/yajl/yajl-2.0.4-r3.ebuild 
b/dev-libs/yajl/yajl-2.0.4-r3.ebuild
index a8937c5..c6d954f 100644
--- a/dev-libs/yajl/yajl-2.0.4-r3.ebuild
+++ b/dev-libs/yajl/yajl-2.0.4-r3.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Small event-driven (SAX-style) JSON parser"
 HOMEPAGE="https://lloyd.github.com/yajl/";
 SRC_URI="https://github.com/lloyd/yajl/tarball/${PV} -> ${P}.tar.gz"
 
-LICENSE="BSD"
+LICENSE="ISC"
 SLOT="0"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"



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

2016-03-21 Thread Doug Goldstein
commit: 51d9a01c1ab7a7a8b2c97a400fe785c57806d13b
Author: Doug Goldstein  gentoo  org>
AuthorDate: Sat Mar 19 05:20:06 2016 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Mon Mar 21 21:49:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51d9a01c

dev-libs/yajl: version bump

Bump to the latest 2.x stable version. Set sub-SLOT to 2 to help with
dependencies that need to be rebuilt. Update license to ISC, which is
what upstream has used since 2.0.0.

Package-Manager: portage-2.2.26
Signed-off-by: Doug Goldstein  gentoo.org>

 dev-libs/yajl/Manifest  |  1 +
 dev-libs/yajl/yajl-2.1.0.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/dev-libs/yajl/Manifest b/dev-libs/yajl/Manifest
index 2672c9b..db34c29 100644
--- a/dev-libs/yajl/Manifest
+++ b/dev-libs/yajl/Manifest
@@ -2,3 +2,4 @@ DIST yajl-1.0.11.tar.gz 53705 SHA256 
1e98e03b927a8ec466baea527647f5e243f56f71bde
 DIST yajl-1.0.12.tar.gz 54819 SHA256 
df27bb20903f68e40c62cdc616a37816d9b8f2bbe943900c5dad16a20dc5d326 SHA512 
a2ea24ed011cef79f98dca51723fe10ee2461f7caaedf7bc8a323132335cd61b052a40e0cda8d913707a9d1fb6e9085b4efeaf1d9b201c9c0e9122ba41fd0eeb
 WHIRLPOOL 
10ea1509bac92885a2a5efa54978b63fcd4be4896c5796d59e3eae9695b6ab5fdaceb42a432f56b0b7164cdc30e0f8b13f91c5fb80b9a19323e8fb49d1e6c4e9
 DIST yajl-2.0.3.tar.gz 82544 SHA256 
606ee384f288b6ad4f17c9c57b8868f8db525d542790fd1071139c9636e71952 SHA512 
cef6e895ad169aac9e729f8bde006367d39456c6c1a62e1984d097f2f237cc5e317ddfef4d90c36242f772c867cee220082313f6d324a57e58a56d3e51ae0f85
 WHIRLPOOL 
e9f3b37358d904f3e0aadad256fa7829b97170af5f9c3c3605c54f216cd1ac7958a281eb39f7e5cf5a0af2dce6120f900c3489ac50eeaef154b7ee4c50dd2d8b
 DIST yajl-2.0.4.tar.gz 82814 SHA256 
c19b9691cf15f22e74d903cd06ac9ba5e1e216e6a1b82bfe787c3b48a25bc118 SHA512 
ab99fdd6b7e6f7add5530fff2d3ac6171ed3698267016d6cd23449742d36c9d848f065ba920dc2abb934488239e11e4ceda571c05fa472ab5d3f0480e9033a13
 WHIRLPOOL 
ed821d07f5c06e4722d9de9648d4929fe6a5bcc13d2bd3bb6bcddce60a9817612d59f14963cc46b43b002345fc56813230194d997098de77f4d9075cf64dd85b
+DIST yajl-2.1.0.tar.gz 84039 SHA256 
510a13e0be57cd4ba99e60ac806a3635854af51316d3131d3742a90298ccde38 SHA512 
671c06081e01584d170b614dc0685f49c6d7448b673d8ed99749ce4e0ca73875af9f62df7787b919ceaecab213668ac1d2a5800b6831731ec146353552f36985
 WHIRLPOOL 
f4abfe816062eeffc74a6e661a541c769432fb4cbf9f67f464ee3bea0c5ff9926fd5ea957cfa3b09cc5cef771474e8de0d8855806b19c614693c799a7bfba731

diff --git a/dev-libs/yajl/yajl-2.1.0.ebuild b/dev-libs/yajl/yajl-2.1.0.ebuild
new file mode 100644
index 000..db8d0b9
--- /dev/null
+++ b/dev-libs/yajl/yajl-2.1.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils cmake-multilib vcs-snapshot
+
+DESCRIPTION="Small event-driven (SAX-style) JSON parser"
+HOMEPAGE="https://lloyd.github.com/yajl/";
+SRC_URI="https://github.com/lloyd/yajl/tarball/${PV} -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="static-libs"
+
+src_prepare() {
+   epatch_user
+
+   multilib_copy_sources
+}
+
+src_test() {
+   run_test() {
+   cd "${BUILD_DIR}"/test
+   ./run_tests.sh ./yajl_test || die
+   }
+   multilib_parallel_foreach_abi run_test
+}
+
+src_install() {
+   cmake-multilib_src_install
+
+   use static-libs || \
+   find "${D}" -name libyajl_s.a -delete
+}



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

2016-03-21 Thread Manuel Rüger
commit: 15d4cdf645b4895876732f01732488e5c69cf955
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 21:47:09 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 21:48:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d4cdf6

dev-ruby/hashie: Remove old

Package-Manager: portage-2.2.28

 dev-ruby/hashie/Manifest|  1 -
 dev-ruby/hashie/hashie-3.4.2.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/dev-ruby/hashie/Manifest b/dev-ruby/hashie/Manifest
index ba30922..1f5237e 100644
--- a/dev-ruby/hashie/Manifest
+++ b/dev-ruby/hashie/Manifest
@@ -1,3 +1,2 @@
 DIST hashie-2.1.2.gem 34816 SHA256 
a9e1e4928bf4f5a5683ea9c7ef29e50fb93f72542f9a9550e205fe33a6568923 SHA512 
6f72998710da58a2584939b4e74a114ae54168902020dc16ec5ea0422a91316b84aa6835fffb36a2985634f24ff5b0d01bcdb50134a414a269a4881ebcd728ac
 WHIRLPOOL 
6b67c04ef9dc33a9ffdf25d14440bdd3ce621f1bde9b4eb806de63fa39edc76627f80d10435efc708fc48d24f1450046f33aceb20d76238a0cf8b67ddcf72e78
-DIST hashie-3.4.2.gem 56320 SHA256 
b68373c5f6589c5222638433918bc3e256acbaead7f883e5ec18420f507b17ca SHA512 
9081d91ad014914f59ec4e18b92c27b6f316f03f476c94d3b469bda54f201d339d553ef142018f0e605d3571418af784d57e25211a6c141cd8eb5a56497c28d6
 WHIRLPOOL 
cc76a268a7b8abc618b236a1958db783a5dc9e14c92b719782db71dd1a518e436b4e801f6854e5c8958298d4212814bae23893c1fe2a42561de28ba993847b2f
 DIST hashie-3.4.3.gem 58880 SHA256 
29213491e9f74158b9a7ec0806b3698039357209a6b24553cfd767f6418365c7 SHA512 
1a9f3169308e99559c67e021f0d4174618fd6e4cb6a53b4c7889b609ea32e2d7cde7216de2e3d485f496fa73491702e3af81b6875071b35ecfe5609d925225f7
 WHIRLPOOL 
09ab898ad08a975c69beb12bf2154c20d9ca00b698610101497705370f17c66f7d389b55b92378c83b02d53f3218351c3ccca119c8df5f80ce199dd7acb08722

diff --git a/dev-ruby/hashie/hashie-3.4.2.ebuild 
b/dev-ruby/hashie/hashie-3.4.2.ebuild
deleted file mode 100644
index d65b458..000
--- a/dev-ruby/hashie/hashie-3.4.2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Hashie is a small collection of tools that make hashes more 
powerful"
-HOMEPAGE="http://intridea.com/posts/hashie-the-hash-toolkit";
-
-LICENSE="MIT"
-SLOT="3"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/activesupport )"
-
-all_ruby_prepare() {
-   # Remove bundler and fix one spec that depends on its requires
-   #rm Gemfile || die
-   sed -i -e '/[Bb]undler/d' Rakefile || die
-   sed -e '/pry/ s:^:#:' -i spec/spec_helper.rb || die
-}



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

2016-03-21 Thread Manuel Rüger
commit: 3aa0d6a175ffd9b4e08af50362c7129a2f18ef5b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Mar 21 21:48:03 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Mar 21 21:48:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3aa0d6a1

dev-ruby/hashie: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/hashie/hashie-2.1.2-r1.ebuild | 4 ++--
 dev-ruby/hashie/hashie-2.1.2.ebuild| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/hashie/hashie-2.1.2-r1.ebuild 
b/dev-ruby/hashie/hashie-2.1.2-r1.ebuild
index 52a5683..9b94926 100644
--- a/dev-ruby/hashie/hashie-2.1.2-r1.ebuild
+++ b/dev-ruby/hashie/hashie-2.1.2-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 

diff --git a/dev-ruby/hashie/hashie-2.1.2.ebuild 
b/dev-ruby/hashie/hashie-2.1.2.ebuild
index e414318..8fb4f7e 100644
--- a/dev-ruby/hashie/hashie-2.1.2.ebuild
+++ b/dev-ruby/hashie/hashie-2.1.2.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20"
+USE_RUBY="ruby20"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 



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

2016-03-21 Thread Anthony G. Basile
commit: 0ef8f18a9a55c6503a96d7488f1d7bacf7eb91a9
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:48:25 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:48:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ef8f18a

app-arch/libarchive: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-arch/libarchive/libarchive-3.1.2-r2.ebuild | 4 ++--
 app-arch/libarchive/libarchive-3.1.2-r3.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-arch/libarchive/libarchive-3.1.2-r2.ebuild 
b/app-arch/libarchive/libarchive-3.1.2-r2.ebuild
index 01329bb..5b56888 100644
--- a/app-arch/libarchive/libarchive-3.1.2-r2.ebuild
+++ b/app-arch/libarchive/libarchive-3.1.2-r2.ebuild
@@ -15,8 +15,8 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~s390 ~s
 IUSE="acl +bzip2 +e2fsprogs expat +iconv kernel_linux libressl +lzma lzo 
nettle static-libs xattr +zlib"
 
 RDEPEND="
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
acl? ( virtual/acl )
bzip2? ( app-arch/bzip2 )
expat? ( dev-libs/expat )

diff --git a/app-arch/libarchive/libarchive-3.1.2-r3.ebuild 
b/app-arch/libarchive/libarchive-3.1.2-r3.ebuild
index 8153c43..2f77f2e 100644
--- a/app-arch/libarchive/libarchive-3.1.2-r3.ebuild
+++ b/app-arch/libarchive/libarchive-3.1.2-r3.ebuild
@@ -15,8 +15,8 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~s390 ~s
 IUSE="acl +bzip2 +e2fsprogs expat +iconv kernel_linux libressl +lzma lzo 
nettle static-libs xattr +zlib"
 
 RDEPEND="
-   !libressl? ( dev-libs/openssl:0[${MULTILIB_USEDEP}] )
-   libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] )
+   !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
+   libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
acl? ( virtual/acl[${MULTILIB_USEDEP}] )
bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] )
expat? ( dev-libs/expat[${MULTILIB_USEDEP}] )



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

2016-03-21 Thread Anthony G. Basile
commit: 9276ab9875faddbc3419364313c791208a47010f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:46:40 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:46:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9276ab98

app-arch/dump: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-arch/dump/dump-0.4.44-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/dump/dump-0.4.44-r2.ebuild 
b/app-arch/dump/dump-0.4.44-r2.ebuild
index 94b0c0b..e1f140e 100644
--- a/app-arch/dump/dump-0.4.44-r2.ebuild
+++ b/app-arch/dump/dump-0.4.44-r2.ebuild
@@ -20,8 +20,8 @@ RDEPEND=">=sys-fs/e2fsprogs-1.27
>=app-arch/bzip2-1.0.2
>=sys-libs/zlib-1.1.4
ermt? (
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
)
readline? (
sys-libs/readline:0=



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/

2016-03-21 Thread Anthony G. Basile
commit: 0232fb5701f08fac2f6cc7ba06abdf9bd120de3a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:45:07 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:45:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0232fb57

app-antivirus/clamav: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-antivirus/clamav/clamav-0.98.7-r1.ebuild | 4 ++--
 app-antivirus/clamav/clamav-0.99.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-antivirus/clamav/clamav-0.98.7-r1.ebuild 
b/app-antivirus/clamav/clamav-0.98.7-r1.ebuild
index 565b0c5..9132cdc 100644
--- a/app-antivirus/clamav/clamav-0.98.7-r1.ebuild
+++ b/app-antivirus/clamav/clamav-0.98.7-r1.ebuild
@@ -22,8 +22,8 @@ CDEPEND="bzip2? ( app-arch/bzip2 )
milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) )
dev-libs/libtommath
>=sys-libs/zlib-1.2.2
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
sys-devel/libtool"
 # openssl is now *required* see this link as to why
 # http://blog.clamav.net/2014/02/introducing-openssl-as-dependency-to.html

diff --git a/app-antivirus/clamav/clamav-0.99.ebuild 
b/app-antivirus/clamav/clamav-0.99.ebuild
index 28b0309..e48b3b2 100644
--- a/app-antivirus/clamav/clamav-0.99.ebuild
+++ b/app-antivirus/clamav/clamav-0.99.ebuild
@@ -22,8 +22,8 @@ CDEPEND="bzip2? ( app-arch/bzip2 )
milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) )
dev-libs/libtommath
>=sys-libs/zlib-1.2.2
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
sys-devel/libtool
!!

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

2016-03-21 Thread Anthony G. Basile
commit: 4a601ee022f33455841521c03e31292217c75fd7
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:37:32 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:37:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a601ee0

app-admin/radmind: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-admin/radmind/radmind-1.14.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/radmind/radmind-1.14.1-r1.ebuild 
b/app-admin/radmind/radmind-1.14.1-r1.ebuild
index ed0b79b..45bb581 100644
--- a/app-admin/radmind/radmind-1.14.1-r1.ebuild
+++ b/app-admin/radmind/radmind-1.14.1-r1.ebuild
@@ -16,8 +16,8 @@ KEYWORDS="~amd64 ~x86"
 IUSE="libressl"
 
 DEPEND="
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )"
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )"
 RDEPEND="${DEPEND}"
 
 src_prepare() {



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

2016-03-21 Thread Anthony G. Basile
commit: 0d30cbb3cfa778197840b55189308aa12831dd40
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:38:20 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:38:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d30cbb3

app-admin/clustershell: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-admin/clustershell/clustershell-1.6-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/clustershell/clustershell-1.6-r1.ebuild 
b/app-admin/clustershell/clustershell-1.6-r1.ebuild
index 4b24802..d078b71 100644
--- a/app-admin/clustershell/clustershell-1.6-r1.ebuild
+++ b/app-admin/clustershell/clustershell-1.6-r1.ebuild
@@ -20,8 +20,8 @@ KEYWORDS="~amd64 ~x86"
 IUSE="doc libressl"
 
 RDEPEND="
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )"
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 
 src_install() {



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

2016-03-21 Thread Anthony G. Basile
commit: 972d29d18433a0b1432d6f525ca690349a40d15f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:36:23 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:36:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=972d29d1

app-admin/monit: fix libressl slot

Package-Manager: portage-2.2.26

 app-admin/monit/monit-5.16.1.ebuild | 2 +-
 app-admin/monit/monit-5.17.1.ebuild | 2 +-
 app-admin/monit/monit-5.17.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-admin/monit/monit-5.16.1.ebuild 
b/app-admin/monit/monit-5.16.1.ebuild
index df1ef80..369c57a 100644
--- a/app-admin/monit/monit-5.16.1.ebuild
+++ b/app-admin/monit/monit-5.16.1.ebuild
@@ -17,7 +17,7 @@ IUSE="libressl pam ssl"
 RDEPEND="
ssl? (
!libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl )
+   libressl? ( dev-libs/libressl:0= )
)"
 DEPEND="${RDEPEND}
sys-devel/flex

diff --git a/app-admin/monit/monit-5.17.1.ebuild 
b/app-admin/monit/monit-5.17.1.ebuild
index df1ef80..369c57a 100644
--- a/app-admin/monit/monit-5.17.1.ebuild
+++ b/app-admin/monit/monit-5.17.1.ebuild
@@ -17,7 +17,7 @@ IUSE="libressl pam ssl"
 RDEPEND="
ssl? (
!libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl )
+   libressl? ( dev-libs/libressl:0= )
)"
 DEPEND="${RDEPEND}
sys-devel/flex

diff --git a/app-admin/monit/monit-5.17.ebuild 
b/app-admin/monit/monit-5.17.ebuild
index df1ef80..369c57a 100644
--- a/app-admin/monit/monit-5.17.ebuild
+++ b/app-admin/monit/monit-5.17.ebuild
@@ -17,7 +17,7 @@ IUSE="libressl pam ssl"
 RDEPEND="
ssl? (
!libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl )
+   libressl? ( dev-libs/libressl:0= )
)"
 DEPEND="${RDEPEND}
sys-devel/flex



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

2016-03-21 Thread Anthony G. Basile
commit: b54bccd59ba8a415dca5506044a21c22a2c627c5
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:34:22 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:34:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b54bccd5

app-admin/rsyslog: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-admin/rsyslog/rsyslog-8.13.0.ebuild| 4 ++--
 app-admin/rsyslog/rsyslog-8.16.0-r1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-admin/rsyslog/rsyslog-8.13.0.ebuild 
b/app-admin/rsyslog/rsyslog-8.13.0.ebuild
index cdeb747..d99d7c1 100644
--- a/app-admin/rsyslog/rsyslog-8.13.0.ebuild
+++ b/app-admin/rsyslog/rsyslog-8.13.0.ebuild
@@ -65,8 +65,8 @@ RDEPEND="
relp? ( >=dev-libs/librelp-1.2.5 )
rfc3195? ( >=dev-libs/liblogging-1.0.1:=[rfc3195] )
rfc5424hmac? (
-   !libressl? ( >=dev-libs/openssl-0.9.8y:0= )
-   libressl? ( dev-libs/libressl:= )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
)
snmp? ( >=net-analyzer/net-snmp-5.7.2 )
ssl? ( >=net-libs/gnutls-2.12.23 )

diff --git a/app-admin/rsyslog/rsyslog-8.16.0-r1.ebuild 
b/app-admin/rsyslog/rsyslog-8.16.0-r1.ebuild
index 4075140..301563a 100644
--- a/app-admin/rsyslog/rsyslog-8.16.0-r1.ebuild
+++ b/app-admin/rsyslog/rsyslog-8.16.0-r1.ebuild
@@ -66,8 +66,8 @@ RDEPEND="
relp? ( >=dev-libs/librelp-1.2.5 )
rfc3195? ( >=dev-libs/liblogging-1.0.1:=[rfc3195] )
rfc5424hmac? (
-   !libressl? ( >=dev-libs/openssl-0.9.8y:0= )
-   libressl? ( dev-libs/libressl:= )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
)
snmp? ( >=net-analyzer/net-snmp-5.7.2 )
ssl? ( >=net-libs/gnutls-2.12.23:0= )



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

2016-03-21 Thread Anthony G. Basile
commit: 531e564ad455ba55d4c8857ee78be826df16f92a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:31:26 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:31:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=531e564a

app-admin/tripwire: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild 
b/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
index 2d7da69..d8e135a 100644
--- a/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
@@ -18,8 +18,8 @@ IUSE="libressl ssl static +tools"
 DEPEND="sys-devel/automake
sys-devel/autoconf
ssl? (
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
)"
 RDEPEND="virtual/cron
virtual/mta



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

2016-03-21 Thread Anthony G. Basile
commit: c0a6ab71c4c10347f3fd12a88ba02966a3ceaaa6
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:30:37 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:30:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a6ab71

app-admin/conserver: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-admin/conserver/conserver-8.1.18-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/conserver/conserver-8.1.18-r1.ebuild 
b/app-admin/conserver/conserver-8.1.18-r1.ebuild
index 7e60c04..7cc4d1e 100644
--- a/app-admin/conserver/conserver-8.1.18-r1.ebuild
+++ b/app-admin/conserver/conserver-8.1.18-r1.ebuild
@@ -16,8 +16,8 @@ KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="kerberos libressl pam ssl tcpd debug"
 
 DEPEND="ssl? (
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
)
pam? ( virtual/pam )
tcpd? ( sys-apps/tcp-wrappers )



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

2016-03-21 Thread Anthony G. Basile
commit: 6256710672b4b2914d1008570035cf50b3c975b9
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:28:48 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:28:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62567106

app-admin/syslog-ng: fix libressl slot

Package-Manager: portage-2.2.26

 app-admin/syslog-ng/syslog-ng-3.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild 
b/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild
index 22e18b0..b1ca716 100644
--- a/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild
+++ b/app-admin/syslog-ng/syslog-ng-3.7.2.ebuild
@@ -31,7 +31,7 @@ RDEPEND="
tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
dev-libs/libpcre
!libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:= )
+   libressl? ( dev-libs/libressl:0= )
>=dev-libs/eventlog-0.2.12
>=dev-libs/glib-2.10.1:2"
 DEPEND="${RDEPEND}



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

2016-03-21 Thread Johannes Huber
commit: 93a31d3b78fafd8a8bf6b171bddaf1ca3dda399e
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Mar 21 21:27:11 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Mar 21 21:27:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a31d3b

kde-apps/kate: Fix pkg_postinst

Package-Manager: portage-2.2.28

 kde-apps/kate/kate-4.14.3.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-apps/kate/kate-4.14.3.ebuild b/kde-apps/kate/kate-4.14.3.ebuild
index 061b05d..ea84142 100644
--- a/kde-apps/kate/kate-4.14.3.ebuild
+++ b/kde-apps/kate/kate-4.14.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -53,9 +53,9 @@ src_configure() {
 pkg_postinst() {
kde4-meta_pkg_postinst
 
-   if ! has_version kde-base/kaddressbook:${SLOT}; then
+   if ! has_version kde-apps/kaddressbook:${SLOT}; then
echo
-   elog "File templates plugin requires 
kde-base/kaddressbook:${SLOT}."
+   elog "File templates plugin requires 
kde-apps/kaddressbook:${SLOT}."
elog "Please install it if you plan to use this plugin."
echo
fi



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

2016-03-21 Thread Anthony G. Basile
commit: 5227a51d80e125db67682dc997e49f3511eb3ddb
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:27:32 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:27:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5227a51d

app-admin/gkrellm: fix libressl slot

Package-Manager: portage-2.2.26

 app-admin/gkrellm/gkrellm-2.3.6_rc1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/gkrellm/gkrellm-2.3.6_rc1-r1.ebuild 
b/app-admin/gkrellm/gkrellm-2.3.6_rc1-r1.ebuild
index fa3ef34..d6e25ea 100644
--- a/app-admin/gkrellm/gkrellm-2.3.6_rc1-r1.ebuild
+++ b/app-admin/gkrellm/gkrellm-2.3.6_rc1-r1.ebuild
@@ -24,7 +24,7 @@ RDEPEND="
!gnutls? (
ssl? (
!libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:= )
+   libressl? ( dev-libs/libressl:0= )
)
)
lm_sensors? ( sys-apps/lm_sensors )



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

2016-03-21 Thread Anthony G. Basile
commit: 75e8a96e67b312ab0856e764561090b3318fb88e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:25:01 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:25:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75e8a96e

app-admin/lastpass-cli: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-admin/lastpass-cli/lastpass-cli-0.8.1.ebuild | 4 ++--
 app-admin/lastpass-cli/lastpass-cli-0.9.0.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-admin/lastpass-cli/lastpass-cli-0.8.1.ebuild 
b/app-admin/lastpass-cli/lastpass-cli-0.8.1.ebuild
index 9caa545..be1b314 100644
--- a/app-admin/lastpass-cli/lastpass-cli-0.8.1.ebuild
+++ b/app-admin/lastpass-cli/lastpass-cli-0.8.1.ebuild
@@ -17,8 +17,8 @@ IUSE="libressl X +pinentry"
 
 RDEPEND="
X? ( || ( x11-misc/xclip x11-misc/xsel ) )
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
net-misc/curl
dev-libs/libxml2
pinentry? ( app-crypt/pinentry )

diff --git a/app-admin/lastpass-cli/lastpass-cli-0.9.0.ebuild 
b/app-admin/lastpass-cli/lastpass-cli-0.9.0.ebuild
index 08569aa..5802fe2 100644
--- a/app-admin/lastpass-cli/lastpass-cli-0.9.0.ebuild
+++ b/app-admin/lastpass-cli/lastpass-cli-0.9.0.ebuild
@@ -17,8 +17,8 @@ IUSE="libressl X +pinentry"
 
 RDEPEND="
X? ( || ( x11-misc/xclip x11-misc/xsel ) )
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
net-misc/curl
dev-libs/libxml2
pinentry? ( app-crypt/pinentry )



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

2016-03-21 Thread Anthony G. Basile
commit: 3eb1c448a4217999e118d8c3ed75a650f66eb168
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:22:01 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:22:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eb1c448

app-admin/apache-tools: fix libressl slot

Package-Manager: portage-2.2.26

 app-admin/apache-tools/apache-tools-2.4.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/apache-tools/apache-tools-2.4.18.ebuild 
b/app-admin/apache-tools/apache-tools-2.4.18.ebuild
index 9728647..f29452a 100644
--- a/app-admin/apache-tools/apache-tools-2.4.18.ebuild
+++ b/app-admin/apache-tools/apache-tools-2.4.18.ebuild
@@ -22,7 +22,7 @@ RDEPEND=">=dev-libs/apr-1.5.0:1
kernel_linux? ( sys-apps/util-linux )
ssl? (
!libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:= )
+   libressl? ( dev-libs/libressl:0= )
)"
 
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/edbrowse/

2016-03-21 Thread Anthony G. Basile
commit: 4f7c9faa26a969cedaadeb8368731d1760e18e36
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 21:18:29 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 21:19:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f7c9faa

app-accessibility/edbrowse: fix openssl and libressl slots

Package-Manager: portage-2.2.26

 app-accessibility/edbrowse/edbrowse-3.5.1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild 
b/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild
index 853813e..c26fb87 100644
--- a/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild
+++ b/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,8 +16,8 @@ COMMON_DEPEND=">=dev-lang/spidermonkey-24.0:24
>=sys-libs/readline-6.0
>=net-misc/curl-7.36.0
>=dev-libs/libpcre-7.8
-   !libressl? ( dev-libs/openssl:0 )
-   libressl? ( dev-libs/libressl )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
odbc? ( dev-db/unixODBC )"
 DEPEND="${COMMON_DEPEND}
virtual/pkgconfig



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

2016-03-21 Thread Aaron Swenson
commit: 8d475f3f9f2705d229ebe7e7254d673c77d86f7a
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Mon Mar 21 21:10:51 2016 +
Commit: Aaron Swenson  gentoo  org>
CommitDate: Mon Mar 21 21:10:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d475f3f

sci-libs/geos: Removing Old

Remove old versions.

Bug: 567204

Package-Manager: portage-2.2.26

 sci-libs/geos/Manifest |  2 --
 sci-libs/geos/geos-3.4.1-r1.ebuild | 61 --
 sci-libs/geos/geos-3.4.2-r1.ebuild | 58 
 3 files changed, 121 deletions(-)

diff --git a/sci-libs/geos/Manifest b/sci-libs/geos/Manifest
index 830e082..6996dd7 100644
--- a/sci-libs/geos/Manifest
+++ b/sci-libs/geos/Manifest
@@ -1,3 +1 @@
-DIST geos-3.4.1.tar.bz2 1813303 SHA256 
d07ac375f3edd12425d6ce5a96db9739d5ff358cbdf60c6804f7a9e565af8ff2 SHA512 
69d02630856f63bd0617db383b9936ad07e94d2b2fda4a3865657057626887439b52fd7b74602d529aff5cf8c7fbfea72672ccde807395b2dc1cc73c93c2567b
 WHIRLPOOL 
35a6673a98d1fa1f10113c8cfef4dc32ba9b68dcc23e5522252870c2591537f80841913105425bd23ebecaa63d520ceccbfe7824a00e70e9c1461aa919bf2469
-DIST geos-3.4.2.tar.bz2 1813726 SHA256 
15e8bfdf7e29087a957b56ac543ea9a80321481cef4d4f63a7b268953ad26c53 SHA512 
c335608ff5e719ec6f3a6edc157c11fe5aaf9a813bf3c4b1e8a05de7a52584f6f64d5c42e646410c09a2e3cdfd3f8f994bedba37fc60454bbaa7c25ba1d36c9b
 WHIRLPOOL 
5090bb4a4413b4c6fa00651058acfd5cb98bb8a2e68b1175baaf4ade6c737792239a08a6f9f3831c963e896469f9e9a4c1410bdddfb152638f1e72cbdb7c05e0
 DIST geos-3.5.0.tar.bz2 1949397 SHA256 
49982b23bcfa64a5dab136b82e25354edeb806e5a2e2f5b8aa98b1d0ae02 SHA512 
cd9c008c19213eb90959f950b03958e6abd9c22d83e6eb5f5a9020263ad8b0045dd5c5af60417c548fc130a57756ae1ef706710086cc277498b9ba6a0a6256b7
 WHIRLPOOL 
f7530e1dc6b99b4ad83d9a01c44b8e6256e118f7615a473d666b00549296df00ca3c86d7ab4d0ae717a3b329b3a9ecac587bc475ee51cbd7e436922860d00ab9

diff --git a/sci-libs/geos/geos-3.4.1-r1.ebuild 
b/sci-libs/geos/geos-3.4.1-r1.ebuild
deleted file mode 100644
index 7eb33e1..000
--- a/sci-libs/geos/geos-3.4.1-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-inherit autotools eutils python-single-r1 python-utils-r1
-
-DESCRIPTION="Geometry engine library for Geographic Information Systems"
-HOMEPAGE="http://trac.osgeo.org/geos/";
-SRC_URI="http://download.osgeo.org/geos/${P}.tar.bz2";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 arm ppc ppc64 x86 ~x64-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
-IUSE="doc php python ruby static-libs"
-
-RDEPEND="
-   php? ( >=dev-lang/php-5.3[-threads] )
-   ruby? ( dev-lang/ruby )
-"
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )
-   php? ( dev-lang/swig )
-   python? ( dev-lang/swig ${PYTHON_DEPS} )
-   ruby? ( dev-lang/swig )
-"
-
-src_prepare() {
-   epatch "${FILESDIR}"/3.4.1-solaris-isnan.patch
-   eautoreconf
-   echo "#!${EPREFIX}/bin/bash" > py-compile
-}
-
-src_configure() {
-   econf \
-   $(use_enable python) \
-   $(use_enable ruby) \
-   $(use_enable php) \
-   $(use_enable static-libs static)
-}
-
-src_compile() {
-   emake
-
-   use doc && emake -C "${S}/doc" doxygen-html
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   # https://bugs.gentoo.org/show_bug.cgi?id=487068
-   insinto /usr/include/geos
-   doins include/geos/platform.h
-
-   use doc && dohtml -r doc/doxygen_docs/html/*
-   use python && python_optimize "${D}$(python_get_sitedir)"/geos/
-
-   find "${ED}" -name '*.la' -exec rm -f {} +
-}

diff --git a/sci-libs/geos/geos-3.4.2-r1.ebuild 
b/sci-libs/geos/geos-3.4.2-r1.ebuild
deleted file mode 100644
index 567d3ea..000
--- a/sci-libs/geos/geos-3.4.2-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-inherit autotools eutils python-single-r1 python-utils-r1
-
-DESCRIPTION="Geometry engine library for Geographic Information Systems"
-HOMEPAGE="http://trac.osgeo.org/geos/";
-SRC_URI="http://download.osgeo.org/geos/${P}.tar.bz2";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x64-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
-IUSE="doc php python ruby static-libs"
-
-RDEPEND="
-   php? ( >=dev-lang/php-5.3[-threads] )
-   ruby? ( dev-lang/ruby )
-"
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )
-   php? ( dev-lang/swig )
-   python? ( dev-lang/swig ${PYTHON_DEPS} )
-   ruby? ( dev-lang/swig )
-"
-
-src_prepare() {
-   epatch "${FILESDIR}"/3.4.2-solaris-isnan.p

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

2016-03-21 Thread Johannes Huber
commit: 05ad935080c4a9b67cd5a8cebe366a731ddb5efd
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Mar 21 20:58:22 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Mar 21 20:58:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05ad9350

kde-apps/kmail: Update pkg_postinst

Gentoo-bug: 577948
Reported-by: yves.caniou  ens-lyon.fr

Package-Manager: portage-2.2.28

 kde-apps/kmail/kmail-4.14.10.ebuild | 6 +++---
 kde-apps/kmail/kmail-4.14.8.ebuild  | 6 +++---
 kde-apps/kmail/kmail-4.4.2015.06.ebuild | 4 ++--
 kde-apps/kmail/kmail-4.4.2016.01.ebuild | 4 ++--
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/kde-apps/kmail/kmail-4.14.10.ebuild 
b/kde-apps/kmail/kmail-4.14.10.ebuild
index cc163c0..d92a869 100644
--- a/kde-apps/kmail/kmail-4.14.10.ebuild
+++ b/kde-apps/kmail/kmail-4.14.10.ebuild
@@ -96,9 +96,9 @@ pkg_postinst() {
elog "For groupware functionality, please install 
kde-apps/kdepim-kresources:${SLOT}"
echo
fi
-   if ! has_version kde-base/kleopatra:${SLOT}; then
+   if ! has_version kde-apps/kleopatra:${SLOT}; then
echo
-   elog "For certificate management and the gnupg log viewer, 
please install kde-base/kleopatra:${SLOT}"
+   elog "For certificate management and the gnupg log viewer, 
please install kde-apps/kleopatra:${SLOT}"
echo
fi
 
@@ -106,7 +106,7 @@ pkg_postinst() {
ewarn
ewarn "We strongly recommend you set your Akonadi database 
backend to QMYSQL in your"
ewarn "user configuration. This is the backend recommended by 
KDE upstream."
-   ewarn "Reports indicate that kde-base/kmail-4.10 does not work 
properly with the sqlite"
+   ewarn "Reports indicate that kde-apps/kmail-4.10 does not work 
properly with the sqlite"
ewarn "backend anymore."
if has_version "app-office/akonadi-server[-mysql]"; then
ewarn "FOR THAT, YOU WILL HAVE TO RE-BUILD 
app-office/akonadi-server WITH mysql USEFLAG ENABLED."

diff --git a/kde-apps/kmail/kmail-4.14.8.ebuild 
b/kde-apps/kmail/kmail-4.14.8.ebuild
index 963ab62..ad4ff35 100644
--- a/kde-apps/kmail/kmail-4.14.8.ebuild
+++ b/kde-apps/kmail/kmail-4.14.8.ebuild
@@ -94,9 +94,9 @@ pkg_postinst() {
elog "For groupware functionality, please install 
kde-apps/kdepim-kresources:${SLOT}"
echo
fi
-   if ! has_version kde-base/kleopatra:${SLOT}; then
+   if ! has_version kde-apps/kleopatra:${SLOT}; then
echo
-   elog "For certificate management and the gnupg log viewer, 
please install kde-base/kleopatra:${SLOT}"
+   elog "For certificate management and the gnupg log viewer, 
please install kde-apps/kleopatra:${SLOT}"
echo
fi
 
@@ -104,7 +104,7 @@ pkg_postinst() {
ewarn
ewarn "We strongly recommend you set your Akonadi database 
backend to QMYSQL in your"
ewarn "user configuration. This is the backend recommended by 
KDE upstream."
-   ewarn "Reports indicate that kde-base/kmail-4.10 does not work 
properly with the sqlite"
+   ewarn "Reports indicate that kde-apps/kmail-4.10 does not work 
properly with the sqlite"
ewarn "backend anymore."
if has_version "app-office/akonadi-server[-mysql]"; then
ewarn "FOR THAT, YOU WILL HAVE TO RE-BUILD 
app-office/akonadi-server WITH mysql USEFLAG ENABLED."

diff --git a/kde-apps/kmail/kmail-4.4.2015.06.ebuild 
b/kde-apps/kmail/kmail-4.4.2015.06.ebuild
index 99b1ef1..741b12d 100644
--- a/kde-apps/kmail/kmail-4.4.2015.06.ebuild
+++ b/kde-apps/kmail/kmail-4.4.2015.06.ebuild
@@ -67,9 +67,9 @@ pkg_postinst() {
elog "For groupware functionality, please install 
kde-apps/kdepim-kresources:${SLOT}"
echo
fi
-   if ! has_version kde-base/kleopatra:${SLOT}; then
+   if ! has_version kde-apps/kleopatra:${SLOT}; then
echo
-   elog "For certificate management and the gnupg log viewer, 
please install kde-base/kleopatra:${SLOT}"
+   elog "For certificate management and the gnupg log viewer, 
please install kde-apps/kleopatra:${SLOT}"
echo
fi
 }

diff --git a/kde-apps/kmail/kmail-4.4.2016.01.ebuild 
b/kde-apps/kmail/kmail-4.4.2016.01.ebuild
index 670e394..ebfaf98 100644
--- a/kde-apps/kmail/kmail-4.4.2016.01.ebuild
+++ b/kde-apps/kmail/kmail-4.4.2016.01.ebuild
@@ -68,9 +68,9 @@ pkg_postinst() {
elog "For groupware functionality, please install 
kde-apps/kdepim-kresources:${SLOT}"
echo
fi
-   if ! has_version kde-base/kleopatra:${SLOT}; then
+   if ! has_version kde-apps/kleopatra:${SLOT}; then
echo
-   elog "Fo

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

2016-03-21 Thread Mike Frysinger
commit: cc60ea4b1d1081d55e20dba50c609386c0002fd7
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Mar 21 20:42:48 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Mar 21 20:45:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc60ea4b

sys-kernel/genkernel: mark 3.4.52.3 stable for all

 sys-kernel/genkernel/genkernel-3.4.52.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild 
b/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild
index d2b0f66..161d2b8 100644
--- a/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild
+++ b/sys-kernel/genkernel/genkernel-3.4.52.3.ebuild
@@ -43,7 +43,7 @@ else
inherit bash-completion-r1 eutils
SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz
${COMMON_URI}"
-   KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86"
+   KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
 fi
 
 DESCRIPTION="Gentoo automatic kernel building scripts"



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

2016-03-21 Thread Andreas Hüttel
commit: a6a9a2af223971361600ca5ce798a3463e049417
Author: Evan Teran  gmail  com>
AuthorDate: Mon Mar 21 01:35:46 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon Mar 21 19:30:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6a9a2af

app-emulation/vmware-modules: enabling a patch that makes 308.x build on 4.5 
kernels :-)

Package-Manager: portage-2.2.26

 app-emulation/vmware-modules/vmware-modules-308.1.0.ebuild | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/app-emulation/vmware-modules/vmware-modules-308.1.0.ebuild 
b/app-emulation/vmware-modules/vmware-modules-308.1.0.ebuild
index 98a4bd4..0412eca 100644
--- a/app-emulation/vmware-modules/vmware-modules-308.1.0.ebuild
+++ b/app-emulation/vmware-modules/vmware-modules-308.1.0.ebuild
@@ -96,10 +96,11 @@ src_prepare() {
kernel_is ge 3 19 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.19-05-vmci_qpair.patch"
kernel_is ge 3 19 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.19-06-vsock.patch"
kernel_is ge 3 19 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-3.19-07-vsock.patch"
-   kernel_is ge 4 01 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-4.01-00-vsock.patch"
-   kernel_is ge 4 02 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-4.02-00-nd_set_link.patch"
-   kernel_is ge 4 02 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-4.02-01-sk_alloc.patch"
-   kernel_is ge 4 03 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-4.03-00-vmci-misc_deregister.patch"
+   kernel_is ge 4 1 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-4.01-00-vsock.patch"
+   kernel_is ge 4 2 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-4.02-00-nd_set_link.patch"
+   kernel_is ge 4 2 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-4.02-01-sk_alloc.patch"
+   kernel_is ge 4 3 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-4.03-00-vmci-misc_deregister.patch"
+   kernel_is ge 4 5 0 && epatch 
"${FILESDIR}/${PV_MAJOR}-4.05-00-vmblock-follow_link.patch"
 
# Allow user patches so they can support RC kernels and whatever else
epatch_user



[gentoo-commits] proj/linux-patches: New tag: 3.4-94

2016-03-21 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Mar 21 19:23:11 2016 +

New tag: 3.4-94




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

2016-03-21 Thread Mike Frysinger
commit: 596b078da777fa1b066d57366803a13855a0c652
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Mar 21 18:45:08 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Mar 21 18:45:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=596b078d

sys-apps/busybox: version bump to 1.24.2 #577610

 sys-apps/busybox/Manifest  |   1 +
 sys-apps/busybox/busybox-1.24.2.ebuild | 305 +
 .../files/busybox-1.24.2-CVE-2016-2147.patch   |  72 +
 .../files/busybox-1.24.2-CVE-2016-2148.patch   |  55 
 .../busybox-1.24.2-ash-recursive-heredocs.patch|  83 ++
 5 files changed, 516 insertions(+)

diff --git a/sys-apps/busybox/Manifest b/sys-apps/busybox/Manifest
index b8590e5..f3487c1 100644
--- a/sys-apps/busybox/Manifest
+++ b/sys-apps/busybox/Manifest
@@ -2,3 +2,4 @@ DIST busybox-1.21.0.tar.bz2 2200841 SHA256 
eb9d268627783297f5f459cb9bd61a94e395d
 DIST busybox-1.23.1.tar.bz2 2252635 SHA256 
300f1db0a7ca4ecee8f8d8027aba250b903372e8339b7d9123d37c1e900473bf SHA512 
60849c220dde596c4197f16dd844573b24dd46c8544345a2d5a2b1976fa0ac340d22fbc97f5a1437b7de1c04f4e16aa07b3d62bc77eb83b2467582a50ed4b362
 WHIRLPOOL 
7cd25e42e74663849b094df699a72deaf02b1088064a511341f76aaa419c936557bbafd54523c6818082dfd4e17605f06ee51abed238ef57a56a9be12c910f99
 DIST busybox-1.23.2.tar.bz2 2252786 SHA256 
05a6f9e21aad8c098e388ae77de7b2361941afa7157ef74216703395b14e319a SHA512 
209c8ef26e40ccb81510f6b663202b080f9bbecac7faf386bbabf7e36a43d63b15dd6ce9f7a84c1ccc5345c524999812251da1e113ef9faadc6af1fedd24c7c9
 WHIRLPOOL 
a0396f7f49ae702f1617e72d5d4646aceec4eba67219c7125bd8d0926d1acb1ef41ea15a7406c3cf5e5e0d8925cc75910ed5128e5fbdd257b80e2cb4f7a048a2
 DIST busybox-1.24.1.tar.bz2 2068803 SHA256 
37d03132cc078937360b392170b7a1d0e5b322eee9f57c0b82292a8b1f0afe3d SHA512 
3afc757ebaae61ae13c2c69097ee734717434f9e658eb77093a8b7b49af3326cbca2d723483ff84a1da99544b822fd2b47d9a97c68f09962e11754e5daf124ca
 WHIRLPOOL 
5e827d08d737caac832e7e5923da624094ff27ee2edbb46dadc339e95edba65378a8fa3db412682724476a2092eee41a804f8f36c2eec0b9f883f5ba855f3ad0
+DIST busybox-1.24.2.tar.bz2 2066822 SHA256 
e71ef53ec656f31c42633918d301405d40dea1d97eca12f272217ae4a971c855 SHA512 
4d20fb68ee440be2855231c7fd5f3cb9dd9bfcc1a688f0b59cd3f7a55c8819e9cc44bd15f91500713571f2a84e5e44adc0fa8ae0ae3ebf63961dfc9e1c9ef8e0
 WHIRLPOOL 
2d89e3fded8d61567873acdb1e1e21888a4447e19c1b893543bbe82de52e8e3cf091adb10f34aa155da573994d89ae42f40ecce65ec0d32a641d103c8d8ce053

diff --git a/sys-apps/busybox/busybox-1.24.2.ebuild 
b/sys-apps/busybox/busybox-1.24.2.ebuild
new file mode 100644
index 000..ade4b52
--- /dev/null
+++ b/sys-apps/busybox/busybox-1.24.2.ebuild
@@ -0,0 +1,305 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# See `man savedconfig.eclass` for info on how to use USE=savedconfig.
+
+EAPI="4"
+inherit eutils flag-o-matic savedconfig toolchain-funcs multilib
+
+DESCRIPTION="Utilities for rescue and embedded systems"
+HOMEPAGE="http://www.busybox.net/";
+if [[ ${PV} == "" ]] ; then
+   MY_P=${PN}
+   EGIT_REPO_URI="git://busybox.net/busybox.git"
+   inherit git-2
+else
+   MY_P=${PN}-${PV/_/-}
+   SRC_URI="http://www.busybox.net/downloads/${MY_P}.tar.bz2";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+fi
+
+LICENSE="GPL-2" # GPL-2 only
+SLOT="0"
+IUSE="debug ipv6 livecd make-symlinks math mdev pam selinux sep-usr static 
syslog systemd"
+RESTRICT="test"
+
+COMMON_DEPEND="!static? ( selinux? ( sys-libs/libselinux ) )
+   pam? ( sys-libs/pam )"
+DEPEND="${COMMON_DEPEND}
+   static? ( selinux? ( sys-libs/libselinux[static-libs(+)] ) )
+   >=sys-kernel/linux-headers-2.6.39"
+RDEPEND="${COMMON_DEPEND}
+   mdev? ( !.*set:CONFIG_$1=y:g" .config
+   else
+   sed -i -e "s:CONFIG_$1=y:# CONFIG_$1 is not set:g" 
.config
+   fi
+   einfo $(grep "CONFIG_$1[= ]" .config || echo Could not find 
CONFIG_$1 ...)
+   shift
+   done
+}
+
+busybox_config_enabled() {
+   local val=$(sed -n "/^CONFIG_$1=/s:^[^=]*=::p" .config)
+   case ${val} in
+   "") return 1 ;;
+   y)  return 0 ;;
+   *)  echo "${val}" | sed -r 's:^"(.*)"$:\1:' ;;
+   esac
+}
+
+src_prepare() {
+   unset KBUILD_OUTPUT #88088
+   append-flags -fno-strict-aliasing #310413
+   use ppc64 && append-flags -mminimal-toc #130943
+
+   # patches go here!
+   epatch "${FILESDIR}"/${PN}-1.19.0-bb.patch
+   epatch "${FILESDIR}"/busybox-1.24.1-trylink-ldflags.patch
+   epatch "${FILESDIR}"/busybox-1.24.2-ash-recursive-heredocs.patch
+   epatch "${FILESDIR}"/busybox-1.24.2-CVE-2016-2147.patch
+   epatch "${FILESDIR}"/busybox-1.24.2-CVE-2016-2148.patch
+   cp "${FILESDIR}"/ginit.c init/ || die
+
+   # flag 

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

2016-03-21 Thread Michael Weber
commit: 422a75a3caa98640e29bfc11080ccadfc6bb9969
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Mar 21 18:17:03 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Mar 21 18:17:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422a75a3

dev-util/fatrace: Version bump, fix python pkg_setup (bug 482848, thanks vapier 
& mgorny).

Package-Manager: portage-2.2.28

 dev-util/fatrace/fatrace-0.11.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-util/fatrace/fatrace-0.11.ebuild 
b/dev-util/fatrace/fatrace-0.11.ebuild
index fa0f30f..a9b362e 100644
--- a/dev-util/fatrace/fatrace-0.11.ebuild
+++ b/dev-util/fatrace/fatrace-0.11.ebuild
@@ -23,6 +23,10 @@ REQUIRED_USE="powertop? ( ${PYTHON_REQUIRED_USE} )"
 
 CONFIG_CHECK="~FANOTIFY"
 
+pkg_setup() {
+   use powertop && python-single-r1_pkg_setup
+}
+
 src_prepare() {
tc-export CC
 }



[gentoo-commits] proj/kde:master commit in: net-irc/konversation/

2016-03-21 Thread Johannes Huber
commit: 308dc9ed14595d5b6faba096223cffe5d5ca84f6
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Mar 21 18:00:08 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Mar 21 18:00:08 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=308dc9ed

net-irc/konversation: EAPI 6

Package-Manager: portage-2.2.28

 net-irc/konversation/konversation-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/konversation/konversation-.ebuild 
b/net-irc/konversation/konversation-.ebuild
index c37b9d3..03b10b3 100644
--- a/net-irc/konversation/konversation-.ebuild
+++ b/net-irc/konversation/konversation-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 KDE_HANDBOOK="true"
 inherit kde5



[gentoo-commits] proj/kde:master commit in: www-client/rekonq/

2016-03-21 Thread Johannes Huber
commit: ffe31522a629b74b9ae39e7c393ba780dcb037be
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Mar 21 17:59:00 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Mar 21 17:59:00 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ffe31522

www-client/rekonq: EAPI 6

Package-Manager: portage-2.2.28

 www-client/rekonq/rekonq-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/rekonq/rekonq-.ebuild 
b/www-client/rekonq/rekonq-.ebuild
index 2dc5404..9b38369 100644
--- a/www-client/rekonq/rekonq-.ebuild
+++ b/www-client/rekonq/rekonq-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 KDE_HANDBOOK="true"
 EGIT_BRANCH="frameworks"



[gentoo-commits] proj/kde:master commit in: dev-libs/statusnotifier/

2016-03-21 Thread Johannes Huber
commit: fd4f7c7d5a262cb67f28cf86b22c2b22ad2ec5b9
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Mar 21 17:48:37 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Mar 21 17:48:37 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=fd4f7c7d

dev-libs/statusnotifier: EAPI 6

Package-Manager: portage-2.2.28

 dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild 
b/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild
index 1438a04..da39b69 100644
--- a/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild
+++ b/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 inherit autotools
 
@@ -23,6 +23,7 @@ DEPEND="${RDEPEND}
 
 src_prepare() {
eautoreconf
+   eapply_user
 }
 
 src_configure() {



[gentoo-commits] proj/kde:master commit in: dev-libs/purpose/

2016-03-21 Thread Johannes Huber
commit: 0cf2dfe206053d6bfa8f68cec3376d780a389e10
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Mar 21 16:47:19 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Mar 21 16:47:19 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0cf2dfe2

dev-libs/purpose: EAPI 6

Package-Manager: portage-2.2.28

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

diff --git a/dev-libs/purpose/purpose-.ebuild 
b/dev-libs/purpose/purpose-.ebuild
index 7054938..37c8b47 100644
--- a/dev-libs/purpose/purpose-.ebuild
+++ b/dev-libs/purpose/purpose-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 KDE_TEST="forceoptional"
 inherit kde5



[gentoo-commits] proj/kde:master commit in: dev-libs/xembed-sni-proxy/

2016-03-21 Thread Johannes Huber
commit: 41b4cc78aace8caa82b202fe9646f61749856c3f
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Mar 21 16:46:17 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Mar 21 16:46:17 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=41b4cc78

dev-libs/xembed-sni-proxy: EAPI 6

Package-Manager: portage-2.2.28

 dev-libs/xembed-sni-proxy/xembed-sni-proxy-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xembed-sni-proxy/xembed-sni-proxy-.ebuild 
b/dev-libs/xembed-sni-proxy/xembed-sni-proxy-.ebuild
index 0a97ded..058b9d4 100644
--- a/dev-libs/xembed-sni-proxy/xembed-sni-proxy-.ebuild
+++ b/dev-libs/xembed-sni-proxy/xembed-sni-proxy-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 inherit kde5
 



[gentoo-commits] proj/kde:master commit in: dev-libs/funambol-sdk-cpp/

2016-03-21 Thread Johannes Huber
commit: cbe573335668eca18b7a4d1edc301b0e0d105d8d
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Mar 21 17:51:13 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Mar 21 17:51:13 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=cbe57333

dev-libs/funambol-sdk-cpp: Remove package

- dead upstream
- no consumer

 .../funambol-sdk-cpp/funambol-sdk-cpp-8.0.0.ebuild | 25 --
 dev-libs/funambol-sdk-cpp/metadata.xml |  8 ---
 2 files changed, 33 deletions(-)

diff --git a/dev-libs/funambol-sdk-cpp/funambol-sdk-cpp-8.0.0.ebuild 
b/dev-libs/funambol-sdk-cpp/funambol-sdk-cpp-8.0.0.ebuild
deleted file mode 100644
index eb02e05..000
--- a/dev-libs/funambol-sdk-cpp/funambol-sdk-cpp-8.0.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils autotools
-
-DESCRIPTION="Funambol Client SDK, C++ part only"
-HOMEPAGE="https://www.forge.funambol.org/download/";
-SRC_URI="http://dev.gentooexperimental.org/~dreeevil/${P}.tar.bz2";
-
-LICENSE="AGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${P}/build/autotools"
-
-src_prepare() {
-   eautoreconf
-}

diff --git a/dev-libs/funambol-sdk-cpp/metadata.xml 
b/dev-libs/funambol-sdk-cpp/metadata.xml
deleted file mode 100644
index 2fdbf33..000
--- a/dev-libs/funambol-sdk-cpp/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   
-   k...@gentoo.org
-   Gentoo KDE Project
-   
-



[gentoo-commits] proj/kde:master commit in: dev-libs/libdbusmenu-qt/

2016-03-21 Thread Johannes Huber
commit: e8ad76eb2adbbeea3d5da003dc67375cbb49edfe
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Mar 21 17:43:53 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Mar 21 17:43:53 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e8ad76eb

dev-libs/libdbusmenu-qt: EAPI 6

Package-Manager: portage-2.2.28

 dev-libs/libdbusmenu-qt/libdbusmenu-qt-.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-.ebuild 
b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-.ebuild
index 4f0e76e..368fc09 100644
--- a/dev-libs/libdbusmenu-qt/libdbusmenu-qt-.ebuild
+++ b/dev-libs/libdbusmenu-qt/libdbusmenu-qt-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 EBZR_REPO_URI="lp:libdbusmenu-qt"
 
@@ -64,13 +64,13 @@ src_prepare() {
[[ ${PV} == * ]] && bzr_src_prepare
cmake-utils_src_prepare
 
-   comment_add_subdirectory tools
-   use test || comment_add_subdirectory tests
+   cmake_comment_add_subdirectory tools
+   use test || cmake_comment_add_subdirectory tests
 }
 
 multilib_src_configure() {
local mycmakeargs=(
-   $(cmake-utils_use_with doc)
+   -DWITH_DOC=$(usex doc)
-DUSE_QT${QT_MULTIBUILD_VARIANT}=ON

-DQT_QMAKE_EXECUTABLE="/usr/$(get_libdir)/qt${QT_MULTIBUILD_VARIANT}/bin/qmake"
)



[gentoo-commits] proj/gamerlay:master commit in: games-fps/redeclipse/

2016-03-21 Thread Azamat H. Hackimov
commit: f8a9a7244a87d29a16c638fb114eeb033bc91472
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Mon Mar 21 17:49:03 2016 +
Commit: Azamat H. Hackimov  gentoo  ru>
CommitDate: Mon Mar 21 17:49:03 2016 +
URL:https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=f8a9a724

[games-fps/redeclipse] Min req libenet is 1.3.9

Thanks to post from maillist.

 games-fps/redeclipse/redeclipse-1.5.3.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/games-fps/redeclipse/redeclipse-1.5.3.ebuild 
b/games-fps/redeclipse/redeclipse-1.5.3.ebuild
index 325466e..50b4f9d 100644
--- a/games-fps/redeclipse/redeclipse-1.5.3.ebuild
+++ b/games-fps/redeclipse/redeclipse-1.5.3.ebuild
@@ -26,7 +26,7 @@ DEPEND="!dedicated? (
virtual/opengl
x11-libs/libX11
)
-   net-libs/enet:1.3
+   >=net-libs/enet-1.3.9:1.3
sys-libs/zlib"
 RDEPEND="${DEPEND}"
 
@@ -45,6 +45,8 @@ src_prepare() {
-e "s:@DATADIR@:${GAMES_DATADIR}:g" \
-e "s:@DOCDIR@:${GAMES_DATADIR_BASE}/doc/${PF}:" \
-e "s:@REDECLIPSE@:${PN}:g" \
+   -e "s:@APPNAME@:${PN}:g" \
+   -e "s:@CAPPNAME@:REDECLIPSE:g" \
doc/man/redeclipse.6.am \
> doc/man/redeclipse.6
 
@@ -52,6 +54,8 @@ src_prepare() {
-e "s:@DATADIR@:${GAMES_DATADIR}:g" \
-e "s:@DOCDIR@:${GAMES_DATADIR_BASE}/doc/${PF}:" \
-e "s:@REDECLIPSE@:${PN}:g" \
+   -e "s:@APPNAME@:${PN}:g" \
+   -e "s:@CAPPNAME@:REDECLIPSE:g" \
doc/man/redeclipse-server.6.am \
> doc/man/redeclipse-server.6
 }



[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: core/var/lib/portage/, core/etc/grs/

2016-03-21 Thread Anthony G. Basile
commit: 7fd0c9a82020f0c2a7829e3c49bffc391c34d4cb
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 17:31:43 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 17:39:38 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=7fd0c9a8

world: drop chkrootkit, masked in tree

 core/etc/grs/world.conf| 3 ---
 core/var/lib/portage/world.CYCLE.4 | 1 -
 2 files changed, 4 deletions(-)

diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf
index f27b7ab..6bb0aa3 100644
--- a/core/etc/grs/world.conf
+++ b/core/etc/grs/world.conf
@@ -496,9 +496,6 @@ package.use : app-forensics/aide:0 -audit -mhash -nls 
-postgres -prelink -selinu
 [app-forensics/air:0]
 package.use : app-forensics/air:0 crypt
 
-[app-forensics/chkrootkit:0]
-package.use : app-forensics/chkrootkit:0 cron
-
 [app-i18n/anthy:0]
 package.use : app-i18n/anthy:0 -canna-2ch -emacs static-libs
 

diff --git a/core/var/lib/portage/world.CYCLE.4 
b/core/var/lib/portage/world.CYCLE.4
index 10e8f2f..d730f12 100644
--- a/core/var/lib/portage/world.CYCLE.4
+++ b/core/var/lib/portage/world.CYCLE.4
@@ -401,7 +401,6 @@ app-eselect/eselect-sh
 app-eselect/eselect-unison
 app-forensics/aide
 app-forensics/air
-app-forensics/chkrootkit
 app-forensics/cmospwd
 app-forensics/examiner
 app-forensics/foremost



[gentoo-commits] proj/grs:desktop-amd64-uclibc-hardened commit in: core/var/lib/portage/, core/etc/grs/

2016-03-21 Thread Anthony G. Basile
commit: 2cc588e0f4f9f0f354e4c3483b5a33cb41783c94
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 17:31:43 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 17:32:06 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=2cc588e0

world: drop chkrootkit, masked in tree

 core/etc/grs/world.conf| 3 ---
 core/var/lib/portage/world.CYCLE.4 | 1 -
 2 files changed, 4 deletions(-)

diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf
index 4ea57b0..51f70f1 100644
--- a/core/etc/grs/world.conf
+++ b/core/etc/grs/world.conf
@@ -506,9 +506,6 @@ package.use : app-forensics/aide:0 -audit -mhash -nls 
-postgres -prelink -selinu
 [app-forensics/air:0]
 package.use : app-forensics/air:0 crypt
 
-[app-forensics/chkrootkit:0]
-package.use : app-forensics/chkrootkit:0 cron
-
 [app-forensics/sleuthkit:0]
 package.use : app-forensics/sleuthkit:0 -aff -ewf static-libs
 

diff --git a/core/var/lib/portage/world.CYCLE.4 
b/core/var/lib/portage/world.CYCLE.4
index a9e9696..f691ce3 100644
--- a/core/var/lib/portage/world.CYCLE.4
+++ b/core/var/lib/portage/world.CYCLE.4
@@ -402,7 +402,6 @@ app-eselect/eselect-unison
 app-forensics/aide
 app-forensics/air
 app-forensics/autopsy
-app-forensics/chkrootkit
 app-forensics/cmospwd
 app-forensics/examiner
 app-forensics/foremost



[gentoo-commits] proj/grs:desktop-amd64-hardened commit in: core/var/lib/portage/, core/etc/grs/

2016-03-21 Thread Anthony G. Basile
commit: 33923c029a3f95970d9ec85ff2dc2719dbda414e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 21 17:31:43 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 21 17:31:43 2016 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=33923c02

world: drop chkrootkit, masked in tree

 core/etc/grs/world.conf| 3 ---
 core/var/lib/portage/world.CYCLE.4 | 1 -
 2 files changed, 4 deletions(-)

diff --git a/core/etc/grs/world.conf b/core/etc/grs/world.conf
index 4e47edf..b7bfecd 100644
--- a/core/etc/grs/world.conf
+++ b/core/etc/grs/world.conf
@@ -494,9 +494,6 @@ package.use : app-forensics/aide:0 -audit -mhash -nls 
-postgres -prelink -selinu
 [app-forensics/air:0]
 package.use : app-forensics/air:0 crypt
 
-[app-forensics/chkrootkit:0]
-package.use : app-forensics/chkrootkit:0 cron
-
 [app-forensics/sleuthkit:0]
 package.use : app-forensics/sleuthkit:0 -aff -ewf static-libs
 

diff --git a/core/var/lib/portage/world.CYCLE.4 
b/core/var/lib/portage/world.CYCLE.4
index 1641f43..49ce7d9 100644
--- a/core/var/lib/portage/world.CYCLE.4
+++ b/core/var/lib/portage/world.CYCLE.4
@@ -402,7 +402,6 @@ app-eselect/eselect-unison
 app-forensics/aide
 app-forensics/air
 app-forensics/autopsy
-app-forensics/chkrootkit
 app-forensics/cmospwd
 app-forensics/examiner
 app-forensics/foremost



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

2016-03-21 Thread Michael Weber
commit: 6458271ca7c6400650442506cb76efb086e66ac4
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Mar 21 17:07:00 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Mar 21 17:07:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6458271c

dev-util/fatrace: Version bump.

Package-Manager: portage-2.2.28

 dev-util/fatrace/Manifest|  1 +
 dev-util/fatrace/fatrace-0.11.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-util/fatrace/Manifest b/dev-util/fatrace/Manifest
index be79225..5713c09 100644
--- a/dev-util/fatrace/Manifest
+++ b/dev-util/fatrace/Manifest
@@ -1,2 +1,3 @@
 DIST fatrace-0.10.tar.bz2 19178 SHA256 
2afb6ed0f69abe51f290515398216e2cb3201f5362a3f0afe7e6b8a797d80c60 SHA512 
9e2e932f965ca95dcd2687d542c7d39701fca9db6279431f3e4a2f14dae4d56cc0012ab5bdaef57b711caa39d4e16ce012fb6a0eda9ba158ab768b0c836bfdb6
 WHIRLPOOL 
b2f91b9c9ab8d951c3933f0f2ac192f9fde7d4e95c1a3cd83343ea29d2f2cb5c6009f4d7c8f4e8b47c71ad2217249572d6244b1bd5908d2309881d57d8db1474
+DIST fatrace-0.11.tar.bz2 19354 SHA256 
9aa04de50d8549c152f86fab0e2bf81df553af6548b4b31d72cb512b84d8e7b8 SHA512 
4849f5f2aff423f915caedb63323c3888146124f856e141090bdc8eeff812b473ed194116684edd7ca0f10239c7e765740f109f0da0d364cd231430f6f5da441
 WHIRLPOOL 
a4d631706c62c437ea0cdb61b1277b45d218e01a4ccdaaf12106fa6a25d624d23dfe943e2917095ed38ba2808574f041f7cd6b4ebad11e176c596017c8769660
 DIST fatrace-0.9.tar.bz2 18828 SHA256 
c028d822ffde68805e5d1f62c4e2d0f4b3d4ae565802cc9468c82b25b92e68cd SHA512 
a1dbc17e1e408ddfc145e8f70580b0f5ce500fb53736d6a22547c370c4b221b362973c19a40df3c2dd911c899d74e9dc944a881eea99f9d143f6de7e213146c3
 WHIRLPOOL 
d9b8e05cd32a9fe3904b2f1ba41ddff3e70e44610ae0f05940bb70aa54f40ed5cf6890fd6abd7b5eb4b8015a209c77e49dee6919e7afe3875a32f17f25f4ae53

diff --git a/dev-util/fatrace/fatrace-0.11.ebuild 
b/dev-util/fatrace/fatrace-0.11.ebuild
new file mode 100644
index 000..fa0f30f
--- /dev/null
+++ b/dev-util/fatrace/fatrace-0.11.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{3_3,3_4,3_5} )
+
+inherit linux-info python-r1 toolchain-funcs
+
+DESCRIPTION="report file access events from all running processes"
+HOMEPAGE="https://launchpad.net/fatrace";
+SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="powertop"
+
+RDEPEND="powertop? ( ${PYTHON_DEPS} )"
+DEPEND="${RDEPEND}"
+REQUIRED_USE="powertop? ( ${PYTHON_REQUIRED_USE} )"
+
+CONFIG_CHECK="~FANOTIFY"
+
+src_prepare() {
+   tc-export CC
+}
+
+src_install() {
+   dosbin fatrace
+   use powertop && dosbin power-usage-report
+
+   doman fatrace.1
+   dodoc NEWS
+}



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

2016-03-21 Thread Michael Weber
commit: 77939245c23aaa0bd1604fcb70a78fd007d625d1
Author: Michael Weber  gentoo  org>
AuthorDate: Mon Mar 21 17:03:46 2016 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Mar 21 17:07:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77939245

dev-util/fatrace: drop old.

Package-Manager: portage-2.2.28

 dev-util/fatrace/Manifest   |  2 --
 dev-util/fatrace/fatrace-0.4.ebuild | 44 -
 dev-util/fatrace/fatrace-0.5.ebuild | 35 -
 3 files changed, 81 deletions(-)

diff --git a/dev-util/fatrace/Manifest b/dev-util/fatrace/Manifest
index f259b6d..be79225 100644
--- a/dev-util/fatrace/Manifest
+++ b/dev-util/fatrace/Manifest
@@ -1,4 +1,2 @@
 DIST fatrace-0.10.tar.bz2 19178 SHA256 
2afb6ed0f69abe51f290515398216e2cb3201f5362a3f0afe7e6b8a797d80c60 SHA512 
9e2e932f965ca95dcd2687d542c7d39701fca9db6279431f3e4a2f14dae4d56cc0012ab5bdaef57b711caa39d4e16ce012fb6a0eda9ba158ab768b0c836bfdb6
 WHIRLPOOL 
b2f91b9c9ab8d951c3933f0f2ac192f9fde7d4e95c1a3cd83343ea29d2f2cb5c6009f4d7c8f4e8b47c71ad2217249572d6244b1bd5908d2309881d57d8db1474
-DIST fatrace-0.4.tar.bz2 18155 SHA256 
8abd5d382610e3284f4057dc202f565ff653a5432f3bbc65463be61647e2ef94 SHA512 
bd2e31a16f79127294a9599094c41043a612609241653f33fdb8adef17da99a781b5029f6b1af1731b7c939e7ae3c1d2c19f985dde72c9f409e6945d4dc1f7ce
 WHIRLPOOL 
c28337e5ca3d14b045704bb23ce386034c5a71559f8ed1a5bb471b4f4202af87088120d7e8e3de76ceae1d860b47179aceead09f277297895753c75ebfc2186e
-DIST fatrace-0.5.tar.bz2 18310 SHA256 
de7e04df5650d84da9b1cecd60b0f1dade50adf7cff57835a8617bc94f2becf0 SHA512 
e0357e6e74683f4d6ffaa958a704bca996823406a77b92c36537ff2bb4a47b39dd909186b0f0a5cb46672bf48d0ba64c07288d9a1f7fc83bc3928bce5bf91b2d
 WHIRLPOOL 
0bf8ddf1370e9ab95945ed4a5df5f37c3c81e3cff7f22b05f23a86ec48507dc16541e30f58871f426624877df8afafaec3f925ed010745ef0313647bb7134efc
 DIST fatrace-0.9.tar.bz2 18828 SHA256 
c028d822ffde68805e5d1f62c4e2d0f4b3d4ae565802cc9468c82b25b92e68cd SHA512 
a1dbc17e1e408ddfc145e8f70580b0f5ce500fb53736d6a22547c370c4b221b362973c19a40df3c2dd911c899d74e9dc944a881eea99f9d143f6de7e213146c3
 WHIRLPOOL 
d9b8e05cd32a9fe3904b2f1ba41ddff3e70e44610ae0f05940bb70aa54f40ed5cf6890fd6abd7b5eb4b8015a209c77e49dee6919e7afe3875a32f17f25f4ae53

diff --git a/dev-util/fatrace/fatrace-0.4.ebuild 
b/dev-util/fatrace/fatrace-0.4.ebuild
deleted file mode 100644
index 2f6f7dc..000
--- a/dev-util/fatrace/fatrace-0.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-PYTHON_DEPEND="powertop? *"
-
-inherit linux-info python toolchain-funcs
-
-DESCRIPTION="report file access events from all running processes"
-HOMEPAGE="https://launchpad.net/fatrace";
-SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="powertop"
-
-RDEPEND="powertop? ( =sys-power/powertop-1.13 )"
-DEPEND=""
-
-CONFIG_CHECK="~FANOTIFY"
-
-pkg_setup() {
-   linux-info_pkg_setup
-   python_pkg_setup
-}
-
-src_prepare() {
-   if use powertop ; then
-   sed -e "s/powertop-1.13/powertop/g" \
-   -i power-usage-report || die
-   fi
-
-   tc-export CC
-}
-
-src_install() {
-   dosbin fatrace
-   use powertop && dosbin power-usage-report
-
-   doman fatrace.1
-   dodoc NEWS
-}

diff --git a/dev-util/fatrace/fatrace-0.5.ebuild 
b/dev-util/fatrace/fatrace-0.5.ebuild
deleted file mode 100644
index 7308375..000
--- a/dev-util/fatrace/fatrace-0.5.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{3_3,3_4} )
-
-inherit linux-info python-single-r1 toolchain-funcs
-
-DESCRIPTION="report file access events from all running processes"
-HOMEPAGE="https://launchpad.net/fatrace";
-SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="powertop"
-
-RDEPEND="powertop? ( ${PYTHON_DEPS} )"
-DEPEND=""
-
-CONFIG_CHECK="~FANOTIFY"
-
-src_prepare() {
-   tc-export CC
-}
-
-src_install() {
-   dosbin fatrace
-   use powertop && dosbin power-usage-report
-
-   doman fatrace.1
-   dodoc NEWS
-}



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

2016-03-21 Thread Hans de Graaff
commit: 24a0497b21b40d4532cf0d2095772371fecadb2b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 21 16:34:04 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 21 16:36:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24a0497b

dev-ruby/mocha: add ruby23

Package-Manager: portage-2.2.26

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

diff --git a/dev-ruby/mocha/mocha-1.1.0.ebuild 
b/dev-ruby/mocha/mocha-1.1.0.ebuild
index 1c8bf1a..1b54619 100644
--- a/dev-ruby/mocha/mocha-1.1.0.ebuild
+++ b/dev-ruby/mocha/mocha-1.1.0.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_TASK_TEST="test:units"
 



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

2016-03-21 Thread Hans de Graaff
commit: abc39ab8a00f8c6662685c57cf6fa7a44da69c0f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 21 16:25:47 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 21 16:36:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abc39ab8

dev-ruby/instantiator: add ruby23

Package-Manager: portage-2.2.26

 dev-ruby/instantiator/instantiator-0.0.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/instantiator/instantiator-0.0.6.ebuild 
b/dev-ruby/instantiator/instantiator-0.0.6.ebuild
index 91f4b58..040e4a1 100644
--- a/dev-ruby/instantiator/instantiator-0.0.6.ebuild
+++ b/dev-ruby/instantiator/instantiator-0.0.6.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="README.md"
@@ -19,7 +19,7 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 
-ruby_add_rdepend "dev-ruby/blankslate"
+ruby_add_rdepend "dev-ruby/blankslate:*"
 
 all_ruby_prepare() {
sed -i -e '/bundler/I s:^:#:' Rakefile test/test_helper.rb || die



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

2016-03-21 Thread Hans de Graaff
commit: 8ecac7933dd72ab742b5bf190a1b11d3f6695f3b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 21 16:44:19 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 21 16:44:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ecac793

dev-ruby/timecop: drop ruby19, add ruby23

Package-Manager: portage-2.2.26

 dev-ruby/timecop/timecop-0.8.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/timecop/timecop-0.8.0.ebuild 
b/dev-ruby/timecop/timecop-0.8.0.ebuild
index 1c43f76..6324449 100644
--- a/dev-ruby/timecop/timecop-0.8.0.ebuild
+++ b/dev-ruby/timecop/timecop-0.8.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_TASK_TEST="test"
 



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

2016-03-21 Thread Hans de Graaff
commit: 59d0e61764159d7bd275508cf91cfd9f816cd41d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 21 16:41:52 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 21 16:41:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59d0e617

dev-ruby/net-ssh: add ruby23

Package-Manager: portage-2.2.26

 dev-ruby/net-ssh/net-ssh-3.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild 
b/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild
index dfc9c63..8997747 100644
--- a/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild
+++ b/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_TASK_TEST=""
 



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

2016-03-21 Thread Hans de Graaff
commit: e8468cc261867e3ca2c1be794714a1b282677bd1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 21 16:16:21 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 21 16:36:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8468cc2

dev-ruby/introspection: drop ruby19

Package-Manager: portage-2.2.26

 dev-ruby/introspection/introspection-0.0.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/introspection/introspection-0.0.3.ebuild 
b/dev-ruby/introspection/introspection-0.0.3.ebuild
index 66876e8..954902e 100644
--- a/dev-ruby/introspection/introspection-0.0.3.ebuild
+++ b/dev-ruby/introspection/introspection-0.0.3.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 # No documentation task
 RUBY_FAKEGEM_TASK_DOC=""



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

2016-03-21 Thread Hans de Graaff
commit: c4a74789226a5b2e186026e08311e34266973b73
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 21 16:31:50 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 21 16:36:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4a74789

dev-ruby/introspection: add ruby23

Package-Manager: portage-2.2.26

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

diff --git a/dev-ruby/introspection/introspection-0.0.3.ebuild 
b/dev-ruby/introspection/introspection-0.0.3.ebuild
index 954902e..5a81357 100644
--- a/dev-ruby/introspection/introspection-0.0.3.ebuild
+++ b/dev-ruby/introspection/introspection-0.0.3.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 # No documentation task
 RUBY_FAKEGEM_TASK_DOC=""



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

2016-03-21 Thread Hans de Graaff
commit: 0157ce3aa751ddc60bf899bf54182db63de5e167
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 21 06:21:49 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 21 16:14:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0157ce3a

dev-ruby/net-ssh: cleanup

Package-Manager: portage-2.2.26

 dev-ruby/net-ssh/Manifest |  2 --
 dev-ruby/net-ssh/net-ssh-2.9.2.ebuild | 31 ---
 dev-ruby/net-ssh/net-ssh-3.0.1.ebuild | 31 ---
 3 files changed, 64 deletions(-)

diff --git a/dev-ruby/net-ssh/Manifest b/dev-ruby/net-ssh/Manifest
index a3b8c4b..d749f07 100644
--- a/dev-ruby/net-ssh/Manifest
+++ b/dev-ruby/net-ssh/Manifest
@@ -1,5 +1,3 @@
 DIST net-ssh-git-2.10.0.tgz 172885 SHA256 
ef063f3f967ec614df49acd74ede7694124f7ffc28c20c7434ac3841c181429a SHA512 
f66db6465667baf0c253868cc15aab3261675a8c15ca4b244c3cd587ae5e8b7a273959b97d5fc498ff1b19e1f06f51ea571573d243366a59ef56faf41c2ae347
 WHIRLPOOL 
1460082033e0cef7dc6ddb2a645943039c0619573701c25fd6e0f784b596b8010142eef295e7df84a30f4239c8da743c500571ed557081b72d5a0212ffb8e9d0
 DIST net-ssh-git-2.8.0.tgz 164483 SHA256 
313c63f205f72469aa48d25690b8f98c14cbe0bf90ed2d577191599d609a5b4f SHA512 
b16394cdd8d0e3c92f5b22fc882615ef7309606b5d8a413711dda9b76f628c74bc29bad96f0166d31d9de55c14bed1df178053e2d8afa47d78d5d8053e70a631
 WHIRLPOOL 
1dc057363d847df650e8e704f50bbbe095859f4bda1e617c86f234da28bfbaf57ea5a65ea9b48ea3c999e0dc02a7345bb6a060820509f75bb17aeb6aa521963a
-DIST net-ssh-git-2.9.2.tgz 170078 SHA256 
5a657655c76feeb22e726ca54e9d422ed2a7825bedf64c505b4765c6f8ef3105 SHA512 
c60ccbf8bc387405c36c230ba4702400841e5f6cc19c99b17d6eba86e97cc65f853839fa322d8f70654bbdb2a2be9ffa5952ab2cab25bb90ed76f54711091206
 WHIRLPOOL 
29d4780129f77582c2d702c784fa1b1b6c57fae88e4f93401031496abf03e590d10623854767d813cfe60e3f40fb7dc24d162256425691d2d69fb0c77287da30
-DIST net-ssh-git-3.0.1.tgz 173414 SHA256 
a27cbfa7471920f5d80696434eb83d27d53af8f119f661826d73c95c30776bbb SHA512 
dfbf087ab4c514a091514022103ded3a59e49f5b6c9c9acd78b1f18bd360c1838857f45bdbe17a1de1b671c75905da02ee7d6372ea222ed7f1e3a363d1a0a3dd
 WHIRLPOOL 
e31fc2afa4ed805b7e3ff07b1aa2b72ba3d858f358b820307a833729451575c5070294ec918add50b5286c50002a12fa3f26069cec01fd34ed8db26db861fbc9
 DIST net-ssh-git-3.0.2.tgz 175130 SHA256 
3d9ffc60b621f3aac4a6687e625759358b6b404122cf0bf0492f23b16c72467b SHA512 
a55bab7d79b660f5cf16ad498732edeb8d555777cf70973b7d89f46f111374f2e0d6143202fd9e50cc0112aad79dd7fcfeafe0e5a470c9917650700e03ca756c
 WHIRLPOOL 
d1d78a59697fe3c4afc5c35a6492ff5cea55a891b47d1cc7daca628b1c8a92dfa6af6ae5262b1de7e62607bb8fcaa99c6b32386642457d8786467e8c784ab6b6

diff --git a/dev-ruby/net-ssh/net-ssh-2.9.2.ebuild 
b/dev-ruby/net-ssh/net-ssh-2.9.2.ebuild
deleted file mode 100644
index 492cbdc..000
--- a/dev-ruby/net-ssh/net-ssh-2.9.2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_TASK_TEST=""
-
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc THANKS.txt"
-RUBY_FAKEGEM_EXTRAINSTALL="support"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Non-interactive SSH processing in pure Ruby"
-HOMEPAGE="http://net-ssh.rubyforge.org/";
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
net-ssh-git-${PV}.tgz"
-
-LICENSE="GPL-2"
-SLOT="2.6"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x64-solaris ~x86-solaris"
-IUSE="test"
-
-ruby_add_rdepend "virtual/ruby-ssl"
-ruby_add_bdepend "test? ( dev-ruby/test-unit:2 >=dev-ruby/mocha-0.13 )"
-
-each_ruby_test() {
-   ${RUBY} -Ilib:test test/test_all.rb || die "Tests failed."
-}

diff --git a/dev-ruby/net-ssh/net-ssh-3.0.1.ebuild 
b/dev-ruby/net-ssh/net-ssh-3.0.1.ebuild
deleted file mode 100644
index e88466d..000
--- a/dev-ruby/net-ssh/net-ssh-3.0.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_TASK_TEST=""
-
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc THANKS.txt"
-RUBY_FAKEGEM_EXTRAINSTALL="support"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Non-interactive SSH processing in pure Ruby"
-HOMEPAGE="https://github.com/net-ssh/net-ssh";
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
net-ssh-git-${PV}.tgz"
-
-LICENSE="GPL-2"
-SLOT="3"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x64-solaris ~x86-solaris"
-IUSE="test"
-
-ruby_add_rdepend "virtual/ruby-ssl"
-ruby_add_bdepend "test? ( dev-ruby/test-unit:2 >=dev-ruby/mocha-0.13 )"
-
-each_ruby_test() {
-   ${RUBY} -Ilib:test test/test_all.rb || die "Tests failed."
-}



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

2016-03-21 Thread Hans de Graaff
commit: bd5b2ee174fa1317212a0c598a2dc2ca7083c306
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Mar 21 06:29:36 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Mar 21 16:14:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd5b2ee1

dev-ruby/net-ssh: add 3.1.0.

Package-Manager: portage-2.2.26

 dev-ruby/net-ssh/Manifest |  1 +
 dev-ruby/net-ssh/net-ssh-3.1.0.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-ruby/net-ssh/Manifest b/dev-ruby/net-ssh/Manifest
index d749f07..0a95af2 100644
--- a/dev-ruby/net-ssh/Manifest
+++ b/dev-ruby/net-ssh/Manifest
@@ -1,3 +1,4 @@
 DIST net-ssh-git-2.10.0.tgz 172885 SHA256 
ef063f3f967ec614df49acd74ede7694124f7ffc28c20c7434ac3841c181429a SHA512 
f66db6465667baf0c253868cc15aab3261675a8c15ca4b244c3cd587ae5e8b7a273959b97d5fc498ff1b19e1f06f51ea571573d243366a59ef56faf41c2ae347
 WHIRLPOOL 
1460082033e0cef7dc6ddb2a645943039c0619573701c25fd6e0f784b596b8010142eef295e7df84a30f4239c8da743c500571ed557081b72d5a0212ffb8e9d0
 DIST net-ssh-git-2.8.0.tgz 164483 SHA256 
313c63f205f72469aa48d25690b8f98c14cbe0bf90ed2d577191599d609a5b4f SHA512 
b16394cdd8d0e3c92f5b22fc882615ef7309606b5d8a413711dda9b76f628c74bc29bad96f0166d31d9de55c14bed1df178053e2d8afa47d78d5d8053e70a631
 WHIRLPOOL 
1dc057363d847df650e8e704f50bbbe095859f4bda1e617c86f234da28bfbaf57ea5a65ea9b48ea3c999e0dc02a7345bb6a060820509f75bb17aeb6aa521963a
 DIST net-ssh-git-3.0.2.tgz 175130 SHA256 
3d9ffc60b621f3aac4a6687e625759358b6b404122cf0bf0492f23b16c72467b SHA512 
a55bab7d79b660f5cf16ad498732edeb8d555777cf70973b7d89f46f111374f2e0d6143202fd9e50cc0112aad79dd7fcfeafe0e5a470c9917650700e03ca756c
 WHIRLPOOL 
d1d78a59697fe3c4afc5c35a6492ff5cea55a891b47d1cc7daca628b1c8a92dfa6af6ae5262b1de7e62607bb8fcaa99c6b32386642457d8786467e8c784ab6b6
+DIST net-ssh-git-3.1.0.tgz 177270 SHA256 
10895e9acb9da3d4ef8a55d667ffe12c1055c7b29e7dd9fb03e7748a81e6babc SHA512 
f0c1e4020ef9fe8a5803289deaeaf189b8ee7db20fd3f5dd5820f3de2ea712a91796a42dc25a2d4f46862f950f96057c93e8c3a34c90e16fafb2dce19467f27d
 WHIRLPOOL 
310a368fc182065465791a2ac1d4728d2e172b951dd8bbd4ce59a3e4fa5536cb4f818414a378292708fc7ef0a546c0c5684dcada47416a5b60831cfca35b8796

diff --git a/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild 
b/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild
new file mode 100644
index 000..dfc9c63
--- /dev/null
+++ b/dev-ruby/net-ssh/net-ssh-3.1.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc THANKS.txt"
+RUBY_FAKEGEM_EXTRAINSTALL="support"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Non-interactive SSH processing in pure Ruby"
+HOMEPAGE="https://github.com/net-ssh/net-ssh";
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
net-ssh-git-${PV}.tgz"
+
+LICENSE="GPL-2"
+SLOT="3"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+IUSE="test"
+
+ruby_add_rdepend "virtual/ruby-ssl"
+ruby_add_bdepend "test? ( dev-ruby/test-unit:2 >=dev-ruby/mocha-0.13 )"
+
+each_ruby_test() {
+   ${RUBY} -Ilib:test test/test_all.rb || die "Tests failed."
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/, www-apache/mod_auth_pgsql/files/, www-apache/mod_auth_pgsql/

2016-03-21 Thread Aaron Swenson
commit: 31bd551b4294b9dfd39858efc1e8a44b013da966
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Mon Mar 21 16:08:19 2016 +
Commit: Aaron Swenson  gentoo  org>
CommitDate: Mon Mar 21 16:18:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31bd551b

www-apache/mod_auth_pgsql: Removal

www-apache/mod_auth_pgsql was removed per bug 548974. It hasn’t been
updated for somewhere around 10 years and has been superseded by
mod_authn_dbd for quite some time.

Additionally, mod_auth_pgsql is susceptible to severe security bug(s)
that have gone unresolved by upstream, which has also disappeared.

If you’re still using mod_auth_pgsql, may God have mercy on your soul.

Bug: 255033, 548974

 profiles/package.mask  |   6 -
 www-apache/mod_auth_pgsql/Manifest |   1 -
 .../mod_auth_pgsql/files/80_mod_auth_pgsql.conf|   9 -
 .../files/mod_auth_pgsql-2.0.3-apache-2.4.patch| 341 -
 .../files/mod_auth_pgsql-2.0.3-documentation.patch | 124 
 .../files/mod_auth_pgsql-2.0.3-encoding.patch  | 283 -
 .../files/mod_auth_pgsql-2.0.3-fixdoublefree.patch |  87 --
 www-apache/mod_auth_pgsql/metadata.xml |   8 -
 .../mod_auth_pgsql/mod_auth_pgsql-2.0.3-r1.ebuild  |  31 --
 .../mod_auth_pgsql/mod_auth_pgsql-2.0.3-r2.ebuild  |  40 ---
 10 files changed, 930 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index f962e93..ddf7371 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -325,12 +325,6 @@ media-libs/evas
 # ghc-7.10, bug #561122
 dev-haskell/extra:0
 
-# Aaron W. Swenson  (11 Jan 2016)
-# Masked for removal after 2016-03-11. Package hasn't been updated in
-# some time and doesn't work with Apache 2.4 without patching by
-# Gentoo. (Bug 548974) Use Apache Module mod_authn_dbd instead.
-www-apache/mod_auth_pgsql
-
 # Andreas K. Hüttel  (9 Jan 2016)
 # Errorneously added. Is already in perl-core. Please uninstall.
 dev-perl/ExtUtils-Constant

diff --git a/www-apache/mod_auth_pgsql/Manifest 
b/www-apache/mod_auth_pgsql/Manifest
deleted file mode 100644
index 55f24a8..000
--- a/www-apache/mod_auth_pgsql/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mod_auth_pgsql-2.0.3.tar.gz 15474 SHA256 
51651609d742e21bbc587fd4951b41a39deda53262cbf931b9b40bdda3b5cb92 SHA512 
9ec9d9c1075d37e62e98f0f5519147d9fb2042ef7e149ff50461f3966d548afceefc330f4a1c3bd8fc64b5e93ed3e85508571a5b1b9832974c84267737e89cb0
 WHIRLPOOL 
dea354fb9b3a06f668b8b039339b5972e295abd7357d6c5a61f6192a5c3bbcad1227f86a3d9b552e4b564476b8da9ded5f7b175d77f4cba0c3e360567aef13b2

diff --git a/www-apache/mod_auth_pgsql/files/80_mod_auth_pgsql.conf 
b/www-apache/mod_auth_pgsql/files/80_mod_auth_pgsql.conf
deleted file mode 100644
index 96ea129..000
--- a/www-apache/mod_auth_pgsql/files/80_mod_auth_pgsql.conf
+++ /dev/null
@@ -1,9 +0,0 @@
-# To make this module work with apache 2.2 you have to specify
-# `AuthBasicAuthoritative Off' in your authentication section. See
-# 
http://httpd.apache.org/docs/2.2/mod/mod_auth_basic.html#authbasicauthoritative
-
-
-LoadModule auth_pgsql_module modules/mod_auth_pgsql.so
-
-
-# vim: ts=4 filetype=apache

diff --git 
a/www-apache/mod_auth_pgsql/files/mod_auth_pgsql-2.0.3-apache-2.4.patch 
b/www-apache/mod_auth_pgsql/files/mod_auth_pgsql-2.0.3-apache-2.4.patch
deleted file mode 100644
index d9818eb..000
--- a/www-apache/mod_auth_pgsql/files/mod_auth_pgsql-2.0.3-apache-2.4.patch
+++ /dev/null
@@ -1,341 +0,0 @@
-From: Marco Nenciarini 
-Date: Sat, 20 Jul 2013 18:47:04 +0200
-Subject: apache 2.4
-

- mod_auth_pgsql.c | 196 ---
- 1 file changed, 41 insertions(+), 155 deletions(-)
-
-diff --git a/mod_auth_pgsql.c b/mod_auth_pgsql.c
-index 639537d..26d7f90 100644
 a/mod_auth_pgsql.c
-+++ b/mod_auth_pgsql.c
-@@ -109,6 +109,8 @@
- #include "http_request.h"
- #include "util_script.h"
- 
-+#include "mod_auth.h"
-+
- #ifdef WIN32
- #define crypt apr_password_validate
- #else
-@@ -191,7 +193,7 @@ module AP_MODULE_DECLARE_DATA auth_pgsql_module;
- 
- 
- static int pg_log_auth_user(request_rec * r, pg_auth_config_rec * sec, 
--  char *user, char *sent_pw);
-+  const char *user, const char *sent_pw);
- static char *do_pg_query(request_rec * r, char *query, 
-   pg_auth_config_rec * sec);
- 
-@@ -442,9 +444,8 @@ static char pg_errstr[MAX_STRING_LEN];
- * failures separately
- */
- 
--static char *auth_pg_md5(char *pw)
-+static char *auth_pg_md5(const char *pw)
- {
--  apr_md5_ctx_t ctx;
-   unsigned char digest[APR_MD5_DIGESTSIZE];
-   static unsigned char md5hash[APR_MD5_DIGESTSIZE * 2 + 1];
-   int i;
-@@ -459,14 +460,15 @@ static char *auth_pg_md5(char *pw)
- }
- 
- 
--static char *auth_pg_base64(char *pw)
-+static char *auth_pg_base64(const char *pw)
- {
-   if (auth_pgsql_pool_base64 == NULL)
-   apr_po

  1   2   >