[gentoo-commits] proj/java:master commit in: dev-java/icedtea/files/

2015-10-26 Thread James Le Cuirot
commit: a3ae6c14a31b85c668d2c3c86254f4c2f10af866
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 09:26:31 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 09:26:31 2015 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=a3ae6c14

dev-java/icedtea: Add missing patches

Package-Manager: portage-2.2.20.1

 .../files/6-cacao-dynmaxheap-Makefile.patch| 10 ++
 dev-java/icedtea/files/6-cacao-dynmaxheap.patch| 42 ++
 2 files changed, 52 insertions(+)

diff --git a/dev-java/icedtea/files/6-cacao-dynmaxheap-Makefile.patch 
b/dev-java/icedtea/files/6-cacao-dynmaxheap-Makefile.patch
new file mode 100644
index 000..dc87ae8
--- /dev/null
+++ b/dev-java/icedtea/files/6-cacao-dynmaxheap-Makefile.patch
@@ -0,0 +1,10 @@
+--- Makefile.in.orig   2015-07-28 07:21:16.447388803 -0700
 Makefile.in2015-09-06 09:13:16.54800 -0700
+@@ -182,6 +182,7 @@
+ @WITH_RHINO_TRUE@ patches/rhino.patch
+ 
+ @BUILD_CACAO_TRUE@am__append_22 = \
++@BUILD_CACAO_TRUE@patches/cacao/dynmaxheap.patch \
+ @BUILD_CACAO_TRUE@patches/cacao/launcher.patch \
+ @BUILD_CACAO_TRUE@patches/cacao/memory.patch \
+ @BUILD_CACAO_TRUE@patches/cacao/hotspot/original/memory.patch \

diff --git a/dev-java/icedtea/files/6-cacao-dynmaxheap.patch 
b/dev-java/icedtea/files/6-cacao-dynmaxheap.patch
new file mode 100644
index 000..33b9818
--- /dev/null
+++ b/dev-java/icedtea/files/6-cacao-dynmaxheap.patch
@@ -0,0 +1,42 @@
+# HG changeset patch
+# User James Le Cuirot 
+# Date 1441543564 -3600
+#  Sun Sep 06 13:46:04 2015 +0100
+# Node ID d0224f4490d6694e77dcb0ff7eae8e2297b822bf
+# Parent  e215e36be9fc2b7dfe43ff10ec1afe639b289aa5
+Dynamically set the maximum heap size on Linux
+
+diff -r e215e36be9fc -r d0224f4490d6 src/vm/vm.cpp
+--- cacao/cacao/src/vm/vm.cpp  Mon Feb 11 19:31:28 2013 +0100
 cacao/cacao/src/vm/vm.cpp  Sun Sep 06 13:46:04 2015 +0100
+@@ -33,6 +33,10 @@
+ #include 
+ #include 
+ 
++#if defined(__LINUX__)
++#include 
++#endif
++
+ #include "vm/types.h"
+ 
+ #include "arch.h"
+@@ -702,6 +706,19 @@
+   opt_heapstartsize = HEAP_STARTSIZE;
+   opt_stacksize = STACK_SIZE;
+ 
++#if defined(__LINUX__)
++  // Calculate 1/4 of the physical memory.
++  uint64_t qmem = sysconf(_SC_PHYS_PAGES) * sysconf(_SC_PAGESIZE) / 4;
++
++  if (qmem > INT32_MAX) {
++  // More than 2GB will overflow so cap it.
++  opt_heapmaxsize = 2047 * 1024 * 1024;
++  } else if (qmem > HEAP_MAXSIZE) {
++  // Otherwise use this if greater than default (128MB).
++  opt_heapmaxsize = (s4) qmem;
++  }
++#endif
++
+   // First of all, parse the -XX options.
+ 
+ #if defined(ENABLE_VMLOG)



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

2015-10-26 Thread Jeroen Roovers
commit: 8ad95a177fffae614d2ca237ea9c06fe76a1f92b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 06:00:19 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 06:00:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ad95a17

dev-util/aruba: Mark ~ppc64 (bug #555312).

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

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

diff --git a/dev-util/aruba/aruba-0.8.1.ebuild 
b/dev-util/aruba/aruba-0.8.1.ebuild
index a9978a1..b81bb1a 100644
--- a/dev-util/aruba/aruba-0.8.1.ebuild
+++ b/dev-util/aruba/aruba-0.8.1.ebuild
@@ -17,7 +17,7 @@ DESCRIPTION="Cucumber steps for driving out command line 
applications"
 HOMEPAGE="https://github.com/cucumber/aruba;
 LICENSE="MIT"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~x86"
 SLOT="0"
 IUSE=""
 



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

2015-10-26 Thread Jeroen Roovers
commit: 01b9eb5df05a323c4514bb3b125dbf54b6c44b80
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 06:00:40 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 06:00:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01b9eb5d

dev-python/pyparsing: Stable for PPC64 (bug #563514).

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

 dev-python/pyparsing/pyparsing-1.5.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyparsing/pyparsing-1.5.6-r2.ebuild 
b/dev-python/pyparsing/pyparsing-1.5.6-r2.ebuild
index f6c1d10..d33b583 100644
--- a/dev-python/pyparsing/pyparsing-1.5.6-r2.ebuild
+++ b/dev-python/pyparsing/pyparsing-1.5.6-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc examples"
 
 DEPEND=""



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

2015-10-26 Thread Jeroen Roovers
commit: 80a1ce6e483412463a8c9b21a12b2a54b3e61e6b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 05:59:17 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 05:59:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80a1ce6e

dev-ruby/contracts: Mark ~ppc64 (bug #555312).

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

 dev-ruby/contracts/contracts-0.10.1.ebuild | 2 +-
 dev-ruby/contracts/contracts-0.11.0.ebuild | 2 +-
 dev-ruby/contracts/contracts-0.12.0.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/contracts/contracts-0.10.1.ebuild 
b/dev-ruby/contracts/contracts-0.10.1.ebuild
index f86eb54..313029b 100644
--- a/dev-ruby/contracts/contracts-0.10.1.ebuild
+++ b/dev-ruby/contracts/contracts-0.10.1.ebuild
@@ -17,5 +17,5 @@ HOMEPAGE="https://github.com/egonSchiele/contracts.ruby;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~x86"
 IUSE=""

diff --git a/dev-ruby/contracts/contracts-0.11.0.ebuild 
b/dev-ruby/contracts/contracts-0.11.0.ebuild
index f86eb54..313029b 100644
--- a/dev-ruby/contracts/contracts-0.11.0.ebuild
+++ b/dev-ruby/contracts/contracts-0.11.0.ebuild
@@ -17,5 +17,5 @@ HOMEPAGE="https://github.com/egonSchiele/contracts.ruby;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~x86"
 IUSE=""

diff --git a/dev-ruby/contracts/contracts-0.12.0.ebuild 
b/dev-ruby/contracts/contracts-0.12.0.ebuild
index f86eb54..313029b 100644
--- a/dev-ruby/contracts/contracts-0.12.0.ebuild
+++ b/dev-ruby/contracts/contracts-0.12.0.ebuild
@@ -17,5 +17,5 @@ HOMEPAGE="https://github.com/egonSchiele/contracts.ruby;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~x86"
 IUSE=""



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

2015-10-26 Thread Hans de Graaff
commit: 166d3452dedb56fe81eb2e65393421ddbc75eb2a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Oct 26 06:07:06 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Oct 26 06:07:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=166d3452

dev-ruby/sparklines: fix compatibility with rmagick 2.14

Package-Manager: portage-2.2.20.1

 dev-ruby/sparklines/sparklines-0.5.2-r6.ebuild | 34 ++
 1 file changed, 34 insertions(+)

diff --git a/dev-ruby/sparklines/sparklines-0.5.2-r6.ebuild 
b/dev-ruby/sparklines/sparklines-0.5.2-r6.ebuild
new file mode 100644
index 000..bf6335f
--- /dev/null
+++ b/dev-ruby/sparklines/sparklines-0.5.2-r6.ebuild
@@ -0,0 +1,34 @@
+# 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="History.txt README.txt"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Create sparklines, small graphs to be used inline in texts"
+HOMEPAGE="http://sparklines.rubyforge.org/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-macos"
+IUSE=""
+
+RDEPEND="dev-ruby/rmagick"
+
+ruby_add_bdepend test "dev-ruby/tidy_table dev-ruby/dust"
+
+all_ruby_prepare() {
+   # Don't use deprecated rmagick require for compatibility with newer
+   # versions.
+   sed -i -e '/require/ s/RMagick/rmagick/' lib/sparklines.rb || die
+}
+
+each_ruby_test() {
+   ${RUBY} -I. test/test_all.rb || die
+}



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

2015-10-26 Thread Justin Lecher
commit: 8c14a8c7812f8c744abdf425a23bcb065da285e3
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Oct 26 07:39:05 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Oct 26 07:39:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c14a8c7

dev-db/wxsqlite3: Drop all debug refs

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=563972

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-db/wxsqlite3/wxsqlite3-3.2.1-r1.ebuild | 8 ++--
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/dev-db/wxsqlite3/wxsqlite3-3.2.1-r1.ebuild 
b/dev-db/wxsqlite3/wxsqlite3-3.2.1-r1.ebuild
index 5907456..07e4bd7 100644
--- a/dev-db/wxsqlite3/wxsqlite3-3.2.1-r1.ebuild
+++ b/dev-db/wxsqlite3/wxsqlite3-3.2.1-r1.ebuild
@@ -15,23 +15,19 @@ SRC_URI="mirror://sourceforge/wxcode/${P}.tar.gz"
 LICENSE="wxWinLL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="debug"
+IUSE=""
 
 DEPEND="
-   x11-libs/wxGTK:3.0[X,debug=]
+   x11-libs/wxGTK:3.0[X]
dev-db/sqlite:3"
 RDEPEND="${DEPEND}"
 
 #S="${WORKDIR}/${P%.1}"
 
 src_prepare() {
-   local wxdebug
-
rm -rf sqlite3 || die
cp configure30 configure || die
-   use debug && wxdebug="d"
sed \
-   -e "s:@WXDEBUG@:${wxdebug}:g" \
-e "s:@WXVERSION@:${WX_GTK_VER}:g" \
-e "s:@LIBDIR@:$(get_libdir):g" \
-e "s:@VERSION@:${PV}:g" \



[gentoo-commits] proj/hardened-patchset:master commit in: 4.2.4/

2015-10-26 Thread Anthony G. Basile
commit: 12c85964bf5a1b1c0aab230b94c2371004a4b360
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Oct 26 09:11:53 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Oct 26 09:11:53 2015 +
URL:
https://gitweb.gentoo.org/proj/hardened-patchset.git/commit/?id=12c85964

grsecurity-3.1-4.2.4-201510251836

 4.2.4/_README  |   2 +-
 ...> 4420_grsecurity-3.1-4.2.4-201510251836.patch} | 193 -
 2 files changed, 153 insertions(+), 42 deletions(-)

diff --git a/4.2.4/_README b/4.2.4/_README
index ddc5a83..83460c6 100644
--- a/4.2.4/_README
+++ b/4.2.4/_README
@@ -6,7 +6,7 @@ Patch:  1003_linux-4.2.4.patch
 From:  http://www.kernel.org
 Desc:  Linux 4.2.4
 
-Patch: 4420_grsecurity-3.1-4.2.4-201510240907.patch
+Patch: 4420_grsecurity-3.1-4.2.4-201510251836.patch
 From:  http://www.grsecurity.net
 Desc:  hardened-sources base patch from upstream grsecurity
 

diff --git a/4.2.4/4420_grsecurity-3.1-4.2.4-201510240907.patch 
b/4.2.4/4420_grsecurity-3.1-4.2.4-201510251836.patch
similarity index 99%
rename from 4.2.4/4420_grsecurity-3.1-4.2.4-201510240907.patch
rename to 4.2.4/4420_grsecurity-3.1-4.2.4-201510251836.patch
index c6e64ba..394cd9b 100644
--- a/4.2.4/4420_grsecurity-3.1-4.2.4-201510240907.patch
+++ b/4.2.4/4420_grsecurity-3.1-4.2.4-201510251836.patch
@@ -19232,7 +19232,7 @@ index 1c7eefe..d0e4702 100644
  };
  
 diff --git a/arch/x86/include/asm/fpu/internal.h 
b/arch/x86/include/asm/fpu/internal.h
-index 3c3550c..995858d 100644
+index 3c3550c..33cb41a 100644
 --- a/arch/x86/include/asm/fpu/internal.h
 +++ b/arch/x86/include/asm/fpu/internal.h
 @@ -97,8 +97,11 @@ extern void fpstate_sanitize_xstate(struct fpu *fpu);
@@ -19348,6 +19348,24 @@ index 3c3550c..995858d 100644
}
  
__copy_kernel_to_fpregs(fpstate);
+@@ -611,7 +623,7 @@ switch_fpu_prepare(struct fpu *old_fpu, struct fpu 
*new_fpu, int cpu)
+   if (fpu.preload) {
+   new_fpu->counter++;
+   __fpregs_activate(new_fpu);
+-  prefetch(_fpu->state);
++  prefetch(new_fpu->state);
+   } else {
+   __fpregs_deactivate_hw();
+   }
+@@ -623,7 +635,7 @@ switch_fpu_prepare(struct fpu *old_fpu, struct fpu 
*new_fpu, int cpu)
+   if (fpu_want_lazy_restore(new_fpu, cpu))
+   fpu.preload = 0;
+   else
+-  prefetch(_fpu->state);
++  prefetch(new_fpu->state);
+   fpregs_activate(new_fpu);
+   }
+   }
 @@ -643,7 +655,7 @@ switch_fpu_prepare(struct fpu *old_fpu, struct fpu 
*new_fpu, int cpu)
  static inline void switch_fpu_finish(struct fpu *new_fpu, fpu_switch_t 
fpu_switch)
  {
@@ -24998,7 +25016,7 @@ index ce95676..af5c012 100644
  unlock_done:
mutex_unlock(_init_mutex);
 diff --git a/arch/x86/kernel/fpu/core.c b/arch/x86/kernel/fpu/core.c
-index d25097c..84b0d51 100644
+index d25097c..e2df353 100644
 --- a/arch/x86/kernel/fpu/core.c
 +++ b/arch/x86/kernel/fpu/core.c
 @@ -127,7 +127,7 @@ void __kernel_fpu_end(void)
@@ -25019,6 +25037,15 @@ index d25097c..84b0d51 100644
  
/*
 * Save current FPU registers directly into the child
+@@ -258,7 +258,7 @@ static void fpu_copy(struct fpu *dst_fpu, struct fpu 
*src_fpu)
+*/
+   preempt_disable();
+   if (!copy_fpregs_to_fpstate(dst_fpu)) {
+-  memcpy(_fpu->state, _fpu->state, xstate_size);
++  memcpy(src_fpu->state, dst_fpu->state, xstate_size);
+   fpregs_deactivate(src_fpu);
+   }
+   preempt_enable();
 @@ -285,7 +285,7 @@ void fpu__activate_curr(struct fpu *fpu)
WARN_ON_FPU(fpu != >thread.fpu);
  
@@ -25087,7 +25114,7 @@ index d25097c..84b0d51 100644
return MXCSR_DEFAULT;
}
 diff --git a/arch/x86/kernel/fpu/init.c b/arch/x86/kernel/fpu/init.c
-index d14e9ac..8ca141b 100644
+index d14e9ac..fab0813 100644
 --- a/arch/x86/kernel/fpu/init.c
 +++ b/arch/x86/kernel/fpu/init.c
 @@ -42,7 +42,7 @@ static void fpu__init_cpu_generic(void)
@@ -25099,7 +25126,7 @@ index d14e9ac..8ca141b 100644
else
  #endif
asm volatile ("fninit");
-@@ -147,12 +147,14 @@ EXPORT_SYMBOL_GPL(xstate_size);
+@@ -147,37 +147,21 @@ EXPORT_SYMBOL_GPL(xstate_size);
  #define CHECK_MEMBER_AT_END_OF(TYPE, MEMBER) \
BUILD_BUG_ON(sizeof(TYPE) != offsetofend(TYPE, MEMBER))
  
@@ -25111,12 +25138,19 @@ index d14e9ac..8ca141b 100644
  static void __init fpu__init_task_struct_size(void)
  {
 -  int task_size = sizeof(struct task_struct);
-+  size_t task_size = sizeof(struct task_struct);
- 
-   /*
-* Subtract off the static size of the register state.
-@@ -168,16 +170,12 @@ static void __init fpu__init_task_struct_size(void)
- 
+-
+-  /*
+-   * Subtract off the static size of 

[gentoo-commits] proj/hardened-patchset: New tag: 20151025

2015-10-26 Thread Anthony G. Basile
commit: 
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Oct 26 09:06:13 2015 +

New tag: 20151025




[gentoo-commits] repo/gentoo:master commit in: sci-biology/biopython/

2015-10-26 Thread Justin Lecher
commit: f40ae6aa62652f4c594808356512cc822aebd8aa
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Oct 26 10:29:44 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Oct 26 10:30:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f40ae6aa

sci-biology/biopython: Version Bump

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 sci-biology/biopython/Manifest  |  1 +
 sci-biology/biopython/biopython-1.66.ebuild | 56 +
 2 files changed, 57 insertions(+)

diff --git a/sci-biology/biopython/Manifest b/sci-biology/biopython/Manifest
index e835e24..a54d05e 100644
--- a/sci-biology/biopython/Manifest
+++ b/sci-biology/biopython/Manifest
@@ -1 +1,2 @@
 DIST biopython-1.65.tar.gz 12641342 SHA256 
463cc81db84e9bfcdfb15629511c81ed556a6c0287e670dbfe80f03c65d2a88e SHA512 
2a9c6a89d0279374c243938d13bfdd6f2b124a08afbfb0c262e1e4827c48a141fb9941f4cdb960f76b523f0ac152095a8c6ea566d9b469ce9daf8a7e7993f7af
 WHIRLPOOL 
40757938c0eb7e30c9609ef5aa2d397fa21ad92cd20c9b6300cde1b381a0e6c21e4ebb7f4d25bf02651789437d7d86341154b907ccc0007759c17939f2e29da2
+DIST biopython-1.66.tar.gz 13724754 SHA256 
5178ea3b343b1d8710f39205386093e5369ed653aa020e1b0c4b7622a59346c1 SHA512 
6bb01f1058728f957527447df82ffbb9027e74564e81c8308b3404d033a0f12fef50da05b343bd4c4eae98508931eedc9c4bc23b2efdf36bbb49f1557fa52d71
 WHIRLPOOL 
0cfe3f4829ec72afa466b17cf6745cc334105713ebeeb06019e2df94acc1289aeb07a7bba70a50afeae00de90c48d2455a1af8cf26f916ceb4c0ab92a4a05fbd

diff --git a/sci-biology/biopython/biopython-1.66.ebuild 
b/sci-biology/biopython/biopython-1.66.ebuild
new file mode 100644
index 000..d5c5fb6
--- /dev/null
+++ b/sci-biology/biopython/biopython-1.66.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Python modules for computational molecular biology"
+HOMEPAGE="http://www.biopython.org/ https://pypi.python.org/pypi/biopython/;
+SRC_URI="http://www.biopython.org/DIST/${P}.tar.gz;
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="
+   dev-python/matplotlib[$(python_gen_usedep 'python*')]
+   dev-python/networkx[$(python_gen_usedep 'python*')]
+   dev-python/numpy[$(python_gen_usedep 'python*')]
+   dev-python/rdflib[$(python_gen_usedep 'python*')]
+   dev-python/pygraphviz[$(python_gen_usedep 'python2*')]
+   dev-python/reportlab[$(python_gen_usedep 'python*')]
+   media-gfx/pydot[$(python_gen_usedep 'python2*')]
+   "
+DEPEND="${RDEPEND}
+   sys-devel/flex"
+
+DOCS=( CONTRIB DEPRECATED NEWS README Doc/. )
+
+python_test() {
+   distutils_install_for_testing
+   cp -r "${S}"/{Doc,Tests} "${TEST_DIR}"/lib/ || die
+   cd "${TEST_DIR}"/lib/Tests || die
+   rm ./test_BioSQL_psycopg2.py ./test_BioSQL_MySQLdb.py 
./test_BioSQL_mysql_connector.py || die
+   ${PYTHON} run_tests.py --offline --verbose || die
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   dodir /usr/share/${PN}
+   cp -r --preserve=mode Scripts Tests "${ED}"/usr/share/${PN} || die
+}
+
+pkg_postinst() {
+   elog "For database support you need to install:"
+   optfeature "MySQL" dev-python/mysql-python
+   optfeature "PostGreSQL" dev-python/psycopg
+   echo
+   elog "Some applications need extra packages:"
+   optfeature "EMBOSS (The European Molecular Biology Open Software 
Suite)" sci-biology/emboss
+}



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

2015-10-26 Thread Patrice Clement
commit: 15797bb67fda8664dacfd2c885d36d2d51b08dcb
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Oct 26 09:13:55 2015 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 26 10:10:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15797bb6

dev-java/mojarra: Remove useless eutils inheritance.

Package-Manager: portage-2.2.20.1
Signed-off-by: Patrice Clement  gentoo.org>

 dev-java/mojarra/mojarra-2.2.12-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/mojarra/mojarra-2.2.12-r1.ebuild 
b/dev-java/mojarra/mojarra-2.2.12-r1.ebuild
index 8b78995..932096b 100644
--- a/dev-java/mojarra/mojarra-2.2.12-r1.ebuild
+++ b/dev-java/mojarra/mojarra-2.2.12-r1.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit eutils java-pkg-2 java-pkg-simple
+inherit java-pkg-2 java-pkg-simple
 
 DESCRIPTION="Project Mojarra - GlassFish's Implementation for JavaServer Faces 
API"
 HOMEPAGE="https://javaserverfaces.dev.java.net/;



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

2015-10-26 Thread Anthony G. Basile
commit: 3231824ea0a3e73daf80171ef8e0d68251389dea
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Oct 26 11:04:27 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Oct 26 11:05:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3231824e

sys-kernel/hardened-sources: remove 4.2.4-r1 which exhibits bug #563804.

Package-Manager: portage-2.2.20.1

 sys-kernel/hardened-sources/Manifest   |  1 -
 .../hardened-sources-4.2.4-r1.ebuild   | 46 --
 2 files changed, 47 deletions(-)

diff --git a/sys-kernel/hardened-sources/Manifest 
b/sys-kernel/hardened-sources/Manifest
index 7345fa9..54fb1f3 100644
--- a/sys-kernel/hardened-sources/Manifest
+++ b/sys-kernel/hardened-sources/Manifest
@@ -5,7 +5,6 @@ DIST deblob-check-4.2 681496 SHA256 
8b72723b3f5c651ba45017f557372dd25a43a1ce1b9b
 DIST genpatches-4.1-11.base.tar.xz 233284 SHA256 
4189cfd2c7d1a1d7f28c8a596ad36741ce087c7c4cfbe0d5d20a0ee889328d18 SHA512 
e5944edf832070d6072ab8efc242165afcfb689874687196c96389c6176ca9772e72e82836aba40ad05840536acae6efd6e72890efd692d903018d47489a90f8
 WHIRLPOOL 
13cb400b330443025f77dee6c710ca9886991a7032fa3ff925d53ed4fc03d07ece5647dca65de1a149073362db1d7a0b374a21d980eafcae09a4b01584c64cb6
 DIST genpatches-4.2-6.base.tar.xz 99088 SHA256 
13305a0197320b4426f3c49be3f030af274ffe3a3a07fe79c8580207b38b3498 SHA512 
1bb5cedde8055917442613cbcf8f4c559fc54449dd974fff5b42367a8080a48ed4e49ceea96b8205eb2a8f4ea5a9b545a398a701c4c8512946f43a1275cb2784
 WHIRLPOOL 
856ee2d13f83501f5200649f00688f4a453b01958fa306ef883bc9134db566ca957bd8d863db73fe5137c34c84d61ec97b595e71178acf503ba5423946a9957f
 DIST hardened-patches-4.1.7-2.extras.tar.bz2 1419438 SHA256 
c8c0fc29c39eafbcea107b8237087fd0e185297e2df9ffeaafc6b3a4736b7a45 SHA512 
dac324e265174777d8b9c2369f57e52833b4228b3291e41952a9791ce41b9abf378e1d9a0521566c3a0e42de15a16afa5fe379985b7fee78b1b2b3b815d7cdd4
 WHIRLPOOL 
7638001f1b95e4af1d051b13648f486aa0eca524157e1a46dd2023fbd86313e0a5e8043653d7388b7286d42cc6e7c0f07cde2de3d5aee6cc058d12538a0980c1
-DIST hardened-patches-4.2.4-2.extras.tar.bz2 1695534 SHA256 
a88011fdfa2b48cbfdf27ca5e4af61cc56e9328169c4dbf214c1e8be42581683 SHA512 
fe5f753b3ad4da928d01bc73d3f8a68b1dd276206b1f1f42a811d308e18db61c920ed95b9b5164201e4d739bdf024b6bdd526775fb9a0b429baf7616d6636e87
 WHIRLPOOL 
a61bcefc0cc9dc23cdc35e8770b110d4135f52955e33fcbb03caeaa76952d11d30ce7fe26efc4010faf63518469e20c391ea8980befc91ad2dce33f496feb1eb
 DIST hardened-patches-4.2.4-3.extras.tar.bz2 1697474 SHA256 
a9c0b8913b2a0b48809c8a08f8f23652ce8ee4f29606ab4e951829009f276e35 SHA512 
13f043385acc29b1590cc5191e3d9569d48bb8636a24036e6d8f537d6ccaf08466bbcb3e662fca462f6c6c169e80e68987ab24e79001eed88b380dda016aa34a
 WHIRLPOOL 
03f0bd99e325609143a787201fedd49fad34be6e8c14124f22f265f50e0befb77226977b6ea8481b4449c6b8de17dbab09c3118220487293cd40827372b65141
 DIST linux-4.1.tar.xz 83017828 SHA256 
caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 WHIRLPOOL 
85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8
 DIST linux-4.2.tar.xz 85507784 SHA256 
cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb SHA512 
a87bbce3c0c6d810a41bbba1c0dcaae80dc38dded9f8571e97fa4ee5a468d655daf52d260911412f7c7da3171a5114e89d63da14b1753b9a3eb2cc38fd89b9ee
 WHIRLPOOL 
2058e664ee287cc03119ff3dd0155b7018b9c789a13a1012f190e516172f845dcb2d977c8e6a6951e9bd720e5e8cdfa3b888cce392c9b02780520e77475870d0

diff --git a/sys-kernel/hardened-sources/hardened-sources-4.2.4-r1.ebuild 
b/sys-kernel/hardened-sources/hardened-sources-4.2.4-r1.ebuild
deleted file mode 100644
index 44c391d..000
--- a/sys-kernel/hardened-sources/hardened-sources-4.2.4-r1.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"
-
-ETYPE="sources"
-K_WANT_GENPATCHES="base"
-K_GENPATCHES_VER="6"
-K_DEBLOB_AVAILABLE="1"
-
-inherit kernel-2
-detect_version
-
-HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-2"
-HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
-SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}"
-
-UNIPATCH_LIST="${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2"
-UNIPATCH_EXCLUDE="
-   1500_XATTR_USER_PREFIX.patch
-   1600_dm-crypt-limit-max-segment-size.patch
-   2900_dev-root-proc-mount-fix.patch"
-
-DESCRIPTION="Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})"
-HOMEPAGE="http://www.gentoo.org/proj/en/hardened/;
-IUSE="deblob"
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-
-RDEPEND=">=sys-devel/gcc-4.5"
-
-pkg_postinst() {
-   kernel-2_pkg_postinst
-
-   local 

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

2015-10-26 Thread Anthony G. Basile
commit: cf1c7818227e5c9cd8042bece4991b3487ea4c3d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Oct 26 11:02:57 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Oct 26 11:04:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf1c7818

sys-kernel/hardened-sources: bump to 4.2.4-r2, should resolve bug #563804.

vanilla-4.2.4 + genpatches-4.2-6 + grsecurity-3.1-4.2.4-201510251836

Package-Manager: portage-2.2.20.1

 sys-kernel/hardened-sources/Manifest   |  1 +
 .../hardened-sources-4.2.4-r2.ebuild   | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/sys-kernel/hardened-sources/Manifest 
b/sys-kernel/hardened-sources/Manifest
index e5a2278..7345fa9 100644
--- a/sys-kernel/hardened-sources/Manifest
+++ b/sys-kernel/hardened-sources/Manifest
@@ -6,5 +6,6 @@ DIST genpatches-4.1-11.base.tar.xz 233284 SHA256 
4189cfd2c7d1a1d7f28c8a596ad3674
 DIST genpatches-4.2-6.base.tar.xz 99088 SHA256 
13305a0197320b4426f3c49be3f030af274ffe3a3a07fe79c8580207b38b3498 SHA512 
1bb5cedde8055917442613cbcf8f4c559fc54449dd974fff5b42367a8080a48ed4e49ceea96b8205eb2a8f4ea5a9b545a398a701c4c8512946f43a1275cb2784
 WHIRLPOOL 
856ee2d13f83501f5200649f00688f4a453b01958fa306ef883bc9134db566ca957bd8d863db73fe5137c34c84d61ec97b595e71178acf503ba5423946a9957f
 DIST hardened-patches-4.1.7-2.extras.tar.bz2 1419438 SHA256 
c8c0fc29c39eafbcea107b8237087fd0e185297e2df9ffeaafc6b3a4736b7a45 SHA512 
dac324e265174777d8b9c2369f57e52833b4228b3291e41952a9791ce41b9abf378e1d9a0521566c3a0e42de15a16afa5fe379985b7fee78b1b2b3b815d7cdd4
 WHIRLPOOL 
7638001f1b95e4af1d051b13648f486aa0eca524157e1a46dd2023fbd86313e0a5e8043653d7388b7286d42cc6e7c0f07cde2de3d5aee6cc058d12538a0980c1
 DIST hardened-patches-4.2.4-2.extras.tar.bz2 1695534 SHA256 
a88011fdfa2b48cbfdf27ca5e4af61cc56e9328169c4dbf214c1e8be42581683 SHA512 
fe5f753b3ad4da928d01bc73d3f8a68b1dd276206b1f1f42a811d308e18db61c920ed95b9b5164201e4d739bdf024b6bdd526775fb9a0b429baf7616d6636e87
 WHIRLPOOL 
a61bcefc0cc9dc23cdc35e8770b110d4135f52955e33fcbb03caeaa76952d11d30ce7fe26efc4010faf63518469e20c391ea8980befc91ad2dce33f496feb1eb
+DIST hardened-patches-4.2.4-3.extras.tar.bz2 1697474 SHA256 
a9c0b8913b2a0b48809c8a08f8f23652ce8ee4f29606ab4e951829009f276e35 SHA512 
13f043385acc29b1590cc5191e3d9569d48bb8636a24036e6d8f537d6ccaf08466bbcb3e662fca462f6c6c169e80e68987ab24e79001eed88b380dda016aa34a
 WHIRLPOOL 
03f0bd99e325609143a787201fedd49fad34be6e8c14124f22f265f50e0befb77226977b6ea8481b4449c6b8de17dbab09c3118220487293cd40827372b65141
 DIST linux-4.1.tar.xz 83017828 SHA256 
caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 WHIRLPOOL 
85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8
 DIST linux-4.2.tar.xz 85507784 SHA256 
cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb SHA512 
a87bbce3c0c6d810a41bbba1c0dcaae80dc38dded9f8571e97fa4ee5a468d655daf52d260911412f7c7da3171a5114e89d63da14b1753b9a3eb2cc38fd89b9ee
 WHIRLPOOL 
2058e664ee287cc03119ff3dd0155b7018b9c789a13a1012f190e516172f845dcb2d977c8e6a6951e9bd720e5e8cdfa3b888cce392c9b02780520e77475870d0

diff --git a/sys-kernel/hardened-sources/hardened-sources-4.2.4-r2.ebuild 
b/sys-kernel/hardened-sources/hardened-sources-4.2.4-r2.ebuild
new file mode 100644
index 000..4a85c63
--- /dev/null
+++ b/sys-kernel/hardened-sources/hardened-sources-4.2.4-r2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+ETYPE="sources"
+K_WANT_GENPATCHES="base"
+K_GENPATCHES_VER="6"
+K_DEBLOB_AVAILABLE="1"
+
+inherit kernel-2
+detect_version
+
+HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-3"
+HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
+SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+UNIPATCH_LIST="${DISTDIR}/hardened-patches-${HGPV}.extras.tar.bz2"
+UNIPATCH_EXCLUDE="
+   1500_XATTR_USER_PREFIX.patch
+   1600_dm-crypt-limit-max-segment-size.patch
+   2900_dev-root-proc-mount-fix.patch"
+
+DESCRIPTION="Hardened kernel sources (kernel series ${KV_MAJOR}.${KV_MINOR})"
+HOMEPAGE="http://www.gentoo.org/proj/en/hardened/;
+IUSE="deblob"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND=">=sys-devel/gcc-4.5"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+
+   local GRADM_COMPAT="sys-apps/gradm-3.1*"
+
+   ewarn
+   ewarn "Users of grsecurity's RBAC system must ensure they are using"
+   ewarn "${GRADM_COMPAT}, which is compatible with ${PF}."
+   ewarn "It is strongly recommended that the following command is issued"
+   ewarn "prior to booting a ${PF} kernel for the first time:"
+   ewarn

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

2015-10-26 Thread Jeroen Roovers
commit: f8e2a546bf599b76e6e241752cdc94ddf944a0d9
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 06:14:23 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 06:14:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8e2a546

net-misc/openntpd: Stable for PPC64 (bug #554402).

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

 net-misc/openntpd/openntpd-5.7_p4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openntpd/openntpd-5.7_p4-r2.ebuild 
b/net-misc/openntpd/openntpd-5.7_p4-r2.ebuild
index 227a4fa..5cc478a 100644
--- a/net-misc/openntpd/openntpd-5.7_p4-r2.ebuild
+++ b/net-misc/openntpd/openntpd-5.7_p4-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://openbsd/OpenNTPD/${MY_P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd"
 IUSE="selinux"
 
 DEPEND="!<=net-misc/ntp-4.2.0-r2



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

2015-10-26 Thread Jeroen Roovers
commit: 1aa3eaaf5f5e6b776e76cc231f4c6bc56aeece36
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 06:32:32 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 06:32:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aa3eaaf

dev-python/pyparsing: Stable for HPPA (bug #563514).

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

 dev-python/pyparsing/pyparsing-1.5.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyparsing/pyparsing-1.5.6-r2.ebuild 
b/dev-python/pyparsing/pyparsing-1.5.6-r2.ebuild
index d33b583..247af4a 100644
--- a/dev-python/pyparsing/pyparsing-1.5.6-r2.ebuild
+++ b/dev-python/pyparsing/pyparsing-1.5.6-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc examples"
 
 DEPEND=""



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

2015-10-26 Thread Jason Zaman
commit: 2c1f8922d90b1ec8486de0ce3a271e252d6bb6cf
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Oct 26 07:53:24 2015 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct 26 07:54:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c1f8922

profiles/hardened: mask www-client/qutebrowser, bug 560666

 profiles/hardened/linux/package.mask | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/profiles/hardened/linux/package.mask 
b/profiles/hardened/linux/package.mask
index ba917fd..8d82d3a 100644
--- a/profiles/hardened/linux/package.mask
+++ b/profiles/hardened/linux/package.mask
@@ -31,3 +31,6 @@ app-crypt/hmaccalc
 # due to C99 struct init requirement by hardened kernels,
 # see bug 540196 comment 9.
 net-fs/openafs-kernel
+
+# Crashes immediately on start. bug 560666
+=www-client/qutebrowser-0.4.1



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

2015-10-26 Thread Agostino Sarubbo
commit: e2ecbcd99a2947b0fcb4485a28b6ef63dc1dc2d9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Oct 26 09:17:00 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Oct 26 09:17:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2ecbcd9

sys-kernel/git-sources: Automated version bump to 4.3_rc7

Package-Manager: portage-2.2.20.1

 sys-kernel/git-sources/Manifest   |  1 +
 sys-kernel/git-sources/git-sources-4.3_rc7.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index 2b136b7..ab1a339 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -5,3 +5,4 @@ DIST patch-4.3-rc3.xz 6370684 SHA256 
5fb1f48e05e7523223498dcb319cfbdb5de8211713f
 DIST patch-4.3-rc4.xz 6415156 SHA256 
8ca3c9cefc9fff22ebe8cd8dba1100fa053ecc2d6197156bf3fe6aeca1570e97 SHA512 
dfc14556e14a0b3ac786b189ede36e79b71ab8711cf635b0be5793d293447d7e45e59dfeed562a3295149a7a23cb03ee6713e35d511a8285d21b7a65e758e356
 WHIRLPOOL 
4251e94d6c31f530bd577cdbdd21f5c79f99a5a3ee124d36bbe347766e380e79e3f5e5585787bf8a808de4c964c799ca2a7f6af853941f0ac50599566fd563b7
 DIST patch-4.3-rc5.xz 6432572 SHA256 
b77ae187707167ac73363ca9ef34dd38552ff0a08d5dc0467460a16bd41582c6 SHA512 
c07c4cd33a3cebb616a35d1aab69d70d046c60f82e317fe2ead733e632ef22e93a39e5181dc3f6261665cc0ec80535246b47e7d37fcb46dc4891efe8bbed4258
 WHIRLPOOL 
7de2dc159da2ee66e2438bd0744210586596e7f6565a97bc61cd0c975e389c23036b206f394404999f985a4393f4d5d5e453933f5a2962e0f9500c0efa4004db
 DIST patch-4.3-rc6.xz 6446876 SHA256 
622b65bb48d11caa34b599f1f89ed9eb5559b8c2dc186b6cf984e30ec0a6f4a3 SHA512 
e6d3b571676afa8a8ede771d999dfb096dc6693dcee86130570f71eee1ee781ff8e4aaab3e361320de82f121604b7faddc4446b160fa8bbb6eb592ee54ea95c3
 WHIRLPOOL 
6f291f2cbf88e9093c662265ebdcb8b93ae9ea34136a692f92d4adb48056c9d5426b8bb9c978a1938b88b483fd640aa4055f6727009fd1ef903e1567dcebc95b
+DIST patch-4.3-rc7.xz 6478080 SHA256 
19e4a01d995d90aac99ced702bfc99b2bf8a21fd657dd70974698f2b6a799918 SHA512 
4c923c39d3b5614751be879bd17928c2cf4ccf7c63dbfba1b221fc3fe645cd8ecb7a4b84867666ea6c65ef7105264a82cf376b562acdafde3f8e054b849d3b84
 WHIRLPOOL 
9000e288f7ed90d6bcf8c7b96d744fe03b7bc5f371b76b8ab43eb0d3bb5e03d02b9cb1844b9c84811d4a2add3a00cc0b1631ed4142064ced57d92831bc25fcab

diff --git a/sys-kernel/git-sources/git-sources-4.3_rc7.ebuild 
b/sys-kernel/git-sources/git-sources-4.3_rc7.ebuild
new file mode 100644
index 000..13457db
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-4.3_rc7.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="yes"
+K_BASE_VER="4.2"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.4"
+
+pkg_postinst() {
+   postinst_sources
+}



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

2015-10-26 Thread Jeroen Roovers
commit: 76a7bd69ad79b162969e716422e76125efc82483
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 07:00:45 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 07:00:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76a7bd69

dev-ruby/highline: Stable for HPPA (bug #563460).

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

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

diff --git a/dev-ruby/highline/highline-1.7.6.ebuild 
b/dev-ruby/highline/highline-1.7.6.ebuild
index 6ba0316..8c728eb 100644
--- a/dev-ruby/highline/highline-1.7.6.ebuild
+++ b/dev-ruby/highline/highline-1.7.6.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/JEG2/highline;
 IUSE=""
 LICENSE="|| ( GPL-2 Ruby )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 
 all_ruby_prepare() {
# fix up gemspec file not to call git



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

2015-10-26 Thread Eray Aslan
commit: 0a32d771562dcc35dc339a0b9ab386807f3585a8
Author: Eray Aslan  gentoo  org>
AuthorDate: Mon Oct 26 08:44:52 2015 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Mon Oct 26 08:44:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a32d771

dev-db/cdb: compile with -fPIC

Gentoo-Bug: 563210

Package-Manager: portage-2.2.23

 dev-db/cdb/cdb-0.75-r4.ebuild | 53 +++
 1 file changed, 53 insertions(+)

diff --git a/dev-db/cdb/cdb-0.75-r4.ebuild b/dev-db/cdb/cdb-0.75-r4.ebuild
new file mode 100644
index 000..5e335ed
--- /dev/null
+++ b/dev-db/cdb/cdb-0.75-r4.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils multilib toolchain-funcs
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
+
+DESCRIPTION="Fast, reliable, simple package for creating and reading constant 
databases"
+HOMEPAGE="http://cr.yp.to/cdb.html;
+SRC_URI="http://cr.yp.to/cdb/${P}.tar.gz;
+LICENSE="public-domain"
+SLOT="0"
+IUSE=""
+
+DEPEND=">=sys-apps/sed-4
+   !dev-db/tinycdb"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-errno.diff
+   epatch "${FILESDIR}"/${P}-stdint.diff
+
+   sed -i -e 's/head -1/head -n 1/g' Makefile \
+   || die "sed Makefile failed"
+}
+
+src_configure() {
+   echo "$(tc-getCC) ${CFLAGS} -fPIC" > conf-cc
+   echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
+   echo "${EPREFIX}/usr" > conf-home
+}
+
+src_install() {
+   dobin cdbdump cdbget cdbmake cdbmake-12 cdbmake-sv cdbstats cdbtest \
+   || die "dobin failed"
+
+   # ok so ... first off, some automakes fail at finding
+   # cdb.a, so install that now
+   dolib *.a || die "dolib failed"
+
+   # then do this pretty little symlinking to solve the somewhat
+   # cosmetic library issue at hand
+   dosym cdb.a /usr/$(get_libdir)/libcdb.a || die "dosym failed"
+
+   # uint32.h needs installation too, otherwise compiles depending
+   # on it will fail
+   insinto /usr/include/cdb
+   doins cdb*.h buffer.h alloc.h uint32.h || die "doins failed"
+
+   dodoc CHANGES FILES README SYSDEPS TODO VERSION
+}



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

2015-10-26 Thread Jeroen Roovers
commit: 4fc77d2d33553616aeda6f09a9957d1be60ae1f4
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 06:20:28 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 06:20:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fc77d2d

net-misc/openntpd: Stable for HPPA (bug #554402).

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

 net-misc/openntpd/openntpd-5.7_p4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/openntpd/openntpd-5.7_p4-r2.ebuild 
b/net-misc/openntpd/openntpd-5.7_p4-r2.ebuild
index 5cc478a..b7c0452 100644
--- a/net-misc/openntpd/openntpd-5.7_p4-r2.ebuild
+++ b/net-misc/openntpd/openntpd-5.7_p4-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://openbsd/OpenNTPD/${MY_P}.tar.gz"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd"
 IUSE="selinux"
 
 DEPEND="!<=net-misc/ntp-4.2.0-r2



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

2015-10-26 Thread Justin Lecher
commit: a65ec6d62c8bc1c85685e0c1dd0eda12134b177f
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Oct 26 08:16:59 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Oct 26 08:17:03 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a65ec6d6

sci-libs/scipy: Backport fix for glibc-2.22

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 .../files/scipy-0.16.1-glibc-2.22-backport.patch   | 30 ++
 sci-libs/scipy/scipy-0.16.1.ebuild |  1 +
 2 files changed, 31 insertions(+)

diff --git a/sci-libs/scipy/files/scipy-0.16.1-glibc-2.22-backport.patch 
b/sci-libs/scipy/files/scipy-0.16.1-glibc-2.22-backport.patch
new file mode 100644
index 000..791d67f
--- /dev/null
+++ b/sci-libs/scipy/files/scipy-0.16.1-glibc-2.22-backport.patch
@@ -0,0 +1,30 @@
+From 1f5ccd5447ed2796bb8e9506cfbfdb4a82cccfc0 Mon Sep 17 00:00:00 2001
+From: Ralf Gommers 
+Date: Sat, 24 Oct 2015 18:17:04 +0200
+Subject: [PATCH] TST: fix issue with a ctypes test for integrate on Fedora. 
+ Closes gh-5370
+
+---
+ scipy/integrate/tests/test_quadpack.py | 9 -
+ 1 file changed, 8 insertions(+), 1 deletion(-)
+
+diff --git a/scipy/integrate/tests/test_quadpack.py 
b/scipy/integrate/tests/test_quadpack.py
+index c3a417c..f384c77 100644
+--- a/scipy/integrate/tests/test_quadpack.py
 b/scipy/integrate/tests/test_quadpack.py
+@@ -42,7 +42,14 @@ def setUp(self):
+ file = 'libm.dylib'
+ else:
+ file = 'libm.so'
+-self.lib = ctypes.CDLL(file)
++
++try:
++self.lib = ctypes.CDLL(file)
++except OSError:
++# This test doesn't work on some Linux platforms (Fedora for
++# example) that put an ld script in libm.so - see gh-5370
++self.skipTest("Ctypes can't import libm.so")
++
+ restype = ctypes.c_double
+ argtypes = (ctypes.c_double,)
+ for name in ['sin', 'cos', 'tan']:

diff --git a/sci-libs/scipy/scipy-0.16.1.ebuild 
b/sci-libs/scipy/scipy-0.16.1.ebuild
index 33610d6..de2289b 100644
--- a/sci-libs/scipy/scipy-0.16.1.ebuild
+++ b/sci-libs/scipy/scipy-0.16.1.ebuild
@@ -102,6 +102,7 @@ python_prepare_all() {
local PATCHES=(
"${FILESDIR}"/${PN}-0.12.0-blitz.patch
"${FILESDIR}"/${PN}-0.12.0-restore-sys-argv.patch
+   "${FILESDIR}"/${P}-glibc-2.22-backport.patch
)
distutils-r1_python_prepare_all
 }



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

2015-10-26 Thread Ian Delaney
commit: 42f1475e45fff96d37ea8c36b6643eb948f63cac
Author: Ian Delaney  gentoo  org>
AuthorDate: Mon Oct 26 07:18:50 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Mon Oct 26 07:19:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42f1475e

add co-maintainer Coacher to metadata

Package-Manager: portage-2.2.23

 media-video/aegisub/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/media-video/aegisub/metadata.xml b/media-video/aegisub/metadata.xml
index 496cc90..2add8b9 100644
--- a/media-video/aegisub/metadata.xml
+++ b/media-video/aegisub/metadata.xml
@@ -6,6 +6,10 @@
nik...@gmx.us
Nikoli

+
+itumay...@gmail.com
+Coacher
+

maksbo...@gentoo.org
Maxim Koltsov



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

2015-10-26 Thread Jeroen Roovers
commit: ceecad009af290ebd96d3d58ab219f4c033f939a
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 06:18:07 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 06:18:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceecad00

mail-mta/exim: Mark ~hppa ~ppc64 (bug #563478).

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

 mail-mta/exim/exim-4.86-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-mta/exim/exim-4.86-r2.ebuild 
b/mail-mta/exim/exim-4.86-r2.ebuild
index ef5243c..b9caa74 100644
--- a/mail-mta/exim/exim-4.86-r2.ebuild
+++ b/mail-mta/exim/exim-4.86-r2.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="http://www.exim.org/;
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~hppa ~ppc64 ~x86"
 
 COMMON_DEPEND=">=sys-apps/sed-4.0.5
>=sys-libs/db-3.2



[gentoo-commits] repo/gentoo:master commit in: net-dialup/freeradius-client/

2015-10-26 Thread Jeroen Roovers
commit: 0e03a678b3578f132d4fb1b6441b970c0269d151
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 06:16:24 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 06:16:24 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e03a678

net-dialup/freeradius-client: Mark ~hppa (bug #563474).

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

 net-dialup/freeradius-client/freeradius-client-1.1.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dialup/freeradius-client/freeradius-client-1.1.7.ebuild 
b/net-dialup/freeradius-client/freeradius-client-1.1.7.ebuild
index e4ae261..005802d 100644
--- a/net-dialup/freeradius-client/freeradius-client-1.1.7.ebuild
+++ b/net-dialup/freeradius-client/freeradius-client-1.1.7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="ftp://ftp.freeradius.org/pub/freeradius/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~ppc64 ~x86"
 
 IUSE="scp shadow static-libs"
 



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

2015-10-26 Thread Jeroen Roovers
commit: 7a5103a97531b806930d0e324248f5521433d0c2
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 06:30:12 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 06:30:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a5103a9

dev-ruby/rack: Stable for HPPA (bug #563862).

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

 dev-ruby/rack/rack-1.4.7.ebuild | 2 +-
 dev-ruby/rack/rack-1.5.5.ebuild | 2 +-
 dev-ruby/rack/rack-1.6.4.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/rack/rack-1.4.7.ebuild b/dev-ruby/rack/rack-1.4.7.ebuild
index 2bb54b5..ef4e6c9 100644
--- a/dev-ruby/rack/rack-1.4.7.ebuild
+++ b/dev-ruby/rack/rack-1.4.7.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://rack.github.com/;
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-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"
+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=""
 
 RUBY_PATCHES=( ${PN}-1.2.1-gentoo.patch ${PN}-1.4.5-fix-test-ruby20.patch )

diff --git a/dev-ruby/rack/rack-1.5.5.ebuild b/dev-ruby/rack/rack-1.5.5.ebuild
index 7b240fe..03dfe97 100644
--- a/dev-ruby/rack/rack-1.5.5.ebuild
+++ b/dev-ruby/rack/rack-1.5.5.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://rack.github.com/;
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-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"
+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=""
 
 RUBY_PATCHES=( ${PN}-1.2.1-gentoo.patch )

diff --git a/dev-ruby/rack/rack-1.6.4.ebuild b/dev-ruby/rack/rack-1.6.4.ebuild
index 57daa50..13f166c 100644
--- a/dev-ruby/rack/rack-1.6.4.ebuild
+++ b/dev-ruby/rack/rack-1.6.4.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://rack.github.com/;
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-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"
+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=""
 
 RUBY_PATCHES=( ${PN}-1.2.1-gentoo.patch )



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

2015-10-26 Thread Jeroen Roovers
commit: 4c8b7754ad43af63aee2ab58b8645b2b0b2f57f1
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 06:27:49 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 06:27:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c8b7754

dev-ruby/bacon: Stable for HPPA (bug #563862).

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

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

diff --git a/dev-ruby/bacon/bacon-1.2.0-r2.ebuild 
b/dev-ruby/bacon/bacon-1.2.0-r2.ebuild
index 7b543c7..d3e55cb 100644
--- a/dev-ruby/bacon/bacon-1.2.0-r2.ebuild
+++ b/dev-ruby/bacon/bacon-1.2.0-r2.ebuild
@@ -15,5 +15,5 @@ HOMEPAGE="http://chneukirchen.org/repos/bacon;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+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=""



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

2015-10-26 Thread Jeroen Roovers
commit: ea3c57ad1a4b2db017918f2cb47e92c85cb81a4f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 26 06:29:20 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 26 06:29:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea3c57ad

dev-ruby/fcgi: Stable for HPPA (bug #563862).

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

 dev-ruby/fcgi/fcgi-0.9.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/fcgi/fcgi-0.9.2.1-r1.ebuild 
b/dev-ruby/fcgi/fcgi-0.9.2.1-r1.ebuild
index 85d272f..1504ab8 100644
--- a/dev-ruby/fcgi/fcgi-0.9.2.1-r1.ebuild
+++ b/dev-ruby/fcgi/fcgi-0.9.2.1-r1.ebuild
@@ -15,7 +15,7 @@ inherit multilib ruby-fakegem
 DESCRIPTION="FastCGI library for Ruby"
 HOMEPAGE="https://github.com/alphallc/ruby-fcgi-ng;
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 LICENSE="Ruby"
 
 DEPEND+=" dev-libs/fcgi"



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

2015-10-26 Thread Mikle Kolyada
commit: ab1054ac6d85f396288fc7c8eacedea309b4e520
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Oct 26 08:04:32 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Oct 26 08:05:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab1054ac

sci-libs/libccp4: Add ~ppc keyword

Package-Manager: portage-2.2.20.1

 sci-libs/libccp4/libccp4-6.4.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/libccp4/libccp4-6.4.6.ebuild 
b/sci-libs/libccp4/libccp4-6.4.6.ebuild
index 0011f0f..272fd43 100644
--- a/sci-libs/libccp4/libccp4-6.4.6.ebuild
+++ b/sci-libs/libccp4/libccp4-6.4.6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="ftp://ftp.ccp4.ac.uk/opensource/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="GPL-3 LGPL-3"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="fortran static-libs"
 
 RDEPEND="sci-libs/mmdb:2"



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

2015-10-26 Thread Mikle Kolyada
commit: 01048dcfbe5d2ca363229f2bd18cb233a4acb600
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Oct 26 08:04:59 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Oct 26 08:05:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01048dcf

sci-libs/clipper: Add ~ppc keyword

Package-Manager: portage-2.2.20.1

 sci-libs/clipper/clipper-2.1.20140911.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/clipper/clipper-2.1.20140911.ebuild 
b/sci-libs/clipper/clipper-2.1.20140911.ebuild
index ee35ee1..2fbb6cf 100644
--- a/sci-libs/clipper/clipper-2.1.20140911.ebuild
+++ b/sci-libs/clipper/clipper-2.1.20140911.ebuild
@@ -19,7 +19,7 @@ SRC_URI="ftp://ftp.ccp4.ac.uk/opensource/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE="fortran static-libs test"
 
 RDEPEND="



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

2015-10-26 Thread Amy Winston
commit: bec997fd8ea69eb7a613e9529015628f9a02c759
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Oct 26 08:57:04 2015 +
Commit: Amy Winston  gentoo  org>
CommitDate: Mon Oct 26 08:57:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bec997fd

media-video/vlc: 2.2.0 version removed bug #564140.

Package-Manager: portage-2.2.20.1

 media-video/vlc/Manifest |   1 -
 media-video/vlc/vlc-2.2.0.ebuild | 495 ---
 2 files changed, 496 deletions(-)

diff --git a/media-video/vlc/Manifest b/media-video/vlc/Manifest
index e8674ed..d7f6c6a 100644
--- a/media-video/vlc/Manifest
+++ b/media-video/vlc/Manifest
@@ -1,3 +1,2 @@
 DIST vlc-2.1.5.tar.xz 19574208 SHA256 
6f6566ab6cd90d381395b7f0e401060b044cd3843e50ceb252b558a88e5d1f72 SHA512 
37c6b82b4e89f4a14ed391cc677d9325a032e04bcc51a3e0d7d2ccf9e17a7a0deb90d9129e9dc3baf05a1ea9dae9c05e3177ab17a31098aafa6a2cb23388fa32
 WHIRLPOOL 
c13098f922c7b24f3c718e88807a7dcb656af21bcf2be63d2ec7401583680658bd371e3935ba22537857861e0b1b0c4f0e693c87ed20999c679b4a04cddf7008
-DIST vlc-2.2.0.tar.xz 20861760 SHA256 
5e0a27e248c47da723a696420aca3a4dd15cc3ed8cc81618d3f1dc8661b25517 SHA512 
41162ff2dcc35edb47721c5a0f5d1346a0bcf3099c641e317ca1ce50baadeec3eef38f10355396a82e029474f6decd1e4355bbf218cadb795ccad3ff81a585bb
 WHIRLPOOL 
83777143ef84177fffb1e034e47012bfe4ac2355883f64d3932dcf0c3edf237d858016523a886d00934da441ae2e7b635dc4111b0fb368083d4b71c43d00f695
 DIST vlc-2.2.1.tar.xz 20940288 SHA256 
543d9d7e378ec0fa1ee2e7f7f5acf8c456c7d0ecc32037171523197ef3cf1fcb SHA512 
91cd33ac61ebe376c24b3cc0d1dc52d7765fdccbd17e75af38f52b400e0269dc48f34ed558bff7ec1dd52c4f27098012709a3eb9fe7e8aad1069516de5de
 WHIRLPOOL 
5c889fc5c0137f022b0b3408a5252668a1a946ed45677bb97bbbf0ec14c9411c24e8d1587e987391596774aaf7f1e4592c55b0c0f76742e84296bbfffb08e885

diff --git a/media-video/vlc/vlc-2.2.0.ebuild b/media-video/vlc/vlc-2.2.0.ebuild
deleted file mode 100644
index 3629d6f..000
--- a/media-video/vlc/vlc-2.2.0.ebuild
+++ /dev/null
@@ -1,495 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-SCM=""
-if [ "${PV%}" != "${PV}" ] ; then
-   SCM="git-r3"
-
-   if [ "${PV%.}" != "${PV}" ] ; then
-   EGIT_REPO_URI="git://git.videolan.org/vlc/vlc-${PV%.}.git"
-   else
-   EGIT_REPO_URI="git://git.videolan.org/vlc.git"
-   fi
-fi
-
-inherit eutils multilib autotools toolchain-funcs flag-o-matic virtualx ${SCM}
-
-MY_PV="${PV/_/-}"
-MY_PV="${MY_PV/-beta/-test}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="VLC media player - Video player and streamer"
-HOMEPAGE="http://www.videolan.org/vlc/;
-if [ "${PV%}" != "${PV}" ] ; then # Live ebuild
-   SRC_URI=""
-elif [[ "${MY_P}" == "${P}" ]]; then
-   
SRC_URI="http://download.videolan.org/pub/videolan/${PN}/${PV}/${P}.tar.xz;
-else
-   
SRC_URI="http://download.videolan.org/pub/videolan/testing/${MY_P}/${MY_P}.tar.xz;
-fi
-
-LICENSE="LGPL-2.1 GPL-2"
-SLOT="0/5-8" # vlc - vlccore
-
-if [ "${PV%}" = "${PV}" ] ; then
-   KEYWORDS="~amd64 ~arm -sparc ~x86 ~x86-fbsd"
-else
-   KEYWORDS=""
-fi
-
-IUSE="a52 aalib alsa altivec atmo +audioqueue avahi +avcodec
-   +avformat bidi bluray cdda cddb chromaprint dbus dc1394 debug
-   directfb directx dts dvb +dvbpsi dvd dxva2 elibc_glibc +encode faad fdk
-   fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls
-   growl httpd ieee1394 jack jpeg kate kde libass libav libcaca libnotify
-   +libsamplerate libtiger linsys libtar lirc live lua
-   macosx-dialog-provider macosx-eyetv macosx-quartztext macosx-qtkit
-   matroska media-library cpu_flags_x86_mmx modplug mp3 mpeg
-   mtp musepack ncurses neon ogg omxil opencv opengl optimisememory opus
-   png postproc projectm pulseaudio +qt4 qt5 rdp rtsp run-as-root samba
-   schroedinger sdl sdl-image sftp shout sid skins speex cpu_flags_x86_sse 
svg +swscale
-   taglib theora tremor truetype twolame udev upnp vaapi v4l vcdx vdpau
-   vlm vnc vorbis vpx wma-fixed +X x264 x265 +xcb xml xv zvbi"
-
-RDEPEND="
-   !=sys-libs/zlib-1.2.5.1-r2:0[minizip]
-   virtual/libintl:0
-   a52? ( >=media-libs/a52dec-0.7.4-r3:0 )
-   aalib? ( media-libs/aalib:0 )
-   alsa? ( >=media-libs/alsa-lib-1.0.24:0 )
-   avahi? ( >=net-dns/avahi-0.6:0[dbus] )
-   avcodec? (
-   !libav? ( media-video/ffmpeg:0= )
-   libav? ( >=media-video/libav-11:0= )
-   )
-   avformat? (
-   !libav? ( media-video/ffmpeg:0= )
-   libav? ( media-video/libav:0= )
-   )
-   bidi? ( >=dev-libs/fribidi-0.10.4:0 )
-   bluray? ( >=media-libs/libbluray-0.3:0 )
-   cddb? ( >=media-libs/libcddb-1.2:0 )
-   

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

2015-10-26 Thread Ian Delaney
commit: 23ddc3e23c490b151da683ffbbf4181e9847748d
Author: Ian Delaney  gentoo  org>
AuthorDate: Mon Oct 26 09:07:39 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Mon Oct 26 09:08:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23ddc3e2

www-client/qutebrowser: version bump to 0.4.1

Updated SRC_URI and added new dependency, the hardened profile masked
(by hardened team) due to runtime failure with JIT. ebuild prepared
and submitted by the package's own author "The-Compiler" with support
from similar users. Commited by proxy-maintainers team due to extended
absence of the developer maintainer. Fixes the gentoo bug

Gentoo bug: #564140

Package-Manager: portage-2.2.23

 www-client/qutebrowser/Manifest |  1 +
 www-client/qutebrowser/qutebrowser-0.4.1.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/www-client/qutebrowser/Manifest b/www-client/qutebrowser/Manifest
index 039da4a..4b10d31 100644
--- a/www-client/qutebrowser/Manifest
+++ b/www-client/qutebrowser/Manifest
@@ -1,2 +1,3 @@
 DIST qutebrowser-0.2.1.tar.gz 892955 SHA256 
0738377c1069d7d9ce1ff61e7425a139b44d21493d3a5c6338d697eb54f26d31 SHA512 
9c49779515e6d7a3c9b93d50b51138f20292712f08de6f682db4f452c893796d9c66af7cca9ab7c18a5b7ddc147d62b7649572c7cdd416cc67c81cdf462c4f01
 WHIRLPOOL 
5f2f42163b59490eda25bad390c71113c8e7725a7bd8fa47240516a336364c76a7f97c516996f1ffcbc11025785070a30a6bccdcd66a06459ffbb24f874ed960
 DIST qutebrowser-0.3.0.tar.gz 938380 SHA256 
a0c02148bf76eb13691d9476e6ab8bc791993dfe7a408974ba31dd6eb6584461 SHA512 
ee0e5808f7732c3c4cd577beb9c25227af0b6a3136bd20b80e18fef20a0d7ae34111f40db2bc0071e34a92c0b0dc94c8899f0953107b4926ff5ba2894fc818e0
 WHIRLPOOL 
95bd3e1a8c065a31d816ea8f7d85649d937aed6ddf85cb28ad309cab2d7ed0b9dc72672106321be9a2d0a085622114fc340122920c4c528750e70636d88930d3
+DIST qutebrowser-0.4.1.tar.gz 909363 SHA256 
6e1022e4b349fd09bd8efa643d2411badb8305fee911d266db5dce66290a3ed7 SHA512 
a31b3a99010babf26c4e9c867840d419e0f2f3acf874d9b61812744d1845914fd2505c8178976a14e57286842706431ad6305773e7087db6a4d4105b91c98aed
 WHIRLPOOL 
2176e54fcff48b6b81629040b9826ea981b5eec963b506a54194d60a12a971763df9609f00958b30f61c209acf306faa2290f58d81590eed89e0b3705a2b9b9f

diff --git a/www-client/qutebrowser/qutebrowser-0.4.1.ebuild 
b/www-client/qutebrowser/qutebrowser-0.4.1.ebuild
new file mode 100644
index 000..0bfb698
--- /dev/null
+++ b/www-client/qutebrowser/qutebrowser-0.4.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python3_4 )
+
+inherit distutils-r1 eutils fdo-mime
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/The-Compiler/qutebrowser.git;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/The-Compiler/qutebrowser/releases/download/v${PV}/qutebrowser-${PV}.tar.gz
 -> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="A keyboard-driven, vim-like browser based on PyQt5 and QtWebKit"
+HOMEPAGE="https://github.com/The-Compiler/qutebrowser;
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="gstreamer test"
+
+COMMON_DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="${COMMON_DEPEND}
+   app-text/asciidoc
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+RDEPEND="${COMMON_DEPEND}
+   >=dev-python/jinja-2.7.3[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.0.2[${PYTHON_USEDEP}]
+   >=dev-python/pypeg2-2.15.1[${PYTHON_USEDEP}]
+   
dev-python/PyQt5[${PYTHON_USEDEP},gui,network,printsupport,webkit,widgets]
+   dev-python/sip[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-3.11[${PYTHON_USEDEP}]
+   gstreamer? ( dev-qt/qtwebkit:5[gstreamer] )
+"
+
+RESTRICT="test"
+
+python_compile_all() {
+   if [[ ${PV} == "" ]]; then
+   "${PYTHON}" scripts/asciidoc2html.py || die "Failed generating 
docs"
+   fi
+
+   a2x -f manpage doc/${PN}.1.asciidoc || die "Failed generating man page"
+}
+
+python_test() {
+   py.test tests || die "Tests failed with ${EPYTHON}"
+}
+
+python_install_all() {
+   doman doc/${PN}.1
+   dodoc {CHANGELOG,CONTRIBUTING,FAQ,README}.asciidoc
+
+   domenu ${PN}.desktop
+   doicon icons/${PN}.svg
+
+   distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+   fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+   fdo-mime_desktop_database_update
+}



[gentoo-commits] proj/hardened-dev:master commit in: sys-kernel/hardened-sources/

2015-10-26 Thread Anthony G. Basile
commit: f22e497c787772c1ae9e0cf8c2c703ef62cbb86c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Oct 26 09:16:06 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Oct 26 09:16:06 2015 +
URL:https://gitweb.gentoo.org/proj/hardened-dev.git/commit/?id=f22e497c

sys-kernel/hardened-sources: testing patchset 20151025.

Package-Manager: portage-2.2.20.1
Manifest-Sign-Key: 0x9384FA6EF52D4BBA

 ...ardened-sources-4.2.4-r1.ebuild => hardened-sources-4.2.4-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/hardened-sources/hardened-sources-4.2.4-r1.ebuild 
b/sys-kernel/hardened-sources/hardened-sources-4.2.4-r2.ebuild
similarity index 96%
rename from sys-kernel/hardened-sources/hardened-sources-4.2.4-r1.ebuild
rename to sys-kernel/hardened-sources/hardened-sources-4.2.4-r2.ebuild
index 44c391d..4a85c63 100644
--- a/sys-kernel/hardened-sources/hardened-sources-4.2.4-r1.ebuild
+++ b/sys-kernel/hardened-sources/hardened-sources-4.2.4-r2.ebuild
@@ -12,7 +12,7 @@ K_DEBLOB_AVAILABLE="1"
 inherit kernel-2
 detect_version
 
-HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-2"
+HGPV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}-3"
 
HGPV_URI="http://dev.gentoo.org/~blueness/hardened-sources/hardened-patches/hardened-patches-${HGPV}.extras.tar.bz2;
 SRC_URI="${KERNEL_URI} ${HGPV_URI} ${GENPATCHES_URI} ${ARCH_URI}"
 



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

2015-10-26 Thread Agostino Sarubbo
commit: 3680fc004b7791db925ee19dd89e3ae89b94551a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Oct 26 09:15:50 2015 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Oct 26 09:15:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3680fc00

x11-misc/xscreensaver: amd64 stable wrt bug #564002

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="amd64"

 x11-misc/xscreensaver/xscreensaver-5.34.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xscreensaver/xscreensaver-5.34.ebuild 
b/x11-misc/xscreensaver/xscreensaver-5.34.ebuild
index e601117..829552e 100644
--- a/x11-misc/xscreensaver/xscreensaver-5.34.ebuild
+++ b/x11-misc/xscreensaver/xscreensaver-5.34.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc 
~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 IUSE="gdm jpeg new-login opengl pam +perl selinux suid xinerama"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-java/mx4j/, dev-java/mx4j/files/

2015-10-26 Thread James Le Cuirot
commit: 8a9cf23bd19bc1c92a8aa2d3e1444ad94e0f94bc
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:14:20 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a9cf23b

dev-java/mx4j: Remove obsolete package

 dev-java/mx4j/Manifest   |   2 -
 dev-java/mx4j/files/mx4j-3.0.2-new-hessian.patch |  37 
 dev-java/mx4j/metadata.xml   |  17 
 dev-java/mx4j/mx4j-3.0.2-r1.ebuild   | 105 ---
 4 files changed, 161 deletions(-)

diff --git a/dev-java/mx4j/Manifest b/dev-java/mx4j/Manifest
deleted file mode 100644
index b19c903..000
--- a/dev-java/mx4j/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST mx4j-3.0.2-src.tar.gz 618163 SHA256 
bb552a8512567c4ab508a04c5931bff0d859dce36b44bdc4213c6433f02cb266 SHA512 
24014ff723b0880ca5f94b28d3c698659aa04258853e259b7b4025decbf27f0022cbe9da1101b8e2d4e5fb950bfabd9556a402a9b99e6122d0fca324e479ebf8
 WHIRLPOOL 
31c45b785fef2596bcdd39f0c8507db8ea315de97cd78e34ae3e473b71e644d91554c6601ddcc283a325c36a2215680b8138ab89f3bd817961119edf2c935f05
-DIST mx4j-3.0.2.tar.gz 4555894 SHA256 
282bd68e517aba3d0f5bbf76f90c3c09e446c529e7796467ab7de65398bb1115 SHA512 
a4b8b62530ce41a0e3170a0c31dbaf5251096b98e50f73eeebd725f29e5b7e920d8c7f03d486d72c7643e9ce069a86a048c080f019fd0053dce5e6774809a26f
 WHIRLPOOL 
775f2b51664e3d05687b1e3fbb7b538e45e2918b8a079d2048a75a1f5aca1c323a2d0c1e8847ca94649973fc7e6f9bb324d44f76acb551fe1270138ae126ebbb

diff --git a/dev-java/mx4j/files/mx4j-3.0.2-new-hessian.patch 
b/dev-java/mx4j/files/mx4j-3.0.2-new-hessian.patch
deleted file mode 100644
index 25de4b5..000
--- a/dev-java/mx4j/files/mx4j-3.0.2-new-hessian.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-diff -Nru 
mx4j-3.0.2.vanilla/src/tools/mx4j/tools/remote/caucho/serialization/JMXDeserializer.java
 
mx4j-3.0.2/src/tools/mx4j/tools/remote/caucho/serialization/JMXDeserializer.java
 
mx4j-3.0.2.vanilla/src/tools/mx4j/tools/remote/caucho/serialization/JMXDeserializer.java
   2010-04-03 13:09:19.815790652 +0100
-+++ 
mx4j-3.0.2/src/tools/mx4j/tools/remote/caucho/serialization/JMXDeserializer.java
   2010-04-03 13:09:29.096398617 +0100
-@@ -12,13 +12,13 @@
- import java.io.IOException;
- import java.io.ObjectInputStream;
- 
-+import com.caucho.hessian.io.AbstractDeserializer;
- import com.caucho.hessian.io.AbstractHessianInput;
--import com.caucho.hessian.io.Deserializer;
- 
- /**
-  * @version $
-  */
--class JMXDeserializer extends Deserializer
-+class JMXDeserializer extends AbstractDeserializer
- {
-private Class type;
- 
-diff -Nru 
mx4j-3.0.2.vanilla/src/tools/mx4j/tools/remote/caucho/serialization/JMXSerializer.java
 mx4j-3.0.2/src/tools/mx4j/tools/remote/caucho/serialization/JMXSerializer.java
 
mx4j-3.0.2.vanilla/src/tools/mx4j/tools/remote/caucho/serialization/JMXSerializer.java
 2010-04-03 13:09:19.815790652 +0100
-+++ 
mx4j-3.0.2/src/tools/mx4j/tools/remote/caucho/serialization/JMXSerializer.java  
   2010-04-03 13:11:41.543862447 +0100
-@@ -13,12 +13,12 @@
- import java.io.ObjectOutputStream;
- 
- import com.caucho.hessian.io.AbstractHessianOutput;
--import com.caucho.hessian.io.Serializer;
-+import com.caucho.hessian.io.AbstractSerializer;
- 
- /**
-  * @version $Revision: 1.3 $
-  */
--class JMXSerializer extends Serializer
-+class JMXSerializer extends AbstractSerializer
- {
-public void writeObject(Object obj, AbstractHessianOutput out) throws 
IOException
-{

diff --git a/dev-java/mx4j/metadata.xml b/dev-java/mx4j/metadata.xml
deleted file mode 100644
index ef5247c..000
--- a/dev-java/mx4j/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   java
-   
-MX4J is a project to build an Open Source implementation of the Java(TM) 
Management Extensions (JMX) and of the JMX Remote API (JSR 160) specifications, 
and to build tools relating to JMX.
-
-JMX is an optional package for J2SE that provides a standard way to manage 
applications. It can also be used to wrap legacy systems and provide a standard 
interface to the outside world, enabling the development of web services. JMX 
allows developers to write more modular and loosely coupled system components 
and reduce the complexity of large, interoperating systems.
-
-Beginning with 3.0.1-r2 mx4j was split into three packages dev-java/mxj4-core,
-dev-java/mxj4-tools and dev-java/mx4j. This was done in order to reduce
-dependencies in packages that only require the core.
-
-   
-   mx4j
-   
-

diff --git a/dev-java/mx4j/mx4j-3.0.2-r1.ebuild 
b/dev-java/mx4j/mx4j-3.0.2-r1.ebuild
deleted file mode 100644
index 776bb7c..000
--- a/dev-java/mx4j/mx4j-3.0.2-r1.ebuild
+++ /dev/null
@@ -1,105 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-JAVA_PKG_IUSE="examples source doc"

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

2015-10-26 Thread James Le Cuirot
commit: 0c6d5d1b84c2852e94c2ccbaa4cef3f2b2b55d13
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:13:02 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c6d5d1b

dev-java/commons-modeler: Remove obsolete package

 dev-java/commons-modeler/Manifest  |  1 -
 .../commons-modeler-2.0.1-r1.ebuild| 49 --
 dev-java/commons-modeler/metadata.xml  |  8 
 3 files changed, 58 deletions(-)

diff --git a/dev-java/commons-modeler/Manifest 
b/dev-java/commons-modeler/Manifest
deleted file mode 100644
index 653505c..000
--- a/dev-java/commons-modeler/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST commons-modeler-2.0.1-src.tar.gz 116785 SHA256 
e10a7ac6b6827cba25f40fed43380051023097244fe34b012227aabd5d01e8f0 SHA512 
8d1b0c34c63201b6eddece2211c68f549ee95e37b1a458e27a4b56b3750573bd54c803b1182a7afa2e4d0ac9a164f6afce0c05aab6aab6f1a6fefae7d7a7b216
 WHIRLPOOL 
6ffaac2d167c1acccb11fa2de547cbc922ac04b49ef828b00296d04dad384f9cc59b96e8b836a9d67ee26abc27097298ecb52d0b80103070e09774b4b8bb0612

diff --git a/dev-java/commons-modeler/commons-modeler-2.0.1-r1.ebuild 
b/dev-java/commons-modeler/commons-modeler-2.0.1-r1.ebuild
deleted file mode 100644
index 558b730..000
--- a/dev-java/commons-modeler/commons-modeler-2.0.1-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-JAVA_PKG_IUSE="doc source test"
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="A lib to make the setup of Java Management Extensions easier"
-SRC_URI="mirror://apache/commons/modeler/source/${P}-src.tar.gz"
-HOMEPAGE="http://commons.apache.org/modeler/;
-LICENSE="Apache-2.0"
-SLOT="0"
-
-# Provides ant tasks for ant to use
-RDEPEND=">=virtual/jre-1.5
-   dev-java/mx4j-core:3.0
-   dev-java/commons-logging:0
-   commons-digester? ( dev-java/commons-digester:3.2 )"
-DEPEND=">=virtual/jdk-1.6
-   source? ( app-arch/zip )
-   test? ( dev-java/junit:0 )"
-
-KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
-IUSE="commons-digester"
-
-S=${WORKDIR}/${P}-src
-
-java_prepare() {
-   # Setup the build environment
-   use commons-digester && echo "commons-digester.jar=$(java-pkg_getjar 
commons-digester-3.2 commons-digester.jar)" >> build.properties
-   echo "commons-logging.jar=$(java-pkg_getjar commons-logging 
commons-logging.jar)" >> build.properties
-   echo "jmx.jar=$(java-pkg_getjar mx4j-core-3.0 mx4j.jar)" >> 
build.properties
-
-   mkdir dist || die
-}
-
-EANT_BUILD_TARGET="prepare jar"
-
-src_test() {
-   eant test -Djunit.jar=$(java-pkg_getjar --build-only junit junit.jar)
-}
-
-src_install() {
-   java-pkg_dojar dist/${PN}.jar
-   dodoc RELEASE-NOTES.txt || die
-   use doc && java-pkg_dojavadoc dist/docs/api
-   use source && java-pkg_dosrc src/java/org
-}

diff --git a/dev-java/commons-modeler/metadata.xml 
b/dev-java/commons-modeler/metadata.xml
deleted file mode 100644
index 6b2a175..000
--- a/dev-java/commons-modeler/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  java
-  
-Add support for the commons-digester based 
Mbeans Descriptor source
-  
-



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

2015-10-26 Thread James Le Cuirot
commit: dfa2e91ff66eb7a8b386f190b2b05c37b7500b0e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:29:20 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfa2e91f

profiles: A bunch of Java-related packages have now been removed

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

diff --git a/profiles/package.mask b/profiles/package.mask
index ca498b8..5aee23e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -117,25 +117,6 @@ dev-java/xmlc
 # in 30 days.
 app-emulation/vmware-view-open-client
 
-# James Le Cuirot  (27 Sep 2015)
-# No release since 2007 and no revdeps. Removal in 30 days.
-dev-java/commons-transaction
-
-# James Le Cuirot  (27 Sep 2015)
-# A string of interdependent obsolete Java packages. hibernate and
-# axis are alive upstream but we have no immediate plans to bump
-# them. hibernate has also been modularized so would now be called
-# hibernate-core anyway. Removal in 30 days.
-dev-java/commons-modeler
-dev-java/hibernate
-dev-java/hibernate-annotations
-dev-java/jax-rpc
-dev-java/mx4j
-dev-java/mx4j-core
-dev-java/mx4j-tools
-dev-java/proxool
-www-servers/axis:1
-
 # Dion Moult  (24 Sep 2015)
 # Masked for removal in 30 days. Bug #466724
 # Heavily out of date. Use sci-chemistry/icm



[gentoo-commits] repo/gentoo:master commit in: dev-java/mx4j-tools/files/, dev-java/mx4j-tools/

2015-10-26 Thread James Le Cuirot
commit: 8c6f81704c76bfdf2eb7cb1bf4c25a5de10be182
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:16:23 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c6f8170

dev-java/mx4j-tools: Remove obsolete package

 dev-java/mx4j-tools/Manifest   |  1 -
 .../mx4j-tools-3.0.1-split-javadoc-build.patch | 44 --
 .../files/mx4j-tools-3.0.2-new-hessian.patch   | 37 
 .../mx4j-tools-3.0.2-split-javadoc-build.patch | 45 --
 dev-java/mx4j-tools/metadata.xml   | 16 -
 dev-java/mx4j-tools/mx4j-tools-3.0.2-r1.ebuild | 68 --
 6 files changed, 211 deletions(-)

diff --git a/dev-java/mx4j-tools/Manifest b/dev-java/mx4j-tools/Manifest
deleted file mode 100644
index 4d4079a..000
--- a/dev-java/mx4j-tools/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mx4j-3.0.2-src.tar.gz 618163 SHA256 
bb552a8512567c4ab508a04c5931bff0d859dce36b44bdc4213c6433f02cb266 SHA512 
24014ff723b0880ca5f94b28d3c698659aa04258853e259b7b4025decbf27f0022cbe9da1101b8e2d4e5fb950bfabd9556a402a9b99e6122d0fca324e479ebf8
 WHIRLPOOL 
31c45b785fef2596bcdd39f0c8507db8ea315de97cd78e34ae3e473b71e644d91554c6601ddcc283a325c36a2215680b8138ab89f3bd817961119edf2c935f05

diff --git 
a/dev-java/mx4j-tools/files/mx4j-tools-3.0.1-split-javadoc-build.patch 
b/dev-java/mx4j-tools/files/mx4j-tools-3.0.1-split-javadoc-build.patch
deleted file mode 100644
index 35c20fe..000
--- a/dev-java/mx4j-tools/files/mx4j-tools-3.0.1-split-javadoc-build.patch
+++ /dev/null
@@ -1,44 +0,0 @@
 mx4j-3.0.1.orig/build/build.xml2006-10-27 22:11:53.0 -0500
-+++ mx4j-3.0.1/build/build.xml 2006-10-27 22:14:39.0 -0500
-@@ -417,7 +417,7 @@
-   
-
- 
--   
-+   
-   
-   
-  
- 
-+ 
-+  
-+   
-+
-+   
-+  
-+  
-+ 
-+
-+ 
-+ 
-+ 
- 
-  
-   
-@@ -478,7 +495,7 @@
- 
-
- 
--   
-+   
-   
-   
-   

diff --git a/dev-java/mx4j-tools/files/mx4j-tools-3.0.2-new-hessian.patch 
b/dev-java/mx4j-tools/files/mx4j-tools-3.0.2-new-hessian.patch
deleted file mode 100644
index 25de4b5..000
--- a/dev-java/mx4j-tools/files/mx4j-tools-3.0.2-new-hessian.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-diff -Nru 
mx4j-3.0.2.vanilla/src/tools/mx4j/tools/remote/caucho/serialization/JMXDeserializer.java
 
mx4j-3.0.2/src/tools/mx4j/tools/remote/caucho/serialization/JMXDeserializer.java
 
mx4j-3.0.2.vanilla/src/tools/mx4j/tools/remote/caucho/serialization/JMXDeserializer.java
   2010-04-03 13:09:19.815790652 +0100
-+++ 
mx4j-3.0.2/src/tools/mx4j/tools/remote/caucho/serialization/JMXDeserializer.java
   2010-04-03 13:09:29.096398617 +0100
-@@ -12,13 +12,13 @@
- import java.io.IOException;
- import java.io.ObjectInputStream;
- 
-+import com.caucho.hessian.io.AbstractDeserializer;
- import com.caucho.hessian.io.AbstractHessianInput;
--import com.caucho.hessian.io.Deserializer;
- 
- /**
-  * @version $
-  */
--class JMXDeserializer extends Deserializer
-+class JMXDeserializer extends AbstractDeserializer
- {
-private Class type;
- 
-diff -Nru 
mx4j-3.0.2.vanilla/src/tools/mx4j/tools/remote/caucho/serialization/JMXSerializer.java
 mx4j-3.0.2/src/tools/mx4j/tools/remote/caucho/serialization/JMXSerializer.java
 
mx4j-3.0.2.vanilla/src/tools/mx4j/tools/remote/caucho/serialization/JMXSerializer.java
 2010-04-03 13:09:19.815790652 +0100
-+++ 
mx4j-3.0.2/src/tools/mx4j/tools/remote/caucho/serialization/JMXSerializer.java  
   2010-04-03 13:11:41.543862447 +0100
-@@ -13,12 +13,12 @@
- import java.io.ObjectOutputStream;
- 
- import com.caucho.hessian.io.AbstractHessianOutput;
--import com.caucho.hessian.io.Serializer;
-+import com.caucho.hessian.io.AbstractSerializer;
- 
- /**
-  * @version $Revision: 1.3 $
-  */
--class JMXSerializer extends Serializer
-+class JMXSerializer extends AbstractSerializer
- {
-public void writeObject(Object obj, AbstractHessianOutput out) throws 
IOException
-{

diff --git 
a/dev-java/mx4j-tools/files/mx4j-tools-3.0.2-split-javadoc-build.patch 
b/dev-java/mx4j-tools/files/mx4j-tools-3.0.2-split-javadoc-build.patch
deleted file mode 100644
index 9fba649..000
--- a/dev-java/mx4j-tools/files/mx4j-tools-3.0.2-split-javadoc-build.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-diff -Nru mx4j-3.0.2.vanilla/build/build.xml mx4j-3.0.2/build/build.xml
 mx4j-3.0.2.vanilla/build/build.xml 2008-06-17 15:32:02.0 +0200
-+++ mx4j-3.0.2/build/build.xml 2008-06-17 15:34:06.0 +0200
-@@ -407,7 +407,7 @@
-   
-
- 
--   
-+   
-   
-   
-  
- 
-+  
-+   
-+
-+ 
-+
-+   
-+   
-+  
-+ 
-+  
-+  
-+  
- 
-  
-   
-@@ -468,7 +485,7 @@
- 
-
- 
--   
-+   
-   
-   
-   

diff 

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

2015-10-26 Thread James Le Cuirot
commit: ca9f85a4980917432415fbff867e1d1489e17c88
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:26:00 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:50 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca9f85a4

dev-java/proxool: Remove obsolete package

 dev-java/proxool/Manifest|  1 -
 dev-java/proxool/metadata.xml|  8 -
 dev-java/proxool/proxool-0.8.3-r2.ebuild | 55 
 3 files changed, 64 deletions(-)

diff --git a/dev-java/proxool/Manifest b/dev-java/proxool/Manifest
deleted file mode 100644
index f9cdc03..000
--- a/dev-java/proxool/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST proxool-0.8.3-source.tar.gz 5782824 SHA256 
2de39f0b45b71ba05f5639943a8f59a8bc49a4cc025efd7d1b16b39dfbd0ad11 SHA512 
ff81c18a6c55aad245092c221f61df963b9574771218fa52c027f11ad73379429e160b481bdb2f5a335f7e4da97b7bcdff41f4c3fbec182668437fc965d6b94e
 WHIRLPOOL 
69604c3afc3530a3ac35b250b3124cf474346cfb65c4888a8b611d66b24659869231bbb6820d450715672fb6e8777aa15d049c9ca5a6c1a78bb6bea9026ade8e

diff --git a/dev-java/proxool/metadata.xml b/dev-java/proxool/metadata.xml
deleted file mode 100644
index b0ed1ba..000
--- a/dev-java/proxool/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   java
-   
-   proxool
-   
-

diff --git a/dev-java/proxool/proxool-0.8.3-r2.ebuild 
b/dev-java/proxool/proxool-0.8.3-r2.ebuild
deleted file mode 100644
index f5d2368..000
--- a/dev-java/proxool/proxool-0.8.3-r2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-JAVA_PKG_IUSE="doc source"
-WANT_ANT_TASKS="ant-nodeps"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Proxool is a Java connection pool"
-HOMEPAGE="http://proxool.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}-source.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-# Tests disabled because they would need hibernate
-# and as such creating a circular dependency
-RESTRICT="test"
-
-COMMON_DEP="
-   dev-java/avalon-framework:4.2
-   dev-java/avalon-logkit:2.0
-   dev-java/log4j:0
-   dev-java/mx4j-core:3.0
-   java-virtuals/servlet-api:3.0"
-RDEPEND="${COMMON_DEP}
-   >=virtual/jre-1.4"
-# Require jdk6 for building. #402487
-DEPEND="${COMMON_DEP}
-   virtual/jdk:1.6
-   dev-util/checkstyle:0"
-
-java_prepare() {
-   find -name '*.jar' -exec rm {} + || die
-
-   java-pkg_jar-from --into lib --build-only checkstyle
-}
-
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-EANT_BUILD_TARGET="build-jar"
-EANT_GENTOO_CLASSPATH="log4j,servlet-api-3.0,avalon-framework-4.2,avalon-logkit-2.0,mx4j-core-3.0"
-
-src_install() {
-   java-pkg_newjar build/${P}.jar ${PN}.jar
-
-   dodoc README.txt || die
-   # dohtml valid as there are other docs too
-   use doc && java-pkg_dohtml -r doc/*
-   use source && java-pkg_dosrc src/java/*
-}



[gentoo-commits] repo/gentoo:master commit in: dev-java/hibernate/, dev-java/hibernate/files/

2015-10-26 Thread James Le Cuirot
commit: ada875a8b40dd3785a154b1d00dc3e2e5bb57ff2
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:23:20 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ada875a8

dev-java/hibernate: Remove obsolete package

Hibernate is alive upstream but we have no immediate plans to bump
it. It has also been modularized so we would now call it
hibernate-core anyway.

 dev-java/hibernate/Manifest|  1 -
 .../files/hibernate-3.1.3-EhCache.java.patch   | 22 ---
 dev-java/hibernate/hibernate-3.1.3-r5.ebuild   | 76 --
 dev-java/hibernate/metadata.xml|  8 ---
 4 files changed, 107 deletions(-)

diff --git a/dev-java/hibernate/Manifest b/dev-java/hibernate/Manifest
deleted file mode 100644
index e0725a4..000
--- a/dev-java/hibernate/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST hibernate-3.1.3.tar.gz 18529984 SHA256 
e34feddabd7e1a432f11c670d08338720beb6c1dc5bb62952612f05260944c49 SHA512 
5a5acf5abc82bbc38313148dc73cea981f69c68fb6b3023f1c6261a392853b5bd4a9852991011891e8b678ff0c35aea9554ebdd17e0da1b8fdf816ffcaca4dea
 WHIRLPOOL 
0c2c6d5f0d5c04e9cb5e10f9eb22dbb796133791a57b8c4c18e780aa8eb637fd5fe2fa793da4885fdfe8902f7676bcce8e740219afc5176be4284bb575c99497

diff --git a/dev-java/hibernate/files/hibernate-3.1.3-EhCache.java.patch 
b/dev-java/hibernate/files/hibernate-3.1.3-EhCache.java.patch
deleted file mode 100644
index 16d0a05..000
--- a/dev-java/hibernate/files/hibernate-3.1.3-EhCache.java.patch
+++ /dev/null
@@ -1,22 +0,0 @@
 src/org/hibernate/cache/EhCache.java.orig  2015-10-07 14:06:39.968486000 
+
-+++ src/org/hibernate/cache/EhCache.java   2015-10-07 14:06:49.900486000 
+
-@@ -192,9 +192,9 @@
- catch (IllegalStateException e) {
- throw new CacheException(e);
- } 
--catch (IOException e) {
--throw new CacheException(e);
--}
-+// catch (IOException e) {
-+// throw new CacheException(e);
-+// }
- }
- 
- /**
-@@ -289,4 +289,4 @@
-   return "EHCache(" + getRegionName() + ')';
-   }
- 
--}
-\ No newline at end of file
-+}

diff --git a/dev-java/hibernate/hibernate-3.1.3-r5.ebuild 
b/dev-java/hibernate/hibernate-3.1.3-r5.ebuild
deleted file mode 100644
index 151b353..000
--- a/dev-java/hibernate/hibernate-3.1.3-r5.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-WANT_ANT_TASKS="ant-antlr ant-swing ant-junit"
-JAVA_PKG_IUSE="doc source"
-JAVA_PKG_WANT_BOOTCLASSPATH="1.5"
-
-inherit java-pkg-2 java-ant-2
-
-MY_PV="3.1"
-DESCRIPTION="A powerful, ultra-high performance object / relational 
persistence and query service for Java"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-HOMEPAGE="http://www.hibernate.org;
-LICENSE="LGPL-2"
-IUSE=""
-SLOT="3.1"
-KEYWORDS="amd64 x86"
-
-CDEPENDEND="
-   >=dev-java/antlr-2.7.7:0[java]
-   dev-java/c3p0:0
-   dev-java/cglib:3
-   dev-java/commons-collections:0
-   dev-java/commons-logging:0
-   dev-java/dom4j:1
-   dev-java/ehcache:1.2
-   dev-java/oscache:0
-   dev-java/proxool:0
-   dev-java/swarmcache:1.0
-   java-virtuals/transaction-api:0
-   dev-java/sun-jacc-api:0
-   dev-java/ant-core:0
-   dev-java/asm:2.2"
-RDEPEND=">=virtual/jre-1.6
-   ${CDEPENDEND}"
-DEPEND=">=virtual/jdk-1.6
-   ${CDEPENDEND}"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-JAVA_ANT_ENCODING="ISO-8859-1"
-
-PATCHES=(
-   "${FILESDIR}"/"${P}-EhCache.java.patch"
-)
-
-java_prepare() {
-   epatch "${PATCHES[@]}"
-
-   java-ant_rewrite-bootclasspath 1.5
-
-   # this depends on jboss
-   rm src/org/hibernate/cache/JndiBoundTreeCacheProvider.java \
-   src/org/hibernate/cache/TreeCache.java \
-   src/org/hibernate/cache/TreeCacheProvider.java
-
-   rm -v *.jar lib/*.jar || die
-}
-
-JAVA_ANT_REWRITE_CLASSPATH="true"
-EANT_GENTOO_CLASSPATH="
-c3p0,commons-collections,commons-logging,cglib-3,transaction-api
-dom4j-1,ehcache-1.2,oscache,proxool,swarmcache-1.0
-sun-jacc-api,antlr,ant-core,asm-2.2
-"
-EANT_EXTRA_ARGS="-Dnosplash -Ddist.dir=dist"
-
-src_install() {
-   java-pkg_dojar hibernate3.jar
-   dodoc changelog.txt readme.txt
-   use doc && java-pkg_dohtml -r doc/api doc/other doc/reference
-   use source && java-pkg_dosrc src/*
-}

diff --git a/dev-java/hibernate/metadata.xml b/dev-java/hibernate/metadata.xml
deleted file mode 100644
index 5d17a7d..000
--- a/dev-java/hibernate/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   java
-   
-   hibernate
-   
-



[gentoo-commits] repo/gentoo:master commit in: www-servers/axis/files/, www-servers/axis/

2015-10-26 Thread James Le Cuirot
commit: 1eda279c03ccc5f25e2c33ab305f6f81ea315d7b
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:25:21 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:48 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eda279c

www-servers/axis: Remove obsolete package

Axis is alive upstream but we have no immediate plans to bump it.

 www-servers/axis/Manifest  |   1 -
 www-servers/axis/axis-1.4-r2.ebuild| 139 -
 .../files/axis-1.4-JSSESocketFactory.java.patch| 342 -
 www-servers/axis/files/axis-1.4-build.xml.patch|  15 -
 www-servers/axis/files/axis-1.4-java6.patch|  16 -
 .../axis/files/axis-1.4-path_refs.xml.patch|  20 --
 www-servers/axis/files/axis-1.4-targets.xml.patch  |  86 --
 .../axis/files/axis-1.4-tools-build.xml.patch  |  26 --
 www-servers/axis/files/build.properties|  15 -
 www-servers/axis/metadata.xml  |  13 -
 10 files changed, 673 deletions(-)

diff --git a/www-servers/axis/Manifest b/www-servers/axis/Manifest
deleted file mode 100644
index a574a72..000
--- a/www-servers/axis/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST axis-src-1_4.tar.gz 17041546 SHA256 
911b4467f3d6cfe2e50fb7baea7a754e6aa717902d6ed91cef78f8f52bef8572 SHA512 
7d08212b04702e76c960ad772a475f5765fef7f9ebe0aea3d4b949c6ba28a62500e8a76a43c7364b7caf36b7f27aee8592744256154670c7a24d29c5c1518258
 WHIRLPOOL 
cf359caa9e645bdefb7c2ff012673dc64af9d4cc4bbe2a082cb64bcb0211d3a844ef797738ae1a3e9f978d0bbd8dc42bac9ecbdf4c734dd30ff52da18bdd7a91

diff --git a/www-servers/axis/axis-1.4-r2.ebuild 
b/www-servers/axis/axis-1.4-r2.ebuild
deleted file mode 100644
index a247f2b..000
--- a/www-servers/axis/axis-1.4-r2.ebuild
+++ /dev/null
@@ -1,139 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-WANT_ANT_TASKS="ant-nodeps ant-trax"
-JAVA_PKG_IUSE="doc source examples"
-
-inherit eutils java-pkg-2 java-ant-2
-
-MY_PV="${PV//./_}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="Apache's Axis1 implementation of the SOAP (Simple Object Access 
Protocol)"
-HOMEPAGE="http://ws.apache.org/axis/index.html;
-SRC_URI="mirror://apache/ws/${PN}/${MY_PV}/${PN}-src-${MY_PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="1"
-KEYWORDS="amd64 x86"
-IUSE="debug"
-
-CDEPEND="dev-java/commons-discovery:0
-   dev-java/wsdl4j:0
-   dev-java/sun-jaf:0
-   dev-java/commons-logging:0
-   java-virtuals/javamail:0
-   dev-java/ant-core:0
-   dev-java/bsf:2.3
-   dev-java/castor:1.0
-   dev-java/commons-httpclient:3
-   dev-java/commons-net:0
-   dev-java/sun-jimi:0
-   dev-java/servletapi:2.4
-   dev-java/saaj:0
-   dev-java/jax-rpc:0
-   dev-java/log4j:0
-   dev-java/xml-commons:0
-   dev-java/xml-xmlbeans:1"
-
-RDEPEND=">=virtual/jre-1.6
-   ${CDEPEND}"
-
-DEPEND=">=virtual/jdk-1.6
-   ${CDEPEND}"
-
-# uses enum as identifier
-JAVA_PKG_WANT_SOURCE="1.4"
-JAVA_PKG_WANT_TARGET="1.4"
-
-S="${WORKDIR}/${MY_P}"
-
-AXIS_NAME="${PN}-${SLOT}"
-
-# not declared mandatory but fails without it
-# mailapi.jar would be enough but that's only in -bin, mail.jar superseedes
-EANT_GENTOO_CLASSPATH="sun-jaf,javamail,log4j,xml-xmlbeans-1,servletapi-2.4,bsf-2.3,sun-jimi,commons-httpclient-3,castor-1.0,xml-commons,commons-net"
-EANT_EXTRA_ARGS="-Ddeprecation=false -Dbase.path=/opt
--Dservlet.jar=servlet-api.jar -Dwsdl4j-1.5.1.jar=wsdl4j.jar
--Dcommons-logging-1.0.4.jar=commons-logging.jar"
-EANT_BUILD_TARGET="compile"
-EANT_DOC_TARGET="javadocs"
-EANT_NEEDS_TOOLS="true"
-
-#TODO-tests require Atlassian clover, need to figure out which ones
-RESTRICT="test"
-
-java_prepare() {
-   # remove some  actions
-   epatch "${FILESDIR}/${P}-build.xml.patch"
-   # remove exact lib paths and global java.classpath from classpath
-   epatch "${FILESDIR}/${P}-path_refs.xml.patch"
-   # add missing target to javac, xml rewriting would break entities
-   epatch "${FILESDIR}/${P}-tools-build.xml.patch"
-   # remove most of  checks
-   epatch "${FILESDIR}/${P}-targets.xml.patch"
-   # this clashes with java6 method
-   epatch "${FILESDIR}/${P}-java6.patch"
-
-   # fix CVE-2014-3596 and bug 520304
-   epatch "${FILESDIR}/${P}-JSSESocketFactory.java.patch"
-
-   # and replace them with predefined properties
-   cp "${FILESDIR}/build.properties" . \
-   || die "failed to copy build.properties from ${FILESDIR}"
-
-   rm -rf "${S}"/docs/apiDocs || die
-
-   #Remove test till they are working
-   rm -rf "${S}"/test || die
-   #cd "${S}"/test
-   #mv build_ant.xml build.xml
-   cd "${S}"/webapps/axis/WEB-INF/lib
-   rm -v *.jar || die
-
-   cd "${S}/lib"
-   mv saaj.jar endorsed/ || die
-   rm -v *.jar || die
-   java-pkg_jar-from --build-only ant-core
-   

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

2015-10-26 Thread James Le Cuirot
commit: b7e36ecb989d022e49aefb352cec257a4b39e9f4
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:27:22 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7e36ecb

dev-java/commons-transaction: Remove obsolete package

 dev-java/commons-transaction/Manifest  |  1 -
 .../commons-transaction-1.2.ebuild | 45 --
 dev-java/commons-transaction/metadata.xml  | 10 -
 3 files changed, 56 deletions(-)

diff --git a/dev-java/commons-transaction/Manifest 
b/dev-java/commons-transaction/Manifest
deleted file mode 100644
index c56d85d..000
--- a/dev-java/commons-transaction/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST commons-transaction-1.2-src.tar.gz 868372 SHA256 
9ba7fd4b48f6a5b9ffbc8069ddcf2d9a3dd53bae269809cb55fd1569a832bc8f SHA512 
397a3da012ac1220c6f0c8fd7adf744f5e08658a202639b5232496455597b53cba61afdf0f7fbb5e9ebad1d16162270157c892e316993714461f8bfd51791bff
 WHIRLPOOL 
09a6790ef7641a20117abc66eeeb94ea0f048951f790aa2cc380f3be06ae480fb8beca489dcf9db74b2f4a5d5df0b367a57d1669e9888bac278d991586375c17

diff --git a/dev-java/commons-transaction/commons-transaction-1.2.ebuild 
b/dev-java/commons-transaction/commons-transaction-1.2.ebuild
deleted file mode 100644
index 5b19f14..000
--- a/dev-java/commons-transaction/commons-transaction-1.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="A library of utility classes commonly used in transactional Java 
programming"
-SRC_URI="mirror://apache/commons/transaction/source/${P}-src.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND=">=virtual/jre-1.4
-   dev-java/commons-codec:0
-   java-virtuals/transaction-api
-   dev-java/log4j:0
-   dev-java/commons-logging:0
-   dev-java/glassfish-connector-api:0"
-DEPEND=">=virtual/jdk-1.4
-   ${RDEPEND}"
-
-S="${WORKDIR}/${P}-src"
-
-java_prepare() {
-   rm -v *.jar lib/*.jar || die
-}
-
-JAVA_ANT_REWRITE_CLASSPATH="true"
-EANT_GENTOO_CLASSPATH="commons-codec,log4j,transaction-api,commons-logging,glassfish-connector-api"
-EANT_DOC_TARGET="javadocs"
-EANT_EXTRA_ARGS="-Djta.present=true -Djca.present=true -Dservlet.present=true"
-
-src_install() {
-   java-pkg_newjar dist/lib/${P}.jar ${PN}.jar
-
-   dodoc NOTICE.txt README.txt RELEASE-NOTES.txt || die
-   dohtml -r xdocs/* || die
-   use doc && java-pkg_dojavadoc build/doc/apidocs
-   use source && java-pkg_dosrc src/java/*
-}

diff --git a/dev-java/commons-transaction/metadata.xml 
b/dev-java/commons-transaction/metadata.xml
deleted file mode 100644
index 89a6543..000
--- a/dev-java/commons-transaction/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   java
-   
-   Commons Transaction aims at providing lightweight, 
standardized, well
-   tested and efficient implementations of utility classes 
commonly used
-   in transactional Java programming.
-   
-



[gentoo-commits] repo/gentoo:master commit in: dev-java/mx4j-core/, dev-java/mx4j-core/files/

2015-10-26 Thread James Le Cuirot
commit: 2bb4f7755916dc1ee8b54513bdbcc91a7b723ac1
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:15:52 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bb4f775

dev-java/mx4j-core: Remove obsolete package

 dev-java/mx4j-core/Manifest|  2 -
 .../mx4j-core-3.0.1-split-javadoc-build.patch  | 44 
 .../mx4j-core-3.0.2-split-javadoc-build.patch  | 45 
 dev-java/mx4j-core/metadata.xml| 16 --
 dev-java/mx4j-core/mx4j-core-3.0.1.ebuild  | 60 -
 dev-java/mx4j-core/mx4j-core-3.0.2-r1.ebuild   | 58 
 dev-java/mx4j-core/mx4j-core-3.0.2.ebuild  | 61 --
 7 files changed, 286 deletions(-)

diff --git a/dev-java/mx4j-core/Manifest b/dev-java/mx4j-core/Manifest
deleted file mode 100644
index 9caec33..000
--- a/dev-java/mx4j-core/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST mx4j-3.0.1-src.tar.gz 622504 SHA256 
f6cef53b68b06d97041f77b69e091eb76f08d1bd0d92f48c9bea958e8cb5dcba SHA512 
7e37b49f7b25475a8926caa74b3f2d252f106374db26063d4f9c72f2e7a32e9c90256ee763e8791ce6a1981cacf8d1848cf616c7771c734c3e05494681663465
 WHIRLPOOL 
333cadbdc1d166202960d9da1978ccb2c6620d86e3b5aec40101139295160615bd32a5ada4c9346513361b41b026913b5d328aad15dc2bdc858587e920521c47
-DIST mx4j-3.0.2-src.tar.gz 618163 SHA256 
bb552a8512567c4ab508a04c5931bff0d859dce36b44bdc4213c6433f02cb266 SHA512 
24014ff723b0880ca5f94b28d3c698659aa04258853e259b7b4025decbf27f0022cbe9da1101b8e2d4e5fb950bfabd9556a402a9b99e6122d0fca324e479ebf8
 WHIRLPOOL 
31c45b785fef2596bcdd39f0c8507db8ea315de97cd78e34ae3e473b71e644d91554c6601ddcc283a325c36a2215680b8138ab89f3bd817961119edf2c935f05

diff --git a/dev-java/mx4j-core/files/mx4j-core-3.0.1-split-javadoc-build.patch 
b/dev-java/mx4j-core/files/mx4j-core-3.0.1-split-javadoc-build.patch
deleted file mode 100644
index 35c20fe..000
--- a/dev-java/mx4j-core/files/mx4j-core-3.0.1-split-javadoc-build.patch
+++ /dev/null
@@ -1,44 +0,0 @@
 mx4j-3.0.1.orig/build/build.xml2006-10-27 22:11:53.0 -0500
-+++ mx4j-3.0.1/build/build.xml 2006-10-27 22:14:39.0 -0500
-@@ -417,7 +417,7 @@
-   
-
- 
--   
-+   
-   
-   
-  
- 
-+ 
-+  
-+   
-+
-+   
-+  
-+  
-+ 
-+
-+ 
-+ 
-+ 
- 
-  
-   
-@@ -478,7 +495,7 @@
- 
-
- 
--   
-+   
-   
-   
-   

diff --git a/dev-java/mx4j-core/files/mx4j-core-3.0.2-split-javadoc-build.patch 
b/dev-java/mx4j-core/files/mx4j-core-3.0.2-split-javadoc-build.patch
deleted file mode 100644
index 9fba649..000
--- a/dev-java/mx4j-core/files/mx4j-core-3.0.2-split-javadoc-build.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-diff -Nru mx4j-3.0.2.vanilla/build/build.xml mx4j-3.0.2/build/build.xml
 mx4j-3.0.2.vanilla/build/build.xml 2008-06-17 15:32:02.0 +0200
-+++ mx4j-3.0.2/build/build.xml 2008-06-17 15:34:06.0 +0200
-@@ -407,7 +407,7 @@
-   
-
- 
--   
-+   
-   
-   
-  
- 
-+  
-+   
-+
-+ 
-+
-+   
-+   
-+  
-+ 
-+  
-+  
-+  
- 
-  
-   
-@@ -468,7 +485,7 @@
- 
-
- 
--   
-+   
-   
-   
-   

diff --git a/dev-java/mx4j-core/metadata.xml b/dev-java/mx4j-core/metadata.xml
deleted file mode 100644
index 5d6507f..000
--- a/dev-java/mx4j-core/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   java
-   
-MX4J is a project to build an Open Source implementation of the Java(TM) 
Management Extensions (JMX) and of the JMX Remote API (JSR 160) specifications, 
and to build tools relating to JMX.
-
-JMX is an optional package for J2SE that provides a standard way to manage 
applications. It can also be used to wrap legacy systems and provide a standard 
interface to the outside world, enabling the development of web services. JMX 
allows developers to write more modular and loosely coupled system components 
and reduce the complexity of large, interoperating systems.
-
-This package has the jmx core. To get everything that upstream binary has 
emerge
-dev-java/mx4j with the appropriate use flags.
-
-   
-   mx4j
-   
-

diff --git a/dev-java/mx4j-core/mx4j-core-3.0.1.ebuild 
b/dev-java/mx4j-core/mx4j-core-3.0.1.ebuild
deleted file mode 100644
index 955ea42..000
--- a/dev-java/mx4j-core/mx4j-core-3.0.1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils java-pkg-2 java-ant-2
-
-MY_P="${P/-core/}"
-DESCRIPTION="Open Source implementation of the JMX and JMX Remote API (JSR 
160) specifications"
-HOMEPAGE="http://mx4j.sourceforge.net/;

[gentoo-commits] repo/gentoo:master commit in: dev-java/jax-rpc/files/, dev-java/jax-rpc/

2015-10-26 Thread James Le Cuirot
commit: f97b65ff7492fd5695204de1c207ca4820915e59
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:13:54 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f97b65ff

dev-java/jax-rpc: Remove obsolete package

 dev-java/jax-rpc/Manifest  |  1 -
 .../jax-rpc/files/jax-rpc-1.1.3.01-length.patch| 11 ---
 dev-java/jax-rpc/jax-rpc-1.1.3.01-r1.ebuild| 82 --
 dev-java/jax-rpc/jax-rpc-1.1.3.01.ebuild   | 82 --
 dev-java/jax-rpc/metadata.xml  |  5 --
 5 files changed, 181 deletions(-)

diff --git a/dev-java/jax-rpc/Manifest b/dev-java/jax-rpc/Manifest
deleted file mode 100644
index e91430b..000
--- a/dev-java/jax-rpc/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST jax-rpc-1.1.3.01.tar.bz2 763737 SHA256 
54d29016732aefb35892b98a7393a8d47061e37933e8387292fd103d2488542e SHA512 
a08e5389a93ddbe72c0598bb96698f2b1b87030aa9cc5ac33460eaeeb639970ee1662aeef9c0e703dac202bf27f9996b2f5e5bf48821786a32e3c67e9f1bc45d
 WHIRLPOOL 
4309eedb2aa5a673e9a4d4314ef4eb1ebdb653f9941172a4a372f4723186eda63025dc2e2e59bb7a073459329f4d32a3d30b7126b4b305f75b970015734a9ebe

diff --git a/dev-java/jax-rpc/files/jax-rpc-1.1.3.01-length.patch 
b/dev-java/jax-rpc/files/jax-rpc-1.1.3.01-length.patch
deleted file mode 100644
index 990b174..000
--- a/dev-java/jax-rpc/files/jax-rpc-1.1.3.01-length.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 src/com/sun/xml/rpc/streaming/FastInfosetReader.java.vanilla   
2007-03-18 16:27:14.0 +0100
-+++ src/com/sun/xml/rpc/streaming/FastInfosetReader.java   2007-03-18 
16:26:23.0 +0100
-@@ -296,7 +296,7 @@
- 
- private boolean isWhiteSpaceCharacters() {
- int i = _charactersOffset;
--final int end = i + _charactersLength;
-+final int end = i + _characters.length;
- while (i < end) {
- if (_characters[i++] > '\u0020') {
- return false;

diff --git a/dev-java/jax-rpc/jax-rpc-1.1.3.01-r1.ebuild 
b/dev-java/jax-rpc/jax-rpc-1.1.3.01-r1.ebuild
deleted file mode 100644
index 4175ef0..000
--- a/dev-java/jax-rpc/jax-rpc-1.1.3.01-r1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-ant-2 eutils
-
-DESCRIPTION="Reference Implementation of JAX-RPC, the Java APIs for XML based 
RPC"
-HOMEPAGE="http://jax-rpc.dev.java.net/;
-# CVS: cvs -d :pserver:gu...@cvs.dev.java.net:/cvs checkout -r 
JAXRPC_1_1_3_01_PKG_081806 jax-rpc/jaxrpc-ri
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="CDDL"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-IUSE=""
-
-COMMON_DEP="=dev-java/servletapi-2.4*
-   dev-java/fastinfoset
-   dev-java/jaxp
-   dev-java/jsr67
-   dev-java/jsr101
-   dev-java/jsr173
-   dev-java/relaxng-datatype
-   dev-java/saaj
-   dev-java/sax
-   dev-java/sun-jaf
-   java-virtuals/javamail
-   dev-java/xsdlib
-   >=dev-java/xerces-2.8"
-RDEPEND=">=virtual/jre-1.5
-   ${COMMON_DEP}"
-DEPEND=">=virtual/jdk-1.5
-   ${COMMON_DEP}"
-
-EANT_BUILD_TARGET="image"
-EANT_DOC_TARGET="javadocs"
-EANT_EXTRA_ARGS="-Djava.mail=lib/mail.jar"
-
-S="${WORKDIR}/jaxrpc-ri"
-
-src_unpack() {
-
-   unpack ${A}
-   cd "${S}"
-   epatch "${FILESDIR}/${P}-length.patch"
-
-   cd "${S}/lib"
-
-   java-pkg_jar-from --build-only ant-core
-   java-pkg_jar-from fastinfoset fastinfoset.jar FastInfoset.jar
-   java-pkg_jar-from jaxp
-   java-pkg_jar-from jsr67 jsr67.jar saaj-api.jar
-   java-pkg_jar-from jsr101
-   java-pkg_jar-from jsr173 jsr173.jar jsr173_api.jar
-   java-pkg_jar-from relaxng-datatype
-   java-pkg_jar-from saaj saaj.jar saaj-impl.jar
-   java-pkg_jar-from sax
-   java-pkg_jar-from servletapi-2.4 servlet-api.jar servlet.jar
-   java-pkg_jar-from sun-jaf
-   java-pkg_jar-from --virtual javamail
-   java-pkg_jar-from xsdlib
-   java-pkg_jar-from xerces-2
-
-   cd "${S}/src"
-   find . -name '*.java' -exec sed -i \
-   -e 's,com.sun.org.apache.xerces.internal,org.apache.xerces,g' \
-   {} \;
-
-}
-
-src_install() {
-
-   java-pkg_dojar "build/lib/jaxrpc-spi.jar"
-   java-pkg_dojar "build/lib/jaxrpc-impl.jar"
-
-   use doc && java-pkg_dojavadoc build/javadocs
-   use source && java-pkg_dosrc src
-
-}

diff --git a/dev-java/jax-rpc/jax-rpc-1.1.3.01.ebuild 
b/dev-java/jax-rpc/jax-rpc-1.1.3.01.ebuild
deleted file mode 100644
index d32b93a..000
--- a/dev-java/jax-rpc/jax-rpc-1.1.3.01.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-ant-2 eutils
-

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

2015-10-26 Thread James Le Cuirot
commit: 46d1933aaa01de0ba743cff29cba8062794c8609
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Oct 26 23:23:04 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Oct 26 23:30:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46d1933a

dev-java/hibernate-annotations: Remove obsolete package

 dev-java/hibernate-annotations/Manifest|  2 -
 .../hibernate-annotations-3.2.0.ebuild | 59 --
 dev-java/hibernate-annotations/metadata.xml|  8 ---
 3 files changed, 69 deletions(-)

diff --git a/dev-java/hibernate-annotations/Manifest 
b/dev-java/hibernate-annotations/Manifest
deleted file mode 100644
index e973878..000
--- a/dev-java/hibernate-annotations/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST hibernate-3.2.0.ga.tar.gz 19744419 SHA256 
e242eb6b243e7b0fac132f37f4e29bf06ec87c37be5a80a0849709a6cb89b03f SHA512 
2c2c8ab8c15df1a36305da1a705ea0f1ab59f306f2cd07520ed95a68bd60f0322a8813d5eed7408e89b5e79cb7eb0e6acc364f72c3a59ca05b2de0d53ffb8c3a
 WHIRLPOOL 
05054879c82ad573d7e714150cf2a90bff4ed88cb161ec9bcc4fcd6d8068f066aed156b5d46e56df10e00f91dc96f55958b3bca0a3bc1c1a5b80cb9e94951d0c
-DIST hibernate-annotations-3.2.0.GA.tar.gz 2075220 SHA256 
7ac81b03c4d4623cb7c883a3f85a47078edb261cde3fee2bfbc4fcf70a4e9bc8 SHA512 
b6ee844fed4f1c2636669155051d082c167f26653b4dfb663e9fd154c6ced63034d62907ab095955cacef26ec61762ba1cdf693a08073f7c48fb530148a9d391
 WHIRLPOOL 
454e6f69d6558b2baf614a4b68241968198ca669f21974805b1537920b1147cbef9d473f541a8319fd5b81511912da880df891d909e144be9fc3a39771d9986e

diff --git a/dev-java/hibernate-annotations/hibernate-annotations-3.2.0.ebuild 
b/dev-java/hibernate-annotations/hibernate-annotations-3.2.0.ebuild
deleted file mode 100644
index c5733be..000
--- a/dev-java/hibernate-annotations/hibernate-annotations-3.2.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit java-pkg-2 java-ant-2
-
-MY_PV="${PV}.GA"
-MY_P="${PN}-${MY_PV}"
-HIBERNATE_P="hibernate-3.2.0.ga"
-
-DESCRIPTION="Annotations support for Hibernate"
-HOMEPAGE="http://annotations.hibernate.org;
-SRC_URI="mirror://sourceforge/hibernate/${MY_P}.tar.gz 
mirror://sourceforge/hibernate/${HIBERNATE_P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="3.2"
-KEYWORDS="~amd64"
-
-IUSE="doc source"
-
-COMMON_DEPS="
-   dev-java/commons-logging:0
-   dev-java/dom4j:1
-   dev-java/glassfish-persistence:0
-   dev-java/hibernate:3.1
-   dev-java/lucene:2.1"
-
-DEPEND=">=virtual/jdk-1.5
-   app-arch/zip:0
-   dev-java/ant-antlr:0
-   dev-java/ant-junit:0
-   dev-java/commons-collections:0
-   ${COMMON_DEPS}
-   "
-RDEPEND=">=virtual/jre-1.5
-   dev-java/lucene:1
-   ${COMMON_DEPS}
-   "
-
-S="${WORKDIR}/${MY_P}"
-HIBERNATE_S="${WORKDIR}/hibernate-${SLOT}"
-
-java_prepare() {
-   cd "${HIBERNATE_S}"/lib || die
-
-   java-pkg_jar-from --build-only ant-antlr,commons-collections
-   java-pkg_jar-from --build-only ant-core ant.jar
-
-   java-pkg_jar-from 
commons-logging,dom4j-1,glassfish-persistence,hibernate-3.1,lucene-2.1
-}
-
-src_install() {
-   java-pkg_dojar ${PN}.jar
-
-   use doc && java-pkg_dojavadoc doc/api
-   use source && java-pkg_dosrc src/*
-}

diff --git a/dev-java/hibernate-annotations/metadata.xml 
b/dev-java/hibernate-annotations/metadata.xml
deleted file mode 100644
index 5d17a7d..000
--- a/dev-java/hibernate-annotations/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   java
-   
-   hibernate
-   
-



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

2015-10-26 Thread Richard Farina
commit: a793b9a401098e1d461cbc19ba20804754ac
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Oct 26 23:44:12 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Oct 26 23:44:32 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a793b9a4

net-wireless/wpa_supplicant: make Coacher happy

Package-Manager: portage-2.2.23

 ...upplicant-2.5-do-not-call-dbus-functions-with-NULL-path.patch | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git 
a/net-wireless/wpa_supplicant/files/wpa_supplicant-2.5-do-not-call-dbus-functions-with-NULL-path.patch
 
b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.5-do-not-call-dbus-functions-with-NULL-path.patch
index deb6996..0f340c9 100644
--- 
a/net-wireless/wpa_supplicant/files/wpa_supplicant-2.5-do-not-call-dbus-functions-with-NULL-path.patch
+++ 
b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.5-do-not-call-dbus-functions-with-NULL-path.patch
@@ -1,7 +1,8 @@
-diff -Naur wpa_supplicant/dbus/dbus_new_helpers.c 
wpa_supplicant-fixed/dbus/dbus_new_helpers.c
 wpa_supplicant/dbus/dbus_new_helpers.c 2015-09-27 15:02:05.0 
-0400
-+++ wpa_supplicant-fixed/dbus/dbus_new_helpers.c   2015-10-05 
18:38:58.489713168 -0400
-@@ -847,7 +847,7 @@
+diff --git a/wpa_supplicant/dbus/dbus_new_helpers.c 
b/wpa_supplicant/dbus/dbus_new_helpers.c
+index 45623f3..0fc3d08 100644
+--- a/wpa_supplicant/dbus/dbus_new_helpers.c
 b/wpa_supplicant/dbus/dbus_new_helpers.c
+@@ -847,7 +847,7 @@ void wpa_dbus_mark_property_changed(struct wpas_dbus_priv 
*iface,
const struct wpa_dbus_property_desc *dsc;
int i = 0;
  



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/jenkins_api_client/

2015-10-26 Thread Manuel Rüger
commit: d4b51e0f2d39b4ccfbf00997c52017c15580d06f
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 01:07:01 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 01:07:01 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=d4b51e0f

dev-ruby/jenkins_api_client: Version bump. Remove old

Package-Manager: portage-2.2.23

 dev-ruby/jenkins_api_client/Manifest| 2 +-
 ...{jenkins_api_client-1.4.0.ebuild => jenkins_api_client-1.4.2.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/jenkins_api_client/Manifest 
b/dev-ruby/jenkins_api_client/Manifest
index ad43281..869c602 100644
--- a/dev-ruby/jenkins_api_client/Manifest
+++ b/dev-ruby/jenkins_api_client/Manifest
@@ -1 +1 @@
-DIST jenkins_api_client-1.4.0.gem 707072 SHA256 
fa1ffec73799b2ce518d0fa29fbf7bc52b376e3f0cbe99d28593b0d294fdcc33 SHA512 
34eb076e9e482672c881fd2e50d057318b4c05f9344a092814b1655891b06b741d8d4fd406e08576183a7fdf06eed996e7ad4393e194f5e8a1ff7af0cb8d44cc
 WHIRLPOOL 
41d77e223bcb1f433d68d5d5c37d1553374d236615f483da93984f1242852edb457d3e13c28bdb8aa72b69414bf9f479cd8c7cff08fb1939d5c9ae4e6753fe2a
+DIST jenkins_api_client-1.4.2.gem 707072 SHA256 
d093ce22a72842ec09f248dbf260404fc74fc147e2ec4f94f93f12e33a8baadd SHA512 
0f0acd94a618c57a9b5bcca8d72fdb271b0e29481440d2b0508967557374a4909294aa73279e434cb823bba4b23349fd9dcda6ec55b531e6efb9e44829fb32d1
 WHIRLPOOL 
7dcb40802e78469de5c7c2fa9a6229018aaee3ce55c306e0023fdc132e4c79d456b772fa4dc3e98d4a46b251b37cf99ba5e61ce1efe712a401ca41f5d64ca6fa

diff --git a/dev-ruby/jenkins_api_client/jenkins_api_client-1.4.0.ebuild 
b/dev-ruby/jenkins_api_client/jenkins_api_client-1.4.2.ebuild
similarity index 94%
rename from dev-ruby/jenkins_api_client/jenkins_api_client-1.4.0.ebuild
rename to dev-ruby/jenkins_api_client/jenkins_api_client-1.4.2.ebuild
index 47114df..0212325 100644
--- a/dev-ruby/jenkins_api_client/jenkins_api_client-1.4.0.ebuild
+++ b/dev-ruby/jenkins_api_client/jenkins_api_client-1.4.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 



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

2015-10-26 Thread Julian Ospald
commit: c5567ca2bdb7e12514c98ab6dd88607acd797efe
Author: Julian Ospald  gentoo  org>
AuthorDate: Mon Oct 26 21:35:28 2015 +
Commit: Julian Ospald  gentoo  org>
CommitDate: Mon Oct 26 21:35:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5567ca2

intel-sdp.eclass: add missing '|| die' on pushd/popd

Reviewed-By: Justin Lecher  gentoo.org>

 eclass/intel-sdp.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/intel-sdp.eclass b/eclass/intel-sdp.eclass
index 1366717..00e52a0 100644
--- a/eclass/intel-sdp.eclass
+++ b/eclass/intel-sdp.eclass
@@ -172,7 +172,7 @@ QA_PREBUILT="${INTEL_SDP_DIR}/*"
 # Creating necessary links to use intel compiler with eclipse
 _isdp_link_eclipse_plugins() {
local c f
-   pushd ${INTEL_SDP_DIR}/eclipse_support > /dev/null
+   pushd ${INTEL_SDP_DIR}/eclipse_support > /dev/null || die
for c in cdt*; do
local cv=${c#cdt} ev=3.$(( ${cv:0:1} - 1))
if has_version "dev-util/eclipse-sdk:${ev}"; then
@@ -189,7 +189,7 @@ _isdp_link_eclipse_plugins() {
done
fi
done
-   popd > /dev/null
+   popd > /dev/null || die
 }
 
 # @FUNCTION: _isdp_big-warning



[gentoo-commits] repo/gentoo:master commit in: sys-auth/oath-toolkit/

2015-10-26 Thread Sven Wegener
commit: 9a94f630e4b5ca5ed771b0ca665c6ec1c8d44944
Author: Sven Wegener  gentoo  org>
AuthorDate: Mon Oct 26 20:04:30 2015 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Mon Oct 26 20:05:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a94f630

sys-auth/oath-toolkit: Disable automake portability warnings, bug #545702

Signed-off-by: Sven Wegener  gentoo.org>

 sys-auth/oath-toolkit/oath-toolkit-2.4.1.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/sys-auth/oath-toolkit/oath-toolkit-2.4.1.ebuild 
b/sys-auth/oath-toolkit/oath-toolkit-2.4.1.ebuild
index a41e3dd..29c0e31 100644
--- a/sys-auth/oath-toolkit/oath-toolkit-2.4.1.ebuild
+++ b/sys-auth/oath-toolkit/oath-toolkit-2.4.1.ebuild
@@ -25,6 +25,10 @@ src_prepare() {
sed -i -r \
-e '/TESTS/s,test-vc-list-files-(git|cvs).sh,,g' \
gl/tests/Makefile.am
+   # disable portability warnings, caused by gtk-doc.make
+   sed -i \
+   -e '/AM_INIT_AUTOMAKE/ s:-Werror:\0 -Wno-portability:' \
+   {liboath,libpskc}/configure.ac
eautoreconf
default
 }



[gentoo-commits] repo/gentoo:master commit in: sys-auth/oath-toolkit/

2015-10-26 Thread Sven Wegener
commit: 2a86069af450a5fc94ddacc69409becefa3018b4
Author: Sven Wegener  gentoo  org>
AuthorDate: Mon Oct 26 20:18:12 2015 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Mon Oct 26 20:19:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a86069a

sys-auth/oath-toolkit: Replace -Wall instead of -Werror

Signed-off-by: Sven Wegener  gentoo.org>

 sys-auth/oath-toolkit/oath-toolkit-2.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/oath-toolkit/oath-toolkit-2.4.1.ebuild 
b/sys-auth/oath-toolkit/oath-toolkit-2.4.1.ebuild
index 29c0e31..131b04b 100644
--- a/sys-auth/oath-toolkit/oath-toolkit-2.4.1.ebuild
+++ b/sys-auth/oath-toolkit/oath-toolkit-2.4.1.ebuild
@@ -27,7 +27,7 @@ src_prepare() {
gl/tests/Makefile.am
# disable portability warnings, caused by gtk-doc.make
sed -i \
-   -e '/AM_INIT_AUTOMAKE/ s:-Werror:\0 -Wno-portability:' \
+   -e '/AM_INIT_AUTOMAKE/ s:-Wall:\0 -Wno-portability:' \
{liboath,libpskc}/configure.ac
eautoreconf
default



[gentoo-commits] repo/gentoo:master commit in: sys-auth/oath-toolkit/

2015-10-26 Thread Sven Wegener
commit: 36625aa09597641918428449c73cfba530c3abd4
Author: Sven Wegener  gentoo  org>
AuthorDate: Mon Oct 26 20:18:36 2015 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Mon Oct 26 20:19:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36625aa0

sys-auth/oath-toolkit: Version bump

Signed-off-by: Sven Wegener  gentoo.org>

 sys-auth/oath-toolkit/Manifest  |  1 +
 sys-auth/oath-toolkit/oath-toolkit-2.6.1.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/sys-auth/oath-toolkit/Manifest b/sys-auth/oath-toolkit/Manifest
index 6841321..a836879 100644
--- a/sys-auth/oath-toolkit/Manifest
+++ b/sys-auth/oath-toolkit/Manifest
@@ -1 +1,2 @@
 DIST oath-toolkit-2.4.1.tar.gz 4136649 SHA256 
9bfa42cbc100eb6c43d2bf83e3badc51d9e6f4950a92e07513ae586d0c5e9b24 SHA512 
2a3440d5c97afef00dacd235d5471e8bf68086dfdb20234a894e7534d75670808fef444fe1062525800bc5ffe368898302e6cf250cd76b7238cd602d7d05e89b
 WHIRLPOOL 
f74dc524a6845054f0d3126ac3aca4ac8e5e70e108abc603622e8e73795e6cba81f3d39debca22a22c7c0f7aba133ec975acfbf8cf64a0b919f0ee1a802c
+DIST oath-toolkit-2.6.1.tar.gz 4238966 SHA256 
9c57831907bc26eadcdf90ba1827d0bd962dd1f737362e817a1dd6d6ec036f79 SHA512 
59feadbc06d11a52bf5879493227c40358fc1f4f17ec3ff92e3a313e47b92f3154396fa3ff38ef163852b32c8bfcef1f59753b614d0138478b8f7e7971f55e62
 WHIRLPOOL 
4c32514c265f430272d255eb6557f3b3d434c1700d4f6a5c3607808ba761d182dde679f9248b486f9e3c45d402d902bf4863b630d3415529303b2013aabe0223

diff --git a/sys-auth/oath-toolkit/oath-toolkit-2.6.1.ebuild 
b/sys-auth/oath-toolkit/oath-toolkit-2.6.1.ebuild
new file mode 100644
index 000..131b04b
--- /dev/null
+++ b/sys-auth/oath-toolkit/oath-toolkit-2.6.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+EAPI=5
+
+inherit pam eutils autotools
+DESCRIPTION="Toolkit for using one-time password authentication with HOTP/TOTP 
algorithms"
+HOMEPAGE="http://www.nongnu.org/oath-toolkit/ 
http://gitorious.org/oath-toolkit/;
+SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz;
+LICENSE="GPL-3 LGPL-2.1"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="pam pskc test"
+
+RDEPEND="
+   pam? ( virtual/pam )
+   pskc? ( dev-libs/xmlsec )"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/libxml2 )
+   dev-util/gtk-doc-am"
+
+src_prepare() {
+   # These tests need git/cvs and don't reflect anything in the final app
+   sed -i -r \
+   -e '/TESTS/s,test-vc-list-files-(git|cvs).sh,,g' \
+   gl/tests/Makefile.am
+   # disable portability warnings, caused by gtk-doc.make
+   sed -i \
+   -e '/AM_INIT_AUTOMAKE/ s:-Wall:\0 -Wno-portability:' \
+   {liboath,libpskc}/configure.ac
+   eautoreconf
+   default
+}
+
+src_configure() {
+   econf \
+   $(use_enable test xmltest ) \
+   $(use_enable pam) \
+   $(use_with pam pam-dir $(getpam_mod_dir)) \
+   $(use_enable pskc)
+}
+
+src_install() {
+   default
+   if use pam; then
+   newdoc pam_oath/README README.pam
+   fi
+   if use pskc; then
+   doman pskctool/pskctool.1
+   fi
+}
+
+src_test() {
+   # without keep-going, it will bail out after the first testsuite 
failure,
+   # skipping the other testsuites. as they are mostly independant, this 
sucks.
+   emake --keep-going check
+   [ $? -ne 0 ] && die "At least one testsuite failed"
+}



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

2015-10-26 Thread Justin Lecher
commit: 219b5f03797f120a392f97bedfd7163c4ae773aa
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Oct 26 19:16:22 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Oct 26 19:36:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=219b5f03

dev-python/elasticsearch-py: QA: Add missing die

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/elasticsearch-py/elasticsearch-py-1.8.0.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-python/elasticsearch-py/elasticsearch-py-1.8.0.ebuild 
b/dev-python/elasticsearch-py/elasticsearch-py-1.8.0.ebuild
index 936ac89..79517ee 100644
--- a/dev-python/elasticsearch-py/elasticsearch-py-1.8.0.ebuild
+++ b/dev-python/elasticsearch-py/elasticsearch-py-1.8.0.ebuild
@@ -37,7 +37,9 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 
 python_prepare_all() {
# rename manpage to elasticsearch-py
-   sed -i "s@('index', 'elasticsearch'@('index', 'elasticsearch-py'@g" 
docs/conf.py
+   sed \
+   -e "s@('index', 'elasticsearch'@('index', 'elasticsearch-py'@g" 
\
+   -i docs/conf.py || die
 
distutils-r1_python_prepare_all
 }



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

2015-10-26 Thread Mike Pagano
commit: 19c36945db482f1174588877bf34ec85a8b039af
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Oct 26 20:51:30 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Oct 26 20:51:30 2015 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=19c36945

Remove redundant patchsets.

 _README|  8 ---
 1600_dm-crypt-limit-max-segment-size.patch | 84 --
 2000_inet-deadlock-in-reqsk-queue-unlink-fix.patch | 32 -
 3 files changed, 124 deletions(-)

diff --git a/_README b/_README
index fa3fbdb..18e95dd 100644
--- a/_README
+++ b/_README
@@ -95,14 +95,6 @@ Patch:  
1510_fs-enable-link-security-restrictions-by-default.patch
 From:   
http://sources.debian.net/src/linux/3.16.7-ckt4-3/debian/patches/debian/fs-enable-link-security-restrictions-by-default.patch/
 Desc:   Enable link security restrictions by default.
 
-Patch:  1600_dm-crypt-limit-max-segment-size.patch
-From:   https://bugzilla.kernel.org/show_bug.cgi?id=104421
-Desc:   dm crypt: constrain crypt device's max_segment_size to PAGE_SIZE.
-
-Patch:  2000_inet-deadlock-in-reqsk-queue-unlink-fix.patch
-From:   http://git.kernel.org/
-Desc:   inet: Patch to fix potential deadlock in reqsk_queue_unlink()
-
 Patch:  2700_ThinkPad-30-brightness-control-fix.patch
 From:   Seth Forshee 
 Desc:   ACPI: Disable Windows 8 compatibility for some Lenovo ThinkPads.

diff --git a/1600_dm-crypt-limit-max-segment-size.patch 
b/1600_dm-crypt-limit-max-segment-size.patch
deleted file mode 100644
index 82aca44..000
--- a/1600_dm-crypt-limit-max-segment-size.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-From 586b286b110e94eb31840ac5afc0c24e0881fe34 Mon Sep 17 00:00:00 2001
-From: Mike Snitzer 
-Date: Wed, 9 Sep 2015 21:34:51 -0400
-Subject: dm crypt: constrain crypt device's max_segment_size to PAGE_SIZE
-
-Setting the dm-crypt device's max_segment_size to PAGE_SIZE is an
-unfortunate constraint that is required to avoid the potential for
-exceeding dm-crypt's underlying device's max_segments limits -- due to
-crypt_alloc_buffer() possibly allocating pages for the encryption bio
-that are not as physically contiguous as the original bio.
-
-It is interesting to note that this problem was already fixed back in
-2007 via commit 91e106259 ("dm crypt: use bio_add_page").  But Linux 4.0
-commit cf2f1abfb ("dm crypt: don't allocate pages for a partial
-request") regressed dm-crypt back to _not_ using bio_add_page().  But
-given dm-crypt's cpu parallelization changes all depend on commit
-cf2f1abfb's abandoning of the more complex io fragments processing that
-dm-crypt previously had we cannot easily go back to using
-bio_add_page().
-
-So all said the cleanest way to resolve this issue is to fix dm-crypt to
-properly constrain the original bios entering dm-crypt so the encryption
-bios that dm-crypt generates from the original bios are always
-compatible with the underlying device's max_segments queue limits.
-
-It should be noted that technically Linux 4.3 does _not_ need this fix
-because of the block core's new late bio-splitting capability.  But, it
-is reasoned, there is little to be gained by having the block core split
-the encrypted bio that is composed of PAGE_SIZE segments.  That said, in
-the future we may revert this change.
-
-Fixes: cf2f1abfb ("dm crypt: don't allocate pages for a partial request")
-Fixes: https://bugzilla.kernel.org/show_bug.cgi?id=104421
-Suggested-by: Jeff Moyer 
-Signed-off-by: Mike Snitzer 
-Cc: sta...@vger.kernel.org # 4.0+
-
-diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c
-index d60c88d..4b3b6f8 100644
 a/drivers/md/dm-crypt.c
-+++ b/drivers/md/dm-crypt.c
-@@ -968,7 +968,8 @@ static void crypt_free_buffer_pages(struct crypt_config 
*cc, struct bio *clone);
- 
- /*
-  * Generate a new unfragmented bio with the given size
-- * This should never violate the device limitations
-+ * This should never violate the device limitations (but only because
-+ * max_segment_size is being constrained to PAGE_SIZE).
-  *
-  * This function may be called concurrently. If we allocate from the mempool
-  * concurrently, there is a possibility of deadlock. For example, if we have
-@@ -2045,9 +2046,20 @@ static int crypt_iterate_devices(struct dm_target *ti,
-   return fn(ti, cc->dev, cc->start, ti->len, data);
- }
- 
-+static void crypt_io_hints(struct dm_target *ti, struct queue_limits *limits)
-+{
-+  /*
-+   * Unfortunate constraint that is required to avoid the potential
-+   * for exceeding underlying device's max_segments limits -- due to
-+   * crypt_alloc_buffer() possibly allocating pages for the encryption
-+   * bio that are not as physically contiguous as the original bio.
-+   */
-+  limits->max_segment_size = PAGE_SIZE;
-+}
-+
- static struct target_type crypt_target = {
-   .name  

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

2015-10-26 Thread Anthony G. Basile
commit: 102498a8e0eb277bf0beffbe2fe53b0d00f23329
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Oct 26 23:25:24 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Oct 26 23:27:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=102498a8

profiles: mask x265 on vlc for arch/powerpc/ppc32, bug #564138.

 profiles/arch/powerpc/ppc32/package.use.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/arch/powerpc/ppc32/package.use.mask 
b/profiles/arch/powerpc/ppc32/package.use.mask
index cc8f6ad..e5b68cd 100644
--- a/profiles/arch/powerpc/ppc32/package.use.mask
+++ b/profiles/arch/powerpc/ppc32/package.use.mask
@@ -4,6 +4,10 @@
 
 # This file requires >=portage-2.1.1
 
+# Anthony G. Basile  (26 Oct 2015)
+# Mask x265 on vlc for bug #564138
+media-video/vlc x265
+
 # Davide Pesavento  (26 Oct 2015)
 # Tests require non-keyworded qt5
 dev-qt/qtchooser test



[gentoo-commits] repo/gentoo:master commit in: dev-java/swt/, dev-java/swt/files/

2015-10-26 Thread Ryan Hill
commit: a982577a389eba5e74720efdc9a4a3ca1434b5b3
Author: Ryan Hill  gentoo  org>
AuthorDate: Mon Oct 26 23:38:16 2015 +
Commit: Ryan Hill  gentoo  org>
CommitDate: Mon Oct 26 23:39:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a982577a

dev-java/swt: Backport patch fixing crash to 3.8.2.

https://bugs.eclipse.org/404776
Gentoo-Bug: https://bugs.gentoo.org/500570

Package-Manager: portage-2.2.23
Signed-off-by: Ryan Hill  gentoo.org>

 .../swt/files/swt-3.8.2-libwebkit-compat.patch |  23 +++
 dev-java/swt/swt-3.8.2-r1.ebuild   | 184 +
 2 files changed, 207 insertions(+)

diff --git a/dev-java/swt/files/swt-3.8.2-libwebkit-compat.patch 
b/dev-java/swt/files/swt-3.8.2-libwebkit-compat.patch
new file mode 100644
index 000..ba537f5
--- /dev/null
+++ b/dev-java/swt/files/swt-3.8.2-libwebkit-compat.patch
@@ -0,0 +1,23 @@
+crash: fatal error in soup_session_feature_detach with WebKitGTK+ >= 1.11.91
+http://git.eclipse.org/c/platform/eclipse.platform.swt.git/commit/?id=b22a7d19afbe2a3811a0f8aa54c1e85d92c62a2c
+https://bugs.eclipse.org/404776
+https://bugs.gentoo.org/500570
+
+--- a/src/org/eclipse/swt/browser/WebKit.java
 b/src/org/eclipse/swt/browser/WebKit.java
+@@ -597,9 +597,13 @@ public void create (Composite parent, int style) {
+   */
+   long /*int*/ session = WebKitGTK.webkit_get_default_session ();
+   long /*int*/ originalAuth = WebKitGTK.soup_session_get_feature 
(session, WebKitGTK.webkit_soup_auth_dialog_get_type ());
+-  WebKitGTK.soup_session_feature_detach (originalAuth, session);
++  if (originalAuth != 0) {
++  WebKitGTK.soup_session_feature_detach (originalAuth, session);
++  }
+   OS.g_signal_connect (session, WebKitGTK.authenticate, Proc5.getAddress 
(), webView);
+-  WebKitGTK.soup_session_feature_attach (originalAuth, session);
++  if (originalAuth != 0) {
++  WebKitGTK.soup_session_feature_attach (originalAuth, session);
++  }
+ 
+   /*
+   * Check for proxy values set as documented java properties and update 
the

diff --git a/dev-java/swt/swt-3.8.2-r1.ebuild b/dev-java/swt/swt-3.8.2-r1.ebuild
new file mode 100644
index 000..275a366
--- /dev/null
+++ b/dev-java/swt/swt-3.8.2-r1.ebuild
@@ -0,0 +1,184 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils java-pkg-2 java-ant-2 toolchain-funcs java-osgi
+
+MY_PV="${PV/_rc/RC}"
+MY_DMF="archive.eclipse.org/eclipse/downloads/drops/R-${MY_PV}-201301310800"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="GTK based SWT Library"
+HOMEPAGE="http://www.eclipse.org/;
+SRC_URI="x86? (
+   http://${MY_DMF}/${MY_P}-gtk-linux-x86.zip
+   )
+   x86-fbsd? (
+   http://${MY_DMF}/${MY_P}-gtk-linux-x86.zip
+   )
+   amd64? (
+   http://${MY_DMF}/${MY_P}-gtk-linux-x86_64.zip
+   )
+   ppc? (
+   http://${MY_DMF}/${MY_P}-gtk-linux-x86.zip
+   )
+   ppc64? (
+   http://${MY_DMF}/${MY_P}-gtk-linux-ppc64.zip
+   )"
+
+SLOT="3.8"
+LICENSE="CPL-1.0 LGPL-2.1 MPL-1.1"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+IUSE="cairo gnome opengl webkit"
+COMMON=">=dev-libs/glib-2.6
+   >=x11-libs/gtk+-2.6.8:2
+   >=dev-libs/atk-1.10.2
+   cairo? ( >=x11-libs/cairo-1.4.14 )
+   gnome?  (
+   gnome-base/gnome-vfs:2
+   gnome-base/libgnome
+   gnome-base/libgnomeui
+   )
+   opengl? (
+   virtual/opengl
+   virtual/glu
+   )
+   webkit? ( >=net-libs/webkit-gtk-1.2:2 )
+   x11-libs/libXtst"
+
+DEPEND=">=virtual/jdk-1.4
+   app-arch/unzip
+   x11-libs/libX11
+   x11-libs/libXrender
+   x11-libs/libXt
+   >=x11-libs/libXtst-1.1.0
+   x11-proto/inputproto
+   virtual/pkgconfig
+   ${COMMON}"
+
+RDEPEND=">=virtual/jre-1.4
+   ${COMMON}"
+
+S="${WORKDIR}"
+
+# JNI libraries don't need SONAME, bug #253756
+QA_SONAME="usr/$(get_libdir)/libswt-.*.so"
+
+src_unpack() {
+   local DISTFILE=${A}
+   unzip -jq "${DISTDIR}"/${DISTFILE} "*src.zip" || die "Unable to extract 
distfile"
+   unpack "./src.zip"
+
+   # Cleanup the redirtied directory structure
+   rm -rf about_files/ || die
+}
+
+java_prepare() {
+   # Replace the build.xml to allow compilation without Eclipse tasks
+   cp "${FILESDIR}/build.xml" "${S}/build.xml" || die "Unable to update 
build.xml"
+
+   mkdir -p "${S}/src"
+   mv "${S}/org" "${S}/src" || die "Unable to restructure SWT sources"
+
+   

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

2015-10-26 Thread Manuel Rüger
commit: bf638306b074107f6bf65c7ee8707fd9e5d2e2af
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 00:59:49 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 00:59:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf638306

www-apps/jekyll-watch: Version bump

Package-Manager: portage-2.2.23

 www-apps/jekyll-watch/Manifest  |  1 +
 www-apps/jekyll-watch/jekyll-watch-1.3.0.ebuild | 30 +
 2 files changed, 31 insertions(+)

diff --git a/www-apps/jekyll-watch/Manifest b/www-apps/jekyll-watch/Manifest
index 9bd80c8..cbb1f55 100644
--- a/www-apps/jekyll-watch/Manifest
+++ b/www-apps/jekyll-watch/Manifest
@@ -1 +1,2 @@
 DIST jekyll-watch-1.2.1.tar.gz 13660 SHA256 
7641a8f4eb5a281ae0ff6f5553882b40ad95bd663136bc802036a3f3110e97fd SHA512 
69fabe7ef01f2bbcf81e0ba0ce4e62d6999ff1a1da1b8dc254e364dc61af2bf6989f1f1ac8da6b2da7991e1972813b7c509fb0cb23558f16536b8f68fa57f62c
 WHIRLPOOL 
2c082ce9bd703e639170f6b4ee781c3ebe8dad8e59f1cb0fdc690fb4136b4432368a53095f7455728fed4e6b44b0ae1d467dd26cc0acf8a7713b582fc3703c25
+DIST jekyll-watch-1.3.0.tar.gz 13882 SHA256 
a87b9e76e575ec394525b6b804bf8aa430eb51df2e309f34b0f2f46129b9c353 SHA512 
91950cdeba568ef368ea5f91f3ec3208073786f12e7a8587e2560c92be9108d5d97d9ddc517eb681df3335bcdc0f8b85c9425fbe289b39912c3c4c6ef8d641e2
 WHIRLPOOL 
a5e18c641921f561e42557cbd902100fac085d2fd320771581d507122fa6fa77bf60cf9e26a7444eac0387227c1e131ab611cee814178cd1748c2e74912a67d1

diff --git a/www-apps/jekyll-watch/jekyll-watch-1.3.0.ebuild 
b/www-apps/jekyll-watch/jekyll-watch-1.3.0.ebuild
new file mode 100644
index 000..4ffd0bc
--- /dev/null
+++ b/www-apps/jekyll-watch/jekyll-watch-1.3.0.ebuild
@@ -0,0 +1,30 @@
+# 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="README.md History.markdown"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Rebuild your Jekyll site when a file changes with the --watch 
switch"
+HOMEPAGE="https://github.com/jekyll/jekyll-watch;
+SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/listen-3.0"
+ruby_add_bdepend "test? ( >=www-apps/jekyll-2 )"
+
+all_ruby_prepare() {
+   rm Rakefile || die
+   # Fix tests until Rspec:3 is in tree
+   sed -i -e "/default_formatter/d" -e "/verify_partial_doubles/d" 
spec/spec_helper.rb || die
+}



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

2015-10-26 Thread Michał Górny
commit: 0fac4b1744a85ddc9674d2ff1a2422fc838164de
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 26 20:07:12 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 26 20:07:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fac4b17

sys-block/open-iscsi: Merge unnecessary udev dep removal

Pull-Request: https://github.com/gentoo/gentoo/pull/209

 sys-block/open-iscsi/open-iscsi-2.0.873.ebuild | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)



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

2015-10-26 Thread Michał Górny
commit: 2812628c3f868f13ccb344bfa90e48ee84f356b3
Author: Jakub Jirutka  jirutka  cz>
AuthorDate: Mon Oct 26 19:40:18 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 26 19:40:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2812628c

sys-block/open-iscsi: Use doexe instead of juggling with permissions

 sys-block/open-iscsi/open-iscsi-2.0.873.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild 
b/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild
index 5280861..53bf0ef 100644
--- a/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild
+++ b/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild
@@ -82,10 +82,8 @@ src_install() {
# udev pieces
insinto /lib/udev/rules.d
doins "${FILESDIR}"/99-iscsi.rules
-   insopts -m0755
-   insinto /etc/udev/scripts
-   doins "${FILESDIR}"/iscsidev.sh
-   insopts -m0644
+   exeinto /etc/udev/scripts
+   doexe "${FILESDIR}"/iscsidev.sh
 
newconfd "${FILESDIR}"/iscsid-conf.d iscsid
newinitd "${FILESDIR}"/iscsid-init.d iscsid



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

2015-10-26 Thread Michał Górny
commit: f2c1a8a62739b9cbbcb05c8af541383cdb1caa4f
Author: Jakub Jirutka  jirutka  cz>
AuthorDate: Wed Oct 14 22:12:37 2015 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 26 19:39:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2c1a8a6

sys-block/open-iscsi: Remove unnecessary dependency (bug #563082)

 sys-block/open-iscsi/open-iscsi-2.0.873.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild 
b/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild
index 34b33e3..5280861 100644
--- a/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild
+++ b/sys-block/open-iscsi/open-iscsi-2.0.873.ebuild
@@ -19,7 +19,6 @@ IUSE="debug slp"
 
 DEPEND="slp? ( net-libs/openslp )"
 RDEPEND="${DEPEND}
-   virtual/udev
sys-fs/lsscsi
sys-apps/util-linux"
 
@@ -79,6 +78,7 @@ src_install() {
 
insinto /etc/iscsi
newins "${FILESDIR}"/initiatorname.iscsi initiatorname.iscsi.example
+
# udev pieces
insinto /lib/udev/rules.d
doins "${FILESDIR}"/99-iscsi.rules



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

2015-10-26 Thread Mike Pagano
commit: a9925d7418f167866446a1ce718ecd514e26dc6e
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Oct 27 00:15:27 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Oct 27 00:15:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9925d74

sys-kernel/gentoo-sources: Linux patch 4.1.11. Removal of redundant patches.

Package-Manager: portage-2.2.20.1

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index b465edf..1a6b609 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -91,6 +91,9 @@ DIST genpatches-4.1-12.extras.tar.xz 16184 SHA256 
dae92203157380e361f9b114a56d59
 DIST genpatches-4.1-14.base.tar.xz 311648 SHA256 
e3a959d79834266bd4760d806598b7e9b982823e9b177219f0e385482380aa25 SHA512 
b2626d0b45da547a293ba233a4c33c30aa4f7b9ff1d2c3a3aea664f9d99e272b5c9aeba6abc63f27930771b9c282184501c62a987985e23c53471ca5feb260d2
 WHIRLPOOL 
5db2f30fe0f30cd1161cfbd7d7a8a7cb6815ece833874e303782bf28afc25d11568d48372816e9736d39c781635d5ba91b3f80817552485ddf1c945c40aec01a
 DIST genpatches-4.1-14.experimental.tar.xz 215988 SHA256 
3b58f4e8e4867bb7eac7acc78954824f79d0e4260ab5b21d73d30ee617287708 SHA512 
bed868ee20616194dfd314705234348f1a860a2163c886470a16e387940a48dfa78e1cd0e2a6b4a827b9c664fa37586d0a52925ad7502e2ca4e15e94fd33c2b3
 WHIRLPOOL 
2ff84c87619e2dea27886d1bf7e94753187e2f1b07c71b4b5ebbbaa3ead391c0d3a14431a67b3707ceda05d26b86598f1bfbe1beadb63285614e77b3e76102af
 DIST genpatches-4.1-14.extras.tar.xz 16176 SHA256 
587b262c33c48fd62b490d433226f8e7e695eff295679f3ee2589e07d2f6d8a2 SHA512 
70da581e7c4fbf456ca5000cc2cf7aa13840400f549f84f5f8ae17f5c232d10917ef4dfdc391df96588f9e27b8cfee0d360faf19653dfd6b081e2cf23f4976d0
 WHIRLPOOL 
12af4e7972fe1a5fe54fe31ae58104624dba595793dcd3aac497e87c9e1850b203a2d17816bed1c88ae609e378075ed015ad426c0a72767cd3385b0b7c74a5fd
+DIST genpatches-4.1-15.base.tar.xz 380284 SHA256 
35790aa1cc037386bb6e18f331d8991918610d99d72cba95fdca4ce6c62a807b SHA512 
c057a9fa1bd865ac4debf0b75a6eca5e790d6e5c0886a3b7cdcab5543e58d11e4add784194b0da18df97b6c964504c4c119bb17e2c982c7214acc8ab90d22464
 WHIRLPOOL 
b333e2b5800c9df35c2bd6df82243a0c41d086bbd335cfa5349e6846a945c2dd8bb2305687a2fdacec8da744aa0d0e3f84f8144ab9a9c7a7a75af119d3ab9cb6
+DIST genpatches-4.1-15.experimental.tar.xz 215916 SHA256 
00202a351d98b6f7fa2852e3926212eb22b88db6b0152ce8803f91d7afbf06c7 SHA512 
85ad1030b9950a9dbf24979a88ca26edbe720125a063920b2295bb5c5ad469b0860d6cd938956cdb06a545ef845ba5b7b8a8f165b1be10fca3508b942b1f4ead
 WHIRLPOOL 
583ba065a4216de3a0f81bfaa65fd50e7824c3c9ca95940b2ee3dd1a83ffd19408caaf0b19e7d36101b1102642b58fdcc0d232285a3a22555c4333be0a895e56
+DIST genpatches-4.1-15.extras.tar.xz 16180 SHA256 
41685fc8b7c575b6a6ca77e1fb3b73f0cf7441620397ae33f3a099d7750e156f SHA512 
f62062e8bdf1194724284711989712af403e0b8e5b61f38b897b033e7238bf09eaa3d70cbc4b8eef26758aa37d70678ecb8b63618de70635312844113d59b12e
 WHIRLPOOL 
e8421f08af19bf4f64591bcc1bae2b28f383c05a39487078dfb8c7fe58c7b6c605b9e573db564ba2c8e2004f1ca2fd687b14168d01101753cce6ab66fc1e450c
 DIST genpatches-4.2-1.base.tar.xz 3836 SHA256 
c89ed0e0b4cf32d16023c4df67e047ee663fdd4bfe84375d373e594c787780c3 SHA512 
8b028fdd8b93be92ed457c5722b584d4648220fd86440f3fead1a55ee254d4a4d808f09367929683a4bc58439aa274778aaa7f3ed0e14e3d8a5bb1b497a84644
 WHIRLPOOL 
c1b6c8098339e72a248aabaff0e92d1e8fa5170a443b4beae62e3ec8c1235ba1bb7c1ae06a92b0041ef63c8c463a01f62313bed0f66d66e5d7d7721b4b3f0b49
 DIST genpatches-4.2-1.experimental.tar.xz 161668 SHA256 
ff7f476b7b75be0779195dd1d7d01ab326b572def562b2741353751d59d43724 SHA512 
ec2483b0df034d1d28a0bfc26395fe10fa7a1358f2fbc68d8d0217d3a1e3176bc15ef41c268d3b18b362198a85b44dcb59dfb6aac544e262407516103e9e8a90
 WHIRLPOOL 
fd66c1f678937efe852a68473eb9e8635ed2f24068cb8720466dc76abac32bb1d9e3eacc1f70b92d4b02402e6ec5af3a5639fff1e30f4c435a4dbf384110d25d
 DIST genpatches-4.2-1.extras.tar.xz 16180 SHA256 
a26b453b708e1463b361fa7d49c4ef3e7c4ebcc5d6ae2dfafa1e966d5cf78608 SHA512 
cf3dcd49dea36cdc30be17bdbcb929263310bff7907bebc5aa884511b50abcde5d68815013b038fa542f86c3ee2f9d86094b28bc2481261de26e2c8e4f08779c
 WHIRLPOOL 
9e8b6e5977ff574d2b15df42dd05eb77e57306df8135a263226a6924426b08920b31bcc78235e3e974c0bc6f820652abab7eef03694f67cfebb80570d6158d95

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.1.11.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.1.11.ebuild
new file mode 100644
index 000..35918db
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.1.11.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="15"
+K_DEBLOB_AVAILABLE="0"
+K_KDBUS_AVAILABLE="1"
+
+inherit kernel-2

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

2015-10-26 Thread Manuel Rüger
commit: 1862405c9694c122ac85145abc58633ca5b165ad
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 00:31:58 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 00:34:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1862405c

www-apps/jekyll-gist: Version bump

Package-Manager: portage-2.2.23

 www-apps/jekyll-gist/Manifest |  1 +
 www-apps/jekyll-gist/jekyll-gist-1.3.5.ebuild | 28 +++
 2 files changed, 29 insertions(+)

diff --git a/www-apps/jekyll-gist/Manifest b/www-apps/jekyll-gist/Manifest
index 2079378..e63819c 100644
--- a/www-apps/jekyll-gist/Manifest
+++ b/www-apps/jekyll-gist/Manifest
@@ -1 +1,2 @@
 DIST jekyll-gist-1.3.4.tar.gz 5294 SHA256 
a66e4440eae6c811f20b4aedded236a89b2aaf89190d00979fad478ff979fda2 SHA512 
379ce28b5ebf740e1e876b8f7ff9ea9ae0525acbbf9f0cd4b3e8e91d977efbd405fa6886f700b18764c705ebcb3b308cc2e8e453177855afeb6e1bdcf6cae14b
 WHIRLPOOL 
c14e640091ab98ba3fd036014047e8b87e633af0b53da83629a41b093e5489ddc22bcc4e56f4f7bbc53b000d7e591f9820ecca3788765c6866c4c8a99807b2e5
+DIST jekyll-gist-1.3.5.tar.gz 5495 SHA256 
fda6aa7638c9255b197d3037aa9b236b99dff117d17c293bfb59f28776e065cb SHA512 
f3028f11d594645a776c10cb9daef55d2f54592bc97fba25f1ffe4390c18e2c35330a674f40c12e34847c9dfe9844495aa419d9959b305a4100c2729e291efb2
 WHIRLPOOL 
9c52508ce49bd3974fe2965fa56c0bed3b1869f0b1613e220a1b10c849ecb42bbc83800ad501c0ed8a2d6a17399503e93cc9601a061169161087cf3d3d675020

diff --git a/www-apps/jekyll-gist/jekyll-gist-1.3.5.ebuild 
b/www-apps/jekyll-gist/jekyll-gist-1.3.5.ebuild
new file mode 100644
index 000..1405a58
--- /dev/null
+++ b/www-apps/jekyll-gist/jekyll-gist-1.3.5.ebuild
@@ -0,0 +1,28 @@
+# 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="rspec"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md History.markdown"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Liquid tag for displaying GitHub Gists in Jekyll sites"
+HOMEPAGE="https://github.com/jekyll/jekyll-gist;
+SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/webmock
+   >=www-apps/jekyll-2 )"
+
+all_ruby_prepare() {
+   rm Rakefile || die
+}



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

2015-10-26 Thread Manuel Rüger
commit: 329db104043334437fa93941136d2295747f7087
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 00:32:24 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 00:34:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=329db104

www-apps/jekyll-gist: Remove old

Package-Manager: portage-2.2.23

 www-apps/jekyll-gist/Manifest |  1 -
 www-apps/jekyll-gist/jekyll-gist-1.3.4.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/www-apps/jekyll-gist/Manifest b/www-apps/jekyll-gist/Manifest
index e63819c..2b28063 100644
--- a/www-apps/jekyll-gist/Manifest
+++ b/www-apps/jekyll-gist/Manifest
@@ -1,2 +1 @@
-DIST jekyll-gist-1.3.4.tar.gz 5294 SHA256 
a66e4440eae6c811f20b4aedded236a89b2aaf89190d00979fad478ff979fda2 SHA512 
379ce28b5ebf740e1e876b8f7ff9ea9ae0525acbbf9f0cd4b3e8e91d977efbd405fa6886f700b18764c705ebcb3b308cc2e8e453177855afeb6e1bdcf6cae14b
 WHIRLPOOL 
c14e640091ab98ba3fd036014047e8b87e633af0b53da83629a41b093e5489ddc22bcc4e56f4f7bbc53b000d7e591f9820ecca3788765c6866c4c8a99807b2e5
 DIST jekyll-gist-1.3.5.tar.gz 5495 SHA256 
fda6aa7638c9255b197d3037aa9b236b99dff117d17c293bfb59f28776e065cb SHA512 
f3028f11d594645a776c10cb9daef55d2f54592bc97fba25f1ffe4390c18e2c35330a674f40c12e34847c9dfe9844495aa419d9959b305a4100c2729e291efb2
 WHIRLPOOL 
9c52508ce49bd3974fe2965fa56c0bed3b1869f0b1613e220a1b10c849ecb42bbc83800ad501c0ed8a2d6a17399503e93cc9601a061169161087cf3d3d675020

diff --git a/www-apps/jekyll-gist/jekyll-gist-1.3.4.ebuild 
b/www-apps/jekyll-gist/jekyll-gist-1.3.4.ebuild
deleted file mode 100644
index 14eb376..000
--- a/www-apps/jekyll-gist/jekyll-gist-1.3.4.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="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md History.markdown"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Liquid tag for displaying GitHub Gists in Jekyll sites"
-HOMEPAGE="https://github.com/jekyll/jekyll-gist;
-SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_bdepend "test? ( >=www-apps/jekyll-2 )"
-
-all_ruby_prepare() {
-   rm Rakefile || die
-}



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

2015-10-26 Thread Manuel Rüger
commit: b09f38e301fa8d0d77d8bb16ede101516e1a07ba
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 01:04:22 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 01:04:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b09f38e3

dev-ruby/minitest: Version bump

Package-Manager: portage-2.2.23

 dev-ruby/minitest/Manifest  |  1 +
 dev-ruby/minitest/minitest-5.8.2.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-ruby/minitest/Manifest b/dev-ruby/minitest/Manifest
index b6325d6..c3270d0 100644
--- a/dev-ruby/minitest/Manifest
+++ b/dev-ruby/minitest/Manifest
@@ -5,3 +5,4 @@ DIST minitest-5.6.1.gem 70656 SHA256 
c293d497049aa663dc6332b940bdac9dd3052b62ccf
 DIST minitest-5.7.0.gem 71680 SHA256 
08ef10d1e6314fd0dc9a71ea697fd196d153d6bbffa8c6f7b8350973a772b867 SHA512 
22eb2a37bb2f00e1798939d88bdeb8929e6ebd514ba3397e76b78873da7a2d3a5ad6b2889b8d21cb3f75d0211c485e87703396b9d038c05c2b52ff18557552de
 WHIRLPOOL 
a864cd94d9c5481498f7b153178a5295337c898597bd6fac12e3776c104cb8a296117f9b5916e1b7956fc156481d96bdd01cb2ed71c097f7ca9ed526dac3a37f
 DIST minitest-5.8.0.gem 71680 SHA256 
875de2784b97b710da76c682e725095ca6c5142093a07474114e52cd6dea0953 SHA512 
07ce4cff755ed1ec15f3f927793cca11468a714ae5ab2848ea97ce9b0d9c533dfdc2867df6f66609c7658ded4b1bd4012594356c0f253d1d977c707d4d54f5ee
 WHIRLPOOL 
7ebd286097c5ca98729fc74e53618d4b83106d7ec440b0cb0d9d3856c514f6dab7b5671fd2ddf64f13576f82621cba8f49d52cab14fa0c252f0738ae4204
 DIST minitest-5.8.1.gem 71680 SHA256 
c8d2763ef0f3c86464b83ed60876772a1e7ff669c562bb63064679cf51109103 SHA512 
ca2e950521403a1f1e97c386d71097e6ad014bfe34d9799f2070db75b3d72c676daefda0e8a6bbf9f0bd43a640b7a873195278388845b04d3fc46b9e12c8f7ae
 WHIRLPOOL 
f96defb6ea36dc8f3a25c60d13389f6ac0169cd35f566e12b03a8157f376c9f0f0929d1361be2fcb324b99dcbaa7101a57ff156f3aafe25ea5ec255564b05194
+DIST minitest-5.8.2.gem 71680 SHA256 
2f72bd7eaa8990730aa190c8f49f28956165f4da400d6169cafb55ef77dc2db2 SHA512 
a7f4295e05eda6367a500b88a92fdbb0e6228e10ed1ec62c9b3346fdf4fe91f762ab98ea4ce6a2ceaedc09149200a43d4f90fcb317a4d6cbd72d3c8ca0a0f6a8
 WHIRLPOOL 
b76e92bff898f41aea66d8f55d5e80da0055572c7605a09745870289396e6ade7d1864a1916dc41322039c4873acc2704235adb82a1101737890b53242edb060

diff --git a/dev-ruby/minitest/minitest-5.8.2.ebuild 
b/dev-ruby/minitest/minitest-5.8.2.ebuild
new file mode 100644
index 000..1e82b81
--- /dev/null
+++ b/dev-ruby/minitest/minitest-5.8.2.ebuild
@@ -0,0 +1,25 @@
+# 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_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="minitest/unit is a small and fast replacement for ruby's huge and 
slow test/unit"
+HOMEPAGE="https://github.com/seattlerb/minitest;
+
+LICENSE="MIT"
+SLOT="5"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc test"
+
+each_ruby_test() {
+   ${RUBY} -Ilib:test:. -e "Dir['**/test_*.rb'].each{|f| require f}" || 
die "Tests failed"
+}



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

2015-10-26 Thread Manuel Rüger
commit: d825887720d4ff6a92475eb7644e32772e0ed378
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 01:14:42 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 01:14:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8258877

dev-ruby/mixlib-shellout: Version bump

Package-Manager: portage-2.2.23

 dev-ruby/mixlib-shellout/Manifest  |  1 +
 .../mixlib-shellout/mixlib-shellout-2.2.3.ebuild   | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/dev-ruby/mixlib-shellout/Manifest 
b/dev-ruby/mixlib-shellout/Manifest
index de560e3..4e5d531 100644
--- a/dev-ruby/mixlib-shellout/Manifest
+++ b/dev-ruby/mixlib-shellout/Manifest
@@ -1,2 +1,3 @@
 DIST mixlib-shellout-2.2.1.tar.gz 33307 SHA256 
68e70a5ba15eca9ebf737f1ed21b3b90744b83f2856bf69e93f7b66348f67d03 SHA512 
c9f9724b0929e07ba56a90508b167d6a6971aa7dabcecd320b8abd60a80dd0542e86b0570f3a9db5a76057ad8c4e1f9ec6ff38460a76ccd745a4996f1d69e297
 WHIRLPOOL 
29ad017b470312651e4c7c4a9f782184107c5e1527d8babf6de9c8a5040c094bb713dbd28bacdeeb5757ab37cb7a55025d137e022aeea9c8a81a9f4f28928b8b
 DIST mixlib-shellout-2.2.2.tar.gz 33495 SHA256 
ecd1b4612465ab650b568c85af05c26cdea874d1bf00586b2c76830dd040bae6 SHA512 
8ae64988347786c11c208f648a6b65d3e4b70822175ead4081e0073287baa1a61956193e82d48e7fe03f03c58c5b8678716579d70abb576f5531d32fba50e4c5
 WHIRLPOOL 
f818fea924d616e2a64eb718dd3329e15bb304736985ce8eaa0a223c36db20a18a2e464dbe983292c6cebe1b3c4ddeb8683155c89d95985f79e91e645f4b8a60
+DIST mixlib-shellout-2.2.3.tar.gz 34093 SHA256 
8a2929ebf8b87f7a1d9c117d2fd6c45cba1db7da7a79cf38edbf240207393fa6 SHA512 
133b7dce0ae944be365f40a7a6277a5bfd735e6b72a8828c44c532d297a23a0244c2eb80407ba935079a2b1b23e496b253fd0ab863af6f3987e630184162729f
 WHIRLPOOL 
dce7f5a1787c1c5a50c95362617c78f761c2971dec346ec3de471fa08053949b3b02dec7495ff82270077a6eeaa5b39649ba92df1df7df41597ade2ec8999761

diff --git a/dev-ruby/mixlib-shellout/mixlib-shellout-2.2.3.ebuild 
b/dev-ruby/mixlib-shellout/mixlib-shellout-2.2.3.ebuild
new file mode 100644
index 000..6d1fc6f
--- /dev/null
+++ b/dev-ruby/mixlib-shellout/mixlib-shellout-2.2.3.ebuild
@@ -0,0 +1,27 @@
+# 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_DOC=""
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRA_DOC="CHANGELOG.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Run external commands on Unix or Windows"
+HOMEPAGE="https://github.com/opscode/mixlib-shellout;
+SRC_URI="https://github.com/opscode/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+each_ruby_prepare() {
+   # Make sure we actually use the right interpreter for testing
+   sed -i -e "/ruby_eval/ s:ruby :${RUBY} :" spec/mixlib/shellout_spec.rb 
|| die
+}



[gentoo-commits] dev/mrueg:master commit in: app-admin/passwordsafe/

2015-10-26 Thread Manuel Rüger
commit: b139b20520f9a194501c4894f5d9dd9429a08b70
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 00:08:23 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 00:08:23 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=b139b205

app-admin/passwordsafe: Initial version.

Original ebuild by John R. Graham, Simone Scanzoni and Hendrik v. Raven.

Gentoo-Bug: #453458

Package-Manager: portage-2.2.23

 app-admin/passwordsafe/Manifest|  1 +
 app-admin/passwordsafe/metadata.xml| 12 +++
 .../passwordsafe/passwordsafe-0.97_beta.ebuild | 98 ++
 3 files changed, 111 insertions(+)

diff --git a/app-admin/passwordsafe/Manifest b/app-admin/passwordsafe/Manifest
new file mode 100644
index 000..8d1437c
--- /dev/null
+++ b/app-admin/passwordsafe/Manifest
@@ -0,0 +1 @@
+DIST passwordsafe-0.97_beta.tar.gz 13732972 SHA256 
c19a7fff668d0459f304d83e6ddb75f52760d10ad2d015e5bb3446a920d88bd9 SHA512 
f507fb3a3b3646c707be589a89442e58da47cc11f3675b6cedb6f57d40178ff5eb3ec9ba6443be6aec708ebbfbfb412fa7b641436c0b42d2e42b4238b3fbcae0
 WHIRLPOOL 
dd344efca6625cc5cb8c0df1396ccfa1610c77c6636d459ad50088b749badba48fd67d688ca150a6f8e102542a01939a6514acd75ebaa3cec987bb2bd178bcf3

diff --git a/app-admin/passwordsafe/metadata.xml 
b/app-admin/passwordsafe/metadata.xml
new file mode 100644
index 000..a0ac2db
--- /dev/null
+++ b/app-admin/passwordsafe/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+   
+   Avoid collision with app-misc/pwsafe
+   Enable support for Yubikey
+   
+

diff --git a/app-admin/passwordsafe/passwordsafe-0.97_beta.ebuild 
b/app-admin/passwordsafe/passwordsafe-0.97_beta.ebuild
new file mode 100644
index 000..e6f730d
--- /dev/null
+++ b/app-admin/passwordsafe/passwordsafe-0.97_beta.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+WX_GTK_VER="3.0"
+
+inherit eutils flag-o-matic wxwidgets
+
+MY_PV="${PV/_beta/BETA}"
+DESCRIPTION="Password manager with wxGTK based frontend"
+HOMEPAGE="http://pwsafe.org/ https://github.com/pwsafe/pwsafe/;
+SRC_URI="https://github.com/pwsafe/pwsafe/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="minimal yubikey"
+
+RDEPEND="dev-libs/xerces-c
+   sys-apps/util-linux
+   sys-devel/gettext
+   x11-libs/libXt
+   x11-libs/libXtst
+   x11-libs/wxGTK:${WX_GTK_VER}[X]
+   !minimal? ( !!app-misc/pwsafe )
+   yubikey? ( sys-auth/ykpers )"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/pwsafe-${MY_PV}
+
+pkg_pretend() {
+   einfo "Checking for -std=c++11 support in compiler"
+   test-flags-CXX -std=c++11 > /dev/null || die
+}
+
+src_prepare() {
+   # remove hard coded compilers and compiler flags
+   sed -e '/^export CXXFLAGS/d' -i Makefile.linux || die
+   sed -i src/core/Makefile src/os/linux/Makefile 
src/ui/wxWidgets/Makefile \
+   -e 's/-O[0-3]\?//g' -e 's/-g(gdb)\?//g' \
+   -e '/^CC=/d' -e '/^CXX=/d' || die
+
+   # generator for the version.h only adds \r breaking the c file
+   cp src/ui/wxWidgets/version.in src/ui/wxWidgets/version.h || die
+
+   # binary name pwsafe is in use by app-misc/pwsafe, we use passwordsafe
+   # instead. Perform required changes in linking files
+   sed -i install/desktop/pwsafe.desktop -e "s/pwsafe/${PN}/g" || die
+   sed -i docs/pwsafe.1 \
+   -e 's/PWSAFE/PASSWORDSAFE/' \
+   -e "s/^.B pwsafe/.B ${PN}/" || die
+}
+
+src_configure() {
+   if ! use yubikey ; then
+   export NO_YUBI=1
+   fi
+
+   need-wxwidgets unicode
+
+   strip-flags
+   append-cxxflags -std=c++11
+}
+
+src_compile() {
+   emake unicoderelease help I18N
+}
+
+src_install() {
+   if use minimal; then
+   newbin src/ui/wxWidgets/GCCUnicodeRelease/pwsafe ${PN}
+   else
+   dobin src/ui/wxWidgets/GCCUnicodeRelease/pwsafe
+   dosym pwsafe /usr/bin/${PN}
+   fi
+
+   newman docs/pwsafe.1 ${PN}.1
+
+   dodoc README.txt docs/{ReleaseNotes.txt,ChangeLog.txt}
+
+   insinto /usr/share/pwsafe/xml
+   doins xml/*
+
+   insinto /usr/share/locale
+   doins -r src/ui/wxWidgets/I18N/mos/*
+
+   # The upstream Makefile builds this .zip file from html source material 
for
+   # use by the package's internal help system. Must prevent
+   # Portage from applying additional compression.
+   docompress -x /usr/share/doc/${PN}/help
+   insinto /usr/share/doc/${PN}/help
+   doins help/*.zip
+
+   newicon install/graphics/pwsafe.png ${PN}.png
+   newmenu install/desktop/pwsafe.desktop ${PN}.desktop
+}



[gentoo-commits] dev/mrueg:master commit in: dev-python/pafy/

2015-10-26 Thread Manuel Rüger
commit: 2cc98db6a96a01ccef76990d21d739fba6bc524e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 00:17:48 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 00:17:48 2015 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=2cc98db6

dev-python/pafy: Version bump. Remove old

Package-Manager: portage-2.2.23

 dev-python/pafy/Manifest   | 2 +-
 dev-python/pafy/{pafy-0.3.74.ebuild => pafy-0.3.76.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pafy/Manifest b/dev-python/pafy/Manifest
index ef2a8de..98e2555 100644
--- a/dev-python/pafy/Manifest
+++ b/dev-python/pafy/Manifest
@@ -1 +1 @@
-DIST pafy-0.3.74.tar.gz 57369 SHA256 
affaeb941025beebf1b0dc871b6839ecc62080853be2ed6a28c64bb3148e3d17 SHA512 
4aa2b0e1710048d43b3293d096f6696fff7b3500f9c03003038381415a99669dbfb9957c76be7550cfe166276d88bd8547fff771aa928239041befeae87efcc9
 WHIRLPOOL 
800b16ab8d04d65bcc44e6f5ea778bcca345bd1e0aec1baa886ab370a062677387678b982caae5bb9f37721faf73fb877631557b6db9db77b90ad0bd163a7784
+DIST pafy-0.3.76.tar.gz 55623 SHA256 
cadd766488116acb50fbfa8a0d52ef4d7288b710f8735c908d8314248fb7492d SHA512 
991b3c1e4f96284e3b02dd7752aa1c45b34c1c565fbfb2d1126c8186c7c6dba102e790ef0e4c91efd2cd30e3e20305db6dd5c6242e9e3b131e8d717f53501dfb
 WHIRLPOOL 
6d2e0235640447e0469be1bb4d882fd4f1e3b2a8a6fa54227e877edc28add48d7cc17955df9f24d686fb32d83baca3faba40f57f081589d72593d3d242430e75

diff --git a/dev-python/pafy/pafy-0.3.74.ebuild 
b/dev-python/pafy/pafy-0.3.76.ebuild
similarity index 100%
rename from dev-python/pafy/pafy-0.3.74.ebuild
rename to dev-python/pafy/pafy-0.3.76.ebuild



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/gmapcatcher/

2015-10-26 Thread Manuel Rüger
commit: b6dfe13759021fb801a2a19568f313574aedf73f
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Oct 26 22:12:54 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Oct 26 23:49:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6dfe137

sci-geosciences/gmapcatcher: Remove myself as proxy maintainer

Package-Manager: portage-2.2.23

 sci-geosciences/gmapcatcher/metadata.xml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/sci-geosciences/gmapcatcher/metadata.xml 
b/sci-geosciences/gmapcatcher/metadata.xml
index 1168f85..6ae1418 100644
--- a/sci-geosciences/gmapcatcher/metadata.xml
+++ b/sci-geosciences/gmapcatcher/metadata.xml
@@ -7,10 +7,5 @@
Denis M.
Maintainer, assign bugs to him

-   
-   mr...@gentoo.org
-   Manuel Rüger
-   Proxy-Maintainer, CC him on bugs
-   
 
 



[gentoo-commits] proj/linux-patches: New tag: 4.1-15

2015-10-26 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Oct 26 23:56:24 2015 +

New tag: 4.1-15




[gentoo-commits] gentoo commit in src/patchsets/gcc/5.2.0/pie: README.Changelog README.history

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:57

  Modified: README.Changelog README.history
  Log:
  push out new release of patchsets

Revision  ChangesPath
1.3  src/patchsets/gcc/5.2.0/pie/README.Changelog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/pie/README.Changelog?rev=1.3=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/pie/README.Changelog?rev=1.3=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/pie/README.Changelog?r1=1.2=1.3

Index: README.Changelog
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/5.2.0/pie/README.Changelog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- README.Changelog30 Aug 2015 05:28:48 -  1.2
+++ README.Changelog27 Oct 2015 04:38:57 -  1.3
@@ -1,3 +1,7 @@
+0.6.5  Mike Frysinger  
+
+   * gcc/doc/invoke.texi: Clean up typos/grammar.
+
 0.6.4  Mike Frysinger  
 
#518598



1.4  src/patchsets/gcc/5.2.0/pie/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/pie/README.history?rev=1.4=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/pie/README.history?rev=1.4=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/pie/README.history?r1=1.3=1.4

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/5.2.0/pie/README.history,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- README.history  19 Oct 2015 17:35:54 -  1.3
+++ README.history  27 Oct 2015 04:38:57 -  1.4
@@ -1,4 +1,4 @@
-0.6.5  [pending]
+0.6.5  27 Oct 2015
U 24_all_gcc49_invoke.texi.patch
 0.6.4  29 Aug 2015
U 35_all_gcc51_config_arm.patch






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

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:57

  Modified: README.history
  Log:
  push out new release of patchsets

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

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

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/5.2.0/gentoo/README.history,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- README.history  27 Oct 2015 04:38:33 -  1.5
+++ README.history  27 Oct 2015 04:38:57 -  1.6
@@ -1,4 +1,4 @@
-1.3[pending]
+1.327 Oct 2015
U 09_all_default-ssp.patch
+ 34_all_libjava-classpath-locale-sort.patch
 






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

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:57

  Modified: README.history
  Log:
  push out new release of patchsets

Revision  ChangesPath
1.7  src/patchsets/gcc/4.9.3/gentoo/README.history

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

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.9.3/gentoo/README.history,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- README.history  27 Oct 2015 04:38:33 -  1.6
+++ README.history  27 Oct 2015 04:38:57 -  1.7
@@ -1,4 +1,4 @@
-1.4[pending]
+1.427 Oct 2015
U 09_all_default-ssp.patch
+ 34_all_libjava-classpath-locale-sort.patch
 






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

2015-10-26 Thread Mike Frysinger
commit: 02d0b3a067b66c6f9f62997f991076f7c858c6c0
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Oct 27 04:40:39 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Oct 27 04:41:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02d0b3a0

sys-devel/gcc: add upstream fix for checking JNI headers in some locales #563710

 sys-devel/gcc/Manifest | 8 
 sys-devel/gcc/gcc-4.9.3.ebuild | 4 ++--
 sys-devel/gcc/gcc-5.2.0.ebuild | 4 ++--
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index ee59deb..658465e 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -73,16 +73,16 @@ DIST gcc-4.9.2-patches-1.6.tar.bz2 25006 SHA256 
0c7219d375be35b16d0bc5e323a1e40b
 DIST gcc-4.9.2-piepatches-v0.6.2.tar.bz2 14278 SHA256 
f8876b172c2b4c5936b2cb18d3f092bfda8891bcdedcb569b63272a8530d81d0 SHA512 
3f2d48743abba258ee6e298fc085f38d54c7b4cf4d431fe2efb83f718bdac3be916e67a3273aff1573db076decefbf4de3c4f706e102e6aafbce2371256048d8
 WHIRLPOOL 
76bbecad6d23793139040446721a5fb4711a9e272cf12545c51dd85c2d900e09e34dc0c260b80ad190a8072b475d779f5c6dd6b7891124bc4963b366f40989d3
 DIST gcc-4.9.2-uclibc-patches-1.0.tar.bz2 2540 SHA256 
3ca63cba5edb01367352fcd558890a838630deb4c30f82f4c7e8074ad75e57fc SHA512 
69f6f80e23efee0b937fca0f2056e17b4fe643817d2394bbfd16cbb453d74c76a0bb8727815f689a795897d9cd5e06ecc74d3d9ad45175fe837ad008eee09706
 WHIRLPOOL 
3946513e83960fe891267e103e434cae0616cd45b5e7eaff5f4f671741c1445941cf80b7497231cf50f137941c01859dbbac0a95745fb7ae663a3ee512bd7162
 DIST gcc-4.9.2.tar.bz2 89939747 SHA256 
2020c98295856aa13fda0f2f3a4794490757fc24bcca918d52cc8b4917b972dd SHA512 
e96cba06d572dbe7f382a2b00fd9297dcf9f9219d46a9ad0bd904dc36d5e7db3335e422640b79a27fed6fde91b0731732b94a0e2fbcd47344d6779f8ba1f4f9c
 WHIRLPOOL 
c4afdd0ec98e6f903044f1d3061fd96cf1e9bcbe2f90c388f5bc9ff8b2493b94367e84fdff7c2075ba37e2f950ecf2dba7c11786c653c2c7e86a5e8ff7d98e85
-DIST gcc-4.9.3-patches-1.3.tar.bz2 23643 SHA256 
a686a3097b6075fd40e25cde70ad881f22758565112395f03890c2f455f6b998 SHA512 
d75960e64a52e0cea60eec863b7caaa434a07c25d410f78d9580f9890406aff5a648a61e718b2b812b4c5fc798ccbb82e9a16f05bc991af69f5a311795100ab9
 WHIRLPOOL 
f98dbd2b587d292e0589b7dfe3a9d9ac5a2eb9b964bb7d1da75b5d958b11d5155b7604b6c1006def09c66045a8fc23379496bd0fd7909629d0e004ecf60aed66
-DIST gcc-4.9.3-piepatches-v0.6.3.tar.bz2 14388 SHA256 
268fd94cf905c9a9b95a259378c54a50763d1e13cc833cb0fc84ba33f0da78c4 SHA512 
7e08934c729d06b578c420dcc845cb5fe274cb3f1f6eea8ba83a5031f0ba5f2c811e6b8fe5c2a72682030a71bf4134fd0e0d151452145899a7ae0318ebaf058a
 WHIRLPOOL 
8f8d20c70061cd446d7c39d0f638c15ffaa64bc1cabc0f14c3f3632c76e432a3c4794cdb33799cacee754530876543902f53bca4465fca7d51c73f07eded9fe3
+DIST gcc-4.9.3-patches-1.4.tar.bz2 24588 SHA256 
f18a7b586feed90bddb5b74b06da30ba7fdeb46a6f653e041d7264045fabc62b SHA512 
79abba42fef65bf2e8173a2fbdf5b14a33cdbcae3fa3fb59ea8abc7efb3a8d3962e53f6a460ad07936eface3e587adb0d5e60f6cdfcc7b69c8586db83db4173e
 WHIRLPOOL 
7a808548f30f9b7f9bd4a3bbaed546ea478ca2145d01892a44cb068d961b569416730a89119fa5cfd1f744c2896572b0c45044334f27b5f2b5cec139f32196ac
+DIST gcc-4.9.3-piepatches-v0.6.4.tar.bz2 14431 SHA256 
012c3025ac2e14781ff25028c0b1d42a07f510b125006116e268bcd90fb6c9db SHA512 
3bbeacbca5e8ef6ab0b1d58add42f5e8e82328afe024666f9585b5398c8722e7d012abfd2009a98ad47b1f1b26afaf421402a9e7719a5662516b32dcbe5608be
 WHIRLPOOL 
9e68d981aed42ece2f481f62efc078ad370ac780e96ba39c4273c8675d552b845cd52c588bd41839868f430b0a532789858914f4ef32a1bc187e2983264ebfd3
 DIST gcc-4.9.3-uclibc-patches-1.0.tar.bz2 2515 SHA256 
dd19904d4ab005ef142056228f326e75b3d4d79b8056189a505129b5940a575c SHA512 
825092620a3c554ef06219fd1152c3677f1456315563b9e65282a73096e75600389e93298ed76cad41ce3eeecc6a7009ca722585b93c04095bd2d0a06c4404e6
 WHIRLPOOL 
0c184a5cc74f80a61f354ee85bc5a0f5b44d93bc9fa2e1892fbfe899958cfa5263b8b72cc4f905bc69bd1cc90cf870a6056c4003ec493b815646a72a0fe2e44e
 DIST gcc-4.9.3.tar.bz2 90006707 SHA256 
2332b2a5a321b57508b9031354a8503af6fdfb868b8c1748d33028d100a8b67e SHA512 
9ac57377a6975fc7adac704ec81355262b9f537def6955576753b87715470a20ee6a2a3144a79cc8fcba3443f7b44c7337d79d704b522d053f54f79aa6b442df
 WHIRLPOOL 
085e4cc1825b031652cbe9e098671f761acfeca64c6cc9b8ad2a8961c13fcac9e02b4538b44dc38181a355266f2c55c99ce5a1bff3f2860b870285cf3f0e84a5
 DIST gcc-5.1.0-patches-1.2.tar.bz2 23076 SHA256 
151ac719599fd7b8bd9663e2f105fdd4a082411729c81fd38efb0f9724bf6b7d SHA512 
eb509e25c0f4fe2d1b3d8dd191efbbd9336c899d1615d057bf68390ecbbf3e208e9ef8a89c0d225961fa9adff9577c6bfe84362b2b871fa59636a0c9d0799d44
 WHIRLPOOL 
1882b9b4de8ec49a38e0d3222fdae75a5c73c1e846e7fe88b2cea75a64359f6787881ee7126a338d604673a0c2214384600d2746f723017fe4c87d0421909582
 DIST gcc-5.1.0-piepatches-v0.6.4.tar.bz2 14504 SHA256 
9006fedb3b6c7eb92cd7eb7e65ac6d7d15b390086b75c53ef663cb647bc50689 SHA512 

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

2015-10-26 Thread Hans de Graaff
commit: e37e8721eac17590bb61338d40309e5c11345585
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct 27 05:21:00 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 27 05:21:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e37e8721

dev-ruby/kramdown: cleanup

Package-Manager: portage-2.2.20.1

 dev-ruby/kramdown/Manifest  |  2 --
 dev-ruby/kramdown/kramdown-1.4.1.ebuild | 46 -
 dev-ruby/kramdown/kramdown-1.6.0.ebuild | 51 -
 3 files changed, 99 deletions(-)

diff --git a/dev-ruby/kramdown/Manifest b/dev-ruby/kramdown/Manifest
index fb67e18..ca39b00 100644
--- a/dev-ruby/kramdown/Manifest
+++ b/dev-ruby/kramdown/Manifest
@@ -1,4 +1,2 @@
-DIST kramdown-1.4.1.gem 226304 SHA256 
6e8bcdbc1a4e3aab40253e3d573133fb66fe958a6cea21df4f780f83fdaf1797 SHA512 
ea1f32f11a377860851390ce889819ab6fd9aba2b7127a7718eb4f820e2b4acdeee353e303dab42618508727197b2e219dc74b05a0ae2bd4382bd41bba5cbcb3
 WHIRLPOOL 
e57001f1f0d302e4fe9006f9c9a3df6c28d5df61d083208c4d342f1adbcf886fb6ac66adedcdc9aa33c2f6034de9d6d1451c1e7817e1d5f962ab948f2737a988
 DIST kramdown-1.4.2.gem 226816 SHA256 
ae9b9456c69fa06f9c3058841e09b85e07cda875eb36c3202ea46baf8e123ea8 SHA512 
31e7a30bcc453968ec6db0c1f0e5f8cea222dde8b8f6a26da72e0cf1b049c9f4c4e8384685a5e241e41fda526cd0f5fba4ac7debd0fb0d3eb6539dd9afc1dd27
 WHIRLPOOL 
aa0166861584c2e3115923db1de9203581c02f4cab42866a88947a3e52fb32eee4ab2cdcc2fd623669a4c8a2e1972a340d9100a04fbc595bb40bde46e553223f
-DIST kramdown-1.6.0.gem 235520 SHA256 
8bdb6aed0244d0fe77b2f5b49c44da0c8d597e7909b9f59052f7846bd1b85170 SHA512 
f94aefab85fd95a5bc0e110900757408cb832f27f53c6c110295451d10143f879e64ce1c3d08b627645f5cf9b6800fa3b03d393d9733202a893633048849d349
 WHIRLPOOL 
a213cfb292653e0b3bef42283c85b19dcadc88d89e8c17e77607781dcda979bb6ea0ce39ebf91a0a7b2afef63f47eb688791641e1f301fe542011c5114cc590f
 DIST kramdown-1.8.0.gem 238080 SHA256 
54287608f4399006ae5549f009053d2029ad75bf462dc70203c116580ac0d867 SHA512 
8dace5b6ad764654c4375a4c2fad171e88448281936ced8d4efc5956e291e7c31b0ef295845241cb3e36976dc4a1e78886d2dff9fc172845622ab74a3b062230
 WHIRLPOOL 
a58df1a8b19b274baea9feb7658b17d524c3abf983c9f56c80c69a7c180e1c48f22b106c2685acb950504531cf10dd388eaf0fc3699eeb3d8aac82cb3521adb7

diff --git a/dev-ruby/kramdown/kramdown-1.4.1.ebuild 
b/dev-ruby/kramdown/kramdown-1.4.1.ebuild
deleted file mode 100644
index 88b5931..000
--- a/dev-ruby/kramdown/kramdown-1.4.1.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
-USE_RUBY="ruby19 ruby20"
-
-RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS CONTRIBUTERS"
-
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Yet-another-markdown-parser but fast, pure Ruby, using a strict 
syntax definition"
-HOMEPAGE="http://kramdown.rubyforge.org/;
-
-LICENSE="MIT"
-
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
-IUSE="latex"
-
-LATEX_DEPS="latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra 
)"
-RDEPEND+=" ${LATEX_DEPS}"
-DEPEND+=" test? ( ${LATEX_DEPS} app-text/htmltidy )"
-
-ruby_add_bdepend "doc? ( dev-ruby/rdoc )
-   test? ( >=dev-ruby/coderay-1.0.0
-   >=dev-ruby/prawn-1.2.1
-   dev-ruby/prawn-table
-   >=dev-ruby/stringex-1.5.1 )"
-
-all_ruby_prepare() {
-   if ! use latex; then
-   # Remove latex tests. They will fail gracefully when latex isn't
-   # present at all, but not when components are missing (most
-   # notable ucs.sty).
-   sed -i -e '/latex -v/,/^  end/ s:^:#:' test/test_files.rb || die
-   fi
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   doman man/man1/kramdown.1
-}

diff --git a/dev-ruby/kramdown/kramdown-1.6.0.ebuild 
b/dev-ruby/kramdown/kramdown-1.6.0.ebuild
deleted file mode 100644
index 3546ae7..000
--- a/dev-ruby/kramdown/kramdown-1.6.0.ebuild
+++ /dev/null
@@ -1,51 +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_EXTRADOC="README.md AUTHORS CONTRIBUTERS"
-
-RUBY_FAKEGEM_EXTRAINSTALL="data"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Yet-another-markdown-parser but fast, pure Ruby, using a strict 
syntax definition"
-HOMEPAGE="http://kramdown.rubyforge.org/;
-
-LICENSE="MIT"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="latex"
-
-LATEX_DEPS="latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra 
)"
-RDEPEND+=" ${LATEX_DEPS}"
-DEPEND+=" test? ( ${LATEX_DEPS} app-text/htmltidy )"
-
-ruby_add_rdepend "dev-ruby/prawn:2
-   dev-ruby/prawn-table
-   >=dev-ruby/rouge-1.8
-   >=dev-ruby/itextomml-1.5
-   >=dev-ruby/coderay-1.0.0
-   >=dev-ruby/ritex-1.0
-   >=dev-ruby/stringex-1.5.1"
-
-ruby_add_bdepend "doc? ( dev-ruby/rdoc )
-   

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

2015-10-26 Thread Hans de Graaff
commit: 8bbee331008b4cc03c527d64dc39a234e9d21e4c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct 27 05:23:57 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 27 05:23:57 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bbee331

dev-ruby/hashie: cleanup

Package-Manager: portage-2.2.20.1

 dev-ruby/hashie/Manifest|  2 --
 dev-ruby/hashie/hashie-3.3.2.ebuild | 31 ---
 dev-ruby/hashie/hashie-3.4.1.ebuild | 31 ---
 3 files changed, 64 deletions(-)

diff --git a/dev-ruby/hashie/Manifest b/dev-ruby/hashie/Manifest
index ea150c2..f960fd5 100644
--- a/dev-ruby/hashie/Manifest
+++ b/dev-ruby/hashie/Manifest
@@ -1,4 +1,2 @@
 DIST hashie-2.1.2.gem 34816 SHA256 
a9e1e4928bf4f5a5683ea9c7ef29e50fb93f72542f9a9550e205fe33a6568923 SHA512 
6f72998710da58a2584939b4e74a114ae54168902020dc16ec5ea0422a91316b84aa6835fffb36a2985634f24ff5b0d01bcdb50134a414a269a4881ebcd728ac
 WHIRLPOOL 
6b67c04ef9dc33a9ffdf25d14440bdd3ce621f1bde9b4eb806de63fa39edc76627f80d10435efc708fc48d24f1450046f33aceb20d76238a0cf8b67ddcf72e78
-DIST hashie-3.3.2.gem 48640 SHA256 
99fad6bb323e965f72c82f08f86162858b97d9b1a4550cf49c180f211e3291a0 SHA512 
22e6a15d70c8dfaebb99564e874640cdce60d3c127841054c38ff2287926f93e5c2d3cade98fb766e69722d442e54276af7dd95575d1bc2800d978f6763149c5
 WHIRLPOOL 
07fe013d529a13124e8fe9228a728507d0e74fb493677b4ec624a85829942a7a5f0e0d9248080dc6681f619fa5be45cd363218970e3572b83e65630ffd97d7a8
-DIST hashie-3.4.1.gem 54784 SHA256 
76dc47a37116e8e6be30e37389776cecd3809efa5e4e207f2d02de0f3d9a4f34 SHA512 
9a0e68b0a260cb4387d21284164c0b67fb332860338f773c4368ab4d40aaaececcaa84ea6d92ff391f0914ad7a7aaf3ce54ffbddd1861606035b4021d9a2c197
 WHIRLPOOL 
c81ae5c69f749180838cb1310a99bbea961005ab03d343831f039ec1e855886858c265c24b60946f016c04da5253b9d563298643c9db778be3a01d69cc9950ee
 DIST hashie-3.4.2.gem 56320 SHA256 
b68373c5f6589c5222638433918bc3e256acbaead7f883e5ec18420f507b17ca SHA512 
9081d91ad014914f59ec4e18b92c27b6f316f03f476c94d3b469bda54f201d339d553ef142018f0e605d3571418af784d57e25211a6c141cd8eb5a56497c28d6
 WHIRLPOOL 
cc76a268a7b8abc618b236a1958db783a5dc9e14c92b719782db71dd1a518e436b4e801f6854e5c8958298d4212814bae23893c1fe2a42561de28ba993847b2f

diff --git a/dev-ruby/hashie/hashie-3.3.2.ebuild 
b/dev-ruby/hashie/hashie-3.3.2.ebuild
deleted file mode 100644
index 8fc819e..000
--- a/dev-ruby/hashie/hashie-3.3.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"
-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
-}

diff --git a/dev-ruby/hashie/hashie-3.4.1.ebuild 
b/dev-ruby/hashie/hashie-3.4.1.ebuild
deleted file mode 100644
index 8fc819e..000
--- a/dev-ruby/hashie/hashie-3.4.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="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"
-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/simplecov/

2015-10-26 Thread Hans de Graaff
commit: 303c148240c46162c89de41a9dca1c6f5eabeb77
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct 27 05:47:16 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 27 05:47:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=303c1482

dev-ruby/simplecov: add ruby22

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/simplecov/simplecov-0.9.1.ebuild 
b/dev-ruby/simplecov/simplecov-0.9.1.ebuild
index 99fa1c7..5279fb7 100644
--- a/dev-ruby/simplecov/simplecov-0.9.1.ebuild
+++ b/dev-ruby/simplecov/simplecov-0.9.1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
 



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

2015-10-26 Thread Hans de Graaff
commit: 7030ddd5452d6f1f552a537c989aaa29a610b479
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct 27 05:15:52 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 27 05:15:52 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7030ddd5

dev-ruby/ruby_parser: add 3.7.2

Package-Manager: portage-2.2.20.1

 dev-ruby/ruby_parser/Manifest |  1 +
 dev-ruby/ruby_parser/ruby_parser-3.7.2.ebuild | 37 +++
 2 files changed, 38 insertions(+)

diff --git a/dev-ruby/ruby_parser/Manifest b/dev-ruby/ruby_parser/Manifest
index 4e160ca..954e56c 100644
--- a/dev-ruby/ruby_parser/Manifest
+++ b/dev-ruby/ruby_parser/Manifest
@@ -1,3 +1,4 @@
 DIST ruby_parser-3.6.6.gem 250880 SHA256 
d3a3ff8e472f85d769e848caa94938e5c4a7b5d9df75384056431bade8bd2cf5 SHA512 
c28fea8970c6449a59c1fed1cb2fec3cd167d45c622a7d7de85cf22f24238cd91e3fae4c20ff0de4bd0f4c3afdfd1979e16ee73f60104bcc39469d13650be02a
 WHIRLPOOL 
fdf8abbb6eb1e2c421704effd574b5d7baa21059267fad53b1a4f9e80f46c76afe65065e7b5753769c06159a6bd8c84453b9d8d3989f91492fefb15a7b5a6a64
 DIST ruby_parser-3.7.0.gem 310784 SHA256 
95d2036b753f399706e3478c1033a81520b27ccf8702e8de076cdfcaff5f1de4 SHA512 
bce90b9a266dea59c2c52b80d1524fa6aaf74a6259e7aefe6697081756b8fd6e084ec31042a4b8ca6cf61fbea027fe4255f18d0c3047643a18b03a74b73457d7
 WHIRLPOOL 
2de7e23ae380e7a2087859cce4d6b97b8399487fc5f504223975f631b8088356a0b3b628d38d6bbecde29a56063cca1c97918a0d7711ddd1482959ffaa0baa35
 DIST ruby_parser-3.7.1.gem 311296 SHA256 
7cba241552f03f2db4911013fa40bcd925425f713aa712ebdf34431f1d15ab5a SHA512 
34e097c97cf5bd606874a0a1aecb4a5eb4a10f97fd088c21a95b1aee52d9c758a1c7d53601bc711fb5b3d57bf1707e157411eb96d15cccd516c6f5024eca9855
 WHIRLPOOL 
26178317838ee2bbdd928ea5a97a3c3aaef165b49623395dcff58ac819633b9fc2529a754e821e4e2e5257b34f213f92700f691b0506371e9dc8ab3b7b187633
+DIST ruby_parser-3.7.2.gem 311296 SHA256 
7f639194041e51680b530480990c0ca3632507e3740a8ef4516592550e3037e6 SHA512 
52c026ebdcc687059818d42bb0f4c8e960209deb19f86bd3204c6b0bd3e06ffa01e9d628587f88c866756a81914d5b3cb7df2947433eb39d214a4a144c168442
 WHIRLPOOL 
63b3189f5ac5153aee8ce7ff1c2ae2533199b59db016a1159e80ec31b23b87e08e97a6bff9112533216f2b07d28ab16e52f462921a0779d45d0cb1c79b1e613f

diff --git a/dev-ruby/ruby_parser/ruby_parser-3.7.2.ebuild 
b/dev-ruby/ruby_parser/ruby_parser-3.7.2.ebuild
new file mode 100644
index 000..b6f539a
--- /dev/null
+++ b/dev-ruby/ruby_parser/ruby_parser-3.7.2.ebuild
@@ -0,0 +1,37 @@
+# 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="docs"
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="README.txt History.txt"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A ruby parser written in pure ruby"
+HOMEPAGE="https://github.com/seattlerb/ruby_parser;
+
+LICENSE="MIT"
+SLOT="3"
+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=""
+
+ruby_add_rdepend ">=dev-ruby/sexp_processor-4.6.0:4
+   !=dev-ruby/hoe-2.9.1 )"
+ruby_add_bdepend "test? ( dev-ruby/racc >=dev-ruby/minitest-4.3 )"
+
+DEPEND+=" test? ( dev-util/unifdef )"
+
+all_ruby_prepare() {
+   # Remove reference to perforce method that is not in a released
+   # version of hoe-seattlerb.
+   #sed -i -e '/perforce/d' Rakefile || die
+   sed -i -e '/license/d' Rakefile || die
+   sed -i -e '/Hoe.plugin :isolate/ s:^:#:' Rakefile || die
+}



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

2015-10-26 Thread Jeroen Roovers
commit: 36b6f04e3677f51e0d1ccca84b1a100f38e9ef28
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Oct 27 03:45:26 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Oct 27 03:46:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36b6f04e

net-analyzer/nmap: Build liblua first (bug #564072 by Macintosh).

Package-Manager: portage-2.2.23

 net-analyzer/nmap/nmap-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-analyzer/nmap/nmap-.ebuild 
b/net-analyzer/nmap/nmap-.ebuild
index f72ca71..694b1eb 100644
--- a/net-analyzer/nmap/nmap-.ebuild
+++ b/net-analyzer/nmap/nmap-.ebuild
@@ -120,6 +120,7 @@ src_configure() {
 
 src_compile() {
local dep deps="build-dnet build-nbase build-nsock build-netutil"
+   use system-lua || deps="build-lua ${deps}"
 
for dep in ${deps}; do
emake makefile.dep ${dep}



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

2015-10-26 Thread Jeroen Roovers
commit: 2b4b4e611bfc437cf20198817f68a16458ec68e6
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Oct 27 04:31:42 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Oct 27 04:31:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4b4e61

dev-python/pytz: Stable for HPPA PPC64 (bug #564164).

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

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

diff --git a/dev-python/pytz/pytz-2015.6.ebuild 
b/dev-python/pytz/pytz-2015.6.ebuild
index 2f135a1..a373e8f 100644
--- a/dev-python/pytz/pytz-2015.6.ebuild
+++ b/dev-python/pytz/pytz-2015.6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE=""
 
 DEPEND="



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

2015-10-26 Thread Manuel Rüger
commit: e79ba7ee50ec7cac8333ad86878418ad1b48f52a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 02:11:54 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 02:11:54 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e79ba7ee

dev-ruby/systemu: Remove old

Package-Manager: portage-2.2.23

 dev-ruby/systemu/Manifest |  1 -
 dev-ruby/systemu/systemu-2.6.4.ebuild | 28 
 2 files changed, 29 deletions(-)

diff --git a/dev-ruby/systemu/Manifest b/dev-ruby/systemu/Manifest
index dce4c81..77e5f6e 100644
--- a/dev-ruby/systemu/Manifest
+++ b/dev-ruby/systemu/Manifest
@@ -1,2 +1 @@
-DIST systemu-2.6.4.gem 14336 SHA256 
5f8c38d0a483f1999aaacac3022bcea4dc6bf524537b93514939787dbf22699a SHA512 
070a01b0d131f5d9d0582dd0ba62e02d1203d7cf01494ba2b8165f6fa07309614d33debbc53573dadb94d20d196d80cbb34d0e0274ec42b07a1bfa9efb08ab00
 WHIRLPOOL 
c903e9b1f6653b4b235a9d306b711443670d7928c8f209fa4ccffe44ca29623b6090def690c8fe758f19c3b5ee3acf066c8455ca88c272cf1b2675beb37df106
 DIST systemu-2.6.5.gem 15872 SHA256 
01f7d014b1453b28e5781e15c4d7d63fc9221c29b174b7aae5253207a75ab33e SHA512 
1755e1d24f6d93fd07578859873b94d3fbc855f86c94bf9eb0389959837e94e432883c638ed188e75254312c2ac66eee2041d8b13eff428b473ddf8a8105461f
 WHIRLPOOL 
f976734ad2ebc73f9f103b1b3deb652508373ef8b0209656f83052420e4ecd6330e87e893b0ce2e7c93cab34ba917a9355b87ebe352c17f6fc85356c59691443

diff --git a/dev-ruby/systemu/systemu-2.6.4.ebuild 
b/dev-ruby/systemu/systemu-2.6.4.ebuild
deleted file mode 100644
index be2bed8..000
--- a/dev-ruby/systemu/systemu-2.6.4.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-# Test hangs on jruby
-USE_RUBY="ruby19 ruby20"
-
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="README"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Universal capture of STDOUT and STDERR and handling of child 
process PID"
-HOMEPAGE="http://codeforpeople.com/lib/ruby/systemu/;
-
-LICENSE="Ruby"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-all_ruby_install() {
-   all_fakegem_install
-
-   insinto /usr/share/doc/${PF}
-   doins -r samples
-}



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

2015-10-26 Thread Ian Delaney
commit: cdd8a3b690b12af2a4fc0b78a3787b969d0b7f47
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Oct 27 02:51:40 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Oct 27 02:56:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdd8a3b6

profiles/package.mask pmask asdf-3.1.6

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 5aee23e..d27a309 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Ian Delaney  (27 Oct 2015)
+# fails to build dev-lisp/sbcl-1.2.16 #563812
+=dev-lisp/asdf-3.1.6
+
 # Justin Lecher  (23 Oct 2015)
 # Breaking changes #563540
 =app-text/ghostscript-gpl-9.18



[gentoo-commits] repo/gentoo:master commit in: net-firewall/shorewall-init/files/4.5.21.10-r1/, net-firewall/shorewall-init/, ...

2015-10-26 Thread Ian Delaney
commit: ee2e65a5cc2e830892a4d77d69ebecb3c35521d3
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Oct 27 03:01:45 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Oct 27 03:01:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee2e65a5

net-firewall: purge packages shorewall-* shorewall6

shorewall-core, shorewall-init, shorewall-lite, shorewall6, shorewall6-lite

Gentoo bug; #560392

 net-firewall/shorewall-core/Manifest   |   2 -
 .../shorewall-core/files/4.5.21.10-r1/shorewallrc  |  23 ---
 .../shorewall-core/files/4.5.21.9/shorewallrc  |  23 ---
 net-firewall/shorewall-core/metadata.xml   |  10 --
 .../shorewall-core-4.5.21.10-r1.ebuild |  74 
 .../shorewall-core/shorewall-core-4.5.21.9.ebuild  |  74 
 net-firewall/shorewall-init/Manifest   |   2 -
 .../01_Remove-ipset-functionality.patch|  27 ---
 .../files/4.5.21.10-r1/README.Gentoo.txt   |  30 
 .../files/4.5.21.10-r1/shorewall-init.confd|   9 -
 .../files/4.5.21.10-r1/shorewall-init.initd| 196 -
 .../files/4.5.21.10-r1/shorewall-init.systemd  |  16 --
 .../shorewall-init/files/4.5.21.10-r1/shorewallrc  |  23 ---
 .../4.5.21.9/01_Remove-ipset-functionality.patch   |  27 ---
 .../files/4.5.21.9/README.Gentoo.txt   |  30 
 .../files/4.5.21.9/shorewall-init.confd|   9 -
 .../files/4.5.21.9/shorewall-init.initd| 196 -
 .../files/4.5.21.9/shorewall-init.systemd  |  16 --
 .../shorewall-init/files/4.5.21.9/shorewallrc  |  23 ---
 net-firewall/shorewall-init/metadata.xml   |  10 --
 .../shorewall-init-4.5.21.10-r1.ebuild | 104 ---
 .../shorewall-init/shorewall-init-4.5.21.9.ebuild  | 104 ---
 net-firewall/shorewall-lite/Manifest   |   4 -
 .../files/4.5.21.10-r1/shorewall-lite.confd|  15 --
 .../files/4.5.21.10-r1/shorewall-lite.initd|  82 -
 .../files/4.5.21.10-r1/shorewall-lite.systemd  |  17 --
 .../shorewall-lite/files/4.5.21.10-r1/shorewallrc  |  23 ---
 .../files/4.5.21.9/shorewall-lite.confd|  15 --
 .../files/4.5.21.9/shorewall-lite.initd|  82 -
 .../files/4.5.21.9/shorewall-lite.systemd  |  17 --
 .../shorewall-lite/files/4.5.21.9/shorewallrc  |  23 ---
 net-firewall/shorewall-lite/metadata.xml   |  10 --
 .../shorewall-lite-4.5.21.10-r1.ebuild | 106 ---
 .../shorewall-lite/shorewall-lite-4.5.21.9.ebuild  | 106 ---
 net-firewall/shorewall6-lite/Manifest  |   4 -
 .../files/4.5.21.10-r1/shorewall6-lite.confd   |  15 --
 .../files/4.5.21.10-r1/shorewall6-lite.initd   |  82 -
 .../files/4.5.21.10-r1/shorewall6-lite.systemd |  17 --
 .../shorewall6-lite/files/4.5.21.10-r1/shorewallrc |  23 ---
 .../files/4.5.21.10/shorewall6-lite.confd  |  15 --
 .../files/4.5.21.10/shorewall6-lite.initd  |  82 -
 .../files/4.5.21.10/shorewall6-lite.systemd|  17 --
 .../shorewall6-lite/files/4.5.21.10/shorewallrc|  23 ---
 .../files/4.5.21.9/shorewall6-lite.confd   |  15 --
 .../files/4.5.21.9/shorewall6-lite.initd   |  82 -
 .../files/4.5.21.9/shorewall6-lite.systemd |  17 --
 .../shorewall6-lite/files/4.5.21.9/shorewallrc |  23 ---
 net-firewall/shorewall6-lite/metadata.xml  |  10 --
 .../shorewall6-lite-4.5.21.10-r1.ebuild| 107 ---
 .../shorewall6-lite-4.5.21.9.ebuild| 107 ---
 net-firewall/shorewall6/Manifest   |   4 -
 .../shorewall6/files/4.5.21.10-r1/shorewall6.confd |  15 --
 .../shorewall6/files/4.5.21.10-r1/shorewall6.initd | 107 ---
 .../files/4.5.21.10-r1/shorewall6.systemd  |  17 --
 .../shorewall6/files/4.5.21.10-r1/shorewallrc  |  23 ---
 .../shorewall6/files/4.5.21.9/shorewall6.confd |  15 --
 .../shorewall6/files/4.5.21.9/shorewall6.initd | 107 ---
 .../shorewall6/files/4.5.21.9/shorewall6.systemd   |  17 --
 net-firewall/shorewall6/files/4.5.21.9/shorewallrc |  23 ---
 net-firewall/shorewall6/metadata.xml   |  10 --
 .../shorewall6/shorewall6-4.5.21.10-r1.ebuild  | 112 
 net-firewall/shorewall6/shorewall6-4.5.21.9.ebuild | 112 
 62 files changed, 2729 deletions(-)

diff --git a/net-firewall/shorewall-core/Manifest 
b/net-firewall/shorewall-core/Manifest
deleted file mode 100644
index e42704c..000
--- a/net-firewall/shorewall-core/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST shorewall-core-4.5.21.10.tar.bz2 86185 SHA256 
57e4b96ae3258b5150fbb188921845e8843d6b6ccb77d60a10bb984f87951334 SHA512 
ad96fd91d5d8eb900b7a2180a37fa1826c7448fd5ff0f94f938e897b2cdf9d7b2a064cb4499fb76107bb8cf8f32c1265a7ff6d5966dae1d1d76a4a61482d6c81
 WHIRLPOOL 

[gentoo-commits] gentoo commit in src/patchsets/gcc/4.8.5/gentoo: 34_all_libjava-classpath-locale-sort.patch README.history

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:33

  Modified: README.history
  Added:34_all_libjava-classpath-locale-sort.patch
  Log:
  add fix from upstream for checking JNI headers in some locales #563710 by 
Miroslav Šulc

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

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

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.8.5/gentoo/README.history,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- README.history  19 Oct 2015 17:31:09 -  1.5
+++ README.history  27 Oct 2015 04:38:32 -  1.6
@@ -1,5 +1,6 @@
 1.4[pending]
U 09_all_default-ssp.patch
+   + 34_all_libjava-classpath-locale-sort.patch
 
 1.329 Aug 2015
U 74_all_gcc48_cloog-dl.patch



1.1  
src/patchsets/gcc/4.8.5/gentoo/34_all_libjava-classpath-locale-sort.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.5/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.8.5/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=text/plain

Index: 34_all_libjava-classpath-locale-sort.patch
===
>From 3a52cf750bd9da06cffa7d642f1e74e77bfd8a8c Mon Sep 17 00:00:00 2001
From: vapier 
Date: Mon, 26 Oct 2015 18:32:41 +
Subject: [PATCH] libjava: fix locale handling when sorting JNI methods
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

When building under LANG=cs_CZ.UTF-8, the JNI method check fails:

/bin/bash ../../scripts/check_jni_methods.sh
Found a problem with the JNI methods declared and implemented.
(<) missing in implementation, (>) missing in header files
> Java_gnu_java_awt_peer_gtk_GtkClipboard_advertiseContent
> Java_gnu_java_awt_peer_gtk_GtkClipboard_initNativeState
... lots more ...

While the sed commands are run under LC_ALL=C, the two sort commands are
not, and they end up producing unexpected output (for the test).  Once we
run both under LC_ALL=C, the check passes.  While we're here, we can also
combine latter the `sort|uniq` into `sort -u` to match the earlier code.

URL: https://bugs.gentoo.org/563710
Reported-by: Miroslav Šulc 


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229388 
138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/classpath/ChangeLog   | 5 +
 libjava/classpath/scripts/check_jni_methods.sh.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/libjava/classpath/scripts/check_jni_methods.sh.in 
b/libjava/classpath/scripts/check_jni_methods.sh.in
index facf34b..fb9d104 100644
--- a/libjava/classpath/scripts/check_jni_methods.sh.in
+++ b/libjava/classpath/scripts/check_jni_methods.sh.in
@@ -14,7 +14,7 @@ grep -h '^JNIEXPORT .* Java_' @abs_top_srcdir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' > $TMPFILE
 grep -h '^JNIEXPORT .* Java_' @abs_top_builddir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE
-sort -u $TMPFILE > $TMPFILE4
+LC_ALL=C sort -u $TMPFILE > $TMPFILE4
 mv $TMPFILE4 $TMPFILE
 
 # Find all methods in the JNI C source files.
@@ -31,7 +31,7 @@ find @abs_top_srcdir@/native/jni -name \*.cpp | \
cut -f4 -d\  | \
 LC_ALL=C sed -e 's,^\JNIEXPORT .* JNICALL 
\(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE2
 mv $TMPFILE2 $TMPFILE3
-sort $TMPFILE3 | uniq > $TMPFILE2
+LC_ALL=C sort -u $TMPFILE3 > $TMPFILE2
 rm $TMPFILE3
 
 # Write temporary ignore file.
-- 
2.5.2







[gentoo-commits] gentoo commit in src/patchsets/gcc/4.5.4/gentoo: 34_all_libjava-classpath-locale-sort.patch README.history

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:32

  Modified: README.history
  Added:34_all_libjava-classpath-locale-sort.patch
  Log:
  add fix from upstream for checking JNI headers in some locales #563710 by 
Miroslav Šulc

Revision  ChangesPath
1.8  src/patchsets/gcc/4.5.4/gentoo/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.4/gentoo/README.history?rev=1.8=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.4/gentoo/README.history?rev=1.8=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.4/gentoo/README.history?r1=1.7=1.8

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.5.4/gentoo/README.history,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- README.history  21 Apr 2013 05:19:18 -  1.7
+++ README.history  27 Oct 2015 04:38:32 -  1.8
@@ -1,5 +1,6 @@
 1.3[pending]
+ 18_all_libgcc-cross-canadian.patch
+   + 34_all_libjava-classpath-locale-sort.patch
 
 1.219 Apr 2013
+ 30_all_gcc-4.5_arm_armv4-no-thumb-fix-link.patch



1.1  
src/patchsets/gcc/4.5.4/gentoo/34_all_libjava-classpath-locale-sort.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.4/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.5.4/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=text/plain

Index: 34_all_libjava-classpath-locale-sort.patch
===
>From 3a52cf750bd9da06cffa7d642f1e74e77bfd8a8c Mon Sep 17 00:00:00 2001
From: vapier 
Date: Mon, 26 Oct 2015 18:32:41 +
Subject: [PATCH] libjava: fix locale handling when sorting JNI methods
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

When building under LANG=cs_CZ.UTF-8, the JNI method check fails:

/bin/bash ../../scripts/check_jni_methods.sh
Found a problem with the JNI methods declared and implemented.
(<) missing in implementation, (>) missing in header files
> Java_gnu_java_awt_peer_gtk_GtkClipboard_advertiseContent
> Java_gnu_java_awt_peer_gtk_GtkClipboard_initNativeState
... lots more ...

While the sed commands are run under LC_ALL=C, the two sort commands are
not, and they end up producing unexpected output (for the test).  Once we
run both under LC_ALL=C, the check passes.  While we're here, we can also
combine latter the `sort|uniq` into `sort -u` to match the earlier code.

URL: https://bugs.gentoo.org/563710
Reported-by: Miroslav Šulc 


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229388 
138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/classpath/ChangeLog   | 5 +
 libjava/classpath/scripts/check_jni_methods.sh.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/libjava/classpath/scripts/check_jni_methods.sh.in 
b/libjava/classpath/scripts/check_jni_methods.sh.in
index facf34b..fb9d104 100644
--- a/libjava/classpath/scripts/check_jni_methods.sh.in
+++ b/libjava/classpath/scripts/check_jni_methods.sh.in
@@ -14,7 +14,7 @@ grep -h '^JNIEXPORT .* Java_' @abs_top_srcdir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' > $TMPFILE
 grep -h '^JNIEXPORT .* Java_' @abs_top_builddir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE
-sort -u $TMPFILE > $TMPFILE4
+LC_ALL=C sort -u $TMPFILE > $TMPFILE4
 mv $TMPFILE4 $TMPFILE
 
 # Find all methods in the JNI C source files.
@@ -31,7 +31,7 @@ find @abs_top_srcdir@/native/jni -name \*.cpp | \
cut -f4 -d\  | \
 LC_ALL=C sed -e 's,^\JNIEXPORT .* JNICALL 
\(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE2
 mv $TMPFILE2 $TMPFILE3
-sort $TMPFILE3 | uniq > $TMPFILE2
+LC_ALL=C sort -u $TMPFILE3 > $TMPFILE2
 rm $TMPFILE3
 
 # Write temporary ignore file.
-- 
2.5.2







[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.3/pie: README.Changelog README.history

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:57

  Modified: README.Changelog README.history
  Log:
  push out new release of patchsets

Revision  ChangesPath
1.3  src/patchsets/gcc/4.9.3/pie/README.Changelog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/pie/README.Changelog?rev=1.3=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/pie/README.Changelog?rev=1.3=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/pie/README.Changelog?r1=1.2=1.3

Index: README.Changelog
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.9.3/pie/README.Changelog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- README.Changelog30 Aug 2015 05:28:48 -  1.2
+++ README.Changelog27 Oct 2015 04:38:57 -  1.3
@@ -1,3 +1,7 @@
+0.6.4  Mike Frysinger  
+
+   * gcc/doc/invoke.texi: Clean up typos/grammar.
+
 0.6.3  Mike Frysinger  
 
#518598



1.4  src/patchsets/gcc/4.9.3/pie/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/pie/README.history?rev=1.4=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/pie/README.history?rev=1.4=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/pie/README.history?r1=1.3=1.4

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.9.3/pie/README.history,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- README.history  19 Oct 2015 17:35:54 -  1.3
+++ README.history  27 Oct 2015 04:38:57 -  1.4
@@ -1,4 +1,4 @@
-0.6.4  [pending]
+0.6.4  27 Oct 2015
U 24_all_gcc49_invoke.texi.patch
 0.6.3  29 Aug 2015
U 35_all_gcc48_config_arm.patch






[gentoo-commits] gentoo commit in src/patchsets/gcc/4.4.7/gentoo: 34_all_libjava-classpath-locale-sort.patch README.history

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:32

  Modified: README.history
  Added:34_all_libjava-classpath-locale-sort.patch
  Log:
  add fix from upstream for checking JNI headers in some locales #563710 by 
Miroslav Šulc

Revision  ChangesPath
1.11 src/patchsets/gcc/4.4.7/gentoo/README.history

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

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.4.7/gentoo/README.history,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- README.history  21 Apr 2013 05:19:17 -  1.10
+++ README.history  27 Oct 2015 04:38:32 -  1.11
@@ -1,5 +1,6 @@
 1.3[pending]
+ 18_all_libgcc-cross-canadian.patch
+   + 34_all_libjava-classpath-locale-sort.patch
 
 1.219 Apr 2013
+ 30_all_gcc-4.4_arm_armv4-no-thumb-fix-link.patch



1.1  
src/patchsets/gcc/4.4.7/gentoo/34_all_libjava-classpath-locale-sort.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.7/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.4.7/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=text/plain

Index: 34_all_libjava-classpath-locale-sort.patch
===
>From 3a52cf750bd9da06cffa7d642f1e74e77bfd8a8c Mon Sep 17 00:00:00 2001
From: vapier 
Date: Mon, 26 Oct 2015 18:32:41 +
Subject: [PATCH] libjava: fix locale handling when sorting JNI methods
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

When building under LANG=cs_CZ.UTF-8, the JNI method check fails:

/bin/bash ../../scripts/check_jni_methods.sh
Found a problem with the JNI methods declared and implemented.
(<) missing in implementation, (>) missing in header files
> Java_gnu_java_awt_peer_gtk_GtkClipboard_advertiseContent
> Java_gnu_java_awt_peer_gtk_GtkClipboard_initNativeState
... lots more ...

While the sed commands are run under LC_ALL=C, the two sort commands are
not, and they end up producing unexpected output (for the test).  Once we
run both under LC_ALL=C, the check passes.  While we're here, we can also
combine latter the `sort|uniq` into `sort -u` to match the earlier code.

URL: https://bugs.gentoo.org/563710
Reported-by: Miroslav Šulc 


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229388 
138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/classpath/ChangeLog   | 5 +
 libjava/classpath/scripts/check_jni_methods.sh.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/libjava/classpath/scripts/check_jni_methods.sh.in 
b/libjava/classpath/scripts/check_jni_methods.sh.in
index facf34b..fb9d104 100644
--- a/libjava/classpath/scripts/check_jni_methods.sh.in
+++ b/libjava/classpath/scripts/check_jni_methods.sh.in
@@ -14,7 +14,7 @@ grep -h '^JNIEXPORT .* Java_' @abs_top_srcdir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' > $TMPFILE
 grep -h '^JNIEXPORT .* Java_' @abs_top_builddir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE
-sort -u $TMPFILE > $TMPFILE4
+LC_ALL=C sort -u $TMPFILE > $TMPFILE4
 mv $TMPFILE4 $TMPFILE
 
 # Find all methods in the JNI C source files.
@@ -31,7 +31,7 @@ find @abs_top_srcdir@/native/jni -name \*.cpp | \
cut -f4 -d\  | \
 LC_ALL=C sed -e 's,^\JNIEXPORT .* JNICALL 
\(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE2
 mv $TMPFILE2 $TMPFILE3
-sort $TMPFILE3 | uniq > $TMPFILE2
+LC_ALL=C sort -u $TMPFILE3 > $TMPFILE2
 rm $TMPFILE3
 
 # Write temporary ignore file.
-- 
2.5.2







[gentoo-commits] gentoo commit in src/patchsets/gcc/4.6.4/gentoo: 34_all_libjava-classpath-locale-sort.patch README.history

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:32

  Modified: README.history
  Added:34_all_libjava-classpath-locale-sort.patch
  Log:
  add fix from upstream for checking JNI headers in some locales #563710 by 
Miroslav Šulc

Revision  ChangesPath
1.12 src/patchsets/gcc/4.6.4/gentoo/README.history

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.4/gentoo/README.history?rev=1.12=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.4/gentoo/README.history?rev=1.12=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.4/gentoo/README.history?r1=1.11=1.12

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.6.4/gentoo/README.history,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- README.history  27 May 2015 15:58:00 -  1.11
+++ README.history  27 Oct 2015 04:38:32 -  1.12
@@ -1,3 +1,6 @@
+1.4[pending]
+   + 34_all_libjava-classpath-locale-sort.patch
+
 1.327 May 2015
+ 45_all_linux-pthread-reentrant.patch
- 74_all_gcc46_cloog-dl.patch



1.1  
src/patchsets/gcc/4.6.4/gentoo/34_all_libjava-classpath-locale-sort.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.4/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.6.4/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=text/plain

Index: 34_all_libjava-classpath-locale-sort.patch
===
>From 3a52cf750bd9da06cffa7d642f1e74e77bfd8a8c Mon Sep 17 00:00:00 2001
From: vapier 
Date: Mon, 26 Oct 2015 18:32:41 +
Subject: [PATCH] libjava: fix locale handling when sorting JNI methods
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

When building under LANG=cs_CZ.UTF-8, the JNI method check fails:

/bin/bash ../../scripts/check_jni_methods.sh
Found a problem with the JNI methods declared and implemented.
(<) missing in implementation, (>) missing in header files
> Java_gnu_java_awt_peer_gtk_GtkClipboard_advertiseContent
> Java_gnu_java_awt_peer_gtk_GtkClipboard_initNativeState
... lots more ...

While the sed commands are run under LC_ALL=C, the two sort commands are
not, and they end up producing unexpected output (for the test).  Once we
run both under LC_ALL=C, the check passes.  While we're here, we can also
combine latter the `sort|uniq` into `sort -u` to match the earlier code.

URL: https://bugs.gentoo.org/563710
Reported-by: Miroslav Šulc 


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229388 
138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/classpath/ChangeLog   | 5 +
 libjava/classpath/scripts/check_jni_methods.sh.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/libjava/classpath/scripts/check_jni_methods.sh.in 
b/libjava/classpath/scripts/check_jni_methods.sh.in
index facf34b..fb9d104 100644
--- a/libjava/classpath/scripts/check_jni_methods.sh.in
+++ b/libjava/classpath/scripts/check_jni_methods.sh.in
@@ -14,7 +14,7 @@ grep -h '^JNIEXPORT .* Java_' @abs_top_srcdir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' > $TMPFILE
 grep -h '^JNIEXPORT .* Java_' @abs_top_builddir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE
-sort -u $TMPFILE > $TMPFILE4
+LC_ALL=C sort -u $TMPFILE > $TMPFILE4
 mv $TMPFILE4 $TMPFILE
 
 # Find all methods in the JNI C source files.
@@ -31,7 +31,7 @@ find @abs_top_srcdir@/native/jni -name \*.cpp | \
cut -f4 -d\  | \
 LC_ALL=C sed -e 's,^\JNIEXPORT .* JNICALL 
\(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE2
 mv $TMPFILE2 $TMPFILE3
-sort $TMPFILE3 | uniq > $TMPFILE2
+LC_ALL=C sort -u $TMPFILE3 > $TMPFILE2
 rm $TMPFILE3
 
 # Write temporary ignore file.
-- 
2.5.2







[gentoo-commits] gentoo commit in src/patchsets/gcc/4.9.3/gentoo: 34_all_libjava-classpath-locale-sort.patch README.history

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:33

  Modified: README.history
  Added:34_all_libjava-classpath-locale-sort.patch
  Log:
  add fix from upstream for checking JNI headers in some locales #563710 by 
Miroslav Šulc

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

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

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.9.3/gentoo/README.history,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- README.history  19 Oct 2015 17:31:09 -  1.5
+++ README.history  27 Oct 2015 04:38:33 -  1.6
@@ -1,5 +1,6 @@
 1.4[pending]
U 09_all_default-ssp.patch
+   + 34_all_libjava-classpath-locale-sort.patch
 
 1.310 Oct 2015
U 74_all_gcc49_cloog-dl.patch



1.1  
src/patchsets/gcc/4.9.3/gentoo/34_all_libjava-classpath-locale-sort.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.9.3/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=text/plain

Index: 34_all_libjava-classpath-locale-sort.patch
===
>From 3a52cf750bd9da06cffa7d642f1e74e77bfd8a8c Mon Sep 17 00:00:00 2001
From: vapier 
Date: Mon, 26 Oct 2015 18:32:41 +
Subject: [PATCH] libjava: fix locale handling when sorting JNI methods
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

When building under LANG=cs_CZ.UTF-8, the JNI method check fails:

/bin/bash ../../scripts/check_jni_methods.sh
Found a problem with the JNI methods declared and implemented.
(<) missing in implementation, (>) missing in header files
> Java_gnu_java_awt_peer_gtk_GtkClipboard_advertiseContent
> Java_gnu_java_awt_peer_gtk_GtkClipboard_initNativeState
... lots more ...

While the sed commands are run under LC_ALL=C, the two sort commands are
not, and they end up producing unexpected output (for the test).  Once we
run both under LC_ALL=C, the check passes.  While we're here, we can also
combine latter the `sort|uniq` into `sort -u` to match the earlier code.

URL: https://bugs.gentoo.org/563710
Reported-by: Miroslav Šulc 


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229388 
138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/classpath/ChangeLog   | 5 +
 libjava/classpath/scripts/check_jni_methods.sh.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/libjava/classpath/scripts/check_jni_methods.sh.in 
b/libjava/classpath/scripts/check_jni_methods.sh.in
index facf34b..fb9d104 100644
--- a/libjava/classpath/scripts/check_jni_methods.sh.in
+++ b/libjava/classpath/scripts/check_jni_methods.sh.in
@@ -14,7 +14,7 @@ grep -h '^JNIEXPORT .* Java_' @abs_top_srcdir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' > $TMPFILE
 grep -h '^JNIEXPORT .* Java_' @abs_top_builddir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE
-sort -u $TMPFILE > $TMPFILE4
+LC_ALL=C sort -u $TMPFILE > $TMPFILE4
 mv $TMPFILE4 $TMPFILE
 
 # Find all methods in the JNI C source files.
@@ -31,7 +31,7 @@ find @abs_top_srcdir@/native/jni -name \*.cpp | \
cut -f4 -d\  | \
 LC_ALL=C sed -e 's,^\JNIEXPORT .* JNICALL 
\(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE2
 mv $TMPFILE2 $TMPFILE3
-sort $TMPFILE3 | uniq > $TMPFILE2
+LC_ALL=C sort -u $TMPFILE3 > $TMPFILE2
 rm $TMPFILE3
 
 # Write temporary ignore file.
-- 
2.5.2







[gentoo-commits] gentoo commit in src/patchsets/gcc/4.7.4/gentoo: 34_all_libjava-classpath-locale-sort.patch README.history

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:32

  Modified: README.history
  Added:34_all_libjava-classpath-locale-sort.patch
  Log:
  add fix from upstream for checking JNI headers in some locales #563710 by 
Miroslav Šulc

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

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

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/4.7.4/gentoo/README.history,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- README.history  7 Aug 2015 04:08:25 -   1.9
+++ README.history  27 Oct 2015 04:38:32 -  1.10
@@ -1,3 +1,6 @@
+1.5[pending]
+   + 34_all_libjava-classpath-locale-sort.patch
+
 1.407 Aug 2015
+ 72_all_gcc-gperf-gnu-inline.patch
 



1.1  
src/patchsets/gcc/4.7.4/gentoo/34_all_libjava-classpath-locale-sort.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.4/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/4.7.4/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=text/plain

Index: 34_all_libjava-classpath-locale-sort.patch
===
>From 3a52cf750bd9da06cffa7d642f1e74e77bfd8a8c Mon Sep 17 00:00:00 2001
From: vapier 
Date: Mon, 26 Oct 2015 18:32:41 +
Subject: [PATCH] libjava: fix locale handling when sorting JNI methods
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

When building under LANG=cs_CZ.UTF-8, the JNI method check fails:

/bin/bash ../../scripts/check_jni_methods.sh
Found a problem with the JNI methods declared and implemented.
(<) missing in implementation, (>) missing in header files
> Java_gnu_java_awt_peer_gtk_GtkClipboard_advertiseContent
> Java_gnu_java_awt_peer_gtk_GtkClipboard_initNativeState
... lots more ...

While the sed commands are run under LC_ALL=C, the two sort commands are
not, and they end up producing unexpected output (for the test).  Once we
run both under LC_ALL=C, the check passes.  While we're here, we can also
combine latter the `sort|uniq` into `sort -u` to match the earlier code.

URL: https://bugs.gentoo.org/563710
Reported-by: Miroslav Šulc 


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229388 
138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/classpath/ChangeLog   | 5 +
 libjava/classpath/scripts/check_jni_methods.sh.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/libjava/classpath/scripts/check_jni_methods.sh.in 
b/libjava/classpath/scripts/check_jni_methods.sh.in
index facf34b..fb9d104 100644
--- a/libjava/classpath/scripts/check_jni_methods.sh.in
+++ b/libjava/classpath/scripts/check_jni_methods.sh.in
@@ -14,7 +14,7 @@ grep -h '^JNIEXPORT .* Java_' @abs_top_srcdir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' > $TMPFILE
 grep -h '^JNIEXPORT .* Java_' @abs_top_builddir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE
-sort -u $TMPFILE > $TMPFILE4
+LC_ALL=C sort -u $TMPFILE > $TMPFILE4
 mv $TMPFILE4 $TMPFILE
 
 # Find all methods in the JNI C source files.
@@ -31,7 +31,7 @@ find @abs_top_srcdir@/native/jni -name \*.cpp | \
cut -f4 -d\  | \
 LC_ALL=C sed -e 's,^\JNIEXPORT .* JNICALL 
\(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE2
 mv $TMPFILE2 $TMPFILE3
-sort $TMPFILE3 | uniq > $TMPFILE2
+LC_ALL=C sort -u $TMPFILE3 > $TMPFILE2
 rm $TMPFILE3
 
 # Write temporary ignore file.
-- 
2.5.2







[gentoo-commits] gentoo commit in src/patchsets/gcc/5.2.0/gentoo: 34_all_libjava-classpath-locale-sort.patch README.history

2015-10-26 Thread Mike Frysinger (vapier)
vapier  15/10/27 04:38:33

  Modified: README.history
  Added:34_all_libjava-classpath-locale-sort.patch
  Log:
  add fix from upstream for checking JNI headers in some locales #563710 by 
Miroslav Šulc

Revision  ChangesPath
1.5  src/patchsets/gcc/5.2.0/gentoo/README.history

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

Index: README.history
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/5.2.0/gentoo/README.history,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- README.history  19 Oct 2015 17:31:09 -  1.4
+++ README.history  27 Oct 2015 04:38:33 -  1.5
@@ -1,5 +1,6 @@
 1.3[pending]
U 09_all_default-ssp.patch
+   + 34_all_libjava-classpath-locale-sort.patch
 
 1.202 Oct 2015
+ 69_all_gcc-5-ms_abi-pr66838.patch



1.1  
src/patchsets/gcc/5.2.0/gentoo/34_all_libjava-classpath-locale-sort.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.2.0/gentoo/34_all_libjava-classpath-locale-sort.patch?rev=1.1=text/plain

Index: 34_all_libjava-classpath-locale-sort.patch
===
>From 3a52cf750bd9da06cffa7d642f1e74e77bfd8a8c Mon Sep 17 00:00:00 2001
From: vapier 
Date: Mon, 26 Oct 2015 18:32:41 +
Subject: [PATCH] libjava: fix locale handling when sorting JNI methods
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

When building under LANG=cs_CZ.UTF-8, the JNI method check fails:

/bin/bash ../../scripts/check_jni_methods.sh
Found a problem with the JNI methods declared and implemented.
(<) missing in implementation, (>) missing in header files
> Java_gnu_java_awt_peer_gtk_GtkClipboard_advertiseContent
> Java_gnu_java_awt_peer_gtk_GtkClipboard_initNativeState
... lots more ...

While the sed commands are run under LC_ALL=C, the two sort commands are
not, and they end up producing unexpected output (for the test).  Once we
run both under LC_ALL=C, the check passes.  While we're here, we can also
combine latter the `sort|uniq` into `sort -u` to match the earlier code.

URL: https://bugs.gentoo.org/563710
Reported-by: Miroslav Šulc 


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229388 
138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/classpath/ChangeLog   | 5 +
 libjava/classpath/scripts/check_jni_methods.sh.in | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/libjava/classpath/scripts/check_jni_methods.sh.in 
b/libjava/classpath/scripts/check_jni_methods.sh.in
index facf34b..fb9d104 100644
--- a/libjava/classpath/scripts/check_jni_methods.sh.in
+++ b/libjava/classpath/scripts/check_jni_methods.sh.in
@@ -14,7 +14,7 @@ grep -h '^JNIEXPORT .* Java_' @abs_top_srcdir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' > $TMPFILE
 grep -h '^JNIEXPORT .* Java_' @abs_top_builddir@/include/*.h | \
 LC_ALL=C sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE
-sort -u $TMPFILE > $TMPFILE4
+LC_ALL=C sort -u $TMPFILE > $TMPFILE4
 mv $TMPFILE4 $TMPFILE
 
 # Find all methods in the JNI C source files.
@@ -31,7 +31,7 @@ find @abs_top_srcdir@/native/jni -name \*.cpp | \
cut -f4 -d\  | \
 LC_ALL=C sed -e 's,^\JNIEXPORT .* JNICALL 
\(Java_[a-z_A-Z0-9]*\).*$,\1,' >> $TMPFILE2
 mv $TMPFILE2 $TMPFILE3
-sort $TMPFILE3 | uniq > $TMPFILE2
+LC_ALL=C sort -u $TMPFILE3 > $TMPFILE2
 rm $TMPFILE3
 
 # Write temporary ignore file.
-- 
2.5.2







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

2015-10-26 Thread Manuel Rüger
commit: 2ab50440c1bcb9717177e53291860f49e21fe677
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 01:38:51 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 01:38:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ab50440

dev-util/jenkins-bin: Remove old

Package-Manager: portage-2.2.23

 dev-util/jenkins-bin/Manifest |  1 -
 dev-util/jenkins-bin/jenkins-bin-1.633.ebuild | 47 ---
 2 files changed, 48 deletions(-)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index 138a6e2..e794699 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,4 +1,3 @@
 DIST jenkins-bin-1.625.1.war 62885582 SHA256 
e5134146d398f00712c19c69bc84a594509505eec2ba6930f8df41689debfbcb SHA512 
b05710ffe195476fa22ca2dd226148755310ee17527c0294a0251414bbb085860fd40ec485ce53a4446d36bfaa908f3a4b828e1772d590433120ec3668c239d9
 WHIRLPOOL 
df9dcfa58c2f166929e0c0e22f6daab95d4f42549509943459fbcad70349c9885673db27ee8262421989b69f0503f8e9805d9a889181ab71c6a98f0de5e44245
-DIST jenkins-bin-1.633.war 63242255 SHA256 
15d930888bfb31ea231bf617bf88aeb281a5f0488385f555d34c439d308cb2e8 SHA512 
517735a4d707d77d979bcbb2f3631b5a527da9824eb91d1bb3741ddb4685f81b15cad6c4a20cb482eaad6f02863b9195d366968c00d63c44690cc426df107c29
 WHIRLPOOL 
7331d0e4258537cc721b532f70612f1b945d0c5b456781dd6a9fcc2c0fcf75d9960cf7be8b97ae52a6df3a58d728184f608c5b8fb13ee9dc376797c77e1ec96c
 DIST jenkins-bin-1.634.war 63310617 SHA256 
47f9bd9dd3ee400c62905173a9d65605653a10a339e1d593f0b2e0f7456b1d9a SHA512 
b736f04cd211b4a3cf56bc5dbd504997319e6d05b4cd6d5629710f69ac6080409923b733109d241debc6737ad4780026e4a67a673aae561ddb40900205da9c56
 WHIRLPOOL 
396239893cd511b9f21dc6d5f2b17a9dc6bfd7a708401d649a3eb0cadbd34334e726146caf02cb3963caaaf2dbc3aee6277d26b570c835195cb84fd2252a896d
 DIST jenkins-bin-1.635.war 63529765 SHA256 
6ec3487a56cbb319a8c47cb5986adef5fa2748ebd2ef5752159f47057c4c048f SHA512 
b2200c30715c254a87ef7628835eaf6f1b606c8a9da1e15d6264b84d848ff7f7b4de1dcfb0a5b5a905c6c34e1483f393e53c31f00fe76860c5855651ceb05182
 WHIRLPOOL 
0e5e6769c3712be772ff20af5f0f861dc2ffb665352bff7514c8ab6bd3a97b084a8716c43fa00b2ba0e9f72d09658704852a00b87087555fa4c3f01f6b5773d5

diff --git a/dev-util/jenkins-bin/jenkins-bin-1.633.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-1.633.ebuild
deleted file mode 100644
index 37fc084..000
--- a/dev-util/jenkins-bin/jenkins-bin-1.633.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit user systemd
-
-DESCRIPTION="Extensible continuous integration server"
-HOMEPAGE="http://jenkins-ci.org/;
-LICENSE="MIT"
-SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war"
-RESTRICT="mirror"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="media-fonts/dejavu
-   media-libs/freetype
-   !dev-util/jenkins-bin:lts
-   >=virtual/jre-1.7.0"
-
-S=${WORKDIR}
-
-JENKINS_DIR=/var/lib/jenkins
-
-pkg_setup() {
-   enewgroup jenkins
-   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
-}
-
-src_install() {
-   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
-
-   insinto /opt/jenkins
-   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
-
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
-
-   newinitd "${FILESDIR}"/${PN}.init2 jenkins
-   newconfd "${FILESDIR}"/${PN}.confd jenkins
-
-   systemd_newunit "${FILESDIR}"/${PN}.service jenkins.service
-
-   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
-}



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

2015-10-26 Thread Manuel Rüger
commit: 3cc85eb063d3db64f33d42911f3f7c7198766e36
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Oct 27 01:38:26 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Oct 27 01:38:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc85eb0

dev-util/jenkins-bin: Version bump

Package-Manager: portage-2.2.23

 dev-util/jenkins-bin/Manifest |  1 +
 dev-util/jenkins-bin/jenkins-bin-1.635.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index ceda8fc..138a6e2 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,3 +1,4 @@
 DIST jenkins-bin-1.625.1.war 62885582 SHA256 
e5134146d398f00712c19c69bc84a594509505eec2ba6930f8df41689debfbcb SHA512 
b05710ffe195476fa22ca2dd226148755310ee17527c0294a0251414bbb085860fd40ec485ce53a4446d36bfaa908f3a4b828e1772d590433120ec3668c239d9
 WHIRLPOOL 
df9dcfa58c2f166929e0c0e22f6daab95d4f42549509943459fbcad70349c9885673db27ee8262421989b69f0503f8e9805d9a889181ab71c6a98f0de5e44245
 DIST jenkins-bin-1.633.war 63242255 SHA256 
15d930888bfb31ea231bf617bf88aeb281a5f0488385f555d34c439d308cb2e8 SHA512 
517735a4d707d77d979bcbb2f3631b5a527da9824eb91d1bb3741ddb4685f81b15cad6c4a20cb482eaad6f02863b9195d366968c00d63c44690cc426df107c29
 WHIRLPOOL 
7331d0e4258537cc721b532f70612f1b945d0c5b456781dd6a9fcc2c0fcf75d9960cf7be8b97ae52a6df3a58d728184f608c5b8fb13ee9dc376797c77e1ec96c
 DIST jenkins-bin-1.634.war 63310617 SHA256 
47f9bd9dd3ee400c62905173a9d65605653a10a339e1d593f0b2e0f7456b1d9a SHA512 
b736f04cd211b4a3cf56bc5dbd504997319e6d05b4cd6d5629710f69ac6080409923b733109d241debc6737ad4780026e4a67a673aae561ddb40900205da9c56
 WHIRLPOOL 
396239893cd511b9f21dc6d5f2b17a9dc6bfd7a708401d649a3eb0cadbd34334e726146caf02cb3963caaaf2dbc3aee6277d26b570c835195cb84fd2252a896d
+DIST jenkins-bin-1.635.war 63529765 SHA256 
6ec3487a56cbb319a8c47cb5986adef5fa2748ebd2ef5752159f47057c4c048f SHA512 
b2200c30715c254a87ef7628835eaf6f1b606c8a9da1e15d6264b84d848ff7f7b4de1dcfb0a5b5a905c6c34e1483f393e53c31f00fe76860c5855651ceb05182
 WHIRLPOOL 
0e5e6769c3712be772ff20af5f0f861dc2ffb665352bff7514c8ab6bd3a97b084a8716c43fa00b2ba0e9f72d09658704852a00b87087555fa4c3f01f6b5773d5

diff --git a/dev-util/jenkins-bin/jenkins-bin-1.635.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-1.635.ebuild
new file mode 100644
index 000..37fc084
--- /dev/null
+++ b/dev-util/jenkins-bin/jenkins-bin-1.635.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit user systemd
+
+DESCRIPTION="Extensible continuous integration server"
+HOMEPAGE="http://jenkins-ci.org/;
+LICENSE="MIT"
+SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war"
+RESTRICT="mirror"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="media-fonts/dejavu
+   media-libs/freetype
+   !dev-util/jenkins-bin:lts
+   >=virtual/jre-1.7.0"
+
+S=${WORKDIR}
+
+JENKINS_DIR=/var/lib/jenkins
+
+pkg_setup() {
+   enewgroup jenkins
+   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
+}
+
+src_install() {
+   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
+
+   insinto /opt/jenkins
+   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
+
+   newinitd "${FILESDIR}"/${PN}.init2 jenkins
+   newconfd "${FILESDIR}"/${PN}.confd jenkins
+
+   systemd_newunit "${FILESDIR}"/${PN}.service jenkins.service
+
+   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
+}



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

2015-10-26 Thread Ian Delaney
commit: 6f21739160fc4f4e11c72ed3f53f623672419ab2
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Oct 27 03:08:40 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Oct 27 03:08:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f217391

net-firewall/shorewall: remove old versions < -4.6.10.1

Gentoo bug: #560392

Package-Manager: portage-2.2.23

 net-firewall/shorewall/Manifest|   4 -
 .../shorewall/shorewall-4.5.21.10-r1.ebuild| 118 -
 net-firewall/shorewall/shorewall-4.5.21.9.ebuild   | 116 
 3 files changed, 238 deletions(-)

diff --git a/net-firewall/shorewall/Manifest b/net-firewall/shorewall/Manifest
index 461f8bb..519fcaf 100644
--- a/net-firewall/shorewall/Manifest
+++ b/net-firewall/shorewall/Manifest
@@ -1,5 +1,3 @@
-DIST shorewall-4.5.21.10.tar.bz2 489469 SHA256 
961331ba61e5e6dccc106e43685e45f19bf1e155502067c88e18ecf94c2a794f SHA512 
bdc673b999c99624c61caa1239ac3a58c4d85743179de05ed5fe947e755fc4b01425da34b67cb5e6db693c62bf25e316517f1473b450a1d76887e69e4e384682
 WHIRLPOOL 
04a7afd30d79d6360ec325e7df06ffd6e911d938382a4c0c331312ddf6951d6564f5a0452b244095309fe4ce00b1c72838b0ef76e198e137c153a617dc22e8e5
-DIST shorewall-4.5.21.9.tar.bz2 489618 SHA256 
a1fc41abcba3181235e217a5da53bb25d11e6cdeef49dde82a0daeb2bb305fc6 SHA512 
137eb33f63a25533f90150de5cd246f47e5072f838f8e42b044bd6a620bce767f8cb2b9da995fcfb61e37ab6774ea97819f6f7408f669539917b419262a68496
 WHIRLPOOL 
be464ef64e06b35ff9fdf74e9b6a8c88b8de1aa766ec3bf2a7ccf9b69731ba23dc638047f5ad44f451ab93e093458f8f88d7b16201d61bbdfce40075f9ef25be
 DIST shorewall-4.6.10.1.tar.bz2 496061 SHA256 
de527474f5bac6bf59678321c604748c48efe28a897d339a2187a45e3efed8ef SHA512 
a5ef4783ff04b6faaa2e25d1da57ca3c46860960859dad5cd3b8d3cb252626b1db39c35767b226333f10db7b08b0fb18c0c09cd4eaf14586cb02b1a4259b571d
 WHIRLPOOL 
26ebb72e769d5ca7489f718cabdb1f9cfb78e2acd514329c7036edcafe27f159ffa4cdadeeb1cee43619f748474fcc7a614011147976abb14cf627503a542e3f
 DIST shorewall-4.6.13.1.tar.bz2 498949 SHA256 
fc2c390fecbc0c78d5cd648596abc1edb1d338d748b4a0605695c3141e24d35e SHA512 
1b8e0a008660a8b66bcc77bb92f110fbdc04a0925d6f19bb01a6e798baa907f5ca4f6f60851c861963ab49b1a0b2ae652d4d1234fcf18ab56325ebcc66fbefb1
 WHIRLPOOL 
6c2a63a5c547d429c3d9c5d05683d8c4a2bdc662f58b7b8e7ae197053a13c06ad1c0ae9fcd0face2601d05a7becfaf0948e0765ff22e5dbeace0176e77e4bad6
 DIST shorewall-4.6.13.tar.bz2 500076 SHA256 
fc4530d891da22d9efaa4339f10ebde27133bef9fe8c6e93abc701991f8b30ba SHA512 
5018d34a15784870c521614a725baa05ea8df5e11e11d0177d01fc3012ed006f25b6a2afaf20cbae7b1c189ea841cc5ad2764067af0513f8378b316645524b48
 WHIRLPOOL 
a6fef96deed7f7ad7bdc0273de88c15f77b901ec27905af474399b3b86fd8b6cdfe92556ae2314feaa73cd525960b56d986ce426225f7779e9235ccdc9f7248c
@@ -8,8 +6,6 @@ DIST shorewall-core-4.6.10.1.tar.bz2 58247 SHA256 
5af804f39f4480685e995080dc8913
 DIST shorewall-core-4.6.13.1.tar.bz2 61749 SHA256 
d06a4c1050578013c6e37468f0a803fd129f1ac95b6ea5ab8af80f3eb0739539 SHA512 
8db64a150101368ad50075f7ed97e2ceecf0d974ae1d0d61f6bc8dd967ff8f65c543dfbe8f1217d90b21d93398669cc3d6e06a2b2c706c25347b27f13868
 WHIRLPOOL 
493f9a739388d3ecfe5fc9d04414c272d09a6eade8f236e21ec773b7df423844d2b9b427a297c9fa842ef22e7c491427d74e83dbc0aa267b16c20c1aff8525ed
 DIST shorewall-core-4.6.13.tar.bz2 61679 SHA256 
e31dd55c8df37ee2168c5aa9843f9c2727f6a31a98634445e0c10990360665a4 SHA512 
2c769f2f77ee51357f92daa1fe3f794fd3e3b537f0686a004809767340ad7bdd922be2580760cdbb834e8c80f53e9d5329ef86ee741520870c242452b1e44f30
 WHIRLPOOL 
90668efd2db2f09bf40934206b3124666b96157f085dfabc17ff2c2d65ebb8f348db6727516fced866d16eb4d44aa0ea9d6d91ed907593785788c6cdb50f10dc
 DIST shorewall-core-5.0.1.tar.bz2 45988 SHA256 
fd2c764f34f02b923ad4a2c5b4017b9b96df2c6886710254f2e2771e3b007a0b SHA512 
a65965d272190ff4e32022a5ba21eaabfedfde50ffa1c2d100892f1b3796a5908641f5fe40e3c66f9d0bd7666217ba046e61a89368a41d8dc9eaee7db2efa4cf
 WHIRLPOOL 
8366b0d423dc38349e795e65dace67e7c851a00335b49da1c8308796e9ff5c9544c76375d00c8c521ade30b21ccc91e874382c89691cf11927624fc42fd1a434
-DIST shorewall-docs-html-4.5.21.10.tar.bz2 4146174 SHA256 
cdbc5f3654f7cfb6f0c3b3750a7174df8fa0590dfe34df055300140b3eb13192 SHA512 
94852cc094d6a485cacc4023a2819431f1bfd80b8cbcab29981c422fdff9dfee90697ae8a9bda7ded3a8be03db516bdd5f4bcc4b83e7d01bc433a8c88d23731a
 WHIRLPOOL 
6f02d0e3255dd1e31a43193f67f9b957546a6ae574631e61364f81244bee887e7f21c38f412fa21cde77b3d89aaf0e14e43909683db0c9c32edeb455c20b998e
-DIST shorewall-docs-html-4.5.21.9.tar.bz2 4146065 SHA256 
9056c22b8232d8276cc53a6eb74940bab42a250c670cb5baa42c75cfb89efdef SHA512 
48b2c692ba59b7ec74307909e43a95104e212c9b8e21af7f0dd9f3438ac4f24a6fd2bcc6517966681517aef03beaa8faf03efd74406966d97b68cb416be8551b
 WHIRLPOOL 
f68cba7ecaf8c541e58d26c157914bff2d90cd9deae30af7323ca69c68d028217133f53e597bf383191aee83fab29203d233b3cd1e75e4cf08d9e17308dc25e4
 DIST shorewall-docs-html-4.6.10.1.tar.bz2 4185752 SHA256 

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

2015-10-26 Thread Mike Frysinger
commit: 27aab77b98b521ac7aa52256c1b04b53856c3003
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Oct 27 04:16:22 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Oct 27 04:16:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27aab77b

thirdpartymirrors: update openssl mirrors #563726

 profiles/thirdpartymirrors | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/thirdpartymirrors b/profiles/thirdpartymirrors
index 23d8fd2..343584d 100644
--- a/profiles/thirdpartymirrors
+++ b/profiles/thirdpartymirrors
@@ -28,7 +28,7 @@ netbsdftp://ftp.NetBSD.org/pub/NetBSD 
ftp://ftp.au.NetBSD.org/pub/NetBSD ftp:/
 nongnu http://download.savannah.nongnu.org/releases-noredirect/ 
http://ftp.cc.uoc.gr/mirrors/nongnu.org/ http://ftp.twaren.net/Unix/NonGNU/ 
http://mirror.csclub.uwaterloo.ca/nongnu/ 
ftp://mirror.csclub.uwaterloo.ca/nongnu/ http://mirrors.fe.up.pt/pub/nongnu/ 
ftp://mirrors.fe.up.pt/pub/nongnu/ http://mirrors.zerg.biz/nongnu/ 
http://nongnu.askapache.com/ http://nongnu.uib.no/ 
ftp://nongnu.uib.no/pub/nongnu/ http://savannah.c3sl.ufpr.br/ 
ftp://savannah.c3sl.ufpr.br/savannah-nongnu/ ftp://ftp.twaren.net/Unix/NonGNU/
 openbsdftp://ftp.openbsd.org/pub/OpenBSD 
ftp://ftp.it.net.au/mirrors/OpenBSD ftp://openbsd.wiretapped.net/pub/OpenBSD 
ftp://gd.tuwien.ac.at/opsys/OpenBSD ftp://playboy.wu-wien.ac.at/pub/OpenBSD 
ftp://ftp.ca.openbsd.org/pub/OpenBSD ftp://ftp.shellhung.org/pub/OpenBSD 
ftp://ftp.jaquet.dk/pub/openSSH/portable ftp://ftp.fi.debian.org/pub/OpenBSD 
ftp://ftp.ac-creteil.fr/OpenBSD ftp://ftp.fr.openbsd.org/pub/OpenBSD 
ftp://ftp.club-internet.fr/pub/OpenBSD ftp://ftp.de.openbsd.org/pub/OpenBSD 
ftp://ftp.tu-clausthal.de/pub/OpenBSD 
ftp://ftp.freenet.de/pub/ftp.openbsd.org/pub/OpenBSD 
ftp://ftp-stud.fht-esslingen.de/pub/OpenBSD 
ftp://pandemonium.tiscali.de/pub/OpenBSD 
ftp://ftp.taubenschlag.uni-frankfurt.de/pub/mirror/ftp.openssh.com/portable 
ftp://openbsd.bay13.net/pub/OpenBSD ftp://ftp.uni-stuttgart.de/pub/OpenBSD 
ftp://ftp.fh-wolfenbuettel.de/pub/os/openbsd 
ftp://filoktitis.noc.uoa.gr/pub/OpenBSD 
ftp://ftp.physics.auth.gr/pub/mirrors/OpenBSD/OpenBSD 
ftp://ftp.fsn.hu/pub/OpenBSD ftp://ftp.n
 etlab.is.tsukuba.ac.jp/pub/os/OpenBSD ftp://ftp.iij.ad.jp/pub/OpenBSD 
ftp://ftp.jp.openbsd.org/pub/OpenBSD ftp://ftp.kddlabs.co.jp/OpenBSD 
ftp://ftp.nl.uu.net/pub/OpenBSD ftp://ftp.calyx.nl/pub/OpenBSD 
ftp://ftp.nluug.nl/pub/OpenBSD ftp://mirror.widexs.nl/pub 
ftp://ftp.inet.no/pub/OpenBSD ftp://ftp.uninett.no/pub/OpenBSD 
ftp://sunsite.icm.edu.pl/pub/OpenBSD ftp://ftp.task.gda.pl/pub/OpenBSD 
ftp://ftp.physics.uvt.ro/pub/OpenBSD ftp://ftp.gamma.ru/pub/OpenBSD 
ftp://ftp.radio-msu.net/pub/OpenBSD 
ftp://ftp.isu.net.sa/pub/ftp.openbsd.org/OpenBSD 
ftp://ftp.rediris.es/mirror/OpenBSD ftp://ftp.stacken.kth.se/pub/OpenBSD 
ftp://ftp.sunet.se/pub/OpenBSD ftp://mirror.pudas.net/OpenBSD 
ftp://ftp.solnet.ch/mirror/OpenBSD ftp://sunsite.cnlab-switch.ch/pub/OpenBSD 
ftp://openbsd.csie.nctu.edu.tw/pub/OpenBSD 
ftp://openbsd.nsysu.edu.tw/pub/OpenBSD ftp://ftp.tku.edu.tw/pub/OpenBSD 
ftp://ftp.linux.org.tr/OpenBSD ftp://ftp.openbsd.org.ua/pub/OpenBSD 
ftp://ftp.plig.org/pub/OpenBSD ftp://ftp3.usa.openbsd.o
 rg/pub/OpenBSD ftp://mirror.csit.fsu.edu/pub/OpenBSD 
ftp://reflection.ncsa.uiuc.edu/pub/OpenBSD 
ftp://ftp.src.uchicago.edu/pub/OpenBSD ftp://rt.fm/pub/OpenBSD 
ftp://ftp.cse.buffalo.edu/pub/OpenBSD 
ftp://ftp.stealth.net/pub/mirrors/ftp.openssh.com/pub/OpenBSD 
ftp://openbsd.mirrors.pair.com ftp://carroll.cac.psu.edu/pub/OpenBSD 
ftp://mirrors.rcn.net/pub/OpenBSD ftp://openbsd.secsup.org/pub/openbsd 
ftp://ftp.tux.org/bsd/openbsd ftp://mirror.cs.wisc.edu/pub/mirrors/OpenBSD
 openldap   ftp://ftp.OpenLDAP.org/pub/OpenLDAP 
ftp://gd.tuwien.ac.at/infosys/network/OpenLDAP 
http://www.PlanetMirror.com/pub/openldap ftp://ftp.ucr.ac.cr/pub/Unix/openldap 
ftp://ftp.ntua.gr/mirror/OpenLDAP ftp://ftp.dti.ad.jp/pub/net/OpenLDAP 
ftp://ftp.u-aizu.ac.jp/pub/net/openldap 
ftp://ftp.holywar.net/pub/mirror/OpenLDAP 
ftp://ftp.nl.uu.net/pub/unix/db/openldap 
ftp://ftp.linux.pt/pub/mirrors/OpenLDAP 
ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP ftp://ftp.plig.net/pub/OpenLDAP
-opensslftp://ftp.openssl.org 
ftp://mirror.switch.ch/mirror/openssl/ 
http://mirror.switch.ch/ftp/mirror/openssl/ 
ftp://ftp.pca.dfn.de/pub/tools/net/openssl/ 
ftp://sunsite.uio.no/pub/security/openssl/ 
ftp://ftp.sunet.se/pub/security/tools/net/openssl/ 
ftp://gd.tuwien.ac.at/infosys/security/openssl/ 
ftp://ftp.kfki.hu/pub/packages/security/openssl/ 
ftp://guest.kuria.katowice.pl/pub/openssl/ ftp://ftp.fi.muni.cz/pub/openssl/ 
ftp://ftp.linux.hr/pub/openssl/ http://openssl.parentinginformed.com/ 
http://openssl.initrd.net/ ftp://ftp.tpnet.pl/pub/security/openssl/ 
http://openssl.skazkaforyou.com/ http://openssl.raffsoftware.com/
+opensslftp://ftp.openssl.org 

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

2015-10-26 Thread Jeroen Roovers
commit: cc9bbd93c7a2fab67fcfd74cfca8cfa0df50c340
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Oct 27 04:16:28 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Oct 27 04:17:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc9bbd93

net-wireless/bluez: Stable for HPPA (bug #563310).

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

 net-wireless/bluez/bluez-5.35.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/bluez/bluez-5.35.ebuild 
b/net-wireless/bluez/bluez-5.35.ebuild
index 2fda8dc..3737c26 100644
--- a/net-wireless/bluez/bluez-5.35.ebuild
+++ b/net-wireless/bluez/bluez-5.35.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0/3"
-KEYWORDS="amd64 arm ~hppa ~mips ~ppc ppc64 ~x86"
+KEYWORDS="amd64 arm hppa ~mips ~ppc ppc64 ~x86"
 IUSE="cups debug +obex +readline selinux systemd test +udev"
 
 CDEPEND="



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

2015-10-26 Thread Ulrich Müller
commit: bc3078f1d5cfbbac330218c2745ec74e9370d16a
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Oct 26 18:40:18 2015 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Oct 26 18:40:18 2015 +
URL:https://gitweb.gentoo.org/proj/pms.git/commit/?id=bc3078f1

pms.cls: Fix featurelabel command.

Leave vertical mode to fix vertical alignment of the margin note.
Suppress spurious whitespace in running text.
Workaround for marginnote not being supported by tex4ht.

 pms.cls | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/pms.cls b/pms.cls
index af8e1b4..80ba8e8 100644
--- a/pms.cls
+++ b/pms.cls
@@ -77,8 +77,13 @@
 % the page margin.
 \newcommand{\featureref}[1]{\textsc{#1} on page~\pageref{feat:#1}}
 \newcommand{\compactfeatureref}[1]{#1~p\pageref{feat:#1}}
-\newcommand{\featurelabel}[1]{\label{feat:#1}%
-\marginnote{\framebox{\textsc{#1}}}%
+\newcommand{\featurelabel}[1]{\leavevmode\label{feat:#1}%
+\ifthenelse{\boolean{TEX4HT-HACKS}}{%
+% tex4ht does not support marginnote
+\framebox{\textsc{#1}}%
+}{%
+\marginnote{\framebox{\textsc{#1}}}\ignorespaces
+}%
 }
 \bibliographystyle{plainurl}
 



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

2015-10-26 Thread Mike Frysinger
commit: 1e7d6e6f8241be91abc075f823ba0d6210cf2c3f
Author: Mike Frysinger  gentoo  org>
AuthorDate: Mon Oct 26 18:42:10 2015 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Mon Oct 26 18:42:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e7d6e6f

app-emulation/qemu: update qmp doc paths #564186

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

diff --git a/app-emulation/qemu/qemu-.ebuild 
b/app-emulation/qemu/qemu-.ebuild
index 6dfb030..a514240 100644
--- a/app-emulation/qemu/qemu-.ebuild
+++ b/app-emulation/qemu/qemu-.ebuild
@@ -567,12 +567,12 @@ src_install() {
doins "${FILESDIR}/bridge.conf"
 
# Remove the docdir placed qmp-commands.txt
-   mv "${ED}/usr/share/doc/${PF}/html/qmp-commands.txt" "${S}/docs/qmp/"
+   mv "${ED}/usr/share/doc/${PF}/html/qmp-commands.txt" "${S}/docs/" || die
 
cd "${S}"
dodoc Changelog MAINTAINERS docs/specs/pci-ids.txt
newdoc pc-bios/README README.pc-bios
-   dodoc docs/qmp/*.txt
+   dodoc docs/qmp-*.txt
 
if [[ -n ${softmmu_targets} ]]; then
# Remove SeaBIOS since we're using the SeaBIOS packaged one



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

2015-10-26 Thread Michael Palimaka
commit: 346facbf86efffe3adcac7aeacabd2b76d5c2f28
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Oct 26 18:39:52 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Oct 26 18:50:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=346facbf

dev-util/kdevelop: version bump

Package-Manager: portage-2.2.20.1

 dev-util/kdevelop/Manifest  |  1 +
 dev-util/kdevelop/kdevelop-4.7.2.ebuild | 52 +
 2 files changed, 53 insertions(+)

diff --git a/dev-util/kdevelop/Manifest b/dev-util/kdevelop/Manifest
index 2f6dc57..33bd8d8 100644
--- a/dev-util/kdevelop/Manifest
+++ b/dev-util/kdevelop/Manifest
@@ -1 +1,2 @@
 DIST kdevelop-4.7.1.tar.xz 4441540 SHA256 
e3ad5377f53739a67216d37cda3f88c03f8fbb0c96e2a9ef4056df3c124e95c1 SHA512 
a5fcdb4b83f6b9512350d73314df3ed8fd4f8a6544f358c480295f1f1f81799f18e30b44c24b73b4db244e63f01c29990854532688bf0a866c7fe83f924a48bd
 WHIRLPOOL 
630802a540db94a6f56b0c15ff8910ea6168401f88aaf3e14476461d169f4e456f83444fbf8f9c927c7c196b0797c40d58972d1b05a912eeb18d8d5b1239e4f9
+DIST kdevelop-4.7.2.tar.xz 4441896 SHA256 
5801a38a9abfebead18b74c0a0f5a6d68118b297c96ef1e2f75c8bfae3463b19 SHA512 
f05643f185a02ce9f07b5e48b0cf61de5e0e2ed892b4fbe4edf749319c37466a2e904c7b64604cdff3b1c5c20e384ea23e7fdd1e30ed15642fd70f5e172e570a
 WHIRLPOOL 
2caf928f84e22aacfa2691fc7a2752f84a38cdfccc4b3c176c04c0f81445a25548f7723ee57da293a921f7934789386bce7e4c50751cd4d61da2d15c39490695

diff --git a/dev-util/kdevelop/kdevelop-4.7.2.ebuild 
b/dev-util/kdevelop/kdevelop-4.7.2.ebuild
new file mode 100644
index 000..addf588
--- /dev/null
+++ b/dev-util/kdevelop/kdevelop-4.7.2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_LINGUAS="bs ca ca@valencia da de el en_GB es et fi fr gl hu it kk nb nds nl
+pl pt pt_BR ru sk sl sv th tr uk zh_CN zh_TW"
+VIRTUALX_REQUIRED="test"
+EGIT_BRANCH="4.7"
+inherit kde4-base
+
+DESCRIPTION="Integrated Development Environment for Unix, supporting KDE/Qt, 
C/C++ and many other languages"
+LICENSE="GPL-2 LGPL-2"
+IUSE="+cmake +cxx debug +gdbui okteta qthelp"
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   KEYWORDS="~amd64 ~ppc ~x86"
+fi
+
+DEPEND="
+   dev-libs/qjson
+   dev-qt/qtdeclarative:4[webkit]
+   gdbui? (
+   $(add_kdebase_dep ksysguard)
+   $(add_kdebase_dep libkworkspace)
+   )
+   okteta? ( $(add_kdeapps_dep okteta) )
+   qthelp? ( dev-qt/qthelp:4 )
+"
+RDEPEND="${DEPEND}
+   $(add_kdeapps_dep kapptemplate)
+   $(add_kdeapps_dep kdebase-kioslaves)
+   cxx? ( >=sys-devel/gdb-7.0[python] )
+"
+RESTRICT="test"
+# see bug 366471
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_build cmake)
+   $(cmake-utils_use_build cmake cmakebuilder)
+   $(cmake-utils_use_build cxx cpp)
+   $(cmake-utils_use_with gdbui KDE4Workspace)
+   $(cmake-utils_use_with okteta LibKasten)
+   $(cmake-utils_use_with okteta LibOkteta)
+   $(cmake-utils_use_with okteta LibOktetaKasten)
+   $(cmake-utils_use_build qthelp)
+   )
+
+   kde4-base_src_configure
+}



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

2015-10-26 Thread Michael Palimaka
commit: 028f7b48744e3702254d3bad0bcfe655faf231e7
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Oct 26 18:49:24 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Oct 26 18:50:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=028f7b48

dev-util/kdevelop-python: version bump

Package-Manager: portage-2.2.20.1

 dev-util/kdevelop-python/Manifest  |  1 +
 .../kdevelop-python/kdevelop-python-1.7.2.ebuild   | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-util/kdevelop-python/Manifest 
b/dev-util/kdevelop-python/Manifest
index ebed219..d9fe8ec 100644
--- a/dev-util/kdevelop-python/Manifest
+++ b/dev-util/kdevelop-python/Manifest
@@ -1 +1,2 @@
 DIST kdev-python-1.7.1.tar.xz 3666536 SHA256 
6d95834ffbdc9c74f0c5cca589344b02189902e01901169615484c5b163dbc06 SHA512 
f40fad121d5a8106c25fa5b8827f34074f8add115db9a26282b7bb087df2b57665b4bc6d772cd72784e5989eb6319d2807ac7278012b0be4e29ccb6864e79349
 WHIRLPOOL 
81feab1b3262aa406f4c59989be59d5a73bd8fbd0fed62e207434c0d65656ef10b7ccdcd54c2d1e4b7bab6e7213ef7e0b2638021823507cdc0750e091a88f09f
+DIST kdev-python-1.7.2.tar.xz 3668764 SHA256 
949254984bd489cd5597d4c4986057c43b60febde329f6f9d1b42228aef9444d SHA512 
d49a65786516d6709808126c3ec1ea90ccce8f3a7fbdfd39082e6327d3186089fe9d64380587023f0d4d9eea2304f76d8ff510b52cb29169918596652508bae4
 WHIRLPOOL 
7a01d9afa3151b3139fde5a0609d4eec2be330afe0e7bd241c22658007108ec78be9fbcaf37b8d55bde34b1b354d5043e2b6e79ed52b194ab40744c196ed5124

diff --git a/dev-util/kdevelop-python/kdevelop-python-1.7.2.ebuild 
b/dev-util/kdevelop-python/kdevelop-python-1.7.2.ebuild
new file mode 100644
index 000..924bb1e
--- /dev/null
+++ b/dev-util/kdevelop-python/kdevelop-python-1.7.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDEBASE="kdevelop"
+KMNAME="kdev-python"
+KDE_LINGUAS="bs ca de en_GB es et fi fr it nl pl pt pt_BR sk sl sv tr uk"
+PYTHON_COMPAT=( python2_7 )
+EGIT_BRANCH="1.7"
+MY_P="${KMNAME}-${PV}"
+inherit kde4-base python-any-r1
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   
SRC_URI="mirror://kde/stable/kdevelop/${KDEVELOP_VERSION}/src/${MY_P}.tar.xz"
+   KEYWORDS="~amd64 ~x86"
+   S=${WORKDIR}/${MY_P}
+fi
+
+DESCRIPTION="Python plugin for KDevelop 4"
+IUSE="debug"
+
+DEPEND="
+   ${PYTHON_DEPS}
+"
+RDEPEND="
+   dev-util/kdevelop:4
+"
+
+RESTRICT="test"
+
+pkg_setup() {
+   python-any-r1_pkg_setup
+   kde4-base_pkg_setup
+}
+
+src_compile() {
+   pushd "${WORKDIR}"/${P}_build > /dev/null || die
+   emake parser
+   popd > /dev/null || die
+
+   kde4-base_src_compile
+}



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

2015-10-26 Thread Michael Palimaka
commit: 50b0ad8ba31fbc224dc602b975f47d8ceed1b5a2
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Oct 26 18:42:44 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Oct 26 18:50:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50b0ad8b

dev-util/kdevelop-php: version bump

Package-Manager: portage-2.2.20.1

 dev-util/kdevelop-php/Manifest  |  1 +
 dev-util/kdevelop-php/kdevelop-php-1.7.2.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-util/kdevelop-php/Manifest b/dev-util/kdevelop-php/Manifest
index c411c62..41a092e 100644
--- a/dev-util/kdevelop-php/Manifest
+++ b/dev-util/kdevelop-php/Manifest
@@ -1 +1,2 @@
 DIST kdevelop-php-1.7.1.tar.xz 658088 SHA256 
396300d605032ac458489fb760801233e94117825ca6a3251ee02090aa694826 SHA512 
7602d905cd33299e071452e98539886110bf1f3fbbee3025a6ec2218aac8fef16665b81d23a1810ee22e9eb3eedbe55c00c8951a56b86fad2955ed4846959866
 WHIRLPOOL 
7e235c05bb0618365752c6c721fea1fd462eba7098e77ca303885c4bb50faf3d2f695f01fed982bc34827bb04f84490eaf5dfa4a37ed29875c1a8493d797b68e
+DIST kdevelop-php-1.7.2.tar.xz 658060 SHA256 
75de9a5afe32ecaa35eb14e1ae04dd9c6d3e9abf87274ca4537fbdc3b296a369 SHA512 
419ac3865c15ba30997e08f655d4ba61877ff15b6f3c0261a52a74e7d158e7a82a638326d2ccae1a435b846f40f76723807ff318ea3242651fb8fee263cdf5e1
 WHIRLPOOL 
bad67fdbff98c2d47dd3034f56abafbb7ff8d1fb17aec3e7004177a50f1f131808b56d80f3c89bb234613ab71badcf2fdd4e67420a3902eda33f2f94489ca2f0

diff --git a/dev-util/kdevelop-php/kdevelop-php-1.7.2.ebuild 
b/dev-util/kdevelop-php/kdevelop-php-1.7.2.ebuild
new file mode 100644
index 000..5c7b96f
--- /dev/null
+++ b/dev-util/kdevelop-php/kdevelop-php-1.7.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_LINGUAS="bs ca ca@valencia da de el en_GB es et fi fr gl it kk nl pl pt
+pt_BR ru sk sl sv tr uk zh_CN zh_TW"
+VIRTUALX_REQUIRED=test
+KDEBASE="kdevelop"
+KMNAME="kdev-php"
+EGIT_REPONAME="${KMNAME}"
+EGIT_BRANCH="1.7"
+inherit kde4-base
+
+DESCRIPTION="PHP plugin for KDevelop 4"
+LICENSE="GPL-2 LGPL-2"
+IUSE="debug doc"
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   KEYWORDS="~amd64 ~x86"
+fi
+
+RESTRICT="test"
+
+DEPEND="
+   >=dev-util/kdevelop-pg-qt-1.0.0:4
+"
+RDEPEND="
+   dev-util/kdevelop:${SLOT}
+   doc? ( >=dev-util/kdevelop-php-docs-${PV}:${SLOT} )
+"
+
+PATCHES=( "${FILESDIR}/${PN}"-1.2.0-parmake.patch )



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

2015-10-26 Thread Michael Palimaka
commit: 055d2c60d7a832d4df9e5d304d1563dcb51bfefb
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Oct 26 18:38:47 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Oct 26 18:50:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=055d2c60

dev-util/kdevplatform: version bump

Package-Manager: portage-2.2.20.1

 dev-util/kdevplatform/Manifest  |  1 +
 dev-util/kdevplatform/kdevplatform-1.7.2.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/dev-util/kdevplatform/Manifest b/dev-util/kdevplatform/Manifest
index 4e54101..fdbb340 100644
--- a/dev-util/kdevplatform/Manifest
+++ b/dev-util/kdevplatform/Manifest
@@ -1 +1,2 @@
 DIST kdevplatform-1.7.1.tar.xz 1930560 SHA256 
dfd8953aec204f04bd949443781aa0f6d9d58c40f73027619a168bb4ffc4b1ac SHA512 
b19c925c973ab00b25b03f1bcf1e34a98b8108728f20e7b058bd391a1dde78e33b80705c39632ff594ecf834878e1c54732031b8110400433266c258632468d0
 WHIRLPOOL 
9e687644b1f31ca317bb3faf388aca80ee305eaa3b43d044181d2b2374ad57613104a400a8a052ed07e5157fbbdc26b7174314cc04ca5b8c788afe4c8f4f
+DIST kdevplatform-1.7.2.tar.xz 1929976 SHA256 
0afcde7a746adb83b00f2bd6b02efb4022adbd61b6ba4325fb63b71902f1f4e4 SHA512 
b95a1837b61d6c63cdd5183194ea70301bb32720df8c5317ba891a91c24c1e174aa69d10131024701bfe710f4848ac50059bc4513cf334d39415d37f4a445d66
 WHIRLPOOL 
4656a52becd50e9d827010e798941465731872b014400529fde4c45410d7f77d063c7fed237f94991742af997e845145772dbb199df74ae9777d41c2bdc21693

diff --git a/dev-util/kdevplatform/kdevplatform-1.7.2.ebuild 
b/dev-util/kdevplatform/kdevplatform-1.7.2.ebuild
new file mode 100644
index 000..71cd96c
--- /dev/null
+++ b/dev-util/kdevplatform/kdevplatform-1.7.2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DECLARATIVE_REQUIRED="always"
+KMNAME="kdevelop"
+KDE_LINGUAS="bs ca ca@valencia da de el en_GB es et fi fr gl it kk nb nl pl pt
+pt_BR ru sk sl sv th tr uk zh_CN zh_TW"
+VIRTUALDBUS_TEST="true"
+VIRTUALX_REQUIRED="test"
+EGIT_REPONAME="${PN}"
+EGIT_BRANCH="1.7"
+inherit kde4-base
+
+DESCRIPTION="KDE development support libraries and apps"
+LICENSE="GPL-2 LGPL-2"
+IUSE="+classbrowser cvs debug +konsole reviewboard subversion"
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   KEYWORDS="~amd64 ~ppc ~x86"
+fi
+
+RESTRICT="test"
+
+COMMON_DEPEND="
+   dev-libs/grantlee:0
+   reviewboard? ( dev-libs/qjson )
+   subversion? (
+   dev-libs/apr
+   dev-libs/apr-util
+   dev-vcs/subversion
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   classbrowser? ( dev-libs/boost )
+"
+RDEPEND="${COMMON_DEPEND}
+   konsole? ( $(add_kdeapps_dep konsole) )
+   cvs? ( dev-vcs/cvs )
+   !

[gentoo-commits] repo/gentoo:master commit in: dev-util/kdevelop-php-docs/

2015-10-26 Thread Michael Palimaka
commit: c6cfa146d08d56007b752ba10ed8f2ad8338e488
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Oct 26 18:40:27 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Oct 26 18:50:14 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6cfa146

dev-util/kdevelop-php-docs: version bump

Package-Manager: portage-2.2.20.1

 dev-util/kdevelop-php-docs/Manifest|  1 +
 .../kdevelop-php-docs-1.7.2.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-util/kdevelop-php-docs/Manifest 
b/dev-util/kdevelop-php-docs/Manifest
index 21f4a59..0d2d38e 100644
--- a/dev-util/kdevelop-php-docs/Manifest
+++ b/dev-util/kdevelop-php-docs/Manifest
@@ -1 +1,2 @@
 DIST kdevelop-php-docs-1.7.1.tar.xz 32840 SHA256 
ae8acbffb882cdc20c32a22a8e522e0aea0c69b3d93376afa79e7b3bcad47568 SHA512 
9a78b2d3051fe81b0fc91cb7cea586d0d3391959f55fc5cc05c3ff1f9c4d2a9a83957e50a9feac050d6d01a831fdfd7fa8e0f9dcd6f801723f8b638f60663592
 WHIRLPOOL 
97e77ce5019ba707b3d37c058a16edd1788055a83f24bdcc6058197e723161dcbc484a8557d32dadc02dd98c1acbd2a5dc732f122bca5e10bcd482e92fb43a5a
+DIST kdevelop-php-docs-1.7.2.tar.xz 32892 SHA256 
2dff2f54f631296c87007be84a0dc439d328d473717577c0d1450a9fc7e6e828 SHA512 
5bbc3a4a61fa87b96182bfa1b3df28f26a35e4eb7ee021c822a031cb71b5900b53bacbac0d4892d8ff021dcc90b74097a0d67f31b17a4c3b7248170b19b54e16
 WHIRLPOOL 
5ef5309986dc42d41fe90333025075b132d3bfe3107802b97e54e4a1f2f36c37234b87dad3fcaf6d15ab3d79567fd4dae1ae1155403e7f1dfbd3bebf8d2ab32f

diff --git a/dev-util/kdevelop-php-docs/kdevelop-php-docs-1.7.2.ebuild 
b/dev-util/kdevelop-php-docs/kdevelop-php-docs-1.7.2.ebuild
new file mode 100644
index 000..9a422a3
--- /dev/null
+++ b/dev-util/kdevelop-php-docs/kdevelop-php-docs-1.7.2.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_LINGUAS="bs ca ca@valencia da de el en_GB es et fi fr gl hu it kk nb nds nl
+pl pt pt_BR ru sk sl sv tr uk zh_CN zh_TW"
+KMNAME="kdevelop"
+EGIT_REPONAME="kdev-php-docs"
+EGIT_BRANCH="1.7"
+inherit kde4-base
+
+DESCRIPTION="PHP documentation plugin for KDevelop 4"
+LICENSE="GPL-2 LGPL-2"
+IUSE="debug"
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   KEYWORDS="~amd64 ~x86"
+fi
+
+RDEPEND="
+   !=dev-util/kdevelop-plugins-1.0.0
+"



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

2015-10-26 Thread Mike Pagano
commit: 6758f52aab10201d6d2f9cb96f612b14b09fb989
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Oct 26 12:05:53 2015 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Oct 26 12:05:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6758f52a

sys-kernel/gentoo-sources: Auto stabilize 4.0.9 as per policy. Bug #564166

Package-Manager: portage-2.2.20.1

 sys-kernel/gentoo-sources/gentoo-sources-4.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.0.9.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.0.9.ebuild
index faa87bb..899f586 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.0.9.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.0.9.ebuild
@@ -11,7 +11,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 -hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="alpha amd64 arm ~arm64 -hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="deblob experimental"
 



  1   2   >